Blog2Social: Social Media Auto Post & Scheduler - Version 6.9.4

Version Description

Additional Security Update

Download this release

Release Info

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

Code changes from version 6.9.3 to 6.9.4

assets/css/b2s/support.css CHANGED
@@ -29,11 +29,12 @@
29
  }
30
 
31
  .b2s-support-link-not-active {
32
- pointer-events: none;
33
  cursor: default;
34
  text-decoration: none;
35
  color: gray;
36
- opacity: 0.5;
 
37
  }
38
 
39
  .b2s-margin-left-10 {
29
  }
30
 
31
  .b2s-support-link-not-active {
32
+ /* pointer-events: none;
33
  cursor: default;
34
  text-decoration: none;
35
  color: gray;
36
+ opacity: 0.5;*/
37
+ display: none !important;
38
  }
39
 
40
  .b2s-margin-left-10 {
assets/js/b2s/settings.js CHANGED
@@ -351,6 +351,9 @@ jQuery(document).on('click', '#b2s-general-settings-legacy-mode', function () {
351
  jQuery('#b2s-general-settings-legacy-mode').prop('checked', false);
352
  } else {
353
  jQuery('#b2s-general-settings-legacy-mode').prop('checked', true);
 
 
 
354
  }
355
  } else {
356
  if(data.error == 'nonce') {
351
  jQuery('#b2s-general-settings-legacy-mode').prop('checked', false);
352
  } else {
353
  jQuery('#b2s-general-settings-legacy-mode').prop('checked', true);
354
+ jQuery('#b2s_og_active').prop('checked', false);
355
+ jQuery('#b2s_card_active').prop('checked', false);
356
+ jQuery('#b2s_oembed_active').prop('checked', false);
357
  }
358
  } else {
359
  if(data.error == 'nonce') {
blog2social.php CHANGED
@@ -6,12 +6,12 @@
6
  * Author: Blog2Social, Adenion
7
  * Text Domain: blog2social
8
  * Domain Path: /languages
9
- * Version: 6.9.3
10
  * Author URI: https://www.blog2social.com
11
  * License: GPL2+
12
  */
13
 
14
- define('B2S_PLUGIN_VERSION', '693');
15
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
16
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
17
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
6
  * Author: Blog2Social, Adenion
7
  * Text Domain: blog2social
8
  * Domain Path: /languages
9
+ * Version: 6.9.4
10
  * Author URI: https://www.blog2social.com
11
  * License: GPL2+
12
  */
13
 
14
+ define('B2S_PLUGIN_VERSION', '694');
15
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
16
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
17
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
includes/Ajax/Get.php CHANGED
@@ -329,7 +329,7 @@ class Ajax_Get {
329
  $assignCount += $authCount;
330
  }
331
  }
332
- echo json_encode(array('result' => true, 'count' => ($count !== false) ? $count : 0, 'assignCount' => $assignCount, 'assignListCount' => count($networkAuthAssignment['assignList']), 'assignList' => serialize($assignList)));
333
  wp_die();
334
  } else {
335
  if ($count !== false) {
329
  $assignCount += $authCount;
330
  }
331
  }
332
+ echo json_encode(array('result' => true, 'count' => ($count !== false) ? $count : 0, 'assignCount' => $assignCount, 'assignListCount' => count($networkAuthAssignment['assignList']), 'assignList' => json_encode($assignList)));
333
  wp_die();
334
  } else {
335
  if ($count !== false) {
includes/Ajax/Post.php CHANGED
@@ -1143,7 +1143,7 @@ class Ajax_Post {
1143
  }
1144
  //V5.5.0 Approve User > Business Version
1145
  if (isset($_POST['assignList']) && !empty($_POST['assignList'])) {
1146
- $assignList = unserialize($_POST['assignList']);
1147
  if (is_array($assignList) && !empty($assignList)) {
1148
  foreach ($assignList as $i => $assignAuthId) {
1149
  $res = $wpdb->get_results($wpdb->prepare("SELECT b.id, b.post_id, b.post_for_approve, b.post_for_relay FROM {$wpdb->prefix}b2s_posts b LEFT JOIN {$wpdb->prefix}b2s_posts_network_details d ON (d.id = b.network_details_id) WHERE d.network_auth_id= %d AND b.hide = %d AND b.publish_date =%s", $assignAuthId, 0, '0000-00-00 00:00:00'));
1143
  }
1144
  //V5.5.0 Approve User > Business Version
1145
  if (isset($_POST['assignList']) && !empty($_POST['assignList'])) {
1146
+ $assignList = json_decode($_POST['assignList'], true);
1147
  if (is_array($assignList) && !empty($assignList)) {
1148
  foreach ($assignList as $i => $assignAuthId) {
1149
  $res = $wpdb->get_results($wpdb->prepare("SELECT b.id, b.post_id, b.post_for_approve, b.post_for_relay FROM {$wpdb->prefix}b2s_posts b LEFT JOIN {$wpdb->prefix}b2s_posts_network_details d ON (d.id = b.network_details_id) WHERE d.network_auth_id= %d AND b.hide = %d AND b.publish_date =%s", $assignAuthId, 0, '0000-00-00 00:00:00'));
includes/B2S/PostBox.php CHANGED
@@ -349,7 +349,7 @@ class B2S_PostBox {
349
  <option value="0" ' . ((!$bestTimes) ? 'selected' : '') . '>' . esc_html__('immediately after publishing', 'blog2social') . '</option>
350
  <option value="1" ' . (($bestTimes) ? 'selected' : '') . '>' . esc_html__('at best times', 'blog2social') . '</option>
351
  </select></div>';
352
- $content .= "<input id='b2s-post-meta-box-best-time-settings' class='post-format' name='b2s-post-meta-box-best-time-settings' value='" . serialize($bestTimeSettings) . "' type='hidden'> ";
353
  }
354
  if (!$show) {
355
  $content .= '</div>';
349
  <option value="0" ' . ((!$bestTimes) ? 'selected' : '') . '>' . esc_html__('immediately after publishing', 'blog2social') . '</option>
350
  <option value="1" ' . (($bestTimes) ? 'selected' : '') . '>' . esc_html__('at best times', 'blog2social') . '</option>
351
  </select></div>';
352
+ $content .= "<input id='b2s-post-meta-box-best-time-settings' class='post-format' name='b2s-post-meta-box-best-time-settings' value='" . json_encode($bestTimeSettings) . "' type='hidden'> ";
353
  }
354
  if (!$show) {
355
  $content .= '</div>';
includes/Loader.php CHANGED
@@ -599,7 +599,7 @@ class B2S_Loader {
599
  if (isset($_POST['b2s-post-meta-box-sched-select']) && $_POST['b2s-post-meta-box-sched-select'] == 1) {
600
  if (isset($_POST['b2s-post-meta-box-best-time-settings'])) {
601
  $sched_type = 2;
602
- $myTimeSettings = unserialize(stripslashes($_POST['b2s-post-meta-box-best-time-settings']));
603
  if ($myTimeSettings !== false && is_array($myTimeSettings) && isset($myTimeSettings['times']) && isset($myTimeSettings['type'])) {
604
  $myTimeSettings = $myTimeSettings;
605
  }
599
  if (isset($_POST['b2s-post-meta-box-sched-select']) && $_POST['b2s-post-meta-box-sched-select'] == 1) {
600
  if (isset($_POST['b2s-post-meta-box-best-time-settings'])) {
601
  $sched_type = 2;
602
+ $myTimeSettings = json_decode(stripslashes($_POST['b2s-post-meta-box-best-time-settings']), true);
603
  if ($myTimeSettings !== false && is_array($myTimeSettings) && isset($myTimeSettings['times']) && isset($myTimeSettings['type'])) {
604
  $myTimeSettings = $myTimeSettings;
605
  }
includes/Tools.php CHANGED
@@ -419,6 +419,18 @@ class B2S_Tools {
419
  if($type == 'b2s_reviews'){
420
  return ($lang == 'de') ? 'https://www.blog2social.com/de/blog/testberichte/' : 'https://www.blog2social.com/en/blog/reviews/';
421
  }
 
 
 
 
 
 
 
 
 
 
 
 
422
  return false;
423
  }
424
 
419
  if($type == 'b2s_reviews'){
420
  return ($lang == 'de') ? 'https://www.blog2social.com/de/blog/testberichte/' : 'https://www.blog2social.com/en/blog/reviews/';
421
  }
422
+ if($type == 'autopost_checklist_wp'){
423
+ return ($lang == 'de') ? 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=79' : 'https://www.blog2social.com/en/faq/index.php?solution_id=1071';
424
+ }
425
+ if($type == 'autopost_checklist_rss'){
426
+ return ($lang == 'de') ? 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=116' : 'https://www.blog2social.com/en/faq/index.php?solution_id=1115';
427
+ }
428
+ if($type == 'yoast_warning_og_guide'){
429
+ return ($lang == 'de') ? 'https://www.blog2social.com/de/faq/index.php?action=artikel&lang=de&cat=9&id=184&artlang=de' : 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=189&artlang=en';
430
+ }
431
+ if($type == 'twitter_card_guide'){
432
+ return ($lang == 'de') ? 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=109&artlang=de' : 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=109&artlang=en';
433
+ }
434
  return false;
435
  }
436
 
languages/blog2social-de_DE.mo CHANGED
Binary file
languages/blog2social-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post &amp; Scheduler - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2022-03-29 09:57+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -17,20 +17,20 @@ msgstr ""
17
  "Language-Team: Deutsch\n"
18
  "X-Loco-Version: 2.5.3; wp-5.9"
19
 
20
- #: views/b2s/html/header.php:301
21
  msgid " Days"
22
  msgstr "Tage"
23
 
24
- #: views/b2s/html/header.php:244
25
  msgid " or upgade your Blog2Social license to extend your quota."
26
  msgstr ""
27
  " oder upgrade Deine Blog2Social Lizenz, um Deine Warteschlange zu erweitern."
28
 
29
- #: views/b2s/html/header.php:301
30
  msgid " today"
31
  msgstr "heute"
32
 
33
- #: views/b2s/html/header.php:660
34
  msgid ""
35
  "\"Blog2Social is the master tool any blogger or marketer needs to automate "
36
  "your social media activity. It removes so much work and stress that's "
@@ -67,7 +67,7 @@ msgstr "(SMART)"
67
  msgid "+ add Parameter"
68
  msgstr "+ Parameter hinzufügen"
69
 
70
- #: includes/B2S/Ship/Save.php:444
71
  msgid ""
72
  "-For scheduled posts, Blog2Social will save your post and move it to the "
73
  "\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
@@ -80,7 +80,7 @@ msgstr ""
80
  "Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
81
  "Facebook-Profil zu senden!"
82
 
83
- #: includes/B2S/Ship/Save.php:452
84
  msgid ""
85
  "-For scheduled posts, Blog2Social will save your post and move it to the "
86
  "\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
@@ -93,7 +93,7 @@ msgstr ""
93
  "Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
94
  "Facebook-Profil zu senden!"
95
 
96
- #: includes/B2S/Ship/Save.php:443
97
  msgid ""
98
  "-To share your post immediately, click the \"Share\" button next to your "
99
  "selected Facebook profile below."
@@ -101,7 +101,7 @@ msgstr ""
101
  "-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
102
  "neben Deinem unten aufgeführten Profil."
103
 
104
- #: includes/B2S/Ship/Save.php:451
105
  msgid ""
106
  "-To share your post immediately, click the \"Share\" button next to your "
107
  "selected Google+ account below."
@@ -109,14 +109,7 @@ msgstr ""
109
  "Um den Beitrag sofort zu teilen, klicke einfach auf den Teilen Button neben "
110
  "Deinem unten aufgeführten Konto."
111
 
112
- #: views/b2s/autopost.php:118 views/b2s/autopost.php:158
113
- msgid ""
114
- "1. for auto-posting your original Wordpress content (posts, pages and media)"
115
- msgstr ""
116
- "1. für das Auto-Posting Deiner eigenen WordPress-Inhalte (Beiträge, Seiten "
117
- "und Medien)."
118
-
119
- #: views/b2s/autopost.php:136 views/b2s/autopost.php:172
120
  #, php-format
121
  msgid ""
122
  "1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
@@ -143,15 +136,7 @@ msgstr "1 x Pressemitteilung"
143
  msgid "1x publish report"
144
  msgstr "1 x Veröffentlichungsreport"
145
 
146
- #: views/b2s/autopost.php:125 views/b2s/autopost.php:163
147
- msgid ""
148
- "2. for auto-posting imported posts (imported RSS feeds or posts created / "
149
- "imported with another plugin). "
150
- msgstr ""
151
- "2. für das Auto-Posting importierter Beiträge (importierte RSS-Feeds oder "
152
- "Beiträge, die mit einem anderen Plugin erstellt/importiert wurden). "
153
-
154
- #: views/b2s/autopost.php:138 views/b2s/autopost.php:174
155
  msgid ""
156
  "2. has the selected social media networks connected or assigned (Blog2Social "
157
  "-> Networks)"
@@ -167,11 +152,12 @@ msgstr "2. Dein Instagram-Konto ist mit einer Facebook-Seite verknüpft."
167
  msgid "3. Blog2Social has the permission to publish your posts."
168
  msgstr "3. Blog2Social hat die Erlaubnis, Deine Beiträge zu veröffentlichen."
169
 
170
- #: views/b2s/autopost.php:140 views/b2s/autopost.php:176
171
- msgid "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
 
 
172
  msgstr ""
173
- "3. mit den richtigen Auto-Poster-Einstellungen aktiviert ist (Auto-Poster "
174
- "FAQ)"
175
 
176
  #: views/b2s/network.php:735
177
  #, php-format
@@ -182,40 +168,26 @@ msgstr ""
182
  "<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
183
  "weitere Seiten und Gruppen dazu buchen kannst.</a>"
184
 
185
- #: views/b2s/autopost.php:165
186
- #, php-format
187
- msgid ""
188
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
189
- "content Sharing Imported Posts with the Auto-Poster- Things to check for "
190
- "Troubleshooting</a>"
191
- msgstr ""
192
- "<a href=\"%s\" target=\"_blank\">Importierte Beiträge mit dem Auto-Poster "
193
- "teilen- Checkliste für Problemlösungen</a>"
194
-
195
- #: views/b2s/autopost.php:127
196
  #, php-format
 
 
 
197
  msgid ""
198
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
199
  "content</a>"
200
  msgstr ""
201
  "<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für "
202
- "importierte Beiträge ein</a>"
203
-
204
- #: views/b2s/autopost.php:160
205
- #, php-format
206
- msgid ""
207
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
208
- "original WordPress posts Sharing with the Auto-Poster- Things to check for "
209
- "Troubleshooting</a>"
210
- msgstr ""
211
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
212
- "original WordPress posts</a>"
213
 
214
- #: views/b2s/autopost.php:120
215
  #, php-format
 
 
 
216
  msgid ""
217
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
218
- "original WordPress posts</a>"
219
  msgstr ""
220
  "<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für Deine "
221
  "WordPress-Inhalte ein</a>"
@@ -229,16 +201,19 @@ msgstr ""
229
  "<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
230
  "in unserem FAQs.</a>"
231
 
232
- #: views/b2s/autopost.php:129
233
  #, php-format
 
 
 
234
  msgid ""
235
- "<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-Poster-"
236
  " Things to check for Troubleshooting</a>"
237
  msgstr ""
238
- "<a href=\"%s\" target=\"_blank\">Importierte Beiträge mit dem Auto-Poster "
239
- "teilen- Checkliste für Problemlösungen</a>"
240
 
241
- #: views/b2s/autopost.php:122
242
  #, php-format
243
  msgid ""
244
  "<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
@@ -357,7 +332,7 @@ msgstr "Lizenz aktivieren"
357
  msgid "activated"
358
  msgstr "aktiviert"
359
 
360
- #: includes/Tools.php:537
361
  msgid "Activities"
362
  msgstr "Aktivitäten"
363
 
@@ -572,13 +547,16 @@ msgstr "Alle Beiträge"
572
  msgid "all posts"
573
  msgstr "alle Beiträge"
574
 
575
- #: views/b2s/autopost.php:132 views/b2s/autopost.php:168
 
 
 
576
  msgid ""
577
- "All settings and social networks for the auto-poster can be defined for each "
578
  "WordPress user individually."
579
  msgstr ""
580
  "Alle Einstellungen und Social-Media-Netzwerke für den Auto-Poster können für "
581
- "jeden WordPress-Benutzer individuell festgelegt werden."
582
 
583
  #: includes/B2S/Post/Filter.php:72
584
  msgid "all statuses"
@@ -649,12 +627,12 @@ msgstr ""
649
  msgid "An unknown error occurred!"
650
  msgstr "Es ist ein unbekannter Fehler aufgetreten!"
651
 
652
- #: views/b2s/html/header.php:392
653
  #, php-format
654
  msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
655
  msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
656
 
657
- #: includes/Tools.php:535
658
  msgid "Animals & Nature"
659
  msgstr "Tiere & Natur"
660
 
@@ -732,7 +710,7 @@ msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
732
  msgid "Are you sure you want to delete this Social Media draft?"
733
  msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
734
 
735
- #: includes/Tools.php:514
736
  msgid "Argentina"
737
  msgstr "Argentinien"
738
 
@@ -770,11 +748,11 @@ msgstr "zu meinen besten Zeiten"
770
  msgid "at scheduled times"
771
  msgstr "zu geplanten Zeiten"
772
 
773
- #: includes/Tools.php:502
774
  msgid "Australia"
775
  msgstr "Australien"
776
 
777
- #: includes/Tools.php:503
778
  msgid "Austria"
779
  msgstr "Österreich"
780
 
@@ -817,7 +795,7 @@ msgstr "Beiträge automatisch teilen"
817
  #: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
818
  #: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
819
  #: views/b2s/html/footer.php:396 views/b2s/html/footer.php:454
820
- #: views/b2s/html/footer.php:547
821
  msgid "Auto-post and auto-schedule new and updated blog posts"
822
  msgstr ""
823
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
@@ -868,7 +846,7 @@ msgstr "Verfügbare Netwerkverbindungen:"
868
  msgid "back to install plugins"
869
  msgstr "zurück zur Pluginübersicht"
870
 
871
- #: views/b2s/html/header.php:537
872
  msgid ""
873
  "Benefit from the new Social Media Metrics and use the analysis of your "
874
  "social media posts for your further social media strategy."
@@ -886,7 +864,7 @@ msgstr "Best Time Manager"
886
  #: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
887
  #: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
888
  #: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
889
- #: views/b2s/html/footer.php:456 views/b2s/html/footer.php:549
890
  msgid ""
891
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
892
  "social media posts"
@@ -904,7 +882,7 @@ msgstr ""
904
  "Beste Zeiten Manager: Plane Deine Veröffentlichungen mehrmals oder "
905
  "regelmäßig."
906
 
907
- #: views/b2s/html/header.php:373
908
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
909
  msgstr "Beste Zeitenplaner: Plane einmal, mehrmals oder wiederkehrend."
910
 
@@ -916,7 +894,7 @@ msgstr "Beste Zeiten"
916
  msgid "Best Times Manager"
917
  msgstr "Beste Zeiten Manager"
918
 
919
- #: views/b2s/metrics.php:233 views/b2s/html/header.php:532
920
  #: views/b2s/html/sidebar.php:102
921
  msgid "BETA"
922
  msgstr "BETA"
@@ -970,6 +948,25 @@ msgstr ""
970
  "für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
971
  "gewünschte Zeitzone aus dem Drop-Down Menü."
972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
973
  #: views/b2s/html/sidebar.php:152
974
  msgid "Blog2Social Blog News"
975
  msgstr "Blog2Social Blog News"
@@ -998,7 +995,7 @@ msgstr ""
998
  "oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
999
  "zu tun."
1000
 
1001
- #: views/b2s/html/header.php:121
1002
  msgid ""
1003
  "Blog2Social has detected another plugin that is setting Social Meta tags for "
1004
  "your blog posts. To ensure that your Social Meta tags are set correctly for "
@@ -1011,7 +1008,7 @@ msgstr ""
1011
  "eingestellt sind, deaktiviere bitte die Einstellungen für Facebook Open "
1012
  "Graph und Twitter Card Tags in Deinen anderen Plugins."
1013
 
1014
- #: views/b2s/html/header.php:516
1015
  msgid "Blog2Social is a service of Adenion GmbH"
1016
  msgstr "Blog2Social ist ein Service der Adenion GmbH"
1017
 
@@ -1019,7 +1016,7 @@ msgstr "Blog2Social ist ein Service der Adenion GmbH"
1019
  msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
1020
  msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
1021
 
1022
- #: views/b2s/html/header.php:305 views/b2s/html/header.php:324
1023
  msgid ""
1024
  "Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
1025
  "autopilot, automatically schedule your social media posts with the Best Time "
@@ -1103,22 +1100,6 @@ msgstr ""
1103
  "zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf "
1104
  "welchem Standort Ihr Content geteilt werden soll."
1105
 
1106
- #: views/b2s/html/footer.php:514
1107
- msgid ""
1108
- "Blog2Social will automatically write these information in the Facebook Open "
1109
- "Graph (OG) Meta Tags for Image, Title and Description of your blog post."
1110
- msgstr ""
1111
- "Blog2Social schreibt diese Informationen automatisch in die Facebook Open "
1112
- "Graph (OG) Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
1113
-
1114
- #: views/b2s/html/footer.php:529
1115
- msgid ""
1116
- "Blog2Social will automatically write these information in the Twitter Card "
1117
- "Meta Tags for Image, Title and Description of your blog post."
1118
- msgstr ""
1119
- "Blog2Social schreibt diese Informationen automatisch in die Twitter Card "
1120
- "Meta Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
1121
-
1122
  #. Author of the plugin
1123
  msgid "Blog2Social, Adenion"
1124
  msgstr "Blog2Social, Adenion"
@@ -1184,7 +1165,7 @@ msgstr ""
1184
  "aufgeführten Netzwerke geändert. Dies gilt auch für deine vorgeplanten Posts "
1185
  "in diesem Format."
1186
 
1187
- #: views/b2s/html/header.php:391
1188
  #, php-format
1189
  msgid ""
1190
  "By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
@@ -1212,7 +1193,7 @@ msgstr "Kalender"
1212
  msgid "Call-to-Action"
1213
  msgstr "Call-to-Action"
1214
 
1215
- #: includes/Tools.php:495
1216
  msgid "Canada"
1217
  msgstr "Kanada"
1218
 
@@ -1261,7 +1242,7 @@ msgstr "Änderungen übernehmen"
1261
  msgid "Change image"
1262
  msgstr "Bild ändern"
1263
 
1264
- #: views/b2s/html/footer.php:484 views/b2s/html/footer.php:575
1265
  msgid "Change image, title and description for your post on this network"
1266
  msgstr ""
1267
  "Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
@@ -1305,7 +1286,7 @@ msgstr "Zeichen"
1305
  msgid "Chart"
1306
  msgstr "Diagramm"
1307
 
1308
- #: views/b2s/html/header.php:282
1309
  msgid ""
1310
  "Check out Blog2Social Premium with more awesome features for scheduling and "
1311
  "sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
@@ -1322,7 +1303,6 @@ msgid "Check Settings with Sharing-Debugger"
1322
  msgstr "Einstellungen mit Sharing-Debugger überprüfen"
1323
 
1324
  #: views/b2s/metrics.php:214
1325
- #, fuzzy
1326
  #| msgid "Check social media metrics"
1327
  msgid "Check Social Media Metrics"
1328
  msgstr "Social-Media-Kennzahlen einsehen"
@@ -1333,7 +1313,7 @@ msgstr ""
1333
  "Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
1334
  "Netzwerke"
1335
 
1336
- #: includes/Tools.php:519
1337
  msgid "Chile"
1338
  msgstr "Chile"
1339
 
@@ -1387,7 +1367,7 @@ msgstr "Uhr"
1387
  msgid "clock"
1388
  msgstr "Uhr"
1389
 
1390
- #: includes/Tools.php:520
1391
  msgid "Colombia"
1392
  msgstr "Kolumbien"
1393
 
@@ -1549,7 +1529,7 @@ msgstr ""
1549
  "Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite "
1550
  "und versuche es erneut. "
1551
 
1552
- #: views/b2s/html/header.php:167
1553
  msgid "Could not save draft"
1554
  msgstr "Der Entwurf konnte nicht gespeichert werden"
1555
 
@@ -1586,7 +1566,6 @@ msgid "create account"
1586
  msgstr "neues Konto erstellen"
1587
 
1588
  #: views/b2s/metrics.php:204
1589
- #, fuzzy
1590
  #| msgid "Create and share a social media post"
1591
  msgid "Create and Share a Social Media Post"
1592
  msgstr "Social Media Post erstellen und teilen"
@@ -1608,7 +1587,7 @@ msgid "Create your support account to ask questions and get help"
1608
  msgstr ""
1609
  "Erstelle Deinen Support Account, um Fragen zu stellen und Hilfe zu erhalten"
1610
 
1611
- #: views/b2s/html/header.php:589 views/b2s/html/header.php:648
1612
  msgid ""
1613
  "Creating social media posts from other sources, such as text, images, videos,"
1614
  " and links to add more content variety and manage all your social media "
@@ -1675,7 +1654,7 @@ msgstr ""
1675
  msgid "Customizing Social Media Posts"
1676
  msgstr "Individualisierung der Social Media Posts"
1677
 
1678
- #: includes/Tools.php:492
1679
  msgid "Czechoslovakia"
1680
  msgstr "Tschechoslowakei"
1681
 
@@ -1872,18 +1851,15 @@ msgstr "Social Media Posts löschen"
1872
  msgid "Delete text"
1873
  msgstr "Text löschen"
1874
 
1875
- #: includes/Tools.php:508
1876
  msgid "Denmark"
1877
  msgstr "Dänemark"
1878
 
1879
  #: includes/B2S/Settings/Item.php:183 includes/B2S/Settings/Item.php:232
 
1880
  msgid "Description"
1881
  msgstr "Beschreibung"
1882
 
1883
- #: views/b2s/html/footer.php:512 views/b2s/html/footer.php:527
1884
- msgid "description"
1885
- msgstr "Beschreibung"
1886
-
1887
  #: includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:498
1888
  #: includes/B2S/Post/Item.php:520 includes/B2S/Post/Item.php:617
1889
  msgid "Details"
@@ -1897,11 +1873,11 @@ msgstr "Wusstest Du schon?"
1897
  msgid "Did you miss something?"
1898
  msgstr "Vermisst Du etwas?"
1899
 
1900
- #: views/b2s/html/header.php:329
1901
  msgid "Did you miss something? Tell us!"
1902
  msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
1903
 
1904
- #: views/b2s/html/header.php:577
1905
  msgid ""
1906
  "Did you try all options on how to organize your social media scheduling and "
1907
  "sharing tasks even more easily and automatically with Blog2Social Premium, "
@@ -1966,7 +1942,7 @@ msgid "Duration"
1966
  msgstr "Dauer"
1967
 
1968
  #: views/b2s/network.php:398 views/b2s/ship.php:652
1969
- #: views/b2s/html/header.php:377 views/prg/html/form.php:141
1970
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1971
  #: views/prg/html/form.php:220
1972
  msgid "E-Mail"
@@ -2166,7 +2142,7 @@ msgstr "Fehler beim Laden der Standardeinstellungen"
2166
  msgid "Failed to save"
2167
  msgstr "Speichern fehlgeschlagen"
2168
 
2169
- #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
2170
  msgid "FAQ"
2171
  msgstr "FAQ"
2172
 
@@ -2194,11 +2170,11 @@ msgstr ""
2194
  "Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
2195
  "automatisch veröffentlicht)"
2196
 
2197
- #: includes/Tools.php:510
2198
  msgid "Finland"
2199
  msgstr "Finnland"
2200
 
2201
- #: views/b2s/html/header.php:381 views/prg/html/form.php:91
2202
  #: views/prg/html/form.php:100 views/prg/html/form.php:168
2203
  #: views/prg/html/form.php:177
2204
  msgid "First Name"
@@ -2210,7 +2186,7 @@ msgstr ""
2210
  "Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
2211
  "Du den Beitrag teilst!"
2212
 
2213
- #: includes/Tools.php:541
2214
  msgid "Flags"
2215
  msgstr "Flaggen"
2216
 
@@ -2218,7 +2194,7 @@ msgstr "Flaggen"
2218
  msgid "Follow us"
2219
  msgstr "Folge uns"
2220
 
2221
- #: includes/Tools.php:536
2222
  msgid "Food & Drink"
2223
  msgstr "Essen & Trinken"
2224
 
@@ -2255,14 +2231,32 @@ msgstr ""
2255
  "Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
2256
  "bevorzugtes benutzerdefiniertes Postformat auswählen."
2257
 
2258
- #: includes/B2S/Ship/Save.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2259
  msgid ""
2260
  "For sharing your posts on Google+ you can now use Google+ Instant Sharing"
2261
  msgstr ""
2262
  "Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
2263
  "zur Verfügung"
2264
 
2265
- #: includes/B2S/Ship/Save.php:440
2266
  msgid ""
2267
  "For sharing your posts on personal Facebook Profiles you can use Facebook "
2268
  "Instant Sharing"
@@ -2291,7 +2285,7 @@ msgstr "Format"
2291
  msgid "Frame colour:"
2292
  msgstr "Rahmenfarbe:"
2293
 
2294
- #: includes/Tools.php:505
2295
  msgid "France"
2296
  msgstr "Frankreich"
2297
 
@@ -2319,11 +2313,11 @@ msgstr "Allgemein"
2319
  msgid "German"
2320
  msgstr "Deutsch"
2321
 
2322
- #: includes/Tools.php:507
2323
  msgid "Germany"
2324
  msgstr "Deutschland"
2325
 
2326
- #: views/b2s/html/header.php:668
2327
  msgid "Get all Premium benefits starting from just $7 per month."
2328
  msgstr ""
2329
  "Schon ab 6,00 Euro pro Monat kannst Du mit den Premium-Funktionen starten."
@@ -2332,15 +2326,6 @@ msgstr ""
2332
  msgid "Get more information about the benefits of Blog2Social Premium"
2333
  msgstr "Erfahre mehr über die Vorteile von Blog2Social-Premium"
2334
 
2335
- #: views/b2s/html/header.php:109
2336
- #, php-format
2337
- msgid ""
2338
- "Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
2339
- "guide</a>."
2340
- msgstr ""
2341
- "Mehr Informationen erhältst Du in der <a href=\"%s\" target=\"_blank\">"
2342
- "Social-Meta-Tag-Anleitung</a>."
2343
-
2344
  #: views/b2s/curation.php:293
2345
  #, php-format
2346
  msgid ""
@@ -2356,7 +2341,7 @@ msgstr ""
2356
  msgid "Get Social Media News"
2357
  msgstr "Social Media News"
2358
 
2359
- #: views/b2s/html/header.php:403
2360
  msgid "Get Started"
2361
  msgstr "Jetzt loslegen"
2362
 
@@ -2424,11 +2409,11 @@ msgstr ""
2424
  "Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
2425
  "Infografiken."
2426
 
2427
- #: includes/Tools.php:496
2428
  msgid "Great Britain"
2429
  msgstr "Großbritannien"
2430
 
2431
- #: includes/Tools.php:486
2432
  msgid "Greece"
2433
  msgstr "Griechenland"
2434
 
@@ -2474,7 +2459,7 @@ msgstr "Hilfreiche Netzwerkeinstellungen"
2474
  msgid "Here's how to start tracking your social media posts:"
2475
  msgstr "So startest Du mit dem Tracking der Deiner Social-Media-Posts:"
2476
 
2477
- #: views/b2s/html/header.php:256
2478
  #, php-format
2479
  msgid ""
2480
  "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
@@ -2495,7 +2480,7 @@ msgstr "ausblenden"
2495
  msgid "hide calendar"
2496
  msgstr "Planungskalender verbergen"
2497
 
2498
- #: views/b2s/html/header.php:679
2499
  msgid "Hide this notification."
2500
  msgstr "Diesen Hinweis nicht mehr anzeigen."
2501
 
@@ -2507,6 +2492,10 @@ msgstr "Wie können wir helfen?"
2507
  msgid "How to check the Social Media Metrics?"
2508
  msgstr "Wie kann ich die Social-Media-Kennzahlen einsehen? "
2509
 
 
 
 
 
2510
  #: views/b2s/support.php:135
2511
  msgid "How to use the Troubleshooting tool"
2512
  msgstr "Wie Du das Problemanalyse-Tool nutzt"
@@ -2516,7 +2505,7 @@ msgstr "Wie Du das Problemanalyse-Tool nutzt"
2516
  msgid "https://www.blog2social.com"
2517
  msgstr "https://www.blog2social.com"
2518
 
2519
- #: includes/Tools.php:511
2520
  msgid "Hungary"
2521
  msgstr "Ungarn"
2522
 
@@ -2527,31 +2516,31 @@ msgstr ""
2527
  "Ich habe die <a href=\"%s\" target=\"_blank\">Community-Regeln</a> zur "
2528
  "Kenntnis genommen und willige ein."
2529
 
2530
- #: views/b2s/html/header.php:517
2531
  msgid "I agree to the Adenion Privacy Policy"
2532
  msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
2533
 
2534
- #: views/b2s/html/header.php:266
2535
  msgid "I already did it"
2536
  msgstr "Habe ich schon erledigt"
2537
 
2538
- #: views/b2s/html/header.php:676
2539
  msgid "I need advice on finding the right license"
2540
  msgstr "Ich benötige Beratung für die richtige Lizenz."
2541
 
2542
- #: views/b2s/html/header.php:608
2543
  msgid "I need advice on finding the right license."
2544
  msgstr "Ich benötige Beratung für die richtige Lizenz."
2545
 
2546
- #: views/b2s/html/header.php:347
2547
  msgid "I need advice on the right license."
2548
  msgstr "Ich benötige Beratung für die richtige Lizenz."
2549
 
2550
- #: views/b2s/html/header.php:309 views/b2s/html/header.php:328
2551
  msgid "I need some more time to decide"
2552
  msgstr "Ich brauche etwas mehr Zeit, um mich zu entscheiden"
2553
 
2554
- #: views/b2s/html/header.php:605
2555
  msgid "I would like to continue with my trial."
2556
  msgstr "Ich möchte mit meiner Testphase fortfahren."
2557
 
@@ -2575,6 +2564,34 @@ msgstr ""
2575
  "beispielsweise 3 Original-Tweets geplant sind, löst jeder einzelne Tweet "
2576
  "einen Retweet für die ausgewählten Twitter-Konten aus."
2577
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2578
  #: includes/Notice.php:18
2579
  msgid ""
2580
  "If you like Blog2Social, please give us a 5 star rating. If there is "
@@ -2595,18 +2612,74 @@ msgstr ""
2595
  "kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
2596
  "erhältst Hilfe von unserem engagierten Support-Team."
2597
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2598
  #: views/b2s/ship.php:384
2599
  msgid "Ignore & share"
2600
  msgstr "Ignorieren & teilen"
2601
 
2602
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
 
2603
  msgid "Image"
2604
  msgstr "Bild"
2605
 
2606
- #: views/b2s/html/footer.php:510 views/b2s/html/footer.php:525
2607
- msgid "image"
2608
- msgstr "Bild"
2609
-
2610
  #: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
2611
  #: views/b2s/repost.php:59 views/b2s/repost.php:95
2612
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
@@ -2656,6 +2729,22 @@ msgstr "sofort"
2656
  msgid "immediately after publishing"
2657
  msgstr "sofort nach Veröffentlichung"
2658
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2659
  #: views/b2s/metrics.php:209
2660
  msgid "Imported posts"
2661
  msgstr "Importierte Beiträge"
@@ -2714,17 +2803,16 @@ msgstr "nur <a href=\"%s\" target=\"_blank\">Favoriten</a> hinzufügen"
2714
  msgid "include posts with images only"
2715
  msgstr "nur Beiträge mit Bildern hinzufügen"
2716
 
2717
- #: includes/Tools.php:487
2718
  msgid "India"
2719
  msgstr "Indien"
2720
 
2721
- #: includes/Tools.php:493
2722
  msgid "Indonesia"
2723
  msgstr "Indonesien"
2724
 
2725
  #: includes/Loader.php:917 includes/B2S/PostBox.php:165
2726
  #: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
2727
- #: views/b2s/autopost.php:113 views/b2s/autopost.php:153
2728
  #: views/b2s/metrics.php:70 views/b2s/network.php:49 views/b2s/ship.php:81
2729
  #: views/b2s/ship.php:183 views/b2s/ship.php:275
2730
  #: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
@@ -2788,7 +2876,7 @@ msgstr "Instant Caching für Link-Beiträge"
2788
  msgid "Instant Sharing"
2789
  msgstr "Instant Sharing"
2790
 
2791
- #: views/b2s/html/header.php:665
2792
  #, php-format
2793
  msgid ""
2794
  "Interested in reading more reviews? <a href=\"%s\" target=\"_blank\">Check "
@@ -2809,7 +2897,7 @@ msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
2809
  msgid "Invalid email address"
2810
  msgstr "Ungültige E-Mail Adresse"
2811
 
2812
- #: includes/Tools.php:489
2813
  msgid "Ireland"
2814
  msgstr "Irland"
2815
 
@@ -2817,7 +2905,7 @@ msgstr "Irland"
2817
  msgid "is currently being processed by the network"
2818
  msgstr "wird vom Netzwerk verarbeitet"
2819
 
2820
- #: includes/Tools.php:525
2821
  msgid "is determined automatically"
2822
  msgstr "wird automatisch ermittelt"
2823
 
@@ -2826,15 +2914,15 @@ msgstr "wird automatisch ermittelt"
2826
  msgid "is waiting to shared by %s"
2827
  msgstr "wartet darauf von %s geteilt zu werden"
2828
 
2829
- #: includes/Tools.php:490
2830
  msgid "Italy"
2831
  msgstr "Italien"
2832
 
2833
- #: includes/Tools.php:512
2834
  msgid "Japan"
2835
  msgstr "Japan"
2836
 
2837
- #: views/b2s/html/header.php:661
2838
  msgid "jerryj1 per WordPress"
2839
  msgstr "stephanv auf wordpress.org"
2840
 
@@ -2846,7 +2934,7 @@ msgstr "Job"
2846
  msgid "Jobs & Projects"
2847
  msgstr "Stellenangebote & Projekte"
2848
 
2849
- #: views/b2s/html/header.php:340
2850
  msgid ""
2851
  "Keep your current settings and access to more automated scheduling and "
2852
  "sharing options and upgrade to Blog2Social Premium."
@@ -2879,7 +2967,7 @@ msgstr "Keywords mit Komma getrennt (z.B.: Blog2Social, PR-Gateway)"
2879
  msgid "Keywords: The tags you have set in your post."
2880
  msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
2881
 
2882
- #: includes/Tools.php:515
2883
  msgid "Korea"
2884
  msgstr "Korea"
2885
 
@@ -2892,7 +2980,7 @@ msgstr "Sprache"
2892
  msgid "last modified by %s"
2893
  msgstr "zuletzt von %s bearbeitet"
2894
 
2895
- #: views/b2s/html/header.php:385 views/prg/html/form.php:92
2896
  #: views/prg/html/form.php:103 views/prg/html/form.php:169
2897
  #: views/prg/html/form.php:180
2898
  msgid "Last Name"
@@ -2920,7 +3008,7 @@ msgstr "letzte Beiträge"
2920
  msgid "latest share by %s"
2921
  msgstr "zuletzt von %s geteilt"
2922
 
2923
- #: includes/B2S/Ship/Save.php:440
2924
  msgid "Learn how it works"
2925
  msgstr "mehr erfahren"
2926
 
@@ -2968,7 +3056,7 @@ msgstr "Erfahre mehr darüber"
2968
  msgid "Legend"
2969
  msgstr "Legende"
2970
 
2971
- #: includes/Tools.php:471 views/b2s/html/sidebar.php:32
2972
  #: views/b2s/html/sidebar.ship.php:29
2973
  msgid "License"
2974
  msgstr "Lizenz"
@@ -3105,7 +3193,7 @@ msgstr "Nachricht"
3105
  msgid "Meta Tags Settings for Posts and Pages"
3106
  msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
3107
 
3108
- #: includes/Tools.php:517
3109
  msgid "Mexico"
3110
  msgstr "Mexiko"
3111
 
@@ -3254,7 +3342,7 @@ msgstr "Du möchtest Deine Beiträge planen?"
3254
  msgid "Needed"
3255
  msgstr "Erforderlich"
3256
 
3257
- #: includes/Tools.php:498
3258
  msgid "Netherlands"
3259
  msgstr "Niederlande"
3260
 
@@ -3317,7 +3405,7 @@ msgstr "Neu"
3317
  msgid "new posts"
3318
  msgstr "Neue Beiträge"
3319
 
3320
- #: includes/Tools.php:509
3321
  msgid "New Zealand"
3322
  msgstr "Neuseeland"
3323
 
@@ -3349,11 +3437,11 @@ msgstr ""
3349
  "mindestens einen Social Media Account in Blog2Social unter Netzwerke "
3350
  "verbunden hast."
3351
 
3352
- #: views/b2s/html/header.php:399
3353
  msgid "No credit card required"
3354
  msgstr "Keine Kreditkarte erforderlich"
3355
 
3356
- #: includes/Tools.php:542
3357
  msgid "No emojis found"
3358
  msgstr "Keine Ergebnisse"
3359
 
@@ -3365,7 +3453,7 @@ msgstr "In dem Beitrag sind keine Bilder hinterlegt"
3365
  msgid "No link preview available. Please check your link."
3366
  msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
3367
 
3368
- #: views/b2s/html/header.php:234
3369
  msgid "No posts found. Please try again with different filter options."
3370
  msgstr ""
3371
  "Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen "
@@ -3379,11 +3467,11 @@ msgstr "kein URL Shortener"
3379
  msgid "No User found"
3380
  msgstr "Keinen Blog-Nutzer gefunden"
3381
 
3382
- #: views/b2s/html/header.php:263
3383
  msgid "Nope, maybe later"
3384
  msgstr "Nein, vielleicht später"
3385
 
3386
- #: includes/Tools.php:500
3387
  msgid "Norway"
3388
  msgstr "Norwegen"
3389
 
@@ -3431,7 +3519,7 @@ msgstr "Anzahl der Beiträge"
3431
  msgid "Number of repeats"
3432
  msgstr "Anzahl der Wiederholungen"
3433
 
3434
- #: includes/Tools.php:539
3435
  msgid "Objects"
3436
  msgstr "Objekte"
3437
 
@@ -3451,7 +3539,7 @@ msgstr "OG Beschreibung"
3451
  msgid "OG Meta title"
3452
  msgstr "OG Titel"
3453
 
3454
- #: views/b2s/html/header.php:486
3455
  msgid "OK"
3456
  msgstr "OK"
3457
 
@@ -3459,7 +3547,7 @@ msgstr "OK"
3459
  msgid "Ok, I want to get started!"
3460
  msgstr "Verstanden, ich möchte loslegen!"
3461
 
3462
- #: views/b2s/html/header.php:260
3463
  msgid "Ok, you deserve it"
3464
  msgstr "Okay, ihr habt euch das verdient"
3465
 
@@ -3506,7 +3594,7 @@ msgstr "oder"
3506
  #: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
3507
  #: views/b2s/html/footer.php:313 views/b2s/html/footer.php:368
3508
  #: views/b2s/html/footer.php:407 views/b2s/html/footer.php:465
3509
- #: views/b2s/html/footer.php:559
3510
  #, php-format
3511
  msgid ""
3512
  "or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
@@ -3551,7 +3639,7 @@ msgstr "Privat"
3551
  msgid "Personal Time Zone"
3552
  msgstr "Persönliche Zeitzone"
3553
 
3554
- #: includes/Tools.php:522
3555
  msgid "Philippines"
3556
  msgstr "Philippinen"
3557
 
@@ -3632,7 +3720,7 @@ msgstr ""
3632
  "Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
3633
  "mehreren Accounts zu posten."
3634
 
3635
- #: views/b2s/autopost.php:134 views/b2s/autopost.php:170
3636
  msgid ""
3637
  "Please make sure that each WordPress user or author whose posts should be "
3638
  "auto-posted"
@@ -3651,6 +3739,15 @@ msgstr ""
3651
  "Facebook-Seite bist. Bitte überprüfe auch, ob die 2-Faktor-Authentifizierung "
3652
  "auf den verknüpften Konten entweder aktiviert oder deaktiviert ist."
3653
 
 
 
 
 
 
 
 
 
 
3654
  #: includes/Loader.php:848
3655
  msgid ""
3656
  "Please make sure that your post, page or custom post type is published or "
@@ -3697,11 +3794,20 @@ msgstr ""
3697
  "dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
3698
  "stabile Verbindung zu Blog2Social sicherzustellen."
3699
 
 
 
 
 
 
 
 
 
3700
  #: views/prg/ship.php:87
3701
  msgid "Please Note"
3702
  msgstr "Hinweis"
3703
 
3704
- #: views/b2s/ship.php:796
 
3705
  msgid "Please note:"
3706
  msgstr "Hinweis:"
3707
 
@@ -3725,34 +3831,6 @@ msgstr ""
3725
  "Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
3726
  "andere Inhalte herunterladen kannst:"
3727
 
3728
- #: views/b2s/html/footer.php:517
3729
- msgid ""
3730
- "Please note: If this post has already been shared or scheduled previously, "
3731
- "your current changes will also affect the look of previously shared or "
3732
- "scheduled posts, as Facebook always refers to the current Open Graph meta "
3733
- "tags information and automatically updated all existing posts."
3734
- msgstr ""
3735
- "Bitte beachte: Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde,"
3736
- " wirken sich Deine aktuellen Änderungen auch auf das Aussehen von zuvor "
3737
- "geteilten oder geplanten Beiträgen aus, da Facebook sich immer die "
3738
- "aktuellsten Informationen aus den Open Graph Meta Tags zieht und alle "
3739
- "bereits existierenden Beiträge automatisch updatet. "
3740
-
3741
- #: views/b2s/html/footer.php:532
3742
- msgid ""
3743
- "Please note: If this post was previously shared or scheduled, your current "
3744
- "changes will also affect the look of previously shared or scheduled posts, "
3745
- "as Twitter will always pull the most up-to-date information from the Twitter "
3746
- "Card tags. If this post has already been shared, it may take up to 7 days "
3747
- "for Twitter to update your current changes."
3748
- msgstr ""
3749
- "Bitte beachte: Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde,"
3750
- " wirken sich Deine aktuellen Änderungen auch auf das Aussehen von zuvor "
3751
- "geteilten oder geplanten Beiträgen aus, da Twitter sich immer die "
3752
- "aktuellsten Informationen aus den Twitter Card Tags zieht. Wenn dieser "
3753
- "Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter "
3754
- "Deine aktuellen Änderungen aktualisiert."
3755
-
3756
  #: views/b2s/network.php:678 views/b2s/ship.php:734
3757
  msgid ""
3758
  "Please note: In order to connect your Instagram account to Blog2Social, "
@@ -3821,7 +3899,7 @@ msgstr ""
3821
  "Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
3822
  "geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
3823
 
3824
- #: includes/B2S/Ship/Save.php:453
3825
  msgid ""
3826
  "Please note: You post has to be marked as public to be posted in a group."
3827
  msgstr ""
@@ -3843,36 +3921,12 @@ msgstr ""
3843
  "mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
3844
  "\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
3845
 
3846
- #: views/b2s/html/footer.php:519
3847
- #, php-format
3848
- msgid ""
3849
- "Please note: Your changes will have no effect on your social media posts on "
3850
- "Facebook, if you have manually unchecked the Meta Tag options for Facebook "
3851
- "in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
3852
- msgstr ""
3853
- "Bitte beachte: Deine Änderungen haben keine Auswirkungen auf Deine Social "
3854
- "Media Beiträge auf Facebook, wenn Du die Meta Tag Optionen für Facebook in "
3855
- "Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
3856
- "manuell deaktiviert hast."
3857
-
3858
- #: views/b2s/html/footer.php:534
3859
- #, php-format
3860
- msgid ""
3861
- "Please note: Your changes will have no effect on your social media posts on "
3862
- "Twitter, if you have manually unchecked the Meta Tag options for Twitter in "
3863
- "your <a target=\"_blank\" href=\"%s\">settings</a>"
3864
- msgstr ""
3865
- "Bitte beachte: Deine Änderungen haben keine Auswirkungen auf Deine Social "
3866
- "Media Beiträge auf Twitter, wenn Du die Meta Tag Optionen für Twitter in "
3867
- "Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
3868
- "manuell deaktiviert hast."
3869
-
3870
  #: views/b2s/network.php:199
3871
  msgid "Please re-authorize your account with Blog2Social and try again"
3872
  msgstr ""
3873
  "Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
3874
 
3875
- #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
3876
  msgid "Please see"
3877
  msgstr "siehe"
3878
 
@@ -3893,7 +3947,7 @@ msgid "Please select your correct server location and connect again."
3893
  msgstr ""
3894
  "Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
3895
 
3896
- #: includes/B2S/Ship/Save.php:458
3897
  msgid "Please share your post now"
3898
  msgstr "Bitte teile Deinen Beitrag jetzt."
3899
 
@@ -3912,11 +3966,11 @@ msgstr ""
3912
  msgid "Plugin Warnings:"
3913
  msgstr "Plugin Warnungen:"
3914
 
3915
- #: includes/Tools.php:504
3916
  msgid "Poland"
3917
  msgstr "Polen"
3918
 
3919
- #: includes/Tools.php:499 includes/Tools.php:513
3920
  msgid "Portugal"
3921
  msgstr "Portugal"
3922
 
@@ -3954,7 +4008,7 @@ msgstr "Postformat"
3954
  msgid "Post Interactions"
3955
  msgstr "Beitrags-Interaktionen"
3956
 
3957
- #: views/b2s/html/header.php:149
3958
  msgid "Post is published successfully on your blog!"
3959
  msgstr "Der Beitrag wurde erfolgreich in Deinem Blog veröffentlicht!"
3960
 
@@ -3980,8 +4034,8 @@ msgstr ""
3980
  #: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
3981
  #: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
3982
  #: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
3983
- #: views/b2s/html/footer.php:452 views/b2s/html/footer.php:545
3984
- #: views/b2s/html/header.php:371
3985
  msgid "Post on pages and groups"
3986
  msgstr "Poste auf Seiten und in Gruppen"
3987
 
@@ -3993,7 +4047,7 @@ msgstr "Beitragsvorlagen"
3993
  msgid "Post Types"
3994
  msgstr "Posttypen"
3995
 
3996
- #: views/b2s/html/header.php:147
3997
  msgid "Post was scheduled successfully on your blog!"
3998
  msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
3999
 
@@ -4136,7 +4190,7 @@ msgstr "Veröffentliche mit einer Verzögerung von"
4136
 
4137
  #: views/b2s/curation.php:137 views/b2s/post.calendar.php:50
4138
  #: views/b2s/ship.php:18 views/b2s/ship.php:835 includes/B2S/Post/Filter.php:59
4139
- #: includes/B2S/Post/Item.php:393 includes/B2S/Ship/Save.php:466
4140
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
4141
  #: views/b2s/widgets/calendar.php:44
4142
  msgid "published"
@@ -4162,7 +4216,7 @@ msgstr "Warteschlange"
4162
  msgid "RATE BLOG2SOCIAL"
4163
  msgstr "Blog2Social jetzt bewerten"
4164
 
4165
- #: views/b2s/html/header.php:255
4166
  msgid "RATE IT!"
4167
  msgstr "BEWERTE ES!"
4168
 
@@ -4214,7 +4268,7 @@ msgstr "Weiterlesen"
4214
  msgid "Rebrandly"
4215
  msgstr "Rebrandly"
4216
 
4217
- #: includes/Tools.php:533
4218
  msgid "Recently Used"
4219
  msgstr "Zuletzt verwendet"
4220
 
@@ -4256,7 +4310,7 @@ msgstr "Reporting"
4256
  #: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
4257
  #: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
4258
  #: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
4259
- #: views/b2s/html/footer.php:461 views/b2s/html/footer.php:554
4260
  msgid ""
4261
  "Reporting & calendar: keep track of your published and scheduled social "
4262
  "media posts"
@@ -4272,7 +4326,7 @@ msgstr ""
4272
  "Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
4273
  "und geplanten Social Media Beiträge."
4274
 
4275
- #: views/b2s/html/header.php:374
4276
  msgid "Reporting with links to all published social media posts"
4277
  msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
4278
 
@@ -4311,7 +4365,7 @@ msgid "resolve conflict"
4311
  msgstr "Konflikt beheben"
4312
 
4313
  #: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
4314
- #: includes/B2S/Ship/Save.php:476
4315
  msgid "Retweet"
4316
  msgstr "Retweet"
4317
 
@@ -4327,7 +4381,7 @@ msgstr ""
4327
  "verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
4328
  "aus Deinem WordPress heraus planen."
4329
 
4330
- #: includes/Tools.php:506
4331
  msgid "Romania"
4332
  msgstr "Rumänien"
4333
 
@@ -4335,7 +4389,7 @@ msgstr "Rumänien"
4335
  msgid "RSS import & auto-post"
4336
  msgstr "RSS-Import & Auto-Poster"
4337
 
4338
- #: includes/Tools.php:497
4339
  msgid "Russia"
4340
  msgstr "Russland"
4341
 
@@ -4360,7 +4414,7 @@ msgstr " Speichern"
4360
  msgid "save"
4361
  msgstr "speichern"
4362
 
4363
- #: views/b2s/html/header.php:656
4364
  msgid "Save a lot of time for your social media tasks!"
4365
  msgstr ""
4366
  "Gib Deinen Social-Media-Aufgaben eine Routine und spare so eine Menge Zeit!"
@@ -4398,7 +4452,7 @@ msgstr "speichere Daten..."
4398
  msgid "saved"
4399
  msgstr "gespeichert"
4400
 
4401
- #: views/b2s/html/header.php:161
4402
  msgid "Saved as draft"
4403
  msgstr "Als Entwurf gespeichert"
4404
 
@@ -4412,7 +4466,7 @@ msgstr "Als Entwurf gespeichert."
4412
  #: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
4413
  #: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
4414
  #: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
4415
- #: views/b2s/html/footer.php:458 views/b2s/html/footer.php:551
4416
  msgid "Schedule and re-share old posts"
4417
  msgstr "Plane und teile alte Beiträge"
4418
 
@@ -4461,7 +4515,7 @@ msgstr "Beitrag planen"
4461
  #: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
4462
  #: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
4463
  #: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
4464
- #: views/b2s/html/footer.php:457 views/b2s/html/footer.php:550
4465
  msgid "Schedule your post for one time, multiple times or recurrently"
4466
  msgstr ""
4467
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
@@ -4473,7 +4527,7 @@ msgstr ""
4473
  #: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
4474
  #: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
4475
  #: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
4476
- #: views/b2s/html/footer.php:455 views/b2s/html/footer.php:548
4477
  msgid "Schedule your posts at the best times on each network"
4478
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
4479
 
@@ -4501,7 +4555,7 @@ msgstr "Scheduled Auto-Posting"
4501
  msgid "scheduled by %s"
4502
  msgstr "von %s vorgeplant "
4503
 
4504
- #: includes/B2S/Ship/Save.php:477
4505
  msgid "scheduled on"
4506
  msgstr "geplant für"
4507
 
@@ -4535,7 +4589,7 @@ msgstr "zum Seitenende"
4535
  msgid "scroll to top"
4536
  msgstr "zum Seitenanfang"
4537
 
4538
- #: includes/Tools.php:532
4539
  msgid "Search"
4540
  msgstr "Suche"
4541
 
@@ -4606,7 +4660,7 @@ msgstr "Wähle Bild aus für"
4606
  #: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
4607
  #: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
4608
  #: views/b2s/html/footer.php:402 views/b2s/html/footer.php:460
4609
- #: views/b2s/html/footer.php:553
4610
  msgid "Select individual images per post"
4611
  msgstr ""
4612
  "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
@@ -4627,7 +4681,7 @@ msgstr ""
4627
  #: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
4628
  #: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
4629
  #: views/b2s/html/footer.php:401 views/b2s/html/footer.php:459
4630
- #: views/b2s/html/footer.php:552
4631
  msgid "Select link format or image format for your posts"
4632
  msgstr ""
4633
  "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
@@ -4749,7 +4803,7 @@ msgstr "Einstellungen"
4749
  msgid "Share"
4750
  msgstr "Teilen"
4751
 
4752
- #: includes/B2S/Post/Item.php:923 includes/B2S/Ship/Save.php:457
4753
  msgid "share"
4754
  msgstr "teilen"
4755
 
@@ -4811,7 +4865,7 @@ msgstr "Sofort teilen"
4811
  msgid "share oldest posts first"
4812
  msgstr "älteste Beiträge zuerst teilen"
4813
 
4814
- #: views/b2s/html/header.php:372
4815
  msgid "Share on multiple accounts per network"
4816
  msgstr "Teile auf mehreren Netzwerk-Konten "
4817
 
@@ -4821,7 +4875,7 @@ msgstr "Teile auf mehreren Netzwerk-Konten "
4821
  #: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
4822
  #: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
4823
  #: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
4824
- #: views/b2s/html/footer.php:453 views/b2s/html/footer.php:546
4825
  msgid "Share on multiple profiles, pages and groups"
4826
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
4827
 
@@ -4997,23 +5051,7 @@ msgstr "Anmelden"
4997
  msgid "Sign in to Pinterest"
4998
  msgstr "Melde Dich bei Pinterest an"
4999
 
5000
- #: views/b2s/autopost.php:143
5001
- msgid ""
5002
- "Since Blog2Social works WordPress user based, please make sure you activate "
5003
- "and define the preferred settings panel for each user."
5004
- msgstr ""
5005
- "Da Blog2Social auf WordPress-Nutzerbasiert arbeitet, stelle bitte sicher, "
5006
- "dass Du die Einstellungen für jeden Benutzer aktivierst."
5007
-
5008
- #: views/b2s/autopost.php:179
5009
- msgid ""
5010
- "Since Blog2Social works WordPress user based, please make sure you activate "
5011
- "and define the preferred settings panel for each user. "
5012
- msgstr ""
5013
- "Da Blog2Social auf WordPress-Nutzerbasiert arbeitet, stelle bitte sicher, "
5014
- "dass Du die Einstellungen für jeden Benutzer aktivierst."
5015
-
5016
- #: includes/Tools.php:518
5017
  msgid "Slovakia"
5018
  msgstr "Slowakei"
5019
 
@@ -5033,7 +5071,7 @@ msgstr "SMART"
5033
  msgid "Smart: 3 (per user)"
5034
  msgstr "Smart: 3 (pro Nutzer)"
5035
 
5036
- #: includes/Tools.php:534
5037
  msgid "Smileys & People"
5038
  msgstr "Smileys & Personen"
5039
 
@@ -5045,7 +5083,7 @@ msgstr "Sniply"
5045
  msgid "Social Accounts"
5046
  msgstr "Social Media Konten"
5047
 
5048
- #: views/b2s/html/header.php:370
5049
  msgid "Social Media Auto-Posting"
5050
  msgstr "Social Media Auto-Posting"
5051
 
@@ -5059,7 +5097,7 @@ msgid "Social Media Calendar"
5059
  msgstr "Social Media Kalender"
5060
 
5061
  #: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
5062
- #: views/b2s/metrics.php:233 views/b2s/html/header.php:532
5063
  #: views/b2s/html/sidebar.php:102
5064
  msgid "Social Media Metrics"
5065
  msgstr "Social-Media-Kennzahlen"
@@ -5089,7 +5127,7 @@ msgstr "Social Media Posts sind bereit, geteilt zu werden"
5089
  msgid "Social Media Scheduling & Sharing"
5090
  msgstr "Beitrag auf Social Media planen und teilen"
5091
 
5092
- #: views/b2s/html/header.php:584 views/b2s/html/header.php:643
5093
  msgid ""
5094
  "Social media templates to turn your social media posts automatically into "
5095
  "tailored posts for each network and community by customizing your post "
@@ -5137,7 +5175,7 @@ msgstr ""
5137
  "Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
5138
  "target=\"_blank\">Guide</a>."
5139
 
5140
- #: views/b2s/html/header.php:477
5141
  msgid "Something went wrong on our side. Please contact support!"
5142
  msgstr ""
5143
  "Etwas ist auf unserer Seite schiefgelaufen. Bitte wende Dich an unseren "
@@ -5151,11 +5189,11 @@ msgstr "sortieren"
5151
  msgid "Sort by network"
5152
  msgstr "Sortiere nach Netzwerk"
5153
 
5154
- #: includes/Tools.php:521
5155
  msgid "South Africa"
5156
  msgstr "Südafrika"
5157
 
5158
- #: includes/Tools.php:494
5159
  msgid "Spain"
5160
  msgstr "Spanien"
5161
 
@@ -5172,11 +5210,11 @@ msgstr "Jetzt kostenlos testen"
5172
  msgid "Start your 30-day free Premium trial"
5173
  msgstr "Teste Blog2Social Premium kostenlos"
5174
 
5175
- #: views/b2s/html/header.php:280
5176
  msgid "Start your free 30-day-Premium-trial"
5177
  msgstr "Teste Blog2Social Premium"
5178
 
5179
- #: views/b2s/html/header.php:543
5180
  msgid "Start your free trial for Social Media Metrics"
5181
  msgstr "Starte jetzt Deine exklusive Testphase"
5182
 
@@ -5237,15 +5275,15 @@ msgstr "Support"
5237
  msgid "Supported HTML tags"
5238
  msgstr "Erlaubte HTML-Elemente"
5239
 
5240
- #: includes/Tools.php:516
5241
  msgid "Sweden"
5242
  msgstr "Schweden"
5243
 
5244
- #: includes/Tools.php:491
5245
  msgid "Switzerland"
5246
  msgstr "Schweiz"
5247
 
5248
- #: includes/Tools.php:540
5249
  msgid "Symbols"
5250
  msgstr "Symbole"
5251
 
@@ -5253,7 +5291,7 @@ msgstr "Symbole"
5253
  msgid "System"
5254
  msgstr "System"
5255
 
5256
- #: views/b2s/html/header.php:583 views/b2s/html/header.php:642
5257
  msgid ""
5258
  "Tailoring options like individual images for each post, different post "
5259
  "formats (link and image post), emojis, hashtags, handles and GIFs for your "
@@ -5272,7 +5310,7 @@ msgstr "Team-Management"
5272
  msgid "Terms"
5273
  msgstr "Bedingungen"
5274
 
5275
- #: views/b2s/html/header.php:361
5276
  msgid "Test Blog2Social PREMIUM 30 days for free"
5277
  msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
5278
 
@@ -5299,7 +5337,7 @@ msgstr ""
5299
  "Deine Beiträge auch mit individuellen Hashtags, @Mentions oder Emojis "
5300
  "anpassen."
5301
 
5302
- #: views/b2s/html/header.php:200
5303
  msgid "Thank you! Your feedback has been received."
5304
  msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
5305
 
@@ -5307,7 +5345,7 @@ msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
5307
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
5308
  msgstr "Vielen Dank. Du erhältst nun die Blog-Updates von Blog2Social."
5309
 
5310
- #: views/b2s/html/header.php:582 views/b2s/html/header.php:641
5311
  msgid ""
5312
  "The Auto-Poster, to automatically share your posts immediately or at a later "
5313
  "time."
@@ -5341,7 +5379,7 @@ msgstr ""
5341
  "Bildgröße des jeweiligen Netzwerkes an. Du kannst bis zu 4 Bilder in einem "
5342
  "Beitrag auf Facebook (Seite und Gruppe) sowie auf Twitter teilen."
5343
 
5344
- #: views/b2s/html/header.php:590 views/b2s/html/header.php:649
5345
  msgid ""
5346
  "The Best Time Manager to reach your followers when they are most active on "
5347
  "each social network and increase your reach."
@@ -5438,7 +5476,7 @@ msgstr ""
5438
  "Link, Video, Bild oder Text teilen. Nach 24h kannst Du die ersten Kennzahlen "
5439
  "des Beitrags unter dem Menüpunkt “Social-Media-Kennzahlen” einsehen."
5440
 
5441
- #: views/b2s/html/header.php:367
5442
  msgid ""
5443
  "The free trial can not be started. This blog has been already registered for "
5444
  "the free trial."
@@ -5470,7 +5508,7 @@ msgid "The images file types .jpg and .png are allowed. Please try another."
5470
  msgstr ""
5471
  "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
5472
 
5473
- #: views/b2s/html/header.php:429
5474
  msgid "The license has been successfully activated."
5475
  msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
5476
 
@@ -5607,7 +5645,7 @@ msgstr ""
5607
  "veröffentlicht werden. Mehr Informationen in dem <a href=\"%s\" "
5608
  "target=\"_blank\">Instagram-Guide</a>."
5609
 
5610
- #: views/b2s/html/header.php:239
5611
  msgid ""
5612
  "The posts you tried to add are already in your sharing queue. If you want to "
5613
  "re-schedule them, please delete the posts before adding them again."
@@ -5656,7 +5694,7 @@ msgstr ""
5656
  "Die Einstellungen für den Auto-Poster wurden für Dich von einem WordPress-"
5657
  "Admin vorgenommen."
5658
 
5659
- #: views/b2s/html/header.php:591 views/b2s/html/header.php:650
5660
  msgid ""
5661
  "The social media calendar to keep track of your scheduled social media posts."
5662
  " Add social media posts, edit or change the date per drag & drop."
@@ -5676,7 +5714,7 @@ msgstr ""
5676
  msgid "The tags you have set in your post."
5677
  msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
5678
 
5679
- #: views/b2s/html/header.php:592 views/b2s/html/header.php:651
5680
  msgid ""
5681
  "The team and user management settings to organize multiple users and "
5682
  "licenses and to collaborate on the social media calendar, and much more."
@@ -5719,6 +5757,16 @@ msgstr ""
5719
  "Systemumgebung Deines Blogs ausgelöst werden können. So kannst Du jederzeit "
5720
  "selbstständig Deine Einstellung auf Wordpress einsehen."
5721
 
 
 
 
 
 
 
 
 
 
 
5722
  #: views/b2s/network.php:163
5723
  msgid "The user to whom the connection is assigned still has scheduled posts."
5724
  msgstr ""
@@ -5741,10 +5789,6 @@ msgstr ""
5741
  "verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
5742
  "eine andere Netzwerkgruppierung aus. "
5743
 
5744
- #: views/b2s/autopost.php:116 views/b2s/autopost.php:156
5745
- msgid "There are two different setting panels in the auto-poster section:"
5746
- msgstr "Im Bereich Auto-Poster gibt es zwei verschiedene Einstellungsbereiche:"
5747
-
5748
  #: views/b2s/ship.php:588
5749
  msgid ""
5750
  "There is already a saved draft for this WordPress post or page. If you save "
@@ -5779,11 +5823,11 @@ msgstr ""
5779
  msgid "This connection has already been assigned to this user."
5780
  msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
5781
 
5782
- #: views/b2s/html/header.php:128
5783
  msgid "This entry could not be removed. It's not yours!"
5784
  msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
5785
 
5786
- #: views/b2s/html/header.php:133
5787
  msgid "This entry was removed successfully."
5788
  msgstr "Dieser Eintrag wurde erfolgreich entfernt."
5789
 
@@ -5803,7 +5847,7 @@ msgstr ""
5803
  "Dies ist eine globale Einstellung für Deinen Website/ Deinen Blog, die nur "
5804
  "von Nutzern mit Admin-Rechten bearbeitet werden kann. "
5805
 
5806
- #: includes/B2S/Ship/Save.php:442 includes/B2S/Ship/Save.php:450
5807
  msgid "This is how it works:"
5808
  msgstr "Und so funktioniert es:"
5809
 
@@ -5815,7 +5859,7 @@ msgstr "Diese Netzwerkverbindung ist anderen Blog-Nutzern zugeordnet."
5815
  msgid "This post is blocked by %1"
5816
  msgstr "% 1bearbeitet gerade diesen Beitrag."
5817
 
5818
- #: views/b2s/html/header.php:138
5819
  msgid "This post was edited successfully."
5820
  msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
5821
 
@@ -5893,15 +5937,12 @@ msgstr "Zeitzone für die Planung"
5893
 
5894
  #: views/b2s/ship.php:58 views/prg/ship.php:43 views/prg/ship.php:45
5895
  #: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
5896
- #: includes/B2S/Settings/Item.php:231 views/prg/html/form.php:26
 
5897
  #: views/prg/html/form.php:28
5898
  msgid "Title"
5899
  msgstr "Titel"
5900
 
5901
- #: views/b2s/html/footer.php:511 views/b2s/html/footer.php:526
5902
- msgid "title"
5903
- msgstr "Titel"
5904
-
5905
  #: views/b2s/settings.php:118
5906
  msgid "Title: The title of your post."
5907
  msgstr "Titel: Der Titel Deines Beitrags."
@@ -5952,7 +5993,7 @@ msgstr ""
5952
  "Support Community, um noch mehr Antworten zu finden und Deine Fragen zu "
5953
  "stellen. (<a href=\"%s\" target=\"_blank\">Info</a>)"
5954
 
5955
- #: views/b2s/html/header.php:597
5956
  msgid ""
5957
  "To keep all these benefits from all advanced features for automated "
5958
  "scheduling and sharing and to keep all your individual settings und "
@@ -6001,7 +6042,7 @@ msgid "Transfer Auto-Poster settings to other users (Business):"
6001
  msgstr ""
6002
  "Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
6003
 
6004
- #: includes/Tools.php:538
6005
  msgid "Travel & Places"
6006
  msgstr "Reisen & Orte"
6007
 
@@ -6021,7 +6062,7 @@ msgstr "Di"
6021
  msgid "Tuesday"
6022
  msgstr "Dienstag"
6023
 
6024
- #: includes/Tools.php:501
6025
  msgid "Turkey"
6026
  msgstr "Türkei"
6027
 
@@ -6082,7 +6123,7 @@ msgstr ""
6082
  "Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
6083
  "versuche es erneut!"
6084
 
6085
- #: includes/Tools.php:488
6086
  msgid "United States of America"
6087
  msgstr "Vereinigte Staaten von Amerika"
6088
 
@@ -6133,7 +6174,7 @@ msgstr "Upgrade"
6133
  msgid "Upgrade License"
6134
  msgstr "Lizenz upgraden"
6135
 
6136
- #: views/b2s/html/header.php:636
6137
  msgid "Upgrade now to keep all benefits of Blog2Social Premium:"
6138
  msgstr "Upgrade jetzt und nutze die Vorteile von Blog2Social Premium:"
6139
 
@@ -6166,12 +6207,12 @@ msgstr "Jetzt auf Blog2Social Premium upgraden"
6166
  msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
6167
  msgstr "Jetzt auf Blog2Social PREMIUM BUSINESS upgraden"
6168
 
6169
- #: views/b2s/html/header.php:569 views/b2s/html/header.php:630
6170
- #: views/b2s/html/header.php:673
6171
  msgid "Upgrade to Blog2Social Premium now"
6172
  msgstr "Ich möchte auf Blog2Social Premium upgraden."
6173
 
6174
- #: views/b2s/html/header.php:344 views/b2s/html/header.php:602
6175
  msgid "Upgrade to Blog2Social Premium now."
6176
  msgstr "Ich möchte auf Blog2Social Premium upgraden."
6177
 
@@ -6207,7 +6248,7 @@ msgstr ""
6207
  msgid "Upgrade to BUSINESS"
6208
  msgstr "Upgrade auf BUSINESS"
6209
 
6210
- #: views/b2s/html/header.php:308
6211
  msgid "Upgrade to PREMIUM"
6212
  msgstr "Jetzt auf Premium upgraden"
6213
 
@@ -6231,7 +6272,7 @@ msgstr "Upgrade auf PRO und höher"
6231
  #: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
6232
  #: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
6233
  #: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
6234
- #: views/b2s/html/footer.php:463 views/b2s/html/footer.php:556
6235
  msgid "Upgrade to SMART and above"
6236
  msgstr "Upgrade auf SMART und höher"
6237
 
@@ -6332,7 +6373,7 @@ msgstr "via Browser-Extension"
6332
  msgid "View schedule posts"
6333
  msgstr "Geplante Beiträge anzeigen"
6334
 
6335
- #: includes/B2S/Ship/Save.php:467
6336
  msgid "view social media post"
6337
  msgstr "Zeige Social Media Beitrag an"
6338
 
@@ -6365,11 +6406,11 @@ msgstr ""
6365
  "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
6366
  "überprüfe deine Autorisierung."
6367
 
6368
- #: views/b2s/metrics.php:221 views/b2s/html/header.php:546
6369
  msgid "We hope you enjoy analysing your posts!"
6370
  msgstr "Wir wünschen Dir viel Spaß beim Analysieren Deiner Beiträge!"
6371
 
6372
- #: views/b2s/html/header.php:321
6373
  msgid "We hope you liked Blog2Social Premium."
6374
  msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
6375
 
@@ -6377,7 +6418,7 @@ msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
6377
  msgid "We never store your data from your social media profiles"
6378
  msgstr "Wir speichern Deine Daten aus Deinen Social-Media-Profilen niemals."
6379
 
6380
- #: views/b2s/html/header.php:502
6381
  msgid "We updated our Privacy Policy"
6382
  msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
6383
 
@@ -6412,7 +6453,15 @@ msgstr ""
6412
  "Herzlich Willkommen zur Testphase der Beta-Version \"Social-Media-"
6413
  "Kennzahlen\"!"
6414
 
6415
- #: views/b2s/html/header.php:575
 
 
 
 
 
 
 
 
6416
  msgid "What do you like best of Blog2Social Premium?"
6417
  msgstr "Was gefällt Dir am meisten an Blog2Social Premium?"
6418
 
@@ -6506,11 +6555,11 @@ msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
6506
  #: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
6507
  #: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
6508
  #: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
6509
- #: views/b2s/html/footer.php:449 views/b2s/html/footer.php:542
6510
  msgid "With Blog2Social Premium you can:"
6511
  msgstr "Mit Blog2Social kannst Du:"
6512
 
6513
- #: views/b2s/html/header.php:633
6514
  msgid ""
6515
  "With Blog2Social Premium you have all the options you need to promote your "
6516
  "content on your social media channels successfully and time-savingly."
@@ -6654,6 +6703,16 @@ msgstr ""
6654
  "pro Social Media Kanal verändern und Deine Beiträge als BildPost oder als "
6655
  "Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
6656
 
 
 
 
 
 
 
 
 
 
 
6657
  #: views/b2s/metrics.php:273
6658
  msgid ""
6659
  "With this function, you can compare the social media metrics for a period "
@@ -6749,15 +6808,15 @@ msgstr "Ja, löschen"
6749
  msgid "Yes, I accept"
6750
  msgstr "Ja,einverstanden"
6751
 
6752
- #: views/b2s/html/header.php:286
6753
  msgid "Yes, I want to test Blog2Social Premium 30 days for free"
6754
  msgstr "Ja, ich möchte Blog2Social Premium 30 Tage kostenlos testen"
6755
 
6756
- #: views/b2s/html/header.php:327
6757
  msgid "Yes, I want to upgrade to Blog2Social Premium"
6758
  msgstr "Ja, ich möchte gerne auf Blog2Social Premium upgraden"
6759
 
6760
- #: views/b2s/html/footer.php:580
6761
  msgid ""
6762
  "You are currently sharing this post as image post. Changes to title and "
6763
  "description Meta Tag parameters will only be supported for link post formats."
@@ -6815,25 +6874,7 @@ msgstr ""
6815
  "oder jedes Netzwerk bearbeiten und Deine neuen Einstellungen als Standard "
6816
  "für die zukünftige Verwendung speichern."
6817
 
6818
- #: views/b2s/html/footer.php:507
6819
- msgid ""
6820
- "You can change the image, title and description for your post on Facebook, "
6821
- "by editing the following fields for"
6822
- msgstr ""
6823
- "Du kannst das Bild, den Titel und die Beschreibung Deines Beitrags auf "
6824
- "Facebook ändern, indem Du die folgenden Felder für die Open GraphTags "
6825
- "bearbeitest"
6826
-
6827
- #: views/b2s/html/footer.php:522
6828
- msgid ""
6829
- "You can change the image, title and description for your post on Twitter, by "
6830
- "editing the following fields for"
6831
- msgstr ""
6832
- "Du kannst das Bild, den Titel und die Beschreibung Deines Beitrags auf "
6833
- "Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
6834
- "bearbeitest"
6835
-
6836
- #: views/b2s/html/header.php:534 views/b2s/html/header.php:572
6837
  msgid ""
6838
  "You can now track the performance of your post directly in Blog2Social, and "
6839
  "you can test it exclusively and for free!"
@@ -6968,7 +7009,7 @@ msgstr ""
6968
  "unterstützt werden, erhältst Du in dem \n"
6969
  "<a href=\"%s\" target=\"_blank\">\"Link-Shortener\"-Guide</a>."
6970
 
6971
- #: views/b2s/html/header.php:115
6972
  msgid ""
6973
  "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
6974
  "plugins active. To make sure that your Social Meta Tags are set correctly, "
@@ -6988,17 +7029,6 @@ msgstr "Du hast keine Business-Lizenz"
6988
  msgid "You have already retweeted this post."
6989
  msgstr "Du hast diesen Post bereits retweetet."
6990
 
6991
- #: views/b2s/html/header.php:109
6992
- msgid ""
6993
- "You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
6994
- "that you use only one plugin to set social meta tags so that the networks "
6995
- "can show the link preview of your post correctly."
6996
- msgstr ""
6997
- "Du hast sowohl Yoast SEO als auch Blog2Social Meta Tags aktiv. Bitte achte "
6998
- "darauf, dass Du nur ein Plugin zum Setzen von Social Meta Tags verwendest, "
6999
- "damit die Netzwerke die Link-Vorschau Deines Beitrags korrekt anzeigen "
7000
- "können."
7001
-
7002
  #: views/b2s/html/header.php:98
7003
  msgid "You have deleted all meta data for posts and pages successfully."
7004
  msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
@@ -7077,7 +7107,7 @@ msgstr "Du möchtest Deinen Beitrag erneut teilen?"
7077
  msgid "You want to auto-post your blog post?"
7078
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
7079
 
7080
- #: views/b2s/html/footer.php:541
7081
  msgid "You want to change the image, title and description for your post?"
7082
  msgstr ""
7083
  "Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
@@ -7163,6 +7193,15 @@ msgstr ""
7163
  "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
7164
  "Manager benutzen?"
7165
 
 
 
 
 
 
 
 
 
 
7166
  #: views/b2s/settings.php:108
7167
  #, php-format
7168
  msgid ""
@@ -7216,11 +7255,11 @@ msgstr ""
7216
  msgid "Your Activity"
7217
  msgstr "Deine Aktivität"
7218
 
7219
- #: views/b2s/html/header.php:190
7220
  msgid "Your authorization could not be removed."
7221
  msgstr "Deine Autorisierung konnte nicht entfernt werden."
7222
 
7223
- #: views/b2s/html/header.php:195
7224
  msgid "Your authorization has been removed successfully."
7225
  msgstr "Deine Autorisierung wurde erfolgreich entfernt."
7226
 
@@ -7243,7 +7282,7 @@ msgstr ""
7243
  "den Blog2Social-Netzwerkeinstellungen erneut. <a target=\"_blank\" "
7244
  "href=\"%s\">So verbindest Du Dein Konto neu.</a>"
7245
 
7246
- #: views/b2s/html/header.php:175
7247
  msgid "Your authorization was successful."
7248
  msgstr "Deine Autorisierung war erfolgreich."
7249
 
@@ -7264,7 +7303,7 @@ msgid ""
7264
  "queue."
7265
  msgstr "Blog2Social für ein höheres Kontingent an Posts in der Warteschlange."
7266
 
7267
- #: views/b2s/html/footer.php:583
7268
  #, php-format
7269
  msgid ""
7270
  "Your changes will have no effect on your social media posts on Facebook, if "
@@ -7276,7 +7315,7 @@ msgstr ""
7276
  "Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell "
7277
  "deaktiviert hast."
7278
 
7279
- #: views/b2s/html/footer.php:586
7280
  #, php-format
7281
  msgid ""
7282
  "Your changes will have no effect on your social media posts on Twitter, if "
@@ -7287,6 +7326,29 @@ msgstr ""
7287
  "auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
7288
  "<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
7289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7290
  #: views/b2s/post.php:22
7291
  msgid "Your complete social media management in one place"
7292
  msgstr "Dein komplettes Social-Media-Management an einem Ort"
@@ -7310,7 +7372,7 @@ msgstr ""
7310
  msgid "Your daily limit has been reached."
7311
  msgstr "Dein tägliches Beitragslimit wurde erreicht."
7312
 
7313
- #: views/b2s/html/header.php:445
7314
  msgid "Your entered License Key is invalid. Please contact support!"
7315
  msgstr ""
7316
  "Der eingegebene Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren "
@@ -7336,19 +7398,19 @@ msgstr ""
7336
  "Erfahre, wie Du die Facebook-Seiteneinstellungen prüfen und ändern kannst."
7337
  "</a>"
7338
 
7339
- #: views/b2s/html/header.php:205
7340
  msgid "Your feedback could not be delivered."
7341
  msgstr "Dein Feedback konnte nicht gesendet werden."
7342
 
7343
- #: views/b2s/html/header.php:298
7344
  msgid "Your free Blog2Social Premium trial version is activated for "
7345
  msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
7346
 
7347
- #: views/b2s/html/header.php:339
7348
  msgid "Your free Premium trial ends soon. "
7349
  msgstr "Deine kostenlose Premium Testphase endet bald."
7350
 
7351
- #: views/b2s/html/header.php:565
7352
  #, php-format
7353
  msgid ""
7354
  "Your free trial of Blog2Social Premium expires in %d days. Don’t miss to "
@@ -7359,11 +7421,11 @@ msgstr ""
7359
  "durchzuführen, bevor Deine Testphase abläuft, damit Du alle Vorteile und "
7360
  "individuelle Einstellungen behältst."
7361
 
7362
- #: views/b2s/html/header.php:320
7363
  msgid "Your free trial of Blog2Social PREMIUM has ended."
7364
  msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
7365
 
7366
- #: views/b2s/html/header.php:626
7367
  msgid ""
7368
  "Your free trial of Blog2Social Premium has expired. We hope you explored and "
7369
  "enjoyed all the Premium options."
@@ -7375,11 +7437,11 @@ msgstr ""
7375
  msgid "Your group can not be found by the network."
7376
  msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
7377
 
7378
- #: views/b2s/html/header.php:461
7379
  msgid "Your license key has reached the maximum number of users."
7380
  msgstr "Dein Lizenzschlüssel hat die maximale Anzahl von Benutzern erreicht."
7381
 
7382
- #: views/b2s/html/header.php:244
7383
  msgid ""
7384
  "Your limit for your quota of posts in your queue has been reached. Please "
7385
  "delete posts from your queue before you add more"
@@ -7419,7 +7481,7 @@ msgstr ""
7419
  "ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
7420
 
7421
  #: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:787
7422
- #: includes/B2S/Ship/Save.php:491
7423
  #, php-format
7424
  msgid ""
7425
  "Your post could not be posted. More information in this <a href=\"%s\" "
@@ -7442,11 +7504,11 @@ msgstr ""
7442
  "geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
7443
  "planen."
7444
 
7445
- #: views/b2s/html/header.php:185
7446
  msgid "Your profile could not be saved."
7447
  msgstr "Dein Profil konnte nicht gespeichert werden."
7448
 
7449
- #: views/b2s/html/header.php:180
7450
  msgid "Your profile was saved successful."
7451
  msgstr "Dein Profil wurde erfolgreich gespeichert. "
7452
 
@@ -7467,7 +7529,7 @@ msgstr ""
7467
  "Schaltfläche \"+ Mehr hinzufügen\", im obersten Feld der Navigation, neue "
7468
  "Netzwerke verbinden."
7469
 
7470
- #: views/b2s/html/header.php:222
7471
  msgid ""
7472
  "Your settings could not be saved, because you have auto-posting enabled but "
7473
  "no social networks selected."
@@ -7475,11 +7537,11 @@ msgstr ""
7475
  "Deine Einstellungen konnten nicht gespeichert werden, da Du keine sozialen "
7476
  "Netzwerke ausgewählt hast, bevor Du den Auto-Poster aktiviert hast."
7477
 
7478
- #: views/b2s/html/header.php:217
7479
  msgid "Your settings could not be saved."
7480
  msgstr "Deine Einstellungen konnten nicht gespeichert werden."
7481
 
7482
- #: views/b2s/html/header.php:212 views/b2s/html/header.php:227
7483
  msgid "Your settings were successfully saved."
7484
  msgstr "Deine Einstellungen wurden erfolgreich gespeichert. "
7485
 
2
  # This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post &amp; Scheduler - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2022-04-04 10:17+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
17
  "Language-Team: Deutsch\n"
18
  "X-Loco-Version: 2.5.3; wp-5.9"
19
 
20
+ #: views/b2s/html/header.php:305
21
  msgid " Days"
22
  msgstr "Tage"
23
 
24
+ #: views/b2s/html/header.php:248
25
  msgid " or upgade your Blog2Social license to extend your quota."
26
  msgstr ""
27
  " oder upgrade Deine Blog2Social Lizenz, um Deine Warteschlange zu erweitern."
28
 
29
+ #: views/b2s/html/header.php:305
30
  msgid " today"
31
  msgstr "heute"
32
 
33
+ #: views/b2s/html/header.php:666
34
  msgid ""
35
  "\"Blog2Social is the master tool any blogger or marketer needs to automate "
36
  "your social media activity. It removes so much work and stress that's "
67
  msgid "+ add Parameter"
68
  msgstr "+ Parameter hinzufügen"
69
 
70
+ #: includes/B2S/Ship/Save.php:439
71
  msgid ""
72
  "-For scheduled posts, Blog2Social will save your post and move it to the "
73
  "\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
80
  "Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
81
  "Facebook-Profil zu senden!"
82
 
83
+ #: includes/B2S/Ship/Save.php:447
84
  msgid ""
85
  "-For scheduled posts, Blog2Social will save your post and move it to the "
86
  "\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
93
  "Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
94
  "Facebook-Profil zu senden!"
95
 
96
+ #: includes/B2S/Ship/Save.php:438
97
  msgid ""
98
  "-To share your post immediately, click the \"Share\" button next to your "
99
  "selected Facebook profile below."
101
  "-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
102
  "neben Deinem unten aufgeführten Profil."
103
 
104
+ #: includes/B2S/Ship/Save.php:446
105
  msgid ""
106
  "-To share your post immediately, click the \"Share\" button next to your "
107
  "selected Google+ account below."
109
  "Um den Beitrag sofort zu teilen, klicke einfach auf den Teilen Button neben "
110
  "Deinem unten aufgeführten Konto."
111
 
112
+ #: views/b2s/autopost.php:128 views/b2s/autopost.php:160
 
 
 
 
 
 
 
113
  #, php-format
114
  msgid ""
115
  "1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
136
  msgid "1x publish report"
137
  msgstr "1 x Veröffentlichungsreport"
138
 
139
+ #: views/b2s/autopost.php:130 views/b2s/autopost.php:162
 
 
 
 
 
 
 
 
140
  msgid ""
141
  "2. has the selected social media networks connected or assigned (Blog2Social "
142
  "-> Networks)"
152
  msgid "3. Blog2Social has the permission to publish your posts."
153
  msgstr "3. Blog2Social hat die Erlaubnis, Deine Beiträge zu veröffentlichen."
154
 
155
+ #: views/b2s/autopost.php:132 views/b2s/autopost.php:164
156
+ #| msgid ""
157
+ #| "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
158
+ msgid "3. is activated with the correct Auto-Poster settings (Autoposter FAQ)"
159
  msgstr ""
160
+ "3. mit den richtigen Auto-Poster-Einstellungen aktiviert ist (Autoposter FAQ)"
 
161
 
162
  #: views/b2s/network.php:735
163
  #, php-format
168
  "<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
169
  "weitere Seiten und Gruppen dazu buchen kannst.</a>"
170
 
171
+ #: views/b2s/autopost.php:151
 
 
 
 
 
 
 
 
 
 
172
  #, php-format
173
+ #| msgid ""
174
+ #| "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for "
175
+ #| "imported content</a>"
176
  msgid ""
177
+ "<a href=\"%s\" target=\"_blank\">How to set up the Auto-Poster for imported "
178
  "content</a>"
179
  msgstr ""
180
  "<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für "
181
+ "importiere Beiträge ein</a>"
 
 
 
 
 
 
 
 
 
 
182
 
183
+ #: views/b2s/autopost.php:119
184
  #, php-format
185
+ #| msgid ""
186
+ #| "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your "
187
+ #| "own original WordPress posts</a>"
188
  msgid ""
189
+ "<a href=\"%s\" target=\"_blank\">How to set up the Auto-Poster for your own "
190
+ "WordPress content</a>"
191
  msgstr ""
192
  "<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für Deine "
193
  "WordPress-Inhalte ein</a>"
201
  "<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
202
  "in unserem FAQs.</a>"
203
 
204
+ #: views/b2s/autopost.php:153
205
  #, php-format
206
+ #| msgid ""
207
+ #| "<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-"
208
+ #| "Poster- Things to check for Troubleshooting</a>"
209
  msgid ""
210
+ "<a href=\"%s\" target=\"_blank\">Sharing imported posts with the Auto-Poster-"
211
  " Things to check for Troubleshooting</a>"
212
  msgstr ""
213
+ "<a href=\"%s\" target=\"_blank\">Teilen mit dem Auto-Poster- Checkliste für "
214
+ "Problemlösungen</a>"
215
 
216
+ #: views/b2s/autopost.php:121
217
  #, php-format
218
  msgid ""
219
  "<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
332
  msgid "activated"
333
  msgstr "aktiviert"
334
 
335
+ #: includes/Tools.php:549
336
  msgid "Activities"
337
  msgstr "Aktivitäten"
338
 
547
  msgid "all posts"
548
  msgstr "alle Beiträge"
549
 
550
+ #: views/b2s/autopost.php:124 views/b2s/autopost.php:156
551
+ #| msgid ""
552
+ #| "All settings and social networks for the auto-poster can be defined for "
553
+ #| "each WordPress user individually."
554
  msgid ""
555
+ "All settings and social networks for the Auto-Poster can be defined for each "
556
  "WordPress user individually."
557
  msgstr ""
558
  "Alle Einstellungen und Social-Media-Netzwerke für den Auto-Poster können für "
559
+ "jeden WordPress-Nutzer individuell festgelegt werden."
560
 
561
  #: includes/B2S/Post/Filter.php:72
562
  msgid "all statuses"
627
  msgid "An unknown error occurred!"
628
  msgstr "Es ist ein unbekannter Fehler aufgetreten!"
629
 
630
+ #: views/b2s/html/header.php:396
631
  #, php-format
632
  msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
633
  msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
634
 
635
+ #: includes/Tools.php:547
636
  msgid "Animals & Nature"
637
  msgstr "Tiere & Natur"
638
 
710
  msgid "Are you sure you want to delete this Social Media draft?"
711
  msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
712
 
713
+ #: includes/Tools.php:526
714
  msgid "Argentina"
715
  msgstr "Argentinien"
716
 
748
  msgid "at scheduled times"
749
  msgstr "zu geplanten Zeiten"
750
 
751
+ #: includes/Tools.php:514
752
  msgid "Australia"
753
  msgstr "Australien"
754
 
755
+ #: includes/Tools.php:515
756
  msgid "Austria"
757
  msgstr "Österreich"
758
 
795
  #: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
796
  #: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
797
  #: views/b2s/html/footer.php:396 views/b2s/html/footer.php:454
798
+ #: views/b2s/html/footer.php:569
799
  msgid "Auto-post and auto-schedule new and updated blog posts"
800
  msgstr ""
801
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
846
  msgid "back to install plugins"
847
  msgstr "zurück zur Pluginübersicht"
848
 
849
+ #: views/b2s/html/header.php:541
850
  msgid ""
851
  "Benefit from the new Social Media Metrics and use the analysis of your "
852
  "social media posts for your further social media strategy."
864
  #: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
865
  #: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
866
  #: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
867
+ #: views/b2s/html/footer.php:456 views/b2s/html/footer.php:571
868
  msgid ""
869
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
870
  "social media posts"
882
  "Beste Zeiten Manager: Plane Deine Veröffentlichungen mehrmals oder "
883
  "regelmäßig."
884
 
885
+ #: views/b2s/html/header.php:377
886
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
887
  msgstr "Beste Zeitenplaner: Plane einmal, mehrmals oder wiederkehrend."
888
 
894
  msgid "Best Times Manager"
895
  msgstr "Beste Zeiten Manager"
896
 
897
+ #: views/b2s/metrics.php:233 views/b2s/html/header.php:536
898
  #: views/b2s/html/sidebar.php:102
899
  msgid "BETA"
900
  msgstr "BETA"
948
  "für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
949
  "gewünschte Zeitzone aus dem Drop-Down Menü."
950
 
951
+ #: views/b2s/html/footer.php:516
952
+ msgid ""
953
+ "Blog2Social automatically writes this information into the Open Graph (OG) "
954
+ "tags as the image, title and description of your WordPress post."
955
+ msgstr ""
956
+ "Blog2Social schreibt diese Informationen automatisch in die Open Graph (OG) "
957
+ "Tags als Bild, Titel und Beschreibung Deines WordPress-Beitrags."
958
+
959
+ #: views/b2s/html/footer.php:542
960
+ #| msgid ""
961
+ #| "Blog2Social will automatically write these information in the Twitter "
962
+ #| "Card Meta Tags for Image, Title and Description of your blog post."
963
+ msgid ""
964
+ "Blog2Social automatically writes this information into the Twitter Card tags "
965
+ "as the image, title and description of your WordPress post."
966
+ msgstr ""
967
+ "Blog2Social schreibt diese Informationen automatisch in die Twitter Card "
968
+ "Meta Tags als Bild, Titel und Beschreibung Deines WordPress-Beitrags."
969
+
970
  #: views/b2s/html/sidebar.php:152
971
  msgid "Blog2Social Blog News"
972
  msgstr "Blog2Social Blog News"
995
  "oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
996
  "zu tun."
997
 
998
+ #: views/b2s/html/header.php:125
999
  msgid ""
1000
  "Blog2Social has detected another plugin that is setting Social Meta tags for "
1001
  "your blog posts. To ensure that your Social Meta tags are set correctly for "
1008
  "eingestellt sind, deaktiviere bitte die Einstellungen für Facebook Open "
1009
  "Graph und Twitter Card Tags in Deinen anderen Plugins."
1010
 
1011
+ #: views/b2s/html/header.php:520
1012
  msgid "Blog2Social is a service of Adenion GmbH"
1013
  msgstr "Blog2Social ist ein Service der Adenion GmbH"
1014
 
1016
  msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
1017
  msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
1018
 
1019
+ #: views/b2s/html/header.php:309 views/b2s/html/header.php:328
1020
  msgid ""
1021
  "Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
1022
  "autopilot, automatically schedule your social media posts with the Best Time "
1100
  "zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf "
1101
  "welchem Standort Ihr Content geteilt werden soll."
1102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1103
  #. Author of the plugin
1104
  msgid "Blog2Social, Adenion"
1105
  msgstr "Blog2Social, Adenion"
1165
  "aufgeführten Netzwerke geändert. Dies gilt auch für deine vorgeplanten Posts "
1166
  "in diesem Format."
1167
 
1168
+ #: views/b2s/html/header.php:395
1169
  #, php-format
1170
  msgid ""
1171
  "By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
1193
  msgid "Call-to-Action"
1194
  msgstr "Call-to-Action"
1195
 
1196
+ #: includes/Tools.php:507
1197
  msgid "Canada"
1198
  msgstr "Kanada"
1199
 
1242
  msgid "Change image"
1243
  msgstr "Bild ändern"
1244
 
1245
+ #: views/b2s/html/footer.php:597
1246
  msgid "Change image, title and description for your post on this network"
1247
  msgstr ""
1248
  "Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
1286
  msgid "Chart"
1287
  msgstr "Diagramm"
1288
 
1289
+ #: views/b2s/html/header.php:286
1290
  msgid ""
1291
  "Check out Blog2Social Premium with more awesome features for scheduling and "
1292
  "sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
1303
  msgstr "Einstellungen mit Sharing-Debugger überprüfen"
1304
 
1305
  #: views/b2s/metrics.php:214
 
1306
  #| msgid "Check social media metrics"
1307
  msgid "Check Social Media Metrics"
1308
  msgstr "Social-Media-Kennzahlen einsehen"
1313
  "Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
1314
  "Netzwerke"
1315
 
1316
+ #: includes/Tools.php:531
1317
  msgid "Chile"
1318
  msgstr "Chile"
1319
 
1367
  msgid "clock"
1368
  msgstr "Uhr"
1369
 
1370
+ #: includes/Tools.php:532
1371
  msgid "Colombia"
1372
  msgstr "Kolumbien"
1373
 
1529
  "Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite "
1530
  "und versuche es erneut. "
1531
 
1532
+ #: views/b2s/html/header.php:171
1533
  msgid "Could not save draft"
1534
  msgstr "Der Entwurf konnte nicht gespeichert werden"
1535
 
1566
  msgstr "neues Konto erstellen"
1567
 
1568
  #: views/b2s/metrics.php:204
 
1569
  #| msgid "Create and share a social media post"
1570
  msgid "Create and Share a Social Media Post"
1571
  msgstr "Social Media Post erstellen und teilen"
1587
  msgstr ""
1588
  "Erstelle Deinen Support Account, um Fragen zu stellen und Hilfe zu erhalten"
1589
 
1590
+ #: views/b2s/html/header.php:593 views/b2s/html/header.php:653
1591
  msgid ""
1592
  "Creating social media posts from other sources, such as text, images, videos,"
1593
  " and links to add more content variety and manage all your social media "
1654
  msgid "Customizing Social Media Posts"
1655
  msgstr "Individualisierung der Social Media Posts"
1656
 
1657
+ #: includes/Tools.php:504
1658
  msgid "Czechoslovakia"
1659
  msgstr "Tschechoslowakei"
1660
 
1851
  msgid "Delete text"
1852
  msgstr "Text löschen"
1853
 
1854
+ #: includes/Tools.php:520
1855
  msgid "Denmark"
1856
  msgstr "Dänemark"
1857
 
1858
  #: includes/B2S/Settings/Item.php:183 includes/B2S/Settings/Item.php:232
1859
+ #: views/b2s/html/footer.php:514 views/b2s/html/footer.php:540
1860
  msgid "Description"
1861
  msgstr "Beschreibung"
1862
 
 
 
 
 
1863
  #: includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:498
1864
  #: includes/B2S/Post/Item.php:520 includes/B2S/Post/Item.php:617
1865
  msgid "Details"
1873
  msgid "Did you miss something?"
1874
  msgstr "Vermisst Du etwas?"
1875
 
1876
+ #: views/b2s/html/header.php:333
1877
  msgid "Did you miss something? Tell us!"
1878
  msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
1879
 
1880
+ #: views/b2s/html/header.php:581
1881
  msgid ""
1882
  "Did you try all options on how to organize your social media scheduling and "
1883
  "sharing tasks even more easily and automatically with Blog2Social Premium, "
1942
  msgstr "Dauer"
1943
 
1944
  #: views/b2s/network.php:398 views/b2s/ship.php:652
1945
+ #: views/b2s/html/header.php:381 views/prg/html/form.php:141
1946
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1947
  #: views/prg/html/form.php:220
1948
  msgid "E-Mail"
2142
  msgid "Failed to save"
2143
  msgstr "Speichern fehlgeschlagen"
2144
 
2145
+ #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:482
2146
  msgid "FAQ"
2147
  msgstr "FAQ"
2148
 
2170
  "Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
2171
  "automatisch veröffentlicht)"
2172
 
2173
+ #: includes/Tools.php:522
2174
  msgid "Finland"
2175
  msgstr "Finnland"
2176
 
2177
+ #: views/b2s/html/header.php:385 views/prg/html/form.php:91
2178
  #: views/prg/html/form.php:100 views/prg/html/form.php:168
2179
  #: views/prg/html/form.php:177
2180
  msgid "First Name"
2186
  "Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
2187
  "Du den Beitrag teilst!"
2188
 
2189
+ #: includes/Tools.php:553
2190
  msgid "Flags"
2191
  msgstr "Flaggen"
2192
 
2194
  msgid "Follow us"
2195
  msgstr "Folge uns"
2196
 
2197
+ #: includes/Tools.php:548
2198
  msgid "Food & Drink"
2199
  msgstr "Essen & Trinken"
2200
 
2231
  "Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
2232
  "bevorzugtes benutzerdefiniertes Postformat auswählen."
2233
 
2234
+ #: views/b2s/html/footer.php:530
2235
+ #, php-format
2236
+ msgid ""
2237
+ "For more information on how to set meta tags correctly, you can take a look "
2238
+ "into the <a target=\"_blank\" href=\"%s\">meta tag checklist</a>."
2239
+ msgstr ""
2240
+ "Für mehr Informationen, wie Du die Meta Tags korrekt verwenden kannst, folge "
2241
+ "der <a target=\"_blank\" href=\"%s\">Checkliste für Meta Tags</a>."
2242
+
2243
+ #: views/b2s/html/footer.php:556
2244
+ #, php-format
2245
+ msgid ""
2246
+ "For more information on how to set meta tags correctly, you can take a look "
2247
+ "into the <a target=\"_blank\" href=\"%s\">Twitter Card guide</a>."
2248
+ msgstr ""
2249
+ "Für mehr Informationen, wie Du die Meta Tags korrekt verwenden kannst, folge "
2250
+ "dem <a target=\"_blank\" href=\"%s\">Guide für Twitter Cards</a>."
2251
+
2252
+ #: includes/B2S/Ship/Save.php:443
2253
  msgid ""
2254
  "For sharing your posts on Google+ you can now use Google+ Instant Sharing"
2255
  msgstr ""
2256
  "Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
2257
  "zur Verfügung"
2258
 
2259
+ #: includes/B2S/Ship/Save.php:435
2260
  msgid ""
2261
  "For sharing your posts on personal Facebook Profiles you can use Facebook "
2262
  "Instant Sharing"
2285
  msgid "Frame colour:"
2286
  msgstr "Rahmenfarbe:"
2287
 
2288
+ #: includes/Tools.php:517
2289
  msgid "France"
2290
  msgstr "Frankreich"
2291
 
2313
  msgid "German"
2314
  msgstr "Deutsch"
2315
 
2316
+ #: includes/Tools.php:519
2317
  msgid "Germany"
2318
  msgstr "Deutschland"
2319
 
2320
+ #: views/b2s/html/header.php:672
2321
  msgid "Get all Premium benefits starting from just $7 per month."
2322
  msgstr ""
2323
  "Schon ab 6,00 Euro pro Monat kannst Du mit den Premium-Funktionen starten."
2326
  msgid "Get more information about the benefits of Blog2Social Premium"
2327
  msgstr "Erfahre mehr über die Vorteile von Blog2Social-Premium"
2328
 
 
 
 
 
 
 
 
 
 
2329
  #: views/b2s/curation.php:293
2330
  #, php-format
2331
  msgid ""
2341
  msgid "Get Social Media News"
2342
  msgstr "Social Media News"
2343
 
2344
+ #: views/b2s/html/header.php:407
2345
  msgid "Get Started"
2346
  msgstr "Jetzt loslegen"
2347
 
2409
  "Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
2410
  "Infografiken."
2411
 
2412
+ #: includes/Tools.php:508
2413
  msgid "Great Britain"
2414
  msgstr "Großbritannien"
2415
 
2416
+ #: includes/Tools.php:498
2417
  msgid "Greece"
2418
  msgstr "Griechenland"
2419
 
2459
  msgid "Here's how to start tracking your social media posts:"
2460
  msgstr "So startest Du mit dem Tracking der Deiner Social-Media-Posts:"
2461
 
2462
+ #: views/b2s/html/header.php:260
2463
  #, php-format
2464
  msgid ""
2465
  "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
2480
  msgid "hide calendar"
2481
  msgstr "Planungskalender verbergen"
2482
 
2483
+ #: views/b2s/html/header.php:683
2484
  msgid "Hide this notification."
2485
  msgstr "Diesen Hinweis nicht mehr anzeigen."
2486
 
2492
  msgid "How to check the Social Media Metrics?"
2493
  msgstr "Wie kann ich die Social-Media-Kennzahlen einsehen? "
2494
 
2495
+ #: views/b2s/html/header.php:109
2496
+ msgid "How to use plugin settings for meta tags"
2497
+ msgstr "Verwendung von Plugins für Meta Tags"
2498
+
2499
  #: views/b2s/support.php:135
2500
  msgid "How to use the Troubleshooting tool"
2501
  msgstr "Wie Du das Problemanalyse-Tool nutzt"
2505
  msgid "https://www.blog2social.com"
2506
  msgstr "https://www.blog2social.com"
2507
 
2508
+ #: includes/Tools.php:523
2509
  msgid "Hungary"
2510
  msgstr "Ungarn"
2511
 
2516
  "Ich habe die <a href=\"%s\" target=\"_blank\">Community-Regeln</a> zur "
2517
  "Kenntnis genommen und willige ein."
2518
 
2519
+ #: views/b2s/html/header.php:521
2520
  msgid "I agree to the Adenion Privacy Policy"
2521
  msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
2522
 
2523
+ #: views/b2s/html/header.php:270
2524
  msgid "I already did it"
2525
  msgstr "Habe ich schon erledigt"
2526
 
2527
+ #: views/b2s/html/header.php:680
2528
  msgid "I need advice on finding the right license"
2529
  msgstr "Ich benötige Beratung für die richtige Lizenz."
2530
 
2531
+ #: views/b2s/html/header.php:613
2532
  msgid "I need advice on finding the right license."
2533
  msgstr "Ich benötige Beratung für die richtige Lizenz."
2534
 
2535
+ #: views/b2s/html/header.php:351
2536
  msgid "I need advice on the right license."
2537
  msgstr "Ich benötige Beratung für die richtige Lizenz."
2538
 
2539
+ #: views/b2s/html/header.php:313 views/b2s/html/header.php:332
2540
  msgid "I need some more time to decide"
2541
  msgstr "Ich brauche etwas mehr Zeit, um mich zu entscheiden"
2542
 
2543
+ #: views/b2s/html/header.php:610
2544
  msgid "I would like to continue with my trial."
2545
  msgstr "Ich möchte mit meiner Testphase fortfahren."
2546
 
2564
  "beispielsweise 3 Original-Tweets geplant sind, löst jeder einzelne Tweet "
2565
  "einen Retweet für die ausgewählten Twitter-Konten aus."
2566
 
2567
+ #: views/b2s/html/footer.php:524
2568
+ msgid ""
2569
+ "If this post has been previously shared or scheduled, your current changes "
2570
+ "will also affect the appearance of previously shared or scheduled posts, as "
2571
+ "the networks will always pull the latest information from the open graph "
2572
+ "meta tags and automatically update any existing posts."
2573
+ msgstr ""
2574
+ "Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde, wirken sich "
2575
+ "Deine aktuellen Änderungen auch auf das Aussehen von zuvor geteilten oder "
2576
+ "geplanten Beiträgen aus, da die Netzwerke sich immer die aktuellsten "
2577
+ "Informationen aus den Open Graph Meta Tags ziehen und alle bereits "
2578
+ "existierenden Beiträge automatisch updatet."
2579
+
2580
+ #: views/b2s/html/footer.php:550
2581
+ msgid ""
2582
+ "If this post was previously shared or scheduled, your current changes will "
2583
+ "also affect the look of previously shared or scheduled posts, as Twitter "
2584
+ "will always pull the most up-to-date information from the Twitter Card tags. "
2585
+ "If this post has already been shared, it may take up to 7 days for Twitter "
2586
+ "to update your current changes."
2587
+ msgstr ""
2588
+ "Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde, wirken sich "
2589
+ "Deine aktuellen Änderungen auch auf das Aussehen von zuvor geteilten oder "
2590
+ "geplanten Beiträgen aus, da Twitter sich immer die aktuellsten Informationen "
2591
+ "aus den Twitter Card Tags zieht. Wenn dieser Beitrag bereits geteilt wurde, "
2592
+ "kann es bis zu 7 Tage dauern, bis Twitter Deine aktuellen Änderungen "
2593
+ "aktualisiert."
2594
+
2595
  #: includes/Notice.php:18
2596
  msgid ""
2597
  "If you like Blog2Social, please give us a 5 star rating. If there is "
2612
  "kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
2613
  "erhältst Hilfe von unserem engagierten Support-Team."
2614
 
2615
+ #: views/b2s/autopost.php:148
2616
+ msgid ""
2617
+ "If you like to share imported (imported RSS feeds or posts created/ imported "
2618
+ "with another plugin) posts automatically, you can use the following "
2619
+ "checklists where you get all information on the different setting panels for "
2620
+ "the Auto-Poster for imported posts:"
2621
+ msgstr ""
2622
+ "Wenn Du importierte Beiträge (importierte RSS-Feeds oder Beiträge, die mit "
2623
+ "einem anderen Plugin erstellt/importiert wurden) automatisiert teilen "
2624
+ "möchtest, kannst Du die folgenden Checklisten verwenden, in denen Du alle "
2625
+ "Informationen zu den verschiedenen Einstellungsfeldern für den Auto-Poster "
2626
+ "für importierte Beiträge findest:"
2627
+
2628
+ #: views/b2s/autopost.php:116
2629
+ msgid ""
2630
+ "If you like to share your WordPress content (blogposts, pages, and products) "
2631
+ "automatically, you can use the following checklists where you get all "
2632
+ "information on the different setting panels for the Auto-Poster for "
2633
+ "WordPress content:"
2634
+ msgstr ""
2635
+ "Wenn Du Deine WordPress-Inhalte (Blogbeiträge, Seiten und Produkte) "
2636
+ "automatisiert teilen möchtest, kannst Du die folgenden Checklisten verwenden,"
2637
+ " in denen Du alle Informationen zu den verschiedenen Einstellungsfeldern für "
2638
+ "den Auto-Poster findest:"
2639
+
2640
+ #: views/b2s/html/footer.php:521
2641
+ #, php-format
2642
+ msgid ""
2643
+ "If you use other plugins for setting meta tags, such as Yoast SEO, the tags "
2644
+ "you customized with Blog2Social will be overwritten by the other plugins. To "
2645
+ "allow Blog2Social to apply and share your changes, please make sure you have "
2646
+ "<a target=\"_blank\" href=\"%s\">activated meta tag settings for Blog2Social "
2647
+ "only</a> and disable all meta tag settings in your other plugins."
2648
+ msgstr ""
2649
+ "Wenn Du weitere Plugins für das Setzen von Meta Tags, wie zum Beispiel Yoast "
2650
+ "SEO verwendest, werden die Tags, die Du mit Blog2Social angepasst hat, von "
2651
+ "den anderen Plugins überschrieben. Damit Blog2Social Deine Änderungen "
2652
+ "übernehmen kann, stelle bitte sicher, dass Du die <a target=\"_blank\" "
2653
+ "href=\"%s\">Meta Tag-Einstellungen nur für Blog2Social aktiviert</a> hast "
2654
+ "und deaktiviere alle Meta Tag-Einstellungen in Deinen anderen Plugins."
2655
+
2656
+ #: views/b2s/html/footer.php:547
2657
+ #, php-format
2658
+ msgid ""
2659
+ "If you use other plugins for setting Twitter Cards, such as Yoast SEO, the "
2660
+ "tags you customized with Blog2Social will be overwritten by the other "
2661
+ "plugins. To allow Blog2Social to apply your changes, please make sure you "
2662
+ "have <a target=\"_blank\" href=\"%s\">activated Twitter Card settings for "
2663
+ "Blog2Social only</a> and disable all Twitter Card settings in your other "
2664
+ "plugins."
2665
+ msgstr ""
2666
+ "Wenn Du weitere Plugins für das Setzen von Twitter Cards, wie zum Beispiel "
2667
+ "Yoast SEO verwendest, werden die Tags, die Du mit Blog2Social angepasst hat, "
2668
+ "von den anderen Plugins überschrieben. Damit Blog2Social Deine Änderungen "
2669
+ "übernehmen kann, stelle bitte sicher, dass Du die <a target=\"_blank\" "
2670
+ "href=\"%s\">Twitter Card-Einstellungen nur für Blog2Social aktiviert</a> "
2671
+ "hast und deaktiviere alle Twitter Card-Einstellungen in Deinen anderen "
2672
+ "Plugins."
2673
+
2674
  #: views/b2s/ship.php:384
2675
  msgid "Ignore & share"
2676
  msgstr "Ignorieren & teilen"
2677
 
2678
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
2679
+ #: views/b2s/html/footer.php:512 views/b2s/html/footer.php:538
2680
  msgid "Image"
2681
  msgstr "Bild"
2682
 
 
 
 
 
2683
  #: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
2684
  #: views/b2s/repost.php:59 views/b2s/repost.php:95
2685
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
2729
  msgid "immediately after publishing"
2730
  msgstr "sofort nach Veröffentlichung"
2731
 
2732
+ #: views/b2s/html/footer.php:484
2733
+ msgid "Important information about editing the meta tags"
2734
+ msgstr "Wichtige Info zur Bearbeitung der Meta Tags"
2735
+
2736
+ #: views/b2s/autopost.php:145
2737
+ msgid "Important information about the Auto-Poster settings for imported posts"
2738
+ msgstr ""
2739
+ "Wichtige Informationen zu den Auto-Poster-Einstellungen für importierte "
2740
+ "Beiträge"
2741
+
2742
+ #: views/b2s/autopost.php:113
2743
+ msgid ""
2744
+ "Important information about the Auto-Poster settings for WordPress content"
2745
+ msgstr ""
2746
+ "Wichtige Informationen zu den Auto-Poster-Einstellungen WordPress-Inhalte"
2747
+
2748
  #: views/b2s/metrics.php:209
2749
  msgid "Imported posts"
2750
  msgstr "Importierte Beiträge"
2803
  msgid "include posts with images only"
2804
  msgstr "nur Beiträge mit Bildern hinzufügen"
2805
 
2806
+ #: includes/Tools.php:499
2807
  msgid "India"
2808
  msgstr "Indien"
2809
 
2810
+ #: includes/Tools.php:505
2811
  msgid "Indonesia"
2812
  msgstr "Indonesien"
2813
 
2814
  #: includes/Loader.php:917 includes/B2S/PostBox.php:165
2815
  #: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
 
2816
  #: views/b2s/metrics.php:70 views/b2s/network.php:49 views/b2s/ship.php:81
2817
  #: views/b2s/ship.php:183 views/b2s/ship.php:275
2818
  #: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
2876
  msgid "Instant Sharing"
2877
  msgstr "Instant Sharing"
2878
 
2879
+ #: views/b2s/html/header.php:669
2880
  #, php-format
2881
  msgid ""
2882
  "Interested in reading more reviews? <a href=\"%s\" target=\"_blank\">Check "
2897
  msgid "Invalid email address"
2898
  msgstr "Ungültige E-Mail Adresse"
2899
 
2900
+ #: includes/Tools.php:501
2901
  msgid "Ireland"
2902
  msgstr "Irland"
2903
 
2905
  msgid "is currently being processed by the network"
2906
  msgstr "wird vom Netzwerk verarbeitet"
2907
 
2908
+ #: includes/Tools.php:537
2909
  msgid "is determined automatically"
2910
  msgstr "wird automatisch ermittelt"
2911
 
2914
  msgid "is waiting to shared by %s"
2915
  msgstr "wartet darauf von %s geteilt zu werden"
2916
 
2917
+ #: includes/Tools.php:502
2918
  msgid "Italy"
2919
  msgstr "Italien"
2920
 
2921
+ #: includes/Tools.php:524
2922
  msgid "Japan"
2923
  msgstr "Japan"
2924
 
2925
+ #: views/b2s/html/header.php:667
2926
  msgid "jerryj1 per WordPress"
2927
  msgstr "stephanv auf wordpress.org"
2928
 
2934
  msgid "Jobs & Projects"
2935
  msgstr "Stellenangebote & Projekte"
2936
 
2937
+ #: views/b2s/html/header.php:344
2938
  msgid ""
2939
  "Keep your current settings and access to more automated scheduling and "
2940
  "sharing options and upgrade to Blog2Social Premium."
2967
  msgid "Keywords: The tags you have set in your post."
2968
  msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
2969
 
2970
+ #: includes/Tools.php:527
2971
  msgid "Korea"
2972
  msgstr "Korea"
2973
 
2980
  msgid "last modified by %s"
2981
  msgstr "zuletzt von %s bearbeitet"
2982
 
2983
+ #: views/b2s/html/header.php:389 views/prg/html/form.php:92
2984
  #: views/prg/html/form.php:103 views/prg/html/form.php:169
2985
  #: views/prg/html/form.php:180
2986
  msgid "Last Name"
3008
  msgid "latest share by %s"
3009
  msgstr "zuletzt von %s geteilt"
3010
 
3011
+ #: includes/B2S/Ship/Save.php:435
3012
  msgid "Learn how it works"
3013
  msgstr "mehr erfahren"
3014
 
3056
  msgid "Legend"
3057
  msgstr "Legende"
3058
 
3059
+ #: includes/Tools.php:483 views/b2s/html/sidebar.php:32
3060
  #: views/b2s/html/sidebar.ship.php:29
3061
  msgid "License"
3062
  msgstr "Lizenz"
3193
  msgid "Meta Tags Settings for Posts and Pages"
3194
  msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
3195
 
3196
+ #: includes/Tools.php:529
3197
  msgid "Mexico"
3198
  msgstr "Mexiko"
3199
 
3342
  msgid "Needed"
3343
  msgstr "Erforderlich"
3344
 
3345
+ #: includes/Tools.php:510
3346
  msgid "Netherlands"
3347
  msgstr "Niederlande"
3348
 
3405
  msgid "new posts"
3406
  msgstr "Neue Beiträge"
3407
 
3408
+ #: includes/Tools.php:521
3409
  msgid "New Zealand"
3410
  msgstr "Neuseeland"
3411
 
3437
  "mindestens einen Social Media Account in Blog2Social unter Netzwerke "
3438
  "verbunden hast."
3439
 
3440
+ #: views/b2s/html/header.php:403
3441
  msgid "No credit card required"
3442
  msgstr "Keine Kreditkarte erforderlich"
3443
 
3444
+ #: includes/Tools.php:554
3445
  msgid "No emojis found"
3446
  msgstr "Keine Ergebnisse"
3447
 
3453
  msgid "No link preview available. Please check your link."
3454
  msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
3455
 
3456
+ #: views/b2s/html/header.php:238
3457
  msgid "No posts found. Please try again with different filter options."
3458
  msgstr ""
3459
  "Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen "
3467
  msgid "No User found"
3468
  msgstr "Keinen Blog-Nutzer gefunden"
3469
 
3470
+ #: views/b2s/html/header.php:267
3471
  msgid "Nope, maybe later"
3472
  msgstr "Nein, vielleicht später"
3473
 
3474
+ #: includes/Tools.php:512
3475
  msgid "Norway"
3476
  msgstr "Norwegen"
3477
 
3519
  msgid "Number of repeats"
3520
  msgstr "Anzahl der Wiederholungen"
3521
 
3522
+ #: includes/Tools.php:551
3523
  msgid "Objects"
3524
  msgstr "Objekte"
3525
 
3539
  msgid "OG Meta title"
3540
  msgstr "OG Titel"
3541
 
3542
+ #: views/b2s/html/header.php:490
3543
  msgid "OK"
3544
  msgstr "OK"
3545
 
3547
  msgid "Ok, I want to get started!"
3548
  msgstr "Verstanden, ich möchte loslegen!"
3549
 
3550
+ #: views/b2s/html/header.php:264
3551
  msgid "Ok, you deserve it"
3552
  msgstr "Okay, ihr habt euch das verdient"
3553
 
3594
  #: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
3595
  #: views/b2s/html/footer.php:313 views/b2s/html/footer.php:368
3596
  #: views/b2s/html/footer.php:407 views/b2s/html/footer.php:465
3597
+ #: views/b2s/html/footer.php:581
3598
  #, php-format
3599
  msgid ""
3600
  "or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
3639
  msgid "Personal Time Zone"
3640
  msgstr "Persönliche Zeitzone"
3641
 
3642
+ #: includes/Tools.php:534
3643
  msgid "Philippines"
3644
  msgstr "Philippinen"
3645
 
3720
  "Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
3721
  "mehreren Accounts zu posten."
3722
 
3723
+ #: views/b2s/autopost.php:126 views/b2s/autopost.php:158
3724
  msgid ""
3725
  "Please make sure that each WordPress user or author whose posts should be "
3726
  "auto-posted"
3739
  "Facebook-Seite bist. Bitte überprüfe auch, ob die 2-Faktor-Authentifizierung "
3740
  "auf den verknüpften Konten entweder aktiviert oder deaktiviert ist."
3741
 
3742
+ #: views/b2s/html/header.php:111
3743
+ msgid ""
3744
+ "Please make sure that you only use one plugin for setting meta tags so that "
3745
+ "the networks can display the link preview of your post correctly."
3746
+ msgstr ""
3747
+ "Bitte achte darauf, dass Du nur ein Plugin zum Setzen von Meta Tags "
3748
+ "verwendest, damit die Netzwerke die Link-Vorschau Deines Beitrags korrekt "
3749
+ "anzeigen können."
3750
+
3751
  #: includes/Loader.php:848
3752
  msgid ""
3753
  "Please make sure that your post, page or custom post type is published or "
3794
  "dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
3795
  "stabile Verbindung zu Blog2Social sicherzustellen."
3796
 
3797
+ #: views/b2s/autopost.php:135 views/b2s/autopost.php:167
3798
+ msgid ""
3799
+ "Please make sure you activate and define the preferred settings panel for "
3800
+ "each user."
3801
+ msgstr ""
3802
+ "Bitte stelle sicher, dass Du das bevorzugte Einstellungsfeld für jeden "
3803
+ "Nutzer aktivierst und definierst."
3804
+
3805
  #: views/prg/ship.php:87
3806
  msgid "Please Note"
3807
  msgstr "Hinweis"
3808
 
3809
+ #: views/b2s/ship.php:796 views/b2s/html/footer.php:519
3810
+ #: views/b2s/html/footer.php:545
3811
  msgid "Please note:"
3812
  msgstr "Hinweis:"
3813
 
3831
  "Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
3832
  "andere Inhalte herunterladen kannst:"
3833
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3834
  #: views/b2s/network.php:678 views/b2s/ship.php:734
3835
  msgid ""
3836
  "Please note: In order to connect your Instagram account to Blog2Social, "
3899
  "Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
3900
  "geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
3901
 
3902
+ #: includes/B2S/Ship/Save.php:448
3903
  msgid ""
3904
  "Please note: You post has to be marked as public to be posted in a group."
3905
  msgstr ""
3921
  "mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
3922
  "\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
3923
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3924
  #: views/b2s/network.php:199
3925
  msgid "Please re-authorize your account with Blog2Social and try again"
3926
  msgstr ""
3927
  "Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
3928
 
3929
+ #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:482
3930
  msgid "Please see"
3931
  msgstr "siehe"
3932
 
3947
  msgstr ""
3948
  "Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
3949
 
3950
+ #: includes/B2S/Ship/Save.php:453
3951
  msgid "Please share your post now"
3952
  msgstr "Bitte teile Deinen Beitrag jetzt."
3953
 
3966
  msgid "Plugin Warnings:"
3967
  msgstr "Plugin Warnungen:"
3968
 
3969
+ #: includes/Tools.php:516
3970
  msgid "Poland"
3971
  msgstr "Polen"
3972
 
3973
+ #: includes/Tools.php:511 includes/Tools.php:525
3974
  msgid "Portugal"
3975
  msgstr "Portugal"
3976
 
4008
  msgid "Post Interactions"
4009
  msgstr "Beitrags-Interaktionen"
4010
 
4011
+ #: views/b2s/html/header.php:153
4012
  msgid "Post is published successfully on your blog!"
4013
  msgstr "Der Beitrag wurde erfolgreich in Deinem Blog veröffentlicht!"
4014
 
4034
  #: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
4035
  #: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
4036
  #: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
4037
+ #: views/b2s/html/footer.php:452 views/b2s/html/footer.php:567
4038
+ #: views/b2s/html/header.php:375
4039
  msgid "Post on pages and groups"
4040
  msgstr "Poste auf Seiten und in Gruppen"
4041
 
4047
  msgid "Post Types"
4048
  msgstr "Posttypen"
4049
 
4050
+ #: views/b2s/html/header.php:151
4051
  msgid "Post was scheduled successfully on your blog!"
4052
  msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
4053
 
4190
 
4191
  #: views/b2s/curation.php:137 views/b2s/post.calendar.php:50
4192
  #: views/b2s/ship.php:18 views/b2s/ship.php:835 includes/B2S/Post/Filter.php:59
4193
+ #: includes/B2S/Post/Item.php:393 includes/B2S/Ship/Save.php:461
4194
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
4195
  #: views/b2s/widgets/calendar.php:44
4196
  msgid "published"
4216
  msgid "RATE BLOG2SOCIAL"
4217
  msgstr "Blog2Social jetzt bewerten"
4218
 
4219
+ #: views/b2s/html/header.php:259
4220
  msgid "RATE IT!"
4221
  msgstr "BEWERTE ES!"
4222
 
4268
  msgid "Rebrandly"
4269
  msgstr "Rebrandly"
4270
 
4271
+ #: includes/Tools.php:545
4272
  msgid "Recently Used"
4273
  msgstr "Zuletzt verwendet"
4274
 
4310
  #: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
4311
  #: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
4312
  #: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
4313
+ #: views/b2s/html/footer.php:461 views/b2s/html/footer.php:576
4314
  msgid ""
4315
  "Reporting & calendar: keep track of your published and scheduled social "
4316
  "media posts"
4326
  "Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
4327
  "und geplanten Social Media Beiträge."
4328
 
4329
+ #: views/b2s/html/header.php:378
4330
  msgid "Reporting with links to all published social media posts"
4331
  msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
4332
 
4365
  msgstr "Konflikt beheben"
4366
 
4367
  #: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
4368
+ #: includes/B2S/Ship/Save.php:471
4369
  msgid "Retweet"
4370
  msgstr "Retweet"
4371
 
4381
  "verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
4382
  "aus Deinem WordPress heraus planen."
4383
 
4384
+ #: includes/Tools.php:518
4385
  msgid "Romania"
4386
  msgstr "Rumänien"
4387
 
4389
  msgid "RSS import & auto-post"
4390
  msgstr "RSS-Import & Auto-Poster"
4391
 
4392
+ #: includes/Tools.php:509
4393
  msgid "Russia"
4394
  msgstr "Russland"
4395
 
4414
  msgid "save"
4415
  msgstr "speichern"
4416
 
4417
+ #: views/b2s/html/header.php:662
4418
  msgid "Save a lot of time for your social media tasks!"
4419
  msgstr ""
4420
  "Gib Deinen Social-Media-Aufgaben eine Routine und spare so eine Menge Zeit!"
4452
  msgid "saved"
4453
  msgstr "gespeichert"
4454
 
4455
+ #: views/b2s/html/header.php:165
4456
  msgid "Saved as draft"
4457
  msgstr "Als Entwurf gespeichert"
4458
 
4466
  #: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
4467
  #: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
4468
  #: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
4469
+ #: views/b2s/html/footer.php:458 views/b2s/html/footer.php:573
4470
  msgid "Schedule and re-share old posts"
4471
  msgstr "Plane und teile alte Beiträge"
4472
 
4515
  #: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
4516
  #: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
4517
  #: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
4518
+ #: views/b2s/html/footer.php:457 views/b2s/html/footer.php:572
4519
  msgid "Schedule your post for one time, multiple times or recurrently"
4520
  msgstr ""
4521
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
4527
  #: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
4528
  #: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
4529
  #: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
4530
+ #: views/b2s/html/footer.php:455 views/b2s/html/footer.php:570
4531
  msgid "Schedule your posts at the best times on each network"
4532
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
4533
 
4555
  msgid "scheduled by %s"
4556
  msgstr "von %s vorgeplant "
4557
 
4558
+ #: includes/B2S/Ship/Save.php:472
4559
  msgid "scheduled on"
4560
  msgstr "geplant für"
4561
 
4589
  msgid "scroll to top"
4590
  msgstr "zum Seitenanfang"
4591
 
4592
+ #: includes/Tools.php:544
4593
  msgid "Search"
4594
  msgstr "Suche"
4595
 
4660
  #: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
4661
  #: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
4662
  #: views/b2s/html/footer.php:402 views/b2s/html/footer.php:460
4663
+ #: views/b2s/html/footer.php:575
4664
  msgid "Select individual images per post"
4665
  msgstr ""
4666
  "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
4681
  #: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
4682
  #: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
4683
  #: views/b2s/html/footer.php:401 views/b2s/html/footer.php:459
4684
+ #: views/b2s/html/footer.php:574
4685
  msgid "Select link format or image format for your posts"
4686
  msgstr ""
4687
  "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
4803
  msgid "Share"
4804
  msgstr "Teilen"
4805
 
4806
+ #: includes/B2S/Post/Item.php:923 includes/B2S/Ship/Save.php:452
4807
  msgid "share"
4808
  msgstr "teilen"
4809
 
4865
  msgid "share oldest posts first"
4866
  msgstr "älteste Beiträge zuerst teilen"
4867
 
4868
+ #: views/b2s/html/header.php:376
4869
  msgid "Share on multiple accounts per network"
4870
  msgstr "Teile auf mehreren Netzwerk-Konten "
4871
 
4875
  #: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
4876
  #: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
4877
  #: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
4878
+ #: views/b2s/html/footer.php:453 views/b2s/html/footer.php:568
4879
  msgid "Share on multiple profiles, pages and groups"
4880
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
4881
 
5051
  msgid "Sign in to Pinterest"
5052
  msgstr "Melde Dich bei Pinterest an"
5053
 
5054
+ #: includes/Tools.php:530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5055
  msgid "Slovakia"
5056
  msgstr "Slowakei"
5057
 
5071
  msgid "Smart: 3 (per user)"
5072
  msgstr "Smart: 3 (pro Nutzer)"
5073
 
5074
+ #: includes/Tools.php:546
5075
  msgid "Smileys & People"
5076
  msgstr "Smileys & Personen"
5077
 
5083
  msgid "Social Accounts"
5084
  msgstr "Social Media Konten"
5085
 
5086
+ #: views/b2s/html/header.php:374
5087
  msgid "Social Media Auto-Posting"
5088
  msgstr "Social Media Auto-Posting"
5089
 
5097
  msgstr "Social Media Kalender"
5098
 
5099
  #: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
5100
+ #: views/b2s/metrics.php:233 views/b2s/html/header.php:536
5101
  #: views/b2s/html/sidebar.php:102
5102
  msgid "Social Media Metrics"
5103
  msgstr "Social-Media-Kennzahlen"
5127
  msgid "Social Media Scheduling & Sharing"
5128
  msgstr "Beitrag auf Social Media planen und teilen"
5129
 
5130
+ #: views/b2s/html/header.php:588 views/b2s/html/header.php:648
5131
  msgid ""
5132
  "Social media templates to turn your social media posts automatically into "
5133
  "tailored posts for each network and community by customizing your post "
5175
  "Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
5176
  "target=\"_blank\">Guide</a>."
5177
 
5178
+ #: views/b2s/html/header.php:481
5179
  msgid "Something went wrong on our side. Please contact support!"
5180
  msgstr ""
5181
  "Etwas ist auf unserer Seite schiefgelaufen. Bitte wende Dich an unseren "
5189
  msgid "Sort by network"
5190
  msgstr "Sortiere nach Netzwerk"
5191
 
5192
+ #: includes/Tools.php:533
5193
  msgid "South Africa"
5194
  msgstr "Südafrika"
5195
 
5196
+ #: includes/Tools.php:506
5197
  msgid "Spain"
5198
  msgstr "Spanien"
5199
 
5210
  msgid "Start your 30-day free Premium trial"
5211
  msgstr "Teste Blog2Social Premium kostenlos"
5212
 
5213
+ #: views/b2s/html/header.php:284
5214
  msgid "Start your free 30-day-Premium-trial"
5215
  msgstr "Teste Blog2Social Premium"
5216
 
5217
+ #: views/b2s/html/header.php:547
5218
  msgid "Start your free trial for Social Media Metrics"
5219
  msgstr "Starte jetzt Deine exklusive Testphase"
5220
 
5275
  msgid "Supported HTML tags"
5276
  msgstr "Erlaubte HTML-Elemente"
5277
 
5278
+ #: includes/Tools.php:528
5279
  msgid "Sweden"
5280
  msgstr "Schweden"
5281
 
5282
+ #: includes/Tools.php:503
5283
  msgid "Switzerland"
5284
  msgstr "Schweiz"
5285
 
5286
+ #: includes/Tools.php:552
5287
  msgid "Symbols"
5288
  msgstr "Symbole"
5289
 
5291
  msgid "System"
5292
  msgstr "System"
5293
 
5294
+ #: views/b2s/html/header.php:587 views/b2s/html/header.php:647
5295
  msgid ""
5296
  "Tailoring options like individual images for each post, different post "
5297
  "formats (link and image post), emojis, hashtags, handles and GIFs for your "
5310
  msgid "Terms"
5311
  msgstr "Bedingungen"
5312
 
5313
+ #: views/b2s/html/header.php:365
5314
  msgid "Test Blog2Social PREMIUM 30 days for free"
5315
  msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
5316
 
5337
  "Deine Beiträge auch mit individuellen Hashtags, @Mentions oder Emojis "
5338
  "anpassen."
5339
 
5340
+ #: views/b2s/html/header.php:204
5341
  msgid "Thank you! Your feedback has been received."
5342
  msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
5343
 
5345
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
5346
  msgstr "Vielen Dank. Du erhältst nun die Blog-Updates von Blog2Social."
5347
 
5348
+ #: views/b2s/html/header.php:586 views/b2s/html/header.php:646
5349
  msgid ""
5350
  "The Auto-Poster, to automatically share your posts immediately or at a later "
5351
  "time."
5379
  "Bildgröße des jeweiligen Netzwerkes an. Du kannst bis zu 4 Bilder in einem "
5380
  "Beitrag auf Facebook (Seite und Gruppe) sowie auf Twitter teilen."
5381
 
5382
+ #: views/b2s/html/header.php:594 views/b2s/html/header.php:654
5383
  msgid ""
5384
  "The Best Time Manager to reach your followers when they are most active on "
5385
  "each social network and increase your reach."
5476
  "Link, Video, Bild oder Text teilen. Nach 24h kannst Du die ersten Kennzahlen "
5477
  "des Beitrags unter dem Menüpunkt “Social-Media-Kennzahlen” einsehen."
5478
 
5479
+ #: views/b2s/html/header.php:371
5480
  msgid ""
5481
  "The free trial can not be started. This blog has been already registered for "
5482
  "the free trial."
5508
  msgstr ""
5509
  "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
5510
 
5511
+ #: views/b2s/html/header.php:433
5512
  msgid "The license has been successfully activated."
5513
  msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
5514
 
5645
  "veröffentlicht werden. Mehr Informationen in dem <a href=\"%s\" "
5646
  "target=\"_blank\">Instagram-Guide</a>."
5647
 
5648
+ #: views/b2s/html/header.php:243
5649
  msgid ""
5650
  "The posts you tried to add are already in your sharing queue. If you want to "
5651
  "re-schedule them, please delete the posts before adding them again."
5694
  "Die Einstellungen für den Auto-Poster wurden für Dich von einem WordPress-"
5695
  "Admin vorgenommen."
5696
 
5697
+ #: views/b2s/html/header.php:595 views/b2s/html/header.php:655
5698
  msgid ""
5699
  "The social media calendar to keep track of your scheduled social media posts."
5700
  " Add social media posts, edit or change the date per drag & drop."
5714
  msgid "The tags you have set in your post."
5715
  msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
5716
 
5717
+ #: views/b2s/html/header.php:596 views/b2s/html/header.php:656
5718
  msgid ""
5719
  "The team and user management settings to organize multiple users and "
5720
  "licenses and to collaborate on the social media calendar, and much more."
5757
  "Systemumgebung Deines Blogs ausgelöst werden können. So kannst Du jederzeit "
5758
  "selbstständig Deine Einstellung auf Wordpress einsehen."
5759
 
5760
+ #: views/b2s/html/footer.php:535
5761
+ msgid ""
5762
+ "The Twitter Cards define the look of your preview of your link post on "
5763
+ "Twitter. By editing the Twitter Card tags you can change the following "
5764
+ "parameters to change the look:"
5765
+ msgstr ""
5766
+ "Mit Hilfe der Twitter Cards kannst Du entscheiden, wie die Vorschau Deines "
5767
+ "Link-Beitrags auf Twitter aussieht. Dafür kannst Du folgende Felder "
5768
+ "bearbeiten:"
5769
+
5770
  #: views/b2s/network.php:163
5771
  msgid "The user to whom the connection is assigned still has scheduled posts."
5772
  msgstr ""
5789
  "verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
5790
  "eine andere Netzwerkgruppierung aus. "
5791
 
 
 
 
 
5792
  #: views/b2s/ship.php:588
5793
  msgid ""
5794
  "There is already a saved draft for this WordPress post or page. If you save "
5823
  msgid "This connection has already been assigned to this user."
5824
  msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
5825
 
5826
+ #: views/b2s/html/header.php:132
5827
  msgid "This entry could not be removed. It's not yours!"
5828
  msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
5829
 
5830
+ #: views/b2s/html/header.php:137
5831
  msgid "This entry was removed successfully."
5832
  msgstr "Dieser Eintrag wurde erfolgreich entfernt."
5833
 
5847
  "Dies ist eine globale Einstellung für Deinen Website/ Deinen Blog, die nur "
5848
  "von Nutzern mit Admin-Rechten bearbeitet werden kann. "
5849
 
5850
+ #: includes/B2S/Ship/Save.php:437 includes/B2S/Ship/Save.php:445
5851
  msgid "This is how it works:"
5852
  msgstr "Und so funktioniert es:"
5853
 
5859
  msgid "This post is blocked by %1"
5860
  msgstr "% 1bearbeitet gerade diesen Beitrag."
5861
 
5862
+ #: views/b2s/html/header.php:142
5863
  msgid "This post was edited successfully."
5864
  msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
5865
 
5937
 
5938
  #: views/b2s/ship.php:58 views/prg/ship.php:43 views/prg/ship.php:45
5939
  #: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
5940
+ #: includes/B2S/Settings/Item.php:231 views/b2s/html/footer.php:513
5941
+ #: views/b2s/html/footer.php:539 views/prg/html/form.php:26
5942
  #: views/prg/html/form.php:28
5943
  msgid "Title"
5944
  msgstr "Titel"
5945
 
 
 
 
 
5946
  #: views/b2s/settings.php:118
5947
  msgid "Title: The title of your post."
5948
  msgstr "Titel: Der Titel Deines Beitrags."
5993
  "Support Community, um noch mehr Antworten zu finden und Deine Fragen zu "
5994
  "stellen. (<a href=\"%s\" target=\"_blank\">Info</a>)"
5995
 
5996
+ #: views/b2s/html/header.php:602
5997
  msgid ""
5998
  "To keep all these benefits from all advanced features for automated "
5999
  "scheduling and sharing and to keep all your individual settings und "
6042
  msgstr ""
6043
  "Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
6044
 
6045
+ #: includes/Tools.php:550
6046
  msgid "Travel & Places"
6047
  msgstr "Reisen & Orte"
6048
 
6062
  msgid "Tuesday"
6063
  msgstr "Dienstag"
6064
 
6065
+ #: includes/Tools.php:513
6066
  msgid "Turkey"
6067
  msgstr "Türkei"
6068
 
6123
  "Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
6124
  "versuche es erneut!"
6125
 
6126
+ #: includes/Tools.php:500
6127
  msgid "United States of America"
6128
  msgstr "Vereinigte Staaten von Amerika"
6129
 
6174
  msgid "Upgrade License"
6175
  msgstr "Lizenz upgraden"
6176
 
6177
+ #: views/b2s/html/header.php:641
6178
  msgid "Upgrade now to keep all benefits of Blog2Social Premium:"
6179
  msgstr "Upgrade jetzt und nutze die Vorteile von Blog2Social Premium:"
6180
 
6207
  msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
6208
  msgstr "Jetzt auf Blog2Social PREMIUM BUSINESS upgraden"
6209
 
6210
+ #: views/b2s/html/header.php:573 views/b2s/html/header.php:635
6211
+ #: views/b2s/html/header.php:677
6212
  msgid "Upgrade to Blog2Social Premium now"
6213
  msgstr "Ich möchte auf Blog2Social Premium upgraden."
6214
 
6215
+ #: views/b2s/html/header.php:348 views/b2s/html/header.php:607
6216
  msgid "Upgrade to Blog2Social Premium now."
6217
  msgstr "Ich möchte auf Blog2Social Premium upgraden."
6218
 
6248
  msgid "Upgrade to BUSINESS"
6249
  msgstr "Upgrade auf BUSINESS"
6250
 
6251
+ #: views/b2s/html/header.php:312
6252
  msgid "Upgrade to PREMIUM"
6253
  msgstr "Jetzt auf Premium upgraden"
6254
 
6272
  #: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
6273
  #: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
6274
  #: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
6275
+ #: views/b2s/html/footer.php:463 views/b2s/html/footer.php:578
6276
  msgid "Upgrade to SMART and above"
6277
  msgstr "Upgrade auf SMART und höher"
6278
 
6373
  msgid "View schedule posts"
6374
  msgstr "Geplante Beiträge anzeigen"
6375
 
6376
+ #: includes/B2S/Ship/Save.php:462
6377
  msgid "view social media post"
6378
  msgstr "Zeige Social Media Beitrag an"
6379
 
6406
  "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
6407
  "überprüfe deine Autorisierung."
6408
 
6409
+ #: views/b2s/metrics.php:221 views/b2s/html/header.php:550
6410
  msgid "We hope you enjoy analysing your posts!"
6411
  msgstr "Wir wünschen Dir viel Spaß beim Analysieren Deiner Beiträge!"
6412
 
6413
+ #: views/b2s/html/header.php:325
6414
  msgid "We hope you liked Blog2Social Premium."
6415
  msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
6416
 
6418
  msgid "We never store your data from your social media profiles"
6419
  msgstr "Wir speichern Deine Daten aus Deinen Social-Media-Profilen niemals."
6420
 
6421
+ #: views/b2s/html/header.php:506
6422
  msgid "We updated our Privacy Policy"
6423
  msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
6424
 
6453
  "Herzlich Willkommen zur Testphase der Beta-Version \"Social-Media-"
6454
  "Kennzahlen\"!"
6455
 
6456
+ #: views/b2s/html/footer.php:507
6457
+ msgid "What are meta tags?"
6458
+ msgstr "Was sind Meta Tags?"
6459
+
6460
+ #: views/b2s/html/footer.php:533
6461
+ msgid "What are Twitter Cards?"
6462
+ msgstr "Was sind Twitter Cards?"
6463
+
6464
+ #: views/b2s/html/header.php:579
6465
  msgid "What do you like best of Blog2Social Premium?"
6466
  msgstr "Was gefällt Dir am meisten an Blog2Social Premium?"
6467
 
6555
  #: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
6556
  #: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
6557
  #: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
6558
+ #: views/b2s/html/footer.php:449 views/b2s/html/footer.php:564
6559
  msgid "With Blog2Social Premium you can:"
6560
  msgstr "Mit Blog2Social kannst Du:"
6561
 
6562
+ #: views/b2s/html/header.php:638
6563
  msgid ""
6564
  "With Blog2Social Premium you have all the options you need to promote your "
6565
  "content on your social media channels successfully and time-savingly."
6703
  "pro Social Media Kanal verändern und Deine Beiträge als BildPost oder als "
6704
  "Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
6705
 
6706
+ #: views/b2s/html/footer.php:509
6707
+ msgid ""
6708
+ "With the help of the meta tags you can decide, how the preview of your link "
6709
+ "post looks like on social media. You can edit the following fields to change "
6710
+ "the look:"
6711
+ msgstr ""
6712
+ "Mit Hilfe der Meta Tags kannst Du entscheiden, wie die Vorschau Deines Link-"
6713
+ "Beitrags auf Social Media aussieht. Dafür kannst Du folgende Felder "
6714
+ "bearbeiten:"
6715
+
6716
  #: views/b2s/metrics.php:273
6717
  msgid ""
6718
  "With this function, you can compare the social media metrics for a period "
6808
  msgid "Yes, I accept"
6809
  msgstr "Ja,einverstanden"
6810
 
6811
+ #: views/b2s/html/header.php:290
6812
  msgid "Yes, I want to test Blog2Social Premium 30 days for free"
6813
  msgstr "Ja, ich möchte Blog2Social Premium 30 Tage kostenlos testen"
6814
 
6815
+ #: views/b2s/html/header.php:331
6816
  msgid "Yes, I want to upgrade to Blog2Social Premium"
6817
  msgstr "Ja, ich möchte gerne auf Blog2Social Premium upgraden"
6818
 
6819
+ #: views/b2s/html/footer.php:602
6820
  msgid ""
6821
  "You are currently sharing this post as image post. Changes to title and "
6822
  "description Meta Tag parameters will only be supported for link post formats."
6874
  "oder jedes Netzwerk bearbeiten und Deine neuen Einstellungen als Standard "
6875
  "für die zukünftige Verwendung speichern."
6876
 
6877
+ #: views/b2s/html/header.php:538 views/b2s/html/header.php:576
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6878
  msgid ""
6879
  "You can now track the performance of your post directly in Blog2Social, and "
6880
  "you can test it exclusively and for free!"
7009
  "unterstützt werden, erhältst Du in dem \n"
7010
  "<a href=\"%s\" target=\"_blank\">\"Link-Shortener\"-Guide</a>."
7011
 
7012
+ #: views/b2s/html/header.php:119
7013
  msgid ""
7014
  "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
7015
  "plugins active. To make sure that your Social Meta Tags are set correctly, "
7029
  msgid "You have already retweeted this post."
7030
  msgstr "Du hast diesen Post bereits retweetet."
7031
 
 
 
 
 
 
 
 
 
 
 
 
7032
  #: views/b2s/html/header.php:98
7033
  msgid "You have deleted all meta data for posts and pages successfully."
7034
  msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
7107
  msgid "You want to auto-post your blog post?"
7108
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
7109
 
7110
+ #: views/b2s/html/footer.php:563
7111
  msgid "You want to change the image, title and description for your post?"
7112
  msgstr ""
7113
  "Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
7193
  "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
7194
  "Manager benutzen?"
7195
 
7196
+ #: views/b2s/html/header.php:113
7197
+ #, php-format
7198
+ msgid ""
7199
+ "You will find a checklist for setting Open Graph tags in the <a href=\"%s\" "
7200
+ "target=\"_blank\">Open Graph Tag guide</a>."
7201
+ msgstr ""
7202
+ "Eine Checkliste für das Setzen von Open Graph Tags findest Du in dem <a "
7203
+ "href=\"%s\" target=\"_blank\">Open Graph Tag Guide</a>."
7204
+
7205
  #: views/b2s/settings.php:108
7206
  #, php-format
7207
  msgid ""
7255
  msgid "Your Activity"
7256
  msgstr "Deine Aktivität"
7257
 
7258
+ #: views/b2s/html/header.php:194
7259
  msgid "Your authorization could not be removed."
7260
  msgstr "Deine Autorisierung konnte nicht entfernt werden."
7261
 
7262
+ #: views/b2s/html/header.php:199
7263
  msgid "Your authorization has been removed successfully."
7264
  msgstr "Deine Autorisierung wurde erfolgreich entfernt."
7265
 
7282
  "den Blog2Social-Netzwerkeinstellungen erneut. <a target=\"_blank\" "
7283
  "href=\"%s\">So verbindest Du Dein Konto neu.</a>"
7284
 
7285
+ #: views/b2s/html/header.php:179
7286
  msgid "Your authorization was successful."
7287
  msgstr "Deine Autorisierung war erfolgreich."
7288
 
7303
  "queue."
7304
  msgstr "Blog2Social für ein höheres Kontingent an Posts in der Warteschlange."
7305
 
7306
+ #: views/b2s/html/footer.php:605
7307
  #, php-format
7308
  msgid ""
7309
  "Your changes will have no effect on your social media posts on Facebook, if "
7315
  "Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell "
7316
  "deaktiviert hast."
7317
 
7318
+ #: views/b2s/html/footer.php:608
7319
  #, php-format
7320
  msgid ""
7321
  "Your changes will have no effect on your social media posts on Twitter, if "
7326
  "auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
7327
  "<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
7328
 
7329
+ #: views/b2s/html/footer.php:553
7330
+ #, php-format
7331
+ msgid ""
7332
+ "Your changes will not affect your previously shared social media posts if "
7333
+ "you have manually disabled the meta tag options in your <a target=\"_blank\" "
7334
+ "href=\"%s\">Blog2Social settings</a>."
7335
+ msgstr ""
7336
+ "Deine Änderungen haben keine Auswirkungen auf Deine bereits geteilten Social-"
7337
+ "Media-Beiträge auf Twitter, wenn Du die Meta Tag Optionen für Twitter in "
7338
+ "Deinen <a target=\"_blank\" href=\"%s\">Blog2Social-Einstellungen</a> "
7339
+ "manuell deaktiviert hast."
7340
+
7341
+ #: views/b2s/html/footer.php:527
7342
+ #, php-format
7343
+ msgid ""
7344
+ "Your changes will not be applied to your previously shared social media "
7345
+ "posts if you have manually disabled the meta tag options in your <a "
7346
+ "target=\"_blank\" href=\"%s\">Blog2Social settings</a>."
7347
+ msgstr ""
7348
+ "Deine Änderungen haben keine Auswirkungen auf Deine bereits geteilten Social-"
7349
+ "Media-Beiträge, wenn Du die Meta Tag-Optionen in Deinen <a target=\"_blank\" "
7350
+ "href=\"%s\">Blog2Social-Einstellungen</a> manuell deaktiviert hast."
7351
+
7352
  #: views/b2s/post.php:22
7353
  msgid "Your complete social media management in one place"
7354
  msgstr "Dein komplettes Social-Media-Management an einem Ort"
7372
  msgid "Your daily limit has been reached."
7373
  msgstr "Dein tägliches Beitragslimit wurde erreicht."
7374
 
7375
+ #: views/b2s/html/header.php:449
7376
  msgid "Your entered License Key is invalid. Please contact support!"
7377
  msgstr ""
7378
  "Der eingegebene Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren "
7398
  "Erfahre, wie Du die Facebook-Seiteneinstellungen prüfen und ändern kannst."
7399
  "</a>"
7400
 
7401
+ #: views/b2s/html/header.php:209
7402
  msgid "Your feedback could not be delivered."
7403
  msgstr "Dein Feedback konnte nicht gesendet werden."
7404
 
7405
+ #: views/b2s/html/header.php:302
7406
  msgid "Your free Blog2Social Premium trial version is activated for "
7407
  msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
7408
 
7409
+ #: views/b2s/html/header.php:343
7410
  msgid "Your free Premium trial ends soon. "
7411
  msgstr "Deine kostenlose Premium Testphase endet bald."
7412
 
7413
+ #: views/b2s/html/header.php:569
7414
  #, php-format
7415
  msgid ""
7416
  "Your free trial of Blog2Social Premium expires in %d days. Don’t miss to "
7421
  "durchzuführen, bevor Deine Testphase abläuft, damit Du alle Vorteile und "
7422
  "individuelle Einstellungen behältst."
7423
 
7424
+ #: views/b2s/html/header.php:324
7425
  msgid "Your free trial of Blog2Social PREMIUM has ended."
7426
  msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
7427
 
7428
+ #: views/b2s/html/header.php:631
7429
  msgid ""
7430
  "Your free trial of Blog2Social Premium has expired. We hope you explored and "
7431
  "enjoyed all the Premium options."
7437
  msgid "Your group can not be found by the network."
7438
  msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
7439
 
7440
+ #: views/b2s/html/header.php:465
7441
  msgid "Your license key has reached the maximum number of users."
7442
  msgstr "Dein Lizenzschlüssel hat die maximale Anzahl von Benutzern erreicht."
7443
 
7444
+ #: views/b2s/html/header.php:248
7445
  msgid ""
7446
  "Your limit for your quota of posts in your queue has been reached. Please "
7447
  "delete posts from your queue before you add more"
7481
  "ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
7482
 
7483
  #: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:787
7484
+ #: includes/B2S/Ship/Save.php:486
7485
  #, php-format
7486
  msgid ""
7487
  "Your post could not be posted. More information in this <a href=\"%s\" "
7504
  "geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
7505
  "planen."
7506
 
7507
+ #: views/b2s/html/header.php:189
7508
  msgid "Your profile could not be saved."
7509
  msgstr "Dein Profil konnte nicht gespeichert werden."
7510
 
7511
+ #: views/b2s/html/header.php:184
7512
  msgid "Your profile was saved successful."
7513
  msgstr "Dein Profil wurde erfolgreich gespeichert. "
7514
 
7529
  "Schaltfläche \"+ Mehr hinzufügen\", im obersten Feld der Navigation, neue "
7530
  "Netzwerke verbinden."
7531
 
7532
+ #: views/b2s/html/header.php:226
7533
  msgid ""
7534
  "Your settings could not be saved, because you have auto-posting enabled but "
7535
  "no social networks selected."
7537
  "Deine Einstellungen konnten nicht gespeichert werden, da Du keine sozialen "
7538
  "Netzwerke ausgewählt hast, bevor Du den Auto-Poster aktiviert hast."
7539
 
7540
+ #: views/b2s/html/header.php:221
7541
  msgid "Your settings could not be saved."
7542
  msgstr "Deine Einstellungen konnten nicht gespeichert werden."
7543
 
7544
+ #: views/b2s/html/header.php:216 views/b2s/html/header.php:231
7545
  msgid "Your settings were successfully saved."
7546
  msgstr "Deine Einstellungen wurden erfolgreich gespeichert. "
7547
 
languages/blog2social.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2022-03-29 09:56+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -15,19 +15,19 @@ msgstr ""
15
  "X-Generator: Loco https://localise.biz/\n"
16
  "X-Loco-Version: 2.2.0; wp-5.0.3"
17
 
18
- #: views/b2s/html/header.php:301
19
  msgid " Days"
20
  msgstr ""
21
 
22
- #: views/b2s/html/header.php:244
23
  msgid " or upgade your Blog2Social license to extend your quota."
24
  msgstr ""
25
 
26
- #: views/b2s/html/header.php:301
27
  msgid " today"
28
  msgstr ""
29
 
30
- #: views/b2s/html/header.php:660
31
  msgid ""
32
  "\"Blog2Social is the master tool any blogger or marketer needs to automate "
33
  "your social media activity. It removes so much work and stress that's "
@@ -56,7 +56,7 @@ msgstr ""
56
  msgid "+ add Parameter"
57
  msgstr ""
58
 
59
- #: includes/B2S/Ship/Save.php:444
60
  msgid ""
61
  "-For scheduled posts, Blog2Social will save your post and move it to the "
62
  "\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
@@ -64,7 +64,7 @@ msgid ""
64
  "and you can click on \"Share\" to post it to your Facebook Profile instantly."
65
  msgstr ""
66
 
67
- #: includes/B2S/Ship/Save.php:452
68
  msgid ""
69
  "-For scheduled posts, Blog2Social will save your post and move it to the "
70
  "\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
@@ -72,24 +72,19 @@ msgid ""
72
  "tab and you can click on \"Share\" to post it to your account instantly."
73
  msgstr ""
74
 
75
- #: includes/B2S/Ship/Save.php:443
76
  msgid ""
77
  "-To share your post immediately, click the \"Share\" button next to your "
78
  "selected Facebook profile below."
79
  msgstr ""
80
 
81
- #: includes/B2S/Ship/Save.php:451
82
  msgid ""
83
  "-To share your post immediately, click the \"Share\" button next to your "
84
  "selected Google+ account below."
85
  msgstr ""
86
 
87
- #: views/b2s/autopost.php:118 views/b2s/autopost.php:158
88
- msgid ""
89
- "1. for auto-posting your original Wordpress content (posts, pages and media)"
90
- msgstr ""
91
-
92
- #: views/b2s/autopost.php:136 views/b2s/autopost.php:172
93
  #, php-format
94
  msgid ""
95
  "1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
@@ -112,13 +107,7 @@ msgstr ""
112
  msgid "1x publish report"
113
  msgstr ""
114
 
115
- #: views/b2s/autopost.php:125 views/b2s/autopost.php:163
116
- msgid ""
117
- "2. for auto-posting imported posts (imported RSS feeds or posts created / "
118
- "imported with another plugin). "
119
- msgstr ""
120
-
121
- #: views/b2s/autopost.php:138 views/b2s/autopost.php:174
122
  msgid ""
123
  "2. has the selected social media networks connected or assigned (Blog2Social "
124
  "-> Networks)"
@@ -132,8 +121,8 @@ msgstr ""
132
  msgid "3. Blog2Social has the permission to publish your posts."
133
  msgstr ""
134
 
135
- #: views/b2s/autopost.php:140 views/b2s/autopost.php:176
136
- msgid "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
137
  msgstr ""
138
 
139
  #: views/b2s/network.php:735
@@ -143,34 +132,18 @@ msgid ""
143
  "sites or groups.</a>"
144
  msgstr ""
145
 
146
- #: views/b2s/autopost.php:165
147
  #, php-format
148
  msgid ""
149
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
150
- "content Sharing Imported Posts with the Auto-Poster- Things to check for "
151
- "Troubleshooting</a>"
152
- msgstr ""
153
-
154
- #: views/b2s/autopost.php:127
155
- #, php-format
156
- msgid ""
157
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
158
  "content</a>"
159
  msgstr ""
160
 
161
- #: views/b2s/autopost.php:160
162
  #, php-format
163
  msgid ""
164
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
165
- "original WordPress posts Sharing with the Auto-Poster- Things to check for "
166
- "Troubleshooting</a>"
167
- msgstr ""
168
-
169
- #: views/b2s/autopost.php:120
170
- #, php-format
171
- msgid ""
172
- "<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
173
- "original WordPress posts</a>"
174
  msgstr ""
175
 
176
  #: includes/Loader.php:1692 includes/System.php:32 includes/System.php:38
@@ -180,14 +153,14 @@ msgid ""
180
  "our FAQ</a>"
181
  msgstr ""
182
 
183
- #: views/b2s/autopost.php:129
184
  #, php-format
185
  msgid ""
186
- "<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-Poster-"
187
  " Things to check for Troubleshooting</a>"
188
  msgstr ""
189
 
190
- #: views/b2s/autopost.php:122
191
  #, php-format
192
  msgid ""
193
  "<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
@@ -286,7 +259,7 @@ msgstr ""
286
  msgid "activated"
287
  msgstr ""
288
 
289
- #: includes/Tools.php:537
290
  msgid "Activities"
291
  msgstr ""
292
 
@@ -472,9 +445,9 @@ msgstr ""
472
  msgid "all posts"
473
  msgstr ""
474
 
475
- #: views/b2s/autopost.php:132 views/b2s/autopost.php:168
476
  msgid ""
477
- "All settings and social networks for the auto-poster can be defined for each "
478
  "WordPress user individually."
479
  msgstr ""
480
 
@@ -537,12 +510,12 @@ msgstr ""
537
  msgid "An unknown error occurred!"
538
  msgstr ""
539
 
540
- #: views/b2s/html/header.php:392
541
  #, php-format
542
  msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
543
  msgstr ""
544
 
545
- #: includes/Tools.php:535
546
  msgid "Animals & Nature"
547
  msgstr ""
548
 
@@ -616,7 +589,7 @@ msgstr ""
616
  msgid "Are you sure you want to delete this Social Media draft?"
617
  msgstr ""
618
 
619
- #: includes/Tools.php:514
620
  msgid "Argentina"
621
  msgstr ""
622
 
@@ -653,11 +626,11 @@ msgstr ""
653
  msgid "at scheduled times"
654
  msgstr ""
655
 
656
- #: includes/Tools.php:502
657
  msgid "Australia"
658
  msgstr ""
659
 
660
- #: includes/Tools.php:503
661
  msgid "Austria"
662
  msgstr ""
663
 
@@ -698,7 +671,7 @@ msgstr ""
698
  #: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
699
  #: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
700
  #: views/b2s/html/footer.php:396 views/b2s/html/footer.php:454
701
- #: views/b2s/html/footer.php:547
702
  msgid "Auto-post and auto-schedule new and updated blog posts"
703
  msgstr ""
704
 
@@ -747,7 +720,7 @@ msgstr ""
747
  msgid "back to install plugins"
748
  msgstr ""
749
 
750
- #: views/b2s/html/header.php:537
751
  msgid ""
752
  "Benefit from the new Social Media Metrics and use the analysis of your "
753
  "social media posts for your further social media strategy."
@@ -763,7 +736,7 @@ msgstr ""
763
  #: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
764
  #: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
765
  #: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
766
- #: views/b2s/html/footer.php:456 views/b2s/html/footer.php:549
767
  msgid ""
768
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
769
  "social media posts"
@@ -779,7 +752,7 @@ msgstr ""
779
  msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
780
  msgstr ""
781
 
782
- #: views/b2s/html/header.php:373
783
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
784
  msgstr ""
785
 
@@ -791,7 +764,7 @@ msgstr ""
791
  msgid "Best Times Manager"
792
  msgstr ""
793
 
794
- #: views/b2s/metrics.php:233 views/b2s/html/header.php:532
795
  #: views/b2s/html/sidebar.php:102
796
  msgid "BETA"
797
  msgstr ""
@@ -828,6 +801,18 @@ msgid ""
828
  "drop-down menu."
829
  msgstr ""
830
 
 
 
 
 
 
 
 
 
 
 
 
 
831
  #: views/b2s/html/sidebar.php:152
832
  msgid "Blog2Social Blog News"
833
  msgstr ""
@@ -848,7 +833,7 @@ msgid ""
848
  "higher, or ask your server administrator to do it for you."
849
  msgstr ""
850
 
851
- #: views/b2s/html/header.php:121
852
  msgid ""
853
  "Blog2Social has detected another plugin that is setting Social Meta tags for "
854
  "your blog posts. To ensure that your Social Meta tags are set correctly for "
@@ -856,7 +841,7 @@ msgid ""
856
  "Facebook Open Graph and Twitter Card Tags settings in your other plugins."
857
  msgstr ""
858
 
859
- #: views/b2s/html/header.php:516
860
  msgid "Blog2Social is a service of Adenion GmbH"
861
  msgstr ""
862
 
@@ -864,7 +849,7 @@ msgstr ""
864
  msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
865
  msgstr ""
866
 
867
- #: views/b2s/html/header.php:305 views/b2s/html/header.php:324
868
  msgid ""
869
  "Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
870
  "autopilot, automatically schedule your social media posts with the Best Time "
@@ -921,18 +906,6 @@ msgid ""
921
  "location you want to share your content on."
922
  msgstr ""
923
 
924
- #: views/b2s/html/footer.php:514
925
- msgid ""
926
- "Blog2Social will automatically write these information in the Facebook Open "
927
- "Graph (OG) Meta Tags for Image, Title and Description of your blog post."
928
- msgstr ""
929
-
930
- #: views/b2s/html/footer.php:529
931
- msgid ""
932
- "Blog2Social will automatically write these information in the Twitter Card "
933
- "Meta Tags for Image, Title and Description of your blog post."
934
- msgstr ""
935
-
936
  #. Author of the plugin
937
  msgid "Blog2Social, Adenion"
938
  msgstr ""
@@ -995,7 +968,7 @@ msgid ""
995
  "post format. "
996
  msgstr ""
997
 
998
- #: views/b2s/html/header.php:391
999
  #, php-format
1000
  msgid ""
1001
  "By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
@@ -1018,7 +991,7 @@ msgstr ""
1018
  msgid "Call-to-Action"
1019
  msgstr ""
1020
 
1021
- #: includes/Tools.php:495
1022
  msgid "Canada"
1023
  msgstr ""
1024
 
@@ -1067,7 +1040,7 @@ msgstr ""
1067
  msgid "Change image"
1068
  msgstr ""
1069
 
1070
- #: views/b2s/html/footer.php:484 views/b2s/html/footer.php:575
1071
  msgid "Change image, title and description for your post on this network"
1072
  msgstr ""
1073
 
@@ -1107,7 +1080,7 @@ msgstr ""
1107
  msgid "Chart"
1108
  msgstr ""
1109
 
1110
- #: views/b2s/html/header.php:282
1111
  msgid ""
1112
  "Check out Blog2Social Premium with more awesome features for scheduling and "
1113
  "sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
@@ -1127,7 +1100,7 @@ msgstr ""
1127
  msgid "Check, edit or define your social media time settings"
1128
  msgstr ""
1129
 
1130
- #: includes/Tools.php:519
1131
  msgid "Chile"
1132
  msgstr ""
1133
 
@@ -1177,7 +1150,7 @@ msgstr ""
1177
  msgid "clock"
1178
  msgstr ""
1179
 
1180
- #: includes/Tools.php:520
1181
  msgid "Colombia"
1182
  msgstr ""
1183
 
@@ -1332,7 +1305,7 @@ msgstr ""
1332
  msgid "Could not hide notice. Please refresh the page and retry."
1333
  msgstr ""
1334
 
1335
- #: views/b2s/html/header.php:167
1336
  msgid "Could not save draft"
1337
  msgstr ""
1338
 
@@ -1386,7 +1359,7 @@ msgstr ""
1386
  msgid "Create your support account to ask questions and get help"
1387
  msgstr ""
1388
 
1389
- #: views/b2s/html/header.php:589 views/b2s/html/header.php:648
1390
  msgid ""
1391
  "Creating social media posts from other sources, such as text, images, videos,"
1392
  " and links to add more content variety and manage all your social media "
@@ -1446,7 +1419,7 @@ msgstr ""
1446
  msgid "Customizing Social Media Posts"
1447
  msgstr ""
1448
 
1449
- #: includes/Tools.php:492
1450
  msgid "Czechoslovakia"
1451
  msgstr ""
1452
 
@@ -1623,18 +1596,15 @@ msgstr ""
1623
  msgid "Delete text"
1624
  msgstr ""
1625
 
1626
- #: includes/Tools.php:508
1627
  msgid "Denmark"
1628
  msgstr ""
1629
 
1630
  #: includes/B2S/Settings/Item.php:183 includes/B2S/Settings/Item.php:232
 
1631
  msgid "Description"
1632
  msgstr ""
1633
 
1634
- #: views/b2s/html/footer.php:512 views/b2s/html/footer.php:527
1635
- msgid "description"
1636
- msgstr ""
1637
-
1638
  #: includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:498
1639
  #: includes/B2S/Post/Item.php:520 includes/B2S/Post/Item.php:617
1640
  msgid "Details"
@@ -1648,11 +1618,11 @@ msgstr ""
1648
  msgid "Did you miss something?"
1649
  msgstr ""
1650
 
1651
- #: views/b2s/html/header.php:329
1652
  msgid "Did you miss something? Tell us!"
1653
  msgstr ""
1654
 
1655
- #: views/b2s/html/header.php:577
1656
  msgid ""
1657
  "Did you try all options on how to organize your social media scheduling and "
1658
  "sharing tasks even more easily and automatically with Blog2Social Premium, "
@@ -1710,7 +1680,7 @@ msgid "Duration"
1710
  msgstr ""
1711
 
1712
  #: views/b2s/network.php:398 views/b2s/ship.php:652
1713
- #: views/b2s/html/header.php:377 views/prg/html/form.php:141
1714
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1715
  #: views/prg/html/form.php:220
1716
  msgid "E-Mail"
@@ -1883,7 +1853,7 @@ msgstr ""
1883
  msgid "Failed to save"
1884
  msgstr ""
1885
 
1886
- #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
1887
  msgid "FAQ"
1888
  msgstr ""
1889
 
@@ -1909,11 +1879,11 @@ msgid ""
1909
  "Filter Posts (Only posts that meet the following criteria will be autoposted)"
1910
  msgstr ""
1911
 
1912
- #: includes/Tools.php:510
1913
  msgid "Finland"
1914
  msgstr ""
1915
 
1916
- #: views/b2s/html/header.php:381 views/prg/html/form.php:91
1917
  #: views/prg/html/form.php:100 views/prg/html/form.php:168
1918
  #: views/prg/html/form.php:177
1919
  msgid "First Name"
@@ -1923,7 +1893,7 @@ msgstr ""
1923
  msgid "First, connect or select network before posting"
1924
  msgstr ""
1925
 
1926
- #: includes/Tools.php:541
1927
  msgid "Flags"
1928
  msgstr ""
1929
 
@@ -1931,7 +1901,7 @@ msgstr ""
1931
  msgid "Follow us"
1932
  msgstr ""
1933
 
1934
- #: includes/Tools.php:536
1935
  msgid "Food & Drink"
1936
  msgstr ""
1937
 
@@ -1960,12 +1930,26 @@ msgid ""
1960
  "your preferred custom post format."
1961
  msgstr ""
1962
 
1963
- #: includes/B2S/Ship/Save.php:448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1964
  msgid ""
1965
  "For sharing your posts on Google+ you can now use Google+ Instant Sharing"
1966
  msgstr ""
1967
 
1968
- #: includes/B2S/Ship/Save.php:440
1969
  msgid ""
1970
  "For sharing your posts on personal Facebook Profiles you can use Facebook "
1971
  "Instant Sharing"
@@ -1992,7 +1976,7 @@ msgstr ""
1992
  msgid "Frame colour:"
1993
  msgstr ""
1994
 
1995
- #: includes/Tools.php:505
1996
  msgid "France"
1997
  msgstr ""
1998
 
@@ -2020,11 +2004,11 @@ msgstr ""
2020
  msgid "German"
2021
  msgstr ""
2022
 
2023
- #: includes/Tools.php:507
2024
  msgid "Germany"
2025
  msgstr ""
2026
 
2027
- #: views/b2s/html/header.php:668
2028
  msgid "Get all Premium benefits starting from just $7 per month."
2029
  msgstr ""
2030
 
@@ -2032,13 +2016,6 @@ msgstr ""
2032
  msgid "Get more information about the benefits of Blog2Social Premium"
2033
  msgstr ""
2034
 
2035
- #: views/b2s/html/header.php:109
2036
- #, php-format
2037
- msgid ""
2038
- "Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
2039
- "guide</a>."
2040
- msgstr ""
2041
-
2042
  #: views/b2s/curation.php:293
2043
  #, php-format
2044
  msgid ""
@@ -2051,7 +2028,7 @@ msgstr ""
2051
  msgid "Get Social Media News"
2052
  msgstr ""
2053
 
2054
- #: views/b2s/html/header.php:403
2055
  msgid "Get Started"
2056
  msgstr ""
2057
 
@@ -2103,11 +2080,11 @@ msgid ""
2103
  "Grab more attention for your content with photos, videos, or infographics."
2104
  msgstr ""
2105
 
2106
- #: includes/Tools.php:496
2107
  msgid "Great Britain"
2108
  msgstr ""
2109
 
2110
- #: includes/Tools.php:486
2111
  msgid "Greece"
2112
  msgstr ""
2113
 
@@ -2153,7 +2130,7 @@ msgstr ""
2153
  msgid "Here's how to start tracking your social media posts:"
2154
  msgstr ""
2155
 
2156
- #: views/b2s/html/header.php:256
2157
  #, php-format
2158
  msgid ""
2159
  "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
@@ -2169,7 +2146,7 @@ msgstr ""
2169
  msgid "hide calendar"
2170
  msgstr ""
2171
 
2172
- #: views/b2s/html/header.php:679
2173
  msgid "Hide this notification."
2174
  msgstr ""
2175
 
@@ -2181,6 +2158,10 @@ msgstr ""
2181
  msgid "How to check the Social Media Metrics?"
2182
  msgstr ""
2183
 
 
 
 
 
2184
  #: views/b2s/support.php:135
2185
  msgid "How to use the Troubleshooting tool"
2186
  msgstr ""
@@ -2190,7 +2171,7 @@ msgstr ""
2190
  msgid "https://www.blog2social.com"
2191
  msgstr ""
2192
 
2193
- #: includes/Tools.php:511
2194
  msgid "Hungary"
2195
  msgstr ""
2196
 
@@ -2199,31 +2180,31 @@ msgstr ""
2199
  msgid "I agree to the <a href=\"%s\" target=\"_blank\">community rules</a>"
2200
  msgstr ""
2201
 
2202
- #: views/b2s/html/header.php:517
2203
  msgid "I agree to the Adenion Privacy Policy"
2204
  msgstr ""
2205
 
2206
- #: views/b2s/html/header.php:266
2207
  msgid "I already did it"
2208
  msgstr ""
2209
 
2210
- #: views/b2s/html/header.php:676
2211
  msgid "I need advice on finding the right license"
2212
  msgstr ""
2213
 
2214
- #: views/b2s/html/header.php:608
2215
  msgid "I need advice on finding the right license."
2216
  msgstr ""
2217
 
2218
- #: views/b2s/html/header.php:347
2219
  msgid "I need advice on the right license."
2220
  msgstr ""
2221
 
2222
- #: views/b2s/html/header.php:309 views/b2s/html/header.php:328
2223
  msgid "I need some more time to decide"
2224
  msgstr ""
2225
 
2226
- #: views/b2s/html/header.php:605
2227
  msgid "I would like to continue with my trial."
2228
  msgstr ""
2229
 
@@ -2241,6 +2222,23 @@ msgid ""
2241
  "selected Twitter accounts."
2242
  msgstr ""
2243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2244
  #: includes/Notice.php:18
2245
  msgid ""
2246
  "If you like Blog2Social, please give us a 5 star rating. If there is "
@@ -2255,18 +2253,52 @@ msgid ""
2255
  "receive help from our committed support team."
2256
  msgstr ""
2257
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2258
  #: views/b2s/ship.php:384
2259
  msgid "Ignore & share"
2260
  msgstr ""
2261
 
2262
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
 
2263
  msgid "Image"
2264
  msgstr ""
2265
 
2266
- #: views/b2s/html/footer.php:510 views/b2s/html/footer.php:525
2267
- msgid "image"
2268
- msgstr ""
2269
-
2270
  #: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
2271
  #: views/b2s/repost.php:59 views/b2s/repost.php:95
2272
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
@@ -2314,6 +2346,19 @@ msgstr ""
2314
  msgid "immediately after publishing"
2315
  msgstr ""
2316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2317
  #: views/b2s/metrics.php:209
2318
  msgid "Imported posts"
2319
  msgstr ""
@@ -2362,17 +2407,16 @@ msgstr ""
2362
  msgid "include posts with images only"
2363
  msgstr ""
2364
 
2365
- #: includes/Tools.php:487
2366
  msgid "India"
2367
  msgstr ""
2368
 
2369
- #: includes/Tools.php:493
2370
  msgid "Indonesia"
2371
  msgstr ""
2372
 
2373
  #: includes/Loader.php:917 includes/B2S/PostBox.php:165
2374
  #: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
2375
- #: views/b2s/autopost.php:113 views/b2s/autopost.php:153
2376
  #: views/b2s/metrics.php:70 views/b2s/network.php:49 views/b2s/ship.php:81
2377
  #: views/b2s/ship.php:183 views/b2s/ship.php:275
2378
  #: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
@@ -2432,7 +2476,7 @@ msgstr ""
2432
  msgid "Instant Sharing"
2433
  msgstr ""
2434
 
2435
- #: views/b2s/html/header.php:665
2436
  #, php-format
2437
  msgid ""
2438
  "Interested in reading more reviews? <a href=\"%s\" target=\"_blank\">Check "
@@ -2451,7 +2495,7 @@ msgstr ""
2451
  msgid "Invalid email address"
2452
  msgstr ""
2453
 
2454
- #: includes/Tools.php:489
2455
  msgid "Ireland"
2456
  msgstr ""
2457
 
@@ -2459,7 +2503,7 @@ msgstr ""
2459
  msgid "is currently being processed by the network"
2460
  msgstr ""
2461
 
2462
- #: includes/Tools.php:525
2463
  msgid "is determined automatically"
2464
  msgstr ""
2465
 
@@ -2468,15 +2512,15 @@ msgstr ""
2468
  msgid "is waiting to shared by %s"
2469
  msgstr ""
2470
 
2471
- #: includes/Tools.php:490
2472
  msgid "Italy"
2473
  msgstr ""
2474
 
2475
- #: includes/Tools.php:512
2476
  msgid "Japan"
2477
  msgstr ""
2478
 
2479
- #: views/b2s/html/header.php:661
2480
  msgid "jerryj1 per WordPress"
2481
  msgstr ""
2482
 
@@ -2488,7 +2532,7 @@ msgstr ""
2488
  msgid "Jobs & Projects"
2489
  msgstr ""
2490
 
2491
- #: views/b2s/html/header.php:340
2492
  msgid ""
2493
  "Keep your current settings and access to more automated scheduling and "
2494
  "sharing options and upgrade to Blog2Social Premium."
@@ -2514,7 +2558,7 @@ msgstr ""
2514
  msgid "Keywords: The tags you have set in your post."
2515
  msgstr ""
2516
 
2517
- #: includes/Tools.php:515
2518
  msgid "Korea"
2519
  msgstr ""
2520
 
@@ -2527,7 +2571,7 @@ msgstr ""
2527
  msgid "last modified by %s"
2528
  msgstr ""
2529
 
2530
- #: views/b2s/html/header.php:385 views/prg/html/form.php:92
2531
  #: views/prg/html/form.php:103 views/prg/html/form.php:169
2532
  #: views/prg/html/form.php:180
2533
  msgid "Last Name"
@@ -2555,7 +2599,7 @@ msgstr ""
2555
  msgid "latest share by %s"
2556
  msgstr ""
2557
 
2558
- #: includes/B2S/Ship/Save.php:440
2559
  msgid "Learn how it works"
2560
  msgstr ""
2561
 
@@ -2598,7 +2642,7 @@ msgstr ""
2598
  msgid "Legend"
2599
  msgstr ""
2600
 
2601
- #: includes/Tools.php:471 views/b2s/html/sidebar.php:32
2602
  #: views/b2s/html/sidebar.ship.php:29
2603
  msgid "License"
2604
  msgstr ""
@@ -2722,7 +2766,7 @@ msgstr ""
2722
  msgid "Meta Tags Settings for Posts and Pages"
2723
  msgstr ""
2724
 
2725
- #: includes/Tools.php:517
2726
  msgid "Mexico"
2727
  msgstr ""
2728
 
@@ -2866,7 +2910,7 @@ msgstr ""
2866
  msgid "Needed"
2867
  msgstr ""
2868
 
2869
- #: includes/Tools.php:498
2870
  msgid "Netherlands"
2871
  msgstr ""
2872
 
@@ -2929,7 +2973,7 @@ msgstr ""
2929
  msgid "new posts"
2930
  msgstr ""
2931
 
2932
- #: includes/Tools.php:509
2933
  msgid "New Zealand"
2934
  msgstr ""
2935
 
@@ -2958,11 +3002,11 @@ msgid ""
2958
  "account."
2959
  msgstr ""
2960
 
2961
- #: views/b2s/html/header.php:399
2962
  msgid "No credit card required"
2963
  msgstr ""
2964
 
2965
- #: includes/Tools.php:542
2966
  msgid "No emojis found"
2967
  msgstr ""
2968
 
@@ -2974,7 +3018,7 @@ msgstr ""
2974
  msgid "No link preview available. Please check your link."
2975
  msgstr ""
2976
 
2977
- #: views/b2s/html/header.php:234
2978
  msgid "No posts found. Please try again with different filter options."
2979
  msgstr ""
2980
 
@@ -2986,11 +3030,11 @@ msgstr ""
2986
  msgid "No User found"
2987
  msgstr ""
2988
 
2989
- #: views/b2s/html/header.php:263
2990
  msgid "Nope, maybe later"
2991
  msgstr ""
2992
 
2993
- #: includes/Tools.php:500
2994
  msgid "Norway"
2995
  msgstr ""
2996
 
@@ -3036,7 +3080,7 @@ msgstr ""
3036
  msgid "Number of repeats"
3037
  msgstr ""
3038
 
3039
- #: includes/Tools.php:539
3040
  msgid "Objects"
3041
  msgstr ""
3042
 
@@ -3056,7 +3100,7 @@ msgstr ""
3056
  msgid "OG Meta title"
3057
  msgstr ""
3058
 
3059
- #: views/b2s/html/header.php:486
3060
  msgid "OK"
3061
  msgstr ""
3062
 
@@ -3064,7 +3108,7 @@ msgstr ""
3064
  msgid "Ok, I want to get started!"
3065
  msgstr ""
3066
 
3067
- #: views/b2s/html/header.php:260
3068
  msgid "Ok, you deserve it"
3069
  msgstr ""
3070
 
@@ -3111,7 +3155,7 @@ msgstr ""
3111
  #: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
3112
  #: views/b2s/html/footer.php:313 views/b2s/html/footer.php:368
3113
  #: views/b2s/html/footer.php:407 views/b2s/html/footer.php:465
3114
- #: views/b2s/html/footer.php:559
3115
  #, php-format
3116
  msgid ""
3117
  "or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
@@ -3153,7 +3197,7 @@ msgstr ""
3153
  msgid "Personal Time Zone"
3154
  msgstr ""
3155
 
3156
- #: includes/Tools.php:522
3157
  msgid "Philippines"
3158
  msgstr ""
3159
 
@@ -3218,7 +3262,7 @@ msgid ""
3218
  "accounts or multiple duplicate updates on one account."
3219
  msgstr ""
3220
 
3221
- #: views/b2s/autopost.php:134 views/b2s/autopost.php:170
3222
  msgid ""
3223
  "Please make sure that each WordPress user or author whose posts should be "
3224
  "auto-posted"
@@ -3232,6 +3276,12 @@ msgid ""
3232
  "accounts."
3233
  msgstr ""
3234
 
 
 
 
 
 
 
3235
  #: includes/Loader.php:848
3236
  msgid ""
3237
  "Please make sure that your post, page or custom post type is published or "
@@ -3263,11 +3313,18 @@ msgid ""
3263
  "deactivated to ensure a stable connection to Blog2Social."
3264
  msgstr ""
3265
 
 
 
 
 
 
 
3266
  #: views/prg/ship.php:87
3267
  msgid "Please Note"
3268
  msgstr ""
3269
 
3270
- #: views/b2s/ship.php:796
 
3271
  msgid "Please note:"
3272
  msgstr ""
3273
 
@@ -3285,23 +3342,6 @@ msgid ""
3285
  "other content here:"
3286
  msgstr ""
3287
 
3288
- #: views/b2s/html/footer.php:517
3289
- msgid ""
3290
- "Please note: If this post has already been shared or scheduled previously, "
3291
- "your current changes will also affect the look of previously shared or "
3292
- "scheduled posts, as Facebook always refers to the current Open Graph meta "
3293
- "tags information and automatically updated all existing posts."
3294
- msgstr ""
3295
-
3296
- #: views/b2s/html/footer.php:532
3297
- msgid ""
3298
- "Please note: If this post was previously shared or scheduled, your current "
3299
- "changes will also affect the look of previously shared or scheduled posts, "
3300
- "as Twitter will always pull the most up-to-date information from the Twitter "
3301
- "Card tags. If this post has already been shared, it may take up to 7 days "
3302
- "for Twitter to update your current changes."
3303
- msgstr ""
3304
-
3305
  #: views/b2s/network.php:678 views/b2s/ship.php:734
3306
  msgid ""
3307
  "Please note: In order to connect your Instagram account to Blog2Social, "
@@ -3350,7 +3390,7 @@ msgid ""
3350
  "guide</a>."
3351
  msgstr ""
3352
 
3353
- #: includes/B2S/Ship/Save.php:453
3354
  msgid ""
3355
  "Please note: You post has to be marked as public to be posted in a group."
3356
  msgstr ""
@@ -3365,27 +3405,11 @@ msgid ""
3365
  "the new XING."
3366
  msgstr ""
3367
 
3368
- #: views/b2s/html/footer.php:519
3369
- #, php-format
3370
- msgid ""
3371
- "Please note: Your changes will have no effect on your social media posts on "
3372
- "Facebook, if you have manually unchecked the Meta Tag options for Facebook "
3373
- "in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
3374
- msgstr ""
3375
-
3376
- #: views/b2s/html/footer.php:534
3377
- #, php-format
3378
- msgid ""
3379
- "Please note: Your changes will have no effect on your social media posts on "
3380
- "Twitter, if you have manually unchecked the Meta Tag options for Twitter in "
3381
- "your <a target=\"_blank\" href=\"%s\">settings</a>"
3382
- msgstr ""
3383
-
3384
  #: views/b2s/network.php:199
3385
  msgid "Please re-authorize your account with Blog2Social and try again"
3386
  msgstr ""
3387
 
3388
- #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
3389
  msgid "Please see"
3390
  msgstr ""
3391
 
@@ -3405,7 +3429,7 @@ msgstr ""
3405
  msgid "Please select your correct server location and connect again."
3406
  msgstr ""
3407
 
3408
- #: includes/B2S/Ship/Save.php:458
3409
  msgid "Please share your post now"
3410
  msgstr ""
3411
 
@@ -3422,11 +3446,11 @@ msgstr ""
3422
  msgid "Plugin Warnings:"
3423
  msgstr ""
3424
 
3425
- #: includes/Tools.php:504
3426
  msgid "Poland"
3427
  msgstr ""
3428
 
3429
- #: includes/Tools.php:499 includes/Tools.php:513
3430
  msgid "Portugal"
3431
  msgstr ""
3432
 
@@ -3464,7 +3488,7 @@ msgstr ""
3464
  msgid "Post Interactions"
3465
  msgstr ""
3466
 
3467
- #: views/b2s/html/header.php:149
3468
  msgid "Post is published successfully on your blog!"
3469
  msgstr ""
3470
 
@@ -3488,8 +3512,8 @@ msgstr ""
3488
  #: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
3489
  #: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
3490
  #: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
3491
- #: views/b2s/html/footer.php:452 views/b2s/html/footer.php:545
3492
- #: views/b2s/html/header.php:371
3493
  msgid "Post on pages and groups"
3494
  msgstr ""
3495
 
@@ -3501,7 +3525,7 @@ msgstr ""
3501
  msgid "Post Types"
3502
  msgstr ""
3503
 
3504
- #: views/b2s/html/header.php:147
3505
  msgid "Post was scheduled successfully on your blog!"
3506
  msgstr ""
3507
 
@@ -3627,7 +3651,7 @@ msgstr ""
3627
 
3628
  #: views/b2s/curation.php:137 views/b2s/post.calendar.php:50
3629
  #: views/b2s/ship.php:18 views/b2s/ship.php:835 includes/B2S/Post/Filter.php:59
3630
- #: includes/B2S/Post/Item.php:393 includes/B2S/Ship/Save.php:466
3631
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
3632
  #: views/b2s/widgets/calendar.php:44
3633
  msgid "published"
@@ -3653,7 +3677,7 @@ msgstr ""
3653
  msgid "RATE BLOG2SOCIAL"
3654
  msgstr ""
3655
 
3656
- #: views/b2s/html/header.php:255
3657
  msgid "RATE IT!"
3658
  msgstr ""
3659
 
@@ -3701,7 +3725,7 @@ msgstr ""
3701
  msgid "Rebrandly"
3702
  msgstr ""
3703
 
3704
- #: includes/Tools.php:533
3705
  msgid "Recently Used"
3706
  msgstr ""
3707
 
@@ -3743,7 +3767,7 @@ msgstr ""
3743
  #: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
3744
  #: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
3745
  #: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
3746
- #: views/b2s/html/footer.php:461 views/b2s/html/footer.php:554
3747
  msgid ""
3748
  "Reporting & calendar: keep track of your published and scheduled social "
3749
  "media posts"
@@ -3755,7 +3779,7 @@ msgid ""
3755
  "media posts"
3756
  msgstr ""
3757
 
3758
- #: views/b2s/html/header.php:374
3759
  msgid "Reporting with links to all published social media posts"
3760
  msgstr ""
3761
 
@@ -3794,7 +3818,7 @@ msgid "resolve conflict"
3794
  msgstr ""
3795
 
3796
  #: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
3797
- #: includes/B2S/Ship/Save.php:476
3798
  msgid "Retweet"
3799
  msgstr ""
3800
 
@@ -3806,7 +3830,7 @@ msgid ""
3806
  "WordPress."
3807
  msgstr ""
3808
 
3809
- #: includes/Tools.php:506
3810
  msgid "Romania"
3811
  msgstr ""
3812
 
@@ -3814,7 +3838,7 @@ msgstr ""
3814
  msgid "RSS import & auto-post"
3815
  msgstr ""
3816
 
3817
- #: includes/Tools.php:497
3818
  msgid "Russia"
3819
  msgstr ""
3820
 
@@ -3839,7 +3863,7 @@ msgstr ""
3839
  msgid "save"
3840
  msgstr ""
3841
 
3842
- #: views/b2s/html/header.php:656
3843
  msgid "Save a lot of time for your social media tasks!"
3844
  msgstr ""
3845
 
@@ -3874,7 +3898,7 @@ msgstr ""
3874
  msgid "saved"
3875
  msgstr ""
3876
 
3877
- #: views/b2s/html/header.php:161
3878
  msgid "Saved as draft"
3879
  msgstr ""
3880
 
@@ -3888,7 +3912,7 @@ msgstr ""
3888
  #: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
3889
  #: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
3890
  #: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
3891
- #: views/b2s/html/footer.php:458 views/b2s/html/footer.php:551
3892
  msgid "Schedule and re-share old posts"
3893
  msgstr ""
3894
 
@@ -3933,7 +3957,7 @@ msgstr ""
3933
  #: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
3934
  #: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
3935
  #: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
3936
- #: views/b2s/html/footer.php:457 views/b2s/html/footer.php:550
3937
  msgid "Schedule your post for one time, multiple times or recurrently"
3938
  msgstr ""
3939
 
@@ -3943,7 +3967,7 @@ msgstr ""
3943
  #: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
3944
  #: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
3945
  #: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
3946
- #: views/b2s/html/footer.php:455 views/b2s/html/footer.php:548
3947
  msgid "Schedule your posts at the best times on each network"
3948
  msgstr ""
3949
 
@@ -3969,7 +3993,7 @@ msgstr ""
3969
  msgid "scheduled by %s"
3970
  msgstr ""
3971
 
3972
- #: includes/B2S/Ship/Save.php:477
3973
  msgid "scheduled on"
3974
  msgstr ""
3975
 
@@ -4003,7 +4027,7 @@ msgstr ""
4003
  msgid "scroll to top"
4004
  msgstr ""
4005
 
4006
- #: includes/Tools.php:532
4007
  msgid "Search"
4008
  msgstr ""
4009
 
@@ -4071,7 +4095,7 @@ msgstr ""
4071
  #: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
4072
  #: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
4073
  #: views/b2s/html/footer.php:402 views/b2s/html/footer.php:460
4074
- #: views/b2s/html/footer.php:553
4075
  msgid "Select individual images per post"
4076
  msgstr ""
4077
 
@@ -4088,7 +4112,7 @@ msgstr ""
4088
  #: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
4089
  #: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
4090
  #: views/b2s/html/footer.php:401 views/b2s/html/footer.php:459
4091
- #: views/b2s/html/footer.php:552
4092
  msgid "Select link format or image format for your posts"
4093
  msgstr ""
4094
 
@@ -4194,7 +4218,7 @@ msgstr ""
4194
  msgid "Share"
4195
  msgstr ""
4196
 
4197
- #: includes/B2S/Post/Item.php:923 includes/B2S/Ship/Save.php:457
4198
  msgid "share"
4199
  msgstr ""
4200
 
@@ -4248,7 +4272,7 @@ msgstr ""
4248
  msgid "share oldest posts first"
4249
  msgstr ""
4250
 
4251
- #: views/b2s/html/header.php:372
4252
  msgid "Share on multiple accounts per network"
4253
  msgstr ""
4254
 
@@ -4258,7 +4282,7 @@ msgstr ""
4258
  #: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
4259
  #: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
4260
  #: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
4261
- #: views/b2s/html/footer.php:453 views/b2s/html/footer.php:546
4262
  msgid "Share on multiple profiles, pages and groups"
4263
  msgstr ""
4264
 
@@ -4418,19 +4442,7 @@ msgstr ""
4418
  msgid "Sign in to Pinterest"
4419
  msgstr ""
4420
 
4421
- #: views/b2s/autopost.php:143
4422
- msgid ""
4423
- "Since Blog2Social works WordPress user based, please make sure you activate "
4424
- "and define the preferred settings panel for each user."
4425
- msgstr ""
4426
-
4427
- #: views/b2s/autopost.php:179
4428
- msgid ""
4429
- "Since Blog2Social works WordPress user based, please make sure you activate "
4430
- "and define the preferred settings panel for each user. "
4431
- msgstr ""
4432
-
4433
- #: includes/Tools.php:518
4434
  msgid "Slovakia"
4435
  msgstr ""
4436
 
@@ -4450,7 +4462,7 @@ msgstr ""
4450
  msgid "Smart: 3 (per user)"
4451
  msgstr ""
4452
 
4453
- #: includes/Tools.php:534
4454
  msgid "Smileys & People"
4455
  msgstr ""
4456
 
@@ -4462,7 +4474,7 @@ msgstr ""
4462
  msgid "Social Accounts"
4463
  msgstr ""
4464
 
4465
- #: views/b2s/html/header.php:370
4466
  msgid "Social Media Auto-Posting"
4467
  msgstr ""
4468
 
@@ -4476,7 +4488,7 @@ msgid "Social Media Calendar"
4476
  msgstr ""
4477
 
4478
  #: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
4479
- #: views/b2s/metrics.php:233 views/b2s/html/header.php:532
4480
  #: views/b2s/html/sidebar.php:102
4481
  msgid "Social Media Metrics"
4482
  msgstr ""
@@ -4506,7 +4518,7 @@ msgstr ""
4506
  msgid "Social Media Scheduling & Sharing"
4507
  msgstr ""
4508
 
4509
- #: views/b2s/html/header.php:584 views/b2s/html/header.php:643
4510
  msgid ""
4511
  "Social media templates to turn your social media posts automatically into "
4512
  "tailored posts for each network and community by customizing your post "
@@ -4540,7 +4552,7 @@ msgid ""
4540
  "following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
4541
  msgstr ""
4542
 
4543
- #: views/b2s/html/header.php:477
4544
  msgid "Something went wrong on our side. Please contact support!"
4545
  msgstr ""
4546
 
@@ -4552,11 +4564,11 @@ msgstr ""
4552
  msgid "Sort by network"
4553
  msgstr ""
4554
 
4555
- #: includes/Tools.php:521
4556
  msgid "South Africa"
4557
  msgstr ""
4558
 
4559
- #: includes/Tools.php:494
4560
  msgid "Spain"
4561
  msgstr ""
4562
 
@@ -4573,11 +4585,11 @@ msgstr ""
4573
  msgid "Start your 30-day free Premium trial"
4574
  msgstr ""
4575
 
4576
- #: views/b2s/html/header.php:280
4577
  msgid "Start your free 30-day-Premium-trial"
4578
  msgstr ""
4579
 
4580
- #: views/b2s/html/header.php:543
4581
  msgid "Start your free trial for Social Media Metrics"
4582
  msgstr ""
4583
 
@@ -4638,15 +4650,15 @@ msgstr ""
4638
  msgid "Supported HTML tags"
4639
  msgstr ""
4640
 
4641
- #: includes/Tools.php:516
4642
  msgid "Sweden"
4643
  msgstr ""
4644
 
4645
- #: includes/Tools.php:491
4646
  msgid "Switzerland"
4647
  msgstr ""
4648
 
4649
- #: includes/Tools.php:540
4650
  msgid "Symbols"
4651
  msgstr ""
4652
 
@@ -4654,7 +4666,7 @@ msgstr ""
4654
  msgid "System"
4655
  msgstr ""
4656
 
4657
- #: views/b2s/html/header.php:583 views/b2s/html/header.php:642
4658
  msgid ""
4659
  "Tailoring options like individual images for each post, different post "
4660
  "formats (link and image post), emojis, hashtags, handles and GIFs for your "
@@ -4669,7 +4681,7 @@ msgstr ""
4669
  msgid "Terms"
4670
  msgstr ""
4671
 
4672
- #: views/b2s/html/header.php:361
4673
  msgid "Test Blog2Social PREMIUM 30 days for free"
4674
  msgstr ""
4675
 
@@ -4692,7 +4704,7 @@ msgid ""
4692
  "individual hashtags, @mentions, or emojis."
4693
  msgstr ""
4694
 
4695
- #: views/b2s/html/header.php:200
4696
  msgid "Thank you! Your feedback has been received."
4697
  msgstr ""
4698
 
@@ -4700,7 +4712,7 @@ msgstr ""
4700
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
4701
  msgstr ""
4702
 
4703
- #: views/b2s/html/header.php:582 views/b2s/html/header.php:641
4704
  msgid ""
4705
  "The Auto-Poster, to automatically share your posts immediately or at a later "
4706
  "time."
@@ -4725,7 +4737,7 @@ msgid ""
4725
  "Facebook (page and group) and on Twitter."
4726
  msgstr ""
4727
 
4728
- #: views/b2s/html/header.php:590 views/b2s/html/header.php:649
4729
  msgid ""
4730
  "The Best Time Manager to reach your followers when they are most active on "
4731
  "each social network and increase your reach."
@@ -4798,7 +4810,7 @@ msgid ""
4798
  "under the menu item \"Social Media Metrics\"."
4799
  msgstr ""
4800
 
4801
- #: views/b2s/html/header.php:367
4802
  msgid ""
4803
  "The free trial can not be started. This blog has been already registered for "
4804
  "the free trial."
@@ -4823,7 +4835,7 @@ msgstr ""
4823
  msgid "The images file types .jpg and .png are allowed. Please try another."
4824
  msgstr ""
4825
 
4826
- #: views/b2s/html/header.php:429
4827
  msgid "The license has been successfully activated."
4828
  msgstr ""
4829
 
@@ -4926,7 +4938,7 @@ msgid ""
4926
  "information in the <a href=\"%s\" target=\"_blank\">Instagram guide</a>."
4927
  msgstr ""
4928
 
4929
- #: views/b2s/html/header.php:239
4930
  msgid ""
4931
  "The posts you tried to add are already in your sharing queue. If you want to "
4932
  "re-schedule them, please delete the posts before adding them again."
@@ -4958,7 +4970,7 @@ msgid ""
4958
  "admin."
4959
  msgstr ""
4960
 
4961
- #: views/b2s/html/header.php:591 views/b2s/html/header.php:650
4962
  msgid ""
4963
  "The social media calendar to keep track of your scheduled social media posts."
4964
  " Add social media posts, edit or change the date per drag & drop."
@@ -4972,7 +4984,7 @@ msgstr ""
4972
  msgid "The tags you have set in your post."
4973
  msgstr ""
4974
 
4975
- #: views/b2s/html/header.php:592 views/b2s/html/header.php:651
4976
  msgid ""
4977
  "The team and user management settings to organize multiple users and "
4978
  "licenses and to collaborate on the social media calendar, and much more."
@@ -5001,6 +5013,13 @@ msgid ""
5001
  "Wordpress."
5002
  msgstr ""
5003
 
 
 
 
 
 
 
 
5004
  #: views/b2s/network.php:163
5005
  msgid "The user to whom the connection is assigned still has scheduled posts."
5006
  msgstr ""
@@ -5017,10 +5036,6 @@ msgid ""
5017
  "another network collection."
5018
  msgstr ""
5019
 
5020
- #: views/b2s/autopost.php:116 views/b2s/autopost.php:156
5021
- msgid "There are two different setting panels in the auto-poster section:"
5022
- msgstr ""
5023
-
5024
  #: views/b2s/ship.php:588
5025
  msgid ""
5026
  "There is already a saved draft for this WordPress post or page. If you save "
@@ -5045,11 +5060,11 @@ msgstr ""
5045
  msgid "This connection has already been assigned to this user."
5046
  msgstr ""
5047
 
5048
- #: views/b2s/html/header.php:128
5049
  msgid "This entry could not be removed. It's not yours!"
5050
  msgstr ""
5051
 
5052
- #: views/b2s/html/header.php:133
5053
  msgid "This entry was removed successfully."
5054
  msgstr ""
5055
 
@@ -5065,7 +5080,7 @@ msgid ""
5065
  "edited by users with admin rights only."
5066
  msgstr ""
5067
 
5068
- #: includes/B2S/Ship/Save.php:442 includes/B2S/Ship/Save.php:450
5069
  msgid "This is how it works:"
5070
  msgstr ""
5071
 
@@ -5077,7 +5092,7 @@ msgstr ""
5077
  msgid "This post is blocked by %1"
5078
  msgstr ""
5079
 
5080
- #: views/b2s/html/header.php:138
5081
  msgid "This post was edited successfully."
5082
  msgstr ""
5083
 
@@ -5148,15 +5163,12 @@ msgstr ""
5148
 
5149
  #: views/b2s/ship.php:58 views/prg/ship.php:43 views/prg/ship.php:45
5150
  #: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
5151
- #: includes/B2S/Settings/Item.php:231 views/prg/html/form.php:26
 
5152
  #: views/prg/html/form.php:28
5153
  msgid "Title"
5154
  msgstr ""
5155
 
5156
- #: views/b2s/html/footer.php:511 views/b2s/html/footer.php:526
5157
- msgid "title"
5158
- msgstr ""
5159
-
5160
  #: views/b2s/settings.php:118
5161
  msgid "Title: The title of your post."
5162
  msgstr ""
@@ -5193,7 +5205,7 @@ msgid ""
5193
  "href=\"%s\" target=\"_blank\">Info</a>)"
5194
  msgstr ""
5195
 
5196
- #: views/b2s/html/header.php:597
5197
  msgid ""
5198
  "To keep all these benefits from all advanced features for automated "
5199
  "scheduling and sharing and to keep all your individual settings und "
@@ -5230,7 +5242,7 @@ msgstr ""
5230
  msgid "Transfer Auto-Poster settings to other users (Business):"
5231
  msgstr ""
5232
 
5233
- #: includes/Tools.php:538
5234
  msgid "Travel & Places"
5235
  msgstr ""
5236
 
@@ -5250,7 +5262,7 @@ msgstr ""
5250
  msgid "Tuesday"
5251
  msgstr ""
5252
 
5253
- #: includes/Tools.php:501
5254
  msgid "Turkey"
5255
  msgstr ""
5256
 
@@ -5292,7 +5304,7 @@ msgid ""
5292
  "again!"
5293
  msgstr ""
5294
 
5295
- #: includes/Tools.php:488
5296
  msgid "United States of America"
5297
  msgstr ""
5298
 
@@ -5341,7 +5353,7 @@ msgstr ""
5341
  msgid "Upgrade License"
5342
  msgstr ""
5343
 
5344
- #: views/b2s/html/header.php:636
5345
  msgid "Upgrade now to keep all benefits of Blog2Social Premium:"
5346
  msgstr ""
5347
 
@@ -5367,12 +5379,12 @@ msgstr ""
5367
  msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
5368
  msgstr ""
5369
 
5370
- #: views/b2s/html/header.php:569 views/b2s/html/header.php:630
5371
- #: views/b2s/html/header.php:673
5372
  msgid "Upgrade to Blog2Social Premium now"
5373
  msgstr ""
5374
 
5375
- #: views/b2s/html/header.php:344 views/b2s/html/header.php:602
5376
  msgid "Upgrade to Blog2Social Premium now."
5377
  msgstr ""
5378
 
@@ -5399,7 +5411,7 @@ msgstr ""
5399
  msgid "Upgrade to BUSINESS"
5400
  msgstr ""
5401
 
5402
- #: views/b2s/html/header.php:308
5403
  msgid "Upgrade to PREMIUM"
5404
  msgstr ""
5405
 
@@ -5423,7 +5435,7 @@ msgstr ""
5423
  #: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
5424
  #: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
5425
  #: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
5426
- #: views/b2s/html/footer.php:463 views/b2s/html/footer.php:556
5427
  msgid "Upgrade to SMART and above"
5428
  msgstr ""
5429
 
@@ -5508,7 +5520,7 @@ msgstr ""
5508
  msgid "View schedule posts"
5509
  msgstr ""
5510
 
5511
- #: includes/B2S/Ship/Save.php:467
5512
  msgid "view social media post"
5513
  msgstr ""
5514
 
@@ -5533,11 +5545,11 @@ msgid ""
5533
  "authorization."
5534
  msgstr ""
5535
 
5536
- #: views/b2s/metrics.php:221 views/b2s/html/header.php:546
5537
  msgid "We hope you enjoy analysing your posts!"
5538
  msgstr ""
5539
 
5540
- #: views/b2s/html/header.php:321
5541
  msgid "We hope you liked Blog2Social Premium."
5542
  msgstr ""
5543
 
@@ -5545,7 +5557,7 @@ msgstr ""
5545
  msgid "We never store your data from your social media profiles"
5546
  msgstr ""
5547
 
5548
- #: views/b2s/html/header.php:502
5549
  msgid "We updated our Privacy Policy"
5550
  msgstr ""
5551
 
@@ -5578,7 +5590,15 @@ msgstr ""
5578
  msgid "Welcome to the trial of the beta version \"Social Media Metrics\"!"
5579
  msgstr ""
5580
 
5581
- #: views/b2s/html/header.php:575
 
 
 
 
 
 
 
 
5582
  msgid "What do you like best of Blog2Social Premium?"
5583
  msgstr ""
5584
 
@@ -5654,11 +5674,11 @@ msgstr ""
5654
  #: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
5655
  #: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
5656
  #: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
5657
- #: views/b2s/html/footer.php:449 views/b2s/html/footer.php:542
5658
  msgid "With Blog2Social Premium you can:"
5659
  msgstr ""
5660
 
5661
- #: views/b2s/html/header.php:633
5662
  msgid ""
5663
  "With Blog2Social Premium you have all the options you need to promote your "
5664
  "content on your social media channels successfully and time-savingly."
@@ -5744,6 +5764,13 @@ msgid ""
5744
  "."
5745
  msgstr ""
5746
 
 
 
 
 
 
 
 
5747
  #: views/b2s/metrics.php:273
5748
  msgid ""
5749
  "With this function, you can compare the social media metrics for a period "
@@ -5820,15 +5847,15 @@ msgstr ""
5820
  msgid "Yes, I accept"
5821
  msgstr ""
5822
 
5823
- #: views/b2s/html/header.php:286
5824
  msgid "Yes, I want to test Blog2Social Premium 30 days for free"
5825
  msgstr ""
5826
 
5827
- #: views/b2s/html/header.php:327
5828
  msgid "Yes, I want to upgrade to Blog2Social Premium"
5829
  msgstr ""
5830
 
5831
- #: views/b2s/html/footer.php:580
5832
  msgid ""
5833
  "You are currently sharing this post as image post. Changes to title and "
5834
  "description Meta Tag parameters will only be supported for link post formats."
@@ -5870,19 +5897,7 @@ msgid ""
5870
  "or network and save your new settings as default for future use."
5871
  msgstr ""
5872
 
5873
- #: views/b2s/html/footer.php:507
5874
- msgid ""
5875
- "You can change the image, title and description for your post on Facebook, "
5876
- "by editing the following fields for"
5877
- msgstr ""
5878
-
5879
- #: views/b2s/html/footer.php:522
5880
- msgid ""
5881
- "You can change the image, title and description for your post on Twitter, by "
5882
- "editing the following fields for"
5883
- msgstr ""
5884
-
5885
- #: views/b2s/html/header.php:534 views/b2s/html/header.php:572
5886
  msgid ""
5887
  "You can now track the performance of your post directly in Blog2Social, and "
5888
  "you can test it exclusively and for free!"
@@ -5968,7 +5983,7 @@ msgid ""
5968
  "platforms in the <a href=\"%s\" target=\"_blank\">link shortener guide</a>."
5969
  msgstr ""
5970
 
5971
- #: views/b2s/html/header.php:115
5972
  msgid ""
5973
  "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
5974
  "plugins active. To make sure that your Social Meta Tags are set correctly, "
@@ -5984,13 +5999,6 @@ msgstr ""
5984
  msgid "You have already retweeted this post."
5985
  msgstr ""
5986
 
5987
- #: views/b2s/html/header.php:109
5988
- msgid ""
5989
- "You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
5990
- "that you use only one plugin to set social meta tags so that the networks "
5991
- "can show the link preview of your post correctly."
5992
- msgstr ""
5993
-
5994
  #: views/b2s/html/header.php:98
5995
  msgid "You have deleted all meta data for posts and pages successfully."
5996
  msgstr ""
@@ -6059,7 +6067,7 @@ msgstr ""
6059
  msgid "You want to auto-post your blog post?"
6060
  msgstr ""
6061
 
6062
- #: views/b2s/html/footer.php:541
6063
  msgid "You want to change the image, title and description for your post?"
6064
  msgstr ""
6065
 
@@ -6135,6 +6143,13 @@ msgstr ""
6135
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
6136
  msgstr ""
6137
 
 
 
 
 
 
 
 
6138
  #: views/b2s/settings.php:108
6139
  #, php-format
6140
  msgid ""
@@ -6175,11 +6190,11 @@ msgstr ""
6175
  msgid "Your Activity"
6176
  msgstr ""
6177
 
6178
- #: views/b2s/html/header.php:190
6179
  msgid "Your authorization could not be removed."
6180
  msgstr ""
6181
 
6182
- #: views/b2s/html/header.php:195
6183
  msgid "Your authorization has been removed successfully."
6184
  msgstr ""
6185
 
@@ -6197,7 +6212,7 @@ msgid ""
6197
  "to reconnect your account.</a>"
6198
  msgstr ""
6199
 
6200
- #: views/b2s/html/header.php:175
6201
  msgid "Your authorization was successful."
6202
  msgstr ""
6203
 
@@ -6216,7 +6231,7 @@ msgid ""
6216
  "queue."
6217
  msgstr ""
6218
 
6219
- #: views/b2s/html/footer.php:583
6220
  #, php-format
6221
  msgid ""
6222
  "Your changes will have no effect on your social media posts on Facebook, if "
@@ -6224,7 +6239,7 @@ msgid ""
6224
  "Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
6225
  msgstr ""
6226
 
6227
- #: views/b2s/html/footer.php:586
6228
  #, php-format
6229
  msgid ""
6230
  "Your changes will have no effect on your social media posts on Twitter, if "
@@ -6232,6 +6247,22 @@ msgid ""
6232
  "Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
6233
  msgstr ""
6234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6235
  #: views/b2s/post.php:22
6236
  msgid "Your complete social media management in one place"
6237
  msgstr ""
@@ -6253,7 +6284,7 @@ msgstr ""
6253
  msgid "Your daily limit has been reached."
6254
  msgstr ""
6255
 
6256
- #: views/b2s/html/header.php:445
6257
  msgid "Your entered License Key is invalid. Please contact support!"
6258
  msgstr ""
6259
 
@@ -6271,19 +6302,19 @@ msgid ""
6271
  "how to check and edit the Facebook page settings.</a>"
6272
  msgstr ""
6273
 
6274
- #: views/b2s/html/header.php:205
6275
  msgid "Your feedback could not be delivered."
6276
  msgstr ""
6277
 
6278
- #: views/b2s/html/header.php:298
6279
  msgid "Your free Blog2Social Premium trial version is activated for "
6280
  msgstr ""
6281
 
6282
- #: views/b2s/html/header.php:339
6283
  msgid "Your free Premium trial ends soon. "
6284
  msgstr ""
6285
 
6286
- #: views/b2s/html/header.php:565
6287
  #, php-format
6288
  msgid ""
6289
  "Your free trial of Blog2Social Premium expires in %d days. Don’t miss to "
@@ -6291,11 +6322,11 @@ msgid ""
6291
  "settings."
6292
  msgstr ""
6293
 
6294
- #: views/b2s/html/header.php:320
6295
  msgid "Your free trial of Blog2Social PREMIUM has ended."
6296
  msgstr ""
6297
 
6298
- #: views/b2s/html/header.php:626
6299
  msgid ""
6300
  "Your free trial of Blog2Social Premium has expired. We hope you explored and "
6301
  "enjoyed all the Premium options."
@@ -6305,11 +6336,11 @@ msgstr ""
6305
  msgid "Your group can not be found by the network."
6306
  msgstr ""
6307
 
6308
- #: views/b2s/html/header.php:461
6309
  msgid "Your license key has reached the maximum number of users."
6310
  msgstr ""
6311
 
6312
- #: views/b2s/html/header.php:244
6313
  msgid ""
6314
  "Your limit for your quota of posts in your queue has been reached. Please "
6315
  "delete posts from your queue before you add more"
@@ -6340,7 +6371,7 @@ msgid ""
6340
  msgstr ""
6341
 
6342
  #: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:787
6343
- #: includes/B2S/Ship/Save.php:491
6344
  #, php-format
6345
  msgid ""
6346
  "Your post could not be posted. More information in this <a href=\"%s\" "
@@ -6358,11 +6389,11 @@ msgid ""
6358
  "auto-post or schedule and customize your social media posts with Blog2Social."
6359
  msgstr ""
6360
 
6361
- #: views/b2s/html/header.php:185
6362
  msgid "Your profile could not be saved."
6363
  msgstr ""
6364
 
6365
- #: views/b2s/html/header.php:180
6366
  msgid "Your profile was saved successful."
6367
  msgstr ""
6368
 
@@ -6378,17 +6409,17 @@ msgid ""
6378
  "the \"+ Add more\" icon on top of the navigation bar."
6379
  msgstr ""
6380
 
6381
- #: views/b2s/html/header.php:222
6382
  msgid ""
6383
  "Your settings could not be saved, because you have auto-posting enabled but "
6384
  "no social networks selected."
6385
  msgstr ""
6386
 
6387
- #: views/b2s/html/header.php:217
6388
  msgid "Your settings could not be saved."
6389
  msgstr ""
6390
 
6391
- #: views/b2s/html/header.php:212 views/b2s/html/header.php:227
6392
  msgid "Your settings were successfully saved."
6393
  msgstr ""
6394
 
3
  msgstr ""
4
  "Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2022-04-04 09:59+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
15
  "X-Generator: Loco https://localise.biz/\n"
16
  "X-Loco-Version: 2.2.0; wp-5.0.3"
17
 
18
+ #: views/b2s/html/header.php:305
19
  msgid " Days"
20
  msgstr ""
21
 
22
+ #: views/b2s/html/header.php:248
23
  msgid " or upgade your Blog2Social license to extend your quota."
24
  msgstr ""
25
 
26
+ #: views/b2s/html/header.php:305
27
  msgid " today"
28
  msgstr ""
29
 
30
+ #: views/b2s/html/header.php:666
31
  msgid ""
32
  "\"Blog2Social is the master tool any blogger or marketer needs to automate "
33
  "your social media activity. It removes so much work and stress that's "
56
  msgid "+ add Parameter"
57
  msgstr ""
58
 
59
+ #: includes/B2S/Ship/Save.php:439
60
  msgid ""
61
  "-For scheduled posts, Blog2Social will save your post and move it to the "
62
  "\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
64
  "and you can click on \"Share\" to post it to your Facebook Profile instantly."
65
  msgstr ""
66
 
67
+ #: includes/B2S/Ship/Save.php:447
68
  msgid ""
69
  "-For scheduled posts, Blog2Social will save your post and move it to the "
70
  "\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
72
  "tab and you can click on \"Share\" to post it to your account instantly."
73
  msgstr ""
74
 
75
+ #: includes/B2S/Ship/Save.php:438
76
  msgid ""
77
  "-To share your post immediately, click the \"Share\" button next to your "
78
  "selected Facebook profile below."
79
  msgstr ""
80
 
81
+ #: includes/B2S/Ship/Save.php:446
82
  msgid ""
83
  "-To share your post immediately, click the \"Share\" button next to your "
84
  "selected Google+ account below."
85
  msgstr ""
86
 
87
+ #: views/b2s/autopost.php:128 views/b2s/autopost.php:160
 
 
 
 
 
88
  #, php-format
89
  msgid ""
90
  "1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
107
  msgid "1x publish report"
108
  msgstr ""
109
 
110
+ #: views/b2s/autopost.php:130 views/b2s/autopost.php:162
 
 
 
 
 
 
111
  msgid ""
112
  "2. has the selected social media networks connected or assigned (Blog2Social "
113
  "-> Networks)"
121
  msgid "3. Blog2Social has the permission to publish your posts."
122
  msgstr ""
123
 
124
+ #: views/b2s/autopost.php:132 views/b2s/autopost.php:164
125
+ msgid "3. is activated with the correct Auto-Poster settings (Autoposter FAQ)"
126
  msgstr ""
127
 
128
  #: views/b2s/network.php:735
132
  "sites or groups.</a>"
133
  msgstr ""
134
 
135
+ #: views/b2s/autopost.php:151
136
  #, php-format
137
  msgid ""
138
+ "<a href=\"%s\" target=\"_blank\">How to set up the Auto-Poster for imported "
 
 
 
 
 
 
 
 
139
  "content</a>"
140
  msgstr ""
141
 
142
+ #: views/b2s/autopost.php:119
143
  #, php-format
144
  msgid ""
145
+ "<a href=\"%s\" target=\"_blank\">How to set up the Auto-Poster for your own "
146
+ "WordPress content</a>"
 
 
 
 
 
 
 
 
147
  msgstr ""
148
 
149
  #: includes/Loader.php:1692 includes/System.php:32 includes/System.php:38
153
  "our FAQ</a>"
154
  msgstr ""
155
 
156
+ #: views/b2s/autopost.php:153
157
  #, php-format
158
  msgid ""
159
+ "<a href=\"%s\" target=\"_blank\">Sharing imported posts with the Auto-Poster-"
160
  " Things to check for Troubleshooting</a>"
161
  msgstr ""
162
 
163
+ #: views/b2s/autopost.php:121
164
  #, php-format
165
  msgid ""
166
  "<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
259
  msgid "activated"
260
  msgstr ""
261
 
262
+ #: includes/Tools.php:549
263
  msgid "Activities"
264
  msgstr ""
265
 
445
  msgid "all posts"
446
  msgstr ""
447
 
448
+ #: views/b2s/autopost.php:124 views/b2s/autopost.php:156
449
  msgid ""
450
+ "All settings and social networks for the Auto-Poster can be defined for each "
451
  "WordPress user individually."
452
  msgstr ""
453
 
510
  msgid "An unknown error occurred!"
511
  msgstr ""
512
 
513
+ #: views/b2s/html/header.php:396
514
  #, php-format
515
  msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
516
  msgstr ""
517
 
518
+ #: includes/Tools.php:547
519
  msgid "Animals & Nature"
520
  msgstr ""
521
 
589
  msgid "Are you sure you want to delete this Social Media draft?"
590
  msgstr ""
591
 
592
+ #: includes/Tools.php:526
593
  msgid "Argentina"
594
  msgstr ""
595
 
626
  msgid "at scheduled times"
627
  msgstr ""
628
 
629
+ #: includes/Tools.php:514
630
  msgid "Australia"
631
  msgstr ""
632
 
633
+ #: includes/Tools.php:515
634
  msgid "Austria"
635
  msgstr ""
636
 
671
  #: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
672
  #: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
673
  #: views/b2s/html/footer.php:396 views/b2s/html/footer.php:454
674
+ #: views/b2s/html/footer.php:569
675
  msgid "Auto-post and auto-schedule new and updated blog posts"
676
  msgstr ""
677
 
720
  msgid "back to install plugins"
721
  msgstr ""
722
 
723
+ #: views/b2s/html/header.php:541
724
  msgid ""
725
  "Benefit from the new Social Media Metrics and use the analysis of your "
726
  "social media posts for your further social media strategy."
736
  #: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
737
  #: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
738
  #: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
739
+ #: views/b2s/html/footer.php:456 views/b2s/html/footer.php:571
740
  msgid ""
741
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
742
  "social media posts"
752
  msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
753
  msgstr ""
754
 
755
+ #: views/b2s/html/header.php:377
756
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
757
  msgstr ""
758
 
764
  msgid "Best Times Manager"
765
  msgstr ""
766
 
767
+ #: views/b2s/metrics.php:233 views/b2s/html/header.php:536
768
  #: views/b2s/html/sidebar.php:102
769
  msgid "BETA"
770
  msgstr ""
801
  "drop-down menu."
802
  msgstr ""
803
 
804
+ #: views/b2s/html/footer.php:516
805
+ msgid ""
806
+ "Blog2Social automatically writes this information into the Open Graph (OG) "
807
+ "tags as the image, title and description of your WordPress post."
808
+ msgstr ""
809
+
810
+ #: views/b2s/html/footer.php:542
811
+ msgid ""
812
+ "Blog2Social automatically writes this information into the Twitter Card tags "
813
+ "as the image, title and description of your WordPress post."
814
+ msgstr ""
815
+
816
  #: views/b2s/html/sidebar.php:152
817
  msgid "Blog2Social Blog News"
818
  msgstr ""
833
  "higher, or ask your server administrator to do it for you."
834
  msgstr ""
835
 
836
+ #: views/b2s/html/header.php:125
837
  msgid ""
838
  "Blog2Social has detected another plugin that is setting Social Meta tags for "
839
  "your blog posts. To ensure that your Social Meta tags are set correctly for "
841
  "Facebook Open Graph and Twitter Card Tags settings in your other plugins."
842
  msgstr ""
843
 
844
+ #: views/b2s/html/header.php:520
845
  msgid "Blog2Social is a service of Adenion GmbH"
846
  msgstr ""
847
 
849
  msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
850
  msgstr ""
851
 
852
+ #: views/b2s/html/header.php:309 views/b2s/html/header.php:328
853
  msgid ""
854
  "Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
855
  "autopilot, automatically schedule your social media posts with the Best Time "
906
  "location you want to share your content on."
907
  msgstr ""
908
 
 
 
 
 
 
 
 
 
 
 
 
 
909
  #. Author of the plugin
910
  msgid "Blog2Social, Adenion"
911
  msgstr ""
968
  "post format. "
969
  msgstr ""
970
 
971
+ #: views/b2s/html/header.php:395
972
  #, php-format
973
  msgid ""
974
  "By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
991
  msgid "Call-to-Action"
992
  msgstr ""
993
 
994
+ #: includes/Tools.php:507
995
  msgid "Canada"
996
  msgstr ""
997
 
1040
  msgid "Change image"
1041
  msgstr ""
1042
 
1043
+ #: views/b2s/html/footer.php:597
1044
  msgid "Change image, title and description for your post on this network"
1045
  msgstr ""
1046
 
1080
  msgid "Chart"
1081
  msgstr ""
1082
 
1083
+ #: views/b2s/html/header.php:286
1084
  msgid ""
1085
  "Check out Blog2Social Premium with more awesome features for scheduling and "
1086
  "sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
1100
  msgid "Check, edit or define your social media time settings"
1101
  msgstr ""
1102
 
1103
+ #: includes/Tools.php:531
1104
  msgid "Chile"
1105
  msgstr ""
1106
 
1150
  msgid "clock"
1151
  msgstr ""
1152
 
1153
+ #: includes/Tools.php:532
1154
  msgid "Colombia"
1155
  msgstr ""
1156
 
1305
  msgid "Could not hide notice. Please refresh the page and retry."
1306
  msgstr ""
1307
 
1308
+ #: views/b2s/html/header.php:171
1309
  msgid "Could not save draft"
1310
  msgstr ""
1311
 
1359
  msgid "Create your support account to ask questions and get help"
1360
  msgstr ""
1361
 
1362
+ #: views/b2s/html/header.php:593 views/b2s/html/header.php:653
1363
  msgid ""
1364
  "Creating social media posts from other sources, such as text, images, videos,"
1365
  " and links to add more content variety and manage all your social media "
1419
  msgid "Customizing Social Media Posts"
1420
  msgstr ""
1421
 
1422
+ #: includes/Tools.php:504
1423
  msgid "Czechoslovakia"
1424
  msgstr ""
1425
 
1596
  msgid "Delete text"
1597
  msgstr ""
1598
 
1599
+ #: includes/Tools.php:520
1600
  msgid "Denmark"
1601
  msgstr ""
1602
 
1603
  #: includes/B2S/Settings/Item.php:183 includes/B2S/Settings/Item.php:232
1604
+ #: views/b2s/html/footer.php:514 views/b2s/html/footer.php:540
1605
  msgid "Description"
1606
  msgstr ""
1607
 
 
 
 
 
1608
  #: includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:498
1609
  #: includes/B2S/Post/Item.php:520 includes/B2S/Post/Item.php:617
1610
  msgid "Details"
1618
  msgid "Did you miss something?"
1619
  msgstr ""
1620
 
1621
+ #: views/b2s/html/header.php:333
1622
  msgid "Did you miss something? Tell us!"
1623
  msgstr ""
1624
 
1625
+ #: views/b2s/html/header.php:581
1626
  msgid ""
1627
  "Did you try all options on how to organize your social media scheduling and "
1628
  "sharing tasks even more easily and automatically with Blog2Social Premium, "
1680
  msgstr ""
1681
 
1682
  #: views/b2s/network.php:398 views/b2s/ship.php:652
1683
+ #: views/b2s/html/header.php:381 views/prg/html/form.php:141
1684
  #: views/prg/html/form.php:143 views/prg/html/form.php:218
1685
  #: views/prg/html/form.php:220
1686
  msgid "E-Mail"
1853
  msgid "Failed to save"
1854
  msgstr ""
1855
 
1856
+ #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:482
1857
  msgid "FAQ"
1858
  msgstr ""
1859
 
1879
  "Filter Posts (Only posts that meet the following criteria will be autoposted)"
1880
  msgstr ""
1881
 
1882
+ #: includes/Tools.php:522
1883
  msgid "Finland"
1884
  msgstr ""
1885
 
1886
+ #: views/b2s/html/header.php:385 views/prg/html/form.php:91
1887
  #: views/prg/html/form.php:100 views/prg/html/form.php:168
1888
  #: views/prg/html/form.php:177
1889
  msgid "First Name"
1893
  msgid "First, connect or select network before posting"
1894
  msgstr ""
1895
 
1896
+ #: includes/Tools.php:553
1897
  msgid "Flags"
1898
  msgstr ""
1899
 
1901
  msgid "Follow us"
1902
  msgstr ""
1903
 
1904
+ #: includes/Tools.php:548
1905
  msgid "Food & Drink"
1906
  msgstr ""
1907
 
1930
  "your preferred custom post format."
1931
  msgstr ""
1932
 
1933
+ #: views/b2s/html/footer.php:530
1934
+ #, php-format
1935
+ msgid ""
1936
+ "For more information on how to set meta tags correctly, you can take a look "
1937
+ "into the <a target=\"_blank\" href=\"%s\">meta tag checklist</a>."
1938
+ msgstr ""
1939
+
1940
+ #: views/b2s/html/footer.php:556
1941
+ #, php-format
1942
+ msgid ""
1943
+ "For more information on how to set meta tags correctly, you can take a look "
1944
+ "into the <a target=\"_blank\" href=\"%s\">Twitter Card guide</a>."
1945
+ msgstr ""
1946
+
1947
+ #: includes/B2S/Ship/Save.php:443
1948
  msgid ""
1949
  "For sharing your posts on Google+ you can now use Google+ Instant Sharing"
1950
  msgstr ""
1951
 
1952
+ #: includes/B2S/Ship/Save.php:435
1953
  msgid ""
1954
  "For sharing your posts on personal Facebook Profiles you can use Facebook "
1955
  "Instant Sharing"
1976
  msgid "Frame colour:"
1977
  msgstr ""
1978
 
1979
+ #: includes/Tools.php:517
1980
  msgid "France"
1981
  msgstr ""
1982
 
2004
  msgid "German"
2005
  msgstr ""
2006
 
2007
+ #: includes/Tools.php:519
2008
  msgid "Germany"
2009
  msgstr ""
2010
 
2011
+ #: views/b2s/html/header.php:672
2012
  msgid "Get all Premium benefits starting from just $7 per month."
2013
  msgstr ""
2014
 
2016
  msgid "Get more information about the benefits of Blog2Social Premium"
2017
  msgstr ""
2018
 
 
 
 
 
 
 
 
2019
  #: views/b2s/curation.php:293
2020
  #, php-format
2021
  msgid ""
2028
  msgid "Get Social Media News"
2029
  msgstr ""
2030
 
2031
+ #: views/b2s/html/header.php:407
2032
  msgid "Get Started"
2033
  msgstr ""
2034
 
2080
  "Grab more attention for your content with photos, videos, or infographics."
2081
  msgstr ""
2082
 
2083
+ #: includes/Tools.php:508
2084
  msgid "Great Britain"
2085
  msgstr ""
2086
 
2087
+ #: includes/Tools.php:498
2088
  msgid "Greece"
2089
  msgstr ""
2090
 
2130
  msgid "Here's how to start tracking your social media posts:"
2131
  msgstr ""
2132
 
2133
+ #: views/b2s/html/header.php:260
2134
  #, php-format
2135
  msgid ""
2136
  "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
2146
  msgid "hide calendar"
2147
  msgstr ""
2148
 
2149
+ #: views/b2s/html/header.php:683
2150
  msgid "Hide this notification."
2151
  msgstr ""
2152
 
2158
  msgid "How to check the Social Media Metrics?"
2159
  msgstr ""
2160
 
2161
+ #: views/b2s/html/header.php:109
2162
+ msgid "How to use plugin settings for meta tags"
2163
+ msgstr ""
2164
+
2165
  #: views/b2s/support.php:135
2166
  msgid "How to use the Troubleshooting tool"
2167
  msgstr ""
2171
  msgid "https://www.blog2social.com"
2172
  msgstr ""
2173
 
2174
+ #: includes/Tools.php:523
2175
  msgid "Hungary"
2176
  msgstr ""
2177
 
2180
  msgid "I agree to the <a href=\"%s\" target=\"_blank\">community rules</a>"
2181
  msgstr ""
2182
 
2183
+ #: views/b2s/html/header.php:521
2184
  msgid "I agree to the Adenion Privacy Policy"
2185
  msgstr ""
2186
 
2187
+ #: views/b2s/html/header.php:270
2188
  msgid "I already did it"
2189
  msgstr ""
2190
 
2191
+ #: views/b2s/html/header.php:680
2192
  msgid "I need advice on finding the right license"
2193
  msgstr ""
2194
 
2195
+ #: views/b2s/html/header.php:613
2196
  msgid "I need advice on finding the right license."
2197
  msgstr ""
2198
 
2199
+ #: views/b2s/html/header.php:351
2200
  msgid "I need advice on the right license."
2201
  msgstr ""
2202
 
2203
+ #: views/b2s/html/header.php:313 views/b2s/html/header.php:332
2204
  msgid "I need some more time to decide"
2205
  msgstr ""
2206
 
2207
+ #: views/b2s/html/header.php:610
2208
  msgid "I would like to continue with my trial."
2209
  msgstr ""
2210
 
2222
  "selected Twitter accounts."
2223
  msgstr ""
2224
 
2225
+ #: views/b2s/html/footer.php:524
2226
+ msgid ""
2227
+ "If this post has been previously shared or scheduled, your current changes "
2228
+ "will also affect the appearance of previously shared or scheduled posts, as "
2229
+ "the networks will always pull the latest information from the open graph "
2230
+ "meta tags and automatically update any existing posts."
2231
+ msgstr ""
2232
+
2233
+ #: views/b2s/html/footer.php:550
2234
+ msgid ""
2235
+ "If this post was previously shared or scheduled, your current changes will "
2236
+ "also affect the look of previously shared or scheduled posts, as Twitter "
2237
+ "will always pull the most up-to-date information from the Twitter Card tags. "
2238
+ "If this post has already been shared, it may take up to 7 days for Twitter "
2239
+ "to update your current changes."
2240
+ msgstr ""
2241
+
2242
  #: includes/Notice.php:18
2243
  msgid ""
2244
  "If you like Blog2Social, please give us a 5 star rating. If there is "
2253
  "receive help from our committed support team."
2254
  msgstr ""
2255
 
2256
+ #: views/b2s/autopost.php:148
2257
+ msgid ""
2258
+ "If you like to share imported (imported RSS feeds or posts created/ imported "
2259
+ "with another plugin) posts automatically, you can use the following "
2260
+ "checklists where you get all information on the different setting panels for "
2261
+ "the Auto-Poster for imported posts:"
2262
+ msgstr ""
2263
+
2264
+ #: views/b2s/autopost.php:116
2265
+ msgid ""
2266
+ "If you like to share your WordPress content (blogposts, pages, and products) "
2267
+ "automatically, you can use the following checklists where you get all "
2268
+ "information on the different setting panels for the Auto-Poster for "
2269
+ "WordPress content:"
2270
+ msgstr ""
2271
+
2272
+ #: views/b2s/html/footer.php:521
2273
+ #, php-format
2274
+ msgid ""
2275
+ "If you use other plugins for setting meta tags, such as Yoast SEO, the tags "
2276
+ "you customized with Blog2Social will be overwritten by the other plugins. To "
2277
+ "allow Blog2Social to apply and share your changes, please make sure you have "
2278
+ "<a target=\"_blank\" href=\"%s\">activated meta tag settings for Blog2Social "
2279
+ "only</a> and disable all meta tag settings in your other plugins."
2280
+ msgstr ""
2281
+
2282
+ #: views/b2s/html/footer.php:547
2283
+ #, php-format
2284
+ msgid ""
2285
+ "If you use other plugins for setting Twitter Cards, such as Yoast SEO, the "
2286
+ "tags you customized with Blog2Social will be overwritten by the other "
2287
+ "plugins. To allow Blog2Social to apply your changes, please make sure you "
2288
+ "have <a target=\"_blank\" href=\"%s\">activated Twitter Card settings for "
2289
+ "Blog2Social only</a> and disable all Twitter Card settings in your other "
2290
+ "plugins."
2291
+ msgstr ""
2292
+
2293
  #: views/b2s/ship.php:384
2294
  msgid "Ignore & share"
2295
  msgstr ""
2296
 
2297
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
2298
+ #: views/b2s/html/footer.php:512 views/b2s/html/footer.php:538
2299
  msgid "Image"
2300
  msgstr ""
2301
 
 
 
 
 
2302
  #: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
2303
  #: views/b2s/repost.php:59 views/b2s/repost.php:95
2304
  #: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
2346
  msgid "immediately after publishing"
2347
  msgstr ""
2348
 
2349
+ #: views/b2s/html/footer.php:484
2350
+ msgid "Important information about editing the meta tags"
2351
+ msgstr ""
2352
+
2353
+ #: views/b2s/autopost.php:145
2354
+ msgid "Important information about the Auto-Poster settings for imported posts"
2355
+ msgstr ""
2356
+
2357
+ #: views/b2s/autopost.php:113
2358
+ msgid ""
2359
+ "Important information about the Auto-Poster settings for WordPress content"
2360
+ msgstr ""
2361
+
2362
  #: views/b2s/metrics.php:209
2363
  msgid "Imported posts"
2364
  msgstr ""
2407
  msgid "include posts with images only"
2408
  msgstr ""
2409
 
2410
+ #: includes/Tools.php:499
2411
  msgid "India"
2412
  msgstr ""
2413
 
2414
+ #: includes/Tools.php:505
2415
  msgid "Indonesia"
2416
  msgstr ""
2417
 
2418
  #: includes/Loader.php:917 includes/B2S/PostBox.php:165
2419
  #: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
 
2420
  #: views/b2s/metrics.php:70 views/b2s/network.php:49 views/b2s/ship.php:81
2421
  #: views/b2s/ship.php:183 views/b2s/ship.php:275
2422
  #: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
2476
  msgid "Instant Sharing"
2477
  msgstr ""
2478
 
2479
+ #: views/b2s/html/header.php:669
2480
  #, php-format
2481
  msgid ""
2482
  "Interested in reading more reviews? <a href=\"%s\" target=\"_blank\">Check "
2495
  msgid "Invalid email address"
2496
  msgstr ""
2497
 
2498
+ #: includes/Tools.php:501
2499
  msgid "Ireland"
2500
  msgstr ""
2501
 
2503
  msgid "is currently being processed by the network"
2504
  msgstr ""
2505
 
2506
+ #: includes/Tools.php:537
2507
  msgid "is determined automatically"
2508
  msgstr ""
2509
 
2512
  msgid "is waiting to shared by %s"
2513
  msgstr ""
2514
 
2515
+ #: includes/Tools.php:502
2516
  msgid "Italy"
2517
  msgstr ""
2518
 
2519
+ #: includes/Tools.php:524
2520
  msgid "Japan"
2521
  msgstr ""
2522
 
2523
+ #: views/b2s/html/header.php:667
2524
  msgid "jerryj1 per WordPress"
2525
  msgstr ""
2526
 
2532
  msgid "Jobs & Projects"
2533
  msgstr ""
2534
 
2535
+ #: views/b2s/html/header.php:344
2536
  msgid ""
2537
  "Keep your current settings and access to more automated scheduling and "
2538
  "sharing options and upgrade to Blog2Social Premium."
2558
  msgid "Keywords: The tags you have set in your post."
2559
  msgstr ""
2560
 
2561
+ #: includes/Tools.php:527
2562
  msgid "Korea"
2563
  msgstr ""
2564
 
2571
  msgid "last modified by %s"
2572
  msgstr ""
2573
 
2574
+ #: views/b2s/html/header.php:389 views/prg/html/form.php:92
2575
  #: views/prg/html/form.php:103 views/prg/html/form.php:169
2576
  #: views/prg/html/form.php:180
2577
  msgid "Last Name"
2599
  msgid "latest share by %s"
2600
  msgstr ""
2601
 
2602
+ #: includes/B2S/Ship/Save.php:435
2603
  msgid "Learn how it works"
2604
  msgstr ""
2605
 
2642
  msgid "Legend"
2643
  msgstr ""
2644
 
2645
+ #: includes/Tools.php:483 views/b2s/html/sidebar.php:32
2646
  #: views/b2s/html/sidebar.ship.php:29
2647
  msgid "License"
2648
  msgstr ""
2766
  msgid "Meta Tags Settings for Posts and Pages"
2767
  msgstr ""
2768
 
2769
+ #: includes/Tools.php:529
2770
  msgid "Mexico"
2771
  msgstr ""
2772
 
2910
  msgid "Needed"
2911
  msgstr ""
2912
 
2913
+ #: includes/Tools.php:510
2914
  msgid "Netherlands"
2915
  msgstr ""
2916
 
2973
  msgid "new posts"
2974
  msgstr ""
2975
 
2976
+ #: includes/Tools.php:521
2977
  msgid "New Zealand"
2978
  msgstr ""
2979
 
3002
  "account."
3003
  msgstr ""
3004
 
3005
+ #: views/b2s/html/header.php:403
3006
  msgid "No credit card required"
3007
  msgstr ""
3008
 
3009
+ #: includes/Tools.php:554
3010
  msgid "No emojis found"
3011
  msgstr ""
3012
 
3018
  msgid "No link preview available. Please check your link."
3019
  msgstr ""
3020
 
3021
+ #: views/b2s/html/header.php:238
3022
  msgid "No posts found. Please try again with different filter options."
3023
  msgstr ""
3024
 
3030
  msgid "No User found"
3031
  msgstr ""
3032
 
3033
+ #: views/b2s/html/header.php:267
3034
  msgid "Nope, maybe later"
3035
  msgstr ""
3036
 
3037
+ #: includes/Tools.php:512
3038
  msgid "Norway"
3039
  msgstr ""
3040
 
3080
  msgid "Number of repeats"
3081
  msgstr ""
3082
 
3083
+ #: includes/Tools.php:551
3084
  msgid "Objects"
3085
  msgstr ""
3086
 
3100
  msgid "OG Meta title"
3101
  msgstr ""
3102
 
3103
+ #: views/b2s/html/header.php:490
3104
  msgid "OK"
3105
  msgstr ""
3106
 
3108
  msgid "Ok, I want to get started!"
3109
  msgstr ""
3110
 
3111
+ #: views/b2s/html/header.php:264
3112
  msgid "Ok, you deserve it"
3113
  msgstr ""
3114
 
3155
  #: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
3156
  #: views/b2s/html/footer.php:313 views/b2s/html/footer.php:368
3157
  #: views/b2s/html/footer.php:407 views/b2s/html/footer.php:465
3158
+ #: views/b2s/html/footer.php:581
3159
  #, php-format
3160
  msgid ""
3161
  "or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
3197
  msgid "Personal Time Zone"
3198
  msgstr ""
3199
 
3200
+ #: includes/Tools.php:534
3201
  msgid "Philippines"
3202
  msgstr ""
3203
 
3262
  "accounts or multiple duplicate updates on one account."
3263
  msgstr ""
3264
 
3265
+ #: views/b2s/autopost.php:126 views/b2s/autopost.php:158
3266
  msgid ""
3267
  "Please make sure that each WordPress user or author whose posts should be "
3268
  "auto-posted"
3276
  "accounts."
3277
  msgstr ""
3278
 
3279
+ #: views/b2s/html/header.php:111
3280
+ msgid ""
3281
+ "Please make sure that you only use one plugin for setting meta tags so that "
3282
+ "the networks can display the link preview of your post correctly."
3283
+ msgstr ""
3284
+
3285
  #: includes/Loader.php:848
3286
  msgid ""
3287
  "Please make sure that your post, page or custom post type is published or "
3313
  "deactivated to ensure a stable connection to Blog2Social."
3314
  msgstr ""
3315
 
3316
+ #: views/b2s/autopost.php:135 views/b2s/autopost.php:167
3317
+ msgid ""
3318
+ "Please make sure you activate and define the preferred settings panel for "
3319
+ "each user."
3320
+ msgstr ""
3321
+
3322
  #: views/prg/ship.php:87
3323
  msgid "Please Note"
3324
  msgstr ""
3325
 
3326
+ #: views/b2s/ship.php:796 views/b2s/html/footer.php:519
3327
+ #: views/b2s/html/footer.php:545
3328
  msgid "Please note:"
3329
  msgstr ""
3330
 
3342
  "other content here:"
3343
  msgstr ""
3344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3345
  #: views/b2s/network.php:678 views/b2s/ship.php:734
3346
  msgid ""
3347
  "Please note: In order to connect your Instagram account to Blog2Social, "
3390
  "guide</a>."
3391
  msgstr ""
3392
 
3393
+ #: includes/B2S/Ship/Save.php:448
3394
  msgid ""
3395
  "Please note: You post has to be marked as public to be posted in a group."
3396
  msgstr ""
3405
  "the new XING."
3406
  msgstr ""
3407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3408
  #: views/b2s/network.php:199
3409
  msgid "Please re-authorize your account with Blog2Social and try again"
3410
  msgstr ""
3411
 
3412
+ #: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:482
3413
  msgid "Please see"
3414
  msgstr ""
3415
 
3429
  msgid "Please select your correct server location and connect again."
3430
  msgstr ""
3431
 
3432
+ #: includes/B2S/Ship/Save.php:453
3433
  msgid "Please share your post now"
3434
  msgstr ""
3435
 
3446
  msgid "Plugin Warnings:"
3447
  msgstr ""
3448
 
3449
+ #: includes/Tools.php:516
3450
  msgid "Poland"
3451
  msgstr ""
3452
 
3453
+ #: includes/Tools.php:511 includes/Tools.php:525
3454
  msgid "Portugal"
3455
  msgstr ""
3456
 
3488
  msgid "Post Interactions"
3489
  msgstr ""
3490
 
3491
+ #: views/b2s/html/header.php:153
3492
  msgid "Post is published successfully on your blog!"
3493
  msgstr ""
3494
 
3512
  #: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
3513
  #: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
3514
  #: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
3515
+ #: views/b2s/html/footer.php:452 views/b2s/html/footer.php:567
3516
+ #: views/b2s/html/header.php:375
3517
  msgid "Post on pages and groups"
3518
  msgstr ""
3519
 
3525
  msgid "Post Types"
3526
  msgstr ""
3527
 
3528
+ #: views/b2s/html/header.php:151
3529
  msgid "Post was scheduled successfully on your blog!"
3530
  msgstr ""
3531
 
3651
 
3652
  #: views/b2s/curation.php:137 views/b2s/post.calendar.php:50
3653
  #: views/b2s/ship.php:18 views/b2s/ship.php:835 includes/B2S/Post/Filter.php:59
3654
+ #: includes/B2S/Post/Item.php:393 includes/B2S/Ship/Save.php:461
3655
  #: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
3656
  #: views/b2s/widgets/calendar.php:44
3657
  msgid "published"
3677
  msgid "RATE BLOG2SOCIAL"
3678
  msgstr ""
3679
 
3680
+ #: views/b2s/html/header.php:259
3681
  msgid "RATE IT!"
3682
  msgstr ""
3683
 
3725
  msgid "Rebrandly"
3726
  msgstr ""
3727
 
3728
+ #: includes/Tools.php:545
3729
  msgid "Recently Used"
3730
  msgstr ""
3731
 
3767
  #: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
3768
  #: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
3769
  #: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
3770
+ #: views/b2s/html/footer.php:461 views/b2s/html/footer.php:576
3771
  msgid ""
3772
  "Reporting & calendar: keep track of your published and scheduled social "
3773
  "media posts"
3779
  "media posts"
3780
  msgstr ""
3781
 
3782
+ #: views/b2s/html/header.php:378
3783
  msgid "Reporting with links to all published social media posts"
3784
  msgstr ""
3785
 
3818
  msgstr ""
3819
 
3820
  #: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
3821
+ #: includes/B2S/Ship/Save.php:471
3822
  msgid "Retweet"
3823
  msgstr ""
3824
 
3830
  "WordPress."
3831
  msgstr ""
3832
 
3833
+ #: includes/Tools.php:518
3834
  msgid "Romania"
3835
  msgstr ""
3836
 
3838
  msgid "RSS import & auto-post"
3839
  msgstr ""
3840
 
3841
+ #: includes/Tools.php:509
3842
  msgid "Russia"
3843
  msgstr ""
3844
 
3863
  msgid "save"
3864
  msgstr ""
3865
 
3866
+ #: views/b2s/html/header.php:662
3867
  msgid "Save a lot of time for your social media tasks!"
3868
  msgstr ""
3869
 
3898
  msgid "saved"
3899
  msgstr ""
3900
 
3901
+ #: views/b2s/html/header.php:165
3902
  msgid "Saved as draft"
3903
  msgstr ""
3904
 
3912
  #: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
3913
  #: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
3914
  #: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
3915
+ #: views/b2s/html/footer.php:458 views/b2s/html/footer.php:573
3916
  msgid "Schedule and re-share old posts"
3917
  msgstr ""
3918
 
3957
  #: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
3958
  #: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
3959
  #: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
3960
+ #: views/b2s/html/footer.php:457 views/b2s/html/footer.php:572
3961
  msgid "Schedule your post for one time, multiple times or recurrently"
3962
  msgstr ""
3963
 
3967
  #: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
3968
  #: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
3969
  #: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
3970
+ #: views/b2s/html/footer.php:455 views/b2s/html/footer.php:570
3971
  msgid "Schedule your posts at the best times on each network"
3972
  msgstr ""
3973
 
3993
  msgid "scheduled by %s"
3994
  msgstr ""
3995
 
3996
+ #: includes/B2S/Ship/Save.php:472
3997
  msgid "scheduled on"
3998
  msgstr ""
3999
 
4027
  msgid "scroll to top"
4028
  msgstr ""
4029
 
4030
+ #: includes/Tools.php:544
4031
  msgid "Search"
4032
  msgstr ""
4033
 
4095
  #: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
4096
  #: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
4097
  #: views/b2s/html/footer.php:402 views/b2s/html/footer.php:460
4098
+ #: views/b2s/html/footer.php:575
4099
  msgid "Select individual images per post"
4100
  msgstr ""
4101
 
4112
  #: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
4113
  #: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
4114
  #: views/b2s/html/footer.php:401 views/b2s/html/footer.php:459
4115
+ #: views/b2s/html/footer.php:574
4116
  msgid "Select link format or image format for your posts"
4117
  msgstr ""
4118
 
4218
  msgid "Share"
4219
  msgstr ""
4220
 
4221
+ #: includes/B2S/Post/Item.php:923 includes/B2S/Ship/Save.php:452
4222
  msgid "share"
4223
  msgstr ""
4224
 
4272
  msgid "share oldest posts first"
4273
  msgstr ""
4274
 
4275
+ #: views/b2s/html/header.php:376
4276
  msgid "Share on multiple accounts per network"
4277
  msgstr ""
4278
 
4282
  #: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
4283
  #: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
4284
  #: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
4285
+ #: views/b2s/html/footer.php:453 views/b2s/html/footer.php:568
4286
  msgid "Share on multiple profiles, pages and groups"
4287
  msgstr ""
4288
 
4442
  msgid "Sign in to Pinterest"
4443
  msgstr ""
4444
 
4445
+ #: includes/Tools.php:530
 
 
 
 
 
 
 
 
 
 
 
 
4446
  msgid "Slovakia"
4447
  msgstr ""
4448
 
4462
  msgid "Smart: 3 (per user)"
4463
  msgstr ""
4464
 
4465
+ #: includes/Tools.php:546
4466
  msgid "Smileys & People"
4467
  msgstr ""
4468
 
4474
  msgid "Social Accounts"
4475
  msgstr ""
4476
 
4477
+ #: views/b2s/html/header.php:374
4478
  msgid "Social Media Auto-Posting"
4479
  msgstr ""
4480
 
4488
  msgstr ""
4489
 
4490
  #: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
4491
+ #: views/b2s/metrics.php:233 views/b2s/html/header.php:536
4492
  #: views/b2s/html/sidebar.php:102
4493
  msgid "Social Media Metrics"
4494
  msgstr ""
4518
  msgid "Social Media Scheduling & Sharing"
4519
  msgstr ""
4520
 
4521
+ #: views/b2s/html/header.php:588 views/b2s/html/header.php:648
4522
  msgid ""
4523
  "Social media templates to turn your social media posts automatically into "
4524
  "tailored posts for each network and community by customizing your post "
4552
  "following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
4553
  msgstr ""
4554
 
4555
+ #: views/b2s/html/header.php:481
4556
  msgid "Something went wrong on our side. Please contact support!"
4557
  msgstr ""
4558
 
4564
  msgid "Sort by network"
4565
  msgstr ""
4566
 
4567
+ #: includes/Tools.php:533
4568
  msgid "South Africa"
4569
  msgstr ""
4570
 
4571
+ #: includes/Tools.php:506
4572
  msgid "Spain"
4573
  msgstr ""
4574
 
4585
  msgid "Start your 30-day free Premium trial"
4586
  msgstr ""
4587
 
4588
+ #: views/b2s/html/header.php:284
4589
  msgid "Start your free 30-day-Premium-trial"
4590
  msgstr ""
4591
 
4592
+ #: views/b2s/html/header.php:547
4593
  msgid "Start your free trial for Social Media Metrics"
4594
  msgstr ""
4595
 
4650
  msgid "Supported HTML tags"
4651
  msgstr ""
4652
 
4653
+ #: includes/Tools.php:528
4654
  msgid "Sweden"
4655
  msgstr ""
4656
 
4657
+ #: includes/Tools.php:503
4658
  msgid "Switzerland"
4659
  msgstr ""
4660
 
4661
+ #: includes/Tools.php:552
4662
  msgid "Symbols"
4663
  msgstr ""
4664
 
4666
  msgid "System"
4667
  msgstr ""
4668
 
4669
+ #: views/b2s/html/header.php:587 views/b2s/html/header.php:647
4670
  msgid ""
4671
  "Tailoring options like individual images for each post, different post "
4672
  "formats (link and image post), emojis, hashtags, handles and GIFs for your "
4681
  msgid "Terms"
4682
  msgstr ""
4683
 
4684
+ #: views/b2s/html/header.php:365
4685
  msgid "Test Blog2Social PREMIUM 30 days for free"
4686
  msgstr ""
4687
 
4704
  "individual hashtags, @mentions, or emojis."
4705
  msgstr ""
4706
 
4707
+ #: views/b2s/html/header.php:204
4708
  msgid "Thank you! Your feedback has been received."
4709
  msgstr ""
4710
 
4712
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
4713
  msgstr ""
4714
 
4715
+ #: views/b2s/html/header.php:586 views/b2s/html/header.php:646
4716
  msgid ""
4717
  "The Auto-Poster, to automatically share your posts immediately or at a later "
4718
  "time."
4737
  "Facebook (page and group) and on Twitter."
4738
  msgstr ""
4739
 
4740
+ #: views/b2s/html/header.php:594 views/b2s/html/header.php:654
4741
  msgid ""
4742
  "The Best Time Manager to reach your followers when they are most active on "
4743
  "each social network and increase your reach."
4810
  "under the menu item \"Social Media Metrics\"."
4811
  msgstr ""
4812
 
4813
+ #: views/b2s/html/header.php:371
4814
  msgid ""
4815
  "The free trial can not be started. This blog has been already registered for "
4816
  "the free trial."
4835
  msgid "The images file types .jpg and .png are allowed. Please try another."
4836
  msgstr ""
4837
 
4838
+ #: views/b2s/html/header.php:433
4839
  msgid "The license has been successfully activated."
4840
  msgstr ""
4841
 
4938
  "information in the <a href=\"%s\" target=\"_blank\">Instagram guide</a>."
4939
  msgstr ""
4940
 
4941
+ #: views/b2s/html/header.php:243
4942
  msgid ""
4943
  "The posts you tried to add are already in your sharing queue. If you want to "
4944
  "re-schedule them, please delete the posts before adding them again."
4970
  "admin."
4971
  msgstr ""
4972
 
4973
+ #: views/b2s/html/header.php:595 views/b2s/html/header.php:655
4974
  msgid ""
4975
  "The social media calendar to keep track of your scheduled social media posts."
4976
  " Add social media posts, edit or change the date per drag & drop."
4984
  msgid "The tags you have set in your post."
4985
  msgstr ""
4986
 
4987
+ #: views/b2s/html/header.php:596 views/b2s/html/header.php:656
4988
  msgid ""
4989
  "The team and user management settings to organize multiple users and "
4990
  "licenses and to collaborate on the social media calendar, and much more."
5013
  "Wordpress."
5014
  msgstr ""
5015
 
5016
+ #: views/b2s/html/footer.php:535
5017
+ msgid ""
5018
+ "The Twitter Cards define the look of your preview of your link post on "
5019
+ "Twitter. By editing the Twitter Card tags you can change the following "
5020
+ "parameters to change the look:"
5021
+ msgstr ""
5022
+
5023
  #: views/b2s/network.php:163
5024
  msgid "The user to whom the connection is assigned still has scheduled posts."
5025
  msgstr ""
5036
  "another network collection."
5037
  msgstr ""
5038
 
 
 
 
 
5039
  #: views/b2s/ship.php:588
5040
  msgid ""
5041
  "There is already a saved draft for this WordPress post or page. If you save "
5060
  msgid "This connection has already been assigned to this user."
5061
  msgstr ""
5062
 
5063
+ #: views/b2s/html/header.php:132
5064
  msgid "This entry could not be removed. It's not yours!"
5065
  msgstr ""
5066
 
5067
+ #: views/b2s/html/header.php:137
5068
  msgid "This entry was removed successfully."
5069
  msgstr ""
5070
 
5080
  "edited by users with admin rights only."
5081
  msgstr ""
5082
 
5083
+ #: includes/B2S/Ship/Save.php:437 includes/B2S/Ship/Save.php:445
5084
  msgid "This is how it works:"
5085
  msgstr ""
5086
 
5092
  msgid "This post is blocked by %1"
5093
  msgstr ""
5094
 
5095
+ #: views/b2s/html/header.php:142
5096
  msgid "This post was edited successfully."
5097
  msgstr ""
5098
 
5163
 
5164
  #: views/b2s/ship.php:58 views/prg/ship.php:43 views/prg/ship.php:45
5165
  #: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
5166
+ #: includes/B2S/Settings/Item.php:231 views/b2s/html/footer.php:513
5167
+ #: views/b2s/html/footer.php:539 views/prg/html/form.php:26
5168
  #: views/prg/html/form.php:28
5169
  msgid "Title"
5170
  msgstr ""
5171
 
 
 
 
 
5172
  #: views/b2s/settings.php:118
5173
  msgid "Title: The title of your post."
5174
  msgstr ""
5205
  "href=\"%s\" target=\"_blank\">Info</a>)"
5206
  msgstr ""
5207
 
5208
+ #: views/b2s/html/header.php:602
5209
  msgid ""
5210
  "To keep all these benefits from all advanced features for automated "
5211
  "scheduling and sharing and to keep all your individual settings und "
5242
  msgid "Transfer Auto-Poster settings to other users (Business):"
5243
  msgstr ""
5244
 
5245
+ #: includes/Tools.php:550
5246
  msgid "Travel & Places"
5247
  msgstr ""
5248
 
5262
  msgid "Tuesday"
5263
  msgstr ""
5264
 
5265
+ #: includes/Tools.php:513
5266
  msgid "Turkey"
5267
  msgstr ""
5268
 
5304
  "again!"
5305
  msgstr ""
5306
 
5307
+ #: includes/Tools.php:500
5308
  msgid "United States of America"
5309
  msgstr ""
5310
 
5353
  msgid "Upgrade License"
5354
  msgstr ""
5355
 
5356
+ #: views/b2s/html/header.php:641
5357
  msgid "Upgrade now to keep all benefits of Blog2Social Premium:"
5358
  msgstr ""
5359
 
5379
  msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
5380
  msgstr ""
5381
 
5382
+ #: views/b2s/html/header.php:573 views/b2s/html/header.php:635
5383
+ #: views/b2s/html/header.php:677
5384
  msgid "Upgrade to Blog2Social Premium now"
5385
  msgstr ""
5386
 
5387
+ #: views/b2s/html/header.php:348 views/b2s/html/header.php:607
5388
  msgid "Upgrade to Blog2Social Premium now."
5389
  msgstr ""
5390
 
5411
  msgid "Upgrade to BUSINESS"
5412
  msgstr ""
5413
 
5414
+ #: views/b2s/html/header.php:312
5415
  msgid "Upgrade to PREMIUM"
5416
  msgstr ""
5417
 
5435
  #: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
5436
  #: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
5437
  #: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
5438
+ #: views/b2s/html/footer.php:463 views/b2s/html/footer.php:578
5439
  msgid "Upgrade to SMART and above"
5440
  msgstr ""
5441
 
5520
  msgid "View schedule posts"
5521
  msgstr ""
5522
 
5523
+ #: includes/B2S/Ship/Save.php:462
5524
  msgid "view social media post"
5525
  msgstr ""
5526
 
5545
  "authorization."
5546
  msgstr ""
5547
 
5548
+ #: views/b2s/metrics.php:221 views/b2s/html/header.php:550
5549
  msgid "We hope you enjoy analysing your posts!"
5550
  msgstr ""
5551
 
5552
+ #: views/b2s/html/header.php:325
5553
  msgid "We hope you liked Blog2Social Premium."
5554
  msgstr ""
5555
 
5557
  msgid "We never store your data from your social media profiles"
5558
  msgstr ""
5559
 
5560
+ #: views/b2s/html/header.php:506
5561
  msgid "We updated our Privacy Policy"
5562
  msgstr ""
5563
 
5590
  msgid "Welcome to the trial of the beta version \"Social Media Metrics\"!"
5591
  msgstr ""
5592
 
5593
+ #: views/b2s/html/footer.php:507
5594
+ msgid "What are meta tags?"
5595
+ msgstr ""
5596
+
5597
+ #: views/b2s/html/footer.php:533
5598
+ msgid "What are Twitter Cards?"
5599
+ msgstr ""
5600
+
5601
+ #: views/b2s/html/header.php:579
5602
  msgid "What do you like best of Blog2Social Premium?"
5603
  msgstr ""
5604
 
5674
  #: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
5675
  #: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
5676
  #: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
5677
+ #: views/b2s/html/footer.php:449 views/b2s/html/footer.php:564
5678
  msgid "With Blog2Social Premium you can:"
5679
  msgstr ""
5680
 
5681
+ #: views/b2s/html/header.php:638
5682
  msgid ""
5683
  "With Blog2Social Premium you have all the options you need to promote your "
5684
  "content on your social media channels successfully and time-savingly."
5764
  "."
5765
  msgstr ""
5766
 
5767
+ #: views/b2s/html/footer.php:509
5768
+ msgid ""
5769
+ "With the help of the meta tags you can decide, how the preview of your link "
5770
+ "post looks like on social media. You can edit the following fields to change "
5771
+ "the look:"
5772
+ msgstr ""
5773
+
5774
  #: views/b2s/metrics.php:273
5775
  msgid ""
5776
  "With this function, you can compare the social media metrics for a period "
5847
  msgid "Yes, I accept"
5848
  msgstr ""
5849
 
5850
+ #: views/b2s/html/header.php:290
5851
  msgid "Yes, I want to test Blog2Social Premium 30 days for free"
5852
  msgstr ""
5853
 
5854
+ #: views/b2s/html/header.php:331
5855
  msgid "Yes, I want to upgrade to Blog2Social Premium"
5856
  msgstr ""
5857
 
5858
+ #: views/b2s/html/footer.php:602
5859
  msgid ""
5860
  "You are currently sharing this post as image post. Changes to title and "
5861
  "description Meta Tag parameters will only be supported for link post formats."
5897
  "or network and save your new settings as default for future use."
5898
  msgstr ""
5899
 
5900
+ #: views/b2s/html/header.php:538 views/b2s/html/header.php:576
 
 
 
 
 
 
 
 
 
 
 
 
5901
  msgid ""
5902
  "You can now track the performance of your post directly in Blog2Social, and "
5903
  "you can test it exclusively and for free!"
5983
  "platforms in the <a href=\"%s\" target=\"_blank\">link shortener guide</a>."
5984
  msgstr ""
5985
 
5986
+ #: views/b2s/html/header.php:119
5987
  msgid ""
5988
  "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
5989
  "plugins active. To make sure that your Social Meta Tags are set correctly, "
5999
  msgid "You have already retweeted this post."
6000
  msgstr ""
6001
 
 
 
 
 
 
 
 
6002
  #: views/b2s/html/header.php:98
6003
  msgid "You have deleted all meta data for posts and pages successfully."
6004
  msgstr ""
6067
  msgid "You want to auto-post your blog post?"
6068
  msgstr ""
6069
 
6070
+ #: views/b2s/html/footer.php:563
6071
  msgid "You want to change the image, title and description for your post?"
6072
  msgstr ""
6073
 
6143
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
6144
  msgstr ""
6145
 
6146
+ #: views/b2s/html/header.php:113
6147
+ #, php-format
6148
+ msgid ""
6149
+ "You will find a checklist for setting Open Graph tags in the <a href=\"%s\" "
6150
+ "target=\"_blank\">Open Graph Tag guide</a>."
6151
+ msgstr ""
6152
+
6153
  #: views/b2s/settings.php:108
6154
  #, php-format
6155
  msgid ""
6190
  msgid "Your Activity"
6191
  msgstr ""
6192
 
6193
+ #: views/b2s/html/header.php:194
6194
  msgid "Your authorization could not be removed."
6195
  msgstr ""
6196
 
6197
+ #: views/b2s/html/header.php:199
6198
  msgid "Your authorization has been removed successfully."
6199
  msgstr ""
6200
 
6212
  "to reconnect your account.</a>"
6213
  msgstr ""
6214
 
6215
+ #: views/b2s/html/header.php:179
6216
  msgid "Your authorization was successful."
6217
  msgstr ""
6218
 
6231
  "queue."
6232
  msgstr ""
6233
 
6234
+ #: views/b2s/html/footer.php:605
6235
  #, php-format
6236
  msgid ""
6237
  "Your changes will have no effect on your social media posts on Facebook, if "
6239
  "Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
6240
  msgstr ""
6241
 
6242
+ #: views/b2s/html/footer.php:608
6243
  #, php-format
6244
  msgid ""
6245
  "Your changes will have no effect on your social media posts on Twitter, if "
6247
  "Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
6248
  msgstr ""
6249
 
6250
+ #: views/b2s/html/footer.php:553
6251
+ #, php-format
6252
+ msgid ""
6253
+ "Your changes will not affect your previously shared social media posts if "
6254
+ "you have manually disabled the meta tag options in your <a target=\"_blank\" "
6255
+ "href=\"%s\">Blog2Social settings</a>."
6256
+ msgstr ""
6257
+
6258
+ #: views/b2s/html/footer.php:527
6259
+ #, php-format
6260
+ msgid ""
6261
+ "Your changes will not be applied to your previously shared social media "
6262
+ "posts if you have manually disabled the meta tag options in your <a "
6263
+ "target=\"_blank\" href=\"%s\">Blog2Social settings</a>."
6264
+ msgstr ""
6265
+
6266
  #: views/b2s/post.php:22
6267
  msgid "Your complete social media management in one place"
6268
  msgstr ""
6284
  msgid "Your daily limit has been reached."
6285
  msgstr ""
6286
 
6287
+ #: views/b2s/html/header.php:449
6288
  msgid "Your entered License Key is invalid. Please contact support!"
6289
  msgstr ""
6290
 
6302
  "how to check and edit the Facebook page settings.</a>"
6303
  msgstr ""
6304
 
6305
+ #: views/b2s/html/header.php:209
6306
  msgid "Your feedback could not be delivered."
6307
  msgstr ""
6308
 
6309
+ #: views/b2s/html/header.php:302
6310
  msgid "Your free Blog2Social Premium trial version is activated for "
6311
  msgstr ""
6312
 
6313
+ #: views/b2s/html/header.php:343
6314
  msgid "Your free Premium trial ends soon. "
6315
  msgstr ""
6316
 
6317
+ #: views/b2s/html/header.php:569
6318
  #, php-format
6319
  msgid ""
6320
  "Your free trial of Blog2Social Premium expires in %d days. Don’t miss to "
6322
  "settings."
6323
  msgstr ""
6324
 
6325
+ #: views/b2s/html/header.php:324
6326
  msgid "Your free trial of Blog2Social PREMIUM has ended."
6327
  msgstr ""
6328
 
6329
+ #: views/b2s/html/header.php:631
6330
  msgid ""
6331
  "Your free trial of Blog2Social Premium has expired. We hope you explored and "
6332
  "enjoyed all the Premium options."
6336
  msgid "Your group can not be found by the network."
6337
  msgstr ""
6338
 
6339
+ #: views/b2s/html/header.php:465
6340
  msgid "Your license key has reached the maximum number of users."
6341
  msgstr ""
6342
 
6343
+ #: views/b2s/html/header.php:248
6344
  msgid ""
6345
  "Your limit for your quota of posts in your queue has been reached. Please "
6346
  "delete posts from your queue before you add more"
6371
  msgstr ""
6372
 
6373
  #: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:787
6374
+ #: includes/B2S/Ship/Save.php:486
6375
  #, php-format
6376
  msgid ""
6377
  "Your post could not be posted. More information in this <a href=\"%s\" "
6389
  "auto-post or schedule and customize your social media posts with Blog2Social."
6390
  msgstr ""
6391
 
6392
+ #: views/b2s/html/header.php:189
6393
  msgid "Your profile could not be saved."
6394
  msgstr ""
6395
 
6396
+ #: views/b2s/html/header.php:184
6397
  msgid "Your profile was saved successful."
6398
  msgstr ""
6399
 
6409
  "the \"+ Add more\" icon on top of the navigation bar."
6410
  msgstr ""
6411
 
6412
+ #: views/b2s/html/header.php:226
6413
  msgid ""
6414
  "Your settings could not be saved, because you have auto-posting enabled but "
6415
  "no social networks selected."
6416
  msgstr ""
6417
 
6418
+ #: views/b2s/html/header.php:221
6419
  msgid "Your settings could not be saved."
6420
  msgstr ""
6421
 
6422
+ #: views/b2s/html/header.php:216 views/b2s/html/header.php:231
6423
  msgid "Your settings were successfully saved."
6424
  msgstr ""
6425
 
readme.txt CHANGED
@@ -1,3 +1,796 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ===Blog2Social: Social Media Auto Post & Scheduler===
2
  Contributors: Blog2Social, pr-gateway
3
  Requires PHP: 5.5.3
@@ -391,4 +1184,5 @@ Usability Optimization
391
  = 6.1.0 =
392
  Usability Optimization, Rebrandly integration, url parameter settings
393
  = 6.0.0 =
 
394
  New Image Posts, Imgur, Animated Gifs and Emojis
1
+ <<<<<<< .mine
2
+ ===Blog2Social: Social Media Auto Post & Scheduler===
3
+ Contributors: Blog2Social, pr-gateway
4
+ Requires PHP: 5.5.3
5
+ 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, share text posts, share images, share video links, 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, instagram business, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, pinterest, re-post, scheduling plugin, social media, social media auto publish, social media button, social media manager, social media plugin, social media publishing, 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,instagram business, 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, Revive, Revive posts, Revive old posts, old posts, Reshare, Re-Share, automatically re-post, automatically reshare, auto repost, auto republish, recycle posts, bulk schedule, Google My Business, Google posts, imgur, vk, vkontakte, Vkontakte.ru, vk.com. Telegram, Telegram channels, Telegram groups, share multiple images, image gallery, blogger.com, ravelry, instapaper, Social Media Metrics, Twitter Threads
6
+ Donate link: https://paypal.me/adenion
7
+ Requires at least: 4.7.0
8
+ Tested up to: 5.9
9
+ Stable tag: 6.9.4
10
+ License: GPLv3
11
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
+
13
+ Autopost, schedule and share blog posts and contents on social media, pages & groups on Facebook, Twitter, LinkedIn, Instagram, XING etc.
14
+
15
+ == Description ==
16
+ **Social Media Auto-Posting and Scheduling Plugin for WordPress Sites and Blogs.**
17
+ Autopost, cross-promote, schedule and automatically share your blog posts to social networks such as **Facebook, Twitter, Google My Business, LinkedIn, XING, Instagram Business, Pinterest, Imgur, Flickr, Reddit, VK.com, Medium, Tumblr, Torial, Diigo, Bloglovin, Telegram, Blogger.com, Instapaper and Ravelry.**
18
+ Blog2Social automatically creates social media posts for your content and auto-posts at the best times for each network. Save time and pain of manually sharing and promoting your site on social media.
19
+
20
+ _Compatible with WooCommerce, Gutenberg Editor, Hummingbird, Bitly, Rebrand.ly, Sniply, WP Automatic Plugin, Page Builder & RSS Importer._
21
+
22
+ * Version 6.9.3: Multiple images on LinkedIn, Twitter thread support, and more
23
+
24
+ Download Blog2Social today to make your social media marketing for your WordPress site or blog easier than ever. Blog2Social is a freemium plugin, with a free comprehensive basic version and premium plans offering more advanced features. To ensure compliance with the high quality standards of the new networks’ API rules and community guidelines, some functions of the auto-poster are premium features and not part of the free version.
25
+ The Blog2Social free version offers you a wide range of features. ([See what’s included in the free version](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features")).
26
+ To benefit from all the advanced features for automatic sharing and scheduling your content on social media you can [start your free 30-day trial for Blog2SocialPremium Pro- today and upgrade any time.](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Free Blog2Social Premium Trial")
27
+
28
+ = Supported Networks = for cross-posting and auto posting
29
+ * **Facebook** - Post to your profile, page (Free), and in groups (Premium)
30
+ * **Twitter** - Post to your Twitter account
31
+ * **Google My Business** (Premium) - Post to your Business Listing on Google
32
+ * **LinkedIn** - Post to your profile (Free) or page (Premium)
33
+ * **XING** - Post to your profile (Free), page (Premium), and in groups (Premium)
34
+ * **Instagram** - Post to your Business Account (Premium)
35
+ * **Pinterest** - Post to all your different Pinboards (Free)
36
+ * **Imgur** - Post to your Imgur profile (Free)
37
+ * **Flickr** - Post to your Flickr profile (Free)
38
+ * **Reddit** - Post to your subreddits (Free)
39
+ * **VK.com** - post to your profile (Free), page (Premium) or in groups (Premium)
40
+ * **Medium** - post to your blog post with canonical-backlinks to your original post (Free)
41
+ * **Tumblr** - post to your blog post with canonical-backlinks to your original post (Free)
42
+ * **Torial** - post to your blog post with canonical-backlinks to your original post (Free)
43
+ * **Diigo** - post a bookmark to your account (Free)
44
+ * **Bloglovin** - post to your blog post with canonical-backlinks to your original post (Free)
45
+ * **Telegram** - post to your Telegram groups and Telegram channels (Business)
46
+ * **Blogger.com** - post to your blog post with canonical-backlinks to your original post (Premium)
47
+ * **Instapaper** - post to your Instapaper account (Premium)
48
+ * **Ravelry** - post to your Ravelry account (Premium)
49
+
50
+ = Benefits from using Blog2Social =
51
+
52
+ BLOG2SOCIAL FREE
53
+
54
+ * Share your posts and pages on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), VK (profile), Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo and Bloglovin at once.
55
+ * Customize your social media posts with unique personal comments, hashtags, handles, emojis, and select an image or animated GIF of your choice.
56
+ * You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
57
+ * Manage all users posts and pages and share them on your channels.
58
+ * Re-post old posts.
59
+ * Save your social media posts as drafts.
60
+ * Share links and posts from other sources (Content Curation).
61
+ * View all your social media posts in one single place.
62
+ * Automatically generate hashtags from the tags of your posts.
63
+ * Edit the meta tag information of your blog posts and pages.
64
+ * Use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share them whenever you want.
65
+
66
+ All these features are included in Blog2Social free. If you want to take your social media marketing to the next level with more advanced sharing and scheduling options for auto-posting and cross-promoting your content you can upgrade to Premium any time.
67
+ Try Blog2Social Premium with [free 30-day-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Try Blog2Social Premium for free") (without any obligations, no automatic subscription).
68
+
69
+
70
+ 10 REASONS FOR CHOOSING BLOG2SOCIAL PREMIUM
71
+
72
+ **#1 Easy Social Media Scheduling** – Auto-Post and Auto-Schedule your posts with a pre-defined best time schedule for each social network or define your own best times.
73
+
74
+ Blog2Social provides you with a **ready-to-use Best Time Manager** for the best times to post on each social network. If you know which times work best for you, then you can **define and save your own time settings.** Schedule your social media posts for **immediate sharing or choose a one-time or recurring schedule. Save evergreen content as a favorite** to easily find and re-share your most valuable content.
75
+
76
+
77
+ **#2 Cross-Posting and Cross-Promotion with Customized Social Media Posts** – Create unique social media posts for each social network and community.
78
+
79
+ Blog2Social automatically turns your posts into an adapted format for each social platform. You can optionally customize and tailor your social media posts with individual **comments, #hashtags, @handles, and emojis. Automatically generate Hashtags** from your WP tags. **Select or add individual images and animated GIFs** and choose between different **post formats (link post / image post)** to create more variations for your social media posts. Choose up to 4 images for one post and share an **image gallery** (Facebook pages & groups, Twitter). Customize post templates to save your individual layout setting as default and share your social media posts faster with individually tailored posts on each social network.
80
+
81
+ **#3 Social Media Calendar** – Organize your social media marketing
82
+
83
+ Edit, add or change scheduled posts per drag & drop in the built-in social media calendar. **Keep track of your shared posts and scheduling plan** and filter your posts per network. Posts from other users will be displayed in different colors.
84
+
85
+
86
+ **#4 Social Media Auto-Poster** – Switch your social media marketing on auto-pilot
87
+
88
+ Activate the autoposter to **automatically share your new and updated posts** on social media. No extra steps required!
89
+ **Transfer the autoposter settings** as an WordPress admin to other WordPress authors with the same Business license to share posts automatically on the assigned social media networks.
90
+
91
+ **#5 Content Curation** – Share and schedule third-party content
92
+
93
+ Share and schedule links and posts from any source to **automatically fill your social media feeds with a consistent content mix** of your own content and third-party content. Import content via RSS or share any URL-Link, or use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share or schedule them whenever you want.
94
+
95
+
96
+ **#6 Create Social Media Posts any source** – share updates, images, texts, links and video links from one central platform and schedule all your social media posts in one social media calendar.
97
+
98
+ Save valuable time by managing your complete **social media content right from your WordPress dashboard.**
99
+
100
+
101
+ **#7 Social-Media-Ready Blog Posts** – Blog2Social optimizes your social meta tags
102
+
103
+ Blog2Social automatically adds Open Graph and Twitter Card tags to your blog posts to **optimize the shareability of your blog post on social networks.** Edit these tags to your liking to adjust how your link preview looks on social media networks.
104
+
105
+
106
+ **#8 Tracking with URL parameters** – Monitor and measure your marketing success in Google Analytics
107
+
108
+ Add **UTM parameters** to URLs to enable **tracking of your social media campaigns via Google Analytics**. You can also add **other URL parameters**, for example, for Adobe Analytics or IBM Cognos Analytics.
109
+
110
+
111
+ **#9 Re-share and re-schedule old posts automatically** - Revive your posts
112
+
113
+ Keep your social media feed updated automatically with awesome content and save valuable time by reviving your evergreen content regularly. **Automate your resharing** process with Blog2Social, so you can use your time to create new content and interact with your community.
114
+
115
+
116
+ **#10 There is much more to discover** – Try Blog2Social to check out all the features
117
+
118
+ Use the **Bitly, Rebrandly or Sniply shortener** to track the performance of your links. Schedule **Retweets for Twitter.** Discover many more features:
119
+ **Download Blog2Social and [start your free 30-day-Premium-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Start your free Blog2Social Premium Trial")**
120
+
121
+
122
+ = Supported Languages =
123
+
124
+ The Blog2Social Plugin is available in the following language versions
125
+
126
+ * English
127
+ * German
128
+ * French
129
+ * Portuguese
130
+ * Russian
131
+ * Spanish
132
+ * Italian
133
+ * Swedish
134
+
135
+ **Contributors**
136
+
137
+ * Thanks to [Almaz](https://optimay.ru/ "Almaz") for translating this plugin into Russian
138
+ * Thanks to [Olivier](https://extraspeech.com/ "Olivier") for translating this plugin into French
139
+ * Thanks to [Daniel](https://bananklubben.se/ "Daniel Guldstrand") for translating this plugin into Swedish
140
+ * Thanks to [Olga](https://jascin.net "Olga Jascin"), [Francesco](https://ceotech.it "Francesco Palmieri") and [Stefano](https://stefanocassone.com "Stefano Cassone") for translating this plugin into Italian
141
+ * Thanks to [Xavier](https://www.xaviersanchez.es "Xavier Sánchez") for translating this plugin into Spanish
142
+
143
+ **Reviews**
144
+
145
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [German](https://www.blog2social.com/de/blog/testberichte/ "German")
146
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [English](https://www.blog2social.com/en/blog/reviews/ "English")
147
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [Spanish](https://www.blog2social.com/de/blog/revisiones/ "Spanish")
148
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [Italian](https://www.blog2social.com/de/blog/referenze/ "Italian")
149
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [French](https://www.blog2social.com/de/blog/revisions/ "French")
150
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [Russian](https://www.blog2social.com/de/blog/отзывы/ "Russian")
151
+
152
+ == Installation ==
153
+ 1. Go to the Admin Panel of your WordPress dashboard
154
+
155
+ 2. Select "Plugin" -> "Add New" in the left hand side menu
156
+
157
+ 3. Enter "Blog2Social" in the "Search Plugins" text field
158
+
159
+ 4. Click "Install Now" on the Blog2Social banner
160
+
161
+ 5. If needed enter your FTP data to install the plugin
162
+
163
+ 6. After the installation click "Activate Plugin"
164
+
165
+ 7. "Blog2Social" appears in the left hand side menu
166
+
167
+ **How to get started with Blog2Social?**
168
+ Blog2Social is easy to use. [The step-by-step guide](https://www.blog2social.com/en/blog/smart-social-media-automation-step-by-step-guide-blog2social/ "Blog2Social Guide") will lead you step-by-step through the installation of Blog2Social and everything you need to know to get started.
169
+
170
+ **Unlock the full potential of Social Media Automation and start your free 30-day Premium trial**
171
+ To take your social media marketing to the next level with more advanced sharing and scheduling options for auto-posting and cross-promoting your content [you can upgrade to Premium any time.](https://www.blog2social.com/en/pricing/ "Upgrade to Blog2Social Premium")
172
+ [Check out Blog2Social Premium Pro with all awesome features](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Blog2Social Free Premium Trial") for scheduling and sharing (e.g. auto-posting, best-time scheduling, social media calendar) 30-days for free. The trial is free of charge, without any obligations, no automatic subscription. All basic features of the Free Version are free forever.
173
+
174
+ == Frequently Asked Questions ==
175
+
176
+ = Is Blog2Social free? =
177
+
178
+ Blog2Social is a freemium plugin with a free comprehensive basic version and premium plans offering more advanced features. With Blog2Social free you can cross-post your website content and blog posts on your social media profiles. You can post to all or selected social media networks at once or you can individually tailor your social media posts before posting. [See what’s included in the free version.](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features") For more advanced features and options you can [test Blog2Social Premium for free and without any obligations](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Blog2Social Free Premium Trial") and upgrade whenever needed.
179
+
180
+ = What can I do with the free version? =
181
+
182
+ There is quite a lot you can do with the free version of Blog2Social for your social media marketing:
183
+ * You can share your blog posts and pages as well as content from other sources on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), VK (profile), Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo and Bloglovin at once.
184
+ * You can customize your social media posts with personal comments, hashtags, handles, emojis, and select an image of your choice. You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
185
+ With the free version you can also:
186
+ * manage all users’ posts and pages and share them on your channels
187
+ * re-post old blog posts
188
+ * view all your social media posts in one single place
189
+ * automatically generate hashtags from your posts tags
190
+ * edit the meta tag information of your blog posts and pages
191
+ * use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share them whenever you want.
192
+
193
+ If that’s enough for you, you can stay with Blog2Social free forever. If you need more advanced sharing and scheduling options for auto-posting and cross-promoting your posts and contents you can upgrade to Premium for less than $ 6.60 per month. That’s less than a big pizza.
194
+
195
+ = How can I start the free Premium Trial? =
196
+
197
+ To start your free 30-day-Premium trial just register at:
198
+ [https://www.blog2social.com/en/plugin/wordpress/premium-trial/](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Free Blog2Social Premium Trial")
199
+ You will receive a license key via email, that you can use to [activate your WordPress user for all the Premium features](https://www.blog2social.com/en/faq/content/7/63/en/how-do-i-activate-my-license-key.html "How to activate your license key")
200
+
201
+ = Do I have to cancel my free trial if I don’t want to buy Premium after the 30 days are over? =
202
+
203
+ You don’t need to cancel anything. There is no automatic subscription. The trial period is free of charge and obligations. If you do not buy a Premium license after the trial period your account will be switched back to Blog2Social Free automatically. Basic features are free forever. For more elaborate features, you can upgrade to Blog2Social Premium anytime.
204
+
205
+ = What are the benefits of a Premium subscription plan? =
206
+
207
+ Blog2Social premium takes your social media marketing to the next level. Benefit from more features for smarter and faster social media scheduling and automation such as:
208
+
209
+ * Schedule, share and re-share your posts automatically with the Best Time Manager, select recurring intervals and set your own scheduling schemes.
210
+ * Auto-Posting: Set your social media marketing on auto-pilot and share your posts fully automated.
211
+ * Tailor and optimize your social media post: Select individual post formats (link or image post) and images for each post by using any image from your library. You can also share up to 4 images in one post on Facebook (pages & groups) and Twitter.
212
+ * Customize post templates to save your individual layout setting as default and share your social media posts faster with individually tailored posts on each social network.
213
+ * Connect more accounts per network, add more users.
214
+ * Business networks: Get more options for LinkedIn, XING, VK, and Google My Business.
215
+ * Add URL parameters to track your marketing efforts.
216
+ * Get priority support per email and by phone.
217
+ * ...and many more Premium features: [See all the Premium features on our pricing page](https://www.blog2social.com/en/pricing/ "All Blog2Social Premium features")
218
+
219
+ = Do I need special folder permissions to install the plugin? =
220
+
221
+ The standard permissions are sufficient (“wp-content/plugins” 755)
222
+
223
+ = More questions about Blog2Social? =
224
+
225
+ To get started with the basics of Blog2Social and maybe find some useful tips and tricks, take a look at our [Step-by-Step Guide](https://www.blog2social.com/en/blog/smart-social-media-automation-step-by-step-guide-blog2social/"Step-by-Step Guide to Blog2Social") If you are looking for an answer to a specific question, please take a look at the [Frequently Asked Questions](https://www.blog2social.com/en/faq/ "Blog2Social FAQ")
226
+
227
+
228
+ == Screenshots ==
229
+ 1. Schedule uniquely tailored posts for different dates and times to maximize engagement.
230
+ 2. Schedule posts recurrently. Select the duration in weeks, months or create your own repeated scheduling.
231
+ 3. Blog2Social automatically adds Open Graph and Twitter Card tags to your blog posts to optimize your blog posts shareability on social networks.
232
+ 4. Define and save your own time settings for each connected profile, page or group.
233
+ 5. Automatically share your new and updated blog posts on social media.
234
+ 6. Share and schedule relevant third-party content.
235
+ 7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
236
+
237
+ == Changelog ==
238
+ = 6.9.4 =
239
+ Additional Security Update
240
+ = 6.9.3 =
241
+ Usability Optimization, Twitter Threads & LinkedIn multi image
242
+ = 6.9.2 =
243
+ Bugfixing Pinterest Connection
244
+ = 6.9.1 =
245
+ Bugfixing Installing
246
+ = 6.9.0 =
247
+ Social Media Metrics and more
248
+ = 6.8.7 =
249
+ Additional Security Update
250
+ = 6.8.6 =
251
+ Bugfixing Meta Tags
252
+ = 6.8.5 =
253
+ Usability Optimization & LinkedIn text length updated
254
+ = 6.8.4 =
255
+ Ravelry & Instapaper integration
256
+ = 6.8.3 =
257
+ Usability Optimization
258
+ = 6.8.2 =
259
+ Usability Optimization
260
+ = 6.8.1 =
261
+ Usability Optimization
262
+ = 6.8.0 =
263
+ Usability Optimization & Blogger.com integration
264
+ = 6.7.2 =
265
+ Usability Optimization & Blogger.com integration
266
+ = 6.7.1 =
267
+ Usability Optimization
268
+ = 6.7.0 =
269
+ Instagram Business Solution & Usability Optimization
270
+ = 6.6.4 =
271
+ Usability Optimization
272
+ = 6.6.3 =
273
+ Usability Optimization
274
+ = 6.6.2 =
275
+ Usability Optimization
276
+ = 6.6.1 =
277
+ Usability Optimization
278
+ = 6.6.0 =
279
+ Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
280
+ = 6.5.8 =
281
+ Usability Optimization
282
+ = 6.5.7 =
283
+ Usability Optimization
284
+ = 6.5.6 =
285
+ Usability Optimization
286
+ = 6.5.5 =
287
+ Usability Optimization
288
+ = 6.5.4 =
289
+ Usability Optimization
290
+ = 6.5.3 =
291
+ Optimization Twitter Image Post
292
+ = 6.5.2 =
293
+ Usability Optimization
294
+ = 6.5.1 =
295
+ Usability Optimization
296
+ = 6.5.0 =
297
+ Multiple image post & Telegram Network
298
+ = 6.4.2 =
299
+ Usability Optimization
300
+ = 6.4.1 =
301
+ Usability Optimization
302
+ = 6.4.0 =
303
+ New Blog2Social Posting Templates
304
+ = 6.3.1 =
305
+ Additional Security Update
306
+ = 6.3.0 =
307
+ Blog2Social Community and Autoposter Retweets
308
+ = 6.2.0 =
309
+ Usability Optimization, Snip.ly integration, Re-poster
310
+ = 6.1.2 =
311
+ Usability Optimization
312
+ = 6.1.1 =
313
+ Usability Optimization
314
+ = 6.1.0 =
315
+ Usability Optimization, Rebrandly integration, url parameter settings
316
+ = 6.0.0 =
317
+ New Image Posts, Imgur, Animated Gifs and Emojis
318
+
319
+ == Upgrade Notice ==
320
+ = 6.9.4 =
321
+ Additional Security Update
322
+ = 6.9.3 =
323
+ Usability Optimization, Twitter Threads & LinkedIn multi image
324
+ = 6.9.2 =
325
+ Bugfixing Pinterest Connection
326
+ = 6.9.1 =
327
+ Bugfixing Installing
328
+ = 6.9.0 =
329
+ Social Media Metrics and more
330
+ = 6.8.7 =
331
+ Additional Security Update
332
+ = 6.8.6 =
333
+ Bugfixing Meta Tags
334
+ = 6.8.5 =
335
+ Usability Optimization & LinkedIn text length updated
336
+ = 6.8.4 =
337
+ Ravelry & Instapaper integration
338
+ = 6.8.3 =
339
+ Usability Optimization
340
+ = 6.8.2 =
341
+ Usability Optimization
342
+ = 6.8.1 =
343
+ Usability Optimization
344
+ = 6.8.0 =
345
+ Usability Optimization & Blogger.com integration
346
+ = 6.7.2 =
347
+ Usability Optimization
348
+ = 6.7.1 =
349
+ Usability Optimization
350
+ = 6.7.0 =
351
+ Instagram Business Solution & Usability Optimization
352
+ = 6.6.4 =
353
+ Usability Optimization
354
+ = 6.6.3 =
355
+ Usability Optimization
356
+ = 6.6.2 =
357
+ Usability Optimization
358
+ = 6.6.1 =
359
+ Usability Optimization
360
+ = 6.6.0 =
361
+ Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
362
+ = 6.5.8 =
363
+ Usability Optimization
364
+ = 6.5.7 =
365
+ Usability Optimization
366
+ = 6.5.6 =
367
+ Usability Optimization
368
+ = 6.5.5 =
369
+ Usability Optimization
370
+ = 6.5.4 =
371
+ Usability Optimization
372
+ = 6.5.3 =
373
+ Optimization Twitter Image Post
374
+ = 6.5.2 =
375
+ Usability Optimization
376
+ = 6.5.1 =
377
+ Usability Optimization
378
+ = 6.5.0 =
379
+ Multiple image post & Telegram Network
380
+ = 6.4.2 =
381
+ Usability Optimization
382
+ = 6.4.1 =
383
+ Usability Optimization
384
+ = 6.4.0 =
385
+ New Blog2Social Posting Templates
386
+ = 6.3.1 =
387
+ Additional Security Update
388
+ = 6.3.0 =
389
+ Blog2Social Community and Autoposter Retweets
390
+ = 6.2.0 =
391
+ Usability Optimization, Snip.ly integration, Re-poster
392
+ = 6.1.2 =
393
+ Usability Optimization
394
+ = 6.1.1 =
395
+ Usability Optimization
396
+ = 6.1.0 =
397
+ Usability Optimization, Rebrandly integration, url parameter settings
398
+ = 6.0.0 =
399
+ ||||||| .r2701289
400
+ ===Blog2Social: Social Media Auto Post & Scheduler===
401
+ Contributors: Blog2Social, pr-gateway
402
+ Requires PHP: 5.5.3
403
+ 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, share text posts, share images, share video links, 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, instagram business, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, pinterest, re-post, scheduling plugin, social media, social media auto publish, social media button, social media manager, social media plugin, social media publishing, 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,instagram business, 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, Revive, Revive posts, Revive old posts, old posts, Reshare, Re-Share, automatically re-post, automatically reshare, auto repost, auto republish, recycle posts, bulk schedule, Google My Business, Google posts, imgur, vk, vkontakte, Vkontakte.ru, vk.com. Telegram, Telegram channels, Telegram groups, share multiple images, image gallery, blogger.com, ravelry, instapaper, Social Media Metrics
404
+ Donate link: https://paypal.me/adenion
405
+ Requires at least: 4.7.0
406
+ Tested up to: 5.9
407
+ Stable tag: 6.9.3
408
+ License: GPLv3
409
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
410
+
411
+ Autopost, schedule and share blog posts and contents on social media, pages & groups on Facebook, Twitter, LinkedIn, Instagram, XING etc.
412
+
413
+ == Description ==
414
+ **Social Media Auto-Posting and Scheduling Plugin for WordPress Sites and Blogs.**
415
+ Autopost, cross-promote, schedule and automatically share your blog posts to social networks such as **Facebook, Twitter, Google My Business, LinkedIn, XING, Instagram Business, Pinterest, Imgur, Flickr, Reddit, VK.com, Medium, Tumblr, Torial, Diigo, Bloglovin, Telegram, Blogger.com, Instapaper and Ravelry.**
416
+ Blog2Social automatically creates social media posts for your content and auto-posts at the best times for each network. Save time and pain of manually sharing and promoting your site on social media.
417
+
418
+ _Compatible with WooCommerce, Gutenberg Editor, Hummingbird, Bitly, Rebrand.ly, Sniply, WP Automatic Plugin, Page Builder & RSS Importer._
419
+
420
+ * Version 6.9: Social Media Metrics BETA and more
421
+
422
+ Download Blog2Social today to make your social media marketing for your WordPress site or blog easier than ever. Blog2Social is a freemium plugin, with a free comprehensive basic version and premium plans offering more advanced features. To ensure compliance with the high quality standards of the new networks’ API rules and community guidelines, some functions of the auto-poster are premium features and not part of the free version.
423
+ The Blog2Social free version offers you a wide range of features. ([See what’s included in the free version](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features")).
424
+ To benefit from all the advanced features for automatic sharing and scheduling your content on social media you can [start your free 30-day trial for Blog2SocialPremium Pro- today and upgrade any time.](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Free Blog2Social Premium Trial")
425
+
426
+ = Supported Networks = for cross-posting and auto posting
427
+ * **Facebook** - Post to your profile, page (Free), and in groups (Premium)
428
+ * **Twitter** - Post to your Twitter account
429
+ * **Google My Business** (Premium) - Post to your Business Listing on Google
430
+ * **LinkedIn** - Post to your profile (Free) or page (Premium)
431
+ * **XING** - Post to your profile (Free), page (Premium), and in groups (Premium)
432
+ * **Instagram** - Post to your Business Account (Premium)
433
+ * **Pinterest** - Post to all your different Pinboards (Free)
434
+ * **Imgur** - Post to your Imgur profile (Free)
435
+ * **Flickr** - Post to your Flickr profile (Free)
436
+ * **Reddit** - Post to your subreddits (Free)
437
+ * **VK.com** - post to your profile (Free), page (Premium) or in groups (Premium)
438
+ * **Medium** - post to your blog post with canonical-backlinks to your original post (Free)
439
+ * **Tumblr** - post to your blog post with canonical-backlinks to your original post (Free)
440
+ * **Torial** - post to your blog post with canonical-backlinks to your original post (Free)
441
+ * **Diigo** - post a bookmark to your account (Free)
442
+ * **Bloglovin** - post to your blog post with canonical-backlinks to your original post (Free)
443
+ * **Telegram** - post to your Telegram groups and Telegram channels (Business)
444
+ * **Blogger.com** - post to your blog post with canonical-backlinks to your original post (Premium)
445
+ * **Instapaper** - post to your Instapaper account (Premium)
446
+ * **Ravelry** - post to your Ravelry account (Premium)
447
+
448
+ = Benefits from using Blog2Social =
449
+
450
+ BLOG2SOCIAL FREE
451
+
452
+ * Share your posts and pages on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), VK (profile), Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo and Bloglovin at once.
453
+ * Customize your social media posts with unique personal comments, hashtags, handles, emojis, and select an image or animated GIF of your choice.
454
+ * You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
455
+ * Manage all users posts and pages and share them on your channels.
456
+ * Re-post old posts.
457
+ * Save your social media posts as drafts.
458
+ * Share links and posts from other sources (Content Curation).
459
+ * View all your social media posts in one single place.
460
+ * Automatically generate hashtags from the tags of your posts.
461
+ * Edit the meta tag information of your blog posts and pages.
462
+ * Use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share them whenever you want.
463
+
464
+ All these features are included in Blog2Social free. If you want to take your social media marketing to the next level with more advanced sharing and scheduling options for auto-posting and cross-promoting your content you can upgrade to Premium any time.
465
+ Try Blog2Social Premium with [free 30-day-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Try Blog2Social Premium for free") (without any obligations, no automatic subscription).
466
+
467
+
468
+ 10 REASONS FOR CHOOSING BLOG2SOCIAL PREMIUM
469
+
470
+ **#1 Easy Social Media Scheduling** – Auto-Post and Auto-Schedule your posts with a pre-defined best time schedule for each social network or define your own best times.
471
+
472
+ Blog2Social provides you with a **ready-to-use Best Time Manager** for the best times to post on each social network. If you know which times work best for you, then you can **define and save your own time settings.** Schedule your social media posts for **immediate sharing or choose a one-time or recurring schedule. Save evergreen content as a favorite** to easily find and re-share your most valuable content.
473
+
474
+
475
+ **#2 Cross-Posting and Cross-Promotion with Customized Social Media Posts** – Create unique social media posts for each social network and community.
476
+
477
+ Blog2Social automatically turns your posts into an adapted format for each social platform. You can optionally customize and tailor your social media posts with individual **comments, #hashtags, @handles, and emojis. Automatically generate Hashtags** from your WP tags. **Select or add individual images and animated GIFs** and choose between different **post formats (link post / image post)** to create more variations for your social media posts. Choose up to 4 images for one post and share an **image gallery** (Facebook pages & groups, Twitter). Customize post templates to save your individual layout setting as default and share your social media posts faster with individually tailored posts on each social network.
478
+
479
+ **#3 Social Media Calendar** – Organize your social media marketing
480
+
481
+ Edit, add or change scheduled posts per drag & drop in the built-in social media calendar. **Keep track of your shared posts and scheduling plan** and filter your posts per network. Posts from other users will be displayed in different colors.
482
+
483
+
484
+ **#4 Social Media Auto-Poster** – Switch your social media marketing on auto-pilot
485
+
486
+ Activate the autoposter to **automatically share your new and updated posts** on social media. No extra steps required!
487
+ **Transfer the autoposter settings** as an WordPress admin to other WordPress authors with the same Business license to share posts automatically on the assigned social media networks.
488
+
489
+ **#5 Content Curation** – Share and schedule third-party content
490
+
491
+ Share and schedule links and posts from any source to **automatically fill your social media feeds with a consistent content mix** of your own content and third-party content. Import content via RSS or share any URL-Link, or use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share or schedule them whenever you want.
492
+
493
+
494
+ **#6 Create Social Media Posts any source** – share updates, images, texts, links and video links from one central platform and schedule all your social media posts in one social media calendar.
495
+
496
+ Save valuable time by managing your complete **social media content right from your WordPress dashboard.**
497
+
498
+
499
+ **#7 Social-Media-Ready Blog Posts** – Blog2Social optimizes your social meta tags
500
+
501
+ Blog2Social automatically adds Open Graph and Twitter Card tags to your blog posts to **optimize the shareability of your blog post on social networks.** Edit these tags to your liking to adjust how your link preview looks on social media networks.
502
+
503
+
504
+ **#8 Tracking with URL parameters** – Monitor and measure your marketing success in Google Analytics
505
+
506
+ Add **UTM parameters** to URLs to enable **tracking of your social media campaigns via Google Analytics**. You can also add **other URL parameters**, for example, for Adobe Analytics or IBM Cognos Analytics.
507
+
508
+
509
+ **#9 Re-share and re-schedule old posts automatically** - Revive your posts
510
+
511
+ Keep your social media feed updated automatically with awesome content and save valuable time by reviving your evergreen content regularly. **Automate your resharing** process with Blog2Social, so you can use your time to create new content and interact with your community.
512
+
513
+
514
+ **#10 There is much more to discover** – Try Blog2Social to check out all the features
515
+
516
+ Use the **Bitly, Rebrandly or Sniply shortener** to track the performance of your links. Schedule **Retweets for Twitter.** Discover many more features:
517
+ **Download Blog2Social and [start your free 30-day-Premium-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Start your free Blog2Social Premium Trial")**
518
+
519
+
520
+ = Supported Languages =
521
+
522
+ The Blog2Social Plugin is available in the following language versions
523
+
524
+ * English
525
+ * German
526
+ * French
527
+ * Portuguese
528
+ * Russian
529
+ * Spanish
530
+ * Italian
531
+ * Swedish
532
+
533
+ **Contributors**
534
+
535
+ * Thanks to [Almaz](https://optimay.ru/ "Almaz") for translating this plugin into Russian
536
+ * Thanks to [Olivier](https://extraspeech.com/ "Olivier") for translating this plugin into French
537
+ * Thanks to [Daniel](https://bananklubben.se/ "Daniel Guldstrand") for translating this plugin into Swedish
538
+ * Thanks to [Olga](https://jascin.net "Olga Jascin"), [Francesco](https://ceotech.it "Francesco Palmieri") and [Stefano](https://stefanocassone.com "Stefano Cassone") for translating this plugin into Italian
539
+ * Thanks to [Xavier](https://www.xaviersanchez.es "Xavier Sánchez") for translating this plugin into Spanish
540
+
541
+ **Reviews**
542
+
543
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [German](https://www.blog2social.com/de/blog/testberichte/ "German")
544
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [English](https://www.blog2social.com/en/blog/reviews/ "English")
545
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [Spanish](https://www.blog2social.com/de/blog/revisiones/ "Spanish")
546
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [Italian](https://www.blog2social.com/de/blog/referenze/ "Italian")
547
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [French](https://www.blog2social.com/de/blog/revisions/ "French")
548
+ * Discover feedback and reviews from enthusiastic Blog2Social users in [Russian](https://www.blog2social.com/de/blog/отзывы/ "Russian")
549
+
550
+ == Installation ==
551
+ 1. Go to the Admin Panel of your WordPress dashboard
552
+
553
+ 2. Select "Plugin" -> "Add New" in the left hand side menu
554
+
555
+ 3. Enter "Blog2Social" in the "Search Plugins" text field
556
+
557
+ 4. Click "Install Now" on the Blog2Social banner
558
+
559
+ 5. If needed enter your FTP data to install the plugin
560
+
561
+ 6. After the installation click "Activate Plugin"
562
+
563
+ 7. "Blog2Social" appears in the left hand side menu
564
+
565
+ **How to get started with Blog2Social?**
566
+ Blog2Social is easy to use. [The step-by-step guide](https://www.blog2social.com/en/blog/smart-social-media-automation-step-by-step-guide-blog2social/ "Blog2Social Guide") will lead you step-by-step through the installation of Blog2Social and everything you need to know to get started.
567
+
568
+ **Unlock the full potential of Social Media Automation and start your free 30-day Premium trial**
569
+ To take your social media marketing to the next level with more advanced sharing and scheduling options for auto-posting and cross-promoting your content [you can upgrade to Premium any time.](https://www.blog2social.com/en/pricing/ "Upgrade to Blog2Social Premium")
570
+ [Check out Blog2Social Premium Pro with all awesome features](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Blog2Social Free Premium Trial") for scheduling and sharing (e.g. auto-posting, best-time scheduling, social media calendar) 30-days for free. The trial is free of charge, without any obligations, no automatic subscription. All basic features of the Free Version are free forever.
571
+
572
+ == Frequently Asked Questions ==
573
+
574
+ = Is Blog2Social free? =
575
+
576
+ Blog2Social is a freemium plugin with a free comprehensive basic version and premium plans offering more advanced features. With Blog2Social free you can cross-post your website content and blog posts on your social media profiles. You can post to all or selected social media networks at once or you can individually tailor your social media posts before posting. [See what’s included in the free version.](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features") For more advanced features and options you can [test Blog2Social Premium for free and without any obligations](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Blog2Social Free Premium Trial") and upgrade whenever needed.
577
+
578
+ = What can I do with the free version? =
579
+
580
+ There is quite a lot you can do with the free version of Blog2Social for your social media marketing:
581
+ * You can share your blog posts and pages as well as content from other sources on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), VK (profile), Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo and Bloglovin at once.
582
+ * You can customize your social media posts with personal comments, hashtags, handles, emojis, and select an image of your choice. You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
583
+ With the free version you can also:
584
+ * manage all users’ posts and pages and share them on your channels
585
+ * re-post old blog posts
586
+ * view all your social media posts in one single place
587
+ * automatically generate hashtags from your posts tags
588
+ * edit the meta tag information of your blog posts and pages
589
+ * use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share them whenever you want.
590
+
591
+ If that’s enough for you, you can stay with Blog2Social free forever. If you need more advanced sharing and scheduling options for auto-posting and cross-promoting your posts and contents you can upgrade to Premium for less than $ 6.60 per month. That’s less than a big pizza.
592
+
593
+ = How can I start the free Premium Trial? =
594
+
595
+ To start your free 30-day-Premium trial just register at:
596
+ [https://www.blog2social.com/en/plugin/wordpress/premium-trial/](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Free Blog2Social Premium Trial")
597
+ You will receive a license key via email, that you can use to [activate your WordPress user for all the Premium features](https://www.blog2social.com/en/faq/content/7/63/en/how-do-i-activate-my-license-key.html "How to activate your license key")
598
+
599
+ = Do I have to cancel my free trial if I don’t want to buy Premium after the 30 days are over? =
600
+
601
+ You don’t need to cancel anything. There is no automatic subscription. The trial period is free of charge and obligations. If you do not buy a Premium license after the trial period your account will be switched back to Blog2Social Free automatically. Basic features are free forever. For more elaborate features, you can upgrade to Blog2Social Premium anytime.
602
+
603
+ = What are the benefits of a Premium subscription plan? =
604
+
605
+ Blog2Social premium takes your social media marketing to the next level. Benefit from more features for smarter and faster social media scheduling and automation such as:
606
+
607
+ * Schedule, share and re-share your posts automatically with the Best Time Manager, select recurring intervals and set your own scheduling schemes.
608
+ * Auto-Posting: Set your social media marketing on auto-pilot and share your posts fully automated.
609
+ * Tailor and optimize your social media post: Select individual post formats (link or image post) and images for each post by using any image from your library. You can also share up to 4 images in one post on Facebook (pages & groups) and Twitter.
610
+ * Customize post templates to save your individual layout setting as default and share your social media posts faster with individually tailored posts on each social network.
611
+ * Connect more accounts per network, add more users.
612
+ * Business networks: Get more options for LinkedIn, XING, VK, and Google My Business.
613
+ * Add URL parameters to track your marketing efforts.
614
+ * Get priority support per email and by phone.
615
+ * ...and many more Premium features: [See all the Premium features on our pricing page](https://www.blog2social.com/en/pricing/ "All Blog2Social Premium features")
616
+
617
+ = Do I need special folder permissions to install the plugin? =
618
+
619
+ The standard permissions are sufficient (“wp-content/plugins” 755)
620
+
621
+ = More questions about Blog2Social? =
622
+
623
+ To get started with the basics of Blog2Social and maybe find some useful tips and tricks, take a look at our [Step-by-Step Guide](https://www.blog2social.com/en/blog/smart-social-media-automation-step-by-step-guide-blog2social/"Step-by-Step Guide to Blog2Social") If you are looking for an answer to a specific question, please take a look at the [Frequently Asked Questions](https://www.blog2social.com/en/faq/ "Blog2Social FAQ")
624
+
625
+
626
+ == Screenshots ==
627
+ 1. Schedule uniquely tailored posts for different dates and times to maximize engagement.
628
+ 2. Schedule posts recurrently. Select the duration in weeks, months or create your own repeated scheduling.
629
+ 3. Blog2Social automatically adds Open Graph and Twitter Card tags to your blog posts to optimize your blog posts shareability on social networks.
630
+ 4. Define and save your own time settings for each connected profile, page or group.
631
+ 5. Automatically share your new and updated blog posts on social media.
632
+ 6. Share and schedule relevant third-party content.
633
+ 7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
634
+
635
+ == Changelog ==
636
+ = 6.9.3 =
637
+ Usability Optimization, Twitter Threads & LinkedIn multi image
638
+ = 6.9.2 =
639
+ Bugfixing Pinterest Connection
640
+ = 6.9.1 =
641
+ Bugfixing Installing
642
+ = 6.9.0 =
643
+ Social Media Metrics and more
644
+ = 6.8.7 =
645
+ Additional Security Update
646
+ = 6.8.6 =
647
+ Bugfixing Meta Tags
648
+ = 6.8.5 =
649
+ Usability Optimization & LinkedIn text length updated
650
+ = 6.8.4 =
651
+ Ravelry & Instapaper integration
652
+ = 6.8.3 =
653
+ Usability Optimization
654
+ = 6.8.2 =
655
+ Usability Optimization
656
+ = 6.8.1 =
657
+ Usability Optimization
658
+ = 6.8.0 =
659
+ Usability Optimization & Blogger.com integration
660
+ = 6.7.2 =
661
+ Usability Optimization & Blogger.com integration
662
+ = 6.7.1 =
663
+ Usability Optimization
664
+ = 6.7.0 =
665
+ Instagram Business Solution & Usability Optimization
666
+ = 6.6.4 =
667
+ Usability Optimization
668
+ = 6.6.3 =
669
+ Usability Optimization
670
+ = 6.6.2 =
671
+ Usability Optimization
672
+ = 6.6.1 =
673
+ Usability Optimization
674
+ = 6.6.0 =
675
+ Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
676
+ = 6.5.8 =
677
+ Usability Optimization
678
+ = 6.5.7 =
679
+ Usability Optimization
680
+ = 6.5.6 =
681
+ Usability Optimization
682
+ = 6.5.5 =
683
+ Usability Optimization
684
+ = 6.5.4 =
685
+ Usability Optimization
686
+ = 6.5.3 =
687
+ Optimization Twitter Image Post
688
+ = 6.5.2 =
689
+ Usability Optimization
690
+ = 6.5.1 =
691
+ Usability Optimization
692
+ = 6.5.0 =
693
+ Multiple image post & Telegram Network
694
+ = 6.4.2 =
695
+ Usability Optimization
696
+ = 6.4.1 =
697
+ Usability Optimization
698
+ = 6.4.0 =
699
+ New Blog2Social Posting Templates
700
+ = 6.3.1 =
701
+ Additional Security Update
702
+ = 6.3.0 =
703
+ Blog2Social Community and Autoposter Retweets
704
+ = 6.2.0 =
705
+ Usability Optimization, Snip.ly integration, Re-poster
706
+ = 6.1.2 =
707
+ Usability Optimization
708
+ = 6.1.1 =
709
+ Usability Optimization
710
+ = 6.1.0 =
711
+ Usability Optimization, Rebrandly integration, url parameter settings
712
+ = 6.0.0 =
713
+ New Image Posts, Imgur, Animated Gifs and Emojis
714
+
715
+ == Upgrade Notice ==
716
+ = 6.9.3 =
717
+ Usability Optimization, Twitter Threads & LinkedIn multi image
718
+ = 6.9.2 =
719
+ Bugfixing Pinterest Connection
720
+ = 6.9.1 =
721
+ Bugfixing Installing
722
+ = 6.9.0 =
723
+ Social Media Metrics and more
724
+ = 6.8.7 =
725
+ Additional Security Update
726
+ = 6.8.6 =
727
+ Bugfixing Meta Tags
728
+ = 6.8.5 =
729
+ Usability Optimization & LinkedIn text length updated
730
+ = 6.8.4 =
731
+ Ravelry & Instapaper integration
732
+ = 6.8.3 =
733
+ Usability Optimization
734
+ = 6.8.2 =
735
+ Usability Optimization
736
+ = 6.8.1 =
737
+ Usability Optimization
738
+ = 6.8.0 =
739
+ Usability Optimization & Blogger.com integration
740
+ = 6.7.2 =
741
+ Usability Optimization
742
+ = 6.7.1 =
743
+ Usability Optimization
744
+ = 6.7.0 =
745
+ Instagram Business Solution & Usability Optimization
746
+ = 6.6.4 =
747
+ Usability Optimization
748
+ = 6.6.3 =
749
+ Usability Optimization
750
+ = 6.6.2 =
751
+ Usability Optimization
752
+ = 6.6.1 =
753
+ Usability Optimization
754
+ = 6.6.0 =
755
+ Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
756
+ = 6.5.8 =
757
+ Usability Optimization
758
+ = 6.5.7 =
759
+ Usability Optimization
760
+ = 6.5.6 =
761
+ Usability Optimization
762
+ = 6.5.5 =
763
+ Usability Optimization
764
+ = 6.5.4 =
765
+ Usability Optimization
766
+ = 6.5.3 =
767
+ Optimization Twitter Image Post
768
+ = 6.5.2 =
769
+ Usability Optimization
770
+ = 6.5.1 =
771
+ Usability Optimization
772
+ = 6.5.0 =
773
+ Multiple image post & Telegram Network
774
+ = 6.4.2 =
775
+ Usability Optimization
776
+ = 6.4.1 =
777
+ Usability Optimization
778
+ = 6.4.0 =
779
+ New Blog2Social Posting Templates
780
+ = 6.3.1 =
781
+ Additional Security Update
782
+ = 6.3.0 =
783
+ Blog2Social Community and Autoposter Retweets
784
+ = 6.2.0 =
785
+ Usability Optimization, Snip.ly integration, Re-poster
786
+ = 6.1.2 =
787
+ Usability Optimization
788
+ = 6.1.1 =
789
+ Usability Optimization
790
+ = 6.1.0 =
791
+ Usability Optimization, Rebrandly integration, url parameter settings
792
+ = 6.0.0 =
793
+ =======
794
  ===Blog2Social: Social Media Auto Post & Scheduler===
795
  Contributors: Blog2Social, pr-gateway
796
  Requires PHP: 5.5.3
1184
  = 6.1.0 =
1185
  Usability Optimization, Rebrandly integration, url parameter settings
1186
  = 6.0.0 =
1187
+ >>>>>>> .r2704830
1188
  New Image Posts, Imgur, Animated Gifs and Emojis
views/b2s/autopost.php CHANGED
@@ -110,26 +110,18 @@ $autoPostItem = new B2S_AutoPost_Item();
110
  <div class="modal-content">
111
  <div class="modal-header">
112
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2sAutoPostAInfoModal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
113
- <h4 class="modal-title"><?php esc_html_e('Info', 'blog2social') ?></h4>
114
  </div>
115
  <div class="modal-body">
116
- <?php esc_html_e('There are two different setting panels in the auto-poster section:', 'blog2social'); ?>
117
  <br>
118
- <?php esc_html_e('1. for auto-posting your original Wordpress content (posts, pages and media)', 'blog2social'); ?>
119
  <br>
120
- <?php echo sprintf(__('<a href="%s" target="_blank">How to set up the auto-poster for your own original WordPress posts</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_troubleshoot')); ?>
121
  <br>
122
- <?php echo sprintf(__('<a href="%s" target="_blank">Sharing with the Auto-Poster- Things to check for Troubleshooting</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_manuell')); ?>
123
  <br>
124
  <br>
125
- <?php esc_html_e('2. for auto-posting imported posts (imported RSS feeds or posts created / imported with another plugin). ', 'blog2social'); ?>
126
- <br>
127
- <?php echo sprintf(__('<a href="%s" target="_blank">How to set up the auto-poster for imported content</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_import')); ?>
128
- <br>
129
- <?php echo sprintf(__('<a href="%s" target="_blank">Sharing Imported Posts with the Auto-Poster- Things to check for Troubleshooting</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_import_troubleshoot')); ?>
130
- <br>
131
- <br>
132
- <?php esc_html_e('All settings and social networks for the auto-poster can be defined for each WordPress user individually.', 'blog2social'); ?>
133
  <br>
134
  <?php esc_html_e('Please make sure that each WordPress user or author whose posts should be auto-posted', 'blog2social'); ?>
135
  <br>
@@ -137,10 +129,10 @@ $autoPostItem = new B2S_AutoPost_Item();
137
  <br>
138
  <?php esc_html_e('2. has the selected social media networks connected or assigned (Blog2Social -> Networks)', 'blog2social'); ?>
139
  <br>
140
- <?php esc_html_e('3. is activated with the correct auto-poster settings (Autoposter FAQ)', 'blog2social'); ?>
141
  <br>
142
  <br>
143
- <?php esc_html_e('Since Blog2Social works WordPress user based, please make sure you activate and define the preferred settings panel for each user.', 'blog2social'); ?>
144
  </div>
145
  </div>
146
  </div>
@@ -150,22 +142,18 @@ $autoPostItem = new B2S_AutoPost_Item();
150
  <div class="modal-content">
151
  <div class="modal-header">
152
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2sAutoPostMInfoModal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
153
- <h4 class="modal-title"><?php esc_html_e('Info', 'blog2social') ?></h4>
154
  </div>
155
  <div class="modal-body">
156
- <?php esc_html_e('There are two different setting panels in the auto-poster section:', 'blog2social'); ?>
157
- <br>
158
- <?php esc_html_e('1. for auto-posting your original Wordpress content (posts, pages and media)', 'blog2social'); ?>
159
- <br>
160
- <?php echo sprintf(__('<a href="%s" target="_blank">How to set up the auto-poster for your own original WordPress posts Sharing with the Auto-Poster- Things to check for Troubleshooting</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_troubleshoot')); ?>
161
  <br>
162
  <br>
163
- <?php esc_html_e('2. for auto-posting imported posts (imported RSS feeds or posts created / imported with another plugin). ', 'blog2social'); ?>
164
  <br>
165
- <?php echo sprintf(__('<a href="%s" target="_blank">How to set up the auto-poster for imported content Sharing Imported Posts with the Auto-Poster- Things to check for Troubleshooting</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_import')); ?>
166
  <br>
167
  <br>
168
- <?php esc_html_e('All settings and social networks for the auto-poster can be defined for each WordPress user individually.', 'blog2social'); ?>
169
  <br>
170
  <?php esc_html_e('Please make sure that each WordPress user or author whose posts should be auto-posted', 'blog2social'); ?>
171
  <br>
@@ -173,10 +161,10 @@ $autoPostItem = new B2S_AutoPost_Item();
173
  <br>
174
  <?php esc_html_e('2. has the selected social media networks connected or assigned (Blog2Social -> Networks)', 'blog2social'); ?>
175
  <br>
176
- <?php esc_html_e('3. is activated with the correct auto-poster settings (Autoposter FAQ)', 'blog2social'); ?>
177
  <br>
178
  <br>
179
- <?php esc_html_e('Since Blog2Social works WordPress user based, please make sure you activate and define the preferred settings panel for each user. ', 'blog2social'); ?>
180
  </div>
181
  </div>
182
  </div>
110
  <div class="modal-content">
111
  <div class="modal-header">
112
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2sAutoPostAInfoModal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
113
+ <h4 class="modal-title"><?php esc_html_e('Important information about the Auto-Poster settings for WordPress content', 'blog2social') ?></h4>
114
  </div>
115
  <div class="modal-body">
116
+ <?php esc_html_e('If you like to share your WordPress content (blogposts, pages, and products) automatically, you can use the following checklists where you get all information on the different setting panels for the Auto-Poster for WordPress content:', 'blog2social'); ?>
117
  <br>
 
118
  <br>
119
+ <?php echo sprintf(__('<a href="%s" target="_blank">How to set up the Auto-Poster for your own WordPress content</a>', 'blog2social'), B2S_Tools::getSupportLink('autopost_checklist_wp')); ?>
120
  <br>
121
+ <?php echo sprintf(__('<a href="%s" target="_blank">Sharing with the Auto-Poster- Things to check for Troubleshooting</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_troubleshoot')); ?>
122
  <br>
123
  <br>
124
+ <?php esc_html_e('All settings and social networks for the Auto-Poster can be defined for each WordPress user individually.', 'blog2social'); ?>
 
 
 
 
 
 
 
125
  <br>
126
  <?php esc_html_e('Please make sure that each WordPress user or author whose posts should be auto-posted', 'blog2social'); ?>
127
  <br>
129
  <br>
130
  <?php esc_html_e('2. has the selected social media networks connected or assigned (Blog2Social -> Networks)', 'blog2social'); ?>
131
  <br>
132
+ <?php esc_html_e('3. is activated with the correct Auto-Poster settings (Autoposter FAQ)', 'blog2social'); ?>
133
  <br>
134
  <br>
135
+ <?php esc_html_e('Please make sure you activate and define the preferred settings panel for each user.', 'blog2social'); ?>
136
  </div>
137
  </div>
138
  </div>
142
  <div class="modal-content">
143
  <div class="modal-header">
144
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2sAutoPostMInfoModal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
145
+ <h4 class="modal-title"><?php esc_html_e('Important information about the Auto-Poster settings for imported posts', 'blog2social') ?></h4>
146
  </div>
147
  <div class="modal-body">
148
+ <?php esc_html_e('If you like to share imported (imported RSS feeds or posts created/ imported with another plugin) posts automatically, you can use the following checklists where you get all information on the different setting panels for the Auto-Poster for imported posts:', 'blog2social'); ?>
 
 
 
 
149
  <br>
150
  <br>
151
+ <?php echo sprintf(__('<a href="%s" target="_blank">How to set up the Auto-Poster for imported content</a>', 'blog2social'), B2S_Tools::getSupportLink('autopost_checklist_rss')); ?>
152
  <br>
153
+ <?php echo sprintf(__('<a href="%s" target="_blank">Sharing imported posts with the Auto-Poster- Things to check for Troubleshooting</a>', 'blog2social'), B2S_Tools::getSupportLink('auto_post_troubleshoot')); ?>
154
  <br>
155
  <br>
156
+ <?php esc_html_e('All settings and social networks for the Auto-Poster can be defined for each WordPress user individually.', 'blog2social'); ?>
157
  <br>
158
  <?php esc_html_e('Please make sure that each WordPress user or author whose posts should be auto-posted', 'blog2social'); ?>
159
  <br>
161
  <br>
162
  <?php esc_html_e('2. has the selected social media networks connected or assigned (Blog2Social -> Networks)', 'blog2social'); ?>
163
  <br>
164
+ <?php esc_html_e('3. is activated with the correct Auto-Poster settings (Autoposter FAQ)', 'blog2social'); ?>
165
  <br>
166
  <br>
167
+ <?php esc_html_e('Please make sure you activate and define the preferred settings panel for each user.', 'blog2social'); ?>
168
  </div>
169
  </div>
170
  </div>
views/b2s/html/footer.php CHANGED
@@ -481,7 +481,7 @@
481
  <?php esc_html_e('Social Meta Tags Settings', 'blog2social') ?>
482
  </div>
483
  <div class="meta-title modal-meta-content" data-meta-origin="ship" style="display: none;">
484
- <?php esc_html_e('Change image, title and description for your post on this network', 'blog2social'); ?>
485
  </div>
486
  </h4>
487
  </div>
@@ -504,34 +504,56 @@
504
  <?php esc_html_e('With Blog2Social you can select a featured image or any image you select to be displayed with your link post. Blog2Social will automatically write the required parameter in the OG Meta Tags of your post, so that your selected image will be displayed with your link post. We recommend an image size between 667x523 and 1000x1000 Pixels. Please make sure that the "Add Open Graph meta tags" box is checked, if you uncheck the oEmbed tags. If both settings are unchecked, make sure to use another plugin to set your OG tags, otherwise the social networks will display no image or a random image in your post.', 'blog2social') ?>
505
  </div>
506
  <div class="meta-body modal-meta-content" data-meta-type="og" data-meta-origin="ship" style="display: none;">
507
- <?php esc_html_e('You can change the image, title and description for your post on Facebook, by editing the following fields for', 'blog2social') ?>
508
  <br>
 
509
  <br>
510
- <b>- <?php esc_html_e('image', 'blog2social') ?></b><br>
511
- <b>- <?php esc_html_e('title', 'blog2social') ?></b><br>
512
- <b>- <?php esc_html_e('description', 'blog2social') ?></b><br>
513
  <br>
514
- <?php esc_html_e('Blog2Social will automatically write these information in the Facebook Open Graph (OG) Meta Tags for Image, Title and Description of your blog post.', 'blog2social') ?>
 
 
515
  <br>
 
516
  <br>
517
- <?php esc_html_e('Please note: If this post has already been shared or scheduled previously, your current changes will also affect the look of previously shared or scheduled posts, as Facebook always refers to the current Open Graph meta tags information and automatically updated all existing posts.', 'blog2social') ?><br>
518
  <br>
519
- <?php echo sprintf(__('Please note: Your changes will have no effect on your social media posts on Facebook, if you have manually unchecked the Meta Tag options for Facebook in your Blog2Social <a target="_blank" href="%s">settings</a>', 'blog2social'), esc_url('admin.php?page=blog2social-settings')); ?>
 
 
 
 
 
 
 
 
 
 
 
520
  </div>
521
  <div class="meta-body modal-meta-content" data-meta-type="card" data-meta-origin="ship" style="display: none;">
522
- <?php esc_html_e('You can change the image, title and description for your post on Twitter, by editing the following fields for', 'blog2social') ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
523
  <br>
524
  <br>
525
- <b>- <?php esc_html_e('image', 'blog2social') ?></b><br>
526
- <b>- <?php esc_html_e('title', 'blog2social') ?></b><br>
527
- <b>- <?php esc_html_e('description', 'blog2social') ?></b><br>
528
  <br>
529
- <?php esc_html_e('Blog2Social will automatically write these information in the Twitter Card Meta Tags for Image, Title and Description of your blog post.', 'blog2social') ?>
530
  <br>
 
531
  <br>
532
- <?php esc_html_e('Please note: If this post was previously shared or scheduled, your current changes will also affect the look of previously shared or scheduled posts, as Twitter will always pull the most up-to-date information from the Twitter Card tags. If this post has already been shared, it may take up to 7 days for Twitter to update your current changes.', 'blog2social') ?><br>
533
  <br>
534
- <?php echo sprintf(__('Please note: Your changes will have no effect on your social media posts on Twitter, if you have manually unchecked the Meta Tag options for Twitter in your <a target="_blank" href="%s">settings</a>', 'blog2social'), esc_url('admin.php?page=blog2social-settings')); ?>
535
  </div>
536
 
537
  <?php if (B2S_PLUGIN_USER_VERSION == 0) {
481
  <?php esc_html_e('Social Meta Tags Settings', 'blog2social') ?>
482
  </div>
483
  <div class="meta-title modal-meta-content" data-meta-origin="ship" style="display: none;">
484
+ <?php esc_html_e('Important information about editing the meta tags', 'blog2social'); ?>
485
  </div>
486
  </h4>
487
  </div>
504
  <?php esc_html_e('With Blog2Social you can select a featured image or any image you select to be displayed with your link post. Blog2Social will automatically write the required parameter in the OG Meta Tags of your post, so that your selected image will be displayed with your link post. We recommend an image size between 667x523 and 1000x1000 Pixels. Please make sure that the "Add Open Graph meta tags" box is checked, if you uncheck the oEmbed tags. If both settings are unchecked, make sure to use another plugin to set your OG tags, otherwise the social networks will display no image or a random image in your post.', 'blog2social') ?>
505
  </div>
506
  <div class="meta-body modal-meta-content" data-meta-type="og" data-meta-origin="ship" style="display: none;">
507
+ <?php esc_html_e('What are meta tags?', 'blog2social') ?>
508
  <br>
509
+ <?php esc_html_e('With the help of the meta tags you can decide, how the preview of your link post looks like on social media. You can edit the following fields to change the look:', 'blog2social') ?>
510
  <br>
 
 
 
511
  <br>
512
+ <b>- <?php esc_html_e('Image', 'blog2social') ?></b><br>
513
+ <b>- <?php esc_html_e('Title', 'blog2social') ?></b><br>
514
+ <b>- <?php esc_html_e('Description', 'blog2social') ?></b><br>
515
  <br>
516
+ <?php esc_html_e('Blog2Social automatically writes this information into the Open Graph (OG) tags as the image, title and description of your WordPress post.', 'blog2social') ?>
517
  <br>
 
518
  <br>
519
+ <?php esc_html_e('Please note:', 'blog2social') ?><br>
520
+ <br>
521
+ <?php echo sprintf(__('If you use other plugins for setting meta tags, such as Yoast SEO, the tags you customized with Blog2Social will be overwritten by the other plugins. To allow Blog2Social to apply and share your changes, please make sure you have <a target="_blank" href="%s">activated meta tag settings for Blog2Social only</a> and disable all meta tag settings in your other plugins.', 'blog2social'), esc_url('admin.php?page=blog2social-settings')); ?>
522
+ <br>
523
+ <br>
524
+ <?php esc_html_e('If this post has been previously shared or scheduled, your current changes will also affect the appearance of previously shared or scheduled posts, as the networks will always pull the latest information from the open graph meta tags and automatically update any existing posts.', 'blog2social') ?><br>
525
+ <br>
526
+ <br>
527
+ <?php echo sprintf(__('Your changes will not be applied to your previously shared social media posts if you have manually disabled the meta tag options in your <a target="_blank" href="%s">Blog2Social settings</a>.', 'blog2social'), esc_url('admin.php?page=blog2social-settings')); ?>
528
+ <br>
529
+ <br>
530
+ <?php echo sprintf(__('For more information on how to set meta tags correctly, you can take a look into the <a target="_blank" href="%s">meta tag checklist</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('yoast_warning_og_guide'))); ?>
531
  </div>
532
  <div class="meta-body modal-meta-content" data-meta-type="card" data-meta-origin="ship" style="display: none;">
533
+ <?php esc_html_e('What are Twitter Cards?', 'blog2social') ?>
534
+ <br>
535
+ <?php esc_html_e('The Twitter Cards define the look of your preview of your link post on Twitter. By editing the Twitter Card tags you can change the following parameters to change the look:', 'blog2social') ?>
536
+ <br>
537
+ <br>
538
+ <b>- <?php esc_html_e('Image', 'blog2social') ?></b><br>
539
+ <b>- <?php esc_html_e('Title', 'blog2social') ?></b><br>
540
+ <b>- <?php esc_html_e('Description', 'blog2social') ?></b><br>
541
+ <br>
542
+ <?php esc_html_e('Blog2Social automatically writes this information into the Twitter Card tags as the image, title and description of your WordPress post.', 'blog2social') ?>
543
+ <br>
544
+ <br>
545
+ <?php esc_html_e('Please note:', 'blog2social') ?><br>
546
+ <br>
547
+ <?php echo sprintf(__('If you use other plugins for setting Twitter Cards, such as Yoast SEO, the tags you customized with Blog2Social will be overwritten by the other plugins. To allow Blog2Social to apply your changes, please make sure you have <a target="_blank" href="%s">activated Twitter Card settings for Blog2Social only</a> and disable all Twitter Card settings in your other plugins.', 'blog2social'), esc_url('admin.php?page=blog2social-settings')); ?>
548
  <br>
549
  <br>
550
+ <?php esc_html_e('If this post was previously shared or scheduled, your current changes will also affect the look of previously shared or scheduled posts, as Twitter will always pull the most up-to-date information from the Twitter Card tags. If this post has already been shared, it may take up to 7 days for Twitter to update your current changes.', 'blog2social') ?><br>
 
 
551
  <br>
 
552
  <br>
553
+ <?php echo sprintf(__('Your changes will not affect your previously shared social media posts if you have manually disabled the meta tag options in your <a target="_blank" href="%s">Blog2Social settings</a>.', 'blog2social'), esc_url('admin.php?page=blog2social-settings')); ?>
554
  <br>
 
555
  <br>
556
+ <?php echo sprintf(__('For more information on how to set meta tags correctly, you can take a look into the <a target="_blank" href="%s">Twitter Card guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('twitter_card_guide'))); ?>
557
  </div>
558
 
559
  <?php if (B2S_PLUGIN_USER_VERSION == 0) {
views/b2s/html/header.php CHANGED
@@ -106,7 +106,11 @@ $hideFinalTrailModal = $options->_getOption('hide_final_trail');
106
 
107
  <div class="panel panel-group b2s-meta-tags-yoast b2s-meta-tags-success" style="display:<?php echo $showYoast; ?>;">
108
  <div class="panel-body">
109
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php echo esc_html__('You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure that you use only one plugin to set social meta tags so that the networks can show the link preview of your post correctly.', 'blog2social') . ' ' . sprintf(__('Get more information in the <a href="%s" target="_blank">social meta tag guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('open_graph_tags')); ?>
 
 
 
 
110
  </div>
111
  </div>
112
 
106
 
107
  <div class="panel panel-group b2s-meta-tags-yoast b2s-meta-tags-success" style="display:<?php echo $showYoast; ?>;">
108
  <div class="panel-body">
109
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php echo esc_html__('How to use plugin settings for meta tags', 'blog2social'); ?>
110
+ <br>
111
+ <?php echo esc_html__('Please make sure that you only use one plugin for setting meta tags so that the networks can display the link preview of your post correctly.', 'blog2social'); ?>
112
+ <br>
113
+ <?php echo sprintf(__('You will find a checklist for setting Open Graph tags in the <a href="%s" target="_blank">Open Graph Tag guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('yoast_warning_og_guide')); ?>
114
  </div>
115
  </div>
116