Blog2Social: Social Media Auto Post & Scheduler - Version 4.1.0

Version Description

Usabilitiy and Performance Optimization. Select link format or image format individual per posts

Download this release

Release Info

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

Code changes from version 4.0.0 to 4.1.0

assets/css/b2s/settings.css CHANGED
@@ -38,19 +38,6 @@ hr{
38
  margin-top: 0px!important;
39
  }
40
 
41
- .b2s-user-network-settings-post-format-area label > input{
42
- visibility: hidden;
43
- position: absolute;
44
- }
45
- .b2s-user-network-settings-post-format-area label > input + img{
46
- cursor:pointer;
47
- border:2px solid transparent;
48
- }
49
-
50
- .b2s-settings-checked + img{
51
- border:3px solid #79b232 !important
52
- }
53
-
54
  .b2s-display-inline{
55
  display: inline !important;
56
  }
@@ -77,4 +64,16 @@ hr{
77
 
78
  .b2s-post-type-select-btn{
79
  padding: 0 0 1px !important;
80
- }
 
 
 
 
 
 
 
 
 
 
 
 
38
  margin-top: 0px!important;
39
  }
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  .b2s-display-inline{
42
  display: inline !important;
43
  }
64
 
65
  .b2s-post-type-select-btn{
66
  padding: 0 0 1px !important;
67
+ }
68
+
69
+ .btn-label-premium {
70
+ color: #fff !important;
71
+ }
72
+
73
+ .b2s-input-margin-bottom-5{
74
+ margin-bottom: 5px;
75
+ }
76
+
77
+ .font-gray{
78
+ color: #9B9B9B !important;
79
+ }
assets/css/b2s/start.css CHANGED
@@ -74,4 +74,4 @@
74
 
75
  .b2s-dashoard-btn-phone{
76
  cursor: default !important;
77
- }
74
 
75
  .b2s-dashoard-btn-phone{
76
  cursor: default !important;
77
+ }
assets/css/general.css CHANGED
@@ -6754,6 +6754,10 @@ p {
6754
  .glyphicon-info{
6755
  color: #337ab7;
6756
  }
 
 
 
 
6757
  .glyphicon-primary{
6758
  color: #2e6da4;
6759
  }
@@ -6968,6 +6972,10 @@ p {
6968
  padding-left: 0px !important;
6969
  }
6970
 
 
 
 
 
6971
  .del-padding-right {
6972
  padding-right: 0px !important;
6973
  }
6754
  .glyphicon-info{
6755
  color: #337ab7;
6756
  }
6757
+ .glyphicon-grey{
6758
+ color: #76777b;
6759
+ }
6760
+
6761
  .glyphicon-primary{
6762
  color: #2e6da4;
6763
  }
6972
  padding-left: 0px !important;
6973
  }
6974
 
6975
+ .add-padding-left{
6976
+ padding: 0 15px;
6977
+ }
6978
+
6979
  .del-padding-right {
6980
  padding-right: 0px !important;
6981
  }
assets/js/b2s/settings.js CHANGED
@@ -222,7 +222,81 @@ jQuery('#b2s-save-time-settings-btn-trigger').on('click', function () {
222
  jQuery('#b2s-save-time-settings-btn').trigger('click');
223
  });
224
 
225
- jQuery(document).on('change', '.b2s-user-network-settings-post-format', function () {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
  jQuery('.b2s-settings-user-success').hide();
227
  jQuery('.b2s-settings-user-error').hide();
228
  jQuery('.b2s-server-connection-fail').hide();
@@ -258,7 +332,8 @@ jQuery(document).on('change', '.b2s-user-network-settings-post-format', function
258
  }
259
  });
260
  return false;
261
- });
 
262
  jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function () {
263
  jQuery('.b2s-server-connection-fail').hide();
264
  jQuery.ajax({
222
  jQuery('#b2s-save-time-settings-btn').trigger('click');
223
  });
224
 
225
+
226
+ jQuery('.b2sSaveUserSettingsPostFormatFb').validate({
227
+ ignore: "",
228
+ errorPlacement: function () {
229
+ return false;
230
+ },
231
+ submitHandler: function (form) {
232
+ jQuery('.b2s-settings-user-success').hide();
233
+ jQuery('.b2s-settings-user-error').hide();
234
+ jQuery(".b2s-loading-area").show();
235
+ jQuery(".b2s-user-settings-area").hide();
236
+ jQuery('.b2s-server-connection-fail').hide();
237
+ jQuery.ajax({
238
+ processData: false,
239
+ url: ajaxurl,
240
+ type: "POST",
241
+ dataType: "json",
242
+ cache: false,
243
+ data: jQuery(form).serialize(),
244
+ error: function () {
245
+ jQuery('.b2s-server-connection-fail').show();
246
+ return false;
247
+ },
248
+ success: function (data) {
249
+ jQuery(".b2s-loading-area").hide();
250
+ jQuery(".b2s-user-settings-area").show();
251
+ if (data.result == true) {
252
+ jQuery('.b2s-settings-user-success').show();
253
+ } else {
254
+ jQuery('.b2s-settings-user-error').show();
255
+ }
256
+ }
257
+ });
258
+ return false;
259
+ }
260
+ });
261
+
262
+ jQuery('.b2sSaveUserSettingsPostFormatTw').validate({
263
+ ignore: "",
264
+ errorPlacement: function () {
265
+ return false;
266
+ },
267
+ submitHandler: function (form) {
268
+ jQuery('.b2s-settings-user-success').hide();
269
+ jQuery('.b2s-settings-user-error').hide();
270
+ jQuery(".b2s-loading-area").show();
271
+ jQuery(".b2s-user-settings-area").hide();
272
+ jQuery('.b2s-server-connection-fail').hide();
273
+ jQuery.ajax({
274
+ processData: false,
275
+ url: ajaxurl,
276
+ type: "POST",
277
+ dataType: "json",
278
+ cache: false,
279
+ data: jQuery(form).serialize(),
280
+ error: function () {
281
+ jQuery('.b2s-server-connection-fail').show();
282
+ return false;
283
+ },
284
+ success: function (data) {
285
+ jQuery(".b2s-loading-area").hide();
286
+ jQuery(".b2s-user-settings-area").show();
287
+ if (data.result == true) {
288
+ jQuery('.b2s-settings-user-success').show();
289
+ } else {
290
+ jQuery('.b2s-settings-user-error').show();
291
+ }
292
+ }
293
+ });
294
+ return false;
295
+ }
296
+ });
297
+
298
+
299
+ /*jQuery(document).on('change', '.b2s-user-network-settings-post-format', function () {
300
  jQuery('.b2s-settings-user-success').hide();
301
  jQuery('.b2s-settings-user-error').hide();
302
  jQuery('.b2s-server-connection-fail').hide();
332
  }
333
  });
334
  return false;
335
+ });*/
336
+
337
  jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function () {
338
  jQuery('.b2s-server-connection-fail').hide();
339
  jQuery.ajax({
assets/js/b2s/ship.js CHANGED
@@ -273,15 +273,21 @@ jQuery(document).on("click", ".b2s-user-network-settings-post-format", function
273
  jQuery('.b2s-server-connection-fail').hide();
274
 
275
  var networkId = jQuery(this).attr("data-network-id");
 
276
  var postFormat = jQuery(this).val();
277
 
278
- jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-id="' + networkId + '"]').val(postFormat);
279
  //PostFormat
280
- if (jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').length > 0) {
281
  var postFormatText = JSON.parse(jQuery('.b2sNetworkSettingsPostFormatText').val());
282
- jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').html(postFormatText[postFormat]);
 
 
 
 
 
 
283
  }
284
-
285
  //Change View For Twitter
286
  if (postFormat == '0' && networkId == '2') {
287
  jQuery('.b2s-image-remove-btn[data-network-id="' + networkId + '"]').hide();
@@ -297,33 +303,10 @@ jQuery(document).on("click", ".b2s-user-network-settings-post-format", function
297
  }
298
  }
299
 
300
- jQuery('.b2s-user-network-settings-post-format[data-network-id="' + networkId + '"]').removeClass('b2s-settings-checked');
301
  jQuery(this).addClass('b2s-settings-checked');
302
  jQuery('#b2s-post-ship-item-post-format-modal').modal('hide');
303
 
304
- jQuery.ajax({
305
- url: ajaxurl,
306
- type: "POST",
307
- dataType: "json",
308
- cache: false,
309
- data: {
310
- 'action': 'b2s_user_network_settings',
311
- 'post_format': postFormat,
312
- 'network_id': networkId
313
- },
314
- error: function () {
315
- jQuery('.b2s-server-connection-fail').show();
316
- return false;
317
- },
318
- success: function (data) {
319
- jQuery(".b2s-loading-area").hide();
320
- if (data.result == true) {
321
- jQuery('.b2s-settings-user-success').show();
322
- } else {
323
- jQuery('.b2s-settings-user-error').show();
324
- }
325
- }
326
- });
327
  return false;
328
  });
329
 
@@ -368,6 +351,7 @@ jQuery(document).on("click", ".b2s-post-ship-item-message-delete", function () {
368
  jQuery(document).on("click", ".b2s-network-select-btn", function () {
369
  var networkAuthId = jQuery(this).attr('data-network-auth-id');
370
  var networkId = jQuery(this).attr('data-network-id');
 
371
  //doppelklick Schutz
372
  if (!jQuery(this).hasClass('b2s-network-select-btn-deactivate')) {
373
  //aktiv?
@@ -376,9 +360,15 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
376
  if (jQuery('.b2s-post-item[data-network-auth-id="' + networkAuthId + '"]').length > 0 && !jQuery('.b2s-post-item[data-network-auth-id="' + networkAuthId + '"]').hasClass('b2s-post-item-connection-fail-dummy')) {
377
  activatePortal(networkAuthId);
378
  //PostFormat
379
- if (jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').length > 0) {
380
  var postFormatText = JSON.parse(jQuery('.b2sNetworkSettingsPostFormatText').val());
381
- jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').html(postFormatText[jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-id="' + networkId + '"]').val()]);
 
 
 
 
 
 
382
  }
383
  } else {
384
  jQuery(this).addClass('b2s-network-select-btn-deactivate');
@@ -543,19 +533,27 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
543
  jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + data.networkAuthId + '"]').trigger("change");
544
  initSceditor(data.networkAuthId);
545
  //Bild setzen
546
- if (jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + data.networkAuthId + '"]').length > 0 && jQuery('#b2s_blog_default_image').val() != "") {
547
- jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + data.networkAuthId + '"]').attr('src', jQuery('#b2s_blog_default_image').val());
548
- jQuery('.b2s-image-remove-btn[data-network-auth-id="' + data.networkAuthId + '"]').show();
 
 
549
  jQuery('.b2s-image-url-hidden-field').val(jQuery('#b2s_blog_default_image').val());
550
  }
551
-
552
  //Time zone
553
  jQuery('.b2s-settings-time-zone-text').html(jQuery('#user_timezone_text').val());
554
 
555
  //PostFormat
556
- if (jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + data.networkId + '"]').length > 0) {
557
  var postFormatText = JSON.parse(jQuery('.b2sNetworkSettingsPostFormatText').val());
558
- jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + data.networkId + '"]').html(postFormatText[jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-id="' + data.networkId + '"]').val()]);
 
 
 
 
 
 
559
  //Change View For Twitter
560
  if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-id="' + data.networkId + '"]').val() == '0' && data.networkId == '2') {
561
  jQuery('.b2s-image-remove-btn[data-network-id="' + data.networkId + '"]').hide();
@@ -588,8 +586,13 @@ jQuery(document).on('click', '.b2s-submit-btn-scroll', function () {
588
 
589
  jQuery(document).on('click', '.b2s-post-ship-item-post-format', function () {
590
  jQuery('.b2s-user-network-settings-post-format-area').hide();
591
- jQuery('.b2s-user-network-settings-post-format-area[data-network-id="' + jQuery(this).attr('data-network-id') + '"]').show();
592
  jQuery('#b2s-post-ship-item-post-format-network-title').html(jQuery('.b2s-user-network-settings-post-format-area[data-network-id="' + jQuery(this).attr('data-network-id') + '"]').attr('data-network-title'));
 
 
 
 
 
593
  jQuery('#b2s-post-ship-item-post-format-modal').modal('show');
594
  return false;
595
  });
@@ -831,6 +834,8 @@ jQuery(document).on('click', '.b2s-image-change-this-network', function () {
831
  if (jQuery('#b2sInsertImageType').val() == '1') { //HTML-Network
832
  var sceditor = jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').sceditor('instance');
833
  sceditor.insert("<br /><img src='" + jQuery('input[name=image_url]:checked').val() + "'/><br />");
 
 
834
  } else {
835
  jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').attr('src', jQuery('input[name=image_url]:checked').val());
836
  jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').removeClass('b2s-img-required');
273
  jQuery('.b2s-server-connection-fail').hide();
274
 
275
  var networkId = jQuery(this).attr("data-network-id");
276
+ var networkType = jQuery(this).attr("data-network-type");
277
  var postFormat = jQuery(this).val();
278
 
279
+ jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val(postFormat);
280
  //PostFormat
281
+ if (jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').length > 0) {
282
  var postFormatText = JSON.parse(jQuery('.b2sNetworkSettingsPostFormatText').val());
283
+ if (jQuery('#user_version').val() >= 2) {
284
+ jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').html(postFormatText[postFormat]);
285
+ jQuery('.b2s-post-item-details-post-format[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val(postFormat);
286
+ } else {
287
+ jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').html(postFormatText[postFormat]);
288
+ jQuery('.b2s-post-item-details-post-format[data-network-id="' + networkId + '"]').val(postFormat);
289
+ }
290
  }
 
291
  //Change View For Twitter
292
  if (postFormat == '0' && networkId == '2') {
293
  jQuery('.b2s-image-remove-btn[data-network-id="' + networkId + '"]').hide();
303
  }
304
  }
305
 
306
+ jQuery('.b2s-user-network-settings-post-format[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').removeClass('b2s-settings-checked');
307
  jQuery(this).addClass('b2s-settings-checked');
308
  jQuery('#b2s-post-ship-item-post-format-modal').modal('hide');
309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  return false;
311
  });
312
 
351
  jQuery(document).on("click", ".b2s-network-select-btn", function () {
352
  var networkAuthId = jQuery(this).attr('data-network-auth-id');
353
  var networkId = jQuery(this).attr('data-network-id');
354
+ var networkType = jQuery(this).attr('data-network-type');
355
  //doppelklick Schutz
356
  if (!jQuery(this).hasClass('b2s-network-select-btn-deactivate')) {
357
  //aktiv?
360
  if (jQuery('.b2s-post-item[data-network-auth-id="' + networkAuthId + '"]').length > 0 && !jQuery('.b2s-post-item[data-network-auth-id="' + networkAuthId + '"]').hasClass('b2s-post-item-connection-fail-dummy')) {
361
  activatePortal(networkAuthId);
362
  //PostFormat
363
+ if (jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').length > 0) {
364
  var postFormatText = JSON.parse(jQuery('.b2sNetworkSettingsPostFormatText').val());
365
+ if (jQuery('#user_version').val() >= 2) {
366
+ jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').html(postFormatText[jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val()]);
367
+ jQuery('.b2s-post-item-details-post-format[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val());
368
+ } else {
369
+ jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').html(postFormatText[jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val()]);
370
+ jQuery('.b2s-post-item-details-post-format[data-network-id="' + networkId + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val());
371
+ }
372
  }
373
  } else {
374
  jQuery(this).addClass('b2s-network-select-btn-deactivate');
533
  jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + data.networkAuthId + '"]').trigger("change");
534
  initSceditor(data.networkAuthId);
535
  //Bild setzen
536
+ if (jQuery('#b2s_blog_default_image').val() != "") {
537
+ if (jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + data.networkAuthId + '"]').length > 0) {
538
+ jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + data.networkAuthId + '"]').attr('src', jQuery('#b2s_blog_default_image').val());
539
+ jQuery('.b2s-image-remove-btn[data-network-auth-id="' + data.networkAuthId + '"]').show();
540
+ }
541
  jQuery('.b2s-image-url-hidden-field').val(jQuery('#b2s_blog_default_image').val());
542
  }
543
+
544
  //Time zone
545
  jQuery('.b2s-settings-time-zone-text').html(jQuery('#user_timezone_text').val());
546
 
547
  //PostFormat
548
+ if (jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').length > 0) {
549
  var postFormatText = JSON.parse(jQuery('.b2sNetworkSettingsPostFormatText').val());
550
+ if (jQuery('#user_version').val() >= 2) {
551
+ jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').html(postFormatText[jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').val()]);
552
+ jQuery('.b2s-post-item-details-post-format[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').val());
553
+ } else {
554
+ jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + data.networkId + '"]').html(postFormatText[jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').val()]);
555
+ jQuery('.b2s-post-item-details-post-format[data-network-id="' + data.networkId + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + data.networkType + '"][data-network-id="' + data.networkId + '"]').val());
556
+ }
557
  //Change View For Twitter
558
  if (jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-id="' + data.networkId + '"]').val() == '0' && data.networkId == '2') {
559
  jQuery('.b2s-image-remove-btn[data-network-id="' + data.networkId + '"]').hide();
586
 
587
  jQuery(document).on('click', '.b2s-post-ship-item-post-format', function () {
588
  jQuery('.b2s-user-network-settings-post-format-area').hide();
589
+ jQuery('.b2s-user-network-settings-post-format-area[data-network-type="' + jQuery(this).attr('data-network-type') + '"][data-network-id="' + jQuery(this).attr('data-network-id') + '"]').show();
590
  jQuery('#b2s-post-ship-item-post-format-network-title').html(jQuery('.b2s-user-network-settings-post-format-area[data-network-id="' + jQuery(this).attr('data-network-id') + '"]').attr('data-network-title'));
591
+ if (jQuery('#user_version').val() >= 2) {
592
+ jQuery('#b2s-post-ship-item-post-format-network-display-name').html(jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').text().toUpperCase());
593
+ }
594
+ jQuery('.b2s-post-format-settings-info').hide();
595
+ jQuery('.b2s-post-format-settings-info[data-network-id="' + jQuery(this).attr('data-network-id') + '"]').show();
596
  jQuery('#b2s-post-ship-item-post-format-modal').modal('show');
597
  return false;
598
  });
834
  if (jQuery('#b2sInsertImageType').val() == '1') { //HTML-Network
835
  var sceditor = jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').sceditor('instance');
836
  sceditor.insert("<br /><img src='" + jQuery('input[name=image_url]:checked').val() + "'/><br />");
837
+ jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').val(jQuery('input[name=image_url]:checked').val()); //Torial
838
+
839
  } else {
840
  jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').attr('src', jQuery('input[name=image_url]:checked').val());
841
  jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').removeClass('b2s-img-required');
assets/js/b2s/wp/post-meta-box.js CHANGED
@@ -168,7 +168,6 @@ jQuery(document).on('change', '#b2s-post-meta-box-profil-dropdown', function ()
168
  }
169
  });
170
 
171
-
172
  function b2sIsValidUrl(str) {
173
  var pattern = new RegExp(/^(https?:\/\/)?[a-zA-Z0-99ÄÖÜöäü-]+([\-\.]{1}[a-zA-Z0-99ÄÖÜöäü-]+)*\.[a-zA-Z0-9-]{2,20}(:[0-9]{1,5})?(\/.*)?$/);
174
  if (!pattern.test(str)) {
168
  }
169
  });
170
 
 
171
  function b2sIsValidUrl(str) {
172
  var pattern = new RegExp(/^(https?:\/\/)?[a-zA-Z0-99ÄÖÜöäü-]+([\-\.]{1}[a-zA-Z0-99ÄÖÜöäü-]+)*\.[a-zA-Z0-9-]{2,20}(:[0-9]{1,5})?(\/.*)?$/);
173
  if (!pattern.test(str)) {
assets/js/b2s/wp/post-sched-heartbeat.js ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ jQuery(document).on('heartbeat-send', function (e, data) {
2
+ data['b2s_heartbeat'] = 'b2s_listener';
3
+ data['b2s_heartbeat_action'] = 'b2s_delete_sched_post';
4
+ });
includes/Ajax/Get.php CHANGED
@@ -96,7 +96,7 @@ class Ajax_Get {
96
  'network_display_name' => strip_tags(stripslashes($_POST['networkDisplayName'])),
97
  'networkType' => (int) $_POST['networkType']);
98
  $item = new B2S_Ship_Item((int) $_POST['postId'], $userLang);
99
- echo json_encode(array('result' => true, 'networkAuthId' => (int) $_POST['networkAuthId'], 'networkId' => (int) $_POST['networkId'], 'content' => $item->getItemHtml((object) $itemData)));
100
  } else {
101
  echo json_encode(array('result' => false));
102
  }
96
  'network_display_name' => strip_tags(stripslashes($_POST['networkDisplayName'])),
97
  'networkType' => (int) $_POST['networkType']);
98
  $item = new B2S_Ship_Item((int) $_POST['postId'], $userLang);
99
+ echo json_encode(array('result' => true, 'networkAuthId' => (int) $_POST['networkAuthId'],'networkType' => (int) $_POST['networkType'], 'networkId' => (int) $_POST['networkId'], 'content' => $item->getItemHtml((object) $itemData)));
100
  } else {
101
  echo json_encode(array('result' => false));
102
  }
includes/Ajax/Post.php CHANGED
@@ -122,6 +122,7 @@ class Ajax_Post {
122
  }
123
 
124
  public function saveShipData() {
 
125
  require_once (B2S_PLUGIN_DIR . 'includes/B2S/Ship/Save.php');
126
  $post = $_POST;
127
  if (!isset($post['b2s']) || !is_array($post['b2s'])) {
@@ -156,10 +157,11 @@ class Ajax_Post {
156
  'network_type' => isset($data['network_type']) ? $data['network_type'] : '',
157
  'network_display_name' => isset($data['network_display_name']) ? $data['network_display_name'] : '',
158
  'network_auth_id' => $networkAuthId,
 
159
  'user_timezone' => isset($post['user_timezone']) ? $post['user_timezone'] : 0,
160
  'publish_date' => isset($post['publish_date']) ? date('Y-m-d H:i:s', strtotime($post['publish_date'])) : date('Y-m-d H:i:s', current_time('timestamp'))
161
  );
162
-
163
  $oneSchedTimeRemove = false;
164
  if (isset($data['releaseSelect']) && (int) $data['releaseSelect'] == 1 && isset($data['date'][0]) && isset($data['time'][0])) {
165
  if ((int) strtotime(B2S_Util::getUTCForDate($data['date'][0] . ' ' . $data['time'][0], $sendData['user_timezone'] * (-1))) < (int) strtotime(gmdate('Y-m-d H:i:s'))) {
@@ -213,26 +215,22 @@ class Ajax_Post {
213
  echo json_encode(array('result' => true, 'content' => (isset($_POST['short_url']) ? (int) $_POST['short_url'] : 0)));
214
  wp_die();
215
  }
216
- /* if (isset($_POST['auto_share'])) {
217
- if ((int) $_POST['auto_share'] == 1) {
218
- delete_option('B2S_PLUGIN_USER_AUTO_SHARE_' . B2S_PLUGIN_BLOG_USER_ID);
219
- } else {
220
- update_option('B2S_PLUGIN_USER_AUTO_SHARE_' . B2S_PLUGIN_BLOG_USER_ID, 1);
221
- }
222
- echo json_encode(array('result' => true, 'content' => (((int) $_POST['auto_share'] == 1) ? 0 : 1)));
223
- wp_die();
224
- } */
225
-
226
- if (isset($_POST['post_format']) && isset($_POST['network_id'])) {
227
- $post = array('token' => B2S_PLUGIN_TOKEN,
228
- 'action' => 'saveSettings',
229
- 'network_id' => (int) $_POST['network_id'],
230
- 'post_format' => (int) $_POST['post_format']);
231
- $result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, $post));
232
- if ($result->result == true) {
233
- echo json_encode(array('result' => true));
234
- wp_die();
235
  }
 
 
 
 
236
  }
237
 
238
  if (isset($_POST['allow_shortcode'])) {
122
  }
123
 
124
  public function saveShipData() {
125
+
126
  require_once (B2S_PLUGIN_DIR . 'includes/B2S/Ship/Save.php');
127
  $post = $_POST;
128
  if (!isset($post['b2s']) || !is_array($post['b2s'])) {
157
  'network_type' => isset($data['network_type']) ? $data['network_type'] : '',
158
  'network_display_name' => isset($data['network_display_name']) ? $data['network_display_name'] : '',
159
  'network_auth_id' => $networkAuthId,
160
+ 'post_format' => isset($data['post_format']) ? (int)$data['post_format'] : '',
161
  'user_timezone' => isset($post['user_timezone']) ? $post['user_timezone'] : 0,
162
  'publish_date' => isset($post['publish_date']) ? date('Y-m-d H:i:s', strtotime($post['publish_date'])) : date('Y-m-d H:i:s', current_time('timestamp'))
163
  );
164
+
165
  $oneSchedTimeRemove = false;
166
  if (isset($data['releaseSelect']) && (int) $data['releaseSelect'] == 1 && isset($data['date'][0]) && isset($data['time'][0])) {
167
  if ((int) strtotime(B2S_Util::getUTCForDate($data['date'][0] . ' ' . $data['time'][0], $sendData['user_timezone'] * (-1))) < (int) strtotime(gmdate('Y-m-d H:i:s'))) {
215
  echo json_encode(array('result' => true, 'content' => (isset($_POST['short_url']) ? (int) $_POST['short_url'] : 0)));
216
  wp_die();
217
  }
218
+
219
+ if (isset($_POST['type']) && $_POST['type'] == 'post_format') {
220
+ $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
221
+ $post_format = $options->_getOption('post_format');
222
+
223
+ $post_format[(int) $_POST['network_id']] = array();
224
+
225
+ if (isset($_POST['type-format']) && is_array($_POST['type-format'])) {
226
+ $post_format[(int) $_POST['network_id']] = $_POST['type-format'];
227
+ } else {
228
+ $post_format[(int) $_POST['network_id']] = array('all' => $_POST['all']);
 
 
 
 
 
 
 
 
229
  }
230
+
231
+ $options->_setOption('post_format', $post_format);
232
+ echo json_encode(array('result' => true));
233
+ wp_die();
234
  }
235
 
236
  if (isset($_POST['allow_shortcode'])) {
includes/AutoShare.php CHANGED
@@ -13,31 +13,39 @@ class B2S_AutoShare {
13
  private $myTimeSettings = array();
14
  private $current_user_date;
15
  private $setPreFillText;
 
16
 
17
- function __construct($postId = 0, $blogPostData = array(), $current_user_date = '0000-00-00 00:00:00', $myTimeSettings = false, $title = '', $content = '', $url = '', $imageUrl = '', $keywords = '',$b2sPostLang = 'en') {
18
  $this->postId = $postId;
19
  $this->blogPostData = $blogPostData;
20
  $this->current_user_date = $current_user_date;
21
  $this->myTimeSettings = $myTimeSettings;
22
- $this->title =$title;
23
- $this->content = B2S_Util::prepareContent($postId, $content, $url, false,true,$b2sPostLang);
24
- $this->contentHtml = B2S_Util::prepareContent($postId, $content, $url, '<p><h1><h2><br><i><b><a><img>',true,$b2sPostLang);
25
  $this->url = $url;
26
  $this->imageUrl = $imageUrl;
27
  $this->keywords = $keywords;
 
28
  $this->setPreFillText = array(0 => array(1 => 239, 2 => 116, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200), 1 => array(1 => 239, 3 => 239, 8 => 1200, 10 => 442), 2 => array(1 => 239, 8 => 239, 10 => 442));
 
29
  }
30
 
31
  public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
32
  if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
33
  $postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
34
 
 
 
 
 
 
35
  //Special
36
  if ($networkId == 1 || $networkId == 3) {
37
- $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId]) : $this->content;
38
  }
39
  if ($networkId == 2) {
40
- $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt(strip_tags($this->title), (int) $this->setPreFillText[$networkType][$networkId]) : strip_tags($this->title);
41
  }
42
  if ($networkId == 4) {
43
  $postData['custom_title'] = strip_tags($this->title);
@@ -51,7 +59,7 @@ class B2S_AutoShare {
51
 
52
  if ($networkId == 6 || $networkId == 12) {
53
  if ($this->imageUrl !== false) {
54
- $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId]) : $this->content;
55
  $postData['content'] .= $this->getHashTagsString();
56
  } else {
57
  return false;
@@ -66,14 +74,14 @@ class B2S_AutoShare {
66
  }
67
  }
68
  if ($networkId == 8) {
69
- $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId]) : $this->content;
70
  if ($networkType != 0) {
71
  $postData['custom_title'] = strip_tags($this->title);
72
  }
73
  }
74
  if ($networkId == 9) {
75
  $postData['custom_title'] = $this->title;
76
- $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId]) : $this->content;
77
  if (is_array($this->keywords) && !empty($this->keywords)) {
78
  foreach ($this->keywords as $tag) {
79
  $postData['tags'][] = $tag->name;
@@ -82,7 +90,7 @@ class B2S_AutoShare {
82
  }
83
 
84
  if ($networkId == 10) {
85
- $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId]) : $this->content;
86
  $postData['content'] .= $this->getHashTagsString();
87
  }
88
 
13
  private $myTimeSettings = array();
14
  private $current_user_date;
15
  private $setPreFillText;
16
+ private $optionPostFormat;
17
 
18
+ function __construct($postId = 0, $blogPostData = array(), $current_user_date = '0000-00-00 00:00:00', $myTimeSettings = false, $title = '', $content = '', $url = '', $imageUrl = '', $keywords = '', $b2sPostLang = 'en', $optionPostFormat = array()) {
19
  $this->postId = $postId;
20
  $this->blogPostData = $blogPostData;
21
  $this->current_user_date = $current_user_date;
22
  $this->myTimeSettings = $myTimeSettings;
23
+ $this->title = $title;
24
+ $this->content = B2S_Util::prepareContent($postId, $content, $url, false, true, $b2sPostLang);
25
+ $this->contentHtml = B2S_Util::prepareContent($postId, $content, $url, '<p><h1><h2><br><i><b><a><img>', true, $b2sPostLang);
26
  $this->url = $url;
27
  $this->imageUrl = $imageUrl;
28
  $this->keywords = $keywords;
29
+ $this->optionPostFormat = $optionPostFormat;
30
  $this->setPreFillText = array(0 => array(1 => 239, 2 => 116, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200), 1 => array(1 => 239, 3 => 239, 8 => 1200, 10 => 442), 2 => array(1 => 239, 8 => 239, 10 => 442));
31
+ $this->setPreFillTextLimit = array(0 => array(1 => 400, 2 => 116, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500), 2 => array(1 => 400, 8 => 400, 10 => 500));
32
  }
33
 
34
  public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
35
  if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
36
  $postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
37
 
38
+ //PostFormat
39
+ if ($networkId == 1 || $networkId == 2) {
40
+ $postData['post_format'] = ((isset($this->optionPostFormat[$networkId]) && is_array($this->optionPostFormat[$networkId]) && ((isset($this->optionPostFormat[$networkId]['all']) && (int)$this->optionPostFormat[$networkId]['all'] == 0) || (isset($this->optionPostFormat[$networkId][$networkType]) && (int) $this->optionPostFormat[$networkId][$networkType] == 0)) ) ? 0 : (!isset($this->optionPostFormat[$networkId]) ? 0 : 1 ));
41
+ }
42
+
43
  //Special
44
  if ($networkId == 1 || $networkId == 3) {
45
+ $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
46
  }
47
  if ($networkId == 2) {
48
+ $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt(strip_tags($this->title), (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : strip_tags($this->title);
49
  }
50
  if ($networkId == 4) {
51
  $postData['custom_title'] = strip_tags($this->title);
59
 
60
  if ($networkId == 6 || $networkId == 12) {
61
  if ($this->imageUrl !== false) {
62
+ $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
63
  $postData['content'] .= $this->getHashTagsString();
64
  } else {
65
  return false;
74
  }
75
  }
76
  if ($networkId == 8) {
77
+ $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
78
  if ($networkType != 0) {
79
  $postData['custom_title'] = strip_tags($this->title);
80
  }
81
  }
82
  if ($networkId == 9) {
83
  $postData['custom_title'] = $this->title;
84
+ $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
85
  if (is_array($this->keywords) && !empty($this->keywords)) {
86
  foreach ($this->keywords as $tag) {
87
  $postData['tags'][] = $tag->name;
90
  }
91
 
92
  if ($networkId == 10) {
93
+ $postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
94
  $postData['content'] .= $this->getHashTagsString();
95
  }
96
 
includes/B2S/Heartbeat.php CHANGED
@@ -12,9 +12,12 @@ class B2S_Heartbeat {
12
  }
13
 
14
  public function init($response, $data) {
 
15
  if (isset($data['b2s_heartbeat']) && $data['b2s_heartbeat'] == 'b2s_listener') {
16
  if (isset($data['b2s_heartbeat_action']) && $data['b2s_heartbeat_action'] == 'b2s_auto_posting') {
17
  $this->postSchedToServer();
 
 
18
  } else {
19
  $this->postSchedToServer();
20
  $this->updateUserSchedTimePost();
12
  }
13
 
14
  public function init($response, $data) {
15
+
16
  if (isset($data['b2s_heartbeat']) && $data['b2s_heartbeat'] == 'b2s_listener') {
17
  if (isset($data['b2s_heartbeat_action']) && $data['b2s_heartbeat_action'] == 'b2s_auto_posting') {
18
  $this->postSchedToServer();
19
+ } if (isset($data['b2s_heartbeat_action']) && $data['b2s_heartbeat_action'] == 'b2s_delete_sched_post') {
20
+ $this->deleteUserSchedPost();
21
  } else {
22
  $this->postSchedToServer();
23
  $this->updateUserSchedTimePost();
includes/B2S/Network/Item.php CHANGED
@@ -88,7 +88,7 @@ class B2S_Network_Item {
88
  $html .='<div class="media-body network">';
89
  $html .= '<h4>' . ucfirst($networkName);
90
  if ($maxNetworkAccount !== false) {
91
- $html .=' <span class="b2s-network-auth-count">(' . __('max. accounts', 'blog2social') . ': ' . $maxNetworkAccount . ' <a target="_blank" class="b2s-network-get-more-btn" href="' . $priceBtn . '">' . __('get more', 'blog2social') . '</a>)</span>';
92
  }
93
  $html .= '<span class="pull-right">';
94
 
@@ -96,10 +96,10 @@ class B2S_Network_Item {
96
  $html .= in_array($networkId, $this->allowProfil) ? '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profile\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Profile', 'blog2social') . '</a>' : '';
97
 
98
  if (in_array($networkId, $this->allowPage)) {
99
- $html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $networkId == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($networkId == 1 || $networkId == 10))) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Page', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn" data-title="' . __('You want to connect a network page?', 'blog2social') . '" data-toggle="modal" data-type="auth-network" data-target="#'.((B2S_PLUGIN_USER_VERSION ==0) ? 'b2sPreFeatureModal' :'b2sProFeatureModal').'">+ ' . __('Page', 'blog2social') . '</a>';
100
  }
101
  if (in_array($networkId, $this->allowGroup)) {
102
- $html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 1 && $networkId != 8)) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Group', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn" data-toggle="modal" data-title="' . __('You want to connect a social media group?', 'blog2social') . '" data-type="auth-network" data-target="#'.((B2S_PLUGIN_USER_VERSION ==0) ? 'b2sPreFeatureModal' :'b2sProFeatureModal').'">+ ' . __('Group', 'blog2social') . '</a>';
103
  }
104
 
105
  $html .= '</span></h4>';
@@ -114,11 +114,13 @@ class B2S_Network_Item {
114
  $html .= __('Profile', 'blog2social') . ': ' . stripslashes($v['networkUserName']) . '</span> ';
115
  }
116
 
117
- $html .= '<a class="b2s-network-item-auth-list-btn-delete" data-network-auth-id="' . $v['networkAuthId'] . '" href="#">' . __('Delete', 'blog2social') . '</a>';
118
- $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profil&update=' . $v['networkAuthId'] . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Reconnect', 'blog2social') . '</a>' : '';
 
 
119
  $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <span class="label label-danger b2s-network-auth-update-label" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Authorization is interrupted since', 'blog2social') . ' ' . ($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate']))) . '</span>' : '';
120
  if ($v['notAllow'] !== false) {
121
- $html .='<span class="no-allow-info-text">' . __('To reactivate this social media connection,', 'blog2social') . ' <a href="' . B2S_Tools::getSupportLink('affiliate') . '"target="_blank">' . __('please upgrade', 'blog2social') . '</a></s>';
122
  }
123
 
124
  $html .= '</li>';
@@ -134,8 +136,10 @@ class B2S_Network_Item {
134
  $html .= __('Page', 'blog2social') . ': ' . stripslashes($v['networkUserName']) . '</span> ';
135
  }
136
 
137
- $html .= '<a class="b2s-network-item-auth-list-btn-delete" data-network-auth-id="' . $v['networkAuthId'] . '" href="#">' . __('Delete', 'blog2social') . '</a>';
138
- $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=page&update=' . $v['networkAuthId'] . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Reconnect', 'blog2social') . '</a>' : '';
 
 
139
  $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <span class="label label-danger b2s-network-auth-update-label" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Authorization is interrupted since', 'blog2social') . ' ' . ($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate']))) . '</span>' : '';
140
 
141
  if ($v['notAllow'] !== false) {
@@ -153,8 +157,11 @@ class B2S_Network_Item {
153
  } else {
154
  $html .= __('Group', 'blog2social') . ': ' . stripslashes($v['networkUserName']) . '</span> ';
155
  }
156
- $html .= '<a class="b2s-network-item-auth-list-btn-delete" data-network-auth-id="' . $v['networkAuthId'] . '" href="#">' . __('Delete', 'blog2social') . '</a>';
157
- $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=group&update=' . $v['networkAuthId'] . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Reconnect', 'blog2social') . '</a>' : '';
 
 
 
158
  $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <span class="label label-danger b2s-network-auth-update-label" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Authorization is interrupted since', 'blog2social') . ' ' . ($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate']))) . '</span>' : '';
159
 
160
  if ($v['notAllow'] !== false) {
88
  $html .='<div class="media-body network">';
89
  $html .= '<h4>' . ucfirst($networkName);
90
  if ($maxNetworkAccount !== false) {
91
+ $html .=' <span class="b2s-network-auth-count">(' . __('max. accounts', 'blog2social') . ': ' . $maxNetworkAccount . ' <a target="_blank" class="b2s-network-get-more-btn" href="' . $priceBtn . '">' . __('need more', 'blog2social') . '?</a>)</span>';
92
  }
93
  $html .= '<span class="pull-right">';
94
 
96
  $html .= in_array($networkId, $this->allowProfil) ? '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profile\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Profile', 'blog2social') . '</a>' : '';
97
 
98
  if (in_array($networkId, $this->allowPage)) {
99
+ $html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $networkId == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($networkId == 1 || $networkId == 10))) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Page', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn" data-title="' . __('You want to connect a network page?', 'blog2social') . '" data-toggle="modal" data-type="auth-network" data-target="#' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModal' : 'b2sProFeatureModal') . '">+ ' . __('Page', 'blog2social') . '</a>';
100
  }
101
  if (in_array($networkId, $this->allowGroup)) {
102
+ $html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 1 && $networkId != 8)) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Group', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn" data-toggle="modal" data-title="' . __('You want to connect a social media group?', 'blog2social') . '" data-type="auth-network" data-target="#' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModal' : 'b2sProFeatureModal') . '">+ ' . __('Group', 'blog2social') . '</a>';
103
  }
104
 
105
  $html .= '</span></h4>';
114
  $html .= __('Profile', 'blog2social') . ': ' . stripslashes($v['networkUserName']) . '</span> ';
115
  }
116
 
117
+ if ($v['notAllow'] === false) {
118
+ $html .= '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profil&update=' . $v['networkAuthId'] . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn add-padding-left" data-network-auth-id="' . $v['networkAuthId'] . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
119
+ }
120
+ $html .= '<a class="b2s-network-item-auth-list-btn-delete" data-network-auth-id="' . $v['networkAuthId'] . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
121
  $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <span class="label label-danger b2s-network-auth-update-label" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Authorization is interrupted since', 'blog2social') . ' ' . ($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate']))) . '</span>' : '';
122
  if ($v['notAllow'] !== false) {
123
+ $html .='<div class="no-allow-info-text">' . __('To reactivate this social media connection,', 'blog2social') . ' <a href="' . B2S_Tools::getSupportLink('affiliate') . '"target="_blank">' . __('please upgrade', 'blog2social') . '</a></div>';
124
  }
125
 
126
  $html .= '</li>';
136
  $html .= __('Page', 'blog2social') . ': ' . stripslashes($v['networkUserName']) . '</span> ';
137
  }
138
 
139
+ if ($v['notAllow'] === false) {
140
+ $html .= '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=page&update=' . $v['networkAuthId'] . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn add-padding-left" data-network-auth-id="' . $v['networkAuthId'] . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
141
+ }
142
+ $html .= '<a class="b2s-network-item-auth-list-btn-delete" data-network-auth-id="' . $v['networkAuthId'] . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
143
  $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <span class="label label-danger b2s-network-auth-update-label" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Authorization is interrupted since', 'blog2social') . ' ' . ($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate']))) . '</span>' : '';
144
 
145
  if ($v['notAllow'] !== false) {
157
  } else {
158
  $html .= __('Group', 'blog2social') . ': ' . stripslashes($v['networkUserName']) . '</span> ';
159
  }
160
+
161
+ if ($v['notAllow'] === false) {
162
+ $html .= '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=group&update=' . $v['networkAuthId'] . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn add-padding-left" data-network-auth-id="' . $v['networkAuthId'] . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
163
+ }
164
+ $html .= '<a class="b2s-network-item-auth-list-btn-delete" data-network-auth-id="' . $v['networkAuthId'] . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
165
  $html .= ($v['expiredDate'] != '0000-00-00' && $v['expiredDate'] <= date('Y-m-d')) ? ' <span class="label label-danger b2s-network-auth-update-label" data-network-auth-id="' . $v['networkAuthId'] . '">' . __('Authorization is interrupted since', 'blog2social') . ' ' . ($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate']))) . '</span>' : '';
166
 
167
  if ($v['notAllow'] !== false) {
includes/B2S/Post/Item.php CHANGED
@@ -283,7 +283,7 @@ class B2S_Post_Item {
283
  $addLeftJoinWhere = ((int) $this->searchUserAuthId != 0) ? ' details.`network_auth_id` =' . $this->searchUserAuthId . ' AND ' : '';
284
  $where = ($this->type == 'publish') ? " (posts.`sched_date`= '0000-00-00 00:00:00' OR posts.`sched_type` = 3) " : " posts.`sched_type` != 3 AND posts.`publish_date` = '0000-00-00 00:00:00'";
285
  $sqlPostsTotal = "SELECT COUNT(posts.`post_id`) FROM `b2s_posts` posts $addLeftJoin WHERE $addLeftJoinWhere $where $addNotAdmin $addSearchShowByDate AND posts.`hide` = 0 AND posts.`post_id` = " . $post_id;
286
- return $wpdb->get_var($sqlPostsTotal);
287
  }
288
  return 0;
289
  }
@@ -418,12 +418,12 @@ class B2S_Post_Item {
418
  return false;
419
  }
420
 
421
- public function getSchedPostDataHtml($post_id = 0, $showByDate = '',$userAuthId=0) {
422
  if ($post_id > 0) {
423
  global $wpdb;
424
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `b2s_posts`.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
425
  $addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
426
- $addSearchUserAuthId = ($userAuthId != 0) ? " AND `b2s_posts_network_details`.`network_auth_id` =".$userAuthId." " : '';
427
  $sqlData = $wpdb->prepare("SELECT `b2s_posts`.`id`,`blog_user_id`,`v2_id`, `sched_date`,`b2s_posts_network_details`.`network_id`,`b2s_posts_network_details`.`network_type`,`b2s_posts_network_details`.`network_display_name` FROM `b2s_posts` LEFT JOIN `b2s_posts_network_details` ON `b2s_posts`.`network_details_id` = `b2s_posts_network_details`.`id` WHERE `b2s_posts`.`hide` = 0 AND `b2s_posts`.`sched_type` != 3 AND `b2s_posts`.`publish_date` = '0000-00-00 00:00:00' $addNotAdminPosts $addSearchShowByDate $addSearchUserAuthId AND `b2s_posts`.`post_id` = %d ORDER BY `b2s_posts`.`sched_date` ASC ", $post_id);
428
  $result = $wpdb->get_results($sqlData);
429
  if (!empty($result) && is_array($result)) {
@@ -444,8 +444,7 @@ class B2S_Post_Item {
444
  <p class="info">' . $networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' ) . ' | ' . __('scheduled by', 'blog2social') . ' <a href="' . get_author_posts_url($var->blog_user_id) . '">' . (isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-') . '</a> <span class="b2s-post-sched-area-sched-time" data-post-id="' . $var->id . '">' . B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2)) . '</span></p>
445
  <p class="info">';
446
 
447
- $content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-sched-area-drop-btn" data-post-id="' . $var->id . '">' : '<a href="#" data-toggle="modal" data-title="' . __('You want to delete an scheduled post entry?', 'blog2social') . '" data-target="#b2sPreFeatureModal" >';
448
- $content .= __('delete scheduling', 'blog2social') . '</a> ';
449
 
450
  if ((int) $var->v2_id == 0) {
451
  $content .= '|';
@@ -457,9 +456,9 @@ class B2S_Post_Item {
457
  </div>
458
  </li>';
459
  }
460
- $content .='<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
461
- $content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a class="checkbox-post-sched-all-btn" data-blog-post-id="' . $post_id . '" href="#">' : '<a href="#" data-toggle="modal" data-title="' . __('You want to delete an scheduled post entry?', 'blog2social') . '" data-target="#b2sPreFeatureModal" >';
462
- $content .= __('delete scheduling', 'blog2social') . '</a></label></li>';
463
  $content .= '</ul></div></div>';
464
  return $content;
465
  }
283
  $addLeftJoinWhere = ((int) $this->searchUserAuthId != 0) ? ' details.`network_auth_id` =' . $this->searchUserAuthId . ' AND ' : '';
284
  $where = ($this->type == 'publish') ? " (posts.`sched_date`= '0000-00-00 00:00:00' OR posts.`sched_type` = 3) " : " posts.`sched_type` != 3 AND posts.`publish_date` = '0000-00-00 00:00:00'";
285
  $sqlPostsTotal = "SELECT COUNT(posts.`post_id`) FROM `b2s_posts` posts $addLeftJoin WHERE $addLeftJoinWhere $where $addNotAdmin $addSearchShowByDate AND posts.`hide` = 0 AND posts.`post_id` = " . $post_id;
286
+ return $wpdb->get_var($sqlPostsTotal);
287
  }
288
  return 0;
289
  }
418
  return false;
419
  }
420
 
421
+ public function getSchedPostDataHtml($post_id = 0, $showByDate = '', $userAuthId = 0) {
422
  if ($post_id > 0) {
423
  global $wpdb;
424
  $addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `b2s_posts`.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
425
  $addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
426
+ $addSearchUserAuthId = ($userAuthId != 0) ? " AND `b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
427
  $sqlData = $wpdb->prepare("SELECT `b2s_posts`.`id`,`blog_user_id`,`v2_id`, `sched_date`,`b2s_posts_network_details`.`network_id`,`b2s_posts_network_details`.`network_type`,`b2s_posts_network_details`.`network_display_name` FROM `b2s_posts` LEFT JOIN `b2s_posts_network_details` ON `b2s_posts`.`network_details_id` = `b2s_posts_network_details`.`id` WHERE `b2s_posts`.`hide` = 0 AND `b2s_posts`.`sched_type` != 3 AND `b2s_posts`.`publish_date` = '0000-00-00 00:00:00' $addNotAdminPosts $addSearchShowByDate $addSearchUserAuthId AND `b2s_posts`.`post_id` = %d ORDER BY `b2s_posts`.`sched_date` ASC ", $post_id);
428
  $result = $wpdb->get_results($sqlData);
429
  if (!empty($result) && is_array($result)) {
444
  <p class="info">' . $networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' ) . ' | ' . __('scheduled by', 'blog2social') . ' <a href="' . get_author_posts_url($var->blog_user_id) . '">' . (isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-') . '</a> <span class="b2s-post-sched-area-sched-time" data-post-id="' . $var->id . '">' . B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2)) . '</span></p>
445
  <p class="info">';
446
 
447
+ $content .= '<a href="#" class="b2s-post-sched-area-drop-btn" data-post-id="' . $var->id . '"> ' . __('delete scheduling', 'blog2social') . '</a> ';
 
448
 
449
  if ((int) $var->v2_id == 0) {
450
  $content .= '|';
456
  </div>
457
  </li>';
458
  }
459
+ $content .= '<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
460
+ $content .= '<a class="checkbox-post-sched-all-btn" data-blog-post-id="' . $post_id . '" href="#"> ' . __('delete scheduling', 'blog2social');
461
+ $content .= '</a></label></li>';
462
  $content .= '</ul></div></div>';
463
  return $content;
464
  }
includes/B2S/Settings/Item.php CHANGED
@@ -7,12 +7,14 @@ class B2S_Settings_Item {
7
  private $settings = array();
8
  private $lang;
9
  private $allowPage;
 
10
  private $allowGroup;
11
  private $timeInfo;
12
 
13
  public function __construct() {
14
  $this->getSettings();
15
  $this->getSchedDataByUser();
 
16
  $this->lang = substr(B2S_LANGUAGE, 0, 2);
17
  $this->allowPage = unserialize(B2S_PLUGIN_NETWORK_ALLOW_PAGE);
18
  $this->allowGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_GROUP);
@@ -52,13 +54,11 @@ class B2S_Settings_Item {
52
  public function getGeneralSettingsHtml() {
53
 
54
  $isCheckedAllowShortcode = (get_option('B2S_PLUGIN_USER_ALLOW_SHORTCODE_' . B2S_PLUGIN_BLOG_USER_ID) !== false) ? 1 : 0;
55
- $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
56
- $optionAutoPost = $options->_getOption('auto_post');
57
- $optionUserTimeZone = $options->_getOption('user_time_zone');
58
  $userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
59
  $userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
60
  $userInfo = get_user_meta(B2S_PLUGIN_BLOG_USER_ID);
61
-
62
  $isChecked = (isset($this->settings->short_url) && (int) $this->settings->short_url == 0) ? 1 : 0;
63
 
64
  $content = '';
@@ -71,7 +71,7 @@ class B2S_Settings_Item {
71
  $content .= '</select>';
72
  $content .= '<a href="#" data-toggle="modal" data-target="#b2sInfoTimeZoneModal" class="btn btn-link btn-lg hidden-xs"><span class="glyphicon glyphicon-info-sign glyphicon-success"></span></a>';
73
  $content .='</div>';
74
- $content .='<br><div class="b2s-settings-time-zone-info">' . __('Timezone for Scheduling', 'blog2social') . ' ('.__('User', 'blog2social').': '.(isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-').') <code id="b2s-user-time">' . B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2)) . '</code></span></div>';
75
  $content .='</div>';
76
  $content .='<div class="clearfix"></div>';
77
  $content .= '<br>';
@@ -122,71 +122,125 @@ class B2S_Settings_Item {
122
  return $content;
123
  }
124
 
125
- public function getNetworkSettingsHtml($view = 'general') { //view=ship (Modal)
126
- $content ='';
127
- if ($view != 'ship') {
128
- $content .= '<h4>' . __('Facebook post format', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoFormatModal" class="btn btn-link btn-lg del-padding-left"><span class="glyphicon glyphicon-info-sign glyphicon-success"></span></a></h4>';
 
 
 
 
 
129
  }
130
 
131
- $content .='<div class="b2s-user-network-settings-post-format-area col-md-12" ' . (($view != 'ship') ? '' : 'data-network-id="1" data-network-title="Facebook" style="display:none;"') . '>';
 
 
 
132
 
133
- $content .='<div class="col-md-' . (($view != 'ship') ? 4 : 6) . ' col-xs-12">';
134
- $content .= '<b>1) ' . __('Link Post', 'blog2social') . ' <span class="glyphicon glyphicon-link b2s-color-green"></span></b><br><br>';
135
- $content .= '<label><input type="radio" name="b2s-user-network-settings-post-format-1" class="b2s-user-network-settings-post-format ' . (((isset($this->settings->network_post_format_1) && (int) $this->settings->network_post_format_1 == 0) || !isset($this->settings->network_post_format_1)) ? 'b2s-settings-checked' : '') . '" data-network-id="1" value="0"/><img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-1-1-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
136
- $content .='</label>';
137
- if ($view == 'ship') {
138
- $content .='<br><br>';
139
- $content .= __('The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. Link posts display the post image, you selected in your WordPress. In case, you have not selected a post image, some networks display the first image detected on your page. The image links to your blog post.', 'blog2social');
140
- }
141
- $content .='</div>';
142
 
143
- $content .='<div class="col-md-' . (($view != 'ship') ? 4 : 6) . ' col-xs-12">';
144
- $content .= '<b>2) ' . __('Photo Post', 'blog2social') . ' <span class="glyphicon glyphicon-picture b2s-color-green"></span></b><br><br>';
145
- $content .= '<label><input type="radio" name="b2s-user-network-settings-post-format-1" class="b2s-user-network-settings-post-format ' . ((isset($this->settings->network_post_format_1) && (int) $this->settings->network_post_format_1 == 1) ? 'b2s-settings-checked' : '') . '" data-network-id="1" value="1" /><img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-1-2-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
146
- $content .='</label>';
147
- if ($view == 'ship') {
148
- $content .='<br><br>';
149
- $content .= __('A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook you can edit the album’s name with a description of your choice.', 'blog2social');
 
 
 
 
 
 
 
 
 
 
150
  }
151
- $content .='</div>';
152
- $content .='</div>';
 
 
 
 
153
 
154
- if ($view != 'ship') {
155
- $content .='<br>';
156
- $content .= '<h4>' . __('Twitter post format', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoFormatModal" class="btn btn-link btn-lg del-padding-left"><span class="glyphicon glyphicon-info-sign glyphicon-success"></span></a></h4>';
 
 
 
 
157
  }
158
 
159
- $content .='<div class="b2s-user-network-settings-post-format-area col-md-12" ' . (($view != 'ship') ? '' : 'data-network-id="2" data-network-title="Twitter" style="display:none;"') . '>';
 
 
 
 
 
 
160
 
161
- $content .='<div class="col-md-' . (($view != 'ship') ? 4 : 6) . ' col-xs-12">';
 
162
  $content .= '<b>1) ' . __('Link Post', 'blog2social') . ' <span class="glyphicon glyphicon-link b2s-color-green"></span></b><br><br>';
163
- $content .= '<label><input type="radio" name="b2s-user-network-settings-post-format-2" class="b2s-user-network-settings-post-format ' . (((isset($this->settings->network_post_format_2) && (int) $this->settings->network_post_format_2 == 0) || !isset($this->settings->network_post_format_2)) ? 'b2s-settings-checked' : '') . '" data-network-id="2" value="0"/><img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-2-1-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
164
- $content .='</label>';
165
- if ($view == 'ship') {
166
- $content .='<br><br>';
167
- $content .= __('The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. Link posts display the post image, you selected in your WordPress. In case, you have not selected a post image, some networks display the first image detected on your page. The image links to your blog post.', 'blog2social');
 
 
 
 
 
 
168
  }
169
  $content .='</div>';
 
170
 
171
- $content .='<div class="col-md-' . (($view != 'ship') ? 4 : 6) . ' col-xs-12">';
172
  $content .= '<b>2) ' . __('Photo Post', 'blog2social') . ' <span class="glyphicon glyphicon-picture b2s-color-green"></span></b><br><br>';
173
- $content .= '<label><input type="radio" name="b2s-user-network-settings-post-format-2" class="b2s-user-network-settings-post-format ' . ((isset($this->settings->network_post_format_2) && (int) $this->settings->network_post_format_2 == 1) ? 'b2s-settings-checked' : '') . '" data-network-id="2" value="1" /><img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-2-2-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
174
- $content .='</label>';
175
- if ($view == 'ship') {
176
- $content .='<br><br>';
177
- $content .= __('A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook you can edit the album’s name with a description of your choice.', 'blog2social');
 
 
 
 
 
 
178
  }
179
  $content .='</div>';
180
  $content .='</div>';
181
-
182
  return $content;
183
  }
184
 
185
  //view=ship
186
  public function setNetworkSettingsHtml() {
187
- $content = "<input type='hidden' class='b2sNetworkSettingsPostFormatCurrent' data-network-id='1' value='" . (int) $this->settings->network_post_format_1 . "' />";
188
- $content .="<input type='hidden' class='b2sNetworkSettingsPostFormatCurrent' data-network-id='2' value='" . (int) $this->settings->network_post_format_2 . "' />";
189
- $content .="<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array(__('Link Post', 'blog2social'), __('Photo Post', 'blog2social'))) . "'/>";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  return $content;
191
  }
192
 
7
  private $settings = array();
8
  private $lang;
9
  private $allowPage;
10
+ private $options;
11
  private $allowGroup;
12
  private $timeInfo;
13
 
14
  public function __construct() {
15
  $this->getSettings();
16
  $this->getSchedDataByUser();
17
+ $this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
18
  $this->lang = substr(B2S_LANGUAGE, 0, 2);
19
  $this->allowPage = unserialize(B2S_PLUGIN_NETWORK_ALLOW_PAGE);
20
  $this->allowGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_GROUP);
54
  public function getGeneralSettingsHtml() {
55
 
56
  $isCheckedAllowShortcode = (get_option('B2S_PLUGIN_USER_ALLOW_SHORTCODE_' . B2S_PLUGIN_BLOG_USER_ID) !== false) ? 1 : 0;
57
+ $optionAutoPost = $this->options->_getOption('auto_post');
58
+ $optionUserTimeZone = $this->options->_getOption('user_time_zone');
 
59
  $userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
60
  $userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
61
  $userInfo = get_user_meta(B2S_PLUGIN_BLOG_USER_ID);
 
62
  $isChecked = (isset($this->settings->short_url) && (int) $this->settings->short_url == 0) ? 1 : 0;
63
 
64
  $content = '';
71
  $content .= '</select>';
72
  $content .= '<a href="#" data-toggle="modal" data-target="#b2sInfoTimeZoneModal" class="btn btn-link btn-lg hidden-xs"><span class="glyphicon glyphicon-info-sign glyphicon-success"></span></a>';
73
  $content .='</div>';
74
+ $content .='<br><div class="b2s-settings-time-zone-info">' . __('Timezone for Scheduling', 'blog2social') . ' (' . __('User', 'blog2social') . ': ' . (isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-') . ') <code id="b2s-user-time">' . B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2)) . '</code></span></div>';
75
  $content .='</div>';
76
  $content .='<div class="clearfix"></div>';
77
  $content .= '<br>';
122
  return $content;
123
  }
124
 
125
+ public function getNetworkSettingsHtml() {
126
+ $optionPostFormat = $this->options->_getOption('post_format');
127
+ $content = '';
128
+
129
+ if (B2S_PLUGIN_USER_VERSION < 2) {
130
+ $content .='<div class="alert alert-default">';
131
+ $content .= '<b>' . __('Did you know?', 'blog2social') . '</b><br>';
132
+ $content .= __('Beginning with Premium Pro, you can change the custom post format photo post or link post for each individual social media post and channel (profile, page, group), deviate from the default settings.', 'blog2social') . ' <a target="_blank" href="' . B2S_Tools::getSupportLink('affiliate') . '">' . __('Upgrade to Premium Pro now.', 'blog2social') . '</a>';
133
+ $content .='<hr></div>';
134
  }
135
 
136
+ foreach (array(1, 2) as $n => $networkId) { //FB,TW
137
+ $type = ($networkId == 1) ? array(0, 1, 2) : array(0);
138
+ foreach ($type as $t => $typeId) { //Profile,Page,Group
139
+ $networkName = ($networkId == 1) ? 'Facebook' : 'Twitter';
140
 
141
+ $linkPost = ((isset($optionPostFormat[$networkId]) && is_array($optionPostFormat[$networkId]) && ((isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 0) || (isset($optionPostFormat[$networkId][$typeId]) && (int) $optionPostFormat[$networkId][$typeId] == 0)) ) ? 'b2s-settings-checked' : (!isset($optionPostFormat[$networkId]) ? 'b2s-settings-checked' : '' ));
142
+ $photoPost = empty($linkPost) ? 'b2s-settings-checked' : '';
 
 
 
 
 
 
 
143
 
144
+ $content .='<div class="b2s-user-network-settings-post-format-area col-md-12" data-network-type="' . $typeId . '" data-network-id="' . $networkId . '" data-network-title="' . $networkName . '" style="display:none;" >';
145
+ $content .='<div class="col-md-6 col-xs-12">';
146
+ $content .= '<b>1) ' . __('Link Post', 'blog2social') . ' <span class="glyphicon glyphicon-link b2s-color-green"></span></b><br><br>';
147
+ $content .= '<label><input type="radio" name="b2s-user-network-settings-post-format-' . $networkId . '" class="b2s-user-network-settings-post-format ' . $linkPost . '" data-network-type="' . $typeId . '" data-network-id="' . $networkId . '" value="0"/><img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-' . $networkId . '-1-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
148
+ $content .='</label>';
149
+ $content .='<br><br>';
150
+ $content .= __('The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. Link posts display the post image, you selected in your WordPress. In case, you have not selected a post image, some networks display the first image detected on your page. The image links to your blog post.', 'blog2social');
151
+ $content .='</div>';
152
+ $content .='<div class="col-md-6 col-xs-12">';
153
+ $content .= '<b>2) ' . __('Photo Post', 'blog2social') . ' <span class="glyphicon glyphicon-picture b2s-color-green"></span></b><br><br>';
154
+ $content .= '<label><input type="radio" name="b2s-user-network-settings-post-format-' . $networkId . '" class="b2s-user-network-settings-post-format ' . $photoPost . '" data-network-type="' . $typeId . '" data-network-id="' . $networkId . '" value="1" /><img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-' . $networkId . '-2-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
155
+ $content .='</label>';
156
+ $content .='<br><br>';
157
+ $content .= __('A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook you can edit the album’s name with a description of your choice.', 'blog2social');
158
+ $content .='</div>';
159
+ $content .='</div>';
160
+ }
161
  }
162
+ return $content;
163
+ }
164
+
165
+ public function getNetworkSettingsPostFormatHtml($networkId = 1) {
166
+
167
+ $optionPostFormat = $this->options->_getOption('post_format');
168
 
169
+ //Take old settings
170
+ if (!isset($optionPostFormat[$networkId])) {
171
+ $oldPostFormatSettings = ($networkId == 1) ? (isset($this->settings->network_post_format_1) ? (int) $this->settings->network_post_format_1 : 0) : (isset($this->settings->network_post_format_2) ? (int) $this->settings->network_post_format_2 : 1); // Twitter Default Photopost
172
+ $post_format[$networkId] = array();
173
+ $post_format[$networkId] = array('all' => $oldPostFormatSettings);
174
+ $optionPostFormat = $post_format;
175
+ $this->options->_setOption('post_format', $post_format);
176
  }
177
 
178
+ $premiumInfoType = (B2S_PLUGIN_USER_VERSION < 2) ? '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><span class="label label-success"><a target="_blank" class="btn-label-premium" href="' . B2S_Tools::getSupportLink('affiliate') . '">PREMIUM</a></span></div>' : '';
179
+ $premiumInfoAll = (B2S_PLUGIN_USER_VERSION == 0) ? '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><span class="label label-success"><a target="_blank" class="btn-label-premium" href="' . B2S_Tools::getSupportLink('affiliate') . '">PREMIUM</a></span></div>' : '';
180
+ $disabledInputType = (B2S_PLUGIN_USER_VERSION < 2) ? 'disabled' : '';
181
+ $disabledInputAll = (B2S_PLUGIN_USER_VERSION == 0) ? 'disabled' : '';
182
+ $disabledTextType = (B2S_PLUGIN_USER_VERSION < 2) ? 'font-gray' : '';
183
+ $disabledTextAll = (B2S_PLUGIN_USER_VERSION == 0) ? 'font-gray' : '';
184
+ $textAll = ($networkId == 1) ? __('All', 'blog2social') : __('Profile', 'blog2social');
185
 
186
+ $content = '';
187
+ $content .='<div class="col-md-6 col-xs-12">';
188
  $content .= '<b>1) ' . __('Link Post', 'blog2social') . ' <span class="glyphicon glyphicon-link b2s-color-green"></span></b><br><br>';
189
+ $content .= '<img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-' . $networkId . '-1-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
190
+ $content .= '<br><br>';
191
+ $content .='<div class="padding-left-15">';
192
+
193
+ if ((B2S_PLUGIN_USER_VERSION < 2 && $networkId == 1) || $networkId == 2) {
194
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right b2s-input-margin-bottom-5"><input type="radio" ' . $disabledInputAll . ' id="all-' . $networkId . '-1" ' . ( (isset($optionPostFormat[$networkId]) && is_array($optionPostFormat[$networkId]) && isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 0) ? 'checked' : ((!isset($optionPostFormat[$networkId])) ? 'checked' : '' )) . ' name="all" value="0"><label class="' . $disabledTextAll . '" for="all-' . $networkId . '-1">' . $textAll . '</label></div> ' . $premiumInfoAll . '<div class="clearfix"></div>';
195
+ }
196
+ if ($networkId == 1) {
197
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><input type="radio" ' . $disabledInputType . ' id="type[0]-' . $networkId . '-1" ' . ((isset($optionPostFormat[$networkId][0]) && (int) $optionPostFormat[$networkId][0] == 0) ? 'checked' : ( isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 0 && !isset($optionPostFormat[$networkId][0])) ? 'checked' : '') . ' name="type-format[0]" value="0"><label class="' . $disabledTextType . '" for="type[0]-' . $networkId . '-1">' . __('Profile', 'blog2social') . '</label></div> ' . $premiumInfoType . '<div class="clearfix"></div>';
198
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><input type="radio" ' . $disabledInputType . ' id="type[1]-' . $networkId . '-1" ' . ( (isset($optionPostFormat[$networkId][1]) && (int) $optionPostFormat[$networkId][1] == 0) ? 'checked' : ( isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 0 && !isset($optionPostFormat[$networkId][0])) ? 'checked' : '') . ' name="type-format[1]" value="0"><label class="' . $disabledTextType . '" for="type[1]-' . $networkId . '-1">' . __('Page', 'blog2social') . '</label></div> ' . $premiumInfoType . '<div class="clearfix"></div>';
199
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><input type="radio" ' . $disabledInputType . ' id="type[2]-' . $networkId . '-1" ' . ( (isset($optionPostFormat[$networkId][2]) && (int) $optionPostFormat[$networkId][2] == 0) ? 'checked' : ( isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 0 && !isset($optionPostFormat[$networkId][0])) ? 'checked' : '') . ' name="type-format[2]" value="0"><label class="' . $disabledTextType . '" for="type[2]-' . $networkId . '-1">' . __('Group', 'blog2social') . '</label></div> ' . $premiumInfoType . '<div class="clearfix"></div>';
200
  }
201
  $content .='</div>';
202
+ $content .='</div>';
203
 
204
+ $content .='<div class="col-md-6 col-xs-12">';
205
  $content .= '<b>2) ' . __('Photo Post', 'blog2social') . ' <span class="glyphicon glyphicon-picture b2s-color-green"></span></b><br><br>';
206
+ $content .= '<img class="img-responsive b2s-display-inline" src="' . plugins_url('/assets/images/settings/b2s-post-format-' . $networkId . '-2-' . (($this->lang == 'de') ? $this->lang : 'en') . '.png', B2S_PLUGIN_FILE) . '">';
207
+ $content .= '<br><br>';
208
+ $content .='<div class="padding-left-15">';
209
+
210
+ if ((B2S_PLUGIN_USER_VERSION < 2 && $networkId == 1) || $networkId == 2) {
211
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right b2s-input-margin-bottom-5"><input type="radio" ' . $disabledInputAll . ' id="all-' . $networkId . '-2" ' . ((isset($optionPostFormat[$networkId]) && is_array($optionPostFormat[$networkId]) && isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 1) ? 'checked' : '') . ' name="all" value="1"><label class="' . $disabledTextAll . '" for="all-' . $networkId . '-2">' . $textAll . '</label></div> ' . $premiumInfoAll . '<div class="clearfix"></div>';
212
+ }
213
+ if ($networkId == 1) {
214
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><input type="radio" ' . $disabledInputType . ' id="type[0]-' . $networkId . '-2" ' . ( (isset($optionPostFormat[$networkId][0]) && (int) $optionPostFormat[$networkId][0] == 1) ? 'checked' : ( isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 1 && !isset($optionPostFormat[$networkId][0])) ? 'checked' : '') . ' name="type-format[0]" value="1"><label class="' . $disabledTextType . '" for="type[0]-' . $networkId . '-2">' . __('Profile', 'blog2social') . '</label></div> ' . $premiumInfoType . '<div class="clearfix"></div>';
215
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><input type="radio" ' . $disabledInputType . ' id="type[1]-' . $networkId . '-2" ' . ( (isset($optionPostFormat[$networkId][1]) && (int) $optionPostFormat[$networkId][1] == 1) ? 'checked' : ( isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 1 && !isset($optionPostFormat[$networkId][1])) ? 'checked' : '') . ' name="type-format[1]" value="1"><label class="' . $disabledTextType . '" for="type[1]-' . $networkId . '-2">' . __('Page', 'blog2social') . '</label></div> ' . $premiumInfoType . '<div class="clearfix"></div>';
216
+ $content .= '<div class="col-lg-3 col-md-4 col-xs-5 del-padding-left del-padding-right"><input type="radio" ' . $disabledInputType . ' id="type[2]-' . $networkId . '-2" ' . ( (isset($optionPostFormat[$networkId][2]) && (int) $optionPostFormat[$networkId][2] == 1) ? 'checked' : ( isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 1 && !isset($optionPostFormat[$networkId][1])) ? 'checked' : '') . ' name="type-format[2]" value="1"><label class="' . $disabledTextType . '" for="type[2]-' . $networkId . '-2">' . __('Group', 'blog2social') . '</label></div> ' . $premiumInfoType . '<div class="clearfix"></div>';
217
  }
218
  $content .='</div>';
219
  $content .='</div>';
 
220
  return $content;
221
  }
222
 
223
  //view=ship
224
  public function setNetworkSettingsHtml() {
225
+ $optionPostFormat = $this->options->_getOption('post_format');
226
+
227
+ $content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array(__('Link Post', 'blog2social'), __('Photo Post', 'blog2social'))) . "'/>";
228
+ foreach (array(1, 2) as $n => $networkId) { //FB,TW
229
+ //Take old settings
230
+ if (!isset($optionPostFormat[$networkId])) {
231
+ $oldPostFormatSettings = ($networkId == 1) ? (isset($this->settings->network_post_format_1) ? (int) $this->settings->network_post_format_1 : 0) : (isset($this->settings->network_post_format_2) ? (int) $this->settings->network_post_format_2 : 1); // Twitter Default Photopost
232
+ $post_format[$networkId] = array();
233
+ $post_format[$networkId] = array('all' => $oldPostFormatSettings);
234
+ $optionPostFormat = $post_format;
235
+ $this->options->_setOption('post_format', $post_format);
236
+ }
237
+
238
+ $type = ($networkId == 1) ? array(0, 1, 2) : array(0);
239
+ foreach ($type as $t => $typeId) { //Profile,Page,Group
240
+ $value = ((isset($optionPostFormat[$networkId]) && is_array($optionPostFormat[$networkId]) && ((isset($optionPostFormat[$networkId]['all']) && (int) $optionPostFormat[$networkId]['all'] == 0) || (isset($optionPostFormat[$networkId][$typeId]) && (int) $optionPostFormat[$networkId][$typeId] == 0)) ) ? 0 : (!isset($optionPostFormat[$networkId]) ? 0 : 1 ));
241
+ $content .= "<input type='hidden' class='b2sNetworkSettingsPostFormatCurrent' data-network-id='" . $networkId . "' data-network-type='" . $typeId . "' value='" . (int) $value . "' />";
242
+ }
243
+ }
244
  return $content;
245
  }
246
 
includes/B2S/Ship/Item.php CHANGED
@@ -24,8 +24,11 @@ class B2S_Ship_Item {
24
  private $showGroups = array(8, 15);
25
  private $hideGroupName = array(8);
26
  private $setShortTextProfile = array(1 => 239, 2 => 116, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200);
 
27
  private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 1200, 10 => 442);
 
28
  private $setShortTextGroup = array(1 => 239, 8 => 239, 10 => 442);
 
29
  private $allowHashTags = array(6, 10, 12);
30
  private $limitCharacterProfile = array(2 => 140, 3 => 600, 6 => 500, 8 => 420, 9 => 250, 15 => 300, 12 => 2000);
31
  private $showImageArea = array(6, 7, 10, 12);
@@ -83,7 +86,7 @@ class B2S_Ship_Item {
83
  //ShortText
84
  if (isset($this->setShortTextProfile[$data->networkId]) && (int) $this->setShortTextProfile[$data->networkId] > 0) {
85
  $preContent = ($data->networkId == 2) ? B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang);
86
- $message = B2S_Util::getExcerpt($preContent, (int) $this->setShortTextProfile[$data->networkId]);
87
  } else {
88
  $message = (in_array($data->networkId, $this->allowTitleProfile) ? (in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang));
89
  }
@@ -127,7 +130,7 @@ class B2S_Ship_Item {
127
  if ($data->networkId == 8) { //Xing -1 Leerzeichen
128
  $this->setShortTextPage[$data->networkId] = (int) $this->setShortTextPage[$data->networkId] - mb_strlen($this->postUrl, 'UTF-8') - 1;
129
  }
130
- $message = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $this->setShortTextPage[$data->networkId]);
131
  } else {
132
  $message = (in_array($data->networkId, $this->allowTitlePage) ? (in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang));
133
  }
@@ -153,7 +156,7 @@ class B2S_Ship_Item {
153
  //group
154
  //ShortText
155
  if (isset($this->setShortTextGroup[$data->networkId]) && (int) $this->setShortTextGroup[$data->networkId] > 0) {
156
- $message = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $this->setShortTextGroup[$data->networkId]);
157
  } else {
158
  $message = (in_array($data->networkId, $this->allowTitleGroup) ? (in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang));
159
  }
@@ -197,7 +200,8 @@ class B2S_Ship_Item {
197
  $content .= '<div class="pull-right hidden-xs b2s-post-item-info-area">';
198
 
199
  if (in_array($data->networkId, $this->setPostFormat) && B2S_PLUGIN_USER_VERSION > 0) {
200
- $content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-post-format" data-network-id="' . $data->networkId . '" >' . __('post format', 'blog2social') . ': <span class="b2s-post-ship-item-post-format-text" data-network-id="' . $data->networkId . '" ></span></button> | ';
 
201
  }
202
  if (in_array($data->networkId, $this->getText)) {
203
  $content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-full-text" data-network-auth-id="' . $data->networkAuthId . '" >' . __('Insert full-text', 'blog2social') . '</button> | ';
@@ -307,7 +311,11 @@ class B2S_Ship_Item {
307
  }
308
  } else {
309
  $edit = '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-text-limit="' . $limitValue . '" data-network-auth-id="' . $networkAuthId . '" placeholder="' . __('Write something about your post...', 'blog2social') . '" name="b2s[' . $networkAuthId . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . $message . '</textarea>';
 
310
  $edit .= $this->getUrlHtml($networkId, $networkAuthId, $limit, $limitValue);
 
 
 
311
  }
312
  return $edit;
313
  }
24
  private $showGroups = array(8, 15);
25
  private $hideGroupName = array(8);
26
  private $setShortTextProfile = array(1 => 239, 2 => 116, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200);
27
+ private $setShortTextProfileLimit = array(1 => 400, 2 => 116, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200);
28
  private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 1200, 10 => 442);
29
+ private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 1200, 10 => 500);
30
  private $setShortTextGroup = array(1 => 239, 8 => 239, 10 => 442);
31
+ private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
32
  private $allowHashTags = array(6, 10, 12);
33
  private $limitCharacterProfile = array(2 => 140, 3 => 600, 6 => 500, 8 => 420, 9 => 250, 15 => 300, 12 => 2000);
34
  private $showImageArea = array(6, 7, 10, 12);
86
  //ShortText
87
  if (isset($this->setShortTextProfile[$data->networkId]) && (int) $this->setShortTextProfile[$data->networkId] > 0) {
88
  $preContent = ($data->networkId == 2) ? B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang);
89
+ $message = B2S_Util::getExcerpt($preContent, (int) $this->setShortTextProfile[$data->networkId], (int) $this->setShortTextProfileLimit[$data->networkId]);
90
  } else {
91
  $message = (in_array($data->networkId, $this->allowTitleProfile) ? (in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang));
92
  }
130
  if ($data->networkId == 8) { //Xing -1 Leerzeichen
131
  $this->setShortTextPage[$data->networkId] = (int) $this->setShortTextPage[$data->networkId] - mb_strlen($this->postUrl, 'UTF-8') - 1;
132
  }
133
+ $message = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $this->setShortTextPage[$data->networkId], (int) $this->setShortTextPageLimit[$data->networkId]);
134
  } else {
135
  $message = (in_array($data->networkId, $this->allowTitlePage) ? (in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang));
136
  }
156
  //group
157
  //ShortText
158
  if (isset($this->setShortTextGroup[$data->networkId]) && (int) $this->setShortTextGroup[$data->networkId] > 0) {
159
+ $message = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $this->setShortTextGroup[$data->networkId], (int) $this->setShortTextGroupLimit[$data->networkId]);
160
  } else {
161
  $message = (in_array($data->networkId, $this->allowTitleGroup) ? (in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang));
162
  }
200
  $content .= '<div class="pull-right hidden-xs b2s-post-item-info-area">';
201
 
202
  if (in_array($data->networkId, $this->setPostFormat) && B2S_PLUGIN_USER_VERSION > 0) {
203
+ $content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-post-format" data-network-auth-id="' . $data->networkAuthId . '" data-network-type="'.$data->networkType.'" data-network-id="' . $data->networkId . '" >' . __('post format', 'blog2social') . ': <span class="b2s-post-ship-item-post-format-text" data-network-type="'.$data->networkType.'" data-network-id="' . $data->networkId . '" ></span></button> | ';
204
+ $content .= '<input type="hidden" class="b2s-post-item-details-post-format" name="b2s[' . $data->networkAuthId . '][post_format]" data-network-auth-id="' . $data->networkAuthId . '" data-network-id="' . $data->networkId . '" data-network-type="' . $data->networkType . '" value="0" />';
205
  }
206
  if (in_array($data->networkId, $this->getText)) {
207
  $content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-full-text" data-network-auth-id="' . $data->networkAuthId . '" >' . __('Insert full-text', 'blog2social') . '</button> | ';
311
  }
312
  } else {
313
  $edit = '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-text-limit="' . $limitValue . '" data-network-auth-id="' . $networkAuthId . '" placeholder="' . __('Write something about your post...', 'blog2social') . '" name="b2s[' . $networkAuthId . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . $message . '</textarea>';
314
+
315
  $edit .= $this->getUrlHtml($networkId, $networkAuthId, $limit, $limitValue);
316
+ if ($networkId == 14) { //FeatureImage Network Torial (Portfolio)
317
+ $edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" value="" name="b2s[' . $networkAuthId . '][image_url]">';
318
+ }
319
  }
320
  return $edit;
321
  }
includes/Init.php CHANGED
@@ -34,7 +34,6 @@ class B2S_Init {
34
  define('B2S_PLUGIN_API_ENDPOINT_AUTH', 'https://developer.blog2social.com/wp/v3/network/auth.php');
35
  define('B2S_PLUGIN_PRG_API_ENDPOINT', 'http://developer.pr-gateway.de/wp/v3/');
36
  define('B2S_PLUGIN_SERVER_URL', 'https://developer.blog2social.com');
37
- //define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'PRO', 2 => 'Business', 3 => 'Premium', 7 => 'PRO', 8 => 'PRO', 9 => 'Business', 10 => 'Premium', 11 => 'Smart')));
38
  define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'Smart', 2 => 'Pro', 3 => 'Business', 4 => 'Premium')));
39
  define('B2S_PLUGIN_NETWORK', serialize(array(1 => 'Facebook', 2 => 'Twitter', 3 => 'Linkedin', 4 => 'Tumblr', 5 => 'Storify', 6 => 'Pinterest', 7 => 'Flickr', 8 => 'Xing', 9 => 'Diigo', 10 => 'Google+', 11 => 'Medium', 12 => 'Instagram', 13 => 'Delicious', 14 => 'Torial', 15 => 'Reddit')));
40
  define('B2S_PLUGIN_SCHED_DEFAULT_TIMES', serialize(array(1 => array(18, 22), 2 => array(8, 10), 3 => array(8, 10), 4 => array(16, 22), 5 => array(), 6 => array(19, 22), 7 => array(7, 9), 8 => array(7, 10), 9 => array(16, 19), 10 => array(7, 10), 11 => array(16, 19), 12 => array(19, 22), 13 => array(11, 13), 14 => array(18, 22), 15 => array(8, 11))));
@@ -50,25 +49,45 @@ class B2S_Init {
50
  add_action('admin_init', array($this, 'registerAssets'));
51
  add_action('admin_enqueue_scripts', array($this, 'addBootAssets'));
52
  add_action('admin_menu', array($this, 'createMenu'));
53
- add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
 
54
  add_action('admin_notices', array('B2S_Notice', 'getProVersionNotice'));
55
  add_action('admin_notices', array($this, 'b2s_save_post_alert_meta_box'));
56
  add_action('add_meta_boxes', array($this, 'b2s_init_meta_box'));
57
  add_action('save_post', array($this, 'b2s_save_meta_box'));
 
 
 
 
58
  add_filter('wp_footer', array($this, 'b2s_get_full_content'), 99); //for shortcodes
59
- add_action('admin_bar_menu', array($this, 'createToolbarMenu'), 94);
60
 
61
  Ajax_Get::getInstance();
62
  Ajax_Post::getInstance();
 
63
  if ((int) B2S_PLUGIN_BLOG_USER_ID > 0) {
64
  $this->getToken();
65
  $this->getUserDetails();
66
  }
67
-
68
- add_filter('plugin_action_links_' . B2S_PLUGIN_BASENAME, array($this, 'plugin_activate_sublink'));
69
  $this->plugin_init_language();
70
  }
71
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  public function b2s_get_full_content() {
73
  if (isset($_GET['b2s_get_full_content'])) {
74
  $b2sPostContent = do_shortcode(get_the_content());
@@ -114,7 +133,7 @@ class B2S_Init {
114
  $user_timezone = isset($_POST['b2s-user-timezone']) ? $_POST['b2s-user-timezone'] : 0;
115
  $current_utc_date = gmdate('Y-m-d H:i:s');
116
  $current_user_date = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($current_utc_date, $user_timezone)));
117
-
118
  //WP User Sched Post + B2S Share NOW FRIST SAVE
119
  $post_date = '';
120
  if (isset($_POST['post_date']) && !empty($_POST['post_date'])) {
@@ -176,7 +195,11 @@ class B2S_Init {
176
  'board' => '', 'group' => '', 'url' => $url, 'user_timezone' => $user_timezone); // 'publish_date' => $sched_date, OLD FOR Share Now?
177
 
178
  $defaultBlogPostData = array('post_id' => (int) $_POST['post_ID'], 'blog_user_id' => (int) $_POST['user_ID'], 'user_timezone' => $user_timezone, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
179
- $autoShare = new B2S_AutoShare((int) $_POST['post_ID'], $defaultBlogPostData, $current_user_date, $myTimeSettings, $title, $content, $url, $image_url, $keywords, $b2sPostLang);
 
 
 
 
180
  define('B2S_SAVE_META_BOX_AUTO_SHARE', $_POST['post_ID']);
181
  if (isset($_POST['b2s-user-last-selected-profile-id']) && (int) $_POST['b2s-user-last-selected-profile-id'] != (int) $_POST['b2s-post-meta-box-profil-dropdown'] && (int) $_POST['b2s-post-meta-box-profil-dropdown'] != 0) {
182
  update_option('B2S_PLUGIN_SAVE_META_BOX_AUTO_SHARE_PROFILE_USER_' . $_POST['user_ID'], (int) $_POST['b2s-post-meta-box-profil-dropdown']);
@@ -396,6 +419,7 @@ class B2S_Init {
396
 
397
  //PageFunktion
398
  public function b2sstart() {
 
399
  if (B2S_Tools::showNotice() == false) {
400
  wp_enqueue_style('B2SSTARTCSS');
401
  wp_enqueue_script('B2SSTARTJS');
@@ -542,6 +566,7 @@ class B2S_Init {
542
 
543
  public function addBootAssets() {
544
  wp_enqueue_script('B2SVALIDATEJS');
 
545
  }
546
 
547
  public function addAssets() {
@@ -578,6 +603,7 @@ class B2S_Init {
578
  wp_register_script('PRGLOGINJS', plugins_url('assets/js/prg/login.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
579
  wp_register_script('B2SBOOTJS', plugins_url('assets/js/general.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
580
  wp_register_script('B2SVALIDATEJS', plugins_url('assets/js/validate.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
 
581
  wp_register_script('B2SGENERALJS', plugins_url('assets/js/b2s/general.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
582
  wp_register_script('B2SDATEPICKERJS', plugins_url('assets/lib/datepicker/js/bootstrap-datepicker.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
583
  wp_register_script('B2SDATEPICKERDEJS', plugins_url('assets/lib/datepicker/locales/bootstrap-datepicker.de_DE.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
@@ -593,6 +619,7 @@ class B2S_Init {
593
  wp_register_script('B2SWYSIWYGLANGDEJS', plugins_url('assets/lib/wysiwyg/languages/de.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
594
  wp_register_script('B2SWYSIWYGLANGENJS', plugins_url('assets/lib/wysiwyg/languages/en.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
595
  wp_register_script('B2SMETABOXJS', plugins_url('assets/js/b2s/wp/post-meta-box.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
 
596
  }
597
 
598
  public function activatePlugin() {
34
  define('B2S_PLUGIN_API_ENDPOINT_AUTH', 'https://developer.blog2social.com/wp/v3/network/auth.php');
35
  define('B2S_PLUGIN_PRG_API_ENDPOINT', 'http://developer.pr-gateway.de/wp/v3/');
36
  define('B2S_PLUGIN_SERVER_URL', 'https://developer.blog2social.com');
 
37
  define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'Smart', 2 => 'Pro', 3 => 'Business', 4 => 'Premium')));
38
  define('B2S_PLUGIN_NETWORK', serialize(array(1 => 'Facebook', 2 => 'Twitter', 3 => 'Linkedin', 4 => 'Tumblr', 5 => 'Storify', 6 => 'Pinterest', 7 => 'Flickr', 8 => 'Xing', 9 => 'Diigo', 10 => 'Google+', 11 => 'Medium', 12 => 'Instagram', 13 => 'Delicious', 14 => 'Torial', 15 => 'Reddit')));
39
  define('B2S_PLUGIN_SCHED_DEFAULT_TIMES', serialize(array(1 => array(18, 22), 2 => array(8, 10), 3 => array(8, 10), 4 => array(16, 22), 5 => array(), 6 => array(19, 22), 7 => array(7, 9), 8 => array(7, 10), 9 => array(16, 19), 10 => array(7, 10), 11 => array(16, 19), 12 => array(19, 22), 13 => array(11, 13), 14 => array(18, 22), 15 => array(8, 11))));
49
  add_action('admin_init', array($this, 'registerAssets'));
50
  add_action('admin_enqueue_scripts', array($this, 'addBootAssets'));
51
  add_action('admin_menu', array($this, 'createMenu'));
52
+ add_action('admin_bar_menu', array($this, 'createToolbarMenu'), 94);
53
+
54
  add_action('admin_notices', array('B2S_Notice', 'getProVersionNotice'));
55
  add_action('admin_notices', array($this, 'b2s_save_post_alert_meta_box'));
56
  add_action('add_meta_boxes', array($this, 'b2s_init_meta_box'));
57
  add_action('save_post', array($this, 'b2s_save_meta_box'));
58
+ add_action('trash_post', array($this, 'b2s_delete_sched_post'), 10);
59
+
60
+ add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
61
+ add_filter('plugin_action_links_' . B2S_PLUGIN_BASENAME, array($this, 'plugin_activate_sublink'));
62
  add_filter('wp_footer', array($this, 'b2s_get_full_content'), 99); //for shortcodes
63
+
64
 
65
  Ajax_Get::getInstance();
66
  Ajax_Post::getInstance();
67
+
68
  if ((int) B2S_PLUGIN_BLOG_USER_ID > 0) {
69
  $this->getToken();
70
  $this->getUserDetails();
71
  }
 
 
72
  $this->plugin_init_language();
73
  }
74
 
75
+ public function b2s_delete_sched_post($post_id) {
76
+ if ((int) $post_id > 0) {
77
+ global $wpdb;
78
+ //Heartbeat => b2s_delete_sched_post
79
+ $sql = "SELECT id FROM b2s_posts WHERE post_id = %s AND hook_action <= %s AND hide = %s AND sched_date_utc != %s AND publish_date = %s";
80
+ $deleteData = $wpdb->get_results($wpdb->prepare($sql, $post_id, 2, 0, "0000-00 00:00:00", "0000-00 00:00:00", ARRAY_A));
81
+ if (isset($deleteData[0])) {
82
+ foreach ($deleteData as $k => $value) {
83
+ $data = array('hook_action' => '3', 'hide' => 1);
84
+ $where = array('id' => $value->id);
85
+ $wpdb->update('b2s_posts', $data, $where, array('%d'), array('%d'));
86
+ }
87
+ }
88
+ }
89
+ }
90
+
91
  public function b2s_get_full_content() {
92
  if (isset($_GET['b2s_get_full_content'])) {
93
  $b2sPostContent = do_shortcode(get_the_content());
133
  $user_timezone = isset($_POST['b2s-user-timezone']) ? $_POST['b2s-user-timezone'] : 0;
134
  $current_utc_date = gmdate('Y-m-d H:i:s');
135
  $current_user_date = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($current_utc_date, $user_timezone)));
136
+
137
  //WP User Sched Post + B2S Share NOW FRIST SAVE
138
  $post_date = '';
139
  if (isset($_POST['post_date']) && !empty($_POST['post_date'])) {
195
  'board' => '', 'group' => '', 'url' => $url, 'user_timezone' => $user_timezone); // 'publish_date' => $sched_date, OLD FOR Share Now?
196
 
197
  $defaultBlogPostData = array('post_id' => (int) $_POST['post_ID'], 'blog_user_id' => (int) $_POST['user_ID'], 'user_timezone' => $user_timezone, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
198
+
199
+ $options = new B2S_Options((int) $_POST['user_ID']);
200
+ $optionPostFormat = $options->_getOption('post_format');
201
+
202
+ $autoShare = new B2S_AutoShare((int) $_POST['post_ID'], $defaultBlogPostData, $current_user_date, $myTimeSettings, $title, $content, $url, $image_url, $keywords, $b2sPostLang, $optionPostFormat);
203
  define('B2S_SAVE_META_BOX_AUTO_SHARE', $_POST['post_ID']);
204
  if (isset($_POST['b2s-user-last-selected-profile-id']) && (int) $_POST['b2s-user-last-selected-profile-id'] != (int) $_POST['b2s-post-meta-box-profil-dropdown'] && (int) $_POST['b2s-post-meta-box-profil-dropdown'] != 0) {
205
  update_option('B2S_PLUGIN_SAVE_META_BOX_AUTO_SHARE_PROFILE_USER_' . $_POST['user_ID'], (int) $_POST['b2s-post-meta-box-profil-dropdown']);
419
 
420
  //PageFunktion
421
  public function b2sstart() {
422
+
423
  if (B2S_Tools::showNotice() == false) {
424
  wp_enqueue_style('B2SSTARTCSS');
425
  wp_enqueue_script('B2SSTARTJS');
566
 
567
  public function addBootAssets() {
568
  wp_enqueue_script('B2SVALIDATEJS');
569
+ wp_enqueue_script('B2SPOSTSCHEDHEARTBEATJS');
570
  }
571
 
572
  public function addAssets() {
603
  wp_register_script('PRGLOGINJS', plugins_url('assets/js/prg/login.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
604
  wp_register_script('B2SBOOTJS', plugins_url('assets/js/general.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
605
  wp_register_script('B2SVALIDATEJS', plugins_url('assets/js/validate.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
606
+
607
  wp_register_script('B2SGENERALJS', plugins_url('assets/js/b2s/general.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
608
  wp_register_script('B2SDATEPICKERJS', plugins_url('assets/lib/datepicker/js/bootstrap-datepicker.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
609
  wp_register_script('B2SDATEPICKERDEJS', plugins_url('assets/lib/datepicker/locales/bootstrap-datepicker.de_DE.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
619
  wp_register_script('B2SWYSIWYGLANGDEJS', plugins_url('assets/lib/wysiwyg/languages/de.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
620
  wp_register_script('B2SWYSIWYGLANGENJS', plugins_url('assets/lib/wysiwyg/languages/en.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
621
  wp_register_script('B2SMETABOXJS', plugins_url('assets/js/b2s/wp/post-meta-box.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
622
+ wp_register_script('B2SPOSTSCHEDHEARTBEATJS', plugins_url('assets/js/b2s/wp/post-sched-heartbeat.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
623
  }
624
 
625
  public function activatePlugin() {
includes/MetaBox.php CHANGED
@@ -21,7 +21,8 @@ class B2S_MetaBox {
21
  $userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
22
  $userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
23
  $selectedProfileID = get_option('B2S_PLUGIN_SAVE_META_BOX_AUTO_SHARE_PROFILE_USER_' . B2S_PLUGIN_BLOG_USER_ID);
24
-
 
25
  if (B2S_PLUGIN_USER_VERSION > 0) {
26
  if ($postId > 0) {
27
  global $wpdb;
@@ -48,10 +49,9 @@ class B2S_MetaBox {
48
  <input type="hidden" id="b2sPostLang" name="b2s-post-lang" value="' . substr($this->postLang, 0, 2) . '">
49
  <input type="hidden" id="b2s-user-timezone" name="b2s-user-timezone" value="' . $userTimeZoneOffset . '"/>
50
  <input type="hidden" id="b2s-post-status" name="b2s-post-status" value="' . trim(strtolower($postStatus)) . '"/>
51
- <input type="hidden" id="b2s-user-publish-date" name="b2s-user-publish-date" value=""/>
52
  <input type="hidden" id="b2s-redirect-url-custom-share" name="b2s-redirect-url-custom-share" value="' . $this->b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-ship&postId=' . $postId . '"/>
53
  <div id="b2s-server-connection-fail" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-server-connection-fail" title="close notice"></button>' . __('The connection to the server failed. Try again!', 'blog2social') . '</div>
54
- <div id="b2s-heartbeat-fail" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-heartbeat-fail" title="close notice"></button>' . __('WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social!', 'blog2social') . '</div>
55
  <div id="b2s-post-meta-box-state-no-auth" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-post-meta-box-state-no-auth" title="close notice"></button>' . __('There are no authorizations for your selected profile. Please, authorize with a social network or select a other profile.', 'blog2social') . '<a href="' . $this->b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-network' . '" target="_bank">' . __('Network settings', 'blog2social') . '</a></div>
56
  <div id="b2s-post-meta-box-state-no-publish-future" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-post-meta-box-state-no-publish-future" title="close notice"></button>' . __('Your post is still on draft or pending status. Please make sure that your post is published or scheduled to be published on this blog. You can then auto-post or schedule and customize your social media posts with Blog2Social.', 'blog2social') . '</div>
57
  <div id="b2s-url-valid-warning" class="b2s-info-warning"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-url-valid-warning" title="close notice"></button>' . __('Notice: Please make sure, that your website address is reachable. The Social Networks do not allow postings from local installations.', 'blog2social') . '</div>
@@ -153,7 +153,7 @@ class B2S_MetaBox {
153
  </select>';
154
 
155
  $content .='<div id="b2s-post-meta-box-note-premium" class="b2s-info-success"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-post-meta-box-note-premium" title="close notice"></button><b>' . __('You want to sched your blog post with Auto-Poster?', 'blog2social') . '</b><br> <a class="" target="_blank" href="' . B2S_Tools::getSupportLink('affiliate') . '">' . __('Upgrade to PREMIUM PRO', 'blog2social') . '</a></div>';
156
-
157
  $content .='<div class="b2s-post-meta-box-sched-once" style="display:none;">';
158
  //Opt: CustomDatePicker
159
  $dateFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 'dd.mm.yyyy' : 'yyyy-mm-dd';
21
  $userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
22
  $userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
23
  $selectedProfileID = get_option('B2S_PLUGIN_SAVE_META_BOX_AUTO_SHARE_PROFILE_USER_' . B2S_PLUGIN_BLOG_USER_ID);
24
+ $b2sHeartbeatFaqLink = '<a target="_blank" href="'.((substr(B2S_LANGUAGE, 0, 2) == 'de' || (isset($_GET['lang']) && $_GET['lang'] == 'de')) ? 'https://www.blog2social.com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-blog2social.html' : 'https://www.blog2social.com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social.html').'">'.__('Please see FAQ','blog2social').'</a>';
25
+
26
  if (B2S_PLUGIN_USER_VERSION > 0) {
27
  if ($postId > 0) {
28
  global $wpdb;
49
  <input type="hidden" id="b2sPostLang" name="b2s-post-lang" value="' . substr($this->postLang, 0, 2) . '">
50
  <input type="hidden" id="b2s-user-timezone" name="b2s-user-timezone" value="' . $userTimeZoneOffset . '"/>
51
  <input type="hidden" id="b2s-post-status" name="b2s-post-status" value="' . trim(strtolower($postStatus)) . '"/>
 
52
  <input type="hidden" id="b2s-redirect-url-custom-share" name="b2s-redirect-url-custom-share" value="' . $this->b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-ship&postId=' . $postId . '"/>
53
  <div id="b2s-server-connection-fail" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-server-connection-fail" title="close notice"></button>' . __('The connection to the server failed. Try again!', 'blog2social') . '</div>
54
+ <div id="b2s-heartbeat-fail" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-heartbeat-fail" title="close notice"></button>' . __('WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social!', 'blog2social') . $b2sHeartbeatFaqLink . ' </div>
55
  <div id="b2s-post-meta-box-state-no-auth" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-post-meta-box-state-no-auth" title="close notice"></button>' . __('There are no authorizations for your selected profile. Please, authorize with a social network or select a other profile.', 'blog2social') . '<a href="' . $this->b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-network' . '" target="_bank">' . __('Network settings', 'blog2social') . '</a></div>
56
  <div id="b2s-post-meta-box-state-no-publish-future" class="b2s-info-error"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-post-meta-box-state-no-publish-future" title="close notice"></button>' . __('Your post is still on draft or pending status. Please make sure that your post is published or scheduled to be published on this blog. You can then auto-post or schedule and customize your social media posts with Blog2Social.', 'blog2social') . '</div>
57
  <div id="b2s-url-valid-warning" class="b2s-info-warning"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-url-valid-warning" title="close notice"></button>' . __('Notice: Please make sure, that your website address is reachable. The Social Networks do not allow postings from local installations.', 'blog2social') . '</div>
153
  </select>';
154
 
155
  $content .='<div id="b2s-post-meta-box-note-premium" class="b2s-info-success"><button class="b2s-btn-close-meta-box b2s-close-icon" data-area-id="b2s-post-meta-box-note-premium" title="close notice"></button><b>' . __('You want to sched your blog post with Auto-Poster?', 'blog2social') . '</b><br> <a class="" target="_blank" href="' . B2S_Tools::getSupportLink('affiliate') . '">' . __('Upgrade to PREMIUM PRO', 'blog2social') . '</a></div>';
156
+
157
  $content .='<div class="b2s-post-meta-box-sched-once" style="display:none;">';
158
  //Opt: CustomDatePicker
159
  $dateFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 'dd.mm.yyyy' : 'yyyy-mm-dd';
includes/PRG/Post/Filter.php CHANGED
@@ -11,11 +11,12 @@ class PRG_Post_Filter {
11
  protected $searchSchedDate;
12
  protected $postAuthor;
13
 
14
- function __construct($type, $title = "", $authorId = "", $postType = "", $publishDate = "", $schedDate = "") { //type=all,publish,sched
15
  $this->type = $type;
16
  $this->searchPostTitle = $title;
17
  $this->searchAuthorId = $authorId;
18
  $this->searchPostType = $postType;
 
19
  $this->searchPublishDate = $publishDate;
20
  $this->searchSchedDate = $schedDate;
21
  }
@@ -36,18 +37,37 @@ class PRG_Post_Filter {
36
  return $autor;
37
  }
38
 
39
- private function getPostTypeHtml() {
40
- $typeData = array(array('key' => 'publish', 'value' => __('published', 'blog2social')), array('key' => 'future', 'value' => __('scheduled', 'blog2social')), array('key' => 'pending', 'value' => __('draft', 'blog2social')));
41
- $type = '<div class="form-group"><select name="prgSortPostType" class="form-control b2s-select"><option value="">'. __('All Types', 'blog2social').'</option>';
42
  foreach ($typeData as $var) {
43
  $var = (object) $var;
44
- $selected = (!empty($this->searchPostType) && $var->key == $this->searchPostType) ? 'selected' : '';
45
  $type.='<option ' . $selected . ' value="' . $var->key . '">' . $var->value . '</option>';
46
  }
47
  $type .='</select></div>';
48
  return $type;
49
  }
50
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  public function getItemHtml() {
52
  $this->getAutorData();
53
  $this->postFilter .= '<div class="form-group">
@@ -58,6 +78,7 @@ class PRG_Post_Filter {
58
  }
59
  if ($this->type == 'all') {
60
  $this->postFilter .= $this->getPostTypeHtml();
 
61
  }
62
 
63
  $this->postFilter .='<div class="form-group">
11
  protected $searchSchedDate;
12
  protected $postAuthor;
13
 
14
+ function __construct($type, $title = "", $authorId = "", $postType = "",$postStatus="", $publishDate = "", $schedDate = "") { //type=all,publish,sched
15
  $this->type = $type;
16
  $this->searchPostTitle = $title;
17
  $this->searchAuthorId = $authorId;
18
  $this->searchPostType = $postType;
19
+ $this->searchPostStatus = $postStatus;
20
  $this->searchPublishDate = $publishDate;
21
  $this->searchSchedDate = $schedDate;
22
  }
37
  return $autor;
38
  }
39
 
40
+ private function getPostStatusHtml() {
41
+ $typeData = array(array('key' => 'publish', 'value' => __('published', 'blog2social')), array('key' => 'future', 'value' => __('scheduled', 'blog2social')));
42
+ $type = '<div class="form-group"><select name="prgSortPostStatus" class="form-control b2s-select"><option value="">'. __('All Types', 'blog2social').'</option>';
43
  foreach ($typeData as $var) {
44
  $var = (object) $var;
45
+ $selected = (!empty($this->searchPostStatus) && $var->key == $this->searchPostStatus) ? 'selected' : '';
46
  $type.='<option ' . $selected . ' value="' . $var->key . '">' . $var->value . '</option>';
47
  }
48
  $type .='</select></div>';
49
  return $type;
50
  }
51
+
52
+ private function getPostTypeHtml() {
53
+ $type = '<div class="form-group"><select id="prgSortPostType" name="prgSortPostType" class="form-control b2s-select"><option value="">' . __('all post types', 'blog2social') . '</option>';
54
+ $post_types = get_post_types(array('public' => true));
55
+ if (is_array($post_types) && !empty($post_types)) {
56
+ foreach ($post_types as $k => $v) {
57
+ if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
58
+ $selected = (!empty($this->searchPostType) && $v == $this->searchPostType) ? 'selected' : '';
59
+ //Bug: Converting json + PHP Extension
60
+ if (function_exists('mb_strlen') && function_exists('mb_substr')) {
61
+ $v = mb_strlen($v,'UTF-8') > 27 ? mb_substr($v, 0, 27,'UTF-8') . '...' : $v;
62
+ }
63
+ $type .= '<option ' . $selected . ' value="' . $v . '">' . ucfirst($v) . '</option>';
64
+ }
65
+ }
66
+ }
67
+ $type .= '</select></div>';
68
+ return $type;
69
+ }
70
+
71
  public function getItemHtml() {
72
  $this->getAutorData();
73
  $this->postFilter .= '<div class="form-group">
78
  }
79
  if ($this->type == 'all') {
80
  $this->postFilter .= $this->getPostTypeHtml();
81
+ $this->postFilter .= $this->getPostStatusHtml();
82
  }
83
 
84
  $this->postFilter .='<div class="form-group">
includes/PRG/Post/Item.php CHANGED
@@ -16,11 +16,12 @@ class PRG_Post_Item {
16
  public $currentPage = 0;
17
  public $type;
18
 
19
- function __construct($type = 'all', $title = "", $authorId = "", $postType = "", $publishDate = '', $schedDate = '', $currentPage = 0, $userLang = 'en') {
20
  $this->type = $type;
21
  $this->searchPostTitle = $title;
22
  $this->searchAuthorId = $authorId;
23
  $this->searchPostType = $postType;
 
24
  $this->searchPublishDate = $publishDate;
25
  $this->searchSchedDate = $schedDate;
26
  $this->currentPage = $currentPage;
@@ -48,14 +49,30 @@ class PRG_Post_Item {
48
  $addSearchAuthorId = $wpdb->prepare(' AND `post_author` = %d', $this->searchAuthorId);
49
  }
50
 
51
- if (!empty($this->searchPostType)) {
52
- $addSearchType = $wpdb->prepare(' `post_status` = %s', $this->searchPostType);
53
  } else {
54
- $addSearchType = " (`post_status` = 'publish' OR `post_status` = 'pending' OR `post_status` = 'future') ";
55
  }
56
 
57
- $postTypes = " `post_content` != '' AND (`post_type` LIKE '%article%' OR `post_type` LIKE '%job%' OR `post_type` LIKE '%event%' OR `post_type` = 'post' OR `post_type` = 'page') ";
58
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
59
 
60
  $addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `post_author` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
61
 
16
  public $currentPage = 0;
17
  public $type;
18
 
19
+ function __construct($type = 'all', $title = "", $authorId = "", $postType = "", $postStatus = "", $publishDate = '', $schedDate = '', $currentPage = 0, $userLang = 'en') {
20
  $this->type = $type;
21
  $this->searchPostTitle = $title;
22
  $this->searchAuthorId = $authorId;
23
  $this->searchPostType = $postType;
24
+ $this->searchPostStatus = $postStatus;
25
  $this->searchPublishDate = $publishDate;
26
  $this->searchSchedDate = $schedDate;
27
  $this->currentPage = $currentPage;
49
  $addSearchAuthorId = $wpdb->prepare(' AND `post_author` = %d', $this->searchAuthorId);
50
  }
51
 
52
+ if (!empty($this->searchPostStatus)) {
53
+ $addSearchType = $wpdb->prepare(' `post_status` = %s', $this->searchPostStatus);
54
  } else {
55
+ $addSearchType = " (`post_status` = 'publish' OR `post_status` = 'future') ";
56
  }
57
 
58
+ $postTypes = " ";
59
+ if (!empty($this->searchPostType)) {
60
+ $postTypes .= " `post_type` LIKE '%" . $this->searchPostType . "%' ";
61
+ } else {
62
+ $post_types = get_post_types(array('public' => true));
63
+ if (is_array($post_types) && !empty($post_types)) {
64
+ $postTypes .= " `post_type` IN("; // AND
65
+ foreach ($post_types as $k => $v) {
66
+ if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
67
+ $postTypes .= "'" . $v . "',";
68
+ }
69
+ }
70
+ $postTypes = rtrim($postTypes, ',');
71
+ $postTypes .= " ) ";
72
+ } else {
73
+ $postTypes .= " (`post_type` LIKE '%product%' OR `post_type` LIKE '%book%' OR `post_type` LIKE '%article%' OR `post_type` LIKE '%job%' OR `post_type` LIKE '%event%' OR `post_type` = 'post' OR `post_type` = 'page') ";
74
+ }
75
+ }
76
 
77
  $addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `post_author` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
78
 
includes/Util.php CHANGED
@@ -377,19 +377,21 @@ class B2S_Util {
377
  return date($slug, strtotime(date('Y-m-d ' . $time . ':00:00')));
378
  }
379
 
380
- public static function getExcerpt($text, $count = 400, $add = false) {
381
  //Bug: Converting json + PHP Extension
382
  if (function_exists('mb_strlen') && function_exists('mb_substr')) {
383
  if (mb_strlen($text, 'UTF-8') < $count) {
384
  return trim($text);
385
  }
386
- $stops = array('.', ';', ':', ',', ' ');
387
  $min = (int) $count / 2;
388
- $sub = mb_substr($text, $min, $min - 1, 'UTF-8');
 
389
  for ($i = 0; $i < count($stops); $i++) {
390
  if (count($subArray = explode($stops[$i], $sub)) > 1) {
391
  $subArray[count($subArray) - 1] = ' ';
392
  $sub = implode($stops[$i], $subArray);
 
393
  break;
394
  }
395
  }
@@ -457,7 +459,7 @@ class B2S_Util {
457
  return $result[$postLang];
458
  }
459
 
460
- public static function createTimezoneList($selected = '',$region = DateTimeZone::ALL) {
461
  $timezones = timezone_identifiers_list($region);
462
  if (!$timezones) {
463
  return false;
377
  return date($slug, strtotime(date('Y-m-d ' . $time . ':00:00')));
378
  }
379
 
380
+ public static function getExcerpt($text, $count = 400, $max = false, $add = false) {
381
  //Bug: Converting json + PHP Extension
382
  if (function_exists('mb_strlen') && function_exists('mb_substr')) {
383
  if (mb_strlen($text, 'UTF-8') < $count) {
384
  return trim($text);
385
  }
386
+ $stops = array('.', ':');
387
  $min = (int) $count / 2;
388
+ $max = ($max !== false) ? ($max - $min) : ($min - 1);
389
+ $sub = mb_substr($text, $min, $max, 'UTF-8');
390
  for ($i = 0; $i < count($stops); $i++) {
391
  if (count($subArray = explode($stops[$i], $sub)) > 1) {
392
  $subArray[count($subArray) - 1] = ' ';
393
  $sub = implode($stops[$i], $subArray);
394
+ $add = false;
395
  break;
396
  }
397
  }
459
  return $result[$postLang];
460
  }
461
 
462
+ public static function createTimezoneList($selected = '', $region = DateTimeZone::ALL) {
463
  $timezones = timezone_identifiers_list($region);
464
  if (!$timezones) {
465
  return false;
index.php CHANGED
@@ -7,13 +7,13 @@
7
  * Author: Blog2Social, Adenion
8
  * Text Domain: blog2social
9
  * Domain Path: /languages
10
- * Version: 4.0.0
11
  * Author URI: https://www.blog2social.com
12
  * License: GPL2+
13
  */
14
-
15
  //B2SDefine
16
- define('B2S_PLUGIN_VERSION', '400');
17
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
18
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
19
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
7
  * Author: Blog2Social, Adenion
8
  * Text Domain: blog2social
9
  * Domain Path: /languages
10
+ * Version: 4.1.0
11
  * Author URI: https://www.blog2social.com
12
  * License: GPL2+
13
  */
14
+
15
  //B2SDefine
16
+ define('B2S_PLUGIN_VERSION', '410');
17
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
18
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
19
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
languages/blog2social-de_DE.mo CHANGED
Binary file
languages/blog2social-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgstr ""
4
  "Stable (latest release)\n"
5
  "Report-Msgid-Bugs-To: \n"
6
  "POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
7
- "PO-Revision-Date: Thu May 18 2017 11:11:20 GMT+0200\n"
8
  "Last-Translator: admin <s.buerger@adenion.de>\n"
9
  "Language-Team: \n"
10
  "Language: German\n"
@@ -23,6 +23,73 @@ msgstr ""
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: de_DE"
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:42 ../..
27
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Navbar.php:32
28
  msgid "Default"
@@ -32,26 +99,27 @@ msgstr "Standard"
32
  msgid "max. accounts"
33
  msgstr "max. Accounts"
34
 
35
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:91
36
- msgid "get more"
37
- msgstr "mehr"
38
-
39
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:96 ../..
40
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:112 ../..
41
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:114 ../..
42
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:207 ../..
 
 
 
43
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:35 ../..
44
- #: /plugins/blog2social-v-3/includes/Init.php:263
45
  msgid "Profile"
46
  msgstr "Profil"
47
 
48
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:99 ../..
49
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:99 ../..
50
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:132 ../..
51
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:134 ../..
52
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:210 ../..
 
 
 
53
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:33 ../..
54
- #: /plugins/blog2social-v-3/includes/Init.php:263
55
  msgid "Page"
56
  msgstr "Seite"
57
 
@@ -62,11 +130,13 @@ msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
62
 
63
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:102 ../..
64
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:102 ../..
65
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:152 ../..
66
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:154 ../..
67
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:214 ../..
 
 
68
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:29 ../..
69
- #: /plugins/blog2social-v-3/includes/Init.php:263
70
  msgid "Group"
71
  msgstr "Gruppe"
72
 
@@ -75,37 +145,25 @@ msgstr "Gruppe"
75
  msgid "You want to connect a social media group?"
76
  msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
77
 
78
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:117 ../..
79
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:137 ../..
80
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:156
81
- msgid "Delete"
82
- msgstr "Löschen"
83
-
84
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:118 ../..
85
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:138 ../..
86
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:157
87
- msgid "Reconnect"
88
- msgstr "Erneut verbinden"
89
-
90
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:119 ../..
91
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:158
92
  msgid "Authorization is interrupted since"
93
  msgstr "Autorisierung ist unterbrochen seit"
94
 
95
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:121 ../..
96
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:142 ../..
97
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:161
98
  msgid "To reactivate this social media connection,"
99
  msgstr "Um diese Social Media Verbindung zu reaktivieren,"
100
 
101
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:121 ../..
102
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:142 ../..
103
- #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:161 ../..
104
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Image.php:19
105
  msgid "please upgrade"
106
  msgstr "Bitte upgraden"
107
 
108
- #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:139
109
  msgid "Authorization is interrupted since"
110
  msgstr "Autorisierung ist unterbrochen seit"
111
 
@@ -116,24 +174,23 @@ msgstr "alle Autoren"
116
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:49 ../..
117
  #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:185 ../..
118
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Save.php:174 ../..
119
- #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:40 ../..
120
- #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:80 ../..
121
  #: /plugins/blog2social-v-3/views/b2s/ship.php:12
122
  msgid "published"
123
  msgstr "veröffentlicht"
124
 
125
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:49 ../..
126
  #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:185 ../..
127
- #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:40 ../..
128
- #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:80 ../..
129
  #: /plugins/blog2social-v-3/views/b2s/ship.php:12
130
  msgid "scheduled"
131
  msgstr "geplant"
132
 
133
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:49 ../..
134
  #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:185 ../..
135
- #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:40 ../..
136
- #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:80 ../..
137
  #: /plugins/blog2social-v-3/views/b2s/ship.php:12
138
  msgid "draft"
139
  msgstr "Entwurf"
@@ -156,12 +213,13 @@ msgstr "älteste zuerst"
156
  msgid "all categories & tags"
157
  msgstr "alle Kategorien & Schlagwörter"
158
 
159
- #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:108
 
160
  msgid "all post types"
161
  msgstr "alle Typen"
162
 
163
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:129 ../..
164
- #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:54
165
  msgid "Search Title"
166
  msgstr "Suche nach Titel"
167
 
@@ -175,12 +233,12 @@ msgid "show calendar"
175
  msgstr "Planungskalender anzeigen"
176
 
177
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:152 ../..
178
- #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:64
179
  msgid "sort"
180
  msgstr "sortieren"
181
 
182
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:153 ../..
183
- #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:65
184
  msgid "reset"
185
  msgstr "zurücksetzen"
186
 
@@ -201,12 +259,12 @@ msgid "last shared on social media"
201
  msgstr "zuletzt auf Social Media geteilt"
202
 
203
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:218 ../..
204
- #: /plugins/blog2social-v-3/includes/Init.php:84
205
  msgid "Share on Social Media"
206
  msgstr "auf Social Media teilen"
207
 
208
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:220 ../..
209
- #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:112
210
  msgid "Author"
211
  msgstr "Autor"
212
 
@@ -216,8 +274,8 @@ msgid "on blog"
216
  msgstr "auf dem Blog"
217
 
218
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:237 ../..
219
- #: /plugins/blog2social-v-3/views/b2s/ship.php:214 ../../plugins/blog2social-v-
220
- #: 3/views/b2s/ship.php:216
221
  msgid "Re-share this post"
222
  msgstr "Diesen Beitrag nochmal teilen"
223
 
@@ -284,20 +342,15 @@ msgid "scheduled by"
284
  msgstr "geplant von "
285
 
286
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:447 ../..
287
- #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:461
288
- msgid "You want to delete an scheduled post entry?"
289
- msgstr "Du möchtest einen geplanten Beitrag löschen?"
290
-
291
- #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:448 ../..
292
- #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:462
293
  msgid "delete scheduling"
294
  msgstr "Planung löschen"
295
 
296
- #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:452
297
  msgid "You want to change the time for your scheduled post?"
298
  msgstr "Du möchtest die Zeit zu einem geplanten Beitrag ändern?"
299
 
300
- #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:453
301
  msgid "change time"
302
  msgstr "Zeitpunkt ändern"
303
 
@@ -306,7 +359,7 @@ msgid "Account"
306
  msgstr "Konto"
307
 
308
  #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:68 ../..
309
- #: /plugins/blog2social-v-3/views/b2s/settings.php:117
310
  msgid "Personal Time Zone"
311
  msgstr "Persönliche Zeitzone"
312
 
@@ -356,20 +409,15 @@ msgstr "b2s.pm Link Shortener aktivieren"
356
  msgid "allow shortcodes in my post"
357
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
358
 
359
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:128
360
- msgid "Facebook post format"
361
- msgstr "Facebook postformat"
362
-
363
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:134 ../..
364
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:162 ../..
365
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:189 ../..
366
- #: /plugins/blog2social-v-3/views/b2s/settings.php:84
367
  msgid "Link Post"
368
  msgstr "Link-Beitrag"
369
 
370
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:139 ../..
371
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:167 ../..
372
- #: /plugins/blog2social-v-3/views/b2s/settings.php:85
373
  msgid ""
374
  "The link post format displays posts title, link address and the first one or "
375
  "two sentences of the post. The networks scan this information from your META "
@@ -384,15 +432,14 @@ msgstr ""
384
  "falls du kein Beitragsbild in WordPress ausgewählt hast. Das Bild verlinkt "
385
  "automatisch auf Deinen Blogbeitrag."
386
 
387
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:144 ../..
388
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:172 ../..
389
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:189 ../..
390
- #: /plugins/blog2social-v-3/views/b2s/settings.php:89
391
  msgid "Photo Post"
392
  msgstr "Bild-Beitrag"
393
 
394
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:149 ../..
395
- #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:177
396
  msgid ""
397
  "A photo or image post displays the selected image in the one-page preview of "
398
  "Blog2Social and your comment above the image. The image links to the image "
@@ -409,36 +456,33 @@ msgstr ""
409
  "Fotoalben oder Deiner persönlichen Galerie im Netzwerk gespeichert wird. In "
410
  "Facebook kannst du den Namen Deiner Alben beliebig anpassen."
411
 
412
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:156
413
- msgid "Twitter post format"
414
- msgstr "Twitter postformat"
415
-
416
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:221 ../..
417
  #: /plugins/blog2social-v-3/views/b2s/post.sched.php:24
418
  msgid "Uhr"
419
  msgstr "Uhr"
420
 
421
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:225
422
  msgid "Best times to post"
423
  msgstr "Beste Zeiten"
424
 
425
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:238 ../..
426
  #: /plugins/blog2social-v-3/views/b2s/settings.php:44 ../../plugins/blog2social-v-
427
- #: 3/views/b2s/ship.php:49 ../../plugins/blog2social-v-3/views/b2s/ship.php:359 ..
428
  #: /../plugins/blog2social-v-3/views/b2s/html/footer.phtml:135
429
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
430
  msgstr ""
431
  "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
432
  "Manager benutzen?"
433
 
434
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:240 ../..
435
  #: /plugins/blog2social-v-3/views/b2s/post.sched.php:90 ../../plugins/blog2social-
436
- #: v-3/views/b2s/settings.php:46 ../../plugins/blog2social-v-3/views/b2s/ship.php:
437
- #: 409
 
438
  msgid "save"
439
  msgstr "speichern"
440
 
441
- #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:245
442
  msgid "Sorry, we can not load your data at the moment..."
443
  msgstr "Sorry, derzeit können wir Deine Daten nicht laden. Versuche es erneut."
444
 
@@ -537,126 +581,126 @@ msgstr "Netzwerk unterstützt keine Bilder für Seiten"
537
  msgid "post format"
538
  msgstr "Postformat"
539
 
540
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:206
541
  msgid "Insert full-text"
542
  msgstr "ganzen Text einfügen"
543
 
544
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:208
545
  msgid "Delete text"
546
  msgstr "Text löschen"
547
 
548
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:243 ../..
549
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:261 ../..
550
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:279 ../..
551
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:297 ../..
552
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:312
553
  msgid "Write something about your post..."
554
  msgstr "Schreibe etwas..."
555
 
556
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:250 ../..
557
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:268 ../..
558
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:286 ../..
559
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:335
560
  msgid "Change image for this network"
561
  msgstr "Bild für dieses Netzwerk ändern"
562
 
563
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:322
564
  msgid "required"
565
  msgstr "erforderlich"
566
 
567
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:342 ../..
568
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:344
569
  msgid "Link"
570
  msgstr "Link"
571
 
572
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:392
573
  msgid "The Headline..."
574
  msgstr "Die Überschrift..."
575
 
576
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:397
577
  msgid "Hashtags"
578
  msgstr "Hashtags"
579
 
580
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:427
581
  msgid "Share Now"
582
  msgstr "Sofort teilen"
583
 
584
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:429
585
  msgid "Schedule post once"
586
  msgstr "Beitrag einmal planen"
587
 
588
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:431
589
  msgid "Schedule post recurrently"
590
  msgstr "Beitrag mehrfach planen"
591
 
592
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:456
593
  msgid "Duration"
594
  msgstr "Dauer"
595
 
596
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:457 ../..
597
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:472
598
  msgid "Date"
599
  msgstr "Startdatum"
600
 
601
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:458 ../..
602
- #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:473
603
  msgid "Time"
604
  msgstr "Zeit"
605
 
606
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:459
607
  msgid "Days"
608
  msgstr "Tage"
609
 
610
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:467
611
  msgid "Week"
612
  msgstr "Woche"
613
 
614
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:467
615
  msgid "Weeks"
616
  msgstr "Wochen"
617
 
618
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:477
619
  msgid "Mon"
620
  msgstr "Mo"
621
 
622
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:478
623
  msgid "Tue"
624
  msgstr "Di"
625
 
626
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:479
627
  msgid "Wed"
628
  msgstr "Mi"
629
 
630
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:480
631
  msgid "Thu"
632
  msgstr "Do"
633
 
634
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:481
635
  msgid "Fri"
636
  msgstr "Fr"
637
 
638
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:482
639
  msgid "Sat"
640
  msgstr "Sa"
641
 
642
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:483
643
  msgid "Sun"
644
  msgstr "So"
645
 
646
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:488 ../..
647
  #: /plugins/blog2social-v-3/views/b2s/network.php:170
648
  msgid "delete"
649
  msgstr "löschen"
650
 
651
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:489
652
  msgid "Add Posting Time"
653
  msgstr "neue Terminserie anlegen"
654
 
655
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:495
656
  msgid "Apply Settings To All Networks"
657
  msgstr "Planung für alle Netzwerke übernehmen"
658
 
659
- #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:496
660
  msgid "Save Settings As Default"
661
  msgstr "Planung dauerhaft speichern"
662
 
@@ -676,20 +720,20 @@ msgstr "Anzahl geteilter Beiträge"
676
  msgid "Number of scheduled posts"
677
  msgstr "Anzahl der geplanten Posts"
678
 
679
- #: ../../plugins/blog2social-v-3/includes/Init.php:235
680
  msgid "This post will be shared into your social media on"
681
  msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
682
 
683
- #: ../../plugins/blog2social-v-3/includes/Init.php:235 ../../plugins/blog2social-
684
- #: v-3/includes/Init.php:237
685
  msgid "show details"
686
  msgstr "siehe Details"
687
 
688
- #: ../../plugins/blog2social-v-3/includes/Init.php:237
689
  msgid "This post will be shared on social media in 2-3 minutes!"
690
  msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
691
 
692
- #: ../../plugins/blog2social-v-3/includes/Init.php:241
693
  msgid ""
694
  "Please, make sure that your post are publish on this blog on this moment. "
695
  "Then you can auto post your post with Blog2social."
@@ -697,8 +741,8 @@ msgstr ""
697
  "Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
698
  " Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
699
 
700
- #: ../../plugins/blog2social-v-3/includes/Init.php:244 ../../plugins/blog2social-
701
- #: v-3/includes/MetaBox.php:56
702
  msgid ""
703
  "There are no authorizations for your selected profile. Please, authorize "
704
  "with a social network or select a other profile."
@@ -706,23 +750,23 @@ msgstr ""
706
  "Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
707
  "mit einem Netzwerk oder wähle ein anderes Profil aus. "
708
 
709
- #: ../../plugins/blog2social-v-3/includes/Init.php:256
710
  msgid "Upgrade to Premium"
711
  msgstr "Premium freischalten"
712
 
713
- #: ../../plugins/blog2social-v-3/includes/Init.php:264
714
  msgid "Your post could not be posted."
715
  msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
716
 
717
- #: ../../plugins/blog2social-v-3/includes/Init.php:265
718
  msgid "Your authorization has expired. Please check your authorization."
719
  msgstr "Deine Autorisierung ist abgelaufen. Bitte überprüfe deine Autorisierung."
720
 
721
- #: ../../plugins/blog2social-v-3/includes/Init.php:266
722
  msgid "The network has marked the post as spam or abusive."
723
  msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
724
 
725
- #: ../../plugins/blog2social-v-3/includes/Init.php:267
726
  msgid ""
727
  "We don't have the permission to publish your post. Please check your "
728
  "authorization."
@@ -730,7 +774,7 @@ msgstr ""
730
  "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
731
  "überprüfe deine Autorisierung."
732
 
733
- #: ../../plugins/blog2social-v-3/includes/Init.php:268
734
  msgid ""
735
  "Your authorization is interrupted. Please check your authorization. Please "
736
  "see <a target=\"_blank\" href=\"https://www.blog2social."
@@ -740,15 +784,15 @@ msgstr ""
740
  "Siehe <a target=\"_blank\" href=\"https://www.blog2social."
741
  "com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
742
 
743
- #: ../../plugins/blog2social-v-3/includes/Init.php:269
744
  msgid "Your limit is reached for today."
745
  msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account für Heute erreicht."
746
 
747
- #: ../../plugins/blog2social-v-3/includes/Init.php:270
748
  msgid "Your post could not be posted, because your image is not available."
749
  msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
750
 
751
- #: ../../plugins/blog2social-v-3/includes/Init.php:271
752
  msgid ""
753
  "The network has blocked your account. Please see <a target=\"_blank\" "
754
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
@@ -758,7 +802,7 @@ msgstr ""
758
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
759
  "loesungen.html\">FAQ</a>."
760
 
761
- #: ../../plugins/blog2social-v-3/includes/Init.php:272
762
  msgid ""
763
  "The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
764
  "//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
@@ -768,11 +812,11 @@ msgstr ""
768
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
769
  "loesungen.html\">FAQ</a>."
770
 
771
- #: ../../plugins/blog2social-v-3/includes/Init.php:273
772
  msgid "Your limit has temporarily reached for this network."
773
  msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account kurzzeitig erreicht."
774
 
775
- #: ../../plugins/blog2social-v-3/includes/Init.php:274
776
  msgid ""
777
  "The network can not publish special characters such as Emoji. Please see <a "
778
  "target=\"_blank\" href=\"https://www.blog2social."
@@ -782,57 +826,57 @@ msgstr ""
782
  "//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
783
  "html\">FAQ</a>."
784
 
785
- #: ../../plugins/blog2social-v-3/includes/Init.php:275
786
  msgid "Your post is a duplicate."
787
  msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
788
 
789
- #: ../../plugins/blog2social-v-3/includes/Init.php:276
790
  msgid "The network are required a public url to your post."
791
  msgstr "Das Netzwerk fordert, dass Dein Link zu Deinem Beitrag erreichbar ist."
792
 
793
- #: ../../plugins/blog2social-v-3/includes/Init.php:277
794
  msgid "The network says, that your group is not exisits."
795
  msgstr "Das Netzwerk konnte Deine angegebene Gruppe nicht finden."
796
 
797
- #: ../../plugins/blog2social-v-3/includes/Init.php:334 ../../plugins/blog2social-
798
- #: v-3/includes/Init.php:364
799
  msgid "Dashboard"
800
  msgstr "Dashboard"
801
 
802
- #: ../../plugins/blog2social-v-3/includes/Init.php:335 ../../plugins/blog2social-
803
- #: v-3/includes/Init.php:335 ../../plugins/blog2social-v-3/includes/Init.php:371
804
  msgid "Posts & Sharing"
805
  msgstr "Beiträge"
806
 
807
- #: ../../plugins/blog2social-v-3/includes/Init.php:336 ../../plugins/blog2social-
808
- #: v-3/includes/Init.php:336 ../../plugins/blog2social-v-3/includes/Init.php:378 .
809
  #: ./../plugins/blog2social-v-3/views/b2s/network.php:17
810
  msgid "Networks"
811
  msgstr "Netzwerke"
812
 
813
- #: ../../plugins/blog2social-v-3/includes/Init.php:337 ../../plugins/blog2social-
814
- #: v-3/includes/Init.php:337 ../../plugins/blog2social-v-3/includes/Init.php:384 .
815
  #: ./../plugins/blog2social-v-3/views/b2s/ship.php:53 ../../plugins/blog2social-v-
816
- #: 3/views/b2s/ship.php:262
817
  msgid "Settings"
818
  msgstr "Einstellungen"
819
 
820
- #: ../../plugins/blog2social-v-3/includes/Init.php:338 ../../plugins/blog2social-
821
- #: v-3/includes/Init.php:338 ../../plugins/blog2social-v-3/includes/Init.php:390
822
  msgid "PR-Service"
823
  msgstr "PR-Service"
824
 
825
- #: ../../plugins/blog2social-v-3/includes/Init.php:355
826
  msgid "Blog2Social"
827
  msgstr "Blog2Social"
828
 
829
- #: ../../plugins/blog2social-v-3/includes/Init.php:603 ../../plugins/blog2social-
830
- #: v-3/includes/Init.php:756
831
  msgid "or"
832
  msgstr "oder"
833
 
834
- #: ../../plugins/blog2social-v-3/includes/Init.php:603 ../../plugins/blog2social-
835
- #: v-3/includes/Init.php:756
836
  msgid "back to install plugins"
837
  msgstr "zurück zur Pluginübersicht"
838
 
@@ -840,16 +884,16 @@ msgstr "zurück zur Pluginübersicht"
840
  msgid "last auto-post:"
841
  msgstr "letzter Auto-Post:"
842
 
843
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:54 ../..
844
- #: /plugins/blog2social-v-3/views/b2s/ship.php:452 ../../plugins/blog2social-v-
845
- #: 3/views/b2s/html/header.phtml:18
846
  msgid "The connection to the server failed. Try again!"
847
  msgstr ""
848
  "Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
849
  "erneut!"
850
 
851
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:55 ../..
852
- #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:13
853
  msgid ""
854
  "WordPress uses heartbeats by default, Blog2Social as well. Please enable "
855
  "heartbeats for using Blog2Social!"
@@ -857,12 +901,12 @@ msgstr ""
857
  "WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
858
  "Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
859
 
860
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:56 ../..
861
- #: /plugins/blog2social-v-3/includes/MetaBox.php:134
862
  msgid "Network settings"
863
  msgstr "Netzwerkeinstellungen"
864
 
865
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:57
866
  msgid ""
867
  "Your post is still on draft or pending status. Please make sure that your "
868
  "post is published or scheduled to be published on this blog. You can then "
@@ -872,7 +916,7 @@ msgstr ""
872
  "geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
873
  "planen."
874
 
875
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:58
876
  msgid ""
877
  "Notice: Please make sure, that your website address is reachable. The Social "
878
  "Networks do not allow postings from local installations."
@@ -880,60 +924,60 @@ msgstr ""
880
  "Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
881
  "Fragen wende Dich bitte an unseren Support."
882
 
883
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:59
884
  msgid "You want to auto post your blog post?"
885
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
886
 
887
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:59 ../..
888
- #: /plugins/blog2social-v-3/includes/MetaBox.php:108 ../../plugins/blog2social-v-
889
  #: 3/views/b2s/network.php:116 ../../plugins/blog2social-v-3/views/b2s/ship.php:
890
- #: 293 ../../plugins/blog2social-v-3/views/b2s/ship.php:327 ../..
891
- #: /plugins/blog2social-v-3/views/b2s/ship.php:374 ../../plugins/blog2social-v-
892
  #: 3/views/b2s/html/footer.phtml:38 ../../plugins/blog2social-v-
893
  #: 3/views/b2s/html/footer.phtml:150 ../../plugins/blog2social-v-
894
  #: 3/views/b2s/html/footer.phtml:208 ../../plugins/blog2social-v-
895
- #: 3/views/b2s/html/header.phtml:137
896
  msgid "Upgrade to PREMIUM"
897
  msgstr "Jetzt auf Premium upgraden"
898
 
899
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:60
900
  msgid "Custom Sharing & Scheduling"
901
  msgstr "Anpassen & Planen"
902
 
903
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:60 ../..
904
- #: /plugins/blog2social-v-3/includes/MetaBox.php:64
905
  msgid "Info"
906
  msgstr "Info"
907
 
908
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:61
909
  msgid "Customize & Schedule Social Media Posts"
910
  msgstr "Social Media Posts anpassen & planen"
911
 
912
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:64 ../..
913
- #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:188
914
  msgid "Social Media Auto-Posting"
915
  msgstr "Social Media Auto-Posting"
916
 
917
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:67
918
  msgid "enable Auto-Posting"
919
  msgstr "Auto-Posting aktivieren"
920
 
921
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:73 ../..
922
  #: /plugins/blog2social-v-3/views/b2s/network.php:51 ../../plugins/blog2social-v-
923
  #: 3/views/b2s/network.php:153 ../../plugins/blog2social-v-3/views/b2s/post.php:
924
  #: 37 ../../plugins/blog2social-v-3/views/b2s/post.publish.php:40 ../..
925
  #: /plugins/blog2social-v-3/views/b2s/post.sched.php:48 ../../plugins/blog2social-
926
  #: v-3/views/b2s/ship.php:153 ../../plugins/blog2social-v-3/views/b2s/ship.php:
927
- #: 451 ../../plugins/blog2social-v-3/views/prg/html/header.phtml:81
928
  msgid "Loading..."
929
  msgstr "Lade Daten..."
930
 
931
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:81 ../..
932
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:180
933
  msgid "Blog2Social: Social Media Auto-Posting"
934
  msgstr "Blog2Social: Social Media Auto-Posting"
935
 
936
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:85 ../..
937
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:184
938
  msgid ""
939
  "You have 2 general options to define the date and time to share your blog "
@@ -942,12 +986,12 @@ msgstr ""
942
  "Dir stehen grundsätzlich 2 Möglichkeiten zur Verfügung, per Auto-Posting "
943
  "Deine Blogbeiträge auf Social Media zu teilen: "
944
 
945
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:86 ../..
946
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:185
947
  msgid "1. Immediately after publishing your blog post"
948
  msgstr "Sofort nach Veröffentlichung Deines Blogbeitrags "
949
 
950
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:87 ../..
951
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:186
952
  msgid ""
953
  "Published blog posts: If you publish your blog post with click on publish in "
@@ -958,7 +1002,7 @@ msgstr ""
958
  "auf “veröffentlichen” im Beitrags-Editor Deines Blogs sofort veröffentlichst,"
959
  " teilt Blog2Social Deinen Blogbeitrag unmittelbar auf Social Media."
960
 
961
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:88 ../..
962
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:187
963
  msgid ""
964
  "Scheduled blog posts: If you schedule your blog post with click on schedule "
@@ -970,7 +1014,7 @@ msgstr ""
970
  "Deines Blogs klickst, teilt Blog2Social Deinen Blogbeitrag direkt nach der "
971
  "Veröffentlichung auf Social Media. "
972
 
973
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:89 ../..
974
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:188
975
  msgid ""
976
  "2. Schedule your social media posts for a specific date and time If you want "
@@ -983,50 +1027,50 @@ msgstr ""
983
  "abweichen, wähle die Option “zu bestimmten Zeiten” und lege das Datum und "
984
  "die Uhrzeit fest. "
985
 
986
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:93 ../..
987
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:193
988
  msgid "You want to auto-post your blog post?"
989
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
990
 
991
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:94 ../..
992
  #: /plugins/blog2social-v-3/includes/Notice.php:29 ../../plugins/blog2social-v-
993
  #: 3/views/b2s/network.php:102 ../../plugins/blog2social-v-3/views/b2s/ship.php:
994
- #: 279 ../../plugins/blog2social-v-3/views/b2s/ship.php:313 ../..
995
- #: /plugins/blog2social-v-3/views/b2s/ship.php:360 ../../plugins/blog2social-v-
996
  #: 3/views/b2s/html/footer.phtml:24 ../../plugins/blog2social-v-
997
  #: 3/views/b2s/html/footer.phtml:136 ../../plugins/blog2social-v-
998
  #: 3/views/b2s/html/footer.phtml:194
999
  msgid "With Blog2Social Premium you can:"
1000
  msgstr "Mit Blog2Social kannst Du:"
1001
 
1002
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:97 ../..
1003
  #: /plugins/blog2social-v-3/includes/Notice.php:30 ../../plugins/blog2social-v-
1004
  #: 3/views/b2s/network.php:105 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1005
- #: 282 ../../plugins/blog2social-v-3/views/b2s/ship.php:316 ../..
1006
- #: /plugins/blog2social-v-3/views/b2s/ship.php:363 ../../plugins/blog2social-v-
1007
  #: 3/views/b2s/html/footer.phtml:27 ../../plugins/blog2social-v-
1008
  #: 3/views/b2s/html/footer.phtml:139 ../../plugins/blog2social-v-
1009
  #: 3/views/b2s/html/footer.phtml:197 ../../plugins/blog2social-v-
1010
- #: 3/views/b2s/html/header.phtml:189
1011
  msgid "Post on pages and groups"
1012
  msgstr "Poste auf Seiten und in Gruppen"
1013
 
1014
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:98 ../..
1015
  #: /plugins/blog2social-v-3/includes/Notice.php:31 ../../plugins/blog2social-v-
1016
  #: 3/views/b2s/network.php:106 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1017
- #: 283 ../../plugins/blog2social-v-3/views/b2s/ship.php:317 ../..
1018
- #: /plugins/blog2social-v-3/views/b2s/ship.php:364 ../../plugins/blog2social-v-
1019
  #: 3/views/b2s/html/footer.phtml:28 ../../plugins/blog2social-v-
1020
  #: 3/views/b2s/html/footer.phtml:140 ../../plugins/blog2social-v-
1021
  #: 3/views/b2s/html/footer.phtml:198
1022
  msgid "Share on multiple profiles, pages and groups"
1023
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
1024
 
1025
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:99 ../..
1026
  #: /plugins/blog2social-v-3/includes/Notice.php:32 ../../plugins/blog2social-v-
1027
  #: 3/views/b2s/network.php:107 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1028
- #: 284 ../../plugins/blog2social-v-3/views/b2s/ship.php:318 ../..
1029
- #: /plugins/blog2social-v-3/views/b2s/ship.php:365 ../../plugins/blog2social-v-
1030
  #: 3/views/b2s/html/footer.phtml:29 ../../plugins/blog2social-v-
1031
  #: 3/views/b2s/html/footer.phtml:63 ../../plugins/blog2social-v-
1032
  #: 3/views/b2s/html/footer.phtml:141 ../../plugins/blog2social-v-
@@ -1036,22 +1080,22 @@ msgstr ""
1036
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
1037
  "Aktualisierung posten und zeitversetzt planen"
1038
 
1039
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:100 ../..
1040
  #: /plugins/blog2social-v-3/includes/Notice.php:33 ../../plugins/blog2social-v-
1041
  #: 3/views/b2s/network.php:108 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1042
- #: 285 ../../plugins/blog2social-v-3/views/b2s/ship.php:319 ../..
1043
- #: /plugins/blog2social-v-3/views/b2s/ship.php:366 ../../plugins/blog2social-v-
1044
  #: 3/views/b2s/html/footer.phtml:30 ../../plugins/blog2social-v-
1045
  #: 3/views/b2s/html/footer.phtml:142 ../../plugins/blog2social-v-
1046
  #: 3/views/b2s/html/footer.phtml:200
1047
  msgid "Schedule your posts at the best times on each network"
1048
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
1049
 
1050
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:101 ../..
1051
  #: /plugins/blog2social-v-3/includes/Notice.php:34 ../../plugins/blog2social-v-
1052
  #: 3/views/b2s/network.php:109 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1053
- #: 286 ../../plugins/blog2social-v-3/views/b2s/ship.php:320 ../..
1054
- #: /plugins/blog2social-v-3/views/b2s/ship.php:367 ../../plugins/blog2social-v-
1055
  #: 3/views/b2s/html/footer.phtml:31 ../../plugins/blog2social-v-
1056
  #: 3/views/b2s/html/footer.phtml:143 ../../plugins/blog2social-v-
1057
  #: 3/views/b2s/html/footer.phtml:201
@@ -1060,11 +1104,11 @@ msgid ""
1060
  "social media posts"
1061
  msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
1062
 
1063
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:102 ../..
1064
  #: /plugins/blog2social-v-3/includes/Notice.php:35 ../../plugins/blog2social-v-
1065
  #: 3/views/b2s/network.php:110 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1066
- #: 287 ../../plugins/blog2social-v-3/views/b2s/ship.php:321 ../..
1067
- #: /plugins/blog2social-v-3/views/b2s/ship.php:368 ../../plugins/blog2social-v-
1068
  #: 3/views/b2s/html/footer.phtml:32 ../../plugins/blog2social-v-
1069
  #: 3/views/b2s/html/footer.phtml:144 ../../plugins/blog2social-v-
1070
  #: 3/views/b2s/html/footer.phtml:202
@@ -1073,22 +1117,22 @@ msgstr ""
1073
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
1074
  "oder nach einem regelmäßigen Muster"
1075
 
1076
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:103 ../..
1077
  #: /plugins/blog2social-v-3/includes/Notice.php:36 ../../plugins/blog2social-v-
1078
  #: 3/views/b2s/network.php:111 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1079
- #: 288 ../../plugins/blog2social-v-3/views/b2s/ship.php:322 ../..
1080
- #: /plugins/blog2social-v-3/views/b2s/ship.php:369 ../../plugins/blog2social-v-
1081
  #: 3/views/b2s/html/footer.phtml:33 ../../plugins/blog2social-v-
1082
  #: 3/views/b2s/html/footer.phtml:145 ../../plugins/blog2social-v-
1083
  #: 3/views/b2s/html/footer.phtml:203
1084
  msgid "Schedule and re-share old posts"
1085
  msgstr "Plane und teile alte Beiträge"
1086
 
1087
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:104 ../..
1088
  #: /plugins/blog2social-v-3/includes/Notice.php:37 ../../plugins/blog2social-v-
1089
  #: 3/views/b2s/network.php:112 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1090
- #: 289 ../../plugins/blog2social-v-3/views/b2s/ship.php:323 ../..
1091
- #: /plugins/blog2social-v-3/views/b2s/ship.php:370 ../../plugins/blog2social-v-
1092
  #: 3/views/b2s/html/footer.phtml:34 ../../plugins/blog2social-v-
1093
  #: 3/views/b2s/html/footer.phtml:65 ../../plugins/blog2social-v-
1094
  #: 3/views/b2s/html/footer.phtml:146 ../../plugins/blog2social-v-
@@ -1096,11 +1140,11 @@ msgstr "Plane und teile alte Beiträge"
1096
  msgid "Select link format or image format for your posts"
1097
  msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
1098
 
1099
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:105 ../..
1100
  #: /plugins/blog2social-v-3/includes/Notice.php:38 ../../plugins/blog2social-v-
1101
  #: 3/views/b2s/network.php:113 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1102
- #: 290 ../../plugins/blog2social-v-3/views/b2s/ship.php:324 ../..
1103
- #: /plugins/blog2social-v-3/views/b2s/ship.php:371 ../../plugins/blog2social-v-
1104
  #: 3/views/b2s/html/footer.phtml:35 ../../plugins/blog2social-v-
1105
  #: 3/views/b2s/html/footer.phtml:66 ../../plugins/blog2social-v-
1106
  #: 3/views/b2s/html/footer.phtml:147 ../../plugins/blog2social-v-
@@ -1108,11 +1152,11 @@ msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge ausw
1108
  msgid "Select individual images per post"
1109
  msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
1110
 
1111
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:106 ../..
1112
  #: /plugins/blog2social-v-3/includes/Notice.php:39 ../../plugins/blog2social-v-
1113
  #: 3/views/b2s/network.php:114 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1114
- #: 291 ../../plugins/blog2social-v-3/views/b2s/ship.php:325 ../..
1115
- #: /plugins/blog2social-v-3/views/b2s/ship.php:372 ../../plugins/blog2social-v-
1116
  #: 3/views/b2s/html/footer.phtml:36 ../../plugins/blog2social-v-
1117
  #: 3/views/b2s/html/footer.phtml:148 ../../plugins/blog2social-v-
1118
  #: 3/views/b2s/html/footer.phtml:206
@@ -1123,10 +1167,10 @@ msgstr ""
1123
  "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
1124
  "Media Beiträge"
1125
 
1126
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:110 ../..
1127
  #: /plugins/blog2social-v-3/views/b2s/network.php:118 ../../plugins/blog2social-v-
1128
- #: 3/views/b2s/ship.php:295 ../../plugins/blog2social-v-3/views/b2s/ship.php:329 .
1129
- #: ./../plugins/blog2social-v-3/views/b2s/ship.php:376 ../../plugins/blog2social-
1130
  #: v-3/views/b2s/html/footer.phtml:40 ../../plugins/blog2social-v-
1131
  #: 3/views/b2s/html/footer.phtml:71 ../../plugins/blog2social-v-
1132
  #: 3/views/b2s/html/footer.phtml:89 ../../plugins/blog2social-v-
@@ -1140,11 +1184,11 @@ msgstr ""
1140
  "Deinen kostenlosen 30-tägigen Test von Blog2Social Premium</a>(keine "
1141
  "Zahlungsinformationen erforderlich)"
1142
 
1143
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:121
1144
  msgid "Blog2Social: Custom Sharing & Scheduling"
1145
  msgstr "Blog2Social: Anpassen & Planen"
1146
 
1147
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:124
1148
  msgid ""
1149
  "Customize and schedule your social media posts on the one page preview for "
1150
  "all your selected networks: tailor your posts with individual comments, "
@@ -1158,45 +1202,45 @@ msgstr ""
1158
  "mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
1159
  "Community zu erzielen"
1160
 
1161
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:134
1162
  msgid "Select profile:"
1163
  msgstr "Profil auswählen: "
1164
 
1165
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:149
1166
  msgid "When do you want to share your post on social media?"
1167
  msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
1168
 
1169
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:152
1170
  msgid "immediately after publishing"
1171
  msgstr "sofort nach Veröffentlichung"
1172
 
1173
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:153
1174
  msgid "at scheduled times"
1175
  msgstr "zu geplanten Zeiten"
1176
 
1177
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:156
1178
  msgid "You want to sched your blog post with Auto-Poster?"
1179
  msgstr "Du willst Deinen Blogbeitrag mit dem Autoposter planen?"
1180
 
1181
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:156 ../..
1182
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:69 ../..
1183
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:87
1184
  msgid "Upgrade to PREMIUM PRO"
1185
  msgstr "Upgrade auf PREMIUM PRO"
1186
 
1187
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:162
1188
  msgid "Select date:"
1189
  msgstr "Datum auswählen:"
1190
 
1191
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:168
1192
  msgid "post at"
1193
  msgstr "beachte"
1194
 
1195
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:169
1196
  msgid "my time settings"
1197
  msgstr "meine Zeit-Einstellungen"
1198
 
1199
- #: ../../plugins/blog2social-v-3/includes/MetaBox.php:170
1200
  msgid ""
1201
  "Note: If you ​have​ not ​specified​ your own times, we automatically provide "
1202
  "you with the best times to post​ on the social networks. You can always "
@@ -1232,23 +1276,23 @@ msgstr "Jetzt auf Blog2Social Premium upgraden"
1232
  msgid "Top 5 FAQ"
1233
  msgstr "Top 5 FAQ"
1234
 
1235
- #: ../../plugins/blog2social-v-3/includes/PRG/Post/Filter.php:30
1236
  msgid "All Authors"
1237
  msgstr "alle Autoren"
1238
 
1239
- #: ../../plugins/blog2social-v-3/includes/PRG/Post/Filter.php:41
1240
  msgid "All Types"
1241
  msgstr "alle Typen"
1242
 
1243
- #: ../../plugins/blog2social-v-3/includes/PRG/Post/Item.php:83
1244
  msgid "You have no posts published or scheduled"
1245
  msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
1246
 
1247
- #: ../../plugins/blog2social-v-3/includes/PRG/Post/Item.php:110
1248
  msgid "Publish on PR-Gateway"
1249
  msgstr "Beitrag über PR-Gateway veröffentlichen"
1250
 
1251
- #: ../../plugins/blog2social-v-3/includes/PRG/Post/Item.php:112
1252
  msgid "on Blog"
1253
  msgstr "auf dem Blog"
1254
 
@@ -1495,7 +1539,7 @@ msgstr "neues Profil erstellen"
1495
 
1496
  #: ../../plugins/blog2social-v-3/views/b2s/network.php:30 ../..
1497
  #: /plugins/blog2social-v-3/views/b2s/network.php:31 ../../plugins/blog2social-v-
1498
- #: 3/views/prg/post.php:24 ../../plugins/blog2social-v-3/views/prg/post.php:25 ..
1499
  #: /../plugins/blog2social-v-3/views/b2s/html/post.navbar.phtml:10 ../..
1500
  #: /plugins/blog2social-v-3/views/b2s/html/post.navbar.phtml:11
1501
  msgid "filter"
@@ -1637,7 +1681,7 @@ msgstr "Netzwerk-Einstellungen"
1637
 
1638
  #: ../../plugins/blog2social-v-3/views/b2s/settings.php:37 ../..
1639
  #: /plugins/blog2social-v-3/views/b2s/ship.php:44 ../../plugins/blog2social-v-
1640
- #: 3/views/b2s/ship.php:410
1641
  msgid "My Time Settings"
1642
  msgstr "Meine Zeit-Einstellungen"
1643
 
@@ -1645,17 +1689,17 @@ msgstr "Meine Zeit-Einstellungen"
1645
  msgid "Reset predefined best time settings"
1646
  msgstr "Voreingestellte beste Zeiten zurücksetzen"
1647
 
1648
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:77
1649
  msgid "Select the preferred custom post format for your posts"
1650
  msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
1651
 
1652
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:81
1653
  msgid "You can define your preferred custom post format link post or photo post:"
1654
  msgstr ""
1655
  "Entscheide Dich für das passende Format für Deine Social Media Posts. Link "
1656
  "Post oder Photo Post:"
1657
 
1658
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:90
1659
  msgid ""
1660
  "A photo or image post displays the selected image in the one-page preview of "
1661
  "Blog2Social and your comment above the image. The image links to the image "
@@ -1672,11 +1716,11 @@ msgstr ""
1672
  "Fotoalben oder Deiner persönlichen Galerie im Netzwerk gespeichert wird. In "
1673
  "Facebook kannst du den Namen Deiner Alben beliebig anpassen."
1674
 
1675
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:103
1676
  msgid "Allow shortcodes in my post"
1677
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
1678
 
1679
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:106
1680
  msgid ""
1681
  "Shortcodes are used by some wordpress plugins like Elementor, Visual "
1682
  "Composer and Content Builder. When a shortcode is inserted in a WordPress "
@@ -1695,7 +1739,7 @@ msgstr ""
1695
  "den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
1696
  "diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
1697
 
1698
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:120
1699
  msgid ""
1700
  "Blog2Social applies the scheduled time settings based on the time zone "
1701
  "defined in the general settings of your WordPress. You can select a user-"
@@ -1709,11 +1753,11 @@ msgstr ""
1709
  "für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
1710
  "gewünschte Zeitzone aus dem Drop-Down Menü."
1711
 
1712
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:131
1713
  msgid "Select the content type you want to auto-post by default"
1714
  msgstr "Wähle die Inhalte, die Du standardmäßig auto-posten möchtest."
1715
 
1716
- #: ../../plugins/blog2social-v-3/views/b2s/settings.php:134
1717
  msgid ""
1718
  "Please select the content type you want to auto-post by default.<br>You can "
1719
  "activate auto-post by default for posts, pages and any custom post type. As "
@@ -1761,7 +1805,7 @@ msgid "Profiles | Pages | Groups"
1761
  msgstr "Profile | Seiten | Gruppen"
1762
 
1763
  #: ../../plugins/blog2social-v-3/views/b2s/ship.php:130 ../../plugins/blog2social-
1764
- #: v-3/views/b2s/ship.php:312
1765
  msgid "You want to save network settings in an additional profile?"
1766
  msgstr "Du möchtest Netzwerk-Verbindungen in einem zusätzlichen Profil speichern?"
1767
 
@@ -1813,23 +1857,23 @@ msgstr "zum Seitenanfang"
1813
  msgid "Share"
1814
  msgstr "Teilen"
1815
 
1816
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:205
1817
  msgid "Time zone"
1818
  msgstr "Zeitzone"
1819
 
1820
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:212
1821
  msgid "Share new post on Social Media"
1822
  msgstr "Teile einen neuen Beitrag auf Social Media"
1823
 
1824
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:239
1825
  msgid "Connect for"
1826
  msgstr "Netzwerke verbinden für"
1827
 
1828
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:255
1829
  msgid "Time Scheduling"
1830
  msgstr "Zeitplanung"
1831
 
1832
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:259
1833
  msgid ""
1834
  "You have not yet defined personal time settings. To edit personal time "
1835
  "settings click on the Blog2Social Settings on the left-hand menu and select "
@@ -1841,11 +1885,11 @@ msgstr ""
1841
  "Menü von Blog2Social und wähle die \"Zeit-Einstellungen\" aus. Dort kannst Du "
1842
  "die voreingestellten besten Zeiten verändern."
1843
 
1844
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:272
1845
  msgid "Re-share this Post"
1846
  msgstr "Diesen Beitrag nochmal teilen"
1847
 
1848
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:275
1849
  msgid ""
1850
  "You can re-share your post for a different sharing purpose, or to share on a "
1851
  "different choice of networks, profiles, pages or groups, or with different "
@@ -1870,15 +1914,15 @@ msgstr ""
1870
  "auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, "
1871
  "wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
1872
 
1873
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:278
1874
  msgid "You want re-share your blog post?"
1875
  msgstr "Du möchtest Deinen Beitrag erneut teilen?"
1876
 
1877
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:306
1878
  msgid "Save Network Settings"
1879
  msgstr "Netzwerkeinstellungen speichern"
1880
 
1881
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:309
1882
  msgid ""
1883
  "You can save your current network settings as \"Standard\" network settings "
1884
  "for any future sharing activities or as a \"Profile\" to choose from (Premium)."
@@ -1910,27 +1954,27 @@ msgstr ""
1910
  "zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
1911
  "variieren kannst. "
1912
 
1913
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:342
1914
  msgid "Your blog post is not yet published on your Wordpress!"
1915
  msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
1916
 
1917
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:345
1918
  msgid "At least one of your selected networks is set to \"Share Now\""
1919
  msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
1920
 
1921
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:349
1922
  msgid "Schedule your post"
1923
  msgstr "Beitrag planen"
1924
 
1925
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:352
1926
  msgid "Ignore & share"
1927
  msgstr "Ignorieren & teilen"
1928
 
1929
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:388
1930
  msgid "Select image for"
1931
  msgstr "Wähle Bild aus für"
1932
 
1933
- #: ../../plugins/blog2social-v-3/views/b2s/ship.php:431
1934
  msgid "Post Format"
1935
  msgstr "Postformat"
1936
 
@@ -2286,125 +2330,125 @@ msgstr ""
2286
  "den verschiedenen Social Media geklickt, gelikt oder geteilt wurde. <br>Sie "
2287
  "können den b2s.pm Shortener deaktivieren, um Ihre eigene URL anzuzeigen."
2288
 
2289
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:8
2290
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
2291
  msgstr "Vielen Dank. Ab sofort erhältest Du die Blog-Updates von Blog2Social."
2292
 
2293
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:25
2294
  msgid "This entry could not be removed. It's not yours!"
2295
  msgstr "Der Eintrag kann nicht entfernt werden. Es ist nicht Deiner!"
2296
 
2297
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:30
2298
  msgid "This entry was removed successful."
2299
  msgstr "Der Eintrag wurde entfernt."
2300
 
2301
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:39
2302
  msgid "Post was scheduled successfully on your blog!"
2303
  msgstr "Beitrag wurde erfolgreich auf Deinem Blog geplant!"
2304
 
2305
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:41
2306
  msgid "Post is published successfully on your blog!"
2307
  msgstr "Beitrag wird erfolgreich auf Deinem Blog veröffentlicht!"
2308
 
2309
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:51 ../..
2310
- #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:156
2311
  msgid "Version"
2312
  msgstr "Version"
2313
 
2314
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:51
2315
  msgid "is successfully activated."
2316
  msgstr "wurde erfolgreich aktiviert."
2317
 
2318
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:56
2319
  msgid "Your entered License Key is invalid. Please contact support!"
2320
  msgstr "Dein Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Support!"
2321
 
2322
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:61
2323
  msgid "Your license key has reached the maximum number of users."
2324
  msgstr "Dein Lizenzschlüssel hat die maximale Anzahl an Benutzern erreicht."
2325
 
2326
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:68
2327
  msgid "Your authorization was successful."
2328
  msgstr "Deine Autorisierung war erfolgreich."
2329
 
2330
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:73
2331
  msgid "Your profile was saved successful."
2332
  msgstr "Dein Profil wurde erfolgreich gespeichert."
2333
 
2334
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:78
2335
  msgid "Your profile could not be saved."
2336
  msgstr "Dein Profil konnte nicht gespeichert werden."
2337
 
2338
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:83
2339
  msgid "Your authorization could not be removed."
2340
  msgstr "Deine Autorisierung konnte nicht entfernt werden."
2341
 
2342
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:88
2343
  msgid "Your authorization was removed successful."
2344
  msgstr "Dein Profil wurde erfolgreich entfernt."
2345
 
2346
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:93
2347
  msgid "Thank you! Your feedback has been received."
2348
  msgstr "Vielen Dank. Dein Hinweis wurde an uns übermittelt."
2349
 
2350
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:98
2351
  msgid "Your feedback could not be delivered."
2352
  msgstr "Dein Hinweis konnte nicht übermittelt werden. Bitte versuche es erneut."
2353
 
2354
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:105 ../..
2355
- #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:115
2356
  msgid "Your settings were successfully saved."
2357
  msgstr "Deine Einstellungen sind gespeichert."
2358
 
2359
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:110
2360
  msgid "Your settings could not be saved."
2361
  msgstr "Deine Einstellungen konnte nicht gespeichert werden. Versuche es erneut."
2362
 
2363
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:123 ../..
2364
- #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:179
2365
  msgid "Test Blog2Social PREMIUM 30 days for free"
2366
  msgstr "Teste Blog2Social PREMIUM 30 Tage kostenlos"
2367
 
2368
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:123 ../..
2369
- #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:212
2370
  msgid "Get Started"
2371
  msgstr "Jetzt loslegen"
2372
 
2373
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:132
2374
  msgid "Your Blog2Social Premium Free Version is activated for "
2375
  msgstr "Deine Blog2Social Testphase läuft noch"
2376
 
2377
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:135
2378
  msgid " Days"
2379
  msgstr "Tage"
2380
 
2381
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:135
2382
  msgid " today"
2383
  msgstr "heute"
2384
 
2385
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:145
2386
  msgid "Your Blog2Social FREE-TRIAL Version has expired. Did you like this version?"
2387
  msgstr "Deine Blog2Social Testphase ist abgelaufen. Hat es Dir gefallen?"
2388
 
2389
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:146
2390
  msgid "Yes, I want more"
2391
  msgstr "Ja, ich will mehr"
2392
 
2393
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:147
2394
  msgid "No, I had enough"
2395
  msgstr "Nein, ich habe genug"
2396
 
2397
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:166 ../..
2398
  #: /plugins/blog2social-v-3/views/b2s/html/service.phtml:15
2399
  msgid "Plans & Pricing"
2400
  msgstr "Versionen & Preise"
2401
 
2402
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:167 ../..
2403
  #: /plugins/blog2social-v-3/views/b2s/html/service.phtml:16
2404
  msgid "Support"
2405
  msgstr "Support"
2406
 
2407
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:185
2408
  msgid ""
2409
  "The free trial can not be started. This blog has been already registered for "
2410
  "the free trial."
@@ -2412,19 +2456,19 @@ msgstr ""
2412
  "Die kostenlose Testphase konnte nicht aktiviert werden. Dieser Blog wurde "
2413
  "bereits für die kostenlose Testzeit freigeschaltet."
2414
 
2415
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:190
2416
  msgid "Share on multiple accounts per network"
2417
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
2418
 
2419
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:191
2420
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
2421
  msgstr "Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
2422
 
2423
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:192
2424
  msgid "Reporting with links to all published social media posts"
2425
  msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
2426
 
2427
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:195 ../..
2428
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:141 ../..
2429
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:143 ../..
2430
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:218 ../..
@@ -2432,7 +2476,7 @@ msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
2432
  msgid "E-Mail"
2433
  msgstr "E-Mail"
2434
 
2435
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:199 ../..
2436
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:91 ../..
2437
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:100 ../..
2438
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:168 ../..
@@ -2440,7 +2484,7 @@ msgstr "E-Mail"
2440
  msgid "First Name"
2441
  msgstr "Vorname"
2442
 
2443
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:203 ../..
2444
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:92 ../..
2445
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:103 ../..
2446
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:169 ../..
@@ -2448,7 +2492,7 @@ msgstr "Vorname"
2448
  msgid "Last Name"
2449
  msgstr "Nachname"
2450
 
2451
- #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:208
2452
  msgid "No credit card required"
2453
  msgstr "keine Kreditkarte notwendig"
2454
 
4
  "Stable (latest release)\n"
5
  "Report-Msgid-Bugs-To: \n"
6
  "POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
7
+ "PO-Revision-Date: Tue Jun 27 2017 08:35:53 GMT+0200\n"
8
  "Last-Translator: admin <s.buerger@adenion.de>\n"
9
  "Language-Team: \n"
10
  "Language: German\n"
23
  "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
24
  "X-Loco-Target-Locale: de_DE"
25
 
26
+ #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:91
27
+ msgid "need more"
28
+ msgstr "Du brauchst mehr?"
29
+
30
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:131
31
+ msgid "Did you know?"
32
+ msgstr "Wusstest Du schon?"
33
+
34
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:132
35
+ msgid ""
36
+ "Beginning with Premium Pro, you can change the custom post format photo post "
37
+ "or link post for each individual social media post and channel (profile, "
38
+ "page, group), deviate from the default settings."
39
+ msgstr ""
40
+ "Beginnend mit Premium Pro Version kannst Du das Beitragsformat zwischen "
41
+ "Bildbeitrag und Linkbeitrag für jeden einzelnen Social Media Post und Kanal "
42
+ "(Profil, Seite, Gruppe) ändern und von den Standardeinstellungen abweichen."
43
+
44
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:132
45
+ msgid "Upgrade to Premium Pro now."
46
+ msgstr "Upgrade auf Premium PRO"
47
+
48
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:184
49
+ msgid "All"
50
+ msgstr "alle"
51
+
52
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:24 ../..
53
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:15
54
+ msgid "Please see FAQ"
55
+ msgstr "Siehe FAQ"
56
+
57
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:54
58
+ msgid "Post format"
59
+ msgstr "Beitragsformat"
60
+
61
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:59
62
+ msgid "Facebook"
63
+ msgstr "Facebook"
64
+
65
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:62
66
+ msgid "Twitter"
67
+ msgstr "Twitter"
68
+
69
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:432
70
+ msgid "Choose your"
71
+ msgstr "Wähle Deinen"
72
+
73
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:434
74
+ msgid "for:"
75
+ msgstr "für:"
76
+
77
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:449
78
+ msgid ""
79
+ "Define the default settings for the custom post format for all of your "
80
+ "Facebook accounts on the Blog2Social settings section."
81
+ msgstr ""
82
+ "Definiere das benutzerdefinierte Beitragsformat für alle Deine Twitter-"
83
+ "Konten kannst Du unter den Blog2Social Einstellungen definieren."
84
+
85
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:452
86
+ msgid ""
87
+ "Define the default settings for the custom post format for all of your "
88
+ "Twitter accounts on the Blog2Social settings section."
89
+ msgstr ""
90
+ "Definiere das benutzerdefinierte Beitragsformat für alle Deine Twitter-"
91
+ "Konten kannst Du unter den Blog2Social Einstellungen definieren."
92
+
93
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:42 ../..
94
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Navbar.php:32
95
  msgid "Default"
99
  msgid "max. accounts"
100
  msgstr "max. Accounts"
101
 
 
 
 
 
102
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:96 ../..
103
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:112 ../..
104
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:114 ../..
105
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:184 ../..
106
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:197 ../..
107
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:214 ../..
108
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:261 ../..
109
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:35 ../..
110
+ #: /plugins/blog2social-v-3/includes/Init.php:287
111
  msgid "Profile"
112
  msgstr "Profil"
113
 
114
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:99 ../..
115
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:99 ../..
 
116
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:134 ../..
117
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:136 ../..
118
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:198 ../..
119
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:215 ../..
120
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:264 ../..
121
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:33 ../..
122
+ #: /plugins/blog2social-v-3/includes/Init.php:287
123
  msgid "Page"
124
  msgstr "Seite"
125
 
130
 
131
  #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:102 ../..
132
  #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:102 ../..
133
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:156 ../..
134
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:158 ../..
135
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:199 ../..
136
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:216 ../..
137
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:268 ../..
138
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:29 ../..
139
+ #: /plugins/blog2social-v-3/includes/Init.php:287
140
  msgid "Group"
141
  msgstr "Gruppe"
142
 
145
  msgid "You want to connect a social media group?"
146
  msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
147
 
148
+ #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:121 ../..
149
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:165
 
 
 
 
 
 
 
 
 
 
 
 
150
  msgid "Authorization is interrupted since"
151
  msgstr "Autorisierung ist unterbrochen seit"
152
 
153
+ #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:123 ../..
154
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:146 ../..
155
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:168
156
  msgid "To reactivate this social media connection,"
157
  msgstr "Um diese Social Media Verbindung zu reaktivieren,"
158
 
159
+ #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:123 ../..
160
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:146 ../..
161
+ #: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:168 ../..
162
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Image.php:19
163
  msgid "please upgrade"
164
  msgstr "Bitte upgraden"
165
 
166
+ #: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:143
167
  msgid "Authorization is interrupted since"
168
  msgstr "Autorisierung ist unterbrochen seit"
169
 
174
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:49 ../..
175
  #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:185 ../..
176
  #: /plugins/blog2social-v-3/includes/B2S/Ship/Save.php:174 ../..
177
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:41 ../..
178
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:97 ../..
179
  #: /plugins/blog2social-v-3/views/b2s/ship.php:12
180
  msgid "published"
181
  msgstr "veröffentlicht"
182
 
183
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:49 ../..
184
  #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:185 ../..
185
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:41 ../..
186
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:97 ../..
187
  #: /plugins/blog2social-v-3/views/b2s/ship.php:12
188
  msgid "scheduled"
189
  msgstr "geplant"
190
 
191
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:49 ../..
192
  #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:185 ../..
193
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:97 ../..
 
194
  #: /plugins/blog2social-v-3/views/b2s/ship.php:12
195
  msgid "draft"
196
  msgstr "Entwurf"
213
  msgid "all categories & tags"
214
  msgstr "alle Kategorien & Schlagwörter"
215
 
216
+ #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:108 ../..
217
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:53
218
  msgid "all post types"
219
  msgstr "alle Typen"
220
 
221
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:129 ../..
222
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:74
223
  msgid "Search Title"
224
  msgstr "Suche nach Titel"
225
 
233
  msgstr "Planungskalender anzeigen"
234
 
235
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:152 ../..
236
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:85
237
  msgid "sort"
238
  msgstr "sortieren"
239
 
240
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Filter.php:153 ../..
241
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Filter.php:86
242
  msgid "reset"
243
  msgstr "zurücksetzen"
244
 
259
  msgstr "zuletzt auf Social Media geteilt"
260
 
261
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:218 ../..
262
+ #: /plugins/blog2social-v-3/includes/Init.php:103
263
  msgid "Share on Social Media"
264
  msgstr "auf Social Media teilen"
265
 
266
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:220 ../..
267
+ #: /plugins/blog2social-v-3/includes/PRG/Post/Item.php:129
268
  msgid "Author"
269
  msgstr "Autor"
270
 
274
  msgstr "auf dem Blog"
275
 
276
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:237 ../..
277
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:215 ../../plugins/blog2social-v-
278
+ #: 3/views/b2s/ship.php:217
279
  msgid "Re-share this post"
280
  msgstr "Diesen Beitrag nochmal teilen"
281
 
342
  msgstr "geplant von "
343
 
344
  #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:447 ../..
345
+ #: /plugins/blog2social-v-3/includes/B2S/Post/Item.php:460
 
 
 
 
 
346
  msgid "delete scheduling"
347
  msgstr "Planung löschen"
348
 
349
+ #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:451
350
  msgid "You want to change the time for your scheduled post?"
351
  msgstr "Du möchtest die Zeit zu einem geplanten Beitrag ändern?"
352
 
353
+ #: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:452
354
  msgid "change time"
355
  msgstr "Zeitpunkt ändern"
356
 
359
  msgstr "Konto"
360
 
361
  #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:68 ../..
362
+ #: /plugins/blog2social-v-3/views/b2s/settings.php:160
363
  msgid "Personal Time Zone"
364
  msgstr "Persönliche Zeitzone"
365
 
409
  msgid "allow shortcodes in my post"
410
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
411
 
412
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:146 ../..
413
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:188 ../..
414
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:227 ../..
415
+ #: /plugins/blog2social-v-3/views/b2s/settings.php:127
 
 
 
 
416
  msgid "Link Post"
417
  msgstr "Link-Beitrag"
418
 
419
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:150 ../..
420
+ #: /plugins/blog2social-v-3/views/b2s/settings.php:128
 
421
  msgid ""
422
  "The link post format displays posts title, link address and the first one or "
423
  "two sentences of the post. The networks scan this information from your META "
432
  "falls du kein Beitragsbild in WordPress ausgewählt hast. Das Bild verlinkt "
433
  "automatisch auf Deinen Blogbeitrag."
434
 
435
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:153 ../..
436
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:205 ../..
437
+ #: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:227 ../..
438
+ #: /plugins/blog2social-v-3/views/b2s/settings.php:132
439
  msgid "Photo Post"
440
  msgstr "Bild-Beitrag"
441
 
442
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:157
 
443
  msgid ""
444
  "A photo or image post displays the selected image in the one-page preview of "
445
  "Blog2Social and your comment above the image. The image links to the image "
456
  "Fotoalben oder Deiner persönlichen Galerie im Netzwerk gespeichert wird. In "
457
  "Facebook kannst du den Namen Deiner Alben beliebig anpassen."
458
 
459
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:275 ../..
 
 
 
 
460
  #: /plugins/blog2social-v-3/views/b2s/post.sched.php:24
461
  msgid "Uhr"
462
  msgstr "Uhr"
463
 
464
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:279
465
  msgid "Best times to post"
466
  msgstr "Beste Zeiten"
467
 
468
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:292 ../..
469
  #: /plugins/blog2social-v-3/views/b2s/settings.php:44 ../../plugins/blog2social-v-
470
+ #: 3/views/b2s/ship.php:49 ../../plugins/blog2social-v-3/views/b2s/ship.php:360 ..
471
  #: /../plugins/blog2social-v-3/views/b2s/html/footer.phtml:135
472
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
473
  msgstr ""
474
  "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
475
  "Manager benutzen?"
476
 
477
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:294 ../..
478
  #: /plugins/blog2social-v-3/views/b2s/post.sched.php:90 ../../plugins/blog2social-
479
+ #: v-3/views/b2s/settings.php:46 ../../plugins/blog2social-v-3/views/b2s/settings.
480
+ #: php:74 ../../plugins/blog2social-v-3/views/b2s/settings.php:87 ../..
481
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:410
482
  msgid "save"
483
  msgstr "speichern"
484
 
485
+ #: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:299
486
  msgid "Sorry, we can not load your data at the moment..."
487
  msgstr "Sorry, derzeit können wir Deine Daten nicht laden. Versuche es erneut."
488
 
581
  msgid "post format"
582
  msgstr "Postformat"
583
 
584
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:207
585
  msgid "Insert full-text"
586
  msgstr "ganzen Text einfügen"
587
 
588
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:209
589
  msgid "Delete text"
590
  msgstr "Text löschen"
591
 
592
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:244 ../..
593
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:262 ../..
594
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:280 ../..
595
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:298 ../..
596
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:313
597
  msgid "Write something about your post..."
598
  msgstr "Schreibe etwas..."
599
 
600
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:251 ../..
601
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:269 ../..
602
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:287 ../..
603
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:340
604
  msgid "Change image for this network"
605
  msgstr "Bild für dieses Netzwerk ändern"
606
 
607
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:327
608
  msgid "required"
609
  msgstr "erforderlich"
610
 
611
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:347 ../..
612
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:349
613
  msgid "Link"
614
  msgstr "Link"
615
 
616
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:397
617
  msgid "The Headline..."
618
  msgstr "Die Überschrift..."
619
 
620
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:402
621
  msgid "Hashtags"
622
  msgstr "Hashtags"
623
 
624
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:432
625
  msgid "Share Now"
626
  msgstr "Sofort teilen"
627
 
628
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:434
629
  msgid "Schedule post once"
630
  msgstr "Beitrag einmal planen"
631
 
632
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:436
633
  msgid "Schedule post recurrently"
634
  msgstr "Beitrag mehrfach planen"
635
 
636
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:461
637
  msgid "Duration"
638
  msgstr "Dauer"
639
 
640
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:462 ../..
641
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:477
642
  msgid "Date"
643
  msgstr "Startdatum"
644
 
645
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:463 ../..
646
+ #: /plugins/blog2social-v-3/includes/B2S/Ship/Item.php:478
647
  msgid "Time"
648
  msgstr "Zeit"
649
 
650
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:464
651
  msgid "Days"
652
  msgstr "Tage"
653
 
654
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:472
655
  msgid "Week"
656
  msgstr "Woche"
657
 
658
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:472
659
  msgid "Weeks"
660
  msgstr "Wochen"
661
 
662
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:482
663
  msgid "Mon"
664
  msgstr "Mo"
665
 
666
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:483
667
  msgid "Tue"
668
  msgstr "Di"
669
 
670
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:484
671
  msgid "Wed"
672
  msgstr "Mi"
673
 
674
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:485
675
  msgid "Thu"
676
  msgstr "Do"
677
 
678
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:486
679
  msgid "Fri"
680
  msgstr "Fr"
681
 
682
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:487
683
  msgid "Sat"
684
  msgstr "Sa"
685
 
686
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:488
687
  msgid "Sun"
688
  msgstr "So"
689
 
690
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:493 ../..
691
  #: /plugins/blog2social-v-3/views/b2s/network.php:170
692
  msgid "delete"
693
  msgstr "löschen"
694
 
695
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:494
696
  msgid "Add Posting Time"
697
  msgstr "neue Terminserie anlegen"
698
 
699
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:500
700
  msgid "Apply Settings To All Networks"
701
  msgstr "Planung für alle Netzwerke übernehmen"
702
 
703
+ #: ../../plugins/blog2social-v-3/includes/B2S/Ship/Item.php:501
704
  msgid "Save Settings As Default"
705
  msgstr "Planung dauerhaft speichern"
706
 
720
  msgid "Number of scheduled posts"
721
  msgstr "Anzahl der geplanten Posts"
722
 
723
+ #: ../../plugins/blog2social-v-3/includes/Init.php:259
724
  msgid "This post will be shared into your social media on"
725
  msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
726
 
727
+ #: ../../plugins/blog2social-v-3/includes/Init.php:259 ../../plugins/blog2social-
728
+ #: v-3/includes/Init.php:261
729
  msgid "show details"
730
  msgstr "siehe Details"
731
 
732
+ #: ../../plugins/blog2social-v-3/includes/Init.php:261
733
  msgid "This post will be shared on social media in 2-3 minutes!"
734
  msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
735
 
736
+ #: ../../plugins/blog2social-v-3/includes/Init.php:265
737
  msgid ""
738
  "Please, make sure that your post are publish on this blog on this moment. "
739
  "Then you can auto post your post with Blog2social."
741
  "Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
742
  " Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
743
 
744
+ #: ../../plugins/blog2social-v-3/includes/Init.php:268 ../../plugins/blog2social-
745
+ #: v-3/includes/MetaBox.php:55
746
  msgid ""
747
  "There are no authorizations for your selected profile. Please, authorize "
748
  "with a social network or select a other profile."
750
  "Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
751
  "mit einem Netzwerk oder wähle ein anderes Profil aus. "
752
 
753
+ #: ../../plugins/blog2social-v-3/includes/Init.php:280
754
  msgid "Upgrade to Premium"
755
  msgstr "Premium freischalten"
756
 
757
+ #: ../../plugins/blog2social-v-3/includes/Init.php:288
758
  msgid "Your post could not be posted."
759
  msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
760
 
761
+ #: ../../plugins/blog2social-v-3/includes/Init.php:289
762
  msgid "Your authorization has expired. Please check your authorization."
763
  msgstr "Deine Autorisierung ist abgelaufen. Bitte überprüfe deine Autorisierung."
764
 
765
+ #: ../../plugins/blog2social-v-3/includes/Init.php:290
766
  msgid "The network has marked the post as spam or abusive."
767
  msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
768
 
769
+ #: ../../plugins/blog2social-v-3/includes/Init.php:291
770
  msgid ""
771
  "We don't have the permission to publish your post. Please check your "
772
  "authorization."
774
  "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
775
  "überprüfe deine Autorisierung."
776
 
777
+ #: ../../plugins/blog2social-v-3/includes/Init.php:292
778
  msgid ""
779
  "Your authorization is interrupted. Please check your authorization. Please "
780
  "see <a target=\"_blank\" href=\"https://www.blog2social."
784
  "Siehe <a target=\"_blank\" href=\"https://www.blog2social."
785
  "com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
786
 
787
+ #: ../../plugins/blog2social-v-3/includes/Init.php:293
788
  msgid "Your limit is reached for today."
789
  msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account für Heute erreicht."
790
 
791
+ #: ../../plugins/blog2social-v-3/includes/Init.php:294
792
  msgid "Your post could not be posted, because your image is not available."
793
  msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
794
 
795
+ #: ../../plugins/blog2social-v-3/includes/Init.php:295
796
  msgid ""
797
  "The network has blocked your account. Please see <a target=\"_blank\" "
798
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
802
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
803
  "loesungen.html\">FAQ</a>."
804
 
805
+ #: ../../plugins/blog2social-v-3/includes/Init.php:296
806
  msgid ""
807
  "The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
808
  "//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
812
  "href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
813
  "loesungen.html\">FAQ</a>."
814
 
815
+ #: ../../plugins/blog2social-v-3/includes/Init.php:297
816
  msgid "Your limit has temporarily reached for this network."
817
  msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account kurzzeitig erreicht."
818
 
819
+ #: ../../plugins/blog2social-v-3/includes/Init.php:298
820
  msgid ""
821
  "The network can not publish special characters such as Emoji. Please see <a "
822
  "target=\"_blank\" href=\"https://www.blog2social."
826
  "//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
827
  "html\">FAQ</a>."
828
 
829
+ #: ../../plugins/blog2social-v-3/includes/Init.php:299
830
  msgid "Your post is a duplicate."
831
  msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
832
 
833
+ #: ../../plugins/blog2social-v-3/includes/Init.php:300
834
  msgid "The network are required a public url to your post."
835
  msgstr "Das Netzwerk fordert, dass Dein Link zu Deinem Beitrag erreichbar ist."
836
 
837
+ #: ../../plugins/blog2social-v-3/includes/Init.php:301
838
  msgid "The network says, that your group is not exisits."
839
  msgstr "Das Netzwerk konnte Deine angegebene Gruppe nicht finden."
840
 
841
+ #: ../../plugins/blog2social-v-3/includes/Init.php:358 ../../plugins/blog2social-
842
+ #: v-3/includes/Init.php:388
843
  msgid "Dashboard"
844
  msgstr "Dashboard"
845
 
846
+ #: ../../plugins/blog2social-v-3/includes/Init.php:359 ../../plugins/blog2social-
847
+ #: v-3/includes/Init.php:359 ../../plugins/blog2social-v-3/includes/Init.php:395
848
  msgid "Posts & Sharing"
849
  msgstr "Beiträge"
850
 
851
+ #: ../../plugins/blog2social-v-3/includes/Init.php:360 ../../plugins/blog2social-
852
+ #: v-3/includes/Init.php:360 ../../plugins/blog2social-v-3/includes/Init.php:402 .
853
  #: ./../plugins/blog2social-v-3/views/b2s/network.php:17
854
  msgid "Networks"
855
  msgstr "Netzwerke"
856
 
857
+ #: ../../plugins/blog2social-v-3/includes/Init.php:361 ../../plugins/blog2social-
858
+ #: v-3/includes/Init.php:361 ../../plugins/blog2social-v-3/includes/Init.php:408 .
859
  #: ./../plugins/blog2social-v-3/views/b2s/ship.php:53 ../../plugins/blog2social-v-
860
+ #: 3/views/b2s/ship.php:263
861
  msgid "Settings"
862
  msgstr "Einstellungen"
863
 
864
+ #: ../../plugins/blog2social-v-3/includes/Init.php:362 ../../plugins/blog2social-
865
+ #: v-3/includes/Init.php:362 ../../plugins/blog2social-v-3/includes/Init.php:414
866
  msgid "PR-Service"
867
  msgstr "PR-Service"
868
 
869
+ #: ../../plugins/blog2social-v-3/includes/Init.php:379
870
  msgid "Blog2Social"
871
  msgstr "Blog2Social"
872
 
873
+ #: ../../plugins/blog2social-v-3/includes/Init.php:631 ../../plugins/blog2social-
874
+ #: v-3/includes/Init.php:784
875
  msgid "or"
876
  msgstr "oder"
877
 
878
+ #: ../../plugins/blog2social-v-3/includes/Init.php:631 ../../plugins/blog2social-
879
+ #: v-3/includes/Init.php:784
880
  msgid "back to install plugins"
881
  msgstr "zurück zur Pluginübersicht"
882
 
884
  msgid "last auto-post:"
885
  msgstr "letzter Auto-Post:"
886
 
887
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:53 ../..
888
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:470 ../../plugins/blog2social-v-
889
+ #: 3/views/b2s/html/header.phtml:20
890
  msgid "The connection to the server failed. Try again!"
891
  msgstr ""
892
  "Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
893
  "erneut!"
894
 
895
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:54 ../..
896
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:14
897
  msgid ""
898
  "WordPress uses heartbeats by default, Blog2Social as well. Please enable "
899
  "heartbeats for using Blog2Social!"
901
  "WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
902
  "Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
903
 
904
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:55 ../..
905
+ #: /plugins/blog2social-v-3/includes/MetaBox.php:133
906
  msgid "Network settings"
907
  msgstr "Netzwerkeinstellungen"
908
 
909
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:56
910
  msgid ""
911
  "Your post is still on draft or pending status. Please make sure that your "
912
  "post is published or scheduled to be published on this blog. You can then "
916
  "geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
917
  "planen."
918
 
919
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:57
920
  msgid ""
921
  "Notice: Please make sure, that your website address is reachable. The Social "
922
  "Networks do not allow postings from local installations."
924
  "Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
925
  "Fragen wende Dich bitte an unseren Support."
926
 
927
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:58
928
  msgid "You want to auto post your blog post?"
929
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
930
 
931
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:58 ../..
932
+ #: /plugins/blog2social-v-3/includes/MetaBox.php:107 ../../plugins/blog2social-v-
933
  #: 3/views/b2s/network.php:116 ../../plugins/blog2social-v-3/views/b2s/ship.php:
934
+ #: 294 ../../plugins/blog2social-v-3/views/b2s/ship.php:328 ../..
935
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:375 ../../plugins/blog2social-v-
936
  #: 3/views/b2s/html/footer.phtml:38 ../../plugins/blog2social-v-
937
  #: 3/views/b2s/html/footer.phtml:150 ../../plugins/blog2social-v-
938
  #: 3/views/b2s/html/footer.phtml:208 ../../plugins/blog2social-v-
939
+ #: 3/views/b2s/html/header.phtml:139
940
  msgid "Upgrade to PREMIUM"
941
  msgstr "Jetzt auf Premium upgraden"
942
 
943
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:59
944
  msgid "Custom Sharing & Scheduling"
945
  msgstr "Anpassen & Planen"
946
 
947
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:59 ../..
948
+ #: /plugins/blog2social-v-3/includes/MetaBox.php:63
949
  msgid "Info"
950
  msgstr "Info"
951
 
952
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:60
953
  msgid "Customize & Schedule Social Media Posts"
954
  msgstr "Social Media Posts anpassen & planen"
955
 
956
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:63 ../..
957
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:190
958
  msgid "Social Media Auto-Posting"
959
  msgstr "Social Media Auto-Posting"
960
 
961
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:66
962
  msgid "enable Auto-Posting"
963
  msgstr "Auto-Posting aktivieren"
964
 
965
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:72 ../..
966
  #: /plugins/blog2social-v-3/views/b2s/network.php:51 ../../plugins/blog2social-v-
967
  #: 3/views/b2s/network.php:153 ../../plugins/blog2social-v-3/views/b2s/post.php:
968
  #: 37 ../../plugins/blog2social-v-3/views/b2s/post.publish.php:40 ../..
969
  #: /plugins/blog2social-v-3/views/b2s/post.sched.php:48 ../../plugins/blog2social-
970
  #: v-3/views/b2s/ship.php:153 ../../plugins/blog2social-v-3/views/b2s/ship.php:
971
+ #: 469 ../../plugins/blog2social-v-3/views/prg/html/header.phtml:81
972
  msgid "Loading..."
973
  msgstr "Lade Daten..."
974
 
975
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:80 ../..
976
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:180
977
  msgid "Blog2Social: Social Media Auto-Posting"
978
  msgstr "Blog2Social: Social Media Auto-Posting"
979
 
980
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:84 ../..
981
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:184
982
  msgid ""
983
  "You have 2 general options to define the date and time to share your blog "
986
  "Dir stehen grundsätzlich 2 Möglichkeiten zur Verfügung, per Auto-Posting "
987
  "Deine Blogbeiträge auf Social Media zu teilen: "
988
 
989
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:85 ../..
990
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:185
991
  msgid "1. Immediately after publishing your blog post"
992
  msgstr "Sofort nach Veröffentlichung Deines Blogbeitrags "
993
 
994
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:86 ../..
995
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:186
996
  msgid ""
997
  "Published blog posts: If you publish your blog post with click on publish in "
1002
  "auf “veröffentlichen” im Beitrags-Editor Deines Blogs sofort veröffentlichst,"
1003
  " teilt Blog2Social Deinen Blogbeitrag unmittelbar auf Social Media."
1004
 
1005
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:87 ../..
1006
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:187
1007
  msgid ""
1008
  "Scheduled blog posts: If you schedule your blog post with click on schedule "
1014
  "Deines Blogs klickst, teilt Blog2Social Deinen Blogbeitrag direkt nach der "
1015
  "Veröffentlichung auf Social Media. "
1016
 
1017
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:88 ../..
1018
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:188
1019
  msgid ""
1020
  "2. Schedule your social media posts for a specific date and time If you want "
1027
  "abweichen, wähle die Option “zu bestimmten Zeiten” und lege das Datum und "
1028
  "die Uhrzeit fest. "
1029
 
1030
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:92 ../..
1031
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:193
1032
  msgid "You want to auto-post your blog post?"
1033
  msgstr "Du möchtest Deinen Beitrag automatisch posten?"
1034
 
1035
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:93 ../..
1036
  #: /plugins/blog2social-v-3/includes/Notice.php:29 ../../plugins/blog2social-v-
1037
  #: 3/views/b2s/network.php:102 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1038
+ #: 280 ../../plugins/blog2social-v-3/views/b2s/ship.php:314 ../..
1039
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:361 ../../plugins/blog2social-v-
1040
  #: 3/views/b2s/html/footer.phtml:24 ../../plugins/blog2social-v-
1041
  #: 3/views/b2s/html/footer.phtml:136 ../../plugins/blog2social-v-
1042
  #: 3/views/b2s/html/footer.phtml:194
1043
  msgid "With Blog2Social Premium you can:"
1044
  msgstr "Mit Blog2Social kannst Du:"
1045
 
1046
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:96 ../..
1047
  #: /plugins/blog2social-v-3/includes/Notice.php:30 ../../plugins/blog2social-v-
1048
  #: 3/views/b2s/network.php:105 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1049
+ #: 283 ../../plugins/blog2social-v-3/views/b2s/ship.php:317 ../..
1050
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:364 ../../plugins/blog2social-v-
1051
  #: 3/views/b2s/html/footer.phtml:27 ../../plugins/blog2social-v-
1052
  #: 3/views/b2s/html/footer.phtml:139 ../../plugins/blog2social-v-
1053
  #: 3/views/b2s/html/footer.phtml:197 ../../plugins/blog2social-v-
1054
+ #: 3/views/b2s/html/header.phtml:191
1055
  msgid "Post on pages and groups"
1056
  msgstr "Poste auf Seiten und in Gruppen"
1057
 
1058
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:97 ../..
1059
  #: /plugins/blog2social-v-3/includes/Notice.php:31 ../../plugins/blog2social-v-
1060
  #: 3/views/b2s/network.php:106 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1061
+ #: 284 ../../plugins/blog2social-v-3/views/b2s/ship.php:318 ../..
1062
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:365 ../../plugins/blog2social-v-
1063
  #: 3/views/b2s/html/footer.phtml:28 ../../plugins/blog2social-v-
1064
  #: 3/views/b2s/html/footer.phtml:140 ../../plugins/blog2social-v-
1065
  #: 3/views/b2s/html/footer.phtml:198
1066
  msgid "Share on multiple profiles, pages and groups"
1067
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
1068
 
1069
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:98 ../..
1070
  #: /plugins/blog2social-v-3/includes/Notice.php:32 ../../plugins/blog2social-v-
1071
  #: 3/views/b2s/network.php:107 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1072
+ #: 285 ../../plugins/blog2social-v-3/views/b2s/ship.php:319 ../..
1073
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:366 ../../plugins/blog2social-v-
1074
  #: 3/views/b2s/html/footer.phtml:29 ../../plugins/blog2social-v-
1075
  #: 3/views/b2s/html/footer.phtml:63 ../../plugins/blog2social-v-
1076
  #: 3/views/b2s/html/footer.phtml:141 ../../plugins/blog2social-v-
1080
  " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
1081
  "Aktualisierung posten und zeitversetzt planen"
1082
 
1083
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:99 ../..
1084
  #: /plugins/blog2social-v-3/includes/Notice.php:33 ../../plugins/blog2social-v-
1085
  #: 3/views/b2s/network.php:108 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1086
+ #: 286 ../../plugins/blog2social-v-3/views/b2s/ship.php:320 ../..
1087
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:367 ../../plugins/blog2social-v-
1088
  #: 3/views/b2s/html/footer.phtml:30 ../../plugins/blog2social-v-
1089
  #: 3/views/b2s/html/footer.phtml:142 ../../plugins/blog2social-v-
1090
  #: 3/views/b2s/html/footer.phtml:200
1091
  msgid "Schedule your posts at the best times on each network"
1092
  msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
1093
 
1094
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:100 ../..
1095
  #: /plugins/blog2social-v-3/includes/Notice.php:34 ../../plugins/blog2social-v-
1096
  #: 3/views/b2s/network.php:109 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1097
+ #: 287 ../../plugins/blog2social-v-3/views/b2s/ship.php:321 ../..
1098
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:368 ../../plugins/blog2social-v-
1099
  #: 3/views/b2s/html/footer.phtml:31 ../../plugins/blog2social-v-
1100
  #: 3/views/b2s/html/footer.phtml:143 ../../plugins/blog2social-v-
1101
  #: 3/views/b2s/html/footer.phtml:201
1104
  "social media posts"
1105
  msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
1106
 
1107
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:101 ../..
1108
  #: /plugins/blog2social-v-3/includes/Notice.php:35 ../../plugins/blog2social-v-
1109
  #: 3/views/b2s/network.php:110 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1110
+ #: 288 ../../plugins/blog2social-v-3/views/b2s/ship.php:322 ../..
1111
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:369 ../../plugins/blog2social-v-
1112
  #: 3/views/b2s/html/footer.phtml:32 ../../plugins/blog2social-v-
1113
  #: 3/views/b2s/html/footer.phtml:144 ../../plugins/blog2social-v-
1114
  #: 3/views/b2s/html/footer.phtml:202
1117
  "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
1118
  "oder nach einem regelmäßigen Muster"
1119
 
1120
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:102 ../..
1121
  #: /plugins/blog2social-v-3/includes/Notice.php:36 ../../plugins/blog2social-v-
1122
  #: 3/views/b2s/network.php:111 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1123
+ #: 289 ../../plugins/blog2social-v-3/views/b2s/ship.php:323 ../..
1124
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:370 ../../plugins/blog2social-v-
1125
  #: 3/views/b2s/html/footer.phtml:33 ../../plugins/blog2social-v-
1126
  #: 3/views/b2s/html/footer.phtml:145 ../../plugins/blog2social-v-
1127
  #: 3/views/b2s/html/footer.phtml:203
1128
  msgid "Schedule and re-share old posts"
1129
  msgstr "Plane und teile alte Beiträge"
1130
 
1131
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:103 ../..
1132
  #: /plugins/blog2social-v-3/includes/Notice.php:37 ../../plugins/blog2social-v-
1133
  #: 3/views/b2s/network.php:112 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1134
+ #: 290 ../../plugins/blog2social-v-3/views/b2s/ship.php:324 ../..
1135
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:371 ../../plugins/blog2social-v-
1136
  #: 3/views/b2s/html/footer.phtml:34 ../../plugins/blog2social-v-
1137
  #: 3/views/b2s/html/footer.phtml:65 ../../plugins/blog2social-v-
1138
  #: 3/views/b2s/html/footer.phtml:146 ../../plugins/blog2social-v-
1140
  msgid "Select link format or image format for your posts"
1141
  msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
1142
 
1143
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:104 ../..
1144
  #: /plugins/blog2social-v-3/includes/Notice.php:38 ../../plugins/blog2social-v-
1145
  #: 3/views/b2s/network.php:113 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1146
+ #: 291 ../../plugins/blog2social-v-3/views/b2s/ship.php:325 ../..
1147
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:372 ../../plugins/blog2social-v-
1148
  #: 3/views/b2s/html/footer.phtml:35 ../../plugins/blog2social-v-
1149
  #: 3/views/b2s/html/footer.phtml:66 ../../plugins/blog2social-v-
1150
  #: 3/views/b2s/html/footer.phtml:147 ../../plugins/blog2social-v-
1152
  msgid "Select individual images per post"
1153
  msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
1154
 
1155
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:105 ../..
1156
  #: /plugins/blog2social-v-3/includes/Notice.php:39 ../../plugins/blog2social-v-
1157
  #: 3/views/b2s/network.php:114 ../../plugins/blog2social-v-3/views/b2s/ship.php:
1158
+ #: 292 ../../plugins/blog2social-v-3/views/b2s/ship.php:326 ../..
1159
+ #: /plugins/blog2social-v-3/views/b2s/ship.php:373 ../../plugins/blog2social-v-
1160
  #: 3/views/b2s/html/footer.phtml:36 ../../plugins/blog2social-v-
1161
  #: 3/views/b2s/html/footer.phtml:148 ../../plugins/blog2social-v-
1162
  #: 3/views/b2s/html/footer.phtml:206
1167
  "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
1168
  "Media Beiträge"
1169
 
1170
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:109 ../..
1171
  #: /plugins/blog2social-v-3/views/b2s/network.php:118 ../../plugins/blog2social-v-
1172
+ #: 3/views/b2s/ship.php:296 ../../plugins/blog2social-v-3/views/b2s/ship.php:330 .
1173
+ #: ./../plugins/blog2social-v-3/views/b2s/ship.php:377 ../../plugins/blog2social-
1174
  #: v-3/views/b2s/html/footer.phtml:40 ../../plugins/blog2social-v-
1175
  #: 3/views/b2s/html/footer.phtml:71 ../../plugins/blog2social-v-
1176
  #: 3/views/b2s/html/footer.phtml:89 ../../plugins/blog2social-v-
1184
  "Deinen kostenlosen 30-tägigen Test von Blog2Social Premium</a>(keine "
1185
  "Zahlungsinformationen erforderlich)"
1186
 
1187
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:120
1188
  msgid "Blog2Social: Custom Sharing & Scheduling"
1189
  msgstr "Blog2Social: Anpassen & Planen"
1190
 
1191
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:123
1192
  msgid ""
1193
  "Customize and schedule your social media posts on the one page preview for "
1194
  "all your selected networks: tailor your posts with individual comments, "
1202
  "mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
1203
  "Community zu erzielen"
1204
 
1205
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:133
1206
  msgid "Select profile:"
1207
  msgstr "Profil auswählen: "
1208
 
1209
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:148
1210
  msgid "When do you want to share your post on social media?"
1211
  msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
1212
 
1213
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:151
1214
  msgid "immediately after publishing"
1215
  msgstr "sofort nach Veröffentlichung"
1216
 
1217
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:152
1218
  msgid "at scheduled times"
1219
  msgstr "zu geplanten Zeiten"
1220
 
1221
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:155
1222
  msgid "You want to sched your blog post with Auto-Poster?"
1223
  msgstr "Du willst Deinen Blogbeitrag mit dem Autoposter planen?"
1224
 
1225
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:155 ../..
1226
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:69 ../..
1227
  #: /plugins/blog2social-v-3/views/b2s/html/footer.phtml:87
1228
  msgid "Upgrade to PREMIUM PRO"
1229
  msgstr "Upgrade auf PREMIUM PRO"
1230
 
1231
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:161
1232
  msgid "Select date:"
1233
  msgstr "Datum auswählen:"
1234
 
1235
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:167
1236
  msgid "post at"
1237
  msgstr "beachte"
1238
 
1239
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:168
1240
  msgid "my time settings"
1241
  msgstr "meine Zeit-Einstellungen"
1242
 
1243
+ #: ../../plugins/blog2social-v-3/includes/MetaBox.php:169
1244
  msgid ""
1245
  "Note: If you ​have​ not ​specified​ your own times, we automatically provide "
1246
  "you with the best times to post​ on the social networks. You can always "
1276
  msgid "Top 5 FAQ"
1277
  msgstr "Top 5 FAQ"
1278
 
1279
+ #: ../../plugins/blog2social-v-3/includes/PRG/Post/Filter.php:31
1280
  msgid "All Authors"
1281
  msgstr "alle Autoren"
1282
 
1283
+ #: ../../plugins/blog2social-v-3/includes/PRG/Post/Filter.php:42
1284
  msgid "All Types"
1285
  msgstr "alle Typen"
1286
 
1287
+ #: ../../plugins/blog2social-v-3/includes/PRG/Post/Item.php:100
1288
  msgid "You have no posts published or scheduled"
1289
  msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
1290
 
1291
+ #: ../../plugins/blog2social-v-3/includes/PRG/Post/Item.php:127
1292
  msgid "Publish on PR-Gateway"
1293
  msgstr "Beitrag über PR-Gateway veröffentlichen"
1294
 
1295
+ #: ../../plugins/blog2social-v-3/includes/PRG/Post/Item.php:129
1296
  msgid "on Blog"
1297
  msgstr "auf dem Blog"
1298
 
1539
 
1540
  #: ../../plugins/blog2social-v-3/views/b2s/network.php:30 ../..
1541
  #: /plugins/blog2social-v-3/views/b2s/network.php:31 ../../plugins/blog2social-v-
1542
+ #: 3/views/prg/post.php:25 ../../plugins/blog2social-v-3/views/prg/post.php:26 ..
1543
  #: /../plugins/blog2social-v-3/views/b2s/html/post.navbar.phtml:10 ../..
1544
  #: /plugins/blog2social-v-3/views/b2s/html/post.navbar.phtml:11
1545
  msgid "filter"
1681
 
1682
  #: ../../plugins/blog2social-v-3/views/b2s/settings.php:37 ../..
1683
  #: /plugins/blog2social-v-3/views/b2s/ship.php:44 ../../plugins/blog2social-v-
1684
+ #: 3/views/b2s/ship.php:411
1685
  msgid "My Time Settings"
1686
  msgstr "Meine Zeit-Einstellungen"
1687
 
1689
  msgid "Reset predefined best time settings"
1690
  msgstr "Voreingestellte beste Zeiten zurücksetzen"
1691
 
1692
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:120
1693
  msgid "Select the preferred custom post format for your posts"
1694
  msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
1695
 
1696
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:124
1697
  msgid "You can define your preferred custom post format link post or photo post:"
1698
  msgstr ""
1699
  "Entscheide Dich für das passende Format für Deine Social Media Posts. Link "
1700
  "Post oder Photo Post:"
1701
 
1702
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:133
1703
  msgid ""
1704
  "A photo or image post displays the selected image in the one-page preview of "
1705
  "Blog2Social and your comment above the image. The image links to the image "
1716
  "Fotoalben oder Deiner persönlichen Galerie im Netzwerk gespeichert wird. In "
1717
  "Facebook kannst du den Namen Deiner Alben beliebig anpassen."
1718
 
1719
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:146
1720
  msgid "Allow shortcodes in my post"
1721
  msgstr "berücksichtige Shortcodes in meinen Beiträgen"
1722
 
1723
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:149
1724
  msgid ""
1725
  "Shortcodes are used by some wordpress plugins like Elementor, Visual "
1726
  "Composer and Content Builder. When a shortcode is inserted in a WordPress "
1739
  "den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
1740
  "diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
1741
 
1742
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:163
1743
  msgid ""
1744
  "Blog2Social applies the scheduled time settings based on the time zone "
1745
  "defined in the general settings of your WordPress. You can select a user-"
1753
  "für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
1754
  "gewünschte Zeitzone aus dem Drop-Down Menü."
1755
 
1756
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:174
1757
  msgid "Select the content type you want to auto-post by default"
1758
  msgstr "Wähle die Inhalte, die Du standardmäßig auto-posten möchtest."
1759
 
1760
+ #: ../../plugins/blog2social-v-3/views/b2s/settings.php:177
1761
  msgid ""
1762
  "Please select the content type you want to auto-post by default.<br>You can "
1763
  "activate auto-post by default for posts, pages and any custom post type. As "
1805
  msgstr "Profile | Seiten | Gruppen"
1806
 
1807
  #: ../../plugins/blog2social-v-3/views/b2s/ship.php:130 ../../plugins/blog2social-
1808
+ #: v-3/views/b2s/ship.php:313
1809
  msgid "You want to save network settings in an additional profile?"
1810
  msgstr "Du möchtest Netzwerk-Verbindungen in einem zusätzlichen Profil speichern?"
1811
 
1857
  msgid "Share"
1858
  msgstr "Teilen"
1859
 
1860
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:206
1861
  msgid "Time zone"
1862
  msgstr "Zeitzone"
1863
 
1864
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:213
1865
  msgid "Share new post on Social Media"
1866
  msgstr "Teile einen neuen Beitrag auf Social Media"
1867
 
1868
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:240
1869
  msgid "Connect for"
1870
  msgstr "Netzwerke verbinden für"
1871
 
1872
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:256
1873
  msgid "Time Scheduling"
1874
  msgstr "Zeitplanung"
1875
 
1876
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:260
1877
  msgid ""
1878
  "You have not yet defined personal time settings. To edit personal time "
1879
  "settings click on the Blog2Social Settings on the left-hand menu and select "
1885
  "Menü von Blog2Social und wähle die \"Zeit-Einstellungen\" aus. Dort kannst Du "
1886
  "die voreingestellten besten Zeiten verändern."
1887
 
1888
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:273
1889
  msgid "Re-share this Post"
1890
  msgstr "Diesen Beitrag nochmal teilen"
1891
 
1892
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:276
1893
  msgid ""
1894
  "You can re-share your post for a different sharing purpose, or to share on a "
1895
  "different choice of networks, profiles, pages or groups, or with different "
1914
  "auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, "
1915
  "wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
1916
 
1917
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:279
1918
  msgid "You want re-share your blog post?"
1919
  msgstr "Du möchtest Deinen Beitrag erneut teilen?"
1920
 
1921
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:307
1922
  msgid "Save Network Settings"
1923
  msgstr "Netzwerkeinstellungen speichern"
1924
 
1925
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:310
1926
  msgid ""
1927
  "You can save your current network settings as \"Standard\" network settings "
1928
  "for any future sharing activities or as a \"Profile\" to choose from (Premium)."
1954
  "zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
1955
  "variieren kannst. "
1956
 
1957
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:343
1958
  msgid "Your blog post is not yet published on your Wordpress!"
1959
  msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
1960
 
1961
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:346
1962
  msgid "At least one of your selected networks is set to \"Share Now\""
1963
  msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
1964
 
1965
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:350
1966
  msgid "Schedule your post"
1967
  msgstr "Beitrag planen"
1968
 
1969
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:353
1970
  msgid "Ignore & share"
1971
  msgstr "Ignorieren & teilen"
1972
 
1973
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:389
1974
  msgid "Select image for"
1975
  msgstr "Wähle Bild aus für"
1976
 
1977
+ #: ../../plugins/blog2social-v-3/views/b2s/ship.php:432
1978
  msgid "Post Format"
1979
  msgstr "Postformat"
1980
 
2330
  "den verschiedenen Social Media geklickt, gelikt oder geteilt wurde. <br>Sie "
2331
  "können den b2s.pm Shortener deaktivieren, um Ihre eigene URL anzuzeigen."
2332
 
2333
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:9
2334
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
2335
  msgstr "Vielen Dank. Ab sofort erhältest Du die Blog-Updates von Blog2Social."
2336
 
2337
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:27
2338
  msgid "This entry could not be removed. It's not yours!"
2339
  msgstr "Der Eintrag kann nicht entfernt werden. Es ist nicht Deiner!"
2340
 
2341
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:32
2342
  msgid "This entry was removed successful."
2343
  msgstr "Der Eintrag wurde entfernt."
2344
 
2345
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:41
2346
  msgid "Post was scheduled successfully on your blog!"
2347
  msgstr "Beitrag wurde erfolgreich auf Deinem Blog geplant!"
2348
 
2349
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:43
2350
  msgid "Post is published successfully on your blog!"
2351
  msgstr "Beitrag wird erfolgreich auf Deinem Blog veröffentlicht!"
2352
 
2353
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:53 ../..
2354
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:158
2355
  msgid "Version"
2356
  msgstr "Version"
2357
 
2358
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:53
2359
  msgid "is successfully activated."
2360
  msgstr "wurde erfolgreich aktiviert."
2361
 
2362
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:58
2363
  msgid "Your entered License Key is invalid. Please contact support!"
2364
  msgstr "Dein Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Support!"
2365
 
2366
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:63
2367
  msgid "Your license key has reached the maximum number of users."
2368
  msgstr "Dein Lizenzschlüssel hat die maximale Anzahl an Benutzern erreicht."
2369
 
2370
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:70
2371
  msgid "Your authorization was successful."
2372
  msgstr "Deine Autorisierung war erfolgreich."
2373
 
2374
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:75
2375
  msgid "Your profile was saved successful."
2376
  msgstr "Dein Profil wurde erfolgreich gespeichert."
2377
 
2378
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:80
2379
  msgid "Your profile could not be saved."
2380
  msgstr "Dein Profil konnte nicht gespeichert werden."
2381
 
2382
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:85
2383
  msgid "Your authorization could not be removed."
2384
  msgstr "Deine Autorisierung konnte nicht entfernt werden."
2385
 
2386
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:90
2387
  msgid "Your authorization was removed successful."
2388
  msgstr "Dein Profil wurde erfolgreich entfernt."
2389
 
2390
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:95
2391
  msgid "Thank you! Your feedback has been received."
2392
  msgstr "Vielen Dank. Dein Hinweis wurde an uns übermittelt."
2393
 
2394
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:100
2395
  msgid "Your feedback could not be delivered."
2396
  msgstr "Dein Hinweis konnte nicht übermittelt werden. Bitte versuche es erneut."
2397
 
2398
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:107 ../..
2399
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:117
2400
  msgid "Your settings were successfully saved."
2401
  msgstr "Deine Einstellungen sind gespeichert."
2402
 
2403
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:112
2404
  msgid "Your settings could not be saved."
2405
  msgstr "Deine Einstellungen konnte nicht gespeichert werden. Versuche es erneut."
2406
 
2407
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:125 ../..
2408
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:181
2409
  msgid "Test Blog2Social PREMIUM 30 days for free"
2410
  msgstr "Teste Blog2Social PREMIUM 30 Tage kostenlos"
2411
 
2412
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:125 ../..
2413
+ #: /plugins/blog2social-v-3/views/b2s/html/header.phtml:214
2414
  msgid "Get Started"
2415
  msgstr "Jetzt loslegen"
2416
 
2417
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:134
2418
  msgid "Your Blog2Social Premium Free Version is activated for "
2419
  msgstr "Deine Blog2Social Testphase läuft noch"
2420
 
2421
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:137
2422
  msgid " Days"
2423
  msgstr "Tage"
2424
 
2425
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:137
2426
  msgid " today"
2427
  msgstr "heute"
2428
 
2429
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:147
2430
  msgid "Your Blog2Social FREE-TRIAL Version has expired. Did you like this version?"
2431
  msgstr "Deine Blog2Social Testphase ist abgelaufen. Hat es Dir gefallen?"
2432
 
2433
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:148
2434
  msgid "Yes, I want more"
2435
  msgstr "Ja, ich will mehr"
2436
 
2437
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:149
2438
  msgid "No, I had enough"
2439
  msgstr "Nein, ich habe genug"
2440
 
2441
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:168 ../..
2442
  #: /plugins/blog2social-v-3/views/b2s/html/service.phtml:15
2443
  msgid "Plans & Pricing"
2444
  msgstr "Versionen & Preise"
2445
 
2446
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:169 ../..
2447
  #: /plugins/blog2social-v-3/views/b2s/html/service.phtml:16
2448
  msgid "Support"
2449
  msgstr "Support"
2450
 
2451
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:187
2452
  msgid ""
2453
  "The free trial can not be started. This blog has been already registered for "
2454
  "the free trial."
2456
  "Die kostenlose Testphase konnte nicht aktiviert werden. Dieser Blog wurde "
2457
  "bereits für die kostenlose Testzeit freigeschaltet."
2458
 
2459
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:192
2460
  msgid "Share on multiple accounts per network"
2461
  msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
2462
 
2463
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:193
2464
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
2465
  msgstr "Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
2466
 
2467
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:194
2468
  msgid "Reporting with links to all published social media posts"
2469
  msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
2470
 
2471
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:197 ../..
2472
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:141 ../..
2473
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:143 ../..
2474
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:218 ../..
2476
  msgid "E-Mail"
2477
  msgstr "E-Mail"
2478
 
2479
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:201 ../..
2480
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:91 ../..
2481
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:100 ../..
2482
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:168 ../..
2484
  msgid "First Name"
2485
  msgstr "Vorname"
2486
 
2487
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:205 ../..
2488
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:92 ../..
2489
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:103 ../..
2490
  #: /plugins/blog2social-v-3/views/prg/html/form.phtml:169 ../..
2492
  msgid "Last Name"
2493
  msgstr "Nachname"
2494
 
2495
+ #: ../../plugins/blog2social-v-3/views/b2s/html/header.phtml:210
2496
  msgid "No credit card required"
2497
  msgstr "keine Kreditkarte notwendig"
2498
 
languages/blog2social-fr_FR.mo CHANGED
Binary file
languages/blog2social-fr_FR.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Blog2Social V3 - Development Modus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2016-10-25 12:18+0200\n"
6
- "PO-Revision-Date: Tue May 16 2017 14:48:26 GMT+0200\n"
7
  "Last-Translator: admin <s.buerger@adenion.de>\n"
8
  "Language-Team: French (France) <translate@tips02.fr>\n"
9
  "Language: French (France)\n"
@@ -22,6 +22,74 @@ msgstr ""
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  #: ../includes/B2S/Network/Item.php:42 ../includes/B2S/Ship/Navbar.php:32
26
  msgid "Default"
27
  msgstr "Standard"
@@ -30,20 +98,19 @@ msgstr "Standard"
30
  msgid "max. accounts"
31
  msgstr "max. comptes"
32
 
33
- #: ../includes/B2S/Network/Item.php:91
34
- msgid "get more"
35
- msgstr "plus"
36
-
37
  #: ../includes/B2S/Network/Item.php:96 ../includes/B2S/Network/Item.php:112 ..
38
- #: /includes/B2S/Network/Item.php:114 ../includes/B2S/Settings/Item.php:207 ..
39
- #: /includes/B2S/Ship/Portale.php:35 ../includes/Init.php:263
 
 
40
  msgid "Profile"
41
  msgstr "Profil"
42
 
43
  #: ../includes/B2S/Network/Item.php:99 ../includes/B2S/Network/Item.php:99 ..
44
- #: /includes/B2S/Network/Item.php:132 ../includes/B2S/Network/Item.php:134 ..
45
- #: /includes/B2S/Settings/Item.php:210 ../includes/B2S/Ship/Portale.php:33 ..
46
- #: /includes/Init.php:263
 
47
  msgid "Page"
48
  msgstr "Page"
49
 
@@ -52,9 +119,10 @@ msgid "You want to connect a network page?"
52
  msgstr "Vous voulez connecter une page d'un réseau ?"
53
 
54
  #: ../includes/B2S/Network/Item.php:102 ../includes/B2S/Network/Item.php:102 ..
55
- #: /includes/B2S/Network/Item.php:152 ../includes/B2S/Network/Item.php:154 ..
56
- #: /includes/B2S/Settings/Item.php:214 ../includes/B2S/Ship/Portale.php:29 ..
57
- #: /includes/Init.php:263
 
58
  msgid "Group"
59
  msgstr "Groupe"
60
 
@@ -62,31 +130,21 @@ msgstr "Groupe"
62
  msgid "You want to connect a social media group?"
63
  msgstr "Vous voulez connecter un groupe de réseau social ?"
64
 
65
- #: ../includes/B2S/Network/Item.php:117 ../includes/B2S/Network/Item.php:137 ..
66
- #: /includes/B2S/Network/Item.php:156
67
- msgid "Delete"
68
- msgstr "Effacer"
69
-
70
- #: ../includes/B2S/Network/Item.php:118 ../includes/B2S/Network/Item.php:138 ..
71
- #: /includes/B2S/Network/Item.php:157
72
- msgid "Reconnect"
73
- msgstr "Reconnectez"
74
-
75
- #: ../includes/B2S/Network/Item.php:119 ../includes/B2S/Network/Item.php:158
76
  msgid "Authorization is interrupted since"
77
  msgstr "L'autorisation est interrompue depuis"
78
 
79
- #: ../includes/B2S/Network/Item.php:121 ../includes/B2S/Network/Item.php:142 ..
80
- #: /includes/B2S/Network/Item.php:161
81
  msgid "To reactivate this social media connection,"
82
  msgstr "Pour réactiver cette connexion aux réseaux sociaux,"
83
 
84
- #: ../includes/B2S/Network/Item.php:121 ../includes/B2S/Network/Item.php:142 ..
85
- #: /includes/B2S/Network/Item.php:161 ../includes/B2S/Ship/Image.php:19
86
  msgid "please upgrade"
87
  msgstr "Mise à niveau"
88
 
89
- #: ../includes/B2S/Network/Item.php:139
90
  msgid "Authorization is interrupted since"
91
  msgstr "L'autorisation est interrompue depuis"
92
 
@@ -95,20 +153,19 @@ msgid "all authors"
95
  msgstr "Tous les auteurs"
96
 
97
  #: ../includes/B2S/Post/Filter.php:49 ../includes/B2S/Post/Item.php:185 ..
98
- #: /includes/B2S/Ship/Save.php:174 ../includes/PRG/Post/Filter.php:40 ..
99
- #: /includes/PRG/Post/Item.php:80 ../views/b2s/ship.php:12
100
  msgid "published"
101
  msgstr "publié"
102
 
103
  #: ../includes/B2S/Post/Filter.php:49 ../includes/B2S/Post/Item.php:185 ..
104
- #: /includes/PRG/Post/Filter.php:40 ../includes/PRG/Post/Item.php:80 ..
105
  #: /views/b2s/ship.php:12
106
  msgid "scheduled"
107
  msgstr "planifié"
108
 
109
  #: ../includes/B2S/Post/Filter.php:49 ../includes/B2S/Post/Item.php:185 ..
110
- #: /includes/PRG/Post/Filter.php:40 ../includes/PRG/Post/Item.php:80 ..
111
- #: /views/b2s/ship.php:12
112
  msgid "draft"
113
  msgstr "brouillon"
114
 
@@ -128,11 +185,11 @@ msgstr "Les plus anciens en premier"
128
  msgid "all categories & tags"
129
  msgstr "tous catégories & balises"
130
 
131
- #: ../includes/B2S/Post/Filter.php:108
132
  msgid "all post types"
133
  msgstr "tous types de postes"
134
 
135
- #: ../includes/B2S/Post/Filter.php:129 ../includes/PRG/Post/Filter.php:54
136
  msgid "Search Title"
137
  msgstr "Rechercher titre"
138
 
@@ -144,11 +201,11 @@ msgstr "cacher calendrier"
144
  msgid "show calendar"
145
  msgstr "montrer calendrier"
146
 
147
- #: ../includes/B2S/Post/Filter.php:152 ../includes/PRG/Post/Filter.php:64
148
  msgid "sort"
149
  msgstr "Tri"
150
 
151
- #: ../includes/B2S/Post/Filter.php:153 ../includes/PRG/Post/Filter.php:65
152
  msgid "reset"
153
  msgstr "réinitialiser"
154
 
@@ -168,11 +225,11 @@ msgstr "Vous n'avez aucun article publié ou planifié."
168
  msgid "last shared on social media"
169
  msgstr "dernier partagé on le réseau social"
170
 
171
- #: ../includes/B2S/Post/Item.php:218 ../includes/Init.php:84
172
  msgid "Share on Social Media"
173
  msgstr "Partager sur les réseaux sociaux"
174
 
175
- #: ../includes/B2S/Post/Item.php:220 ../includes/PRG/Post/Item.php:112
176
  msgid "Author"
177
  msgstr "Auteur"
178
 
@@ -180,8 +237,8 @@ msgstr "Auteur"
180
  msgid "on blog"
181
  msgstr "sur le blog"
182
 
183
- #: ../includes/B2S/Post/Item.php:237 ../views/b2s/ship.php:214 ../views/b2s/ship.
184
- #: php:216
185
  msgid "Re-share this post"
186
  msgstr "Re-partager cet article"
187
 
@@ -242,19 +299,15 @@ msgstr "re-partage"
242
  msgid "scheduled by"
243
  msgstr "planifié par"
244
 
245
- #: ../includes/B2S/Post/Item.php:447 ../includes/B2S/Post/Item.php:461
246
- msgid "You want to delete an scheduled post entry?"
247
- msgstr "Vous voulez supprimer une entrée post programmée?"
248
-
249
- #: ../includes/B2S/Post/Item.php:448 ../includes/B2S/Post/Item.php:462
250
  msgid "delete scheduling"
251
  msgstr "effacer planifié"
252
 
253
- #: ../includes/B2S/Post/Item.php:452
254
  msgid "You want to change the time for your scheduled post?"
255
  msgstr "Vous souhaitez modifier l'heure de votre annonce?"
256
 
257
- #: ../includes/B2S/Post/Item.php:453
258
  msgid "change time"
259
  msgstr "changer l'heure"
260
 
@@ -262,7 +315,7 @@ msgstr "changer l'heure"
262
  msgid "Account"
263
  msgstr "Compte"
264
 
265
- #: ../includes/B2S/Settings/Item.php:68 ../views/b2s/settings.php:117
266
  msgid "Personal Time Zone"
267
  msgstr "Fuseau horaire personnel"
268
 
@@ -310,17 +363,12 @@ msgstr "utiliser b2s.pm Lien Shortener"
310
  msgid "allow shortcodes in my post"
311
  msgstr "permettre à shortcodes dans mon post"
312
 
313
- #: ../includes/B2S/Settings/Item.php:128
314
- msgid "Facebook post format"
315
- msgstr "Format de publication Facebook"
316
-
317
- #: ../includes/B2S/Settings/Item.php:134 ../includes/B2S/Settings/Item.php:162 ..
318
- #: /includes/B2S/Settings/Item.php:189 ../views/b2s/settings.php:84
319
  msgid "Link Post"
320
  msgstr "Lien Post"
321
 
322
- #: ../includes/B2S/Settings/Item.php:139 ../includes/B2S/Settings/Item.php:167 ..
323
- #: /views/b2s/settings.php:85
324
  msgid ""
325
  "The link post format displays posts title, link address and the first one or "
326
  "two sentences of the post. The networks scan this information from your META "
@@ -337,12 +385,12 @@ msgstr ""
337
  "la première image détectée sur votre page. L'image se rattache à votre "
338
  "article."
339
 
340
- #: ../includes/B2S/Settings/Item.php:144 ../includes/B2S/Settings/Item.php:172 ..
341
- #: /includes/B2S/Settings/Item.php:189 ../views/b2s/settings.php:89
342
  msgid "Photo Post"
343
  msgstr "Article photo"
344
 
345
- #: ../includes/B2S/Settings/Item.php:149 ../includes/B2S/Settings/Item.php:177
346
  msgid ""
347
  "A photo or image post displays the selected image in the one-page preview of "
348
  "Blog2Social and your comment above the image. The image links to the image "
@@ -360,32 +408,29 @@ msgstr ""
360
  "personnelles. Dans Facebook, vous pouvez modifier le nom de l'album avec une "
361
  "description de votre choix."
362
 
363
- #: ../includes/B2S/Settings/Item.php:156
364
- msgid "Twitter post format"
365
- msgstr "Format de publication Twitter"
366
-
367
- #: ../includes/B2S/Settings/Item.php:221 ../views/b2s/post.sched.php:24
368
  msgid "Uhr"
369
  msgstr "regarder"
370
 
371
- #: ../includes/B2S/Settings/Item.php:225
372
  msgid "Best times to post"
373
  msgstr "Meilleures heures pour publier"
374
 
375
- #: ../includes/B2S/Settings/Item.php:238 ../views/b2s/settings.php:44 ..
376
- #: /views/b2s/ship.php:49 ../views/b2s/ship.php:359 ../views/b2s/html/footer.
377
  #: phtml:135
378
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
379
  msgstr ""
380
  "Vous voulez planifier vos articles et utiliser le meilleur créneau horaire "
381
  "de publication?"
382
 
383
- #: ../includes/B2S/Settings/Item.php:240 ../views/b2s/post.sched.php:90 ..
384
- #: /views/b2s/settings.php:46 ../views/b2s/ship.php:409
 
385
  msgid "save"
386
  msgstr "sauver"
387
 
388
- #: ../includes/B2S/Settings/Item.php:245
389
  msgid "Sorry, we can not load your data at the moment..."
390
  msgstr "Désolé, nous ne pouvons pas charger vos données pour l'instant..."
391
 
@@ -481,118 +526,118 @@ msgstr "Le réseau ne supporte pas d'image sur les pages"
481
  msgid "post format"
482
  msgstr "Format de publication"
483
 
484
- #: ../includes/B2S/Ship/Item.php:206
485
  msgid "Insert full-text"
486
  msgstr "Insérer du texte plein"
487
 
488
- #: ../includes/B2S/Ship/Item.php:208
489
  msgid "Delete text"
490
  msgstr "Effacer le texte"
491
 
492
- #: ../includes/B2S/Ship/Item.php:243 ../includes/B2S/Ship/Item.php:261 ..
493
- #: /includes/B2S/Ship/Item.php:279 ../includes/B2S/Ship/Item.php:297 ..
494
- #: /includes/B2S/Ship/Item.php:312
495
  msgid "Write something about your post..."
496
  msgstr "Ecrivez quelque-chose à propos de votre article..."
497
 
498
- #: ../includes/B2S/Ship/Item.php:250 ../includes/B2S/Ship/Item.php:268 ..
499
- #: /includes/B2S/Ship/Item.php:286 ../includes/B2S/Ship/Item.php:335
500
  msgid "Change image for this network"
501
  msgstr "Changer l'image pour ce réseau"
502
 
503
- #: ../includes/B2S/Ship/Item.php:322
504
  msgid "required"
505
  msgstr "nécessaire"
506
 
507
- #: ../includes/B2S/Ship/Item.php:342 ../includes/B2S/Ship/Item.php:344
508
  msgid "Link"
509
  msgstr "Lien"
510
 
511
- #: ../includes/B2S/Ship/Item.php:392
512
  msgid "The Headline..."
513
  msgstr "L'entête..."
514
 
515
- #: ../includes/B2S/Ship/Item.php:397
516
  msgid "Hashtags"
517
  msgstr "Hashtags"
518
 
519
- #: ../includes/B2S/Ship/Item.php:427
520
  msgid "Share Now"
521
  msgstr "Partager maintenant"
522
 
523
- #: ../includes/B2S/Ship/Item.php:429
524
  msgid "Schedule post once"
525
  msgstr "Planifier l'article une fois"
526
 
527
- #: ../includes/B2S/Ship/Item.php:431
528
  msgid "Schedule post recurrently"
529
  msgstr "Planifié l'article de manière récurrente"
530
 
531
- #: ../includes/B2S/Ship/Item.php:456
532
  msgid "Duration"
533
  msgstr "Durée"
534
 
535
- #: ../includes/B2S/Ship/Item.php:457 ../includes/B2S/Ship/Item.php:472
536
  msgid "Date"
537
  msgstr "Date"
538
 
539
- #: ../includes/B2S/Ship/Item.php:458 ../includes/B2S/Ship/Item.php:473
540
  msgid "Time"
541
  msgstr "Heure"
542
 
543
- #: ../includes/B2S/Ship/Item.php:459
544
  msgid "Days"
545
  msgstr "Jours"
546
 
547
- #: ../includes/B2S/Ship/Item.php:467
548
  msgid "Week"
549
  msgstr "Semaine"
550
 
551
- #: ../includes/B2S/Ship/Item.php:467
552
  msgid "Weeks"
553
  msgstr "Semaines"
554
 
555
- #: ../includes/B2S/Ship/Item.php:477
556
  msgid "Mon"
557
  msgstr "Lu"
558
 
559
- #: ../includes/B2S/Ship/Item.php:478
560
  msgid "Tue"
561
  msgstr "Ma"
562
 
563
- #: ../includes/B2S/Ship/Item.php:479
564
  msgid "Wed"
565
  msgstr "Me"
566
 
567
- #: ../includes/B2S/Ship/Item.php:480
568
  msgid "Thu"
569
  msgstr "Je"
570
 
571
- #: ../includes/B2S/Ship/Item.php:481
572
  msgid "Fri"
573
  msgstr "Ve"
574
 
575
- #: ../includes/B2S/Ship/Item.php:482
576
  msgid "Sat"
577
  msgstr "Sa"
578
 
579
- #: ../includes/B2S/Ship/Item.php:483
580
  msgid "Sun"
581
  msgstr "Di"
582
 
583
- #: ../includes/B2S/Ship/Item.php:488 ../views/b2s/network.php:170
584
  msgid "delete"
585
  msgstr "supprimer"
586
 
587
- #: ../includes/B2S/Ship/Item.php:489
588
  msgid "Add Posting Time"
589
  msgstr "Ajouter une heure d'envoi"
590
 
591
- #: ../includes/B2S/Ship/Item.php:495
592
  msgid "Apply Settings To All Networks"
593
  msgstr "Appliquer les réglages à tous les réseaux"
594
 
595
- #: ../includes/B2S/Ship/Item.php:496
596
  msgid "Save Settings As Default"
597
  msgstr "Sauver ces réglages comme défaut"
598
 
@@ -612,19 +657,19 @@ msgstr "Nombre d'articles partagés"
612
  msgid "Number of scheduled posts"
613
  msgstr "Nombre d'articles planifiés"
614
 
615
- #: ../includes/Init.php:235
616
  msgid "This post will be shared into your social media on"
617
  msgstr "Ce post sera partagé dans vos médias sociaux sur"
618
 
619
- #: ../includes/Init.php:235 ../includes/Init.php:237
620
  msgid "show details"
621
  msgstr "afficher les détails"
622
 
623
- #: ../includes/Init.php:237
624
  msgid "This post will be shared on social media in 2-3 minutes!"
625
  msgstr "Votre post sera partagé sur les médias sociaux en 2-3 minutes!"
626
 
627
- #: ../includes/Init.php:241
628
  msgid ""
629
  "Please, make sure that your post are publish on this blog on this moment. "
630
  "Then you can auto post your post with Blog2social."
@@ -632,7 +677,7 @@ msgstr ""
632
  "S'il vous plaît, assurez-vous que votre post sont publier sur ce blog à ce "
633
  "moment. Ensuite, vous pouvez auto publier votre message avec Blog2social."
634
 
635
- #: ../includes/Init.php:244 ../includes/MetaBox.php:56
636
  msgid ""
637
  "There are no authorizations for your selected profile. Please, authorize "
638
  "with a social network or select a other profile."
@@ -640,23 +685,23 @@ msgstr ""
640
  "Il n'existe aucune autorisation pour votre profil sélectionné. Autoriser "
641
  "avec un réseau social ou sélectionner un autre profil."
642
 
643
- #: ../includes/Init.php:256
644
  msgid "Upgrade to Premium"
645
  msgstr "Passer à la version premium"
646
 
647
- #: ../includes/Init.php:264
648
  msgid "Your post could not be posted."
649
  msgstr "Votre article ne peut être posté."
650
 
651
- #: ../includes/Init.php:265
652
  msgid "Your authorization has expired. Please check your authorization."
653
  msgstr "Votre autorisation a expiré. Vérifiez votre autorisation, svp."
654
 
655
- #: ../includes/Init.php:266
656
  msgid "The network has marked the post as spam or abusive."
657
  msgstr "Le réseau a marqué l'article comme spam ou abusif."
658
 
659
- #: ../includes/Init.php:267
660
  msgid ""
661
  "We don't have the permission to publish your post. Please check your "
662
  "authorization."
@@ -664,7 +709,7 @@ msgstr ""
664
  "Nous n'avons pas la permission de publier votre article. Vérifiez votre "
665
  "autorisation, svp."
666
 
667
- #: ../includes/Init.php:268
668
  msgid ""
669
  "Your authorization is interrupted. Please check your authorization. Please "
670
  "see <a target=\"_blank\" href=\"https://www.blog2social."
@@ -674,15 +719,15 @@ msgstr ""
674
  "la <a target=\"_blank\" href=\"https://www.blog2social."
675
  "com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>, svp."
676
 
677
- #: ../includes/Init.php:269
678
  msgid "Your limit is reached for today."
679
  msgstr "Votre limite quotidienne est atteinte."
680
 
681
- #: ../includes/Init.php:270
682
  msgid "Your post could not be posted, because your image is not available."
683
  msgstr "Votre article ne peut pas être publié parce que l'image n'est pas disponible."
684
 
685
- #: ../includes/Init.php:271
686
  msgid ""
687
  "The network has blocked your account. Please see <a target=\"_blank\" "
688
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
@@ -692,7 +737,7 @@ msgstr ""
692
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
693
  "error-messages.html\">FAQ</a>, svp."
694
 
695
- #: ../includes/Init.php:272
696
  msgid ""
697
  "The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
698
  "//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
@@ -702,11 +747,11 @@ msgstr ""
702
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
703
  "error-messages.html\">FAQ</a>, svp."
704
 
705
- #: ../includes/Init.php:273
706
  msgid "Your limit has temporarily reached for this network."
707
  msgstr "Votre limite est temporairement atteinte pour ce réseau."
708
 
709
- #: ../includes/Init.php:274
710
  msgid ""
711
  "The network can not publish special characters such as Emoji. Please see <a "
712
  "target=\"_blank\" href=\"https://www.blog2social."
@@ -716,49 +761,49 @@ msgstr ""
716
  "target=\"_blank\" href=\"https://www.blog2social."
717
  "com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
718
 
719
- #: ../includes/Init.php:275
720
  msgid "Your post is a duplicate."
721
  msgstr "Votre message est un duplicata."
722
 
723
- #: ../includes/Init.php:276
724
  msgid "The network are required a public url to your post."
725
  msgstr "Le réseau doit avoir une url publique à votre poste."
726
 
727
- #: ../includes/Init.php:277
728
  msgid "The network says, that your group is not exisits."
729
  msgstr "Le réseau dit que votre groupe n'existe pas."
730
 
731
- #: ../includes/Init.php:334 ../includes/Init.php:364
732
  msgid "Dashboard"
733
  msgstr "Tableau de bord"
734
 
735
- #: ../includes/Init.php:335 ../includes/Init.php:335 ../includes/Init.php:371
736
  msgid "Posts & Sharing"
737
  msgstr "Messages et partage"
738
 
739
- #: ../includes/Init.php:336 ../includes/Init.php:336 ../includes/Init.php:378 ..
740
  #: /views/b2s/network.php:17
741
  msgid "Networks"
742
  msgstr "Réseaux"
743
 
744
- #: ../includes/Init.php:337 ../includes/Init.php:337 ../includes/Init.php:384 ..
745
- #: /views/b2s/ship.php:53 ../views/b2s/ship.php:262
746
  msgid "Settings"
747
  msgstr "Paramètres"
748
 
749
- #: ../includes/Init.php:338 ../includes/Init.php:338 ../includes/Init.php:390
750
  msgid "PR-Service"
751
  msgstr "Service - PR"
752
 
753
- #: ../includes/Init.php:355
754
  msgid "Blog2Social"
755
  msgstr "Blog2Social"
756
 
757
- #: ../includes/Init.php:603 ../includes/Init.php:756
758
  msgid "or"
759
  msgstr "ou"
760
 
761
- #: ../includes/Init.php:603 ../includes/Init.php:756
762
  msgid "back to install plugins"
763
  msgstr "retour à l'installation des plugins"
764
 
@@ -766,12 +811,12 @@ msgstr "retour à l'installation des plugins"
766
  msgid "last auto-post:"
767
  msgstr "dernier auto-post:"
768
 
769
- #: ../includes/MetaBox.php:54 ../views/b2s/ship.php:452 ../views/b2s/html/header.
770
- #: phtml:18
771
  msgid "The connection to the server failed. Try again!"
772
  msgstr "Erreur: la connexion au serveur a échoué. Réessayer!"
773
 
774
- #: ../includes/MetaBox.php:55 ../views/b2s/html/header.phtml:13
775
  msgid ""
776
  "WordPress uses heartbeats by default, Blog2Social as well. Please enable "
777
  "heartbeats for using Blog2Social!"
@@ -779,11 +824,11 @@ msgstr ""
779
  "WordPress utilise des battements de coeur par défaut, Blog2Social ainsi. "
780
  "Veuillez activer les battements de coeur pour utiliser Blog2Social!"
781
 
782
- #: ../includes/MetaBox.php:56 ../includes/MetaBox.php:134
783
  msgid "Network settings"
784
  msgstr "Paramètres réseau:"
785
 
786
- #: ../includes/MetaBox.php:57
787
  msgid ""
788
  "Your post is still on draft or pending status. Please make sure that your "
789
  "post is published or scheduled to be published on this blog. You can then "
@@ -793,7 +838,7 @@ msgstr ""
793
  "blog. Ensuite, vous pouvez planifier et personnaliser votre post avec "
794
  "Blog2social."
795
 
796
- #: ../includes/MetaBox.php:58
797
  msgid ""
798
  "Notice: Please make sure, that your website address is reachable. The Social "
799
  "Networks do not allow postings from local installations."
@@ -802,49 +847,49 @@ msgstr ""
802
  "joignable. Les réseaux sociaux n'autorisent pas les écritures "
803
  "d'installations locales."
804
 
805
- #: ../includes/MetaBox.php:59
806
  msgid "You want to auto post your blog post?"
807
  msgstr "Vous voulez auto publier votre blog?"
808
 
809
- #: ../includes/MetaBox.php:59 ../includes/MetaBox.php:108 ../views/b2s/network.
810
- #: php:116 ../views/b2s/ship.php:293 ../views/b2s/ship.php:327 ../views/b2s/ship.
811
- #: php:374 ../views/b2s/html/footer.phtml:38 ../views/b2s/html/footer.phtml:150 ..
812
- #: /views/b2s/html/footer.phtml:208 ../views/b2s/html/header.phtml:137
813
  msgid "Upgrade to PREMIUM"
814
  msgstr "Mettre à jour vers PREMIUM"
815
 
816
- #: ../includes/MetaBox.php:60
817
  msgid "Custom Sharing & Scheduling"
818
  msgstr "Partage personnalisé et planification"
819
 
820
- #: ../includes/MetaBox.php:60 ../includes/MetaBox.php:64
821
  msgid "Info"
822
  msgstr "Info"
823
 
824
- #: ../includes/MetaBox.php:61
825
  msgid "Customize & Schedule Social Media Posts"
826
  msgstr "Personnaliser et planifier des messages sur les réseaux sociaux"
827
 
828
- #: ../includes/MetaBox.php:64 ../views/b2s/html/header.phtml:188
829
  msgid "Social Media Auto-Posting"
830
  msgstr "Auto-publication des médias sociaux"
831
 
832
- #: ../includes/MetaBox.php:67
833
  msgid "enable Auto-Posting"
834
  msgstr "Activer la fonction de comptabilisation automatique"
835
 
836
- #: ../includes/MetaBox.php:73 ../views/b2s/network.php:51 ../views/b2s/network.
837
  #: php:153 ../views/b2s/post.php:37 ../views/b2s/post.publish.php:40 ..
838
  #: /views/b2s/post.sched.php:48 ../views/b2s/ship.php:153 ../views/b2s/ship.php:
839
- #: 451 ../views/prg/html/header.phtml:81
840
  msgid "Loading..."
841
  msgstr "Chargement..."
842
 
843
- #: ../includes/MetaBox.php:81 ../views/b2s/html/footer.phtml:180
844
  msgid "Blog2Social: Social Media Auto-Posting"
845
  msgstr "Blog2Social: Auto-affichage des médias sociaux"
846
 
847
- #: ../includes/MetaBox.php:85 ../views/b2s/html/footer.phtml:184
848
  msgid ""
849
  "You have 2 general options to define the date and time to share your blog "
850
  "posts on social media with the Auto-Poster:"
@@ -852,11 +897,11 @@ msgstr ""
852
  "Vous avez 2 options générales pour definir la date et l’heure pour partager "
853
  "vos articles sur les réseaux sociaux avec la publication auto:"
854
 
855
- #: ../includes/MetaBox.php:86 ../views/b2s/html/footer.phtml:185
856
  msgid "1. Immediately after publishing your blog post"
857
  msgstr "1. 1. Immédiatement après la publication de vos articles"
858
 
859
- #: ../includes/MetaBox.php:87 ../views/b2s/html/footer.phtml:186
860
  msgid ""
861
  "Published blog posts: If you publish your blog post with click on publish in "
862
  "your WordPress post editor, Blog2Social will automatically share your social "
@@ -865,7 +910,7 @@ msgstr ""
865
  "si vous publiez vos articles en cliquant sur “publier” dans votre éditeur "
866
  "WordPress, Blog2Social les partagera automatiquement immédiatement."
867
 
868
- #: ../includes/MetaBox.php:88 ../views/b2s/html/footer.phtml:187
869
  msgid ""
870
  "Scheduled blog posts: If you schedule your blog post with click on schedule "
871
  "in your WordPress post editor, Blog2Social will share your social media post "
@@ -875,7 +920,7 @@ msgstr ""
875
  "“planifier” dans votre éditeur WordPress, Blog2Social partagera vos articles "
876
  "sur les réseaux sociaux aux moments de leurs publications sur votre site."
877
 
878
- #: ../includes/MetaBox.php:89 ../views/b2s/html/footer.phtml:188
879
  msgid ""
880
  "2. Schedule your social media posts for a specific date and time If you want "
881
  "to share your post at a particular date and time, different from your "
@@ -888,52 +933,52 @@ msgstr ""
888
  "et l’heure que vous souhaitez pour partager vos articles sur les réseaux "
889
  "sociaux.\n"
890
 
891
- #: ../includes/MetaBox.php:93 ../views/b2s/html/footer.phtml:193
892
  msgid "You want to auto-post your blog post?"
893
  msgstr "Vous voulez auto-afficher votre blog?"
894
 
895
- #: ../includes/MetaBox.php:94 ../includes/Notice.php:29 ../views/b2s/network.php:
896
- #: 102 ../views/b2s/ship.php:279 ../views/b2s/ship.php:313 ../views/b2s/ship.php:
897
- #: 360 ../views/b2s/html/footer.phtml:24 ../views/b2s/html/footer.phtml:136 ..
898
  #: /views/b2s/html/footer.phtml:194
899
  msgid "With Blog2Social Premium you can:"
900
  msgstr "Avec Blog2Social Premium, vous pouvez:"
901
 
902
- #: ../includes/MetaBox.php:97 ../includes/Notice.php:30 ../views/b2s/network.php:
903
- #: 105 ../views/b2s/ship.php:282 ../views/b2s/ship.php:316 ../views/b2s/ship.php:
904
- #: 363 ../views/b2s/html/footer.phtml:27 ../views/b2s/html/footer.phtml:139 ..
905
- #: /views/b2s/html/footer.phtml:197 ../views/b2s/html/header.phtml:189
906
  msgid "Post on pages and groups"
907
  msgstr "Poster sur les pages et les groupes"
908
 
909
- #: ../includes/MetaBox.php:98 ../includes/Notice.php:31 ../views/b2s/network.php:
910
- #: 106 ../views/b2s/ship.php:283 ../views/b2s/ship.php:317 ../views/b2s/ship.php:
911
- #: 364 ../views/b2s/html/footer.phtml:28 ../views/b2s/html/footer.phtml:140 ..
912
  #: /views/b2s/html/footer.phtml:198
913
  msgid "Share on multiple profiles, pages and groups"
914
  msgstr "Partager sur plusieurs profils, pages et groupes"
915
 
916
- #: ../includes/MetaBox.php:99 ../includes/Notice.php:32 ../views/b2s/network.php:
917
- #: 107 ../views/b2s/ship.php:284 ../views/b2s/ship.php:318 ../views/b2s/ship.php:
918
- #: 365 ../views/b2s/html/footer.phtml:29 ../views/b2s/html/footer.phtml:63 ..
919
  #: /views/b2s/html/footer.phtml:141 ../views/b2s/html/footer.phtml:199
920
  msgid "Auto-post and auto-schedule new and updated blog posts"
921
  msgstr ""
922
  "Publication automatique et auto-planification des nouveaux articles et ceux "
923
  "mis à jour"
924
 
925
- #: ../includes/MetaBox.php:100 ../includes/Notice.php:33 ../views/b2s/network.php:
926
- #: 108 ../views/b2s/ship.php:285 ../views/b2s/ship.php:319 ../views/b2s/ship.php:
927
- #: 366 ../views/b2s/html/footer.phtml:30 ../views/b2s/html/footer.phtml:142 ..
928
  #: /views/b2s/html/footer.phtml:200
929
  msgid "Schedule your posts at the best times on each network"
930
  msgstr ""
931
  "Planifiez vos articles aux meilleurs moments pour chaque réseau : une fois, "
932
  "plusieurs fois ou de manière récurrente"
933
 
934
- #: ../includes/MetaBox.php:101 ../includes/Notice.php:34 ../views/b2s/network.php:
935
- #: 109 ../views/b2s/ship.php:286 ../views/b2s/ship.php:320 ../views/b2s/ship.php:
936
- #: 367 ../views/b2s/html/footer.phtml:31 ../views/b2s/html/footer.phtml:143 ..
937
  #: /views/b2s/html/footer.phtml:201
938
  msgid ""
939
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
@@ -943,39 +988,39 @@ msgstr ""
943
  "prédéfini pour organiser automatiquement vos publications sur les réseaux "
944
  "sociaux"
945
 
946
- #: ../includes/MetaBox.php:102 ../includes/Notice.php:35 ../views/b2s/network.php:
947
- #: 110 ../views/b2s/ship.php:287 ../views/b2s/ship.php:321 ../views/b2s/ship.php:
948
- #: 368 ../views/b2s/html/footer.phtml:32 ../views/b2s/html/footer.phtml:144 ..
949
  #: /views/b2s/html/footer.phtml:202
950
  msgid "Schedule your post for one time, multiple times or recurrently"
951
  msgstr "Planifiez votre poste pour une fois, plusieurs fois ou récurrent"
952
 
953
- #: ../includes/MetaBox.php:103 ../includes/Notice.php:36 ../views/b2s/network.php:
954
- #: 111 ../views/b2s/ship.php:288 ../views/b2s/ship.php:322 ../views/b2s/ship.php:
955
- #: 369 ../views/b2s/html/footer.phtml:33 ../views/b2s/html/footer.phtml:145 ..
956
  #: /views/b2s/html/footer.phtml:203
957
  msgid "Schedule and re-share old posts"
958
  msgstr "Planifiez et re-partagez les anciens messages"
959
 
960
- #: ../includes/MetaBox.php:104 ../includes/Notice.php:37 ../views/b2s/network.php:
961
- #: 112 ../views/b2s/ship.php:289 ../views/b2s/ship.php:323 ../views/b2s/ship.php:
962
- #: 370 ../views/b2s/html/footer.phtml:34 ../views/b2s/html/footer.phtml:65 ..
963
  #: /views/b2s/html/footer.phtml:146 ../views/b2s/html/footer.phtml:204
964
  msgid "Select link format or image format for your posts"
965
  msgstr ""
966
  "Sélectionnez le format de lien ou la publication d’image pour vos "
967
  "publications"
968
 
969
- #: ../includes/MetaBox.php:105 ../includes/Notice.php:38 ../views/b2s/network.php:
970
- #: 113 ../views/b2s/ship.php:290 ../views/b2s/ship.php:324 ../views/b2s/ship.php:
971
- #: 371 ../views/b2s/html/footer.phtml:35 ../views/b2s/html/footer.phtml:66 ..
972
  #: /views/b2s/html/footer.phtml:147 ../views/b2s/html/footer.phtml:205
973
  msgid "Select individual images per post"
974
  msgstr "Sélectionnez les images individuelles par article"
975
 
976
- #: ../includes/MetaBox.php:106 ../includes/Notice.php:39 ../views/b2s/network.php:
977
- #: 114 ../views/b2s/ship.php:291 ../views/b2s/ship.php:325 ../views/b2s/ship.php:
978
- #: 372 ../views/b2s/html/footer.phtml:36 ../views/b2s/html/footer.phtml:148 ..
979
  #: /views/b2s/html/footer.phtml:206
980
  msgid ""
981
  "Reporting & calendar: keep track of your published and scheduled social "
@@ -984,8 +1029,8 @@ msgstr ""
984
  "Rapports et calendrier : gardez la trace de vos publications publiées et "
985
  "programmées"
986
 
987
- #: ../includes/MetaBox.php:110 ../views/b2s/network.php:118 ../views/b2s/ship.php:
988
- #: 295 ../views/b2s/ship.php:329 ../views/b2s/ship.php:376 ..
989
  #: /views/b2s/html/footer.phtml:40 ../views/b2s/html/footer.phtml:71 ..
990
  #: /views/b2s/html/footer.phtml:89 ../views/b2s/html/footer.phtml:152 ..
991
  #: /views/b2s/html/footer.phtml:210
@@ -997,11 +1042,11 @@ msgstr ""
997
  "avec 30 jours gratuits de Blog2Social Premium</a>(pas d'information de "
998
  "paiement requise)"
999
 
1000
- #: ../includes/MetaBox.php:121
1001
  msgid "Blog2Social: Custom Sharing & Scheduling"
1002
  msgstr "Blog2Social: Partage personnalisé et planification"
1003
 
1004
- #: ../includes/MetaBox.php:124
1005
  msgid ""
1006
  "Customize and schedule your social media posts on the one page preview for "
1007
  "all your selected networks: tailor your posts with individual comments, "
@@ -1016,44 +1061,44 @@ msgstr ""
1016
  "partager périodiquement pour Plus de visibilité et d'engagement avec votre "
1017
  "communauté."
1018
 
1019
- #: ../includes/MetaBox.php:134
1020
  msgid "Select profile:"
1021
  msgstr "Sélectionner le profil:"
1022
 
1023
- #: ../includes/MetaBox.php:149
1024
  msgid "When do you want to share your post on social media?"
1025
  msgstr "Quand souhaitez-vous partager votre article sur les réseaux sociaux ?"
1026
 
1027
- #: ../includes/MetaBox.php:152
1028
  msgid "immediately after publishing"
1029
  msgstr "Immédiatement après l'édition"
1030
 
1031
- #: ../includes/MetaBox.php:153
1032
  msgid "at scheduled times"
1033
  msgstr "À des heures programmées"
1034
 
1035
- #: ../includes/MetaBox.php:156
1036
  msgid "You want to sched your blog post with Auto-Poster?"
1037
  msgstr "Vous souhaitez planifier votre publication avec Auto-Poster?"
1038
 
1039
- #: ../includes/MetaBox.php:156 ../views/b2s/html/footer.phtml:69 ..
1040
  #: /views/b2s/html/footer.phtml:87
1041
  msgid "Upgrade to PREMIUM PRO"
1042
  msgstr "passer à Premium PRO"
1043
 
1044
- #: ../includes/MetaBox.php:162
1045
  msgid "Select date:"
1046
  msgstr "choisir date:"
1047
 
1048
- #: ../includes/MetaBox.php:168
1049
  msgid "post at"
1050
  msgstr "Poste à"
1051
 
1052
- #: ../includes/MetaBox.php:169
1053
  msgid "my time settings"
1054
  msgstr "Mes réglages d'heures"
1055
 
1056
- #: ../includes/MetaBox.php:170
1057
  msgid ""
1058
  "Note: If you ​have​ not ​specified​ your own times, we automatically provide "
1059
  "you with the best times to post​ on the social networks. You can always "
@@ -1088,23 +1133,23 @@ msgstr "Passer à la version Blog2Social premium"
1088
  msgid "Top 5 FAQ"
1089
  msgstr "Top 5 des FAQ"
1090
 
1091
- #: ../includes/PRG/Post/Filter.php:30
1092
  msgid "All Authors"
1093
  msgstr "Tous les auteurs"
1094
 
1095
- #: ../includes/PRG/Post/Filter.php:41
1096
  msgid "All Types"
1097
  msgstr "Tous les types"
1098
 
1099
- #: ../includes/PRG/Post/Item.php:83
1100
  msgid "You have no posts published or scheduled"
1101
  msgstr "Vous n'avez aucun article publié ou planifié"
1102
 
1103
- #: ../includes/PRG/Post/Item.php:110
1104
  msgid "Publish on PR-Gateway"
1105
  msgstr "Publier sur la passerelle PR"
1106
 
1107
- #: ../includes/PRG/Post/Item.php:112
1108
  msgid "on Blog"
1109
  msgstr "sur le blog"
1110
 
@@ -1348,7 +1393,7 @@ msgid "Create new profile"
1348
  msgstr "Créer un nouveau profil"
1349
 
1350
  #: ../views/b2s/network.php:30 ../views/b2s/network.php:31 ../views/prg/post.php:
1351
- #: 24 ../views/prg/post.php:25 ../views/b2s/html/post.navbar.phtml:10 ..
1352
  #: /views/b2s/html/post.navbar.phtml:11
1353
  msgid "filter"
1354
  msgstr "Filtrer"
@@ -1477,7 +1522,7 @@ msgstr "Meilleurs réglages d'heures"
1477
  msgid "Network Settings"
1478
  msgstr "Paramètres réseau"
1479
 
1480
- #: ../views/b2s/settings.php:37 ../views/b2s/ship.php:44 ../views/b2s/ship.php:410
1481
  msgid "My Time Settings"
1482
  msgstr "Mes réglages d'heures"
1483
 
@@ -1485,19 +1530,19 @@ msgstr "Mes réglages d'heures"
1485
  msgid "Reset predefined best time settings"
1486
  msgstr "Réinitialiser les réglages de la meilleure heure"
1487
 
1488
- #: ../views/b2s/settings.php:77
1489
  msgid "Select the preferred custom post format for your posts"
1490
  msgstr ""
1491
  "Sélectionnez le format de publication personnalisé préféré pour vos "
1492
  "publications"
1493
 
1494
- #: ../views/b2s/settings.php:81
1495
  msgid "You can define your preferred custom post format link post or photo post:"
1496
  msgstr ""
1497
  "Vous pouvez définir votre lien de lien de format de poste personnalisé ou "
1498
  "photo personnalisé préféré:"
1499
 
1500
- #: ../views/b2s/settings.php:90
1501
  msgid ""
1502
  "A photo or image post displays the selected image in the one-page preview of "
1503
  "Blog2Social and your comment above the image. The image links to the image "
@@ -1515,11 +1560,11 @@ msgstr ""
1515
  "personnelles. Dans Facebook, vous pouvez modifier le nom de l'album avec une "
1516
  "description de votre choix."
1517
 
1518
- #: ../views/b2s/settings.php:103
1519
  msgid "Allow shortcodes in my post"
1520
  msgstr "permettre à shortcodes dans mon post"
1521
 
1522
- #: ../views/b2s/settings.php:106
1523
  msgid ""
1524
  "Shortcodes are used by some wordpress plugins like Elementor, Visual "
1525
  "Composer and Content Builder. When a shortcode is inserted in a WordPress "
@@ -1539,7 +1584,7 @@ msgstr ""
1539
  "fonctionnalité, si vous le souhaitez Utilisez des éléments dynamiques dans "
1540
  "vos articles."
1541
 
1542
- #: ../views/b2s/settings.php:120
1543
  msgid ""
1544
  "Blog2Social applies the scheduled time settings based on the time zone "
1545
  "defined in the general settings of your WordPress. You can select a user-"
@@ -1554,13 +1599,13 @@ msgstr ""
1554
  "sociaux. <br> <br> Sélectionnez le fuseau horaire souhaité dans le menu "
1555
  "déroulant."
1556
 
1557
- #: ../views/b2s/settings.php:131
1558
  msgid "Select the content type you want to auto-post by default"
1559
  msgstr ""
1560
  "Sélectionnez le type de contenu que vous souhaitez publier automatiquement "
1561
  "par défaut"
1562
 
1563
- #: ../views/b2s/settings.php:134
1564
  msgid ""
1565
  "Please select the content type you want to auto-post by default.<br>You can "
1566
  "activate auto-post by default for posts, pages and any custom post type. As "
@@ -1608,7 +1653,7 @@ msgstr "Ajouter plus..."
1608
  msgid "Profiles | Pages | Groups"
1609
  msgstr "Profils | Pages | Groupes"
1610
 
1611
- #: ../views/b2s/ship.php:130 ../views/b2s/ship.php:312
1612
  msgid "You want to save network settings in an additional profile?"
1613
  msgstr ""
1614
  "Vous souhaitez enregistrer les paramètres réseau dans un profil "
@@ -1659,23 +1704,23 @@ msgstr "faire défiler vers le haut"
1659
  msgid "Share"
1660
  msgstr "Partager"
1661
 
1662
- #: ../views/b2s/ship.php:205
1663
  msgid "Time zone"
1664
  msgstr "Fuseau horaire"
1665
 
1666
- #: ../views/b2s/ship.php:212
1667
  msgid "Share new post on Social Media"
1668
  msgstr "Partager le nouvel article sur les réseaux sociaux"
1669
 
1670
- #: ../views/b2s/ship.php:239
1671
  msgid "Connect for"
1672
  msgstr "Connecter sur"
1673
 
1674
- #: ../views/b2s/ship.php:255
1675
  msgid "Time Scheduling"
1676
  msgstr "Heure de la planification"
1677
 
1678
- #: ../views/b2s/ship.php:259
1679
  msgid ""
1680
  "You have not yet defined personal time settings. To edit personal time "
1681
  "settings click on the Blog2Social Settings on the left-hand menu and select "
@@ -1687,11 +1732,11 @@ msgstr ""
1687
  "du Blog2Social dans le menu de gauche et sélectionnez Best Time Settings "
1688
  "pour modifier les paramètres de temps prédéfinis selon vos préférences."
1689
 
1690
- #: ../views/b2s/ship.php:272
1691
  msgid "Re-share this Post"
1692
  msgstr "Re-partager cet article"
1693
 
1694
- #: ../views/b2s/ship.php:275
1695
  msgid ""
1696
  "You can re-share your post for a different sharing purpose, or to share on a "
1697
  "different choice of networks, profiles, pages or groups, or with different "
@@ -1716,15 +1761,15 @@ msgstr ""
1716
  "d'aperçu où vous pourrez sélectionner vos réseaux et modifier vos textes, "
1717
  "commentaires ou images en fonction de vos préférences de partage."
1718
 
1719
- #: ../views/b2s/ship.php:278
1720
  msgid "You want re-share your blog post?"
1721
  msgstr "Vous voulez re-partager votre blog?"
1722
 
1723
- #: ../views/b2s/ship.php:306
1724
  msgid "Save Network Settings"
1725
  msgstr "Sauver les paramètres de réseaux"
1726
 
1727
- #: ../views/b2s/ship.php:309
1728
  msgid ""
1729
  "You can save your current network settings as \"Standard\" network settings "
1730
  "for any future sharing activities or as a \"Profile\" to choose from (Premium)."
@@ -1755,27 +1800,27 @@ msgstr ""
1755
  "compte de réseau respectif pour sélectionner ou supprimer un compte du "
1756
  "partage courant."
1757
 
1758
- #: ../views/b2s/ship.php:342
1759
  msgid "Your blog post is not yet published on your Wordpress!"
1760
  msgstr "Votre message de blog n'est pas encore publié sur votre Wordpress!"
1761
 
1762
- #: ../views/b2s/ship.php:345
1763
  msgid "At least one of your selected networks is set to \"Share Now\""
1764
  msgstr "Au moins un de vos réseaux sélectionnés est réglé sur \"Partager maintenant\""
1765
 
1766
- #: ../views/b2s/ship.php:349
1767
  msgid "Schedule your post"
1768
  msgstr "Planifiez votre message"
1769
 
1770
- #: ../views/b2s/ship.php:352
1771
  msgid "Ignore & share"
1772
  msgstr "Ignorer & partager"
1773
 
1774
- #: ../views/b2s/ship.php:388
1775
  msgid "Select image for"
1776
  msgstr "Sélectionnez l'image pour"
1777
 
1778
- #: ../views/b2s/ship.php:431
1779
  msgid "Post Format"
1780
  msgstr "Format de publication"
1781
 
@@ -2127,123 +2172,123 @@ msgstr ""
2127
  "performances de vos messages de médias sociaux. <br> Vous pouvez désactiver "
2128
  "la b2s.pm Shortener pour montrer votre URL d'origine."
2129
 
2130
- #: ../views/b2s/html/header.phtml:8
2131
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
2132
  msgstr ""
2133
  "Je vous remercie. Vous recevrez maintenant les mises à jour du blog de "
2134
  "Blog2Social."
2135
 
2136
- #: ../views/b2s/html/header.phtml:25
2137
  msgid "This entry could not be removed. It's not yours!"
2138
  msgstr "Cette entrée ne peut pas être enlevé. Ce n'est pas à toi!"
2139
 
2140
- #: ../views/b2s/html/header.phtml:30
2141
  msgid "This entry was removed successful."
2142
  msgstr "Cette entrée est supprimée avec succès."
2143
 
2144
- #: ../views/b2s/html/header.phtml:39
2145
  msgid "Post was scheduled successfully on your blog!"
2146
  msgstr "Post a été planifié avec succès sur votre blog!"
2147
 
2148
- #: ../views/b2s/html/header.phtml:41
2149
  msgid "Post is published successfully on your blog!"
2150
  msgstr "Post est publié avec succès sur votre blog!"
2151
 
2152
- #: ../views/b2s/html/header.phtml:51 ../views/b2s/html/header.phtml:156
2153
  msgid "Version"
2154
  msgstr "Version"
2155
 
2156
- #: ../views/b2s/html/header.phtml:51
2157
  msgid "is successfully activated."
2158
  msgstr "a été activé avec succès."
2159
 
2160
- #: ../views/b2s/html/header.phtml:56
2161
  msgid "Your entered License Key is invalid. Please contact support!"
2162
  msgstr "La clé de licence saisie est invalide. Contactez le support, svp !"
2163
 
2164
- #: ../views/b2s/html/header.phtml:61
2165
  msgid "Your license key has reached the maximum number of users."
2166
  msgstr "Votre clé de licence a atteint le nombre maximum d'utilisateurs."
2167
 
2168
- #: ../views/b2s/html/header.phtml:68
2169
  msgid "Your authorization was successful."
2170
  msgstr "Votre autorisation est correcte."
2171
 
2172
- #: ../views/b2s/html/header.phtml:73
2173
  msgid "Your profile was saved successful."
2174
  msgstr "Votre profil a été sauvegardé avec succès."
2175
 
2176
- #: ../views/b2s/html/header.phtml:78
2177
  msgid "Your profile could not be saved."
2178
  msgstr "Votre profil n'a pas pu être sauvegardé."
2179
 
2180
- #: ../views/b2s/html/header.phtml:83
2181
  msgid "Your authorization could not be removed."
2182
  msgstr "Votre autorisation ne peut être supprimée."
2183
 
2184
- #: ../views/b2s/html/header.phtml:88
2185
  msgid "Your authorization was removed successful."
2186
  msgstr "Votre autorisation a été supprimée avec succès."
2187
 
2188
- #: ../views/b2s/html/header.phtml:93
2189
  msgid "Thank you! Your feedback has been received."
2190
  msgstr "Merci ! Votre retour d'information a bien été reçu."
2191
 
2192
- #: ../views/b2s/html/header.phtml:98
2193
  msgid "Your feedback could not be delivered."
2194
  msgstr "Votre retour d'information n'a pu être envoyé."
2195
 
2196
- #: ../views/b2s/html/header.phtml:105 ../views/b2s/html/header.phtml:115
2197
  msgid "Your settings were successfully saved."
2198
  msgstr "Vos paramètres ont été sauvegardés avec succès."
2199
 
2200
- #: ../views/b2s/html/header.phtml:110
2201
  msgid "Your settings could not be saved."
2202
  msgstr "Vos paramètres n'ont pu être sauvegardés."
2203
 
2204
- #: ../views/b2s/html/header.phtml:123 ../views/b2s/html/header.phtml:179
2205
  msgid "Test Blog2Social PREMIUM 30 days for free"
2206
  msgstr "Testez Blog2Social PREMIUM 30 jours gratuitement"
2207
 
2208
- #: ../views/b2s/html/header.phtml:123 ../views/b2s/html/header.phtml:212
2209
  msgid "Get Started"
2210
  msgstr "Commencez"
2211
 
2212
- #: ../views/b2s/html/header.phtml:132
2213
  msgid "Your Blog2Social Premium Free Version is activated for "
2214
  msgstr "Votre version Blog2Social Premium gratuite est activée pour "
2215
 
2216
- #: ../views/b2s/html/header.phtml:135
2217
  msgid " Days"
2218
  msgstr " jours"
2219
 
2220
- #: ../views/b2s/html/header.phtml:135
2221
  msgid " today"
2222
  msgstr " aujourd'hui"
2223
 
2224
- #: ../views/b2s/html/header.phtml:145
2225
  msgid "Your Blog2Social FREE-TRIAL Version has expired. Did you like this version?"
2226
  msgstr ""
2227
  "Votre version d'essai gratuit de Blog2Social a expiré. Avez-vous aimé cette "
2228
  "version ?"
2229
 
2230
- #: ../views/b2s/html/header.phtml:146
2231
  msgid "Yes, I want more"
2232
  msgstr "Oui, j'en veux plus"
2233
 
2234
- #: ../views/b2s/html/header.phtml:147
2235
  msgid "No, I had enough"
2236
  msgstr "Non, j'en ai eu assez"
2237
 
2238
- #: ../views/b2s/html/header.phtml:166 ../views/b2s/html/service.phtml:15
2239
  msgid "Plans & Pricing"
2240
  msgstr "Plans & Prix"
2241
 
2242
- #: ../views/b2s/html/header.phtml:167 ../views/b2s/html/service.phtml:16
2243
  msgid "Support"
2244
  msgstr "Support"
2245
 
2246
- #: ../views/b2s/html/header.phtml:185
2247
  msgid ""
2248
  "The free trial can not be started. This blog has been already registered for "
2249
  "the free trial."
@@ -2251,41 +2296,41 @@ msgstr ""
2251
  "La version gratuite ne peut commencer. Ce blog a déjà été enregistré pour la "
2252
  "version gratuite."
2253
 
2254
- #: ../views/b2s/html/header.phtml:190
2255
  msgid "Share on multiple accounts per network"
2256
  msgstr "Partage sur plusieurs comptes par réseau"
2257
 
2258
- #: ../views/b2s/html/header.phtml:191
2259
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
2260
  msgstr ""
2261
  "Best Time Scheduler: Planifiez une fois, plusieurs fois ou de façon "
2262
  "récurrente."
2263
 
2264
- #: ../views/b2s/html/header.phtml:192
2265
  msgid "Reporting with links to all published social media posts"
2266
  msgstr ""
2267
  "Rapports avec des liens vers tous les messages publiés sur les réseaux "
2268
  "sociaux"
2269
 
2270
- #: ../views/b2s/html/header.phtml:195 ../views/prg/html/form.phtml:141 ..
2271
  #: /views/prg/html/form.phtml:143 ../views/prg/html/form.phtml:218 ..
2272
  #: /views/prg/html/form.phtml:220
2273
  msgid "E-Mail"
2274
  msgstr "E-mail"
2275
 
2276
- #: ../views/b2s/html/header.phtml:199 ../views/prg/html/form.phtml:91 ..
2277
  #: /views/prg/html/form.phtml:100 ../views/prg/html/form.phtml:168 ..
2278
  #: /views/prg/html/form.phtml:177
2279
  msgid "First Name"
2280
  msgstr "Prénom"
2281
 
2282
- #: ../views/b2s/html/header.phtml:203 ../views/prg/html/form.phtml:92 ..
2283
  #: /views/prg/html/form.phtml:103 ../views/prg/html/form.phtml:169 ..
2284
  #: /views/prg/html/form.phtml:180
2285
  msgid "Last Name"
2286
  msgstr "Nom"
2287
 
2288
- #: ../views/b2s/html/header.phtml:208
2289
  msgid "No credit card required"
2290
  msgstr "Pas d'information de carte de crédit nécessaire"
2291
 
3
  "Project-Id-Version: Blog2Social V3 - Development Modus\n"
4
  "Report-Msgid-Bugs-To: \n"
5
  "POT-Creation-Date: 2016-10-25 12:18+0200\n"
6
+ "PO-Revision-Date: Mon Jun 26 2017 16:32:04 GMT+0200\n"
7
  "Last-Translator: admin <s.buerger@adenion.de>\n"
8
  "Language-Team: French (France) <translate@tips02.fr>\n"
9
  "Language: French (France)\n"
22
  "X-Generator: Loco - https://localise.biz/\n"
23
  "X-Poedit-SearchPath-0: .."
24
 
25
+ #: ../includes/B2S/Network/Item.php:91
26
+ msgid "need more"
27
+ msgstr "besoin de plus"
28
+
29
+ #: ../includes/B2S/Settings/Item.php:131
30
+ msgid "Did you know?"
31
+ msgstr "Le saviez-vous?"
32
+
33
+ #: ../includes/B2S/Settings/Item.php:132
34
+ msgid ""
35
+ "Beginning with Premium Pro, you can change the custom post format photo post "
36
+ "or link post for each individual social media post and channel (profile, "
37
+ "page, group), deviate from the default settings."
38
+ msgstr ""
39
+ "À partir de Premium Pro, vous pouvez modifier la publication personnalisée "
40
+ "du post-format ou le lien pour chaque publication et chaque chaîne de médias "
41
+ "sociaux (profil, page, groupe), s'écarter des paramètres par défaut."
42
+
43
+ #: ../includes/B2S/Settings/Item.php:132
44
+ msgid "Upgrade to Premium Pro now."
45
+ msgstr "Passez à Premium Pro dès maintenant."
46
+
47
+ #: ../includes/B2S/Settings/Item.php:184
48
+ msgid "All"
49
+ msgstr "Tout"
50
+
51
+ #: ../includes/MetaBox.php:24 ../views/b2s/html/header.phtml:15
52
+ msgid "Please see FAQ"
53
+ msgstr "Voir les FAQ"
54
+
55
+ #: ../views/b2s/settings.php:54
56
+ msgid "Post format"
57
+ msgstr "Format de publication"
58
+
59
+ #: ../views/b2s/settings.php:59
60
+ msgid "Facebook"
61
+ msgstr "Facebook"
62
+
63
+ #: ../views/b2s/settings.php:62
64
+ msgid "Twitter"
65
+ msgstr "Twitter"
66
+
67
+ #: ../views/b2s/ship.php:432
68
+ msgid "Choose your"
69
+ msgstr "Choisi ton"
70
+
71
+ #: ../views/b2s/ship.php:434
72
+ msgid "for:"
73
+ msgstr "pour:"
74
+
75
+ #: ../views/b2s/ship.php:449
76
+ msgid ""
77
+ "Define the default settings for the custom post format for all of your "
78
+ "Facebook accounts on the Blog2Social settings section."
79
+ msgstr ""
80
+ "Définissez les paramètres par défaut pour le format de publication "
81
+ "personnalisé pour tous vos comptes Facebook dans la section des paramètres "
82
+ "Blog2Social."
83
+
84
+ #: ../views/b2s/ship.php:452
85
+ msgid ""
86
+ "Define the default settings for the custom post format for all of your "
87
+ "Twitter accounts on the Blog2Social settings section."
88
+ msgstr ""
89
+ "Définissez les paramètres par défaut pour le format de publication "
90
+ "personnalisé pour tous vos comptes Twitter sur la section des paramètres de "
91
+ "Blog2Social."
92
+
93
  #: ../includes/B2S/Network/Item.php:42 ../includes/B2S/Ship/Navbar.php:32
94
  msgid "Default"
95
  msgstr "Standard"
98
  msgid "max. accounts"
99
  msgstr "max. comptes"
100
 
 
 
 
 
101
  #: ../includes/B2S/Network/Item.php:96 ../includes/B2S/Network/Item.php:112 ..
102
+ #: /includes/B2S/Network/Item.php:114 ../includes/B2S/Settings/Item.php:184 ..
103
+ #: /includes/B2S/Settings/Item.php:197 ../includes/B2S/Settings/Item.php:214 ..
104
+ #: /includes/B2S/Settings/Item.php:261 ../includes/B2S/Ship/Portale.php:35 ..
105
+ #: /includes/Init.php:287
106
  msgid "Profile"
107
  msgstr "Profil"
108
 
109
  #: ../includes/B2S/Network/Item.php:99 ../includes/B2S/Network/Item.php:99 ..
110
+ #: /includes/B2S/Network/Item.php:134 ../includes/B2S/Network/Item.php:136 ..
111
+ #: /includes/B2S/Settings/Item.php:198 ../includes/B2S/Settings/Item.php:215 ..
112
+ #: /includes/B2S/Settings/Item.php:264 ../includes/B2S/Ship/Portale.php:33 ..
113
+ #: /includes/Init.php:287
114
  msgid "Page"
115
  msgstr "Page"
116
 
119
  msgstr "Vous voulez connecter une page d'un réseau ?"
120
 
121
  #: ../includes/B2S/Network/Item.php:102 ../includes/B2S/Network/Item.php:102 ..
122
+ #: /includes/B2S/Network/Item.php:156 ../includes/B2S/Network/Item.php:158 ..
123
+ #: /includes/B2S/Settings/Item.php:199 ../includes/B2S/Settings/Item.php:216 ..
124
+ #: /includes/B2S/Settings/Item.php:268 ../includes/B2S/Ship/Portale.php:29 ..
125
+ #: /includes/Init.php:287
126
  msgid "Group"
127
  msgstr "Groupe"
128
 
130
  msgid "You want to connect a social media group?"
131
  msgstr "Vous voulez connecter un groupe de réseau social ?"
132
 
133
+ #: ../includes/B2S/Network/Item.php:121 ../includes/B2S/Network/Item.php:165
 
 
 
 
 
 
 
 
 
 
134
  msgid "Authorization is interrupted since"
135
  msgstr "L'autorisation est interrompue depuis"
136
 
137
+ #: ../includes/B2S/Network/Item.php:123 ../includes/B2S/Network/Item.php:146 ..
138
+ #: /includes/B2S/Network/Item.php:168
139
  msgid "To reactivate this social media connection,"
140
  msgstr "Pour réactiver cette connexion aux réseaux sociaux,"
141
 
142
+ #: ../includes/B2S/Network/Item.php:123 ../includes/B2S/Network/Item.php:146 ..
143
+ #: /includes/B2S/Network/Item.php:168 ../includes/B2S/Ship/Image.php:19
144
  msgid "please upgrade"
145
  msgstr "Mise à niveau"
146
 
147
+ #: ../includes/B2S/Network/Item.php:143
148
  msgid "Authorization is interrupted since"
149
  msgstr "L'autorisation est interrompue depuis"
150
 
153
  msgstr "Tous les auteurs"
154
 
155
  #: ../includes/B2S/Post/Filter.php:49 ../includes/B2S/Post/Item.php:185 ..
156
+ #: /includes/B2S/Ship/Save.php:174 ../includes/PRG/Post/Filter.php:41 ..
157
+ #: /includes/PRG/Post/Item.php:97 ../views/b2s/ship.php:12
158
  msgid "published"
159
  msgstr "publié"
160
 
161
  #: ../includes/B2S/Post/Filter.php:49 ../includes/B2S/Post/Item.php:185 ..
162
+ #: /includes/PRG/Post/Filter.php:41 ../includes/PRG/Post/Item.php:97 ..
163
  #: /views/b2s/ship.php:12
164
  msgid "scheduled"
165
  msgstr "planifié"
166
 
167
  #: ../includes/B2S/Post/Filter.php:49 ../includes/B2S/Post/Item.php:185 ..
168
+ #: /includes/PRG/Post/Item.php:97 ../views/b2s/ship.php:12
 
169
  msgid "draft"
170
  msgstr "brouillon"
171
 
185
  msgid "all categories & tags"
186
  msgstr "tous catégories & balises"
187
 
188
+ #: ../includes/B2S/Post/Filter.php:108 ../includes/PRG/Post/Filter.php:53
189
  msgid "all post types"
190
  msgstr "tous types de postes"
191
 
192
+ #: ../includes/B2S/Post/Filter.php:129 ../includes/PRG/Post/Filter.php:74
193
  msgid "Search Title"
194
  msgstr "Rechercher titre"
195
 
201
  msgid "show calendar"
202
  msgstr "montrer calendrier"
203
 
204
+ #: ../includes/B2S/Post/Filter.php:152 ../includes/PRG/Post/Filter.php:85
205
  msgid "sort"
206
  msgstr "Tri"
207
 
208
+ #: ../includes/B2S/Post/Filter.php:153 ../includes/PRG/Post/Filter.php:86
209
  msgid "reset"
210
  msgstr "réinitialiser"
211
 
225
  msgid "last shared on social media"
226
  msgstr "dernier partagé on le réseau social"
227
 
228
+ #: ../includes/B2S/Post/Item.php:218 ../includes/Init.php:103
229
  msgid "Share on Social Media"
230
  msgstr "Partager sur les réseaux sociaux"
231
 
232
+ #: ../includes/B2S/Post/Item.php:220 ../includes/PRG/Post/Item.php:129
233
  msgid "Author"
234
  msgstr "Auteur"
235
 
237
  msgid "on blog"
238
  msgstr "sur le blog"
239
 
240
+ #: ../includes/B2S/Post/Item.php:237 ../views/b2s/ship.php:215 ../views/b2s/ship.
241
+ #: php:217
242
  msgid "Re-share this post"
243
  msgstr "Re-partager cet article"
244
 
299
  msgid "scheduled by"
300
  msgstr "planifié par"
301
 
302
+ #: ../includes/B2S/Post/Item.php:447 ../includes/B2S/Post/Item.php:460
 
 
 
 
303
  msgid "delete scheduling"
304
  msgstr "effacer planifié"
305
 
306
+ #: ../includes/B2S/Post/Item.php:451
307
  msgid "You want to change the time for your scheduled post?"
308
  msgstr "Vous souhaitez modifier l'heure de votre annonce?"
309
 
310
+ #: ../includes/B2S/Post/Item.php:452
311
  msgid "change time"
312
  msgstr "changer l'heure"
313
 
315
  msgid "Account"
316
  msgstr "Compte"
317
 
318
+ #: ../includes/B2S/Settings/Item.php:68 ../views/b2s/settings.php:160
319
  msgid "Personal Time Zone"
320
  msgstr "Fuseau horaire personnel"
321
 
363
  msgid "allow shortcodes in my post"
364
  msgstr "permettre à shortcodes dans mon post"
365
 
366
+ #: ../includes/B2S/Settings/Item.php:146 ../includes/B2S/Settings/Item.php:188 ..
367
+ #: /includes/B2S/Settings/Item.php:227 ../views/b2s/settings.php:127
 
 
 
 
368
  msgid "Link Post"
369
  msgstr "Lien Post"
370
 
371
+ #: ../includes/B2S/Settings/Item.php:150 ../views/b2s/settings.php:128
 
372
  msgid ""
373
  "The link post format displays posts title, link address and the first one or "
374
  "two sentences of the post. The networks scan this information from your META "
385
  "la première image détectée sur votre page. L'image se rattache à votre "
386
  "article."
387
 
388
+ #: ../includes/B2S/Settings/Item.php:153 ../includes/B2S/Settings/Item.php:205 ..
389
+ #: /includes/B2S/Settings/Item.php:227 ../views/b2s/settings.php:132
390
  msgid "Photo Post"
391
  msgstr "Article photo"
392
 
393
+ #: ../includes/B2S/Settings/Item.php:157
394
  msgid ""
395
  "A photo or image post displays the selected image in the one-page preview of "
396
  "Blog2Social and your comment above the image. The image links to the image "
408
  "personnelles. Dans Facebook, vous pouvez modifier le nom de l'album avec une "
409
  "description de votre choix."
410
 
411
+ #: ../includes/B2S/Settings/Item.php:275 ../views/b2s/post.sched.php:24
 
 
 
 
412
  msgid "Uhr"
413
  msgstr "regarder"
414
 
415
+ #: ../includes/B2S/Settings/Item.php:279
416
  msgid "Best times to post"
417
  msgstr "Meilleures heures pour publier"
418
 
419
+ #: ../includes/B2S/Settings/Item.php:292 ../views/b2s/settings.php:44 ..
420
+ #: /views/b2s/ship.php:49 ../views/b2s/ship.php:360 ../views/b2s/html/footer.
421
  #: phtml:135
422
  msgid "You want to schedule your posts and use the Best Time Scheduler?"
423
  msgstr ""
424
  "Vous voulez planifier vos articles et utiliser le meilleur créneau horaire "
425
  "de publication?"
426
 
427
+ #: ../includes/B2S/Settings/Item.php:294 ../views/b2s/post.sched.php:90 ..
428
+ #: /views/b2s/settings.php:46 ../views/b2s/settings.php:74 ../views/b2s/settings.
429
+ #: php:87 ../views/b2s/ship.php:410
430
  msgid "save"
431
  msgstr "sauver"
432
 
433
+ #: ../includes/B2S/Settings/Item.php:299
434
  msgid "Sorry, we can not load your data at the moment..."
435
  msgstr "Désolé, nous ne pouvons pas charger vos données pour l'instant..."
436
 
526
  msgid "post format"
527
  msgstr "Format de publication"
528
 
529
+ #: ../includes/B2S/Ship/Item.php:207
530
  msgid "Insert full-text"
531
  msgstr "Insérer du texte plein"
532
 
533
+ #: ../includes/B2S/Ship/Item.php:209
534
  msgid "Delete text"
535
  msgstr "Effacer le texte"
536
 
537
+ #: ../includes/B2S/Ship/Item.php:244 ../includes/B2S/Ship/Item.php:262 ..
538
+ #: /includes/B2S/Ship/Item.php:280 ../includes/B2S/Ship/Item.php:298 ..
539
+ #: /includes/B2S/Ship/Item.php:313
540
  msgid "Write something about your post..."
541
  msgstr "Ecrivez quelque-chose à propos de votre article..."
542
 
543
+ #: ../includes/B2S/Ship/Item.php:251 ../includes/B2S/Ship/Item.php:269 ..
544
+ #: /includes/B2S/Ship/Item.php:287 ../includes/B2S/Ship/Item.php:340
545
  msgid "Change image for this network"
546
  msgstr "Changer l'image pour ce réseau"
547
 
548
+ #: ../includes/B2S/Ship/Item.php:327
549
  msgid "required"
550
  msgstr "nécessaire"
551
 
552
+ #: ../includes/B2S/Ship/Item.php:347 ../includes/B2S/Ship/Item.php:349
553
  msgid "Link"
554
  msgstr "Lien"
555
 
556
+ #: ../includes/B2S/Ship/Item.php:397
557
  msgid "The Headline..."
558
  msgstr "L'entête..."
559
 
560
+ #: ../includes/B2S/Ship/Item.php:402
561
  msgid "Hashtags"
562
  msgstr "Hashtags"
563
 
564
+ #: ../includes/B2S/Ship/Item.php:432
565
  msgid "Share Now"
566
  msgstr "Partager maintenant"
567
 
568
+ #: ../includes/B2S/Ship/Item.php:434
569
  msgid "Schedule post once"
570
  msgstr "Planifier l'article une fois"
571
 
572
+ #: ../includes/B2S/Ship/Item.php:436
573
  msgid "Schedule post recurrently"
574
  msgstr "Planifié l'article de manière récurrente"
575
 
576
+ #: ../includes/B2S/Ship/Item.php:461
577
  msgid "Duration"
578
  msgstr "Durée"
579
 
580
+ #: ../includes/B2S/Ship/Item.php:462 ../includes/B2S/Ship/Item.php:477
581
  msgid "Date"
582
  msgstr "Date"
583
 
584
+ #: ../includes/B2S/Ship/Item.php:463 ../includes/B2S/Ship/Item.php:478
585
  msgid "Time"
586
  msgstr "Heure"
587
 
588
+ #: ../includes/B2S/Ship/Item.php:464
589
  msgid "Days"
590
  msgstr "Jours"
591
 
592
+ #: ../includes/B2S/Ship/Item.php:472
593
  msgid "Week"
594
  msgstr "Semaine"
595
 
596
+ #: ../includes/B2S/Ship/Item.php:472
597
  msgid "Weeks"
598
  msgstr "Semaines"
599
 
600
+ #: ../includes/B2S/Ship/Item.php:482
601
  msgid "Mon"
602
  msgstr "Lu"
603
 
604
+ #: ../includes/B2S/Ship/Item.php:483
605
  msgid "Tue"
606
  msgstr "Ma"
607
 
608
+ #: ../includes/B2S/Ship/Item.php:484
609
  msgid "Wed"
610
  msgstr "Me"
611
 
612
+ #: ../includes/B2S/Ship/Item.php:485
613
  msgid "Thu"
614
  msgstr "Je"
615
 
616
+ #: ../includes/B2S/Ship/Item.php:486
617
  msgid "Fri"
618
  msgstr "Ve"
619
 
620
+ #: ../includes/B2S/Ship/Item.php:487
621
  msgid "Sat"
622
  msgstr "Sa"
623
 
624
+ #: ../includes/B2S/Ship/Item.php:488
625
  msgid "Sun"
626
  msgstr "Di"
627
 
628
+ #: ../includes/B2S/Ship/Item.php:493 ../views/b2s/network.php:170
629
  msgid "delete"
630
  msgstr "supprimer"
631
 
632
+ #: ../includes/B2S/Ship/Item.php:494
633
  msgid "Add Posting Time"
634
  msgstr "Ajouter une heure d'envoi"
635
 
636
+ #: ../includes/B2S/Ship/Item.php:500
637
  msgid "Apply Settings To All Networks"
638
  msgstr "Appliquer les réglages à tous les réseaux"
639
 
640
+ #: ../includes/B2S/Ship/Item.php:501
641
  msgid "Save Settings As Default"
642
  msgstr "Sauver ces réglages comme défaut"
643
 
657
  msgid "Number of scheduled posts"
658
  msgstr "Nombre d'articles planifiés"
659
 
660
+ #: ../includes/Init.php:259
661
  msgid "This post will be shared into your social media on"
662
  msgstr "Ce post sera partagé dans vos médias sociaux sur"
663
 
664
+ #: ../includes/Init.php:259 ../includes/Init.php:261
665
  msgid "show details"
666
  msgstr "afficher les détails"
667
 
668
+ #: ../includes/Init.php:261
669
  msgid "This post will be shared on social media in 2-3 minutes!"
670
  msgstr "Votre post sera partagé sur les médias sociaux en 2-3 minutes!"
671
 
672
+ #: ../includes/Init.php:265
673
  msgid ""
674
  "Please, make sure that your post are publish on this blog on this moment. "
675
  "Then you can auto post your post with Blog2social."
677
  "S'il vous plaît, assurez-vous que votre post sont publier sur ce blog à ce "
678
  "moment. Ensuite, vous pouvez auto publier votre message avec Blog2social."
679
 
680
+ #: ../includes/Init.php:268 ../includes/MetaBox.php:55
681
  msgid ""
682
  "There are no authorizations for your selected profile. Please, authorize "
683
  "with a social network or select a other profile."
685
  "Il n'existe aucune autorisation pour votre profil sélectionné. Autoriser "
686
  "avec un réseau social ou sélectionner un autre profil."
687
 
688
+ #: ../includes/Init.php:280
689
  msgid "Upgrade to Premium"
690
  msgstr "Passer à la version premium"
691
 
692
+ #: ../includes/Init.php:288
693
  msgid "Your post could not be posted."
694
  msgstr "Votre article ne peut être posté."
695
 
696
+ #: ../includes/Init.php:289
697
  msgid "Your authorization has expired. Please check your authorization."
698
  msgstr "Votre autorisation a expiré. Vérifiez votre autorisation, svp."
699
 
700
+ #: ../includes/Init.php:290
701
  msgid "The network has marked the post as spam or abusive."
702
  msgstr "Le réseau a marqué l'article comme spam ou abusif."
703
 
704
+ #: ../includes/Init.php:291
705
  msgid ""
706
  "We don't have the permission to publish your post. Please check your "
707
  "authorization."
709
  "Nous n'avons pas la permission de publier votre article. Vérifiez votre "
710
  "autorisation, svp."
711
 
712
+ #: ../includes/Init.php:292
713
  msgid ""
714
  "Your authorization is interrupted. Please check your authorization. Please "
715
  "see <a target=\"_blank\" href=\"https://www.blog2social."
719
  "la <a target=\"_blank\" href=\"https://www.blog2social."
720
  "com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>, svp."
721
 
722
+ #: ../includes/Init.php:293
723
  msgid "Your limit is reached for today."
724
  msgstr "Votre limite quotidienne est atteinte."
725
 
726
+ #: ../includes/Init.php:294
727
  msgid "Your post could not be posted, because your image is not available."
728
  msgstr "Votre article ne peut pas être publié parce que l'image n'est pas disponible."
729
 
730
+ #: ../includes/Init.php:295
731
  msgid ""
732
  "The network has blocked your account. Please see <a target=\"_blank\" "
733
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
737
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
738
  "error-messages.html\">FAQ</a>, svp."
739
 
740
+ #: ../includes/Init.php:296
741
  msgid ""
742
  "The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
743
  "//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
747
  "href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
748
  "error-messages.html\">FAQ</a>, svp."
749
 
750
+ #: ../includes/Init.php:297
751
  msgid "Your limit has temporarily reached for this network."
752
  msgstr "Votre limite est temporairement atteinte pour ce réseau."
753
 
754
+ #: ../includes/Init.php:298
755
  msgid ""
756
  "The network can not publish special characters such as Emoji. Please see <a "
757
  "target=\"_blank\" href=\"https://www.blog2social."
761
  "target=\"_blank\" href=\"https://www.blog2social."
762
  "com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
763
 
764
+ #: ../includes/Init.php:299
765
  msgid "Your post is a duplicate."
766
  msgstr "Votre message est un duplicata."
767
 
768
+ #: ../includes/Init.php:300
769
  msgid "The network are required a public url to your post."
770
  msgstr "Le réseau doit avoir une url publique à votre poste."
771
 
772
+ #: ../includes/Init.php:301
773
  msgid "The network says, that your group is not exisits."
774
  msgstr "Le réseau dit que votre groupe n'existe pas."
775
 
776
+ #: ../includes/Init.php:358 ../includes/Init.php:388
777
  msgid "Dashboard"
778
  msgstr "Tableau de bord"
779
 
780
+ #: ../includes/Init.php:359 ../includes/Init.php:359 ../includes/Init.php:395
781
  msgid "Posts & Sharing"
782
  msgstr "Messages et partage"
783
 
784
+ #: ../includes/Init.php:360 ../includes/Init.php:360 ../includes/Init.php:402 ..
785
  #: /views/b2s/network.php:17
786
  msgid "Networks"
787
  msgstr "Réseaux"
788
 
789
+ #: ../includes/Init.php:361 ../includes/Init.php:361 ../includes/Init.php:408 ..
790
+ #: /views/b2s/ship.php:53 ../views/b2s/ship.php:263
791
  msgid "Settings"
792
  msgstr "Paramètres"
793
 
794
+ #: ../includes/Init.php:362 ../includes/Init.php:362 ../includes/Init.php:414
795
  msgid "PR-Service"
796
  msgstr "Service - PR"
797
 
798
+ #: ../includes/Init.php:379
799
  msgid "Blog2Social"
800
  msgstr "Blog2Social"
801
 
802
+ #: ../includes/Init.php:631 ../includes/Init.php:784
803
  msgid "or"
804
  msgstr "ou"
805
 
806
+ #: ../includes/Init.php:631 ../includes/Init.php:784
807
  msgid "back to install plugins"
808
  msgstr "retour à l'installation des plugins"
809
 
811
  msgid "last auto-post:"
812
  msgstr "dernier auto-post:"
813
 
814
+ #: ../includes/MetaBox.php:53 ../views/b2s/ship.php:470 ../views/b2s/html/header.
815
+ #: phtml:20
816
  msgid "The connection to the server failed. Try again!"
817
  msgstr "Erreur: la connexion au serveur a échoué. Réessayer!"
818
 
819
+ #: ../includes/MetaBox.php:54 ../views/b2s/html/header.phtml:14
820
  msgid ""
821
  "WordPress uses heartbeats by default, Blog2Social as well. Please enable "
822
  "heartbeats for using Blog2Social!"
824
  "WordPress utilise des battements de coeur par défaut, Blog2Social ainsi. "
825
  "Veuillez activer les battements de coeur pour utiliser Blog2Social!"
826
 
827
+ #: ../includes/MetaBox.php:55 ../includes/MetaBox.php:133
828
  msgid "Network settings"
829
  msgstr "Paramètres réseau:"
830
 
831
+ #: ../includes/MetaBox.php:56
832
  msgid ""
833
  "Your post is still on draft or pending status. Please make sure that your "
834
  "post is published or scheduled to be published on this blog. You can then "
838
  "blog. Ensuite, vous pouvez planifier et personnaliser votre post avec "
839
  "Blog2social."
840
 
841
+ #: ../includes/MetaBox.php:57
842
  msgid ""
843
  "Notice: Please make sure, that your website address is reachable. The Social "
844
  "Networks do not allow postings from local installations."
847
  "joignable. Les réseaux sociaux n'autorisent pas les écritures "
848
  "d'installations locales."
849
 
850
+ #: ../includes/MetaBox.php:58
851
  msgid "You want to auto post your blog post?"
852
  msgstr "Vous voulez auto publier votre blog?"
853
 
854
+ #: ../includes/MetaBox.php:58 ../includes/MetaBox.php:107 ../views/b2s/network.
855
+ #: php:116 ../views/b2s/ship.php:294 ../views/b2s/ship.php:328 ../views/b2s/ship.
856
+ #: php:375 ../views/b2s/html/footer.phtml:38 ../views/b2s/html/footer.phtml:150 ..
857
+ #: /views/b2s/html/footer.phtml:208 ../views/b2s/html/header.phtml:139
858
  msgid "Upgrade to PREMIUM"
859
  msgstr "Mettre à jour vers PREMIUM"
860
 
861
+ #: ../includes/MetaBox.php:59
862
  msgid "Custom Sharing & Scheduling"
863
  msgstr "Partage personnalisé et planification"
864
 
865
+ #: ../includes/MetaBox.php:59 ../includes/MetaBox.php:63
866
  msgid "Info"
867
  msgstr "Info"
868
 
869
+ #: ../includes/MetaBox.php:60
870
  msgid "Customize & Schedule Social Media Posts"
871
  msgstr "Personnaliser et planifier des messages sur les réseaux sociaux"
872
 
873
+ #: ../includes/MetaBox.php:63 ../views/b2s/html/header.phtml:190
874
  msgid "Social Media Auto-Posting"
875
  msgstr "Auto-publication des médias sociaux"
876
 
877
+ #: ../includes/MetaBox.php:66
878
  msgid "enable Auto-Posting"
879
  msgstr "Activer la fonction de comptabilisation automatique"
880
 
881
+ #: ../includes/MetaBox.php:72 ../views/b2s/network.php:51 ../views/b2s/network.
882
  #: php:153 ../views/b2s/post.php:37 ../views/b2s/post.publish.php:40 ..
883
  #: /views/b2s/post.sched.php:48 ../views/b2s/ship.php:153 ../views/b2s/ship.php:
884
+ #: 469 ../views/prg/html/header.phtml:81
885
  msgid "Loading..."
886
  msgstr "Chargement..."
887
 
888
+ #: ../includes/MetaBox.php:80 ../views/b2s/html/footer.phtml:180
889
  msgid "Blog2Social: Social Media Auto-Posting"
890
  msgstr "Blog2Social: Auto-affichage des médias sociaux"
891
 
892
+ #: ../includes/MetaBox.php:84 ../views/b2s/html/footer.phtml:184
893
  msgid ""
894
  "You have 2 general options to define the date and time to share your blog "
895
  "posts on social media with the Auto-Poster:"
897
  "Vous avez 2 options générales pour definir la date et l’heure pour partager "
898
  "vos articles sur les réseaux sociaux avec la publication auto:"
899
 
900
+ #: ../includes/MetaBox.php:85 ../views/b2s/html/footer.phtml:185
901
  msgid "1. Immediately after publishing your blog post"
902
  msgstr "1. 1. Immédiatement après la publication de vos articles"
903
 
904
+ #: ../includes/MetaBox.php:86 ../views/b2s/html/footer.phtml:186
905
  msgid ""
906
  "Published blog posts: If you publish your blog post with click on publish in "
907
  "your WordPress post editor, Blog2Social will automatically share your social "
910
  "si vous publiez vos articles en cliquant sur “publier” dans votre éditeur "
911
  "WordPress, Blog2Social les partagera automatiquement immédiatement."
912
 
913
+ #: ../includes/MetaBox.php:87 ../views/b2s/html/footer.phtml:187
914
  msgid ""
915
  "Scheduled blog posts: If you schedule your blog post with click on schedule "
916
  "in your WordPress post editor, Blog2Social will share your social media post "
920
  "“planifier” dans votre éditeur WordPress, Blog2Social partagera vos articles "
921
  "sur les réseaux sociaux aux moments de leurs publications sur votre site."
922
 
923
+ #: ../includes/MetaBox.php:88 ../views/b2s/html/footer.phtml:188
924
  msgid ""
925
  "2. Schedule your social media posts for a specific date and time If you want "
926
  "to share your post at a particular date and time, different from your "
933
  "et l’heure que vous souhaitez pour partager vos articles sur les réseaux "
934
  "sociaux.\n"
935
 
936
+ #: ../includes/MetaBox.php:92 ../views/b2s/html/footer.phtml:193
937
  msgid "You want to auto-post your blog post?"
938
  msgstr "Vous voulez auto-afficher votre blog?"
939
 
940
+ #: ../includes/MetaBox.php:93 ../includes/Notice.php:29 ../views/b2s/network.php:
941
+ #: 102 ../views/b2s/ship.php:280 ../views/b2s/ship.php:314 ../views/b2s/ship.php:
942
+ #: 361 ../views/b2s/html/footer.phtml:24 ../views/b2s/html/footer.phtml:136 ..
943
  #: /views/b2s/html/footer.phtml:194
944
  msgid "With Blog2Social Premium you can:"
945
  msgstr "Avec Blog2Social Premium, vous pouvez:"
946
 
947
+ #: ../includes/MetaBox.php:96 ../includes/Notice.php:30 ../views/b2s/network.php:
948
+ #: 105 ../views/b2s/ship.php:283 ../views/b2s/ship.php:317 ../views/b2s/ship.php:
949
+ #: 364 ../views/b2s/html/footer.phtml:27 ../views/b2s/html/footer.phtml:139 ..
950
+ #: /views/b2s/html/footer.phtml:197 ../views/b2s/html/header.phtml:191
951
  msgid "Post on pages and groups"
952
  msgstr "Poster sur les pages et les groupes"
953
 
954
+ #: ../includes/MetaBox.php:97 ../includes/Notice.php:31 ../views/b2s/network.php:
955
+ #: 106 ../views/b2s/ship.php:284 ../views/b2s/ship.php:318 ../views/b2s/ship.php:
956
+ #: 365 ../views/b2s/html/footer.phtml:28 ../views/b2s/html/footer.phtml:140 ..
957
  #: /views/b2s/html/footer.phtml:198
958
  msgid "Share on multiple profiles, pages and groups"
959
  msgstr "Partager sur plusieurs profils, pages et groupes"
960
 
961
+ #: ../includes/MetaBox.php:98 ../includes/Notice.php:32 ../views/b2s/network.php:
962
+ #: 107 ../views/b2s/ship.php:285 ../views/b2s/ship.php:319 ../views/b2s/ship.php:
963
+ #: 366 ../views/b2s/html/footer.phtml:29 ../views/b2s/html/footer.phtml:63 ..
964
  #: /views/b2s/html/footer.phtml:141 ../views/b2s/html/footer.phtml:199
965
  msgid "Auto-post and auto-schedule new and updated blog posts"
966
  msgstr ""
967
  "Publication automatique et auto-planification des nouveaux articles et ceux "
968
  "mis à jour"
969
 
970
+ #: ../includes/MetaBox.php:99 ../includes/Notice.php:33 ../views/b2s/network.php:
971
+ #: 108 ../views/b2s/ship.php:286 ../views/b2s/ship.php:320 ../views/b2s/ship.php:
972
+ #: 367 ../views/b2s/html/footer.phtml:30 ../views/b2s/html/footer.phtml:142 ..
973
  #: /views/b2s/html/footer.phtml:200
974
  msgid "Schedule your posts at the best times on each network"
975
  msgstr ""
976
  "Planifiez vos articles aux meilleurs moments pour chaque réseau : une fois, "
977
  "plusieurs fois ou de manière récurrente"
978
 
979
+ #: ../includes/MetaBox.php:100 ../includes/Notice.php:34 ../views/b2s/network.php:
980
+ #: 109 ../views/b2s/ship.php:287 ../views/b2s/ship.php:321 ../views/b2s/ship.php:
981
+ #: 368 ../views/b2s/html/footer.phtml:31 ../views/b2s/html/footer.phtml:143 ..
982
  #: /views/b2s/html/footer.phtml:201
983
  msgid ""
984
  "Best Time Manager: use predefined best time scheduler to auto-schedule your "
988
  "prédéfini pour organiser automatiquement vos publications sur les réseaux "
989
  "sociaux"
990
 
991
+ #: ../includes/MetaBox.php:101 ../includes/Notice.php:35 ../views/b2s/network.php:
992
+ #: 110 ../views/b2s/ship.php:288 ../views/b2s/ship.php:322 ../views/b2s/ship.php:
993
+ #: 369 ../views/b2s/html/footer.phtml:32 ../views/b2s/html/footer.phtml:144 ..
994
  #: /views/b2s/html/footer.phtml:202
995
  msgid "Schedule your post for one time, multiple times or recurrently"
996
  msgstr "Planifiez votre poste pour une fois, plusieurs fois ou récurrent"
997
 
998
+ #: ../includes/MetaBox.php:102 ../includes/Notice.php:36 ../views/b2s/network.php:
999
+ #: 111 ../views/b2s/ship.php:289 ../views/b2s/ship.php:323 ../views/b2s/ship.php:
1000
+ #: 370 ../views/b2s/html/footer.phtml:33 ../views/b2s/html/footer.phtml:145 ..
1001
  #: /views/b2s/html/footer.phtml:203
1002
  msgid "Schedule and re-share old posts"
1003
  msgstr "Planifiez et re-partagez les anciens messages"
1004
 
1005
+ #: ../includes/MetaBox.php:103 ../includes/Notice.php:37 ../views/b2s/network.php:
1006
+ #: 112 ../views/b2s/ship.php:290 ../views/b2s/ship.php:324 ../views/b2s/ship.php:
1007
+ #: 371 ../views/b2s/html/footer.phtml:34 ../views/b2s/html/footer.phtml:65 ..
1008
  #: /views/b2s/html/footer.phtml:146 ../views/b2s/html/footer.phtml:204
1009
  msgid "Select link format or image format for your posts"
1010
  msgstr ""
1011
  "Sélectionnez le format de lien ou la publication d’image pour vos "
1012
  "publications"
1013
 
1014
+ #: ../includes/MetaBox.php:104 ../includes/Notice.php:38 ../views/b2s/network.php:
1015
+ #: 113 ../views/b2s/ship.php:291 ../views/b2s/ship.php:325 ../views/b2s/ship.php:
1016
+ #: 372 ../views/b2s/html/footer.phtml:35 ../views/b2s/html/footer.phtml:66 ..
1017
  #: /views/b2s/html/footer.phtml:147 ../views/b2s/html/footer.phtml:205
1018
  msgid "Select individual images per post"
1019
  msgstr "Sélectionnez les images individuelles par article"
1020
 
1021
+ #: ../includes/MetaBox.php:105 ../includes/Notice.php:39 ../views/b2s/network.php:
1022
+ #: 114 ../views/b2s/ship.php:292 ../views/b2s/ship.php:326 ../views/b2s/ship.php:
1023
+ #: 373 ../views/b2s/html/footer.phtml:36 ../views/b2s/html/footer.phtml:148 ..
1024
  #: /views/b2s/html/footer.phtml:206
1025
  msgid ""
1026
  "Reporting & calendar: keep track of your published and scheduled social "
1029
  "Rapports et calendrier : gardez la trace de vos publications publiées et "
1030
  "programmées"
1031
 
1032
+ #: ../includes/MetaBox.php:109 ../views/b2s/network.php:118 ../views/b2s/ship.php:
1033
+ #: 296 ../views/b2s/ship.php:330 ../views/b2s/ship.php:377 ..
1034
  #: /views/b2s/html/footer.phtml:40 ../views/b2s/html/footer.phtml:71 ..
1035
  #: /views/b2s/html/footer.phtml:89 ../views/b2s/html/footer.phtml:152 ..
1036
  #: /views/b2s/html/footer.phtml:210
1042
  "avec 30 jours gratuits de Blog2Social Premium</a>(pas d'information de "
1043
  "paiement requise)"
1044
 
1045
+ #: ../includes/MetaBox.php:120
1046
  msgid "Blog2Social: Custom Sharing & Scheduling"
1047
  msgstr "Blog2Social: Partage personnalisé et planification"
1048
 
1049
+ #: ../includes/MetaBox.php:123
1050
  msgid ""
1051
  "Customize and schedule your social media posts on the one page preview for "
1052
  "all your selected networks: tailor your posts with individual comments, "
1061
  "partager périodiquement pour Plus de visibilité et d'engagement avec votre "
1062
  "communauté."
1063
 
1064
+ #: ../includes/MetaBox.php:133
1065
  msgid "Select profile:"
1066
  msgstr "Sélectionner le profil:"
1067
 
1068
+ #: ../includes/MetaBox.php:148
1069
  msgid "When do you want to share your post on social media?"
1070
  msgstr "Quand souhaitez-vous partager votre article sur les réseaux sociaux ?"
1071
 
1072
+ #: ../includes/MetaBox.php:151
1073
  msgid "immediately after publishing"
1074
  msgstr "Immédiatement après l'édition"
1075
 
1076
+ #: ../includes/MetaBox.php:152
1077
  msgid "at scheduled times"
1078
  msgstr "À des heures programmées"
1079
 
1080
+ #: ../includes/MetaBox.php:155
1081
  msgid "You want to sched your blog post with Auto-Poster?"
1082
  msgstr "Vous souhaitez planifier votre publication avec Auto-Poster?"
1083
 
1084
+ #: ../includes/MetaBox.php:155 ../views/b2s/html/footer.phtml:69 ..
1085
  #: /views/b2s/html/footer.phtml:87
1086
  msgid "Upgrade to PREMIUM PRO"
1087
  msgstr "passer à Premium PRO"
1088
 
1089
+ #: ../includes/MetaBox.php:161
1090
  msgid "Select date:"
1091
  msgstr "choisir date:"
1092
 
1093
+ #: ../includes/MetaBox.php:167
1094
  msgid "post at"
1095
  msgstr "Poste à"
1096
 
1097
+ #: ../includes/MetaBox.php:168
1098
  msgid "my time settings"
1099
  msgstr "Mes réglages d'heures"
1100
 
1101
+ #: ../includes/MetaBox.php:169
1102
  msgid ""
1103
  "Note: If you ​have​ not ​specified​ your own times, we automatically provide "
1104
  "you with the best times to post​ on the social networks. You can always "
1133
  msgid "Top 5 FAQ"
1134
  msgstr "Top 5 des FAQ"
1135
 
1136
+ #: ../includes/PRG/Post/Filter.php:31
1137
  msgid "All Authors"
1138
  msgstr "Tous les auteurs"
1139
 
1140
+ #: ../includes/PRG/Post/Filter.php:42
1141
  msgid "All Types"
1142
  msgstr "Tous les types"
1143
 
1144
+ #: ../includes/PRG/Post/Item.php:100
1145
  msgid "You have no posts published or scheduled"
1146
  msgstr "Vous n'avez aucun article publié ou planifié"
1147
 
1148
+ #: ../includes/PRG/Post/Item.php:127
1149
  msgid "Publish on PR-Gateway"
1150
  msgstr "Publier sur la passerelle PR"
1151
 
1152
+ #: ../includes/PRG/Post/Item.php:129
1153
  msgid "on Blog"
1154
  msgstr "sur le blog"
1155
 
1393
  msgstr "Créer un nouveau profil"
1394
 
1395
  #: ../views/b2s/network.php:30 ../views/b2s/network.php:31 ../views/prg/post.php:
1396
+ #: 25 ../views/prg/post.php:26 ../views/b2s/html/post.navbar.phtml:10 ..
1397
  #: /views/b2s/html/post.navbar.phtml:11
1398
  msgid "filter"
1399
  msgstr "Filtrer"
1522
  msgid "Network Settings"
1523
  msgstr "Paramètres réseau"
1524
 
1525
+ #: ../views/b2s/settings.php:37 ../views/b2s/ship.php:44 ../views/b2s/ship.php:411
1526
  msgid "My Time Settings"
1527
  msgstr "Mes réglages d'heures"
1528
 
1530
  msgid "Reset predefined best time settings"
1531
  msgstr "Réinitialiser les réglages de la meilleure heure"
1532
 
1533
+ #: ../views/b2s/settings.php:120
1534
  msgid "Select the preferred custom post format for your posts"
1535
  msgstr ""
1536
  "Sélectionnez le format de publication personnalisé préféré pour vos "
1537
  "publications"
1538
 
1539
+ #: ../views/b2s/settings.php:124
1540
  msgid "You can define your preferred custom post format link post or photo post:"
1541
  msgstr ""
1542
  "Vous pouvez définir votre lien de lien de format de poste personnalisé ou "
1543
  "photo personnalisé préféré:"
1544
 
1545
+ #: ../views/b2s/settings.php:133
1546
  msgid ""
1547
  "A photo or image post displays the selected image in the one-page preview of "
1548
  "Blog2Social and your comment above the image. The image links to the image "
1560
  "personnelles. Dans Facebook, vous pouvez modifier le nom de l'album avec une "
1561
  "description de votre choix."
1562
 
1563
+ #: ../views/b2s/settings.php:146
1564
  msgid "Allow shortcodes in my post"
1565
  msgstr "permettre à shortcodes dans mon post"
1566
 
1567
+ #: ../views/b2s/settings.php:149
1568
  msgid ""
1569
  "Shortcodes are used by some wordpress plugins like Elementor, Visual "
1570
  "Composer and Content Builder. When a shortcode is inserted in a WordPress "
1584
  "fonctionnalité, si vous le souhaitez Utilisez des éléments dynamiques dans "
1585
  "vos articles."
1586
 
1587
+ #: ../views/b2s/settings.php:163
1588
  msgid ""
1589
  "Blog2Social applies the scheduled time settings based on the time zone "
1590
  "defined in the general settings of your WordPress. You can select a user-"
1599
  "sociaux. <br> <br> Sélectionnez le fuseau horaire souhaité dans le menu "
1600
  "déroulant."
1601
 
1602
+ #: ../views/b2s/settings.php:174
1603
  msgid "Select the content type you want to auto-post by default"
1604
  msgstr ""
1605
  "Sélectionnez le type de contenu que vous souhaitez publier automatiquement "
1606
  "par défaut"
1607
 
1608
+ #: ../views/b2s/settings.php:177
1609
  msgid ""
1610
  "Please select the content type you want to auto-post by default.<br>You can "
1611
  "activate auto-post by default for posts, pages and any custom post type. As "
1653
  msgid "Profiles | Pages | Groups"
1654
  msgstr "Profils | Pages | Groupes"
1655
 
1656
+ #: ../views/b2s/ship.php:130 ../views/b2s/ship.php:313
1657
  msgid "You want to save network settings in an additional profile?"
1658
  msgstr ""
1659
  "Vous souhaitez enregistrer les paramètres réseau dans un profil "
1704
  msgid "Share"
1705
  msgstr "Partager"
1706
 
1707
+ #: ../views/b2s/ship.php:206
1708
  msgid "Time zone"
1709
  msgstr "Fuseau horaire"
1710
 
1711
+ #: ../views/b2s/ship.php:213
1712
  msgid "Share new post on Social Media"
1713
  msgstr "Partager le nouvel article sur les réseaux sociaux"
1714
 
1715
+ #: ../views/b2s/ship.php:240
1716
  msgid "Connect for"
1717
  msgstr "Connecter sur"
1718
 
1719
+ #: ../views/b2s/ship.php:256
1720
  msgid "Time Scheduling"
1721
  msgstr "Heure de la planification"
1722
 
1723
+ #: ../views/b2s/ship.php:260
1724
  msgid ""
1725
  "You have not yet defined personal time settings. To edit personal time "
1726
  "settings click on the Blog2Social Settings on the left-hand menu and select "
1732
  "du Blog2Social dans le menu de gauche et sélectionnez Best Time Settings "
1733
  "pour modifier les paramètres de temps prédéfinis selon vos préférences."
1734
 
1735
+ #: ../views/b2s/ship.php:273
1736
  msgid "Re-share this Post"
1737
  msgstr "Re-partager cet article"
1738
 
1739
+ #: ../views/b2s/ship.php:276
1740
  msgid ""
1741
  "You can re-share your post for a different sharing purpose, or to share on a "
1742
  "different choice of networks, profiles, pages or groups, or with different "
1761
  "d'aperçu où vous pourrez sélectionner vos réseaux et modifier vos textes, "
1762
  "commentaires ou images en fonction de vos préférences de partage."
1763
 
1764
+ #: ../views/b2s/ship.php:279
1765
  msgid "You want re-share your blog post?"
1766
  msgstr "Vous voulez re-partager votre blog?"
1767
 
1768
+ #: ../views/b2s/ship.php:307
1769
  msgid "Save Network Settings"
1770
  msgstr "Sauver les paramètres de réseaux"
1771
 
1772
+ #: ../views/b2s/ship.php:310
1773
  msgid ""
1774
  "You can save your current network settings as \"Standard\" network settings "
1775
  "for any future sharing activities or as a \"Profile\" to choose from (Premium)."
1800
  "compte de réseau respectif pour sélectionner ou supprimer un compte du "
1801
  "partage courant."
1802
 
1803
+ #: ../views/b2s/ship.php:343
1804
  msgid "Your blog post is not yet published on your Wordpress!"
1805
  msgstr "Votre message de blog n'est pas encore publié sur votre Wordpress!"
1806
 
1807
+ #: ../views/b2s/ship.php:346
1808
  msgid "At least one of your selected networks is set to \"Share Now\""
1809
  msgstr "Au moins un de vos réseaux sélectionnés est réglé sur \"Partager maintenant\""
1810
 
1811
+ #: ../views/b2s/ship.php:350
1812
  msgid "Schedule your post"
1813
  msgstr "Planifiez votre message"
1814
 
1815
+ #: ../views/b2s/ship.php:353
1816
  msgid "Ignore & share"
1817
  msgstr "Ignorer & partager"
1818
 
1819
+ #: ../views/b2s/ship.php:389
1820
  msgid "Select image for"
1821
  msgstr "Sélectionnez l'image pour"
1822
 
1823
+ #: ../views/b2s/ship.php:432
1824
  msgid "Post Format"
1825
  msgstr "Format de publication"
1826
 
2172
  "performances de vos messages de médias sociaux. <br> Vous pouvez désactiver "
2173
  "la b2s.pm Shortener pour montrer votre URL d'origine."
2174
 
2175
+ #: ../views/b2s/html/header.phtml:9
2176
  msgid "Thank you. You'll now receive the blog updates from Blog2Social."
2177
  msgstr ""
2178
  "Je vous remercie. Vous recevrez maintenant les mises à jour du blog de "
2179
  "Blog2Social."
2180
 
2181
+ #: ../views/b2s/html/header.phtml:27
2182
  msgid "This entry could not be removed. It's not yours!"
2183
  msgstr "Cette entrée ne peut pas être enlevé. Ce n'est pas à toi!"
2184
 
2185
+ #: ../views/b2s/html/header.phtml:32
2186
  msgid "This entry was removed successful."
2187
  msgstr "Cette entrée est supprimée avec succès."
2188
 
2189
+ #: ../views/b2s/html/header.phtml:41
2190
  msgid "Post was scheduled successfully on your blog!"
2191
  msgstr "Post a été planifié avec succès sur votre blog!"
2192
 
2193
+ #: ../views/b2s/html/header.phtml:43
2194
  msgid "Post is published successfully on your blog!"
2195
  msgstr "Post est publié avec succès sur votre blog!"
2196
 
2197
+ #: ../views/b2s/html/header.phtml:53 ../views/b2s/html/header.phtml:158
2198
  msgid "Version"
2199
  msgstr "Version"
2200
 
2201
+ #: ../views/b2s/html/header.phtml:53
2202
  msgid "is successfully activated."
2203
  msgstr "a été activé avec succès."
2204
 
2205
+ #: ../views/b2s/html/header.phtml:58
2206
  msgid "Your entered License Key is invalid. Please contact support!"
2207
  msgstr "La clé de licence saisie est invalide. Contactez le support, svp !"
2208
 
2209
+ #: ../views/b2s/html/header.phtml:63
2210
  msgid "Your license key has reached the maximum number of users."
2211
  msgstr "Votre clé de licence a atteint le nombre maximum d'utilisateurs."
2212
 
2213
+ #: ../views/b2s/html/header.phtml:70
2214
  msgid "Your authorization was successful."
2215
  msgstr "Votre autorisation est correcte."
2216
 
2217
+ #: ../views/b2s/html/header.phtml:75
2218
  msgid "Your profile was saved successful."
2219
  msgstr "Votre profil a été sauvegardé avec succès."
2220
 
2221
+ #: ../views/b2s/html/header.phtml:80
2222
  msgid "Your profile could not be saved."
2223
  msgstr "Votre profil n'a pas pu être sauvegardé."
2224
 
2225
+ #: ../views/b2s/html/header.phtml:85
2226
  msgid "Your authorization could not be removed."
2227
  msgstr "Votre autorisation ne peut être supprimée."
2228
 
2229
+ #: ../views/b2s/html/header.phtml:90
2230
  msgid "Your authorization was removed successful."
2231
  msgstr "Votre autorisation a été supprimée avec succès."
2232
 
2233
+ #: ../views/b2s/html/header.phtml:95
2234
  msgid "Thank you! Your feedback has been received."
2235
  msgstr "Merci ! Votre retour d'information a bien été reçu."
2236
 
2237
+ #: ../views/b2s/html/header.phtml:100
2238
  msgid "Your feedback could not be delivered."
2239
  msgstr "Votre retour d'information n'a pu être envoyé."
2240
 
2241
+ #: ../views/b2s/html/header.phtml:107 ../views/b2s/html/header.phtml:117
2242
  msgid "Your settings were successfully saved."
2243
  msgstr "Vos paramètres ont été sauvegardés avec succès."
2244
 
2245
+ #: ../views/b2s/html/header.phtml:112
2246
  msgid "Your settings could not be saved."
2247
  msgstr "Vos paramètres n'ont pu être sauvegardés."
2248
 
2249
+ #: ../views/b2s/html/header.phtml:125 ../views/b2s/html/header.phtml:181
2250
  msgid "Test Blog2Social PREMIUM 30 days for free"
2251
  msgstr "Testez Blog2Social PREMIUM 30 jours gratuitement"
2252
 
2253
+ #: ../views/b2s/html/header.phtml:125 ../views/b2s/html/header.phtml:214
2254
  msgid "Get Started"
2255
  msgstr "Commencez"
2256
 
2257
+ #: ../views/b2s/html/header.phtml:134
2258
  msgid "Your Blog2Social Premium Free Version is activated for "
2259
  msgstr "Votre version Blog2Social Premium gratuite est activée pour "
2260
 
2261
+ #: ../views/b2s/html/header.phtml:137
2262
  msgid " Days"
2263
  msgstr " jours"
2264
 
2265
+ #: ../views/b2s/html/header.phtml:137
2266
  msgid " today"
2267
  msgstr " aujourd'hui"
2268
 
2269
+ #: ../views/b2s/html/header.phtml:147
2270
  msgid "Your Blog2Social FREE-TRIAL Version has expired. Did you like this version?"
2271
  msgstr ""
2272
  "Votre version d'essai gratuit de Blog2Social a expiré. Avez-vous aimé cette "
2273
  "version ?"
2274
 
2275
+ #: ../views/b2s/html/header.phtml:148
2276
  msgid "Yes, I want more"
2277
  msgstr "Oui, j'en veux plus"
2278
 
2279
+ #: ../views/b2s/html/header.phtml:149
2280
  msgid "No, I had enough"
2281
  msgstr "Non, j'en ai eu assez"
2282
 
2283
+ #: ../views/b2s/html/header.phtml:168 ../views/b2s/html/service.phtml:15
2284
  msgid "Plans & Pricing"
2285
  msgstr "Plans & Prix"
2286
 
2287
+ #: ../views/b2s/html/header.phtml:169 ../views/b2s/html/service.phtml:16
2288
  msgid "Support"
2289
  msgstr "Support"
2290
 
2291
+ #: ../views/b2s/html/header.phtml:187
2292
  msgid ""
2293
  "The free trial can not be started. This blog has been already registered for "
2294
  "the free trial."
2296
  "La version gratuite ne peut commencer. Ce blog a déjà été enregistré pour la "
2297
  "version gratuite."
2298
 
2299
+ #: ../views/b2s/html/header.phtml:192
2300
  msgid "Share on multiple accounts per network"
2301
  msgstr "Partage sur plusieurs comptes par réseau"
2302
 
2303
+ #: ../views/b2s/html/header.phtml:193
2304
  msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
2305
  msgstr ""
2306
  "Best Time Scheduler: Planifiez une fois, plusieurs fois ou de façon "
2307
  "récurrente."
2308
 
2309
+ #: ../views/b2s/html/header.phtml:194
2310
  msgid "Reporting with links to all published social media posts"
2311
  msgstr ""
2312
  "Rapports avec des liens vers tous les messages publiés sur les réseaux "
2313
  "sociaux"
2314
 
2315
+ #: ../views/b2s/html/header.phtml:197 ../views/prg/html/form.phtml:141 ..
2316
  #: /views/prg/html/form.phtml:143 ../views/prg/html/form.phtml:218 ..
2317
  #: /views/prg/html/form.phtml:220
2318
  msgid "E-Mail"
2319
  msgstr "E-mail"
2320
 
2321
+ #: ../views/b2s/html/header.phtml:201 ../views/prg/html/form.phtml:91 ..
2322
  #: /views/prg/html/form.phtml:100 ../views/prg/html/form.phtml:168 ..
2323
  #: /views/prg/html/form.phtml:177
2324
  msgid "First Name"
2325
  msgstr "Prénom"
2326
 
2327
+ #: ../views/b2s/html/header.phtml:205 ../views/prg/html/form.phtml:92 ..
2328
  #: /views/prg/html/form.phtml:103 ../views/prg/html/form.phtml:169 ..
2329
  #: /views/prg/html/form.phtml:180
2330
  msgid "Last Name"
2331
  msgstr "Nom"
2332
 
2333
+ #: ../views/b2s/html/header.phtml:210
2334
  msgid "No credit card required"
2335
  msgstr "Pas d'information de carte de crédit nécessaire"
2336
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: auto-post, social media share, auto-publish, scheduling, social media post
4
  Donate link: http://www.blog2social.com
5
  Requires at least: 4.2.2
6
  Tested up to: 4.8.0
7
- Stable tag: 4.0.0
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -279,6 +279,8 @@ We use the official authentification oAUTH methods to third-party applications p
279
  9. Adjust the best times to schedule in the best time scheduler.
280
 
281
  == Changelog ==
 
 
282
  = 4.0.0 =
283
  Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
284
  = 3.7.1 =
@@ -311,6 +313,8 @@ Bug Fix: update method
311
  Re-engineered Post dashboard, new one-page preview features: WYSIWYG editors, simplified network selection, new scheduler features: best-times-scheduler, my-times-scheduler, recurring scheduling, multiple accounts per profile (applies to FREE and PREMIUM)
312
 
313
  == Upgrade Notice ==
 
 
314
  = 4.0.0 =
315
  Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
316
  = 3.7.1 =
4
  Donate link: http://www.blog2social.com
5
  Requires at least: 4.2.2
6
  Tested up to: 4.8.0
7
+ Stable tag: 4.1.0
8
  License: GPLv3
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
279
  9. Adjust the best times to schedule in the best time scheduler.
280
 
281
  == Changelog ==
282
+ = 4.1.0 =
283
+ Usabilitiy and Performance Optimization. Select link format or image format individual per posts
284
  = 4.0.0 =
285
  Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
286
  = 3.7.1 =
313
  Re-engineered Post dashboard, new one-page preview features: WYSIWYG editors, simplified network selection, new scheduler features: best-times-scheduler, my-times-scheduler, recurring scheduling, multiple accounts per profile (applies to FREE and PREMIUM)
314
 
315
  == Upgrade Notice ==
316
+ = 4.1.0 =
317
+ Usabilitiy and Performance Optimization. Select link format or image format individual per posts
318
  = 4.0.0 =
319
  Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
320
  = 3.7.1 =
views/b2s/html/header.phtml CHANGED
@@ -1,33 +1,35 @@
1
  <!--Header-->
2
  <?php $wpUserData = wp_get_current_user(); ?>
 
3
  <div class="col-md-12 del-padding-left">
4
  <div class="col-md-9 del-padding-left">
5
  <!--Info System-->
6
  <div class="panel panel-group b2s-network-auth-info b2s-mail-update-success" style="display:none;">
7
  <div class="panel-body">
8
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Thank you. You\'ll now receive the blog updates from Blog2Social.', 'blog2social') ?>
9
  </div>
10
  </div>
11
  <div class="panel panel-group b2s-heartbeat-fail" style="display: none;">
12
  <div class="panel-body">
13
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social!', 'blog2social') ?>
 
14
  </div>
15
  </div>
16
  <div class="panel panel-group b2s-server-connection-fail" style="display: none;">
17
  <div class="panel-body">
18
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('The connection to the server failed. Try again!', 'blog2social') ?>
19
  </div>
20
  </div>
21
 
22
  <!--Info-Post-->
23
  <div class="panel panel-group b2s-network-auth-info b2s-post-remove-fail" style="display: none;">
24
  <div class="panel-body">
25
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('This entry could not be removed. It\'s not yours!', 'blog2social') ?>
26
  </div>
27
  </div>
28
  <div class="panel panel-group b2s-network-auth-info b2s-post-remove-success" style="display:none;">
29
  <div class="panel-body">
30
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('This entry was removed successful.', 'blog2social') ?>
31
  </div>
32
  </div>
33
  <?php if (isset($_GET['origin']) && $_GET['origin'] == 'save_post' && isset($_GET['postStatus'])) { ?>
@@ -48,71 +50,71 @@
48
  <!--Info-Key-->
49
  <div class="panel panel-group b2s-key-area-success" style="display: none;">
50
  <div class="panel-body">
51
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Version', 'blog2social') ?> <span class="b2s-key-area-key-name"></span> <?php _e('is successfully activated.', 'blog2social') ?>
52
  </div>
53
  </div>
54
  <div class="panel panel-group b2s-key-area-fail" style="display: none;">
55
  <div class="panel-body">
56
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your entered License Key is invalid. Please contact support!', 'blog2social') ?>
57
  </div>
58
  </div>
59
  <div class="panel panel-group b2s-key-area-fail-max-use" style="display: none;">
60
  <div class="panel-body">
61
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your license key has reached the maximum number of users.', 'blog2social') ?>
62
  </div>
63
  </div>
64
 
65
  <!--Info-Network-->
66
  <div class="panel panel-group b2s-network-auth-info b2s-network-auth-success" style="display: none">
67
  <div class="panel-body">
68
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your authorization was successful.', 'blog2social') ?>
69
  </div>
70
  </div>
71
  <div class="panel panel-group b2s-network-auth-info b2s-network-add-mandant-success" style="display: none;">
72
  <div class="panel-body">
73
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your profile was saved successful.', 'blog2social') ?>
74
  </div>
75
  </div>
76
  <div class="panel panel-group b2s-network-auth-info b2s-network-add-mandant-error" style="display: none;">
77
  <div class="panel-body">
78
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your profile could not be saved.', 'blog2social') ?>
79
  </div>
80
  </div>
81
  <div class="panel panel-group b2s-network-auth-info b2s-network-remove-fail" style="display: none;">
82
  <div class="panel-body">
83
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your authorization could not be removed.', 'blog2social') ?>
84
  </div>
85
  </div>
86
  <div class="panel panel-group b2s-network-auth-info b2s-network-remove-success" style="display:none;">
87
  <div class="panel-body">
88
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your authorization was removed successful.', 'blog2social') ?>
89
  </div>
90
  </div>
91
  <div class="panel panel-group b2s-network-auth-info b2s-feedback-success" style="display:none;">
92
  <div class="panel-body">
93
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Thank you! Your feedback has been received.', 'blog2social') ?>
94
  </div>
95
  </div>
96
  <div class="panel panel-group b2s-network-auth-info b2s-feedback-fail" style="display:none;">
97
  <div class="panel-body">
98
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your feedback could not be delivered.', 'blog2social') ?>
99
  </div>
100
  </div>
101
 
102
  <!-- Info-Settings-->
103
  <div class="panel panel-group b2s-network-auth-info b2s-settings-user-success" style="display:none;">
104
  <div class="panel-body">
105
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your settings were successfully saved.', 'blog2social') ?>
106
  </div>
107
  </div>
108
  <div class="panel panel-group b2s-network-auth-info b2s-settings-user-error" style="display:none;">
109
  <div class="panel-body">
110
- <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your settings could not be saved.', 'blog2social') ?>
111
  </div>
112
  </div>
113
  <div class="panel panel-group b2s-network-auth-info b2s-ship-settings-save" style="display: none;">
114
  <div class="panel-body">
115
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your settings were successfully saved.', 'blog2social') ?>
116
  </div>
117
  </div>
118
 
@@ -120,7 +122,7 @@
120
  <?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END")) { ?>
121
  <div class="panel panel-group b2s-trail-premium-info-area">
122
  <div class="panel-body">
123
- <span class="glyphicon glyphicon-info-sign glyphicon-success"></span> <?php _e('Test Blog2Social PREMIUM 30 days for free', 'blog2social') ?> <a data-toggle="modal" data-target="#b2s-trial-modal" href="#"><?php _e('Get Started', 'blog2social') ?></a>
124
  </div>
125
  </div>
126
  <?php } ?>
@@ -129,12 +131,12 @@
129
  <div class="panel panel-group b2s-trail-premium-info-area">
130
  <div class="panel-body">
131
  <span class="glyphicon glyphicon-info-sign glyphicon-warning"></span>
132
- <?php _e('Your Blog2Social Premium Free Version is activated for ', 'blog2social') ?>
133
  <?php
134
  $days = B2S_Util::getTrialRemainingDays(B2S_PLUGIN_TRAIL_END, date_default_timezone_get());
135
- echo $days > 0 ? ($days . __(' Days', 'blog2social')) : __(' today', 'blog2social')
136
  ?>.
137
- <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('affiliate'); ?>"><?php _e('Upgrade to PREMIUM', 'blog2social') ?></a>
138
  </div>
139
  </div>
140
  <?php } ?>
@@ -142,9 +144,9 @@
142
  <?php if (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < strtotime(gmdate('Y-m-d H:i:s'))) { ?>
143
  <div class="panel panel-group b2s-trail-premium-info-area">
144
  <div class="panel-body">
145
- <span class="glyphicon glyphicon-info-sign glyphicon-success"></span> <?php _e('Your Blog2Social FREE-TRIAL Version has expired. Did you like this version?', 'blog2social') ?>
146
- <a target="_blank" class="btn btn-sm btn-link" href="<?php echo B2S_Tools::getSupportLink('affiliate'); ?>"><?php _e('Yes, I want more', 'blog2social') ?></a>
147
- <a href="#" class="btn btn-sm btn-link b2s-show-feedback-modal"><?php _e('No, I had enough', 'blog2social') ?></a>
148
  </div>
149
  </div>
150
  <?php } ?>
@@ -163,8 +165,8 @@
163
  </div>
164
  <div class="col-md-12 del-padding-left b2s-support-area hidden-md hidden-lg">
165
  <div class="col-md-9 del-padding-left">
166
- <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('affiliate'); ?>" class="btn btn-success btn-block"><?php _e('Plans & Pricing', 'blog2social') ?></a>
167
- <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('faq'); ?>" class="btn btn-primary btn-block"> <?php _e('Support', 'blog2social') ?></a>
168
  </div>
169
  </div>
170
  <!--Header-->
@@ -176,40 +178,40 @@
176
  <div class="modal-content">
177
  <div class="modal-header">
178
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2s-trial-modal">&times;</button>
179
- <h4 class="modal-title"><?php _e('Test Blog2Social PREMIUM 30 days for free', 'blog2social') ?></h4>
180
  </div>
181
  <div class="modal-body">
182
  <div class="row">
183
  <div class="col-xs-12">
184
  <div class="alert alert-danger b2s-trail-modal-fail" style="display:none;">
185
- <?php _e('The free trial can not be started. This blog has been already registered for the free trial.', 'blog2social') ?>
186
  </div>
187
  <div class="form-group col-xs-12">
188
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Social Media Auto-Posting', 'blog2social') ?><br>
189
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Post on pages and groups', 'blog2social') ?><br>
190
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Share on multiple accounts per network', 'blog2social') ?><br>
191
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Best Time Scheduler: Schedule once, multiple times or recurringly.', 'blog2social') ?><br>
192
- <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Reporting with links to all published social media posts', 'blog2social') ?><br>
193
  </div>
194
  <div class="form-group col-xs-12">
195
- <label for="trial_email"><?php _e('E-Mail', 'blog2social') ?></label>
196
  <input id="trial_email" class="form-control" type="email" value="<?php echo $wpUserData->user_email; ?>" name="trial_email">
197
  </div>
198
  <div class="form-group col-xs-12 col-md-6">
199
- <label for="trial_vorname"><?php _e('First Name', 'blog2social') ?></label>
200
  <input id="trial_vorname" class="form-control" type="text" value="<?php echo $wpUserData->user_firstname; ?>" name="trial_vorname">
201
  </div>
202
  <div class="form-group col-xs-12 col-md-6">
203
- <label for="trial_nachname"><?php _e('Last Name', 'blog2social') ?></label>
204
  <input id="trial_nachname" class="form-control" type="text" value="<?php echo $wpUserData->user_lastname; ?>" name="trial_nachname">
205
  </div>
206
  <div class="col-xs-12">
207
  <div class="pull-left">
208
- <span class="glyphicon glyphicon-info-sign glyphicon-primary"></span> <?php _e('No credit card required', 'blog2social') ?>
209
  </div>
210
  <div class="pull-right">
211
  <input type="hidden" name="trial_url" id="trial_url" value="<?php echo get_option('home'); ?>" />
212
- <input class="btn btn-success pull-right b2s-trail-btn-start" type="submit" value="<?php _e('Get Started', 'blog2social') ?>">
213
  </div>
214
  </div>
215
  </div>
1
  <!--Header-->
2
  <?php $wpUserData = wp_get_current_user(); ?>
3
+
4
  <div class="col-md-12 del-padding-left">
5
  <div class="col-md-9 del-padding-left">
6
  <!--Info System-->
7
  <div class="panel panel-group b2s-network-auth-info b2s-mail-update-success" style="display:none;">
8
  <div class="panel-body">
9
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Thank you. You\'ll now receive the blog updates from Blog2Social.', 'blog2social'); ?>
10
  </div>
11
  </div>
12
  <div class="panel panel-group b2s-heartbeat-fail" style="display: none;">
13
  <div class="panel-body">
14
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social!', 'blog2social'); ?>
15
+ <a target="_blank" href="<?php echo ((substr(B2S_LANGUAGE, 0, 2) == 'de' || (isset($_GET['lang']) && $_GET['lang'] == 'de')) ? 'https://www.blog2social.com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-blog2social.html' : 'https://www.blog2social.com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social.html'); ?>"><?php _e('Please see FAQ', 'blog2social'); ?></a>
16
  </div>
17
  </div>
18
  <div class="panel panel-group b2s-server-connection-fail" style="display: none;">
19
  <div class="panel-body">
20
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('The connection to the server failed. Try again!', 'blog2social'); ?>
21
  </div>
22
  </div>
23
 
24
  <!--Info-Post-->
25
  <div class="panel panel-group b2s-network-auth-info b2s-post-remove-fail" style="display: none;">
26
  <div class="panel-body">
27
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('This entry could not be removed. It\'s not yours!', 'blog2social'); ?>
28
  </div>
29
  </div>
30
  <div class="panel panel-group b2s-network-auth-info b2s-post-remove-success" style="display:none;">
31
  <div class="panel-body">
32
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('This entry was removed successful.', 'blog2social'); ?>
33
  </div>
34
  </div>
35
  <?php if (isset($_GET['origin']) && $_GET['origin'] == 'save_post' && isset($_GET['postStatus'])) { ?>
50
  <!--Info-Key-->
51
  <div class="panel panel-group b2s-key-area-success" style="display: none;">
52
  <div class="panel-body">
53
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Version', 'blog2social'); ?> <span class="b2s-key-area-key-name"></span> <?php _e('is successfully activated.', 'blog2social'); ?>
54
  </div>
55
  </div>
56
  <div class="panel panel-group b2s-key-area-fail" style="display: none;">
57
  <div class="panel-body">
58
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your entered License Key is invalid. Please contact support!', 'blog2social'); ?>
59
  </div>
60
  </div>
61
  <div class="panel panel-group b2s-key-area-fail-max-use" style="display: none;">
62
  <div class="panel-body">
63
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your license key has reached the maximum number of users.', 'blog2social'); ?>
64
  </div>
65
  </div>
66
 
67
  <!--Info-Network-->
68
  <div class="panel panel-group b2s-network-auth-info b2s-network-auth-success" style="display: none">
69
  <div class="panel-body">
70
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your authorization was successful.', 'blog2social'); ?>
71
  </div>
72
  </div>
73
  <div class="panel panel-group b2s-network-auth-info b2s-network-add-mandant-success" style="display: none;">
74
  <div class="panel-body">
75
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your profile was saved successful.', 'blog2social'); ?>
76
  </div>
77
  </div>
78
  <div class="panel panel-group b2s-network-auth-info b2s-network-add-mandant-error" style="display: none;">
79
  <div class="panel-body">
80
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your profile could not be saved.', 'blog2social'); ?>
81
  </div>
82
  </div>
83
  <div class="panel panel-group b2s-network-auth-info b2s-network-remove-fail" style="display: none;">
84
  <div class="panel-body">
85
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your authorization could not be removed.', 'blog2social'); ?>
86
  </div>
87
  </div>
88
  <div class="panel panel-group b2s-network-auth-info b2s-network-remove-success" style="display:none;">
89
  <div class="panel-body">
90
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your authorization was removed successful.', 'blog2social'); ?>
91
  </div>
92
  </div>
93
  <div class="panel panel-group b2s-network-auth-info b2s-feedback-success" style="display:none;">
94
  <div class="panel-body">
95
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Thank you! Your feedback has been received.', 'blog2social'); ?>
96
  </div>
97
  </div>
98
  <div class="panel panel-group b2s-network-auth-info b2s-feedback-fail" style="display:none;">
99
  <div class="panel-body">
100
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your feedback could not be delivered.', 'blog2social'); ?>
101
  </div>
102
  </div>
103
 
104
  <!-- Info-Settings-->
105
  <div class="panel panel-group b2s-network-auth-info b2s-settings-user-success" style="display:none;">
106
  <div class="panel-body">
107
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your settings were successfully saved.', 'blog2social'); ?>
108
  </div>
109
  </div>
110
  <div class="panel panel-group b2s-network-auth-info b2s-settings-user-error" style="display:none;">
111
  <div class="panel-body">
112
+ <span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('Your settings could not be saved.', 'blog2social'); ?>
113
  </div>
114
  </div>
115
  <div class="panel panel-group b2s-network-auth-info b2s-ship-settings-save" style="display: none;">
116
  <div class="panel-body">
117
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Your settings were successfully saved.', 'blog2social'); ?>
118
  </div>
119
  </div>
120
 
122
  <?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END")) { ?>
123
  <div class="panel panel-group b2s-trail-premium-info-area">
124
  <div class="panel-body">
125
+ <span class="glyphicon glyphicon-info-sign glyphicon-success"></span> <?php _e('Test Blog2Social PREMIUM 30 days for free', 'blog2social'); ?> <a data-toggle="modal" data-target="#b2s-trial-modal" href="#"><?php _e('Get Started', 'blog2social'); ?></a>
126
  </div>
127
  </div>
128
  <?php } ?>
131
  <div class="panel panel-group b2s-trail-premium-info-area">
132
  <div class="panel-body">
133
  <span class="glyphicon glyphicon-info-sign glyphicon-warning"></span>
134
+ <?php _e('Your Blog2Social Premium Free Version is activated for ', 'blog2social'); ?>
135
  <?php
136
  $days = B2S_Util::getTrialRemainingDays(B2S_PLUGIN_TRAIL_END, date_default_timezone_get());
137
+ echo $days > 0 ? ($days . __(' Days', 'blog2social')) : __(' today', 'blog2social');
138
  ?>.
139
+ <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('affiliate'); ?>"><?php _e('Upgrade to PREMIUM', 'blog2social'); ?></a>
140
  </div>
141
  </div>
142
  <?php } ?>
144
  <?php if (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < strtotime(gmdate('Y-m-d H:i:s'))) { ?>
145
  <div class="panel panel-group b2s-trail-premium-info-area">
146
  <div class="panel-body">
147
+ <span class="glyphicon glyphicon-info-sign glyphicon-success"></span> <?php _e('Your Blog2Social FREE-TRIAL Version has expired. Did you like this version?', 'blog2social'); ?>
148
+ <a target="_blank" class="btn btn-sm btn-link" href="<?php echo B2S_Tools::getSupportLink('affiliate'); ?>"><?php _e('Yes, I want more', 'blog2social'); ?></a>
149
+ <a href="#" class="btn btn-sm btn-link b2s-show-feedback-modal"><?php _e('No, I had enough', 'blog2social'); ?></a>
150
  </div>
151
  </div>
152
  <?php } ?>
165
  </div>
166
  <div class="col-md-12 del-padding-left b2s-support-area hidden-md hidden-lg">
167
  <div class="col-md-9 del-padding-left">
168
+ <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('affiliate'); ?>" class="btn btn-success btn-block"><?php _e('Plans & Pricing', 'blog2social'); ?></a>
169
+ <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('faq'); ?>" class="btn btn-primary btn-block"> <?php _e('Support', 'blog2social'); ?></a>
170
  </div>
171
  </div>
172
  <!--Header-->
178
  <div class="modal-content">
179
  <div class="modal-header">
180
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2s-trial-modal">&times;</button>
181
+ <h4 class="modal-title"><?php _e('Test Blog2Social PREMIUM 30 days for free', 'blog2social'); ?></h4>
182
  </div>
183
  <div class="modal-body">
184
  <div class="row">
185
  <div class="col-xs-12">
186
  <div class="alert alert-danger b2s-trail-modal-fail" style="display:none;">
187
+ <?php _e('The free trial can not be started. This blog has been already registered for the free trial.', 'blog2social'); ?>
188
  </div>
189
  <div class="form-group col-xs-12">
190
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Social Media Auto-Posting', 'blog2social'); ?><br>
191
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Post on pages and groups', 'blog2social'); ?><br>
192
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Share on multiple accounts per network', 'blog2social'); ?><br>
193
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Best Time Scheduler: Schedule once, multiple times or recurringly.', 'blog2social'); ?><br>
194
+ <span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php _e('Reporting with links to all published social media posts', 'blog2social'); ?><br>
195
  </div>
196
  <div class="form-group col-xs-12">
197
+ <label for="trial_email"><?php _e('E-Mail', 'blog2social'); ?></label>
198
  <input id="trial_email" class="form-control" type="email" value="<?php echo $wpUserData->user_email; ?>" name="trial_email">
199
  </div>
200
  <div class="form-group col-xs-12 col-md-6">
201
+ <label for="trial_vorname"><?php _e('First Name', 'blog2social'); ?></label>
202
  <input id="trial_vorname" class="form-control" type="text" value="<?php echo $wpUserData->user_firstname; ?>" name="trial_vorname">
203
  </div>
204
  <div class="form-group col-xs-12 col-md-6">
205
+ <label for="trial_nachname"><?php _e('Last Name', 'blog2social'); ?></label>
206
  <input id="trial_nachname" class="form-control" type="text" value="<?php echo $wpUserData->user_lastname; ?>" name="trial_nachname">
207
  </div>
208
  <div class="col-xs-12">
209
  <div class="pull-left">
210
+ <span class="glyphicon glyphicon-info-sign glyphicon-primary"></span> <?php _e('No credit card required', 'blog2social'); ?>
211
  </div>
212
  <div class="pull-right">
213
  <input type="hidden" name="trial_url" id="trial_url" value="<?php echo get_option('home'); ?>" />
214
+ <input class="btn btn-success pull-right b2s-trail-btn-start" type="submit" value="<?php _e('Get Started', 'blog2social'); ?>">
215
  </div>
216
  </div>
217
  </div>
views/b2s/settings.php CHANGED
@@ -49,11 +49,54 @@ $settingsItem = new B2S_Settings_Item();
49
  <div class="clearfix"></div>
50
  <?php echo $settingsItem->getSchedSettingsHtml(); ?>
51
  </div>
52
- <div class="tab-pane" id="b2s-network">
53
- <?php echo $settingsItem->getNetworkSettingsHtml('general'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  </div>
55
  </div>
56
  </div>
 
57
  <?php
58
  $noLegend = 1;
59
  require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.phtml');
@@ -62,8 +105,8 @@ $settingsItem = new B2S_Settings_Item();
62
  </div>
63
  </div>
64
  </div>
65
- <?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/service.phtml'); ?>
66
- <?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/sidebar.phtml'); ?>
67
  </div>
68
  </div>
69
  <input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
@@ -82,12 +125,12 @@ $settingsItem = new B2S_Settings_Item();
82
  <div class="col-md-6">
83
  <br>
84
  <b>1) <?php _e('Link Post', 'blog2social') ?></b><br>
85
- <?php _e('The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. Link posts display the post image, you selected in your WordPress. In case, you have not selected a post image, some networks display the first image detected on your page. The image links to your blog post.', 'blog2social'); ?>
86
  </div>
87
  <div class="col-md-6">
88
  <br>
89
  <b>2) <?php _e('Photo Post', 'blog2social') ?></b><br>
90
- <?php _e('A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook you can edit the albums name with a description of your choice.', 'blog2social'); ?>
91
  </div>
92
  </div>
93
  </div>
@@ -103,7 +146,7 @@ $settingsItem = new B2S_Settings_Item();
103
  <h4 class="modal-title"><?php _e('Allow shortcodes in my post', 'blog2social') ?></h4>
104
  </div>
105
  <div class="modal-body">
106
- <?php _e('Shortcodes are used by some wordpress plugins like Elementor, Visual Composer and Content Builder. When a shortcode is inserted in a WordPress post or page, it is replaced with some other content when you publish the article on your blog. In other words, a shortcode instructs WordPress to find a special command that is placed in square brackets ([]) and replace it with the appropriate dynamic content by a plugin you use.<br><br>Activate this feature, if you should use dynamic elements in your articles.', 'blog2social') ?>
107
  </div>
108
  </div>
109
  </div>
@@ -117,7 +160,7 @@ $settingsItem = new B2S_Settings_Item();
117
  <h4 class="modal-title"><?php _e('Personal Time Zone', 'blog2social') ?></h4>
118
  </div>
119
  <div class="modal-body">
120
- <?php _e('Blog2Social applies the scheduled time settings based on the time zone defined in the general settings of your WordPress. You can select a user-specific time zone that deviates from the Wordpress system time zone for your social media scheduling.<br><br>Select the desired time zone from the drop-down menu.', 'blog2social') ?>
121
  </div>
122
  </div>
123
  </div>
@@ -131,7 +174,7 @@ $settingsItem = new B2S_Settings_Item();
131
  <h4 class="modal-title"><?php _e('Select the content type you want to auto-post by default', 'blog2social') ?></h4>
132
  </div>
133
  <div class="modal-body">
134
- <?php _e('Please select the content type you want to auto-post by default.<br>You can activate auto-post by default for posts, pages and any custom post type. As well, you can differentiate between new and updated pieces of content.<br>Once activated, Blog2Social will auto-post any respective piece of content whenever you publish or update it. You can activate or deactivate auto-posting for a single piece of content in the WordPress post editor. ', 'blog2social') ?>
135
  </div>
136
  </div>
137
  </div>
49
  <div class="clearfix"></div>
50
  <?php echo $settingsItem->getSchedSettingsHtml(); ?>
51
  </div>
52
+ <div class="tab-pane" id="b2s-network">
53
+ <div class="col-md-12">
54
+ <h4> <?php _e('Post format', 'blog2social'); ?>
55
+ <a href="#" data-toggle="modal" data-target="#b2sInfoFormatModal" class="btn btn-link btn-lg del-padding-left"><span class="glyphicon glyphicon-info-sign glyphicon-success"></span></a>
56
+ </h4>
57
+ <ul class="nav nav-pills">
58
+ <li class="active">
59
+ <a href="#b2s-network-1" class="b2s-network-1" data-toggle="tab"><?php _e('Facebook', 'blog2social') ?></a>
60
+ </li>
61
+ <li>
62
+ <a href="#b2s-network-2" class="b2s-network-2" data-toggle="tab"><?php _e('Twitter', 'blog2social') ?></a>
63
+ </li>
64
+ </ul>
65
+ <hr>
66
+ <div class="tab-content clearfix">
67
+
68
+ <div class="tab-pane active" id="b2s-network-1">
69
+ <form class="b2sSaveUserSettingsPostFormatFb" method="post" novalidate="novalidate">
70
+ <?php
71
+ echo $settingsItem->getNetworkSettingsPostFormatHtml(1);
72
+ if (B2S_PLUGIN_USER_VERSION >= 1) {
73
+ ?>
74
+ <button class="btn btn-success pull-right" type="submit"><?php _e('save', 'blog2social') ?></button>
75
+ <?php } ?>
76
+ <input type="hidden" name="action" value="b2s_user_network_settings">
77
+ <input type="hidden" name="type" value="post_format">
78
+ <input type="hidden" name="network_id" value="1">
79
+ </form>
80
+ </div>
81
+ <div class="tab-pane" id="b2s-network-2">
82
+ <form class="b2sSaveUserSettingsPostFormatTw" method="post" novalidate="novalidate">
83
+ <?php
84
+ echo $settingsItem->getNetworkSettingsPostFormatHtml(2);
85
+ if (B2S_PLUGIN_USER_VERSION >= 1) {
86
+ ?>
87
+ <button class="btn btn-success pull-right" type="submit"><?php _e('save', 'blog2social') ?></button>
88
+ <?php } ?>
89
+ <input type="hidden" name="action" value="b2s_user_network_settings">
90
+ <input type="hidden" name="type" value="post_format">
91
+ <input type="hidden" name="network_id" value="2">
92
+ </form>
93
+ </div>
94
+ </div>
95
+ </div>
96
  </div>
97
  </div>
98
  </div>
99
+ <input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
100
  <?php
101
  $noLegend = 1;
102
  require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.phtml');
105
  </div>
106
  </div>
107
  </div>
108
+ <?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/service.phtml'); ?>
109
+ <?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/sidebar.phtml'); ?>
110
  </div>
111
  </div>
112
  <input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
125
  <div class="col-md-6">
126
  <br>
127
  <b>1) <?php _e('Link Post', 'blog2social') ?></b><br>
128
+ <?php _e('The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. Link posts display the post image, you selected in your WordPress. In case, you have not selected a post image, some networks display the first image detected on your page. The image links to your blog post.', 'blog2social'); ?>
129
  </div>
130
  <div class="col-md-6">
131
  <br>
132
  <b>2) <?php _e('Photo Post', 'blog2social') ?></b><br>
133
+ <?php _e('A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook you can edit the albums name with a description of your choice.', 'blog2social'); ?>
134
  </div>
135
  </div>
136
  </div>
146
  <h4 class="modal-title"><?php _e('Allow shortcodes in my post', 'blog2social') ?></h4>
147
  </div>
148
  <div class="modal-body">
149
+ <?php _e('Shortcodes are used by some wordpress plugins like Elementor, Visual Composer and Content Builder. When a shortcode is inserted in a WordPress post or page, it is replaced with some other content when you publish the article on your blog. In other words, a shortcode instructs WordPress to find a special command that is placed in square brackets ([]) and replace it with the appropriate dynamic content by a plugin you use.<br><br>Activate this feature, if you should use dynamic elements in your articles.', 'blog2social') ?>
150
  </div>
151
  </div>
152
  </div>
160
  <h4 class="modal-title"><?php _e('Personal Time Zone', 'blog2social') ?></h4>
161
  </div>
162
  <div class="modal-body">
163
+ <?php _e('Blog2Social applies the scheduled time settings based on the time zone defined in the general settings of your WordPress. You can select a user-specific time zone that deviates from the Wordpress system time zone for your social media scheduling.<br><br>Select the desired time zone from the drop-down menu.', 'blog2social') ?>
164
  </div>
165
  </div>
166
  </div>
174
  <h4 class="modal-title"><?php _e('Select the content type you want to auto-post by default', 'blog2social') ?></h4>
175
  </div>
176
  <div class="modal-body">
177
+ <?php _e('Please select the content type you want to auto-post by default.<br>You can activate auto-post by default for posts, pages and any custom post type. As well, you can differentiate between new and updated pieces of content.<br>Once activated, Blog2Social will auto-post any respective piece of content whenever you publish or update it. You can activate or deactivate auto-posting for a single piece of content in the WordPress post editor. ', 'blog2social') ?>
178
  </div>
179
  </div>
180
  </div>
views/b2s/ship.php CHANGED
@@ -199,6 +199,7 @@ $userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Ut
199
  </div>
200
  </div>
201
  <input type="hidden" id="publish_date" name="publish_date" value="">
 
202
  <input type="hidden" id="action" name="action" value="b2s_save_ship_data">
203
  <input type='hidden' id='post_id' name="post_id" value='<?php echo (int) $_GET['postId']; ?>'>
204
  <input type='hidden' id='user_timezone' name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
@@ -428,12 +429,29 @@ $userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Ut
428
  <div class="modal-content">
429
  <div class="modal-header">
430
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2s-post-ship-item-post-format-modal">&times;</button>
431
- <h4 class="modal-title"><span id="b2s-post-ship-item-post-format-network-title"></span> <?php _e('Post Format', 'blog2social') ?></h4>
 
 
 
 
432
  </div>
433
  <div class="modal-body">
434
  <div class="row">
435
  <div class="col-xs-12">
436
- <?php echo $settingsItem->getNetworkSettingsHtml('ship'); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
437
  </div>
438
  </div>
439
  </div>
199
  </div>
200
  </div>
201
  <input type="hidden" id="publish_date" name="publish_date" value="">
202
+ <input type="hidden" id="user_version" name="user_version" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>">
203
  <input type="hidden" id="action" name="action" value="b2s_save_ship_data">
204
  <input type='hidden' id='post_id' name="post_id" value='<?php echo (int) $_GET['postId']; ?>'>
205
  <input type='hidden' id='user_timezone' name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
429
  <div class="modal-content">
430
  <div class="modal-header">
431
  <button type="button" class="b2s-modal-close close" data-modal-name="#b2s-post-ship-item-post-format-modal">&times;</button>
432
+ <h4 class="modal-title"><?php _e('Choose your', 'blog2social') ?> <span id="b2s-post-ship-item-post-format-network-title"></span> <?php _e('Post Format', 'blog2social') ?>
433
+ <?php if(B2S_PLUGIN_USER_VERSION >= 2){ ?>
434
+ <?php _e('for:', 'blog2social') ?> <span id="b2s-post-ship-item-post-format-network-display-name"></span>
435
+ <?php } ?>
436
+ </h4>
437
  </div>
438
  <div class="modal-body">
439
  <div class="row">
440
  <div class="col-xs-12">
441
+ <?php echo $settingsItem->getNetworkSettingsHtml(); ?>
442
+ </div>
443
+ </div>
444
+ <div class="row">
445
+ <div class="col-xs-12">
446
+ <div class="text-center">
447
+ <br>
448
+ <div class="b2s-post-format-settings-info" data-network-id="1" style="display:none;">
449
+ <b><?php _e('Define the default settings for the custom post format for all of your Facebook accounts on the Blog2Social settings section.', 'blog2social'); ?></b>
450
+ </div>
451
+ <div class="b2s-post-format-settings-info" data-network-id="2" style="display:none;">
452
+ <b><?php _e('Define the default settings for the custom post format for all of your Twitter accounts on the Blog2Social settings section.', 'blog2social'); ?></b>
453
+ </div>
454
+ </div>
455
  </div>
456
  </div>
457
  </div>
views/prg/post.php CHANGED
@@ -6,6 +6,7 @@ require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
6
  /* Sort */
7
  $currentPage = (int) isset($_GET['b2sPage']) ? $_GET['b2sPage'] : 1;
8
  $prgSortPostType = isset($_GET['prgSortPostType']) ? trim($_GET['prgSortPostType']) : "";
 
9
  $prgSortPostTitle = isset($_GET['prgSortPostTitle']) ? trim($_GET['prgSortPostTitle']) : "";
10
  $prgSortPostAuthor = isset($_GET['prgSortPostAuthor']) ? trim($_GET['prgSortPostAuthor']) : "";
11
  $prgUserLang = strtolower(substr(get_locale(), 0, 2));
@@ -28,7 +29,7 @@ $prgUserLang = strtolower(substr(get_locale(), 0, 2));
28
  <form class="form-inline pull-left" action="#" method="GET">
29
  <input id="page" type="hidden" value="prg-post" name="page">
30
  <?php
31
- $postFilter = new PRG_Post_Filter('all', $prgSortPostTitle, $prgSortPostAuthor, $prgSortPostType);
32
  echo $postFilter->getItemHtml();
33
  ?>
34
  </form>
@@ -42,7 +43,7 @@ $prgUserLang = strtolower(substr(get_locale(), 0, 2));
42
  <div class="col-md-12">
43
  <ul class="list-group">
44
  <?php
45
- $postItem = new PRG_Post_Item('all', $prgSortPostTitle, $prgSortPostAuthor, $prgSortPostType, '', '', $currentPage,$prgUserLang);
46
  echo $postItem->getItemHtml();
47
  ?>
48
  </ul>
6
  /* Sort */
7
  $currentPage = (int) isset($_GET['b2sPage']) ? $_GET['b2sPage'] : 1;
8
  $prgSortPostType = isset($_GET['prgSortPostType']) ? trim($_GET['prgSortPostType']) : "";
9
+ $prgSortPostStatus = isset($_GET['prgSortPostStatus']) ? trim($_GET['prgSortPostStatus']) : "";
10
  $prgSortPostTitle = isset($_GET['prgSortPostTitle']) ? trim($_GET['prgSortPostTitle']) : "";
11
  $prgSortPostAuthor = isset($_GET['prgSortPostAuthor']) ? trim($_GET['prgSortPostAuthor']) : "";
12
  $prgUserLang = strtolower(substr(get_locale(), 0, 2));
29
  <form class="form-inline pull-left" action="#" method="GET">
30
  <input id="page" type="hidden" value="prg-post" name="page">
31
  <?php
32
+ $postFilter = new PRG_Post_Filter('all', $prgSortPostTitle, $prgSortPostAuthor, $prgSortPostType,$prgSortPostStatus);
33
  echo $postFilter->getItemHtml();
34
  ?>
35
  </form>
43
  <div class="col-md-12">
44
  <ul class="list-group">
45
  <?php
46
+ $postItem = new PRG_Post_Item('all', $prgSortPostTitle, $prgSortPostAuthor, $prgSortPostType,$prgSortPostStatus, '', '', $currentPage,$prgUserLang);
47
  echo $postItem->getItemHtml();
48
  ?>
49
  </ul>