Version Description
Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.6.0 |
Comparing to | |
See all releases |
Code changes from version 6.5.8 to 6.6.0
- assets/css/b2s/calendar.css +8 -0
- assets/css/b2s/curation.css +26 -3
- assets/css/b2s/post.approve.css +8 -0
- assets/css/b2s/post.css +8 -0
- assets/css/b2s/post.draft.css +8 -0
- assets/css/b2s/post.notice.css +8 -0
- assets/css/b2s/post.publish.css +8 -0
- assets/css/b2s/post.sched.css +16 -0
- assets/css/b2s/settings.css +1 -1
- assets/css/general.css +7 -1
- assets/js/b2s/autopost.js +3 -0
- assets/js/b2s/calendar.js +252 -0
- assets/js/b2s/curation.js +131 -5
- assets/js/b2s/network.js +8 -1
- assets/js/b2s/post.js +253 -0
- blog2social.php +2 -2
- includes/Ajax/Post.php +14 -3
- includes/B2S/AutoPost.php +21 -15
- includes/B2S/AutoPost/Item.php +3 -3
- includes/B2S/Network/Item.php +21 -10
- includes/B2S/Post/Item.php +23 -23
- includes/B2S/Post/Tools.php +22 -0
- includes/B2S/PostBox.php +9 -9
- includes/B2S/QuickPost.php +4 -1
- includes/B2S/RePost/Save.php +19 -11
- includes/B2S/Settings/Item.php +3 -3
- includes/B2S/Ship/Item.php +34 -29
- includes/Loader.php +26 -25
- includes/Notice.php +1 -1
- includes/PRG/Post/Item.php +2 -2
- includes/Tools.php +33 -0
- includes/Util.php +27 -2
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +907 -554
- languages/blog2social.pot +757 -496
- readme.txt +14 -7
- views/b2s/autopost.php +17 -0
- views/b2s/curation.php +74 -22
- views/b2s/html/footer.php +4 -4
- views/b2s/html/header.php +2 -2
- views/b2s/html/post.navbar.php +3 -1
- views/b2s/html/sidebar.php +2 -2
- views/b2s/html/sidebar.ship.php +1 -1
- views/b2s/network.php +3 -3
- views/b2s/partials/post-edit-modal.php +9 -0
- views/b2s/post.notice.php +3 -0
- views/b2s/post.sched.php +2 -2
- views/b2s/premium.php +4 -2
- views/b2s/repost.php +1 -1
- views/b2s/settings.php +75 -11
- views/b2s/ship.php +1 -1
- views/b2s/support.php +13 -0
assets/css/b2s/calendar.css
CHANGED
@@ -371,4 +371,12 @@ body .fc-day-grid-event .fc-content{
|
|
371 |
|
372 |
.b2sFavoriteStar {
|
373 |
display: none !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
}
|
371 |
|
372 |
.b2sFavoriteStar {
|
373 |
display: none !important;
|
374 |
+
}
|
375 |
+
|
376 |
+
.b2s-image-add-this-network {
|
377 |
+
margin-right: 10px;
|
378 |
+
}
|
379 |
+
|
380 |
+
.b2s-margin-top-20 {
|
381 |
+
margin-top: 20px;
|
382 |
}
|
assets/css/b2s/curation.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
.b2s-curation-input-area-info-header-text{
|
2 |
margin: 15px 0 10px !important;
|
3 |
font-style: normal;
|
4 |
font-weight: normal;
|
@@ -6,6 +6,10 @@
|
|
6 |
color: #5d5d5d;
|
7 |
}
|
8 |
|
|
|
|
|
|
|
|
|
9 |
.b2s-color-text-red{
|
10 |
color: #f14242 !important;
|
11 |
}
|
@@ -21,7 +25,7 @@
|
|
21 |
margin: 25px 0 0;
|
22 |
}
|
23 |
|
24 |
-
#b2s-curation-input-url-help, .b2s-curation-result-area, .b2s-curation-image-area{
|
25 |
display: none;
|
26 |
}
|
27 |
|
@@ -108,7 +112,14 @@
|
|
108 |
border-bottom-right-radius: 0px !important;
|
109 |
}
|
110 |
|
111 |
-
.b2s-curation-format-image {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
border-top-left-radius: 0px !important;
|
113 |
border-bottom-left-radius: 0px !important;
|
114 |
}
|
@@ -226,4 +237,16 @@
|
|
226 |
|
227 |
.b2s-bold {
|
228 |
font-weight: 600;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
229 |
}
|
1 |
+
.b2s-curation-input-area-info-header-text, .b2s-curation-input-area-info-header-text-video{
|
2 |
margin: 15px 0 10px !important;
|
3 |
font-style: normal;
|
4 |
font-weight: normal;
|
6 |
color: #5d5d5d;
|
7 |
}
|
8 |
|
9 |
+
.b2s-curation-input-area-info-header-text-video {
|
10 |
+
display: none;
|
11 |
+
}
|
12 |
+
|
13 |
.b2s-color-text-red{
|
14 |
color: #f14242 !important;
|
15 |
}
|
25 |
margin: 25px 0 0;
|
26 |
}
|
27 |
|
28 |
+
#b2s-curation-input-url-help, .b2s-curation-result-area, .b2s-curation-image-area, .b2s-curation-text-area{
|
29 |
display: none;
|
30 |
}
|
31 |
|
112 |
border-bottom-right-radius: 0px !important;
|
113 |
}
|
114 |
|
115 |
+
.b2s-curation-format-image, .b2s-curation-format-video {
|
116 |
+
border-top-left-radius: 0px !important;
|
117 |
+
border-bottom-left-radius: 0px !important;
|
118 |
+
border-top-right-radius: 0px !important;
|
119 |
+
border-bottom-right-radius: 0px !important;
|
120 |
+
}
|
121 |
+
|
122 |
+
.b2s-curation-format-text {
|
123 |
border-top-left-radius: 0px !important;
|
124 |
border-bottom-left-radius: 0px !important;
|
125 |
}
|
237 |
|
238 |
.b2s-bold {
|
239 |
font-weight: 600;
|
240 |
+
}
|
241 |
+
|
242 |
+
#b2s-header-text {
|
243 |
+
display: none;
|
244 |
+
}
|
245 |
+
|
246 |
+
.b2s-notice-counter {
|
247 |
+
background-color: lightblue;
|
248 |
+
padding: 2px;
|
249 |
+
border-radius: 50%;
|
250 |
+
width: 22px;
|
251 |
+
display: inline-block;
|
252 |
}
|
assets/css/b2s/post.approve.css
CHANGED
@@ -313,3 +313,11 @@ textarea.form-control {
|
|
313 |
.b2sFavoriteStarLoading {
|
314 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
315 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
313 |
.b2sFavoriteStarLoading {
|
314 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
315 |
}
|
316 |
+
|
317 |
+
.b2s-notice-counter {
|
318 |
+
background-color: lightblue;
|
319 |
+
padding: 2px;
|
320 |
+
border-radius: 50%;
|
321 |
+
width: 22px;
|
322 |
+
display: inline-block;
|
323 |
+
}
|
assets/css/b2s/post.css
CHANGED
@@ -48,4 +48,12 @@
|
|
48 |
|
49 |
.b2sFavoriteStarLoading {
|
50 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
}
|
48 |
|
49 |
.b2sFavoriteStarLoading {
|
50 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
51 |
+
}
|
52 |
+
|
53 |
+
.b2s-notice-counter {
|
54 |
+
background-color: lightblue;
|
55 |
+
padding: 2px;
|
56 |
+
border-radius: 50%;
|
57 |
+
width: 22px;
|
58 |
+
display: inline-block;
|
59 |
}
|
assets/css/b2s/post.draft.css
CHANGED
@@ -70,4 +70,12 @@
|
|
70 |
|
71 |
.b2sFavoriteStarLoading {
|
72 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
}
|
70 |
|
71 |
.b2sFavoriteStarLoading {
|
72 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
73 |
+
}
|
74 |
+
|
75 |
+
.b2s-notice-counter {
|
76 |
+
background-color: lightblue;
|
77 |
+
padding: 2px;
|
78 |
+
border-radius: 50%;
|
79 |
+
width: 22px;
|
80 |
+
display: inline-block;
|
81 |
}
|
assets/css/b2s/post.notice.css
CHANGED
@@ -74,4 +74,12 @@
|
|
74 |
|
75 |
.b2sFavoriteStarLoading {
|
76 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
}
|
74 |
|
75 |
.b2sFavoriteStarLoading {
|
76 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
77 |
+
}
|
78 |
+
|
79 |
+
.b2s-notice-counter {
|
80 |
+
background-color: lightblue;
|
81 |
+
padding: 2px;
|
82 |
+
border-radius: 50%;
|
83 |
+
width: 22px;
|
84 |
+
display: inline-block;
|
85 |
}
|
assets/css/b2s/post.publish.css
CHANGED
@@ -74,4 +74,12 @@
|
|
74 |
|
75 |
.b2sFavoriteStarLoading {
|
76 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
}
|
74 |
|
75 |
.b2sFavoriteStarLoading {
|
76 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
77 |
+
}
|
78 |
+
|
79 |
+
.b2s-notice-counter {
|
80 |
+
background-color: lightblue;
|
81 |
+
padding: 2px;
|
82 |
+
border-radius: 50%;
|
83 |
+
width: 22px;
|
84 |
+
display: inline-block;
|
85 |
}
|
assets/css/b2s/post.sched.css
CHANGED
@@ -366,4 +366,20 @@ textarea.form-control {
|
|
366 |
|
367 |
.b2sFavoriteStarLoading {
|
368 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
369 |
}
|
366 |
|
367 |
.b2sFavoriteStarLoading {
|
368 |
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
369 |
+
}
|
370 |
+
|
371 |
+
.b2s-notice-counter {
|
372 |
+
background-color: lightblue;
|
373 |
+
padding: 2px;
|
374 |
+
border-radius: 50%;
|
375 |
+
width: 22px;
|
376 |
+
display: inline-block;
|
377 |
+
}
|
378 |
+
|
379 |
+
.b2s-image-add-this-network {
|
380 |
+
margin-right: 10px;
|
381 |
+
}
|
382 |
+
|
383 |
+
.b2s-margin-top-20 {
|
384 |
+
margin-top: 20px;
|
385 |
}
|
assets/css/b2s/settings.css
CHANGED
@@ -115,7 +115,7 @@ ul.chosen-choices {
|
|
115 |
.b2s-network-tos-auto-post-import-warning > .alert{
|
116 |
margin-bottom: 0px !important;
|
117 |
}
|
118 |
-
.b2s-shortener-image{
|
119 |
height: 16px;
|
120 |
width: 16px;
|
121 |
}
|
115 |
.b2s-network-tos-auto-post-import-warning > .alert{
|
116 |
margin-bottom: 0px !important;
|
117 |
}
|
118 |
+
.b2s-shortener-image, .b2s-network-image{
|
119 |
height: 16px;
|
120 |
width: 16px;
|
121 |
}
|
assets/css/general.css
CHANGED
@@ -5837,7 +5837,13 @@ button.close {
|
|
5837 |
display: none;
|
5838 |
overflow: hidden;
|
5839 |
-webkit-overflow-scrolling: touch;
|
|
|
|
|
5840 |
outline: 0;
|
|
|
|
|
|
|
|
|
5841 |
}
|
5842 |
.modal.fade .modal-dialog {
|
5843 |
-webkit-transition: -webkit-transform .3s ease-out;
|
@@ -6748,7 +6754,7 @@ p {
|
|
6748 |
}
|
6749 |
|
6750 |
.list-group-item{
|
6751 |
-
padding:
|
6752 |
}
|
6753 |
|
6754 |
.glyphicon-success{
|
5837 |
display: none;
|
5838 |
overflow: hidden;
|
5839 |
-webkit-overflow-scrolling: touch;
|
5840 |
+
-webkit-box-shadow: 0 0 !important;
|
5841 |
+
box-shadow: 0 0 !important;
|
5842 |
outline: 0;
|
5843 |
+
max-width: none !important;
|
5844 |
+
width: 100% !important;
|
5845 |
+
background: none !important;
|
5846 |
+
padding: 0 !important;
|
5847 |
}
|
5848 |
.modal.fade .modal-dialog {
|
5849 |
-webkit-transition: -webkit-transform .3s ease-out;
|
6754 |
}
|
6755 |
|
6756 |
.list-group-item{
|
6757 |
+
padding: 4px !important;
|
6758 |
}
|
6759 |
|
6760 |
.glyphicon-success{
|
assets/js/b2s/autopost.js
CHANGED
@@ -155,6 +155,9 @@ jQuery(document).on('click', '.b2sTwitterInfoModalBtn', function () {
|
|
155 |
jQuery(document).on('click', '.b2sInfoAssignAutoPostBtn', function () {
|
156 |
jQuery('#b2sInfoAssignAutoPost').modal('show');
|
157 |
});
|
|
|
|
|
|
|
158 |
|
159 |
jQuery(document).on('change', '.b2s-auto-post-area-toggle', function() {
|
160 |
if(jQuery(this).is(':checked')) {
|
155 |
jQuery(document).on('click', '.b2sInfoAssignAutoPostBtn', function () {
|
156 |
jQuery('#b2sInfoAssignAutoPost').modal('show');
|
157 |
});
|
158 |
+
jQuery(document).on('click', '.b2sAutoPostBestTimesInfoModalBtn', function () {
|
159 |
+
jQuery('#b2sAutoPostBestTimesInfoModal').modal('show');
|
160 |
+
});
|
161 |
|
162 |
jQuery(document).on('change', '.b2s-auto-post-area-toggle', function() {
|
163 |
if(jQuery(this).is(':checked')) {
|
assets/js/b2s/calendar.js
CHANGED
@@ -695,3 +695,255 @@ function printDateFormat(dataNetworkAuthId) {
|
|
695 |
jQuery(dateElement).val(dateStr);
|
696 |
}
|
697 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
695 |
jQuery(dateElement).val(dateStr);
|
696 |
}
|
697 |
|
698 |
+
jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function () {
|
699 |
+
jQuery('.b2s-server-connection-fail').hide();
|
700 |
+
jQuery.ajax({
|
701 |
+
url: ajaxurl,
|
702 |
+
type: "POST",
|
703 |
+
dataType: "json",
|
704 |
+
cache: false,
|
705 |
+
data: {
|
706 |
+
'action': 'b2s_get_settings_sched_time_default',
|
707 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
708 |
+
},
|
709 |
+
error: function () {
|
710 |
+
jQuery('.b2s-server-connection-fail').show();
|
711 |
+
return false;
|
712 |
+
},
|
713 |
+
success: function (data) {
|
714 |
+
if (data.result == true) {
|
715 |
+
var tomorrow = new Date();
|
716 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
717 |
+
tomorrow.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
718 |
+
}
|
719 |
+
tomorrow.setDate(tomorrow.getDate() + 1);
|
720 |
+
var tomorrowMonth = ("0" + (tomorrow.getMonth() + 1)).slice(-2);
|
721 |
+
var tomorrowDate = ("0" + tomorrow.getDate()).slice(-2);
|
722 |
+
var dateTomorrow = tomorrow.getFullYear() + "-" + tomorrowMonth + "-" + tomorrowDate;
|
723 |
+
var today = new Date();
|
724 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
725 |
+
today.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
726 |
+
}
|
727 |
+
|
728 |
+
var todayMonth = ("0" + (today.getMonth() + 1)).slice(-2);
|
729 |
+
var todayDate = ("0" + today.getDate()).slice(-2);
|
730 |
+
var dateToday = today.getFullYear() + "-" + todayMonth + "-" + todayDate;
|
731 |
+
var lang = jQuery('#b2sUserLang').val();
|
732 |
+
if (lang == "de") {
|
733 |
+
dateTomorrow = tomorrowDate + "." + tomorrowMonth + "." + tomorrow.getFullYear();
|
734 |
+
dateToday = todayDate + "." + todayMonth + "." + today.getFullYear();
|
735 |
+
}
|
736 |
+
|
737 |
+
jQuery.each(data.times, function (network_id, time) {
|
738 |
+
if (jQuery('.b2s-post-item[data-network-id="' + network_id + '"]').is(":visible")) {
|
739 |
+
time.forEach(function (network_type_time, count) {
|
740 |
+
if (network_type_time != "") {
|
741 |
+
|
742 |
+
|
743 |
+
var hours = network_type_time.substring(0, 2);
|
744 |
+
if (lang == "en") {
|
745 |
+
var timeparts = network_type_time.split(' ');
|
746 |
+
hours = (timeparts[1] == 'AM') ? hours : (parseInt(hours) + 12);
|
747 |
+
}
|
748 |
+
if (hours < today.getHours()) {
|
749 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateTomorrow);
|
750 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateTomorrow);
|
751 |
+
} else {
|
752 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateToday);
|
753 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateToday);
|
754 |
+
}
|
755 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').val(network_type_time);
|
756 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').timepicker('setTime', network_type_time);
|
757 |
+
|
758 |
+
count++;
|
759 |
+
}
|
760 |
+
});
|
761 |
+
}
|
762 |
+
});
|
763 |
+
} else {
|
764 |
+
if (data.error == 'nonce') {
|
765 |
+
jQuery('.b2s-nonce-check-fail').show();
|
766 |
+
}
|
767 |
+
}
|
768 |
+
}
|
769 |
+
});
|
770 |
+
return false;
|
771 |
+
});
|
772 |
+
|
773 |
+
|
774 |
+
|
775 |
+
jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
776 |
+
jQuery('.b2s-server-connection-fail').hide();
|
777 |
+
jQuery.ajax({
|
778 |
+
url: ajaxurl,
|
779 |
+
type: "POST",
|
780 |
+
dataType: "json",
|
781 |
+
cache: false,
|
782 |
+
data: {
|
783 |
+
'action': 'b2s_get_settings_sched_time_user',
|
784 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
785 |
+
},
|
786 |
+
error: function () {
|
787 |
+
jQuery('.b2s-server-connection-fail').show();
|
788 |
+
return false;
|
789 |
+
},
|
790 |
+
success: function (data) {
|
791 |
+
var tomorrow = new Date();
|
792 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
793 |
+
tomorrow.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
794 |
+
}
|
795 |
+
|
796 |
+
tomorrow.setDate(tomorrow.getDate() + 1);
|
797 |
+
var tomorrowMonth = ("0" + (tomorrow.getMonth() + 1)).slice(-2);
|
798 |
+
var tomorrowDate = ("0" + tomorrow.getDate()).slice(-2);
|
799 |
+
var dateTomorrow = tomorrow.getFullYear() + "-" + tomorrowMonth + "-" + tomorrowDate;
|
800 |
+
var today = new Date();
|
801 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
802 |
+
today.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
803 |
+
}
|
804 |
+
|
805 |
+
var todayMonth = ("0" + (today.getMonth() + 1)).slice(-2);
|
806 |
+
var todayDate = ("0" + today.getDate()).slice(-2);
|
807 |
+
var dateToday = today.getFullYear() + "-" + todayMonth + "-" + todayDate;
|
808 |
+
var lang = jQuery('#b2sUserLang').val();
|
809 |
+
if (lang == "de") {
|
810 |
+
dateTomorrow = tomorrowDate + "." + tomorrowMonth + "." + tomorrow.getFullYear();
|
811 |
+
dateToday = todayDate + "." + todayMonth + "." + today.getFullYear();
|
812 |
+
}
|
813 |
+
if (data.result == true) {
|
814 |
+
//V5.1.0 seeding
|
815 |
+
if (data.type == 'new') {
|
816 |
+
//new
|
817 |
+
jQuery.each(data.times, function (network_auth_id, time) {
|
818 |
+
if (jQuery('.b2s-post-item[data-network-auth-id="' + network_auth_id + '"]').is(":visible")) {
|
819 |
+
//is not set special dates
|
820 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val() == '0') {
|
821 |
+
jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val('1').trigger("change");
|
822 |
+
}
|
823 |
+
var hours = time.substring(0, 2);
|
824 |
+
var timeparts = time.split(' ');
|
825 |
+
if (typeof timeparts[1] != 'undefined') {
|
826 |
+
hours = (timeparts[1] == 'AM') ? hours : (parseInt(hours) + 12);
|
827 |
+
}
|
828 |
+
|
829 |
+
var isDelay = false;
|
830 |
+
var delayDay = data.delay_day[network_auth_id];
|
831 |
+
if (delayDay != undefined) {
|
832 |
+
if (delayDay > 0) {
|
833 |
+
var delay = new Date();
|
834 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
835 |
+
delay.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
836 |
+
}
|
837 |
+
delay.setDate(delay.getDate() + parseInt(delayDay));
|
838 |
+
var delayMonth = ("0" + (delay.getMonth() + 1)).slice(-2);
|
839 |
+
var delayDate = ("0" + delay.getDate()).slice(-2);
|
840 |
+
var dateDelay = delay.getFullYear() + "-" + delayMonth + "-" + delayDate;
|
841 |
+
if (lang == 'de') {
|
842 |
+
dateDelay = delayDate + '.' + delayMonth + "." + delay.getFullYear();
|
843 |
+
}
|
844 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(dateDelay);
|
845 |
+
isDelay = true;
|
846 |
+
|
847 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateDelay);
|
848 |
+
}
|
849 |
+
}
|
850 |
+
if (!isDelay) {
|
851 |
+
if (hours < today.getHours()) {
|
852 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(dateTomorrow);
|
853 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateTomorrow);
|
854 |
+
} else {
|
855 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(dateToday);
|
856 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateToday);
|
857 |
+
}
|
858 |
+
}
|
859 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(time);
|
860 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').timepicker('setTime', new Date(today.getFullYear(), today.getMonth(), today.getDate(), hours, time.slice(3, 5)));
|
861 |
+
}
|
862 |
+
});
|
863 |
+
} else {
|
864 |
+
//old
|
865 |
+
jQuery.each(data.times, function (network_id, time) {
|
866 |
+
if (jQuery('.b2s-post-item[data-network-id="' + network_id + '"]').is(":visible")) {
|
867 |
+
time.forEach(function (network_type_time, count) {
|
868 |
+
if (network_type_time != "") {
|
869 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
870 |
+
//is not set special dates
|
871 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"]').val() != '1') {
|
872 |
+
jQuery('.b2s-post-item-details-release-input-date-select[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"]').val('1').trigger("change");
|
873 |
+
}
|
874 |
+
var hours = network_type_time.substring(0, 2);
|
875 |
+
if (lang == "en") {
|
876 |
+
var timeparts = network_type_time.split(' ');
|
877 |
+
hours = (timeparts[1] == 'AM') ? hours : (parseInt(hours) + 12);
|
878 |
+
}
|
879 |
+
if (hours < today.getHours()) {
|
880 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateTomorrow);
|
881 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateTomorrow);
|
882 |
+
} else {
|
883 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateToday);
|
884 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateToday);
|
885 |
+
}
|
886 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').val(network_type_time);
|
887 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').timepicker('setTime', network_type_time);
|
888 |
+
count++;
|
889 |
+
}
|
890 |
+
});
|
891 |
+
}
|
892 |
+
});
|
893 |
+
}
|
894 |
+
} else {
|
895 |
+
if (data.error == 'nonce') {
|
896 |
+
jQuery('.b2s-nonce-check-fail').show();
|
897 |
+
}
|
898 |
+
//default load best Times
|
899 |
+
//jQuery('.b2s-get-settings-sched-time-default').trigger('click');
|
900 |
+
//set current time
|
901 |
+
jQuery('.b2s-post-item:visible').each(function () {
|
902 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
903 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').is(':not(:disabled)')) {
|
904 |
+
//is not set special dates
|
905 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() != '1') {
|
906 |
+
jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val('1').trigger("change");
|
907 |
+
}
|
908 |
+
}
|
909 |
+
});
|
910 |
+
}
|
911 |
+
}
|
912 |
+
});
|
913 |
+
return false;
|
914 |
+
});
|
915 |
+
|
916 |
+
jQuery(document).on('click', '.b2s-add-multi-image', function() {
|
917 |
+
jQuery('.b2s-network-select-image-content').html("");
|
918 |
+
jQuery.ajax({
|
919 |
+
url: ajaxurl,
|
920 |
+
type: "POST",
|
921 |
+
cache: false,
|
922 |
+
async: false,
|
923 |
+
data: {
|
924 |
+
'action': 'b2s_get_image_modal',
|
925 |
+
'id': jQuery('#post_id').val(),
|
926 |
+
'image_url': jQuery(this).data('image-url'),
|
927 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
928 |
+
},
|
929 |
+
success: function (data) {
|
930 |
+
if (data.error == 'nonce') {
|
931 |
+
jQuery('.b2s-nonce-check-fail').show();
|
932 |
+
} else {
|
933 |
+
jQuery(".b2s-network-select-image-content").html(data);
|
934 |
+
}
|
935 |
+
}
|
936 |
+
});
|
937 |
+
var authId = jQuery(this).data('network-auth-id');
|
938 |
+
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId);
|
939 |
+
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId);
|
940 |
+
var content = "<img class='b2s-post-item-network-image-selected-account' height='22px' src='" + jQuery('.b2s-post-item-network-image[data-network-auth-id="' + authId + '"]').attr('src') + "' /> " + jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + authId + '"]').html();
|
941 |
+
jQuery('.b2s-selected-network-for-image-info').html(content);
|
942 |
+
jQuery('#b2sInsertImageType').val("0");
|
943 |
+
jQuery('.networkImage').each(function () {
|
944 |
+
var width = this.naturalWidth;
|
945 |
+
var height = this.naturalHeight;
|
946 |
+
jQuery(this).parents('.b2s-image-item').find('.b2s-image-item-caption-resolution').html(width + 'x' + height);
|
947 |
+
});
|
948 |
+
jQuery('#b2s-network-select-image').modal('show');
|
949 |
+
});
|
assets/js/b2s/curation.js
CHANGED
@@ -250,7 +250,7 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
250 |
jQuery('#b2s-post-curation-comment').addClass('error');
|
251 |
noContent = true;
|
252 |
}
|
253 |
-
} else {
|
254 |
if (jQuery('.b2s-image-url-hidden-field').val().length === 0) {
|
255 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
256 |
noContent = true;
|
@@ -259,6 +259,11 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
259 |
jQuery('#b2s-post-curation-comment-image').addClass('error');
|
260 |
noContent = true;
|
261 |
}
|
|
|
|
|
|
|
|
|
|
|
262 |
}
|
263 |
if (noContent) {
|
264 |
return false;
|
@@ -270,6 +275,7 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
270 |
jQuery('.b2s-curation-settings-area').hide();
|
271 |
jQuery('.b2s-curation-preview-area').hide();
|
272 |
jQuery('.b2s-curation-image-area').hide();
|
|
|
273 |
jQuery('.b2s-curation-select').hide();
|
274 |
|
275 |
jQuery.ajax({
|
@@ -294,8 +300,10 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
294 |
jQuery('.b2s-curation-settings-area').show();
|
295 |
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
296 |
jQuery('.b2s-curation-preview-area').show();
|
297 |
-
} else {
|
298 |
jQuery('.b2s-curation-image-area').show();
|
|
|
|
|
299 |
}
|
300 |
|
301 |
if (data.error == 'NO_AUTH') {
|
@@ -412,6 +420,7 @@ jQuery(document).on('click', '#b2s-btn-curation-customize', function () {
|
|
412 |
jQuery('.b2s-curation-settings-area').hide();
|
413 |
jQuery('.b2s-curation-preview-area').hide();
|
414 |
jQuery('.b2s-curation-image-area').hide();
|
|
|
415 |
jQuery('.b2s-curation-select').hide();
|
416 |
jQuery.ajax({
|
417 |
processData: false,
|
@@ -522,6 +531,7 @@ jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
|
522 |
jQuery('.b2s-curation-settings-area').hide();
|
523 |
jQuery('.b2s-curation-preview-area').hide();
|
524 |
jQuery('.b2s-curation-image-area').hide();
|
|
|
525 |
jQuery('.b2s-curation-select').hide();
|
526 |
jQuery.ajax({
|
527 |
processData: false,
|
@@ -567,31 +577,62 @@ jQuery(document).on('click', '.b2s-curation-format-link', function() {
|
|
567 |
if(jQuery(this).hasClass('btn-primary')){
|
568 |
return false;
|
569 |
}
|
570 |
-
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-
|
571 |
jQuery('#b2s-curation-post-format').val('0');
|
572 |
jQuery('.b2s-curation-format-link').removeClass('btn-light').addClass('btn-primary');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
573 |
jQuery('.b2s-curation-format-image').removeClass('btn-primary').addClass('btn-light');
|
|
|
574 |
jQuery('.b2s-loading-area').hide();
|
575 |
jQuery('.b2s-curation-link-area').show();
|
576 |
jQuery('.b2s-curation-image-area').hide();
|
|
|
577 |
if(jQuery('.b2s-curation-input-area').is(':visible')){
|
578 |
jQuery('.b2s-curation-settings-area').hide();
|
579 |
} else {
|
580 |
jQuery('.b2s-curation-settings-area').show();
|
581 |
}
|
|
|
|
|
582 |
});
|
583 |
|
584 |
jQuery(document).on('click', '.b2s-curation-format-image', function() {
|
585 |
if(jQuery(this).hasClass('btn-primary')){
|
586 |
return false;
|
587 |
}
|
588 |
-
jQuery('#b2s-post-curation-comment-image').val(jQuery('#b2s-post-curation-comment').val());
|
589 |
jQuery('#b2s-curation-post-format').val('1');
|
590 |
jQuery('.b2s-loading-area').show();
|
591 |
jQuery('.b2s-curation-link-area').hide();
|
592 |
jQuery('.b2s-curation-image-area').hide();
|
|
|
593 |
jQuery('.b2s-curation-format-image').removeClass('btn-light').addClass('btn-primary');
|
594 |
jQuery('.b2s-curation-format-link').removeClass('btn-primary').addClass('btn-light');
|
|
|
|
|
595 |
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
596 |
jQuery.ajax({
|
597 |
url: ajaxurl,
|
@@ -642,6 +683,80 @@ jQuery(document).on('click', '.b2s-curation-format-image', function() {
|
|
642 |
return false;
|
643 |
});
|
644 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
645 |
var emojiTranslation = JSON.parse(jQuery('#b2sEmojiTranslation').val());
|
646 |
var picker = new EmojiButton({
|
647 |
position: 'auto',
|
@@ -817,6 +932,13 @@ jQuery(document).on('keyup', '.b2s-post-item-details-item-message-input', functi
|
|
817 |
});
|
818 |
|
819 |
jQuery(document).on('click', '.b2s-curation-info-premium-btn', function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
820 |
jQuery('#b2sInfoCCModal').modal('show');
|
821 |
});
|
822 |
|
@@ -854,4 +976,8 @@ function loadDraftShipData() {
|
|
854 |
jQuery('#b2s-post-curation-twitter-select').trigger('change');
|
855 |
}
|
856 |
}
|
857 |
-
}
|
|
|
|
|
|
|
|
250 |
jQuery('#b2s-post-curation-comment').addClass('error');
|
251 |
noContent = true;
|
252 |
}
|
253 |
+
} else if(jQuery('#b2s-curation-post-format').val() == '1') {
|
254 |
if (jQuery('.b2s-image-url-hidden-field').val().length === 0) {
|
255 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
256 |
noContent = true;
|
259 |
jQuery('#b2s-post-curation-comment-image').addClass('error');
|
260 |
noContent = true;
|
261 |
}
|
262 |
+
} else {
|
263 |
+
if (jQuery('#b2s-post-curation-comment-text').val().length === 0) {
|
264 |
+
jQuery('#b2s-post-curation-comment-text').addClass('error');
|
265 |
+
noContent = true;
|
266 |
+
}
|
267 |
}
|
268 |
if (noContent) {
|
269 |
return false;
|
275 |
jQuery('.b2s-curation-settings-area').hide();
|
276 |
jQuery('.b2s-curation-preview-area').hide();
|
277 |
jQuery('.b2s-curation-image-area').hide();
|
278 |
+
jQuery('.b2s-curation-text-area').hide();
|
279 |
jQuery('.b2s-curation-select').hide();
|
280 |
|
281 |
jQuery.ajax({
|
300 |
jQuery('.b2s-curation-settings-area').show();
|
301 |
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
302 |
jQuery('.b2s-curation-preview-area').show();
|
303 |
+
} else if(jQuery('#b2s-curation-post-format').val() == '1') {
|
304 |
jQuery('.b2s-curation-image-area').show();
|
305 |
+
} else {
|
306 |
+
jQuery('.b2s-curation-text-area').show();
|
307 |
}
|
308 |
|
309 |
if (data.error == 'NO_AUTH') {
|
420 |
jQuery('.b2s-curation-settings-area').hide();
|
421 |
jQuery('.b2s-curation-preview-area').hide();
|
422 |
jQuery('.b2s-curation-image-area').hide();
|
423 |
+
jQuery('.b2s-curation-text-area').hide();
|
424 |
jQuery('.b2s-curation-select').hide();
|
425 |
jQuery.ajax({
|
426 |
processData: false,
|
531 |
jQuery('.b2s-curation-settings-area').hide();
|
532 |
jQuery('.b2s-curation-preview-area').hide();
|
533 |
jQuery('.b2s-curation-image-area').hide();
|
534 |
+
jQuery('.b2s-curation-text-area').hide();
|
535 |
jQuery('.b2s-curation-select').hide();
|
536 |
jQuery.ajax({
|
537 |
processData: false,
|
577 |
if(jQuery(this).hasClass('btn-primary')){
|
578 |
return false;
|
579 |
}
|
580 |
+
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
581 |
jQuery('#b2s-curation-post-format').val('0');
|
582 |
jQuery('.b2s-curation-format-link').removeClass('btn-light').addClass('btn-primary');
|
583 |
+
jQuery('.b2s-curation-format-video').removeClass('btn-primary').addClass('btn-light');
|
584 |
+
jQuery('.b2s-curation-format-image').removeClass('btn-primary').addClass('btn-light');
|
585 |
+
jQuery('.b2s-curation-format-text').removeClass('btn-primary').addClass('btn-light');
|
586 |
+
jQuery('.b2s-loading-area').hide();
|
587 |
+
jQuery('.b2s-curation-link-area').show();
|
588 |
+
jQuery('.b2s-curation-image-area').hide();
|
589 |
+
jQuery('.b2s-curation-text-area').hide();
|
590 |
+
if(jQuery('.b2s-curation-input-area').is(':visible')){
|
591 |
+
jQuery('.b2s-curation-settings-area').hide();
|
592 |
+
} else {
|
593 |
+
jQuery('.b2s-curation-settings-area').show();
|
594 |
+
}
|
595 |
+
jQuery('.b2s-curation-input-area-info-header-text').show();
|
596 |
+
jQuery('.b2s-curation-input-area-info-header-text-video').hide();
|
597 |
+
});
|
598 |
+
|
599 |
+
jQuery(document).on('click', '.b2s-curation-format-video', function() {
|
600 |
+
if(jQuery(this).hasClass('btn-primary')){
|
601 |
+
return false;
|
602 |
+
}
|
603 |
+
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
604 |
+
jQuery('#b2s-curation-post-format').val('0');
|
605 |
+
jQuery('.b2s-curation-format-video').removeClass('btn-light').addClass('btn-primary');
|
606 |
+
jQuery('.b2s-curation-format-link').removeClass('btn-primary').addClass('btn-light');
|
607 |
jQuery('.b2s-curation-format-image').removeClass('btn-primary').addClass('btn-light');
|
608 |
+
jQuery('.b2s-curation-format-text').removeClass('btn-primary').addClass('btn-light');
|
609 |
jQuery('.b2s-loading-area').hide();
|
610 |
jQuery('.b2s-curation-link-area').show();
|
611 |
jQuery('.b2s-curation-image-area').hide();
|
612 |
+
jQuery('.b2s-curation-text-area').hide();
|
613 |
if(jQuery('.b2s-curation-input-area').is(':visible')){
|
614 |
jQuery('.b2s-curation-settings-area').hide();
|
615 |
} else {
|
616 |
jQuery('.b2s-curation-settings-area').show();
|
617 |
}
|
618 |
+
jQuery('.b2s-curation-input-area-info-header-text').hide();
|
619 |
+
jQuery('.b2s-curation-input-area-info-header-text-video').show();
|
620 |
});
|
621 |
|
622 |
jQuery(document).on('click', '.b2s-curation-format-image', function() {
|
623 |
if(jQuery(this).hasClass('btn-primary')){
|
624 |
return false;
|
625 |
}
|
626 |
+
jQuery('#b2s-post-curation-comment-image').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
627 |
jQuery('#b2s-curation-post-format').val('1');
|
628 |
jQuery('.b2s-loading-area').show();
|
629 |
jQuery('.b2s-curation-link-area').hide();
|
630 |
jQuery('.b2s-curation-image-area').hide();
|
631 |
+
jQuery('.b2s-curation-text-area').hide();
|
632 |
jQuery('.b2s-curation-format-image').removeClass('btn-light').addClass('btn-primary');
|
633 |
jQuery('.b2s-curation-format-link').removeClass('btn-primary').addClass('btn-light');
|
634 |
+
jQuery('.b2s-curation-format-video').removeClass('btn-primary').addClass('btn-light');
|
635 |
+
jQuery('.b2s-curation-format-text').removeClass('btn-primary').addClass('btn-light');
|
636 |
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
637 |
jQuery.ajax({
|
638 |
url: ajaxurl,
|
683 |
return false;
|
684 |
});
|
685 |
|
686 |
+
jQuery(document).on('click', '.b2s-curation-format-text', function() {
|
687 |
+
if(jQuery(this).hasClass('btn-primary')){
|
688 |
+
return false;
|
689 |
+
}
|
690 |
+
jQuery('#b2s-post-curation-comment-text').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
691 |
+
jQuery('#b2s-curation-post-format').val('2');
|
692 |
+
jQuery('.b2s-loading-area').show();
|
693 |
+
jQuery('.b2s-curation-link-area').hide();
|
694 |
+
jQuery('.b2s-curation-image-area').hide();
|
695 |
+
jQuery('.b2s-curation-text-area').hide();
|
696 |
+
jQuery('.b2s-curation-format-text').removeClass('btn-light').addClass('btn-primary');
|
697 |
+
jQuery('.b2s-curation-format-link').removeClass('btn-primary').addClass('btn-light');
|
698 |
+
jQuery('.b2s-curation-format-video').removeClass('btn-primary').addClass('btn-light');
|
699 |
+
jQuery('.b2s-curation-format-image').removeClass('btn-primary').addClass('btn-light');
|
700 |
+
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
701 |
+
jQuery.ajax({
|
702 |
+
url: ajaxurl,
|
703 |
+
type: "GET",
|
704 |
+
dataType: "json",
|
705 |
+
cache: false,
|
706 |
+
data: {
|
707 |
+
'action': 'b2s_get_curation_ship_details',
|
708 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
709 |
+
},
|
710 |
+
error: function () {
|
711 |
+
jQuery('.b2s-server-connection-fail').show();
|
712 |
+
return false;
|
713 |
+
},
|
714 |
+
success: function (data) {
|
715 |
+
if(jQuery('.b2s-curation-format-text').hasClass('btn-primary')) {
|
716 |
+
if (data.result == true) {
|
717 |
+
jQuery('.b2s-curation-settings-area').html(data.settings);
|
718 |
+
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
719 |
+
jQuery('.b2s-loading-area').hide();
|
720 |
+
jQuery('.b2s-curation-text-area').show();
|
721 |
+
jQuery('.b2s-curation-settings-area').show();
|
722 |
+
loadDraftShipData();
|
723 |
+
return false;
|
724 |
+
} else {
|
725 |
+
jQuery('.b2s-loading-area').hide();
|
726 |
+
if(data.error == 'nonce') {
|
727 |
+
jQuery('.b2s-nonce-check-fail').show();
|
728 |
+
}
|
729 |
+
if (data.error == "NO_AUTH") {
|
730 |
+
jQuery('.b2s-curation-text-area').show();
|
731 |
+
jQuery('.b2s-curation-settings-area').hide();
|
732 |
+
jQuery('#b2s-curation-no-auth-info').show();
|
733 |
+
jQuery('#b2s-curation-no-review-info').hide();
|
734 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
735 |
+
}
|
736 |
+
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
737 |
+
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
738 |
+
}
|
739 |
+
}
|
740 |
+
}
|
741 |
+
});
|
742 |
+
} else {
|
743 |
+
jQuery('.b2s-loading-area').hide();
|
744 |
+
jQuery('.b2s-curation-text-area').show();
|
745 |
+
jQuery('.b2s-curation-settings-area').show();
|
746 |
+
}
|
747 |
+
return false;
|
748 |
+
});
|
749 |
+
|
750 |
+
jQuery(document).on('change', '#b2s-post-curation-comment', function() {
|
751 |
+
jQuery('#b2s-post-curation-comment-dummy').val(jQuery('#b2s-post-curation-comment').val());
|
752 |
+
});
|
753 |
+
jQuery(document).on('change', '#b2s-post-curation-comment-image', function() {
|
754 |
+
jQuery('#b2s-post-curation-comment-dummy').val(jQuery('#b2s-post-curation-comment-image').val());
|
755 |
+
});
|
756 |
+
jQuery(document).on('change', '#b2s-post-curation-comment-text', function() {
|
757 |
+
jQuery('#b2s-post-curation-comment-dummy').val(jQuery('#b2s-post-curation-comment-text').val());
|
758 |
+
});
|
759 |
+
|
760 |
var emojiTranslation = JSON.parse(jQuery('#b2sEmojiTranslation').val());
|
761 |
var picker = new EmojiButton({
|
762 |
position: 'auto',
|
932 |
});
|
933 |
|
934 |
jQuery(document).on('click', '.b2s-curation-info-premium-btn', function () {
|
935 |
+
if(jQuery(this).data('type') == 'text') {
|
936 |
+
jQuery('#b2s-modal-header-text').show();
|
937 |
+
jQuery('#b2s-modal-header-image').hide();
|
938 |
+
} else {
|
939 |
+
jQuery('#b2s-modal-header-image').show();
|
940 |
+
jQuery('#b2s-modal-header-text').hide();
|
941 |
+
}
|
942 |
jQuery('#b2sInfoCCModal').modal('show');
|
943 |
});
|
944 |
|
976 |
jQuery('#b2s-post-curation-twitter-select').trigger('change');
|
977 |
}
|
978 |
}
|
979 |
+
}
|
980 |
+
|
981 |
+
jQuery(document).on('click', '.b2sTextPostInfoModalBtn', function() {
|
982 |
+
jQuery('#b2sTextPostInfoModal').modal('show');
|
983 |
+
});
|
assets/js/b2s/network.js
CHANGED
@@ -615,7 +615,7 @@ jQuery(document).on('click', '.b2s-network-add-mandant-btn-save', function () {
|
|
615 |
jQuery('#b2s-network-add-mandant').modal('hide');
|
616 |
|
617 |
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
618 |
-
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length);
|
619 |
});
|
620 |
|
621 |
}
|
@@ -1132,6 +1132,13 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
|
1132 |
template_data[networkType]['addLink'] = false;
|
1133 |
}
|
1134 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1135 |
});
|
1136 |
|
1137 |
jQuery.ajax({
|
615 |
jQuery('#b2s-network-add-mandant').modal('hide');
|
616 |
|
617 |
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
618 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text((jQuery(this).children('li').length-1));
|
619 |
});
|
620 |
|
621 |
}
|
1132 |
template_data[networkType]['addLink'] = false;
|
1133 |
}
|
1134 |
}
|
1135 |
+
if (jQuery('#b2s-edit-template-network-id').val() == 12) {
|
1136 |
+
if(jQuery('.b2s-edit-template-shuffle-hashtags[data-network-type="' + networkType + '"]').is(':checked')) {
|
1137 |
+
template_data[networkType]['shuffleHashtags'] = true;
|
1138 |
+
} else {
|
1139 |
+
template_data[networkType]['shuffleHashtags'] = false;
|
1140 |
+
}
|
1141 |
+
}
|
1142 |
});
|
1143 |
|
1144 |
jQuery.ajax({
|
assets/js/b2s/post.js
CHANGED
@@ -1042,4 +1042,257 @@ jQuery(document).on('click', '.b2s-post-per-page', function() {
|
|
1042 |
jQuery('.b2s-post-per-page').addClass('btn-default').removeClass('btn-primary');
|
1043 |
jQuery(this).removeClass('btn-default').addClass('btn-primary');
|
1044 |
jQuery('#b2s-sort-submit-btn').trigger('click');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1045 |
});
|
1042 |
jQuery('.b2s-post-per-page').addClass('btn-default').removeClass('btn-primary');
|
1043 |
jQuery(this).removeClass('btn-default').addClass('btn-primary');
|
1044 |
jQuery('#b2s-sort-submit-btn').trigger('click');
|
1045 |
+
});
|
1046 |
+
|
1047 |
+
jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function () {
|
1048 |
+
jQuery('.b2s-server-connection-fail').hide();
|
1049 |
+
jQuery.ajax({
|
1050 |
+
url: ajaxurl,
|
1051 |
+
type: "POST",
|
1052 |
+
dataType: "json",
|
1053 |
+
cache: false,
|
1054 |
+
data: {
|
1055 |
+
'action': 'b2s_get_settings_sched_time_default',
|
1056 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1057 |
+
},
|
1058 |
+
error: function () {
|
1059 |
+
jQuery('.b2s-server-connection-fail').show();
|
1060 |
+
return false;
|
1061 |
+
},
|
1062 |
+
success: function (data) {
|
1063 |
+
if (data.result == true) {
|
1064 |
+
var tomorrow = new Date();
|
1065 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
1066 |
+
tomorrow.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
1067 |
+
}
|
1068 |
+
tomorrow.setDate(tomorrow.getDate() + 1);
|
1069 |
+
var tomorrowMonth = ("0" + (tomorrow.getMonth() + 1)).slice(-2);
|
1070 |
+
var tomorrowDate = ("0" + tomorrow.getDate()).slice(-2);
|
1071 |
+
var dateTomorrow = tomorrow.getFullYear() + "-" + tomorrowMonth + "-" + tomorrowDate;
|
1072 |
+
var today = new Date();
|
1073 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
1074 |
+
today.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
1075 |
+
}
|
1076 |
+
|
1077 |
+
var todayMonth = ("0" + (today.getMonth() + 1)).slice(-2);
|
1078 |
+
var todayDate = ("0" + today.getDate()).slice(-2);
|
1079 |
+
var dateToday = today.getFullYear() + "-" + todayMonth + "-" + todayDate;
|
1080 |
+
var lang = jQuery('#b2sUserLang').val();
|
1081 |
+
if (lang == "de") {
|
1082 |
+
dateTomorrow = tomorrowDate + "." + tomorrowMonth + "." + tomorrow.getFullYear();
|
1083 |
+
dateToday = todayDate + "." + todayMonth + "." + today.getFullYear();
|
1084 |
+
}
|
1085 |
+
|
1086 |
+
jQuery.each(data.times, function (network_id, time) {
|
1087 |
+
if (jQuery('.b2s-post-item[data-network-id="' + network_id + '"]').is(":visible")) {
|
1088 |
+
time.forEach(function (network_type_time, count) {
|
1089 |
+
if (network_type_time != "") {
|
1090 |
+
|
1091 |
+
|
1092 |
+
var hours = network_type_time.substring(0, 2);
|
1093 |
+
if (lang == "en") {
|
1094 |
+
var timeparts = network_type_time.split(' ');
|
1095 |
+
hours = (timeparts[1] == 'AM') ? hours : (parseInt(hours) + 12);
|
1096 |
+
}
|
1097 |
+
if (hours < today.getHours()) {
|
1098 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateTomorrow);
|
1099 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateTomorrow);
|
1100 |
+
} else {
|
1101 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateToday);
|
1102 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateToday);
|
1103 |
+
}
|
1104 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').val(network_type_time);
|
1105 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-type="' + count + '"][data-network-count="0"]').timepicker('setTime', network_type_time);
|
1106 |
+
|
1107 |
+
count++;
|
1108 |
+
}
|
1109 |
+
});
|
1110 |
+
}
|
1111 |
+
});
|
1112 |
+
} else {
|
1113 |
+
if (data.error == 'nonce') {
|
1114 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1115 |
+
}
|
1116 |
+
}
|
1117 |
+
}
|
1118 |
+
});
|
1119 |
+
return false;
|
1120 |
+
});
|
1121 |
+
|
1122 |
+
|
1123 |
+
|
1124 |
+
jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
1125 |
+
jQuery('.b2s-server-connection-fail').hide();
|
1126 |
+
jQuery.ajax({
|
1127 |
+
url: ajaxurl,
|
1128 |
+
type: "POST",
|
1129 |
+
dataType: "json",
|
1130 |
+
cache: false,
|
1131 |
+
data: {
|
1132 |
+
'action': 'b2s_get_settings_sched_time_user',
|
1133 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1134 |
+
},
|
1135 |
+
error: function () {
|
1136 |
+
jQuery('.b2s-server-connection-fail').show();
|
1137 |
+
return false;
|
1138 |
+
},
|
1139 |
+
success: function (data) {
|
1140 |
+
var tomorrow = new Date();
|
1141 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
1142 |
+
tomorrow.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
1143 |
+
}
|
1144 |
+
|
1145 |
+
tomorrow.setDate(tomorrow.getDate() + 1);
|
1146 |
+
var tomorrowMonth = ("0" + (tomorrow.getMonth() + 1)).slice(-2);
|
1147 |
+
var tomorrowDate = ("0" + tomorrow.getDate()).slice(-2);
|
1148 |
+
var dateTomorrow = tomorrow.getFullYear() + "-" + tomorrowMonth + "-" + tomorrowDate;
|
1149 |
+
var today = new Date();
|
1150 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
1151 |
+
today.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
1152 |
+
}
|
1153 |
+
|
1154 |
+
var todayMonth = ("0" + (today.getMonth() + 1)).slice(-2);
|
1155 |
+
var todayDate = ("0" + today.getDate()).slice(-2);
|
1156 |
+
var dateToday = today.getFullYear() + "-" + todayMonth + "-" + todayDate;
|
1157 |
+
var lang = jQuery('#b2sUserLang').val();
|
1158 |
+
if (lang == "de") {
|
1159 |
+
dateTomorrow = tomorrowDate + "." + tomorrowMonth + "." + tomorrow.getFullYear();
|
1160 |
+
dateToday = todayDate + "." + todayMonth + "." + today.getFullYear();
|
1161 |
+
}
|
1162 |
+
if (data.result == true) {
|
1163 |
+
//V5.1.0 seeding
|
1164 |
+
if (data.type == 'new') {
|
1165 |
+
//new
|
1166 |
+
jQuery.each(data.times, function (network_auth_id, time) {
|
1167 |
+
if (jQuery('.b2s-post-item[data-network-auth-id="' + network_auth_id + '"]').is(":visible")) {
|
1168 |
+
//is not set special dates
|
1169 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val() == '0') {
|
1170 |
+
jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val('1').trigger("change");
|
1171 |
+
}
|
1172 |
+
var hours = time.substring(0, 2);
|
1173 |
+
var timeparts = time.split(' ');
|
1174 |
+
if (typeof timeparts[1] != 'undefined') {
|
1175 |
+
hours = (timeparts[1] == 'AM') ? hours : (parseInt(hours) + 12);
|
1176 |
+
}
|
1177 |
+
|
1178 |
+
var isDelay = false;
|
1179 |
+
var delayDay = data.delay_day[network_auth_id];
|
1180 |
+
if (delayDay != undefined) {
|
1181 |
+
if (delayDay > 0) {
|
1182 |
+
var delay = new Date();
|
1183 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
1184 |
+
delay.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
1185 |
+
}
|
1186 |
+
delay.setDate(delay.getDate() + parseInt(delayDay));
|
1187 |
+
var delayMonth = ("0" + (delay.getMonth() + 1)).slice(-2);
|
1188 |
+
var delayDate = ("0" + delay.getDate()).slice(-2);
|
1189 |
+
var dateDelay = delay.getFullYear() + "-" + delayMonth + "-" + delayDate;
|
1190 |
+
if (lang == 'de') {
|
1191 |
+
dateDelay = delayDate + '.' + delayMonth + "." + delay.getFullYear();
|
1192 |
+
}
|
1193 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(dateDelay);
|
1194 |
+
isDelay = true;
|
1195 |
+
|
1196 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateDelay);
|
1197 |
+
}
|
1198 |
+
}
|
1199 |
+
if (!isDelay) {
|
1200 |
+
if (hours < today.getHours()) {
|
1201 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(dateTomorrow);
|
1202 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateTomorrow);
|
1203 |
+
} else {
|
1204 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(dateToday);
|
1205 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateToday);
|
1206 |
+
}
|
1207 |
+
}
|
1208 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(time);
|
1209 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').timepicker('setTime', new Date(today.getFullYear(), today.getMonth(), today.getDate(), hours, time.slice(3, 5)));
|
1210 |
+
}
|
1211 |
+
});
|
1212 |
+
} else {
|
1213 |
+
//old
|
1214 |
+
jQuery.each(data.times, function (network_id, time) {
|
1215 |
+
if (jQuery('.b2s-post-item[data-network-id="' + network_id + '"]').is(":visible")) {
|
1216 |
+
time.forEach(function (network_type_time, count) {
|
1217 |
+
if (network_type_time != "") {
|
1218 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
1219 |
+
//is not set special dates
|
1220 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"]').val() != '1') {
|
1221 |
+
jQuery('.b2s-post-item-details-release-input-date-select[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"]').val('1').trigger("change");
|
1222 |
+
}
|
1223 |
+
var hours = network_type_time.substring(0, 2);
|
1224 |
+
if (lang == "en") {
|
1225 |
+
var timeparts = network_type_time.split(' ');
|
1226 |
+
hours = (timeparts[1] == 'AM') ? hours : (parseInt(hours) + 12);
|
1227 |
+
}
|
1228 |
+
if (hours < today.getHours()) {
|
1229 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateTomorrow);
|
1230 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateTomorrow);
|
1231 |
+
} else {
|
1232 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').val(dateToday);
|
1233 |
+
jQuery('.b2s-post-item-details-release-input-date[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').datepicker('update', dateToday);
|
1234 |
+
}
|
1235 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').val(network_type_time);
|
1236 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-id="' + network_id + '"][data-network-auth-id="' + networkAuthId + '"][data-network-type="' + count + '"][data-network-count="0"]').timepicker('setTime', network_type_time);
|
1237 |
+
count++;
|
1238 |
+
}
|
1239 |
+
});
|
1240 |
+
}
|
1241 |
+
});
|
1242 |
+
}
|
1243 |
+
} else {
|
1244 |
+
if (data.error == 'nonce') {
|
1245 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1246 |
+
}
|
1247 |
+
//default load best Times
|
1248 |
+
//jQuery('.b2s-get-settings-sched-time-default').trigger('click');
|
1249 |
+
//set current time
|
1250 |
+
jQuery('.b2s-post-item:visible').each(function () {
|
1251 |
+
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
1252 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').is(':not(:disabled)')) {
|
1253 |
+
//is not set special dates
|
1254 |
+
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() != '1') {
|
1255 |
+
jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val('1').trigger("change");
|
1256 |
+
}
|
1257 |
+
}
|
1258 |
+
});
|
1259 |
+
}
|
1260 |
+
}
|
1261 |
+
});
|
1262 |
+
return false;
|
1263 |
+
});
|
1264 |
+
|
1265 |
+
jQuery(document).on('click', '.b2s-add-multi-image', function() {
|
1266 |
+
jQuery('.b2s-network-select-image-content').html("");
|
1267 |
+
jQuery.ajax({
|
1268 |
+
url: ajaxurl,
|
1269 |
+
type: "POST",
|
1270 |
+
cache: false,
|
1271 |
+
async: false,
|
1272 |
+
data: {
|
1273 |
+
'action': 'b2s_get_image_modal',
|
1274 |
+
'id': jQuery('#post_id').val(),
|
1275 |
+
'image_url': jQuery(this).data('image-url'),
|
1276 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1277 |
+
},
|
1278 |
+
success: function (data) {
|
1279 |
+
if (data.error == 'nonce') {
|
1280 |
+
jQuery('.b2s-nonce-check-fail').show();
|
1281 |
+
} else {
|
1282 |
+
jQuery(".b2s-network-select-image-content").html(data);
|
1283 |
+
}
|
1284 |
+
}
|
1285 |
+
});
|
1286 |
+
var authId = jQuery(this).data('network-auth-id');
|
1287 |
+
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId);
|
1288 |
+
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId);
|
1289 |
+
var content = "<img class='b2s-post-item-network-image-selected-account' height='22px' src='" + jQuery('.b2s-post-item-network-image[data-network-auth-id="' + authId + '"]').attr('src') + "' /> " + jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + authId + '"]').html();
|
1290 |
+
jQuery('.b2s-selected-network-for-image-info').html(content);
|
1291 |
+
jQuery('#b2sInsertImageType').val("0");
|
1292 |
+
jQuery('.networkImage').each(function () {
|
1293 |
+
var width = this.naturalWidth;
|
1294 |
+
var height = this.naturalHeight;
|
1295 |
+
jQuery(this).parents('.b2s-image-item').find('.b2s-image-item-caption-resolution').html(width + 'x' + height);
|
1296 |
+
});
|
1297 |
+
jQuery('#b2s-network-select-image').modal('show');
|
1298 |
});
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 6.
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
-
define('B2S_PLUGIN_VERSION', '
|
15 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
16 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
17 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
+
* Version: 6.6.0
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '660');
|
15 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
16 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
17 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
includes/Ajax/Post.php
CHANGED
@@ -139,20 +139,27 @@ class Ajax_Post {
|
|
139 |
//save as blog post
|
140 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
141 |
if (isset($_POST['postFormat'])) {
|
142 |
-
if ((int) $_POST['postFormat']
|
143 |
if (isset($_POST['image_id']) && !empty($_POST['image_id']) && isset($_POST['comment_image']) && !empty($_POST['comment_image'])) {
|
144 |
$data = array('title' => sanitize_text_field($_POST['comment_image']), 'content' => $_POST['comment_image'], 'image_id' => $_POST['image_id'], 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
145 |
} else {
|
146 |
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
147 |
wp_die();
|
148 |
}
|
149 |
-
} else { //Linkpost
|
150 |
if (isset($_POST['title']) && !empty($_POST['title']) && isset($_POST['comment']) && !empty($_POST['comment']) && isset($_POST['url']) && !empty($_POST['url'])) {
|
151 |
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
152 |
} else {
|
153 |
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
154 |
wp_die();
|
155 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
156 |
}
|
157 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
158 |
$curation = new B2S_Curation_Save($data);
|
@@ -198,7 +205,7 @@ class Ajax_Post {
|
|
198 |
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'IMAGE_FOR_CURATION')));
|
199 |
continue;
|
200 |
}
|
201 |
-
} else {
|
202 |
if (in_array($value->networkId, $allowNetworkOnlyLink)) {
|
203 |
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'LINK_FOR_CURATION')));
|
204 |
continue;
|
@@ -248,6 +255,7 @@ class Ajax_Post {
|
|
248 |
}
|
249 |
}
|
250 |
}
|
|
|
251 |
$shareData = $quickPost->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType, $_POST['postFormat']);
|
252 |
if ($shareData !== false) {
|
253 |
$shareData['network_id'] = $value->networkId;
|
@@ -1951,6 +1959,9 @@ class Ajax_Post {
|
|
1951 |
if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1) {
|
1952 |
$new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
|
1953 |
}
|
|
|
|
|
|
|
1954 |
}
|
1955 |
|
1956 |
$post_template[$_POST['networkId']] = $new_template;
|
139 |
//save as blog post
|
140 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
141 |
if (isset($_POST['postFormat'])) {
|
142 |
+
if ((int) $_POST['postFormat'] == 1) { //Imagepost
|
143 |
if (isset($_POST['image_id']) && !empty($_POST['image_id']) && isset($_POST['comment_image']) && !empty($_POST['comment_image'])) {
|
144 |
$data = array('title' => sanitize_text_field($_POST['comment_image']), 'content' => $_POST['comment_image'], 'image_id' => $_POST['image_id'], 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
145 |
} else {
|
146 |
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
147 |
wp_die();
|
148 |
}
|
149 |
+
} else if ((int) $_POST['postFormat'] == 0) { //Linkpost
|
150 |
if (isset($_POST['title']) && !empty($_POST['title']) && isset($_POST['comment']) && !empty($_POST['comment']) && isset($_POST['url']) && !empty($_POST['url'])) {
|
151 |
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
152 |
} else {
|
153 |
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
154 |
wp_die();
|
155 |
}
|
156 |
+
} else {
|
157 |
+
if (isset($_POST['comment_text']) && !empty($_POST['comment_text'])) {
|
158 |
+
$data = array('title' => sanitize_text_field($_POST['comment_text']), 'content' => $_POST['comment_text'], 'image_id' => $_POST['image_id'], 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
159 |
+
} else {
|
160 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
161 |
+
wp_die();
|
162 |
+
}
|
163 |
}
|
164 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
165 |
$curation = new B2S_Curation_Save($data);
|
205 |
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'IMAGE_FOR_CURATION')));
|
206 |
continue;
|
207 |
}
|
208 |
+
} else if ((int) $_POST['postFormat'] == 1) {
|
209 |
if (in_array($value->networkId, $allowNetworkOnlyLink)) {
|
210 |
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'LINK_FOR_CURATION')));
|
211 |
continue;
|
255 |
}
|
256 |
}
|
257 |
}
|
258 |
+
$_POST['postFormat'] = ((int) $_POST['postFormat'] == 2) ? '1' : $_POST['postFormat'];
|
259 |
$shareData = $quickPost->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType, $_POST['postFormat']);
|
260 |
if ($shareData !== false) {
|
261 |
$shareData['network_id'] = $value->networkId;
|
1959 |
if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1) {
|
1960 |
$new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
|
1961 |
}
|
1962 |
+
if ((int) $_POST['networkId'] == 12) {
|
1963 |
+
$new_template[$type]['shuffleHashtags'] = ((isset($data['shuffleHashtags']) && $data['shuffleHashtags'] == 'true') ? true : false);
|
1964 |
+
}
|
1965 |
}
|
1966 |
|
1967 |
$post_template[$_POST['networkId']] = $new_template;
|
includes/B2S/AutoPost.php
CHANGED
@@ -18,6 +18,7 @@ class B2S_AutoPost {
|
|
18 |
private $allowHashTag;
|
19 |
private $userVersion;
|
20 |
private $allowHtml = array(4, 11, 14);
|
|
|
21 |
|
22 |
function __construct($postId = 0, $blogPostData = array(), $current_user_date = '0000-00-00 00:00:00', $myTimeSettings = false, $title = '', $content = '', $excerpt = '', $url = '', $imageUrl = '', $keywords = '', $b2sPostLang = 'en', $optionPostFormat = array(), $allowHashTag = true, $userVersion = 0) {
|
23 |
$this->postId = $postId;
|
@@ -36,6 +37,7 @@ class B2S_AutoPost {
|
|
36 |
$this->allowHashTag = $allowHashTag;
|
37 |
$this->setPreFillText = array(0 => array(6 => 300, 8 => 239, 9 => 200, 10 => 442, 16 => 250, 17 => 442, 18 => 800, 21 => 65000), 1 => array(8 => 1200, 10 => 442, 17 => 442, 19 => 239), 2 => array(8 => 239, 10 => 442, 17 => 442, 19 => 239), 20 => 300);
|
38 |
$this->setPreFillTextLimit = array(0 => array(6 => 400, 8 => 400, 9 => 200, 10 => 500, 18 => 1000, 20 => 400, 16 => false, 21 => 65535), 1 => array(8 => 1200, 10 => 500, 19 => 400), 2 => array(8 => 400, 10 => 500, 19 => 9000));
|
|
|
39 |
}
|
40 |
|
41 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $networkKind = 0) {
|
@@ -44,7 +46,7 @@ class B2S_AutoPost {
|
|
44 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
45 |
|
46 |
if ((int) $this->userVersion < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])) {
|
47 |
-
$tempOptionPostFormat =
|
48 |
} else {
|
49 |
$tempOptionPostFormat = $this->optionPostFormat;
|
50 |
}
|
@@ -53,12 +55,11 @@ class B2S_AutoPost {
|
|
53 |
if($networkId == 19 && $networkType == 1) {
|
54 |
if(!isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][0]['limit'])) {
|
55 |
if(isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) {
|
56 |
-
$default_template
|
57 |
-
|
58 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text'] = array(0 => $tempOptionPostFormat[$networkId][$networkType]['short_text'], 4 => $default_template[$networkId][$networkType]['short_text'][4]);
|
59 |
}
|
60 |
} else {
|
61 |
-
$tempOptionPostFormat =
|
62 |
}
|
63 |
}
|
64 |
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'] : 0;
|
@@ -67,12 +68,11 @@ class B2S_AutoPost {
|
|
67 |
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'] : 0;
|
68 |
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'] : 0;
|
69 |
} else {
|
70 |
-
$
|
71 |
-
|
72 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
73 |
}
|
74 |
-
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min']) && isset($
|
75 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $
|
76 |
}
|
77 |
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'] : 0;
|
78 |
$content_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'] : 0;
|
@@ -88,8 +88,7 @@ class B2S_AutoPost {
|
|
88 |
$postData['post_format'] = (int) $tempOptionPostFormat[$networkId][$networkType]['format'];
|
89 |
} else {
|
90 |
//Set: default settings
|
91 |
-
$
|
92 |
-
$postData['post_format'] = isset($defaultPostFormat[$networkId][$networkType]['format']) ? (int) $defaultPostFormat[$networkId][$networkType]['format'] : 0;
|
93 |
}
|
94 |
}
|
95 |
//Special
|
@@ -111,8 +110,12 @@ class B2S_AutoPost {
|
|
111 |
|
112 |
$hashtagcount = substr_count($postData['content'], '#');
|
113 |
if (strpos($postData['content'], "{KEYWORDS}") !== false) {
|
114 |
-
$
|
115 |
-
|
|
|
|
|
|
|
|
|
116 |
}
|
117 |
|
118 |
$authorId = get_post_field('post_author', $this->postId);
|
@@ -232,10 +235,13 @@ class B2S_AutoPost {
|
|
232 |
return false;
|
233 |
}
|
234 |
|
235 |
-
private function getHashTagsString($add = "\n\n", $limit = -1) {// limit = -1 => no limit
|
236 |
if ($limit != 0) {
|
237 |
$hashTags = '';
|
238 |
if (is_array($this->keywords) && !empty($this->keywords)) {
|
|
|
|
|
|
|
239 |
foreach ($this->keywords as $tag) {
|
240 |
$hashTags .= ' #' . str_replace(array(" ", "-", '"', "'", "!", "?", ",", ".", ";", ":"), "", $tag->name);
|
241 |
}
|
18 |
private $allowHashTag;
|
19 |
private $userVersion;
|
20 |
private $allowHtml = array(4, 11, 14);
|
21 |
+
private $default_template;
|
22 |
|
23 |
function __construct($postId = 0, $blogPostData = array(), $current_user_date = '0000-00-00 00:00:00', $myTimeSettings = false, $title = '', $content = '', $excerpt = '', $url = '', $imageUrl = '', $keywords = '', $b2sPostLang = 'en', $optionPostFormat = array(), $allowHashTag = true, $userVersion = 0) {
|
24 |
$this->postId = $postId;
|
37 |
$this->allowHashTag = $allowHashTag;
|
38 |
$this->setPreFillText = array(0 => array(6 => 300, 8 => 239, 9 => 200, 10 => 442, 16 => 250, 17 => 442, 18 => 800, 21 => 65000), 1 => array(8 => 1200, 10 => 442, 17 => 442, 19 => 239), 2 => array(8 => 239, 10 => 442, 17 => 442, 19 => 239), 20 => 300);
|
39 |
$this->setPreFillTextLimit = array(0 => array(6 => 400, 8 => 400, 9 => 200, 10 => 500, 18 => 1000, 20 => 400, 16 => false, 21 => 65535), 1 => array(8 => 1200, 10 => 500, 19 => 400), 2 => array(8 => 400, 10 => 500, 19 => 9000));
|
40 |
+
$this->default_template = (defined('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT')) ? unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT) : false;
|
41 |
}
|
42 |
|
43 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $networkKind = 0) {
|
46 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
47 |
|
48 |
if ((int) $this->userVersion < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])) {
|
49 |
+
$tempOptionPostFormat = $this->default_template;
|
50 |
} else {
|
51 |
$tempOptionPostFormat = $this->optionPostFormat;
|
52 |
}
|
55 |
if($networkId == 19 && $networkType == 1) {
|
56 |
if(!isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][0]['limit'])) {
|
57 |
if(isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) {
|
58 |
+
if(isset($this->default_template[$networkId][$networkType]['short_text'][4])) {
|
59 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text'] = array(0 => $tempOptionPostFormat[$networkId][$networkType]['short_text'], 4 => $this->default_template[$networkId][$networkType]['short_text'][4]);
|
|
|
60 |
}
|
61 |
} else {
|
62 |
+
$tempOptionPostFormat = $this->default_template;
|
63 |
}
|
64 |
}
|
65 |
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'] : 0;
|
68 |
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'] : 0;
|
69 |
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'] : 0;
|
70 |
} else {
|
71 |
+
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']) && isset($this->default_template[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
72 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $this->default_template[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
|
|
73 |
}
|
74 |
+
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min']) && isset($this->default_template[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
75 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $this->default_template[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
76 |
}
|
77 |
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'] : 0;
|
78 |
$content_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'] : 0;
|
88 |
$postData['post_format'] = (int) $tempOptionPostFormat[$networkId][$networkType]['format'];
|
89 |
} else {
|
90 |
//Set: default settings
|
91 |
+
$postData['post_format'] = isset($this->default_template[$networkId][$networkType]['format']) ? (int) $this->default_template[$networkId][$networkType]['format'] : 0;
|
|
|
92 |
}
|
93 |
}
|
94 |
//Special
|
110 |
|
111 |
$hashtagcount = substr_count($postData['content'], '#');
|
112 |
if (strpos($postData['content'], "{KEYWORDS}") !== false) {
|
113 |
+
if($this->default_template != false && isset($this->default_template[$networkId][$networkType]['disableKeywords']) && $this->default_template[$networkId][$networkType]['disableKeywords'] == true) {
|
114 |
+
$postData['content'] = preg_replace("/\{KEYWORDS\}/", '', $postData['content']);
|
115 |
+
} else {
|
116 |
+
$hashtags = ($this->allowHashTag) ? $this->getHashTagsString("", (($networkId == 12) ? 30 - $hashtagcount : -1), ((isset($tempOptionPostFormat[$networkId][$networkType]['shuffleHashtags']) && $tempOptionPostFormat[$networkId][$networkType]['shuffleHashtags'] == true) ? true : false)) : '';
|
117 |
+
$postData['content'] = preg_replace("/\{KEYWORDS\}/", addcslashes($hashtags, "\\$"), $postData['content']);
|
118 |
+
}
|
119 |
}
|
120 |
|
121 |
$authorId = get_post_field('post_author', $this->postId);
|
235 |
return false;
|
236 |
}
|
237 |
|
238 |
+
private function getHashTagsString($add = "\n\n", $limit = -1, $shuffle = false) {// limit = -1 => no limit
|
239 |
if ($limit != 0) {
|
240 |
$hashTags = '';
|
241 |
if (is_array($this->keywords) && !empty($this->keywords)) {
|
242 |
+
if ($shuffle) {
|
243 |
+
shuffle($this->keywords);
|
244 |
+
}
|
245 |
foreach ($this->keywords as $tag) {
|
246 |
$hashTags .= ' #' . str_replace(array(" ", "-", '"', "'", "!", "?", ",", ".", ";", ":"), "", $tag->name);
|
247 |
}
|
includes/B2S/AutoPost/Item.php
CHANGED
@@ -76,7 +76,7 @@ class B2S_AutoPost_Item {
|
|
76 |
$content .='<div class="col-md-12"><div class="panel panel-group b2s-auto-post-own-update-warning" style="display: none;"><div class="panel-body"><span class="glyphicon glyphicon-exclamation-sign glyphicon-warning"></span> ' . esc_html__('By enabling this feature your previously published social media posts will be sent again to your selected social media channels as soon as the post is updated.', 'blog2social') . '</div></div></div>';
|
77 |
$content .='<div class"clearfix"></div>';
|
78 |
$content .='<div class="col-xs-12 col-md-2">';
|
79 |
-
$content .='<label class="b2s-auto-post-update-label">' . esc_html__('
|
80 |
$content .='<br><small><button class="btn btn-link btn-xs hidden-xs b2s-post-type-select-btn" data-post-type="update" data-select-toogle-state="0" data-select-toogle-name="' . esc_html__('Unselect all', 'blog2social') . '">' . esc_html__('Select all', 'blog2social') . '</button></small>';
|
81 |
$content .='</div>';
|
82 |
$content .='<div class="col-xs-12 col-md-6">';
|
@@ -86,7 +86,7 @@ class B2S_AutoPost_Item {
|
|
86 |
$content .='<br>';
|
87 |
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
88 |
$content .='<div class="col-md-12">';
|
89 |
-
$content .='<input id="b2s-auto-post-best-times" class="b2s-auto-post-best-times" name="b2s-auto-post-best-times" type="checkbox" value="1" '.((isset($optionAutoPost['best_times']) && (int) $optionAutoPost['best_times'] == 1) ? 'checked' : '').'><label for="b2s-auto-post-best-times"> ' . esc_html__('Apply best times', 'blog2social') . '</label>';
|
90 |
$content .='</div>';
|
91 |
$content .='</div>';
|
92 |
|
@@ -104,7 +104,7 @@ class B2S_AutoPost_Item {
|
|
104 |
$content .='<br>';
|
105 |
$content .='<div class="row">';
|
106 |
$content .='<div class="col-md-12">';
|
107 |
-
$content .='<span class="b2s-bold">'.esc_html__('
|
108 |
$content .='<a class="b2sInfoAssignAutoPostBtn" href="#">'.esc_html__('Info', 'blog2social').'</a><br>';
|
109 |
$content .='<select name="b2s-auto-post-assign-user-data[]" multiple="" data-placeholder="Select User" class="b2s-auto-post-assign-user">';
|
110 |
foreach ($networkAuthAssignment['userList'] as $k => $listUser) {
|
76 |
$content .='<div class="col-md-12"><div class="panel panel-group b2s-auto-post-own-update-warning" style="display: none;"><div class="panel-body"><span class="glyphicon glyphicon-exclamation-sign glyphicon-warning"></span> ' . esc_html__('By enabling this feature your previously published social media posts will be sent again to your selected social media channels as soon as the post is updated.', 'blog2social') . '</div></div></div>';
|
77 |
$content .='<div class"clearfix"></div>';
|
78 |
$content .='<div class="col-xs-12 col-md-2">';
|
79 |
+
$content .='<label class="b2s-auto-post-update-label">' . esc_html__('updated posts', 'blog2social') . '</label>';
|
80 |
$content .='<br><small><button class="btn btn-link btn-xs hidden-xs b2s-post-type-select-btn" data-post-type="update" data-select-toogle-state="0" data-select-toogle-name="' . esc_html__('Unselect all', 'blog2social') . '">' . esc_html__('Select all', 'blog2social') . '</button></small>';
|
81 |
$content .='</div>';
|
82 |
$content .='<div class="col-xs-12 col-md-6">';
|
86 |
$content .='<br>';
|
87 |
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
88 |
$content .='<div class="col-md-12">';
|
89 |
+
$content .='<input id="b2s-auto-post-best-times" class="b2s-auto-post-best-times" name="b2s-auto-post-best-times" type="checkbox" value="1" '.((isset($optionAutoPost['best_times']) && (int) $optionAutoPost['best_times'] == 1) ? 'checked' : '').'><label for="b2s-auto-post-best-times"> ' . esc_html__('Apply best times', 'blog2social') . '</label> <a href="#" class="b2sAutoPostBestTimesInfoModalBtn">Info</a>';
|
90 |
$content .='</div>';
|
91 |
$content .='</div>';
|
92 |
|
104 |
$content .='<br>';
|
105 |
$content .='<div class="row">';
|
106 |
$content .='<div class="col-md-12">';
|
107 |
+
$content .='<span class="b2s-bold">'.esc_html__('Transfer Auto-Poster settings to other users', 'blog2social').' </span>';
|
108 |
$content .='<a class="b2sInfoAssignAutoPostBtn" href="#">'.esc_html__('Info', 'blog2social').'</a><br>';
|
109 |
$content .='<select name="b2s-auto-post-assign-user-data[]" multiple="" data-placeholder="Select User" class="b2s-auto-post-assign-user">';
|
110 |
foreach ($networkAuthAssignment['userList'] as $k => $listUser) {
|
includes/B2S/Network/Item.php
CHANGED
@@ -134,7 +134,7 @@ class B2S_Network_Item {
|
|
134 |
}
|
135 |
if (isset($this->bestTimeInfo[$networkId]) && !empty($this->bestTimeInfo[$networkId]) && is_array($this->bestTimeInfo[$networkId]) && $networkId != 8) {
|
136 |
$time = '';
|
137 |
-
$slug = ($this->lang == 'de') ? __('
|
138 |
foreach ($this->bestTimeInfo[$networkId] as $k => $v) {
|
139 |
$time .= B2S_Util::getTimeByLang($v[0], $this->lang) . '-' . B2S_Util::getTimeByLang($v[1], $this->lang) . $slug . ', ';
|
140 |
}
|
@@ -215,7 +215,7 @@ class B2S_Network_Item {
|
|
215 |
$html.= '<div class="b2s-network-auth-list-info"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('To reactivate this connection,', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '"target="_blank">' . esc_html__('please upgrade', 'blog2social') . '</a></div>';
|
216 |
}
|
217 |
if ($isInterrupted && !$notAllow) {
|
218 |
-
$html.= '<div class="b2s-network-auth-list-info" data-b2s-auth-info="isInterrupted"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('
|
219 |
}
|
220 |
if ($v['owner_blog_user_id'] !== false) {
|
221 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
@@ -281,7 +281,7 @@ class B2S_Network_Item {
|
|
281 |
$html.= '<div class="b2s-network-auth-list-info"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('To reactivate this connection,', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '"target="_blank">' . esc_html__('please upgrade', 'blog2social') . '</a></div>';
|
282 |
}
|
283 |
if ($isInterrupted && !$notAllow) {
|
284 |
-
$html.= '<div class="b2s-network-auth-list-info" data-b2s-auth-info="isInterrupted">' . esc_html__('
|
285 |
}
|
286 |
if ($v['owner_blog_user_id'] !== false) {
|
287 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
@@ -352,7 +352,7 @@ class B2S_Network_Item {
|
|
352 |
$html.= '<div class="b2s-network-auth-list-info"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('To reactivate this connection,', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '"target="_blank">' . esc_html__('please upgrade', 'blog2social') . '</a></div>';
|
353 |
}
|
354 |
if ($isInterrupted && !$notAllow) {
|
355 |
-
$html.= '<div class="b2s-network-auth-list-info" data-b2s-auth-info="isInterrupted">' . esc_html__('
|
356 |
}
|
357 |
if ($v['owner_blog_user_id'] !== false) {
|
358 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
@@ -727,7 +727,7 @@ class B2S_Network_Item {
|
|
727 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-title b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{TITLE}</button>'
|
728 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-excerpt b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{EXCERPT}</button>'
|
729 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-content b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{CONTENT}</button>'
|
730 |
-
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-keywords b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{KEYWORDS}</button>'
|
731 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-author b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{AUTHOR}</button>'
|
732 |
. '<button type="button" class="btn btn-primary btn-xs b2s-edit-template-content-clear-btn pull-right" data-network-type="' . esc_attr($networkType) . '">' . esc_html__('clear', 'blog2social') . '</button>'
|
733 |
. '</div>';
|
@@ -739,7 +739,15 @@ class B2S_Network_Item {
|
|
739 |
$content .= '<div class="row">';
|
740 |
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
741 |
if($networkId != 12 && $networkId != 1) {
|
742 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
743 |
$content .= '<br>';
|
744 |
}
|
745 |
if ((int) $limit != 0) {
|
@@ -761,6 +769,11 @@ class B2S_Network_Item {
|
|
761 |
$content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" '.((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"').' id="b2s-edit-template-enable-link"><label for="b2s-edit-template-enable-link"> ' . esc_html__('Add a link-URL to the end of my Instagram posts. (Please note, that Instagram does not turn link-URLs into clickable links)', 'blog2social') . '</label>';
|
762 |
$content .= '</div>';
|
763 |
$content .= '</div>';
|
|
|
|
|
|
|
|
|
|
|
764 |
}
|
765 |
$content .= '<br>';
|
766 |
$content .= '<div class="row">';
|
@@ -1332,13 +1345,11 @@ class B2S_Network_Item {
|
|
1332 |
$preview .= '</div>';
|
1333 |
$preview .= '<div class="col-sm-8 b2s-edit-template-preview-border">';
|
1334 |
$preview .= '<div class="row">';
|
1335 |
-
$preview .= '<div class="col-sm-
|
1336 |
$preview .= '<p class="b2s-edit-template-preview-title b2s-edit-template-preview-title-15" data-network-type="' . esc_attr($networkType) . '">TITLE</p>';
|
|
|
1337 |
$preview .= '<a class="b2s-edit-template-preview-link b2s-edit-template-preview-link-15" data-network-type="' . esc_attr($networkType) . '">' . $domain . '</a>';
|
1338 |
$preview .= '</div>';
|
1339 |
-
$preview .= '<div class="col-sm-4">';
|
1340 |
-
$preview .= '<img class="b2s-edit-template-preview-image-image b2s-edit-template-preview-image-image-15" src="' . $this->previewImage . '">';
|
1341 |
-
$preview .= '</div>';
|
1342 |
$preview .= '</div>';
|
1343 |
$preview .= '</div>';
|
1344 |
$preview .= '</div>';
|
134 |
}
|
135 |
if (isset($this->bestTimeInfo[$networkId]) && !empty($this->bestTimeInfo[$networkId]) && is_array($this->bestTimeInfo[$networkId]) && $networkId != 8) {
|
136 |
$time = '';
|
137 |
+
$slug = ($this->lang == 'de') ? __('Clock', 'blog2social') : '';
|
138 |
foreach ($this->bestTimeInfo[$networkId] as $k => $v) {
|
139 |
$time .= B2S_Util::getTimeByLang($v[0], $this->lang) . '-' . B2S_Util::getTimeByLang($v[1], $this->lang) . $slug . ', ';
|
140 |
}
|
215 |
$html.= '<div class="b2s-network-auth-list-info"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('To reactivate this connection,', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '"target="_blank">' . esc_html__('please upgrade', 'blog2social') . '</a></div>';
|
216 |
}
|
217 |
if ($isInterrupted && !$notAllow) {
|
218 |
+
$html.= '<div class="b2s-network-auth-list-info" data-b2s-auth-info="isInterrupted"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('Connection is interrupted since', 'blog2social') . ' ' . esc_html(($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate'])))) . '</div>';
|
219 |
}
|
220 |
if ($v['owner_blog_user_id'] !== false) {
|
221 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
281 |
$html.= '<div class="b2s-network-auth-list-info"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('To reactivate this connection,', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '"target="_blank">' . esc_html__('please upgrade', 'blog2social') . '</a></div>';
|
282 |
}
|
283 |
if ($isInterrupted && !$notAllow) {
|
284 |
+
$html.= '<div class="b2s-network-auth-list-info" data-b2s-auth-info="isInterrupted">' . esc_html__('Connection is interrupted since', 'blog2social') . ' ' . esc_html(($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate'])))) . '</div>';
|
285 |
}
|
286 |
if ($v['owner_blog_user_id'] !== false) {
|
287 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
352 |
$html.= '<div class="b2s-network-auth-list-info"><span class="glyphicon glyphicon-remove-circle"></span> ' . esc_html__('To reactivate this connection,', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '"target="_blank">' . esc_html__('please upgrade', 'blog2social') . '</a></div>';
|
353 |
}
|
354 |
if ($isInterrupted && !$notAllow) {
|
355 |
+
$html.= '<div class="b2s-network-auth-list-info" data-b2s-auth-info="isInterrupted">' . esc_html__('Connection is interrupted since', 'blog2social') . ' ' . esc_html(($sprache == 'en' ? $v['expiredDate'] : date('d.m.Y', strtotime($v['expiredDate'])))) . '</div>';
|
356 |
}
|
357 |
if ($v['owner_blog_user_id'] !== false) {
|
358 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
727 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-title b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{TITLE}</button>'
|
728 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-excerpt b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{EXCERPT}</button>'
|
729 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-content b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{CONTENT}</button>'
|
730 |
+
. ((isset($defaultTemplate[$networkId][$networkType]['disableKeywords']) && $defaultTemplate[$networkId][$networkType]['disableKeywords'] == true) ? '' : '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-keywords b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{KEYWORDS}</button>')
|
731 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-author b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{AUTHOR}</button>'
|
732 |
. '<button type="button" class="btn btn-primary btn-xs b2s-edit-template-content-clear-btn pull-right" data-network-type="' . esc_attr($networkType) . '">' . esc_html__('clear', 'blog2social') . '</button>'
|
733 |
. '</div>';
|
739 |
$content .= '<div class="row">';
|
740 |
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
741 |
if($networkId != 12 && $networkId != 1) {
|
742 |
+
if($networkId == 11) {
|
743 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The link will be transmitted as a canonical link, i.e. in the source code of your page, in order to refer to the original source of the content and to increase the reach from search engines like Google.', 'blog2social');
|
744 |
+
} else {
|
745 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The link will be added automatically at the end of the post.', 'blog2social');
|
746 |
+
}
|
747 |
+
$content .= '<br>';
|
748 |
+
}
|
749 |
+
if(isset($defaultTemplate[$networkId][$networkType]['disableKeywords']) && $defaultTemplate[$networkId][$networkType]['disableKeywords'] == true) {
|
750 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The network does not support hashtags.', 'blog2social');
|
751 |
$content .= '<br>';
|
752 |
}
|
753 |
if ((int) $limit != 0) {
|
769 |
$content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" '.((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"').' id="b2s-edit-template-enable-link"><label for="b2s-edit-template-enable-link"> ' . esc_html__('Add a link-URL to the end of my Instagram posts. (Please note, that Instagram does not turn link-URLs into clickable links)', 'blog2social') . '</label>';
|
770 |
$content .= '</div>';
|
771 |
$content .= '</div>';
|
772 |
+
$content .= '<div class="row">';
|
773 |
+
$content .= '<div class="col-md-12">';
|
774 |
+
$content .= '<input class="b2s-edit-template-shuffle-hashtags" data-network-type="' . esc_attr($networkType) . '" type="checkbox" '.((isset($schema[$networkType]['shuffleHashtags']) && $schema[$networkType]['shuffleHashtags'] == true) ? 'checked="checked"' : '').' id="b2s-edit-template-shuffle-hashtags"><label for="b2s-edit-template-shuffle-hashtags"> ' . esc_html__('Hashtag shuffle (Hashtags have to be defined in the text field above)', 'blog2social') . '</label>';
|
775 |
+
$content .= '</div>';
|
776 |
+
$content .= '</div>';
|
777 |
}
|
778 |
$content .= '<br>';
|
779 |
$content .= '<div class="row">';
|
1345 |
$preview .= '</div>';
|
1346 |
$preview .= '<div class="col-sm-8 b2s-edit-template-preview-border">';
|
1347 |
$preview .= '<div class="row">';
|
1348 |
+
$preview .= '<div class="col-sm-12">';
|
1349 |
$preview .= '<p class="b2s-edit-template-preview-title b2s-edit-template-preview-title-15" data-network-type="' . esc_attr($networkType) . '">TITLE</p>';
|
1350 |
+
$preview .= '<p class="b2s-edit-template-preview-content" data-network-type="' . esc_attr($networkType) . '">CONTENT</p>';
|
1351 |
$preview .= '<a class="b2s-edit-template-preview-link b2s-edit-template-preview-link-15" data-network-type="' . esc_attr($networkType) . '">' . $domain . '</a>';
|
1352 |
$preview .= '</div>';
|
|
|
|
|
|
|
1353 |
$preview .= '</div>';
|
1354 |
$preview .= '</div>';
|
1355 |
$preview .= '</div>';
|
includes/B2S/Post/Item.php
CHANGED
@@ -401,7 +401,7 @@ class B2S_Post_Item {
|
|
401 |
$curated = (strtolower($var->post_type) == 'b2s_ex_post') ? ' - <strong>' . esc_html__('curated post', 'blog2social') . '</strong>' : '';
|
402 |
|
403 |
if ($this->type == 'all') {
|
404 |
-
$
|
405 |
$lastPublish = $this->getLastPublish($var->ID);
|
406 |
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
407 |
|
@@ -421,7 +421,7 @@ class B2S_Post_Item {
|
|
421 |
'<span class="pull-right b2s-publish-btn">
|
422 |
<a class="btn btn-default btn-sm loadDraftBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . (!empty($selectSchedDate) ? '&schedDate=' . $selectSchedDate : '') . '&type=draft">' . esc_html__('load Draft', 'blog2social') . '</a>
|
423 |
</span>' : '')
|
424 |
-
. '<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((
|
425 |
</div>
|
426 |
</div>
|
427 |
</li>';
|
@@ -430,7 +430,7 @@ class B2S_Post_Item {
|
|
430 |
if ($this->type == 'publish' || $this->type == 'notice') {
|
431 |
$countPublish = $this->getPostCount($var->ID);
|
432 |
$lastPublish = $this->getLastPost($var->ID);
|
433 |
-
$
|
434 |
$this->postItem .= '<li class="list-group-item">
|
435 |
<div class="media">
|
436 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
@@ -441,7 +441,7 @@ class B2S_Post_Item {
|
|
441 |
<a class="btn btn-primary hidden-xs btn-sm" href="admin.php?page=blog2social-ship&postId=' . $var->ID . '">' . esc_html__('Re-share this post', 'blog2social') . '</a>
|
442 |
<button type="button" class="btn btn-primary btn-sm b2sDetailsPublishPostBtn" data-search-date="' . esc_attr($this->searchShowByDate) . '" data-post-id="' . esc_attr($var->ID) . '"><i class="glyphicon glyphicon-chevron-down"></i> ' . esc_html__('Details', 'blog2social') . '</button>
|
443 |
</span>
|
444 |
-
<p class="info hidden-xs"><a class="b2sDetailsPublishPostTriggerLink" href="#"><span class="b2s-publish-count" data-post-id="' . esc_attr($var->ID) . '">' . esc_html($countPublish) . '</span> ' . esc_html__('shared social media posts', 'blog2social') . '</a> | ' . sprintf(esc_html__('latest share by %s', 'blog2social'), '<a href="' . esc_url(get_author_posts_url($lastPublish['user'])) . '">' . esc_html((
|
445 |
</div>
|
446 |
<div class="pull-left">
|
447 |
<div class="b2s-post-publish-area" data-post-id="' . esc_attr($var->ID) . '"></div>
|
@@ -454,7 +454,7 @@ class B2S_Post_Item {
|
|
454 |
if ($this->type == 'sched') {
|
455 |
$schedPublish = $this->getPostCount($var->ID);
|
456 |
$nextSched = $this->getLastPost($var->ID);
|
457 |
-
$
|
458 |
|
459 |
$this->postItem .= '<li class="list-group-item">
|
460 |
<div class="media">
|
@@ -465,7 +465,7 @@ class B2S_Post_Item {
|
|
465 |
<span class="pull-right">
|
466 |
<button type="button" class="btn btn-primary btn-sm b2sDetailsSchedPostBtn" data-search-network="' . esc_attr($this->searchShowByNetwork) . '" data-search-date="' . esc_attr($this->searchShowByDate) . '" data-post-id="' . esc_attr($var->ID) . '"><i class="glyphicon glyphicon-chevron-down"></i> ' . esc_html__('Details', 'blog2social') . '</button>
|
467 |
</span>
|
468 |
-
<p class="info hidden-xs"><a class="b2sDetailsSchedPostTriggerLink" href="#"><span class="b2s-sched-count" data-post-id="' . esc_attr($var->ID) . '">' . esc_html($schedPublish) . '</span> ' . esc_html__('scheduled social media posts', 'blog2social') . '</a> | ' . sprintf(esc_html__('next share by %s', 'blog2social'), '<a href="' . esc_url(get_author_posts_url($nextSched['user'])) . '">' . esc_html((
|
469 |
</div>
|
470 |
<div class="pull-left">
|
471 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
@@ -476,7 +476,7 @@ class B2S_Post_Item {
|
|
476 |
}
|
477 |
|
478 |
if ($this->type == 'approve') {
|
479 |
-
$
|
480 |
$countApprove = $this->getPostCount($var->ID);
|
481 |
$this->postItem .= '<li class="list-group-item">
|
482 |
<div class="media">
|
@@ -499,7 +499,7 @@ class B2S_Post_Item {
|
|
499 |
|
500 |
if ($this->type == 'draft') {
|
501 |
$browser = (get_post_meta($var->ID, "b2s_source", true) == "b2s_browser_extension") ? ' - <strong>' . esc_html__('via Browser-Extension', 'blog2social') . '</strong>' : '';
|
502 |
-
$
|
503 |
$lastPublish = $this->getLastPublish($var->ID);
|
504 |
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
505 |
$url = (!empty($browser)) ? get_post_meta($var->ID, "b2s_original_url", true) : $var->guid;
|
@@ -520,14 +520,14 @@ class B2S_Post_Item {
|
|
520 |
<span class="pull-right">
|
521 |
<button class="btn btn-default btn-sm deleteCcDraftBtn" data-blog-post-id="' . esc_attr($var->ID) . '"><span class="glyphicon glyphicon glyphicon-trash "></span> ' . esc_html__('delete', 'blog2social') . '</button>
|
522 |
</span>
|
523 |
-
<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((
|
524 |
</div>
|
525 |
</div>
|
526 |
</li>';
|
527 |
}
|
528 |
|
529 |
if ($this->type == 'draft-post') {
|
530 |
-
$
|
531 |
|
532 |
$this->postItem .= '<li class="list-group-item b2s-draft-list-entry" data-b2s-draft-id="' . esc_attr($var->draft_id) . '">
|
533 |
<div class="media">
|
@@ -540,14 +540,14 @@ class B2S_Post_Item {
|
|
540 |
<span class="pull-right">
|
541 |
<a class="btn btn-default btn-sm deleteDraftBtn" data-b2s-draft-id="' . esc_attr($var->draft_id) . '">' . esc_html__('delete', 'blog2social') . '</a>
|
542 |
</span>
|
543 |
-
<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((
|
544 |
</div>
|
545 |
</div>
|
546 |
</li>';
|
547 |
}
|
548 |
|
549 |
if ($this->type == 'favorites') {
|
550 |
-
$
|
551 |
$lastPublish = $this->getLastPublish($var->ID);
|
552 |
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
553 |
|
@@ -564,7 +564,7 @@ class B2S_Post_Item {
|
|
564 |
'<span class="pull-right b2s-publish-btn">
|
565 |
<a class="btn btn-default btn-sm loadDraftBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . (!empty($selectSchedDate) ? '&schedDate=' . $selectSchedDate : '') . '&type=draft">' . esc_html__('load Draft', 'blog2social') . '</a>
|
566 |
</span>' : '')
|
567 |
-
. '<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((
|
568 |
</div>
|
569 |
</div>
|
570 |
</li>';
|
@@ -573,7 +573,7 @@ class B2S_Post_Item {
|
|
573 |
if ($this->type == 'repost') {
|
574 |
$schedPublish = $this->getPostCount($var->ID);
|
575 |
$nextSched = $this->getLastPost($var->ID);
|
576 |
-
$
|
577 |
|
578 |
$this->postItem .= '<li class="list-group-item" data-type="post">
|
579 |
<div class="media">
|
@@ -585,7 +585,7 @@ class B2S_Post_Item {
|
|
585 |
<button type="button" class="btn btn-primary btn-sm b2sDetailsSchedPostBtn" data-post-id="' . esc_attr($var->ID) . '"><i class="glyphicon glyphicon-chevron-down"></i> ' . esc_html__('Details', 'blog2social') . '</button>
|
586 |
</span>
|
587 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>' . $curated . '
|
588 |
-
<p class="info hidden-xs"><a data-post-id="' . esc_attr($var->ID) . '" class="b2sDetailsSchedPostTriggerLink" href="#"><span class="b2s-sched-count" data-post-id="' . esc_attr($var->ID) . '">' . esc_html($schedPublish) . '</span> ' . esc_html__('scheduled social media posts', 'blog2social') . '</a> | ' . sprintf(esc_html__('next share by %s', 'blog2social'), '<a href="' . esc_url(get_author_posts_url($nextSched['user'])) . '">' . esc_html((
|
589 |
</div>
|
590 |
<div class="pull-left">
|
591 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
@@ -735,7 +735,7 @@ class B2S_Post_Item {
|
|
735 |
}
|
736 |
$publishDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : '';
|
737 |
$publishText = (empty($publishDate)) ? __('sharing in progress by %s', 'blog2social') : __('shared by %s', 'blog2social');
|
738 |
-
$
|
739 |
$content .= ' <li class="list-group-item b2s-post-publish-area-li" data-post-id="' . esc_attr($var->id) . '">
|
740 |
<div class="media">';
|
741 |
|
@@ -752,7 +752,7 @@ class B2S_Post_Item {
|
|
752 |
}
|
753 |
$content .= '<div class="media-body">
|
754 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong> ' . $error . '
|
755 |
-
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')) . ' | ' . sprintf(esc_html($publishText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((
|
756 |
<p class="info">' . $publishLink;
|
757 |
|
758 |
$content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-publish-area-drop-btn" data-post-id="' . esc_attr($var->id) . '">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
@@ -792,14 +792,14 @@ class B2S_Post_Item {
|
|
792 |
foreach ($result as $var) {
|
793 |
$approveDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2));
|
794 |
$approveText = __('is waiting to shared by %s', 'blog2social');
|
795 |
-
$
|
796 |
$content .= ' <li class="list-group-item b2s-post-approve-area-li" data-post-id="' . esc_attr($var->id) . '">
|
797 |
<div class="media">';
|
798 |
$content .= '<input class="checkboxes pull-left checkbox-item" data-blog-post-id="' . esc_attr($post_id) . '" name="selected-checkbox-item" value="' . esc_attr($var->id) . '" type="checkbox">';
|
799 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">';
|
800 |
$content .= '<div class="media-body">
|
801 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong>
|
802 |
-
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')) . ' | ' . sprintf(esc_html($approveText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((
|
803 |
<p class="info">';
|
804 |
|
805 |
$data = array(
|
@@ -864,22 +864,22 @@ class B2S_Post_Item {
|
|
864 |
$blogPostDate = strtotime(get_the_date('Y-m-d H:i:s', $post_id)) . '000';
|
865 |
foreach ($result as $var) {
|
866 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
867 |
-
$
|
868 |
$content .= '<li class="list-group-item b2s-post-sched-area-li" data-post-id="' . esc_attr($var->id) . '">
|
869 |
<div class="media">';
|
870 |
if($this->type != 'repost') {
|
871 |
$content .= '<input class="checkboxes pull-left checkbox-item" data-blog-post-id="' . esc_attr($post_id) . '" name="selected-checkbox-item" value="' . esc_attr($var->id) . '" type="checkbox">';
|
872 |
}
|
873 |
|
874 |
-
$
|
875 |
-
$lastEdit = (!empty($
|
876 |
|
877 |
$schedInProcess = ($var->sched_date_utc <= gmdate('Y-m-d H:i:s')) ? ' <span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' . esc_html__('is currently being processed by the network', 'blog2social') : '';
|
878 |
|
879 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
880 |
<div class="media-body">
|
881 |
<strong>' . esc_html($networkName[$var->network_id]) . $schedInProcess . '</strong>
|
882 |
-
<p class="info">' . esc_html($networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' )) . ' | ' . sprintf(esc_html__('scheduled by %s', 'blog2social'), ' <a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((
|
883 |
<p class="info">';
|
884 |
|
885 |
if ((int) $var->v2_id == 0 && empty($schedInProcess)) {
|
401 |
$curated = (strtolower($var->post_type) == 'b2s_ex_post') ? ' - <strong>' . esc_html__('curated post', 'blog2social') . '</strong>' : '';
|
402 |
|
403 |
if ($this->type == 'all') {
|
404 |
+
$userInfoName = get_the_author_meta('display_name', $var->post_author);
|
405 |
$lastPublish = $this->getLastPublish($var->ID);
|
406 |
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
407 |
|
421 |
'<span class="pull-right b2s-publish-btn">
|
422 |
<a class="btn btn-default btn-sm loadDraftBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . (!empty($selectSchedDate) ? '&schedDate=' . $selectSchedDate : '') . '&type=draft">' . esc_html__('load Draft', 'blog2social') . '</a>
|
423 |
</span>' : '')
|
424 |
+
. '<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a> | ' . esc_html($postStatus[trim(strtolower($var->post_status))] . ' ' . __('on blog', 'blog2social')) . ': ' . esc_html(B2S_Util::getCustomDateFormat($var->post_date, substr(B2S_LANGUAGE, 0, 2)) . $lastPublish) . '</p>
|
425 |
</div>
|
426 |
</div>
|
427 |
</li>';
|
430 |
if ($this->type == 'publish' || $this->type == 'notice') {
|
431 |
$countPublish = $this->getPostCount($var->ID);
|
432 |
$lastPublish = $this->getLastPost($var->ID);
|
433 |
+
$userInfoName = get_the_author_meta('display_name', $lastPublish['user']);
|
434 |
$this->postItem .= '<li class="list-group-item">
|
435 |
<div class="media">
|
436 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
441 |
<a class="btn btn-primary hidden-xs btn-sm" href="admin.php?page=blog2social-ship&postId=' . $var->ID . '">' . esc_html__('Re-share this post', 'blog2social') . '</a>
|
442 |
<button type="button" class="btn btn-primary btn-sm b2sDetailsPublishPostBtn" data-search-date="' . esc_attr($this->searchShowByDate) . '" data-post-id="' . esc_attr($var->ID) . '"><i class="glyphicon glyphicon-chevron-down"></i> ' . esc_html__('Details', 'blog2social') . '</button>
|
443 |
</span>
|
444 |
+
<p class="info hidden-xs"><a class="b2sDetailsPublishPostTriggerLink" href="#"><span class="b2s-publish-count" data-post-id="' . esc_attr($var->ID) . '">' . esc_html($countPublish) . '</span> ' . esc_html__('shared social media posts', 'blog2social') . '</a> | ' . sprintf(esc_html__('latest share by %s', 'blog2social'), '<a href="' . esc_url(get_author_posts_url($lastPublish['user'])) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($lastPublish['date'], substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
445 |
</div>
|
446 |
<div class="pull-left">
|
447 |
<div class="b2s-post-publish-area" data-post-id="' . esc_attr($var->ID) . '"></div>
|
454 |
if ($this->type == 'sched') {
|
455 |
$schedPublish = $this->getPostCount($var->ID);
|
456 |
$nextSched = $this->getLastPost($var->ID);
|
457 |
+
$userInfoName = get_the_author_meta('display_name', $nextSched['user']);
|
458 |
|
459 |
$this->postItem .= '<li class="list-group-item">
|
460 |
<div class="media">
|
465 |
<span class="pull-right">
|
466 |
<button type="button" class="btn btn-primary btn-sm b2sDetailsSchedPostBtn" data-search-network="' . esc_attr($this->searchShowByNetwork) . '" data-search-date="' . esc_attr($this->searchShowByDate) . '" data-post-id="' . esc_attr($var->ID) . '"><i class="glyphicon glyphicon-chevron-down"></i> ' . esc_html__('Details', 'blog2social') . '</button>
|
467 |
</span>
|
468 |
+
<p class="info hidden-xs"><a class="b2sDetailsSchedPostTriggerLink" href="#"><span class="b2s-sched-count" data-post-id="' . esc_attr($var->ID) . '">' . esc_html($schedPublish) . '</span> ' . esc_html__('scheduled social media posts', 'blog2social') . '</a> | ' . sprintf(esc_html__('next share by %s', 'blog2social'), '<a href="' . esc_url(get_author_posts_url($nextSched['user'])) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($nextSched['date'], substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
469 |
</div>
|
470 |
<div class="pull-left">
|
471 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
476 |
}
|
477 |
|
478 |
if ($this->type == 'approve') {
|
479 |
+
$userInfoName = get_the_author_meta('display_name', $var->blog_user_id);
|
480 |
$countApprove = $this->getPostCount($var->ID);
|
481 |
$this->postItem .= '<li class="list-group-item">
|
482 |
<div class="media">
|
499 |
|
500 |
if ($this->type == 'draft') {
|
501 |
$browser = (get_post_meta($var->ID, "b2s_source", true) == "b2s_browser_extension") ? ' - <strong>' . esc_html__('via Browser-Extension', 'blog2social') . '</strong>' : '';
|
502 |
+
$userInfoName = get_the_author_meta('display_name', $var->post_author);
|
503 |
$lastPublish = $this->getLastPublish($var->ID);
|
504 |
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
505 |
$url = (!empty($browser)) ? get_post_meta($var->ID, "b2s_original_url", true) : $var->guid;
|
520 |
<span class="pull-right">
|
521 |
<button class="btn btn-default btn-sm deleteCcDraftBtn" data-blog-post-id="' . esc_attr($var->ID) . '"><span class="glyphicon glyphicon glyphicon-trash "></span> ' . esc_html__('delete', 'blog2social') . '</button>
|
522 |
</span>
|
523 |
+
<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a> | ' . esc_html__('saved', 'blog2social') . ': ' . esc_html(B2S_Util::getCustomDateFormat($var->post_date, substr(B2S_LANGUAGE, 0, 2)) . $lastPublish) . '</p>
|
524 |
</div>
|
525 |
</div>
|
526 |
</li>';
|
527 |
}
|
528 |
|
529 |
if ($this->type == 'draft-post') {
|
530 |
+
$userInfoName = get_the_author_meta('display_name', $var->post_author);
|
531 |
|
532 |
$this->postItem .= '<li class="list-group-item b2s-draft-list-entry" data-b2s-draft-id="' . esc_attr($var->draft_id) . '">
|
533 |
<div class="media">
|
540 |
<span class="pull-right">
|
541 |
<a class="btn btn-default btn-sm deleteDraftBtn" data-b2s-draft-id="' . esc_attr($var->draft_id) . '">' . esc_html__('delete', 'blog2social') . '</a>
|
542 |
</span>
|
543 |
+
<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a> | ' . esc_html__('last saved', 'blog2social') . ': ' . esc_html(B2S_Util::getCustomDateFormat($var->last_save_date, substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
544 |
</div>
|
545 |
</div>
|
546 |
</li>';
|
547 |
}
|
548 |
|
549 |
if ($this->type == 'favorites') {
|
550 |
+
$userInfoName = get_the_author_meta('display_name', $var->post_author);
|
551 |
$lastPublish = $this->getLastPublish($var->ID);
|
552 |
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
553 |
|
564 |
'<span class="pull-right b2s-publish-btn">
|
565 |
<a class="btn btn-default btn-sm loadDraftBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . (!empty($selectSchedDate) ? '&schedDate=' . $selectSchedDate : '') . '&type=draft">' . esc_html__('load Draft', 'blog2social') . '</a>
|
566 |
</span>' : '')
|
567 |
+
. '<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a> | ' . esc_html($postStatus[trim(strtolower($var->post_status))] . ' ' . __('on blog', 'blog2social')) . ': ' . esc_html(B2S_Util::getCustomDateFormat($var->post_date, substr(B2S_LANGUAGE, 0, 2)) . $lastPublish) . '</p>
|
568 |
</div>
|
569 |
</div>
|
570 |
</li>';
|
573 |
if ($this->type == 'repost') {
|
574 |
$schedPublish = $this->getPostCount($var->ID);
|
575 |
$nextSched = $this->getLastPost($var->ID);
|
576 |
+
$userInfoName = get_the_author_meta('display_name', $nextSched['user']);
|
577 |
|
578 |
$this->postItem .= '<li class="list-group-item" data-type="post">
|
579 |
<div class="media">
|
585 |
<button type="button" class="btn btn-primary btn-sm b2sDetailsSchedPostBtn" data-post-id="' . esc_attr($var->ID) . '"><i class="glyphicon glyphicon-chevron-down"></i> ' . esc_html__('Details', 'blog2social') . '</button>
|
586 |
</span>
|
587 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>' . $curated . '
|
588 |
+
<p class="info hidden-xs"><a data-post-id="' . esc_attr($var->ID) . '" class="b2sDetailsSchedPostTriggerLink" href="#"><span class="b2s-sched-count" data-post-id="' . esc_attr($var->ID) . '">' . esc_html($schedPublish) . '</span> ' . esc_html__('scheduled social media posts', 'blog2social') . '</a> | ' . sprintf(esc_html__('next share by %s', 'blog2social'), '<a href="' . esc_url(get_author_posts_url($nextSched['user'])) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($nextSched['date'], substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
589 |
</div>
|
590 |
<div class="pull-left">
|
591 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
735 |
}
|
736 |
$publishDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : '';
|
737 |
$publishText = (empty($publishDate)) ? __('sharing in progress by %s', 'blog2social') : __('shared by %s', 'blog2social');
|
738 |
+
$userInfoName = get_the_author_meta('display_name', $var->blog_user_id);
|
739 |
$content .= ' <li class="list-group-item b2s-post-publish-area-li" data-post-id="' . esc_attr($var->id) . '">
|
740 |
<div class="media">';
|
741 |
|
752 |
}
|
753 |
$content .= '<div class="media-body">
|
754 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong> ' . $error . '
|
755 |
+
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')) . ' | ' . sprintf(esc_html($publishText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' ' . esc_html($publishDate) . $specialPosting . '</p>
|
756 |
<p class="info">' . $publishLink;
|
757 |
|
758 |
$content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-publish-area-drop-btn" data-post-id="' . esc_attr($var->id) . '">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
792 |
foreach ($result as $var) {
|
793 |
$approveDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2));
|
794 |
$approveText = __('is waiting to shared by %s', 'blog2social');
|
795 |
+
$userInfoName = get_the_author_meta('display_name', $var->blog_user_id);
|
796 |
$content .= ' <li class="list-group-item b2s-post-approve-area-li" data-post-id="' . esc_attr($var->id) . '">
|
797 |
<div class="media">';
|
798 |
$content .= '<input class="checkboxes pull-left checkbox-item" data-blog-post-id="' . esc_attr($post_id) . '" name="selected-checkbox-item" value="' . esc_attr($var->id) . '" type="checkbox">';
|
799 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">';
|
800 |
$content .= '<div class="media-body">
|
801 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong>
|
802 |
+
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')) . ' | ' . sprintf(esc_html($approveText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' ' . esc_html($approveDate) . '</p>
|
803 |
<p class="info">';
|
804 |
|
805 |
$data = array(
|
864 |
$blogPostDate = strtotime(get_the_date('Y-m-d H:i:s', $post_id)) . '000';
|
865 |
foreach ($result as $var) {
|
866 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
867 |
+
$userInfoName = get_the_author_meta('display_name', $var->blog_user_id);
|
868 |
$content .= '<li class="list-group-item b2s-post-sched-area-li" data-post-id="' . esc_attr($var->id) . '">
|
869 |
<div class="media">';
|
870 |
if($this->type != 'repost') {
|
871 |
$content .= '<input class="checkboxes pull-left checkbox-item" data-blog-post-id="' . esc_attr($post_id) . '" name="selected-checkbox-item" value="' . esc_attr($var->id) . '" type="checkbox">';
|
872 |
}
|
873 |
|
874 |
+
$userInfoLastEditName = ((int) $var->last_edit_blog_user_id > 0 && (int) $var->last_edit_blog_user_id != (int) $var->blog_user_id) ? get_the_author_meta('display_name', $var->last_edit_blog_user_id) : '';
|
875 |
+
$lastEdit = (!empty($userInfoLastEditName)) ? ' | ' . sprintf(esc_html__('last modified by %s', 'blog2social'), '<a href="' . get_author_posts_url($var->last_edit_blog_user_id) . '">' . esc_html((!empty($userInfoLastEditName) ? $userInfoLastEditName : '-')) . '</a> | ') : '';
|
876 |
|
877 |
$schedInProcess = ($var->sched_date_utc <= gmdate('Y-m-d H:i:s')) ? ' <span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' . esc_html__('is currently being processed by the network', 'blog2social') : '';
|
878 |
|
879 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
880 |
<div class="media-body">
|
881 |
<strong>' . esc_html($networkName[$var->network_id]) . $schedInProcess . '</strong>
|
882 |
+
<p class="info">' . esc_html($networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' )) . ' | ' . sprintf(esc_html__('scheduled by %s', 'blog2social'), ' <a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' <span class="b2s-post-sched-area-sched-time" data-post-id="' . esc_attr($var->id) . '">' . $lastEdit . esc_html(B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2))) . '</span> ' . $specialPosting . '</p>
|
883 |
<p class="info">';
|
884 |
|
885 |
if ((int) $var->v2_id == 0 && empty($schedInProcess)) {
|
includes/B2S/Post/Tools.php
CHANGED
@@ -123,5 +123,27 @@ class B2S_Post_Tools {
|
|
123 |
}
|
124 |
return array('result' => false);
|
125 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
|
127 |
}
|
123 |
}
|
124 |
return array('result' => false);
|
125 |
}
|
126 |
+
|
127 |
+
public static function countNewNotifications($userId = 0) {
|
128 |
+
if($userId > 0) {
|
129 |
+
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
130 |
+
$options = new B2S_Options($userId);
|
131 |
+
$lastDate = $options->_getOption('lastNotificationUpdate');
|
132 |
+
if($lastDate == false || empty($lastDate)) {
|
133 |
+
$lastDate = '2021-01-04 12:00:00';
|
134 |
+
}
|
135 |
+
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
136 |
+
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
137 |
+
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
138 |
+
$lastDate = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($lastDate, $userTimeZoneOffset)));
|
139 |
+
global $wpdb;
|
140 |
+
$sql = $wpdb->prepare("SELECT count(id) AS noticeCount FROM {$wpdb->prefix}b2s_posts WHERE publish_date > '%s' AND publish_error_code != '' AND blog_user_id = %d", $lastDate, (int) $userId);
|
141 |
+
$row = $wpdb->get_row($sql);
|
142 |
+
if (isset($row->noticeCount)) {
|
143 |
+
return (int) $row->noticeCount;
|
144 |
+
}
|
145 |
+
}
|
146 |
+
return 0;
|
147 |
+
}
|
148 |
|
149 |
}
|
includes/B2S/PostBox.php
CHANGED
@@ -24,17 +24,17 @@ class B2S_PostBox {
|
|
24 |
$shareCount = 0;
|
25 |
$optionAutoPost = $this->userOption->_getOption('auto_post');
|
26 |
$assigned = false;
|
27 |
-
if(isset($optionAutoPost['assignBy']) && (int) $optionAutoPost['assignBy'] > 0 && isset($optionAutoPost['assignProfile']) && (int) $optionAutoPost['assignProfile'] > 0) {
|
28 |
$assignOptions = new B2S_Options($optionAutoPost['assignBy']);
|
29 |
$newOptionAutoPost = $assignOptions->_getOption('auto_post');
|
30 |
$newOptionAutoPost['profile'] = $optionAutoPost['assignProfile'];
|
31 |
-
if(isset($optionAutoPost['assignTwitter']) && (int) $optionAutoPost['assignProfile'] > 0) {
|
32 |
$newOptionAutoPost['twitter'] = $optionAutoPost['assignTwitter'];
|
33 |
}
|
34 |
$optionAutoPost = $newOptionAutoPost;
|
35 |
$assigned = true;
|
36 |
}
|
37 |
-
|
38 |
$optionUserTimeZone = $this->userOption->_getOption('user_time_zone');
|
39 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
40 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
@@ -184,7 +184,7 @@ class B2S_PostBox {
|
|
184 |
<input type="hidden" name="b2s-best-times-default" value="' . ((isset($bestTimesDefault)) ? $bestTimesDefault : '0') . '">
|
185 |
</div>';
|
186 |
}
|
187 |
-
$content .='</div>
|
188 |
</div>';
|
189 |
|
190 |
|
@@ -228,9 +228,9 @@ class B2S_PostBox {
|
|
228 |
- ' . esc_html__('Select individual images per post', 'blog2social') . '<br>
|
229 |
- ' . esc_html__('Reporting & calendar: keep track of your published and scheduled social media posts', 'blog2social') . '<br>
|
230 |
<br>
|
231 |
-
<a target="_blank" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '" class="b2s-btn b2s-btn-success b2s-center-block b2s-btn-none-underline">' . esc_html__('Upgrade to SMART and above', 'blog2social') . '</a>
|
232 |
-
|
233 |
-
<center>' . sprintf(__('or <a target="_blank" href="%s">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)', 'blog2social'), esc_url('https://service.blog2social.com/trial')) . '</center>';
|
234 |
}
|
235 |
$content .= '</p>
|
236 |
</div>
|
@@ -243,7 +243,7 @@ class B2S_PostBox {
|
|
243 |
public function getAdvancedOptions($mandant = array(), $auth = array(), $selectedProfileId = -1, $selectedTwitterId = -1, $bestTimes = false, $show = true) {
|
244 |
$authContent = '';
|
245 |
$content = '';
|
246 |
-
if(!$show) {
|
247 |
$content .= '<div class="panel panel-group b2s-info-assignd-by"><div class="panel-body">';
|
248 |
$content .= '<span>' . esc_html__('A WordPress admin has defined the Auto-Poster settings for you. You can deactivate these settings for your profile in the Auto-Poster settings at any time.', 'blog2social') . '</span>';
|
249 |
$content .= '</div>';
|
@@ -351,7 +351,7 @@ class B2S_PostBox {
|
|
351 |
</select></div>';
|
352 |
$content .= "<input id='b2s-post-meta-box-best-time-settings' class='post-format' name='b2s-post-meta-box-best-time-settings' value='" . serialize($bestTimeSettings) . "' type='hidden'> ";
|
353 |
}
|
354 |
-
if(!$show) {
|
355 |
$content .= '</div>';
|
356 |
}
|
357 |
|
24 |
$shareCount = 0;
|
25 |
$optionAutoPost = $this->userOption->_getOption('auto_post');
|
26 |
$assigned = false;
|
27 |
+
if (isset($optionAutoPost['assignBy']) && (int) $optionAutoPost['assignBy'] > 0 && isset($optionAutoPost['assignProfile']) && (int) $optionAutoPost['assignProfile'] > 0) {
|
28 |
$assignOptions = new B2S_Options($optionAutoPost['assignBy']);
|
29 |
$newOptionAutoPost = $assignOptions->_getOption('auto_post');
|
30 |
$newOptionAutoPost['profile'] = $optionAutoPost['assignProfile'];
|
31 |
+
if (isset($optionAutoPost['assignTwitter']) && (int) $optionAutoPost['assignProfile'] > 0) {
|
32 |
$newOptionAutoPost['twitter'] = $optionAutoPost['assignTwitter'];
|
33 |
}
|
34 |
$optionAutoPost = $newOptionAutoPost;
|
35 |
$assigned = true;
|
36 |
}
|
37 |
+
|
38 |
$optionUserTimeZone = $this->userOption->_getOption('user_time_zone');
|
39 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
40 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
184 |
<input type="hidden" name="b2s-best-times-default" value="' . ((isset($bestTimesDefault)) ? $bestTimesDefault : '0') . '">
|
185 |
</div>';
|
186 |
}
|
187 |
+
$content .= '</div>
|
188 |
</div>';
|
189 |
|
190 |
|
228 |
- ' . esc_html__('Select individual images per post', 'blog2social') . '<br>
|
229 |
- ' . esc_html__('Reporting & calendar: keep track of your published and scheduled social media posts', 'blog2social') . '<br>
|
230 |
<br>
|
231 |
+
<a target="_blank" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '" class="b2s-btn b2s-btn-success b2s-center-block b2s-btn-none-underline">' . esc_html__('Upgrade to SMART and above', 'blog2social') . '</a><br>
|
232 |
+
|
233 |
+
' . ((!get_option('B2S_PLUGIN_DISABLE_TRAIL')) ? '<center>' . sprintf(__('or <a target="_blank" href="%s">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)', 'blog2social'), esc_url('https://service.blog2social.com/trial')) . '</center>' : '');
|
234 |
}
|
235 |
$content .= '</p>
|
236 |
</div>
|
243 |
public function getAdvancedOptions($mandant = array(), $auth = array(), $selectedProfileId = -1, $selectedTwitterId = -1, $bestTimes = false, $show = true) {
|
244 |
$authContent = '';
|
245 |
$content = '';
|
246 |
+
if (!$show) {
|
247 |
$content .= '<div class="panel panel-group b2s-info-assignd-by"><div class="panel-body">';
|
248 |
$content .= '<span>' . esc_html__('A WordPress admin has defined the Auto-Poster settings for you. You can deactivate these settings for your profile in the Auto-Poster settings at any time.', 'blog2social') . '</span>';
|
249 |
$content .= '</div>';
|
351 |
</select></div>';
|
352 |
$content .= "<input id='b2s-post-meta-box-best-time-settings' class='post-format' name='b2s-post-meta-box-best-time-settings' value='" . serialize($bestTimeSettings) . "' type='hidden'> ";
|
353 |
}
|
354 |
+
if (!$show) {
|
355 |
$content .= '</div>';
|
356 |
}
|
357 |
|
includes/B2S/QuickPost.php
CHANGED
@@ -6,10 +6,12 @@ class B2S_QuickPost {
|
|
6 |
private $setPreFillTextLimit = array(0 => array(1 => 500, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 9 => 200, 10 => 500, 12 => 400, 19 => 400), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500, 19 => 400), 2 => array(1 => 400, 8 => 400, 10 => 500, 19 => 9000));
|
7 |
private $content;
|
8 |
private $title;
|
|
|
9 |
|
10 |
public function __construct($content = '', $title = '') {
|
11 |
$this->content = sanitize_textarea_field($content);
|
12 |
$this->title = sanitize_text_field($title);
|
|
|
13 |
}
|
14 |
|
15 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $postFormat = 0) {
|
@@ -20,7 +22,8 @@ class B2S_QuickPost {
|
|
20 |
$postData['post_format'] = $postFormat;
|
21 |
}
|
22 |
//Content
|
23 |
-
$
|
|
|
24 |
if ($networkId == 7 || $networkId == 9 || ($networkId == 8 && $networkType != 0) | ($networkId == 19 && $networkType != 0)) {
|
25 |
$postData['custom_title'] = $this->title;
|
26 |
}
|
6 |
private $setPreFillTextLimit = array(0 => array(1 => 500, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 9 => 200, 10 => 500, 12 => 400, 19 => 400), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500, 19 => 400), 2 => array(1 => 400, 8 => 400, 10 => 500, 19 => 9000));
|
7 |
private $content;
|
8 |
private $title;
|
9 |
+
private $template;
|
10 |
|
11 |
public function __construct($content = '', $title = '') {
|
12 |
$this->content = sanitize_textarea_field($content);
|
13 |
$this->title = sanitize_text_field($title);
|
14 |
+
$this->template = ((defined('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT')) ? unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT) : false);
|
15 |
}
|
16 |
|
17 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $postFormat = 0) {
|
22 |
$postData['post_format'] = $postFormat;
|
23 |
}
|
24 |
//Content
|
25 |
+
$limit = ((is_array($this->template) && isset($this->template[$networkId][$networkType]['short_text']['limit'])) ? $this->template[$networkId][$networkType]['short_text']['limit'] : (isset($this->setPreFillTextLimit[$networkType][$networkId]) ? (int) $this->setPreFillTextLimit[$networkType][$networkId] : false));
|
26 |
+
$postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], $limit) : $this->content;
|
27 |
if ($networkId == 7 || $networkId == 9 || ($networkId == 8 && $networkType != 0) | ($networkId == 19 && $networkType != 0)) {
|
28 |
$postData['custom_title'] = $this->title;
|
29 |
}
|
includes/B2S/RePost/Save.php
CHANGED
@@ -24,6 +24,7 @@ class B2S_RePost_Save {
|
|
24 |
private $tosCrossPosting;
|
25 |
private $linkNoCache;
|
26 |
private $allowHtml;
|
|
|
27 |
|
28 |
function __construct($blogUserId = 0, $b2sUserLang = 'en', $userTimezone = 0, $optionPostFormat = array(), $allowHashTag = true, $bestTimes = array(), $userVersion = 0) {
|
29 |
$this->userVersion = defined("B2S_PLUGIN_USER_VERSION") ? B2S_PLUGIN_USER_VERSION : (int) $userVersion;
|
@@ -40,6 +41,7 @@ class B2S_RePost_Save {
|
|
40 |
$this->allowNetworkOnlyImage = array(6, 7, 12, 21);
|
41 |
$this->tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
42 |
$this->linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
|
|
43 |
}
|
44 |
|
45 |
public function setPostData($postId = 0, $title = '', $content = '', $excerpt = '', $url = '', $imageUrl = '', $keywords = '') {
|
@@ -143,7 +145,7 @@ class B2S_RePost_Save {
|
|
143 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
144 |
|
145 |
if ((int) $this->userVersion < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])) {
|
146 |
-
$tempOptionPostFormat =
|
147 |
} else {
|
148 |
$tempOptionPostFormat = $this->optionPostFormat;
|
149 |
}
|
@@ -152,12 +154,11 @@ class B2S_RePost_Save {
|
|
152 |
if($networkId == 19 && $networkType == 1) {
|
153 |
if(!isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][0]['limit'])) {
|
154 |
if(isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) {
|
155 |
-
$default_template
|
156 |
-
|
157 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text'] = array(0 => $tempOptionPostFormat[$networkId][$networkType]['short_text'], 4 => $default_template[$networkId][$networkType]['short_text'][4]);
|
158 |
}
|
159 |
} else {
|
160 |
-
$tempOptionPostFormat =
|
161 |
}
|
162 |
}
|
163 |
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'] : 0;
|
@@ -166,7 +167,7 @@ class B2S_RePost_Save {
|
|
166 |
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'] : 0;
|
167 |
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'] : 0;
|
168 |
} else {
|
169 |
-
$defaultSchema =
|
170 |
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']) && isset($defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
171 |
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
172 |
}
|
@@ -187,7 +188,7 @@ class B2S_RePost_Save {
|
|
187 |
$postData['post_format'] = (int) $tempOptionPostFormat[$networkId][$networkType]['format'];
|
188 |
} else {
|
189 |
//Set: default settings
|
190 |
-
$defaultPostFormat =
|
191 |
$postData['post_format'] = isset($defaultPostFormat[$networkId][$networkType]['format']) ? (int) $defaultPostFormat[$networkId][$networkType]['format'] : 0;
|
192 |
}
|
193 |
}
|
@@ -211,8 +212,12 @@ class B2S_RePost_Save {
|
|
211 |
$hashtagcount = substr_count($postData['content'], '#');
|
212 |
|
213 |
if (strpos($postData['content'], "{KEYWORDS}") !== false) {
|
214 |
-
$
|
215 |
-
|
|
|
|
|
|
|
|
|
216 |
}
|
217 |
|
218 |
$authorId = get_post_field('post_author', $this->postId);
|
@@ -332,10 +337,13 @@ class B2S_RePost_Save {
|
|
332 |
return false;
|
333 |
}
|
334 |
|
335 |
-
private function getHashTagsString($add = "\n\n", $limit = -1) {// limit = -1 => no limit
|
336 |
if ($limit != 0) {
|
337 |
$hashTags = '';
|
338 |
if (is_array($this->keywords) && !empty($this->keywords)) {
|
|
|
|
|
|
|
339 |
foreach ($this->keywords as $tag) {
|
340 |
$hashTags .= ' #' . str_replace(array(" ", "-", '"', "'", "!", "?", ",", ".", ";", ":"), "", $tag->name);
|
341 |
}
|
@@ -359,7 +367,7 @@ class B2S_RePost_Save {
|
|
359 |
}
|
360 |
|
361 |
public function saveShareData($shareData = array(), $network_id = 0, $network_type = 0, $network_auth_id = 0, $shareApprove = 0, $network_display_name = '', $sched_date = '0000-00-00 00:00:00', $sched_date_utc = '0000-00-00 00:00:00') {
|
362 |
-
|
363 |
global $wpdb;
|
364 |
if ($this->userVersion >= 3) {
|
365 |
$sqlGetData = $wpdb->prepare("SELECT `data` FROM `{$wpdb->prefix}b2s_posts_network_details` WHERE `network_auth_id` = %d", (int) $network_auth_id);
|
24 |
private $tosCrossPosting;
|
25 |
private $linkNoCache;
|
26 |
private $allowHtml;
|
27 |
+
private $default_template;
|
28 |
|
29 |
function __construct($blogUserId = 0, $b2sUserLang = 'en', $userTimezone = 0, $optionPostFormat = array(), $allowHashTag = true, $bestTimes = array(), $userVersion = 0) {
|
30 |
$this->userVersion = defined("B2S_PLUGIN_USER_VERSION") ? B2S_PLUGIN_USER_VERSION : (int) $userVersion;
|
41 |
$this->allowNetworkOnlyImage = array(6, 7, 12, 21);
|
42 |
$this->tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
43 |
$this->linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
44 |
+
$this->default_template = (defined('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT')) ? unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT) : false;
|
45 |
}
|
46 |
|
47 |
public function setPostData($postId = 0, $title = '', $content = '', $excerpt = '', $url = '', $imageUrl = '', $keywords = '') {
|
145 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
146 |
|
147 |
if ((int) $this->userVersion < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])) {
|
148 |
+
$tempOptionPostFormat = $this->default_template;
|
149 |
} else {
|
150 |
$tempOptionPostFormat = $this->optionPostFormat;
|
151 |
}
|
154 |
if($networkId == 19 && $networkType == 1) {
|
155 |
if(!isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][0]['limit'])) {
|
156 |
if(isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) {
|
157 |
+
if(isset($this->default_template[$networkId][$networkType]['short_text'][4])) {
|
158 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text'] = array(0 => $tempOptionPostFormat[$networkId][$networkType]['short_text'], 4 => $this->default_template[$networkId][$networkType]['short_text'][4]);
|
|
|
159 |
}
|
160 |
} else {
|
161 |
+
$tempOptionPostFormat = $this->default_template;
|
162 |
}
|
163 |
}
|
164 |
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'] : 0;
|
167 |
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'] : 0;
|
168 |
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'] : 0;
|
169 |
} else {
|
170 |
+
$defaultSchema = $this->default_template;
|
171 |
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']) && isset($defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
172 |
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
173 |
}
|
188 |
$postData['post_format'] = (int) $tempOptionPostFormat[$networkId][$networkType]['format'];
|
189 |
} else {
|
190 |
//Set: default settings
|
191 |
+
$defaultPostFormat = $this->default_template;
|
192 |
$postData['post_format'] = isset($defaultPostFormat[$networkId][$networkType]['format']) ? (int) $defaultPostFormat[$networkId][$networkType]['format'] : 0;
|
193 |
}
|
194 |
}
|
212 |
$hashtagcount = substr_count($postData['content'], '#');
|
213 |
|
214 |
if (strpos($postData['content'], "{KEYWORDS}") !== false) {
|
215 |
+
if($this->default_template != false && isset($this->default_template[$networkId][$networkType]['disableKeywords']) && $this->default_template[$networkId][$networkType]['disableKeywords'] == true) {
|
216 |
+
$postData['content'] = preg_replace("/\{KEYWORDS\}/", '', $postData['content']);
|
217 |
+
} else {
|
218 |
+
$hashtags = ($this->allowHashTag) ? $this->getHashTagsString("", (($networkId == 12) ? 30 - $hashtagcount : -1), ((isset($tempOptionPostFormat[$networkId][$networkType]['shuffleHashtags']) && $tempOptionPostFormat[$networkId][$networkType]['shuffleHashtags'] == true) ? true : false)) : '';
|
219 |
+
$postData['content'] = preg_replace("/\{KEYWORDS\}/", addcslashes($hashtags, "\\$"), $postData['content']);
|
220 |
+
}
|
221 |
}
|
222 |
|
223 |
$authorId = get_post_field('post_author', $this->postId);
|
337 |
return false;
|
338 |
}
|
339 |
|
340 |
+
private function getHashTagsString($add = "\n\n", $limit = -1, $shuffle = false) {// limit = -1 => no limit
|
341 |
if ($limit != 0) {
|
342 |
$hashTags = '';
|
343 |
if (is_array($this->keywords) && !empty($this->keywords)) {
|
344 |
+
if ($shuffle) {
|
345 |
+
shuffle($this->keywords);
|
346 |
+
}
|
347 |
foreach ($this->keywords as $tag) {
|
348 |
$hashTags .= ' #' . str_replace(array(" ", "-", '"', "'", "!", "?", ",", ".", ";", ":"), "", $tag->name);
|
349 |
}
|
367 |
}
|
368 |
|
369 |
public function saveShareData($shareData = array(), $network_id = 0, $network_type = 0, $network_auth_id = 0, $shareApprove = 0, $network_display_name = '', $sched_date = '0000-00-00 00:00:00', $sched_date_utc = '0000-00-00 00:00:00') {
|
370 |
+
|
371 |
global $wpdb;
|
372 |
if ($this->userVersion >= 3) {
|
373 |
$sqlGetData = $wpdb->prepare("SELECT `data` FROM `{$wpdb->prefix}b2s_posts_network_details` WHERE `network_auth_id` = %d", (int) $network_auth_id);
|
includes/B2S/Settings/Item.php
CHANGED
@@ -43,7 +43,7 @@ class B2S_Settings_Item {
|
|
43 |
$isCheckedLegacyMode = ($legacyMode !== false && $legacyMode == 1) ? 1 : 0; //default not active , 1=active 0=not active
|
44 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
45 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
46 |
-
$
|
47 |
$isCheckedShortener = (isset($this->settings->shortener_state) && (int) $this->settings->shortener_state > 0) ? ((int) $this->settings->shortener_state - 1) : -1;
|
48 |
|
49 |
$content = '';
|
@@ -56,14 +56,14 @@ class B2S_Settings_Item {
|
|
56 |
$content .= '</select>';
|
57 |
$content .= ' <a href="#" class="b2s-info-btn hidden-xs b2sInfoTimeZoneModalBtn">' . esc_html__('Info', 'Blog2Social') . '</a>';
|
58 |
$content .='</div>';
|
59 |
-
$content .='<br><div class="b2s-settings-time-zone-info">' . esc_html__('Timezone for Scheduling', 'blog2social') . ' (' . esc_html__('User', 'blog2social') . ': ' . esc_html((
|
60 |
$content .='</div>';
|
61 |
$content .='<div class="clearfix"></div>';
|
62 |
$content .='<br>';
|
63 |
$content .='<hr>';
|
64 |
$content .='<h4>' . esc_html__('Content', 'blog2social') . '</h4>';
|
65 |
$content .='<strong>' . esc_html__('Url Shortener', 'blog2social') . '</strong> <a href="#" class="b2s-info-btn del-padding-left b2sInfoUrlShortenerModalBtn">' . esc_html__('Info', 'Blog2Social') . '</a><br>';
|
66 |
-
|
67 |
$content .='<input type="radio" value="0" class="b2s-user-network-settings-short-url" id="b2s-user-network-settings-short-url-0" name="b2s-user-network-settings-short-url" ' . (($isCheckedShortener == -1) ? 'checked="checked"' : '') . ' data-provider-id="-1"/><label for="b2s-user-network-settings-short-url-0"> '.esc_html__('no URL Shortener', 'blog2social').'</label>';
|
68 |
$content .= '<br>';
|
69 |
$content .= '<input type="hidden" id="brandName" value="'.esc_html__('Brand', 'blog2social').'">';
|
43 |
$isCheckedLegacyMode = ($legacyMode !== false && $legacyMode == 1) ? 1 : 0; //default not active , 1=active 0=not active
|
44 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
45 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
46 |
+
$userInfoName = get_the_author_meta('display_name', B2S_PLUGIN_BLOG_USER_ID);
|
47 |
$isCheckedShortener = (isset($this->settings->shortener_state) && (int) $this->settings->shortener_state > 0) ? ((int) $this->settings->shortener_state - 1) : -1;
|
48 |
|
49 |
$content = '';
|
56 |
$content .= '</select>';
|
57 |
$content .= ' <a href="#" class="b2s-info-btn hidden-xs b2sInfoTimeZoneModalBtn">' . esc_html__('Info', 'Blog2Social') . '</a>';
|
58 |
$content .='</div>';
|
59 |
+
$content .='<br><div class="b2s-settings-time-zone-info">' . esc_html__('Timezone for Scheduling', 'blog2social') . ' (' . esc_html__('User', 'blog2social') . ': ' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . ') <code id="b2s-user-time">' . esc_html(B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2))) . '</code></span></div>';
|
60 |
$content .='</div>';
|
61 |
$content .='<div class="clearfix"></div>';
|
62 |
$content .='<br>';
|
63 |
$content .='<hr>';
|
64 |
$content .='<h4>' . esc_html__('Content', 'blog2social') . '</h4>';
|
65 |
$content .='<strong>' . esc_html__('Url Shortener', 'blog2social') . '</strong> <a href="#" class="b2s-info-btn del-padding-left b2sInfoUrlShortenerModalBtn">' . esc_html__('Info', 'Blog2Social') . '</a><br>';
|
66 |
+
$content .='<div class="alert alert-warning">' . sprintf(__('Please note: Pinterest does not allow posts with any shortened URL links (i.e. short links generated by URL shorteners) to prevent spam. To make sure, your Pinterest posts will be displayed correctly, Blog2Social will share your posts automatically with the original URL link, even if you have activated an URL-shortener. You will find more information about this in the <a href="%s" target="_blank">Pinterest help guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('pinterest_shortener')) . '</div>';
|
67 |
$content .='<input type="radio" value="0" class="b2s-user-network-settings-short-url" id="b2s-user-network-settings-short-url-0" name="b2s-user-network-settings-short-url" ' . (($isCheckedShortener == -1) ? 'checked="checked"' : '') . ' data-provider-id="-1"/><label for="b2s-user-network-settings-short-url-0"> '.esc_html__('no URL Shortener', 'blog2social').'</label>';
|
68 |
$content .= '<br>';
|
69 |
$content .= '<input type="hidden" id="brandName" value="'.esc_html__('Brand', 'blog2social').'">';
|
includes/B2S/Ship/Item.php
CHANGED
@@ -12,7 +12,7 @@ class B2S_Ship_Item {
|
|
12 |
private $allowTag = array(4, 9, 11, 16);
|
13 |
private $limitTag = array(); //networkId => Limit
|
14 |
private $allowHtml = array(4, 11, 14);
|
15 |
-
private $showTitleProfile = array(4, 6, 9, 11, 14, 16, 21);
|
16 |
private $showTitlePage = array(8, 19 => array(1)); //Xing Business Page
|
17 |
private $showTitleGroup = array(8, 11, 19);
|
18 |
private $onlyImage = array(6, 7, 12, 20, 21);
|
@@ -36,7 +36,7 @@ class B2S_Ship_Item {
|
|
36 |
private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
|
37 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17, 20, 21);
|
38 |
private $limitHashTagCharacter = array(21 => 36);
|
39 |
-
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250,
|
40 |
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 18, 20, 21, 24);
|
41 |
private $showImageAreaPage = array(10);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
@@ -75,6 +75,7 @@ class B2S_Ship_Item {
|
|
75 |
private $options;
|
76 |
private $post_template;
|
77 |
private $hook_filter;
|
|
|
78 |
|
79 |
public function __construct($postId, $userLang = 'en', $selSchedDate = "", $b2sPostType = "", $relayCount = 0) {
|
80 |
$this->postId = $postId;
|
@@ -87,6 +88,7 @@ class B2S_Ship_Item {
|
|
87 |
$this->hook_filter = new B2S_Hook_Filter();
|
88 |
$this->selSchedDate = $selSchedDate;
|
89 |
$this->setRelayCount = $relayCount;
|
|
|
90 |
}
|
91 |
|
92 |
protected function getPostId() {
|
@@ -145,7 +147,7 @@ class B2S_Ship_Item {
|
|
145 |
$this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
146 |
$this->post_template = $this->options->_getOption("post_template");
|
147 |
if (B2S_PLUGIN_USER_VERSION < 1 || $this->post_template == false || !isset($this->post_template[$data->networkId][$data->networkType])) {
|
148 |
-
$this->post_template =
|
149 |
}
|
150 |
|
151 |
//Settings
|
@@ -984,10 +986,13 @@ class B2S_Ship_Item {
|
|
984 |
return $schedData;
|
985 |
}
|
986 |
|
987 |
-
private function getHashTagsString($add = "\n\n", $limit = 0) {
|
988 |
$hashTagsData = $this->hook_filter->get_wp_post_hashtag((int) $this->postId, $this->postData->post_type);
|
989 |
$hashTags = '';
|
990 |
if (is_array($hashTagsData) && !empty($hashTagsData)) {
|
|
|
|
|
|
|
991 |
foreach ($hashTagsData as $tag) {
|
992 |
if ($limit > 0) {
|
993 |
if (strlen($tag->name) > $limit) {
|
@@ -1152,7 +1157,7 @@ class B2S_Ship_Item {
|
|
1152 |
$shipping .= ($showSchedRegularly) ? '<option value="2">' . esc_html__('Schedule Recurrent Post', 'blog2social') . $isPremium . '</option>' : '';
|
1153 |
|
1154 |
$shipping .= '</select>';
|
1155 |
-
|
1156 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
1157 |
$shipping .= '<div class="b2s-post-item-details-release-area-details">';
|
1158 |
//TOS Twitter 032018
|
@@ -1331,14 +1336,12 @@ class B2S_Ship_Item {
|
|
1331 |
if($data->networkId == 19 && $data->networkType == 1 && (int) $data->networkKind >= 0){
|
1332 |
if(!isset($post_template['short_text'][0]['limit'])) {
|
1333 |
if(isset($post_template['short_text']['limit'])) {
|
1334 |
-
$default_template
|
1335 |
-
|
1336 |
-
$post_template['short_text'] = array(0 => $post_template['short_text'], 4 => $default_template[$data->networkId][$data->networkType]['short_text'][4]);
|
1337 |
}
|
1338 |
} else {
|
1339 |
-
$default_template
|
1340 |
-
|
1341 |
-
$post_template = $default_template[$data->networkId][$data->networkType];
|
1342 |
}
|
1343 |
}
|
1344 |
}
|
@@ -1350,15 +1353,13 @@ class B2S_Ship_Item {
|
|
1350 |
} else {
|
1351 |
//V5.6.1
|
1352 |
if (!isset($post_template['short_text']['excerpt_range_max'])) {
|
1353 |
-
$
|
1354 |
-
|
1355 |
-
$post_template['short_text']['excerpt_range_max'] = $defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_max'];
|
1356 |
}
|
1357 |
}
|
1358 |
if (!isset($post_template['short_text']['excerpt_range_min'])) {
|
1359 |
-
$
|
1360 |
-
|
1361 |
-
$post_template['short_text']['excerpt_range_min'] = $defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_min'];
|
1362 |
}
|
1363 |
}
|
1364 |
$content_min = (isset($post_template['short_text']['range_min'])) ? $post_template['short_text']['range_min'] : 0;
|
@@ -1372,16 +1373,16 @@ class B2S_Ship_Item {
|
|
1372 |
|
1373 |
//B2S CC
|
1374 |
if ($this->b2sPostType == 'ex' && isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1375 |
-
$
|
1376 |
-
$appendFirst = true;
|
1377 |
-
if (strpos($message, '{CONTENT}') !== false) {
|
1378 |
-
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1379 |
-
$appendFirst = false;
|
1380 |
-
}
|
1381 |
-
$message = preg_replace(array("/\{TITLE\}/", "/\{EXCERPT\}/", "/\{KEYWORDS\}/", "/\{AUTHOR\}/"), "", $message);
|
1382 |
-
if ($appendFirst) {
|
1383 |
-
$message = $preContent . ' ' . $message;
|
1384 |
-
}
|
1385 |
//B2S Customize
|
1386 |
} else {
|
1387 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
@@ -1406,8 +1407,12 @@ class B2S_Ship_Item {
|
|
1406 |
}
|
1407 |
|
1408 |
if (strpos($message, "{KEYWORDS}") !== false) {
|
1409 |
-
$
|
1410 |
-
|
|
|
|
|
|
|
|
|
1411 |
}
|
1412 |
|
1413 |
if (isset($this->postData->post_author) && (int) $this->postData->post_author > 0) {
|
12 |
private $allowTag = array(4, 9, 11, 16);
|
13 |
private $limitTag = array(); //networkId => Limit
|
14 |
private $allowHtml = array(4, 11, 14);
|
15 |
+
private $showTitleProfile = array(4, 6, 9, 11, 14, 16, 21, 15);
|
16 |
private $showTitlePage = array(8, 19 => array(1)); //Xing Business Page
|
17 |
private $showTitleGroup = array(8, 11, 19);
|
18 |
private $onlyImage = array(6, 7, 12, 20, 21);
|
36 |
private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
|
37 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17, 20, 21);
|
38 |
private $limitHashTagCharacter = array(21 => 36);
|
39 |
+
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 12 => 2000, 18 => 1500, 19 => 1000, 20 => 500, 21 => 65535);
|
40 |
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 18, 20, 21, 24);
|
41 |
private $showImageAreaPage = array(10);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
75 |
private $options;
|
76 |
private $post_template;
|
77 |
private $hook_filter;
|
78 |
+
private $default_template;
|
79 |
|
80 |
public function __construct($postId, $userLang = 'en', $selSchedDate = "", $b2sPostType = "", $relayCount = 0) {
|
81 |
$this->postId = $postId;
|
88 |
$this->hook_filter = new B2S_Hook_Filter();
|
89 |
$this->selSchedDate = $selSchedDate;
|
90 |
$this->setRelayCount = $relayCount;
|
91 |
+
$this->default_template = (defined('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT')) ? unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT) : false;
|
92 |
}
|
93 |
|
94 |
protected function getPostId() {
|
147 |
$this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
148 |
$this->post_template = $this->options->_getOption("post_template");
|
149 |
if (B2S_PLUGIN_USER_VERSION < 1 || $this->post_template == false || !isset($this->post_template[$data->networkId][$data->networkType])) {
|
150 |
+
$this->post_template = $this->default_template;
|
151 |
}
|
152 |
|
153 |
//Settings
|
986 |
return $schedData;
|
987 |
}
|
988 |
|
989 |
+
private function getHashTagsString($add = "\n\n", $limit = 0, $shuffle = false) {
|
990 |
$hashTagsData = $this->hook_filter->get_wp_post_hashtag((int) $this->postId, $this->postData->post_type);
|
991 |
$hashTags = '';
|
992 |
if (is_array($hashTagsData) && !empty($hashTagsData)) {
|
993 |
+
if ($shuffle) {
|
994 |
+
shuffle($hashTagsData);
|
995 |
+
}
|
996 |
foreach ($hashTagsData as $tag) {
|
997 |
if ($limit > 0) {
|
998 |
if (strlen($tag->name) > $limit) {
|
1157 |
$shipping .= ($showSchedRegularly) ? '<option value="2">' . esc_html__('Schedule Recurrent Post', 'blog2social') . $isPremium . '</option>' : '';
|
1158 |
|
1159 |
$shipping .= '</select>';
|
1160 |
+
|
1161 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
1162 |
$shipping .= '<div class="b2s-post-item-details-release-area-details">';
|
1163 |
//TOS Twitter 032018
|
1336 |
if($data->networkId == 19 && $data->networkType == 1 && (int) $data->networkKind >= 0){
|
1337 |
if(!isset($post_template['short_text'][0]['limit'])) {
|
1338 |
if(isset($post_template['short_text']['limit'])) {
|
1339 |
+
if(isset($this->default_template[$data->networkId][$data->networkType]['short_text'][4])) {
|
1340 |
+
$post_template['short_text'] = array(0 => $post_template['short_text'], 4 => $this->default_template[$data->networkId][$data->networkType]['short_text'][4]);
|
|
|
1341 |
}
|
1342 |
} else {
|
1343 |
+
if(isset($this->default_template[$data->networkId][$data->networkType])) {
|
1344 |
+
$post_template = $this->default_template[$data->networkId][$data->networkType];
|
|
|
1345 |
}
|
1346 |
}
|
1347 |
}
|
1353 |
} else {
|
1354 |
//V5.6.1
|
1355 |
if (!isset($post_template['short_text']['excerpt_range_max'])) {
|
1356 |
+
if(isset($this->default_template[$data->networkId][$data->networkType]['short_text']['excerpt_range_max'])) {
|
1357 |
+
$post_template['short_text']['excerpt_range_max'] = $this->default_template[$data->networkId][$data->networkType]['short_text']['excerpt_range_max'];
|
|
|
1358 |
}
|
1359 |
}
|
1360 |
if (!isset($post_template['short_text']['excerpt_range_min'])) {
|
1361 |
+
if(isset($this->default_template[$data->networkId][$data->networkType]['short_text']['excerpt_range_min'])) {
|
1362 |
+
$post_template['short_text']['excerpt_range_min'] = $this->default_template[$data->networkId][$data->networkType]['short_text']['excerpt_range_min'];
|
|
|
1363 |
}
|
1364 |
}
|
1365 |
$content_min = (isset($post_template['short_text']['range_min'])) ? $post_template['short_text']['range_min'] : 0;
|
1373 |
|
1374 |
//B2S CC
|
1375 |
if ($this->b2sPostType == 'ex' && isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1376 |
+
$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) $content_min, (int) $content_max);
|
1377 |
+
// $appendFirst = true;
|
1378 |
+
// if (strpos($message, '{CONTENT}') !== false) {
|
1379 |
+
// $message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1380 |
+
// $appendFirst = false;
|
1381 |
+
// }
|
1382 |
+
// $message = preg_replace(array("/\{TITLE\}/", "/\{EXCERPT\}/", "/\{KEYWORDS\}/", "/\{AUTHOR\}/"), "", $message);
|
1383 |
+
// if ($appendFirst) {
|
1384 |
+
// $message = $preContent . ' ' . $message;
|
1385 |
+
// }
|
1386 |
//B2S Customize
|
1387 |
} else {
|
1388 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1407 |
}
|
1408 |
|
1409 |
if (strpos($message, "{KEYWORDS}") !== false) {
|
1410 |
+
if($this->default_template != false && isset($this->default_template[$data->networkId][$data->networkType]['disableKeywords']) && $this->default_template[$data->networkId][$data->networkType]['disableKeywords'] == true) {
|
1411 |
+
$message = stripslashes(preg_replace("/\{KEYWORDS\}/", '', $message));
|
1412 |
+
} else {
|
1413 |
+
$hashtags = $this->getHashTagsString("", ((isset($this->limitHashTagCharacter[$data->networkId])) ? $this->limitHashTagCharacter[$data->networkId] : 0), ((isset($post_template['shuffleHashtags']) && $post_template['shuffleHashtags'] == true) ? true : false));
|
1414 |
+
$message = stripslashes(preg_replace("/\{KEYWORDS\}/", addcslashes($hashtags, "\\$"), $message));
|
1415 |
+
}
|
1416 |
}
|
1417 |
|
1418 |
if (isset($this->postData->post_author) && (int) $this->postData->post_author > 0) {
|
includes/Loader.php
CHANGED
@@ -51,27 +51,27 @@ class B2S_Loader {
|
|
51 |
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0, 'addLink' => false),
|
52 |
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0, 'addLink' => false)
|
53 |
),
|
54 |
-
2 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
55 |
3 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0),
|
56 |
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0),
|
57 |
),
|
58 |
-
4 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
59 |
-
6 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
60 |
-
7 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
61 |
-
9 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
62 |
-
11 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
63 |
-
2 => array('short_text' => array('active' => 0, 'range_min' =>
|
64 |
-
12 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 240, 'range_max' => 400, 'excerpt_range_min' => 240, 'excerpt_range_max' => 400, 'limit' => 2000), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1, 'addLink' => false)),
|
65 |
-
14 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
66 |
-
15 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
67 |
-
16 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
68 |
-
17 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
69 |
-
1 => array('short_text' => array('active' => 0, 'range_min' =>
|
70 |
-
2 => array('short_text' => array('active' => 0, 'range_min' =>
|
71 |
-
18 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
72 |
-
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0),
|
73 |
-
1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 400), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1),
|
74 |
-
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1)),
|
75 |
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0))
|
76 |
)));
|
77 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
|
@@ -871,17 +871,17 @@ class B2S_Loader {
|
|
871 |
define('B2S_PLUGIN_PAGE_TITLE', serialize(array('blog2social-notice' => esc_html__('Notifications', 'blog2social'), 'blog2social-publish' => esc_html__('Shared Posts', 'blog2social'), 'blog2social-approve' => esc_html__('Instant Sharing', 'blog2social'), 'blog2social-draft-post' => esc_html__('Drafts', 'blog2social'), 'blog2social-sched' => esc_html__('Scheduled Posts', 'blog2social'), 'blog2social-curation-draft' => esc_html__('Social Media Post Drafts', 'blog2social'), 'blog2social-favorites' => esc_html__('Favorites', 'blog2social'), 'blog2social-autopost' => esc_html__('Auto-Post', 'blog2social'), 'blog2social-repost' => esc_html__('Re-Share Posts', 'blog2social') . ' <span class="label label-success label-sm">' . esc_html__("NEW", "blog2social") . '</span>')));
|
872 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
873 |
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company-Page (Employer Branding Profile)', 'blog2social'), esc_html__('Business', 'blog2social'), '', '', esc_html__('Company-Page (Employer Branding Profile)', 'blog2social'))));
|
874 |
-
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' => sprintf(__('The network could not publish your post. Please see <a target="_blank" href="%s">
|
875 |
'TOKEN' => esc_html__('Your authorization has expired. Please reconnect your account in the Blog2Social network settings.', 'blog2social'),
|
876 |
-
'CONTENT' =>
|
877 |
'RIGHT' => esc_html__('We don\'t have the permission to publish your post. Please check your authorization.', 'blog2social'),
|
878 |
-
'LOGIN' => sprintf(__('
|
879 |
'LIMIT' => esc_html__('Your daily limit has been reached.', 'blog2social'),
|
880 |
'IMAGE' => esc_html__('Your post could not be posted, because your image is not available or the image source does not allow to publish', 'blog2social'),
|
881 |
-
'PROTECT' => sprintf(__('The network has blocked your account. Please see <a target="_blank" href="%s">
|
882 |
-
'IMAGE_LIMIT' => sprintf(__('The number of images is reached. Please see <a target="_blank" href="%s">
|
883 |
'RATE_LIMIT' => esc_html__('Your daily limit for this network has been reached. Please try again later.', 'blog2social'),
|
884 |
-
'INVALID_CONTENT' => sprintf(__('The network can not publish special characters such as Emoji. Please see <a target="_blank" href="%s">
|
885 |
'EXISTS_CONTENT' => esc_html__('Your post is a duplicate.', 'blog2social'),
|
886 |
'URL_CONTENT' => esc_html__('The network requires a public url.', 'blog2social'),
|
887 |
'BLOGPOST_NOT_PUBLISHED' => esc_html__('Your blog post was not available for the network at the time of publication.', 'blog2social'),
|
@@ -890,7 +890,7 @@ class B2S_Loader {
|
|
890 |
'IMAGE_FOR_CURATION' => esc_html__('An image is required to post on this social network.', 'blog2social'), // special for content curation V.5.0.0
|
891 |
'LINK_FOR_CURATION' => esc_html__('To share social media posts on Reddit or Diigo, a link is required.', 'blog2social'), // special for content curation V.6.0.0
|
892 |
'IMAGE_NETWORK' => esc_html__('Your post could not be posted, because your image can not be processed by the network.', 'blog2social'),
|
893 |
-
'TEXT_NOT_PUBLISHED_12' => sprintf(__('Instagram published your post without text. Please see <a target="_blank" href="%s">
|
894 |
'GROUP_CONTENT' => esc_html__('Your group can not be found by the network.', 'blog2social'))));
|
895 |
}
|
896 |
|
@@ -925,6 +925,7 @@ class B2S_Loader {
|
|
925 |
define('B2S_PLUGIN_USER_VERSION', $tokenInfo['B2S_PLUGIN_USER_VERSION']);
|
926 |
if (isset($tokenInfo['B2S_PLUGIN_TRAIL_END'])) {
|
927 |
define('B2S_PLUGIN_TRAIL_END', $tokenInfo['B2S_PLUGIN_TRAIL_END']);
|
|
|
928 |
}
|
929 |
}
|
930 |
}
|
51 |
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0, 'addLink' => false),
|
52 |
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0, 'addLink' => false)
|
53 |
),
|
54 |
+
2 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 256, 'excerpt_range_min' => 200, 'excerpt_range_max' => 256, 'limit' => 280), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1)),
|
55 |
3 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0),
|
56 |
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0),
|
57 |
),
|
58 |
+
4 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
59 |
+
6 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 350, 'range_max' => 421, 'excerpt_range_min' => 350, 'excerpt_range_max' => 421, 'limit' => 495), 'content' => '{CONTENT} {KEYWORDS}', 'format' => false)),
|
60 |
+
7 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
61 |
+
9 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 250, 'excerpt_range_min' => 200, 'excerpt_range_max' => 250, 'limit' => 250), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
62 |
+
11 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true),
|
63 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
64 |
+
12 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 240, 'range_max' => 400, 'excerpt_range_min' => 240, 'excerpt_range_max' => 400, 'limit' => 2000), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1, 'addLink' => false, 'shuffleHashtags' => false)),
|
65 |
+
14 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
66 |
+
15 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 300, 'excerpt_range_min' => 200, 'excerpt_range_max' => 300, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
67 |
+
16 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
68 |
+
17 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0),
|
69 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0),
|
70 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0)),
|
71 |
+
18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' => '{CONTENT} {KEYWORDS}', 'format' => false)),
|
72 |
+
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0, 'disableKeywords' => true),
|
73 |
+
1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 400), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true),
|
74 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true)),
|
75 |
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0))
|
76 |
)));
|
77 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
|
871 |
define('B2S_PLUGIN_PAGE_TITLE', serialize(array('blog2social-notice' => esc_html__('Notifications', 'blog2social'), 'blog2social-publish' => esc_html__('Shared Posts', 'blog2social'), 'blog2social-approve' => esc_html__('Instant Sharing', 'blog2social'), 'blog2social-draft-post' => esc_html__('Drafts', 'blog2social'), 'blog2social-sched' => esc_html__('Scheduled Posts', 'blog2social'), 'blog2social-curation-draft' => esc_html__('Social Media Post Drafts', 'blog2social'), 'blog2social-favorites' => esc_html__('Favorites', 'blog2social'), 'blog2social-autopost' => esc_html__('Auto-Post', 'blog2social'), 'blog2social-repost' => esc_html__('Re-Share Posts', 'blog2social') . ' <span class="label label-success label-sm">' . esc_html__("NEW", "blog2social") . '</span>')));
|
872 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
873 |
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company-Page (Employer Branding Profile)', 'blog2social'), esc_html__('Business', 'blog2social'), '', '', esc_html__('Company-Page (Employer Branding Profile)', 'blog2social'))));
|
874 |
+
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' => sprintf(__('The network could not publish your post. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
875 |
'TOKEN' => esc_html__('Your authorization has expired. Please reconnect your account in the Blog2Social network settings.', 'blog2social'),
|
876 |
+
'CONTENT' => sprintf(__('The content of your post could not be approved by the network. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('content_error'))),
|
877 |
'RIGHT' => esc_html__('We don\'t have the permission to publish your post. Please check your authorization.', 'blog2social'),
|
878 |
+
'LOGIN' => sprintf(__('The connection to your social media account is interrupted. Please check your authorization and reconnect your account. The <a target="_blank" href="%s">troubleshooting guide</a> shows you how to fix the connection to your social media account.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('troubleshoot_auth'))),
|
879 |
'LIMIT' => esc_html__('Your daily limit has been reached.', 'blog2social'),
|
880 |
'IMAGE' => esc_html__('Your post could not be posted, because your image is not available or the image source does not allow to publish', 'blog2social'),
|
881 |
+
'PROTECT' => sprintf(__('The network has blocked your account. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
882 |
+
'IMAGE_LIMIT' => sprintf(__('The number of images is reached. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
883 |
'RATE_LIMIT' => esc_html__('Your daily limit for this network has been reached. Please try again later.', 'blog2social'),
|
884 |
+
'INVALID_CONTENT' => sprintf(__('The network can not publish special characters such as Emoji. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
885 |
'EXISTS_CONTENT' => esc_html__('Your post is a duplicate.', 'blog2social'),
|
886 |
'URL_CONTENT' => esc_html__('The network requires a public url.', 'blog2social'),
|
887 |
'BLOGPOST_NOT_PUBLISHED' => esc_html__('Your blog post was not available for the network at the time of publication.', 'blog2social'),
|
890 |
'IMAGE_FOR_CURATION' => esc_html__('An image is required to post on this social network.', 'blog2social'), // special for content curation V.5.0.0
|
891 |
'LINK_FOR_CURATION' => esc_html__('To share social media posts on Reddit or Diigo, a link is required.', 'blog2social'), // special for content curation V.6.0.0
|
892 |
'IMAGE_NETWORK' => esc_html__('Your post could not be posted, because your image can not be processed by the network.', 'blog2social'),
|
893 |
+
'TEXT_NOT_PUBLISHED_12' => sprintf(__('Instagram published your post without text. Please see the following <a target="_blank" href="%s">guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('instagram_without_text'))),
|
894 |
'GROUP_CONTENT' => esc_html__('Your group can not be found by the network.', 'blog2social'))));
|
895 |
}
|
896 |
|
925 |
define('B2S_PLUGIN_USER_VERSION', $tokenInfo['B2S_PLUGIN_USER_VERSION']);
|
926 |
if (isset($tokenInfo['B2S_PLUGIN_TRAIL_END'])) {
|
927 |
define('B2S_PLUGIN_TRAIL_END', $tokenInfo['B2S_PLUGIN_TRAIL_END']);
|
928 |
+
update_option('B2S_PLUGIN_DISABLE_TRAIL', true, false);
|
929 |
}
|
930 |
}
|
931 |
}
|
includes/Notice.php
CHANGED
@@ -15,7 +15,7 @@ class B2S_Notice {
|
|
15 |
wp_enqueue_style('B2SNOTICECSS');
|
16 |
echo '<div class="updated b2s-notice-rate">
|
17 |
<strong>' . esc_html__("Rate it!", "blog2social") . '</strong>
|
18 |
-
<p>' . esc_html__("If you like Blog2Social, please give us a 5 star rating.
|
19 |
<b><a href="https://wordpress.org/support/plugin/blog2social/reviews/" target="_bank">' . esc_html__('RATE BLOG2SOCIAL', 'blog2social') . '</a></b>
|
20 |
<small><a href="'.esc_url(wp_nonce_url(add_query_arg('b2s_action', 'hide_notice'), 'b2s_notice_nonce', 'b2s_notice_nonce')).'">(' . esc_html__('hide', 'blog2social') . ')</a></small>
|
21 |
</p>
|
15 |
wp_enqueue_style('B2SNOTICECSS');
|
16 |
echo '<div class="updated b2s-notice-rate">
|
17 |
<strong>' . esc_html__("Rate it!", "blog2social") . '</strong>
|
18 |
+
<p>' . esc_html__("If you like Blog2Social, please give us a 5 star rating. If there is anything that does not work for you, please contact us!", "blog2social") . '
|
19 |
<b><a href="https://wordpress.org/support/plugin/blog2social/reviews/" target="_bank">' . esc_html__('RATE BLOG2SOCIAL', 'blog2social') . '</a></b>
|
20 |
<small><a href="'.esc_url(wp_nonce_url(add_query_arg('b2s_action', 'hide_notice'), 'b2s_notice_nonce', 'b2s_notice_nonce')).'">(' . esc_html__('hide', 'blog2social') . ')</a></small>
|
21 |
</p>
|
includes/PRG/Post/Item.php
CHANGED
@@ -109,7 +109,7 @@ class PRG_Post_Item {
|
|
109 |
$postTitle = (mb_strlen(trim($postTitle), 'UTF-8') > 100 ? mb_substr($postTitle, 0, 97, 'UTF-8') . '...' : $postTitle);
|
110 |
}
|
111 |
|
112 |
-
$
|
113 |
$this->postItem .= '<li class="list-group-item">
|
114 |
<div class="media">
|
115 |
<img class="post-img-10 pull-left hidden-xs" src="' . esc_url(plugins_url('/assets/images/prg/' . $postType . '-icon.png', B2S_PLUGIN_FILE)) . '" alt="posttype">
|
@@ -118,7 +118,7 @@ class PRG_Post_Item {
|
|
118 |
<span class="pull-right b2s-publish-btn">
|
119 |
<a href="admin.php?page=prg-login&postId=' . $var->ID . '" class="btn btn-primary btn-sm">' . esc_html__('Publish on PR-Gateway', 'blog2social') . '</a>
|
120 |
</span>
|
121 |
-
<p class="info hidden-xs">#' . esc_html($var->ID) . ' | ' . esc_html__('Author', 'blog2social') . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((
|
122 |
</div>
|
123 |
</div>
|
124 |
</li>';
|
109 |
$postTitle = (mb_strlen(trim($postTitle), 'UTF-8') > 100 ? mb_substr($postTitle, 0, 97, 'UTF-8') . '...' : $postTitle);
|
110 |
}
|
111 |
|
112 |
+
$userInfoName = get_the_author_meta('display_name', $var->post_author);
|
113 |
$this->postItem .= '<li class="list-group-item">
|
114 |
<div class="media">
|
115 |
<img class="post-img-10 pull-left hidden-xs" src="' . esc_url(plugins_url('/assets/images/prg/' . $postType . '-icon.png', B2S_PLUGIN_FILE)) . '" alt="posttype">
|
118 |
<span class="pull-right b2s-publish-btn">
|
119 |
<a href="admin.php?page=prg-login&postId=' . $var->ID . '" class="btn btn-primary btn-sm">' . esc_html__('Publish on PR-Gateway', 'blog2social') . '</a>
|
120 |
</span>
|
121 |
+
<p class="info hidden-xs">#' . esc_html($var->ID) . ' | ' . esc_html__('Author', 'blog2social') . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a> | ' . esc_html($postStatus[trim(strtolower($var->post_status))]) . ' ' . esc_html__('on Blog', 'blog2social') . ' ' . esc_html(B2S_Util::getCustomDateFormat($var->post_date, substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
122 |
</div>
|
123 |
</div>
|
124 |
</li>';
|
includes/Tools.php
CHANGED
@@ -253,6 +253,39 @@ class B2S_Tools {
|
|
253 |
if($type == 'xing_company_page_old_design'){
|
254 |
return ($lang == 'en') ? 'https://community.xing.com/de/s/article/Ihr-Arbeitgeberprofil-im-neuen-Gewand-Steigen-Sie-jetzt-um' : 'https://community.xing.com/de/s/article/Ihr-Arbeitgeberprofil-im-neuen-Gewand-Steigen-Sie-jetzt-um';
|
255 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
}
|
257 |
|
258 |
public static function getAffiliateId() {
|
253 |
if($type == 'xing_company_page_old_design'){
|
254 |
return ($lang == 'en') ? 'https://community.xing.com/de/s/article/Ihr-Arbeitgeberprofil-im-neuen-Gewand-Steigen-Sie-jetzt-um' : 'https://community.xing.com/de/s/article/Ihr-Arbeitgeberprofil-im-neuen-Gewand-Steigen-Sie-jetzt-um';
|
255 |
}
|
256 |
+
if($type == 'pinterest_shortener'){
|
257 |
+
return ($lang == 'en') ? 'https://help.pinterest.com/en/article/fix-a-broken-link' : 'https://help.pinterest.com/de/article/fix-a-broken-link';
|
258 |
+
}
|
259 |
+
if($type == 'content_error'){
|
260 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=182&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=176&artlang=de';
|
261 |
+
}
|
262 |
+
if($type == 'troubleshoot_auth'){
|
263 |
+
return ($lang == 'en') ? '' : '';
|
264 |
+
}
|
265 |
+
if($type == 'debugger_support'){
|
266 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=148&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=147&artlang=de';
|
267 |
+
}
|
268 |
+
if($type == 'troubleshooting_tool_support'){
|
269 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=147&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=146&artlang=de';
|
270 |
+
}
|
271 |
+
if($type == 'cc_info_faq'){
|
272 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=161&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=158&artlang=de';
|
273 |
+
}
|
274 |
+
if($type == 'allow_shortcodes'){
|
275 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=90&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=100&artlang=de';
|
276 |
+
}
|
277 |
+
if($type == 'besttimes_blogpost'){
|
278 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/blog/best-times-to-post-on-social-media/' : 'https://www.blog2social.com/de/blog/infografik-die-besten-zeiten-fuer-social-media-beitraege/';
|
279 |
+
}
|
280 |
+
if($type == 'besttimes_faq'){
|
281 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=5&id=32&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=5&id=43&artlang=de';
|
282 |
+
}
|
283 |
+
if($type == 'cc_text_post_info'){
|
284 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=161&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=158&artlang=de';
|
285 |
+
}
|
286 |
+
if($type == 'template_faq'){
|
287 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=152&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=150&artlang=de';
|
288 |
+
}
|
289 |
}
|
290 |
|
291 |
public static function getAffiliateId() {
|
includes/Util.php
CHANGED
@@ -40,7 +40,7 @@ class B2S_Util {
|
|
40 |
public static function getCustomDateFormat($dateTime = '0000-00-00 00:00:00', $lang = 'en', $time = true) {
|
41 |
if ($lang == 'de') {
|
42 |
$ident = 'd.m.Y ' . (($time) ? 'H:i' : '');
|
43 |
-
return date($ident, strtotime($dateTime)) . (($time) ? '
|
44 |
} else {
|
45 |
$ident = 'Y/m/d ' . (($time) ? 'g:i a' : '');
|
46 |
return date($ident, strtotime($dateTime));
|
@@ -267,16 +267,41 @@ class B2S_Util {
|
|
267 |
}
|
268 |
return $rtrnArray;
|
269 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
|
271 |
public static function prepareContent($postId = 0, $postContent = '', $postUrl = '', $allowHtml = '<p><h1><h2><br><i><b><a><img>', $allowEmoji = true, $postLang = 'en') {
|
272 |
$homeUrl = get_site_url();
|
273 |
$scheme = parse_url($homeUrl, PHP_URL_SCHEME);
|
274 |
$postContent = html_entity_decode($postContent, ENT_COMPAT, 'UTF-8');
|
275 |
$postContent = self::getFullContent($postId, $postContent, $postUrl, $postLang);
|
|
|
|
|
276 |
$prepareContent = ($allowHtml !== false) ? self::cleanContent(self::cleanHtmlAttr(strip_shortcodes(self::cleanShortCodeByCaption($postContent)))) : self::cleanContent(strip_shortcodes($postContent));
|
277 |
$prepareContent = ($allowEmoji !== false) ? $prepareContent : self::remove4byte($prepareContent);
|
278 |
//$prepareContent = preg_replace('/(?:[ \t]*(?:\n|\r\n?)){3,}/', "\n\n", $prepareContent);
|
279 |
-
|
|
|
280 |
if ($allowHtml !== false) {
|
281 |
$prepareContent = preg_replace("/(<[\/]*)strong(>)/", "$1b$2", $prepareContent);
|
282 |
$prepareContent = preg_replace("/(<[\/]*)em(>)/", "$1i$2", $prepareContent);
|
40 |
public static function getCustomDateFormat($dateTime = '0000-00-00 00:00:00', $lang = 'en', $time = true) {
|
41 |
if ($lang == 'de') {
|
42 |
$ident = 'd.m.Y ' . (($time) ? 'H:i' : '');
|
43 |
+
return date($ident, strtotime($dateTime)) . (($time) ? ' ' . __('Clock', 'blog2social') : '');
|
44 |
} else {
|
45 |
$ident = 'Y/m/d ' . (($time) ? 'g:i a' : '');
|
46 |
return date($ident, strtotime($dateTime));
|
267 |
}
|
268 |
return $rtrnArray;
|
269 |
}
|
270 |
+
|
271 |
+
public static function clean_html($text = '', $tags = array('style', 'script', 'noscript')) {
|
272 |
+
if (!empty($text)) {
|
273 |
+
if (!empty($tags)) {
|
274 |
+
if (is_array($tags)) {
|
275 |
+
foreach ($tags as $tag) {
|
276 |
+
$text = preg_replace("/<\s*$tag\b[^>]*>(.*?)<\s*\/\s*$tag\s*>/is", '', $text);
|
277 |
+
}
|
278 |
+
} else if (is_string($tags)) {
|
279 |
+
$text = preg_replace("/<\s*$tags\b[^>]*>(.*?)<\s*\/\s*$tags\s*>/is", '', $text);
|
280 |
+
}
|
281 |
+
}
|
282 |
+
}
|
283 |
+
return $text;
|
284 |
+
}
|
285 |
+
|
286 |
+
public static function convertLiElements($postContent) {
|
287 |
+
$postContent = preg_replace("/<([\s]*?)\/([\s]*?)li([\s]*?)>*?([^\n]?)*?<([\s]*?)li/", "</li>\n<li", $postContent);
|
288 |
+
$postContent = preg_replace("/<([\s]*?)li*?([\s]*?)>/", "- ", $postContent);
|
289 |
+
$postContent = preg_replace("/<([\s]*?)\/([\s]*?)li([\s]*?)>/", "", $postContent);
|
290 |
+
return $postContent;
|
291 |
+
}
|
292 |
|
293 |
public static function prepareContent($postId = 0, $postContent = '', $postUrl = '', $allowHtml = '<p><h1><h2><br><i><b><a><img>', $allowEmoji = true, $postLang = 'en') {
|
294 |
$homeUrl = get_site_url();
|
295 |
$scheme = parse_url($homeUrl, PHP_URL_SCHEME);
|
296 |
$postContent = html_entity_decode($postContent, ENT_COMPAT, 'UTF-8');
|
297 |
$postContent = self::getFullContent($postId, $postContent, $postUrl, $postLang);
|
298 |
+
$postContent = B2S_Util::clean_html($postContent);
|
299 |
+
$postContent = B2S_Util::convertLiElements($postContent);
|
300 |
$prepareContent = ($allowHtml !== false) ? self::cleanContent(self::cleanHtmlAttr(strip_shortcodes(self::cleanShortCodeByCaption($postContent)))) : self::cleanContent(strip_shortcodes($postContent));
|
301 |
$prepareContent = ($allowEmoji !== false) ? $prepareContent : self::remove4byte($prepareContent);
|
302 |
//$prepareContent = preg_replace('/(?:[ \t]*(?:\n|\r\n?)){3,}/', "\n\n", $prepareContent);
|
303 |
+
|
304 |
+
|
305 |
if ($allowHtml !== false) {
|
306 |
$prepareContent = preg_replace("/(<[\/]*)strong(>)/", "$1b$2", $prepareContent);
|
307 |
$prepareContent = preg_replace("/(<[\/]*)em(>)/", "$1i$2", $prepareContent);
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date:
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,10 +12,10 @@ msgstr ""
|
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
-
"POT-Creation-Date:
|
16 |
-
"Last-Translator: marius <wolf.12345@gmx.de>\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
-
"X-Loco-Version: 2.3.0; wp-5.
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
@@ -95,8 +95,8 @@ msgstr ""
|
|
95 |
msgid "Upgrade to Premium"
|
96 |
msgstr "Premium freischalten"
|
97 |
|
98 |
-
#: includes/Loader.php:821 includes/Loader.php:
|
99 |
-
#: includes/Loader.php:
|
100 |
#: views/b2s/html/sidebar.php:137
|
101 |
msgid "Settings"
|
102 |
msgstr "Einstellungen"
|
@@ -105,27 +105,27 @@ msgstr "Einstellungen"
|
|
105 |
msgid "Support"
|
106 |
msgstr "Support"
|
107 |
|
108 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
109 |
msgid "Notifications"
|
110 |
msgstr "Benachrichtigungen"
|
111 |
|
112 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
113 |
#: views/b2s/html/sidebar.php:125
|
114 |
msgid "Shared Posts"
|
115 |
msgstr "geteilte Beiträge"
|
116 |
|
117 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
118 |
#: views/b2s/html/sidebar.php:119
|
119 |
msgid "Instant Sharing"
|
120 |
msgstr "Instant Sharing"
|
121 |
|
122 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
123 |
-
#: views/b2s/html/post.navbar.php:
|
124 |
#: views/b2s/html/sidebar.php:116
|
125 |
msgid "Drafts"
|
126 |
msgstr "Entwürfe"
|
127 |
|
128 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
129 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
130 |
msgid "Scheduled Posts"
|
131 |
msgstr "geplante Beiträge"
|
@@ -134,7 +134,7 @@ msgstr "geplante Beiträge"
|
|
134 |
msgid "Social Media Post Drafts"
|
135 |
msgstr "Social Media Posts Entwürfe"
|
136 |
|
137 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
138 |
#: views/b2s/html/sidebar.php:113
|
139 |
msgid "Favorites"
|
140 |
msgstr "Favoriten"
|
@@ -144,12 +144,12 @@ msgstr "Favoriten"
|
|
144 |
msgid "Auto-Post"
|
145 |
msgstr "Beiträge automatisch teilen"
|
146 |
|
147 |
-
#: includes/Loader.php:871 views/b2s/
|
148 |
-
#: views/b2s/html/sidebar.php:72
|
149 |
msgid "Re-Share Posts"
|
150 |
msgstr "Beiträge wiederholt teilen"
|
151 |
|
152 |
-
#: includes/Loader.php:871 views/b2s/curation.php:
|
153 |
#: views/b2s/support.php:22
|
154 |
msgid "NEW"
|
155 |
msgstr "Neu"
|
@@ -188,11 +188,11 @@ msgstr "Business"
|
|
188 |
#: includes/Loader.php:874
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
-
"The network could not publish your post. Please see <a
|
192 |
-
"href=\"%s\">
|
193 |
msgstr ""
|
194 |
-
"Dein Post ist vom Netzwerk nicht veröffentlicht worden.
|
195 |
-
"target=\"_blank\" href=\"%s\">
|
196 |
|
197 |
#: includes/Loader.php:875
|
198 |
msgid ""
|
@@ -203,8 +203,13 @@ msgstr ""
|
|
203 |
"Blog2Social Netzwerkeinstellungen erneut."
|
204 |
|
205 |
#: includes/Loader.php:876
|
206 |
-
|
207 |
-
|
|
|
|
|
|
|
|
|
|
|
208 |
|
209 |
#: includes/Loader.php:877
|
210 |
msgid ""
|
@@ -217,11 +222,15 @@ msgstr ""
|
|
217 |
#: includes/Loader.php:878
|
218 |
#, php-format
|
219 |
msgid ""
|
220 |
-
"
|
221 |
-
"
|
|
|
|
|
222 |
msgstr ""
|
223 |
-
"
|
224 |
-
"
|
|
|
|
|
225 |
|
226 |
#: includes/Loader.php:879
|
227 |
msgid "Your daily limit has been reached."
|
@@ -238,20 +247,20 @@ msgstr ""
|
|
238 |
#: includes/Loader.php:881
|
239 |
#, php-format
|
240 |
msgid ""
|
241 |
-
"The network has blocked your account. Please see <a
|
242 |
-
"href=\"%s\">
|
243 |
msgstr ""
|
244 |
-
"Das Netzwerk hat Dein Konto gesperrt.
|
245 |
-
"
|
246 |
|
247 |
#: includes/Loader.php:882
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
-
"The number of images is reached. Please see <a
|
251 |
-
"
|
252 |
msgstr ""
|
253 |
-
"Die Anzahl der Bilder ist erreicht.
|
254 |
-
"
|
255 |
|
256 |
#: includes/Loader.php:883
|
257 |
msgid ""
|
@@ -263,11 +272,11 @@ msgstr ""
|
|
263 |
#: includes/Loader.php:884
|
264 |
#, php-format
|
265 |
msgid ""
|
266 |
-
"The network can not publish special characters such as Emoji. Please see
|
267 |
-
"target=\"_blank\" href=\"%s\">
|
268 |
msgstr ""
|
269 |
-
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen.
|
270 |
-
"target=\"_blank\" href=\"%s\">
|
271 |
|
272 |
#: includes/Loader.php:885
|
273 |
msgid "Your post is a duplicate."
|
@@ -320,73 +329,73 @@ msgstr ""
|
|
320 |
#: includes/Loader.php:893
|
321 |
#, php-format
|
322 |
msgid ""
|
323 |
-
"Instagram published your post without text. Please see <a
|
324 |
-
"href=\"%s\">
|
325 |
msgstr ""
|
326 |
-
"Instagram hat Deinen Beitrag ohne Text veröffentlicht.
|
327 |
-
"target=\"_blank\" href=\"%s\">
|
328 |
|
329 |
#: includes/Loader.php:894
|
330 |
msgid "Your group can not be found by the network."
|
331 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
332 |
|
333 |
-
#: includes/Loader.php:
|
334 |
msgid "Dashboard"
|
335 |
msgstr "Dashboard"
|
336 |
|
337 |
-
#: includes/Loader.php:
|
338 |
msgid "Share Website & Blog Content"
|
339 |
msgstr "Webseiten- & Blog Content teilen"
|
340 |
|
341 |
-
#: includes/Loader.php:
|
342 |
msgid "Site & Blog Content"
|
343 |
msgstr "Seiten & Blog Content"
|
344 |
|
345 |
-
#: includes/Loader.php:
|
346 |
msgid "Create Social Media Posts"
|
347 |
msgstr "Erstelle Social Media Posts"
|
348 |
|
349 |
-
#: includes/Loader.php:
|
350 |
msgid "Social Media Posts"
|
351 |
msgstr "Social Media Posts"
|
352 |
|
353 |
-
#: includes/Loader.php:
|
354 |
-
#: views/b2s/html/post.navbar.php:
|
355 |
msgid "Calendar"
|
356 |
msgstr "Kalender"
|
357 |
|
358 |
-
#: includes/Loader.php:
|
359 |
msgid "Networks"
|
360 |
msgstr "Netzwerke"
|
361 |
|
362 |
-
#: includes/Loader.php:
|
363 |
msgid "PR-Service"
|
364 |
msgstr "PR-Service"
|
365 |
|
366 |
-
#: includes/Loader.php:
|
367 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
368 |
#: views/b2s/html/sidebar.ship.php:66
|
369 |
msgid "Help & Support"
|
370 |
msgstr "Hilfe & Support"
|
371 |
|
372 |
-
#: includes/Loader.php:
|
373 |
msgid "Premium"
|
374 |
msgstr "Premium"
|
375 |
|
376 |
-
#: includes/Loader.php:
|
377 |
msgid "PREMIUM"
|
378 |
msgstr "PREMIUM"
|
379 |
|
380 |
-
#: includes/Loader.php:
|
381 |
#: views/b2s/html/sidebar.ship.php:24
|
382 |
msgid "Blog2Social"
|
383 |
msgstr "Blog2Social"
|
384 |
|
385 |
-
#: includes/Loader.php:
|
386 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
387 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
388 |
|
389 |
-
#: includes/Loader.php:
|
390 |
#, php-format
|
391 |
msgid ""
|
392 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
@@ -395,11 +404,11 @@ msgstr ""
|
|
395 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
396 |
"in unserem FAQs.</a>"
|
397 |
|
398 |
-
#: includes/Loader.php:
|
399 |
msgid "or"
|
400 |
msgstr "oder"
|
401 |
|
402 |
-
#: includes/Loader.php:
|
403 |
msgid "back to install plugins"
|
404 |
msgstr "zurück zur Pluginübersicht"
|
405 |
|
@@ -407,13 +416,13 @@ msgstr "zurück zur Pluginübersicht"
|
|
407 |
msgid "Rate it!"
|
408 |
msgstr "Bewerte uns!"
|
409 |
|
410 |
-
#: includes/Notice.php:18
|
411 |
msgid ""
|
412 |
-
"If you like Blog2Social, please give us a 5 star rating.
|
413 |
-
"that does not work for you, please contact us
|
414 |
msgstr ""
|
415 |
-
"Wenn Dir Blog2Social gefällt,
|
416 |
-
"
|
417 |
|
418 |
#: includes/Notice.php:19 views/b2s/html/sidebar.php:167
|
419 |
msgid "RATE BLOG2SOCIAL"
|
@@ -450,203 +459,208 @@ msgstr ""
|
|
450 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
451 |
"zu tun."
|
452 |
|
453 |
-
#: includes/Tools.php:
|
454 |
#: views/b2s/html/sidebar.ship.php:29
|
455 |
msgid "License"
|
456 |
msgstr "Lizenz"
|
457 |
|
458 |
-
#: includes/Tools.php:
|
459 |
msgid "Greece"
|
460 |
msgstr "Griechenland"
|
461 |
|
462 |
-
#: includes/Tools.php:
|
463 |
msgid "India"
|
464 |
msgstr "Indien"
|
465 |
|
466 |
-
#: includes/Tools.php:
|
467 |
msgid "United States of America"
|
468 |
msgstr "Vereinigte Staaten von Amerika"
|
469 |
|
470 |
-
#: includes/Tools.php:
|
471 |
msgid "Ireland"
|
472 |
msgstr "Irland"
|
473 |
|
474 |
-
#: includes/Tools.php:
|
475 |
msgid "Italy"
|
476 |
msgstr "Italien"
|
477 |
|
478 |
-
#: includes/Tools.php:
|
479 |
msgid "Switzerland"
|
480 |
msgstr "Schweiz"
|
481 |
|
482 |
-
#: includes/Tools.php:
|
483 |
msgid "Czechoslovakia"
|
484 |
msgstr "Tschechoslowakei"
|
485 |
|
486 |
-
#: includes/Tools.php:
|
487 |
msgid "Indonesia"
|
488 |
msgstr "Indonesien"
|
489 |
|
490 |
-
#: includes/Tools.php:
|
491 |
msgid "Spain"
|
492 |
msgstr "Spanien"
|
493 |
|
494 |
-
#: includes/Tools.php:
|
495 |
msgid "Canada"
|
496 |
msgstr "Kanada"
|
497 |
|
498 |
-
#: includes/Tools.php:
|
499 |
msgid "Great Britain"
|
500 |
msgstr "Großbritannien"
|
501 |
|
502 |
-
#: includes/Tools.php:
|
503 |
msgid "Russia"
|
504 |
msgstr "Russland"
|
505 |
|
506 |
-
#: includes/Tools.php:
|
507 |
msgid "Netherlands"
|
508 |
msgstr "Niederlande"
|
509 |
|
510 |
-
#: includes/Tools.php:
|
511 |
msgid "Portugal"
|
512 |
msgstr "Portugal"
|
513 |
|
514 |
-
#: includes/Tools.php:
|
515 |
msgid "Norway"
|
516 |
msgstr "Norwegen"
|
517 |
|
518 |
-
#: includes/Tools.php:
|
519 |
msgid "Turkey"
|
520 |
msgstr "Türkei"
|
521 |
|
522 |
-
#: includes/Tools.php:
|
523 |
msgid "Australia"
|
524 |
msgstr "Australien"
|
525 |
|
526 |
-
#: includes/Tools.php:
|
527 |
msgid "Austria"
|
528 |
msgstr "Österreich"
|
529 |
|
530 |
-
#: includes/Tools.php:
|
531 |
msgid "Poland"
|
532 |
msgstr "Polen"
|
533 |
|
534 |
-
#: includes/Tools.php:
|
535 |
msgid "France"
|
536 |
msgstr "Frankreich"
|
537 |
|
538 |
-
#: includes/Tools.php:
|
539 |
msgid "Romania"
|
540 |
msgstr "Rumänien"
|
541 |
|
542 |
-
#: includes/Tools.php:
|
543 |
msgid "Germany"
|
544 |
msgstr "Deutschland"
|
545 |
|
546 |
-
#: includes/Tools.php:
|
547 |
msgid "Denmark"
|
548 |
msgstr "Dänemark"
|
549 |
|
550 |
-
#: includes/Tools.php:
|
551 |
msgid "New Zealand"
|
552 |
msgstr "Neuseeland"
|
553 |
|
554 |
-
#: includes/Tools.php:
|
555 |
msgid "Finland"
|
556 |
msgstr "Finnland"
|
557 |
|
558 |
-
#: includes/Tools.php:
|
559 |
msgid "Hungary"
|
560 |
msgstr "Ungarn"
|
561 |
|
562 |
-
#: includes/Tools.php:
|
563 |
msgid "Japan"
|
564 |
msgstr "Japan"
|
565 |
|
566 |
-
#: includes/Tools.php:
|
567 |
msgid "Argentina"
|
568 |
msgstr "Argentinien"
|
569 |
|
570 |
-
#: includes/Tools.php:
|
571 |
msgid "Korea"
|
572 |
msgstr "Korea"
|
573 |
|
574 |
-
#: includes/Tools.php:
|
575 |
msgid "Sweden"
|
576 |
msgstr "Schweden"
|
577 |
|
578 |
-
#: includes/Tools.php:
|
579 |
msgid "Mexico"
|
580 |
msgstr "Mexiko"
|
581 |
|
582 |
-
#: includes/Tools.php:
|
583 |
msgid "Slovakia"
|
584 |
msgstr "Slowakei"
|
585 |
|
586 |
-
#: includes/Tools.php:
|
587 |
msgid "Chile"
|
588 |
msgstr "Chile"
|
589 |
|
590 |
-
#: includes/Tools.php:
|
591 |
msgid "Colombia"
|
592 |
msgstr "Kolumbien"
|
593 |
|
594 |
-
#: includes/Tools.php:
|
595 |
msgid "South Africa"
|
596 |
msgstr "Südafrika"
|
597 |
|
598 |
-
#: includes/Tools.php:
|
599 |
msgid "Philippines"
|
600 |
msgstr "Philippinen"
|
601 |
|
602 |
-
#: includes/Tools.php:
|
603 |
msgid "is determined automatically"
|
604 |
msgstr "wird automatisch ermittelt"
|
605 |
|
606 |
-
#: includes/Tools.php:
|
607 |
msgid "Search"
|
608 |
msgstr "Suche"
|
609 |
|
610 |
-
#: includes/Tools.php:
|
611 |
msgid "Recently Used"
|
612 |
msgstr "Zuletzt verwendet"
|
613 |
|
614 |
-
#: includes/Tools.php:
|
615 |
msgid "Smileys & People"
|
616 |
msgstr "Smileys & Personen"
|
617 |
|
618 |
-
#: includes/Tools.php:
|
619 |
msgid "Animals & Nature"
|
620 |
msgstr "Tiere & Natur"
|
621 |
|
622 |
-
#: includes/Tools.php:
|
623 |
msgid "Food & Drink"
|
624 |
msgstr "Essen & Trinken"
|
625 |
|
626 |
-
#: includes/Tools.php:
|
627 |
msgid "Activities"
|
628 |
msgstr "Aktivitäten"
|
629 |
|
630 |
-
#: includes/Tools.php:
|
631 |
msgid "Travel & Places"
|
632 |
msgstr "Reisen & Orte"
|
633 |
|
634 |
-
#: includes/Tools.php:
|
635 |
msgid "Objects"
|
636 |
msgstr "Objekte"
|
637 |
|
638 |
-
#: includes/Tools.php:
|
639 |
msgid "Symbols"
|
640 |
msgstr "Symbole"
|
641 |
|
642 |
-
#: includes/Tools.php:
|
643 |
msgid "Flags"
|
644 |
msgstr "Flaggen"
|
645 |
|
646 |
-
#: includes/Tools.php:
|
647 |
msgid "No emojis found"
|
648 |
msgstr "Keine Ergebnisse"
|
649 |
|
|
|
|
|
|
|
|
|
|
|
650 |
#: views/notice.php:12
|
651 |
msgid "Connection is broken..."
|
652 |
msgstr "Vebindung ist unterbrochen..."
|
@@ -690,17 +704,17 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
|
690 |
msgid "Please contact our support!"
|
691 |
msgstr "Bitte kontaktiere unseren Support!"
|
692 |
|
693 |
-
#: includes/Ajax/Post.php:
|
694 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
695 |
#: includes/B2S/Network/Item.php:359 includes/B2S/Network/Item.php:485
|
696 |
msgid "Unknown username"
|
697 |
msgstr "unbekannter Blog-Nutzer"
|
698 |
|
699 |
-
#: includes/Ajax/Post.php:
|
700 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
701 |
-
#: includes/B2S/Post/Item.php:
|
702 |
-
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:
|
703 |
-
#: includes/B2S/Ship/Item.php:
|
704 |
msgid "delete"
|
705 |
msgstr "löschen"
|
706 |
|
@@ -756,7 +770,7 @@ msgstr "Anpassen & Planen"
|
|
756 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
757 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
758 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
759 |
-
#: includes/B2S/Ship/Item.php:
|
760 |
msgid "Info"
|
761 |
msgstr "Info"
|
762 |
|
@@ -796,7 +810,7 @@ msgstr "Erweiterte Einstellungen"
|
|
796 |
msgid "enable Auto-Posting"
|
797 |
msgstr "Auto-Posting aktivieren"
|
798 |
|
799 |
-
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:
|
800 |
msgid "show calendar"
|
801 |
msgstr "Planungskalender anzeigen"
|
802 |
|
@@ -850,125 +864,121 @@ msgstr ""
|
|
850 |
msgid "You want to auto-post your blog post?"
|
851 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
852 |
|
853 |
-
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:
|
854 |
-
#: views/b2s/
|
855 |
-
#: views/b2s/ship.php:
|
856 |
-
#: views/b2s/html/footer.php:
|
857 |
-
#: views/b2s/html/footer.php:
|
858 |
-
#: views/b2s/html/footer.php:
|
859 |
-
#: views/b2s/html/footer.php:
|
860 |
msgid "With Blog2Social Premium you can:"
|
861 |
msgstr "Mit Blog2Social kannst Du:"
|
862 |
|
863 |
-
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:
|
864 |
-
#: views/b2s/
|
865 |
-
#: views/b2s/ship.php:
|
866 |
-
#: views/b2s/html/footer.php:
|
867 |
-
#: views/b2s/html/footer.php:
|
868 |
-
#: views/b2s/html/footer.php:
|
869 |
-
#: views/b2s/html/footer.php:
|
870 |
-
#: views/b2s/html/header.php:342
|
871 |
msgid "Post on pages and groups"
|
872 |
msgstr "Poste auf Seiten und in Gruppen"
|
873 |
|
874 |
-
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:
|
875 |
-
#: views/b2s/
|
876 |
-
#: views/b2s/ship.php:
|
877 |
-
#: views/b2s/html/footer.php:
|
878 |
-
#: views/b2s/html/footer.php:
|
879 |
-
#: views/b2s/html/footer.php:
|
880 |
-
#: views/b2s/html/footer.php:
|
881 |
msgid "Share on multiple profiles, pages and groups"
|
882 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
883 |
|
884 |
-
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:
|
885 |
-
#: views/b2s/
|
886 |
-
#: views/b2s/ship.php:
|
887 |
-
#: views/b2s/html/footer.php:
|
888 |
-
#: views/b2s/html/footer.php:
|
889 |
-
#: views/b2s/html/footer.php:
|
890 |
-
#: views/b2s/html/footer.php:
|
891 |
-
#: views/b2s/html/footer.php:561
|
892 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
893 |
msgstr ""
|
894 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
895 |
"Aktualisierung posten und zeitversetzt planen"
|
896 |
|
897 |
-
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:
|
898 |
-
#: views/b2s/
|
899 |
-
#: views/b2s/ship.php:
|
900 |
-
#: views/b2s/html/footer.php:
|
901 |
-
#: views/b2s/html/footer.php:
|
902 |
-
#: views/b2s/html/footer.php:
|
903 |
-
#: views/b2s/html/footer.php:
|
904 |
msgid "Schedule your posts at the best times on each network"
|
905 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
906 |
|
907 |
-
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:
|
908 |
-
#: views/b2s/
|
909 |
-
#: views/b2s/ship.php:
|
910 |
-
#: views/b2s/html/footer.php:
|
911 |
-
#: views/b2s/html/footer.php:
|
912 |
-
#: views/b2s/html/footer.php:
|
913 |
-
#: views/b2s/html/footer.php:
|
914 |
msgid ""
|
915 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
916 |
"social media posts"
|
917 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
918 |
|
919 |
-
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:
|
920 |
-
#: views/b2s/
|
921 |
-
#: views/b2s/ship.php:
|
922 |
-
#: views/b2s/html/footer.php:
|
923 |
-
#: views/b2s/html/footer.php:
|
924 |
-
#: views/b2s/html/footer.php:
|
925 |
-
#: views/b2s/html/footer.php:
|
926 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
927 |
msgstr ""
|
928 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
929 |
"oder nach einem regelmäßigen Muster"
|
930 |
|
931 |
-
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:
|
932 |
-
#: views/b2s/
|
933 |
-
#: views/b2s/ship.php:
|
934 |
-
#: views/b2s/html/footer.php:
|
935 |
-
#: views/b2s/html/footer.php:
|
936 |
-
#: views/b2s/html/footer.php:
|
937 |
-
#: views/b2s/html/footer.php:
|
938 |
msgid "Schedule and re-share old posts"
|
939 |
msgstr "Plane und teile alte Beiträge"
|
940 |
|
941 |
-
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:
|
942 |
-
#: views/b2s/
|
943 |
-
#: views/b2s/ship.php:
|
944 |
-
#: views/b2s/html/footer.php:
|
945 |
-
#: views/b2s/html/footer.php:
|
946 |
-
#: views/b2s/html/footer.php:
|
947 |
-
#: views/b2s/html/footer.php:
|
948 |
-
#: views/b2s/html/footer.php:566
|
949 |
msgid "Select link format or image format for your posts"
|
950 |
msgstr ""
|
951 |
"Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
952 |
|
953 |
-
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:
|
954 |
-
#: views/b2s/
|
955 |
-
#: views/b2s/ship.php:
|
956 |
-
#: views/b2s/html/footer.php:
|
957 |
-
#: views/b2s/html/footer.php:
|
958 |
-
#: views/b2s/html/footer.php:
|
959 |
-
#: views/b2s/html/footer.php:
|
960 |
-
#: views/b2s/html/footer.php:567
|
961 |
msgid "Select individual images per post"
|
962 |
msgstr ""
|
963 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
964 |
|
965 |
-
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:
|
966 |
-
#: views/b2s/
|
967 |
-
#: views/b2s/ship.php:
|
968 |
-
#: views/b2s/html/footer.php:
|
969 |
-
#: views/b2s/html/footer.php:
|
970 |
-
#: views/b2s/html/footer.php:
|
971 |
-
#: views/b2s/html/footer.php:
|
972 |
msgid ""
|
973 |
"Reporting & calendar: keep track of your published and scheduled social "
|
974 |
"media posts"
|
@@ -976,18 +986,18 @@ msgstr ""
|
|
976 |
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
977 |
"Media Beiträge"
|
978 |
|
979 |
-
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:
|
980 |
-
#: views/b2s/
|
981 |
-
#: views/b2s/ship.php:
|
982 |
-
#: views/b2s/html/footer.php:
|
983 |
-
#: views/b2s/html/footer.php:
|
984 |
-
#: views/b2s/html/footer.php:
|
985 |
-
#: views/b2s/html/footer.php:
|
986 |
msgid "Upgrade to SMART and above"
|
987 |
msgstr "Upgrade auf SMART und höher"
|
988 |
|
989 |
-
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:
|
990 |
-
#: views/b2s/curation.php:
|
991 |
#: views/b2s/ship.php:325 views/b2s/ship.php:389 views/b2s/ship.php:435
|
992 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
993 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
@@ -1034,7 +1044,7 @@ msgstr ""
|
|
1034 |
"Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
|
1035 |
"Erstelle eine Netzwerkgruppierung</a>"
|
1036 |
|
1037 |
-
#: includes/B2S/PostBox.php:281 views/b2s/curation.php:
|
1038 |
#: views/b2s/repost.php:204
|
1039 |
msgid "Available networks"
|
1040 |
msgstr "Verfügbare Netzwerke"
|
@@ -1070,22 +1080,22 @@ msgstr ""
|
|
1070 |
msgid "save..."
|
1071 |
msgstr "speichere Daten..."
|
1072 |
|
1073 |
-
#: views/b2s/autopost.php:48 views/b2s/settings.php:
|
1074 |
#: includes/B2S/Ship/Image.php:96
|
1075 |
msgid "Select or upload an image from media gallery"
|
1076 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
1077 |
|
1078 |
-
#: views/b2s/autopost.php:49 views/b2s/settings.php:
|
1079 |
#: includes/B2S/Ship/Image.php:97
|
1080 |
msgid "Use image"
|
1081 |
msgstr "Bild verwenden"
|
1082 |
|
1083 |
-
#: views/b2s/autopost.php:59 views/b2s/settings.php:
|
1084 |
#: includes/B2S/Settings/Item.php:53
|
1085 |
msgid "Personal Time Zone"
|
1086 |
msgstr "Persönliche Zeitzone"
|
1087 |
|
1088 |
-
#: views/b2s/autopost.php:62 views/b2s/settings.php:
|
1089 |
msgid ""
|
1090 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
1091 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -1112,6 +1122,42 @@ msgstr ""
|
|
1112 |
msgid "More information"
|
1113 |
msgstr "Zusätzliche Informationen"
|
1114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
#: views/b2s/curation.draft.php:17
|
1116 |
msgid ""
|
1117 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
@@ -1129,11 +1175,11 @@ msgstr "Blog2Social Browser Erweiterung"
|
|
1129 |
#: views/b2s/network.php:339 views/b2s/network.php:414
|
1130 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1131 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1132 |
-
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:
|
1133 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1134 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1135 |
#: views/b2s/ship.php:574 views/b2s/ship.php:662 views/b2s/support.php:144
|
1136 |
-
#: views/b2s/support.php:
|
1137 |
msgid "Loading..."
|
1138 |
msgstr "Wird geladen..."
|
1139 |
|
@@ -1145,10 +1191,10 @@ msgstr "Entwurf löschen"
|
|
1145 |
msgid "Are you sure you want to delete this draft?"
|
1146 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1147 |
|
1148 |
-
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:
|
1149 |
#: views/b2s/network.php:109 views/b2s/post.approve.php:98
|
1150 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
1151 |
-
#: views/b2s/post.notice.php:
|
1152 |
#: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:478
|
1153 |
#: views/b2s/ship.php:557 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
1154 |
msgid "NO"
|
@@ -1156,7 +1202,7 @@ msgstr "NEIN"
|
|
1156 |
|
1157 |
#: views/b2s/curation.draft.php:91 views/b2s/network.php:110
|
1158 |
#: views/b2s/network.php:173 views/b2s/post.approve.php:99
|
1159 |
-
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:
|
1160 |
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:100
|
1161 |
#: views/b2s/repost.php:92 views/b2s/repost.php:93
|
1162 |
#: views/b2s/widgets/posts.php:68
|
@@ -1191,109 +1237,130 @@ msgstr "Als Entwurf gespeichert."
|
|
1191 |
msgid "Link Post"
|
1192 |
msgstr "Link-Beitrag"
|
1193 |
|
1194 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
|
|
1195 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1196 |
#: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
|
1197 |
#: includes/B2S/Settings/Item.php:276
|
1198 |
msgid "Image Post"
|
1199 |
msgstr "Bild-Beitrag"
|
1200 |
|
1201 |
-
#: views/b2s/curation.php:49 views/b2s/
|
1202 |
-
#:
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
#:
|
1207 |
-
#:
|
1208 |
-
#:
|
1209 |
-
#:
|
1210 |
-
|
1211 |
-
|
|
|
|
|
|
|
1212 |
|
1213 |
-
#: views/b2s/curation.php:
|
1214 |
msgid "Load data..."
|
1215 |
msgstr "Daten werden geladen..."
|
1216 |
|
1217 |
-
#: views/b2s/curation.php:
|
1218 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
msgstr ""
|
1220 |
-
"Füge einen Link ein,
|
|
|
1221 |
|
1222 |
-
#: views/b2s/curation.php:
|
1223 |
msgid "Please enter a valid link"
|
1224 |
msgstr "Bitte gib einen gültigen Link ein"
|
1225 |
|
1226 |
-
#: views/b2s/curation.php:
|
1227 |
msgid "Enter link"
|
1228 |
msgstr "Link eingeben"
|
1229 |
|
1230 |
-
#: views/b2s/curation.php:
|
1231 |
msgid "continue"
|
1232 |
msgstr "weiter"
|
1233 |
|
1234 |
-
#: views/b2s/curation.php:
|
1235 |
-
#: includes/B2S/Ship/Item.php:
|
1236 |
-
#: includes/B2S/Ship/Item.php:
|
1237 |
-
#: includes/B2S/Ship/Item.php:
|
1238 |
-
#: includes/B2S/Ship/Item.php:
|
1239 |
-
#: includes/B2S/Ship/Item.php:
|
1240 |
-
#: includes/B2S/Ship/Item.php:
|
1241 |
-
#: includes/B2S/Ship/Item.php:
|
1242 |
-
#: includes/B2S/Ship/Item.php:
|
1243 |
-
#: includes/B2S/Ship/Item.php:
|
1244 |
-
#: includes/B2S/Ship/Item.php:
|
1245 |
-
#: includes/B2S/Ship/Item.php:
|
1246 |
-
#: includes/B2S/Ship/Item.php:
|
1247 |
-
#: includes/B2S/Ship/Item.php:
|
1248 |
msgid "Change image"
|
1249 |
msgstr "Bild ändern"
|
1250 |
|
1251 |
-
#: views/b2s/curation.php:
|
|
|
1252 |
msgid "Write something..."
|
1253 |
msgstr "Schreibe etwas..."
|
1254 |
|
1255 |
-
#: views/b2s/curation.php:
|
1256 |
#: includes/B2S/Post/Item.php:441
|
1257 |
msgid "Re-share this post"
|
1258 |
msgstr "Diesen Beitrag nochmal teilen"
|
1259 |
|
1260 |
-
#: views/b2s/curation.php:
|
1261 |
msgid "Create a new post"
|
1262 |
msgstr "Neuen Social Media Post erstellen"
|
1263 |
|
1264 |
-
#: views/b2s/curation.php:
|
1265 |
#: views/b2s/ship.php:18 views/b2s/ship.php:663 includes/B2S/Post/Filter.php:59
|
1266 |
#: includes/B2S/Post/Item.php:368 includes/B2S/Ship/Save.php:438
|
1267 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1268 |
msgid "published"
|
1269 |
msgstr "veröffentlicht"
|
1270 |
|
1271 |
-
#: views/b2s/curation.php:
|
1272 |
#: views/b2s/ship.php:472
|
1273 |
msgid "Do you want to mark this post as published ?"
|
1274 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1275 |
|
1276 |
-
#: views/b2s/curation.php:
|
1277 |
#: views/b2s/ship.php:477 views/b2s/ship.php:558
|
1278 |
msgid "YES"
|
1279 |
msgstr "JA"
|
1280 |
|
1281 |
-
#: views/b2s/curation.php:
|
1282 |
#: views/b2s/ship.php:402
|
1283 |
msgid "Need to schedule your posts?"
|
1284 |
msgstr "Du möchtest Deine Beiträge planen?"
|
1285 |
|
1286 |
-
#: views/b2s/curation.php:
|
1287 |
#: views/b2s/ship.php:405
|
1288 |
msgid "Blog2Social Premium covers everything you need."
|
1289 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1290 |
|
1291 |
-
#: views/b2s/curation.php:
|
1292 |
-
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:
|
1293 |
msgid "Schedule for specific dates"
|
1294 |
msgstr "Für bestimmte Termine planen"
|
1295 |
|
1296 |
-
#: views/b2s/curation.php:
|
1297 |
#: views/b2s/ship.php:409
|
1298 |
msgid ""
|
1299 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
@@ -1302,12 +1369,12 @@ msgstr ""
|
|
1302 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
1303 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
1304 |
|
1305 |
-
#: views/b2s/curation.php:
|
1306 |
#: views/b2s/ship.php:411
|
1307 |
msgid "Schedule post recurrently"
|
1308 |
msgstr "Beitrag mehrfach planen"
|
1309 |
|
1310 |
-
#: views/b2s/curation.php:
|
1311 |
#: views/b2s/ship.php:412
|
1312 |
msgid ""
|
1313 |
"You have evergreen content you want to re-share from time to time in your "
|
@@ -1318,12 +1385,12 @@ msgstr ""
|
|
1318 |
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
1319 |
"wiederkehrenden Rhythmus"
|
1320 |
|
1321 |
-
#: views/b2s/curation.php:
|
1322 |
#: views/b2s/ship.php:414
|
1323 |
msgid "Best Time Scheduler"
|
1324 |
msgstr "Beste Zeiten Manager"
|
1325 |
|
1326 |
-
#: views/b2s/curation.php:
|
1327 |
#: views/b2s/ship.php:415
|
1328 |
msgid ""
|
1329 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
@@ -1337,29 +1404,127 @@ msgstr ""
|
|
1337 |
"Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
|
1338 |
"Deiner Posts."
|
1339 |
|
1340 |
-
#: views/b2s/curation.php:
|
1341 |
-
msgid "Blog2Social: Social Media Posts"
|
1342 |
-
msgstr "Blog2Social: Social Media Posts"
|
1343 |
-
|
1344 |
-
#: views/b2s/curation.php:203
|
1345 |
-
msgid "This is a premium feature."
|
1346 |
-
msgstr "Das ist eine Premium-Funktion."
|
1347 |
-
|
1348 |
-
#: views/b2s/curation.php:209
|
1349 |
msgid "You want to create image posts with any image from your media library?"
|
1350 |
msgstr ""
|
1351 |
"Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
|
1352 |
"erstellen?"
|
1353 |
|
1354 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1355 |
msgid "Select image"
|
1356 |
msgstr "Bild auswählen"
|
1357 |
|
1358 |
-
#: views/b2s/curation.php:
|
1359 |
msgid "Available networks for Social Media Posts"
|
1360 |
msgstr "Verfügbare Netzwerke für die Social Media Posts"
|
1361 |
|
1362 |
-
#: views/b2s/curation.php:
|
1363 |
#, php-format
|
1364 |
msgid ""
|
1365 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
@@ -1392,7 +1557,7 @@ msgstr "Vollständigen Kalender anzeigen"
|
|
1392 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1393 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1394 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1395 |
-
#: views/b2s/html/post.navbar.php:
|
1396 |
msgid "filter"
|
1397 |
msgstr "Filter"
|
1398 |
|
@@ -1404,16 +1569,7 @@ msgstr "Neue Netzwerkgruppierung anlegen"
|
|
1404 |
msgid "You want to define a new combination of networks?"
|
1405 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
1406 |
|
1407 |
-
#: views/b2s/network.php:
|
1408 |
-
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:165
|
1409 |
-
#: includes/B2S/Ship/Image.php:92 includes/B2S/Ship/Item.php:496
|
1410 |
-
#: includes/B2S/Ship/Item.php:557 includes/B2S/Ship/Item.php:744
|
1411 |
-
#: includes/B2S/Ship/Item.php:798 includes/B2S/Ship/Portale.php:32
|
1412 |
-
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:45
|
1413 |
-
msgid "PRO"
|
1414 |
-
msgstr "PRO"
|
1415 |
-
|
1416 |
-
#: views/b2s/network.php:39 views/b2s/partials/post-edit-modal.php:97
|
1417 |
msgid "Delete"
|
1418 |
msgstr "Löschen"
|
1419 |
|
@@ -1469,7 +1625,7 @@ msgstr ""
|
|
1469 |
"Business Brancheneinträgen zu erweitern."
|
1470 |
|
1471 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1472 |
-
#: includes/B2S/Ship/Item.php:
|
1473 |
msgid "Learn more"
|
1474 |
msgstr "Mehr erfahren"
|
1475 |
|
@@ -1535,7 +1691,7 @@ msgid "Could not be changed"
|
|
1535 |
msgstr "Could not be changed"
|
1536 |
|
1537 |
#: views/b2s/network.php:203
|
1538 |
-
msgid "
|
1539 |
msgstr "modify"
|
1540 |
|
1541 |
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:168
|
@@ -1543,7 +1699,19 @@ msgstr "modify"
|
|
1543 |
msgid "Edit Post Template"
|
1544 |
msgstr "Beitragsvorlage bearbeiten"
|
1545 |
|
1546 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1547 |
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:133
|
1548 |
msgid "save"
|
1549 |
msgstr "speichern"
|
@@ -1623,7 +1791,7 @@ msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
|
1623 |
msgid "The name of the post author."
|
1624 |
msgstr "Der Name des Autors Deines Beitrags."
|
1625 |
|
1626 |
-
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:
|
1627 |
msgid "Character limit"
|
1628 |
msgstr "Zeichenbegrenzung"
|
1629 |
|
@@ -1720,9 +1888,9 @@ msgid "Pinterest has rejected the connection to your blog"
|
|
1720 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
1721 |
|
1722 |
#: views/b2s/network.php:350 views/b2s/ship.php:585
|
1723 |
-
msgid "Please select your
|
1724 |
msgstr ""
|
1725 |
-
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut"
|
1726 |
|
1727 |
#: views/b2s/network.php:351 views/b2s/ship.php:586
|
1728 |
msgid ""
|
@@ -1826,7 +1994,7 @@ msgid "The connection has already been assigned to this user."
|
|
1826 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
1827 |
|
1828 |
#: views/b2s/network.php:487
|
1829 |
-
msgid "The connection
|
1830 |
msgstr "Diese Verbindung existiert nicht."
|
1831 |
|
1832 |
#: views/b2s/network.php:490
|
@@ -1940,7 +2108,7 @@ msgstr "Social Media Posts löschen"
|
|
1940 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1941 |
msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
1942 |
|
1943 |
-
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:
|
1944 |
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:95
|
1945 |
#: views/b2s/repost.php:87 views/b2s/widgets/posts.php:63
|
1946 |
msgid "Number of entries"
|
@@ -2067,22 +2235,18 @@ msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
|
2067 |
msgid "You have not saved any favorites."
|
2068 |
msgstr "Du hast keine Favoriten gespeichert."
|
2069 |
|
2070 |
-
#: views/b2s/post.notice.php:
|
2071 |
#: views/b2s/widgets/posts.php:58
|
2072 |
msgid "Delete entries from the reporting"
|
2073 |
msgstr "Einträge aus dem Reporting löschen"
|
2074 |
|
2075 |
-
#: views/b2s/post.notice.php:
|
2076 |
#: views/b2s/widgets/posts.php:61
|
2077 |
msgid "You are sure, you want to delete entries from the reporting?"
|
2078 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
2079 |
|
2080 |
-
#: views/b2s/post.sched.php:33 includes/B2S/Network/Item.php:137
|
2081 |
-
msgid "Uhr"
|
2082 |
-
msgstr "Uhr"
|
2083 |
-
|
2084 |
#: views/b2s/post.sched.php:90 views/b2s/repost.php:82
|
2085 |
-
msgid "Delete entries
|
2086 |
msgstr "Einträge aus der Planung löschen"
|
2087 |
|
2088 |
#: views/b2s/post.sched.php:93 views/b2s/repost.php:85
|
@@ -2193,7 +2357,7 @@ msgstr ""
|
|
2193 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2194 |
|
2195 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
2196 |
-
#: includes/B2S/Post/Item.php:
|
2197 |
msgid "Auto-Posting"
|
2198 |
msgstr "Auto-Posting"
|
2199 |
|
@@ -2286,7 +2450,7 @@ msgstr "Regelmäßige Updates und bevorzugter Support per E-Mail und Telefon."
|
|
2286 |
msgid "Show me plans and prices"
|
2287 |
msgstr "Versionen und Preise anzeigen"
|
2288 |
|
2289 |
-
#: views/b2s/premium.php:
|
2290 |
msgid "Show all premium features"
|
2291 |
msgstr "Alle Premium-Features anzeigen"
|
2292 |
|
@@ -2298,44 +2462,175 @@ msgstr "Allgemein"
|
|
2298 |
msgid "Social Meta Data"
|
2299 |
msgstr "Social Meta Angaben"
|
2300 |
|
2301 |
-
#: views/b2s/settings.php:
|
2302 |
-
msgid "
|
2303 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2304 |
|
2305 |
#: views/b2s/settings.php:87
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2306 |
msgid ""
|
2307 |
-
"
|
2308 |
-
"
|
2309 |
-
"
|
2310 |
-
|
2311 |
-
"
|
2312 |
-
"
|
2313 |
-
"
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
"
|
2320 |
-
"
|
2321 |
-
|
2322 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2323 |
|
2324 |
#: views/b2s/settings.php:98
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2325 |
msgid "Activate Legacy mode "
|
2326 |
msgstr "Kompatibilitätsmodus aktivieren"
|
2327 |
|
2328 |
-
#: views/b2s/settings.php:
|
2329 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2330 |
msgstr ""
|
2331 |
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
2332 |
"entlasten."
|
2333 |
|
2334 |
-
#: views/b2s/settings.php:
|
2335 |
msgid "Instant Caching for Facebook Link Posts"
|
2336 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2337 |
|
2338 |
-
#: views/b2s/settings.php:
|
2339 |
msgid ""
|
2340 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2341 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -2381,7 +2676,7 @@ msgstr "Du möchtest Deine Zeiten laden?"
|
|
2381 |
msgid "Load My Times Settings"
|
2382 |
msgstr "Meine Zeit-Einstellungen laden"
|
2383 |
|
2384 |
-
#: views/b2s/ship.php:105
|
2385 |
msgid "Social Accounts"
|
2386 |
msgstr "Social Media Konten"
|
2387 |
|
@@ -2730,7 +3025,21 @@ msgstr ""
|
|
2730 |
"Klicke hier, um die richtige Lizenz für Dich zu finden oder unser Sales Team "
|
2731 |
"für Fragen zur Zahlung zu kontaktieren."
|
2732 |
|
2733 |
-
#: views/b2s/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2734 |
msgid ""
|
2735 |
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
2736 |
"administrator."
|
@@ -2738,61 +3047,86 @@ msgstr ""
|
|
2738 |
"Für die Nutzung des Problemanalyse-Tools werden Adminrechte benötigt. Bitte "
|
2739 |
"wende Dich an Deinen Administrator."
|
2740 |
|
2741 |
-
#: views/b2s/support.php:
|
2742 |
msgid "Needed"
|
2743 |
msgstr "Erforderlich"
|
2744 |
|
2745 |
-
#: views/b2s/support.php:
|
2746 |
msgid "Current"
|
2747 |
msgstr "Aktuell"
|
2748 |
|
2749 |
-
#: views/b2s/support.php:
|
2750 |
msgid "reload"
|
2751 |
msgstr "neu laden"
|
2752 |
|
2753 |
-
#: views/b2s/support.php:
|
2754 |
msgid "Export as txt-file"
|
2755 |
msgstr "Als txt-Datei exportieren"
|
2756 |
|
2757 |
-
#: views/b2s/support.php:
|
2758 |
msgid "Enter a URL to see how your link preview will look on social media."
|
2759 |
msgstr ""
|
2760 |
"Gib eine URL ein, um zu sehen, wie die Link-Vorschau auf Social Media "
|
2761 |
"aussehen wird"
|
2762 |
|
2763 |
-
#: views/b2s/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2764 |
msgid "Facebook Open Graph Meta Tags"
|
2765 |
msgstr "Facebook Open Graph Meta Tags"
|
2766 |
|
2767 |
-
#: views/b2s/support.php:
|
2768 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2769 |
msgstr "So kannst Du Deine Open Graph Tags bearbeiten und anpassen."
|
2770 |
|
2771 |
-
#: views/b2s/support.php:
|
|
|
2772 |
msgid "For example your Wordpress Home Page"
|
2773 |
msgstr "zum Beispiel Deine Blogseite"
|
2774 |
|
2775 |
-
#: views/b2s/support.php:
|
2776 |
msgid "Debug & Preview"
|
2777 |
msgstr "Link prüfen"
|
2778 |
|
2779 |
-
#: views/b2s/support.php:
|
2780 |
msgid "LinkedIn Post Inspector"
|
2781 |
msgstr "LinkedIn Post Inspector"
|
2782 |
|
2783 |
-
#: views/b2s/support.php:
|
2784 |
msgid "Inspect Post"
|
2785 |
msgstr "Link prüfen"
|
2786 |
|
2787 |
-
#: views/b2s/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2788 |
msgid "Twitter Card Validator"
|
2789 |
msgstr "Twitter Card Validator"
|
2790 |
|
2791 |
-
#: views/b2s/support.php:
|
2792 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2793 |
msgstr "So kannst Du Deine Twitter Card Tags bearbeiten und anpassen."
|
2794 |
|
2795 |
-
#: views/b2s/support.php:
|
2796 |
msgid "Validate directly on Twitter"
|
2797 |
msgstr "Direkt bei Twitter prüfen"
|
2798 |
|
@@ -2963,19 +3297,12 @@ msgstr ""
|
|
2963 |
"Beitrag aktualisiert wird."
|
2964 |
|
2965 |
#: includes/B2S/AutoPost/Item.php:79
|
2966 |
-
msgid "
|
2967 |
-
msgstr "
|
2968 |
|
2969 |
-
#: includes/B2S/AutoPost/Item.php:
|
2970 |
-
msgid "
|
2971 |
-
msgstr "
|
2972 |
-
|
2973 |
-
#: includes/B2S/AutoPost/Item.php:107 views/b2s/html/footer.php:433
|
2974 |
-
msgid ""
|
2975 |
-
"Share posts from other authors automatically with your Auto-Poster settings"
|
2976 |
-
msgstr ""
|
2977 |
-
"Beiträge anderer Autoren automatisch posten mit den konfigurierten Auto-"
|
2978 |
-
"Poster Einstellungen"
|
2979 |
|
2980 |
#: includes/B2S/AutoPost/Item.php:138
|
2981 |
msgid "Autoposter for Imported Posts"
|
@@ -3085,9 +3412,9 @@ msgid "at scheduled times"
|
|
3085 |
msgstr "zu geplanten Zeiten"
|
3086 |
|
3087 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
3088 |
-
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:
|
3089 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3090 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3091 |
msgid "Date"
|
3092 |
msgstr "Startdatum"
|
3093 |
|
@@ -3116,7 +3443,7 @@ msgid "Best times"
|
|
3116 |
msgstr "Beste Zeiten"
|
3117 |
|
3118 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
3119 |
-
#: includes/B2S/Ship/Item.php:
|
3120 |
#: includes/B2S/Ship/Portale.php:38
|
3121 |
msgid "Blog"
|
3122 |
msgstr "Blog"
|
@@ -3159,8 +3486,8 @@ msgstr "Bitte upgraden"
|
|
3159 |
|
3160 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
3161 |
#: includes/B2S/Network/Item.php:355
|
3162 |
-
msgid "
|
3163 |
-
msgstr "
|
3164 |
|
3165 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
3166 |
#: includes/B2S/Network/Item.php:359
|
@@ -3168,11 +3495,11 @@ msgid "Assigned by"
|
|
3168 |
msgstr "Zugewiesen von"
|
3169 |
|
3170 |
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:330
|
3171 |
-
#: includes/B2S/Network/Item.php:392 includes/B2S/Ship/Item.php:
|
3172 |
msgid "Days"
|
3173 |
msgstr "Tage"
|
3174 |
|
3175 |
-
#: includes/B2S/Network/Item.php:291 includes/B2S/Network/Item.php:
|
3176 |
#, php-format
|
3177 |
msgid ""
|
3178 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
@@ -3181,7 +3508,7 @@ msgstr ""
|
|
3181 |
"Unternehmensseite (Arbeitgeberprofil, <a href=\"%s\" target=\"_blank\">Altes "
|
3182 |
"Design bis 30.11.2020</a>)"
|
3183 |
|
3184 |
-
#: includes/B2S/Network/Item.php:292 includes/B2S/Network/Item.php:
|
3185 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3186 |
msgstr "Unternehmensseite (Arbeitgeberprofil, Neues Design)"
|
3187 |
|
@@ -3261,7 +3588,7 @@ msgid "Load default settings"
|
|
3261 |
msgstr "Lade Standardeinstellungen"
|
3262 |
|
3263 |
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:701
|
3264 |
-
#: includes/B2S/Ship/Item.php:
|
3265 |
msgid "Link"
|
3266 |
msgstr "Link"
|
3267 |
|
@@ -3273,7 +3600,7 @@ msgstr "Bild"
|
|
3273 |
msgid "Content"
|
3274 |
msgstr "Inhalt"
|
3275 |
|
3276 |
-
#: includes/B2S/Network/Item.php:720 includes/B2S/Ship/Item.php:
|
3277 |
msgid ""
|
3278 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3279 |
"in your post."
|
@@ -3285,30 +3612,44 @@ msgstr ""
|
|
3285 |
msgid "clear"
|
3286 |
msgstr "löschen"
|
3287 |
|
3288 |
-
#: includes/B2S/Network/Item.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3289 |
msgid "The link will be added automatically at the end of the post."
|
3290 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
3291 |
|
3292 |
-
#: includes/B2S/Network/Item.php:
|
3293 |
-
|
|
|
|
|
|
|
|
|
3294 |
msgid "Network limit"
|
3295 |
msgstr "Netzwerkbegrenzung"
|
3296 |
|
3297 |
-
#: includes/B2S/Network/Item.php:
|
3298 |
-
#: includes/B2S/Network/Item.php:
|
3299 |
-
#: includes/B2S/Network/Item.php:
|
3300 |
-
#: includes/B2S/Ship/Item.php:
|
3301 |
-
#: includes/B2S/Ship/Item.php:
|
3302 |
-
#: includes/B2S/Ship/Item.php:
|
3303 |
-
#: includes/B2S/Ship/Item.php:
|
3304 |
msgid "characters"
|
3305 |
msgstr "Zeichen"
|
3306 |
|
3307 |
-
#: includes/B2S/Network/Item.php:
|
3308 |
msgid "Add a link-URL to the end of my image post."
|
3309 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
3310 |
|
3311 |
-
#: includes/B2S/Network/Item.php:
|
3312 |
msgid ""
|
3313 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3314 |
"Instagram does not turn link-URLs into clickable links)"
|
@@ -3316,18 +3657,22 @@ msgstr ""
|
|
3316 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
3317 |
"Instagram Links nicht als klickbare Links darstellt)"
|
3318 |
|
3319 |
-
#: includes/B2S/Network/Item.php:
|
|
|
|
|
|
|
|
|
3320 |
msgid "recommended length"
|
3321 |
msgstr "Empfohlene Länge"
|
3322 |
|
3323 |
-
#: includes/B2S/Network/Item.php:
|
3324 |
-
#: includes/B2S/Network/Item.php:
|
3325 |
-
#: includes/B2S/Network/Item.php:
|
3326 |
-
#: includes/B2S/Network/Item.php:
|
3327 |
-
#: includes/B2S/Network/Item.php:
|
3328 |
-
#: includes/B2S/Network/Item.php:
|
3329 |
-
#: includes/B2S/Network/Item.php:
|
3330 |
-
#: includes/B2S/Network/Item.php:
|
3331 |
msgid "Preview"
|
3332 |
msgstr "Vorschau"
|
3333 |
|
@@ -3492,17 +3837,17 @@ msgstr "gespeichert"
|
|
3492 |
msgid "last saved"
|
3493 |
msgstr "zuletzt gespeichert:"
|
3494 |
|
3495 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3496 |
#: includes/B2S/Ship/Save.php:448
|
3497 |
msgid "Retweet"
|
3498 |
msgstr "Retweet"
|
3499 |
|
3500 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3501 |
msgid "Re-Share"
|
3502 |
msgstr "Wiederholt geteilt"
|
3503 |
|
3504 |
-
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:
|
3505 |
-
#: includes/B2S/Post/Item.php:
|
3506 |
msgid "select all"
|
3507 |
msgstr "alle auswählen"
|
3508 |
|
@@ -3528,50 +3873,50 @@ msgstr "wird gerade von %s geteilt"
|
|
3528 |
msgid "shared by %s"
|
3529 |
msgstr "von %s geteilt"
|
3530 |
|
3531 |
-
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:
|
3532 |
msgid "You want to delete a publish post entry?"
|
3533 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3534 |
|
3535 |
-
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:
|
3536 |
msgid "delete from reporting"
|
3537 |
msgstr "aus Reporting löschen"
|
3538 |
|
3539 |
-
#: includes/B2S/Post/Item.php:
|
3540 |
#, php-format
|
3541 |
msgid "is waiting to shared by %s"
|
3542 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3543 |
|
3544 |
-
#: includes/B2S/Post/Item.php:
|
3545 |
msgid "share"
|
3546 |
msgstr "teilen"
|
3547 |
|
3548 |
-
#: includes/B2S/Post/Item.php:
|
3549 |
msgid "You want to delete your Social Media post?"
|
3550 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3551 |
|
3552 |
-
#: includes/B2S/Post/Item.php:
|
3553 |
#, php-format
|
3554 |
msgid "last modified by %s"
|
3555 |
msgstr "zuletzt von %s bearbeitet"
|
3556 |
|
3557 |
-
#: includes/B2S/Post/Item.php:
|
3558 |
msgid "is currently being processed by the network"
|
3559 |
msgstr "wird vom Netzwerk verarbeitet"
|
3560 |
|
3561 |
-
#: includes/B2S/Post/Item.php:
|
3562 |
#, php-format
|
3563 |
msgid "scheduled by %s"
|
3564 |
msgstr "von %s vorgeplant "
|
3565 |
|
3566 |
-
#: includes/B2S/Post/Item.php:
|
3567 |
msgid "You want to edit your scheduled post?"
|
3568 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3569 |
|
3570 |
-
#: includes/B2S/Post/Item.php:
|
3571 |
msgid "edit"
|
3572 |
msgstr "edit"
|
3573 |
|
3574 |
-
#: includes/B2S/Post/Item.php:
|
3575 |
msgid "delete scheduling"
|
3576 |
msgstr "Planung löschen"
|
3577 |
|
@@ -3628,31 +3973,31 @@ msgstr "Tage um"
|
|
3628 |
msgid "on"
|
3629 |
msgstr " "
|
3630 |
|
3631 |
-
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:
|
3632 |
msgid "Mon"
|
3633 |
msgstr "Mo"
|
3634 |
|
3635 |
-
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:
|
3636 |
msgid "Tue"
|
3637 |
msgstr "Di"
|
3638 |
|
3639 |
-
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:
|
3640 |
msgid "Wed"
|
3641 |
msgstr "Mi"
|
3642 |
|
3643 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
3644 |
msgid "Thu"
|
3645 |
msgstr "Do"
|
3646 |
|
3647 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
3648 |
msgid "Fri"
|
3649 |
msgstr "Fr"
|
3650 |
|
3651 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:
|
3652 |
msgid "Sat"
|
3653 |
msgstr "Sa"
|
3654 |
|
3655 |
-
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:
|
3656 |
msgid "Sun"
|
3657 |
msgstr "So"
|
3658 |
|
@@ -3725,7 +4070,7 @@ msgid "Authors"
|
|
3725 |
msgstr "Autoren"
|
3726 |
|
3727 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3728 |
-
#: includes/B2S/Ship/Item.php:
|
3729 |
msgid "Account"
|
3730 |
msgstr "Konto"
|
3731 |
|
@@ -3741,6 +4086,24 @@ msgstr "Benutzer"
|
|
3741 |
msgid "Url Shortener"
|
3742 |
msgstr "Url Shortener"
|
3743 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3744 |
#: includes/B2S/Settings/Item.php:67
|
3745 |
msgid "no URL Shortener"
|
3746 |
msgstr "kein URL Shortener"
|
@@ -4069,56 +4432,56 @@ msgstr "Bild für alle og-meta-Netzwerke anwenden"
|
|
4069 |
msgid "Apply image for this image gallery"
|
4070 |
msgstr "Bild zur Bildergalerie hinzufügen"
|
4071 |
|
4072 |
-
#: includes/B2S/Ship/Item.php:
|
4073 |
msgid "Network does not support image for profiles"
|
4074 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
4075 |
|
4076 |
-
#: includes/B2S/Ship/Item.php:
|
4077 |
msgid "Network defines image by link"
|
4078 |
msgstr "Netzwerk wählt selber das Bild aus"
|
4079 |
|
4080 |
-
#: includes/B2S/Ship/Item.php:
|
4081 |
msgid "Supported HTML tags"
|
4082 |
msgstr "Erlaubte HTML-Elemente"
|
4083 |
|
4084 |
-
#: includes/B2S/Ship/Item.php:
|
4085 |
msgid "Network does not support emojis"
|
4086 |
msgstr "Netzwerk unterstützt keine Emojis"
|
4087 |
|
4088 |
-
#: includes/B2S/Ship/Item.php:
|
4089 |
msgid "Network does not support GIFs"
|
4090 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
4091 |
|
4092 |
-
#: includes/B2S/Ship/Item.php:
|
4093 |
msgid "Text only"
|
4094 |
msgstr "nur Text"
|
4095 |
|
4096 |
-
#: includes/B2S/Ship/Item.php:
|
4097 |
msgid "Network does not support image for pages"
|
4098 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
4099 |
|
4100 |
-
#: includes/B2S/Ship/Item.php:
|
4101 |
msgid "Connection expires on 31 March 2019"
|
4102 |
msgstr "Die Verbindung endet am 31. März 2019."
|
4103 |
|
4104 |
-
#: includes/B2S/Ship/Item.php:
|
4105 |
msgid "Connection expires on 2 April 2019"
|
4106 |
msgstr "Die Verbindung endet am 2. April 2019."
|
4107 |
|
4108 |
-
#: includes/B2S/Ship/Item.php:
|
4109 |
msgid "post format"
|
4110 |
msgstr "Postformat"
|
4111 |
|
4112 |
-
#: includes/B2S/Ship/Item.php:
|
4113 |
msgid "Insert full-text"
|
4114 |
msgstr "ganzen Text einfügen"
|
4115 |
|
4116 |
-
#: includes/B2S/Ship/Item.php:
|
4117 |
msgid "Delete text"
|
4118 |
msgstr "Text löschen"
|
4119 |
|
4120 |
-
#: includes/B2S/Ship/Item.php:
|
4121 |
-
#: includes/B2S/Ship/Item.php:
|
4122 |
msgid ""
|
4123 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
4124 |
"allowed to post identical or substantially similar content to multiple "
|
@@ -4129,8 +4492,8 @@ msgstr ""
|
|
4129 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
4130 |
"mehreren Accounts zu posten."
|
4131 |
|
4132 |
-
#: includes/B2S/Ship/Item.php:
|
4133 |
-
#: includes/B2S/Ship/Item.php:
|
4134 |
msgid ""
|
4135 |
"Violating these rules can result in Twitter suspending your account. Always "
|
4136 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -4140,12 +4503,12 @@ msgstr ""
|
|
4140 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
4141 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
4142 |
|
4143 |
-
#: includes/B2S/Ship/Item.php:
|
4144 |
-
#: includes/B2S/Ship/Item.php:
|
4145 |
msgid "Learn more about this"
|
4146 |
msgstr "Erfahre mehr darüber"
|
4147 |
|
4148 |
-
#: includes/B2S/Ship/Item.php:
|
4149 |
msgid ""
|
4150 |
"Please note: XING allows identical posts to be published only once within a "
|
4151 |
"group and no more than three times across different groups."
|
@@ -4154,11 +4517,11 @@ msgstr ""
|
|
4154 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
4155 |
"Gruppen."
|
4156 |
|
4157 |
-
#: includes/B2S/Ship/Item.php:
|
4158 |
msgid "Read more"
|
4159 |
msgstr "Weiterlesen"
|
4160 |
|
4161 |
-
#: includes/B2S/Ship/Item.php:
|
4162 |
msgid ""
|
4163 |
"Please keep in mind that users are not allowed to post identical or "
|
4164 |
"substantially similar content to multiple accounts or multiple duplicate "
|
@@ -4168,7 +4531,7 @@ msgstr ""
|
|
4168 |
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
4169 |
"Updates in einem Konto zu veröffentlichen."
|
4170 |
|
4171 |
-
#: includes/B2S/Ship/Item.php:
|
4172 |
msgid ""
|
4173 |
"Violating these rules can result in suspending your account. Always vary "
|
4174 |
"your content with different images, comments, hashtags or handles to prevent "
|
@@ -4178,56 +4541,56 @@ msgstr ""
|
|
4178 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
4179 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
4180 |
|
4181 |
-
#: includes/B2S/Ship/Item.php:
|
4182 |
msgid "hide calendar"
|
4183 |
msgstr "Planungskalender verbergen"
|
4184 |
|
4185 |
-
#: includes/B2S/Ship/Item.php:
|
4186 |
-
#: includes/B2S/Ship/Item.php:
|
4187 |
-
#: includes/B2S/Ship/Item.php:
|
4188 |
-
#: includes/B2S/Ship/Item.php:
|
4189 |
-
#: includes/B2S/Ship/Item.php:
|
4190 |
-
#: includes/B2S/Ship/Item.php:
|
4191 |
-
#: includes/B2S/Ship/Item.php:
|
4192 |
-
#: includes/B2S/Ship/Item.php:
|
4193 |
msgid "Write something about your post..."
|
4194 |
msgstr "Schreibe etwas..."
|
4195 |
|
4196 |
-
#: includes/B2S/Ship/Item.php:
|
4197 |
-
#: includes/B2S/Ship/Item.php:
|
4198 |
-
#: includes/B2S/Ship/Item.php:
|
4199 |
msgid ""
|
4200 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
4201 |
"network"
|
4202 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
4203 |
|
4204 |
-
#: includes/B2S/Ship/Item.php:
|
4205 |
-
#: includes/B2S/Ship/Item.php:
|
4206 |
-
#: includes/B2S/Ship/Item.php:
|
4207 |
msgid ""
|
4208 |
"You want to change your link image, link title and link description for this "
|
4209 |
"network? Click here."
|
4210 |
msgstr ""
|
4211 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
4212 |
|
4213 |
-
#: includes/B2S/Ship/Item.php:
|
4214 |
-
#: includes/B2S/Ship/Item.php:
|
4215 |
-
#: includes/B2S/Ship/Item.php:
|
4216 |
msgid "OG Meta title"
|
4217 |
msgstr "OG Titel"
|
4218 |
|
4219 |
-
#: includes/B2S/Ship/Item.php:
|
4220 |
-
#: includes/B2S/Ship/Item.php:
|
4221 |
-
#: includes/B2S/Ship/Item.php:
|
4222 |
msgid "OG Meta description"
|
4223 |
msgstr "OG Beschreibung"
|
4224 |
|
4225 |
-
#: includes/B2S/Ship/Item.php:
|
4226 |
-
#: includes/B2S/Ship/Item.php:
|
4227 |
msgid "Do u want to post multiple images?"
|
4228 |
msgstr "Du möchtest mehrere Bilder posten?"
|
4229 |
|
4230 |
-
#: includes/B2S/Ship/Item.php:
|
4231 |
msgid ""
|
4232 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
4233 |
"Changes may not be immediately visible on Twitter."
|
@@ -4235,20 +4598,20 @@ msgstr ""
|
|
4235 |
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
4236 |
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
4237 |
|
4238 |
-
#: includes/B2S/Ship/Item.php:
|
4239 |
msgid ""
|
4240 |
"Info: Change Card Meta tags image, title and description for this network"
|
4241 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
4242 |
|
4243 |
-
#: includes/B2S/Ship/Item.php:
|
4244 |
msgid "Card Meta title"
|
4245 |
msgstr "Card Titel"
|
4246 |
|
4247 |
-
#: includes/B2S/Ship/Item.php:
|
4248 |
msgid "Card Meta description"
|
4249 |
msgstr "Card Beschreibung"
|
4250 |
|
4251 |
-
#: includes/B2S/Ship/Item.php:
|
4252 |
msgid ""
|
4253 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
4254 |
"days. Changes may not be immediately visible on XING."
|
@@ -4257,73 +4620,73 @@ msgstr ""
|
|
4257 |
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
4258 |
"dargestellt."
|
4259 |
|
4260 |
-
#: includes/B2S/Ship/Item.php:
|
4261 |
msgid "required"
|
4262 |
msgstr "erforderlich"
|
4263 |
|
4264 |
-
#: includes/B2S/Ship/Item.php:
|
4265 |
msgid "Jobs & Projects"
|
4266 |
msgstr "Stellenangebote & Projekte"
|
4267 |
|
4268 |
-
#: includes/B2S/Ship/Item.php:
|
4269 |
msgid "Events"
|
4270 |
msgstr "Events"
|
4271 |
|
4272 |
-
#: includes/B2S/Ship/Item.php:
|
4273 |
msgid "Classified Ads"
|
4274 |
msgstr "Kleinanzeigen"
|
4275 |
|
4276 |
-
#: includes/B2S/Ship/Item.php:
|
4277 |
msgid "Offer"
|
4278 |
msgstr "Angebot"
|
4279 |
|
4280 |
-
#: includes/B2S/Ship/Item.php:
|
4281 |
msgid "Request"
|
4282 |
msgstr "Anfrage"
|
4283 |
|
4284 |
-
#: includes/B2S/Ship/Item.php:
|
4285 |
msgid "The Headline..."
|
4286 |
msgstr "Die Überschrift..."
|
4287 |
|
4288 |
-
#: includes/B2S/Ship/Item.php:
|
4289 |
#, php-format
|
4290 |
msgid "max. %s Tags"
|
4291 |
msgstr "max. %s Tags"
|
4292 |
|
4293 |
-
#: includes/B2S/Ship/Item.php:
|
4294 |
msgid "Hashtags"
|
4295 |
msgstr "Hashtags"
|
4296 |
|
4297 |
-
#: includes/B2S/Ship/Item.php:
|
4298 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
4299 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
4300 |
|
4301 |
-
#: includes/B2S/Ship/Item.php:
|
4302 |
msgid "Delay"
|
4303 |
msgstr "Verzögerung"
|
4304 |
|
4305 |
-
#: includes/B2S/Ship/Item.php:
|
4306 |
-
#: includes/B2S/Ship/Item.php:
|
4307 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4308 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4309 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4310 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4311 |
msgid "min"
|
4312 |
msgstr "min"
|
4313 |
|
4314 |
-
#: includes/B2S/Ship/Item.php:
|
4315 |
msgid "Add Retweet"
|
4316 |
msgstr "Retweet hinzufügen"
|
4317 |
|
4318 |
-
#: includes/B2S/Ship/Item.php:
|
4319 |
msgid "Share Now"
|
4320 |
msgstr "Sofort teilen"
|
4321 |
|
4322 |
-
#: includes/B2S/Ship/Item.php:
|
4323 |
msgid "Schedule Recurrent Post"
|
4324 |
msgstr "regelmäßig Planen"
|
4325 |
|
4326 |
-
#: includes/B2S/Ship/Item.php:
|
4327 |
msgid ""
|
4328 |
"Please note: Your account is connected via an old XING API that is no longer "
|
4329 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -4338,7 +4701,7 @@ msgstr ""
|
|
4338 |
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
4339 |
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
4340 |
|
4341 |
-
#: includes/B2S/Ship/Item.php:
|
4342 |
msgid ""
|
4343 |
"Please note: Google will shut down Google+ for all private accounts "
|
4344 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -4350,88 +4713,88 @@ msgstr ""
|
|
4350 |
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
4351 |
"andere Inhalte herunterladen kannst:"
|
4352 |
|
4353 |
-
#: includes/B2S/Ship/Item.php:
|
4354 |
msgid "Repeats"
|
4355 |
msgstr "Wiederholen"
|
4356 |
|
4357 |
-
#: includes/B2S/Ship/Item.php:
|
4358 |
msgid "Duration"
|
4359 |
msgstr "Dauer"
|
4360 |
|
4361 |
-
#: includes/B2S/Ship/Item.php:
|
4362 |
msgid "Number of repeats"
|
4363 |
msgstr "Anzahl der Wiederholungen"
|
4364 |
|
4365 |
-
#: includes/B2S/Ship/Item.php:
|
4366 |
msgid "Day of month"
|
4367 |
msgstr "Tag im Monat"
|
4368 |
|
4369 |
-
#: includes/B2S/Ship/Item.php:
|
4370 |
msgid "Repeats every (days)"
|
4371 |
msgstr "Wiederholt sich alle X Tage"
|
4372 |
|
4373 |
-
#: includes/B2S/Ship/Item.php:
|
4374 |
msgid "Start date"
|
4375 |
msgstr "Startdatum"
|
4376 |
|
4377 |
-
#: includes/B2S/Ship/Item.php:
|
4378 |
msgid "Time to publish"
|
4379 |
msgstr "Veröffentlichungszeitpunkt"
|
4380 |
|
4381 |
-
#: includes/B2S/Ship/Item.php:
|
4382 |
msgid "weekly"
|
4383 |
msgstr "wöchentlich"
|
4384 |
|
4385 |
-
#: includes/B2S/Ship/Item.php:
|
4386 |
msgid "monthly"
|
4387 |
msgstr "monatlich"
|
4388 |
|
4389 |
-
#: includes/B2S/Ship/Item.php:
|
4390 |
msgid "own period"
|
4391 |
msgstr "Eigener Zeitraum"
|
4392 |
|
4393 |
-
#: includes/B2S/Ship/Item.php:
|
4394 |
msgid "Week"
|
4395 |
msgstr "Woche"
|
4396 |
|
4397 |
-
#: includes/B2S/Ship/Item.php:
|
4398 |
msgid "Weeks"
|
4399 |
msgstr "Wochen"
|
4400 |
|
4401 |
-
#: includes/B2S/Ship/Item.php:
|
4402 |
msgid "Month"
|
4403 |
msgstr "Monat"
|
4404 |
|
4405 |
-
#: includes/B2S/Ship/Item.php:
|
4406 |
msgid "Months"
|
4407 |
msgstr "Monate"
|
4408 |
|
4409 |
-
#: includes/B2S/Ship/Item.php:
|
4410 |
msgid "End Of Month"
|
4411 |
msgstr "Monatsende"
|
4412 |
|
4413 |
-
#: includes/B2S/Ship/Item.php:
|
4414 |
msgid "Timespan"
|
4415 |
msgstr "Zeitspanne"
|
4416 |
|
4417 |
-
#: includes/B2S/Ship/Item.php:
|
4418 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4419 |
msgid "Time"
|
4420 |
msgstr "Mal"
|
4421 |
|
4422 |
-
#: includes/B2S/Ship/Item.php:
|
4423 |
msgid "add another post"
|
4424 |
msgstr "einen weiteren Post anlegen"
|
4425 |
|
4426 |
-
#: includes/B2S/Ship/Item.php:
|
4427 |
msgid "Copy from original"
|
4428 |
msgstr "Originaltext kopieren"
|
4429 |
|
4430 |
-
#: includes/B2S/Ship/Item.php:
|
4431 |
msgid "Apply Settings To All Networks"
|
4432 |
msgstr "Planung für alle Netzwerke übernehmen"
|
4433 |
|
4434 |
-
#: includes/B2S/Ship/Item.php:
|
4435 |
msgid "Save as best time for this network"
|
4436 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
4437 |
|
@@ -4636,22 +4999,17 @@ msgstr ""
|
|
4636 |
"Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
|
4637 |
"und geplanten Social Media Beiträge."
|
4638 |
|
4639 |
-
#: views/b2s/html/footer.php:73 views/b2s/html/footer.php:91
|
4640 |
-
#: views/b2s/html/footer.php:109
|
4641 |
-
msgid "Upgrade to PRO and above"
|
4642 |
-
msgstr "Upgrade auf PRO und höher"
|
4643 |
-
|
4644 |
#: views/b2s/html/footer.php:78 views/b2s/html/footer.php:96
|
4645 |
msgid "Activate Blog2Social PREMIUM PRO."
|
4646 |
msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
4647 |
|
4648 |
#: views/b2s/html/footer.php:80
|
4649 |
msgid ""
|
4650 |
-
"With Blog2Social Premium PRO you can connect
|
4651 |
-
"well as XING groups."
|
4652 |
msgstr ""
|
4653 |
-
"Mit Blog2Social Premium PRO kannst Du
|
4654 |
-
"
|
4655 |
|
4656 |
#: views/b2s/html/footer.php:83 views/b2s/html/footer.php:101
|
4657 |
#: views/b2s/html/footer.php:130
|
@@ -4888,40 +5246,43 @@ msgstr ""
|
|
4888 |
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für "
|
4889 |
"importierte Beiträge einrichtest.</a>"
|
4890 |
|
|
|
|
|
|
|
|
|
|
|
4891 |
#: views/b2s/html/footer.php:436
|
4892 |
msgid ""
|
4893 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
4894 |
-
"administrator to other
|
4895 |
-
"
|
4896 |
-
"
|
4897 |
-
"
|
4898 |
-
"
|
4899 |
-
"
|
4900 |
-
"
|
4901 |
-
"
|
4902 |
-
|
4903 |
-
|
4904 |
-
"
|
4905 |
-
"
|
4906 |
-
"
|
4907 |
-
"
|
4908 |
-
"
|
4909 |
-
"
|
4910 |
-
"
|
4911 |
-
"
|
4912 |
-
"
|
4913 |
-
"
|
4914 |
-
"denen Inhalte automatisch geteilt werden sollen, die der Administrator "
|
4915 |
-
"ausgewählt hat. "
|
4916 |
|
4917 |
#: views/b2s/html/footer.php:438
|
4918 |
#, php-format
|
4919 |
msgid ""
|
4920 |
-
"You
|
4921 |
-
"target=\"_blank\" href=\"%s\">
|
4922 |
msgstr ""
|
4923 |
"Mehr Informationen dazu, wie Du die Einstellungen zuweisen kannst, findest "
|
4924 |
-
"Du <a target=\"_blank\" href=\"%s\">
|
4925 |
|
4926 |
#: views/b2s/html/footer.php:451
|
4927 |
msgid "Blog2Social: Re-Share Posts"
|
@@ -5394,11 +5755,11 @@ msgstr ""
|
|
5394 |
#: views/b2s/html/header.php:232
|
5395 |
msgid ""
|
5396 |
"Your limit for your quota of posts in your queue has been reached. Please "
|
5397 |
-
"
|
5398 |
msgstr ""
|
5399 |
"Das Limit Deines Kontingents für Beiträge in Deiner Warteschlange wurde "
|
5400 |
"erreicht. Bitte lösche Beiträge aus Deiner Warteschlange bevor Du neue "
|
5401 |
-
"hinzufügst
|
5402 |
|
5403 |
#: views/b2s/html/header.php:232
|
5404 |
msgid " or upgade your Blog2Social license to extend your quota."
|
@@ -5605,7 +5966,7 @@ msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
|
5605 |
msgid "I agree to the Adenion Privacy Policy"
|
5606 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
5607 |
|
5608 |
-
#: views/b2s/html/post.navbar.php:
|
5609 |
msgid "All Blog Posts"
|
5610 |
msgstr "Alle Blogbeiträge"
|
5611 |
|
@@ -5645,14 +6006,6 @@ msgstr "Lizenz upgraden"
|
|
5645 |
msgid "Plans & Prices"
|
5646 |
msgstr "Tarife & Preise"
|
5647 |
|
5648 |
-
#: views/b2s/html/sidebar.php:166
|
5649 |
-
msgid ""
|
5650 |
-
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
5651 |
-
"anything that does not work for you, please contact us!"
|
5652 |
-
msgstr ""
|
5653 |
-
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
5654 |
-
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
5655 |
-
|
5656 |
#: views/b2s/html/sidebar.php:180
|
5657 |
msgid "Blog2Social Blog News"
|
5658 |
msgstr "Blog2Social Blog News"
|
@@ -5686,11 +6039,11 @@ msgstr "Beitrag bearbeiten"
|
|
5686 |
msgid "This post is blocked by %1"
|
5687 |
msgstr "% 1bearbeitet gerade diesen Beitrag."
|
5688 |
|
5689 |
-
#: views/b2s/partials/post-edit-modal.php:
|
5690 |
msgid "The orginal tweet is scheduled on:"
|
5691 |
msgstr "Der Original-Tweet ist geplant für:"
|
5692 |
|
5693 |
-
#: views/b2s/partials/post-edit-modal.php:
|
5694 |
msgid "Change details"
|
5695 |
msgstr "Änderungen übernehmen"
|
5696 |
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-01-04 13:26+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
+
"POT-Creation-Date: 2021-01-04 13:20+0000\n"
|
16 |
+
"Last-Translator: marius Lol <wolf.12345@gmx.de>\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
+
"X-Loco-Version: 2.3.0; wp-5.6-RC4-49760"
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
95 |
msgid "Upgrade to Premium"
|
96 |
msgstr "Premium freischalten"
|
97 |
|
98 |
+
#: includes/Loader.php:821 includes/Loader.php:956 includes/Loader.php:956
|
99 |
+
#: includes/Loader.php:1030 includes/B2S/RePost/Item.php:25
|
100 |
#: views/b2s/html/sidebar.php:137
|
101 |
msgid "Settings"
|
102 |
msgstr "Einstellungen"
|
105 |
msgid "Support"
|
106 |
msgstr "Support"
|
107 |
|
108 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:21
|
109 |
msgid "Notifications"
|
110 |
msgstr "Benachrichtigungen"
|
111 |
|
112 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:19
|
113 |
#: views/b2s/html/sidebar.php:125
|
114 |
msgid "Shared Posts"
|
115 |
msgstr "geteilte Beiträge"
|
116 |
|
117 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:16
|
118 |
#: views/b2s/html/sidebar.php:119
|
119 |
msgid "Instant Sharing"
|
120 |
msgstr "Instant Sharing"
|
121 |
|
122 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:12
|
123 |
+
#: views/b2s/html/post.navbar.php:14 views/b2s/html/sidebar.php:94
|
124 |
#: views/b2s/html/sidebar.php:116
|
125 |
msgid "Drafts"
|
126 |
msgstr "Entwürfe"
|
127 |
|
128 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:17
|
129 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
130 |
msgid "Scheduled Posts"
|
131 |
msgstr "geplante Beiträge"
|
134 |
msgid "Social Media Post Drafts"
|
135 |
msgstr "Social Media Posts Entwürfe"
|
136 |
|
137 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:11
|
138 |
#: views/b2s/html/sidebar.php:113
|
139 |
msgid "Favorites"
|
140 |
msgstr "Favoriten"
|
144 |
msgid "Auto-Post"
|
145 |
msgstr "Beiträge automatisch teilen"
|
146 |
|
147 |
+
#: includes/Loader.php:871 views/b2s/settings.php:41
|
148 |
+
#: views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:72
|
149 |
msgid "Re-Share Posts"
|
150 |
msgstr "Beiträge wiederholt teilen"
|
151 |
|
152 |
+
#: includes/Loader.php:871 views/b2s/curation.php:49 views/b2s/support.php:19
|
153 |
#: views/b2s/support.php:22
|
154 |
msgid "NEW"
|
155 |
msgstr "Neu"
|
188 |
#: includes/Loader.php:874
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
+
"The network could not publish your post. Please see the following <a "
|
192 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
193 |
msgstr ""
|
194 |
+
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
195 |
+
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
196 |
|
197 |
#: includes/Loader.php:875
|
198 |
msgid ""
|
203 |
"Blog2Social Netzwerkeinstellungen erneut."
|
204 |
|
205 |
#: includes/Loader.php:876
|
206 |
+
#, php-format
|
207 |
+
msgid ""
|
208 |
+
"The content of your post could not be approved by the network. Please see "
|
209 |
+
"the following <a target=\"_blank\" href=\"%s\">guide</a>."
|
210 |
+
msgstr ""
|
211 |
+
"Der Inhalt Deines Beitrags konnte vom Netzwerk nicht genehmigt werden. Bitte "
|
212 |
+
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
213 |
|
214 |
#: includes/Loader.php:877
|
215 |
msgid ""
|
222 |
#: includes/Loader.php:878
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
+
"The connection to your social media account is interrupted. Please check "
|
226 |
+
"your authorization and reconnect your account. The <a target=\"_blank\" "
|
227 |
+
"href=\"%s\">troubleshooting guide</a> shows you how to fix the connection to "
|
228 |
+
"your social media account."
|
229 |
msgstr ""
|
230 |
+
"Die Verbindung zu Deinem Social Media-Account ist unterbrochen. Bitte "
|
231 |
+
"überprüfe Deine Autorisierung und verbinde Deinen Account erneut. Die <a "
|
232 |
+
"target=\"_blank\" href=\"%s\">Anleitung zur Fehlerbehebung</a> zeigt Dir, "
|
233 |
+
"wie Du die Verbindung zu Deinem Social-Media-Account erneuern kannst."
|
234 |
|
235 |
#: includes/Loader.php:879
|
236 |
msgid "Your daily limit has been reached."
|
247 |
#: includes/Loader.php:881
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
+
"The network has blocked your account. Please see the following <a "
|
251 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
252 |
msgstr ""
|
253 |
+
"Das Netzwerk hat Dein Konto gesperrt. Bitte beachte die folgende <a "
|
254 |
+
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
255 |
|
256 |
#: includes/Loader.php:882
|
257 |
#, php-format
|
258 |
msgid ""
|
259 |
+
"The number of images is reached. Please see the following <a "
|
260 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
261 |
msgstr ""
|
262 |
+
"Die Anzahl der Bilder ist erreicht. Bitte beachte die folgende <a "
|
263 |
+
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
264 |
|
265 |
#: includes/Loader.php:883
|
266 |
msgid ""
|
272 |
#: includes/Loader.php:884
|
273 |
#, php-format
|
274 |
msgid ""
|
275 |
+
"The network can not publish special characters such as Emoji. Please see the "
|
276 |
+
"following <a target=\"_blank\" href=\"%s\">guide</a>."
|
277 |
msgstr ""
|
278 |
+
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Bitte "
|
279 |
+
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
280 |
|
281 |
#: includes/Loader.php:885
|
282 |
msgid "Your post is a duplicate."
|
329 |
#: includes/Loader.php:893
|
330 |
#, php-format
|
331 |
msgid ""
|
332 |
+
"Instagram published your post without text. Please see the following <a "
|
333 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
334 |
msgstr ""
|
335 |
+
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
336 |
+
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
337 |
|
338 |
#: includes/Loader.php:894
|
339 |
msgid "Your group can not be found by the network."
|
340 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
341 |
|
342 |
+
#: includes/Loader.php:951 includes/Loader.php:996
|
343 |
msgid "Dashboard"
|
344 |
msgstr "Dashboard"
|
345 |
|
346 |
+
#: includes/Loader.php:952
|
347 |
msgid "Share Website & Blog Content"
|
348 |
msgstr "Webseiten- & Blog Content teilen"
|
349 |
|
350 |
+
#: includes/Loader.php:952 includes/Loader.php:1003
|
351 |
msgid "Site & Blog Content"
|
352 |
msgstr "Seiten & Blog Content"
|
353 |
|
354 |
+
#: includes/Loader.php:953
|
355 |
msgid "Create Social Media Posts"
|
356 |
msgstr "Erstelle Social Media Posts"
|
357 |
|
358 |
+
#: includes/Loader.php:953 includes/Loader.php:1010
|
359 |
msgid "Social Media Posts"
|
360 |
msgstr "Social Media Posts"
|
361 |
|
362 |
+
#: includes/Loader.php:954 includes/Loader.php:1017 views/b2s/dashboard.php:30
|
363 |
+
#: views/b2s/html/post.navbar.php:22 views/b2s/html/sidebar.php:128
|
364 |
msgid "Calendar"
|
365 |
msgstr "Kalender"
|
366 |
|
367 |
+
#: includes/Loader.php:955 includes/Loader.php:1024
|
368 |
msgid "Networks"
|
369 |
msgstr "Netzwerke"
|
370 |
|
371 |
+
#: includes/Loader.php:958 includes/Loader.php:1038
|
372 |
msgid "PR-Service"
|
373 |
msgstr "PR-Service"
|
374 |
|
375 |
+
#: includes/Loader.php:960 includes/Loader.php:1046
|
376 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
377 |
#: views/b2s/html/sidebar.ship.php:66
|
378 |
msgid "Help & Support"
|
379 |
msgstr "Hilfe & Support"
|
380 |
|
381 |
+
#: includes/Loader.php:962
|
382 |
msgid "Premium"
|
383 |
msgstr "Premium"
|
384 |
|
385 |
+
#: includes/Loader.php:962 includes/Loader.php:1054
|
386 |
msgid "PREMIUM"
|
387 |
msgstr "PREMIUM"
|
388 |
|
389 |
+
#: includes/Loader.php:987 views/b2s/html/sidebar.php:25
|
390 |
#: views/b2s/html/sidebar.ship.php:24
|
391 |
msgid "Blog2Social"
|
392 |
msgstr "Blog2Social"
|
393 |
|
394 |
+
#: includes/Loader.php:1553
|
395 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
396 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
397 |
|
398 |
+
#: includes/Loader.php:1553 includes/System.php:32 includes/System.php:38
|
399 |
#, php-format
|
400 |
msgid ""
|
401 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
404 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
405 |
"in unserem FAQs.</a>"
|
406 |
|
407 |
+
#: includes/Loader.php:1553 includes/Loader.php:1574 includes/Loader.php:1824
|
408 |
msgid "or"
|
409 |
msgstr "oder"
|
410 |
|
411 |
+
#: includes/Loader.php:1553 includes/Loader.php:1574 includes/Loader.php:1824
|
412 |
msgid "back to install plugins"
|
413 |
msgstr "zurück zur Pluginübersicht"
|
414 |
|
416 |
msgid "Rate it!"
|
417 |
msgstr "Bewerte uns!"
|
418 |
|
419 |
+
#: includes/Notice.php:18 views/b2s/html/sidebar.php:166
|
420 |
msgid ""
|
421 |
+
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
422 |
+
"anything that does not work for you, please contact us!"
|
423 |
msgstr ""
|
424 |
+
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
425 |
+
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
426 |
|
427 |
#: includes/Notice.php:19 views/b2s/html/sidebar.php:167
|
428 |
msgid "RATE BLOG2SOCIAL"
|
459 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
460 |
"zu tun."
|
461 |
|
462 |
+
#: includes/Tools.php:337 views/b2s/html/sidebar.php:30
|
463 |
#: views/b2s/html/sidebar.ship.php:29
|
464 |
msgid "License"
|
465 |
msgstr "Lizenz"
|
466 |
|
467 |
+
#: includes/Tools.php:352
|
468 |
msgid "Greece"
|
469 |
msgstr "Griechenland"
|
470 |
|
471 |
+
#: includes/Tools.php:353
|
472 |
msgid "India"
|
473 |
msgstr "Indien"
|
474 |
|
475 |
+
#: includes/Tools.php:354
|
476 |
msgid "United States of America"
|
477 |
msgstr "Vereinigte Staaten von Amerika"
|
478 |
|
479 |
+
#: includes/Tools.php:355
|
480 |
msgid "Ireland"
|
481 |
msgstr "Irland"
|
482 |
|
483 |
+
#: includes/Tools.php:356
|
484 |
msgid "Italy"
|
485 |
msgstr "Italien"
|
486 |
|
487 |
+
#: includes/Tools.php:357
|
488 |
msgid "Switzerland"
|
489 |
msgstr "Schweiz"
|
490 |
|
491 |
+
#: includes/Tools.php:358
|
492 |
msgid "Czechoslovakia"
|
493 |
msgstr "Tschechoslowakei"
|
494 |
|
495 |
+
#: includes/Tools.php:359
|
496 |
msgid "Indonesia"
|
497 |
msgstr "Indonesien"
|
498 |
|
499 |
+
#: includes/Tools.php:360
|
500 |
msgid "Spain"
|
501 |
msgstr "Spanien"
|
502 |
|
503 |
+
#: includes/Tools.php:361
|
504 |
msgid "Canada"
|
505 |
msgstr "Kanada"
|
506 |
|
507 |
+
#: includes/Tools.php:362
|
508 |
msgid "Great Britain"
|
509 |
msgstr "Großbritannien"
|
510 |
|
511 |
+
#: includes/Tools.php:363
|
512 |
msgid "Russia"
|
513 |
msgstr "Russland"
|
514 |
|
515 |
+
#: includes/Tools.php:364
|
516 |
msgid "Netherlands"
|
517 |
msgstr "Niederlande"
|
518 |
|
519 |
+
#: includes/Tools.php:365 includes/Tools.php:379
|
520 |
msgid "Portugal"
|
521 |
msgstr "Portugal"
|
522 |
|
523 |
+
#: includes/Tools.php:366
|
524 |
msgid "Norway"
|
525 |
msgstr "Norwegen"
|
526 |
|
527 |
+
#: includes/Tools.php:367
|
528 |
msgid "Turkey"
|
529 |
msgstr "Türkei"
|
530 |
|
531 |
+
#: includes/Tools.php:368
|
532 |
msgid "Australia"
|
533 |
msgstr "Australien"
|
534 |
|
535 |
+
#: includes/Tools.php:369
|
536 |
msgid "Austria"
|
537 |
msgstr "Österreich"
|
538 |
|
539 |
+
#: includes/Tools.php:370
|
540 |
msgid "Poland"
|
541 |
msgstr "Polen"
|
542 |
|
543 |
+
#: includes/Tools.php:371
|
544 |
msgid "France"
|
545 |
msgstr "Frankreich"
|
546 |
|
547 |
+
#: includes/Tools.php:372
|
548 |
msgid "Romania"
|
549 |
msgstr "Rumänien"
|
550 |
|
551 |
+
#: includes/Tools.php:373
|
552 |
msgid "Germany"
|
553 |
msgstr "Deutschland"
|
554 |
|
555 |
+
#: includes/Tools.php:374
|
556 |
msgid "Denmark"
|
557 |
msgstr "Dänemark"
|
558 |
|
559 |
+
#: includes/Tools.php:375
|
560 |
msgid "New Zealand"
|
561 |
msgstr "Neuseeland"
|
562 |
|
563 |
+
#: includes/Tools.php:376
|
564 |
msgid "Finland"
|
565 |
msgstr "Finnland"
|
566 |
|
567 |
+
#: includes/Tools.php:377
|
568 |
msgid "Hungary"
|
569 |
msgstr "Ungarn"
|
570 |
|
571 |
+
#: includes/Tools.php:378
|
572 |
msgid "Japan"
|
573 |
msgstr "Japan"
|
574 |
|
575 |
+
#: includes/Tools.php:380
|
576 |
msgid "Argentina"
|
577 |
msgstr "Argentinien"
|
578 |
|
579 |
+
#: includes/Tools.php:381
|
580 |
msgid "Korea"
|
581 |
msgstr "Korea"
|
582 |
|
583 |
+
#: includes/Tools.php:382
|
584 |
msgid "Sweden"
|
585 |
msgstr "Schweden"
|
586 |
|
587 |
+
#: includes/Tools.php:383
|
588 |
msgid "Mexico"
|
589 |
msgstr "Mexiko"
|
590 |
|
591 |
+
#: includes/Tools.php:384
|
592 |
msgid "Slovakia"
|
593 |
msgstr "Slowakei"
|
594 |
|
595 |
+
#: includes/Tools.php:385
|
596 |
msgid "Chile"
|
597 |
msgstr "Chile"
|
598 |
|
599 |
+
#: includes/Tools.php:386
|
600 |
msgid "Colombia"
|
601 |
msgstr "Kolumbien"
|
602 |
|
603 |
+
#: includes/Tools.php:387
|
604 |
msgid "South Africa"
|
605 |
msgstr "Südafrika"
|
606 |
|
607 |
+
#: includes/Tools.php:388
|
608 |
msgid "Philippines"
|
609 |
msgstr "Philippinen"
|
610 |
|
611 |
+
#: includes/Tools.php:391
|
612 |
msgid "is determined automatically"
|
613 |
msgstr "wird automatisch ermittelt"
|
614 |
|
615 |
+
#: includes/Tools.php:398
|
616 |
msgid "Search"
|
617 |
msgstr "Suche"
|
618 |
|
619 |
+
#: includes/Tools.php:399
|
620 |
msgid "Recently Used"
|
621 |
msgstr "Zuletzt verwendet"
|
622 |
|
623 |
+
#: includes/Tools.php:400
|
624 |
msgid "Smileys & People"
|
625 |
msgstr "Smileys & Personen"
|
626 |
|
627 |
+
#: includes/Tools.php:401
|
628 |
msgid "Animals & Nature"
|
629 |
msgstr "Tiere & Natur"
|
630 |
|
631 |
+
#: includes/Tools.php:402
|
632 |
msgid "Food & Drink"
|
633 |
msgstr "Essen & Trinken"
|
634 |
|
635 |
+
#: includes/Tools.php:403
|
636 |
msgid "Activities"
|
637 |
msgstr "Aktivitäten"
|
638 |
|
639 |
+
#: includes/Tools.php:404
|
640 |
msgid "Travel & Places"
|
641 |
msgstr "Reisen & Orte"
|
642 |
|
643 |
+
#: includes/Tools.php:405
|
644 |
msgid "Objects"
|
645 |
msgstr "Objekte"
|
646 |
|
647 |
+
#: includes/Tools.php:406
|
648 |
msgid "Symbols"
|
649 |
msgstr "Symbole"
|
650 |
|
651 |
+
#: includes/Tools.php:407
|
652 |
msgid "Flags"
|
653 |
msgstr "Flaggen"
|
654 |
|
655 |
+
#: includes/Tools.php:408
|
656 |
msgid "No emojis found"
|
657 |
msgstr "Keine Ergebnisse"
|
658 |
|
659 |
+
#: includes/Util.php:43 views/b2s/post.sched.php:33
|
660 |
+
#: includes/B2S/Network/Item.php:137
|
661 |
+
msgid "Clock"
|
662 |
+
msgstr "Uhr"
|
663 |
+
|
664 |
#: views/notice.php:12
|
665 |
msgid "Connection is broken..."
|
666 |
msgstr "Vebindung ist unterbrochen..."
|
704 |
msgid "Please contact our support!"
|
705 |
msgstr "Bitte kontaktiere unseren Support!"
|
706 |
|
707 |
+
#: includes/Ajax/Post.php:1882 views/b2s/network.php:7
|
708 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
709 |
#: includes/B2S/Network/Item.php:359 includes/B2S/Network/Item.php:485
|
710 |
msgid "Unknown username"
|
711 |
msgstr "unbekannter Blog-Nutzer"
|
712 |
|
713 |
+
#: includes/Ajax/Post.php:1883 includes/B2S/Network/Item.php:486
|
714 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
715 |
+
#: includes/B2S/Post/Item.php:833 includes/B2S/Post/Item.php:891
|
716 |
+
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
|
717 |
+
#: includes/B2S/Ship/Item.php:1281
|
718 |
msgid "delete"
|
719 |
msgstr "löschen"
|
720 |
|
770 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
771 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
772 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
773 |
+
#: includes/B2S/Ship/Item.php:1095
|
774 |
msgid "Info"
|
775 |
msgstr "Info"
|
776 |
|
810 |
msgid "enable Auto-Posting"
|
811 |
msgstr "Auto-Posting aktivieren"
|
812 |
|
813 |
+
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:393
|
814 |
msgid "show calendar"
|
815 |
msgstr "Planungskalender anzeigen"
|
816 |
|
864 |
msgid "You want to auto-post your blog post?"
|
865 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
866 |
|
867 |
+
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:191
|
868 |
+
#: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
|
869 |
+
#: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
|
870 |
+
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
871 |
+
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:366
|
872 |
+
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
873 |
+
#: views/b2s/html/footer.php:556
|
874 |
msgid "With Blog2Social Premium you can:"
|
875 |
msgstr "Mit Blog2Social kannst Du:"
|
876 |
|
877 |
+
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:194
|
878 |
+
#: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
|
879 |
+
#: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
|
880 |
+
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
881 |
+
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:369
|
882 |
+
#: views/b2s/html/footer.php:408 views/b2s/html/footer.php:466
|
883 |
+
#: views/b2s/html/footer.php:559 views/b2s/html/header.php:342
|
|
|
884 |
msgid "Post on pages and groups"
|
885 |
msgstr "Poste auf Seiten und in Gruppen"
|
886 |
|
887 |
+
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:195
|
888 |
+
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
|
889 |
+
#: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
|
890 |
+
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
891 |
+
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:370
|
892 |
+
#: views/b2s/html/footer.php:409 views/b2s/html/footer.php:467
|
893 |
+
#: views/b2s/html/footer.php:560
|
894 |
msgid "Share on multiple profiles, pages and groups"
|
895 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
896 |
|
897 |
+
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:196
|
898 |
+
#: views/b2s/post.calendar.php:287 views/b2s/ship.php:314
|
899 |
+
#: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
|
900 |
+
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
901 |
+
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
902 |
+
#: views/b2s/html/footer.php:371 views/b2s/html/footer.php:410
|
903 |
+
#: views/b2s/html/footer.php:468 views/b2s/html/footer.php:561
|
|
|
904 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
905 |
msgstr ""
|
906 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
907 |
"Aktualisierung posten und zeitversetzt planen"
|
908 |
|
909 |
+
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:197
|
910 |
+
#: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
|
911 |
+
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
|
912 |
+
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
913 |
+
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:372
|
914 |
+
#: views/b2s/html/footer.php:411 views/b2s/html/footer.php:469
|
915 |
+
#: views/b2s/html/footer.php:562
|
916 |
msgid "Schedule your posts at the best times on each network"
|
917 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
918 |
|
919 |
+
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:198
|
920 |
+
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
|
921 |
+
#: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
|
922 |
+
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
923 |
+
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:373
|
924 |
+
#: views/b2s/html/footer.php:412 views/b2s/html/footer.php:470
|
925 |
+
#: views/b2s/html/footer.php:563
|
926 |
msgid ""
|
927 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
928 |
"social media posts"
|
929 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
930 |
|
931 |
+
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:199
|
932 |
+
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
|
933 |
+
#: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
|
934 |
+
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
935 |
+
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:374
|
936 |
+
#: views/b2s/html/footer.php:413 views/b2s/html/footer.php:471
|
937 |
+
#: views/b2s/html/footer.php:564
|
938 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
939 |
msgstr ""
|
940 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
941 |
"oder nach einem regelmäßigen Muster"
|
942 |
|
943 |
+
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:200
|
944 |
+
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
|
945 |
+
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
|
946 |
+
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
947 |
+
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:375
|
948 |
+
#: views/b2s/html/footer.php:414 views/b2s/html/footer.php:472
|
949 |
+
#: views/b2s/html/footer.php:565
|
950 |
msgid "Schedule and re-share old posts"
|
951 |
msgstr "Plane und teile alte Beiträge"
|
952 |
|
953 |
+
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:201
|
954 |
+
#: views/b2s/post.calendar.php:292 views/b2s/ship.php:319
|
955 |
+
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
|
956 |
+
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
957 |
+
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
958 |
+
#: views/b2s/html/footer.php:376 views/b2s/html/footer.php:415
|
959 |
+
#: views/b2s/html/footer.php:473 views/b2s/html/footer.php:566
|
|
|
960 |
msgid "Select link format or image format for your posts"
|
961 |
msgstr ""
|
962 |
"Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
963 |
|
964 |
+
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:202
|
965 |
+
#: views/b2s/post.calendar.php:293 views/b2s/ship.php:320
|
966 |
+
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
|
967 |
+
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
968 |
+
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
969 |
+
#: views/b2s/html/footer.php:377 views/b2s/html/footer.php:416
|
970 |
+
#: views/b2s/html/footer.php:474 views/b2s/html/footer.php:567
|
|
|
971 |
msgid "Select individual images per post"
|
972 |
msgstr ""
|
973 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
974 |
|
975 |
+
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:203
|
976 |
+
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
|
977 |
+
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
|
978 |
+
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
979 |
+
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:378
|
980 |
+
#: views/b2s/html/footer.php:417 views/b2s/html/footer.php:475
|
981 |
+
#: views/b2s/html/footer.php:568
|
982 |
msgid ""
|
983 |
"Reporting & calendar: keep track of your published and scheduled social "
|
984 |
"media posts"
|
986 |
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
987 |
"Media Beiträge"
|
988 |
|
989 |
+
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:205
|
990 |
+
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
|
991 |
+
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
|
992 |
+
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
993 |
+
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:380
|
994 |
+
#: views/b2s/html/footer.php:419 views/b2s/html/footer.php:477
|
995 |
+
#: views/b2s/html/footer.php:570
|
996 |
msgid "Upgrade to SMART and above"
|
997 |
msgstr "Upgrade auf SMART und höher"
|
998 |
|
999 |
+
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:207
|
1000 |
+
#: views/b2s/curation.php:246 views/b2s/post.calendar.php:298
|
1001 |
#: views/b2s/ship.php:325 views/b2s/ship.php:389 views/b2s/ship.php:435
|
1002 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
1003 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
1044 |
"Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
|
1045 |
"Erstelle eine Netzwerkgruppierung</a>"
|
1046 |
|
1047 |
+
#: includes/B2S/PostBox.php:281 views/b2s/curation.php:336
|
1048 |
#: views/b2s/repost.php:204
|
1049 |
msgid "Available networks"
|
1050 |
msgstr "Verfügbare Netzwerke"
|
1080 |
msgid "save..."
|
1081 |
msgstr "speichere Daten..."
|
1082 |
|
1083 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:131
|
1084 |
#: includes/B2S/Ship/Image.php:96
|
1085 |
msgid "Select or upload an image from media gallery"
|
1086 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
1087 |
|
1088 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:132
|
1089 |
#: includes/B2S/Ship/Image.php:97
|
1090 |
msgid "Use image"
|
1091 |
msgstr "Bild verwenden"
|
1092 |
|
1093 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:184
|
1094 |
#: includes/B2S/Settings/Item.php:53
|
1095 |
msgid "Personal Time Zone"
|
1096 |
msgstr "Persönliche Zeitzone"
|
1097 |
|
1098 |
+
#: views/b2s/autopost.php:62 views/b2s/settings.php:187
|
1099 |
msgid ""
|
1100 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
1101 |
"defined in the general settings of your WordPress. You can select a user-"
|
1122 |
msgid "More information"
|
1123 |
msgstr "Zusätzliche Informationen"
|
1124 |
|
1125 |
+
#: views/b2s/autopost.php:87 includes/B2S/AutoPost/Item.php:89
|
1126 |
+
msgid "Apply best times"
|
1127 |
+
msgstr "Beste Zeiten berücksichtigen"
|
1128 |
+
|
1129 |
+
#: views/b2s/autopost.php:90
|
1130 |
+
#, php-format
|
1131 |
+
msgid ""
|
1132 |
+
"The time of publishing a post can play a decisive role in achieving more "
|
1133 |
+
"likes, shares and comments as well as a wide reach. Each social media "
|
1134 |
+
"network has it's \"best times\". Blog2Social provides you with predefined "
|
1135 |
+
"best times. When you activate the \"best times\" for your Auto-Poster, your "
|
1136 |
+
"WordPress posts and pages will be shared automatically at the \"best times\"."
|
1137 |
+
" Get more information about the \"best times\" in the guide \"<a href=\"%s\" "
|
1138 |
+
"target=\"_blank\">The Best Times to Post on Social Media</a>\"."
|
1139 |
+
msgstr ""
|
1140 |
+
"Jedes Social-Media-Netzwerk hat seine „Besten Zeiten“. Der "
|
1141 |
+
"Veröffentlichungszeitpunkt spielt eine entscheidende Rolle, \n"
|
1142 |
+
"wenn es darum geht, möglichst viele Likes, Shares und Kommentare sowie eine "
|
1143 |
+
"große Reichweite zu erzielen. \n"
|
1144 |
+
"Blog2Social stellt Dir vordefinierte “beste Zeiten”-Einstellungen zur "
|
1145 |
+
"Verfügung. Wenn Du die \"besten Zeiten\" für Deinen \n"
|
1146 |
+
"Auto-Poster aktivierst, werden Deine WordPress-Beiträge und -Seiten "
|
1147 |
+
"automatisch zu den \"besten Zeiten\" freigegeben.\n"
|
1148 |
+
"Erhalte mehr Informationen über die “besten Zeiten” in dem <a href=\"%s\" "
|
1149 |
+
"target=\"_blank\">\"Die besten Zeiten für Social-Media-Posts”-Guide</a>."
|
1150 |
+
|
1151 |
+
#: views/b2s/autopost.php:93
|
1152 |
+
#, php-format
|
1153 |
+
msgid ""
|
1154 |
+
"Please note: You can also set up your own \"best times\". You will learn how "
|
1155 |
+
"to set up your own \"best times\" in this <a href=\"%s\" target=\"_blank\">"
|
1156 |
+
"guide</a>."
|
1157 |
+
msgstr ""
|
1158 |
+
"Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
|
1159 |
+
"geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
|
1160 |
+
|
1161 |
#: views/b2s/curation.draft.php:17
|
1162 |
msgid ""
|
1163 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
1175 |
#: views/b2s/network.php:339 views/b2s/network.php:414
|
1176 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1177 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1178 |
+
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:49
|
1179 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1180 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1181 |
#: views/b2s/ship.php:574 views/b2s/ship.php:662 views/b2s/support.php:144
|
1182 |
+
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
1183 |
msgid "Loading..."
|
1184 |
msgstr "Wird geladen..."
|
1185 |
|
1191 |
msgid "Are you sure you want to delete this draft?"
|
1192 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1193 |
|
1194 |
+
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:161
|
1195 |
#: views/b2s/network.php:109 views/b2s/post.approve.php:98
|
1196 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
1197 |
+
#: views/b2s/post.notice.php:89 views/b2s/post.publish.php:85
|
1198 |
#: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:478
|
1199 |
#: views/b2s/ship.php:557 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
1200 |
msgid "NO"
|
1202 |
|
1203 |
#: views/b2s/curation.draft.php:91 views/b2s/network.php:110
|
1204 |
#: views/b2s/network.php:173 views/b2s/post.approve.php:99
|
1205 |
+
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:90
|
1206 |
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:100
|
1207 |
#: views/b2s/repost.php:92 views/b2s/repost.php:93
|
1208 |
#: views/b2s/widgets/posts.php:68
|
1237 |
msgid "Link Post"
|
1238 |
msgstr "Link-Beitrag"
|
1239 |
|
1240 |
+
#: views/b2s/curation.php:46
|
1241 |
+
msgid "Video Post"
|
1242 |
+
msgstr "Video-Beitrag"
|
1243 |
+
|
1244 |
+
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1245 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1246 |
#: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
|
1247 |
#: includes/B2S/Settings/Item.php:276
|
1248 |
msgid "Image Post"
|
1249 |
msgstr "Bild-Beitrag"
|
1250 |
|
1251 |
+
#: views/b2s/curation.php:49 views/b2s/curation.php:52
|
1252 |
+
#: views/b2s/curation.php:258
|
1253 |
+
msgid "Text Post"
|
1254 |
+
msgstr "Text-Beitrag"
|
1255 |
+
|
1256 |
+
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:35
|
1257 |
+
#: includes/B2S/Network/Item.php:156 includes/B2S/Network/Item.php:161
|
1258 |
+
#: includes/B2S/Network/Item.php:165 includes/B2S/Ship/Image.php:92
|
1259 |
+
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1260 |
+
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
1261 |
+
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35
|
1262 |
+
#: includes/B2S/Ship/Portale.php:45
|
1263 |
+
msgid "PRO"
|
1264 |
+
msgstr "PRO"
|
1265 |
|
1266 |
+
#: views/b2s/curation.php:63
|
1267 |
msgid "Load data..."
|
1268 |
msgstr "Daten werden geladen..."
|
1269 |
|
1270 |
+
#: views/b2s/curation.php:69
|
1271 |
+
msgid ""
|
1272 |
+
"Enter a link you want to share on your social media networks. You can also "
|
1273 |
+
"share a video link, for example from YouTube or from Vimeo (also see Video "
|
1274 |
+
"Post)."
|
1275 |
+
msgstr ""
|
1276 |
+
"Füge einen Link ein, den Du auf Deinen Social-Media-Netzwerken teilen "
|
1277 |
+
"möchtest. Du kannst auch einen Video-Link teilen, zum Beispiel aus YouTube "
|
1278 |
+
"oder Vimeo (siehe auch Video-Beitrag)."
|
1279 |
+
|
1280 |
+
#: views/b2s/curation.php:70
|
1281 |
+
msgid ""
|
1282 |
+
"Enter a video link you want to share on your social media networks, for "
|
1283 |
+
"example from YouTube or from Vimeo."
|
1284 |
msgstr ""
|
1285 |
+
"Füge einen Video-Link ein, zum Beispiel aus YouTube oder Vimeo, den Du auf "
|
1286 |
+
"Deinen Social-Media-Netzwerken teilen möchtest."
|
1287 |
|
1288 |
+
#: views/b2s/curation.php:71
|
1289 |
msgid "Please enter a valid link"
|
1290 |
msgstr "Bitte gib einen gültigen Link ein"
|
1291 |
|
1292 |
+
#: views/b2s/curation.php:72
|
1293 |
msgid "Enter link"
|
1294 |
msgstr "Link eingeben"
|
1295 |
|
1296 |
+
#: views/b2s/curation.php:75
|
1297 |
msgid "continue"
|
1298 |
msgstr "weiter"
|
1299 |
|
1300 |
+
#: views/b2s/curation.php:98 includes/B2S/Ship/Item.php:461
|
1301 |
+
#: includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:490
|
1302 |
+
#: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:521
|
1303 |
+
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
|
1304 |
+
#: includes/B2S/Ship/Item.php:558 includes/B2S/Ship/Item.php:581
|
1305 |
+
#: includes/B2S/Ship/Item.php:610 includes/B2S/Ship/Item.php:639
|
1306 |
+
#: includes/B2S/Ship/Item.php:667 includes/B2S/Ship/Item.php:710
|
1307 |
+
#: includes/B2S/Ship/Item.php:731 includes/B2S/Ship/Item.php:738
|
1308 |
+
#: includes/B2S/Ship/Item.php:745 includes/B2S/Ship/Item.php:765
|
1309 |
+
#: includes/B2S/Ship/Item.php:785 includes/B2S/Ship/Item.php:792
|
1310 |
+
#: includes/B2S/Ship/Item.php:799 includes/B2S/Ship/Item.php:816
|
1311 |
+
#: includes/B2S/Ship/Item.php:837 includes/B2S/Ship/Item.php:858
|
1312 |
+
#: includes/B2S/Ship/Item.php:879 includes/B2S/Ship/Item.php:900
|
1313 |
+
#: includes/B2S/Ship/Item.php:944
|
1314 |
msgid "Change image"
|
1315 |
msgstr "Bild ändern"
|
1316 |
|
1317 |
+
#: views/b2s/curation.php:102 views/b2s/curation.php:116
|
1318 |
+
#: includes/B2S/Curation/View.php:23
|
1319 |
msgid "Write something..."
|
1320 |
msgstr "Schreibe etwas..."
|
1321 |
|
1322 |
+
#: views/b2s/curation.php:132 views/b2s/ship.php:260 views/b2s/ship.php:262
|
1323 |
#: includes/B2S/Post/Item.php:441
|
1324 |
msgid "Re-share this post"
|
1325 |
msgstr "Diesen Beitrag nochmal teilen"
|
1326 |
|
1327 |
+
#: views/b2s/curation.php:133
|
1328 |
msgid "Create a new post"
|
1329 |
msgstr "Neuen Social Media Post erstellen"
|
1330 |
|
1331 |
+
#: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
|
1332 |
#: views/b2s/ship.php:18 views/b2s/ship.php:663 includes/B2S/Post/Filter.php:59
|
1333 |
#: includes/B2S/Post/Item.php:368 includes/B2S/Ship/Save.php:438
|
1334 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1335 |
msgid "published"
|
1336 |
msgstr "veröffentlicht"
|
1337 |
|
1338 |
+
#: views/b2s/curation.php:155 views/b2s/post.approve.php:109
|
1339 |
#: views/b2s/ship.php:472
|
1340 |
msgid "Do you want to mark this post as published ?"
|
1341 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1342 |
|
1343 |
+
#: views/b2s/curation.php:160 views/b2s/post.approve.php:114
|
1344 |
#: views/b2s/ship.php:477 views/b2s/ship.php:558
|
1345 |
msgid "YES"
|
1346 |
msgstr "JA"
|
1347 |
|
1348 |
+
#: views/b2s/curation.php:174 views/b2s/post.calendar.php:265
|
1349 |
#: views/b2s/ship.php:402
|
1350 |
msgid "Need to schedule your posts?"
|
1351 |
msgstr "Du möchtest Deine Beiträge planen?"
|
1352 |
|
1353 |
+
#: views/b2s/curation.php:177 views/b2s/post.calendar.php:268
|
1354 |
#: views/b2s/ship.php:405
|
1355 |
msgid "Blog2Social Premium covers everything you need."
|
1356 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1357 |
|
1358 |
+
#: views/b2s/curation.php:180 views/b2s/post.calendar.php:271
|
1359 |
+
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:1155
|
1360 |
msgid "Schedule for specific dates"
|
1361 |
msgstr "Für bestimmte Termine planen"
|
1362 |
|
1363 |
+
#: views/b2s/curation.php:181 views/b2s/post.calendar.php:272
|
1364 |
#: views/b2s/ship.php:409
|
1365 |
msgid ""
|
1366 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
1369 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
1370 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
1371 |
|
1372 |
+
#: views/b2s/curation.php:183 views/b2s/post.calendar.php:274
|
1373 |
#: views/b2s/ship.php:411
|
1374 |
msgid "Schedule post recurrently"
|
1375 |
msgstr "Beitrag mehrfach planen"
|
1376 |
|
1377 |
+
#: views/b2s/curation.php:184 views/b2s/post.calendar.php:275
|
1378 |
#: views/b2s/ship.php:412
|
1379 |
msgid ""
|
1380 |
"You have evergreen content you want to re-share from time to time in your "
|
1385 |
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
1386 |
"wiederkehrenden Rhythmus"
|
1387 |
|
1388 |
+
#: views/b2s/curation.php:186 views/b2s/post.calendar.php:277
|
1389 |
#: views/b2s/ship.php:414
|
1390 |
msgid "Best Time Scheduler"
|
1391 |
msgstr "Beste Zeiten Manager"
|
1392 |
|
1393 |
+
#: views/b2s/curation.php:187 views/b2s/post.calendar.php:278
|
1394 |
#: views/b2s/ship.php:415
|
1395 |
msgid ""
|
1396 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
1404 |
"Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
|
1405 |
"Deiner Posts."
|
1406 |
|
1407 |
+
#: views/b2s/curation.php:219
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1408 |
msgid "You want to create image posts with any image from your media library?"
|
1409 |
msgstr ""
|
1410 |
"Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
|
1411 |
"erstellen?"
|
1412 |
|
1413 |
+
#: views/b2s/curation.php:220
|
1414 |
+
msgid "You want to create text posts?"
|
1415 |
+
msgstr "Möchtest Du Text-Posts erstellen?"
|
1416 |
+
|
1417 |
+
#: views/b2s/curation.php:227
|
1418 |
+
msgid ""
|
1419 |
+
"With Blog2Social you can share your WordPress posts and pages as well as "
|
1420 |
+
"create your own social media posts to share any content based on text, links,"
|
1421 |
+
" images, or video links, or even third-party content from any sources. This "
|
1422 |
+
"enables you to manage all your social media content in one place directly "
|
1423 |
+
"from your WordPress dashboard. Schedule and share link posts, text posts, "
|
1424 |
+
"image posts, and video posts (video links, for example from Youtube) and "
|
1425 |
+
"provide your followers with the best content-mix on your social media "
|
1426 |
+
"networks."
|
1427 |
+
msgstr ""
|
1428 |
+
"Mit Blog2Social kannst Du sowohl Deine WordPress-Beiträge und -Seiten teilen "
|
1429 |
+
"als auch eigene Social-Media-Posts erstellen, um beliebige Inhalte auf Basis "
|
1430 |
+
"von Text, Links, Bildern oder Video-Links oder sogar Inhalte Dritter aus "
|
1431 |
+
"beliebigen Quellen zu teilen. Dies ermöglicht es Dir, alle Deine Social-"
|
1432 |
+
"Media-Inhalte an einem Ort direkt von Deinem WordPress-Dashboard aus zu "
|
1433 |
+
"verwalten. Plane und teile Link-Beiträge, Text-Beiträge, Bild-Beiträge und "
|
1434 |
+
"Video-Beiträge (Video-Links, z. B. von Youtube) und versorge Deine Follower "
|
1435 |
+
"mit dem besten Content-Mix in Deinen Social-Media-Netzwerken."
|
1436 |
+
|
1437 |
+
#: views/b2s/curation.php:230
|
1438 |
+
msgid ""
|
1439 |
+
"Unlock Blog2Social Premium Pro to create and share image posts, video links, "
|
1440 |
+
"and text posts from any source."
|
1441 |
+
msgstr ""
|
1442 |
+
"Schalte Blog2Social Premium Pro frei, um Bild-Beiträge, Video-Links und Text-"
|
1443 |
+
"Beiträge aus beliebigen Quellen zu erstellen und zu teilen."
|
1444 |
+
|
1445 |
+
#: views/b2s/curation.php:232
|
1446 |
+
msgid "Share image posts:"
|
1447 |
+
msgstr "Teile Bild-Beiträge:"
|
1448 |
+
|
1449 |
+
#: views/b2s/curation.php:234
|
1450 |
+
msgid ""
|
1451 |
+
"Grab more attention for your content with photos, videos, or infographics."
|
1452 |
+
msgstr ""
|
1453 |
+
"Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
|
1454 |
+
"Infografiken."
|
1455 |
+
|
1456 |
+
#: views/b2s/curation.php:235
|
1457 |
+
msgid ""
|
1458 |
+
"Share images to get them into the Google image search to further increase "
|
1459 |
+
"your outreach and traffic from search engines."
|
1460 |
+
msgstr ""
|
1461 |
+
"Teile Bilder, damit sie in der Bildersuche von Google auffindbar sind und Du "
|
1462 |
+
"so Deinen Traffic und Deine Reichweite auch über klassische Suchmaschinen "
|
1463 |
+
"vergrößern kannst."
|
1464 |
+
|
1465 |
+
#: views/b2s/curation.php:237
|
1466 |
+
msgid "Share text posts:"
|
1467 |
+
msgstr "Teile Text-Beiträge:"
|
1468 |
+
|
1469 |
+
#: views/b2s/curation.php:239
|
1470 |
+
msgid ""
|
1471 |
+
"Share pure text messages and personal comments with your followers and "
|
1472 |
+
"readers."
|
1473 |
+
msgstr ""
|
1474 |
+
"Teile reine Textinformationen und persönliche Kommentare mit Deinen "
|
1475 |
+
"Followern und Lesern."
|
1476 |
+
|
1477 |
+
#: views/b2s/curation.php:240
|
1478 |
+
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
1479 |
+
msgstr ""
|
1480 |
+
"Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
|
1481 |
+
|
1482 |
+
#: views/b2s/curation.php:242
|
1483 |
+
#, php-format
|
1484 |
+
msgid ""
|
1485 |
+
"Learn more about how to share social media posts in the <a href=\"%s\" "
|
1486 |
+
"target=\"_blank\">social media posts guide</a>."
|
1487 |
+
msgstr ""
|
1488 |
+
"Erhalte in dem “<a href=\"%s\" target=\"_blank\">Social-Media-Posts Guide</a>"
|
1489 |
+
"” mehr Informationen darüber, wie Du Social-Media-Beiträge teilen kannst."
|
1490 |
+
|
1491 |
+
#: views/b2s/curation.php:244 views/b2s/html/footer.php:73
|
1492 |
+
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
|
1493 |
+
msgid "Upgrade to PRO and above"
|
1494 |
+
msgstr "Upgrade auf PRO und höher"
|
1495 |
+
|
1496 |
+
#: views/b2s/curation.php:261
|
1497 |
+
msgid ""
|
1498 |
+
"Text posts enable you to share pure text messages and personal comments with "
|
1499 |
+
"your followers and readers. You can also use hashtags, @mentions, or emojis "
|
1500 |
+
"to share your feelings. You can share a text post on the following networks:"
|
1501 |
+
msgstr ""
|
1502 |
+
"Das Teilen von Text-Beiträgen ermöglicht es Dir, reine Textinformationen und "
|
1503 |
+
"persönliche Kommentare mit Deinen Followern und Lesern zu teilen. Du kannst "
|
1504 |
+
"in Textbeiträgen auch Hashtags, @Handles oder Emojis verwenden, um Deine "
|
1505 |
+
"Gefühle auszudrücken. Du kannst einen Textbeitrag in den folgenden "
|
1506 |
+
"Netzwerken teilen:"
|
1507 |
+
|
1508 |
+
#: views/b2s/curation.php:279
|
1509 |
+
#, php-format
|
1510 |
+
msgid ""
|
1511 |
+
"Get more information on how to share a text post with hashtags, @mentions "
|
1512 |
+
"and emojis in the <a href=\"%s\" target=\"_blank\">social media posts "
|
1513 |
+
"guide</a>."
|
1514 |
+
msgstr ""
|
1515 |
+
"Erhalte in dem “<a href=\"%s\" target=\"_blank\">Social-Media-Posts Guide</a>"
|
1516 |
+
"” mehr Informationen darüber, wie Du Text-Beiträge mit Hashtags, @Handles "
|
1517 |
+
"und Emojis teilen kannst."
|
1518 |
+
|
1519 |
+
#: views/b2s/curation.php:290 views/b2s/repost.php:181
|
1520 |
msgid "Select image"
|
1521 |
msgstr "Bild auswählen"
|
1522 |
|
1523 |
+
#: views/b2s/curation.php:312
|
1524 |
msgid "Available networks for Social Media Posts"
|
1525 |
msgstr "Verfügbare Netzwerke für die Social Media Posts"
|
1526 |
|
1527 |
+
#: views/b2s/curation.php:335 views/b2s/repost.php:203
|
1528 |
#, php-format
|
1529 |
msgid ""
|
1530 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
1557 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1558 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1559 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1560 |
+
#: views/b2s/html/post.navbar.php:28 views/b2s/html/post.navbar.php:29
|
1561 |
msgid "filter"
|
1562 |
msgstr "Filter"
|
1563 |
|
1569 |
msgid "You want to define a new combination of networks?"
|
1570 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
1571 |
|
1572 |
+
#: views/b2s/network.php:39 views/b2s/partials/post-edit-modal.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1573 |
msgid "Delete"
|
1574 |
msgstr "Löschen"
|
1575 |
|
1625 |
"Business Brancheneinträgen zu erweitern."
|
1626 |
|
1627 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1628 |
+
#: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:57
|
1629 |
msgid "Learn more"
|
1630 |
msgstr "Mehr erfahren"
|
1631 |
|
1691 |
msgstr "Could not be changed"
|
1692 |
|
1693 |
#: views/b2s/network.php:203
|
1694 |
+
msgid "modify"
|
1695 |
msgstr "modify"
|
1696 |
|
1697 |
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:168
|
1699 |
msgid "Edit Post Template"
|
1700 |
msgstr "Beitragsvorlage bearbeiten"
|
1701 |
|
1702 |
+
#: views/b2s/network.php:230 views/b2s/ship.php:23
|
1703 |
+
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1704 |
+
#: includes/B2S/Network/Item.php:168 includes/B2S/Network/Item.php:262
|
1705 |
+
#: includes/B2S/Network/Item.php:332 includes/B2S/Network/Item.php:394
|
1706 |
+
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1707 |
+
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:1154
|
1708 |
+
#: views/b2s/html/post.navbar.php:17 views/b2s/html/post.navbar.php:20
|
1709 |
+
#: views/b2s/html/post.navbar.php:22 views/b2s/partials/post-edit-modal.php:9
|
1710 |
+
#: views/b2s/widgets/posts.php:18
|
1711 |
+
msgid "SMART"
|
1712 |
+
msgstr "SMART"
|
1713 |
+
|
1714 |
+
#: views/b2s/network.php:242 views/b2s/settings.php:61
|
1715 |
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:133
|
1716 |
msgid "save"
|
1717 |
msgstr "speichern"
|
1791 |
msgid "The name of the post author."
|
1792 |
msgstr "Der Name des Autors Deines Beitrags."
|
1793 |
|
1794 |
+
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:781
|
1795 |
msgid "Character limit"
|
1796 |
msgstr "Zeichenbegrenzung"
|
1797 |
|
1888 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
1889 |
|
1890 |
#: views/b2s/network.php:350 views/b2s/ship.php:585
|
1891 |
+
msgid "Please select your correct server location and connect again."
|
1892 |
msgstr ""
|
1893 |
+
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
|
1894 |
|
1895 |
#: views/b2s/network.php:351 views/b2s/ship.php:586
|
1896 |
msgid ""
|
1994 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
1995 |
|
1996 |
#: views/b2s/network.php:487
|
1997 |
+
msgid "The connection does not exist."
|
1998 |
msgstr "Diese Verbindung existiert nicht."
|
1999 |
|
2000 |
#: views/b2s/network.php:490
|
2108 |
msgid "Are you sure you want to delete these Social Media posts?"
|
2109 |
msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
2110 |
|
2111 |
+
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:85
|
2112 |
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:95
|
2113 |
#: views/b2s/repost.php:87 views/b2s/widgets/posts.php:63
|
2114 |
msgid "Number of entries"
|
2235 |
msgid "You have not saved any favorites."
|
2236 |
msgstr "Du hast keine Favoriten gespeichert."
|
2237 |
|
2238 |
+
#: views/b2s/post.notice.php:80 views/b2s/post.publish.php:76
|
2239 |
#: views/b2s/widgets/posts.php:58
|
2240 |
msgid "Delete entries from the reporting"
|
2241 |
msgstr "Einträge aus dem Reporting löschen"
|
2242 |
|
2243 |
+
#: views/b2s/post.notice.php:83 views/b2s/post.publish.php:79
|
2244 |
#: views/b2s/widgets/posts.php:61
|
2245 |
msgid "You are sure, you want to delete entries from the reporting?"
|
2246 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
2247 |
|
|
|
|
|
|
|
|
|
2248 |
#: views/b2s/post.sched.php:90 views/b2s/repost.php:82
|
2249 |
+
msgid "Delete entries from the scheduling"
|
2250 |
msgstr "Einträge aus der Planung löschen"
|
2251 |
|
2252 |
#: views/b2s/post.sched.php:93 views/b2s/repost.php:85
|
2357 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2358 |
|
2359 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
2360 |
+
#: includes/B2S/Post/Item.php:856
|
2361 |
msgid "Auto-Posting"
|
2362 |
msgstr "Auto-Posting"
|
2363 |
|
2450 |
msgid "Show me plans and prices"
|
2451 |
msgstr "Versionen und Preise anzeigen"
|
2452 |
|
2453 |
+
#: views/b2s/premium.php:183
|
2454 |
msgid "Show all premium features"
|
2455 |
msgstr "Alle Premium-Features anzeigen"
|
2456 |
|
2462 |
msgid "Social Meta Data"
|
2463 |
msgstr "Social Meta Angaben"
|
2464 |
|
2465 |
+
#: views/b2s/settings.php:44 views/b2s/html/sidebar.php:134
|
2466 |
+
msgid "Social Media Networks"
|
2467 |
+
msgstr "Social-Media-Netzwerke"
|
2468 |
+
|
2469 |
+
#: views/b2s/settings.php:47
|
2470 |
+
msgid "Social Media Time Settings"
|
2471 |
+
msgstr "Social-Media-Zeiteinstellungen"
|
2472 |
+
|
2473 |
+
#: views/b2s/settings.php:50
|
2474 |
+
msgid "Post Templates"
|
2475 |
+
msgstr "Beitragsvorlagen"
|
2476 |
+
|
2477 |
+
#: views/b2s/settings.php:68
|
2478 |
+
msgid ""
|
2479 |
+
"Connect Blog2Social with 16 different social media networks you like to "
|
2480 |
+
"share your WordPress blog posts and pages as well as imported posts and "
|
2481 |
+
"social media posts on. The following networks are available:"
|
2482 |
+
msgstr ""
|
2483 |
+
"Verbinde Blog2Social mit 16 verschiedenen Social-Media-Netzwerken, auf denen "
|
2484 |
+
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
2485 |
+
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
2486 |
|
2487 |
#: views/b2s/settings.php:87
|
2488 |
+
#, php-format
|
2489 |
+
msgid ""
|
2490 |
+
"You will find more information on how to connect your social media networks "
|
2491 |
+
"in the <a href=\"%s\" target=\"_blank\">connecting social media network "
|
2492 |
+
"guide</a>."
|
2493 |
+
msgstr ""
|
2494 |
+
"In dem <a href=\"%s\" target=\"_blank\">“Verbindung der Social-Media "
|
2495 |
+
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
2496 |
+
"Social-Media-Netzwerke verbinden kannst."
|
2497 |
+
|
2498 |
+
#: views/b2s/settings.php:89
|
2499 |
+
msgid "Connect your social media networks"
|
2500 |
+
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
2501 |
+
|
2502 |
+
#: views/b2s/settings.php:92
|
2503 |
msgid ""
|
2504 |
+
"Use the pre-defined best time settings or define your own best time settings "
|
2505 |
+
"for sharing your posts . Posting at the right time can be essential to make "
|
2506 |
+
"sure your content is most likely be seen."
|
2507 |
+
msgstr ""
|
2508 |
+
"Verwende die vordefinierten “besten Zeiten”-Einstellungen von Blog2Social "
|
2509 |
+
"oder lege Deine eigenen Zeiteinstellungen fest, zu denen Deine Beiträge "
|
2510 |
+
"geteilt werden sollen. Das Posten zur richtigen Zeit ist essentiell, um mehr "
|
2511 |
+
"Aufmerksamkeit und Engagement mit Deinen Social Media Beiträgen zu erzielen."
|
2512 |
+
|
2513 |
+
#: views/b2s/settings.php:94
|
2514 |
+
#, php-format
|
2515 |
+
msgid ""
|
2516 |
+
"You will find more information about the pre-defined best time settings by "
|
2517 |
+
"Blog2Social in this <a href=\"%s\" target=\"_blank\">best time guide</a>."
|
2518 |
+
msgstr ""
|
2519 |
+
"Mehr Informationen zu den vordefinierten “beste Zeiten”-Einstellungen von "
|
2520 |
+
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
2521 |
+
"Zeiten\"-Guide</a>."
|
2522 |
+
|
2523 |
+
#: views/b2s/settings.php:96
|
2524 |
+
#, php-format
|
2525 |
+
msgid ""
|
2526 |
+
"An instruction on how to define your own best times is explained in the "
|
2527 |
+
"guide \"<a href=\"%s\" target=\"_blank\">How do I set my own time setting to "
|
2528 |
+
"post on social media?</a>\"."
|
2529 |
+
msgstr ""
|
2530 |
+
"Eine Anleitung, wie Du Deine eigenen “besten Zeiten” einstellen kannst, "
|
2531 |
+
"findest Du in dem Guide \"<a href=\"%s\" target=\"_blank\">Wie stelle ich "
|
2532 |
+
"meine eigenen Zeiteinstellungen zum Posten in sozialen Medien ein?</a>\". "
|
2533 |
|
2534 |
#: views/b2s/settings.php:98
|
2535 |
+
msgid "Check, edit or define your social media time settings"
|
2536 |
+
msgstr ""
|
2537 |
+
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
2538 |
+
"Netzwerke"
|
2539 |
+
|
2540 |
+
#: views/b2s/settings.php:101
|
2541 |
+
msgid ""
|
2542 |
+
"Edit the post templates for each social media network to turn your social "
|
2543 |
+
"media posts automatically into tailored posts for each network and community."
|
2544 |
+
" You can edit the structure of your post with the following variables:"
|
2545 |
+
msgstr ""
|
2546 |
+
"Bearbeite die Beitragsvorlagen für jedes Social-Media-Netzwerk, um Deine "
|
2547 |
+
"Social-Media-Beiträge automatisch in maßgeschneiderte Beiträge für jedes "
|
2548 |
+
"Netzwerk und jede Community zu verwandeln. Du kannst den Inhalt Deines "
|
2549 |
+
"Beitrags mit den folgenden Variablen bearbeiten:"
|
2550 |
+
|
2551 |
+
#: views/b2s/settings.php:103
|
2552 |
+
msgid "Title: The title of your post."
|
2553 |
+
msgstr "Titel: Der Titel Deines Beitrags."
|
2554 |
+
|
2555 |
+
#: views/b2s/settings.php:104
|
2556 |
+
msgid "Content: The content of your post."
|
2557 |
+
msgstr "Content: Der Inhalt Deines Beitrags."
|
2558 |
+
|
2559 |
+
#: views/b2s/settings.php:105
|
2560 |
+
msgid ""
|
2561 |
+
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2562 |
+
"post)."
|
2563 |
+
msgstr ""
|
2564 |
+
"Textauszug: Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü "
|
2565 |
+
"deines Beitrags festgelegt)."
|
2566 |
+
|
2567 |
+
#: views/b2s/settings.php:106
|
2568 |
+
msgid "Keywords: The tags you have set in your post."
|
2569 |
+
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2570 |
+
|
2571 |
+
#: views/b2s/settings.php:107
|
2572 |
+
msgid "Author: The author of the post."
|
2573 |
+
msgstr "Author: Der Autor des Beitrags."
|
2574 |
+
|
2575 |
+
#: views/b2s/settings.php:109
|
2576 |
+
#, php-format
|
2577 |
+
msgid ""
|
2578 |
+
"You will find more information on how to use post templates for your social "
|
2579 |
+
"media posts in this <a href=\"%s\" target=\"_blank\">post template guide</a>."
|
2580 |
+
msgstr ""
|
2581 |
+
"Mehr Informationen dazu, wie Du Deine Beitragsvorlagen für Deine Social-"
|
2582 |
+
"Media-Netzwerke nutzen kannst, findest Du in diesem <a href=\"%s\" "
|
2583 |
+
"target=\"_blank\">\"Beitragsvorlagen\"-Guide</a>."
|
2584 |
+
|
2585 |
+
#: views/b2s/settings.php:111
|
2586 |
+
msgid "Define your post templates for each social media network"
|
2587 |
+
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
2588 |
+
|
2589 |
+
#: views/b2s/settings.php:142
|
2590 |
+
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
2591 |
+
msgstr ""
|
2592 |
+
"Berücksichtige Shortcodes in meinen Social Media Beiträgen (z.B. Page-"
|
2593 |
+
"Builder)"
|
2594 |
+
|
2595 |
+
#: views/b2s/settings.php:145
|
2596 |
+
#, php-format
|
2597 |
+
msgid ""
|
2598 |
+
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
2599 |
+
"shortcode is inserted in a WordPress post or WordPress page, WordPress calls "
|
2600 |
+
"the function that is included in the shortcode and performs the "
|
2601 |
+
"corresponding actions as soon as you publish your post on your Wordpress "
|
2602 |
+
"website. If you like Blog2Social to consider shortcodes when posting to "
|
2603 |
+
"social media and automatically insert the defined content in your social "
|
2604 |
+
"media post, activate this feature. You will find more information about the "
|
2605 |
+
"function of shortcodes and which plugins are supported by Blog2Social in the "
|
2606 |
+
"following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
|
2607 |
+
msgstr ""
|
2608 |
+
"Einige WordPress-Plugins verwenden Shortcodes, z. B. Page-Builder-Plugins. "
|
2609 |
+
"Wenn ein Shortcode in einem WordPress-Beitrag oder einer WordPress-Seite "
|
2610 |
+
"eingefügt wird, ruft WordPress die Funktion auf, die im Shortcode benannt "
|
2611 |
+
"ist, sobald Du den Beitrag auf Deiner Webseite veröffentlicht hast, um die "
|
2612 |
+
"gewünschten Aktionen ausführen. Aktiviere diese Funktion, wenn Du möchtest, "
|
2613 |
+
"dass Blog2Social diese Shortcodes bei der Veröffentlichung auf Social Media "
|
2614 |
+
"berücksichtigt und den Inhalt der Shortcodes in Deine Social Media Posts "
|
2615 |
+
"einbindet. Weitere Informationen über die Funktion der Shortcodes und welche "
|
2616 |
+
"Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
|
2617 |
+
"target=\"_blank\">Guide</a>."
|
2618 |
+
|
2619 |
+
#: views/b2s/settings.php:156
|
2620 |
msgid "Activate Legacy mode "
|
2621 |
msgstr "Kompatibilitätsmodus aktivieren"
|
2622 |
|
2623 |
+
#: views/b2s/settings.php:159
|
2624 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2625 |
msgstr ""
|
2626 |
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
2627 |
"entlasten."
|
2628 |
|
2629 |
+
#: views/b2s/settings.php:170
|
2630 |
msgid "Instant Caching for Facebook Link Posts"
|
2631 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2632 |
|
2633 |
+
#: views/b2s/settings.php:173
|
2634 |
msgid ""
|
2635 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2636 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
2676 |
msgid "Load My Times Settings"
|
2677 |
msgstr "Meine Zeit-Einstellungen laden"
|
2678 |
|
2679 |
+
#: views/b2s/ship.php:105
|
2680 |
msgid "Social Accounts"
|
2681 |
msgstr "Social Media Konten"
|
2682 |
|
3025 |
"Klicke hier, um die richtige Lizenz für Dich zu finden oder unser Sales Team "
|
3026 |
"für Fragen zur Zahlung zu kontaktieren."
|
3027 |
|
3028 |
+
#: views/b2s/support.php:177
|
3029 |
+
msgid ""
|
3030 |
+
"The Troubleshooting tool helps you with conflicts that can be caused by the "
|
3031 |
+
"system environment of your blog. So you can always check your settings on "
|
3032 |
+
"Wordpress."
|
3033 |
+
msgstr ""
|
3034 |
+
"Das Problemanalyse-Tool unterstützt Dich bei Konflikten, die durch die "
|
3035 |
+
"Systemumgebung Deines Blogs ausgelöst werden können. So kannst Du jederzeit "
|
3036 |
+
"selbstständig Deine Einstellung auf Wordpress einsehen."
|
3037 |
+
|
3038 |
+
#: views/b2s/support.php:177
|
3039 |
+
msgid "How to use the Troubleshooting tool"
|
3040 |
+
msgstr "Wie Du das Problemanalyse-Tool nutzt"
|
3041 |
+
|
3042 |
+
#: views/b2s/support.php:185
|
3043 |
msgid ""
|
3044 |
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
3045 |
"administrator."
|
3047 |
"Für die Nutzung des Problemanalyse-Tools werden Adminrechte benötigt. Bitte "
|
3048 |
"wende Dich an Deinen Administrator."
|
3049 |
|
3050 |
+
#: views/b2s/support.php:192
|
3051 |
msgid "Needed"
|
3052 |
msgstr "Erforderlich"
|
3053 |
|
3054 |
+
#: views/b2s/support.php:195
|
3055 |
msgid "Current"
|
3056 |
msgstr "Aktuell"
|
3057 |
|
3058 |
+
#: views/b2s/support.php:198
|
3059 |
msgid "reload"
|
3060 |
msgstr "neu laden"
|
3061 |
|
3062 |
+
#: views/b2s/support.php:199
|
3063 |
msgid "Export as txt-file"
|
3064 |
msgstr "Als txt-Datei exportieren"
|
3065 |
|
3066 |
+
#: views/b2s/support.php:212
|
3067 |
msgid "Enter a URL to see how your link preview will look on social media."
|
3068 |
msgstr ""
|
3069 |
"Gib eine URL ein, um zu sehen, wie die Link-Vorschau auf Social Media "
|
3070 |
"aussehen wird"
|
3071 |
|
3072 |
+
#: views/b2s/support.php:213
|
3073 |
+
msgid ""
|
3074 |
+
"Are you are experiencing incorrect images and/or titles being pulled by "
|
3075 |
+
"Facebook or other social media platforms? Social Debugger or code validator "
|
3076 |
+
"tools show you a preview of what your social media post will look like when "
|
3077 |
+
"it's published and help you to fix inconsistencies and errors."
|
3078 |
+
msgstr ""
|
3079 |
+
"Werden falsche Bilder und/oder Titel von Facebook oder anderen Social-Media-"
|
3080 |
+
"Plattformen angezeigt? Social Debugger oder Code-Validator-Tools zeigen eine "
|
3081 |
+
"Vorschau, wie der Social Media-Post bei der Veröffentlichung aussehen wird, "
|
3082 |
+
"und helfen dabei, Inkonsistenzen und Fehler zu beheben."
|
3083 |
+
|
3084 |
+
#: views/b2s/support.php:213
|
3085 |
+
msgid "More"
|
3086 |
+
msgstr "Mehr"
|
3087 |
+
|
3088 |
+
#: views/b2s/support.php:218
|
3089 |
msgid "Facebook Open Graph Meta Tags"
|
3090 |
msgstr "Facebook Open Graph Meta Tags"
|
3091 |
|
3092 |
+
#: views/b2s/support.php:219
|
3093 |
msgid "Learn how to edit and adjust Open Graph tags."
|
3094 |
msgstr "So kannst Du Deine Open Graph Tags bearbeiten und anpassen."
|
3095 |
|
3096 |
+
#: views/b2s/support.php:223 views/b2s/support.php:234
|
3097 |
+
#: views/b2s/support.php:245
|
3098 |
msgid "For example your Wordpress Home Page"
|
3099 |
msgstr "zum Beispiel Deine Blogseite"
|
3100 |
|
3101 |
+
#: views/b2s/support.php:225
|
3102 |
msgid "Debug & Preview"
|
3103 |
msgstr "Link prüfen"
|
3104 |
|
3105 |
+
#: views/b2s/support.php:231
|
3106 |
msgid "LinkedIn Post Inspector"
|
3107 |
msgstr "LinkedIn Post Inspector"
|
3108 |
|
3109 |
+
#: views/b2s/support.php:236
|
3110 |
msgid "Inspect Post"
|
3111 |
msgstr "Link prüfen"
|
3112 |
|
3113 |
+
#: views/b2s/support.php:242
|
3114 |
+
msgid "Pinterest Rich Pins Validator"
|
3115 |
+
msgstr "Pinterest Rich Pins Validator"
|
3116 |
+
|
3117 |
+
#: views/b2s/support.php:247
|
3118 |
+
msgid "validate"
|
3119 |
+
msgstr "Link prüfen"
|
3120 |
+
|
3121 |
+
#: views/b2s/support.php:253
|
3122 |
msgid "Twitter Card Validator"
|
3123 |
msgstr "Twitter Card Validator"
|
3124 |
|
3125 |
+
#: views/b2s/support.php:254
|
3126 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
3127 |
msgstr "So kannst Du Deine Twitter Card Tags bearbeiten und anpassen."
|
3128 |
|
3129 |
+
#: views/b2s/support.php:258
|
3130 |
msgid "Validate directly on Twitter"
|
3131 |
msgstr "Direkt bei Twitter prüfen"
|
3132 |
|
3297 |
"Beitrag aktualisiert wird."
|
3298 |
|
3299 |
#: includes/B2S/AutoPost/Item.php:79
|
3300 |
+
msgid "updated posts"
|
3301 |
+
msgstr "Aktualisierte Beiträge"
|
3302 |
|
3303 |
+
#: includes/B2S/AutoPost/Item.php:107
|
3304 |
+
msgid "Transfer Auto-Poster settings to other users"
|
3305 |
+
msgstr "Auto-Poster-Einstellungen an andere Benutzer zuweisen"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3306 |
|
3307 |
#: includes/B2S/AutoPost/Item.php:138
|
3308 |
msgid "Autoposter for Imported Posts"
|
3412 |
msgstr "zu geplanten Zeiten"
|
3413 |
|
3414 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
3415 |
+
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:1263
|
3416 |
+
#: views/b2s/partials/post-edit-modal.php:71
|
3417 |
+
#: views/b2s/partials/post-edit-modal.php:74
|
3418 |
msgid "Date"
|
3419 |
msgstr "Startdatum"
|
3420 |
|
3443 |
msgstr "Beste Zeiten"
|
3444 |
|
3445 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
3446 |
+
#: includes/B2S/Ship/Item.php:331 includes/B2S/Ship/Navbar.php:86
|
3447 |
#: includes/B2S/Ship/Portale.php:38
|
3448 |
msgid "Blog"
|
3449 |
msgstr "Blog"
|
3486 |
|
3487 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
3488 |
#: includes/B2S/Network/Item.php:355
|
3489 |
+
msgid "Connection is interrupted since"
|
3490 |
+
msgstr "Verbindung ist unterbrochen seit"
|
3491 |
|
3492 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
3493 |
#: includes/B2S/Network/Item.php:359
|
3495 |
msgstr "Zugewiesen von"
|
3496 |
|
3497 |
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:330
|
3498 |
+
#: includes/B2S/Network/Item.php:392 includes/B2S/Ship/Item.php:1211
|
3499 |
msgid "Days"
|
3500 |
msgstr "Tage"
|
3501 |
|
3502 |
+
#: includes/B2S/Network/Item.php:291 includes/B2S/Network/Item.php:809
|
3503 |
#, php-format
|
3504 |
msgid ""
|
3505 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
3508 |
"Unternehmensseite (Arbeitgeberprofil, <a href=\"%s\" target=\"_blank\">Altes "
|
3509 |
"Design bis 30.11.2020</a>)"
|
3510 |
|
3511 |
+
#: includes/B2S/Network/Item.php:292 includes/B2S/Network/Item.php:810
|
3512 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3513 |
msgstr "Unternehmensseite (Arbeitgeberprofil, Neues Design)"
|
3514 |
|
3588 |
msgstr "Lade Standardeinstellungen"
|
3589 |
|
3590 |
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:701
|
3591 |
+
#: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
|
3592 |
msgid "Link"
|
3593 |
msgstr "Link"
|
3594 |
|
3600 |
msgid "Content"
|
3601 |
msgstr "Inhalt"
|
3602 |
|
3603 |
+
#: includes/B2S/Network/Item.php:720 includes/B2S/Ship/Item.php:372
|
3604 |
msgid ""
|
3605 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3606 |
"in your post."
|
3612 |
msgid "clear"
|
3613 |
msgstr "löschen"
|
3614 |
|
3615 |
+
#: includes/B2S/Network/Item.php:743
|
3616 |
+
msgid ""
|
3617 |
+
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
3618 |
+
"your page, in order to refer to the original source of the content and to "
|
3619 |
+
"increase the reach from search engines like Google."
|
3620 |
+
msgstr ""
|
3621 |
+
"Der Link wird als Canonical-Link, also im Quellcode Deiner Seite, übergeben "
|
3622 |
+
"um so auf die ursprüngliche Quelle des Inhalts zu verweisen und die "
|
3623 |
+
"Reichweite über Suchmaschinen wie Google zu vergrößern."
|
3624 |
+
|
3625 |
+
#: includes/B2S/Network/Item.php:745
|
3626 |
msgid "The link will be added automatically at the end of the post."
|
3627 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
3628 |
|
3629 |
+
#: includes/B2S/Network/Item.php:750
|
3630 |
+
msgid "The network does not support hashtags."
|
3631 |
+
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
3632 |
+
|
3633 |
+
#: includes/B2S/Network/Item.php:755 includes/B2S/Network/Item.php:801
|
3634 |
+
#: includes/B2S/Network/Item.php:840
|
3635 |
msgid "Network limit"
|
3636 |
msgstr "Netzwerkbegrenzung"
|
3637 |
|
3638 |
+
#: includes/B2S/Network/Item.php:755 includes/B2S/Network/Item.php:801
|
3639 |
+
#: includes/B2S/Network/Item.php:801 includes/B2S/Network/Item.php:840
|
3640 |
+
#: includes/B2S/Network/Item.php:840 includes/B2S/Ship/Item.php:215
|
3641 |
+
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
3642 |
+
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
3643 |
+
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
|
3644 |
+
#: includes/B2S/Ship/Item.php:1292
|
3645 |
msgid "characters"
|
3646 |
msgstr "Zeichen"
|
3647 |
|
3648 |
+
#: includes/B2S/Network/Item.php:762
|
3649 |
msgid "Add a link-URL to the end of my image post."
|
3650 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
3651 |
|
3652 |
+
#: includes/B2S/Network/Item.php:769
|
3653 |
msgid ""
|
3654 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3655 |
"Instagram does not turn link-URLs into clickable links)"
|
3657 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
3658 |
"Instagram Links nicht als klickbare Links darstellt)"
|
3659 |
|
3660 |
+
#: includes/B2S/Network/Item.php:774
|
3661 |
+
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
3662 |
+
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
3663 |
+
|
3664 |
+
#: includes/B2S/Network/Item.php:801 includes/B2S/Network/Item.php:840
|
3665 |
msgid "recommended length"
|
3666 |
msgstr "Empfohlene Länge"
|
3667 |
|
3668 |
+
#: includes/B2S/Network/Item.php:866 includes/B2S/Network/Item.php:918
|
3669 |
+
#: includes/B2S/Network/Item.php:987 includes/B2S/Network/Item.php:1039
|
3670 |
+
#: includes/B2S/Network/Item.php:1073 includes/B2S/Network/Item.php:1124
|
3671 |
+
#: includes/B2S/Network/Item.php:1154 includes/B2S/Network/Item.php:1208
|
3672 |
+
#: includes/B2S/Network/Item.php:1227 includes/B2S/Network/Item.php:1261
|
3673 |
+
#: includes/B2S/Network/Item.php:1277 includes/B2S/Network/Item.php:1293
|
3674 |
+
#: includes/B2S/Network/Item.php:1309 includes/B2S/Network/Item.php:1325
|
3675 |
+
#: includes/B2S/Network/Item.php:1344 includes/B2S/Network/Item.php:1360
|
3676 |
msgid "Preview"
|
3677 |
msgstr "Vorschau"
|
3678 |
|
3837 |
msgid "last saved"
|
3838 |
msgstr "zuletzt gespeichert:"
|
3839 |
|
3840 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:856
|
3841 |
#: includes/B2S/Ship/Save.php:448
|
3842 |
msgid "Retweet"
|
3843 |
msgstr "Retweet"
|
3844 |
|
3845 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:856
|
3846 |
msgid "Re-Share"
|
3847 |
msgstr "Wiederholt geteilt"
|
3848 |
|
3849 |
+
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:791
|
3850 |
+
#: includes/B2S/Post/Item.php:862 includes/B2S/RePost/Item.php:130
|
3851 |
msgid "select all"
|
3852 |
msgstr "alle auswählen"
|
3853 |
|
3873 |
msgid "shared by %s"
|
3874 |
msgstr "von %s geteilt"
|
3875 |
|
3876 |
+
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:771
|
3877 |
msgid "You want to delete a publish post entry?"
|
3878 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3879 |
|
3880 |
+
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:772
|
3881 |
msgid "delete from reporting"
|
3882 |
msgstr "aus Reporting löschen"
|
3883 |
|
3884 |
+
#: includes/B2S/Post/Item.php:794
|
3885 |
#, php-format
|
3886 |
msgid "is waiting to shared by %s"
|
3887 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3888 |
|
3889 |
+
#: includes/B2S/Post/Item.php:824 includes/B2S/Ship/Save.php:429
|
3890 |
msgid "share"
|
3891 |
msgstr "teilen"
|
3892 |
|
3893 |
+
#: includes/B2S/Post/Item.php:832
|
3894 |
msgid "You want to delete your Social Media post?"
|
3895 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3896 |
|
3897 |
+
#: includes/B2S/Post/Item.php:875
|
3898 |
#, php-format
|
3899 |
msgid "last modified by %s"
|
3900 |
msgstr "zuletzt von %s bearbeitet"
|
3901 |
|
3902 |
+
#: includes/B2S/Post/Item.php:877
|
3903 |
msgid "is currently being processed by the network"
|
3904 |
msgstr "wird vom Netzwerk verarbeitet"
|
3905 |
|
3906 |
+
#: includes/B2S/Post/Item.php:882
|
3907 |
#, php-format
|
3908 |
msgid "scheduled by %s"
|
3909 |
msgstr "von %s vorgeplant "
|
3910 |
|
3911 |
+
#: includes/B2S/Post/Item.php:887
|
3912 |
msgid "You want to edit your scheduled post?"
|
3913 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3914 |
|
3915 |
+
#: includes/B2S/Post/Item.php:888
|
3916 |
msgid "edit"
|
3917 |
msgstr "edit"
|
3918 |
|
3919 |
+
#: includes/B2S/Post/Item.php:900
|
3920 |
msgid "delete scheduling"
|
3921 |
msgstr "Planung löschen"
|
3922 |
|
3973 |
msgid "on"
|
3974 |
msgstr " "
|
3975 |
|
3976 |
+
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:1269
|
3977 |
msgid "Mon"
|
3978 |
msgstr "Mo"
|
3979 |
|
3980 |
+
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:1270
|
3981 |
msgid "Tue"
|
3982 |
msgstr "Di"
|
3983 |
|
3984 |
+
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:1271
|
3985 |
msgid "Wed"
|
3986 |
msgstr "Mi"
|
3987 |
|
3988 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1272
|
3989 |
msgid "Thu"
|
3990 |
msgstr "Do"
|
3991 |
|
3992 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1273
|
3993 |
msgid "Fri"
|
3994 |
msgstr "Fr"
|
3995 |
|
3996 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1274
|
3997 |
msgid "Sat"
|
3998 |
msgstr "Sa"
|
3999 |
|
4000 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1275
|
4001 |
msgid "Sun"
|
4002 |
msgstr "So"
|
4003 |
|
4070 |
msgstr "Autoren"
|
4071 |
|
4072 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
4073 |
+
#: includes/B2S/Ship/Item.php:1113
|
4074 |
msgid "Account"
|
4075 |
msgstr "Konto"
|
4076 |
|
4086 |
msgid "Url Shortener"
|
4087 |
msgstr "Url Shortener"
|
4088 |
|
4089 |
+
#: includes/B2S/Settings/Item.php:66
|
4090 |
+
#, php-format
|
4091 |
+
msgid ""
|
4092 |
+
"Please note: Pinterest does not allow posts with any shortened URL links (i."
|
4093 |
+
"e. short links generated by URL shorteners) to prevent spam. To make sure, "
|
4094 |
+
"your Pinterest posts will be displayed correctly, Blog2Social will share "
|
4095 |
+
"your posts automatically with the original URL link, even if you have "
|
4096 |
+
"activated an URL-shortener. You will find more information about this in the "
|
4097 |
+
"<a href=\"%s\" target=\"_blank\">Pinterest help guide</a>."
|
4098 |
+
msgstr ""
|
4099 |
+
"Hinweis: Pinterest erlaubt keine Beiträge mit verkürzten URL Links (z. B. "
|
4100 |
+
"Shortlinks, die mit Hilfe von URL Shortener Diensten generiert werden), um "
|
4101 |
+
"Spam zu verhindern. Um sicherzustellen, dass Deine Beiträge auf Pinterest "
|
4102 |
+
"korrekt dargestellt werden, teilt Blog2Social Deine Pinterest-Beiträge "
|
4103 |
+
"automatisch mit der vollständigen Link URL geteilt, auch wenn Du einen URL "
|
4104 |
+
"Shortener aktiviert hast. Mehr Informationen dazu findest Du im <a "
|
4105 |
+
"href=\"%s\" target=\"_blank\">Pinterest-Leitfaden</a>."
|
4106 |
+
|
4107 |
#: includes/B2S/Settings/Item.php:67
|
4108 |
msgid "no URL Shortener"
|
4109 |
msgstr "kein URL Shortener"
|
4432 |
msgid "Apply image for this image gallery"
|
4433 |
msgstr "Bild zur Bildergalerie hinzufügen"
|
4434 |
|
4435 |
+
#: includes/B2S/Ship/Item.php:161
|
4436 |
msgid "Network does not support image for profiles"
|
4437 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
4438 |
|
4439 |
+
#: includes/B2S/Ship/Item.php:162 includes/B2S/Ship/Item.php:231
|
4440 |
msgid "Network defines image by link"
|
4441 |
msgstr "Netzwerk wählt selber das Bild aus"
|
4442 |
|
4443 |
+
#: includes/B2S/Ship/Item.php:164
|
4444 |
msgid "Supported HTML tags"
|
4445 |
msgstr "Erlaubte HTML-Elemente"
|
4446 |
|
4447 |
+
#: includes/B2S/Ship/Item.php:165 includes/B2S/Ship/Item.php:230
|
4448 |
msgid "Network does not support emojis"
|
4449 |
msgstr "Netzwerk unterstützt keine Emojis"
|
4450 |
|
4451 |
+
#: includes/B2S/Ship/Item.php:167 includes/B2S/Ship/Item.php:233
|
4452 |
msgid "Network does not support GIFs"
|
4453 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
4454 |
|
4455 |
+
#: includes/B2S/Ship/Item.php:214
|
4456 |
msgid "Text only"
|
4457 |
msgstr "nur Text"
|
4458 |
|
4459 |
+
#: includes/B2S/Ship/Item.php:229
|
4460 |
msgid "Network does not support image for pages"
|
4461 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
4462 |
|
4463 |
+
#: includes/B2S/Ship/Item.php:323
|
4464 |
msgid "Connection expires on 31 March 2019"
|
4465 |
msgstr "Die Verbindung endet am 31. März 2019."
|
4466 |
|
4467 |
+
#: includes/B2S/Ship/Item.php:327
|
4468 |
msgid "Connection expires on 2 April 2019"
|
4469 |
msgstr "Die Verbindung endet am 2. April 2019."
|
4470 |
|
4471 |
+
#: includes/B2S/Ship/Item.php:340
|
4472 |
msgid "post format"
|
4473 |
msgstr "Postformat"
|
4474 |
|
4475 |
+
#: includes/B2S/Ship/Item.php:355 includes/B2S/Ship/Item.php:1298
|
4476 |
msgid "Insert full-text"
|
4477 |
msgstr "ganzen Text einfügen"
|
4478 |
|
4479 |
+
#: includes/B2S/Ship/Item.php:357 includes/B2S/Ship/Item.php:1300
|
4480 |
msgid "Delete text"
|
4481 |
msgstr "Text löschen"
|
4482 |
|
4483 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:759
|
4484 |
+
#: includes/B2S/Ship/Item.php:1164
|
4485 |
msgid ""
|
4486 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
4487 |
"allowed to post identical or substantially similar content to multiple "
|
4492 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
4493 |
"mehreren Accounts zu posten."
|
4494 |
|
4495 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:759
|
4496 |
+
#: includes/B2S/Ship/Item.php:1164
|
4497 |
msgid ""
|
4498 |
"Violating these rules can result in Twitter suspending your account. Always "
|
4499 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
4503 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
4504 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
4505 |
|
4506 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:759
|
4507 |
+
#: includes/B2S/Ship/Item.php:1164
|
4508 |
msgid "Learn more about this"
|
4509 |
msgstr "Erfahre mehr darüber"
|
4510 |
|
4511 |
+
#: includes/B2S/Ship/Item.php:368
|
4512 |
msgid ""
|
4513 |
"Please note: XING allows identical posts to be published only once within a "
|
4514 |
"group and no more than three times across different groups."
|
4517 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
4518 |
"Gruppen."
|
4519 |
|
4520 |
+
#: includes/B2S/Ship/Item.php:368
|
4521 |
msgid "Read more"
|
4522 |
msgstr "Weiterlesen"
|
4523 |
|
4524 |
+
#: includes/B2S/Ship/Item.php:373
|
4525 |
msgid ""
|
4526 |
"Please keep in mind that users are not allowed to post identical or "
|
4527 |
"substantially similar content to multiple accounts or multiple duplicate "
|
4531 |
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
4532 |
"Updates in einem Konto zu veröffentlichen."
|
4533 |
|
4534 |
+
#: includes/B2S/Ship/Item.php:373
|
4535 |
msgid ""
|
4536 |
"Violating these rules can result in suspending your account. Always vary "
|
4537 |
"your content with different images, comments, hashtags or handles to prevent "
|
4541 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
4542 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
4543 |
|
4544 |
+
#: includes/B2S/Ship/Item.php:393
|
4545 |
msgid "hide calendar"
|
4546 |
msgstr "Planungskalender verbergen"
|
4547 |
|
4548 |
+
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:510
|
4549 |
+
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:599
|
4550 |
+
#: includes/B2S/Ship/Item.php:628 includes/B2S/Ship/Item.php:656
|
4551 |
+
#: includes/B2S/Ship/Item.php:684 includes/B2S/Ship/Item.php:715
|
4552 |
+
#: includes/B2S/Ship/Item.php:770 includes/B2S/Ship/Item.php:821
|
4553 |
+
#: includes/B2S/Ship/Item.php:842 includes/B2S/Ship/Item.php:863
|
4554 |
+
#: includes/B2S/Ship/Item.php:884 includes/B2S/Ship/Item.php:905
|
4555 |
+
#: includes/B2S/Ship/Item.php:915
|
4556 |
msgid "Write something about your post..."
|
4557 |
msgstr "Schreibe etwas..."
|
4558 |
|
4559 |
+
#: includes/B2S/Ship/Item.php:465 includes/B2S/Ship/Item.php:585
|
4560 |
+
#: includes/B2S/Ship/Item.php:615 includes/B2S/Ship/Item.php:643
|
4561 |
+
#: includes/B2S/Ship/Item.php:671
|
4562 |
msgid ""
|
4563 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
4564 |
"network"
|
4565 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
4566 |
|
4567 |
+
#: includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:529
|
4568 |
+
#: includes/B2S/Ship/Item.php:588 includes/B2S/Ship/Item.php:618
|
4569 |
+
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:674
|
4570 |
msgid ""
|
4571 |
"You want to change your link image, link title and link description for this "
|
4572 |
"network? Click here."
|
4573 |
msgstr ""
|
4574 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
4575 |
|
4576 |
+
#: includes/B2S/Ship/Item.php:470 includes/B2S/Ship/Item.php:590
|
4577 |
+
#: includes/B2S/Ship/Item.php:620 includes/B2S/Ship/Item.php:648
|
4578 |
+
#: includes/B2S/Ship/Item.php:676
|
4579 |
msgid "OG Meta title"
|
4580 |
msgstr "OG Titel"
|
4581 |
|
4582 |
+
#: includes/B2S/Ship/Item.php:471 includes/B2S/Ship/Item.php:591
|
4583 |
+
#: includes/B2S/Ship/Item.php:621 includes/B2S/Ship/Item.php:649
|
4584 |
+
#: includes/B2S/Ship/Item.php:677
|
4585 |
msgid "OG Meta description"
|
4586 |
msgstr "OG Beschreibung"
|
4587 |
|
4588 |
+
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
4589 |
+
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
4590 |
msgid "Do u want to post multiple images?"
|
4591 |
msgstr "Du möchtest mehrere Bilder posten?"
|
4592 |
|
4593 |
+
#: includes/B2S/Ship/Item.php:524
|
4594 |
msgid ""
|
4595 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
4596 |
"Changes may not be immediately visible on Twitter."
|
4598 |
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
4599 |
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
4600 |
|
4601 |
+
#: includes/B2S/Ship/Item.php:526
|
4602 |
msgid ""
|
4603 |
"Info: Change Card Meta tags image, title and description for this network"
|
4604 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
4605 |
|
4606 |
+
#: includes/B2S/Ship/Item.php:531
|
4607 |
msgid "Card Meta title"
|
4608 |
msgstr "Card Titel"
|
4609 |
|
4610 |
+
#: includes/B2S/Ship/Item.php:532
|
4611 |
msgid "Card Meta description"
|
4612 |
msgstr "Card Beschreibung"
|
4613 |
|
4614 |
+
#: includes/B2S/Ship/Item.php:613
|
4615 |
msgid ""
|
4616 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
4617 |
"days. Changes may not be immediately visible on XING."
|
4620 |
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
4621 |
"dargestellt."
|
4622 |
|
4623 |
+
#: includes/B2S/Ship/Item.php:931
|
4624 |
msgid "required"
|
4625 |
msgstr "erforderlich"
|
4626 |
|
4627 |
+
#: includes/B2S/Ship/Item.php:1033
|
4628 |
msgid "Jobs & Projects"
|
4629 |
msgstr "Stellenangebote & Projekte"
|
4630 |
|
4631 |
+
#: includes/B2S/Ship/Item.php:1034
|
4632 |
msgid "Events"
|
4633 |
msgstr "Events"
|
4634 |
|
4635 |
+
#: includes/B2S/Ship/Item.php:1035
|
4636 |
msgid "Classified Ads"
|
4637 |
msgstr "Kleinanzeigen"
|
4638 |
|
4639 |
+
#: includes/B2S/Ship/Item.php:1037
|
4640 |
msgid "Offer"
|
4641 |
msgstr "Angebot"
|
4642 |
|
4643 |
+
#: includes/B2S/Ship/Item.php:1038
|
4644 |
msgid "Request"
|
4645 |
msgstr "Anfrage"
|
4646 |
|
4647 |
+
#: includes/B2S/Ship/Item.php:1049
|
4648 |
msgid "The Headline..."
|
4649 |
msgstr "Die Überschrift..."
|
4650 |
|
4651 |
+
#: includes/B2S/Ship/Item.php:1057
|
4652 |
#, php-format
|
4653 |
msgid "max. %s Tags"
|
4654 |
msgstr "max. %s Tags"
|
4655 |
|
4656 |
+
#: includes/B2S/Ship/Item.php:1059
|
4657 |
msgid "Hashtags"
|
4658 |
msgstr "Hashtags"
|
4659 |
|
4660 |
+
#: includes/B2S/Ship/Item.php:1095
|
4661 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
4662 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
4663 |
|
4664 |
+
#: includes/B2S/Ship/Item.php:1114 views/b2s/partials/post-edit-modal.php:82
|
4665 |
msgid "Delay"
|
4666 |
msgstr "Verzögerung"
|
4667 |
|
4668 |
+
#: includes/B2S/Ship/Item.php:1124 includes/B2S/Ship/Item.php:1125
|
4669 |
+
#: includes/B2S/Ship/Item.php:1126 includes/B2S/Ship/Item.php:1127
|
4670 |
+
#: views/b2s/partials/post-edit-modal.php:86
|
4671 |
+
#: views/b2s/partials/post-edit-modal.php:87
|
4672 |
+
#: views/b2s/partials/post-edit-modal.php:88
|
4673 |
+
#: views/b2s/partials/post-edit-modal.php:89
|
4674 |
msgid "min"
|
4675 |
msgstr "min"
|
4676 |
|
4677 |
+
#: includes/B2S/Ship/Item.php:1132
|
4678 |
msgid "Add Retweet"
|
4679 |
msgstr "Retweet hinzufügen"
|
4680 |
|
4681 |
+
#: includes/B2S/Ship/Item.php:1152
|
4682 |
msgid "Share Now"
|
4683 |
msgstr "Sofort teilen"
|
4684 |
|
4685 |
+
#: includes/B2S/Ship/Item.php:1157
|
4686 |
msgid "Schedule Recurrent Post"
|
4687 |
msgstr "regelmäßig Planen"
|
4688 |
|
4689 |
+
#: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:56
|
4690 |
msgid ""
|
4691 |
"Please note: Your account is connected via an old XING API that is no longer "
|
4692 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
4701 |
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
4702 |
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
4703 |
|
4704 |
+
#: includes/B2S/Ship/Item.php:1197 views/b2s/partials/post-edit-modal.php:60
|
4705 |
msgid ""
|
4706 |
"Please note: Google will shut down Google+ for all private accounts "
|
4707 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
4713 |
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
4714 |
"andere Inhalte herunterladen kannst:"
|
4715 |
|
4716 |
+
#: includes/B2S/Ship/Item.php:1200
|
4717 |
msgid "Repeats"
|
4718 |
msgstr "Wiederholen"
|
4719 |
|
4720 |
+
#: includes/B2S/Ship/Item.php:1201 includes/B2S/Ship/Item.php:1204
|
4721 |
msgid "Duration"
|
4722 |
msgstr "Dauer"
|
4723 |
|
4724 |
+
#: includes/B2S/Ship/Item.php:1205
|
4725 |
msgid "Number of repeats"
|
4726 |
msgstr "Anzahl der Wiederholungen"
|
4727 |
|
4728 |
+
#: includes/B2S/Ship/Item.php:1206
|
4729 |
msgid "Day of month"
|
4730 |
msgstr "Tag im Monat"
|
4731 |
|
4732 |
+
#: includes/B2S/Ship/Item.php:1207
|
4733 |
msgid "Repeats every (days)"
|
4734 |
msgstr "Wiederholt sich alle X Tage"
|
4735 |
|
4736 |
+
#: includes/B2S/Ship/Item.php:1209
|
4737 |
msgid "Start date"
|
4738 |
msgstr "Startdatum"
|
4739 |
|
4740 |
+
#: includes/B2S/Ship/Item.php:1210
|
4741 |
msgid "Time to publish"
|
4742 |
msgstr "Veröffentlichungszeitpunkt"
|
4743 |
|
4744 |
+
#: includes/B2S/Ship/Item.php:1219
|
4745 |
msgid "weekly"
|
4746 |
msgstr "wöchentlich"
|
4747 |
|
4748 |
+
#: includes/B2S/Ship/Item.php:1220
|
4749 |
msgid "monthly"
|
4750 |
msgstr "monatlich"
|
4751 |
|
4752 |
+
#: includes/B2S/Ship/Item.php:1221
|
4753 |
msgid "own period"
|
4754 |
msgstr "Eigener Zeitraum"
|
4755 |
|
4756 |
+
#: includes/B2S/Ship/Item.php:1227
|
4757 |
msgid "Week"
|
4758 |
msgstr "Woche"
|
4759 |
|
4760 |
+
#: includes/B2S/Ship/Item.php:1227
|
4761 |
msgid "Weeks"
|
4762 |
msgstr "Wochen"
|
4763 |
|
4764 |
+
#: includes/B2S/Ship/Item.php:1236
|
4765 |
msgid "Month"
|
4766 |
msgstr "Monat"
|
4767 |
|
4768 |
+
#: includes/B2S/Ship/Item.php:1236
|
4769 |
msgid "Months"
|
4770 |
msgstr "Monate"
|
4771 |
|
4772 |
+
#: includes/B2S/Ship/Item.php:1256
|
4773 |
msgid "End Of Month"
|
4774 |
msgstr "Monatsende"
|
4775 |
|
4776 |
+
#: includes/B2S/Ship/Item.php:1261
|
4777 |
msgid "Timespan"
|
4778 |
msgstr "Zeitspanne"
|
4779 |
|
4780 |
+
#: includes/B2S/Ship/Item.php:1264 views/b2s/partials/post-edit-modal.php:72
|
4781 |
+
#: views/b2s/partials/post-edit-modal.php:75
|
4782 |
msgid "Time"
|
4783 |
msgstr "Mal"
|
4784 |
|
4785 |
+
#: includes/B2S/Ship/Item.php:1282
|
4786 |
msgid "add another post"
|
4787 |
msgstr "einen weiteren Post anlegen"
|
4788 |
|
4789 |
+
#: includes/B2S/Ship/Item.php:1296
|
4790 |
msgid "Copy from original"
|
4791 |
msgstr "Originaltext kopieren"
|
4792 |
|
4793 |
+
#: includes/B2S/Ship/Item.php:1312
|
4794 |
msgid "Apply Settings To All Networks"
|
4795 |
msgstr "Planung für alle Netzwerke übernehmen"
|
4796 |
|
4797 |
+
#: includes/B2S/Ship/Item.php:1313
|
4798 |
msgid "Save as best time for this network"
|
4799 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
4800 |
|
4999 |
"Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
|
5000 |
"und geplanten Social Media Beiträge."
|
5001 |
|
|
|
|
|
|
|
|
|
|
|
5002 |
#: views/b2s/html/footer.php:78 views/b2s/html/footer.php:96
|
5003 |
msgid "Activate Blog2Social PREMIUM PRO."
|
5004 |
msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
5005 |
|
5006 |
#: views/b2s/html/footer.php:80
|
5007 |
msgid ""
|
5008 |
+
"With Blog2Social Premium PRO you can connect Facebook, Linkedin, Xing and VK "
|
5009 |
+
"pages as well as Facebook, XING and VK groups."
|
5010 |
msgstr ""
|
5011 |
+
"Mit Blog2Social Premium PRO kannst Du Facebook-, Linkedin-, Xing- und VK-"
|
5012 |
+
"Seiten sowie Facebook-, Xing- und VK-Gruppen verbinden."
|
5013 |
|
5014 |
#: views/b2s/html/footer.php:83 views/b2s/html/footer.php:101
|
5015 |
#: views/b2s/html/footer.php:130
|
5246 |
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für "
|
5247 |
"importierte Beiträge einrichtest.</a>"
|
5248 |
|
5249 |
+
#: views/b2s/html/footer.php:433
|
5250 |
+
msgid "Transfer Auto-Poster settings to other users (Business):"
|
5251 |
+
msgstr ""
|
5252 |
+
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
5253 |
+
|
5254 |
#: views/b2s/html/footer.php:436
|
5255 |
msgid ""
|
5256 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
5257 |
+
"administrator to other users if they have activated the same Blog2Social-"
|
5258 |
+
"Business license. This way, you can also assign social media accounts to "
|
5259 |
+
"other users, so they can auto-post without setting up these connections in "
|
5260 |
+
"each user account. Within these settings, you can also decide whether newly "
|
5261 |
+
"published or updated content from other users should be automatically shared."
|
5262 |
+
" Users with an assigned Auto-Poster setting and an assigned social-media-"
|
5263 |
+
"network group will then share content automatically how you selected the "
|
5264 |
+
"content to be shared automatically."
|
5265 |
+
msgstr ""
|
5266 |
+
"Mit Blog2Social kannst Du als WordPress-Administrator die Auto-Poster-"
|
5267 |
+
"Einstellungen an andere User übertragen, wenn diese die gleiche Blog2Social-"
|
5268 |
+
"Business-Lizenz aktiviert haben. Auf diese Weise kannst Du auch anderen "
|
5269 |
+
"Benutzern Social-Media-Accounts zuweisen, so dass sie automatisch posten "
|
5270 |
+
"können, ohne die Verbindungen in jedem Benutzerkonto individuell "
|
5271 |
+
"einzurichten. Innerhalb dieser Einstellungen entscheidest Du, ob neu "
|
5272 |
+
"veröffentlichte oder aktualisierte Inhalte anderer User automatisch "
|
5273 |
+
"freigegeben werden sollen. User mit zugewiesenen Auto-Poster-Einstellungen "
|
5274 |
+
"haben anschließend die Auto-Poster-Einstellungen konfiguriert und Social-"
|
5275 |
+
"Media-Netzwerke verbunden, auf denen Inhalte automatisch geteilt werden "
|
5276 |
+
"sollen, die der Administrator ausgewählt hat."
|
|
|
|
|
5277 |
|
5278 |
#: views/b2s/html/footer.php:438
|
5279 |
#, php-format
|
5280 |
msgid ""
|
5281 |
+
"You will get more information on how to assign the Auto-Poster settings in "
|
5282 |
+
"the <a target=\"_blank\" href=\"%s\">Auto-Poster guide</a>."
|
5283 |
msgstr ""
|
5284 |
"Mehr Informationen dazu, wie Du die Einstellungen zuweisen kannst, findest "
|
5285 |
+
"Du in diesem <a target=\"_blank\" href=\"%s\">Auto-Poster-Guide</a>. "
|
5286 |
|
5287 |
#: views/b2s/html/footer.php:451
|
5288 |
msgid "Blog2Social: Re-Share Posts"
|
5755 |
#: views/b2s/html/header.php:232
|
5756 |
msgid ""
|
5757 |
"Your limit for your quota of posts in your queue has been reached. Please "
|
5758 |
+
"delete posts from your queue before you add more"
|
5759 |
msgstr ""
|
5760 |
"Das Limit Deines Kontingents für Beiträge in Deiner Warteschlange wurde "
|
5761 |
"erreicht. Bitte lösche Beiträge aus Deiner Warteschlange bevor Du neue "
|
5762 |
+
"hinzufügst"
|
5763 |
|
5764 |
#: views/b2s/html/header.php:232
|
5765 |
msgid " or upgade your Blog2Social license to extend your quota."
|
5966 |
msgid "I agree to the Adenion Privacy Policy"
|
5967 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
5968 |
|
5969 |
+
#: views/b2s/html/post.navbar.php:9
|
5970 |
msgid "All Blog Posts"
|
5971 |
msgstr "Alle Blogbeiträge"
|
5972 |
|
6006 |
msgid "Plans & Prices"
|
6007 |
msgstr "Tarife & Preise"
|
6008 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6009 |
#: views/b2s/html/sidebar.php:180
|
6010 |
msgid "Blog2Social Blog News"
|
6011 |
msgstr "Blog2Social Blog News"
|
6039 |
msgid "This post is blocked by %1"
|
6040 |
msgstr "% 1bearbeitet gerade diesen Beitrag."
|
6041 |
|
6042 |
+
#: views/b2s/partials/post-edit-modal.php:93
|
6043 |
msgid "The orginal tweet is scheduled on:"
|
6044 |
msgstr "Der Original-Tweet ist geplant für:"
|
6045 |
|
6046 |
+
#: views/b2s/partials/post-edit-modal.php:110
|
6047 |
msgid "Change details"
|
6048 |
msgstr "Änderungen übernehmen"
|
6049 |
|
languages/blog2social.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date:
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -84,8 +84,8 @@ msgstr ""
|
|
84 |
msgid "Upgrade to Premium"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/Loader.php:821 includes/Loader.php:
|
88 |
-
#: includes/Loader.php:
|
89 |
#: views/b2s/html/sidebar.php:137
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
@@ -94,27 +94,27 @@ msgstr ""
|
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
102 |
#: views/b2s/html/sidebar.php:125
|
103 |
msgid "Shared Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
107 |
#: views/b2s/html/sidebar.php:119
|
108 |
msgid "Instant Sharing"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
112 |
-
#: views/b2s/html/post.navbar.php:
|
113 |
#: views/b2s/html/sidebar.php:116
|
114 |
msgid "Drafts"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
118 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
119 |
msgid "Scheduled Posts"
|
120 |
msgstr ""
|
@@ -123,7 +123,7 @@ msgstr ""
|
|
123 |
msgid "Social Media Post Drafts"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:
|
127 |
#: views/b2s/html/sidebar.php:113
|
128 |
msgid "Favorites"
|
129 |
msgstr ""
|
@@ -133,12 +133,12 @@ msgstr ""
|
|
133 |
msgid "Auto-Post"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/Loader.php:871 views/b2s/
|
137 |
-
#: views/b2s/html/sidebar.php:72
|
138 |
msgid "Re-Share Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/Loader.php:871 views/b2s/curation.php:
|
142 |
#: views/b2s/support.php:22
|
143 |
msgid "NEW"
|
144 |
msgstr ""
|
@@ -177,8 +177,8 @@ msgstr ""
|
|
177 |
#: includes/Loader.php:874
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
-
"The network could not publish your post. Please see <a
|
181 |
-
"href=\"%s\">
|
182 |
msgstr ""
|
183 |
|
184 |
#: includes/Loader.php:875
|
@@ -188,7 +188,10 @@ msgid ""
|
|
188 |
msgstr ""
|
189 |
|
190 |
#: includes/Loader.php:876
|
191 |
-
|
|
|
|
|
|
|
192 |
msgstr ""
|
193 |
|
194 |
#: includes/Loader.php:877
|
@@ -200,8 +203,10 @@ msgstr ""
|
|
200 |
#: includes/Loader.php:878
|
201 |
#, php-format
|
202 |
msgid ""
|
203 |
-
"
|
204 |
-
"
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
#: includes/Loader.php:879
|
@@ -217,15 +222,15 @@ msgstr ""
|
|
217 |
#: includes/Loader.php:881
|
218 |
#, php-format
|
219 |
msgid ""
|
220 |
-
"The network has blocked your account. Please see <a
|
221 |
-
"href=\"%s\">
|
222 |
msgstr ""
|
223 |
|
224 |
#: includes/Loader.php:882
|
225 |
#, php-format
|
226 |
msgid ""
|
227 |
-
"The number of images is reached. Please see <a
|
228 |
-
"
|
229 |
msgstr ""
|
230 |
|
231 |
#: includes/Loader.php:883
|
@@ -236,8 +241,8 @@ msgstr ""
|
|
236 |
#: includes/Loader.php:884
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
-
"The network can not publish special characters such as Emoji. Please see
|
240 |
-
"target=\"_blank\" href=\"%s\">
|
241 |
msgstr ""
|
242 |
|
243 |
#: includes/Loader.php:885
|
@@ -280,82 +285,82 @@ msgstr ""
|
|
280 |
#: includes/Loader.php:893
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
-
"Instagram published your post without text. Please see <a
|
284 |
-
"href=\"%s\">
|
285 |
msgstr ""
|
286 |
|
287 |
#: includes/Loader.php:894
|
288 |
msgid "Your group can not be found by the network."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/Loader.php:
|
292 |
msgid "Dashboard"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/Loader.php:
|
296 |
msgid "Share Website & Blog Content"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/Loader.php:
|
300 |
msgid "Site & Blog Content"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/Loader.php:
|
304 |
msgid "Create Social Media Posts"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/Loader.php:
|
308 |
msgid "Social Media Posts"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/Loader.php:
|
312 |
-
#: views/b2s/html/post.navbar.php:
|
313 |
msgid "Calendar"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/Loader.php:
|
317 |
msgid "Networks"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/Loader.php:
|
321 |
msgid "PR-Service"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/Loader.php:
|
325 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
326 |
#: views/b2s/html/sidebar.ship.php:66
|
327 |
msgid "Help & Support"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/Loader.php:
|
331 |
msgid "Premium"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/Loader.php:
|
335 |
msgid "PREMIUM"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/Loader.php:
|
339 |
#: views/b2s/html/sidebar.ship.php:24
|
340 |
msgid "Blog2Social"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/Loader.php:
|
344 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/Loader.php:
|
348 |
#, php-format
|
349 |
msgid ""
|
350 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
351 |
"our FAQ</a>"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/Loader.php:
|
355 |
msgid "or"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/Loader.php:
|
359 |
msgid "back to install plugins"
|
360 |
msgstr ""
|
361 |
|
@@ -363,10 +368,10 @@ msgstr ""
|
|
363 |
msgid "Rate it!"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/Notice.php:18
|
367 |
msgid ""
|
368 |
-
"If you like Blog2Social, please give us a 5 star rating.
|
369 |
-
"that does not work for you, please contact us
|
370 |
msgstr ""
|
371 |
|
372 |
#: includes/Notice.php:19 views/b2s/html/sidebar.php:167
|
@@ -395,203 +400,208 @@ msgid ""
|
|
395 |
"higher, or ask your server administrator to do it for you."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/Tools.php:
|
399 |
#: views/b2s/html/sidebar.ship.php:29
|
400 |
msgid "License"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/Tools.php:
|
404 |
msgid "Greece"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/Tools.php:
|
408 |
msgid "India"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/Tools.php:
|
412 |
msgid "United States of America"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: includes/Tools.php:
|
416 |
msgid "Ireland"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/Tools.php:
|
420 |
msgid "Italy"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/Tools.php:
|
424 |
msgid "Switzerland"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/Tools.php:
|
428 |
msgid "Czechoslovakia"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/Tools.php:
|
432 |
msgid "Indonesia"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/Tools.php:
|
436 |
msgid "Spain"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/Tools.php:
|
440 |
msgid "Canada"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/Tools.php:
|
444 |
msgid "Great Britain"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/Tools.php:
|
448 |
msgid "Russia"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/Tools.php:
|
452 |
msgid "Netherlands"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/Tools.php:
|
456 |
msgid "Portugal"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/Tools.php:
|
460 |
msgid "Norway"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/Tools.php:
|
464 |
msgid "Turkey"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/Tools.php:
|
468 |
msgid "Australia"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/Tools.php:
|
472 |
msgid "Austria"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/Tools.php:
|
476 |
msgid "Poland"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/Tools.php:
|
480 |
msgid "France"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/Tools.php:
|
484 |
msgid "Romania"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/Tools.php:
|
488 |
msgid "Germany"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/Tools.php:
|
492 |
msgid "Denmark"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/Tools.php:
|
496 |
msgid "New Zealand"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/Tools.php:
|
500 |
msgid "Finland"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/Tools.php:
|
504 |
msgid "Hungary"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/Tools.php:
|
508 |
msgid "Japan"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/Tools.php:
|
512 |
msgid "Argentina"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/Tools.php:
|
516 |
msgid "Korea"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/Tools.php:
|
520 |
msgid "Sweden"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/Tools.php:
|
524 |
msgid "Mexico"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/Tools.php:
|
528 |
msgid "Slovakia"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/Tools.php:
|
532 |
msgid "Chile"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/Tools.php:
|
536 |
msgid "Colombia"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/Tools.php:
|
540 |
msgid "South Africa"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/Tools.php:
|
544 |
msgid "Philippines"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/Tools.php:
|
548 |
msgid "is determined automatically"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/Tools.php:
|
552 |
msgid "Search"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/Tools.php:
|
556 |
msgid "Recently Used"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/Tools.php:
|
560 |
msgid "Smileys & People"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/Tools.php:
|
564 |
msgid "Animals & Nature"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/Tools.php:
|
568 |
msgid "Food & Drink"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/Tools.php:
|
572 |
msgid "Activities"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/Tools.php:
|
576 |
msgid "Travel & Places"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/Tools.php:
|
580 |
msgid "Objects"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/Tools.php:
|
584 |
msgid "Symbols"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: includes/Tools.php:
|
588 |
msgid "Flags"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/Tools.php:
|
592 |
msgid "No emojis found"
|
593 |
msgstr ""
|
594 |
|
|
|
|
|
|
|
|
|
|
|
595 |
#: views/notice.php:12
|
596 |
msgid "Connection is broken..."
|
597 |
msgstr ""
|
@@ -630,17 +640,17 @@ msgstr ""
|
|
630 |
msgid "Please contact our support!"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/Ajax/Post.php:
|
634 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
635 |
#: includes/B2S/Network/Item.php:359 includes/B2S/Network/Item.php:485
|
636 |
msgid "Unknown username"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/Ajax/Post.php:
|
640 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
641 |
-
#: includes/B2S/Post/Item.php:
|
642 |
-
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:
|
643 |
-
#: includes/B2S/Ship/Item.php:
|
644 |
msgid "delete"
|
645 |
msgstr ""
|
646 |
|
@@ -687,7 +697,7 @@ msgstr ""
|
|
687 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
688 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
689 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
690 |
-
#: includes/B2S/Ship/Item.php:
|
691 |
msgid "Info"
|
692 |
msgstr ""
|
693 |
|
@@ -727,7 +737,7 @@ msgstr ""
|
|
727 |
msgid "enable Auto-Posting"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:
|
731 |
msgid "show calendar"
|
732 |
msgstr ""
|
733 |
|
@@ -769,136 +779,132 @@ msgstr ""
|
|
769 |
msgid "You want to auto-post your blog post?"
|
770 |
msgstr ""
|
771 |
|
772 |
-
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:
|
773 |
-
#: views/b2s/
|
774 |
-
#: views/b2s/ship.php:
|
775 |
-
#: views/b2s/html/footer.php:
|
776 |
-
#: views/b2s/html/footer.php:
|
777 |
-
#: views/b2s/html/footer.php:
|
778 |
-
#: views/b2s/html/footer.php:
|
779 |
msgid "With Blog2Social Premium you can:"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:
|
783 |
-
#: views/b2s/
|
784 |
-
#: views/b2s/ship.php:
|
785 |
-
#: views/b2s/html/footer.php:
|
786 |
-
#: views/b2s/html/footer.php:
|
787 |
-
#: views/b2s/html/footer.php:
|
788 |
-
#: views/b2s/html/footer.php:
|
789 |
-
#: views/b2s/html/header.php:342
|
790 |
msgid "Post on pages and groups"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:
|
794 |
-
#: views/b2s/
|
795 |
-
#: views/b2s/ship.php:
|
796 |
-
#: views/b2s/html/footer.php:
|
797 |
-
#: views/b2s/html/footer.php:
|
798 |
-
#: views/b2s/html/footer.php:
|
799 |
-
#: views/b2s/html/footer.php:
|
800 |
msgid "Share on multiple profiles, pages and groups"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:
|
804 |
-
#: views/b2s/
|
805 |
-
#: views/b2s/ship.php:
|
806 |
-
#: views/b2s/html/footer.php:
|
807 |
-
#: views/b2s/html/footer.php:
|
808 |
-
#: views/b2s/html/footer.php:
|
809 |
-
#: views/b2s/html/footer.php:
|
810 |
-
#: views/b2s/html/footer.php:561
|
811 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:
|
815 |
-
#: views/b2s/
|
816 |
-
#: views/b2s/ship.php:
|
817 |
-
#: views/b2s/html/footer.php:
|
818 |
-
#: views/b2s/html/footer.php:
|
819 |
-
#: views/b2s/html/footer.php:
|
820 |
-
#: views/b2s/html/footer.php:
|
821 |
msgid "Schedule your posts at the best times on each network"
|
822 |
msgstr ""
|
823 |
|
824 |
-
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:
|
825 |
-
#: views/b2s/
|
826 |
-
#: views/b2s/ship.php:
|
827 |
-
#: views/b2s/html/footer.php:
|
828 |
-
#: views/b2s/html/footer.php:
|
829 |
-
#: views/b2s/html/footer.php:
|
830 |
-
#: views/b2s/html/footer.php:
|
831 |
msgid ""
|
832 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
833 |
"social media posts"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:
|
837 |
-
#: views/b2s/
|
838 |
-
#: views/b2s/ship.php:
|
839 |
-
#: views/b2s/html/footer.php:
|
840 |
-
#: views/b2s/html/footer.php:
|
841 |
-
#: views/b2s/html/footer.php:
|
842 |
-
#: views/b2s/html/footer.php:
|
843 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:
|
847 |
-
#: views/b2s/
|
848 |
-
#: views/b2s/ship.php:
|
849 |
-
#: views/b2s/html/footer.php:
|
850 |
-
#: views/b2s/html/footer.php:
|
851 |
-
#: views/b2s/html/footer.php:
|
852 |
-
#: views/b2s/html/footer.php:
|
853 |
msgid "Schedule and re-share old posts"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:
|
857 |
-
#: views/b2s/
|
858 |
-
#: views/b2s/ship.php:
|
859 |
-
#: views/b2s/html/footer.php:
|
860 |
-
#: views/b2s/html/footer.php:
|
861 |
-
#: views/b2s/html/footer.php:
|
862 |
-
#: views/b2s/html/footer.php:
|
863 |
-
#: views/b2s/html/footer.php:566
|
864 |
msgid "Select link format or image format for your posts"
|
865 |
msgstr ""
|
866 |
|
867 |
-
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:
|
868 |
-
#: views/b2s/
|
869 |
-
#: views/b2s/ship.php:
|
870 |
-
#: views/b2s/html/footer.php:
|
871 |
-
#: views/b2s/html/footer.php:
|
872 |
-
#: views/b2s/html/footer.php:
|
873 |
-
#: views/b2s/html/footer.php:
|
874 |
-
#: views/b2s/html/footer.php:567
|
875 |
msgid "Select individual images per post"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:
|
879 |
-
#: views/b2s/
|
880 |
-
#: views/b2s/ship.php:
|
881 |
-
#: views/b2s/html/footer.php:
|
882 |
-
#: views/b2s/html/footer.php:
|
883 |
-
#: views/b2s/html/footer.php:
|
884 |
-
#: views/b2s/html/footer.php:
|
885 |
msgid ""
|
886 |
"Reporting & calendar: keep track of your published and scheduled social "
|
887 |
"media posts"
|
888 |
msgstr ""
|
889 |
|
890 |
-
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:
|
891 |
-
#: views/b2s/
|
892 |
-
#: views/b2s/ship.php:
|
893 |
-
#: views/b2s/html/footer.php:
|
894 |
-
#: views/b2s/html/footer.php:
|
895 |
-
#: views/b2s/html/footer.php:
|
896 |
-
#: views/b2s/html/footer.php:
|
897 |
msgid "Upgrade to SMART and above"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:
|
901 |
-
#: views/b2s/curation.php:
|
902 |
#: views/b2s/ship.php:325 views/b2s/ship.php:389 views/b2s/ship.php:435
|
903 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
904 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
@@ -936,7 +942,7 @@ msgid ""
|
|
936 |
"selection.</a>"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/B2S/PostBox.php:281 views/b2s/curation.php:
|
940 |
#: views/b2s/repost.php:204
|
941 |
msgid "Available networks"
|
942 |
msgstr ""
|
@@ -970,22 +976,22 @@ msgstr ""
|
|
970 |
msgid "save..."
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: views/b2s/autopost.php:48 views/b2s/settings.php:
|
974 |
#: includes/B2S/Ship/Image.php:96
|
975 |
msgid "Select or upload an image from media gallery"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: views/b2s/autopost.php:49 views/b2s/settings.php:
|
979 |
#: includes/B2S/Ship/Image.php:97
|
980 |
msgid "Use image"
|
981 |
msgstr ""
|
982 |
|
983 |
-
#: views/b2s/autopost.php:59 views/b2s/settings.php:
|
984 |
#: includes/B2S/Settings/Item.php:53
|
985 |
msgid "Personal Time Zone"
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: views/b2s/autopost.php:62 views/b2s/settings.php:
|
989 |
msgid ""
|
990 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
991 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -1005,6 +1011,30 @@ msgstr ""
|
|
1005 |
msgid "More information"
|
1006 |
msgstr ""
|
1007 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1008 |
#: views/b2s/curation.draft.php:17
|
1009 |
msgid ""
|
1010 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
@@ -1020,11 +1050,11 @@ msgstr ""
|
|
1020 |
#: views/b2s/network.php:339 views/b2s/network.php:414
|
1021 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1022 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1023 |
-
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:
|
1024 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1025 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1026 |
#: views/b2s/ship.php:574 views/b2s/ship.php:662 views/b2s/support.php:144
|
1027 |
-
#: views/b2s/support.php:
|
1028 |
msgid "Loading..."
|
1029 |
msgstr ""
|
1030 |
|
@@ -1036,10 +1066,10 @@ msgstr ""
|
|
1036 |
msgid "Are you sure you want to delete this draft?"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:
|
1040 |
#: views/b2s/network.php:109 views/b2s/post.approve.php:98
|
1041 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
1042 |
-
#: views/b2s/post.notice.php:
|
1043 |
#: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:478
|
1044 |
#: views/b2s/ship.php:557 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
1045 |
msgid "NO"
|
@@ -1047,7 +1077,7 @@ msgstr ""
|
|
1047 |
|
1048 |
#: views/b2s/curation.draft.php:91 views/b2s/network.php:110
|
1049 |
#: views/b2s/network.php:173 views/b2s/post.approve.php:99
|
1050 |
-
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:
|
1051 |
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:100
|
1052 |
#: views/b2s/repost.php:92 views/b2s/repost.php:93
|
1053 |
#: views/b2s/widgets/posts.php:68
|
@@ -1079,120 +1109,137 @@ msgstr ""
|
|
1079 |
msgid "Link Post"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
|
|
1083 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1084 |
#: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
|
1085 |
#: includes/B2S/Settings/Item.php:276
|
1086 |
msgid "Image Post"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: views/b2s/curation.php:49 views/b2s/
|
1090 |
-
#:
|
1091 |
-
|
1092 |
-
#: includes/B2S/Network/Item.php:332 includes/B2S/Network/Item.php:394
|
1093 |
-
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1094 |
-
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:1147
|
1095 |
-
#: views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18
|
1096 |
-
#: views/b2s/html/post.navbar.php:20 views/b2s/partials/post-edit-modal.php:9
|
1097 |
-
#: views/b2s/widgets/posts.php:18
|
1098 |
-
msgid "SMART"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1102 |
msgid "Load data..."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: views/b2s/curation.php:
|
1106 |
-
msgid "
|
|
|
|
|
|
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1110 |
msgid "Please enter a valid link"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: views/b2s/curation.php:
|
1114 |
msgid "Enter link"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: views/b2s/curation.php:
|
1118 |
msgid "continue"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: views/b2s/curation.php:
|
1122 |
-
#: includes/B2S/Ship/Item.php:
|
1123 |
-
#: includes/B2S/Ship/Item.php:
|
1124 |
-
#: includes/B2S/Ship/Item.php:
|
1125 |
-
#: includes/B2S/Ship/Item.php:
|
1126 |
-
#: includes/B2S/Ship/Item.php:
|
1127 |
-
#: includes/B2S/Ship/Item.php:
|
1128 |
-
#: includes/B2S/Ship/Item.php:
|
1129 |
-
#: includes/B2S/Ship/Item.php:
|
1130 |
-
#: includes/B2S/Ship/Item.php:
|
1131 |
-
#: includes/B2S/Ship/Item.php:
|
1132 |
-
#: includes/B2S/Ship/Item.php:
|
1133 |
-
#: includes/B2S/Ship/Item.php:
|
1134 |
-
#: includes/B2S/Ship/Item.php:
|
1135 |
msgid "Change image"
|
1136 |
msgstr ""
|
1137 |
|
1138 |
-
#: views/b2s/curation.php:
|
|
|
1139 |
msgid "Write something..."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
-
#: views/b2s/curation.php:
|
1143 |
#: includes/B2S/Post/Item.php:441
|
1144 |
msgid "Re-share this post"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
-
#: views/b2s/curation.php:
|
1148 |
msgid "Create a new post"
|
1149 |
msgstr ""
|
1150 |
|
1151 |
-
#: views/b2s/curation.php:
|
1152 |
#: views/b2s/ship.php:18 views/b2s/ship.php:663 includes/B2S/Post/Filter.php:59
|
1153 |
#: includes/B2S/Post/Item.php:368 includes/B2S/Ship/Save.php:438
|
1154 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1155 |
msgid "published"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: views/b2s/curation.php:
|
1159 |
#: views/b2s/ship.php:472
|
1160 |
msgid "Do you want to mark this post as published ?"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: views/b2s/curation.php:
|
1164 |
#: views/b2s/ship.php:477 views/b2s/ship.php:558
|
1165 |
msgid "YES"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: views/b2s/curation.php:
|
1169 |
#: views/b2s/ship.php:402
|
1170 |
msgid "Need to schedule your posts?"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: views/b2s/curation.php:
|
1174 |
#: views/b2s/ship.php:405
|
1175 |
msgid "Blog2Social Premium covers everything you need."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
-
#: views/b2s/curation.php:
|
1179 |
-
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:
|
1180 |
msgid "Schedule for specific dates"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: views/b2s/curation.php:
|
1184 |
#: views/b2s/ship.php:409
|
1185 |
msgid ""
|
1186 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
1187 |
"desired date and you are ready to go!"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: views/b2s/curation.php:
|
1191 |
#: views/b2s/ship.php:411
|
1192 |
msgid "Schedule post recurrently"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: views/b2s/curation.php:
|
1196 |
#: views/b2s/ship.php:412
|
1197 |
msgid ""
|
1198 |
"You have evergreen content you want to re-share from time to time in your "
|
@@ -1200,12 +1247,12 @@ msgid ""
|
|
1200 |
"or recurringly at specific times."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: views/b2s/curation.php:
|
1204 |
#: views/b2s/ship.php:414
|
1205 |
msgid "Best Time Scheduler"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: views/b2s/curation.php:
|
1209 |
#: views/b2s/ship.php:415
|
1210 |
msgid ""
|
1211 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
@@ -1214,27 +1261,97 @@ msgid ""
|
|
1214 |
"lifespan of your posts."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: views/b2s/curation.php:
|
1218 |
-
msgid "
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: views/b2s/curation.php:
|
1222 |
-
msgid "
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: views/b2s/curation.php:
|
1226 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1230 |
msgid "Select image"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: views/b2s/curation.php:
|
1234 |
msgid "Available networks for Social Media Posts"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: views/b2s/curation.php:
|
1238 |
#, php-format
|
1239 |
msgid ""
|
1240 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
@@ -1264,7 +1381,7 @@ msgstr ""
|
|
1264 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1265 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1266 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1267 |
-
#: views/b2s/html/post.navbar.php:
|
1268 |
msgid "filter"
|
1269 |
msgstr ""
|
1270 |
|
@@ -1276,16 +1393,7 @@ msgstr ""
|
|
1276 |
msgid "You want to define a new combination of networks?"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: views/b2s/network.php:
|
1280 |
-
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:165
|
1281 |
-
#: includes/B2S/Ship/Image.php:92 includes/B2S/Ship/Item.php:496
|
1282 |
-
#: includes/B2S/Ship/Item.php:557 includes/B2S/Ship/Item.php:744
|
1283 |
-
#: includes/B2S/Ship/Item.php:798 includes/B2S/Ship/Portale.php:32
|
1284 |
-
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:45
|
1285 |
-
msgid "PRO"
|
1286 |
-
msgstr ""
|
1287 |
-
|
1288 |
-
#: views/b2s/network.php:39 views/b2s/partials/post-edit-modal.php:97
|
1289 |
msgid "Delete"
|
1290 |
msgstr ""
|
1291 |
|
@@ -1331,7 +1439,7 @@ msgid ""
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1334 |
-
#: includes/B2S/Ship/Item.php:
|
1335 |
msgid "Learn more"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1390,7 +1498,7 @@ msgid "Could not be changed"
|
|
1390 |
msgstr ""
|
1391 |
|
1392 |
#: views/b2s/network.php:203
|
1393 |
-
msgid "
|
1394 |
msgstr ""
|
1395 |
|
1396 |
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:168
|
@@ -1398,7 +1506,19 @@ msgstr ""
|
|
1398 |
msgid "Edit Post Template"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1402 |
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:133
|
1403 |
msgid "save"
|
1404 |
msgstr ""
|
@@ -1466,7 +1586,7 @@ msgstr ""
|
|
1466 |
msgid "The name of the post author."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:
|
1470 |
msgid "Character limit"
|
1471 |
msgstr ""
|
1472 |
|
@@ -1540,7 +1660,7 @@ msgid "Pinterest has rejected the connection to your blog"
|
|
1540 |
msgstr ""
|
1541 |
|
1542 |
#: views/b2s/network.php:350 views/b2s/ship.php:585
|
1543 |
-
msgid "Please select your
|
1544 |
msgstr ""
|
1545 |
|
1546 |
#: views/b2s/network.php:351 views/b2s/ship.php:586
|
@@ -1638,7 +1758,7 @@ msgid "The connection has already been assigned to this user."
|
|
1638 |
msgstr ""
|
1639 |
|
1640 |
#: views/b2s/network.php:487
|
1641 |
-
msgid "The connection
|
1642 |
msgstr ""
|
1643 |
|
1644 |
#: views/b2s/network.php:490
|
@@ -1732,7 +1852,7 @@ msgstr ""
|
|
1732 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:
|
1736 |
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:95
|
1737 |
#: views/b2s/repost.php:87 views/b2s/widgets/posts.php:63
|
1738 |
msgid "Number of entries"
|
@@ -1851,22 +1971,18 @@ msgstr ""
|
|
1851 |
msgid "You have not saved any favorites."
|
1852 |
msgstr ""
|
1853 |
|
1854 |
-
#: views/b2s/post.notice.php:
|
1855 |
#: views/b2s/widgets/posts.php:58
|
1856 |
msgid "Delete entries from the reporting"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: views/b2s/post.notice.php:
|
1860 |
#: views/b2s/widgets/posts.php:61
|
1861 |
msgid "You are sure, you want to delete entries from the reporting?"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: views/b2s/post.sched.php:33 includes/B2S/Network/Item.php:137
|
1865 |
-
msgid "Uhr"
|
1866 |
-
msgstr ""
|
1867 |
-
|
1868 |
#: views/b2s/post.sched.php:90 views/b2s/repost.php:82
|
1869 |
-
msgid "Delete entries
|
1870 |
msgstr ""
|
1871 |
|
1872 |
#: views/b2s/post.sched.php:93 views/b2s/repost.php:85
|
@@ -1960,7 +2076,7 @@ msgid ""
|
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
1963 |
-
#: includes/B2S/Post/Item.php:
|
1964 |
msgid "Auto-Posting"
|
1965 |
msgstr ""
|
1966 |
|
@@ -2038,7 +2154,7 @@ msgstr ""
|
|
2038 |
msgid "Show me plans and prices"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: views/b2s/premium.php:
|
2042 |
msgid "Show all premium features"
|
2043 |
msgstr ""
|
2044 |
|
@@ -2050,34 +2166,134 @@ msgstr ""
|
|
2050 |
msgid "Social Meta Data"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
-
#: views/b2s/settings.php:
|
2054 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2055 |
msgstr ""
|
2056 |
|
2057 |
#: views/b2s/settings.php:87
|
|
|
2058 |
msgid ""
|
2059 |
-
"
|
2060 |
-
"
|
2061 |
-
"
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2066 |
msgstr ""
|
2067 |
|
2068 |
#: views/b2s/settings.php:98
|
2069 |
-
msgid "
|
2070 |
msgstr ""
|
2071 |
|
2072 |
#: views/b2s/settings.php:101
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2073 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: views/b2s/settings.php:
|
2077 |
msgid "Instant Caching for Facebook Link Posts"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: views/b2s/settings.php:
|
2081 |
msgid ""
|
2082 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2083 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -2118,7 +2334,7 @@ msgstr ""
|
|
2118 |
msgid "Load My Times Settings"
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: views/b2s/ship.php:105
|
2122 |
msgid "Social Accounts"
|
2123 |
msgstr ""
|
2124 |
|
@@ -2420,65 +2636,97 @@ msgid ""
|
|
2420 |
"team for any payment issues."
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: views/b2s/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2424 |
msgid ""
|
2425 |
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
2426 |
"administrator."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: views/b2s/support.php:
|
2430 |
msgid "Needed"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: views/b2s/support.php:
|
2434 |
msgid "Current"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: views/b2s/support.php:
|
2438 |
msgid "reload"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: views/b2s/support.php:
|
2442 |
msgid "Export as txt-file"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: views/b2s/support.php:
|
2446 |
msgid "Enter a URL to see how your link preview will look on social media."
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: views/b2s/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2450 |
msgid "Facebook Open Graph Meta Tags"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: views/b2s/support.php:
|
2454 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: views/b2s/support.php:
|
|
|
2458 |
msgid "For example your Wordpress Home Page"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: views/b2s/support.php:
|
2462 |
msgid "Debug & Preview"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: views/b2s/support.php:
|
2466 |
msgid "LinkedIn Post Inspector"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: views/b2s/support.php:
|
2470 |
msgid "Inspect Post"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: views/b2s/support.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2474 |
msgid "Twitter Card Validator"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: views/b2s/support.php:
|
2478 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: views/b2s/support.php:
|
2482 |
msgid "Validate directly on Twitter"
|
2483 |
msgstr ""
|
2484 |
|
@@ -2622,16 +2870,11 @@ msgid ""
|
|
2622 |
msgstr ""
|
2623 |
|
2624 |
#: includes/B2S/AutoPost/Item.php:79
|
2625 |
-
msgid "
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: includes/B2S/AutoPost/Item.php:
|
2629 |
-
msgid "
|
2630 |
-
msgstr ""
|
2631 |
-
|
2632 |
-
#: includes/B2S/AutoPost/Item.php:107 views/b2s/html/footer.php:433
|
2633 |
-
msgid ""
|
2634 |
-
"Share posts from other authors automatically with your Auto-Poster settings"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
#: includes/B2S/AutoPost/Item.php:138
|
@@ -2734,9 +2977,9 @@ msgid "at scheduled times"
|
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2737 |
-
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:
|
2738 |
-
#: views/b2s/partials/post-edit-modal.php:
|
2739 |
-
#: views/b2s/partials/post-edit-modal.php:
|
2740 |
msgid "Date"
|
2741 |
msgstr ""
|
2742 |
|
@@ -2765,7 +3008,7 @@ msgid "Best times"
|
|
2765 |
msgstr ""
|
2766 |
|
2767 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
2768 |
-
#: includes/B2S/Ship/Item.php:
|
2769 |
#: includes/B2S/Ship/Portale.php:38
|
2770 |
msgid "Blog"
|
2771 |
msgstr ""
|
@@ -2808,7 +3051,7 @@ msgstr ""
|
|
2808 |
|
2809 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
2810 |
#: includes/B2S/Network/Item.php:355
|
2811 |
-
msgid "
|
2812 |
msgstr ""
|
2813 |
|
2814 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
@@ -2817,18 +3060,18 @@ msgid "Assigned by"
|
|
2817 |
msgstr ""
|
2818 |
|
2819 |
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:330
|
2820 |
-
#: includes/B2S/Network/Item.php:392 includes/B2S/Ship/Item.php:
|
2821 |
msgid "Days"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: includes/B2S/Network/Item.php:291 includes/B2S/Network/Item.php:
|
2825 |
#, php-format
|
2826 |
msgid ""
|
2827 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
2828 |
"Old Design until 2020/11/30</a>)"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: includes/B2S/Network/Item.php:292 includes/B2S/Network/Item.php:
|
2832 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
2833 |
msgstr ""
|
2834 |
|
@@ -2899,7 +3142,7 @@ msgid "Load default settings"
|
|
2899 |
msgstr ""
|
2900 |
|
2901 |
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:701
|
2902 |
-
#: includes/B2S/Ship/Item.php:
|
2903 |
msgid "Link"
|
2904 |
msgstr ""
|
2905 |
|
@@ -2911,7 +3154,7 @@ msgstr ""
|
|
2911 |
msgid "Content"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: includes/B2S/Network/Item.php:720 includes/B2S/Ship/Item.php:
|
2915 |
msgid ""
|
2916 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2917 |
"in your post."
|
@@ -2921,47 +3164,62 @@ msgstr ""
|
|
2921 |
msgid "clear"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: includes/B2S/Network/Item.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2925 |
msgid "The link will be added automatically at the end of the post."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
-
#: includes/B2S/Network/Item.php:
|
2929 |
-
|
|
|
|
|
|
|
|
|
2930 |
msgid "Network limit"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: includes/B2S/Network/Item.php:
|
2934 |
-
#: includes/B2S/Network/Item.php:
|
2935 |
-
#: includes/B2S/Network/Item.php:
|
2936 |
-
#: includes/B2S/Ship/Item.php:
|
2937 |
-
#: includes/B2S/Ship/Item.php:
|
2938 |
-
#: includes/B2S/Ship/Item.php:
|
2939 |
-
#: includes/B2S/Ship/Item.php:
|
2940 |
msgid "characters"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: includes/B2S/Network/Item.php:
|
2944 |
msgid "Add a link-URL to the end of my image post."
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: includes/B2S/Network/Item.php:
|
2948 |
msgid ""
|
2949 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
2950 |
"Instagram does not turn link-URLs into clickable links)"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/B2S/Network/Item.php:
|
|
|
|
|
|
|
|
|
2954 |
msgid "recommended length"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: includes/B2S/Network/Item.php:
|
2958 |
-
#: includes/B2S/Network/Item.php:
|
2959 |
-
#: includes/B2S/Network/Item.php:
|
2960 |
-
#: includes/B2S/Network/Item.php:
|
2961 |
-
#: includes/B2S/Network/Item.php:
|
2962 |
-
#: includes/B2S/Network/Item.php:
|
2963 |
-
#: includes/B2S/Network/Item.php:
|
2964 |
-
#: includes/B2S/Network/Item.php:
|
2965 |
msgid "Preview"
|
2966 |
msgstr ""
|
2967 |
|
@@ -3126,17 +3384,17 @@ msgstr ""
|
|
3126 |
msgid "last saved"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3130 |
#: includes/B2S/Ship/Save.php:448
|
3131 |
msgid "Retweet"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3135 |
msgid "Re-Share"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:
|
3139 |
-
#: includes/B2S/Post/Item.php:
|
3140 |
msgid "select all"
|
3141 |
msgstr ""
|
3142 |
|
@@ -3162,50 +3420,50 @@ msgstr ""
|
|
3162 |
msgid "shared by %s"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
-
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:
|
3166 |
msgid "You want to delete a publish post entry?"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:
|
3170 |
msgid "delete from reporting"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: includes/B2S/Post/Item.php:
|
3174 |
#, php-format
|
3175 |
msgid "is waiting to shared by %s"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: includes/B2S/Post/Item.php:
|
3179 |
msgid "share"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: includes/B2S/Post/Item.php:
|
3183 |
msgid "You want to delete your Social Media post?"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: includes/B2S/Post/Item.php:
|
3187 |
#, php-format
|
3188 |
msgid "last modified by %s"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: includes/B2S/Post/Item.php:
|
3192 |
msgid "is currently being processed by the network"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: includes/B2S/Post/Item.php:
|
3196 |
#, php-format
|
3197 |
msgid "scheduled by %s"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: includes/B2S/Post/Item.php:
|
3201 |
msgid "You want to edit your scheduled post?"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: includes/B2S/Post/Item.php:
|
3205 |
msgid "edit"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: includes/B2S/Post/Item.php:
|
3209 |
msgid "delete scheduling"
|
3210 |
msgstr ""
|
3211 |
|
@@ -3260,31 +3518,31 @@ msgstr ""
|
|
3260 |
msgid "on"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:
|
3264 |
msgid "Mon"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
-
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:
|
3268 |
msgid "Tue"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
-
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:
|
3272 |
msgid "Wed"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
3276 |
msgid "Thu"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
3280 |
msgid "Fri"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:
|
3284 |
msgid "Sat"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:
|
3288 |
msgid "Sun"
|
3289 |
msgstr ""
|
3290 |
|
@@ -3357,7 +3615,7 @@ msgid "Authors"
|
|
3357 |
msgstr ""
|
3358 |
|
3359 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3360 |
-
#: includes/B2S/Ship/Item.php:
|
3361 |
msgid "Account"
|
3362 |
msgstr ""
|
3363 |
|
@@ -3373,6 +3631,17 @@ msgstr ""
|
|
3373 |
msgid "Url Shortener"
|
3374 |
msgstr ""
|
3375 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3376 |
#: includes/B2S/Settings/Item.php:67
|
3377 |
msgid "no URL Shortener"
|
3378 |
msgstr ""
|
@@ -3634,239 +3903,239 @@ msgstr ""
|
|
3634 |
msgid "Apply image for this image gallery"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
-
#: includes/B2S/Ship/Item.php:
|
3638 |
msgid "Network does not support image for profiles"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: includes/B2S/Ship/Item.php:
|
3642 |
msgid "Network defines image by link"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
-
#: includes/B2S/Ship/Item.php:
|
3646 |
msgid "Supported HTML tags"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
-
#: includes/B2S/Ship/Item.php:
|
3650 |
msgid "Network does not support emojis"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
-
#: includes/B2S/Ship/Item.php:
|
3654 |
msgid "Network does not support GIFs"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
-
#: includes/B2S/Ship/Item.php:
|
3658 |
msgid "Text only"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#: includes/B2S/Ship/Item.php:
|
3662 |
msgid "Network does not support image for pages"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#: includes/B2S/Ship/Item.php:
|
3666 |
msgid "Connection expires on 31 March 2019"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#: includes/B2S/Ship/Item.php:
|
3670 |
msgid "Connection expires on 2 April 2019"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#: includes/B2S/Ship/Item.php:
|
3674 |
msgid "post format"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#: includes/B2S/Ship/Item.php:
|
3678 |
msgid "Insert full-text"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#: includes/B2S/Ship/Item.php:
|
3682 |
msgid "Delete text"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: includes/B2S/Ship/Item.php:
|
3686 |
-
#: includes/B2S/Ship/Item.php:
|
3687 |
msgid ""
|
3688 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3689 |
"allowed to post identical or substantially similar content to multiple "
|
3690 |
"accounts or multiple duplicate updates on one account."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: includes/B2S/Ship/Item.php:
|
3694 |
-
#: includes/B2S/Ship/Item.php:
|
3695 |
msgid ""
|
3696 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3697 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3698 |
"duplicate posts."
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: includes/B2S/Ship/Item.php:
|
3702 |
-
#: includes/B2S/Ship/Item.php:
|
3703 |
msgid "Learn more about this"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#: includes/B2S/Ship/Item.php:
|
3707 |
msgid ""
|
3708 |
"Please note: XING allows identical posts to be published only once within a "
|
3709 |
"group and no more than three times across different groups."
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: includes/B2S/Ship/Item.php:
|
3713 |
msgid "Read more"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: includes/B2S/Ship/Item.php:
|
3717 |
msgid ""
|
3718 |
"Please keep in mind that users are not allowed to post identical or "
|
3719 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3720 |
"updates on one account."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: includes/B2S/Ship/Item.php:
|
3724 |
msgid ""
|
3725 |
"Violating these rules can result in suspending your account. Always vary "
|
3726 |
"your content with different images, comments, hashtags or handles to prevent "
|
3727 |
"duplicate posts."
|
3728 |
msgstr ""
|
3729 |
|
3730 |
-
#: includes/B2S/Ship/Item.php:
|
3731 |
msgid "hide calendar"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
-
#: includes/B2S/Ship/Item.php:
|
3735 |
-
#: includes/B2S/Ship/Item.php:
|
3736 |
-
#: includes/B2S/Ship/Item.php:
|
3737 |
-
#: includes/B2S/Ship/Item.php:
|
3738 |
-
#: includes/B2S/Ship/Item.php:
|
3739 |
-
#: includes/B2S/Ship/Item.php:
|
3740 |
-
#: includes/B2S/Ship/Item.php:
|
3741 |
-
#: includes/B2S/Ship/Item.php:
|
3742 |
msgid "Write something about your post..."
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: includes/B2S/Ship/Item.php:
|
3746 |
-
#: includes/B2S/Ship/Item.php:
|
3747 |
-
#: includes/B2S/Ship/Item.php:
|
3748 |
msgid ""
|
3749 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3750 |
"network"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: includes/B2S/Ship/Item.php:
|
3754 |
-
#: includes/B2S/Ship/Item.php:
|
3755 |
-
#: includes/B2S/Ship/Item.php:
|
3756 |
msgid ""
|
3757 |
"You want to change your link image, link title and link description for this "
|
3758 |
"network? Click here."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: includes/B2S/Ship/Item.php:
|
3762 |
-
#: includes/B2S/Ship/Item.php:
|
3763 |
-
#: includes/B2S/Ship/Item.php:
|
3764 |
msgid "OG Meta title"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
-
#: includes/B2S/Ship/Item.php:
|
3768 |
-
#: includes/B2S/Ship/Item.php:
|
3769 |
-
#: includes/B2S/Ship/Item.php:
|
3770 |
msgid "OG Meta description"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: includes/B2S/Ship/Item.php:
|
3774 |
-
#: includes/B2S/Ship/Item.php:
|
3775 |
msgid "Do u want to post multiple images?"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
-
#: includes/B2S/Ship/Item.php:
|
3779 |
msgid ""
|
3780 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3781 |
"Changes may not be immediately visible on Twitter."
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: includes/B2S/Ship/Item.php:
|
3785 |
msgid ""
|
3786 |
"Info: Change Card Meta tags image, title and description for this network"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: includes/B2S/Ship/Item.php:
|
3790 |
msgid "Card Meta title"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#: includes/B2S/Ship/Item.php:
|
3794 |
msgid "Card Meta description"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: includes/B2S/Ship/Item.php:
|
3798 |
msgid ""
|
3799 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3800 |
"days. Changes may not be immediately visible on XING."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: includes/B2S/Ship/Item.php:
|
3804 |
msgid "required"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: includes/B2S/Ship/Item.php:
|
3808 |
msgid "Jobs & Projects"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: includes/B2S/Ship/Item.php:
|
3812 |
msgid "Events"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: includes/B2S/Ship/Item.php:
|
3816 |
msgid "Classified Ads"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: includes/B2S/Ship/Item.php:
|
3820 |
msgid "Offer"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: includes/B2S/Ship/Item.php:
|
3824 |
msgid "Request"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: includes/B2S/Ship/Item.php:
|
3828 |
msgid "The Headline..."
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: includes/B2S/Ship/Item.php:
|
3832 |
#, php-format
|
3833 |
msgid "max. %s Tags"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#: includes/B2S/Ship/Item.php:
|
3837 |
msgid "Hashtags"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#: includes/B2S/Ship/Item.php:
|
3841 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#: includes/B2S/Ship/Item.php:
|
3845 |
msgid "Delay"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: includes/B2S/Ship/Item.php:
|
3849 |
-
#: includes/B2S/Ship/Item.php:
|
3850 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3851 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3852 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3853 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3854 |
msgid "min"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: includes/B2S/Ship/Item.php:
|
3858 |
msgid "Add Retweet"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#: includes/B2S/Ship/Item.php:
|
3862 |
msgid "Share Now"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#: includes/B2S/Ship/Item.php:
|
3866 |
msgid "Schedule Recurrent Post"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#: includes/B2S/Ship/Item.php:
|
3870 |
msgid ""
|
3871 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3872 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3876,7 +4145,7 @@ msgid ""
|
|
3876 |
"the new XING."
|
3877 |
msgstr ""
|
3878 |
|
3879 |
-
#: includes/B2S/Ship/Item.php:
|
3880 |
msgid ""
|
3881 |
"Please note: Google will shut down Google+ for all private accounts "
|
3882 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3884,88 +4153,88 @@ msgid ""
|
|
3884 |
"other content here:"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
-
#: includes/B2S/Ship/Item.php:
|
3888 |
msgid "Repeats"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#: includes/B2S/Ship/Item.php:
|
3892 |
msgid "Duration"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#: includes/B2S/Ship/Item.php:
|
3896 |
msgid "Number of repeats"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: includes/B2S/Ship/Item.php:
|
3900 |
msgid "Day of month"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: includes/B2S/Ship/Item.php:
|
3904 |
msgid "Repeats every (days)"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: includes/B2S/Ship/Item.php:
|
3908 |
msgid "Start date"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: includes/B2S/Ship/Item.php:
|
3912 |
msgid "Time to publish"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: includes/B2S/Ship/Item.php:
|
3916 |
msgid "weekly"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: includes/B2S/Ship/Item.php:
|
3920 |
msgid "monthly"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: includes/B2S/Ship/Item.php:
|
3924 |
msgid "own period"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: includes/B2S/Ship/Item.php:
|
3928 |
msgid "Week"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: includes/B2S/Ship/Item.php:
|
3932 |
msgid "Weeks"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: includes/B2S/Ship/Item.php:
|
3936 |
msgid "Month"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: includes/B2S/Ship/Item.php:
|
3940 |
msgid "Months"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: includes/B2S/Ship/Item.php:
|
3944 |
msgid "End Of Month"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: includes/B2S/Ship/Item.php:
|
3948 |
msgid "Timespan"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: includes/B2S/Ship/Item.php:
|
3952 |
-
#: views/b2s/partials/post-edit-modal.php:
|
3953 |
msgid "Time"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: includes/B2S/Ship/Item.php:
|
3957 |
msgid "add another post"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: includes/B2S/Ship/Item.php:
|
3961 |
msgid "Copy from original"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: includes/B2S/Ship/Item.php:
|
3965 |
msgid "Apply Settings To All Networks"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#: includes/B2S/Ship/Item.php:
|
3969 |
msgid "Save as best time for this network"
|
3970 |
msgstr ""
|
3971 |
|
@@ -4133,19 +4402,14 @@ msgid ""
|
|
4133 |
"media posts"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: views/b2s/html/footer.php:73 views/b2s/html/footer.php:91
|
4137 |
-
#: views/b2s/html/footer.php:109
|
4138 |
-
msgid "Upgrade to PRO and above"
|
4139 |
-
msgstr ""
|
4140 |
-
|
4141 |
#: views/b2s/html/footer.php:78 views/b2s/html/footer.php:96
|
4142 |
msgid "Activate Blog2Social PREMIUM PRO."
|
4143 |
msgstr ""
|
4144 |
|
4145 |
#: views/b2s/html/footer.php:80
|
4146 |
msgid ""
|
4147 |
-
"With Blog2Social Premium PRO you can connect
|
4148 |
-
"well as XING groups."
|
4149 |
msgstr ""
|
4150 |
|
4151 |
#: views/b2s/html/footer.php:83 views/b2s/html/footer.php:101
|
@@ -4331,25 +4595,28 @@ msgid ""
|
|
4331 |
"imported posts</a>"
|
4332 |
msgstr ""
|
4333 |
|
|
|
|
|
|
|
|
|
4334 |
#: views/b2s/html/footer.php:436
|
4335 |
msgid ""
|
4336 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
4337 |
-
"administrator to other
|
4338 |
-
"
|
4339 |
-
"
|
4340 |
-
"
|
4341 |
-
"
|
4342 |
-
"
|
4343 |
-
"
|
4344 |
-
"
|
4345 |
-
"WordPress-administrator selected the content to be shared automatically. "
|
4346 |
msgstr ""
|
4347 |
|
4348 |
#: views/b2s/html/footer.php:438
|
4349 |
#, php-format
|
4350 |
msgid ""
|
4351 |
-
"You
|
4352 |
-
"target=\"_blank\" href=\"%s\">
|
4353 |
msgstr ""
|
4354 |
|
4355 |
#: views/b2s/html/footer.php:451
|
@@ -4695,7 +4962,7 @@ msgstr ""
|
|
4695 |
#: views/b2s/html/header.php:232
|
4696 |
msgid ""
|
4697 |
"Your limit for your quota of posts in your queue has been reached. Please "
|
4698 |
-
"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
#: views/b2s/html/header.php:232
|
@@ -4878,7 +5145,7 @@ msgstr ""
|
|
4878 |
msgid "I agree to the Adenion Privacy Policy"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: views/b2s/html/post.navbar.php:
|
4882 |
msgid "All Blog Posts"
|
4883 |
msgstr ""
|
4884 |
|
@@ -4918,12 +5185,6 @@ msgstr ""
|
|
4918 |
msgid "Plans & Prices"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
-
#: views/b2s/html/sidebar.php:166
|
4922 |
-
msgid ""
|
4923 |
-
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4924 |
-
"anything that does not work for you, please contact us!"
|
4925 |
-
msgstr ""
|
4926 |
-
|
4927 |
#: views/b2s/html/sidebar.php:180
|
4928 |
msgid "Blog2Social Blog News"
|
4929 |
msgstr ""
|
@@ -4954,11 +5215,11 @@ msgstr ""
|
|
4954 |
msgid "This post is blocked by %1"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4958 |
msgid "The orginal tweet is scheduled on:"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
-
#: views/b2s/partials/post-edit-modal.php:
|
4962 |
msgid "Change details"
|
4963 |
msgstr ""
|
4964 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2021-01-04 13:20+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
84 |
msgid "Upgrade to Premium"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/Loader.php:821 includes/Loader.php:956 includes/Loader.php:956
|
88 |
+
#: includes/Loader.php:1030 includes/B2S/RePost/Item.php:25
|
89 |
#: views/b2s/html/sidebar.php:137
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:21
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:19
|
102 |
#: views/b2s/html/sidebar.php:125
|
103 |
msgid "Shared Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:16
|
107 |
#: views/b2s/html/sidebar.php:119
|
108 |
msgid "Instant Sharing"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:12
|
112 |
+
#: views/b2s/html/post.navbar.php:14 views/b2s/html/sidebar.php:94
|
113 |
#: views/b2s/html/sidebar.php:116
|
114 |
msgid "Drafts"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:17
|
118 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
119 |
msgid "Scheduled Posts"
|
120 |
msgstr ""
|
123 |
msgid "Social Media Post Drafts"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:11
|
127 |
#: views/b2s/html/sidebar.php:113
|
128 |
msgid "Favorites"
|
129 |
msgstr ""
|
133 |
msgid "Auto-Post"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/Loader.php:871 views/b2s/settings.php:41
|
137 |
+
#: views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:72
|
138 |
msgid "Re-Share Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/Loader.php:871 views/b2s/curation.php:49 views/b2s/support.php:19
|
142 |
#: views/b2s/support.php:22
|
143 |
msgid "NEW"
|
144 |
msgstr ""
|
177 |
#: includes/Loader.php:874
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
+
"The network could not publish your post. Please see the following <a "
|
181 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
182 |
msgstr ""
|
183 |
|
184 |
#: includes/Loader.php:875
|
188 |
msgstr ""
|
189 |
|
190 |
#: includes/Loader.php:876
|
191 |
+
#, php-format
|
192 |
+
msgid ""
|
193 |
+
"The content of your post could not be approved by the network. Please see "
|
194 |
+
"the following <a target=\"_blank\" href=\"%s\">guide</a>."
|
195 |
msgstr ""
|
196 |
|
197 |
#: includes/Loader.php:877
|
203 |
#: includes/Loader.php:878
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
+
"The connection to your social media account is interrupted. Please check "
|
207 |
+
"your authorization and reconnect your account. The <a target=\"_blank\" "
|
208 |
+
"href=\"%s\">troubleshooting guide</a> shows you how to fix the connection to "
|
209 |
+
"your social media account."
|
210 |
msgstr ""
|
211 |
|
212 |
#: includes/Loader.php:879
|
222 |
#: includes/Loader.php:881
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
+
"The network has blocked your account. Please see the following <a "
|
226 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
227 |
msgstr ""
|
228 |
|
229 |
#: includes/Loader.php:882
|
230 |
#, php-format
|
231 |
msgid ""
|
232 |
+
"The number of images is reached. Please see the following <a "
|
233 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
234 |
msgstr ""
|
235 |
|
236 |
#: includes/Loader.php:883
|
241 |
#: includes/Loader.php:884
|
242 |
#, php-format
|
243 |
msgid ""
|
244 |
+
"The network can not publish special characters such as Emoji. Please see the "
|
245 |
+
"following <a target=\"_blank\" href=\"%s\">guide</a>."
|
246 |
msgstr ""
|
247 |
|
248 |
#: includes/Loader.php:885
|
285 |
#: includes/Loader.php:893
|
286 |
#, php-format
|
287 |
msgid ""
|
288 |
+
"Instagram published your post without text. Please see the following <a "
|
289 |
+
"target=\"_blank\" href=\"%s\">guide</a>."
|
290 |
msgstr ""
|
291 |
|
292 |
#: includes/Loader.php:894
|
293 |
msgid "Your group can not be found by the network."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/Loader.php:951 includes/Loader.php:996
|
297 |
msgid "Dashboard"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/Loader.php:952
|
301 |
msgid "Share Website & Blog Content"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/Loader.php:952 includes/Loader.php:1003
|
305 |
msgid "Site & Blog Content"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/Loader.php:953
|
309 |
msgid "Create Social Media Posts"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/Loader.php:953 includes/Loader.php:1010
|
313 |
msgid "Social Media Posts"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/Loader.php:954 includes/Loader.php:1017 views/b2s/dashboard.php:30
|
317 |
+
#: views/b2s/html/post.navbar.php:22 views/b2s/html/sidebar.php:128
|
318 |
msgid "Calendar"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/Loader.php:955 includes/Loader.php:1024
|
322 |
msgid "Networks"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/Loader.php:958 includes/Loader.php:1038
|
326 |
msgid "PR-Service"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/Loader.php:960 includes/Loader.php:1046
|
330 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
331 |
#: views/b2s/html/sidebar.ship.php:66
|
332 |
msgid "Help & Support"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/Loader.php:962
|
336 |
msgid "Premium"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/Loader.php:962 includes/Loader.php:1054
|
340 |
msgid "PREMIUM"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/Loader.php:987 views/b2s/html/sidebar.php:25
|
344 |
#: views/b2s/html/sidebar.ship.php:24
|
345 |
msgid "Blog2Social"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/Loader.php:1553
|
349 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/Loader.php:1553 includes/System.php:32 includes/System.php:38
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
356 |
"our FAQ</a>"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: includes/Loader.php:1553 includes/Loader.php:1574 includes/Loader.php:1824
|
360 |
msgid "or"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/Loader.php:1553 includes/Loader.php:1574 includes/Loader.php:1824
|
364 |
msgid "back to install plugins"
|
365 |
msgstr ""
|
366 |
|
368 |
msgid "Rate it!"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: includes/Notice.php:18 views/b2s/html/sidebar.php:166
|
372 |
msgid ""
|
373 |
+
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
374 |
+
"anything that does not work for you, please contact us!"
|
375 |
msgstr ""
|
376 |
|
377 |
#: includes/Notice.php:19 views/b2s/html/sidebar.php:167
|
400 |
"higher, or ask your server administrator to do it for you."
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/Tools.php:337 views/b2s/html/sidebar.php:30
|
404 |
#: views/b2s/html/sidebar.ship.php:29
|
405 |
msgid "License"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/Tools.php:352
|
409 |
msgid "Greece"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/Tools.php:353
|
413 |
msgid "India"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/Tools.php:354
|
417 |
msgid "United States of America"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/Tools.php:355
|
421 |
msgid "Ireland"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/Tools.php:356
|
425 |
msgid "Italy"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/Tools.php:357
|
429 |
msgid "Switzerland"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/Tools.php:358
|
433 |
msgid "Czechoslovakia"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/Tools.php:359
|
437 |
msgid "Indonesia"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/Tools.php:360
|
441 |
msgid "Spain"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/Tools.php:361
|
445 |
msgid "Canada"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/Tools.php:362
|
449 |
msgid "Great Britain"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/Tools.php:363
|
453 |
msgid "Russia"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/Tools.php:364
|
457 |
msgid "Netherlands"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/Tools.php:365 includes/Tools.php:379
|
461 |
msgid "Portugal"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/Tools.php:366
|
465 |
msgid "Norway"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/Tools.php:367
|
469 |
msgid "Turkey"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/Tools.php:368
|
473 |
msgid "Australia"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/Tools.php:369
|
477 |
msgid "Austria"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/Tools.php:370
|
481 |
msgid "Poland"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/Tools.php:371
|
485 |
msgid "France"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/Tools.php:372
|
489 |
msgid "Romania"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/Tools.php:373
|
493 |
msgid "Germany"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/Tools.php:374
|
497 |
msgid "Denmark"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/Tools.php:375
|
501 |
msgid "New Zealand"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/Tools.php:376
|
505 |
msgid "Finland"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/Tools.php:377
|
509 |
msgid "Hungary"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/Tools.php:378
|
513 |
msgid "Japan"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/Tools.php:380
|
517 |
msgid "Argentina"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/Tools.php:381
|
521 |
msgid "Korea"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: includes/Tools.php:382
|
525 |
msgid "Sweden"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: includes/Tools.php:383
|
529 |
msgid "Mexico"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/Tools.php:384
|
533 |
msgid "Slovakia"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/Tools.php:385
|
537 |
msgid "Chile"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/Tools.php:386
|
541 |
msgid "Colombia"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: includes/Tools.php:387
|
545 |
msgid "South Africa"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/Tools.php:388
|
549 |
msgid "Philippines"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/Tools.php:391
|
553 |
msgid "is determined automatically"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: includes/Tools.php:398
|
557 |
msgid "Search"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/Tools.php:399
|
561 |
msgid "Recently Used"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/Tools.php:400
|
565 |
msgid "Smileys & People"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/Tools.php:401
|
569 |
msgid "Animals & Nature"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/Tools.php:402
|
573 |
msgid "Food & Drink"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/Tools.php:403
|
577 |
msgid "Activities"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/Tools.php:404
|
581 |
msgid "Travel & Places"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/Tools.php:405
|
585 |
msgid "Objects"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/Tools.php:406
|
589 |
msgid "Symbols"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/Tools.php:407
|
593 |
msgid "Flags"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/Tools.php:408
|
597 |
msgid "No emojis found"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/Util.php:43 views/b2s/post.sched.php:33
|
601 |
+
#: includes/B2S/Network/Item.php:137
|
602 |
+
msgid "Clock"
|
603 |
+
msgstr ""
|
604 |
+
|
605 |
#: views/notice.php:12
|
606 |
msgid "Connection is broken..."
|
607 |
msgstr ""
|
640 |
msgid "Please contact our support!"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: includes/Ajax/Post.php:1882 views/b2s/network.php:7
|
644 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
645 |
#: includes/B2S/Network/Item.php:359 includes/B2S/Network/Item.php:485
|
646 |
msgid "Unknown username"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: includes/Ajax/Post.php:1883 includes/B2S/Network/Item.php:486
|
650 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
651 |
+
#: includes/B2S/Post/Item.php:833 includes/B2S/Post/Item.php:891
|
652 |
+
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
|
653 |
+
#: includes/B2S/Ship/Item.php:1281
|
654 |
msgid "delete"
|
655 |
msgstr ""
|
656 |
|
697 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
698 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
699 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
700 |
+
#: includes/B2S/Ship/Item.php:1095
|
701 |
msgid "Info"
|
702 |
msgstr ""
|
703 |
|
737 |
msgid "enable Auto-Posting"
|
738 |
msgstr ""
|
739 |
|
740 |
+
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:393
|
741 |
msgid "show calendar"
|
742 |
msgstr ""
|
743 |
|
779 |
msgid "You want to auto-post your blog post?"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:191
|
783 |
+
#: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
|
784 |
+
#: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
|
785 |
+
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
786 |
+
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:366
|
787 |
+
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
788 |
+
#: views/b2s/html/footer.php:556
|
789 |
msgid "With Blog2Social Premium you can:"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:194
|
793 |
+
#: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
|
794 |
+
#: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
|
795 |
+
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
796 |
+
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:369
|
797 |
+
#: views/b2s/html/footer.php:408 views/b2s/html/footer.php:466
|
798 |
+
#: views/b2s/html/footer.php:559 views/b2s/html/header.php:342
|
|
|
799 |
msgid "Post on pages and groups"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:195
|
803 |
+
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
|
804 |
+
#: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
|
805 |
+
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
806 |
+
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:370
|
807 |
+
#: views/b2s/html/footer.php:409 views/b2s/html/footer.php:467
|
808 |
+
#: views/b2s/html/footer.php:560
|
809 |
msgid "Share on multiple profiles, pages and groups"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:196
|
813 |
+
#: views/b2s/post.calendar.php:287 views/b2s/ship.php:314
|
814 |
+
#: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
|
815 |
+
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
816 |
+
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
817 |
+
#: views/b2s/html/footer.php:371 views/b2s/html/footer.php:410
|
818 |
+
#: views/b2s/html/footer.php:468 views/b2s/html/footer.php:561
|
|
|
819 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:197
|
823 |
+
#: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
|
824 |
+
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
|
825 |
+
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
826 |
+
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:372
|
827 |
+
#: views/b2s/html/footer.php:411 views/b2s/html/footer.php:469
|
828 |
+
#: views/b2s/html/footer.php:562
|
829 |
msgid "Schedule your posts at the best times on each network"
|
830 |
msgstr ""
|
831 |
|
832 |
+
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:198
|
833 |
+
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
|
834 |
+
#: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
|
835 |
+
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
836 |
+
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:373
|
837 |
+
#: views/b2s/html/footer.php:412 views/b2s/html/footer.php:470
|
838 |
+
#: views/b2s/html/footer.php:563
|
839 |
msgid ""
|
840 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
841 |
"social media posts"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:199
|
845 |
+
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
|
846 |
+
#: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
|
847 |
+
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
848 |
+
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:374
|
849 |
+
#: views/b2s/html/footer.php:413 views/b2s/html/footer.php:471
|
850 |
+
#: views/b2s/html/footer.php:564
|
851 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:200
|
855 |
+
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
|
856 |
+
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
|
857 |
+
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
858 |
+
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:375
|
859 |
+
#: views/b2s/html/footer.php:414 views/b2s/html/footer.php:472
|
860 |
+
#: views/b2s/html/footer.php:565
|
861 |
msgid "Schedule and re-share old posts"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:201
|
865 |
+
#: views/b2s/post.calendar.php:292 views/b2s/ship.php:319
|
866 |
+
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
|
867 |
+
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
868 |
+
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
869 |
+
#: views/b2s/html/footer.php:376 views/b2s/html/footer.php:415
|
870 |
+
#: views/b2s/html/footer.php:473 views/b2s/html/footer.php:566
|
|
|
871 |
msgid "Select link format or image format for your posts"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:202
|
875 |
+
#: views/b2s/post.calendar.php:293 views/b2s/ship.php:320
|
876 |
+
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
|
877 |
+
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
878 |
+
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
879 |
+
#: views/b2s/html/footer.php:377 views/b2s/html/footer.php:416
|
880 |
+
#: views/b2s/html/footer.php:474 views/b2s/html/footer.php:567
|
|
|
881 |
msgid "Select individual images per post"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:203
|
885 |
+
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
|
886 |
+
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
|
887 |
+
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
888 |
+
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:378
|
889 |
+
#: views/b2s/html/footer.php:417 views/b2s/html/footer.php:475
|
890 |
+
#: views/b2s/html/footer.php:568
|
891 |
msgid ""
|
892 |
"Reporting & calendar: keep track of your published and scheduled social "
|
893 |
"media posts"
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:205
|
897 |
+
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
|
898 |
+
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
|
899 |
+
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
900 |
+
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:380
|
901 |
+
#: views/b2s/html/footer.php:419 views/b2s/html/footer.php:477
|
902 |
+
#: views/b2s/html/footer.php:570
|
903 |
msgid "Upgrade to SMART and above"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:207
|
907 |
+
#: views/b2s/curation.php:246 views/b2s/post.calendar.php:298
|
908 |
#: views/b2s/ship.php:325 views/b2s/ship.php:389 views/b2s/ship.php:435
|
909 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
910 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
942 |
"selection.</a>"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: includes/B2S/PostBox.php:281 views/b2s/curation.php:336
|
946 |
#: views/b2s/repost.php:204
|
947 |
msgid "Available networks"
|
948 |
msgstr ""
|
976 |
msgid "save..."
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:131
|
980 |
#: includes/B2S/Ship/Image.php:96
|
981 |
msgid "Select or upload an image from media gallery"
|
982 |
msgstr ""
|
983 |
|
984 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:132
|
985 |
#: includes/B2S/Ship/Image.php:97
|
986 |
msgid "Use image"
|
987 |
msgstr ""
|
988 |
|
989 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:184
|
990 |
#: includes/B2S/Settings/Item.php:53
|
991 |
msgid "Personal Time Zone"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: views/b2s/autopost.php:62 views/b2s/settings.php:187
|
995 |
msgid ""
|
996 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
997 |
"defined in the general settings of your WordPress. You can select a user-"
|
1011 |
msgid "More information"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: views/b2s/autopost.php:87 includes/B2S/AutoPost/Item.php:89
|
1015 |
+
msgid "Apply best times"
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: views/b2s/autopost.php:90
|
1019 |
+
#, php-format
|
1020 |
+
msgid ""
|
1021 |
+
"The time of publishing a post can play a decisive role in achieving more "
|
1022 |
+
"likes, shares and comments as well as a wide reach. Each social media "
|
1023 |
+
"network has it's \"best times\". Blog2Social provides you with predefined "
|
1024 |
+
"best times. When you activate the \"best times\" for your Auto-Poster, your "
|
1025 |
+
"WordPress posts and pages will be shared automatically at the \"best times\"."
|
1026 |
+
" Get more information about the \"best times\" in the guide \"<a href=\"%s\" "
|
1027 |
+
"target=\"_blank\">The Best Times to Post on Social Media</a>\"."
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: views/b2s/autopost.php:93
|
1031 |
+
#, php-format
|
1032 |
+
msgid ""
|
1033 |
+
"Please note: You can also set up your own \"best times\". You will learn how "
|
1034 |
+
"to set up your own \"best times\" in this <a href=\"%s\" target=\"_blank\">"
|
1035 |
+
"guide</a>."
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
#: views/b2s/curation.draft.php:17
|
1039 |
msgid ""
|
1040 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
1050 |
#: views/b2s/network.php:339 views/b2s/network.php:414
|
1051 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1052 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1053 |
+
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:49
|
1054 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1055 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1056 |
#: views/b2s/ship.php:574 views/b2s/ship.php:662 views/b2s/support.php:144
|
1057 |
+
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
1058 |
msgid "Loading..."
|
1059 |
msgstr ""
|
1060 |
|
1066 |
msgid "Are you sure you want to delete this draft?"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:161
|
1070 |
#: views/b2s/network.php:109 views/b2s/post.approve.php:98
|
1071 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
1072 |
+
#: views/b2s/post.notice.php:89 views/b2s/post.publish.php:85
|
1073 |
#: views/b2s/post.sched.php:99 views/b2s/repost.php:91 views/b2s/ship.php:478
|
1074 |
#: views/b2s/ship.php:557 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
1075 |
msgid "NO"
|
1077 |
|
1078 |
#: views/b2s/curation.draft.php:91 views/b2s/network.php:110
|
1079 |
#: views/b2s/network.php:173 views/b2s/post.approve.php:99
|
1080 |
+
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:90
|
1081 |
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:100
|
1082 |
#: views/b2s/repost.php:92 views/b2s/repost.php:93
|
1083 |
#: views/b2s/widgets/posts.php:68
|
1109 |
msgid "Link Post"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: views/b2s/curation.php:46
|
1113 |
+
msgid "Video Post"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1117 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1118 |
#: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
|
1119 |
#: includes/B2S/Settings/Item.php:276
|
1120 |
msgid "Image Post"
|
1121 |
msgstr ""
|
1122 |
|
1123 |
+
#: views/b2s/curation.php:49 views/b2s/curation.php:52
|
1124 |
+
#: views/b2s/curation.php:258
|
1125 |
+
msgid "Text Post"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
+
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:35
|
1129 |
+
#: includes/B2S/Network/Item.php:156 includes/B2S/Network/Item.php:161
|
1130 |
+
#: includes/B2S/Network/Item.php:165 includes/B2S/Ship/Image.php:92
|
1131 |
+
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1132 |
+
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
1133 |
+
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35
|
1134 |
+
#: includes/B2S/Ship/Portale.php:45
|
1135 |
+
msgid "PRO"
|
1136 |
+
msgstr ""
|
1137 |
+
|
1138 |
+
#: views/b2s/curation.php:63
|
1139 |
msgid "Load data..."
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: views/b2s/curation.php:69
|
1143 |
+
msgid ""
|
1144 |
+
"Enter a link you want to share on your social media networks. You can also "
|
1145 |
+
"share a video link, for example from YouTube or from Vimeo (also see Video "
|
1146 |
+
"Post)."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
+
#: views/b2s/curation.php:70
|
1150 |
+
msgid ""
|
1151 |
+
"Enter a video link you want to share on your social media networks, for "
|
1152 |
+
"example from YouTube or from Vimeo."
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: views/b2s/curation.php:71
|
1156 |
msgid "Please enter a valid link"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: views/b2s/curation.php:72
|
1160 |
msgid "Enter link"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: views/b2s/curation.php:75
|
1164 |
msgid "continue"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
+
#: views/b2s/curation.php:98 includes/B2S/Ship/Item.php:461
|
1168 |
+
#: includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:490
|
1169 |
+
#: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:521
|
1170 |
+
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
|
1171 |
+
#: includes/B2S/Ship/Item.php:558 includes/B2S/Ship/Item.php:581
|
1172 |
+
#: includes/B2S/Ship/Item.php:610 includes/B2S/Ship/Item.php:639
|
1173 |
+
#: includes/B2S/Ship/Item.php:667 includes/B2S/Ship/Item.php:710
|
1174 |
+
#: includes/B2S/Ship/Item.php:731 includes/B2S/Ship/Item.php:738
|
1175 |
+
#: includes/B2S/Ship/Item.php:745 includes/B2S/Ship/Item.php:765
|
1176 |
+
#: includes/B2S/Ship/Item.php:785 includes/B2S/Ship/Item.php:792
|
1177 |
+
#: includes/B2S/Ship/Item.php:799 includes/B2S/Ship/Item.php:816
|
1178 |
+
#: includes/B2S/Ship/Item.php:837 includes/B2S/Ship/Item.php:858
|
1179 |
+
#: includes/B2S/Ship/Item.php:879 includes/B2S/Ship/Item.php:900
|
1180 |
+
#: includes/B2S/Ship/Item.php:944
|
1181 |
msgid "Change image"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: views/b2s/curation.php:102 views/b2s/curation.php:116
|
1185 |
+
#: includes/B2S/Curation/View.php:23
|
1186 |
msgid "Write something..."
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: views/b2s/curation.php:132 views/b2s/ship.php:260 views/b2s/ship.php:262
|
1190 |
#: includes/B2S/Post/Item.php:441
|
1191 |
msgid "Re-share this post"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
+
#: views/b2s/curation.php:133
|
1195 |
msgid "Create a new post"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
|
1199 |
#: views/b2s/ship.php:18 views/b2s/ship.php:663 includes/B2S/Post/Filter.php:59
|
1200 |
#: includes/B2S/Post/Item.php:368 includes/B2S/Ship/Save.php:438
|
1201 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1202 |
msgid "published"
|
1203 |
msgstr ""
|
1204 |
|
1205 |
+
#: views/b2s/curation.php:155 views/b2s/post.approve.php:109
|
1206 |
#: views/b2s/ship.php:472
|
1207 |
msgid "Do you want to mark this post as published ?"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
+
#: views/b2s/curation.php:160 views/b2s/post.approve.php:114
|
1211 |
#: views/b2s/ship.php:477 views/b2s/ship.php:558
|
1212 |
msgid "YES"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: views/b2s/curation.php:174 views/b2s/post.calendar.php:265
|
1216 |
#: views/b2s/ship.php:402
|
1217 |
msgid "Need to schedule your posts?"
|
1218 |
msgstr ""
|
1219 |
|
1220 |
+
#: views/b2s/curation.php:177 views/b2s/post.calendar.php:268
|
1221 |
#: views/b2s/ship.php:405
|
1222 |
msgid "Blog2Social Premium covers everything you need."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: views/b2s/curation.php:180 views/b2s/post.calendar.php:271
|
1226 |
+
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:1155
|
1227 |
msgid "Schedule for specific dates"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: views/b2s/curation.php:181 views/b2s/post.calendar.php:272
|
1231 |
#: views/b2s/ship.php:409
|
1232 |
msgid ""
|
1233 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
1234 |
"desired date and you are ready to go!"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: views/b2s/curation.php:183 views/b2s/post.calendar.php:274
|
1238 |
#: views/b2s/ship.php:411
|
1239 |
msgid "Schedule post recurrently"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: views/b2s/curation.php:184 views/b2s/post.calendar.php:275
|
1243 |
#: views/b2s/ship.php:412
|
1244 |
msgid ""
|
1245 |
"You have evergreen content you want to re-share from time to time in your "
|
1247 |
"or recurringly at specific times."
|
1248 |
msgstr ""
|
1249 |
|
1250 |
+
#: views/b2s/curation.php:186 views/b2s/post.calendar.php:277
|
1251 |
#: views/b2s/ship.php:414
|
1252 |
msgid "Best Time Scheduler"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: views/b2s/curation.php:187 views/b2s/post.calendar.php:278
|
1256 |
#: views/b2s/ship.php:415
|
1257 |
msgid ""
|
1258 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
1261 |
"lifespan of your posts."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: views/b2s/curation.php:219
|
1265 |
+
msgid "You want to create image posts with any image from your media library?"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: views/b2s/curation.php:220
|
1269 |
+
msgid "You want to create text posts?"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: views/b2s/curation.php:227
|
1273 |
+
msgid ""
|
1274 |
+
"With Blog2Social you can share your WordPress posts and pages as well as "
|
1275 |
+
"create your own social media posts to share any content based on text, links,"
|
1276 |
+
" images, or video links, or even third-party content from any sources. This "
|
1277 |
+
"enables you to manage all your social media content in one place directly "
|
1278 |
+
"from your WordPress dashboard. Schedule and share link posts, text posts, "
|
1279 |
+
"image posts, and video posts (video links, for example from Youtube) and "
|
1280 |
+
"provide your followers with the best content-mix on your social media "
|
1281 |
+
"networks."
|
1282 |
+
msgstr ""
|
1283 |
+
|
1284 |
+
#: views/b2s/curation.php:230
|
1285 |
+
msgid ""
|
1286 |
+
"Unlock Blog2Social Premium Pro to create and share image posts, video links, "
|
1287 |
+
"and text posts from any source."
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: views/b2s/curation.php:232
|
1291 |
+
msgid "Share image posts:"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: views/b2s/curation.php:234
|
1295 |
+
msgid ""
|
1296 |
+
"Grab more attention for your content with photos, videos, or infographics."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: views/b2s/curation.php:235
|
1300 |
+
msgid ""
|
1301 |
+
"Share images to get them into the Google image search to further increase "
|
1302 |
+
"your outreach and traffic from search engines."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: views/b2s/curation.php:237
|
1306 |
+
msgid "Share text posts:"
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: views/b2s/curation.php:239
|
1310 |
+
msgid ""
|
1311 |
+
"Share pure text messages and personal comments with your followers and "
|
1312 |
+
"readers."
|
1313 |
+
msgstr ""
|
1314 |
+
|
1315 |
+
#: views/b2s/curation.php:240
|
1316 |
+
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: views/b2s/curation.php:242
|
1320 |
+
#, php-format
|
1321 |
+
msgid ""
|
1322 |
+
"Learn more about how to share social media posts in the <a href=\"%s\" "
|
1323 |
+
"target=\"_blank\">social media posts guide</a>."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: views/b2s/curation.php:244 views/b2s/html/footer.php:73
|
1327 |
+
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
|
1328 |
+
msgid "Upgrade to PRO and above"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: views/b2s/curation.php:261
|
1332 |
+
msgid ""
|
1333 |
+
"Text posts enable you to share pure text messages and personal comments with "
|
1334 |
+
"your followers and readers. You can also use hashtags, @mentions, or emojis "
|
1335 |
+
"to share your feelings. You can share a text post on the following networks:"
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: views/b2s/curation.php:279
|
1339 |
+
#, php-format
|
1340 |
+
msgid ""
|
1341 |
+
"Get more information on how to share a text post with hashtags, @mentions "
|
1342 |
+
"and emojis in the <a href=\"%s\" target=\"_blank\">social media posts "
|
1343 |
+
"guide</a>."
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: views/b2s/curation.php:290 views/b2s/repost.php:181
|
1347 |
msgid "Select image"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: views/b2s/curation.php:312
|
1351 |
msgid "Available networks for Social Media Posts"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: views/b2s/curation.php:335 views/b2s/repost.php:203
|
1355 |
#, php-format
|
1356 |
msgid ""
|
1357 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
1381 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1382 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1383 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1384 |
+
#: views/b2s/html/post.navbar.php:28 views/b2s/html/post.navbar.php:29
|
1385 |
msgid "filter"
|
1386 |
msgstr ""
|
1387 |
|
1393 |
msgid "You want to define a new combination of networks?"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: views/b2s/network.php:39 views/b2s/partials/post-edit-modal.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1397 |
msgid "Delete"
|
1398 |
msgstr ""
|
1399 |
|
1439 |
msgstr ""
|
1440 |
|
1441 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1442 |
+
#: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:57
|
1443 |
msgid "Learn more"
|
1444 |
msgstr ""
|
1445 |
|
1498 |
msgstr ""
|
1499 |
|
1500 |
#: views/b2s/network.php:203
|
1501 |
+
msgid "modify"
|
1502 |
msgstr ""
|
1503 |
|
1504 |
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:168
|
1506 |
msgid "Edit Post Template"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: views/b2s/network.php:230 views/b2s/ship.php:23
|
1510 |
+
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1511 |
+
#: includes/B2S/Network/Item.php:168 includes/B2S/Network/Item.php:262
|
1512 |
+
#: includes/B2S/Network/Item.php:332 includes/B2S/Network/Item.php:394
|
1513 |
+
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1514 |
+
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:1154
|
1515 |
+
#: views/b2s/html/post.navbar.php:17 views/b2s/html/post.navbar.php:20
|
1516 |
+
#: views/b2s/html/post.navbar.php:22 views/b2s/partials/post-edit-modal.php:9
|
1517 |
+
#: views/b2s/widgets/posts.php:18
|
1518 |
+
msgid "SMART"
|
1519 |
+
msgstr ""
|
1520 |
+
|
1521 |
+
#: views/b2s/network.php:242 views/b2s/settings.php:61
|
1522 |
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:133
|
1523 |
msgid "save"
|
1524 |
msgstr ""
|
1586 |
msgid "The name of the post author."
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:781
|
1590 |
msgid "Character limit"
|
1591 |
msgstr ""
|
1592 |
|
1660 |
msgstr ""
|
1661 |
|
1662 |
#: views/b2s/network.php:350 views/b2s/ship.php:585
|
1663 |
+
msgid "Please select your correct server location and connect again."
|
1664 |
msgstr ""
|
1665 |
|
1666 |
#: views/b2s/network.php:351 views/b2s/ship.php:586
|
1758 |
msgstr ""
|
1759 |
|
1760 |
#: views/b2s/network.php:487
|
1761 |
+
msgid "The connection does not exist."
|
1762 |
msgstr ""
|
1763 |
|
1764 |
#: views/b2s/network.php:490
|
1852 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:85
|
1856 |
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:95
|
1857 |
#: views/b2s/repost.php:87 views/b2s/widgets/posts.php:63
|
1858 |
msgid "Number of entries"
|
1971 |
msgid "You have not saved any favorites."
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: views/b2s/post.notice.php:80 views/b2s/post.publish.php:76
|
1975 |
#: views/b2s/widgets/posts.php:58
|
1976 |
msgid "Delete entries from the reporting"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: views/b2s/post.notice.php:83 views/b2s/post.publish.php:79
|
1980 |
#: views/b2s/widgets/posts.php:61
|
1981 |
msgid "You are sure, you want to delete entries from the reporting?"
|
1982 |
msgstr ""
|
1983 |
|
|
|
|
|
|
|
|
|
1984 |
#: views/b2s/post.sched.php:90 views/b2s/repost.php:82
|
1985 |
+
msgid "Delete entries from the scheduling"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
#: views/b2s/post.sched.php:93 views/b2s/repost.php:85
|
2076 |
msgstr ""
|
2077 |
|
2078 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
2079 |
+
#: includes/B2S/Post/Item.php:856
|
2080 |
msgid "Auto-Posting"
|
2081 |
msgstr ""
|
2082 |
|
2154 |
msgid "Show me plans and prices"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: views/b2s/premium.php:183
|
2158 |
msgid "Show all premium features"
|
2159 |
msgstr ""
|
2160 |
|
2166 |
msgid "Social Meta Data"
|
2167 |
msgstr ""
|
2168 |
|
2169 |
+
#: views/b2s/settings.php:44 views/b2s/html/sidebar.php:134
|
2170 |
+
msgid "Social Media Networks"
|
2171 |
+
msgstr ""
|
2172 |
+
|
2173 |
+
#: views/b2s/settings.php:47
|
2174 |
+
msgid "Social Media Time Settings"
|
2175 |
+
msgstr ""
|
2176 |
+
|
2177 |
+
#: views/b2s/settings.php:50
|
2178 |
+
msgid "Post Templates"
|
2179 |
+
msgstr ""
|
2180 |
+
|
2181 |
+
#: views/b2s/settings.php:68
|
2182 |
+
msgid ""
|
2183 |
+
"Connect Blog2Social with 16 different social media networks you like to "
|
2184 |
+
"share your WordPress blog posts and pages as well as imported posts and "
|
2185 |
+
"social media posts on. The following networks are available:"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
#: views/b2s/settings.php:87
|
2189 |
+
#, php-format
|
2190 |
msgid ""
|
2191 |
+
"You will find more information on how to connect your social media networks "
|
2192 |
+
"in the <a href=\"%s\" target=\"_blank\">connecting social media network "
|
2193 |
+
"guide</a>."
|
2194 |
+
msgstr ""
|
2195 |
+
|
2196 |
+
#: views/b2s/settings.php:89
|
2197 |
+
msgid "Connect your social media networks"
|
2198 |
+
msgstr ""
|
2199 |
+
|
2200 |
+
#: views/b2s/settings.php:92
|
2201 |
+
msgid ""
|
2202 |
+
"Use the pre-defined best time settings or define your own best time settings "
|
2203 |
+
"for sharing your posts . Posting at the right time can be essential to make "
|
2204 |
+
"sure your content is most likely be seen."
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: views/b2s/settings.php:94
|
2208 |
+
#, php-format
|
2209 |
+
msgid ""
|
2210 |
+
"You will find more information about the pre-defined best time settings by "
|
2211 |
+
"Blog2Social in this <a href=\"%s\" target=\"_blank\">best time guide</a>."
|
2212 |
+
msgstr ""
|
2213 |
+
|
2214 |
+
#: views/b2s/settings.php:96
|
2215 |
+
#, php-format
|
2216 |
+
msgid ""
|
2217 |
+
"An instruction on how to define your own best times is explained in the "
|
2218 |
+
"guide \"<a href=\"%s\" target=\"_blank\">How do I set my own time setting to "
|
2219 |
+
"post on social media?</a>\"."
|
2220 |
msgstr ""
|
2221 |
|
2222 |
#: views/b2s/settings.php:98
|
2223 |
+
msgid "Check, edit or define your social media time settings"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
#: views/b2s/settings.php:101
|
2227 |
+
msgid ""
|
2228 |
+
"Edit the post templates for each social media network to turn your social "
|
2229 |
+
"media posts automatically into tailored posts for each network and community."
|
2230 |
+
" You can edit the structure of your post with the following variables:"
|
2231 |
+
msgstr ""
|
2232 |
+
|
2233 |
+
#: views/b2s/settings.php:103
|
2234 |
+
msgid "Title: The title of your post."
|
2235 |
+
msgstr ""
|
2236 |
+
|
2237 |
+
#: views/b2s/settings.php:104
|
2238 |
+
msgid "Content: The content of your post."
|
2239 |
+
msgstr ""
|
2240 |
+
|
2241 |
+
#: views/b2s/settings.php:105
|
2242 |
+
msgid ""
|
2243 |
+
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2244 |
+
"post)."
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: views/b2s/settings.php:106
|
2248 |
+
msgid "Keywords: The tags you have set in your post."
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: views/b2s/settings.php:107
|
2252 |
+
msgid "Author: The author of the post."
|
2253 |
+
msgstr ""
|
2254 |
+
|
2255 |
+
#: views/b2s/settings.php:109
|
2256 |
+
#, php-format
|
2257 |
+
msgid ""
|
2258 |
+
"You will find more information on how to use post templates for your social "
|
2259 |
+
"media posts in this <a href=\"%s\" target=\"_blank\">post template guide</a>."
|
2260 |
+
msgstr ""
|
2261 |
+
|
2262 |
+
#: views/b2s/settings.php:111
|
2263 |
+
msgid "Define your post templates for each social media network"
|
2264 |
+
msgstr ""
|
2265 |
+
|
2266 |
+
#: views/b2s/settings.php:142
|
2267 |
+
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
+
#: views/b2s/settings.php:145
|
2271 |
+
#, php-format
|
2272 |
+
msgid ""
|
2273 |
+
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
2274 |
+
"shortcode is inserted in a WordPress post or WordPress page, WordPress calls "
|
2275 |
+
"the function that is included in the shortcode and performs the "
|
2276 |
+
"corresponding actions as soon as you publish your post on your Wordpress "
|
2277 |
+
"website. If you like Blog2Social to consider shortcodes when posting to "
|
2278 |
+
"social media and automatically insert the defined content in your social "
|
2279 |
+
"media post, activate this feature. You will find more information about the "
|
2280 |
+
"function of shortcodes and which plugins are supported by Blog2Social in the "
|
2281 |
+
"following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
|
2282 |
+
msgstr ""
|
2283 |
+
|
2284 |
+
#: views/b2s/settings.php:156
|
2285 |
+
msgid "Activate Legacy mode "
|
2286 |
+
msgstr ""
|
2287 |
+
|
2288 |
+
#: views/b2s/settings.php:159
|
2289 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: views/b2s/settings.php:170
|
2293 |
msgid "Instant Caching for Facebook Link Posts"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: views/b2s/settings.php:173
|
2297 |
msgid ""
|
2298 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2299 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
2334 |
msgid "Load My Times Settings"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
+
#: views/b2s/ship.php:105
|
2338 |
msgid "Social Accounts"
|
2339 |
msgstr ""
|
2340 |
|
2636 |
"team for any payment issues."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: views/b2s/support.php:177
|
2640 |
+
msgid ""
|
2641 |
+
"The Troubleshooting tool helps you with conflicts that can be caused by the "
|
2642 |
+
"system environment of your blog. So you can always check your settings on "
|
2643 |
+
"Wordpress."
|
2644 |
+
msgstr ""
|
2645 |
+
|
2646 |
+
#: views/b2s/support.php:177
|
2647 |
+
msgid "How to use the Troubleshooting tool"
|
2648 |
+
msgstr ""
|
2649 |
+
|
2650 |
+
#: views/b2s/support.php:185
|
2651 |
msgid ""
|
2652 |
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
2653 |
"administrator."
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: views/b2s/support.php:192
|
2657 |
msgid "Needed"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: views/b2s/support.php:195
|
2661 |
msgid "Current"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: views/b2s/support.php:198
|
2665 |
msgid "reload"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: views/b2s/support.php:199
|
2669 |
msgid "Export as txt-file"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: views/b2s/support.php:212
|
2673 |
msgid "Enter a URL to see how your link preview will look on social media."
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: views/b2s/support.php:213
|
2677 |
+
msgid ""
|
2678 |
+
"Are you are experiencing incorrect images and/or titles being pulled by "
|
2679 |
+
"Facebook or other social media platforms? Social Debugger or code validator "
|
2680 |
+
"tools show you a preview of what your social media post will look like when "
|
2681 |
+
"it's published and help you to fix inconsistencies and errors."
|
2682 |
+
msgstr ""
|
2683 |
+
|
2684 |
+
#: views/b2s/support.php:213
|
2685 |
+
msgid "More"
|
2686 |
+
msgstr ""
|
2687 |
+
|
2688 |
+
#: views/b2s/support.php:218
|
2689 |
msgid "Facebook Open Graph Meta Tags"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: views/b2s/support.php:219
|
2693 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: views/b2s/support.php:223 views/b2s/support.php:234
|
2697 |
+
#: views/b2s/support.php:245
|
2698 |
msgid "For example your Wordpress Home Page"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: views/b2s/support.php:225
|
2702 |
msgid "Debug & Preview"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: views/b2s/support.php:231
|
2706 |
msgid "LinkedIn Post Inspector"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: views/b2s/support.php:236
|
2710 |
msgid "Inspect Post"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: views/b2s/support.php:242
|
2714 |
+
msgid "Pinterest Rich Pins Validator"
|
2715 |
+
msgstr ""
|
2716 |
+
|
2717 |
+
#: views/b2s/support.php:247
|
2718 |
+
msgid "validate"
|
2719 |
+
msgstr ""
|
2720 |
+
|
2721 |
+
#: views/b2s/support.php:253
|
2722 |
msgid "Twitter Card Validator"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: views/b2s/support.php:254
|
2726 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: views/b2s/support.php:258
|
2730 |
msgid "Validate directly on Twitter"
|
2731 |
msgstr ""
|
2732 |
|
2870 |
msgstr ""
|
2871 |
|
2872 |
#: includes/B2S/AutoPost/Item.php:79
|
2873 |
+
msgid "updated posts"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: includes/B2S/AutoPost/Item.php:107
|
2877 |
+
msgid "Transfer Auto-Poster settings to other users"
|
|
|
|
|
|
|
|
|
|
|
2878 |
msgstr ""
|
2879 |
|
2880 |
#: includes/B2S/AutoPost/Item.php:138
|
2977 |
msgstr ""
|
2978 |
|
2979 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2980 |
+
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:1263
|
2981 |
+
#: views/b2s/partials/post-edit-modal.php:71
|
2982 |
+
#: views/b2s/partials/post-edit-modal.php:74
|
2983 |
msgid "Date"
|
2984 |
msgstr ""
|
2985 |
|
3008 |
msgstr ""
|
3009 |
|
3010 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
3011 |
+
#: includes/B2S/Ship/Item.php:331 includes/B2S/Ship/Navbar.php:86
|
3012 |
#: includes/B2S/Ship/Portale.php:38
|
3013 |
msgid "Blog"
|
3014 |
msgstr ""
|
3051 |
|
3052 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
3053 |
#: includes/B2S/Network/Item.php:355
|
3054 |
+
msgid "Connection is interrupted since"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
3060 |
msgstr ""
|
3061 |
|
3062 |
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:330
|
3063 |
+
#: includes/B2S/Network/Item.php:392 includes/B2S/Ship/Item.php:1211
|
3064 |
msgid "Days"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: includes/B2S/Network/Item.php:291 includes/B2S/Network/Item.php:809
|
3068 |
#, php-format
|
3069 |
msgid ""
|
3070 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
3071 |
"Old Design until 2020/11/30</a>)"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: includes/B2S/Network/Item.php:292 includes/B2S/Network/Item.php:810
|
3075 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3076 |
msgstr ""
|
3077 |
|
3142 |
msgstr ""
|
3143 |
|
3144 |
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:701
|
3145 |
+
#: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
|
3146 |
msgid "Link"
|
3147 |
msgstr ""
|
3148 |
|
3154 |
msgid "Content"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: includes/B2S/Network/Item.php:720 includes/B2S/Ship/Item.php:372
|
3158 |
msgid ""
|
3159 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3160 |
"in your post."
|
3164 |
msgid "clear"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
+
#: includes/B2S/Network/Item.php:743
|
3168 |
+
msgid ""
|
3169 |
+
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
3170 |
+
"your page, in order to refer to the original source of the content and to "
|
3171 |
+
"increase the reach from search engines like Google."
|
3172 |
+
msgstr ""
|
3173 |
+
|
3174 |
+
#: includes/B2S/Network/Item.php:745
|
3175 |
msgid "The link will be added automatically at the end of the post."
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: includes/B2S/Network/Item.php:750
|
3179 |
+
msgid "The network does not support hashtags."
|
3180 |
+
msgstr ""
|
3181 |
+
|
3182 |
+
#: includes/B2S/Network/Item.php:755 includes/B2S/Network/Item.php:801
|
3183 |
+
#: includes/B2S/Network/Item.php:840
|
3184 |
msgid "Network limit"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
+
#: includes/B2S/Network/Item.php:755 includes/B2S/Network/Item.php:801
|
3188 |
+
#: includes/B2S/Network/Item.php:801 includes/B2S/Network/Item.php:840
|
3189 |
+
#: includes/B2S/Network/Item.php:840 includes/B2S/Ship/Item.php:215
|
3190 |
+
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
3191 |
+
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
3192 |
+
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
|
3193 |
+
#: includes/B2S/Ship/Item.php:1292
|
3194 |
msgid "characters"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: includes/B2S/Network/Item.php:762
|
3198 |
msgid "Add a link-URL to the end of my image post."
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: includes/B2S/Network/Item.php:769
|
3202 |
msgid ""
|
3203 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3204 |
"Instagram does not turn link-URLs into clickable links)"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: includes/B2S/Network/Item.php:774
|
3208 |
+
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
3209 |
+
msgstr ""
|
3210 |
+
|
3211 |
+
#: includes/B2S/Network/Item.php:801 includes/B2S/Network/Item.php:840
|
3212 |
msgid "recommended length"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
+
#: includes/B2S/Network/Item.php:866 includes/B2S/Network/Item.php:918
|
3216 |
+
#: includes/B2S/Network/Item.php:987 includes/B2S/Network/Item.php:1039
|
3217 |
+
#: includes/B2S/Network/Item.php:1073 includes/B2S/Network/Item.php:1124
|
3218 |
+
#: includes/B2S/Network/Item.php:1154 includes/B2S/Network/Item.php:1208
|
3219 |
+
#: includes/B2S/Network/Item.php:1227 includes/B2S/Network/Item.php:1261
|
3220 |
+
#: includes/B2S/Network/Item.php:1277 includes/B2S/Network/Item.php:1293
|
3221 |
+
#: includes/B2S/Network/Item.php:1309 includes/B2S/Network/Item.php:1325
|
3222 |
+
#: includes/B2S/Network/Item.php:1344 includes/B2S/Network/Item.php:1360
|
3223 |
msgid "Preview"
|
3224 |
msgstr ""
|
3225 |
|
3384 |
msgid "last saved"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:856
|
3388 |
#: includes/B2S/Ship/Save.php:448
|
3389 |
msgid "Retweet"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:856
|
3393 |
msgid "Re-Share"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:791
|
3397 |
+
#: includes/B2S/Post/Item.php:862 includes/B2S/RePost/Item.php:130
|
3398 |
msgid "select all"
|
3399 |
msgstr ""
|
3400 |
|
3420 |
msgid "shared by %s"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:771
|
3424 |
msgid "You want to delete a publish post entry?"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:772
|
3428 |
msgid "delete from reporting"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: includes/B2S/Post/Item.php:794
|
3432 |
#, php-format
|
3433 |
msgid "is waiting to shared by %s"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: includes/B2S/Post/Item.php:824 includes/B2S/Ship/Save.php:429
|
3437 |
msgid "share"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: includes/B2S/Post/Item.php:832
|
3441 |
msgid "You want to delete your Social Media post?"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: includes/B2S/Post/Item.php:875
|
3445 |
#, php-format
|
3446 |
msgid "last modified by %s"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: includes/B2S/Post/Item.php:877
|
3450 |
msgid "is currently being processed by the network"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: includes/B2S/Post/Item.php:882
|
3454 |
#, php-format
|
3455 |
msgid "scheduled by %s"
|
3456 |
msgstr ""
|
3457 |
|
3458 |
+
#: includes/B2S/Post/Item.php:887
|
3459 |
msgid "You want to edit your scheduled post?"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
+
#: includes/B2S/Post/Item.php:888
|
3463 |
msgid "edit"
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: includes/B2S/Post/Item.php:900
|
3467 |
msgid "delete scheduling"
|
3468 |
msgstr ""
|
3469 |
|
3518 |
msgid "on"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:1269
|
3522 |
msgid "Mon"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:1270
|
3526 |
msgid "Tue"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:1271
|
3530 |
msgid "Wed"
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1272
|
3534 |
msgid "Thu"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1273
|
3538 |
msgid "Fri"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1274
|
3542 |
msgid "Sat"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1275
|
3546 |
msgid "Sun"
|
3547 |
msgstr ""
|
3548 |
|
3615 |
msgstr ""
|
3616 |
|
3617 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3618 |
+
#: includes/B2S/Ship/Item.php:1113
|
3619 |
msgid "Account"
|
3620 |
msgstr ""
|
3621 |
|
3631 |
msgid "Url Shortener"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: includes/B2S/Settings/Item.php:66
|
3635 |
+
#, php-format
|
3636 |
+
msgid ""
|
3637 |
+
"Please note: Pinterest does not allow posts with any shortened URL links (i."
|
3638 |
+
"e. short links generated by URL shorteners) to prevent spam. To make sure, "
|
3639 |
+
"your Pinterest posts will be displayed correctly, Blog2Social will share "
|
3640 |
+
"your posts automatically with the original URL link, even if you have "
|
3641 |
+
"activated an URL-shortener. You will find more information about this in the "
|
3642 |
+
"<a href=\"%s\" target=\"_blank\">Pinterest help guide</a>."
|
3643 |
+
msgstr ""
|
3644 |
+
|
3645 |
#: includes/B2S/Settings/Item.php:67
|
3646 |
msgid "no URL Shortener"
|
3647 |
msgstr ""
|
3903 |
msgid "Apply image for this image gallery"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: includes/B2S/Ship/Item.php:161
|
3907 |
msgid "Network does not support image for profiles"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: includes/B2S/Ship/Item.php:162 includes/B2S/Ship/Item.php:231
|
3911 |
msgid "Network defines image by link"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: includes/B2S/Ship/Item.php:164
|
3915 |
msgid "Supported HTML tags"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: includes/B2S/Ship/Item.php:165 includes/B2S/Ship/Item.php:230
|
3919 |
msgid "Network does not support emojis"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: includes/B2S/Ship/Item.php:167 includes/B2S/Ship/Item.php:233
|
3923 |
msgid "Network does not support GIFs"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: includes/B2S/Ship/Item.php:214
|
3927 |
msgid "Text only"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: includes/B2S/Ship/Item.php:229
|
3931 |
msgid "Network does not support image for pages"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: includes/B2S/Ship/Item.php:323
|
3935 |
msgid "Connection expires on 31 March 2019"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: includes/B2S/Ship/Item.php:327
|
3939 |
msgid "Connection expires on 2 April 2019"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: includes/B2S/Ship/Item.php:340
|
3943 |
msgid "post format"
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: includes/B2S/Ship/Item.php:355 includes/B2S/Ship/Item.php:1298
|
3947 |
msgid "Insert full-text"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: includes/B2S/Ship/Item.php:357 includes/B2S/Ship/Item.php:1300
|
3951 |
msgid "Delete text"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:759
|
3955 |
+
#: includes/B2S/Ship/Item.php:1164
|
3956 |
msgid ""
|
3957 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3958 |
"allowed to post identical or substantially similar content to multiple "
|
3959 |
"accounts or multiple duplicate updates on one account."
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:759
|
3963 |
+
#: includes/B2S/Ship/Item.php:1164
|
3964 |
msgid ""
|
3965 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3966 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3967 |
"duplicate posts."
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:759
|
3971 |
+
#: includes/B2S/Ship/Item.php:1164
|
3972 |
msgid "Learn more about this"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: includes/B2S/Ship/Item.php:368
|
3976 |
msgid ""
|
3977 |
"Please note: XING allows identical posts to be published only once within a "
|
3978 |
"group and no more than three times across different groups."
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: includes/B2S/Ship/Item.php:368
|
3982 |
msgid "Read more"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: includes/B2S/Ship/Item.php:373
|
3986 |
msgid ""
|
3987 |
"Please keep in mind that users are not allowed to post identical or "
|
3988 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3989 |
"updates on one account."
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: includes/B2S/Ship/Item.php:373
|
3993 |
msgid ""
|
3994 |
"Violating these rules can result in suspending your account. Always vary "
|
3995 |
"your content with different images, comments, hashtags or handles to prevent "
|
3996 |
"duplicate posts."
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: includes/B2S/Ship/Item.php:393
|
4000 |
msgid "hide calendar"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:510
|
4004 |
+
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:599
|
4005 |
+
#: includes/B2S/Ship/Item.php:628 includes/B2S/Ship/Item.php:656
|
4006 |
+
#: includes/B2S/Ship/Item.php:684 includes/B2S/Ship/Item.php:715
|
4007 |
+
#: includes/B2S/Ship/Item.php:770 includes/B2S/Ship/Item.php:821
|
4008 |
+
#: includes/B2S/Ship/Item.php:842 includes/B2S/Ship/Item.php:863
|
4009 |
+
#: includes/B2S/Ship/Item.php:884 includes/B2S/Ship/Item.php:905
|
4010 |
+
#: includes/B2S/Ship/Item.php:915
|
4011 |
msgid "Write something about your post..."
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: includes/B2S/Ship/Item.php:465 includes/B2S/Ship/Item.php:585
|
4015 |
+
#: includes/B2S/Ship/Item.php:615 includes/B2S/Ship/Item.php:643
|
4016 |
+
#: includes/B2S/Ship/Item.php:671
|
4017 |
msgid ""
|
4018 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
4019 |
"network"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:529
|
4023 |
+
#: includes/B2S/Ship/Item.php:588 includes/B2S/Ship/Item.php:618
|
4024 |
+
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:674
|
4025 |
msgid ""
|
4026 |
"You want to change your link image, link title and link description for this "
|
4027 |
"network? Click here."
|
4028 |
msgstr ""
|
4029 |
|
4030 |
+
#: includes/B2S/Ship/Item.php:470 includes/B2S/Ship/Item.php:590
|
4031 |
+
#: includes/B2S/Ship/Item.php:620 includes/B2S/Ship/Item.php:648
|
4032 |
+
#: includes/B2S/Ship/Item.php:676
|
4033 |
msgid "OG Meta title"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: includes/B2S/Ship/Item.php:471 includes/B2S/Ship/Item.php:591
|
4037 |
+
#: includes/B2S/Ship/Item.php:621 includes/B2S/Ship/Item.php:649
|
4038 |
+
#: includes/B2S/Ship/Item.php:677
|
4039 |
msgid "OG Meta description"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
4043 |
+
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
4044 |
msgid "Do u want to post multiple images?"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: includes/B2S/Ship/Item.php:524
|
4048 |
msgid ""
|
4049 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
4050 |
"Changes may not be immediately visible on Twitter."
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: includes/B2S/Ship/Item.php:526
|
4054 |
msgid ""
|
4055 |
"Info: Change Card Meta tags image, title and description for this network"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: includes/B2S/Ship/Item.php:531
|
4059 |
msgid "Card Meta title"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: includes/B2S/Ship/Item.php:532
|
4063 |
msgid "Card Meta description"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: includes/B2S/Ship/Item.php:613
|
4067 |
msgid ""
|
4068 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
4069 |
"days. Changes may not be immediately visible on XING."
|
4070 |
msgstr ""
|
4071 |
|
4072 |
+
#: includes/B2S/Ship/Item.php:931
|
4073 |
msgid "required"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: includes/B2S/Ship/Item.php:1033
|
4077 |
msgid "Jobs & Projects"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: includes/B2S/Ship/Item.php:1034
|
4081 |
msgid "Events"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: includes/B2S/Ship/Item.php:1035
|
4085 |
msgid "Classified Ads"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: includes/B2S/Ship/Item.php:1037
|
4089 |
msgid "Offer"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: includes/B2S/Ship/Item.php:1038
|
4093 |
msgid "Request"
|
4094 |
msgstr ""
|
4095 |
|
4096 |
+
#: includes/B2S/Ship/Item.php:1049
|
4097 |
msgid "The Headline..."
|
4098 |
msgstr ""
|
4099 |
|
4100 |
+
#: includes/B2S/Ship/Item.php:1057
|
4101 |
#, php-format
|
4102 |
msgid "max. %s Tags"
|
4103 |
msgstr ""
|
4104 |
|
4105 |
+
#: includes/B2S/Ship/Item.php:1059
|
4106 |
msgid "Hashtags"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
+
#: includes/B2S/Ship/Item.php:1095
|
4110 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
4111 |
msgstr ""
|
4112 |
|
4113 |
+
#: includes/B2S/Ship/Item.php:1114 views/b2s/partials/post-edit-modal.php:82
|
4114 |
msgid "Delay"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: includes/B2S/Ship/Item.php:1124 includes/B2S/Ship/Item.php:1125
|
4118 |
+
#: includes/B2S/Ship/Item.php:1126 includes/B2S/Ship/Item.php:1127
|
4119 |
+
#: views/b2s/partials/post-edit-modal.php:86
|
4120 |
+
#: views/b2s/partials/post-edit-modal.php:87
|
4121 |
+
#: views/b2s/partials/post-edit-modal.php:88
|
4122 |
+
#: views/b2s/partials/post-edit-modal.php:89
|
4123 |
msgid "min"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: includes/B2S/Ship/Item.php:1132
|
4127 |
msgid "Add Retweet"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: includes/B2S/Ship/Item.php:1152
|
4131 |
msgid "Share Now"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: includes/B2S/Ship/Item.php:1157
|
4135 |
msgid "Schedule Recurrent Post"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: includes/B2S/Ship/Item.php:1193 views/b2s/partials/post-edit-modal.php:56
|
4139 |
msgid ""
|
4140 |
"Please note: Your account is connected via an old XING API that is no longer "
|
4141 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
4145 |
"the new XING."
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: includes/B2S/Ship/Item.php:1197 views/b2s/partials/post-edit-modal.php:60
|
4149 |
msgid ""
|
4150 |
"Please note: Google will shut down Google+ for all private accounts "
|
4151 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
4153 |
"other content here:"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: includes/B2S/Ship/Item.php:1200
|
4157 |
msgid "Repeats"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: includes/B2S/Ship/Item.php:1201 includes/B2S/Ship/Item.php:1204
|
4161 |
msgid "Duration"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: includes/B2S/Ship/Item.php:1205
|
4165 |
msgid "Number of repeats"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: includes/B2S/Ship/Item.php:1206
|
4169 |
msgid "Day of month"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: includes/B2S/Ship/Item.php:1207
|
4173 |
msgid "Repeats every (days)"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: includes/B2S/Ship/Item.php:1209
|
4177 |
msgid "Start date"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: includes/B2S/Ship/Item.php:1210
|
4181 |
msgid "Time to publish"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: includes/B2S/Ship/Item.php:1219
|
4185 |
msgid "weekly"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: includes/B2S/Ship/Item.php:1220
|
4189 |
msgid "monthly"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: includes/B2S/Ship/Item.php:1221
|
4193 |
msgid "own period"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: includes/B2S/Ship/Item.php:1227
|
4197 |
msgid "Week"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: includes/B2S/Ship/Item.php:1227
|
4201 |
msgid "Weeks"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: includes/B2S/Ship/Item.php:1236
|
4205 |
msgid "Month"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: includes/B2S/Ship/Item.php:1236
|
4209 |
msgid "Months"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: includes/B2S/Ship/Item.php:1256
|
4213 |
msgid "End Of Month"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: includes/B2S/Ship/Item.php:1261
|
4217 |
msgid "Timespan"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: includes/B2S/Ship/Item.php:1264 views/b2s/partials/post-edit-modal.php:72
|
4221 |
+
#: views/b2s/partials/post-edit-modal.php:75
|
4222 |
msgid "Time"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: includes/B2S/Ship/Item.php:1282
|
4226 |
msgid "add another post"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: includes/B2S/Ship/Item.php:1296
|
4230 |
msgid "Copy from original"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: includes/B2S/Ship/Item.php:1312
|
4234 |
msgid "Apply Settings To All Networks"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: includes/B2S/Ship/Item.php:1313
|
4238 |
msgid "Save as best time for this network"
|
4239 |
msgstr ""
|
4240 |
|
4402 |
"media posts"
|
4403 |
msgstr ""
|
4404 |
|
|
|
|
|
|
|
|
|
|
|
4405 |
#: views/b2s/html/footer.php:78 views/b2s/html/footer.php:96
|
4406 |
msgid "Activate Blog2Social PREMIUM PRO."
|
4407 |
msgstr ""
|
4408 |
|
4409 |
#: views/b2s/html/footer.php:80
|
4410 |
msgid ""
|
4411 |
+
"With Blog2Social Premium PRO you can connect Facebook, Linkedin, Xing and VK "
|
4412 |
+
"pages as well as Facebook, XING and VK groups."
|
4413 |
msgstr ""
|
4414 |
|
4415 |
#: views/b2s/html/footer.php:83 views/b2s/html/footer.php:101
|
4595 |
"imported posts</a>"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
+
#: views/b2s/html/footer.php:433
|
4599 |
+
msgid "Transfer Auto-Poster settings to other users (Business):"
|
4600 |
+
msgstr ""
|
4601 |
+
|
4602 |
#: views/b2s/html/footer.php:436
|
4603 |
msgid ""
|
4604 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
4605 |
+
"administrator to other users if they have activated the same Blog2Social-"
|
4606 |
+
"Business license. This way, you can also assign social media accounts to "
|
4607 |
+
"other users, so they can auto-post without setting up these connections in "
|
4608 |
+
"each user account. Within these settings, you can also decide whether newly "
|
4609 |
+
"published or updated content from other users should be automatically shared."
|
4610 |
+
" Users with an assigned Auto-Poster setting and an assigned social-media-"
|
4611 |
+
"network group will then share content automatically how you selected the "
|
4612 |
+
"content to be shared automatically."
|
|
|
4613 |
msgstr ""
|
4614 |
|
4615 |
#: views/b2s/html/footer.php:438
|
4616 |
#, php-format
|
4617 |
msgid ""
|
4618 |
+
"You will get more information on how to assign the Auto-Poster settings in "
|
4619 |
+
"the <a target=\"_blank\" href=\"%s\">Auto-Poster guide</a>."
|
4620 |
msgstr ""
|
4621 |
|
4622 |
#: views/b2s/html/footer.php:451
|
4962 |
#: views/b2s/html/header.php:232
|
4963 |
msgid ""
|
4964 |
"Your limit for your quota of posts in your queue has been reached. Please "
|
4965 |
+
"delete posts from your queue before you add more"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
#: views/b2s/html/header.php:232
|
5145 |
msgid "I agree to the Adenion Privacy Policy"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: views/b2s/html/post.navbar.php:9
|
5149 |
msgid "All Blog Posts"
|
5150 |
msgstr ""
|
5151 |
|
5185 |
msgid "Plans & Prices"
|
5186 |
msgstr ""
|
5187 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5188 |
#: views/b2s/html/sidebar.php:180
|
5189 |
msgid "Blog2Social Blog News"
|
5190 |
msgstr ""
|
5215 |
msgid "This post is blocked by %1"
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: views/b2s/partials/post-edit-modal.php:93
|
5219 |
msgid "The orginal tweet is scheduled on:"
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: views/b2s/partials/post-edit-modal.php:110
|
5223 |
msgid "Change details"
|
5224 |
msgstr ""
|
5225 |
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
===Blog2Social: Social Media Auto Post & Scheduler===
|
2 |
Contributors: Blog2Social, pr-gateway
|
3 |
Requires PHP: 5.5.3
|
4 |
-
Tags: auto post, auto publish, social media scheduling, social media calendar, social media automation, social media share, auto-publish, scheduling, social media post, social url share, social network share, share tweet, share links, share this,
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
Tested up to: 5.6
|
8 |
-
Stable tag: 6.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -16,9 +16,9 @@ Autopost, schedule and share blog posts and contents on social media, pages & gr
|
|
16 |
Autopost, cross-promote, schedule and automatically share your blog posts to social networks such as **Facebook, Twitter, Google My Business, LinkedIn, XING, Instagram, Pinterest, Imgur, Flickr, Reddit, VK.com, Medium, Tumblr, Torial, Diigo, Bloglovin and Telegram.**
|
17 |
Blog2Social automatically creates social media posts for your content and auto-posts at the best times for each network. Save time and pain of manually sharing and promoting your site on social media.
|
18 |
|
19 |
-
_Compatible with WooCommerce, Gutenberg Editor, Hummingbird, Bitly, Rebrand.ly, Sniply
|
20 |
|
21 |
-
* Version 6.
|
22 |
|
23 |
Download Blog2Social today to make your social media marketing for your WordPress site or blog easier than ever. Blog2Social is a freemium plugin, with a free comprehensive basic version and premium plans offering more advanced features. To ensure compliance with the high quality standards of the new networks’ API rules and community guidelines, some functions of the auto-poster are premium features and not part of the free version.
|
24 |
The Blog2Social free version offers you a wide range of features. ([See what’s included in the free version](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features")).
|
@@ -89,7 +89,7 @@ Activate the autoposter to **automatically share your new and updated posts** on
|
|
89 |
Share and schedule links and posts from any source to **automatically fill your social media feeds with a consistent content mix** of your own content and third-party content. Import content via RSS or share any URL-Link, or use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share or schedule them whenever you want.
|
90 |
|
91 |
|
92 |
-
**#6 Create Social Media Posts any source** – share updates, images, and links from one central platform and schedule all your social media posts in one social media calendar.
|
93 |
|
94 |
Save valuable time by managing your complete **social media content right from your WordPress dashboard.**
|
95 |
|
@@ -125,17 +125,20 @@ The Blog2Social Plugin is available in the following language versions
|
|
125 |
* Portuguese
|
126 |
* Russian
|
127 |
* Spanish
|
|
|
|
|
128 |
|
129 |
**Contributors**
|
130 |
|
131 |
* Thanks to [Almaz](https://almazworks.com/ "Almaz") for translating this plugin into Russian
|
132 |
* Thanks to [Olivier](https://extraspeech.com/ "Olivier") for translating this plugin into French
|
133 |
-
* Thanks to [
|
|
|
134 |
|
135 |
== Installation ==
|
136 |
1. Go to the Admin Panel of your WordPress dashboard
|
137 |
|
138 |
-
2. Select
|
139 |
|
140 |
3. Enter "Blog2Social" in the "Search Plugins" text field
|
141 |
|
@@ -218,6 +221,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
218 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
219 |
|
220 |
== Changelog ==
|
|
|
|
|
221 |
= 6.5.8 =
|
222 |
Usability Optimization
|
223 |
= 6.5.7 =
|
@@ -304,6 +309,8 @@ Usability Optimization
|
|
304 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
305 |
|
306 |
== Upgrade Notice ==
|
|
|
|
|
307 |
= 6.5.8 =
|
308 |
Usability Optimization
|
309 |
= 6.5.7 =
|
1 |
===Blog2Social: Social Media Auto Post & Scheduler===
|
2 |
Contributors: Blog2Social, pr-gateway
|
3 |
Requires PHP: 5.5.3
|
4 |
+
Tags: auto post, auto publish, social media scheduling, social media calendar, social media automation, social media share, auto-publish, scheduling, social media post, social url share, social network share, share tweet, share links, share this, share text posts, share images, share video links, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, pinterest, re-post, scheduling plugin, social media, social media auto publish, social media button, social media manager, social media plugin, social media publishing, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing, Revive, Revive posts, Revive old posts, old posts, Reshare, Re-Share, automatically re-post, automatically reshare, auto repost, auto republish, recycle posts, bulk schedule, Google My Business, Google posts, imgur, vk, vkontakte, Vkontakte.ru, vk.com. Telegram, Telegram channels, Telegram groups, share multiple images, image gallery
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
Tested up to: 5.6
|
8 |
+
Stable tag: 6.6.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
16 |
Autopost, cross-promote, schedule and automatically share your blog posts to social networks such as **Facebook, Twitter, Google My Business, LinkedIn, XING, Instagram, Pinterest, Imgur, Flickr, Reddit, VK.com, Medium, Tumblr, Torial, Diigo, Bloglovin and Telegram.**
|
17 |
Blog2Social automatically creates social media posts for your content and auto-posts at the best times for each network. Save time and pain of manually sharing and promoting your site on social media.
|
18 |
|
19 |
+
_Compatible with WooCommerce, Gutenberg Editor, Hummingbird, Bitly, Rebrand.ly, Sniply, WP Automatic Plugin, Page Builder & RSS Importer._
|
20 |
|
21 |
+
* Version 6.6: Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
|
22 |
|
23 |
Download Blog2Social today to make your social media marketing for your WordPress site or blog easier than ever. Blog2Social is a freemium plugin, with a free comprehensive basic version and premium plans offering more advanced features. To ensure compliance with the high quality standards of the new networks’ API rules and community guidelines, some functions of the auto-poster are premium features and not part of the free version.
|
24 |
The Blog2Social free version offers you a wide range of features. ([See what’s included in the free version](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features")).
|
89 |
Share and schedule links and posts from any source to **automatically fill your social media feeds with a consistent content mix** of your own content and third-party content. Import content via RSS or share any URL-Link, or use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share or schedule them whenever you want.
|
90 |
|
91 |
|
92 |
+
**#6 Create Social Media Posts any source** – share updates, images, texts, links and video links from one central platform and schedule all your social media posts in one social media calendar.
|
93 |
|
94 |
Save valuable time by managing your complete **social media content right from your WordPress dashboard.**
|
95 |
|
125 |
* Portuguese
|
126 |
* Russian
|
127 |
* Spanish
|
128 |
+
* Italian
|
129 |
+
* Swedish
|
130 |
|
131 |
**Contributors**
|
132 |
|
133 |
* Thanks to [Almaz](https://almazworks.com/ "Almaz") for translating this plugin into Russian
|
134 |
* Thanks to [Olivier](https://extraspeech.com/ "Olivier") for translating this plugin into French
|
135 |
+
* Thanks to [Daniel](https://bananklubben.se/ "Daniel Guldstrand") for translating this plugin into Swedish
|
136 |
+
* Thanks to [Olga](https://jascin.net "Olga Jascin") and [Francesco](https://ceotech.it "Francesco Palmieri") for translating this plugin into Italian
|
137 |
|
138 |
== Installation ==
|
139 |
1. Go to the Admin Panel of your WordPress dashboard
|
140 |
|
141 |
+
2. Select "Plugin" -> "Add New" in the left hand side menu
|
142 |
|
143 |
3. Enter "Blog2Social" in the "Search Plugins" text field
|
144 |
|
221 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
222 |
|
223 |
== Changelog ==
|
224 |
+
= 6.6.0 =
|
225 |
+
Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
|
226 |
= 6.5.8 =
|
227 |
Usability Optimization
|
228 |
= 6.5.7 =
|
309 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
+
= 6.6.0 =
|
313 |
+
Share text-posts and video links, Instagram hashtag shuffle and Telegram add-on for your Smart or Pro license
|
314 |
= 6.5.8 =
|
315 |
Usability Optimization
|
316 |
= 6.5.7 =
|
views/b2s/autopost.php
CHANGED
@@ -78,3 +78,20 @@ $autoPostItem = new B2S_AutoPost_Item();
|
|
78 |
</div>
|
79 |
</div>
|
80 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
</div>
|
79 |
</div>
|
80 |
</div>
|
81 |
+
|
82 |
+
<div class="modal fade" id="b2sAutoPostBestTimesInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sAutoPostBestTimesInfoModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
83 |
+
<div class="modal-dialog">
|
84 |
+
<div class="modal-content">
|
85 |
+
<div class="modal-header">
|
86 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sAutoPostBestTimesInfoModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
87 |
+
<h4 class="modal-title"><?php esc_html_e('Apply best times', 'blog2social') ?></h4>
|
88 |
+
</div>
|
89 |
+
<div class="modal-body">
|
90 |
+
<?php echo sprintf(__('The time of publishing a post can play a decisive role in achieving more likes, shares and comments as well as a wide reach. Each social media network has it\'s "best times". Blog2Social provides you with predefined best times. When you activate the "best times" for your Auto-Poster, your WordPress posts and pages will be shared automatically at the "best times". Get more information about the "best times" in the guide "<a href="%s" target="_blank">The Best Times to Post on Social Media</a>".', 'blog2social'), B2S_Tools::getSupportLink('besttimes_blogpost')); ?>
|
91 |
+
<br>
|
92 |
+
<br>
|
93 |
+
<?php echo sprintf(__('Please note: You can also set up your own "best times". You will learn how to set up your own "best times" in this <a href="%s" target="_blank">guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('besttimes_faq')); ?>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
</div>
|
97 |
+
</div>
|
views/b2s/curation.php
CHANGED
@@ -43,11 +43,15 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
43 |
<div class="row b2s-curation-select">
|
44 |
<div class="col-md-12">
|
45 |
<button class="btn btn-primary btn-sm b2s-curation-format-link pull-left"><?php esc_html_e('Link Post', 'blog2social') ?></button>
|
46 |
-
|
47 |
-
|
|
|
|
|
48 |
<?php } else { ?>
|
49 |
-
<button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left"><?php esc_html_e('Image Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("
|
|
|
50 |
<?php } ?>
|
|
|
51 |
<input type="hidden" id="b2s-curation-post-format" value="0">
|
52 |
</div>
|
53 |
</div>
|
@@ -62,7 +66,8 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
62 |
<div class="b2s-curation-input-area">
|
63 |
<div class="col-md-12">
|
64 |
<div class="row form-group">
|
65 |
-
<p class="b2s-curation-input-area-info-header-text"> <?php esc_html_e("Enter a link you want share on your social media
|
|
|
66 |
<small id="b2s-curation-input-url-help" class="form-text text-muted b2s-color-text-red"><?php esc_html_e("Please enter a valid link", "blog2social") ?></small>
|
67 |
<input type="email" class="form-control" id="b2s-curation-input-url" value="" placeholder="<?php esc_html_e("Enter link", "blog2social"); ?>">
|
68 |
<div class="clearfix"></div>
|
@@ -102,8 +107,23 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
102 |
<div class="clearfix"></div>
|
103 |
</div>
|
104 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
<div class="b2s-curation-settings-area"></div>
|
106 |
<input type="hidden" id="b2s-draft-id" value="" name="b2s-draft-id">
|
|
|
107 |
</form>
|
108 |
<div class="row b2s-curation-post-list-area">
|
109 |
<div class="b2s-curation-post-list"></div>
|
@@ -196,32 +216,32 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
196 |
<div class="modal-content">
|
197 |
<div class="modal-header">
|
198 |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
199 |
-
<h4 class="modal-title"><?php esc_html_e('
|
|
|
200 |
</div>
|
201 |
<div class="modal-body">
|
202 |
<p><?php
|
203 |
-
|
204 |
-
|
205 |
-
if (B2S_PLUGIN_USER_VERSION == 0) {
|
206 |
?>
|
|
|
|
|
207 |
<br>
|
208 |
-
<hr>
|
209 |
-
<h4><?php esc_html_e('You want to create image posts with any image from your media library?', 'blog2social'); ?></h4>
|
210 |
-
<?php esc_html_e('With Blog2Social Premium you can:', 'blog2social') ?>
|
211 |
<br>
|
|
|
212 |
<br>
|
213 |
-
|
214 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Share on multiple profiles, pages and groups', 'blog2social') ?><br>
|
215 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Auto-post and auto-schedule new and updated blog posts', 'blog2social') ?><br>
|
216 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule your posts at the best times on each network', 'blog2social') ?><br>
|
217 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Best Time Manager: use predefined best time scheduler to auto-schedule your social media posts', 'blog2social') ?><br>
|
218 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule your post for one time, multiple times or recurrently', 'blog2social') ?><br>
|
219 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule and re-share old posts', 'blog2social') ?><br>
|
220 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Select link format or image format for your posts', 'blog2social') ?><br>
|
221 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Select individual images per post', 'blog2social') ?><br>
|
222 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Reporting & calendar: keep track of your published and scheduled social media posts', 'blog2social') ?><br>
|
223 |
<br>
|
224 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
<br>
|
226 |
<center> <?php echo sprintf(__('or <a target="_blank" href="%s">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)', 'blog2social'), esc_url('https://service.blog2social.com/trial')); ?> </center>
|
227 |
<?php } ?>
|
@@ -230,6 +250,38 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
230 |
</div>
|
231 |
</div>
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
<div id="b2s-network-select-image" class="modal fade" role="dialog" aria-labelledby="b2s-network-select-image" aria-hidden="true" data-backdrop="false" style="display:none;">
|
234 |
<div class="modal-dialog modal-lg">
|
235 |
<div class="modal-content">
|
43 |
<div class="row b2s-curation-select">
|
44 |
<div class="col-md-12">
|
45 |
<button class="btn btn-primary btn-sm b2s-curation-format-link pull-left"><?php esc_html_e('Link Post', 'blog2social') ?></button>
|
46 |
+
<button class="btn btn-light btn-sm b2s-curation-format-video pull-left"><?php esc_html_e('Video Post', 'blog2social') ?></button>
|
47 |
+
<?php if(B2S_PLUGIN_USER_VERSION > 1) { ?>
|
48 |
+
<button class="btn btn-light btn-sm b2s-curation-format-image pull-left"><?php esc_html_e('Image Post', 'blog2social') ?></button>
|
49 |
+
<button class="btn btn-light btn-sm b2s-curation-format-text pull-left"><?php esc_html_e('Text Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("NEW", "blog2social") ?></span></button>
|
50 |
<?php } else { ?>
|
51 |
+
<button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left" data-type="image"><?php esc_html_e('Image Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("PRO", "blog2social") ?></span></button>
|
52 |
+
<button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left" data-type="text"><?php esc_html_e('Text Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("PRO", "blog2social") ?></span></button>
|
53 |
<?php } ?>
|
54 |
+
<button class="btn btn-sm btn-link b2sTextPostInfoModalBtn">Info</button>
|
55 |
<input type="hidden" id="b2s-curation-post-format" value="0">
|
56 |
</div>
|
57 |
</div>
|
66 |
<div class="b2s-curation-input-area">
|
67 |
<div class="col-md-12">
|
68 |
<div class="row form-group">
|
69 |
+
<p class="b2s-curation-input-area-info-header-text"> <?php esc_html_e("Enter a link you want to share on your social media networks. You can also share a video link, for example from YouTube or from Vimeo (also see Video Post).", "blog2social"); ?></p>
|
70 |
+
<p class="b2s-curation-input-area-info-header-text-video"> <?php esc_html_e("Enter a video link you want to share on your social media networks, for example from YouTube or from Vimeo.", "blog2social"); ?></p>
|
71 |
<small id="b2s-curation-input-url-help" class="form-text text-muted b2s-color-text-red"><?php esc_html_e("Please enter a valid link", "blog2social") ?></small>
|
72 |
<input type="email" class="form-control" id="b2s-curation-input-url" value="" placeholder="<?php esc_html_e("Enter link", "blog2social"); ?>">
|
73 |
<div class="clearfix"></div>
|
107 |
<div class="clearfix"></div>
|
108 |
</div>
|
109 |
</div>
|
110 |
+
<div class="row b2s-curation-text-area">
|
111 |
+
<div class="col-md-12">
|
112 |
+
<input type="hidden" id="b2s_user_timezone" name="b2s_user_timezone" value="<?php echo $userTimeZoneOffset ?>">
|
113 |
+
<div class="b2s-curation-form-area">
|
114 |
+
<div class="col-xs-12 col-sm-12 col-lg-12" style="padding: 0px;padding-top: 20px;">
|
115 |
+
<div class="b2s-post-item-details-item-message-area">
|
116 |
+
<textarea id="b2s-post-curation-comment-text" class="form-control b2s-post-item-details-item-message-input" name="comment_text" placeholder="<?php esc_html_e('Write something...', 'blog2social'); ?>"></textarea>
|
117 |
+
<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn"><img src="<?php echo esc_url(plugins_url('/assets/images/b2s-emoji.png', B2S_PLUGIN_FILE)); ?>"/></button>
|
118 |
+
</div>
|
119 |
+
</div>
|
120 |
+
<div class="clearfix"></div>
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
<div class="b2s-curation-settings-area"></div>
|
125 |
<input type="hidden" id="b2s-draft-id" value="" name="b2s-draft-id">
|
126 |
+
<textarea id="b2s-post-curation-comment-dummy" style="display:none;"></textarea>
|
127 |
</form>
|
128 |
<div class="row b2s-curation-post-list-area">
|
129 |
<div class="b2s-curation-post-list"></div>
|
216 |
<div class="modal-content">
|
217 |
<div class="modal-header">
|
218 |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
219 |
+
<h4 class="modal-title" id="b2s-modal-header-image"><?php esc_html_e('You want to create image posts with any image from your media library?', 'blog2social'); ?></h4>
|
220 |
+
<h4 class="modal-title" id="b2s-modal-header-text"><?php esc_html_e('You want to create text posts?', 'blog2social'); ?></h4>
|
221 |
</div>
|
222 |
<div class="modal-body">
|
223 |
<p><?php
|
224 |
+
if (B2S_PLUGIN_USER_VERSION <= 1) {
|
|
|
|
|
225 |
?>
|
226 |
+
|
227 |
+
<?php esc_html_e('With Blog2Social you can share your WordPress posts and pages as well as create your own social media posts to share any content based on text, links, images, or video links, or even third-party content from any sources. This enables you to manage all your social media content in one place directly from your WordPress dashboard. Schedule and share link posts, text posts, image posts, and video posts (video links, for example from Youtube) and provide your followers with the best content-mix on your social media networks.', 'blog2social') ?>
|
228 |
<br>
|
|
|
|
|
|
|
229 |
<br>
|
230 |
+
<p class="b2s-bold"><?php esc_html_e('Unlock Blog2Social Premium Pro to create and share image posts, video links, and text posts from any source.', 'blog2social') ?></p>
|
231 |
<br>
|
232 |
+
<?php esc_html_e('Share image posts:', 'blog2social') ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
<br>
|
234 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Grab more attention for your content with photos, videos, or infographics.', 'blog2social') ?><br>
|
235 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Share images to get them into the Google image search to further increase your outreach and traffic from search engines.', 'blog2social') ?><br>
|
236 |
+
<br>
|
237 |
+
<?php esc_html_e('Share text posts:', 'blog2social') ?>
|
238 |
+
<br>
|
239 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Share pure text messages and personal comments with your followers and readers.', 'blog2social') ?><br>
|
240 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Use hashtags, @mentions, or emojis to share your feelings.', 'blog2social') ?><br>
|
241 |
+
<br>
|
242 |
+
<?php echo sprintf(__('Learn more about how to share social media posts in the <a href="%s" target="_blank">social media posts guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('cc_info_faq')); ?>
|
243 |
+
<br>
|
244 |
+
<a target="_blank" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>" class="btn btn-success center-block"><?php esc_html_e('Upgrade to PRO and above', 'blog2social') ?></a>
|
245 |
<br>
|
246 |
<center> <?php echo sprintf(__('or <a target="_blank" href="%s">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)', 'blog2social'), esc_url('https://service.blog2social.com/trial')); ?> </center>
|
247 |
<?php } ?>
|
250 |
</div>
|
251 |
</div>
|
252 |
|
253 |
+
<div class="modal fade" id="b2sTextPostInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sTextPostInfoModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
254 |
+
<div class="modal-dialog">
|
255 |
+
<div class="modal-content">
|
256 |
+
<div class="modal-header">
|
257 |
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
258 |
+
<h4 class="modal-title" ><?php esc_html_e('Text Post', 'blog2social'); ?></h4>
|
259 |
+
</div>
|
260 |
+
<div class="modal-body">
|
261 |
+
<?php esc_html_e('Text posts enable you to share pure text messages and personal comments with your followers and readers. You can also use hashtags, @mentions, or emojis to share your feelings. You can share a text post on the following networks:', 'blog2social') ?>
|
262 |
+
<br>
|
263 |
+
<br>
|
264 |
+
Facebook<br>
|
265 |
+
Twitter<br>
|
266 |
+
Linkedin<br>
|
267 |
+
Tumblr<br>
|
268 |
+
Diigo<br>
|
269 |
+
Medium<br>
|
270 |
+
Torial<br>
|
271 |
+
Reddit<br>
|
272 |
+
Bloglovin<br>
|
273 |
+
VK<br>
|
274 |
+
Google My Business<br>
|
275 |
+
Xing<br>
|
276 |
+
Telegram<br>
|
277 |
+
<br>
|
278 |
+
<br>
|
279 |
+
<?php echo sprintf(__('Get more information on how to share a text post with hashtags, @mentions and emojis in the <a href="%s" target="_blank">social media posts guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('cc_text_post_info')); ?>
|
280 |
+
</div>
|
281 |
+
</div>
|
282 |
+
</div>
|
283 |
+
</div>
|
284 |
+
|
285 |
<div id="b2s-network-select-image" class="modal fade" role="dialog" aria-labelledby="b2s-network-select-image" aria-hidden="true" data-backdrop="false" style="display:none;">
|
286 |
<div class="modal-dialog modal-lg">
|
287 |
<div class="modal-content">
|
views/b2s/html/footer.php
CHANGED
@@ -77,7 +77,7 @@
|
|
77 |
<div class="modal-body auth-network">
|
78 |
<b><?php esc_html_e('Activate Blog2Social PREMIUM PRO.', 'blog2social') ?></b>
|
79 |
<br>
|
80 |
-
<?php esc_html_e('With Blog2Social Premium PRO you can connect
|
81 |
<br>
|
82 |
<br>
|
83 |
<?php esc_html_e('Also included:', 'blog2social') ?>
|
@@ -430,12 +430,12 @@
|
|
430 |
<div class="modal-content">
|
431 |
<div class="modal-header">
|
432 |
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoAssignAutoPost" aria-label="Close"><span aria-hidden="true">×</span></button>
|
433 |
-
<h4 class="modal-title"><?php esc_html_e('
|
434 |
</div>
|
435 |
<div class="modal-body">
|
436 |
-
<?php esc_html_e('With Blog2Social you can transfer the Auto-Poster settings as a WordPress-administrator to other
|
437 |
<br>
|
438 |
-
<?php echo sprintf(__('You
|
439 |
<br>
|
440 |
</div>
|
441 |
</div>
|
77 |
<div class="modal-body auth-network">
|
78 |
<b><?php esc_html_e('Activate Blog2Social PREMIUM PRO.', 'blog2social') ?></b>
|
79 |
<br>
|
80 |
+
<?php esc_html_e('With Blog2Social Premium PRO you can connect Facebook, Linkedin, Xing and VK pages as well as Facebook, XING and VK groups.', 'blog2social') ?>
|
81 |
<br>
|
82 |
<br>
|
83 |
<?php esc_html_e('Also included:', 'blog2social') ?>
|
430 |
<div class="modal-content">
|
431 |
<div class="modal-header">
|
432 |
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoAssignAutoPost" aria-label="Close"><span aria-hidden="true">×</span></button>
|
433 |
+
<h4 class="modal-title"><?php esc_html_e('Transfer Auto-Poster settings to other users (Business):', 'blog2social') ?></h4>
|
434 |
</div>
|
435 |
<div class="modal-body">
|
436 |
+
<?php esc_html_e('With Blog2Social you can transfer the Auto-Poster settings as a WordPress-administrator to other users if they have activated the same Blog2Social-Business license. This way, you can also assign social media accounts to other users, so they can auto-post without setting up these connections in each user account. Within these settings, you can also decide whether newly published or updated content from other users should be automatically shared. Users with an assigned Auto-Poster setting and an assigned social-media-network group will then share content automatically how you selected the content to be shared automatically.', 'blog2social') ?>
|
437 |
<br>
|
438 |
+
<?php echo sprintf(__('You will get more information on how to assign the Auto-Poster settings in the <a target="_blank" href="%s">Auto-Poster guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('auto_post_assign'))) ?>
|
439 |
<br>
|
440 |
</div>
|
441 |
</div>
|
views/b2s/html/header.php
CHANGED
@@ -229,7 +229,7 @@ if (!B2S_System::isblockedArea('B2S_USER_POLICY', B2S_PLUGIN_ADMIN)) {
|
|
229 |
</div>
|
230 |
<div class="panel panel-group b2s-left-border-danger b2s-re-post-limit-error" style="display: none;">
|
231 |
<div class="panel-body">
|
232 |
-
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php echo esc_html__('Your limit for your quota of posts in your queue has been reached. Please
|
233 |
</div>
|
234 |
</div>
|
235 |
|
@@ -261,7 +261,7 @@ if (!B2S_System::isblockedArea('B2S_MENU_MODUL_RATING', B2S_PLUGIN_ADMIN)) {
|
|
261 |
|
262 |
<?php if (!B2S_System::isblockedArea('', B2S_PLUGIN_ADMIN, true)) { ?>
|
263 |
<!--Info-Trail-->
|
264 |
-
<?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END") && !get_option('B2S_HIDE_PREMIUM_MESSAGE') && (isset($_GET['page']) && in_array($_GET['page'], array("blog2social", "blog2social-post", "blog2social-sched", "blog2social-publish", "blog2social-calendar")))) { ?>
|
265 |
<div class="panel panel-group b2s-trail-premium-info-area b2s-notice">
|
266 |
<div class="panel-body">
|
267 |
<div class="b2s-hide-premium-message b2s-close"><i class="glyphicon glyphicon-remove"></i></div>
|
229 |
</div>
|
230 |
<div class="panel panel-group b2s-left-border-danger b2s-re-post-limit-error" style="display: none;">
|
231 |
<div class="panel-body">
|
232 |
+
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php echo esc_html__('Your limit for your quota of posts in your queue has been reached. Please delete posts from your queue before you add more', 'blog2social') . ((B2S_PLUGIN_USER_VERSION < 3) ? esc_html__(' or upgade your Blog2Social license to extend your quota.', 'blog2social') : '.'); ?>
|
233 |
</div>
|
234 |
</div>
|
235 |
|
261 |
|
262 |
<?php if (!B2S_System::isblockedArea('', B2S_PLUGIN_ADMIN, true)) { ?>
|
263 |
<!--Info-Trail-->
|
264 |
+
<?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END") && !get_option('B2S_PLUGIN_DISABLE_TRAIL') && !get_option('B2S_HIDE_PREMIUM_MESSAGE') && (isset($_GET['page']) && in_array($_GET['page'], array("blog2social", "blog2social-post", "blog2social-sched", "blog2social-publish", "blog2social-calendar")))) { ?>
|
265 |
<div class="panel panel-group b2s-trail-premium-info-area b2s-notice">
|
266 |
<div class="panel-body">
|
267 |
<div class="b2s-hide-premium-message b2s-close"><i class="glyphicon glyphicon-remove"></i></div>
|
views/b2s/html/post.navbar.php
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
<?php
|
2 |
$getPage = $_GET['page'];
|
3 |
$isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
|
|
|
|
4 |
?>
|
5 |
<!--Navbar Start-->
|
6 |
<div class="col-md-12 pull-left b2s-post-menu del-padding-left">
|
@@ -16,7 +18,7 @@ $isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
|
16 |
<?php if ($getPage != "blog2social") { ?>
|
17 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-publish') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-publish" href="admin.php?page=blog2social-publish"><?php esc_html_e('Shared Posts', 'blog2social') ?></a>
|
18 |
<a class="btn btn-link b2s-post-btn b2s-post-repost" href="admin.php?page=blog2social-repost"><?php esc_html_e('Re-Share Posts', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
19 |
-
<a class="btn btn-<?php echo ($getPage == 'blog2social-notice') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-notice" href="admin.php?page=blog2social-notice"><?php esc_html_e('Notifications', 'blog2social') ?></a>
|
20 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-calendar') ? 'primary' : 'link'; ?> b2s-post-btn" href="admin.php?page=blog2social-calendar"><?php esc_html_e('Calendar', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
21 |
<?php } ?>
|
22 |
</div>
|
1 |
<?php
|
2 |
$getPage = $_GET['page'];
|
3 |
$isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
4 |
+
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Post/Tools.php');
|
5 |
+
$noticeCount = B2S_Post_Tools::countNewNotifications(B2S_PLUGIN_BLOG_USER_ID);
|
6 |
?>
|
7 |
<!--Navbar Start-->
|
8 |
<div class="col-md-12 pull-left b2s-post-menu del-padding-left">
|
18 |
<?php if ($getPage != "blog2social") { ?>
|
19 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-publish') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-publish" href="admin.php?page=blog2social-publish"><?php esc_html_e('Shared Posts', 'blog2social') ?></a>
|
20 |
<a class="btn btn-link b2s-post-btn b2s-post-repost" href="admin.php?page=blog2social-repost"><?php esc_html_e('Re-Share Posts', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
21 |
+
<a class="btn btn-<?php echo ($getPage == 'blog2social-notice') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-notice" href="admin.php?page=blog2social-notice"><?php esc_html_e('Notifications', 'blog2social'); if($noticeCount > 0) {echo ' <span class="b2s-notice-counter">' . $noticeCount . '</span>';} ?></a>
|
22 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-calendar') ? 'primary' : 'link'; ?> b2s-post-btn" href="admin.php?page=blog2social-calendar"><?php esc_html_e('Calendar', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
23 |
<?php } ?>
|
24 |
</div>
|
views/b2s/html/sidebar.php
CHANGED
@@ -41,7 +41,7 @@ $customizeArea = B2S_System::customizeArea();
|
|
41 |
<?php
|
42 |
if (B2S_PLUGIN_USER_VERSION == 0) {
|
43 |
echo "<br>";
|
44 |
-
if (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()) {
|
45 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="' . B2S_Tools::getSupportLink('affiliate') . '">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>';
|
46 |
} else {
|
47 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="' . B2S_Tools::getSupportLink('feature') . '">' . esc_html__('Start your 30-day free Premium trial', 'blog2social') . '</a>';
|
@@ -131,7 +131,7 @@ $customizeArea = B2S_System::customizeArea();
|
|
131 |
<hr>
|
132 |
<ul>
|
133 |
<li class="b2s-list-margin-left-10">
|
134 |
-
<i class="glyphicon glyphicon-user glyphicon-success"></i> <a href="admin.php?page=blog2social-network" class="b2s-sidebar-menu-item"><?php esc_html_e("Social
|
135 |
</li>
|
136 |
<li class="b2s-list-margin-left-10">
|
137 |
<i class="glyphicon glyphicon-cog glyphicon-success"></i> <a href="admin.php?page=blog2social-settings" class="b2s-sidebar-menu-item"><?php esc_html_e("Settings", "blog2social") ?></a>
|
41 |
<?php
|
42 |
if (B2S_PLUGIN_USER_VERSION == 0) {
|
43 |
echo "<br>";
|
44 |
+
if ((defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()) || get_option('B2S_PLUGIN_DISABLE_TRAIL') == true) {
|
45 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="' . B2S_Tools::getSupportLink('affiliate') . '">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>';
|
46 |
} else {
|
47 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="' . B2S_Tools::getSupportLink('feature') . '">' . esc_html__('Start your 30-day free Premium trial', 'blog2social') . '</a>';
|
131 |
<hr>
|
132 |
<ul>
|
133 |
<li class="b2s-list-margin-left-10">
|
134 |
+
<i class="glyphicon glyphicon-user glyphicon-success"></i> <a href="admin.php?page=blog2social-network" class="b2s-sidebar-menu-item"><?php esc_html_e("Social Media Networks", "blog2social") ?></a>
|
135 |
</li>
|
136 |
<li class="b2s-list-margin-left-10">
|
137 |
<i class="glyphicon glyphicon-cog glyphicon-success"></i> <a href="admin.php?page=blog2social-settings" class="b2s-sidebar-menu-item"><?php esc_html_e("Settings", "blog2social") ?></a>
|
views/b2s/html/sidebar.ship.php
CHANGED
@@ -40,7 +40,7 @@ $customizeArea = B2S_System::customizeArea();
|
|
40 |
<?php
|
41 |
if(B2S_PLUGIN_USER_VERSION == 0) {
|
42 |
echo "<br>";
|
43 |
-
if(defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()){
|
44 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="'.B2S_Tools::getSupportLink('affiliate').'">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>';
|
45 |
} else {
|
46 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="'.B2S_Tools::getSupportLink('feature').'">' . esc_html__('Start your 30-day free Premium trial', 'blog2social') . '</a>';
|
40 |
<?php
|
41 |
if(B2S_PLUGIN_USER_VERSION == 0) {
|
42 |
echo "<br>";
|
43 |
+
if((defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()) || get_option('B2S_PLUGIN_DISABLE_TRAIL') == true){
|
44 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="'.B2S_Tools::getSupportLink('affiliate').'">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>';
|
45 |
} else {
|
46 |
echo '<a class="btn-link b2s-free-link" target="_blank" href="'.B2S_Tools::getSupportLink('feature').'">' . esc_html__('Start your 30-day free Premium trial', 'blog2social') . '</a>';
|
views/b2s/network.php
CHANGED
@@ -200,7 +200,7 @@ $networkData = $networkItem->getData();
|
|
200 |
<input type="hidden" value="" id="b2s-modify-board-and-group-network-id">
|
201 |
<input type="hidden" value="" id="b2s-modify-board-and-group-network-type">
|
202 |
<input type="hidden" value="" id="b2s-modify-board-and-group-name">
|
203 |
-
<button class="btn btn-sm btn-success b2s-modify-board-and-group-network-save-btn"><?php esc_html_e('
|
204 |
</div>
|
205 |
</div>
|
206 |
</div>
|
@@ -347,7 +347,7 @@ $networkData = $networkItem->getData();
|
|
347 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="board" style="display:none;"><?php echo esc_html_e('You have not yet created any pinboards in your Pinterest account. Please set up at least one pinboard to pin on your Pinterest account!', 'blog2social'); ?></div>
|
348 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
349 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
350 |
-
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your
|
351 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="error_code_403" style="display:none;"><?php esc_html_e('Access to this resource on your server is denied! Please check your webserver configuration for caching.', 'blog2social'); ?></div>
|
352 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
353 |
<div class="form-group row">
|
@@ -484,7 +484,7 @@ $networkData = $networkItem->getData();
|
|
484 |
<div class="alert alert-danger"><span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("The connection has already been assigned to this user.", 'blog2social'); ?></div>
|
485 |
</div>
|
486 |
<div class="col-md-12 b2s-assign-error" data-error-reason="network_auth_not_exists" style="display: none;">
|
487 |
-
<div class="alert alert-danger"><span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("The connection
|
488 |
</div>
|
489 |
<div class="col-md-12 b2s-assign-error" data-error-reason="network_auth_assign_exists" style="display: none;">
|
490 |
<div class="alert alert-danger"><span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("This connection has already been assigned to this user.", 'blog2social'); ?></div>
|
200 |
<input type="hidden" value="" id="b2s-modify-board-and-group-network-id">
|
201 |
<input type="hidden" value="" id="b2s-modify-board-and-group-network-type">
|
202 |
<input type="hidden" value="" id="b2s-modify-board-and-group-name">
|
203 |
+
<button class="btn btn-sm btn-success b2s-modify-board-and-group-network-save-btn"><?php esc_html_e('modify', 'blog2social') ?></button>
|
204 |
</div>
|
205 |
</div>
|
206 |
</div>
|
347 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="board" style="display:none;"><?php echo esc_html_e('You have not yet created any pinboards in your Pinterest account. Please set up at least one pinboard to pin on your Pinterest account!', 'blog2social'); ?></div>
|
348 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
349 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
350 |
+
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your correct server location and connect again.', 'blog2social'); ?></div>
|
351 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="error_code_403" style="display:none;"><?php esc_html_e('Access to this resource on your server is denied! Please check your webserver configuration for caching.', 'blog2social'); ?></div>
|
352 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
353 |
<div class="form-group row">
|
484 |
<div class="alert alert-danger"><span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("The connection has already been assigned to this user.", 'blog2social'); ?></div>
|
485 |
</div>
|
486 |
<div class="col-md-12 b2s-assign-error" data-error-reason="network_auth_not_exists" style="display: none;">
|
487 |
+
<div class="alert alert-danger"><span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("The connection does not exist.", 'blog2social'); ?></div>
|
488 |
</div>
|
489 |
<div class="col-md-12 b2s-assign-error" data-error-reason="network_auth_assign_exists" style="display: none;">
|
490 |
<div class="alert alert-danger"><span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e("This connection has already been assigned to this user.", 'blog2social'); ?></div>
|
views/b2s/partials/post-edit-modal.php
CHANGED
@@ -37,6 +37,15 @@
|
|
37 |
<?php } ?>
|
38 |
|
39 |
<?= $item->getEditHtml(); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
<div class="panel panel-group">
|
41 |
<div class="b2s-post-item-details-release-area-details">
|
42 |
<!-- deprecated Network Xing,G+ 8,10 -->
|
37 |
<?php } ?>
|
38 |
|
39 |
<?= $item->getEditHtml(); ?>
|
40 |
+
<div class="pull-right">
|
41 |
+
<a href="#" class="btn btn-primary btn-xs b2s-get-settings-sched-time-user">
|
42 |
+
Meine Zeit-Einstellungen laden </a>
|
43 |
+
|
44 |
+
<a href="#" class="btn btn-primary btn-xs b2s-get-settings-sched-time-default">
|
45 |
+
Lade beste Zeiten </a>
|
46 |
+
<a href="#" class="btn btn-link btn-xs hidden-sm b2s-load-settings-sched-time-default-info b2sInfoSchedTimesModalBtn">Info</a>
|
47 |
+
</div>
|
48 |
+
<div class="clearfix"></div>
|
49 |
<div class="panel panel-group">
|
50 |
<div class="b2s-post-item-details-release-area-details">
|
51 |
<!-- deprecated Network Xing,G+ 8,10 -->
|
views/b2s/post.notice.php
CHANGED
@@ -3,7 +3,10 @@ wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
|
3 |
/* Data */
|
4 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Post/Filter.php');
|
5 |
require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
|
|
6 |
$b2sShowByDate = isset($_GET['b2sShowByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_GET['b2sShowByDate'])) ? trim($_GET['b2sShowByDate']) : "") : ""; //YYYY-mm-dd
|
|
|
|
|
7 |
?>
|
8 |
|
9 |
<div class="b2s-container">
|
3 |
/* Data */
|
4 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Post/Filter.php');
|
5 |
require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
6 |
+
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
7 |
$b2sShowByDate = isset($_GET['b2sShowByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_GET['b2sShowByDate'])) ? trim($_GET['b2sShowByDate']) : "") : ""; //YYYY-mm-dd
|
8 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
9 |
+
$options->_setOption('lastNotificationUpdate', date('Y-m-d H:i:s'));
|
10 |
?>
|
11 |
|
12 |
<div class="b2s-container">
|
views/b2s/post.sched.php
CHANGED
@@ -30,7 +30,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
30 |
<!--Filter Start-->
|
31 |
<div class="b2s-post">
|
32 |
<div class="grid-body">
|
33 |
-
<div class="pull-right"><code id="b2s-user-time"><?php echo B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2)); ?> <?php echo ((substr(B2S_LANGUAGE, 0, 2) == 'de') ? esc_html__('
|
34 |
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/post.navbar.php'); ?>
|
35 |
<!-- Filter Post Start-->
|
36 |
<form class="b2sSortForm form-inline pull-left" action="#">
|
@@ -87,7 +87,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
87 |
<div class="modal-content">
|
88 |
<div class="modal-header">
|
89 |
<button type="button" class="b2s-modal-close close" data-modal-name=".b2s-delete-sched-modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
90 |
-
<h4 class="modal-title"><?php esc_html_e('Delete entries
|
91 |
</div>
|
92 |
<div class="modal-body">
|
93 |
<b><?php esc_html_e('You are sure, you want to delete entries from the scheduling?', 'blog2social') ?> </b>
|
30 |
<!--Filter Start-->
|
31 |
<div class="b2s-post">
|
32 |
<div class="grid-body">
|
33 |
+
<div class="pull-right"><code id="b2s-user-time"><?php echo B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2)); ?> <?php echo ((substr(B2S_LANGUAGE, 0, 2) == 'de') ? esc_html__('Clock', 'blog2social') : '') ?></code></div>
|
34 |
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/post.navbar.php'); ?>
|
35 |
<!-- Filter Post Start-->
|
36 |
<form class="b2sSortForm form-inline pull-left" action="#">
|
87 |
<div class="modal-content">
|
88 |
<div class="modal-header">
|
89 |
<button type="button" class="b2s-modal-close close" data-modal-name=".b2s-delete-sched-modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
90 |
+
<h4 class="modal-title"><?php esc_html_e('Delete entries from the scheduling', 'blog2social') ?></h4>
|
91 |
</div>
|
92 |
<div class="modal-body">
|
93 |
<b><?php esc_html_e('You are sure, you want to delete entries from the scheduling?', 'blog2social') ?> </b>
|
views/b2s/premium.php
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
}
|
23 |
?>
|
24 |
</span>
|
25 |
-
<?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END")) { ?>
|
26 |
<a class="btn btn-sm btn-primary pull-right" href="<?php echo B2S_Tools::getSupportLink('feature'); ?>" target="_blank"> <?php esc_html_e('Start your 30-day free Premium trial', 'blog2social') ?></a>
|
27 |
<?php } ?>
|
28 |
</h2>
|
@@ -179,7 +179,9 @@
|
|
179 |
</div>
|
180 |
<div class="row b2s-premium-btn-group">
|
181 |
<a class="btn btn-primary" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>" target="_blank"> <?php esc_html_e('Show me plans and prices', 'blog2social') ?></a>
|
182 |
-
|
|
|
|
|
183 |
</div>
|
184 |
</div>
|
185 |
<?php } ?>
|
22 |
}
|
23 |
?>
|
24 |
</span>
|
25 |
+
<?php if (B2S_PLUGIN_USER_VERSION == 0 && !defined("B2S_PLUGIN_TRAIL_END") && !get_option('B2S_PLUGIN_DISABLE_TRAIL')) { ?>
|
26 |
<a class="btn btn-sm btn-primary pull-right" href="<?php echo B2S_Tools::getSupportLink('feature'); ?>" target="_blank"> <?php esc_html_e('Start your 30-day free Premium trial', 'blog2social') ?></a>
|
27 |
<?php } ?>
|
28 |
</h2>
|
179 |
</div>
|
180 |
<div class="row b2s-premium-btn-group">
|
181 |
<a class="btn btn-primary" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>" target="_blank"> <?php esc_html_e('Show me plans and prices', 'blog2social') ?></a>
|
182 |
+
<?php if(!get_option('B2S_PLUGIN_DISABLE_TRAIL')) { ?>
|
183 |
+
<a class="btn btn-primary" href="<?php echo esc_url(B2S_Tools::getSupportLink('feature')); ?>" target="_blank"> <?php esc_html_e('Show all premium features', 'blog2social') ?></a>
|
184 |
+
<?php } ?>
|
185 |
</div>
|
186 |
</div>
|
187 |
<?php } ?>
|
views/b2s/repost.php
CHANGED
@@ -79,7 +79,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
79 |
<div class="modal-content">
|
80 |
<div class="modal-header">
|
81 |
<button type="button" class="b2s-modal-close close" data-modal-name=".b2s-delete-sched-modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
82 |
-
<h4 class="modal-title"><?php esc_html_e('Delete entries
|
83 |
</div>
|
84 |
<div class="modal-body">
|
85 |
<b><?php esc_html_e('You are sure, you want to delete entries from the scheduling?', 'blog2social') ?> </b>
|
79 |
<div class="modal-content">
|
80 |
<div class="modal-header">
|
81 |
<button type="button" class="b2s-modal-close close" data-modal-name=".b2s-delete-sched-modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
82 |
+
<h4 class="modal-title"><?php esc_html_e('Delete entries from the scheduling', 'blog2social') ?></h4>
|
83 |
</div>
|
84 |
<div class="modal-body">
|
85 |
<b><?php esc_html_e('You are sure, you want to delete entries from the scheduling?', 'blog2social') ?> </b>
|
views/b2s/settings.php
CHANGED
@@ -37,6 +37,18 @@ $settingsItem = new B2S_Settings_Item();
|
|
37 |
<li>
|
38 |
<a href="#b2s-social-meta-data" class="b2s-social-meta-data" data-toggle="tab"><?php esc_html_e('Social Meta Data', 'blog2social') ?></a>
|
39 |
</li>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
</ul>
|
41 |
<hr class="b2s-settings-line">
|
42 |
<div class="tab-content clearfix">
|
@@ -46,24 +58,76 @@ $settingsItem = new B2S_Settings_Item();
|
|
46 |
<div class="tab-pane" id="b2s-social-meta-data">
|
47 |
<form class="b2sSaveSocialMetaTagsSettings" method="post" novalidate="novalidate">
|
48 |
<?php echo $settingsItem->getSocialMetaDataHtml(); ?>
|
49 |
-
|
|
|
|
|
|
|
|
|
50 |
<input type="hidden" name="is_admin" value="<?php echo ((B2S_PLUGIN_ADMIN) ? 1 : 0) ?>">
|
51 |
<input type="hidden" name="version" value="<?php echo B2S_PLUGIN_USER_VERSION ?>">
|
52 |
<input type="hidden" name="action" value="b2s_save_social_meta_tags">
|
53 |
</form>
|
54 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
</div>
|
56 |
</div>
|
57 |
<input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
</div>
|
63 |
</div>
|
64 |
</div>
|
65 |
</div>
|
66 |
-
|
67 |
</div>
|
68 |
</div>
|
69 |
|
@@ -81,10 +145,10 @@ $settingsItem = new B2S_Settings_Item();
|
|
81 |
<div class="modal-content">
|
82 |
<div class="modal-header">
|
83 |
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoAllowShortcodeModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
84 |
-
<h4 class="modal-title"><?php esc_html_e('Allow shortcodes in my
|
85 |
</div>
|
86 |
<div class="modal-body">
|
87 |
-
|
88 |
</div>
|
89 |
</div>
|
90 |
</div>
|
@@ -98,7 +162,7 @@ $settingsItem = new B2S_Settings_Item();
|
|
98 |
<h4 class="modal-title"><?php esc_html_e('Activate Legacy mode ', 'blog2social') ?></h4>
|
99 |
</div>
|
100 |
<div class="modal-body">
|
101 |
-
|
102 |
</div>
|
103 |
</div>
|
104 |
</div>
|
@@ -112,7 +176,7 @@ $settingsItem = new B2S_Settings_Item();
|
|
112 |
<h4 class="modal-title"><?php esc_html_e('Instant Caching for Facebook Link Posts', 'blog2social') ?></h4>
|
113 |
</div>
|
114 |
<div class="modal-body">
|
115 |
-
|
116 |
</div>
|
117 |
</div>
|
118 |
</div>
|
@@ -126,7 +190,7 @@ $settingsItem = new B2S_Settings_Item();
|
|
126 |
<h4 class="modal-title"><?php esc_html_e('Personal Time Zone', 'blog2social') ?></h4>
|
127 |
</div>
|
128 |
<div class="modal-body">
|
129 |
-
|
130 |
</div>
|
131 |
</div>
|
132 |
</div>
|
37 |
<li>
|
38 |
<a href="#b2s-social-meta-data" class="b2s-social-meta-data" data-toggle="tab"><?php esc_html_e('Social Meta Data', 'blog2social') ?></a>
|
39 |
</li>
|
40 |
+
<li>
|
41 |
+
<a href="admin.php?page=blog2social-repost" class="b2s-re-post"><?php esc_html_e("Re-Share Posts", "blog2social") ?></a>
|
42 |
+
</li>
|
43 |
+
<li>
|
44 |
+
<a href="#b2s-network" class="b2s-network" data-toggle="tab"><?php esc_html_e("Social Media Networks", "blog2social") ?></a>
|
45 |
+
</li>
|
46 |
+
<li>
|
47 |
+
<a href="#b2s-times" class="b2s-times" data-toggle="tab"><?php esc_html_e("Social Media Time Settings", "blog2social") ?></a>
|
48 |
+
</li>
|
49 |
+
<li>
|
50 |
+
<a href="#b2s-templates" class="b2s-templates" data-toggle="tab"><?php esc_html_e("Post Templates", "blog2social") ?></a>
|
51 |
+
</li>
|
52 |
</ul>
|
53 |
<hr class="b2s-settings-line">
|
54 |
<div class="tab-content clearfix">
|
58 |
<div class="tab-pane" id="b2s-social-meta-data">
|
59 |
<form class="b2sSaveSocialMetaTagsSettings" method="post" novalidate="novalidate">
|
60 |
<?php echo $settingsItem->getSocialMetaDataHtml(); ?>
|
61 |
+
<button class="btn btn-primary pull-right" type="submit" <?php if (B2S_PLUGIN_ADMIN) {
|
62 |
+
echo '';
|
63 |
+
} else {
|
64 |
+
echo 'disabled="true"';
|
65 |
+
} ?>><?php esc_html_e('save', 'blog2social') ?></button>
|
66 |
<input type="hidden" name="is_admin" value="<?php echo ((B2S_PLUGIN_ADMIN) ? 1 : 0) ?>">
|
67 |
<input type="hidden" name="version" value="<?php echo B2S_PLUGIN_USER_VERSION ?>">
|
68 |
<input type="hidden" name="action" value="b2s_save_social_meta_tags">
|
69 |
</form>
|
70 |
</div>
|
71 |
+
<div class="tab-pane" id="b2s-network">
|
72 |
+
<p><strong><?php esc_html_e("Connect Blog2Social with 16 different social media networks you like to share your WordPress blog posts and pages as well as imported posts and social media posts on. The following networks are available:", "blog2social") ?></strong></p>
|
73 |
+
<br>
|
74 |
+
<ul class="list-group">
|
75 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Facebook" src="<?php echo plugins_url('/assets/images/portale/1_flat.png', B2S_PLUGIN_FILE) ?>"> Facebook</li>
|
76 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Twitter" src="<?php echo plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) ?>"> Twitter</li>
|
77 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Instagram" src="<?php echo plugins_url('/assets/images/portale/12_flat.png', B2S_PLUGIN_FILE) ?>"> Instagram</li>
|
78 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Google My Business" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>"> Google My Business</li>
|
79 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="LinkedIn" src="<?php echo plugins_url('/assets/images/portale/3_flat.png', B2S_PLUGIN_FILE) ?>"> LinkedIn</li>
|
80 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="XING" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>"> XING</li>
|
81 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Pinterest" src="<?php echo plugins_url('/assets/images/portale/6_flat.png', B2S_PLUGIN_FILE) ?>"> Pinterest</li>
|
82 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Reddit" src="<?php echo plugins_url('/assets/images/portale/15_flat.png', B2S_PLUGIN_FILE) ?>"> Reddit</li>
|
83 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Torial" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>"> Torial</li>
|
84 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Medium" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>"> Medium</li>
|
85 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Tumblr" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>"> Tumblr</li>
|
86 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Flickr" src="<?php echo plugins_url('/assets/images/portale/7_flat.png', B2S_PLUGIN_FILE) ?>"> Flickr</li>
|
87 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Diigo" src="<?php echo plugins_url('/assets/images/portale/9_flat.png', B2S_PLUGIN_FILE) ?>"> Diigo</li>
|
88 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Bloglovin" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>"> Bloglovin</li>
|
89 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="VK" src="<?php echo plugins_url('/assets/images/portale/17_flat.png', B2S_PLUGIN_FILE) ?>"> VK</li>
|
90 |
+
<li class="list-group-item"><img class="b2s-network-image" alt="Telegram" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>"> Telegram</li>
|
91 |
+
</ul>
|
92 |
+
<p><?php echo sprintf(__('You will find more information on how to connect your social media networks in the <a href="%s" target="_blank">connecting social media network guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('faq_network')); ?></p>
|
93 |
+
<br>
|
94 |
+
<a href="admin.php?page=blog2social-network" class="btn btn-sm btn-primary"><i class="glyphicon glyphicon-user"></i> <?php esc_html_e('Connect your social media networks', 'blog2social') ?></a>
|
95 |
+
</div>
|
96 |
+
<div class="tab-pane" id="b2s-times">
|
97 |
+
<p><?php esc_html_e('Use the pre-defined best time settings or define your own best time settings for sharing your posts . Posting at the right time can be essential to make sure your content is most likely be seen.', 'blog2social') ?></p>
|
98 |
+
<br>
|
99 |
+
<p><?php echo sprintf(__('You will find more information about the pre-defined best time settings by Blog2Social in this <a href="%s" target="_blank">best time guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('besttimes_blogpost')); ?></p>
|
100 |
+
<br>
|
101 |
+
<p><?php echo sprintf(__('An instruction on how to define your own best times is explained in the guide "<a href="%s" target="_blank">How do I set my own time setting to post on social media?</a>".', 'blog2social'), B2S_Tools::getSupportLink('besttimes_faq')); ?></p>
|
102 |
+
<br>
|
103 |
+
<a href="admin.php?page=blog2social-network" class="btn btn-sm btn-primary"><i class="glyphicon glyphicon-time"></i> <?php esc_html_e('Check, edit or define your social media time settings', 'blog2social') ?></a>
|
104 |
+
</div>
|
105 |
+
<div class="tab-pane" id="b2s-templates">
|
106 |
+
<p><strong><?php esc_html_e('Edit the post templates for each social media network to turn your social media posts automatically into tailored posts for each network and community. You can edit the structure of your post with the following variables:', 'blog2social') ?></strong></p>
|
107 |
+
<br>
|
108 |
+
<ul class="list-group">
|
109 |
+
<li class="list-group-item"><?php esc_html_e('Title: The title of your post.', 'blog2social') ?></li>
|
110 |
+
<li class="list-group-item"><?php esc_html_e('Content: The content of your post.', 'blog2social') ?></li>
|
111 |
+
<li class="list-group-item"><?php esc_html_e('Excerpt: The summary of your post (you define it in the side menu of your post).', 'blog2social') ?></li>
|
112 |
+
<li class="list-group-item"><?php esc_html_e('Keywords: The tags you have set in your post.', 'blog2social') ?></li>
|
113 |
+
<li class="list-group-item"><?php esc_html_e('Author: The author of the post.', 'blog2social') ?></li>
|
114 |
+
</ul>
|
115 |
+
<p><?php echo sprintf(__('You will find more information on how to use post templates for your social media posts in this <a href="%s" target="_blank">post template guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('template_faq')); ?></p>
|
116 |
+
<br>
|
117 |
+
<a href="admin.php?page=blog2social-network" class="btn btn-sm btn-primary"><i class="glyphicon glyphicon-pencil"></i> <?php esc_html_e('Define your post templates for each social media network', 'blog2social') ?></a>
|
118 |
+
</div>
|
119 |
</div>
|
120 |
</div>
|
121 |
<input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
|
122 |
+
<?php
|
123 |
+
$noLegend = 1;
|
124 |
+
require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.php');
|
125 |
+
?>
|
126 |
</div>
|
127 |
</div>
|
128 |
</div>
|
129 |
</div>
|
130 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/sidebar.php'); ?>
|
131 |
</div>
|
132 |
</div>
|
133 |
|
145 |
<div class="modal-content">
|
146 |
<div class="modal-header">
|
147 |
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoAllowShortcodeModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
148 |
+
<h4 class="modal-title"><?php esc_html_e('Allow shortcodes in my social media posts (e.g. Page Builder)', 'blog2social') ?></h4>
|
149 |
</div>
|
150 |
<div class="modal-body">
|
151 |
+
<?php echo sprintf(__('Some WordPress plugins use short codes, e.g. Page Builder plugins. When a shortcode is inserted in a WordPress post or WordPress page, WordPress calls the function that is included in the shortcode and performs the corresponding actions as soon as you publish your post on your Wordpress website. If you like Blog2Social to consider shortcodes when posting to social media and automatically insert the defined content in your social media post, activate this feature. You will find more information about the function of shortcodes and which plugins are supported by Blog2Social in the following <a href="%s" target="_blank">shortcode guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('allow_shortcodes')); ?>
|
152 |
</div>
|
153 |
</div>
|
154 |
</div>
|
162 |
<h4 class="modal-title"><?php esc_html_e('Activate Legacy mode ', 'blog2social') ?></h4>
|
163 |
</div>
|
164 |
<div class="modal-body">
|
165 |
+
<?php esc_html_e('Plugin contents are loaded one at a time to minimize server load.', 'blog2social') ?>
|
166 |
</div>
|
167 |
</div>
|
168 |
</div>
|
176 |
<h4 class="modal-title"><?php esc_html_e('Instant Caching for Facebook Link Posts', 'blog2social') ?></h4>
|
177 |
</div>
|
178 |
<div class="modal-body">
|
179 |
+
<?php esc_html_e('Please enable this feature, if you are using varnish caching (HTTP accelerator to relieve your website). Blog2Social will add a "no-cache=1" parameter to the post URL of your Facebook link posts to ensure that Facebook always pulls the current meta data of your blog post.', 'blog2social') ?>
|
180 |
</div>
|
181 |
</div>
|
182 |
</div>
|
190 |
<h4 class="modal-title"><?php esc_html_e('Personal Time Zone', 'blog2social') ?></h4>
|
191 |
</div>
|
192 |
<div class="modal-body">
|
193 |
+
<?php esc_html_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') ?>
|
194 |
</div>
|
195 |
</div>
|
196 |
</div>
|
views/b2s/ship.php
CHANGED
@@ -582,7 +582,7 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
582 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="board" style="display:none;"><?php echo esc_html_e('You have not yet created any pinboards in your Pinterest account. Please set up at least one pinboard to pin on your Pinterest account!', 'blog2social'); ?></div>
|
583 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
584 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
585 |
-
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your
|
586 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="error_code_403" style="display:none;"><?php esc_html_e('Access to this resource on your server is denied! Please check your webserver configuration for caching.', 'blog2social'); ?></div>
|
587 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
588 |
<div class="form-group row">
|
582 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="board" style="display:none;"><?php echo esc_html_e('You have not yet created any pinboards in your Pinterest account. Please set up at least one pinboard to pin on your Pinterest account!', 'blog2social'); ?></div>
|
583 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
584 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
585 |
+
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your correct server location and connect again.', 'blog2social'); ?></div>
|
586 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="error_code_403" style="display:none;"><?php esc_html_e('Access to this resource on your server is denied! Please check your webserver configuration for caching.', 'blog2social'); ?></div>
|
587 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
588 |
<div class="form-group row">
|
views/b2s/support.php
CHANGED
@@ -174,6 +174,7 @@
|
|
174 |
</div>
|
175 |
</div>
|
176 |
<div class="tab-pane" id="b2s-support-check-system">
|
|
|
177 |
<div class="row b2s-loading-area width-100">
|
178 |
<br>
|
179 |
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
@@ -209,6 +210,7 @@
|
|
209 |
<div class="row">
|
210 |
<div class="col-md-12">
|
211 |
<h3><?php esc_html_e("Enter a URL to see how your link preview will look on social media.", "blog2social"); ?></h3>
|
|
|
212 |
<div class="b2s-sharing-debugger-result-area">
|
213 |
<div class="clearfix"></div>
|
214 |
<br>
|
@@ -236,6 +238,17 @@
|
|
236 |
</div>
|
237 |
<div class="clearfix"></div>
|
238 |
<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
<div>
|
240 |
<img class="b2s-feature-img-with-24" src="<?php echo plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE); ?>" alt="Twitter"> <span class="b2s-text-bold"><?php esc_html_e("Twitter Card Validator", "blog2social") ?>
|
241 |
| <a class="btn-link" href="<?php echo B2S_Tools::getSupportLink("twitter_cards"); ?>" target="_blank"><?php esc_html_e("Learn how to edit and adjust Twitter Card tags.", "blog2social"); ?></a>
|
174 |
</div>
|
175 |
</div>
|
176 |
<div class="tab-pane" id="b2s-support-check-system">
|
177 |
+
<p class="b2s-bold"><?php esc_html_e('The Troubleshooting tool helps you with conflicts that can be caused by the system environment of your blog. So you can always check your settings on Wordpress.', 'blog2social'); ?> <a href="<?php echo B2S_Tools::getSupportLink('troubleshooting_tool_support'); ?>" target="_blank"><?php esc_html_e('How to use the Troubleshooting tool', 'blog2social') ?></a></p>
|
178 |
<div class="row b2s-loading-area width-100">
|
179 |
<br>
|
180 |
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
210 |
<div class="row">
|
211 |
<div class="col-md-12">
|
212 |
<h3><?php esc_html_e("Enter a URL to see how your link preview will look on social media.", "blog2social"); ?></h3>
|
213 |
+
<p class="b2s-bold"><?php esc_html_e("Are you are experiencing incorrect images and/or titles being pulled by Facebook or other social media platforms? Social Debugger or code validator tools show you a preview of what your social media post will look like when it's published and help you to fix inconsistencies and errors.", "blog2social"); ?> <a href="<?php echo B2S_Tools::getSupportLink('debugger_support'); ?>" target="_blank"><?php esc_html_e('More', 'blog2social') ?></a></p>
|
214 |
<div class="b2s-sharing-debugger-result-area">
|
215 |
<div class="clearfix"></div>
|
216 |
<br>
|
238 |
</div>
|
239 |
<div class="clearfix"></div>
|
240 |
<br>
|
241 |
+
<div>
|
242 |
+
<img class="b2s-feature-img-with-24" src="<?php echo plugins_url('/assets/images/portale/6_flat.png', B2S_PLUGIN_FILE); ?>" alt="Linkedin"> <span class="b2s-text-bold"><?php esc_html_e("Pinterest Rich Pins Validator", "blog2social") ?></span>
|
243 |
+
</div>
|
244 |
+
<div class="input-group col-md-7 b2s-padding-top-8">
|
245 |
+
<input type="text" name="b2s-debug-url" class="input-sm form-control" id="b2s-debug-url" value="<?php echo get_site_url(); ?>" data-network-id="6" placeholder="<?php esc_html_e("For example your Wordpress Home Page", "blog2social"); ?>">
|
246 |
+
<span class="input-group-btn">
|
247 |
+
<button class="btn btn-primary btn-sm b2s-btn-sharing-debugger" data-network-id="6" b2s-url-query="https://developers.pinterest.com/tools/url-debugger/?link="><?php esc_html_e("validate", "blog2social") ?></button>
|
248 |
+
</span>
|
249 |
+
</div>
|
250 |
+
<div class="clearfix"></div>
|
251 |
+
<br>
|
252 |
<div>
|
253 |
<img class="b2s-feature-img-with-24" src="<?php echo plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE); ?>" alt="Twitter"> <span class="b2s-text-bold"><?php esc_html_e("Twitter Card Validator", "blog2social") ?>
|
254 |
| <a class="btn-link" href="<?php echo B2S_Tools::getSupportLink("twitter_cards"); ?>" target="_blank"><?php esc_html_e("Learn how to edit and adjust Twitter Card tags.", "blog2social"); ?></a>
|