Version Description
Usability Optimization, Snip.ly integration, Re-poster
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.2.0 |
Comparing to | |
See all releases |
Code changes from version 6.1.2 to 6.2.0
- assets/css/b2s/autopost.css +89 -0
- assets/css/b2s/calendar.css +26 -0
- assets/css/b2s/repost.css +559 -0
- assets/css/b2s/settings.css +5 -0
- assets/css/general.css +10 -5
- assets/images/settings/sniply.png +0 -0
- assets/js/b2s/autopost.js +209 -0
- assets/js/b2s/calendar.js +32 -5
- assets/js/b2s/curation.js +6 -6
- assets/js/b2s/repost.js +752 -0
- assets/js/b2s/settings.js +6 -249
- assets/js/b2s/ship.js +14 -11
- assets/lib/fullcalendar/fullcalendar.min.css +1 -1
- blog2social.php +2 -2
- includes/Ajax/Get.php +2 -2
- includes/Ajax/Post.php +263 -79
- includes/B2S/Api/Network/Pinterest.php +2 -2
- includes/B2S/AutoPost.php +2 -1
- includes/B2S/AutoPost/Item.php +251 -0
- includes/B2S/Calendar/Filter.php +4 -0
- includes/B2S/Calendar/Item.php +23 -1
- includes/B2S/Network/Item.php +2 -7
- includes/B2S/Post/Filter.php +6 -3
- includes/B2S/Post/Item.php +117 -29
- includes/B2S/Post/Tools.php +1 -0
- includes/B2S/RePost/Item.php +251 -0
- includes/B2S/RePost/Save.php +397 -0
- includes/B2S/Settings/Item.php +10 -235
- includes/B2S/Ship/Item.php +9 -8
- includes/B2S/Ship/Save.php +1 -1
- includes/B2S/Support/Check/System.php +7 -5
- includes/Loader.php +102 -70
- includes/System.php +2 -48
- includes/Tools.php +43 -1
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +1449 -2570
- languages/blog2social.pot +1137 -1691
- readme.txt +16 -7
- views/b2s/autopost.php +80 -0
- views/b2s/dashboard.php +0 -1
- views/b2s/html/footer.php +40 -0
- views/b2s/html/header.php +12 -7
- views/b2s/html/post.navbar.php +2 -1
- views/b2s/html/sidebar.php +7 -1
- views/b2s/network.php +3 -0
- views/b2s/repost.php +174 -0
- views/b2s/settings.php +1 -24
assets/css/b2s/autopost.css
ADDED
@@ -0,0 +1,89 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*Custom*/
|
2 |
+
.error{
|
3 |
+
border: 1px solid #FF0000 !important;
|
4 |
+
}
|
5 |
+
|
6 |
+
.b2s-auto-post-publish-label, .b2s-auto-post-update-label{
|
7 |
+
font-style:italic;
|
8 |
+
}
|
9 |
+
|
10 |
+
.b2s-post-type-list{
|
11 |
+
float: left;
|
12 |
+
margin-bottom: 5px;
|
13 |
+
width: 50%;
|
14 |
+
}
|
15 |
+
|
16 |
+
.b2s-post-type-select-btn{
|
17 |
+
padding: 0 0 1px !important;
|
18 |
+
}
|
19 |
+
|
20 |
+
.b2s-network-auth-count {
|
21 |
+
font-size: 12px;
|
22 |
+
font-style: italic;
|
23 |
+
color: #777;
|
24 |
+
font-weight: normal;
|
25 |
+
line-height: 1;
|
26 |
+
}
|
27 |
+
|
28 |
+
.list-group-item{
|
29 |
+
border: 0px !important;
|
30 |
+
}
|
31 |
+
|
32 |
+
.b2s-img-network {
|
33 |
+
width: 36px !important;
|
34 |
+
margin-top: 8px !important;
|
35 |
+
}
|
36 |
+
|
37 |
+
.b2s-input-text-size-45{
|
38 |
+
width: 45px;
|
39 |
+
}
|
40 |
+
|
41 |
+
.chosen-container{
|
42 |
+
min-width: 50% !important;
|
43 |
+
}
|
44 |
+
|
45 |
+
.padding-bottom-3{
|
46 |
+
padding-bottom: 3px;
|
47 |
+
}
|
48 |
+
|
49 |
+
.b2s-bold{
|
50 |
+
font-weight: 600;
|
51 |
+
}
|
52 |
+
|
53 |
+
ul.chosen-choices {
|
54 |
+
background-image: none !important;
|
55 |
+
border-radius: 3px;
|
56 |
+
border: 1px solid #d7d7d7 !important;
|
57 |
+
box-shadow: none;
|
58 |
+
}
|
59 |
+
|
60 |
+
.b2s-auto-post-own-update-warning, .b2s-auto-post-own-general-warning{
|
61 |
+
border: 1px solid #aaa !important;
|
62 |
+
}
|
63 |
+
|
64 |
+
.b2s-network-tos-auto-post-import-warning{
|
65 |
+
display: none;
|
66 |
+
}
|
67 |
+
|
68 |
+
.b2s-network-tos-auto-post-import-warning > .alert{
|
69 |
+
margin-bottom: 0px !important;
|
70 |
+
}
|
71 |
+
|
72 |
+
#b2s-auto-post-profil-dropdown-twitter option:disabled {
|
73 |
+
color: #ff4f68;
|
74 |
+
}
|
75 |
+
|
76 |
+
.b2s-w-100 {
|
77 |
+
width: 100%;
|
78 |
+
padding: 0px;
|
79 |
+
}
|
80 |
+
|
81 |
+
.b2s-auto-post-header {
|
82 |
+
display: inline-block;
|
83 |
+
margin-right: 5px;
|
84 |
+
}
|
85 |
+
|
86 |
+
/*prevent themes to overwrite line-height, causing the words to shift to the top*/
|
87 |
+
.toggle-off, .toggle-on {
|
88 |
+
line-height: 1.2em !important;
|
89 |
+
}
|
assets/css/b2s/calendar.css
CHANGED
@@ -345,4 +345,30 @@ body .fc-day-grid-event .fc-content{
|
|
345 |
.emoji-picker__tab.active {
|
346 |
color: #79b333;
|
347 |
border-bottom: 3px solid #79b333;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
}
|
345 |
.emoji-picker__tab.active {
|
346 |
color: #79b333;
|
347 |
border-bottom: 3px solid #79b333;
|
348 |
+
}
|
349 |
+
|
350 |
+
.fc-basicWeek-view .fc-day-header{
|
351 |
+
text-align: inherit !important;
|
352 |
+
}
|
353 |
+
|
354 |
+
.b2s-calendar-sched-new-post-btn{
|
355 |
+
font-size: 11px;
|
356 |
+
font-weight: 400;
|
357 |
+
}
|
358 |
+
|
359 |
+
.fc-basicWeek-view .b2s-calendar-sched-new-post-btn{
|
360 |
+
float: right;
|
361 |
+
}
|
362 |
+
|
363 |
+
.fc-basicWeek-view .fc-day-header{
|
364 |
+
padding: 2px 4px;
|
365 |
+
}
|
366 |
+
|
367 |
+
.fc-month-view .b2s-calendar-sched-new-post-btn{
|
368 |
+
padding: 1px 4px;
|
369 |
+
position: absolute;
|
370 |
+
}
|
371 |
+
|
372 |
+
.b2sFavoriteStar {
|
373 |
+
display: none !important;
|
374 |
}
|
assets/css/b2s/repost.css
ADDED
@@ -0,0 +1,559 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.chosen-container {
|
2 |
+
width: 100% !important;
|
3 |
+
margin-top: 2px;
|
4 |
+
margin-bottom: 12px;
|
5 |
+
}
|
6 |
+
|
7 |
+
.b2s-bold{
|
8 |
+
font-weight: 600;
|
9 |
+
}
|
10 |
+
|
11 |
+
.b2s-w-100 {
|
12 |
+
width: 100%;
|
13 |
+
}
|
14 |
+
|
15 |
+
.b2s-mt-10 {
|
16 |
+
margin-top: 10px;
|
17 |
+
}
|
18 |
+
|
19 |
+
.b2s-ml-22 {
|
20 |
+
margin-left: 22px !important;
|
21 |
+
}
|
22 |
+
|
23 |
+
.b2s-pb-10 {
|
24 |
+
padding-bottom: 10px;
|
25 |
+
}
|
26 |
+
|
27 |
+
.b2s-re-post-h3 {
|
28 |
+
margin-top: 0px;
|
29 |
+
margin-bottom: 15px;
|
30 |
+
}
|
31 |
+
|
32 |
+
.b2s-re-post-input-time {
|
33 |
+
height: 30px !important;
|
34 |
+
}
|
35 |
+
|
36 |
+
.b2s-icon-size {
|
37 |
+
margin-top: 1px;
|
38 |
+
font-size: 16px;
|
39 |
+
}
|
40 |
+
|
41 |
+
.b2s-re-post-number-input {
|
42 |
+
width: 55px;
|
43 |
+
}
|
44 |
+
|
45 |
+
.b2s-re-post-input-time {
|
46 |
+
width: 85px !important;
|
47 |
+
display: inline-block !important;
|
48 |
+
}
|
49 |
+
|
50 |
+
.b2s-re-post-weekday-label {
|
51 |
+
margin-right: 10px;
|
52 |
+
}
|
53 |
+
|
54 |
+
.b2s-re-post-share-option {
|
55 |
+
margin-top: 0px !important;
|
56 |
+
}
|
57 |
+
|
58 |
+
.b2s-re-post-settings-option {
|
59 |
+
margin-bottom: 5px !important;
|
60 |
+
}
|
61 |
+
|
62 |
+
.b2s-re-post-state {
|
63 |
+
margin: 0px 5px !important;
|
64 |
+
}
|
65 |
+
|
66 |
+
.b2s-re-post-settings-area input[type="checkbox"] {
|
67 |
+
margin: 0px;
|
68 |
+
}
|
69 |
+
|
70 |
+
.checkbox-item {
|
71 |
+
margin-top: 10px !important;
|
72 |
+
margin-right: 10px !important;
|
73 |
+
}
|
74 |
+
|
75 |
+
.b2s-re-post-settings-toggle {
|
76 |
+
float: right;
|
77 |
+
cursor: pointer;
|
78 |
+
}
|
79 |
+
|
80 |
+
.b2s-re-post-settings-header, .b2s-re-post-settings-area, .b2s-re-post-queue-header {
|
81 |
+
border: 1px solid lightgray;
|
82 |
+
padding: 10px;
|
83 |
+
}
|
84 |
+
|
85 |
+
.b2s-re-post-settings-header {
|
86 |
+
background-color: #f5f5f5;
|
87 |
+
cursor: pointer;
|
88 |
+
}
|
89 |
+
|
90 |
+
.b2s-re-post-queue-header {
|
91 |
+
margin-top: 20px;
|
92 |
+
}
|
93 |
+
|
94 |
+
.b2s-re-post-queue-header, .b2s-re-post-settings-header {
|
95 |
+
border-top-left-radius: 4px;
|
96 |
+
border-top-right-radius: 4px;
|
97 |
+
}
|
98 |
+
|
99 |
+
.b2s-re-post-settings-area {
|
100 |
+
border-bottom-left-radius: 4px;
|
101 |
+
border-bottom-right-radius: 4px;
|
102 |
+
background-color: #f5f5f5;
|
103 |
+
}
|
104 |
+
|
105 |
+
.b2s-re-post-limit {
|
106 |
+
width: auto;
|
107 |
+
height: 30px;
|
108 |
+
min-height: 30px;
|
109 |
+
display: inline-block;
|
110 |
+
}
|
111 |
+
|
112 |
+
.b2s-re-post-submit-btn, .b2s-re-post-submit-premium {
|
113 |
+
margin-top: 44px;
|
114 |
+
}
|
115 |
+
|
116 |
+
.b2s-re-post-queue-delete-area {
|
117 |
+
padding: 10px 0px;
|
118 |
+
border-left: 1px solid lightgray;
|
119 |
+
border-right: 1px solid lightgray;
|
120 |
+
}
|
121 |
+
|
122 |
+
.list-group-item:first-child {
|
123 |
+
border-top-left-radius: 0px !important;
|
124 |
+
border-top-right-radius: 0px !important;
|
125 |
+
}
|
126 |
+
|
127 |
+
.b2s-post-sched-area .list-group-item:first-child {
|
128 |
+
border-top-left-radius: 4px !important;
|
129 |
+
border-top-right-radius: 4px !important;
|
130 |
+
}
|
131 |
+
|
132 |
+
.b2s-post-sched-area .checkbox-item {
|
133 |
+
margin: 25px 5px 0 !important;
|
134 |
+
}
|
135 |
+
|
136 |
+
.checkbox-all-label-btn {
|
137 |
+
padding-left: 0px !important;
|
138 |
+
}
|
139 |
+
|
140 |
+
.b2s-re-post-settings-area {
|
141 |
+
border-top: none;
|
142 |
+
}
|
143 |
+
|
144 |
+
.b2s-re-post-queue-area {
|
145 |
+
display: inline-block;
|
146 |
+
}
|
147 |
+
|
148 |
+
.b2s-re-post-headline {
|
149 |
+
font-size: 18px;
|
150 |
+
}
|
151 |
+
|
152 |
+
.b2s-re-post-date-start, .b2s-re-post-date-end {
|
153 |
+
margin-top: 2px;
|
154 |
+
margin-bottom: 12px;
|
155 |
+
height: 30px !important;
|
156 |
+
padding-left: 5px !important;
|
157 |
+
border: 1px solid #aaa !important;
|
158 |
+
}
|
159 |
+
|
160 |
+
.b2s-re-post-date-start:disabled, .b2s-re-post-date-end:disabled {
|
161 |
+
opacity: 0.5 !important;
|
162 |
+
}
|
163 |
+
|
164 |
+
.b2s-re-post-share-option-area {
|
165 |
+
display: inline-table;
|
166 |
+
margin-left: 4px;
|
167 |
+
}
|
168 |
+
|
169 |
+
.b2s-mt-12 {
|
170 |
+
margin-top: 12px;
|
171 |
+
}
|
172 |
+
|
173 |
+
.b2s-re-post-weekday-select {
|
174 |
+
margin-top: -2px;
|
175 |
+
margin-left: 5px;
|
176 |
+
}
|
177 |
+
|
178 |
+
.chosen-choices {/*form-control*/
|
179 |
+
display: block;
|
180 |
+
width: 100%;
|
181 |
+
height: 30px !important;
|
182 |
+
padding: 0px 12px;
|
183 |
+
font-size: 14px;
|
184 |
+
line-height: 1.42857143;
|
185 |
+
color: #555;
|
186 |
+
background-color: #fff;
|
187 |
+
background-image: none;
|
188 |
+
border: 1px solid #ccc;
|
189 |
+
border-radius: 4px;
|
190 |
+
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
191 |
+
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
|
192 |
+
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
|
193 |
+
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
194 |
+
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
|
195 |
+
}
|
196 |
+
|
197 |
+
.chosen-search-input:disabled {
|
198 |
+
background-color: #eee !important;
|
199 |
+
cursor: not-allowed;
|
200 |
+
}
|
201 |
+
|
202 |
+
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
|
203 |
+
margin: -1px 0px !important;
|
204 |
+
}
|
205 |
+
|
206 |
+
.chosen-container-multi .chosen-choices {
|
207 |
+
background-image: none !important;
|
208 |
+
}
|
209 |
+
|
210 |
+
.chosen-disabled .chosen-choices {
|
211 |
+
background-color: #eee !important;
|
212 |
+
}
|
213 |
+
|
214 |
+
#b2s-re-post-profil-dropdown-twitter option:disabled {
|
215 |
+
color: #ff4f68;
|
216 |
+
}
|
217 |
+
|
218 |
+
/*Custom*/
|
219 |
+
.b2s-sched-btn {
|
220 |
+
margin-top: 0px;
|
221 |
+
}
|
222 |
+
.media {
|
223 |
+
width: 100%;
|
224 |
+
}
|
225 |
+
.form-inline {
|
226 |
+
width: 100%;
|
227 |
+
margin-bottom: 20px;
|
228 |
+
}
|
229 |
+
.form-inline .form-group {
|
230 |
+
margin-left: 2px;
|
231 |
+
}
|
232 |
+
.media-head {
|
233 |
+
width: 100% !important;
|
234 |
+
}
|
235 |
+
@media(max-width: 549px) {
|
236 |
+
.b2s-post-btn {
|
237 |
+
width: 100%;
|
238 |
+
}
|
239 |
+
.form-inline button, .form-inline a {
|
240 |
+
width: 100%;
|
241 |
+
margin-bottom: 10px;
|
242 |
+
}
|
243 |
+
}
|
244 |
+
@media(max-width: 767px) {
|
245 |
+
.form-inline {
|
246 |
+
display: none;
|
247 |
+
}
|
248 |
+
.filterHide {
|
249 |
+
display: none;
|
250 |
+
}
|
251 |
+
.form-inline button ,.form-inline a {
|
252 |
+
width: 49%;
|
253 |
+
margin-bottom: 10px;
|
254 |
+
}
|
255 |
+
}
|
256 |
+
|
257 |
+
.datepicker table tr td.event {
|
258 |
+
background-color: #ffdb99;
|
259 |
+
border-color: #ffb733;
|
260 |
+
color: #000;
|
261 |
+
}
|
262 |
+
.datepicker table tr td.today {
|
263 |
+
background-color: #fff !important;
|
264 |
+
border-color: #fff !important;
|
265 |
+
color: #000;
|
266 |
+
font-weight: 700;
|
267 |
+
font-size: 15px;
|
268 |
+
}
|
269 |
+
.datepicker table tr td.active {
|
270 |
+
background-color: #337ab7 !important;
|
271 |
+
border-color: #2e6da4 !important;
|
272 |
+
color: #fff;
|
273 |
+
}
|
274 |
+
.datepicker-inline{
|
275 |
+
width: 100% !important;
|
276 |
+
}
|
277 |
+
.table-condensed{
|
278 |
+
width: 100%;
|
279 |
+
}
|
280 |
+
#b2s-sched-datepicker-area{
|
281 |
+
background-color: #fff;
|
282 |
+
border: 1px solid #ddd;
|
283 |
+
border-radius: 4px;
|
284 |
+
padding: 10px 15px;
|
285 |
+
margin-top: 10px;
|
286 |
+
}
|
287 |
+
.datepicker-switch, .prev, .next{
|
288 |
+
background: #eee no-repeat;
|
289 |
+
border-radius: 0px !important;
|
290 |
+
}
|
291 |
+
.prev, .next{
|
292 |
+
font-size: 24px;
|
293 |
+
}
|
294 |
+
|
295 |
+
.b2s-calendar-legend-active{
|
296 |
+
color: #337ab7 ;
|
297 |
+
border-color: #2e6da4;
|
298 |
+
border-radius: 4px;
|
299 |
+
}
|
300 |
+
.b2s-calendar-legend-event{
|
301 |
+
color: #ffdb99;
|
302 |
+
border-color: #ffb733;
|
303 |
+
border-radius: 4px;
|
304 |
+
}
|
305 |
+
.b2s-loading-area{
|
306 |
+
width: 100% !important;
|
307 |
+
}
|
308 |
+
.checbox-item-empty{
|
309 |
+
padding: 15px;
|
310 |
+
float:left;
|
311 |
+
}
|
312 |
+
|
313 |
+
|
314 |
+
|
315 |
+
/**edit post **/
|
316 |
+
.network-name{
|
317 |
+
font-weight: bold;
|
318 |
+
}
|
319 |
+
.network-profile{
|
320 |
+
margin-bottom: 5px;
|
321 |
+
}
|
322 |
+
.b2s-post-item-thumb {
|
323 |
+
width: 5%;
|
324 |
+
margin-right: 8px;
|
325 |
+
}
|
326 |
+
|
327 |
+
.b2s-post-item-thumb img {
|
328 |
+
border-radius: 50%;
|
329 |
+
width: 48px;
|
330 |
+
}
|
331 |
+
|
332 |
+
.b2s-post-item-details {
|
333 |
+
width: 93%;
|
334 |
+
}
|
335 |
+
|
336 |
+
.b2s-post-item-details, .b2s-post-item-thumb {
|
337 |
+
float: left;
|
338 |
+
}
|
339 |
+
.b2s-post-item-details h4 {
|
340 |
+
font-size: 16px;
|
341 |
+
font-weight: 600;
|
342 |
+
text-transform: uppercase;
|
343 |
+
margin: 3px 3px 3px 0px;
|
344 |
+
}
|
345 |
+
.b2s-post-item-network-deprecated {
|
346 |
+
font-weight: 600;
|
347 |
+
font-size: 14px;
|
348 |
+
margin: 3px 3px 3px 0px;
|
349 |
+
}
|
350 |
+
|
351 |
+
.btn-circle {
|
352 |
+
width: 30px;
|
353 |
+
height: 30px;
|
354 |
+
text-align: center;
|
355 |
+
padding: 6px 0;
|
356 |
+
font-size: 12px;
|
357 |
+
line-height: 1.428571429;
|
358 |
+
border-radius: 15px;
|
359 |
+
}
|
360 |
+
.fb-url-image, .xing-url-image, .linkedin-url-image, .reddit-url-image, .tw-url-image, .b2s-image-border {
|
361 |
+
margin-right: 10px;
|
362 |
+
margin-bottom: 20px;
|
363 |
+
border: 1px dashed #bdbfc2;
|
364 |
+
box-shadow: none;
|
365 |
+
padding: 5px;
|
366 |
+
}
|
367 |
+
textarea.form-control {
|
368 |
+
height: auto;
|
369 |
+
}
|
370 |
+
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .reddit-textarea-input, .linkedin-textarea-input, .b2s-post-item-details-item-message-input {
|
371 |
+
font-size: 14px;
|
372 |
+
font-weight: normal;
|
373 |
+
line-height: 1.125;
|
374 |
+
width: 100%;
|
375 |
+
border: medium none;
|
376 |
+
border-radius: 0;
|
377 |
+
margin-bottom: 10px;
|
378 |
+
font-family: helvetica,arial,sans-serif;
|
379 |
+
}
|
380 |
+
.b2s-post-item-details-item-message-input{
|
381 |
+
min-height: 100px;
|
382 |
+
}
|
383 |
+
.b2s-post-item-details-url-image{
|
384 |
+
cursor: pointer;
|
385 |
+
}
|
386 |
+
.b2s-user-network-settings-post-format-area label > input {
|
387 |
+
visibility: hidden;
|
388 |
+
position: absolute;
|
389 |
+
}
|
390 |
+
.b2s-settings-checked + img {
|
391 |
+
border: 3px solid #79b232 !important;
|
392 |
+
}
|
393 |
+
.b2s-image-item {
|
394 |
+
background-color: #fff;
|
395 |
+
border: 1px solid #ddd;
|
396 |
+
display: block;
|
397 |
+
float: left;
|
398 |
+
height: 200px;
|
399 |
+
line-height: 1.42857;
|
400 |
+
margin-bottom: 15px;
|
401 |
+
margin-left: 15px;
|
402 |
+
margin-top: 15px;
|
403 |
+
overflow: hidden;
|
404 |
+
padding: 4px;
|
405 |
+
transition: border 0.2s ease-in-out 0s;
|
406 |
+
width: 185px;
|
407 |
+
}
|
408 |
+
.b2s-image-item-thumb {
|
409 |
+
height: 150px;
|
410 |
+
}
|
411 |
+
.b2s-image-change-all-network,.b2s-upload-image-free-version,.b2s-image-change-this-network, .b2s-image-change-meta-network{
|
412 |
+
margin-right: 5px !important;
|
413 |
+
}
|
414 |
+
.b2s-image-remove-btn {
|
415 |
+
position: absolute;
|
416 |
+
top: -5px;
|
417 |
+
right: 0px;
|
418 |
+
font-weight: 700 !important;
|
419 |
+
}
|
420 |
+
.b2s-calendar-delete{
|
421 |
+
cursor: pointer;
|
422 |
+
}
|
423 |
+
.b2s-btn-label-premium{
|
424 |
+
color: #fff;
|
425 |
+
text-decoration: none !important;
|
426 |
+
cursor: default !important;
|
427 |
+
}
|
428 |
+
.b2s-btn-label-premium:hover{
|
429 |
+
color: #fff;
|
430 |
+
text-decoration: none !important;
|
431 |
+
cursor: default !important;
|
432 |
+
}
|
433 |
+
.b2s-post-item .label-success{
|
434 |
+
display: none;
|
435 |
+
}
|
436 |
+
.og_title, .og_desc, .card_desc, .card_title, .b2s-post-item-details-item-title-input, .b2s-select, .b2s-select-area{
|
437 |
+
margin-bottom: 8px !important;
|
438 |
+
}
|
439 |
+
|
440 |
+
.b2s-post-item-info-area {
|
441 |
+
font-size: 11px !important;
|
442 |
+
}
|
443 |
+
|
444 |
+
.b2s-post-ship-item-full-text, .b2s-post-ship-item-message-delete, .b2s-post-ship-item-network-settings, .b2s-post-ship-item-post-format{
|
445 |
+
line-height: 1.5 !important;
|
446 |
+
padding: 0 1px 3px !important;
|
447 |
+
}
|
448 |
+
|
449 |
+
.b2s-load-info-meta-tag-modal{
|
450 |
+
margin-top: 8px !important;
|
451 |
+
display: block !important;
|
452 |
+
margin-right: auto !important;
|
453 |
+
margin-left: auto !important;
|
454 |
+
}
|
455 |
+
|
456 |
+
.b2s-post-item-details-tag-add-div {
|
457 |
+
border: 0px !important;
|
458 |
+
box-shadow: 0px 0px 0px #000 !important;
|
459 |
+
}
|
460 |
+
|
461 |
+
.b2s-post-item-details-tag-input-elem {
|
462 |
+
margin: 2px 4px;
|
463 |
+
max-width: 145px !important;
|
464 |
+
}
|
465 |
+
.b2s-calendar-sched-post-btn{
|
466 |
+
font-size: 11px;
|
467 |
+
float: right;
|
468 |
+
padding: 2px 4px 0px 4px;
|
469 |
+
}
|
470 |
+
|
471 |
+
|
472 |
+
.form-inline {
|
473 |
+
width: 100%;
|
474 |
+
margin-bottom: 20px;
|
475 |
+
}
|
476 |
+
.form-inline .form-group {
|
477 |
+
margin-left: 2px;
|
478 |
+
}
|
479 |
+
|
480 |
+
@media(max-width: 549px) {
|
481 |
+
.b2s-post-btn {
|
482 |
+
width: 100%;
|
483 |
+
}
|
484 |
+
.form-inline button, .form-inline a {
|
485 |
+
width: 100%;
|
486 |
+
margin-bottom: 10px;
|
487 |
+
}
|
488 |
+
}
|
489 |
+
@media(max-width: 767px) {
|
490 |
+
.form-inline {
|
491 |
+
display: none;
|
492 |
+
}
|
493 |
+
.filterHide {
|
494 |
+
display: none;
|
495 |
+
}
|
496 |
+
.form-inline button ,.form-inline a {
|
497 |
+
width: 49%;
|
498 |
+
margin-bottom: 10px;
|
499 |
+
}
|
500 |
+
}
|
501 |
+
|
502 |
+
.img-thumbnail{
|
503 |
+
display: block !important;
|
504 |
+
height: auto;
|
505 |
+
margin-left: auto;
|
506 |
+
margin-right: auto;
|
507 |
+
max-height: 100%;
|
508 |
+
}
|
509 |
+
|
510 |
+
.b2s-post-item-details-item-group-select {
|
511 |
+
max-width: 100% !important;
|
512 |
+
}
|
513 |
+
|
514 |
+
.glyphicon-refresh-animate {
|
515 |
+
-animation: spin .7s infinite linear;
|
516 |
+
-webkit-animation: spin2 .7s infinite linear;
|
517 |
+
}
|
518 |
+
|
519 |
+
@-webkit-keyframes spin2 {
|
520 |
+
from { -webkit-transform: rotate(0deg);}
|
521 |
+
to { -webkit-transform: rotate(360deg);}
|
522 |
+
}
|
523 |
+
|
524 |
+
@keyframes spin {
|
525 |
+
from { transform: scale(1) rotate(0deg);}
|
526 |
+
to { transform: scale(1) rotate(360deg);}
|
527 |
+
}
|
528 |
+
|
529 |
+
.b2s-post-item-details-item-message-area {
|
530 |
+
display: inline-block;
|
531 |
+
position: relative;
|
532 |
+
min-width: 100%;
|
533 |
+
}
|
534 |
+
|
535 |
+
.emoji-picker__content .active {
|
536 |
+
background-color: #fff;
|
537 |
+
}
|
538 |
+
|
539 |
+
.emoji-picker__content {
|
540 |
+
height: 21.5rem;
|
541 |
+
}
|
542 |
+
|
543 |
+
.emoji-picker__preview {
|
544 |
+
display: none;
|
545 |
+
}
|
546 |
+
|
547 |
+
.emoji-picker {
|
548 |
+
height: auto;
|
549 |
+
z-index: 1060;
|
550 |
+
}
|
551 |
+
|
552 |
+
.emoji-picker__tab.active {
|
553 |
+
color: #79b333;
|
554 |
+
border-bottom: 3px solid #79b333;
|
555 |
+
}
|
556 |
+
|
557 |
+
.list-group-item:first-child{
|
558 |
+
border-top: none !important;
|
559 |
+
}
|
assets/css/b2s/settings.css
CHANGED
@@ -144,4 +144,9 @@ ul.chosen-choices {
|
|
144 |
.b2s-auto-post-header {
|
145 |
display: inline-block;
|
146 |
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
147 |
}
|
144 |
.b2s-auto-post-header {
|
145 |
display: inline-block;
|
146 |
margin-right: 5px;
|
147 |
+
}
|
148 |
+
|
149 |
+
/*prevent themes to overwrite line-height, causing the words to shift to the top*/
|
150 |
+
.toggle-off, .toggle-on {
|
151 |
+
line-height: 1.4 !important;
|
152 |
}
|
assets/css/general.css
CHANGED
@@ -2988,7 +2988,7 @@ select[multiple].input-lg {
|
|
2988 |
}
|
2989 |
.btn {
|
2990 |
display: inline-block;
|
2991 |
-
padding: 6px
|
2992 |
margin-bottom: 0;
|
2993 |
font-size: 14px;
|
2994 |
font-weight: normal;
|
@@ -3425,7 +3425,7 @@ fieldset[disabled] .btn-link:focus {
|
|
3425 |
}
|
3426 |
.btn-sm,
|
3427 |
.btn-group-sm > .btn {
|
3428 |
-
padding: 5px
|
3429 |
font-size: 12px;
|
3430 |
line-height: 1.5;
|
3431 |
border-radius: 3px;
|
@@ -4804,9 +4804,9 @@ fieldset[disabled] .navbar-inverse .btn-link:focus {
|
|
4804 |
}
|
4805 |
.label {
|
4806 |
display: inline;
|
4807 |
-
padding: .2em .
|
4808 |
font-size: 75%;
|
4809 |
-
font-weight:
|
4810 |
line-height: 1;
|
4811 |
color: #fff;
|
4812 |
text-align: center;
|
@@ -6961,6 +6961,7 @@ p {
|
|
6961 |
.b2s-select,.b2s-input,.b2s-select-area{
|
6962 |
height: 30px !important;
|
6963 |
margin-bottom: 8px !important;
|
|
|
6964 |
}
|
6965 |
|
6966 |
.b2s-btn-logo{
|
@@ -7633,4 +7634,8 @@ CSS CheckBOX
|
|
7633 |
|
7634 |
.b2s-post-per-page {
|
7635 |
margin: 20px 0px;
|
7636 |
-
}
|
|
|
|
|
|
|
|
2988 |
}
|
2989 |
.btn {
|
2990 |
display: inline-block;
|
2991 |
+
padding: 6px 8px;
|
2992 |
margin-bottom: 0;
|
2993 |
font-size: 14px;
|
2994 |
font-weight: normal;
|
3425 |
}
|
3426 |
.btn-sm,
|
3427 |
.btn-group-sm > .btn {
|
3428 |
+
padding: 5px 6px;
|
3429 |
font-size: 12px;
|
3430 |
line-height: 1.5;
|
3431 |
border-radius: 3px;
|
4804 |
}
|
4805 |
.label {
|
4806 |
display: inline;
|
4807 |
+
padding: .2em .3em .2em;
|
4808 |
font-size: 75%;
|
4809 |
+
font-weight: 600;
|
4810 |
line-height: 1;
|
4811 |
color: #fff;
|
4812 |
text-align: center;
|
6961 |
.b2s-select,.b2s-input,.b2s-select-area{
|
6962 |
height: 30px !important;
|
6963 |
margin-bottom: 8px !important;
|
6964 |
+
padding: 0 19px 0 1px !important;
|
6965 |
}
|
6966 |
|
6967 |
.b2s-btn-logo{
|
7634 |
|
7635 |
.b2s-post-per-page {
|
7636 |
margin: 20px 0px;
|
7637 |
+
}
|
7638 |
+
|
7639 |
+
.fc-other-month{
|
7640 |
+
opacity: 1 !important;
|
7641 |
+
}
|
assets/images/settings/sniply.png
ADDED
Binary file
|
assets/js/b2s/autopost.js
ADDED
@@ -0,0 +1,209 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
jQuery(window).on("load", function () {
|
3 |
+
|
4 |
+
if (jQuery('#b2sUserLang').val() == 'de') {
|
5 |
+
showMeridian = false;
|
6 |
+
}
|
7 |
+
|
8 |
+
jQuery(".b2s-import-auto-post-type").chosen();
|
9 |
+
|
10 |
+
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
11 |
+
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length);
|
12 |
+
});
|
13 |
+
|
14 |
+
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
15 |
+
if (length > 0) {
|
16 |
+
jQuery('.b2s-auto-post-own-update-warning').show();
|
17 |
+
}
|
18 |
+
|
19 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
20 |
+
checkNetworkTos(2);
|
21 |
+
|
22 |
+
jQuery('#b2s-auto-post-profil-dropdown').trigger('change');
|
23 |
+
|
24 |
+
});
|
25 |
+
|
26 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
27 |
+
jQuery(document).on('change', '.b2s-network-tos-check', function () {
|
28 |
+
var networkId = jQuery(this).attr('data-network-id');
|
29 |
+
if (networkId == 2) {
|
30 |
+
checkNetworkTos(networkId, false);
|
31 |
+
}
|
32 |
+
return false;
|
33 |
+
});
|
34 |
+
|
35 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
36 |
+
function checkNetworkTos(networkId) {
|
37 |
+
var len = jQuery('.b2s-network-tos-check[data-network-id="' + networkId + '"]:checked').length;
|
38 |
+
if (len > 1) {
|
39 |
+
jQuery('.b2s-network-tos-auto-post-import-warning').show();
|
40 |
+
jQuery('#b2s-auto-post-settings-btn').attr('disabled', 'disabled');
|
41 |
+
return false;
|
42 |
+
} else {
|
43 |
+
jQuery('.b2s-network-tos-auto-post-import-warning').hide();
|
44 |
+
jQuery('#b2s-auto-post-settings-btn').attr('disabled', false);
|
45 |
+
return true;
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
jQuery(document).on('change', '.b2s-post-type-item-update', function () {
|
50 |
+
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
51 |
+
if (length == 0) {
|
52 |
+
jQuery('.b2s-auto-post-own-update-warning').hide();
|
53 |
+
} else {
|
54 |
+
jQuery('.b2s-auto-post-own-update-warning').show();
|
55 |
+
}
|
56 |
+
return false;
|
57 |
+
});
|
58 |
+
|
59 |
+
jQuery('#b2s-user-network-settings-auto-post-own').validate({
|
60 |
+
ignore: "",
|
61 |
+
errorPlacement: function () {
|
62 |
+
return false;
|
63 |
+
},
|
64 |
+
submitHandler: function (form) {
|
65 |
+
jQuery('.b2s-settings-user-success').hide();
|
66 |
+
jQuery('.b2s-settings-user-error').hide();
|
67 |
+
jQuery(".b2s-loading-area").show();
|
68 |
+
jQuery(".b2s-autopost-area").hide();
|
69 |
+
jQuery('.b2s-server-connection-fail').hide();
|
70 |
+
jQuery.ajax({
|
71 |
+
processData: false,
|
72 |
+
url: ajaxurl,
|
73 |
+
type: "POST",
|
74 |
+
dataType: "json",
|
75 |
+
cache: false,
|
76 |
+
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
77 |
+
error: function () {
|
78 |
+
jQuery('.b2s-server-connection-fail').show();
|
79 |
+
return false;
|
80 |
+
},
|
81 |
+
success: function (data) {
|
82 |
+
jQuery(".b2s-loading-area").hide();
|
83 |
+
jQuery(".b2s-autopost-area").show();
|
84 |
+
if (data.result == true) {
|
85 |
+
jQuery('.b2s-settings-user-success').show();
|
86 |
+
} else {
|
87 |
+
if(data.error == 'nonce') {
|
88 |
+
jQuery('.b2s-nonce-check-fail').show();
|
89 |
+
}
|
90 |
+
jQuery('.b2s-settings-user-error').show();
|
91 |
+
}
|
92 |
+
}
|
93 |
+
});
|
94 |
+
return false;
|
95 |
+
}
|
96 |
+
});
|
97 |
+
|
98 |
+
jQuery(document).on('click', '.b2s-post-type-select-btn', function () {
|
99 |
+
var type = jQuery(this).attr('data-post-type');
|
100 |
+
var tempCurText = jQuery(this).text();
|
101 |
+
if (jQuery(this).attr('data-select-toogle-state') == "0") { //0=select
|
102 |
+
jQuery('.b2s-post-type-item-' + type).prop('checked', true);
|
103 |
+
jQuery(this).attr('data-select-toogle-state', '1');
|
104 |
+
if (type == 'update') {
|
105 |
+
jQuery('.b2s-auto-post-own-update-warning').show();
|
106 |
+
}
|
107 |
+
} else {
|
108 |
+
jQuery('.b2s-post-type-item-' + type).prop('checked', false);
|
109 |
+
jQuery(this).attr('data-select-toogle-state', '0');
|
110 |
+
if (type == 'update') {
|
111 |
+
jQuery('.b2s-auto-post-own-update-warning').hide();
|
112 |
+
}
|
113 |
+
}
|
114 |
+
jQuery(this).text(jQuery(this).attr('data-select-toogle-name'));
|
115 |
+
jQuery(this).attr('data-select-toogle-name', tempCurText);
|
116 |
+
return false;
|
117 |
+
});
|
118 |
+
|
119 |
+
jQuery(document).on('click', '.b2sInfoAutoPosterMModalBtn', function () {
|
120 |
+
jQuery('#b2sInfoAutoPosterMModal').modal('show');
|
121 |
+
});
|
122 |
+
jQuery(document).on('click', '.b2sInfoAutoPosterAModalBtn', function () {
|
123 |
+
jQuery('#b2sInfoAutoPosterAModal').modal('show');
|
124 |
+
});
|
125 |
+
jQuery(document).on('click', '.b2sTwitterInfoModalBtn', function () {
|
126 |
+
jQuery('#b2sTwitterInfoModal').modal('show');
|
127 |
+
});
|
128 |
+
|
129 |
+
jQuery(document).on('change', '.b2s-auto-post-area-toggle', function() {
|
130 |
+
if(jQuery(this).is(':checked')) {
|
131 |
+
jQuery('.b2s-auto-post-area[data-area-type="'+jQuery(this).data('area-type')+'"]').show();
|
132 |
+
} else {
|
133 |
+
jQuery('.b2s-auto-post-area[data-area-type="'+jQuery(this).data('area-type')+'"]').hide();
|
134 |
+
}
|
135 |
+
});
|
136 |
+
|
137 |
+
jQuery(document).on('change', '#b2s-auto-post-profil-dropdown', function () {
|
138 |
+
jQuery('.b2s-auto-post-error[data-error-reason="no-auth-in-mandant"]').hide();
|
139 |
+
var tos = false;
|
140 |
+
if (jQuery('#b2s-auto-post-profil-data-' + jQuery(this).val()).val() == "") {
|
141 |
+
tos = true;
|
142 |
+
} else {
|
143 |
+
//TOS Twitter Check
|
144 |
+
var len = jQuery('#b2s-auto-post-profil-dropdown-twitter').children('option[data-mandant-id="' + jQuery(this).val() + '"]').length;
|
145 |
+
if (len >= 1) {
|
146 |
+
jQuery('.b2s-auto-post-twitter-profile').show();
|
147 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter').prop('disabled', false);
|
148 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter').show();
|
149 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter option').attr("disabled", "disabled");
|
150 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter option[data-mandant-id="' + jQuery(this).val() + '"]').attr("disabled", false);
|
151 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter option[data-mandant-id="' + jQuery(this).val() + '"]:first').attr("selected", "selected");
|
152 |
+
} else {
|
153 |
+
tos = true;
|
154 |
+
}
|
155 |
+
|
156 |
+
}
|
157 |
+
//TOS Twitter 032018
|
158 |
+
if (tos) {
|
159 |
+
jQuery('.b2s-auto-post-twitter-profile').hide();
|
160 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter').prop('disabled', 'disabled');
|
161 |
+
jQuery('#b2s-auto-post-profil-dropdown-twitter').hide();
|
162 |
+
}
|
163 |
+
});
|
164 |
+
|
165 |
+
jQuery(document).on('click', '#b2s-auto-post-settings-btn', function() {
|
166 |
+
var submit = true;
|
167 |
+
if(jQuery('.b2s-auto-post-area-toggle[data-area-type="manuell"]').is(':checked')) {
|
168 |
+
var publish = jQuery('.b2s-post-type-item-publish').is(':checked');
|
169 |
+
var update = jQuery('.b2s-post-type-item-update').is(':checked');
|
170 |
+
if(publish == false && update == false) {
|
171 |
+
submit = false;
|
172 |
+
jQuery('.b2s-auto-post-error[data-error-reason="no-post-type"]').show();
|
173 |
+
jQuery('.b2s-post-type-item-publish').css('border-color', 'red');
|
174 |
+
jQuery('.b2s-post-type-item-update').css('border-color', 'red');
|
175 |
+
}
|
176 |
+
if(jQuery('#b2s-auto-post-profil-data-'+jQuery('#b2s-auto-post-profil-dropdown').val()).val() == "") {
|
177 |
+
submit = false;
|
178 |
+
jQuery('.b2s-auto-post-error[data-error-reason="no-auth-in-mandant"]').show();
|
179 |
+
}
|
180 |
+
}
|
181 |
+
|
182 |
+
if(jQuery('.b2s-auto-post-area-toggle[data-area-type="import"]').is(':checked')) {
|
183 |
+
if(jQuery('.b2s-network-tos-check').is(':checked') == false) {
|
184 |
+
submit = false;
|
185 |
+
jQuery('.b2s-auto-post-error[data-error-reason="import-no-auth"]').show();
|
186 |
+
jQuery('.b2s-network-tos-check').css('border-color', 'red');
|
187 |
+
}
|
188 |
+
}
|
189 |
+
|
190 |
+
if(submit) {
|
191 |
+
jQuery('#b2s-user-network-settings-auto-post-own').submit();
|
192 |
+
}
|
193 |
+
});
|
194 |
+
|
195 |
+
jQuery(document).on('change', '.b2s-post-type-item-publish', function() {
|
196 |
+
jQuery('.b2s-auto-post-error[data-error-reason="no-post-type"]').hide();
|
197 |
+
jQuery('.b2s-post-type-item-publish').css('border-color', '');
|
198 |
+
jQuery('.b2s-post-type-item-update').css('border-color', '');
|
199 |
+
});
|
200 |
+
jQuery(document).on('change', '.b2s-post-type-item-update', function() {
|
201 |
+
jQuery('.b2s-auto-post-error[data-error-reason="no-post-type"]').hide();
|
202 |
+
jQuery('.b2s-post-type-item-publish').css('border-color', '');
|
203 |
+
jQuery('.b2s-post-type-item-update').css('border-color', '');
|
204 |
+
});
|
205 |
+
|
206 |
+
jQuery(document).on('change', '.b2s-network-tos-check', function() {
|
207 |
+
jQuery('.b2s-auto-post-error[data-error-reason="import-no-auth"]').hide();
|
208 |
+
jQuery('.b2s-network-tos-check').css('border-color', '');
|
209 |
+
});
|
assets/js/b2s/calendar.js
CHANGED
@@ -6,9 +6,20 @@ var newSource = new Array();
|
|
6 |
|
7 |
jQuery(document).ready(function () {
|
8 |
jQuery('#b2s_calendar').fullCalendar({
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
editable: b2s_has_premium,
|
10 |
locale: b2s_calendar_locale,
|
11 |
-
eventLimit: 2,
|
12 |
timeFormat: 'H:mm',
|
13 |
eventSources: [curSource[0]],
|
14 |
eventRender: function (event, element) {
|
@@ -16,13 +27,17 @@ jQuery(document).ready(function () {
|
|
16 |
$header = jQuery("<div>").addClass("b2s-calendar-header").attr('data-b2s-id', event.b2s_id);
|
17 |
$isRelayPost = '';
|
18 |
$isCuratedPost = '';
|
|
|
19 |
if (event.post_type == 'b2s_ex_post') {
|
20 |
$isCuratedPost = ' (Curated Post)';
|
21 |
}
|
22 |
if (event.relay_primary_post_id > 0) {
|
23 |
$isRelayPost = ' (Retweet)';
|
24 |
}
|
25 |
-
|
|
|
|
|
|
|
26 |
element.find(".fc-time").after($network_name);
|
27 |
element.html(element.html());
|
28 |
$parent = element.parent();
|
@@ -46,13 +61,19 @@ jQuery(document).ready(function () {
|
|
46 |
}
|
47 |
},
|
48 |
dayRender: function (date, element) {
|
49 |
-
|
50 |
if (!jQuery(element[0]).hasClass('fc-past')) {
|
51 |
var date = jQuery(element[0]).attr('data-date');
|
52 |
-
var sel_element =
|
|
|
|
|
|
|
|
|
|
|
53 |
$header = jQuery("<a>").html("+ <span class=\"hidden-sm hidden-xs\">" + jQuery("#b2sJSTextAddPost").val() + "</span>").addClass("b2s-calendar-sched-new-post-btn").attr('href', '#');
|
54 |
sel_element.append($header);
|
55 |
}
|
|
|
56 |
},
|
57 |
eventDrop: function (event, delta, revertFunc) {
|
58 |
jQuery.ajax({
|
@@ -373,7 +394,13 @@ jQuery(document).on('click', '.b2s-calendar-sched-new-post-btn', function () {
|
|
373 |
return false;
|
374 |
}
|
375 |
jQuery('#b2s-show-post-type-modal').modal('show');
|
376 |
-
var
|
|
|
|
|
|
|
|
|
|
|
|
|
377 |
jQuery('#b2sSelSchedDate').val(selSchedDate);
|
378 |
return false;
|
379 |
});
|
6 |
|
7 |
jQuery(document).ready(function () {
|
8 |
jQuery('#b2s_calendar').fullCalendar({
|
9 |
+
header: {
|
10 |
+
left: 'title',
|
11 |
+
right: 'month,basicWeek, prev,next'
|
12 |
+
},
|
13 |
+
views: {
|
14 |
+
month: {
|
15 |
+
eventLimit: 2
|
16 |
+
},
|
17 |
+
basicWeek: {
|
18 |
+
eventLimit: false
|
19 |
+
}
|
20 |
+
},
|
21 |
editable: b2s_has_premium,
|
22 |
locale: b2s_calendar_locale,
|
|
|
23 |
timeFormat: 'H:mm',
|
24 |
eventSources: [curSource[0]],
|
25 |
eventRender: function (event, element) {
|
27 |
$header = jQuery("<div>").addClass("b2s-calendar-header").attr('data-b2s-id', event.b2s_id);
|
28 |
$isRelayPost = '';
|
29 |
$isCuratedPost = '';
|
30 |
+
$isRePost = '';
|
31 |
if (event.post_type == 'b2s_ex_post') {
|
32 |
$isCuratedPost = ' (Curated Post)';
|
33 |
}
|
34 |
if (event.relay_primary_post_id > 0) {
|
35 |
$isRelayPost = ' (Retweet)';
|
36 |
}
|
37 |
+
if (event.b2s_sched_type == 5) {
|
38 |
+
$isRePost = ' (Re-Share)';
|
39 |
+
}
|
40 |
+
$network_name = jQuery("<span>").text(event.author + $isRelayPost + $isCuratedPost + $isRePost).addClass("network-name").css("display", "block");
|
41 |
element.find(".fc-time").after($network_name);
|
42 |
element.html(element.html());
|
43 |
$parent = element.parent();
|
61 |
}
|
62 |
},
|
63 |
dayRender: function (date, element) {
|
64 |
+
var view = jQuery('#b2s_calendar').fullCalendar('getView');
|
65 |
if (!jQuery(element[0]).hasClass('fc-past')) {
|
66 |
var date = jQuery(element[0]).attr('data-date');
|
67 |
+
var sel_element = '';
|
68 |
+
if (view.type == 'month') {
|
69 |
+
sel_element = jQuery(element[0]).closest('div').next('div').find('td[data-date="' + date + '"]');
|
70 |
+
} else {
|
71 |
+
sel_element = jQuery('.fc-basicWeek-view').find('th[data-date="' + date + '"]');
|
72 |
+
}
|
73 |
$header = jQuery("<a>").html("+ <span class=\"hidden-sm hidden-xs\">" + jQuery("#b2sJSTextAddPost").val() + "</span>").addClass("b2s-calendar-sched-new-post-btn").attr('href', '#');
|
74 |
sel_element.append($header);
|
75 |
}
|
76 |
+
|
77 |
},
|
78 |
eventDrop: function (event, delta, revertFunc) {
|
79 |
jQuery.ajax({
|
394 |
return false;
|
395 |
}
|
396 |
jQuery('#b2s-show-post-type-modal').modal('show');
|
397 |
+
var view = jQuery('#b2s_calendar').fullCalendar('getView');
|
398 |
+
var selSchedDate;
|
399 |
+
if (view.type == 'month') {
|
400 |
+
selSchedDate = jQuery(this).parent('td').attr('data-date');
|
401 |
+
} else {
|
402 |
+
selSchedDate = jQuery(this).parent('th').attr('data-date');
|
403 |
+
}
|
404 |
jQuery('#b2sSelSchedDate').val(selSchedDate);
|
405 |
return false;
|
406 |
});
|
assets/js/b2s/curation.js
CHANGED
@@ -255,8 +255,8 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
255 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
256 |
noContent = true;
|
257 |
}
|
258 |
-
if (jQuery('
|
259 |
-
jQuery('
|
260 |
noContent = true;
|
261 |
}
|
262 |
}
|
@@ -399,8 +399,8 @@ jQuery(document).on('click', '#b2s-btn-curation-customize', function () {
|
|
399 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
400 |
noContent = true;
|
401 |
}
|
402 |
-
if (jQuery('
|
403 |
-
jQuery('
|
404 |
noContent = true;
|
405 |
}
|
406 |
}
|
@@ -509,8 +509,8 @@ jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
|
509 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
510 |
noContent = true;
|
511 |
}
|
512 |
-
if (jQuery('
|
513 |
-
jQuery('
|
514 |
noContent = true;
|
515 |
}
|
516 |
}
|
255 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
256 |
noContent = true;
|
257 |
}
|
258 |
+
if (jQuery('#b2s-post-curation-comment-image').val().length === 0) {
|
259 |
+
jQuery('#b2s-post-curation-comment-image').addClass('error');
|
260 |
noContent = true;
|
261 |
}
|
262 |
}
|
399 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
400 |
noContent = true;
|
401 |
}
|
402 |
+
if (jQuery('#b2s-post-curation-comment-image').val().length === 0) {
|
403 |
+
jQuery('#b2s-post-curation-comment-image').addClass('error');
|
404 |
noContent = true;
|
405 |
}
|
406 |
}
|
509 |
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
510 |
noContent = true;
|
511 |
}
|
512 |
+
if (jQuery('#b2s-post-curation-comment-image').val().length === 0) {
|
513 |
+
jQuery('#b2s-post-curation-comment-image').addClass('error');
|
514 |
noContent = true;
|
515 |
}
|
516 |
}
|
assets/js/b2s/repost.js
ADDED
@@ -0,0 +1,752 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
jQuery.noConflict();
|
2 |
+
jQuery(window).on("load", function () {
|
3 |
+
|
4 |
+
jQuery(".b2s-re-post-type").chosen();
|
5 |
+
jQuery(".b2s-re-post-categories").chosen();
|
6 |
+
jQuery(".b2s-re-post-author").chosen();
|
7 |
+
|
8 |
+
var dateFormat = "yyyy-mm-dd";
|
9 |
+
var language = "en";
|
10 |
+
if (jQuery('#b2sUserLang').val() == "de") {
|
11 |
+
dateFormat = "dd.mm.yyyy";
|
12 |
+
language = "de";
|
13 |
+
}
|
14 |
+
jQuery(".b2s-re-post-date-start").datepicker({
|
15 |
+
format: dateFormat,
|
16 |
+
language: language,
|
17 |
+
maxViewMode: 2,
|
18 |
+
todayHighlight: true,
|
19 |
+
calendarWeeks: true,
|
20 |
+
autoclose: true
|
21 |
+
});
|
22 |
+
|
23 |
+
jQuery(".b2s-re-post-date-end").datepicker({
|
24 |
+
format: dateFormat,
|
25 |
+
language: language,
|
26 |
+
maxViewMode: 2,
|
27 |
+
todayHighlight: true,
|
28 |
+
calendarWeeks: true,
|
29 |
+
autoclose: true
|
30 |
+
});
|
31 |
+
|
32 |
+
var showMeridian = true;
|
33 |
+
if (jQuery('#b2sUserLang').val() == "de") {
|
34 |
+
dateFormat = "dd.mm.yyyy";
|
35 |
+
language = "de";
|
36 |
+
showMeridian = false;
|
37 |
+
}
|
38 |
+
jQuery('.b2s-re-post-input-time').timepicker({
|
39 |
+
minuteStep: 15,
|
40 |
+
appendWidgetTo: 'body',
|
41 |
+
showSeconds: false,
|
42 |
+
showMeridian: showMeridian,
|
43 |
+
snapToStep: true
|
44 |
+
});
|
45 |
+
|
46 |
+
jQuery('.b2s-re-post-queue-count').html(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length);
|
47 |
+
if(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length == 0) {
|
48 |
+
jQuery('.b2s-re-post-queue-delete-area').hide();
|
49 |
+
}
|
50 |
+
jQuery('.b2s-re-post-settings-option').trigger('change');
|
51 |
+
jQuery('#b2s-re-post-profil-dropdown').trigger('change');
|
52 |
+
|
53 |
+
});
|
54 |
+
|
55 |
+
jQuery(document).on('click', '.b2s-re-post-settings-header', function() {
|
56 |
+
if(jQuery('.b2s-re-post-settings-area').is(':visible')) {
|
57 |
+
jQuery('.b2s-re-post-settings-area').hide();
|
58 |
+
jQuery('.b2s-re-post-settings-toggle').removeClass('glyphicon-chevron-up').addClass('glyphicon-chevron-down');
|
59 |
+
} else {
|
60 |
+
jQuery('.b2s-re-post-settings-area').show();
|
61 |
+
jQuery('.b2s-re-post-settings-toggle').removeClass('glyphicon-chevron-down').addClass('glyphicon-chevron-up');
|
62 |
+
}
|
63 |
+
});
|
64 |
+
|
65 |
+
jQuery(document).on('change', '#b2s-re-post-best-times-active', function() {
|
66 |
+
if(jQuery(this).is(':checked')) {
|
67 |
+
jQuery('.b2s-re-post-input-time').prop('disabled', true);
|
68 |
+
} else {
|
69 |
+
jQuery('.b2s-re-post-input-time').prop('disabled', false);
|
70 |
+
}
|
71 |
+
});
|
72 |
+
|
73 |
+
jQuery(document).on('change', '.b2s-re-post-settings-option', function() {
|
74 |
+
if(jQuery('.b2s-re-post-settings-option:checked').val() == 1) {
|
75 |
+
jQuery('.b2s-re-post-settings-customize-area input').prop('disabled', false);
|
76 |
+
jQuery(".b2s-re-post-type").prop('disabled', false).trigger("chosen:updated");
|
77 |
+
jQuery(".b2s-re-post-categories").prop('disabled', false).trigger("chosen:updated");
|
78 |
+
jQuery(".b2s-re-post-author").prop('disabled', false).trigger("chosen:updated");
|
79 |
+
} else {
|
80 |
+
jQuery('.b2s-re-post-settings-customize-area input').prop('disabled', true);
|
81 |
+
jQuery(".b2s-re-post-type").prop('disabled', true).trigger("chosen:updated");
|
82 |
+
jQuery(".b2s-re-post-categories").prop('disabled', true).trigger("chosen:updated");
|
83 |
+
jQuery(".b2s-re-post-author").prop('disabled', true).trigger("chosen:updated");
|
84 |
+
}
|
85 |
+
});
|
86 |
+
|
87 |
+
jQuery(document).on('click', '.b2s-re-post-submit-btn', function() {
|
88 |
+
if(jQuery('.b2s-re-post-date-active').is(':checked') && (jQuery('.b2s-re-post-date-start').val() == "" || jQuery('.b2s-re-post-date-end').val() == "") && !(jQuery('.b2s-re-post-date-start').val() == "" && jQuery('.b2s-re-post-date-end').val() == "")) {
|
89 |
+
if(jQuery('.b2s-re-post-date-start').val() == "") {
|
90 |
+
jQuery('.b2s-re-post-date-start').addClass('error');
|
91 |
+
}
|
92 |
+
if(jQuery('.b2s-re-post-date-end').val() == "") {
|
93 |
+
jQuery('.b2s-re-post-date-end').addClass('error');
|
94 |
+
}
|
95 |
+
return false;
|
96 |
+
}
|
97 |
+
jQuery('.b2s-repost-options-area').hide();
|
98 |
+
jQuery('.b2s-repost-queue-area').hide();
|
99 |
+
jQuery('.b2s-re-post-no-content').hide();
|
100 |
+
jQuery('.b2s-re-post-limit-error').hide();
|
101 |
+
jQuery('.b2s-loading-area').show();
|
102 |
+
jQuery.ajax({
|
103 |
+
url: ajaxurl,
|
104 |
+
type: "POST",
|
105 |
+
dataType: "json",
|
106 |
+
cache: false,
|
107 |
+
data: jQuery('#b2s-re-post-settings').serialize() + '&b2s-re-post-queue-count=' + jQuery('.b2s-re-post-queue-count').html() + '&action=b2s_re_post_submit&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
108 |
+
error: function () {
|
109 |
+
jQuery('.b2s-repost-options-area').show();
|
110 |
+
jQuery('.b2s-repost-queue-area').show();
|
111 |
+
jQuery('.b2s-loading-area').hide();
|
112 |
+
jQuery('.b2s-server-connection-fail').show();
|
113 |
+
return false;
|
114 |
+
},
|
115 |
+
success: function (data) {
|
116 |
+
jQuery('.b2s-repost-options-area').show();
|
117 |
+
jQuery('.b2s-repost-queue-area').show();
|
118 |
+
jQuery('.b2s-loading-area').hide();
|
119 |
+
if(data.result == true) {
|
120 |
+
if(data.queue != "") {
|
121 |
+
jQuery('.b2s-repost-queue-area').html(data.queue);
|
122 |
+
jQuery('.b2s-re-post-queue-count').html(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length);
|
123 |
+
if(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length == 0) {
|
124 |
+
jQuery('.b2s-re-post-queue-delete-area').hide();
|
125 |
+
}
|
126 |
+
}
|
127 |
+
} else {
|
128 |
+
if (data.error == 'nonce') {
|
129 |
+
jQuery('.b2s-nonce-check-fail').show();
|
130 |
+
return false;
|
131 |
+
}
|
132 |
+
if (data.error == 'no_content') {
|
133 |
+
jQuery('.b2s-re-post-no-content').show();
|
134 |
+
return false;
|
135 |
+
}
|
136 |
+
if (data.error == 'limit') {
|
137 |
+
jQuery('.b2s-re-post-limit-error').show();
|
138 |
+
return false;
|
139 |
+
}
|
140 |
+
jQuery('.b2s-server-connection-fail').show();
|
141 |
+
}
|
142 |
+
}
|
143 |
+
});
|
144 |
+
});
|
145 |
+
|
146 |
+
jQuery(document).on('click', '.b2s-re-post-select-all', function() {
|
147 |
+
jQuery('.b2s-re-post-queue-checkbox').prop('checked', true);
|
148 |
+
jQuery('.b2s-re-post-queue-checkbox').trigger('change');
|
149 |
+
});
|
150 |
+
|
151 |
+
jQuery(document).on('change', '.b2s-re-post-queue-checkbox', function() {
|
152 |
+
if(jQuery('.b2s-re-post-queue-checkbox:checked').length) {
|
153 |
+
jQuery('.b2s-re-post-delete-checked').show();
|
154 |
+
} else {
|
155 |
+
jQuery('.b2s-re-post-delete-checked').hide();
|
156 |
+
}
|
157 |
+
});
|
158 |
+
|
159 |
+
jQuery(document).on('change', '.b2s-re-post-limit', function() {
|
160 |
+
if(jQuery(this).children("option:selected").data('limit') == 0) {
|
161 |
+
jQuery(this).children('option:selected').prop('selected', false);
|
162 |
+
jQuery(this).children('option[data-limit="1"]:last').prop('selected', 'selected');
|
163 |
+
jQuery('.b2s-re-post-limit-info').show();
|
164 |
+
} else {
|
165 |
+
jQuery('.b2s-re-post-limit-info').hide();
|
166 |
+
}
|
167 |
+
});
|
168 |
+
|
169 |
+
jQuery(document).on('change', '#b2s-re-post-profil-dropdown', function () {
|
170 |
+
jQuery('.b2s-re-post-error[data-error-reason="no-auth-in-mandant"]').hide();
|
171 |
+
var tos = false;
|
172 |
+
if (jQuery('#b2s-re-post-profil-data-' + jQuery(this).val()).val() == "") {
|
173 |
+
tos = true;
|
174 |
+
} else {
|
175 |
+
//TOS Twitter Check
|
176 |
+
var len = jQuery('#b2s-re-post-profil-dropdown-twitter').children('option[data-mandant-id="' + jQuery(this).val() + '"]').length;
|
177 |
+
if (len >= 1) {
|
178 |
+
jQuery('.b2s-re-post-twitter-profile').show();
|
179 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter').prop('disabled', false);
|
180 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter').show();
|
181 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter option').attr("disabled", "disabled");
|
182 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter option[data-mandant-id="' + jQuery(this).val() + '"]').attr("disabled", false);
|
183 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter option[data-mandant-id="' + jQuery(this).val() + '"]:first').attr("selected", "selected");
|
184 |
+
} else {
|
185 |
+
tos = true;
|
186 |
+
}
|
187 |
+
|
188 |
+
}
|
189 |
+
//TOS Twitter 032018
|
190 |
+
if (tos) {
|
191 |
+
jQuery('.b2s-re-post-twitter-profile').hide();
|
192 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter').prop('disabled', 'disabled');
|
193 |
+
jQuery('#b2s-re-post-profil-dropdown-twitter').hide();
|
194 |
+
}
|
195 |
+
});
|
196 |
+
|
197 |
+
jQuery(document).on('click', '.b2s-re-post-delete-checked', function() {
|
198 |
+
var checkboxes = jQuery('.b2s-re-post-queue-checkbox:checked');
|
199 |
+
if (checkboxes.length > 0) {
|
200 |
+
var items = [];
|
201 |
+
jQuery(checkboxes).each(function (i, selected) {
|
202 |
+
items[i] = jQuery(selected).val();
|
203 |
+
});
|
204 |
+
jQuery('#b2s-delete-confirm-post-id').val(items.join());
|
205 |
+
jQuery('#b2s-delete-confirm-post-count').html(items.length);
|
206 |
+
jQuery('.b2s-delete-sched-modal').modal('show');
|
207 |
+
jQuery('.b2s-sched-delete-confirm-btn').prop('disabeld', true);
|
208 |
+
jQuery('.b2s-sched-delete-confirm-btn').hide();
|
209 |
+
jQuery('.b2s-sched-delete-confirm-multi-btn').prop('disabeld', false);
|
210 |
+
jQuery('.b2s-sched-delete-confirm-multi-btn').show();
|
211 |
+
}
|
212 |
+
});
|
213 |
+
|
214 |
+
jQuery(document).on('click', '.b2sDetailsSchedPostTriggerLink', function () {
|
215 |
+
jQuery('.b2sDetailsSchedPostBtn[data-post-id="'+jQuery(this).data('post-id')+'"]').trigger('click');
|
216 |
+
return false;
|
217 |
+
});
|
218 |
+
|
219 |
+
jQuery(document).on('click', '.b2sDetailsSchedPostBtn', function () {
|
220 |
+
var postId = jQuery(this).attr('data-post-id');
|
221 |
+
if (!jQuery(this).find('i').hasClass('isload')) {
|
222 |
+
jQuery('.b2s-server-connection-fail').hide();
|
223 |
+
jQuery.ajax({
|
224 |
+
url: ajaxurl,
|
225 |
+
type: "POST",
|
226 |
+
dataType: "json",
|
227 |
+
cache: false,
|
228 |
+
data: {
|
229 |
+
'action': 'b2s_sched_post_data',
|
230 |
+
'postId': postId,
|
231 |
+
'type': 'repost',
|
232 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
233 |
+
},
|
234 |
+
error: function () {
|
235 |
+
jQuery('.b2s-server-connection-fail').show();
|
236 |
+
return false;
|
237 |
+
},
|
238 |
+
success: function (data) {
|
239 |
+
if (data.result == true) {
|
240 |
+
jQuery('.b2s-post-sched-area[data-post-id="' + data.postId + '"]').html(data.content);
|
241 |
+
} else {
|
242 |
+
if (data.error == 'nonce') {
|
243 |
+
jQuery('.b2s-nonce-check-fail').show();
|
244 |
+
}
|
245 |
+
}
|
246 |
+
}
|
247 |
+
});
|
248 |
+
jQuery(this).find('i').removeClass('glyphicon-chevron-down').addClass('glyphicon-chevron-up').addClass('isload').addClass('isShow');
|
249 |
+
} else {
|
250 |
+
if (jQuery(this).find('i').hasClass('isShow')) {
|
251 |
+
jQuery('.b2s-post-sched-area[data-post-id="' + postId + '"]').hide();
|
252 |
+
jQuery(this).find('i').removeClass('isShow').addClass('isHide').removeClass('glyphicon-chevron-up').addClass('glyphicon-chevron-down');
|
253 |
+
} else {
|
254 |
+
jQuery('.b2s-post-sched-area[data-post-id="' + postId + '"]').show();
|
255 |
+
jQuery(this).find('i').removeClass('isHide').addClass('isShow').removeClass('glyphicon-chevron-down').addClass('glyphicon-chevron-up');
|
256 |
+
}
|
257 |
+
}
|
258 |
+
|
259 |
+
});
|
260 |
+
|
261 |
+
jQuery(document).on('click', '.b2s-post-sched-area-drop-btn', function () {
|
262 |
+
jQuery('#b2s-delete-confirm-post-id').val(jQuery(this).attr('data-post-id'));
|
263 |
+
jQuery('#b2s-delete-confirm-post-count').html('1');
|
264 |
+
jQuery('.b2s-delete-sched-modal').modal('show');
|
265 |
+
jQuery('.b2s-sched-delete-confirm-multi-btn').prop('disabeld', true);
|
266 |
+
jQuery('.b2s-sched-delete-confirm-multi-btn').hide();
|
267 |
+
jQuery('.b2s-sched-delete-confirm-btn').prop('disabeld', false);
|
268 |
+
jQuery('.b2s-sched-delete-confirm-btn').show();
|
269 |
+
return false;
|
270 |
+
});
|
271 |
+
|
272 |
+
jQuery(document).on('click', '.b2s-sched-delete-confirm-multi-btn', function() {
|
273 |
+
jQuery('.b2s-delete-sched-modal').modal('hide');
|
274 |
+
jQuery('.b2s-repost-options-area').hide();
|
275 |
+
jQuery('.b2s-repost-queue-area').hide();
|
276 |
+
jQuery('.b2s-loading-area').show();
|
277 |
+
|
278 |
+
jQuery('.b2s-post-remove-fail').hide();
|
279 |
+
jQuery('.b2s-post-remove-success').hide();
|
280 |
+
jQuery('.b2s-sched-delete-confirm-btn').prop('disabeld', true);
|
281 |
+
jQuery('.b2s-server-connection-fail').hide();
|
282 |
+
jQuery.ajax({
|
283 |
+
url: ajaxurl,
|
284 |
+
type: "POST",
|
285 |
+
dataType: "json",
|
286 |
+
cache: false,
|
287 |
+
data: {
|
288 |
+
'action': 'b2s_delete_re_post_sched',
|
289 |
+
'postId': jQuery('#b2s-delete-confirm-post-id').val(),
|
290 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
291 |
+
},
|
292 |
+
error: function () {
|
293 |
+
jQuery('.b2s-server-connection-fail').show();
|
294 |
+
return false;
|
295 |
+
},
|
296 |
+
success: function (data) {
|
297 |
+
jQuery('.b2s-repost-options-area').show();
|
298 |
+
jQuery('.b2s-repost-queue-area').show();
|
299 |
+
jQuery('.b2s-loading-area').hide();
|
300 |
+
if (data.result == true) {
|
301 |
+
data.postIds.forEach(function(postId) {
|
302 |
+
jQuery('.b2s-re-post-queue-checkbox[data-blog-post-id="'+postId+'"]').closest('li').remove();
|
303 |
+
});
|
304 |
+
jQuery('.b2s-re-post-queue-count').html(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length);
|
305 |
+
if(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length == 0) {
|
306 |
+
jQuery('.b2s-re-post-queue-delete-area').hide();
|
307 |
+
}
|
308 |
+
jQuery('.b2s-re-post-queue-checkbox').trigger('change');
|
309 |
+
} else {
|
310 |
+
if (data.error == 'nonce') {
|
311 |
+
jQuery('.b2s-nonce-check-fail').show();
|
312 |
+
}
|
313 |
+
jQuery('.b2s-post-remove-fail').show();
|
314 |
+
}
|
315 |
+
wp.heartbeat.connectNow();
|
316 |
+
return true;
|
317 |
+
}
|
318 |
+
});
|
319 |
+
});
|
320 |
+
|
321 |
+
jQuery(document).on('click', '.b2s-sched-delete-confirm-btn', function () {
|
322 |
+
jQuery('.b2s-delete-sched-modal').modal('hide');
|
323 |
+
jQuery('.b2s-repost-options-area').hide();
|
324 |
+
jQuery('.b2s-repost-queue-area').hide();
|
325 |
+
jQuery('.b2s-loading-area').show();
|
326 |
+
|
327 |
+
jQuery('.b2s-post-remove-fail').hide();
|
328 |
+
jQuery('.b2s-post-remove-success').hide();
|
329 |
+
jQuery('.b2s-sched-delete-confirm-btn').prop('disabeld', true);
|
330 |
+
jQuery('.b2s-server-connection-fail').hide();
|
331 |
+
jQuery.ajax({
|
332 |
+
url: ajaxurl,
|
333 |
+
type: "POST",
|
334 |
+
dataType: "json",
|
335 |
+
cache: false,
|
336 |
+
data: {
|
337 |
+
'action': 'b2s_delete_user_sched_post',
|
338 |
+
'postId': jQuery('#b2s-delete-confirm-post-id').val(),
|
339 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
340 |
+
},
|
341 |
+
error: function () {
|
342 |
+
jQuery('.b2s-server-connection-fail').show();
|
343 |
+
return false;
|
344 |
+
},
|
345 |
+
success: function (data) {
|
346 |
+
jQuery('.b2s-repost-options-area').show();
|
347 |
+
jQuery('.b2s-repost-queue-area').show();
|
348 |
+
jQuery('.b2s-loading-area').hide();
|
349 |
+
if (data.result == true) {
|
350 |
+
var count = parseInt(jQuery('.b2s-sched-count[data-post-id="' + data.blogPostId + '"]').html());
|
351 |
+
var newCount = count - data.postCount;
|
352 |
+
jQuery('.b2s-sched-count[data-post-id="' + data.blogPostId + '"]').html(newCount);
|
353 |
+
if (newCount >= 1) {
|
354 |
+
jQuery.each(data.postId, function (i, id) {
|
355 |
+
jQuery('.b2s-post-sched-area-li[data-post-id="' + id + '"]').remove();
|
356 |
+
});
|
357 |
+
} else {
|
358 |
+
jQuery('.b2s-post-sched-area-li[data-post-id="' + data.postId[0] + '"]').closest('ul').closest('li').remove();
|
359 |
+
jQuery('.b2s-re-post-queue-count').html(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length);
|
360 |
+
if(jQuery('.b2s-re-post-queue-area .list-group-item[data-type="post"]').length == 0) {
|
361 |
+
jQuery('.b2s-re-post-queue-delete-area').hide();
|
362 |
+
}
|
363 |
+
}
|
364 |
+
jQuery('.b2s-post-remove-success').show();
|
365 |
+
} else {
|
366 |
+
if (data.error == 'nonce') {
|
367 |
+
jQuery('.b2s-nonce-check-fail').show();
|
368 |
+
}
|
369 |
+
jQuery('.b2s-post-remove-fail').show();
|
370 |
+
}
|
371 |
+
wp.heartbeat.connectNow();
|
372 |
+
return true;
|
373 |
+
}
|
374 |
+
});
|
375 |
+
});
|
376 |
+
|
377 |
+
|
378 |
+
|
379 |
+
jQuery(document).on('click', '.b2s-post-edit-sched-btn', function () {
|
380 |
+
showEditSchedPost(jQuery(this).attr('data-b2s-id'), jQuery(this).attr('data-post-id'), jQuery(this).attr('data-network-auth-id'), jQuery(this).attr('data-network-type'), jQuery(this).attr('data-network-id'), jQuery(this).attr('data-relay-primary-post-id'));
|
381 |
+
|
382 |
+
});
|
383 |
+
|
384 |
+
//Customize
|
385 |
+
function showEditSchedPost(b2s_id, post_id, network_auth_id, network_type, network_id, relay_primary_post_id) {
|
386 |
+
if (jQuery('#b2s-edit-event-modal-' + b2s_id).length == 1)
|
387 |
+
{
|
388 |
+
jQuery('#b2s-edit-event-modal-' + b2s_id).remove();
|
389 |
+
}
|
390 |
+
jQuery("#b2sPostId").val(post_id);
|
391 |
+
var $modal = jQuery("<div>");
|
392 |
+
jQuery.ajax({
|
393 |
+
url: ajaxurl,
|
394 |
+
type: "POST",
|
395 |
+
cache: false,
|
396 |
+
async: false,
|
397 |
+
data: {
|
398 |
+
'action': 'b2s_get_post_edit_modal',
|
399 |
+
'id': b2s_id,
|
400 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
401 |
+
},
|
402 |
+
success: function (data) {
|
403 |
+
if (data.error == 'nonce') {
|
404 |
+
jQuery('.b2s-nonce-check-fail').show();
|
405 |
+
} else {
|
406 |
+
$modal = $modal.html(data);
|
407 |
+
}
|
408 |
+
}
|
409 |
+
});
|
410 |
+
b2s_current_post_id = post_id;
|
411 |
+
jQuery("body").append($modal);
|
412 |
+
jQuery(".b2s-edit-post-delete").hide();
|
413 |
+
jQuery('#b2sUserTimeZone').val(jQuery('#user_timezone').val());
|
414 |
+
jQuery('#b2s-edit-event-modal-' + b2s_id).modal('show');
|
415 |
+
var post_format = jQuery('#b2sCurrentPostFormat').val();
|
416 |
+
activatePortal(network_auth_id);
|
417 |
+
initSceditor(network_auth_id);
|
418 |
+
if (jQuery('.b2s-post-ship-item-post-format-text[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').length > 0) {
|
419 |
+
var postFormatText = b2s_post_formats;
|
420 |
+
var isSetPostFormat = false;
|
421 |
+
var postFormatType = jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').attr('data-post-format-type');
|
422 |
+
//is set post format => override current condidtions by user settings for this post
|
423 |
+
if (post_format !== null) {
|
424 |
+
jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val(post_format);
|
425 |
+
jQuery('.b2s-post-ship-item-post-format-text[data-network-auth-id="' + network_auth_id + '"]').html(postFormatText[postFormatType][post_format]);
|
426 |
+
jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + network_auth_id + '"]').val(post_format);
|
427 |
+
//edit modal select post format
|
428 |
+
jQuery('.b2s-user-network-settings-post-format[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').removeClass('b2s-settings-checked');
|
429 |
+
jQuery('.b2s-user-network-settings-post-format[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"][data-post-format="' + post_format + '"]').addClass('b2s-settings-checked');
|
430 |
+
} else {
|
431 |
+
jQuery('.b2s-post-ship-item-post-format-text[data-network-auth-id="' + network_auth_id + '"]').html(postFormatText[postFormatType][jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val()]);
|
432 |
+
jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + network_auth_id + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val());
|
433 |
+
}
|
434 |
+
|
435 |
+
//if linkpost then show btn meta tags
|
436 |
+
var isMetaChecked = false;
|
437 |
+
var ogMetaNetworks = jQuery('#ogMetaNetworks').val().split(";");
|
438 |
+
if (typeof network_id != 'undefined' && jQuery.inArray(network_id.toString(), ogMetaNetworks) != -1 && jQuery('#isOgMetaChecked').val() == "1") {
|
439 |
+
isMetaChecked = true;
|
440 |
+
}
|
441 |
+
if (network_id == "2" && jQuery('#isCardMetaChecked').val() == "1") {
|
442 |
+
isMetaChecked = true;
|
443 |
+
}
|
444 |
+
if (isMetaChecked && jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + network_type + '"][data-network-id="' + network_id + '"]').val() == "0") {
|
445 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", false);
|
446 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", false);
|
447 |
+
jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').show();
|
448 |
+
//jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').trigger("click");
|
449 |
+
var dataMetaType = jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').attr("data-meta-type");
|
450 |
+
if (dataMetaType == "og") {
|
451 |
+
jQuery('.b2sChangeOgMeta[data-network-auth-id="' + network_auth_id + '"]').val("1");
|
452 |
+
} else {
|
453 |
+
jQuery('.b2sChangeCardMeta[data-network-auth-id="' + network_auth_id + '"]').val("1");
|
454 |
+
}
|
455 |
+
} else {
|
456 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
457 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
458 |
+
jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').hide();
|
459 |
+
}
|
460 |
+
|
461 |
+
//Content Curation
|
462 |
+
if (jQuery('.b2s-post-ship-item-post-format[data-network-auth-id="' + network_auth_id + '"]').attr('data-post-wp-type') == 'ex') {
|
463 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
464 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
465 |
+
jQuery('.b2s-post-item-details-item-url-input[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
466 |
+
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + network_auth_id + '"]').attr("style", "display:none !important");
|
467 |
+
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + network_auth_id + '"]').val() == 0) {
|
468 |
+
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + network_auth_id + '"]').hide();
|
469 |
+
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + network_auth_id + '"]').hide();
|
470 |
+
} else {
|
471 |
+
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + network_auth_id + '"]').show();
|
472 |
+
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + network_auth_id + '"]').show();
|
473 |
+
}
|
474 |
+
}
|
475 |
+
}
|
476 |
+
var textLimit = jQuery('.b2s-post-item-details-item-message-input[data-network-count="-1"][data-network-auth-id="' + network_auth_id + '"]').attr('data-network-text-limit');
|
477 |
+
if (textLimit != "0") {
|
478 |
+
networkLimitAll(network_auth_id, network_id, textLimit);
|
479 |
+
} else {
|
480 |
+
networkCount(network_auth_id);
|
481 |
+
}
|
482 |
+
var today = new Date();
|
483 |
+
var dateFormat = "yyyy-mm-dd";
|
484 |
+
var language = "en";
|
485 |
+
var showMeridian = true;
|
486 |
+
if (jQuery('#b2sUserLang').val() == "de") {
|
487 |
+
dateFormat = "dd.mm.yyyy";
|
488 |
+
language = "de";
|
489 |
+
showMeridian = false;
|
490 |
+
}
|
491 |
+
|
492 |
+
jQuery(".b2s-post-item-details-release-input-date").datepicker({
|
493 |
+
format: dateFormat,
|
494 |
+
language: language,
|
495 |
+
maxViewMode: 2,
|
496 |
+
todayHighlight: true,
|
497 |
+
startDate: today,
|
498 |
+
calendarWeeks: true,
|
499 |
+
autoclose: true
|
500 |
+
});
|
501 |
+
jQuery('.b2s-post-item-details-release-input-time').timepicker({
|
502 |
+
minuteStep: 15,
|
503 |
+
appendWidgetTo: 'body',
|
504 |
+
showSeconds: false,
|
505 |
+
showMeridian: showMeridian,
|
506 |
+
defaultTime: 'current',
|
507 |
+
snapToStep: true
|
508 |
+
});
|
509 |
+
jQuery(".b2s-post-item-details-release-input-date").datepicker().on('changeDate', function (e) {
|
510 |
+
checkSchedDateTime(network_auth_id);
|
511 |
+
});
|
512 |
+
jQuery('.b2s-post-item-details-release-input-time').timepicker().on('changeTime.timepicker', function (e) {
|
513 |
+
checkSchedDateTime(network_auth_id);
|
514 |
+
});
|
515 |
+
init();
|
516 |
+
|
517 |
+
//is relay post?
|
518 |
+
if (relay_primary_post_id > 0) {
|
519 |
+
jQuery('#b2s-edit-event-modal-' + b2s_id).find("input, textarea, button").each(function () {
|
520 |
+
if (!jQuery(this).hasClass('b2s-input-hidden') && !jQuery(this).hasClass('b2s-modal-close') && !jQuery(this).hasClass('b2s-post-item-details-relay-input-delay') && !jQuery(this).hasClass('b2s-edit-post-delete') && !jQuery(this).hasClass('b2s-edit-post-save-this')) {
|
521 |
+
jQuery(this).prop("disabled", true);
|
522 |
+
}
|
523 |
+
});
|
524 |
+
}
|
525 |
+
|
526 |
+
if (!b2s_has_premium)
|
527 |
+
{
|
528 |
+
jQuery('#b2s-edit-event-modal-' + b2s_id).find("input, textarea, button").each(function () {
|
529 |
+
if (!jQuery(this).hasClass('b2s-modal-close')) {
|
530 |
+
jQuery(this).prop("disabled", true);
|
531 |
+
}
|
532 |
+
});
|
533 |
+
}
|
534 |
+
}
|
535 |
+
|
536 |
+
jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
|
537 |
+
jQuery('.b2s-network-select-image-content').html("");
|
538 |
+
jQuery.ajax({
|
539 |
+
url: ajaxurl,
|
540 |
+
type: "POST",
|
541 |
+
cache: false,
|
542 |
+
async: false,
|
543 |
+
data: {
|
544 |
+
'action': 'b2s_get_image_modal',
|
545 |
+
'id': jQuery(this).data('post-id'),
|
546 |
+
'image_url': jQuery(this).data('image-url'),
|
547 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
548 |
+
},
|
549 |
+
success: function (data) {
|
550 |
+
if (data.error == 'nonce') {
|
551 |
+
jQuery('.b2s-nonce-check-fail').show();
|
552 |
+
} else {
|
553 |
+
jQuery(".b2s-network-select-image-content").html(data);
|
554 |
+
}
|
555 |
+
}
|
556 |
+
});
|
557 |
+
var authId = jQuery(this).data('network-auth-id');
|
558 |
+
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId);
|
559 |
+
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId);
|
560 |
+
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();
|
561 |
+
jQuery('.b2s-selected-network-for-image-info').html(content);
|
562 |
+
jQuery('#b2sInsertImageType').val("0");
|
563 |
+
jQuery('.networkImage').each(function () {
|
564 |
+
var width = this.naturalWidth;
|
565 |
+
var height = this.naturalHeight;
|
566 |
+
jQuery(this).parents('.b2s-image-item').find('.b2s-image-item-caption-resolution').html(width + 'x' + height);
|
567 |
+
});
|
568 |
+
jQuery('#b2s-network-select-image').modal('show');
|
569 |
+
return false;
|
570 |
+
});
|
571 |
+
|
572 |
+
jQuery(document).on("click", ".b2s-edit-post-save-this", function (e) {
|
573 |
+
e.preventDefault();
|
574 |
+
jQuery('#save_method').val("apply-this");
|
575 |
+
var id = jQuery(this).data("b2s-id");
|
576 |
+
jQuery.ajax({
|
577 |
+
url: ajaxurl,
|
578 |
+
type: "POST",
|
579 |
+
dataType: "json",
|
580 |
+
cache: false,
|
581 |
+
data: jQuery(this).closest("form").serialize() + '&sched_type=5' + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
582 |
+
success: function (data) {
|
583 |
+
if (data.error == 'nonce') {
|
584 |
+
jQuery('.b2s-nonce-check-fail').show();
|
585 |
+
}
|
586 |
+
jQuery('#b2s-edit-event-modal-' + id).modal('hide');
|
587 |
+
jQuery('#b2s-edit-event-modal-' + id).remove();
|
588 |
+
jQuery('body').removeClass('modal-open');
|
589 |
+
jQuery('body').removeAttr('style');
|
590 |
+
if (data.date != "") {
|
591 |
+
jQuery('.b2s-post-sched-area-sched-time[data-post-id="' + id + '"]').html(data.date);
|
592 |
+
}
|
593 |
+
jQuery('.b2s-post-edit-success').show();
|
594 |
+
wp.heartbeat.connectNow();
|
595 |
+
}
|
596 |
+
});
|
597 |
+
});
|
598 |
+
jQuery(document).on("click", ".release_locks", function () {
|
599 |
+
jQuery.ajax({
|
600 |
+
url: ajaxurl,
|
601 |
+
type: "POST",
|
602 |
+
cache: false,
|
603 |
+
async: false,
|
604 |
+
data: {
|
605 |
+
'action': 'b2s_get_calendar_release_locks',
|
606 |
+
'post_id': jQuery('#post_id').val(),
|
607 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
608 |
+
},
|
609 |
+
success: function (data) {
|
610 |
+
if (data.error == 'nonce') {
|
611 |
+
jQuery('.b2s-nonce-check-fail').show();
|
612 |
+
}
|
613 |
+
wp.heartbeat.connectNow();
|
614 |
+
}
|
615 |
+
});
|
616 |
+
});
|
617 |
+
|
618 |
+
function showFilter(typ) {
|
619 |
+
if (typ == 'show') {
|
620 |
+
jQuery('.filterShow').hide();
|
621 |
+
jQuery('.form-inline').show();
|
622 |
+
jQuery('.filterHide').show();
|
623 |
+
} else {
|
624 |
+
jQuery('.filterShow').show();
|
625 |
+
jQuery('.form-inline').hide();
|
626 |
+
jQuery('.filterHide').hide();
|
627 |
+
}
|
628 |
+
}
|
629 |
+
|
630 |
+
function padDate(n) {
|
631 |
+
return ("0" + n).slice(-2);
|
632 |
+
}
|
633 |
+
|
634 |
+
|
635 |
+
function checkSchedDateTime() {
|
636 |
+
var dateElement = '#b2s-change-date';
|
637 |
+
var timeElement = '#b2s-change-time';
|
638 |
+
var dateStr = jQuery(dateElement).val();
|
639 |
+
var minStr = jQuery(timeElement).val();
|
640 |
+
var timeZone = parseInt(jQuery('#user_timezone').val()) * (-1);
|
641 |
+
|
642 |
+
if (jQuery('#b2sUserLang').val() == 'de') {
|
643 |
+
dateStr = dateStr.substring(6, 10) + '-' + dateStr.substring(3, 5) + '-' + dateStr.substring(0, 2);
|
644 |
+
} else {
|
645 |
+
var minParts = minStr.split(' ');
|
646 |
+
var minParts2 = minParts[0].split(':');
|
647 |
+
if (minParts[1] == 'PM') {
|
648 |
+
minParts2[0] = parseInt(minParts2[0]) + 12;
|
649 |
+
}
|
650 |
+
minStr = minParts2[0] + ':' + minParts2[1];
|
651 |
+
}
|
652 |
+
|
653 |
+
var minParts3 = minStr.split(':');
|
654 |
+
if (minParts3[0] < 10) {
|
655 |
+
minParts3[0] = '0' + minParts3[0];
|
656 |
+
}
|
657 |
+
var dateParts = dateStr.split('-');
|
658 |
+
|
659 |
+
//utc current time
|
660 |
+
var now = new Date();
|
661 |
+
//offset between utc und user
|
662 |
+
var offset = (parseInt(now.getTimezoneOffset() / 60)) * (-1);
|
663 |
+
//enter hour to user time
|
664 |
+
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
665 |
+
//calculate datetime in utc
|
666 |
+
var enter = new Date(dateParts[0], dateParts[1] - 1, dateParts[2], hour, minParts3[1]);
|
667 |
+
//compare enter date time with allowed user time
|
668 |
+
if (enter.getTime() < now.getTime()) {
|
669 |
+
//enter set on next 15 minutes and calculate on user timezone
|
670 |
+
enter.setTime(now.getTime() + (900000 - (now.getTime() % 900000)) - (3600000 * (timeZone + offset)));
|
671 |
+
jQuery(dateElement).datepicker('update', enter);
|
672 |
+
jQuery(timeElement).timepicker('setTime', enter);
|
673 |
+
}
|
674 |
+
}
|
675 |
+
|
676 |
+
jQuery(document).on('click', '.b2s-sched-calendar-btn', function () {
|
677 |
+
if (jQuery('#b2s-sched-calendar-area').is(":visible")) {
|
678 |
+
jQuery('#b2s-sched-calendar-btn-text').text(jQuery(this).attr('data-show-calendar-btn-title'));
|
679 |
+
jQuery('#b2s-sched-calendar-area').hide();
|
680 |
+
} else {
|
681 |
+
jQuery('#b2s-sched-calendar-btn-text').text(jQuery(this).attr('data-hide-calendar-btn-title'));
|
682 |
+
jQuery('#b2s-sched-calendar-area').show();
|
683 |
+
}
|
684 |
+
});
|
685 |
+
|
686 |
+
//Overlay second modal
|
687 |
+
jQuery('#b2s-network-select-image').on('hidden.bs.modal', function () {
|
688 |
+
jQuery('body').addClass('modal-open');
|
689 |
+
});
|
690 |
+
//Overlay second modal
|
691 |
+
jQuery('#b2s-post-ship-item-post-format-modal').on('hidden.bs.modal', function () {
|
692 |
+
jQuery('body').addClass('modal-open');
|
693 |
+
});
|
694 |
+
jQuery('#b2s-info-change-meta-tag-modal').on('hidden.bs.modal', function () {
|
695 |
+
jQuery('body').addClass('modal-open');
|
696 |
+
});
|
697 |
+
|
698 |
+
//Modal Edit Post close
|
699 |
+
jQuery(document).on('click', '.b2s-modal-close-edit-post', function (e) {
|
700 |
+
jQuery(jQuery(this).attr('data-modal-name')).remove();
|
701 |
+
return false;
|
702 |
+
});
|
703 |
+
|
704 |
+
jQuery(document).on('click', '.b2sTwitterInfoModalBtn', function () {
|
705 |
+
jQuery('#b2sTwitterInfoModal').modal('show');
|
706 |
+
});
|
707 |
+
|
708 |
+
jQuery(document).on('click', '.b2s-re-post-submit-premium', function () {
|
709 |
+
jQuery('#b2sInfoRePosterModal').modal('show');
|
710 |
+
});
|
711 |
+
|
712 |
+
jQuery(document).on('change', '.b2s-re-post-type', function() {
|
713 |
+
if(jQuery(this).val() == null) {
|
714 |
+
jQuery('.b2s-re-post-type-active').prop('checked', false);
|
715 |
+
} else {
|
716 |
+
jQuery('.b2s-re-post-type-active').prop('checked', true);
|
717 |
+
}
|
718 |
+
});
|
719 |
+
|
720 |
+
jQuery(document).on('change', '.b2s-re-post-categories', function() {
|
721 |
+
if(jQuery(this).val() == null) {
|
722 |
+
jQuery('.b2s-re-post-categories-active').prop('checked', false);
|
723 |
+
} else {
|
724 |
+
jQuery('.b2s-re-post-categories-active').prop('checked', true);
|
725 |
+
}
|
726 |
+
});
|
727 |
+
|
728 |
+
jQuery(document).on('change', '.b2s-re-post-author', function() {
|
729 |
+
if(jQuery(this).val() == null) {
|
730 |
+
jQuery('.b2s-re-post-author-active').prop('checked', false);
|
731 |
+
} else {
|
732 |
+
jQuery('.b2s-re-post-author-active').prop('checked', true);
|
733 |
+
}
|
734 |
+
});
|
735 |
+
|
736 |
+
jQuery(document).on('change', '.b2s-re-post-date-start', function() {
|
737 |
+
if(jQuery('.b2s-re-post-date-start').val() == "" && jQuery('.b2s-re-post-date-end').val() == "") {
|
738 |
+
jQuery('.b2s-re-post-date-active').prop('checked', false);
|
739 |
+
} else {
|
740 |
+
jQuery('.b2s-re-post-date-active').prop('checked', true);
|
741 |
+
}
|
742 |
+
jQuery('.b2s-re-post-date-start').removeClass('error');
|
743 |
+
});
|
744 |
+
|
745 |
+
jQuery(document).on('change', '.b2s-re-post-date-end', function() {
|
746 |
+
if(jQuery('.b2s-re-post-date-start').val() == "" && jQuery('.b2s-re-post-date-end').val() == "") {
|
747 |
+
jQuery('.b2s-re-post-date-active').prop('checked', false);
|
748 |
+
} else {
|
749 |
+
jQuery('.b2s-re-post-date-active').prop('checked', true);
|
750 |
+
}
|
751 |
+
jQuery('.b2s-re-post-date-end').removeClass('error');
|
752 |
+
});
|
assets/js/b2s/settings.js
CHANGED
@@ -17,21 +17,7 @@ jQuery(window).on("load", function () {
|
|
17 |
jQuery("." + b2sShowSection).trigger("click");
|
18 |
}
|
19 |
jQuery(".b2s-import-auto-post-type").chosen();
|
20 |
-
|
21 |
-
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
22 |
-
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length);
|
23 |
-
});
|
24 |
-
|
25 |
-
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
26 |
-
if (length > 0) {
|
27 |
-
jQuery('.b2s-auto-post-own-update-warning').show();
|
28 |
-
}
|
29 |
-
|
30 |
-
//TOS Twitter 032018 - none multiple Accounts - User select once
|
31 |
-
checkNetworkTos(2);
|
32 |
|
33 |
-
jQuery('#b2s-auto-post-profil-dropdown').trigger('change');
|
34 |
-
|
35 |
});
|
36 |
|
37 |
jQuery('.b2sSaveSocialMetaTagsSettings').validate({
|
@@ -86,40 +72,6 @@ jQuery('.b2sSaveSocialMetaTagsSettings').validate({
|
|
86 |
}
|
87 |
});
|
88 |
|
89 |
-
//TOS Twitter 032018 - none multiple Accounts - User select once
|
90 |
-
jQuery(document).on('change', '.b2s-network-tos-check', function () {
|
91 |
-
var networkId = jQuery(this).attr('data-network-id');
|
92 |
-
if (networkId == 2) {
|
93 |
-
checkNetworkTos(networkId, false);
|
94 |
-
}
|
95 |
-
return false;
|
96 |
-
});
|
97 |
-
|
98 |
-
//TOS Twitter 032018 - none multiple Accounts - User select once
|
99 |
-
function checkNetworkTos(networkId) {
|
100 |
-
var len = jQuery('.b2s-network-tos-check[data-network-id="' + networkId + '"]:checked').length;
|
101 |
-
if (len > 1) {
|
102 |
-
jQuery('.b2s-network-tos-auto-post-import-warning').show();
|
103 |
-
jQuery('#b2s-auto-post-settings-btn').attr('disabled', 'disabled');
|
104 |
-
return false;
|
105 |
-
} else {
|
106 |
-
jQuery('.b2s-network-tos-auto-post-import-warning').hide();
|
107 |
-
jQuery('#b2s-auto-post-settings-btn').attr('disabled', false);
|
108 |
-
return true;
|
109 |
-
}
|
110 |
-
}
|
111 |
-
|
112 |
-
jQuery(document).on('change', '.b2s-post-type-item-update', function () {
|
113 |
-
var length = jQuery('.b2s-post-type-item-update').filter(':checked').length;
|
114 |
-
if (length == 0) {
|
115 |
-
jQuery('.b2s-auto-post-own-update-warning').hide();
|
116 |
-
} else {
|
117 |
-
jQuery('.b2s-auto-post-own-update-warning').show();
|
118 |
-
}
|
119 |
-
return false;
|
120 |
-
});
|
121 |
-
|
122 |
-
|
123 |
jQuery(document).on('click', '.b2sClearSocialMetaTags', function () {
|
124 |
|
125 |
jQuery('.b2s-settings-user-success').hide();
|
@@ -284,115 +236,6 @@ jQuery(document).on('click', '.b2s-shortener-account-delete-btn', function () {
|
|
284 |
return false;
|
285 |
});
|
286 |
|
287 |
-
jQuery('#b2s-user-network-settings-auto-post-own').validate({
|
288 |
-
ignore: "",
|
289 |
-
errorPlacement: function () {
|
290 |
-
return false;
|
291 |
-
},
|
292 |
-
submitHandler: function (form) {
|
293 |
-
jQuery('.b2s-settings-user-success').hide();
|
294 |
-
jQuery('.b2s-settings-user-error').hide();
|
295 |
-
jQuery(".b2s-loading-area").show();
|
296 |
-
jQuery(".b2s-user-settings-area").hide();
|
297 |
-
jQuery('.b2s-server-connection-fail').hide();
|
298 |
-
jQuery.ajax({
|
299 |
-
processData: false,
|
300 |
-
url: ajaxurl,
|
301 |
-
type: "POST",
|
302 |
-
dataType: "json",
|
303 |
-
cache: false,
|
304 |
-
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
305 |
-
error: function () {
|
306 |
-
jQuery('.b2s-server-connection-fail').show();
|
307 |
-
return false;
|
308 |
-
},
|
309 |
-
success: function (data) {
|
310 |
-
jQuery(".b2s-loading-area").hide();
|
311 |
-
jQuery(".b2s-user-settings-area").show();
|
312 |
-
if (data.result == true) {
|
313 |
-
jQuery('.b2s-settings-user-success').show();
|
314 |
-
} else {
|
315 |
-
if(data.error == 'nonce') {
|
316 |
-
jQuery('.b2s-nonce-check-fail').show();
|
317 |
-
}
|
318 |
-
jQuery('.b2s-settings-user-error').show();
|
319 |
-
}
|
320 |
-
}
|
321 |
-
});
|
322 |
-
return false;
|
323 |
-
}
|
324 |
-
});
|
325 |
-
|
326 |
-
jQuery('#b2s-user-network-settings-auto-post-imported-own').validate({
|
327 |
-
ignore: "",
|
328 |
-
errorPlacement: function () {
|
329 |
-
return false;
|
330 |
-
},
|
331 |
-
submitHandler: function (form) {
|
332 |
-
jQuery('.b2s-settings-user-success').hide();
|
333 |
-
jQuery('.b2s-settings-user-error').hide();
|
334 |
-
jQuery('.b2s-settings-user-error-no-auth-selected').hide();
|
335 |
-
jQuery(".b2s-loading-area").show();
|
336 |
-
jQuery(".b2s-user-settings-area").hide();
|
337 |
-
jQuery('.b2s-server-connection-fail').hide();
|
338 |
-
jQuery.ajax({
|
339 |
-
processData: false,
|
340 |
-
url: ajaxurl,
|
341 |
-
type: "POST",
|
342 |
-
dataType: "json",
|
343 |
-
cache: false,
|
344 |
-
data: jQuery(form).serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
345 |
-
error: function () {
|
346 |
-
jQuery('.b2s-server-connection-fail').show();
|
347 |
-
return false;
|
348 |
-
},
|
349 |
-
success: function (data) {
|
350 |
-
jQuery(".b2s-loading-area").hide();
|
351 |
-
jQuery(".b2s-user-settings-area").show();
|
352 |
-
if (data.result == true) {
|
353 |
-
jQuery('.b2s-settings-user-success').show();
|
354 |
-
} else {
|
355 |
-
if(data.error == 'nonce') {
|
356 |
-
jQuery('.b2s-nonce-check-fail').show();
|
357 |
-
}
|
358 |
-
if (data.type == 'no-auth-selected') {
|
359 |
-
jQuery('.b2s-settings-user-error-no-auth-selected').show();
|
360 |
-
|
361 |
-
} else {
|
362 |
-
jQuery('.b2s-settings-user-error').show();
|
363 |
-
}
|
364 |
-
}
|
365 |
-
}
|
366 |
-
});
|
367 |
-
return false;
|
368 |
-
}
|
369 |
-
});
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
jQuery(document).on('click', '.b2s-post-type-select-btn', function () {
|
375 |
-
var type = jQuery(this).attr('data-post-type');
|
376 |
-
var tempCurText = jQuery(this).text();
|
377 |
-
if (jQuery(this).attr('data-select-toogle-state') == "0") { //0=select
|
378 |
-
jQuery('.b2s-post-type-item-' + type).prop('checked', true);
|
379 |
-
jQuery(this).attr('data-select-toogle-state', '1');
|
380 |
-
if (type == 'update') {
|
381 |
-
jQuery('.b2s-auto-post-own-update-warning').show();
|
382 |
-
}
|
383 |
-
} else {
|
384 |
-
jQuery('.b2s-post-type-item-' + type).prop('checked', false);
|
385 |
-
jQuery(this).attr('data-select-toogle-state', '0');
|
386 |
-
if (type == 'update') {
|
387 |
-
jQuery('.b2s-auto-post-own-update-warning').hide();
|
388 |
-
}
|
389 |
-
}
|
390 |
-
jQuery(this).text(jQuery(this).attr('data-select-toogle-name'));
|
391 |
-
jQuery(this).attr('data-select-toogle-name', tempCurText);
|
392 |
-
return false;
|
393 |
-
});
|
394 |
-
|
395 |
-
|
396 |
jQuery(document).on('change', '#b2s-user-time-zone', function () {
|
397 |
var curUserTime = calcCurrentExternTimeByOffset(jQuery('option:selected', this).attr('data-offset'), jQuery('#b2sUserLang').val());
|
398 |
jQuery('#b2s-user-time').text(curUserTime);
|
@@ -434,6 +277,7 @@ jQuery(document).on('change', '#b2s-user-time-zone', function () {
|
|
434 |
});
|
435 |
return false;
|
436 |
});
|
|
|
437 |
jQuery(document).on('click', '#b2s-user-network-settings-allow-shortcode', function () {
|
438 |
jQuery('.b2s-settings-user-success').hide();
|
439 |
jQuery('.b2s-settings-user-error').hide();
|
@@ -624,9 +468,13 @@ window.addEventListener('message', function (e) {
|
|
624 |
});
|
625 |
|
626 |
function loginSuccessShortener(providerId, displayName) {
|
|
|
|
|
|
|
|
|
627 |
jQuery('.b2s-user-network-shortener-account-detail[data-provider-id="' + providerId + '"]').css('display', 'inline-block');
|
628 |
jQuery('.b2s-shortener-account-display-name[data-provider-id="' + providerId + '"]').html(displayName);
|
629 |
-
jQuery('.b2s-shortener-
|
630 |
jQuery('.b2s-user-network-settings-short-url[data-provider-id="' + providerId + '"]').prop("checked", true);
|
631 |
jQuery('.b2s-user-network-settings-short-url[data-provider-id="' + providerId + '"]').val("0");
|
632 |
jQuery('.b2s-user-network-shortener-state[data-provider-id="'+providerId+'"]').val("1");
|
@@ -647,94 +495,3 @@ jQuery(document).on('click', '.b2sInfoAllowHashTagModalBtn', function () {
|
|
647 |
jQuery(document).on('click', '.b2sInfoLegacyModeBtn', function () {
|
648 |
jQuery('#b2sInfoLegacyMode').modal('show');
|
649 |
});
|
650 |
-
jQuery(document).on('click', '.b2sInfoAutoPosterMModalBtn', function () {
|
651 |
-
jQuery('#b2sInfoAutoPosterMModal').modal('show');
|
652 |
-
});
|
653 |
-
jQuery(document).on('click', '.b2sInfoAutoPosterAModalBtn', function () {
|
654 |
-
jQuery('#b2sInfoAutoPosterAModal').modal('show');
|
655 |
-
});
|
656 |
-
jQuery(document).on('click', '.b2sTwitterInfoModalBtn', function () {
|
657 |
-
jQuery('#b2sTwitterInfoModal').modal('show');
|
658 |
-
});
|
659 |
-
|
660 |
-
jQuery(document).on('change', '.b2s-auto-post-area-toggle', function() {
|
661 |
-
if(jQuery(this).is(':checked')) {
|
662 |
-
jQuery('.b2s-auto-post-area[data-area-type="'+jQuery(this).data('area-type')+'"]').show();
|
663 |
-
} else {
|
664 |
-
jQuery('.b2s-auto-post-area[data-area-type="'+jQuery(this).data('area-type')+'"]').hide();
|
665 |
-
}
|
666 |
-
});
|
667 |
-
|
668 |
-
jQuery(document).on('change', '#b2s-auto-post-profil-dropdown', function () {
|
669 |
-
jQuery('.b2s-auto-post-error[data-error-reason="no-auth-in-mandant"]').hide();
|
670 |
-
var tos = false;
|
671 |
-
if (jQuery('#b2s-auto-post-profil-data-' + jQuery(this).val()).val() == "") {
|
672 |
-
tos = true;
|
673 |
-
} else {
|
674 |
-
//TOS Twitter Check
|
675 |
-
var len = jQuery('#b2s-auto-post-profil-dropdown-twitter').children('option[data-mandant-id="' + jQuery(this).val() + '"]').length;
|
676 |
-
if (len >= 1) {
|
677 |
-
jQuery('.b2s-auto-post-twitter-profile').show();
|
678 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter').prop('disabled', false);
|
679 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter').show();
|
680 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter option').attr("disabled", "disabled");
|
681 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter option[data-mandant-id="' + jQuery(this).val() + '"]').attr("disabled", false);
|
682 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter option[data-mandant-id="' + jQuery(this).val() + '"]:first').attr("selected", "selected");
|
683 |
-
} else {
|
684 |
-
tos = true;
|
685 |
-
}
|
686 |
-
|
687 |
-
}
|
688 |
-
//TOS Twitter 032018
|
689 |
-
if (tos) {
|
690 |
-
jQuery('.b2s-auto-post-twitter-profile').hide();
|
691 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter').prop('disabled', 'disabled');
|
692 |
-
jQuery('#b2s-auto-post-profil-dropdown-twitter').hide();
|
693 |
-
}
|
694 |
-
});
|
695 |
-
|
696 |
-
jQuery(document).on('click', '#b2s-auto-post-settings-btn', function() {
|
697 |
-
var submit = true;
|
698 |
-
if(jQuery('.b2s-auto-post-area-toggle[data-area-type="manuell"]').is(':checked')) {
|
699 |
-
var publish = jQuery('.b2s-post-type-item-publish').is(':checked');
|
700 |
-
var update = jQuery('.b2s-post-type-item-update').is(':checked');
|
701 |
-
if(publish == false && update == false) {
|
702 |
-
submit = false;
|
703 |
-
jQuery('.b2s-auto-post-error[data-error-reason="no-post-type"]').show();
|
704 |
-
jQuery('.b2s-post-type-item-publish').css('border-color', 'red');
|
705 |
-
jQuery('.b2s-post-type-item-update').css('border-color', 'red');
|
706 |
-
}
|
707 |
-
if(jQuery('#b2s-auto-post-profil-data-'+jQuery('#b2s-auto-post-profil-dropdown').val()).val() == "") {
|
708 |
-
submit = false;
|
709 |
-
jQuery('.b2s-auto-post-error[data-error-reason="no-auth-in-mandant"]').show();
|
710 |
-
}
|
711 |
-
}
|
712 |
-
|
713 |
-
if(jQuery('.b2s-auto-post-area-toggle[data-area-type="import"]').is(':checked')) {
|
714 |
-
if(jQuery('.b2s-network-tos-check').is(':checked') == false) {
|
715 |
-
submit = false;
|
716 |
-
jQuery('.b2s-auto-post-error[data-error-reason="import-no-auth"]').show();
|
717 |
-
jQuery('.b2s-network-tos-check').css('border-color', 'red');
|
718 |
-
}
|
719 |
-
}
|
720 |
-
|
721 |
-
if(submit) {
|
722 |
-
jQuery('#b2s-user-network-settings-auto-post-own').submit();
|
723 |
-
}
|
724 |
-
});
|
725 |
-
|
726 |
-
jQuery(document).on('change', '.b2s-post-type-item-publish', function() {
|
727 |
-
jQuery('.b2s-auto-post-error[data-error-reason="no-post-type"]').hide();
|
728 |
-
jQuery('.b2s-post-type-item-publish').css('border-color', '');
|
729 |
-
jQuery('.b2s-post-type-item-update').css('border-color', '');
|
730 |
-
});
|
731 |
-
jQuery(document).on('change', '.b2s-post-type-item-update', function() {
|
732 |
-
jQuery('.b2s-auto-post-error[data-error-reason="no-post-type"]').hide();
|
733 |
-
jQuery('.b2s-post-type-item-publish').css('border-color', '');
|
734 |
-
jQuery('.b2s-post-type-item-update').css('border-color', '');
|
735 |
-
});
|
736 |
-
|
737 |
-
jQuery(document).on('change', '.b2s-network-tos-check', function() {
|
738 |
-
jQuery('.b2s-auto-post-error[data-error-reason="import-no-auth"]').hide();
|
739 |
-
jQuery('.b2s-network-tos-check').css('border-color', '');
|
740 |
-
});
|
17 |
jQuery("." + b2sShowSection).trigger("click");
|
18 |
}
|
19 |
jQuery(".b2s-import-auto-post-type").chosen();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
|
|
|
|
21 |
});
|
22 |
|
23 |
jQuery('.b2sSaveSocialMetaTagsSettings').validate({
|
72 |
}
|
73 |
});
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
jQuery(document).on('click', '.b2sClearSocialMetaTags', function () {
|
76 |
|
77 |
jQuery('.b2s-settings-user-success').hide();
|
236 |
return false;
|
237 |
});
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
jQuery(document).on('change', '#b2s-user-time-zone', function () {
|
240 |
var curUserTime = calcCurrentExternTimeByOffset(jQuery('option:selected', this).attr('data-offset'), jQuery('#b2sUserLang').val());
|
241 |
jQuery('#b2s-user-time').text(curUserTime);
|
277 |
});
|
278 |
return false;
|
279 |
});
|
280 |
+
|
281 |
jQuery(document).on('click', '#b2s-user-network-settings-allow-shortcode', function () {
|
282 |
jQuery('.b2s-settings-user-success').hide();
|
283 |
jQuery('.b2s-settings-user-error').hide();
|
468 |
});
|
469 |
|
470 |
function loginSuccessShortener(providerId, displayName) {
|
471 |
+
if(providerId == 2) {
|
472 |
+
displayNameParts = displayName.split('#SNIP#');
|
473 |
+
displayName = jQuery('#brandName').val() + ': ' + displayNameParts[0] + ' | ' + jQuery('#campaignName').val() + ': ' + displayNameParts[1];
|
474 |
+
}
|
475 |
jQuery('.b2s-user-network-shortener-account-detail[data-provider-id="' + providerId + '"]').css('display', 'inline-block');
|
476 |
jQuery('.b2s-shortener-account-display-name[data-provider-id="' + providerId + '"]').html(displayName);
|
477 |
+
jQuery('.b2s-user-network-shortener-connect[data-provider-id="' + providerId + '"]').hide();
|
478 |
jQuery('.b2s-user-network-settings-short-url[data-provider-id="' + providerId + '"]').prop("checked", true);
|
479 |
jQuery('.b2s-user-network-settings-short-url[data-provider-id="' + providerId + '"]').val("0");
|
480 |
jQuery('.b2s-user-network-shortener-state[data-provider-id="'+providerId+'"]').val("1");
|
495 |
jQuery(document).on('click', '.b2sInfoLegacyModeBtn', function () {
|
496 |
jQuery('#b2sInfoLegacyMode').modal('show');
|
497 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/js/b2s/ship.js
CHANGED
@@ -305,8 +305,6 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function ()
|
|
305 |
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() == '0') {
|
306 |
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");
|
307 |
}
|
308 |
-
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);
|
309 |
-
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);
|
310 |
var hours = network_type_time.substring(0, 2);
|
311 |
if (lang == "en") {
|
312 |
var timeparts = network_type_time.split(' ');
|
@@ -319,6 +317,8 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-default', function ()
|
|
319 |
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);
|
320 |
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);
|
321 |
}
|
|
|
|
|
322 |
}
|
323 |
});
|
324 |
count++;
|
@@ -448,8 +448,6 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
448 |
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val() == '0') {
|
449 |
jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val('1').trigger("change");
|
450 |
}
|
451 |
-
jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(time);
|
452 |
-
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(), time.slice(0, 2), time.slice(-2)));
|
453 |
var hours = time.substring(0, 2);
|
454 |
if (lang == "en") {
|
455 |
var timeparts = time.split(' ');
|
@@ -461,7 +459,10 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
461 |
if (delayDay != undefined) {
|
462 |
if (delayDay > 0) {
|
463 |
var delay = new Date();
|
464 |
-
|
|
|
|
|
|
|
465 |
var delayMonth = ("0" + (delay.getMonth() + 1)).slice(-2);
|
466 |
var delayDate = ("0" + delay.getDate()).slice(-2);
|
467 |
var dateDelay = delay.getFullYear() + "-" + delayMonth + "-" + delayDate;
|
@@ -483,6 +484,8 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
483 |
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateToday);
|
484 |
}
|
485 |
}
|
|
|
|
|
486 |
}
|
487 |
}
|
488 |
});
|
@@ -499,8 +502,6 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
499 |
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') {
|
500 |
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");
|
501 |
}
|
502 |
-
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);
|
503 |
-
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);
|
504 |
var hours = network_type_time.substring(0, 2);
|
505 |
if (lang == "en") {
|
506 |
var timeparts = network_type_time.split(' ');
|
@@ -513,6 +514,8 @@ jQuery(document).on('click', '.b2s-get-settings-sched-time-user', function () {
|
|
513 |
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);
|
514 |
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);
|
515 |
}
|
|
|
|
|
516 |
}
|
517 |
});
|
518 |
count++;
|
@@ -1715,7 +1718,7 @@ jQuery(document).on("keyup", ".complete_network_url", function () {
|
|
1715 |
jQuery(this).val(url);
|
1716 |
}
|
1717 |
} else if (jQuery(this).hasClass("required_network_url")) {
|
1718 |
-
if (!((jQuery(this).attr('data-network-id') == 1 || jQuery(this).attr('data-network-id') == 3) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + jQuery(this).attr('data-network-auth-id') + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
1719 |
url = jQuery("#b2sDefault_url").val();
|
1720 |
jQuery(this).val(url);
|
1721 |
}
|
@@ -2966,7 +2969,7 @@ function releaseChoose(choose, dataNetworkAuthId, dataNetworkCount) {
|
|
2966 |
//since 4.8.0 customize content
|
2967 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2968 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').removeAttr('disabled');
|
2969 |
-
|
2970 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').show();
|
2971 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').show();
|
2972 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').show();
|
@@ -3172,7 +3175,7 @@ function networkLimitAll(networkAuthId, networkId, limit) {
|
|
3172 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3173 |
}
|
3174 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3175 |
-
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3176 |
url = jQuery("#b2sDefault_url").val();
|
3177 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3178 |
}
|
@@ -3236,7 +3239,7 @@ function networkCount(networkAuthId) {
|
|
3236 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3237 |
}
|
3238 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3239 |
-
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3240 |
url = jQuery("#b2sDefault_url").val();
|
3241 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3242 |
}
|
305 |
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() == '0') {
|
306 |
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");
|
307 |
}
|
|
|
|
|
308 |
var hours = network_type_time.substring(0, 2);
|
309 |
if (lang == "en") {
|
310 |
var timeparts = network_type_time.split(' ');
|
317 |
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);
|
318 |
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);
|
319 |
}
|
320 |
+
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);
|
321 |
+
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);
|
322 |
}
|
323 |
});
|
324 |
count++;
|
448 |
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val() == '0') {
|
449 |
jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + network_auth_id + '"]').val('1').trigger("change");
|
450 |
}
|
|
|
|
|
451 |
var hours = time.substring(0, 2);
|
452 |
if (lang == "en") {
|
453 |
var timeparts = time.split(' ');
|
459 |
if (delayDay != undefined) {
|
460 |
if (delayDay > 0) {
|
461 |
var delay = new Date();
|
462 |
+
if (jQuery('#b2sBlogPostSchedDate').length > 0) {
|
463 |
+
delay.setTime(jQuery('#b2sBlogPostSchedDate').val());
|
464 |
+
}
|
465 |
+
delay.setDate(delay.getDate() + parseInt(delayDay));
|
466 |
var delayMonth = ("0" + (delay.getMonth() + 1)).slice(-2);
|
467 |
var delayDate = ("0" + delay.getDate()).slice(-2);
|
468 |
var dateDelay = delay.getFullYear() + "-" + delayMonth + "-" + delayDate;
|
484 |
jQuery('.b2s-post-item-details-release-input-date[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').datepicker('update', dateToday);
|
485 |
}
|
486 |
}
|
487 |
+
jQuery('.b2s-post-item-details-release-input-time[data-network-auth-id="' + network_auth_id + '"][data-network-count="0"]').val(time);
|
488 |
+
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)));
|
489 |
}
|
490 |
}
|
491 |
});
|
502 |
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') {
|
503 |
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");
|
504 |
}
|
|
|
|
|
505 |
var hours = network_type_time.substring(0, 2);
|
506 |
if (lang == "en") {
|
507 |
var timeparts = network_type_time.split(' ');
|
514 |
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);
|
515 |
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);
|
516 |
}
|
517 |
+
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);
|
518 |
+
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);
|
519 |
}
|
520 |
});
|
521 |
count++;
|
1718 |
jQuery(this).val(url);
|
1719 |
}
|
1720 |
} else if (jQuery(this).hasClass("required_network_url")) {
|
1721 |
+
if (!((jQuery(this).attr('data-network-id') == 1 || jQuery(this).attr('data-network-id') == 3 || jQuery(this).attr('data-network-id') == 19) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + jQuery(this).attr('data-network-auth-id') + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
1722 |
url = jQuery("#b2sDefault_url").val();
|
1723 |
jQuery(this).val(url);
|
1724 |
}
|
2969 |
//since 4.8.0 customize content
|
2970 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2971 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').removeAttr('disabled');
|
2972 |
+
jQuery('.b2s-post-item-details-item-message-area' + selectorInput + '[data-network-count="-1"]').show();
|
2973 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').show();
|
2974 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').show();
|
2975 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').show();
|
3175 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3176 |
}
|
3177 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3178 |
+
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 19) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3179 |
url = jQuery("#b2sDefault_url").val();
|
3180 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3181 |
}
|
3239 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3240 |
}
|
3241 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3242 |
+
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 19) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3243 |
url = jQuery("#b2sDefault_url").val();
|
3244 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3245 |
}
|
assets/lib/fullcalendar/fullcalendar.min.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
/*
|
2 |
* Docs & License: https://fullcalendar.io/
|
3 |
* (c) 2019 Adam Shaw
|
4 |
-
*/.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee;font-size: 14px;font-weight: 600;}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed td.fc-today{background:#fcf8e3}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc-unthemed .fc-disabled-day{background:#d7d7d7;opacity:.3}.ui-widget .fc-disabled-day{background-image:none}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;font-weight:400}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin: 5px 5px 0; padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width: 60%;box-shadow: 0 .9rem 1rem rgba(0, 0, 0, 0.55) !important;}.fc-more-popover .fc-event-container{padding:10px;display: grid;grid-template-columns: 1fr 1fr 1fr;}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item:hover td{background-color:#f5f5f5}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee}
|
1 |
/*
|
2 |
* Docs & License: https://fullcalendar.io/
|
3 |
* (c) 2019 Adam Shaw
|
4 |
+
*/.fc-icon,body .fc{font-size:1em}.fc-button-group,.fc-icon{display:inline-block}.fc-bg,.fc-row .fc-bgevent-skeleton,.fc-row .fc-highlight-skeleton{bottom:0}.fc-icon,.fc-unselectable{-khtml-user-select:none;-webkit-touch-callout:none}.fc{direction:ltr;text-align:left}.fc-rtl{text-align:right}.fc th,.fc-basic-view td.fc-week-number,.fc-icon,.fc-toolbar{text-align:center}.fc-unthemed .fc-content,.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-list-view,.fc-unthemed .fc-popover,.fc-unthemed .fc-row,.fc-unthemed tbody,.fc-unthemed td,.fc-unthemed th,.fc-unthemed thead{border-color:#ddd}.fc-unthemed .fc-popover{background-color:#fff}.fc-unthemed .fc-divider,.fc-unthemed .fc-list-heading td,.fc-unthemed .fc-popover .fc-header{background:#eee;font-size: 14px;font-weight: 600;}.fc-unthemed .fc-popover .fc-header .fc-close{color:#666}.fc-unthemed td.fc-today,.fc-today{background:#eee}.fc-highlight{background:#bce8f1;opacity:.3}.fc-bgevent{background:#8fdf82;opacity:.3}.fc-nonbusiness{background:#d7d7d7}.fc-unthemed .fc-disabled-day{background:#d7d7d7;opacity:.3}.ui-widget .fc-disabled-day{background-image:none}.fc-icon{height:1em;line-height:1em;overflow:hidden;font-family:"Courier New",Courier,monospace;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fc-icon:after{position:relative}.fc-icon-left-single-arrow:after{content:"\02039";font-weight:700;font-size:200%;top:-7%}.fc-icon-right-single-arrow:after{content:"\0203A";font-weight:700;font-size:200%;top:-7%}.fc-icon-left-double-arrow:after{content:"\000AB";font-size:160%;top:-7%}.fc-icon-right-double-arrow:after{content:"\000BB";font-size:160%;top:-7%}.fc-icon-left-triangle:after{content:"\25C4";font-size:125%;top:3%}.fc-icon-right-triangle:after{content:"\25BA";font-size:125%;top:3%}.fc-icon-down-triangle:after{content:"\25BC";font-size:125%;top:2%}.fc-icon-x:after{content:"\000D7";font-size:200%;top:6%}.fc button{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0;height:2.1em;padding:0 .6em;font-size:1em;white-space:nowrap;cursor:pointer}.fc button::-moz-focus-inner{margin:0;padding:0}.fc-state-default{border:1px solid;background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#fff,#e6e6e6);background-image:-webkit-gradient(linear,0 0,0 100%,from(#fff),to(#e6e6e6));background-image:-webkit-linear-gradient(top,#fff,#e6e6e6);background-image:-o-linear-gradient(top,#fff,#e6e6e6);background-image:linear-gradient(to bottom,#fff,#e6e6e6);background-repeat:repeat-x;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.25);color:#333;text-shadow:0 1px 1px rgba(255,255,255,.75);box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05)}.fc-state-default.fc-corner-left{border-top-left-radius:4px;border-bottom-left-radius:4px}.fc-state-default.fc-corner-right{border-top-right-radius:4px;border-bottom-right-radius:4px}.fc button .fc-icon{position:relative;top:-.05em;margin:0 .2em;vertical-align:middle}.fc-state-active,.fc-state-disabled,.fc-state-down,.fc-state-hover{color:#333;background-color:#e6e6e6}.fc-state-hover{color:#333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position .1s linear;-moz-transition:background-position .1s linear;-o-transition:background-position .1s linear;transition:background-position .1s linear}.fc-state-active,.fc-state-down{background-color:#ccc;background-image:none;box-shadow:inset 0 2px 4px rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.05)}.fc-state-disabled{cursor:default;background-image:none;opacity:.65;box-shadow:none}.fc-event.fc-draggable,.fc-event[href],.fc-popover .fc-header .fc-close,a[data-goto]{cursor:pointer}.fc .fc-button-group>*{float:left;margin:0 0 0 -1px}.fc .fc-button-group>:first-child{margin-left:0}.fc-popover{position:absolute;box-shadow:0 2px 6px rgba(0,0,0,.15)}.fc-popover .fc-header{padding:2px 4px}.fc-popover .fc-header .fc-title{margin:0 2px}.fc-ltr .fc-popover .fc-header .fc-title,.fc-rtl .fc-popover .fc-header .fc-close{float:left}.fc-ltr .fc-popover .fc-header .fc-close,.fc-rtl .fc-popover .fc-header .fc-title{float:right}.fc-unthemed .fc-popover{border-width:1px;border-style:solid}.fc-unthemed .fc-popover .fc-header .fc-close{font-size:.9em;margin-top:2px}.fc-popover>.ui-widget-header+.ui-widget-content{border-top:0}.fc-divider{border-style:solid;border-width:1px}hr.fc-divider{height:0;margin:0;padding:0 0 2px;border-width:1px 0}.fc-bg table,.fc-row .fc-bgevent-skeleton table,.fc-row .fc-highlight-skeleton table{height:100%}.fc-clear{clear:both}.fc-bg,.fc-bgevent-skeleton,.fc-helper-skeleton,.fc-highlight-skeleton{position:absolute;top:0;left:0;right:0}.fc table{width:100%;box-sizing:border-box;table-layout:fixed;border-collapse:collapse;border-spacing:0;font-size:1em}.fc td,.fc th{border-style:solid;border-width:1px;padding:0;vertical-align:top}.fc td.fc-today{border-style:double}a[data-goto]:hover{text-decoration:underline}.fc .fc-row{border-style:solid;border-width:0}.fc-row table{border-left:0 hidden transparent;border-right:0 hidden transparent;border-bottom:0 hidden transparent}.fc-row:first-child table{border-top:0 hidden transparent}.fc-row{position:relative}.fc-row .fc-bg{z-index:1}.fc-row .fc-bgevent-skeleton td,.fc-row .fc-highlight-skeleton td{border-color:transparent}.fc-row .fc-bgevent-skeleton{z-index:2}.fc-row .fc-highlight-skeleton{z-index:3}.fc-row .fc-content-skeleton{position:relative;z-index:4;padding-bottom:2px}.fc-row .fc-helper-skeleton{z-index:5}.fc-row .fc-content-skeleton td,.fc-row .fc-helper-skeleton td{background:0 0;border-color:transparent;border-bottom:0}.fc-row .fc-content-skeleton tbody td,.fc-row .fc-helper-skeleton tbody td{border-top:0}.fc-scroller{-webkit-overflow-scrolling:touch}.fc-row.fc-rigid,.fc-time-grid-event{overflow:hidden}.fc-scroller>.fc-day-grid,.fc-scroller>.fc-time-grid{position:relative;width:100%}.fc-event{position:relative;display:block;font-size:.85em;line-height:1.3;border-radius:3px;border:1px solid #3a87ad;font-weight:400}.fc-event,.fc-event-dot{background-color:#3a87ad}.fc-event,.fc-event:hover,.ui-widget .fc-event{color:#fff;text-decoration:none}.fc-not-allowed,.fc-not-allowed .fc-event{cursor:not-allowed}.fc-event .fc-bg{z-index:1;background:#fff;opacity:.25}.fc-event .fc-content{position:relative;z-index:2}.fc-event .fc-resizer{position:absolute;z-index:4;display:none}.fc-event.fc-allow-mouse-resize .fc-resizer,.fc-event.fc-selected .fc-resizer{display:block}.fc-event.fc-selected .fc-resizer:before{content:"";position:absolute;z-index:9999;top:50%;left:50%;width:40px;height:40px;margin-left:-20px;margin-top:-20px}.fc-event.fc-selected{z-index:9999!important;box-shadow:0 2px 5px rgba(0,0,0,.2)}.fc-event.fc-selected.fc-dragging{box-shadow:0 2px 7px rgba(0,0,0,.3)}.fc-h-event.fc-selected:before{content:"";position:absolute;z-index:3;top:-10px;bottom:-10px;left:0;right:0}.fc-ltr .fc-h-event.fc-not-start,.fc-rtl .fc-h-event.fc-not-end{margin-left:0;border-left-width:0;padding-left:1px;border-top-left-radius:0;border-bottom-left-radius:0}.fc-ltr .fc-h-event.fc-not-end,.fc-rtl .fc-h-event.fc-not-start{margin-right:0;border-right-width:0;padding-right:1px;border-top-right-radius:0;border-bottom-right-radius:0}.fc-ltr .fc-h-event .fc-start-resizer,.fc-rtl .fc-h-event .fc-end-resizer{cursor:w-resize;left:-1px}.fc-ltr .fc-h-event .fc-end-resizer,.fc-rtl .fc-h-event .fc-start-resizer{cursor:e-resize;right:-1px}.fc-h-event.fc-allow-mouse-resize .fc-resizer{width:7px;top:-1px;bottom:-1px}.fc-h-event.fc-selected .fc-resizer{border-radius:4px;border-width:1px;width:6px;height:6px;border-style:solid;border-color:inherit;background:#fff;top:50%;margin-top:-4px}.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,.fc-rtl .fc-h-event.fc-selected .fc-end-resizer{margin-left:-4px}.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,.fc-rtl .fc-h-event.fc-selected .fc-start-resizer{margin-right:-4px}.fc-day-grid-event{margin: 5px 5px 0; padding:0 1px}tr:first-child>td>.fc-day-grid-event{margin-top:2px}.fc-day-grid-event.fc-selected:after{content:"";position:absolute;z-index:1;top:-1px;right:-1px;bottom:-1px;left:-1px;background:#000;opacity:.25}.fc-day-grid-event .fc-content{white-space:nowrap;overflow:hidden}.fc-day-grid-event .fc-time{font-weight:700}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer{margin-left:-2px}.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer{margin-right:-2px}a.fc-more{margin:1px 3px;font-size:.85em;cursor:pointer;text-decoration:none}a.fc-more:hover{text-decoration:underline}.fc-limited{display:none}.fc-day-grid .fc-row{z-index:1}.fc-more-popover{z-index:2;width: 60%;box-shadow: 0 .9rem 1rem rgba(0, 0, 0, 0.55) !important;}.fc-more-popover .fc-event-container{padding:10px;display: grid;grid-template-columns: 1fr 1fr 1fr;}.fc-now-indicator{position:absolute;border:0 solid red}.fc-unselectable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.fc-toolbar.fc-header-toolbar{margin-bottom:1em}.fc-toolbar.fc-footer-toolbar{margin-top:1em}.fc-toolbar .fc-left{float:left}.fc-toolbar .fc-right{float:right}.fc-toolbar .fc-center{display:inline-block}.fc .fc-toolbar>*>*{float:left;margin-left:.75em}.fc .fc-toolbar>*>:first-child{margin-left:0}.fc-toolbar h2{margin:0}.fc-toolbar button{position:relative}.fc-toolbar .fc-state-hover,.fc-toolbar .ui-state-hover{z-index:2}.fc-toolbar .fc-state-down{z-index:3}.fc-toolbar .fc-state-active,.fc-toolbar .ui-state-active{z-index:4}.fc-toolbar button:focus{z-index:5}.fc-view-container *,.fc-view-container :after,.fc-view-container :before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.fc-view,.fc-view>table{position:relative;z-index:1}.fc-basicDay-view .fc-content-skeleton,.fc-basicWeek-view .fc-content-skeleton{padding-bottom:1em}.fc-basic-view .fc-body .fc-row{min-height:4em}.fc-row.fc-rigid .fc-content-skeleton{position:absolute;top:0;left:0;right:0}.fc-day-top.fc-other-month{opacity:.3}.fc-basic-view .fc-day-number,.fc-basic-view .fc-week-number{padding:2px}.fc-basic-view th.fc-day-number,.fc-basic-view th.fc-week-number{padding:0 2px}.fc-ltr .fc-basic-view .fc-day-top .fc-day-number{float:right}.fc-rtl .fc-basic-view .fc-day-top .fc-day-number{float:left}.fc-ltr .fc-basic-view .fc-day-top .fc-week-number{float:left;border-radius:0 0 3px}.fc-rtl .fc-basic-view .fc-day-top .fc-week-number{float:right;border-radius:0 0 0 3px}.fc-basic-view .fc-day-top .fc-week-number{min-width:1.5em;text-align:center;background-color:#f2f2f2;color:grey}.fc-basic-view td.fc-week-number>*{display:inline-block;min-width:1.25em}.fc-agenda-view .fc-day-grid{position:relative;z-index:2}.fc-agenda-view .fc-day-grid .fc-row{min-height:3em}.fc-agenda-view .fc-day-grid .fc-row .fc-content-skeleton{padding-bottom:1em}.fc .fc-axis{vertical-align:middle;padding:0 4px;white-space:nowrap}.fc-ltr .fc-axis{text-align:right}.fc-rtl .fc-axis{text-align:left}.ui-widget td.fc-axis{font-weight:400}.fc-time-grid,.fc-time-grid-container{position:relative;z-index:1}.fc-time-grid{min-height:100%}.fc-time-grid table{border:0 hidden transparent}.fc-time-grid>.fc-bg{z-index:1}.fc-time-grid .fc-slats,.fc-time-grid>hr{position:relative;z-index:2}.fc-time-grid .fc-content-col{position:relative}.fc-time-grid .fc-content-skeleton{position:absolute;z-index:3;top:0;left:0;right:0}.fc-time-grid .fc-business-container{position:relative;z-index:1}.fc-time-grid .fc-bgevent-container{position:relative;z-index:2}.fc-time-grid .fc-highlight-container{z-index:3;position:relative}.fc-time-grid .fc-event-container{position:relative;z-index:4}.fc-time-grid .fc-now-indicator-line{z-index:5}.fc-time-grid .fc-helper-container{position:relative;z-index:6}.fc-time-grid .fc-slats td{height:1.5em;border-bottom:0}.fc-time-grid .fc-slats .fc-minor td{border-top-style:dotted}.fc-time-grid .fc-slats .ui-widget-content{background:0 0}.fc-time-grid .fc-highlight{position:absolute;left:0;right:0}.fc-ltr .fc-time-grid .fc-event-container{margin:0 2.5% 0 2px}.fc-rtl .fc-time-grid .fc-event-container{margin:0 2px 0 2.5%}.fc-time-grid .fc-bgevent,.fc-time-grid .fc-event{position:absolute;z-index:1}.fc-time-grid .fc-bgevent{left:0;right:0}.fc-v-event.fc-not-start{border-top-width:0;padding-top:1px;border-top-left-radius:0;border-top-right-radius:0}.fc-v-event.fc-not-end{border-bottom-width:0;padding-bottom:1px;border-bottom-left-radius:0;border-bottom-right-radius:0}.fc-time-grid-event.fc-selected{overflow:visible}.fc-time-grid-event.fc-selected .fc-bg{display:none}.fc-time-grid-event .fc-content{overflow:hidden}.fc-time-grid-event .fc-time,.fc-time-grid-event .fc-title{padding:0 1px}.fc-time-grid-event .fc-time{font-size:.85em;white-space:nowrap}.fc-time-grid-event.fc-short .fc-content{white-space:nowrap}.fc-time-grid-event.fc-short .fc-time,.fc-time-grid-event.fc-short .fc-title{display:inline-block;vertical-align:top}.fc-time-grid-event.fc-short .fc-time span{display:none}.fc-time-grid-event.fc-short .fc-time:before{content:attr(data-start)}.fc-time-grid-event.fc-short .fc-time:after{content:"\000A0-\000A0"}.fc-time-grid-event.fc-short .fc-title{font-size:.85em;padding:0}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer{left:0;right:0;bottom:0;height:8px;overflow:hidden;line-height:8px;font-size:11px;font-family:monospace;text-align:center;cursor:s-resize}.fc-time-grid-event.fc-allow-mouse-resize .fc-resizer:after{content:"="}.fc-time-grid-event.fc-selected .fc-resizer{border-radius:5px;border-width:1px;width:8px;height:8px;border-style:solid;border-color:inherit;background:#fff;left:50%;margin-left:-5px;bottom:-5px}.fc-time-grid .fc-now-indicator-line{border-top-width:1px;left:0;right:0}.fc-time-grid .fc-now-indicator-arrow{margin-top:-5px}.fc-ltr .fc-time-grid .fc-now-indicator-arrow{left:0;border-width:5px 0 5px 6px;border-top-color:transparent;border-bottom-color:transparent}.fc-rtl .fc-time-grid .fc-now-indicator-arrow{right:0;border-width:5px 6px 5px 0;border-top-color:transparent;border-bottom-color:transparent}.fc-event-dot{display:inline-block;width:10px;height:10px;border-radius:5px}.fc-rtl .fc-list-view{direction:rtl}.fc-list-view{border-width:1px;border-style:solid}.fc .fc-list-table{table-layout:auto}.fc-list-table td{border-width:1px 0 0;padding:8px 14px}.fc-list-table tr:first-child td{border-top-width:0}.fc-list-heading{border-bottom-width:1px}.fc-list-heading td{font-weight:700}.fc-ltr .fc-list-heading-main{float:left}.fc-ltr .fc-list-heading-alt,.fc-rtl .fc-list-heading-main{float:right}.fc-rtl .fc-list-heading-alt{float:left}.fc-list-item.fc-has-url{cursor:pointer}.fc-list-item:hover td{background-color:#f5f5f5}.fc-list-item-marker,.fc-list-item-time{white-space:nowrap;width:1px}.fc-ltr .fc-list-item-marker{padding-right:0}.fc-rtl .fc-list-item-marker{padding-left:0}.fc-list-item-title a{text-decoration:none;color:inherit}.fc-list-item-title a[href]:hover{text-decoration:underline}.fc-list-empty-wrap2{position:absolute;top:0;left:0;right:0;bottom:0}.fc-list-empty-wrap1{width:100%;height:100%;display:table}.fc-list-empty{display:table-cell;vertical-align:middle;text-align:center}.fc-unthemed .fc-list-empty{background-color:#eee}
|
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.2.0
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '620');
|
15 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
16 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
17 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
includes/Ajax/Get.php
CHANGED
@@ -98,7 +98,7 @@ class Ajax_Get {
|
|
98 |
$b2sSortPostSchedDate = isset($_POST['b2sSortPostSchedDate']) ? (in_array(trim($_POST['b2sSortPostSchedDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostSchedDate']) : "") : "";
|
99 |
$b2sSortPostPublishDate = isset($_POST['b2sSortPostPublishDate']) ? (in_array(trim($_POST['b2sSortPostPublishDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostPublishDate']) : "") : "";
|
100 |
$b2sSortPostStatus = isset($_POST['b2sSortPostStatus']) ? (in_array(trim($_POST['b2sSortPostStatus']), array('publish', 'future', 'pending')) ? trim($_POST['b2sSortPostStatus']) : "") : "";
|
101 |
-
$b2sSortPostShareStatus = isset($_POST['b2sSortPostShareStatus']) ? (in_array(trim($_POST['b2sSortPostShareStatus']), array('never', 'shared', 'scheduled')) ? trim($_POST['b2sSortPostShareStatus']) : "") : "";
|
102 |
$b2sShowByDate = isset($_POST['b2sShowByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['b2sShowByDate'])) ? trim($_POST['b2sShowByDate']) : "") : ""; //YYYY-mm-dd
|
103 |
$b2sShowByNetwork = isset($_POST['b2sShowByNetwork']) ? (int) $_POST['b2sShowByNetwork'] : 0;
|
104 |
$b2sUserAuthId = isset($_POST['b2sUserAuthId']) ? (int) $_POST['b2sUserAuthId'] : 0;
|
@@ -341,7 +341,7 @@ class Ajax_Get {
|
|
341 |
if (isset($_POST['postId']) && (int) $_POST['postId'] > 0) {
|
342 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Post/Item.php');
|
343 |
require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
344 |
-
$postData = new B2S_Post_Item();
|
345 |
$showByDate = isset($_POST['showByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['showByDate'])) ? trim($_POST['showByDate']) : "") : "";
|
346 |
$showByNetwork = (isset($_POST['showByNetwork']) && (int) $_POST['showByNetwork'] > 0) ? (int) $_POST['showByNetwork'] : 0;
|
347 |
$userAuthId = (isset($_POST['userAuthId']) && (int) $_POST['userAuthId'] > 0) ? (int) $_POST['userAuthId'] : 0;
|
98 |
$b2sSortPostSchedDate = isset($_POST['b2sSortPostSchedDate']) ? (in_array(trim($_POST['b2sSortPostSchedDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostSchedDate']) : "") : "";
|
99 |
$b2sSortPostPublishDate = isset($_POST['b2sSortPostPublishDate']) ? (in_array(trim($_POST['b2sSortPostPublishDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostPublishDate']) : "") : "";
|
100 |
$b2sSortPostStatus = isset($_POST['b2sSortPostStatus']) ? (in_array(trim($_POST['b2sSortPostStatus']), array('publish', 'future', 'pending')) ? trim($_POST['b2sSortPostStatus']) : "") : "";
|
101 |
+
$b2sSortPostShareStatus = isset($_POST['b2sSortPostShareStatus']) ? (in_array(trim($_POST['b2sSortPostShareStatus']), array('never', 'shared', 'scheduled', 'autopost', 'repost')) ? trim($_POST['b2sSortPostShareStatus']) : "") : "";
|
102 |
$b2sShowByDate = isset($_POST['b2sShowByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['b2sShowByDate'])) ? trim($_POST['b2sShowByDate']) : "") : ""; //YYYY-mm-dd
|
103 |
$b2sShowByNetwork = isset($_POST['b2sShowByNetwork']) ? (int) $_POST['b2sShowByNetwork'] : 0;
|
104 |
$b2sUserAuthId = isset($_POST['b2sUserAuthId']) ? (int) $_POST['b2sUserAuthId'] : 0;
|
341 |
if (isset($_POST['postId']) && (int) $_POST['postId'] > 0) {
|
342 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Post/Item.php');
|
343 |
require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
344 |
+
$postData = new B2S_Post_Item(((isset($_POST['type']) && $_POST['type'] == 'repost') ? 'repost' : 'all'));
|
345 |
$showByDate = isset($_POST['showByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['showByDate'])) ? trim($_POST['showByDate']) : "") : "";
|
346 |
$showByNetwork = (isset($_POST['showByNetwork']) && (int) $_POST['showByNetwork'] > 0) ? (int) $_POST['showByNetwork'] : 0;
|
347 |
$userAuthId = (isset($_POST['userAuthId']) && (int) $_POST['userAuthId'] > 0) ? (int) $_POST['userAuthId'] : 0;
|
includes/Ajax/Post.php
CHANGED
@@ -26,6 +26,7 @@ class Ajax_Post {
|
|
26 |
add_action('wp_ajax_b2s_delete_user_approve_post', array($this, 'deleteUserApprovePost'));
|
27 |
add_action('wp_ajax_b2s_delete_user_cc_draft_post', array($this, 'deleteUserCcDraftPost'));
|
28 |
add_action('wp_ajax_b2s_user_network_settings', array($this, 'saveUserNetworkSettings'));
|
|
|
29 |
add_action('wp_ajax_b2s_save_social_meta_tags', array($this, 'saveSocialMetaTags'));
|
30 |
add_action('wp_ajax_b2s_reset_social_meta_tags', array($this, 'resetSocialMetaTags'));
|
31 |
add_action('wp_ajax_b2s_save_user_time_settings', array($this, 'saveUserTimeSettings'));
|
@@ -58,6 +59,8 @@ class Ajax_Post {
|
|
58 |
add_action('wp_ajax_b2s_auth_network_confirm', array($this, 'authNetworkConfirm'));
|
59 |
add_action('wp_ajax_b2s_change_favorite_status', array($this, 'changeFavoriteStatus'));
|
60 |
add_action('wp_ajax_b2s_save_url_parameter', array($this, 'saveUrlParameter'));
|
|
|
|
|
61 |
}
|
62 |
|
63 |
public function curationDraft() {
|
@@ -90,15 +93,15 @@ class Ajax_Post {
|
|
90 |
$postId = $curation->insertContent();
|
91 |
}
|
92 |
if ($postId !== false) {
|
93 |
-
if(isset($_POST['ship_type']) && isset($_POST['profile_select'])){
|
94 |
$draft_data = array(
|
95 |
'ship_type' => $_POST['ship_type'],
|
96 |
'profile_select' => $_POST['profile_select']
|
97 |
);
|
98 |
-
if((int) $_POST['ship_type'] > 0 && isset($_POST['ship_date'])) {
|
99 |
$draft_data['ship_date'] = $_POST['ship_date'];
|
100 |
}
|
101 |
-
if(isset($_POST['twitter_select'])) {
|
102 |
$draft_data['twitter_select'] = $_POST['twitter_select'];
|
103 |
}
|
104 |
global $wpdb;
|
@@ -108,7 +111,7 @@ class Ajax_Post {
|
|
108 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
109 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
110 |
$date = B2S_Util::getCustomLocaleDateTime($userTimeZoneOffset);
|
111 |
-
|
112 |
$sqlCheckDraft = $wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}b2s_posts_drafts` WHERE `blog_user_id` = %d AND `post_id` = %d AND `save_origin` = 1", B2S_PLUGIN_BLOG_USER_ID, (int) $postId);
|
113 |
$draftEntry = $wpdb->get_var($sqlCheckDraft);
|
114 |
if ($draftEntry !== NULL && (int) $draftEntry > 0) {
|
@@ -512,14 +515,6 @@ class Ajax_Post {
|
|
512 |
delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $post['post_id']);
|
513 |
delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $post['post_id']);
|
514 |
|
515 |
-
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
516 |
-
$linkNoCache = $options->_getOption("link_no_cache");
|
517 |
-
if($linkNoCache == false || !is_array($linkNoCache)) {
|
518 |
-
$fb_linkNoCache = (((int) $linkNoCache > 0) ? 1 : 0);
|
519 |
-
$linkNoCache = array(1 => $fb_linkNoCache, 3 => 1);
|
520 |
-
$options->_setOption("link_no_cache", $linkNoCache);
|
521 |
-
}
|
522 |
-
|
523 |
$content = array();
|
524 |
$schedResult = array();
|
525 |
$defaultPostData = array('token' => B2S_PLUGIN_TOKEN,
|
@@ -533,9 +528,10 @@ class Ajax_Post {
|
|
533 |
if (!isset($data['url']) || !isset($data['network_id'])) {
|
534 |
continue;
|
535 |
}
|
536 |
-
|
537 |
-
if ((int) $data['network_id'] == 1 || (int) $data['network_id'] == 3) {
|
538 |
-
|
|
|
539 |
$defaultPostData['no_cache'] = $linkNoCache[$data['network_id']];
|
540 |
}
|
541 |
}
|
@@ -814,45 +810,48 @@ class Ajax_Post {
|
|
814 |
echo json_encode(array('result' => true, 'content' => (((int) $_POST['legacy_mode'] == 1) ? 0 : 1)));
|
815 |
wp_die();
|
816 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
817 |
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
}
|
823 |
-
|
824 |
-
|
825 |
-
//Auto-Poster A
|
826 |
-
$network_auth_id = isset($_POST['b2s-import-auto-post-network-auth-id']) && is_array($_POST['b2s-import-auto-post-network-auth-id']) ? $_POST['b2s-import-auto-post-network-auth-id'] : array();
|
827 |
-
$post_type = isset($_POST['b2s-import-auto-post-type-data']) && is_array($_POST['b2s-import-auto-post-type-data']) ? $_POST['b2s-import-auto-post-type-data'] : array();
|
828 |
-
|
829 |
-
$auto_post_import = array('active' => ((isset($_POST['b2s-import-auto-post']) && (int) $_POST['b2s-import-auto-post'] == 1) ? 1 : 0),
|
830 |
-
'network_auth_id' => $network_auth_id,
|
831 |
-
'ship_state' => ((isset($_POST['b2s-import-auto-post-time-state']) && (int) $_POST['b2s-import-auto-post-time-state'] == 1) ? 1 : 0),
|
832 |
-
'ship_delay_time' => (int) $_POST['b2s-import-auto-post-time-data'],
|
833 |
-
'post_filter' => ((isset($_POST['b2s-import-auto-post-filter']) && (int) $_POST['b2s-import-auto-post-filter'] == 1) ? 1 : 0),
|
834 |
-
'post_type_state' => ((isset($_POST['b2s-import-auto-post-type-state']) && (int) $_POST['b2s-import-auto-post-type-state'] == 1) ? 1 : 0),
|
835 |
-
'post_type' => $post_type);
|
836 |
-
|
837 |
-
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
838 |
-
$options->_setOption('auto_post_import', $auto_post_import);
|
839 |
-
|
840 |
-
|
841 |
-
//Auto-Poster M
|
842 |
-
$active = ((isset($_POST['b2s-manuell-auto-post']) && (int) $_POST['b2s-manuell-auto-post'] == 1) ? 1 : 0);
|
843 |
-
$best_times = ((isset($_POST['b2s-auto-post-best-times']) && (int) $_POST['b2s-auto-post-best-times'] == 1) ? 1 : 0);
|
844 |
-
$profile = ((isset($_POST['b2s-auto-post-profil-dropdown']) && (int) $_POST['b2s-auto-post-profil-dropdown'] > 0) ? (int) $_POST['b2s-auto-post-profil-dropdown'] : 0);
|
845 |
-
$twitter = ((isset($_POST['b2s-auto-post-profil-dropdown-twitter']) && (int) $_POST['b2s-auto-post-profil-dropdown-twitter'] > 0) ? (int) $_POST['b2s-auto-post-profil-dropdown-twitter'] : 0);
|
846 |
-
$publish = isset($_POST['b2s-settings-auto-post-publish']) && is_array($_POST['b2s-settings-auto-post-publish']) ? $_POST['b2s-settings-auto-post-publish'] : array();
|
847 |
-
$update = isset($_POST['b2s-settings-auto-post-update']) && is_array($_POST['b2s-settings-auto-post-update']) ? $_POST['b2s-settings-auto-post-update'] : array();
|
848 |
-
$auto_post = array('active' => $active, 'profile' => $profile, 'twitter' => $twitter, 'publish' => $publish, 'update' => $update, 'best_times' => $best_times);
|
849 |
-
$options->_setOption('auto_post', $auto_post);
|
850 |
-
echo json_encode(array('result' => true));
|
851 |
wp_die();
|
852 |
}
|
853 |
|
854 |
|
855 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 |
wp_die();
|
857 |
} else {
|
858 |
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
@@ -1398,15 +1397,6 @@ class Ajax_Post {
|
|
1398 |
delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $post['post_id']);
|
1399 |
delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $post['post_id']);
|
1400 |
|
1401 |
-
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
1402 |
-
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
1403 |
-
$linkNoCache = $options->_getOption("link_no_cache");
|
1404 |
-
if($linkNoCache == false || !is_array($linkNoCache)) {
|
1405 |
-
$fb_linkNoCache = (((int) $linkNoCache > 0) ? 1 : 0);
|
1406 |
-
$linkNoCache = array(1 => $fb_linkNoCache, 3 => 1);
|
1407 |
-
$options->_setOption("link_no_cache", $linkNoCache);
|
1408 |
-
}
|
1409 |
-
|
1410 |
foreach ($b2sids as $b2s_id) {
|
1411 |
$b2sShipSend = new B2S_Calendar_Save();
|
1412 |
|
@@ -1442,13 +1432,14 @@ class Ajax_Post {
|
|
1442 |
if (!isset($data['url']) || !isset($data['content']) || !isset($data['network_id'])) {
|
1443 |
continue;
|
1444 |
}
|
1445 |
-
|
1446 |
-
if ((int) $data['network_id'] == 1 || (int) $data['network_id'] == 3) {
|
1447 |
-
|
|
|
1448 |
$defaultPostData['no_cache'] = $linkNoCache[$data['network_id']];
|
1449 |
}
|
1450 |
}
|
1451 |
-
|
1452 |
//Change/Set MetaTags
|
1453 |
if (in_array((int) $data['network_id'], json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']) && $metaOg == false && (int) $post['post_id'] > 0 && isset($data['post_format']) && (int) $data['post_format'] == 0 && isset($post['change_og_meta']) && (int) $post['change_og_meta'] == 1) { //LinkPost
|
1454 |
$metaOg = true;
|
@@ -1495,7 +1486,7 @@ class Ajax_Post {
|
|
1495 |
}
|
1496 |
$meta->updateMeta((int) $post['post_id']);
|
1497 |
}
|
1498 |
-
|
1499 |
$sendData = array("board" => isset($data['board']) ? sanitize_text_field($data['board']) : '',
|
1500 |
"group" => isset($data['group']) ? sanitize_text_field($data['group']) : '',
|
1501 |
"custom_title" => isset($data['custom_title']) ? sanitize_text_field($data['custom_title']) : '',
|
@@ -1523,7 +1514,7 @@ class Ajax_Post {
|
|
1523 |
$schedData = array(
|
1524 |
'date' => isset($data['date']) ? $data['date'] : array(),
|
1525 |
'time' => isset($data['time']) ? $data['time'] : array(),
|
1526 |
-
'releaseSelect' => 1,
|
1527 |
'user_timezone' => isset($post['user_timezone']) ? (int) $post['user_timezone'] : 0,
|
1528 |
'saveSetting' => isset($data['saveSchedSetting']) ? true : false
|
1529 |
);
|
@@ -1674,7 +1665,7 @@ class Ajax_Post {
|
|
1674 |
$wpdb->insert($wpdb->prefix . 'b2s_user_network_settings', array('blog_user_id' => (int) $_POST['assignBlogUserId'], 'mandant_id' => 0, 'network_auth_id' => (int) $assignUserAuth['assign_network_auth_id']), array('%d', '%d', '%d'));
|
1675 |
|
1676 |
$options = new B2S_Options((int) B2S_PLUGIN_BLOG_USER_ID);
|
1677 |
-
if (isset($_POST['optionBestTimes']) && $_POST['optionBestTimes'] == true) {
|
1678 |
$userSchedData = $options->_getOption('auth_sched_time');
|
1679 |
if (isset($userSchedData['delay_day'][$_POST['networkAuthId']]) && isset($userSchedData['time'][$_POST['networkAuthId']])) {
|
1680 |
$assignUserOptions = new B2S_Options((int) $_POST['assignBlogUserId']);
|
@@ -1692,14 +1683,14 @@ class Ajax_Post {
|
|
1692 |
}
|
1693 |
}
|
1694 |
|
1695 |
-
if (isset($_POST['optionPostingTemplate']) && $_POST['optionPostingTemplate'] == true) {
|
1696 |
$userTemplateData = $options->_getOption('post_template');
|
1697 |
if (isset($userTemplateData[$assignUserAuth['assign_network_id']][$assignUserAuth['assign_network_type']])) {
|
1698 |
$assignUserOptions = new B2S_Options((int) $_POST['assignBlogUserId']);
|
1699 |
$assignUserTemplateData = $assignUserOptions->_getOption('post_template');
|
1700 |
-
if($assignUserTemplateData == false || !isset($assignUserTemplateData[$assignUserAuth['assign_network_id']])) {
|
1701 |
$defaultTemplate = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1702 |
-
if(isset($defaultTemplate[$assignUserAuth['assign_network_id']])) {
|
1703 |
$assignUserTemplateData = array($assignUserAuth['assign_network_id'] => $defaultTemplate[$assignUserAuth['assign_network_id']]);
|
1704 |
} else {
|
1705 |
$assignUserTemplateData[$assignUserAuth['assign_network_id']] = $userTemplateData[$assignUserAuth['assign_network_id']];
|
@@ -1709,12 +1700,12 @@ class Ajax_Post {
|
|
1709 |
$assignUserOptions->_setOption('post_template', $assignUserTemplateData);
|
1710 |
}
|
1711 |
}
|
1712 |
-
|
1713 |
-
if (isset($_POST['optionUrlParameter']) && $_POST['optionUrlParameter'] == true) {
|
1714 |
$sql = $wpdb->prepare("SELECT data FROM `{$wpdb->prefix}b2s_posts_network_details` WHERE `network_auth_id` = %d", (int) $_POST['networkAuthId']);
|
1715 |
$rawOriginalData = $wpdb->get_row($sql);
|
1716 |
$originalData = unserialize($rawOriginalData->data);
|
1717 |
-
if($originalData != false && $originalData != NULL && is_array($originalData) && isset($originalData) && !empty($originalData) && isset($originalData['url_parameter'])) {
|
1718 |
$sqlUpdateNetworkAuthId = $wpdb->prepare("UPDATE `{$wpdb->prefix}b2s_posts_network_details` SET `data` = %s WHERE `network_auth_id` = %d;", serialize(array('url_parameter' => $originalData['url_parameter'])), (int) $assignUserAuth['assign_network_auth_id']);
|
1719 |
$wpdb->query($sqlUpdateNetworkAuthId);
|
1720 |
}
|
@@ -1785,15 +1776,14 @@ class Ajax_Post {
|
|
1785 |
$post_template[$_POST['networkId']] = $new_template;
|
1786 |
$post_template_result = $options->_setOption("post_template", $post_template);
|
1787 |
}
|
1788 |
-
|
1789 |
-
if (((int) $_POST['networkId'] == 1 || (int) $_POST['networkId'] == 3) && isset($_POST['link_no_cache'])) {
|
1790 |
-
$linkNoCache =
|
1791 |
-
if($linkNoCache
|
1792 |
-
$
|
1793 |
-
$
|
|
|
1794 |
}
|
1795 |
-
$linkNoCache[$_POST['networkId']] = (int) $_POST['link_no_cache'];
|
1796 |
-
$link_no_cache_option = $options->_setOption('link_no_cache', $linkNoCache);
|
1797 |
}
|
1798 |
|
1799 |
if ($post_template_result == true || $link_no_cache_option == true) {
|
@@ -2045,4 +2035,198 @@ class Ajax_Post {
|
|
2045 |
}
|
2046 |
}
|
2047 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2048 |
}
|
26 |
add_action('wp_ajax_b2s_delete_user_approve_post', array($this, 'deleteUserApprovePost'));
|
27 |
add_action('wp_ajax_b2s_delete_user_cc_draft_post', array($this, 'deleteUserCcDraftPost'));
|
28 |
add_action('wp_ajax_b2s_user_network_settings', array($this, 'saveUserNetworkSettings'));
|
29 |
+
add_action('wp_ajax_b2s_auto_post_settings', array($this, 'saveAutoPostSettings'));
|
30 |
add_action('wp_ajax_b2s_save_social_meta_tags', array($this, 'saveSocialMetaTags'));
|
31 |
add_action('wp_ajax_b2s_reset_social_meta_tags', array($this, 'resetSocialMetaTags'));
|
32 |
add_action('wp_ajax_b2s_save_user_time_settings', array($this, 'saveUserTimeSettings'));
|
59 |
add_action('wp_ajax_b2s_auth_network_confirm', array($this, 'authNetworkConfirm'));
|
60 |
add_action('wp_ajax_b2s_change_favorite_status', array($this, 'changeFavoriteStatus'));
|
61 |
add_action('wp_ajax_b2s_save_url_parameter', array($this, 'saveUrlParameter'));
|
62 |
+
add_action('wp_ajax_b2s_re_post_submit', array($this, 'rePostSubmit'));
|
63 |
+
add_action('wp_ajax_b2s_delete_re_post_sched', array($this, 'deleteRePostSched'));
|
64 |
}
|
65 |
|
66 |
public function curationDraft() {
|
93 |
$postId = $curation->insertContent();
|
94 |
}
|
95 |
if ($postId !== false) {
|
96 |
+
if (isset($_POST['ship_type']) && isset($_POST['profile_select'])) {
|
97 |
$draft_data = array(
|
98 |
'ship_type' => $_POST['ship_type'],
|
99 |
'profile_select' => $_POST['profile_select']
|
100 |
);
|
101 |
+
if ((int) $_POST['ship_type'] > 0 && isset($_POST['ship_date'])) {
|
102 |
$draft_data['ship_date'] = $_POST['ship_date'];
|
103 |
}
|
104 |
+
if (isset($_POST['twitter_select'])) {
|
105 |
$draft_data['twitter_select'] = $_POST['twitter_select'];
|
106 |
}
|
107 |
global $wpdb;
|
111 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
112 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
113 |
$date = B2S_Util::getCustomLocaleDateTime($userTimeZoneOffset);
|
114 |
+
|
115 |
$sqlCheckDraft = $wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}b2s_posts_drafts` WHERE `blog_user_id` = %d AND `post_id` = %d AND `save_origin` = 1", B2S_PLUGIN_BLOG_USER_ID, (int) $postId);
|
116 |
$draftEntry = $wpdb->get_var($sqlCheckDraft);
|
117 |
if ($draftEntry !== NULL && (int) $draftEntry > 0) {
|
515 |
delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $post['post_id']);
|
516 |
delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $post['post_id']);
|
517 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
518 |
$content = array();
|
519 |
$schedResult = array();
|
520 |
$defaultPostData = array('token' => B2S_PLUGIN_TOKEN,
|
528 |
if (!isset($data['url']) || !isset($data['network_id'])) {
|
529 |
continue;
|
530 |
}
|
531 |
+
|
532 |
+
if ((int) $data['network_id'] == 1 || (int) $data['network_id'] == 3 || (int) $data['network_id'] == 19) {
|
533 |
+
$linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
534 |
+
if (is_array($linkNoCache) && isset($linkNoCache[$data['network_id']]) && (int) $linkNoCache[$data['network_id']] > 0) {
|
535 |
$defaultPostData['no_cache'] = $linkNoCache[$data['network_id']];
|
536 |
}
|
537 |
}
|
810 |
echo json_encode(array('result' => true, 'content' => (((int) $_POST['legacy_mode'] == 1) ? 0 : 1)));
|
811 |
wp_die();
|
812 |
}
|
813 |
+
echo json_encode(array('result' => false));
|
814 |
+
wp_die();
|
815 |
+
} else {
|
816 |
+
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
817 |
+
wp_die();
|
818 |
+
}
|
819 |
+
}
|
820 |
|
821 |
+
public function saveAutoPostSettings() {
|
822 |
+
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
823 |
+
if (isset($_POST['b2s-import-auto-post']) && (int) $_POST['b2s-import-auto-post'] == 1 && !isset($_POST['b2s-import-auto-post-network-auth-id'])) {
|
824 |
+
echo json_encode(array('result' => false, 'type' => 'no-auth-selected'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
825 |
wp_die();
|
826 |
}
|
827 |
|
828 |
|
829 |
+
//Auto-Poster A
|
830 |
+
$network_auth_id = isset($_POST['b2s-import-auto-post-network-auth-id']) && is_array($_POST['b2s-import-auto-post-network-auth-id']) ? $_POST['b2s-import-auto-post-network-auth-id'] : array();
|
831 |
+
$post_type = isset($_POST['b2s-import-auto-post-type-data']) && is_array($_POST['b2s-import-auto-post-type-data']) ? $_POST['b2s-import-auto-post-type-data'] : array();
|
832 |
+
|
833 |
+
$auto_post_import = array('active' => ((isset($_POST['b2s-import-auto-post']) && (int) $_POST['b2s-import-auto-post'] == 1) ? 1 : 0),
|
834 |
+
'network_auth_id' => $network_auth_id,
|
835 |
+
'ship_state' => ((isset($_POST['b2s-import-auto-post-time-state']) && (int) $_POST['b2s-import-auto-post-time-state'] == 1) ? 1 : 0),
|
836 |
+
'ship_delay_time' => (int) $_POST['b2s-import-auto-post-time-data'],
|
837 |
+
'post_filter' => ((isset($_POST['b2s-import-auto-post-filter']) && (int) $_POST['b2s-import-auto-post-filter'] == 1) ? 1 : 0),
|
838 |
+
'post_type_state' => ((isset($_POST['b2s-import-auto-post-type-state']) && (int) $_POST['b2s-import-auto-post-type-state'] == 1) ? 1 : 0),
|
839 |
+
'post_type' => $post_type);
|
840 |
+
|
841 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
842 |
+
$options->_setOption('auto_post_import', $auto_post_import);
|
843 |
+
|
844 |
+
|
845 |
+
//Auto-Poster M
|
846 |
+
$active = ((isset($_POST['b2s-manuell-auto-post']) && (int) $_POST['b2s-manuell-auto-post'] == 1) ? 1 : 0);
|
847 |
+
$best_times = ((isset($_POST['b2s-auto-post-best-times']) && (int) $_POST['b2s-auto-post-best-times'] == 1) ? 1 : 0);
|
848 |
+
$profile = ((isset($_POST['b2s-auto-post-profil-dropdown']) && (int) $_POST['b2s-auto-post-profil-dropdown'] > 0) ? (int) $_POST['b2s-auto-post-profil-dropdown'] : 0);
|
849 |
+
$twitter = ((isset($_POST['b2s-auto-post-profil-dropdown-twitter']) && (int) $_POST['b2s-auto-post-profil-dropdown-twitter'] > 0) ? (int) $_POST['b2s-auto-post-profil-dropdown-twitter'] : 0);
|
850 |
+
$publish = isset($_POST['b2s-settings-auto-post-publish']) && is_array($_POST['b2s-settings-auto-post-publish']) ? $_POST['b2s-settings-auto-post-publish'] : array();
|
851 |
+
$update = isset($_POST['b2s-settings-auto-post-update']) && is_array($_POST['b2s-settings-auto-post-update']) ? $_POST['b2s-settings-auto-post-update'] : array();
|
852 |
+
$auto_post = array('active' => $active, 'profile' => $profile, 'twitter' => $twitter, 'publish' => $publish, 'update' => $update, 'best_times' => $best_times);
|
853 |
+
$options->_setOption('auto_post', $auto_post);
|
854 |
+
echo json_encode(array('result' => true));
|
855 |
wp_die();
|
856 |
} else {
|
857 |
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
1397 |
delete_option('B2S_PLUGIN_POST_META_TAGES_TWITTER_' . (int) $post['post_id']);
|
1398 |
delete_option('B2S_PLUGIN_POST_META_TAGES_OG_' . (int) $post['post_id']);
|
1399 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1400 |
foreach ($b2sids as $b2s_id) {
|
1401 |
$b2sShipSend = new B2S_Calendar_Save();
|
1402 |
|
1432 |
if (!isset($data['url']) || !isset($data['content']) || !isset($data['network_id'])) {
|
1433 |
continue;
|
1434 |
}
|
1435 |
+
|
1436 |
+
if ((int) $data['network_id'] == 1 || (int) $data['network_id'] == 3 || (int) $data['network_id'] == 19) {
|
1437 |
+
$linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
1438 |
+
if (is_array($linkNoCache) && isset($linkNoCache[$data['network_id']]) && (int) $linkNoCache[$data['network_id']] > 0) {
|
1439 |
$defaultPostData['no_cache'] = $linkNoCache[$data['network_id']];
|
1440 |
}
|
1441 |
}
|
1442 |
+
|
1443 |
//Change/Set MetaTags
|
1444 |
if (in_array((int) $data['network_id'], json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']) && $metaOg == false && (int) $post['post_id'] > 0 && isset($data['post_format']) && (int) $data['post_format'] == 0 && isset($post['change_og_meta']) && (int) $post['change_og_meta'] == 1) { //LinkPost
|
1445 |
$metaOg = true;
|
1486 |
}
|
1487 |
$meta->updateMeta((int) $post['post_id']);
|
1488 |
}
|
1489 |
+
|
1490 |
$sendData = array("board" => isset($data['board']) ? sanitize_text_field($data['board']) : '',
|
1491 |
"group" => isset($data['group']) ? sanitize_text_field($data['group']) : '',
|
1492 |
"custom_title" => isset($data['custom_title']) ? sanitize_text_field($data['custom_title']) : '',
|
1514 |
$schedData = array(
|
1515 |
'date' => isset($data['date']) ? $data['date'] : array(),
|
1516 |
'time' => isset($data['time']) ? $data['time'] : array(),
|
1517 |
+
'releaseSelect' => ((isset($post['sched_type']) && (int) $post['sched_type'] > 0) ? (int) $post['sched_type'] : 1),
|
1518 |
'user_timezone' => isset($post['user_timezone']) ? (int) $post['user_timezone'] : 0,
|
1519 |
'saveSetting' => isset($data['saveSchedSetting']) ? true : false
|
1520 |
);
|
1665 |
$wpdb->insert($wpdb->prefix . 'b2s_user_network_settings', array('blog_user_id' => (int) $_POST['assignBlogUserId'], 'mandant_id' => 0, 'network_auth_id' => (int) $assignUserAuth['assign_network_auth_id']), array('%d', '%d', '%d'));
|
1666 |
|
1667 |
$options = new B2S_Options((int) B2S_PLUGIN_BLOG_USER_ID);
|
1668 |
+
if (isset($_POST['optionBestTimes']) && filter_var($_POST['optionBestTimes'], FILTER_VALIDATE_BOOLEAN) == true) {
|
1669 |
$userSchedData = $options->_getOption('auth_sched_time');
|
1670 |
if (isset($userSchedData['delay_day'][$_POST['networkAuthId']]) && isset($userSchedData['time'][$_POST['networkAuthId']])) {
|
1671 |
$assignUserOptions = new B2S_Options((int) $_POST['assignBlogUserId']);
|
1683 |
}
|
1684 |
}
|
1685 |
|
1686 |
+
if (isset($_POST['optionPostingTemplate']) && filter_var($_POST['optionPostingTemplate'], FILTER_VALIDATE_BOOLEAN) == true) {
|
1687 |
$userTemplateData = $options->_getOption('post_template');
|
1688 |
if (isset($userTemplateData[$assignUserAuth['assign_network_id']][$assignUserAuth['assign_network_type']])) {
|
1689 |
$assignUserOptions = new B2S_Options((int) $_POST['assignBlogUserId']);
|
1690 |
$assignUserTemplateData = $assignUserOptions->_getOption('post_template');
|
1691 |
+
if ($assignUserTemplateData == false || !isset($assignUserTemplateData[$assignUserAuth['assign_network_id']])) {
|
1692 |
$defaultTemplate = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1693 |
+
if (isset($defaultTemplate[$assignUserAuth['assign_network_id']])) {
|
1694 |
$assignUserTemplateData = array($assignUserAuth['assign_network_id'] => $defaultTemplate[$assignUserAuth['assign_network_id']]);
|
1695 |
} else {
|
1696 |
$assignUserTemplateData[$assignUserAuth['assign_network_id']] = $userTemplateData[$assignUserAuth['assign_network_id']];
|
1700 |
$assignUserOptions->_setOption('post_template', $assignUserTemplateData);
|
1701 |
}
|
1702 |
}
|
1703 |
+
|
1704 |
+
if (isset($_POST['optionUrlParameter']) && filter_var($_POST['optionUrlParameter'], FILTER_VALIDATE_BOOLEAN) == true) {
|
1705 |
$sql = $wpdb->prepare("SELECT data FROM `{$wpdb->prefix}b2s_posts_network_details` WHERE `network_auth_id` = %d", (int) $_POST['networkAuthId']);
|
1706 |
$rawOriginalData = $wpdb->get_row($sql);
|
1707 |
$originalData = unserialize($rawOriginalData->data);
|
1708 |
+
if ($originalData != false && $originalData != NULL && is_array($originalData) && isset($originalData) && !empty($originalData) && isset($originalData['url_parameter'])) {
|
1709 |
$sqlUpdateNetworkAuthId = $wpdb->prepare("UPDATE `{$wpdb->prefix}b2s_posts_network_details` SET `data` = %s WHERE `network_auth_id` = %d;", serialize(array('url_parameter' => $originalData['url_parameter'])), (int) $assignUserAuth['assign_network_auth_id']);
|
1710 |
$wpdb->query($sqlUpdateNetworkAuthId);
|
1711 |
}
|
1776 |
$post_template[$_POST['networkId']] = $new_template;
|
1777 |
$post_template_result = $options->_setOption("post_template", $post_template);
|
1778 |
}
|
1779 |
+
|
1780 |
+
if (((int) $_POST['networkId'] == 1 || (int) $_POST['networkId'] == 3 || (int) $_POST['networkId'] == 19) && isset($_POST['link_no_cache'])) {
|
1781 |
+
$linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
1782 |
+
if(is_array($linkNoCache) && !empty($linkNoCache)) {
|
1783 |
+
$linkNoCache[(int) $_POST['networkId']] = (int) $_POST['link_no_cache'];
|
1784 |
+
$options->_setOption('link_no_cache', $linkNoCache);
|
1785 |
+
$link_no_cache_option = true;
|
1786 |
}
|
|
|
|
|
1787 |
}
|
1788 |
|
1789 |
if ($post_template_result == true || $link_no_cache_option == true) {
|
2035 |
}
|
2036 |
}
|
2037 |
|
2038 |
+
public function rePostSubmit() {
|
2039 |
+
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
2040 |
+
if (isset($_POST['b2s-re-post-profil-dropdown']) && (int) $_POST['b2s-re-post-profil-dropdown'] >= 0 && isset($_POST['b2s-re-post-profil-data-' . $_POST['b2s-re-post-profil-dropdown']]) && !empty($_POST['b2s-re-post-profil-data-' . $_POST['b2s-re-post-profil-dropdown']])) {
|
2041 |
+
$networkData = json_decode(base64_decode($_POST['b2s-re-post-profil-data-' . $_POST['b2s-re-post-profil-dropdown']]));
|
2042 |
+
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
2043 |
+
|
2044 |
+
//Select Posts for Queue
|
2045 |
+
$limit = 5;
|
2046 |
+
$versionLimit = unserialize(B2S_PLUGIN_RE_POST_LIMIT);
|
2047 |
+
if(isset($_POST['b2s-re-post-limit']) && (int) $_POST['b2s-re-post-limit'] >= 1) {
|
2048 |
+
$limit = ((int) $_POST['b2s-re-post-limit'] > (int) $versionLimit[B2S_PLUGIN_USER_VERSION]) ? (int) $versionLimit[B2S_PLUGIN_USER_VERSION] : (int) $_POST['b2s-re-post-limit'];
|
2049 |
+
if(isset($_POST['b2s-re-post-queue-count']) && (int) $_POST['b2s-re-post-queue-count'] >= 1) {
|
2050 |
+
if((int) $_POST['b2s-re-post-queue-count'] + (int) $_POST['b2s-re-post-limit'] > (int) $versionLimit[B2S_PLUGIN_USER_VERSION]) {
|
2051 |
+
$limit = (int) $versionLimit[B2S_PLUGIN_USER_VERSION] - (int) $_POST['b2s-re-post-queue-count'];
|
2052 |
+
}
|
2053 |
+
}
|
2054 |
+
}
|
2055 |
+
if($limit <= 0) {
|
2056 |
+
echo json_encode(array('result' => false, 'error' => 'limit'));
|
2057 |
+
wp_die();
|
2058 |
+
}
|
2059 |
+
global $wpdb;
|
2060 |
+
$where = ' AND b2s.post_id IS NULL';
|
2061 |
+
$join = " LEFT JOIN (SELECT post_id FROM {$wpdb->prefix}b2s_posts WHERE sched_type = '5' AND hide = '0' AND publish_date = '0000-00-00 00:00:00' AND blog_user_id = ".B2S_PLUGIN_BLOG_USER_ID.") AS b2s ON b2s.post_id = posts.ID";
|
2062 |
+
if(isset($_POST['b2s-re-post-settings-option']) && (int) $_POST['b2s-re-post-settings-option'] == 1) {
|
2063 |
+
//custom settings
|
2064 |
+
//posttypes
|
2065 |
+
if(isset($_POST['b2s-re-post-type-active']) && (int) $_POST['b2s-re-post-type-active'] == 1 && isset($_POST['b2s-re-post-type-data']) && !empty($_POST['b2s-re-post-type-data']) && is_array($_POST['b2s-re-post-type-data'])) {
|
2066 |
+
$where .= " AND post_type " . ((isset($_POST['b2s-re-post-type-state']) && !empty($_POST['b2s-re-post-type-state']) && (int) $_POST['b2s-re-post-type-state'] == 1) ? 'NOT' : '') . " IN ('" . implode("','", $_POST['b2s-re-post-type-data']) . "') ";
|
2067 |
+
}
|
2068 |
+
//author
|
2069 |
+
if(isset($_POST['b2s-re-post-author-active']) && (int) $_POST['b2s-re-post-author-active'] == 1 && isset($_POST['b2s-re-post-author-data']) && !empty($_POST['b2s-re-post-author-data']) && is_array($_POST['b2s-re-post-author-data'])) {
|
2070 |
+
$where .= " AND post_author " . ((isset($_POST['b2s-re-post-author-state']) && !empty($_POST['b2s-re-post-author-state']) && (int) $_POST['b2s-re-post-author-state'] == 1) ? 'NOT' : '') . " IN ('" . implode("','", $_POST['b2s-re-post-author-data']) . "') ";
|
2071 |
+
}
|
2072 |
+
//Start/End Date
|
2073 |
+
if(isset($_POST['b2s-re-post-date-active']) && (int) $_POST['b2s-re-post-date-active'] == 1 && isset($_POST['b2s-re-post-date-start']) && !empty($_POST['b2s-re-post-date-start']) && isset($_POST['b2s-re-post-date-end']) && !empty($_POST['b2s-re-post-date-end'])) {
|
2074 |
+
//Case Startdate higher then Enddate => Switch Dates
|
2075 |
+
if($_POST['b2s-re-post-date-start'] > $_POST['b2s-re-post-date-end']) {
|
2076 |
+
$start = date('Y-m-d', strtotime($_POST['b2s-re-post-date-end']));
|
2077 |
+
$end = date('Y-m-d', strtotime($_POST['b2s-re-post-date-start']));
|
2078 |
+
} else {
|
2079 |
+
$start = date('Y-m-d', strtotime($_POST['b2s-re-post-date-start']));
|
2080 |
+
$end = date('Y-m-d', strtotime($_POST['b2s-re-post-date-end']));
|
2081 |
+
}
|
2082 |
+
$where .= " AND (post_date " . ((isset($_POST['b2s-re-post-date-state']) && !empty($_POST['b2s-re-post-date-state']) && (int) $_POST['b2s-re-post-date-state'] == 1) ? '<' : '>=') . " '" . $start . " 00:00:00' ";
|
2083 |
+
$where .= ((isset($_POST['b2s-re-post-date-state']) && !empty($_POST['b2s-re-post-date-state']) && (int) $_POST['b2s-re-post-date-state'] == 1) ? ' OR ' : ' AND ');
|
2084 |
+
$where .= " post_date " . ((isset($_POST['b2s-re-post-date-state']) && !empty($_POST['b2s-re-post-date-state']) && (int) $_POST['b2s-re-post-date-state'] == 1) ? '>' : '<=') . " '" . $end . " 23:59:59') ";
|
2085 |
+
}
|
2086 |
+
//categories
|
2087 |
+
if(isset($_POST['b2s-re-post-categories-active']) && (int) $_POST['b2s-re-post-categories-active'] == 1 && isset($_POST['b2s-re-post-categories-data']) && !empty($_POST['b2s-re-post-categories-data']) && is_array($_POST['b2s-re-post-categories-data'])) {
|
2088 |
+
$join .= " LEFT JOIN (SELECT * FROM $wpdb->term_relationships WHERE term_taxonomy_id IN ('" . implode("','", $_POST['b2s-re-post-categories-data']) . "')) AS tr ON tr.object_id = posts.ID";
|
2089 |
+
$where .= " AND term_taxonomy_id IS " . ((isset($_POST['b2s-re-post-categories-state']) && !empty($_POST['b2s-re-post-categories-state']) && (int) $_POST['b2s-re-post-categories-state'] == 1) ? '' : 'NOT') . " NULL ";
|
2090 |
+
}
|
2091 |
+
//include only favorites
|
2092 |
+
if(isset($_POST['b2s-re-post-favorites-active']) && (int) $_POST['b2s-re-post-favorites-active'] == 1) {
|
2093 |
+
$join .= " LEFT JOIN (SELECT post_id FROM {$wpdb->prefix}b2s_posts_favorites WHERE blog_user_id = '" . B2S_PLUGIN_BLOG_USER_ID . "')AS favorites ON favorites.post_id = posts.ID ";
|
2094 |
+
$where .= " AND favorites.post_id IS NOT NULL ";
|
2095 |
+
}
|
2096 |
+
}
|
2097 |
+
|
2098 |
+
$allowedPostTypes = get_post_types(array('public' => true));
|
2099 |
+
$postTypeIn = "(";
|
2100 |
+
foreach ($allowedPostTypes as $k => $v) {
|
2101 |
+
$postTypeIn .= "'".$v."',";
|
2102 |
+
}
|
2103 |
+
$postTypeIn = substr($postTypeIn, 0, -1) . ")";
|
2104 |
+
|
2105 |
+
$sql = "SELECT ID, post_title FROM $wpdb->posts as posts " . $join . " WHERE post_status = 'publish' AND post_type IN " . $postTypeIn . " " . $where;
|
2106 |
+
|
2107 |
+
$sql .= " ORDER BY post_date ASC ";
|
2108 |
+
$sql .= " LIMIT " . $limit;
|
2109 |
+
$result = $wpdb->get_results($sql);
|
2110 |
+
if(!is_array($result) || empty($result)) {
|
2111 |
+
echo json_encode(array('result' => false, 'error' => 'no_content'));
|
2112 |
+
wp_die();
|
2113 |
+
} else {
|
2114 |
+
//Time Settings
|
2115 |
+
if (isset($_POST['b2s-re-post-share-option'])) {
|
2116 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
2117 |
+
$bestTimes = array();
|
2118 |
+
if (isset($_POST['b2s-re-post-best-times-active']) && (int) $_POST['b2s-re-post-best-times-active'] > 0) {
|
2119 |
+
$bestTimes = $options->_getOption('auth_sched_time');
|
2120 |
+
}
|
2121 |
+
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
2122 |
+
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
2123 |
+
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
2124 |
+
$userLang = (isset($_POST['b2s-user-lang']) && $_POST['b2s-user-lang'] != 'en') ? $_POST['b2s-user-lang'] : 'en';
|
2125 |
+
$selectedTwitterProfile = (isset($_POST['b2s-re-post-profil-dropdown-twitter']) && !empty($_POST['b2s-re-post-profil-dropdown-twitter'])) ? (int) $_POST['b2s-re-post-profil-dropdown-twitter'] : '';
|
2126 |
+
require_once(B2S_PLUGIN_DIR . 'includes/B2S/RePost/Save.php');
|
2127 |
+
|
2128 |
+
if ((int) $_POST['b2s-re-post-share-option'] < 1) {
|
2129 |
+
//share every x days at [Mo][Thu]...
|
2130 |
+
$shareOptionType = 0;
|
2131 |
+
$interval = (isset($_POST['b2s-re-post-day-0']) && (int) $_POST['b2s-re-post-day-0'] > 0 && (int) $_POST['b2s-re-post-day-0'] <= 30) ? (int) $_POST['b2s-re-post-day-0'] : (((int) $_POST['b2s-re-post-day-0'] > 30) ? 30 : 1);
|
2132 |
+
$weekday = array(
|
2133 |
+
0 => ((isset($_POST['b2s-re-post-weekday-0']) && (int) $_POST['b2s-re-post-weekday-0'] >= 1) ? true : false), //Sun
|
2134 |
+
1 => ((isset($_POST['b2s-re-post-weekday-1']) && (int) $_POST['b2s-re-post-weekday-1'] >= 1) ? true : false), //Mon
|
2135 |
+
2 => ((isset($_POST['b2s-re-post-weekday-2']) && (int) $_POST['b2s-re-post-weekday-2'] >= 1) ? true : false), //Tue
|
2136 |
+
3 => ((isset($_POST['b2s-re-post-weekday-3']) && (int) $_POST['b2s-re-post-weekday-3'] >= 1) ? true : false), //Wed
|
2137 |
+
4 => ((isset($_POST['b2s-re-post-weekday-4']) && (int) $_POST['b2s-re-post-weekday-4'] >= 1) ? true : false), //Thu
|
2138 |
+
5 => ((isset($_POST['b2s-re-post-weekday-5']) && (int) $_POST['b2s-re-post-weekday-5'] >= 1) ? true : false), //Fri
|
2139 |
+
6 => ((isset($_POST['b2s-re-post-weekday-6']) && (int) $_POST['b2s-re-post-weekday-6'] >= 1) ? true : false) //Sat
|
2140 |
+
);
|
2141 |
+
$timeInput = (isset($_POST['b2s-re-post-input-time-0']) && !empty($_POST['b2s-re-post-input-time-0'])) ? $_POST['b2s-re-post-input-time-0'] : '';
|
2142 |
+
} else {
|
2143 |
+
//share every x [Monday]
|
2144 |
+
$shareOptionType = 1;
|
2145 |
+
$interval = (isset($_POST['b2s-re-post-day-1']) && (int) $_POST['b2s-re-post-day-1'] > 0 && (int) $_POST['b2s-re-post-day-1'] <= 10) ? (int) $_POST['b2s-re-post-day-1'] : (((int) $_POST['b2s-re-post-day-1'] > 10) ? 10 : 1);
|
2146 |
+
$weekday = (isset($_POST['b2s-re-post-weekday-select']) && !empty($_POST['b2s-re-post-weekday-select'])) ? $_POST['b2s-re-post-weekday-select'] : 'monday';
|
2147 |
+
$timeInput = (isset($_POST['b2s-re-post-input-time-1']) && !empty($_POST['b2s-re-post-input-time-1'])) ? $_POST['b2s-re-post-input-time-1'] : '';
|
2148 |
+
}
|
2149 |
+
|
2150 |
+
$date = new DateTime();
|
2151 |
+
$optionPostFormat = $options->_getOption('post_template');
|
2152 |
+
$optionUserHashTag = $options->_getOption('user_allow_hashtag');
|
2153 |
+
$rePost = new B2S_RePost_Save(B2S_PLUGIN_BLOG_USER_ID, $userLang, $userTimeZoneOffset, $optionPostFormat, $optionUserHashTag, $bestTimes);
|
2154 |
+
for ($i = 0; $i < count($result); $i++) {
|
2155 |
+
//get Postdata
|
2156 |
+
$postData = get_post((int) $result[$i]->ID);
|
2157 |
+
$title = isset($postData->post_title) ? B2S_Util::getTitleByLanguage(strip_tags($postData->post_title), strtolower($userLang)) : '';
|
2158 |
+
$content = (isset($postData->post_content) && !empty($postData->post_content)) ? trim($postData->post_content) : '';
|
2159 |
+
$excerpt = (isset($postData->post_excerpt) && !empty($postData->post_excerpt)) ? trim($postData->post_excerpt) : '';
|
2160 |
+
$url = get_permalink((int) $result[$i]->ID);
|
2161 |
+
$imageUrl = wp_get_attachment_url(get_post_thumbnail_id((int) $result[$i]->ID));
|
2162 |
+
$keywords = get_the_tags((int) $result[$i]->ID);
|
2163 |
+
if (($keywords == false || empty($keywords)) && taxonomy_exists(get_post_type((int) $result[$i]->ID) . '_tag')) {
|
2164 |
+
$keywords = get_the_terms((int) $result[$i]->ID, get_post_type((int) $result[$i]->ID) . '_tag');
|
2165 |
+
}
|
2166 |
+
$rePost->setPostData($result[$i]->ID, $title, $content, $excerpt, $url, $imageUrl, $keywords);
|
2167 |
+
|
2168 |
+
//calculate Post Start Date
|
2169 |
+
if($shareOptionType == 0) {
|
2170 |
+
$date->modify('+' . $interval . ' days');
|
2171 |
+
} else {
|
2172 |
+
for($daycount = 0; $daycount < $interval; $daycount++) {
|
2173 |
+
$date->modify('next ' . $weekday);
|
2174 |
+
}
|
2175 |
+
}
|
2176 |
+
$startDate = $date->format("Y-m-d");
|
2177 |
+
if($shareOptionType == 0) {
|
2178 |
+
$settings = array('type' => 0, 'bestTimes' => ((!empty($bestTimes)) ? true : false), 'interval' => $interval, 'weekday' => $weekday, 'time' => $timeInput);
|
2179 |
+
} else {
|
2180 |
+
$settings = array('type' => 1, 'bestTimes' => ((!empty($bestTimes)) ? true : false), 'interval' => $interval, 'weekday' => $weekday, 'time' => $timeInput);
|
2181 |
+
}
|
2182 |
+
$rePost->generatePosts($startDate, $settings, $networkData, $selectedTwitterProfile);
|
2183 |
+
}
|
2184 |
+
B2S_Heartbeat::getInstance()->postToServer();
|
2185 |
+
}
|
2186 |
+
}
|
2187 |
+
|
2188 |
+
require_once(B2S_PLUGIN_DIR . 'includes/B2S/RePost/Item.php');
|
2189 |
+
$rePostItem = new B2S_RePost_Item();
|
2190 |
+
$queue = $rePostItem->getRePostQueueHtml();
|
2191 |
+
echo json_encode(array('result' => true, 'queue' => $queue));
|
2192 |
+
wp_die();
|
2193 |
+
}
|
2194 |
+
}
|
2195 |
+
} else {
|
2196 |
+
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
2197 |
+
wp_die();
|
2198 |
+
}
|
2199 |
+
}
|
2200 |
+
|
2201 |
+
public function deleteRePostSched() {
|
2202 |
+
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
2203 |
+
if (isset($_POST['postId']) && !empty($_POST['postId'])) {
|
2204 |
+
$postIds = explode(',', $_POST['postId']);
|
2205 |
+
if (is_array($postIds) && !empty($postIds)) {
|
2206 |
+
global $wpdb;
|
2207 |
+
$sql = "SELECT id FROM {$wpdb->prefix}b2s_posts WHERE sched_type = 5 AND hide = 0 AND publish_date = '0000-00-00 00:00:00' AND blog_user_id = " . B2S_PLUGIN_BLOG_USER_ID . " AND post_id IN (".$_POST['postId'].")";
|
2208 |
+
$result = $wpdb->get_results($sql);
|
2209 |
+
if(is_array($result) && !empty($result)) {
|
2210 |
+
$b2sPostIds = array();
|
2211 |
+
foreach ($result as $k => $v) {
|
2212 |
+
array_push($b2sPostIds, $v->id);
|
2213 |
+
}
|
2214 |
+
require_once (B2S_PLUGIN_DIR . '/includes/B2S/Post/Tools.php');
|
2215 |
+
$delete = B2S_Post_Tools::deleteUserSchedPost($b2sPostIds);
|
2216 |
+
if($delete['result'] == true) {
|
2217 |
+
echo json_encode(array('result' => true, 'postIds' => $postIds));
|
2218 |
+
wp_die();
|
2219 |
+
}
|
2220 |
+
}
|
2221 |
+
|
2222 |
+
}
|
2223 |
+
}
|
2224 |
+
echo json_encode(array('result' => false));
|
2225 |
+
wp_die();
|
2226 |
+
} else {
|
2227 |
+
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
2228 |
+
wp_die();
|
2229 |
+
}
|
2230 |
+
}
|
2231 |
+
|
2232 |
}
|
includes/B2S/Api/Network/Pinterest.php
CHANGED
@@ -74,8 +74,8 @@ class B2S_Api_Network_Pinterest {
|
|
74 |
$cookie = $result['cookies'];
|
75 |
$content = $result['body'];
|
76 |
$csrfToken = '';
|
77 |
-
$appVersion = trim($this->cutFromTo($content, '"app_version":
|
78 |
-
|
79 |
$loginData = array(
|
80 |
"options" => array(
|
81 |
"username_or_email" => $username,
|
74 |
$cookie = $result['cookies'];
|
75 |
$content = $result['body'];
|
76 |
$csrfToken = '';
|
77 |
+
$appVersion = trim($this->cutFromTo($content, '"app_version":"', '"'));
|
78 |
+
|
79 |
$loginData = array(
|
80 |
"options" => array(
|
81 |
"username_or_email" => $username,
|
includes/B2S/AutoPost.php
CHANGED
@@ -45,7 +45,7 @@ class B2S_AutoPost {
|
|
45 |
$dataString = $wpdb->get_var($sqlGetData);
|
46 |
if ($dataString !== NULL && !empty($dataString)) {
|
47 |
$networkAuthData = unserialize($dataString);
|
48 |
-
if($networkAuthData != false && is_array($networkAuthData) && isset($networkAuthData['url_parameter'][0]['querys']) && !empty($networkAuthData['url_parameter'][0]['querys'])) {
|
49 |
$this->url = B2S_Util::addUrlParameter($this->url, $networkAuthData['url_parameter'][0]['querys']);
|
50 |
}
|
51 |
}
|
@@ -131,6 +131,7 @@ class B2S_AutoPost {
|
|
131 |
if ($this->allowHashTag) {
|
132 |
$postData['content'] .= $this->getHashTagsString();
|
133 |
}
|
|
|
134 |
} else {
|
135 |
return false;
|
136 |
}
|
45 |
$dataString = $wpdb->get_var($sqlGetData);
|
46 |
if ($dataString !== NULL && !empty($dataString)) {
|
47 |
$networkAuthData = unserialize($dataString);
|
48 |
+
if(!empty($this->url) && $networkAuthData != false && is_array($networkAuthData) && isset($networkAuthData['url_parameter'][0]['querys']) && !empty($networkAuthData['url_parameter'][0]['querys'])) {
|
49 |
$this->url = B2S_Util::addUrlParameter($this->url, $networkAuthData['url_parameter'][0]['querys']);
|
50 |
}
|
51 |
}
|
131 |
if ($this->allowHashTag) {
|
132 |
$postData['content'] .= $this->getHashTagsString();
|
133 |
}
|
134 |
+
$postData['custom_title'] = strip_tags($this->title);
|
135 |
} else {
|
136 |
return false;
|
137 |
}
|
includes/B2S/AutoPost/Item.php
ADDED
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class B2S_AutoPost_Item {
|
4 |
+
|
5 |
+
private $options;
|
6 |
+
private $postTypesData;
|
7 |
+
private $networkAuthData = array();
|
8 |
+
private $networkAutoPostData;
|
9 |
+
private $networkAuthCount = false;
|
10 |
+
|
11 |
+
public function __construct() {
|
12 |
+
$this->getSettings();
|
13 |
+
$this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
14 |
+
$this->postTypesData = get_post_types(array('public' => true));
|
15 |
+
}
|
16 |
+
|
17 |
+
private function getSettings() {
|
18 |
+
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getSettings', 'portal_view_mode' => true, 'portal_auth_count' => true, 'token' => B2S_PLUGIN_TOKEN, 'version' => B2S_PLUGIN_VERSION)));
|
19 |
+
if (is_object($result) && isset($result->result) && (int) $result->result == 1 && isset($result->portale) && is_array($result->portale)) {
|
20 |
+
$this->networkAuthCount = isset($result->portal_auth_count) ? $result->portal_auth_count : false;
|
21 |
+
$this->networkAuthData = isset($result->portal_auth) ? $result->portal_auth : array();
|
22 |
+
$this->networkAutoPostData = isset($result->portal_auto_post) ? $result->portal_auto_post : array();
|
23 |
+
}
|
24 |
+
}
|
25 |
+
|
26 |
+
public function getAutoPostingSettingsHtml() {
|
27 |
+
|
28 |
+
$optionAutoPost = $this->options->_getOption('auto_post');
|
29 |
+
$optionAutoPostImport = $this->options->_getOption('auto_post_import');
|
30 |
+
|
31 |
+
$isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? ' <span class="label label-success label-sm">' . esc_html__("SMART", "blog2social") . '</span>' : '';
|
32 |
+
$versionType = unserialize(B2S_PLUGIN_VERSION_TYPE);
|
33 |
+
$limit = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
|
34 |
+
$autoPostActive = (isset($optionAutoPost['active'])) ? (((int) $optionAutoPost['active'] > 0) ? true : false) : (((isset($optionAutoPost['publish']) && !empty($optionAutoPost['publish'])) || (isset($optionAutoPost['update']) && !empty($optionAutoPost['update']))) ? true : false);
|
35 |
+
$autoPostImportActive = (isset($optionAutoPostImport['active']) && (int) $optionAutoPostImport['active'] == 1) ? true : false;
|
36 |
+
|
37 |
+
$content = '';
|
38 |
+
$content .='<div class="panel panel-group b2s-auto-post-own-general-warning"><div class="panel-body">';
|
39 |
+
$content .='<span class="glyphicon glyphicon-exclamation-sign glyphicon-warning"></span> ' . esc_html__('Auto-posts for Facebook Profiles will be shown in the "Instant Sharing" tab on your "Posts & Sharing" navigation bar and can be shared on your Facebook Profile by clicking on the "Share" button next to your auto-post.', 'blog2social');
|
40 |
+
$content .='</div>';
|
41 |
+
$content .='</div>';
|
42 |
+
$content .='<h4 class="b2s-auto-post-header">' . esc_html__('Autoposter', 'blog2social') . '</h4><a target="_blank" href="'.B2S_Tools::getSupportLink('auto_post_manuell').'">Info</a>';
|
43 |
+
$content .='<p class="b2s-bold">' . esc_html__('Set up your autoposter to automatically share your new or updated posts, pages and custom post types on your social media channels.', 'blog2social') . '</p>';
|
44 |
+
$content .='<form id = "b2s-user-network-settings-auto-post-own" method = "post">';
|
45 |
+
$content .='<div class="' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
46 |
+
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="ON" data-off="OFF" ' . (($autoPostActive) ? 'checked' : '') . ' name="b2s-manuell-auto-post" class="b2s-auto-post-area-toggle" data-area-type="manuell" value="1" type="checkbox">';
|
47 |
+
$content .='</div>';
|
48 |
+
$content .='<div class="b2s-auto-post-area" data-area-type="manuell"'.(($autoPostActive) ? '' : ' style="display:none;"').'>';
|
49 |
+
$content .='<br>';
|
50 |
+
$content .='<div class="' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
51 |
+
$content .='<div class="alert alert-danger b2s-auto-post-error" data-error-reason="no-auth-in-mandant" style="display:none;">' . esc_html__('There are no social network accounts assigned to your selected network collection. Please assign at least one social network account or select another network collection.', 'blog2social') . '<a href="' . esc_url(((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/') . 'wp-admin/admin.php?page=blog2social-network') . '" target="_bank">' . esc_html__('Network settings', 'blog2social') . '</a></div>';
|
52 |
+
$content .='<p class="b2s-bold">' . esc_html__('Select your preferred network collection for autoposting. This collection defines the social media accounts on which the autoposter will share your social media posts automatically.', 'blog2social') . '</p>';
|
53 |
+
$content .= $this->getMandantSelect((isset($optionAutoPost['profile']) ? $optionAutoPost['profile'] : 0), (isset($optionAutoPost['twitter']) ? $optionAutoPost['twitter'] : 0));
|
54 |
+
$content .='</div>';
|
55 |
+
$content .='<br>';
|
56 |
+
$content .='<div class="alert alert-danger b2s-auto-post-error" data-error-reason="no-post-type" style="display:none;">'.esc_html__('Please select a post type', 'blog2social').'</div>';
|
57 |
+
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
58 |
+
$content .='<div class="col-xs-12 col-md-2">';
|
59 |
+
$content .='<label class="b2s-auto-post-publish-label">' . esc_html__('new posts', 'blog2social') . '</label>';
|
60 |
+
$content .='<br><small><button class="btn btn-link btn-xs hidden-xs b2s-post-type-select-btn" data-post-type="publish" data-select-toogle-state="0" data-select-toogle-name="' . esc_attr__('Unselect all', 'blog2social') . '">' . esc_html__('Select all', 'blog2social') . '</button></small>';
|
61 |
+
$content .='</div>';
|
62 |
+
$content .='<div class="col-xs-12 col-md-6">';
|
63 |
+
$content .= $this->getPostTypesHtml($optionAutoPost);
|
64 |
+
$content .='</div>';
|
65 |
+
$content .='</div>';
|
66 |
+
$content .='<br>';
|
67 |
+
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
68 |
+
$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>';
|
69 |
+
$content .='<div class"clearfix"></div>';
|
70 |
+
$content .='<div class="col-xs-12 col-md-2">';
|
71 |
+
$content .='<label class="b2s-auto-post-update-label">' . esc_html__('updating existing posts', 'blog2social') . '</label>';
|
72 |
+
$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>';
|
73 |
+
$content .='</div>';
|
74 |
+
$content .='<div class="col-xs-12 col-md-6">';
|
75 |
+
$content .= $this->getPostTypesHtml($optionAutoPost, 'update');
|
76 |
+
$content .='</div>';
|
77 |
+
$content .='</div>';
|
78 |
+
$content .='<br>';
|
79 |
+
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
80 |
+
$content .='<div class="col-md-12">';
|
81 |
+
$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>';
|
82 |
+
$content .='</div>';
|
83 |
+
$content .='</div>';
|
84 |
+
$content .='</div>';
|
85 |
+
$content .='<br>';
|
86 |
+
$content .='<hr>';
|
87 |
+
$content .='<h4 class="b2s-auto-post-header">' . esc_html__('Autoposter for Imported Posts', 'blog2social') . '</h4><a target="_blank" href="'.B2S_Tools::getSupportLink('auto_post_import').'">Info</a>';
|
88 |
+
$content .='<p class="b2s-bold">' . esc_html__('Set up your autoposter to automatically share your imported posts, pages and custom post types on your social media channels.', 'blog2social') . '</p>';
|
89 |
+
$content .='<p>' . esc_html__('Your current license:', 'blog2social') . '<span class="b2s-key-name"> ' . $versionType[B2S_PLUGIN_USER_VERSION] . '</span> ';
|
90 |
+
if (B2S_PLUGIN_USER_VERSION == 0) {
|
91 |
+
$content .='<br>' . esc_html__('Immediate Cross-Posting across all networks: Share an unlimited number of posts', 'blog2social') . '<br>';
|
92 |
+
$content .=esc_html__('Scheduled Auto-Posting', 'blog2social') . ': <a class="b2s-info-btn" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '" target="_blank">' . esc_html__('Upgrade', 'blog2social') . '</a>';
|
93 |
+
} else {
|
94 |
+
$content .='(' . esc_html__('share up to', 'blog2social') . ' ' . esc_html($limit[B2S_PLUGIN_USER_VERSION]) . ((B2S_PLUGIN_USER_VERSION >= 2) ? ' ' . esc_html__('posts per day', 'blog2social') : '') . ') ';
|
95 |
+
$content .='<a class="b2s-info-btn" href="' . esc_html(B2S_Tools::getSupportLink('affiliate')) . '" target="_blank">' . esc_html__('Upgrade', 'blog2social') . '</a>';
|
96 |
+
}
|
97 |
+
$content .='</p>';
|
98 |
+
$content .='<br>';
|
99 |
+
$content .='<div class="' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
100 |
+
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="ON" data-off="OFF" ' . (($autoPostImportActive) ? 'checked' : '') . ' name="b2s-import-auto-post" class="b2s-auto-post-area-toggle" data-area-type="import" value="1" type="checkbox">';
|
101 |
+
$content .='<div class="b2s-auto-post-area" data-area-type="import"'.(($autoPostImportActive) ? '' : ' style="display:none;"').'>';
|
102 |
+
$content .='<br><br>';
|
103 |
+
$content .='<div class="alert alert-danger b2s-auto-post-error" data-error-reason="import-no-auth" style="display:none;">'.esc_html__('Please select a social media network', 'blog2social').'</div>';
|
104 |
+
$content .='<p class="b2s-bold">' . esc_html__('Available networks to select your auto-post connecitons:', 'blog2social') . '</p>';
|
105 |
+
$content .='<div class="b2s-network-tos-auto-post-import-warning"><div class="alert alert-danger">' . esc_html__('In accordance with the new Twitter TOS, one Twitter account can be selected as your primary Twitter account for auto-posting.', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('network_tos_faq_032018')) . '" target="_blank">' . esc_html__('More information', 'blog2social') . '</a></div></div>';
|
106 |
+
$content .= $this->getNetworkAutoPostData($optionAutoPostImport);
|
107 |
+
$content .='<p class="b2s-bold">' . esc_html__('Select to auto-post immediately after publishing or with a delay', 'blog2social') . '</p>';
|
108 |
+
$content .='<input id="b2s-import-auto-post-time-now" name="b2s-import-auto-post-time-state" ' . (((isset($optionAutoPostImport['ship_state']) && (int) $optionAutoPostImport['ship_state'] == 0) || !isset($optionAutoPostImport['ship_state'])) ? 'checked' : '') . ' value="0" type="radio"><label for="b2s-import-auto-post-time-now">' . esc_html__('immediately', 'blog2social') . '</label><br>';
|
109 |
+
$content .='<input id="b2s-import-auto-post-time-delay" name="b2s-import-auto-post-time-state" value="1" ' . ((isset($optionAutoPostImport['ship_state']) && (int) $optionAutoPostImport['ship_state'] == 1) ? 'checked' : '') . ' type="radio"><label for="b2s-import-auto-post-time-delay">' . esc_html__('publish with a delay of', 'blog2social');
|
110 |
+
$content .=' <input type="number" maxlength="2" max="10" min="1" class="b2s-input-text-size-45" name="b2s-import-auto-post-time-data" value="' . esc_attr((isset($optionAutoPostImport['ship_delay_time']) ? $optionAutoPostImport['ship_delay_time'] : 1)) . '" placeholder="1" > (1-10) ' . esc_html__('minutes', 'blog2social') . '</label>';
|
111 |
+
$content .='<br>';
|
112 |
+
$content .= $this->getChosenPostTypesData($optionAutoPostImport);
|
113 |
+
$content .='</div>';
|
114 |
+
$content .= '<input type="hidden" name="action" value="b2s_auto_post_settings">';
|
115 |
+
$content .='</div>';
|
116 |
+
$content .='</form>';
|
117 |
+
if (B2S_PLUGIN_USER_VERSION > 0) {
|
118 |
+
$content .= '<button class="pull-right btn btn-primary btn-sm" id="b2s-auto-post-settings-btn" type="submit">';
|
119 |
+
} else {
|
120 |
+
$content .= '<button class="pull-right btn btn-primary btn-sm b2s-btn-disabled b2s-save-settings-pro-info b2sInfoAutoPosterMModalBtn">';
|
121 |
+
}
|
122 |
+
$content .= esc_html__('Save', 'blog2social') . '</button>';
|
123 |
+
|
124 |
+
return $content;
|
125 |
+
}
|
126 |
+
|
127 |
+
private function getMandantSelect($mandantId = 0, $twitterId = 0) {
|
128 |
+
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getProfileUserAuth', 'token' => B2S_PLUGIN_TOKEN)));
|
129 |
+
if (isset($result->result) && (int) $result->result == 1 && isset($result->data) && !empty($result->data) && isset($result->data->mandant) && isset($result->data->auth) && !empty($result->data->mandant) && !empty($result->data->auth)) {
|
130 |
+
$mandant = $result->data->mandant;
|
131 |
+
$auth = $result->data->auth;
|
132 |
+
$authContent = '';
|
133 |
+
$content = '<div class="row"><div class="col-md-3 b2s-auto-post-profile"><label for="b2s-auto-post-profil-dropdown">' . esc_html__('Select network collection:', 'blog2social') . '</label>
|
134 |
+
<select class="b2s-w-100" id="b2s-auto-post-profil-dropdown" name="b2s-auto-post-profil-dropdown">';
|
135 |
+
foreach ($mandant as $k => $m) {
|
136 |
+
$content .= '<option value="' . esc_attr($m->id) . '" '.(((int) $m->id == (int) $mandantId) ? 'selected' : '').'>' . esc_html((($m->id == 0) ? __($m->name, 'blog2social') : $m->name)) . '</option>';
|
137 |
+
$profilData = (isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0])) ? json_encode($auth->{$m->id}) : '';
|
138 |
+
$authContent .= "<input type='hidden' id='b2s-auto-post-profil-data-" . esc_attr($m->id) . "' value='" . base64_encode($profilData) . "'/>";
|
139 |
+
}
|
140 |
+
$content .= '</select><div class="pull-right"><a href="' . esc_url(get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/') . 'wp-admin/admin.php?page=blog2social-network') . '" target="_blank">' . esc_html__('Network settings', 'blog2social') . '</a></div></div>';
|
141 |
+
$content .= $authContent;
|
142 |
+
|
143 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
144 |
+
$content .='<div class="col-md-3 b2s-auto-post-twitter-profile"><label for="b2s-auto-post-profil-dropdown-twitter">' . esc_html__('Select Twitter profile:', 'blog2social') . '</label> <select class="b2s-w-100" id="b2s-auto-post-profil-dropdown-twitter" name="b2s-auto-post-profil-dropdown-twitter">';
|
145 |
+
foreach ($mandant as $k => $m) {
|
146 |
+
if ((isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0]))) {
|
147 |
+
foreach ($auth->{$m->id} as $key => $value) {
|
148 |
+
if ($value->networkId == 2) {
|
149 |
+
$content .= '<option data-mandant-id="' . esc_attr($m->id) . '" value="' . esc_attr($value->networkAuthId) . '" '.(((int) $value->networkAuthId == (int) $twitterId) ? 'selected' : '').'>' . esc_html($value->networkUserName) . '</option>';
|
150 |
+
}
|
151 |
+
}
|
152 |
+
}
|
153 |
+
}
|
154 |
+
$content .= '</select><div class="pull-right"><a href="#" class="b2sTwitterInfoModalBtn">'.esc_html__('Info', 'blog2social').'</a></div></div></div>';
|
155 |
+
return $content;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
|
159 |
+
private function getPostTypesHtml($selected = array(), $type = 'publish') {
|
160 |
+
$content = '';
|
161 |
+
$selected = (is_array($selected) && isset($selected[$type])) ? $selected[$type] : array();
|
162 |
+
if (is_array($this->postTypesData) && !empty($this->postTypesData)) {
|
163 |
+
foreach ($this->postTypesData as $k => $v) {
|
164 |
+
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
165 |
+
$selItem = (in_array($v, $selected)) ? 'checked' : '';
|
166 |
+
$content .= ' <div class="b2s-post-type-list"><input id="b2s-post-type-item-' . esc_attr($type) . '-' . esc_attr($v) . '" class="b2s-post-type-item-' . $type . '" value="' . esc_attr($v) . '" name="b2s-settings-auto-post-' . $type . '[]" type="checkbox" ' . $selItem . '><label for="b2s-post-type-item-' . $type . '-' . $v . '"> ' . esc_html($v) . '</label></div>';
|
167 |
+
}
|
168 |
+
}
|
169 |
+
}
|
170 |
+
return $content;
|
171 |
+
}
|
172 |
+
|
173 |
+
private function getNetworkAutoPostData($data = array()) {
|
174 |
+
$html = '';
|
175 |
+
if (!empty($this->networkAutoPostData)) {
|
176 |
+
$selected = (is_array($data['network_auth_id']) && isset($data['network_auth_id'])) ? $data['network_auth_id'] : array();
|
177 |
+
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
178 |
+
$html .= '<ul class="list-group b2s-network-details-container-list">';
|
179 |
+
foreach ($this->networkAutoPostData as $k => $v) {
|
180 |
+
if ($v == 18 && B2S_PLUGIN_USER_VERSION <= 1) {
|
181 |
+
continue;
|
182 |
+
}
|
183 |
+
$maxNetworkAccount = ($this->networkAuthCount !== false && is_array($this->networkAuthCount)) ? ((isset($this->networkAuthCount[$v])) ? $this->networkAuthCount[$v] : $this->networkAuthCount[0]) : false;
|
184 |
+
$html .='<li class="list-group-item">';
|
185 |
+
$html .='<div class="media">';
|
186 |
+
$html .='<img class="pull-left hidden-xs b2s-img-network" alt="' . esc_attr($networkName[$v]) . '" src="' . plugins_url('/assets/images/portale/' . $v . '_flat.png', B2S_PLUGIN_FILE) . '">';
|
187 |
+
$html .='<div class="media-body network">';
|
188 |
+
$html .='<h4>' . esc_html(ucfirst($networkName[$v]));
|
189 |
+
if ($maxNetworkAccount !== false) {
|
190 |
+
$html .=' <span class="b2s-network-auth-count">(' . esc_html__("Connections", "blog2social") . ' <span class="b2s-network-auth-count-current" data-network-count-trigger="true" data-network-id="' . esc_attr($v) . '"></span>/' . esc_html($maxNetworkAccount) . ')</span>';
|
191 |
+
}
|
192 |
+
$html .=' <a href="admin.php?page=blog2social-network" class="b2s-info-btn">' . esc_html__('add/change connection', 'blog2social') . '</a>';
|
193 |
+
$html .='</h4>';
|
194 |
+
$html .= '<ul class="b2s-network-item-auth-list" data-network-id="' . esc_attr($v) . '" data-network-count="true" >';
|
195 |
+
if (!empty($this->networkAuthData)) {
|
196 |
+
foreach ($this->networkAuthData as $i => $t) {
|
197 |
+
if ($v == $t->networkId) {
|
198 |
+
$html .= '<li class="b2s-network-item-auth-list-li" data-network-auth-id="' . esc_attr($t->networkAuthId) . '" data-network-id="' . esc_attr($t->networkId) . '" data-network-type="0">';
|
199 |
+
$networkType = ((int) $t->networkType == 0 ) ? __('Profile', 'blog2social') : __('Page', 'blog2social');
|
200 |
+
if ($t->notAllow !== false) {
|
201 |
+
$html .='<span class="glyphicon glyphicon-remove-circle glyphicon-danger"></span> <span class="not-allow">' . esc_html($networkType) . ': ' . esc_html(stripslashes($t->networkUserName)) . '</span> ';
|
202 |
+
} else {
|
203 |
+
$selItem = (in_array($t->networkAuthId, $selected)) ? 'checked' : '';
|
204 |
+
$html .= '<input id="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '" class="b2s-network-tos-check" data-network-id="' . esc_attr($t->networkId) . '" ' . $selItem . ' value="' . esc_attr($t->networkAuthId) . '" name="b2s-import-auto-post-network-auth-id[]" type="checkbox"> <label for="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '">' . esc_html($networkType) . ': ' . esc_html(stripslashes($t->networkUserName)) . '</label>';
|
205 |
+
}
|
206 |
+
$html .= '</li>';
|
207 |
+
}
|
208 |
+
}
|
209 |
+
}
|
210 |
+
|
211 |
+
$html .= '</ul>';
|
212 |
+
$html .='</div>';
|
213 |
+
$html .='</div>';
|
214 |
+
$html .='</li>';
|
215 |
+
}
|
216 |
+
|
217 |
+
$html .= '</ul>';
|
218 |
+
}
|
219 |
+
|
220 |
+
|
221 |
+
return $html;
|
222 |
+
}
|
223 |
+
|
224 |
+
private function getChosenPostTypesData($data = array()) {
|
225 |
+
|
226 |
+
$html = '';
|
227 |
+
if (is_array($this->postTypesData) && !empty($this->postTypesData)) {
|
228 |
+
$html .='<br>';
|
229 |
+
$html .='<p><b><input value="1" ' . ((isset($data['post_filter']) && (int) $data['post_filter'] == 1) ? 'checked' : '') . ' name="b2s-import-auto-post-filter" type="checkbox"> ' . esc_html__('Filter Posts (Only posts that meet the following criteria will be autoposted)', 'blog2social') . '</b></p>';
|
230 |
+
$html .='<p>' . esc_html__('Post Types', 'blog2social');
|
231 |
+
$html .=' <input id="b2s-import-auto-post-type-state-include" name="b2s-import-auto-post-type-state" value="0" ' . (((isset($data['post_type_state']) && (int) $data['post_type_state'] == 0) || !isset($data['post_type_state'])) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
232 |
+
$html .='<input id="b2s-import-auto-post-type-state-exclude" name="b2s-import-auto-post-type-state" value="1" ' . ((isset($data['post_type_state']) && (int) $data['post_type_state'] == 1) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
233 |
+
$html .='</p>';
|
234 |
+
$html .='<select name="b2s-import-auto-post-type-data[]" data-placeholder="Select Post Types" class="b2s-import-auto-post-type" multiple>';
|
235 |
+
|
236 |
+
$selected = (is_array($data['post_type']) && isset($data['post_type'])) ? $data['post_type'] : array();
|
237 |
+
|
238 |
+
foreach ($this->postTypesData as $k => $v) {
|
239 |
+
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
240 |
+
$selItem = (in_array($v, $selected)) ? 'selected' : '';
|
241 |
+
$html .= '<option ' . $selItem . ' value="' . esc_attr($v) . '">' . esc_html($v) . '</option>';
|
242 |
+
}
|
243 |
+
}
|
244 |
+
|
245 |
+
$html .='</select>';
|
246 |
+
}
|
247 |
+
return $html;
|
248 |
+
}
|
249 |
+
|
250 |
+
}
|
251 |
+
|
includes/B2S/Calendar/Filter.php
CHANGED
@@ -76,6 +76,7 @@ class B2S_Calendar_Filter {
|
|
76 |
$sql = "SELECT {$wpdb->prefix}b2s_posts.sched_date, "
|
77 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
78 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
|
|
79 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
80 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
81 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
@@ -167,6 +168,7 @@ class B2S_Calendar_Filter {
|
|
167 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
168 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
169 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
|
|
170 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
171 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
172 |
. "{$wpdb->prefix}b2s_posts.relay_delay_min, "
|
@@ -207,6 +209,7 @@ class B2S_Calendar_Filter {
|
|
207 |
$sql = "SELECT {$wpdb->prefix}b2s_posts.sched_date, "
|
208 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
209 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
|
|
210 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
211 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
212 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
@@ -257,6 +260,7 @@ class B2S_Calendar_Filter {
|
|
257 |
$sql = "SELECT {$wpdb->prefix}b2s_posts.sched_date, "
|
258 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
259 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
|
|
260 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
261 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
262 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
76 |
$sql = "SELECT {$wpdb->prefix}b2s_posts.sched_date, "
|
77 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
78 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
79 |
+
. "{$wpdb->prefix}b2s_posts.sched_type as b2s_sched_type, "
|
80 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
81 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
82 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
168 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
169 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
170 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
171 |
+
. "{$wpdb->prefix}b2s_posts.sched_type as b2s_sched_type, "
|
172 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
173 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
174 |
. "{$wpdb->prefix}b2s_posts.relay_delay_min, "
|
209 |
$sql = "SELECT {$wpdb->prefix}b2s_posts.sched_date, "
|
210 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
211 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
212 |
+
. "{$wpdb->prefix}b2s_posts.sched_type as b2s_sched_type, "
|
213 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
214 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
215 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
260 |
$sql = "SELECT {$wpdb->prefix}b2s_posts.sched_date, "
|
261 |
. "{$wpdb->prefix}b2s_posts.blog_user_id, "
|
262 |
. "{$wpdb->prefix}b2s_posts.id as b2s_id, "
|
263 |
+
. "{$wpdb->prefix}b2s_posts.sched_type as b2s_sched_type, "
|
264 |
. "{$wpdb->prefix}b2s_posts.user_timezone, "
|
265 |
. "{$wpdb->prefix}b2s_posts.post_id, "
|
266 |
. "{$wpdb->prefix}b2s_posts.publish_link, "
|
includes/B2S/Calendar/Item.php
CHANGED
@@ -13,6 +13,7 @@ class B2S_Calendar_Item {
|
|
13 |
private $blog_user_id = null;
|
14 |
private $network_display_name = null;
|
15 |
private $b2s_id = null;
|
|
|
16 |
private $user_timezone = null;
|
17 |
private $ship_item = null;
|
18 |
private $network_type = null;
|
@@ -44,6 +45,7 @@ class B2S_Calendar_Item {
|
|
44 |
->setNetworkType($data->network_type)
|
45 |
->setNetworkAuthId($data->network_auth_id)
|
46 |
->setB2SId($data->b2s_id)
|
|
|
47 |
->setSchedDetailsId($data->sched_details_id)
|
48 |
->setImageUrl($data->image_url)
|
49 |
->setRelayPrimaryPostId($data->relay_primary_post_id)
|
@@ -51,7 +53,7 @@ class B2S_Calendar_Item {
|
|
51 |
->setPostForApprove($data->post_for_approve)
|
52 |
->setPublishLink($data->publish_link);
|
53 |
|
54 |
-
if ($data->network_id == 1 || $data->network_id == 2 || $data->network_id == 3 ||
|
55 |
$this->setPostFormat();
|
56 |
}
|
57 |
if ($data->network_id == 2 && isset($data->relay_primary_sched_date)) {
|
@@ -304,6 +306,25 @@ class B2S_Calendar_Item {
|
|
304 |
public function getB2SId() {
|
305 |
return $this->b2s_id;
|
306 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
|
308 |
/**
|
309 |
* @param string $value
|
@@ -522,6 +543,7 @@ class B2S_Calendar_Item {
|
|
522 |
"post_for_relay" => $this->getPostForRelay(),
|
523 |
"post_for_approve" => $this->getPostForApprove(),
|
524 |
"b2s_id" => $this->getB2SId(),
|
|
|
525 |
"post_id" => $this->getPostId(),
|
526 |
"user_timezone" => $this->getUserTimezone(),
|
527 |
"profile" => $this->getNetworkDisplayName(),
|
13 |
private $blog_user_id = null;
|
14 |
private $network_display_name = null;
|
15 |
private $b2s_id = null;
|
16 |
+
private $b2s_sched_type = null;
|
17 |
private $user_timezone = null;
|
18 |
private $ship_item = null;
|
19 |
private $network_type = null;
|
45 |
->setNetworkType($data->network_type)
|
46 |
->setNetworkAuthId($data->network_auth_id)
|
47 |
->setB2SId($data->b2s_id)
|
48 |
+
->setB2SSchedType($data->b2s_sched_type)
|
49 |
->setSchedDetailsId($data->sched_details_id)
|
50 |
->setImageUrl($data->image_url)
|
51 |
->setRelayPrimaryPostId($data->relay_primary_post_id)
|
53 |
->setPostForApprove($data->post_for_approve)
|
54 |
->setPublishLink($data->publish_link);
|
55 |
|
56 |
+
if ($data->network_id == 1 || $data->network_id == 2 || $data->network_id == 3 || $data->network_id == 12 || $data->network_id == 17 || $data->network_id == 19) {
|
57 |
$this->setPostFormat();
|
58 |
}
|
59 |
if ($data->network_id == 2 && isset($data->relay_primary_sched_date)) {
|
306 |
public function getB2SId() {
|
307 |
return $this->b2s_id;
|
308 |
}
|
309 |
+
|
310 |
+
/**
|
311 |
+
* @param integer $value
|
312 |
+
* @return $this
|
313 |
+
*/
|
314 |
+
public function setB2SSchedType($value) {
|
315 |
+
if (is_numeric($value)) {
|
316 |
+
$this->b2s_sched_type = $value;
|
317 |
+
}
|
318 |
+
|
319 |
+
return $this;
|
320 |
+
}
|
321 |
+
|
322 |
+
/**
|
323 |
+
* @return integer
|
324 |
+
*/
|
325 |
+
public function getB2SSchedType() {
|
326 |
+
return $this->b2s_sched_type;
|
327 |
+
}
|
328 |
|
329 |
/**
|
330 |
* @param string $value
|
543 |
"post_for_relay" => $this->getPostForRelay(),
|
544 |
"post_for_approve" => $this->getPostForApprove(),
|
545 |
"b2s_id" => $this->getB2SId(),
|
546 |
+
"b2s_sched_type" => $this->getB2SSchedType(),
|
547 |
"post_id" => $this->getPostId(),
|
548 |
"user_timezone" => $this->getUserTimezone(),
|
549 |
"profile" => $this->getNetworkDisplayName(),
|
includes/B2S/Network/Item.php
CHANGED
@@ -541,12 +541,6 @@ class B2S_Network_Item {
|
|
541 |
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
542 |
$options = new B2S_Options(get_current_user_id());
|
543 |
$post_template = $options->_getOption("post_template");
|
544 |
-
$linkNoCache = $options->_getOption("link_no_cache");
|
545 |
-
if($linkNoCache == false || !is_array($linkNoCache)) {
|
546 |
-
$fb_linkNoCache = (((int) $linkNoCache > 0) ? 1 : 0);
|
547 |
-
$linkNoCache = array(1 => $fb_linkNoCache, 3 => 1);
|
548 |
-
$options->_setOption("link_no_cache", $linkNoCache);
|
549 |
-
}
|
550 |
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$networkId];
|
551 |
if (B2S_PLUGIN_USER_VERSION >= 1 && $post_template != false && isset($post_template[$networkId]) && !empty($post_template[$networkId])) {
|
552 |
$schema = $post_template[$networkId];
|
@@ -588,7 +582,8 @@ class B2S_Network_Item {
|
|
588 |
}
|
589 |
$html .= '</ul>';
|
590 |
$html .= '</div>';
|
591 |
-
if ($networkId == 1 || $networkId == 3) {
|
|
|
592 |
$html .= '<div class="pull-right"><input id="link-no-cache" type="checkbox" ' . ((isset($linkNoCache[$networkId]) && $linkNoCache[$networkId] == 1) ? 'checked' : '') . ' name="no_cache"> <label for="link-no-cache">' . esc_html__('Activate Instant Caching', 'blog2social') . '</label> <a href="#" class="b2s-info-btn vertical-middle del-padding-left b2sInfoNoCacheBtn">' . esc_html__('Info', 'Blog2Social') . '</a></div>';
|
593 |
}
|
594 |
$html .= '<br>';
|
541 |
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
542 |
$options = new B2S_Options(get_current_user_id());
|
543 |
$post_template = $options->_getOption("post_template");
|
|
|
|
|
|
|
|
|
|
|
|
|
544 |
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$networkId];
|
545 |
if (B2S_PLUGIN_USER_VERSION >= 1 && $post_template != false && isset($post_template[$networkId]) && !empty($post_template[$networkId])) {
|
546 |
$schema = $post_template[$networkId];
|
582 |
}
|
583 |
$html .= '</ul>';
|
584 |
$html .= '</div>';
|
585 |
+
if ($networkId == 1 || $networkId == 3 || $networkId == 19) {
|
586 |
+
$linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
587 |
$html .= '<div class="pull-right"><input id="link-no-cache" type="checkbox" ' . ((isset($linkNoCache[$networkId]) && $linkNoCache[$networkId] == 1) ? 'checked' : '') . ' name="no_cache"> <label for="link-no-cache">' . esc_html__('Activate Instant Caching', 'blog2social') . '</label> <a href="#" class="b2s-info-btn vertical-middle del-padding-left b2sInfoNoCacheBtn">' . esc_html__('Info', 'Blog2Social') . '</a></div>';
|
588 |
}
|
589 |
$html .= '<br>';
|
includes/B2S/Post/Filter.php
CHANGED
@@ -13,6 +13,7 @@ class B2S_Post_Filter {
|
|
13 |
protected $searchPublishDate;
|
14 |
protected $searchSchedDate;
|
15 |
protected $postsPerPage;
|
|
|
16 |
protected $postAuthor;
|
17 |
|
18 |
function __construct($type, $title = "", $authorId = 0, $postStatus = "", $schedDate = "", $postCat = "", $postType = "", $postShareStatus="", $postsPerPage = 15, $sharedById = 0) { //type=all,publish,sched
|
@@ -66,7 +67,7 @@ class B2S_Post_Filter {
|
|
66 |
}
|
67 |
|
68 |
private function getPostShareStatusHtml() {
|
69 |
-
$typeData = array(array('key' => 'never', 'value' => __('not yet shared', 'blog2social')), array('key' => 'shared', 'value' => __('already shared', 'blog2social')), array('key' => 'scheduled', 'value' => __('currently scheduled', 'blog2social')));
|
70 |
$type = '<div class="form-group"><select id="b2sSortPostShareStatus" name="b2sSortPostShareStatus" class="form-control b2s-select"><option value="">' . esc_html__('all statuses', 'blog2social') . '</option>';
|
71 |
foreach ($typeData as $var) {
|
72 |
$var = (object) $var;
|
@@ -154,7 +155,7 @@ class B2S_Post_Filter {
|
|
154 |
private function getPostSharedByHtml() {
|
155 |
$autor = '<div class="form-group"><select id="b2sSortPostSharedBy" name="b2sSortPostSharedBy" class="form-control b2s-select"><option value="0">' . esc_html__('shared by user', 'blog2social') . '</option>';
|
156 |
foreach ($this->postAuthor as $var) {
|
157 |
-
$selected = ($var->ID == (int) $this->
|
158 |
$autorName = $var->display_name;
|
159 |
//Bug: Converting json + PHP Extension
|
160 |
if (function_exists('mb_strlen') && function_exists('mb_substr')) {
|
@@ -173,7 +174,9 @@ class B2S_Post_Filter {
|
|
173 |
</div>';
|
174 |
if (B2S_PLUGIN_ADMIN && $this->type != 'draft-post') {
|
175 |
$this->postFilter .= $this->getAutorHtml();
|
176 |
-
$this->
|
|
|
|
|
177 |
}
|
178 |
if($this->type != 'draft') {
|
179 |
$this->postFilter .= $this->getPostCatHtml();
|
13 |
protected $searchPublishDate;
|
14 |
protected $searchSchedDate;
|
15 |
protected $postsPerPage;
|
16 |
+
protected $searchPostSharedById;
|
17 |
protected $postAuthor;
|
18 |
|
19 |
function __construct($type, $title = "", $authorId = 0, $postStatus = "", $schedDate = "", $postCat = "", $postType = "", $postShareStatus="", $postsPerPage = 15, $sharedById = 0) { //type=all,publish,sched
|
67 |
}
|
68 |
|
69 |
private function getPostShareStatusHtml() {
|
70 |
+
$typeData = array(array('key' => 'never', 'value' => __('not yet shared', 'blog2social')), array('key' => 'shared', 'value' => __('already shared', 'blog2social')), array('key' => 'scheduled', 'value' => __('currently scheduled', 'blog2social')), array('key' => 'autopost', 'value' => __('autopost', 'blog2social')), array('key' => 'repost', 'value' => __('re-share', 'blog2social')));
|
71 |
$type = '<div class="form-group"><select id="b2sSortPostShareStatus" name="b2sSortPostShareStatus" class="form-control b2s-select"><option value="">' . esc_html__('all statuses', 'blog2social') . '</option>';
|
72 |
foreach ($typeData as $var) {
|
73 |
$var = (object) $var;
|
155 |
private function getPostSharedByHtml() {
|
156 |
$autor = '<div class="form-group"><select id="b2sSortPostSharedBy" name="b2sSortPostSharedBy" class="form-control b2s-select"><option value="0">' . esc_html__('shared by user', 'blog2social') . '</option>';
|
157 |
foreach ($this->postAuthor as $var) {
|
158 |
+
$selected = ($var->ID == (int) $this->searchPostSharedById) ? 'selected' : '';
|
159 |
$autorName = $var->display_name;
|
160 |
//Bug: Converting json + PHP Extension
|
161 |
if (function_exists('mb_strlen') && function_exists('mb_substr')) {
|
174 |
</div>';
|
175 |
if (B2S_PLUGIN_ADMIN && $this->type != 'draft-post') {
|
176 |
$this->postFilter .= $this->getAutorHtml();
|
177 |
+
if($this->type != 'draft') {
|
178 |
+
$this->postFilter .= $this->getPostSharedByHtml();
|
179 |
+
}
|
180 |
}
|
181 |
if($this->type != 'draft') {
|
182 |
$this->postFilter .= $this->getPostCatHtml();
|
includes/B2S/Post/Item.php
CHANGED
@@ -94,15 +94,23 @@ class B2S_Post_Item {
|
|
94 |
$leftJoinWhere .= ' AND b2s.post_id IS NOT NULL AND b2s.publish_date != "0000-00-00 00:00:00" AND b2s.publish_error_code = "" AND b2s.hide = 0';
|
95 |
} else if ($this->searchPostShareStatus == 'scheduled') {
|
96 |
$leftJoinWhere .= ' AND b2s.post_id IS NOT NULL AND b2s.sched_date != "0000-00-00 00:00:00" AND b2s.sched_date_utc > "' . gmdate("Y-m-d H:i:s") . '" AND b2s.post_for_relay=0 AND b2s.post_for_approve = 0 AND b2s.hide = 0';
|
|
|
|
|
|
|
|
|
97 |
} else {
|
98 |
//never
|
99 |
$leftJoinWhere .= " AND b2s.post_id IS NULL";
|
100 |
}
|
101 |
}
|
102 |
|
103 |
-
if ($this->searchPostSharedById > 0) {
|
104 |
-
$
|
105 |
-
|
|
|
|
|
|
|
|
|
106 |
}
|
107 |
|
108 |
$postTypes = " ";
|
@@ -141,7 +149,7 @@ class B2S_Post_Item {
|
|
141 |
AND $postTypes $leftJoinWhere
|
142 |
ORDER BY `" . $order . "` " . $sortType . "
|
143 |
LIMIT " . (($this->currentPage - 1) * $this->results_per_page) . "," . $this->results_per_page;
|
144 |
-
|
145 |
$this->postData = $wpdb->get_results($sqlPosts);
|
146 |
$sqlPostsTotal = "SELECT DISTINCT posts.`ID`
|
147 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2 $leftJoin3
|
@@ -194,7 +202,7 @@ class B2S_Post_Item {
|
|
194 |
$sqlPostsTotal = "SELECT COUNT(posts.`ID`)
|
195 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
196 |
INNER JOIN(
|
197 |
-
SELECT a.`post_id`
|
198 |
FROM `{$wpdb->prefix}b2s_posts` a
|
199 |
WHERE $addSearchShowByDate $where
|
200 |
) filter
|
@@ -207,7 +215,7 @@ class B2S_Post_Item {
|
|
207 |
$sqlPostsTotal = "SELECT posts.`ID`, DATE_FORMAT(filter.`sched_date`,'%Y-%m-%d') AS sched
|
208 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
209 |
INNER JOIN(
|
210 |
-
SELECT a.`post_id`, a.`sched_date`
|
211 |
FROM `{$wpdb->prefix}b2s_posts` a $addInnerJoinLeftJoin $addInnerJoinLeftJoinNetwork
|
212 |
WHERE $addInnnerJoinLeftJoinWhere $addInnnerJoinLeftJoinWhereNetwork $addSearchShowByDate $where
|
213 |
) filter
|
@@ -282,9 +290,10 @@ class B2S_Post_Item {
|
|
282 |
|
283 |
if ($this->type == 'favorites') {
|
284 |
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts_favorites'") == $wpdb->prefix . 'b2s_posts_favorites') {
|
285 |
-
$sqlPosts = "SELECT {$wpdb->prefix}b2s_posts_favorites.`ID` AS favorite_id, posts.`ID`, {$wpdb->prefix}b2s_posts_favorites.`post_id`, posts.post_author, posts.post_type, posts.post_title
|
286 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_favorites ON {$wpdb->prefix}b2s_posts_favorites.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
287 |
-
|
|
|
288 |
AND $postTypes
|
289 |
AND $addSearchType
|
290 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
@@ -292,13 +301,34 @@ class B2S_Post_Item {
|
|
292 |
LIMIT " . (($this->currentPage - 1) * $this->results_per_page) . "," . $this->results_per_page;
|
293 |
$this->postData = $wpdb->get_results($sqlPosts);
|
294 |
|
295 |
-
$sqlPostsTotal = "SELECT
|
296 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_favorites ON {$wpdb->prefix}b2s_posts_favorites.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
297 |
WHERE {$wpdb->prefix}b2s_posts_favorites.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
298 |
AND $postTypes
|
299 |
AND $addSearchType
|
300 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere";
|
301 |
-
$this->postTotal = $wpdb->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
}
|
303 |
}
|
304 |
}
|
@@ -312,6 +342,8 @@ class B2S_Post_Item {
|
|
312 |
$text = esc_html__('You have not saved any drafts.', 'blog2social');
|
313 |
} elseif ($this->type == 'favorites') {
|
314 |
$text = esc_html__('You have not saved any favorites.', 'blog2social');
|
|
|
|
|
315 |
} else {
|
316 |
$text = esc_html__('You have not published or scheduled any posts.', 'blog2social');
|
317 |
}
|
@@ -366,9 +398,9 @@ class B2S_Post_Item {
|
|
366 |
}
|
367 |
|
368 |
if ($this->type == 'publish' || $this->type == 'notice') {
|
369 |
-
$userInfo = get_user_meta($var->blog_user_id);
|
370 |
$countPublish = $this->getPostCount($var->ID);
|
371 |
$lastPublish = $this->getLastPost($var->ID);
|
|
|
372 |
$this->postItem .= '<li class="list-group-item">
|
373 |
<div class="media">
|
374 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
@@ -379,7 +411,7 @@ class B2S_Post_Item {
|
|
379 |
<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>
|
380 |
<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>
|
381 |
</span>
|
382 |
-
<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($
|
383 |
</div>
|
384 |
<div class="pull-left">
|
385 |
<div class="b2s-post-publish-area" data-post-id="' . esc_attr($var->ID) . '"></div>
|
@@ -390,9 +422,9 @@ class B2S_Post_Item {
|
|
390 |
}
|
391 |
|
392 |
if ($this->type == 'sched') {
|
393 |
-
$userInfo = get_user_meta($var->blog_user_id);
|
394 |
$schedPublish = $this->getPostCount($var->ID);
|
395 |
$nextSched = $this->getLastPost($var->ID);
|
|
|
396 |
|
397 |
$this->postItem .= '<li class="list-group-item">
|
398 |
<div class="media">
|
@@ -403,7 +435,7 @@ class B2S_Post_Item {
|
|
403 |
<span class="pull-right">
|
404 |
<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>
|
405 |
</span>
|
406 |
-
<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($
|
407 |
</div>
|
408 |
<div class="pull-left">
|
409 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
@@ -486,6 +518,8 @@ class B2S_Post_Item {
|
|
486 |
|
487 |
if ($this->type == 'favorites') {
|
488 |
$userInfo = get_user_meta($var->post_author);
|
|
|
|
|
489 |
|
490 |
$this->postItem .= '<li class="list-group-item b2s-favorite-list-entry" data-post-id="' . esc_attr($var->ID) . '">
|
491 |
<div class="media">
|
@@ -494,13 +528,42 @@ class B2S_Post_Item {
|
|
494 |
<div class="media-body">
|
495 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->post_id)) . '">' . esc_html($postTitle) . '</a></strong>
|
496 |
<span class="pull-right b2s-publish-btn">
|
497 |
-
<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . '
|
498 |
-
</span>
|
499 |
-
|
|
|
|
|
|
|
|
|
500 |
</div>
|
501 |
</div>
|
502 |
</li>';
|
503 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
}
|
505 |
|
506 |
return html_entity_decode($this->postItem, ENT_COMPAT, 'UTF-8');
|
@@ -518,6 +581,9 @@ class B2S_Post_Item {
|
|
518 |
if ($this->type == 'approve') {
|
519 |
$addSearchShowByDate = (!empty($this->searchShowByDate)) ? " (DATE_FORMAT(posts.publish_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' OR DATE_FORMAT(posts.sched_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "') AND " : '';
|
520 |
$where = ' posts.`post_for_approve` = 1 AND (posts.`publish_date` != "0000-00-00 00:00:00" OR posts.`sched_date_utc` <= "' . gmdate('Y-m-d H:i:s') . '")';
|
|
|
|
|
|
|
521 |
} else {
|
522 |
$addSearchShowByDate = (!empty($this->searchShowByDate)) ? (($this->type == 'publish' || $this->type == 'notice') ? " AND DATE_FORMAT(posts.publish_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' " : " AND DATE_FORMAT(posts.sched_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' ") : '';
|
523 |
$addWhere = ($this->type == 'notice') ? ' AND posts.`publish_error_code` != "" ' : ' AND posts.`publish_error_code` = "" ';
|
@@ -536,11 +602,22 @@ class B2S_Post_Item {
|
|
536 |
$order = ($this->type == 'publish' || $this->type == 'notice') ? " `publish_date` DESC" : " `sched_date` ASC ";
|
537 |
$addWhere = ($this->type == 'notice') ? ' AND `publish_error_code` != "" ' : ' AND `publish_error_code` = "" ';
|
538 |
$where = ($this->type == 'publish' || $this->type == 'notice') ? " `post_for_approve`= 0 AND (`sched_date`= '0000-00-00 00:00:00' OR (`sched_type` = 3 AND `publish_date` != '0000-00-00 00:00:00')) " . $addWhere : " (`sched_type` != 3 OR (`sched_type` = 3 AND `publish_date` = '0000-00-00 00:00:00')) AND ((`sched_date_utc` != '0000-00-00 00:00:00' AND `post_for_approve` = 0) OR (`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `post_for_approve` = 1)) AND `publish_date` = '0000-00-00 00:00:00'";
|
|
|
539 |
$fields = ($this->type == 'publish' || $this->type == 'notice') ? "publish_date" : "sched_date";
|
540 |
-
$sqlLast = "SELECT $fields FROM `{$wpdb->prefix}b2s_posts` WHERE $where $addNotAdmin AND `hide` = 0 AND `post_id` = " . $post_id . " ORDER BY $order LIMIT 1";
|
541 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
542 |
}
|
543 |
-
return date('Y-m-d H:i:s');
|
544 |
}
|
545 |
|
546 |
private function getLastPublish($post_id = 0) {
|
@@ -605,7 +682,7 @@ class B2S_Post_Item {
|
|
605 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
606 |
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`,`blog_user_id`, `sched_date`,`publish_date`,`publish_link`,`sched_type`,`publish_error_code`,`{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`, `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND `{$wpdb->prefix}b2s_posts`.`post_for_approve`= 0 AND (`{$wpdb->prefix}b2s_posts`.`sched_date` = '0000-00-00 00:00:00' OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00')) $addWhere $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
607 |
$result = $wpdb->get_results($sqlData);
|
608 |
-
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'));
|
609 |
if (!empty($result) && is_array($result)) {
|
610 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
611 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
@@ -738,23 +815,32 @@ class B2S_Post_Item {
|
|
738 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
739 |
$addSearchShowByNetwork = ((int) $showByNetwork > 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_id` = '" . $showByNetwork . "' " : '';
|
740 |
$addSearchUserAuthId = ($userAuthId != 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
|
|
|
|
|
|
|
|
|
|
|
741 |
|
742 |
-
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`, `{$wpdb->prefix}b2s_posts`.`post_id`,`blog_user_id`,`last_edit_blog_user_id`,`v2_id`, `sched_date`, `sched_date_utc`, `sched_type`, `relay_primary_post_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`,`{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND ((`{$wpdb->prefix}b2s_posts`.`sched_date_utc` != '0000-00-00 00:00:00' AND `{$wpdb->prefix}b2s_posts`.`post_for_approve` = 0) OR (`{$wpdb->prefix}b2s_posts`.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `{$wpdb->prefix}b2s_posts`.`post_for_approve` = 1)) AND (`{$wpdb->prefix}b2s_posts`.`sched_type` != 3 OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` = '0000-00-00 00:00:00')) AND `{$wpdb->prefix}b2s_posts`.`publish_date` = '0000-00-00 00:00:00' $addNotAdminPosts $addSearchShowByDate $addSearchShowByNetwork $addSearchUserAuthId AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`sched_date` ASC ", $post_id);
|
743 |
$result = $wpdb->get_results($sqlData);
|
744 |
-
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'));
|
745 |
if (!empty($result) && is_array($result)) {
|
746 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
747 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
748 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
749 |
-
|
|
|
|
|
750 |
$blogPostDate = strtotime(get_the_date('Y-m-d H:i:s', $post_id)) . '000';
|
751 |
foreach ($result as $var) {
|
752 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
753 |
$userInfo = get_user_meta($var->blog_user_id);
|
754 |
$content .= '<li class="list-group-item b2s-post-sched-area-li" data-post-id="' . esc_attr($var->id) . '">
|
755 |
<div class="media">';
|
756 |
-
|
757 |
-
|
|
|
|
|
758 |
$userInfoLastEdit = ((int) $var->last_edit_blog_user_id > 0 && (int) $var->last_edit_blog_user_id != (int) $var->blog_user_id) ? get_user_meta($var->last_edit_blog_user_id) : '';
|
759 |
$lastEdit = (!empty($userInfoLastEdit)) ? ' | ' . sprintf(esc_html__('last modified by %s', 'blog2social'), '<a href="' . get_author_posts_url($var->last_edit_blog_user_id) . '">' . esc_html((isset($userInfoLastEdit['nickname'][0]) ? $userInfoLastEdit['nickname'][0] : '-')) . '</a> | ') : '';
|
760 |
|
@@ -779,9 +865,11 @@ class B2S_Post_Item {
|
|
779 |
</div>
|
780 |
</li>';
|
781 |
}
|
782 |
-
$
|
783 |
-
|
784 |
-
|
|
|
|
|
785 |
$content .= '</ul></div></div>';
|
786 |
return $content;
|
787 |
}
|
94 |
$leftJoinWhere .= ' AND b2s.post_id IS NOT NULL AND b2s.publish_date != "0000-00-00 00:00:00" AND b2s.publish_error_code = "" AND b2s.hide = 0';
|
95 |
} else if ($this->searchPostShareStatus == 'scheduled') {
|
96 |
$leftJoinWhere .= ' AND b2s.post_id IS NOT NULL AND b2s.sched_date != "0000-00-00 00:00:00" AND b2s.sched_date_utc > "' . gmdate("Y-m-d H:i:s") . '" AND b2s.post_for_relay=0 AND b2s.post_for_approve = 0 AND b2s.hide = 0';
|
97 |
+
} else if ($this->searchPostShareStatus == 'autopost') {
|
98 |
+
$leftJoinWhere .= ' AND b2s.post_id IS NOT NULL AND b2s.sched_type = 3 AND b2s.post_for_relay=0 AND b2s.post_for_approve = 0 AND b2s.hide = 0';
|
99 |
+
} else if ($this->searchPostShareStatus == 'repost') {
|
100 |
+
$leftJoinWhere .= ' AND b2s.post_id IS NOT NULL AND b2s.sched_type = 5 AND b2s.post_for_relay=0 AND b2s.post_for_approve = 0 AND b2s.hide = 0';
|
101 |
} else {
|
102 |
//never
|
103 |
$leftJoinWhere .= " AND b2s.post_id IS NULL";
|
104 |
}
|
105 |
}
|
106 |
|
107 |
+
if ($this->searchPostSharedById > 0 && $this->type != 'draft' && $this->type != 'draft-post') {
|
108 |
+
if($this->type == 'all' || $this->type == 'favorites') {
|
109 |
+
$leftJoin3 = "LEFT JOIN `{$wpdb->prefix}b2s_posts` b2s on posts.ID = b2s.post_id";
|
110 |
+
$leftJoinWhere .= " AND b2s.blog_user_id = ".$this->searchPostSharedById;
|
111 |
+
} else {
|
112 |
+
$leftJoinWhere .= " AND filter.blog_user_id = ".$this->searchPostSharedById;
|
113 |
+
}
|
114 |
}
|
115 |
|
116 |
$postTypes = " ";
|
149 |
AND $postTypes $leftJoinWhere
|
150 |
ORDER BY `" . $order . "` " . $sortType . "
|
151 |
LIMIT " . (($this->currentPage - 1) * $this->results_per_page) . "," . $this->results_per_page;
|
152 |
+
|
153 |
$this->postData = $wpdb->get_results($sqlPosts);
|
154 |
$sqlPostsTotal = "SELECT DISTINCT posts.`ID`
|
155 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2 $leftJoin3
|
202 |
$sqlPostsTotal = "SELECT COUNT(posts.`ID`)
|
203 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
204 |
INNER JOIN(
|
205 |
+
SELECT a.`post_id`, a.`blog_user_id`
|
206 |
FROM `{$wpdb->prefix}b2s_posts` a
|
207 |
WHERE $addSearchShowByDate $where
|
208 |
) filter
|
215 |
$sqlPostsTotal = "SELECT posts.`ID`, DATE_FORMAT(filter.`sched_date`,'%Y-%m-%d') AS sched
|
216 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
217 |
INNER JOIN(
|
218 |
+
SELECT a.`post_id`, a.`sched_date`, a.`blog_user_id`
|
219 |
FROM `{$wpdb->prefix}b2s_posts` a $addInnerJoinLeftJoin $addInnerJoinLeftJoinNetwork
|
220 |
WHERE $addInnnerJoinLeftJoinWhere $addInnnerJoinLeftJoinWhereNetwork $addSearchShowByDate $where
|
221 |
) filter
|
290 |
|
291 |
if ($this->type == 'favorites') {
|
292 |
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts_favorites'") == $wpdb->prefix . 'b2s_posts_favorites') {
|
293 |
+
$sqlPosts = "SELECT DISTINCT {$wpdb->prefix}b2s_posts_favorites.`ID` AS favorite_id, posts.`ID`, {$wpdb->prefix}b2s_posts_favorites.`post_id`, posts.post_author, posts.post_type, posts.post_title, posts.post_date, posts.post_status, b2s_drafts.blog_user_id as draft_blog_user_id
|
294 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_favorites ON {$wpdb->prefix}b2s_posts_favorites.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
295 |
+
LEFT JOIN ( SELECT post_id, blog_user_id FROM {$wpdb->prefix}b2s_posts_drafts WHERE blog_user_id = " . B2S_PLUGIN_BLOG_USER_ID . " AND save_origin = 0 ) as b2s_drafts ON posts.ID = b2s_drafts.post_id
|
296 |
+
WHERE {$wpdb->prefix}b2s_posts_favorites.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
297 |
AND $postTypes
|
298 |
AND $addSearchType
|
299 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
301 |
LIMIT " . (($this->currentPage - 1) * $this->results_per_page) . "," . $this->results_per_page;
|
302 |
$this->postData = $wpdb->get_results($sqlPosts);
|
303 |
|
304 |
+
$sqlPostsTotal = "SELECT DISTINCT posts.`ID`
|
305 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_favorites ON {$wpdb->prefix}b2s_posts_favorites.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
306 |
WHERE {$wpdb->prefix}b2s_posts_favorites.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
307 |
AND $postTypes
|
308 |
AND $addSearchType
|
309 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere";
|
310 |
+
$this->postTotal = count($wpdb->get_results($sqlPostsTotal));
|
311 |
+
}
|
312 |
+
}
|
313 |
+
|
314 |
+
if($this->type == 'repost') {
|
315 |
+
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts'") == $wpdb->prefix . 'b2s_posts') {
|
316 |
+
$sqlPosts = "SELECT DISTINCT b2s_posts.blog_user_id, posts.`ID`, posts.post_author, posts.post_type, posts.post_title
|
317 |
+
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts AS b2s_posts ON b2s_posts.post_id = posts.ID
|
318 |
+
WHERE b2s_posts.`sched_type` = 5
|
319 |
+
AND b2s_posts.`hide` = '0'
|
320 |
+
AND b2s_posts.`publish_date` = '0000-00-00 00:00:00'
|
321 |
+
AND b2s_posts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
322 |
+
ORDER BY b2s_posts.`sched_date` ASC";
|
323 |
+
$this->postData = $wpdb->get_results($sqlPosts);
|
324 |
+
|
325 |
+
$sqlPostsTotal = "SELECT DISTINCT posts.`ID`
|
326 |
+
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts AS b2s_posts ON b2s_posts.post_id = posts.ID
|
327 |
+
WHERE b2s_posts.`sched_type` = 5
|
328 |
+
AND b2s_posts.`hide` = '0'
|
329 |
+
AND b2s_posts.`publish_date` = '0000-00-00 00:00:00'
|
330 |
+
AND b2s_posts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID;
|
331 |
+
$this->postTotal = count($wpdb->get_results($sqlPostsTotal));
|
332 |
}
|
333 |
}
|
334 |
}
|
342 |
$text = esc_html__('You have not saved any drafts.', 'blog2social');
|
343 |
} elseif ($this->type == 'favorites') {
|
344 |
$text = esc_html__('You have not saved any favorites.', 'blog2social');
|
345 |
+
} elseif ($this->type == 'repost') {
|
346 |
+
$text = esc_html__('You have no posts in your queue.', 'blog2social');
|
347 |
} else {
|
348 |
$text = esc_html__('You have not published or scheduled any posts.', 'blog2social');
|
349 |
}
|
398 |
}
|
399 |
|
400 |
if ($this->type == 'publish' || $this->type == 'notice') {
|
|
|
401 |
$countPublish = $this->getPostCount($var->ID);
|
402 |
$lastPublish = $this->getLastPost($var->ID);
|
403 |
+
$userInfo = get_user_meta($lastPublish['user']);
|
404 |
$this->postItem .= '<li class="list-group-item">
|
405 |
<div class="media">
|
406 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
411 |
<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>
|
412 |
<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>
|
413 |
</span>
|
414 |
+
<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((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($lastPublish['date'], substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
415 |
</div>
|
416 |
<div class="pull-left">
|
417 |
<div class="b2s-post-publish-area" data-post-id="' . esc_attr($var->ID) . '"></div>
|
422 |
}
|
423 |
|
424 |
if ($this->type == 'sched') {
|
|
|
425 |
$schedPublish = $this->getPostCount($var->ID);
|
426 |
$nextSched = $this->getLastPost($var->ID);
|
427 |
+
$userInfo = get_user_meta($nextSched['user']);
|
428 |
|
429 |
$this->postItem .= '<li class="list-group-item">
|
430 |
<div class="media">
|
435 |
<span class="pull-right">
|
436 |
<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>
|
437 |
</span>
|
438 |
+
<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((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($nextSched['date'], substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
439 |
</div>
|
440 |
<div class="pull-left">
|
441 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
518 |
|
519 |
if ($this->type == 'favorites') {
|
520 |
$userInfo = get_user_meta($var->post_author);
|
521 |
+
$lastPublish = $this->getLastPublish($var->ID);
|
522 |
+
$lastPublish = ($lastPublish != false) ? ' | ' . __('last shared on social media', 'blog2social') . ' ' . B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2)) : '';
|
523 |
|
524 |
$this->postItem .= '<li class="list-group-item b2s-favorite-list-entry" data-post-id="' . esc_attr($var->ID) . '">
|
525 |
<div class="media">
|
528 |
<div class="media-body">
|
529 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->post_id)) . '">' . esc_html($postTitle) . '</a></strong>
|
530 |
<span class="pull-right b2s-publish-btn">
|
531 |
+
<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . '">' . esc_html__('Share on Social Media', 'blog2social') . '</a>
|
532 |
+
</span>'.
|
533 |
+
((isset($var->draft_blog_user_id) && $var->draft_blog_user_id != NULL && $var->draft_blog_user_id == B2S_PLUGIN_BLOG_USER_ID) ?
|
534 |
+
'<span class="pull-right b2s-publish-btn">
|
535 |
+
<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>
|
536 |
+
</span>' : '')
|
537 |
+
. '<p class="info hidden-xs">#' . esc_html($var->ID . ' | ' . __('Author', 'blog2social')) . ' <a href="' . esc_url(get_author_posts_url($var->post_author)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</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>
|
538 |
</div>
|
539 |
</div>
|
540 |
</li>';
|
541 |
}
|
542 |
+
|
543 |
+
if ($this->type == 'repost') {
|
544 |
+
$schedPublish = $this->getPostCount($var->ID);
|
545 |
+
$nextSched = $this->getLastPost($var->ID);
|
546 |
+
$userInfo = get_user_meta($nextSched['user']);
|
547 |
+
|
548 |
+
$this->postItem .= '<li class="list-group-item" data-type="post">
|
549 |
+
<div class="media">
|
550 |
+
<input class="pull-left checkbox-item b2s-re-post-queue-checkbox" data-blog-post-id="' . esc_attr($var->ID) . '" name="selected-checkbox-item" value="' . esc_attr($var->ID) . '" type="checkbox">
|
551 |
+
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
552 |
+
<div class="media-body">
|
553 |
+
<div class="media-head">
|
554 |
+
<span class="pull-right">
|
555 |
+
<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>
|
556 |
+
</span>
|
557 |
+
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>' . $curated . '
|
558 |
+
<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((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($nextSched['date'], substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
559 |
+
</div>
|
560 |
+
<div class="pull-left">
|
561 |
+
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
562 |
+
</div>
|
563 |
+
</div>
|
564 |
+
</div>
|
565 |
+
</li>';
|
566 |
+
}
|
567 |
}
|
568 |
|
569 |
return html_entity_decode($this->postItem, ENT_COMPAT, 'UTF-8');
|
581 |
if ($this->type == 'approve') {
|
582 |
$addSearchShowByDate = (!empty($this->searchShowByDate)) ? " (DATE_FORMAT(posts.publish_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' OR DATE_FORMAT(posts.sched_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "') AND " : '';
|
583 |
$where = ' posts.`post_for_approve` = 1 AND (posts.`publish_date` != "0000-00-00 00:00:00" OR posts.`sched_date_utc` <= "' . gmdate('Y-m-d H:i:s') . '")';
|
584 |
+
} else if ($this->type == 'repost') {
|
585 |
+
$addSearchShowByDate = '';
|
586 |
+
$where = ' posts.`publish_date` = "0000-00-00 00:00:00" AND posts.`sched_type` = 5 AND posts.`hide` = 0';
|
587 |
} else {
|
588 |
$addSearchShowByDate = (!empty($this->searchShowByDate)) ? (($this->type == 'publish' || $this->type == 'notice') ? " AND DATE_FORMAT(posts.publish_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' " : " AND DATE_FORMAT(posts.sched_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' ") : '';
|
589 |
$addWhere = ($this->type == 'notice') ? ' AND posts.`publish_error_code` != "" ' : ' AND posts.`publish_error_code` = "" ';
|
602 |
$order = ($this->type == 'publish' || $this->type == 'notice') ? " `publish_date` DESC" : " `sched_date` ASC ";
|
603 |
$addWhere = ($this->type == 'notice') ? ' AND `publish_error_code` != "" ' : ' AND `publish_error_code` = "" ';
|
604 |
$where = ($this->type == 'publish' || $this->type == 'notice') ? " `post_for_approve`= 0 AND (`sched_date`= '0000-00-00 00:00:00' OR (`sched_type` = 3 AND `publish_date` != '0000-00-00 00:00:00')) " . $addWhere : " (`sched_type` != 3 OR (`sched_type` = 3 AND `publish_date` = '0000-00-00 00:00:00')) AND ((`sched_date_utc` != '0000-00-00 00:00:00' AND `post_for_approve` = 0) OR (`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `post_for_approve` = 1)) AND `publish_date` = '0000-00-00 00:00:00'";
|
605 |
+
$where .= ($this->type == 'repost') ? ' AND `sched_type` = 5 ' : '';
|
606 |
$fields = ($this->type == 'publish' || $this->type == 'notice') ? "publish_date" : "sched_date";
|
607 |
+
$sqlLast = "SELECT $fields, blog_user_id FROM `{$wpdb->prefix}b2s_posts` WHERE $where $addNotAdmin AND `hide` = 0 AND `post_id` = " . $post_id . " ORDER BY $order LIMIT 1";
|
608 |
+
$result = $wpdb->get_results($sqlLast);
|
609 |
+
if (!empty($result)) {
|
610 |
+
$date = date('Y-m-d H:i:s');
|
611 |
+
if(($this->type == 'publish' || $this->type == 'notice') && isset($result[0]->publish_date)) {
|
612 |
+
$date = $result[0]->publish_date;
|
613 |
+
} elseif(isset($result[0]->sched_date)) {
|
614 |
+
$date = $result[0]->sched_date;
|
615 |
+
}
|
616 |
+
$user = (isset($result[0]->blog_user_id) && (int) $result[0]->blog_user_id > 0) ? (int) $result[0]->blog_user_id : 0;
|
617 |
+
return array('date' => $date, 'user' => $user);
|
618 |
+
}
|
619 |
}
|
620 |
+
return array('date' => date('Y-m-d H:i:s'), 'user' => 0);
|
621 |
}
|
622 |
|
623 |
private function getLastPublish($post_id = 0) {
|
682 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
683 |
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`,`blog_user_id`, `sched_date`,`publish_date`,`publish_link`,`sched_type`,`publish_error_code`,`{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`, `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND `{$wpdb->prefix}b2s_posts`.`post_for_approve`= 0 AND (`{$wpdb->prefix}b2s_posts`.`sched_date` = '0000-00-00 00:00:00' OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00')) $addWhere $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
684 |
$result = $wpdb->get_results($sqlData);
|
685 |
+
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'), 5 => esc_html__('Re-Share', 'blog2social'));
|
686 |
if (!empty($result) && is_array($result)) {
|
687 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
688 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
815 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
816 |
$addSearchShowByNetwork = ((int) $showByNetwork > 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_id` = '" . $showByNetwork . "' " : '';
|
817 |
$addSearchUserAuthId = ($userAuthId != 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
|
818 |
+
|
819 |
+
$addSearchRepost = '';
|
820 |
+
if($this->type == 'repost') {
|
821 |
+
$addSearchRepost = ' AND `' . $wpdb->prefix . 'b2s_posts`.`sched_type` = 5 ';
|
822 |
+
}
|
823 |
|
824 |
+
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`, `{$wpdb->prefix}b2s_posts`.`post_id`,`blog_user_id`,`last_edit_blog_user_id`,`v2_id`, `sched_date`, `sched_date_utc`, `sched_type`, `relay_primary_post_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`,`{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND ((`{$wpdb->prefix}b2s_posts`.`sched_date_utc` != '0000-00-00 00:00:00' AND `{$wpdb->prefix}b2s_posts`.`post_for_approve` = 0) OR (`{$wpdb->prefix}b2s_posts`.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `{$wpdb->prefix}b2s_posts`.`post_for_approve` = 1)) AND (`{$wpdb->prefix}b2s_posts`.`sched_type` != 3 OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` = '0000-00-00 00:00:00')) AND `{$wpdb->prefix}b2s_posts`.`publish_date` = '0000-00-00 00:00:00' $addNotAdminPosts $addSearchShowByDate $addSearchShowByNetwork $addSearchUserAuthId $addSearchRepost AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`sched_date` ASC ", $post_id);
|
825 |
$result = $wpdb->get_results($sqlData);
|
826 |
+
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'), 5 => esc_html__('Re-Share', 'blog2social'));
|
827 |
if (!empty($result) && is_array($result)) {
|
828 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
829 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
830 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
831 |
+
if($this->type != 'repost') {
|
832 |
+
$content .= '<li class="list-group-item"><label class="checkbox-inline checkbox-all-label"><input class="checkbox-all" data-blog-post-id="' . esc_attr($post_id) . '" name="selected-checkbox-all" value="" type="checkbox"> ' . esc_html__('select all', 'blog2social') . '</label></li>';
|
833 |
+
}
|
834 |
$blogPostDate = strtotime(get_the_date('Y-m-d H:i:s', $post_id)) . '000';
|
835 |
foreach ($result as $var) {
|
836 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
837 |
$userInfo = get_user_meta($var->blog_user_id);
|
838 |
$content .= '<li class="list-group-item b2s-post-sched-area-li" data-post-id="' . esc_attr($var->id) . '">
|
839 |
<div class="media">';
|
840 |
+
if($this->type != 'repost') {
|
841 |
+
$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">';
|
842 |
+
}
|
843 |
+
|
844 |
$userInfoLastEdit = ((int) $var->last_edit_blog_user_id > 0 && (int) $var->last_edit_blog_user_id != (int) $var->blog_user_id) ? get_user_meta($var->last_edit_blog_user_id) : '';
|
845 |
$lastEdit = (!empty($userInfoLastEdit)) ? ' | ' . sprintf(esc_html__('last modified by %s', 'blog2social'), '<a href="' . get_author_posts_url($var->last_edit_blog_user_id) . '">' . esc_html((isset($userInfoLastEdit['nickname'][0]) ? $userInfoLastEdit['nickname'][0] : '-')) . '</a> | ') : '';
|
846 |
|
865 |
</div>
|
866 |
</li>';
|
867 |
}
|
868 |
+
if($this->type != 'repost') {
|
869 |
+
$content .= '<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
|
870 |
+
$content .= '<a class="checkbox-post-sched-all-btn" data-blog-post-id="' . esc_attr($post_id) . '" href="#"> ' . esc_html__('delete scheduling', 'blog2social');
|
871 |
+
$content .= '</a></label></li>';
|
872 |
+
}
|
873 |
$content .= '</ul></div></div>';
|
874 |
return $content;
|
875 |
}
|
includes/B2S/Post/Tools.php
CHANGED
@@ -66,6 +66,7 @@ class B2S_Post_Tools {
|
|
66 |
}
|
67 |
}
|
68 |
if (!empty($resultPostIds) && is_array($resultPostIds)) {
|
|
|
69 |
$resultPostIds = array_unique($resultPostIds);
|
70 |
return array('result' => true, 'postId' => $resultPostIds, 'postCount' => count($resultPostIds), 'blogPostId' => $blogPostId);
|
71 |
}
|
66 |
}
|
67 |
}
|
68 |
if (!empty($resultPostIds) && is_array($resultPostIds)) {
|
69 |
+
B2S_Heartbeat::getInstance()->deleteSchedPost();
|
70 |
$resultPostIds = array_unique($resultPostIds);
|
71 |
return array('result' => true, 'postId' => $resultPostIds, 'postCount' => count($resultPostIds), 'blogPostId' => $blogPostId);
|
72 |
}
|
includes/B2S/RePost/Item.php
ADDED
@@ -0,0 +1,251 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class B2S_RePost_Item {
|
4 |
+
|
5 |
+
private $options;
|
6 |
+
private $postTypesData;
|
7 |
+
private $postCategoriesData;
|
8 |
+
private $postAuthorData;
|
9 |
+
|
10 |
+
public function __construct() {
|
11 |
+
$this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
12 |
+
$this->postTypesData = get_post_types(array('public' => true));
|
13 |
+
$this->postCategoriesData = get_categories();
|
14 |
+
$this->postAuthorData = get_users();
|
15 |
+
}
|
16 |
+
|
17 |
+
public function getRePostOptionsHtml() {
|
18 |
+
|
19 |
+
$isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? false : true;
|
20 |
+
$limit = unserialize(B2S_PLUGIN_RE_POST_LIMIT);
|
21 |
+
|
22 |
+
$content = '';
|
23 |
+
$content .= '<h3 class="b2s-re-post-h3">' . esc_html__('Re-share your blog content automatically on your social media channels.', 'blog2social') . ((!$isPremium) ? ' <span class="label label-success">' . esc_html__('SMART', 'blog2social') . '</span>' : '') . '</h3>';
|
24 |
+
$content .= '<div class="col-md-12 b2s-re-post-settings-header">';
|
25 |
+
$content .= '<i class="glyphicon glyphicon-cog b2s-icon-size"></i><span class="b2s-re-post-headline"> ' . esc_html__('Settings', 'blog2social') . '</span><span class="b2s-re-post-headline"><i class="glyphicon glyphicon-chevron-up b2s-re-post-settings-toggle b2s-icon-size"></i></span>';
|
26 |
+
$content .= '</div>';
|
27 |
+
$content .= '<div class="col-md-12 b2s-re-post-settings-area">';
|
28 |
+
$content .= '<form id="b2s-re-post-settings" class="b2s-pb-10 ' . ((!$isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
29 |
+
$content .= '<div class="row">';
|
30 |
+
//Post Settings
|
31 |
+
$content .= '<div class="col-md-12 col-lg-6">';
|
32 |
+
$content .= '<h4>' . esc_html__('Which content should be shared?', 'blog2social') . '</h4>';
|
33 |
+
$content .= '<div class="alert alert-info b2s-re-post-limit-info" style="display:none;"> <a class="b2s-info-btn" href="' . esc_html(B2S_Tools::getSupportLink('affiliate')) . '" target="_blank">' . esc_html__('Upgrade', 'blog2social') . '</a> ' . esc_html__('your Blog2Social license to extend the quota for the number of posts in your queue.', 'blog2social') . '</div>';
|
34 |
+
|
35 |
+
$content .= '<span>' . esc_html__('Number of posts', 'blog2social') . ' </span>';
|
36 |
+
$content .= '<select name="b2s-re-post-limit" class="b2s-re-post-limit">';
|
37 |
+
for ($i = 5; $i <= 100; $i = $i+5) {
|
38 |
+
$content .= '<option value="'.$i.'" data-limit="' . (($i <= $limit[B2S_PLUGIN_USER_VERSION]) ? '1' : '0') . '">'.$i.'</option>';
|
39 |
+
}
|
40 |
+
$content .= '</select>';
|
41 |
+
$content .= '<br>';
|
42 |
+
$content .= '<br>';
|
43 |
+
$content .= '<input type="radio" id="b2s-re-post-settings-option-1" name="b2s-re-post-settings-option" class="b2s-re-post-settings-option" checked value="0"><label for="b2s-re-post-settings-option-1" class="b2s-bold"> ' . esc_html__('share oldest posts first', 'blog2social') . '</label><br>';
|
44 |
+
$content .= '<input type="radio" id="b2s-re-post-settings-option-2" name="b2s-re-post-settings-option" class="b2s-re-post-settings-option" value="1"><label for="b2s-re-post-settings-option-2" class="b2s-bold"> ' . esc_html__('customize', 'blog2social') . '</label><br>';
|
45 |
+
$content .= '<div class="col-md-12 b2s-re-post-settings-customize-area">';
|
46 |
+
$content .= $this->getChosenPostTypesData();
|
47 |
+
$content .= '<br>';
|
48 |
+
$content .= $this->getDateData();
|
49 |
+
$content .= $this->getChosenPostCategoriesData();
|
50 |
+
$content .= '<br>';
|
51 |
+
$content .= $this->getChosenPostAuthorData();
|
52 |
+
$content .= '<br>';
|
53 |
+
$content .='<input type="checkbox" name="b2s-re-post-favorites-active" id="b2s-re-post-favorites-active" value="1">';
|
54 |
+
$content .='<label for="b2s-re-post-favorites-active"> ' . sprintf(__('include <a href="%s" target="_blank">favorites posts</a> only', 'blog2social'), 'admin.php?page=blog2social-favorites') . ' </label>';
|
55 |
+
$content .= '</div>';
|
56 |
+
$content .= '</div>';
|
57 |
+
|
58 |
+
//Time Settings
|
59 |
+
$content .= '<div class="col-md-12 col-lg-6">';
|
60 |
+
$content .= '<h4>' . esc_html__('When should your content be shared?', 'blog2social') . '</h4>';
|
61 |
+
$content .= '<input type="radio" class="b2s-re-post-share-option" id="b2s-re-post-share-option-0" name="b2s-re-post-share-option" checked value="0">';
|
62 |
+
$content .= '<div class="b2s-re-post-share-option-area">';
|
63 |
+
$content .= '<label for="b2s-re-post-share-option-0"><span>' . esc_html__('Post every', 'blog2social') . ' </span><input type="number" name="b2s-re-post-day-0" class="b2s-re-post-number-input" value="1" min="1" max="30"><span> ' . esc_html__('days at', 'blog2social') . ' </span><input name="b2s-re-post-input-time-0" class="b2s-re-post-input-time form-control"></label>';
|
64 |
+
$content .= '</div>';
|
65 |
+
$content .= '<br>';
|
66 |
+
$content .= '<input type="radio" style="display:none;">';
|
67 |
+
$content .= '<div class="b2s-re-post-share-option-area b2s-mt-10 b2s-ml-22">';
|
68 |
+
$content .= '<span>' . esc_html__('on', 'blog2social') . ' </span>';
|
69 |
+
$content .= '<input id="b2s-re-post-weekday-mo" name="b2s-re-post-weekday-1" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-mo" class="b2s-re-post-weekday-label"> ' . esc_html__('Mon', 'blog2social') . '</label>'; //MO
|
70 |
+
$content .= '<input id="b2s-re-post-weekday-di" name="b2s-re-post-weekday-2" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-di" class="b2s-re-post-weekday-label"> ' . esc_html__('Tue', 'blog2social') . '</label>'; //Di
|
71 |
+
$content .= '<input id="b2s-re-post-weekday-mi" name="b2s-re-post-weekday-3" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-mi" class="b2s-re-post-weekday-label"> ' . esc_html__('Wed', 'blog2social') . '</label>'; //Mi
|
72 |
+
$content .= '<input id="b2s-re-post-weekday-do" name="b2s-re-post-weekday-4" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-do" class="b2s-re-post-weekday-label"> ' . esc_html__('Thu', 'blog2social') . '</label>'; //Do
|
73 |
+
$content .= '<input id="b2s-re-post-weekday-fr" name="b2s-re-post-weekday-5" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-fr" class="b2s-re-post-weekday-label"> ' . esc_html__('Fri', 'blog2social') . '</label>'; //Fr
|
74 |
+
$content .= '<input id="b2s-re-post-weekday-sa" name="b2s-re-post-weekday-6" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-sa" class="b2s-re-post-weekday-label"> ' . esc_html__('Sat', 'blog2social') . '</label>'; //Sa
|
75 |
+
$content .= '<input id="b2s-re-post-weekday-so" name="b2s-re-post-weekday-0" type="checkbox" class="form-control b2s-re-post-weekday" value="1" checked><label for="b2s-re-post-weekday-so" class="b2s-re-post-weekday-label"> ' . esc_html__('Sun', 'blog2social') . '</label>'; //So
|
76 |
+
$content .= '</div>';
|
77 |
+
$content .= '<br>';
|
78 |
+
$content .= '<input type="radio" class="b2s-re-post-share-option" id="b2s-re-post-share-option-1" name="b2s-re-post-share-option" value="1">';
|
79 |
+
$content .= '<div class="b2s-re-post-share-option-area b2s-mt-12">';
|
80 |
+
$content .= '<label for="b2s-re-post-share-option-1"><span>' . esc_html__('Post every', 'blog2social') . ' </span><input type="number" name="b2s-re-post-day-1" class="b2s-re-post-number-input" value="1" min="1" max="10">';
|
81 |
+
$content .= '<select class="b2s-re-post-weekday-select" name="b2s-re-post-weekday-select">';
|
82 |
+
$content .= '<option value="monday">' . esc_html__('Monday', 'blog2social') . '</option>';
|
83 |
+
$content .= '<option value="tuesday">' . esc_html__('Tuesday', 'blog2social') . '</option>';
|
84 |
+
$content .= '<option value="wednesday">' . esc_html__('Wednesday', 'blog2social') . '</option>';
|
85 |
+
$content .= '<option value="thursday">' . esc_html__('Thursday', 'blog2social') . '</option>';
|
86 |
+
$content .= '<option value="friday">' . esc_html__('Friday', 'blog2social') . '</option>';
|
87 |
+
$content .= '<option value="saturday">' . esc_html__('Saturday', 'blog2social') . '</option>';
|
88 |
+
$content .= '<option value="sunday">' . esc_html__('Sunday', 'blog2social') . '</option>';
|
89 |
+
$content .= '</select>';
|
90 |
+
$content .= '<span> ' . esc_html__('at', 'blog2social') . ' </span><input name="b2s-re-post-input-time-1" class="b2s-re-post-input-time form-control">';
|
91 |
+
$content .= '</label>';
|
92 |
+
$content .= '</div>';
|
93 |
+
$content .= '<br>';
|
94 |
+
$content .= '<div class="b2s-mt-12">';
|
95 |
+
$content .= '<input type="checkbox" name="b2s-re-post-best-times-active" id="b2s-re-post-best-times-active" value="1">';
|
96 |
+
$content .= '<label class="b2s-re-post-share-option-area" for="b2s-re-post-best-times-active">' . esc_html__('at my best times', 'blog2social') . ' </label>';
|
97 |
+
$content .= '</div>';
|
98 |
+
$content .= '<br>';
|
99 |
+
$content .= '<br>';
|
100 |
+
$content .= '<br>';
|
101 |
+
|
102 |
+
//Network Settings
|
103 |
+
$content .= '<h4>' . esc_html__('Where should your content be shared?', 'blog2social') . '</h4>';
|
104 |
+
$content .= $this->getMandantSelect();
|
105 |
+
$content .= '<input type="button" class="btn btn-primary pull-right ' . ((!$isPremium) ? 'b2s-re-post-submit-premium' : 'b2s-re-post-submit-btn') . '" value="' . esc_html__('Add to queue', 'blog2social') . '">';
|
106 |
+
$content .= '</div>';
|
107 |
+
$content .= '</div>';
|
108 |
+
$content .= '<input type="hidden" id="b2sUserLang" name="b2s-user-lang" value="' . esc_attr(strtolower(substr(get_locale(), 0, 2))) . '">';
|
109 |
+
$content .= '</form>';
|
110 |
+
$content .= '</div>';
|
111 |
+
|
112 |
+
return $content;
|
113 |
+
}
|
114 |
+
|
115 |
+
public function getRePostQueueHtml() {
|
116 |
+
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Post/Item.php');
|
117 |
+
$postItem = new B2S_Post_Item('repost');
|
118 |
+
$postItem->currentPage = 1;
|
119 |
+
$limit = unserialize(B2S_PLUGIN_RE_POST_LIMIT);
|
120 |
+
$needMoreBtn = (B2S_PLUGIN_USER_VERSION <=2) ? '<a class="b2s-info-btn" href="' . esc_html(B2S_Tools::getSupportLink('affiliate')) . '" target="_blank">' . esc_html__('Need more?', 'blog2social') . '</a>' :'';
|
121 |
+
$content = '';
|
122 |
+
$content .= '<div class="col-md-12 b2s-re-post-queue-header">';
|
123 |
+
$content .= '<i class="glyphicon glyphicon-random b2s-icon-size"></i><span class="b2s-re-post-headline"> ' . esc_html__('Queue', 'blog2social') . '</span>';
|
124 |
+
$content .= '<span class="b2s-re-post-headline pull-right"><span class="b2s-re-post-queue-count"></span>/' . $limit[B2S_PLUGIN_USER_VERSION] . ' ' . esc_html__('Posts', 'blog2social') . ' '.$needMoreBtn.'</span>';
|
125 |
+
$content .= '</div>';
|
126 |
+
$content .= '<div class="col-md-12 b2s-re-post-queue-delete-area">';
|
127 |
+
$content .= '<button type="button" class="btn btn-primary btn-xs b2s-re-post-select-all">' . esc_html__('select all', 'blog2social') . '</button> ';
|
128 |
+
$content .= '<button type="button" class="btn btn-danger btn-xs b2s-re-post-delete-checked" style="display:none;"><i class="glyphicon glyphicon-trash"></i> ' . esc_html__('delete selected posts', 'blog2social') . '</button>';
|
129 |
+
$content .= '</div>';
|
130 |
+
$content .= '<div class="b2s-re-post-queue-area">';
|
131 |
+
$content .= '<ul>'.$postItem->getItemHtml().'</ul>';
|
132 |
+
$content .= '</div>';
|
133 |
+
return $content;
|
134 |
+
}
|
135 |
+
|
136 |
+
private function getMandantSelect($mandantId = 0, $twitterId = 0) {
|
137 |
+
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getProfileUserAuth', 'token' => B2S_PLUGIN_TOKEN)));
|
138 |
+
if (isset($result->result) && (int) $result->result == 1 && isset($result->data) && !empty($result->data) && isset($result->data->mandant) && isset($result->data->auth) && !empty($result->data->mandant) && !empty($result->data->auth)) {
|
139 |
+
$mandant = $result->data->mandant;
|
140 |
+
$auth = $result->data->auth;
|
141 |
+
$authContent = '';
|
142 |
+
$content = '<div class="row"><div class="col-md-6 b2s-re-post-profile"><label for="b2s-re-post-profil-dropdown">' . esc_html__('Select network collection:', 'blog2social') . '</label>
|
143 |
+
<select class="b2s-w-100" id="b2s-re-post-profil-dropdown" name="b2s-re-post-profil-dropdown">';
|
144 |
+
foreach ($mandant as $k => $m) {
|
145 |
+
$content .= '<option value="' . esc_attr($m->id) . '" '.(((int) $m->id == (int) $mandantId) ? 'selected' : '').'>' . esc_html((($m->id == 0) ? __($m->name, 'blog2social') : $m->name)) . '</option>';
|
146 |
+
$profilData = (isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0])) ? json_encode($auth->{$m->id}) : '';
|
147 |
+
$authContent .= "<input type='hidden' name='b2s-re-post-profil-data-" . esc_attr($m->id) . "' id='b2s-re-post-profil-data-" . esc_attr($m->id) . "' value='" . base64_encode($profilData) . "'/>";
|
148 |
+
}
|
149 |
+
$content .= '</select><div class="pull-right hidden-sm hidden-xs"><a href="' . esc_url(get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/') . 'wp-admin/admin.php?page=blog2social-network') . '" target="_blank">' . esc_html__('Network settings', 'blog2social') . '</a></div></div>';
|
150 |
+
$content .= $authContent;
|
151 |
+
|
152 |
+
//TOS Twitter 032018 - none multiple Accounts - User select once
|
153 |
+
$content .='<div class="col-md-6 b2s-re-post-twitter-profile"><label for="b2s-re-post-profil-dropdown-twitter">' . esc_html__('Select Twitter profile:', 'blog2social') . '</label> <select class="b2s-w-100" id="b2s-re-post-profil-dropdown-twitter" name="b2s-re-post-profil-dropdown-twitter">';
|
154 |
+
foreach ($mandant as $k => $m) {
|
155 |
+
if ((isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0]))) {
|
156 |
+
foreach ($auth->{$m->id} as $key => $value) {
|
157 |
+
if ($value->networkId == 2) {
|
158 |
+
$content .= '<option data-mandant-id="' . esc_attr($m->id) . '" value="' . esc_attr($value->networkAuthId) . '" '.(((int) $value->networkAuthId == (int) $twitterId) ? 'selected' : '').'>' . esc_html($value->networkUserName) . '</option>';
|
159 |
+
}
|
160 |
+
}
|
161 |
+
}
|
162 |
+
}
|
163 |
+
$content .= '</select><div class="pull-right hidden-sm hidden-xs"><a href="#" class="b2sTwitterInfoModalBtn">'.esc_html__('Info', 'blog2social').'</a></div></div></div>';
|
164 |
+
return $content;
|
165 |
+
}
|
166 |
+
}
|
167 |
+
|
168 |
+
private function getChosenPostTypesData() {
|
169 |
+
|
170 |
+
$html = '';
|
171 |
+
if (is_array($this->postTypesData) && !empty($this->postTypesData)) {
|
172 |
+
$html .='<input type="checkbox" name="b2s-re-post-type-active" class="b2s-re-post-type-active" id="b2s-re-post-type-active" value="1">';
|
173 |
+
$html .='<label for="b2s-re-post-type-active"> ' . esc_html__('Post Types', 'blog2social') . ' </label>';
|
174 |
+
$html .='<input id="b2s-re-post-type-state-include" name="b2s-re-post-type-state" value="0" checked type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-type-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
175 |
+
$html .='<input id="b2s-re-post-type-state-exclude" name="b2s-re-post-type-state" value="1" type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-type-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
176 |
+
$html .='<select name="b2s-re-post-type-data[]" data-placeholder="Select Post Types" class="b2s-re-post-type" multiple>';
|
177 |
+
|
178 |
+
foreach ($this->postTypesData as $k => $v) {
|
179 |
+
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
180 |
+
$html .= '<option value="' . esc_attr($v) . '">' . esc_html($v) . '</option>';
|
181 |
+
}
|
182 |
+
}
|
183 |
+
|
184 |
+
$html .='</select>';
|
185 |
+
}
|
186 |
+
return $html;
|
187 |
+
}
|
188 |
+
|
189 |
+
private function getDateData() {
|
190 |
+
|
191 |
+
$html = '';
|
192 |
+
$html .='<input type="checkbox" name="b2s-re-post-date-active" class="b2s-re-post-date-active" id="b2s-re-post-date-active" value="1">';
|
193 |
+
$html .='<label for="b2s-re-post-date-active"> ' . esc_html__('Date', 'blog2social') . ' </label>';
|
194 |
+
$html .='<input id="b2s-re-post-date-state-include" name="b2s-re-post-date-state" value="0" checked type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-date-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
195 |
+
$html .='<input id="b2s-re-post-date-state-exclude" name="b2s-re-post-date-state" value="1" type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-date-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
196 |
+
$html .= '<div class="row">';
|
197 |
+
$html .= '<div class="col-md-6">';
|
198 |
+
$html .= '<input type="text" placeholder="' . esc_attr__('Startdate', 'blog2social') . '" class="b2s-re-post-date-start form-control" name="b2s-re-post-date-start">';
|
199 |
+
$html .= '</div>';
|
200 |
+
$html .= '<div class="col-md-6">';
|
201 |
+
$html .= '<input type="text" placeholder="' . esc_attr__('Enddate', 'blog2social') . '" class="b2s-re-post-date-end form-control" name="b2s-re-post-date-end">';
|
202 |
+
$html .= '</div>';
|
203 |
+
$html .= '</div>';
|
204 |
+
|
205 |
+
return $html;
|
206 |
+
}
|
207 |
+
|
208 |
+
private function getChosenPostCategoriesData() {
|
209 |
+
|
210 |
+
$html = '';
|
211 |
+
if (is_array($this->postCategoriesData) && !empty($this->postCategoriesData)) {
|
212 |
+
$html .='<input type="checkbox" name="b2s-re-post-categories-active" class="b2s-re-post-categories-active" id="b2s-re-post-categories-active" value="1">';
|
213 |
+
$html .='<label for="b2s-re-post-categories-active"> ' . esc_html__('Categories', 'blog2social') . ' </label>';
|
214 |
+
$html .='<input id="b2s-re-post-categories-state-include" name="b2s-re-post-categories-state" value="0" checked type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-categories-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
215 |
+
$html .='<input id="b2s-re-post-categories-state-exclude" name="b2s-re-post-categories-state" value="1" type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-categories-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
216 |
+
$html .='<select name="b2s-re-post-categories-data[]" data-placeholder="Select Post Categories" class="b2s-re-post-categories" multiple>';
|
217 |
+
|
218 |
+
foreach ($this->postCategoriesData as $cat) {
|
219 |
+
$html .= '<option value="' . esc_attr($cat->term_taxonomy_id) . '">' . esc_html($cat->name) . '</option>';
|
220 |
+
}
|
221 |
+
|
222 |
+
$html .='</select>';
|
223 |
+
}
|
224 |
+
return $html;
|
225 |
+
}
|
226 |
+
|
227 |
+
private function getChosenPostAuthorData() {
|
228 |
+
|
229 |
+
$html = '';
|
230 |
+
if (is_array($this->postAuthorData) && !empty($this->postAuthorData)) {
|
231 |
+
$html .='<input type="checkbox" name="b2s-re-post-author-active" class="b2s-re-post-author-active" id="b2s-re-post-author-active" value="1">';
|
232 |
+
$html .='<label for="b2s-re-post-author-active"> ' . esc_html__('Authors', 'blog2social') . ' </label>';
|
233 |
+
$html .='<input id="b2s-re-post-author-state-include" name="b2s-re-post-author-state" value="0" checked type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-author-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
234 |
+
$html .='<input id="b2s-re-post-author-state-exclude" name="b2s-re-post-author-state" value="1" type="radio" class="b2s-re-post-state"><label class="padding-bottom-3" for="b2s-re-post-author-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
235 |
+
$html .='<select name="b2s-re-post-author-data[]" data-placeholder="Select Post Author" class="b2s-re-post-author" multiple>';
|
236 |
+
|
237 |
+
foreach ($this->postAuthorData as $var) {
|
238 |
+
$autorName = $var->display_name;
|
239 |
+
if (function_exists('mb_strlen') && function_exists('mb_substr')) {
|
240 |
+
$autorName = mb_strlen($var->display_name, 'UTF-8') > 27 ? mb_substr($var->display_name, 0, 27, 'UTF-8') . '...' : $autorName;
|
241 |
+
}
|
242 |
+
$html .= '<option value="' . esc_attr($var->ID) . '">' . esc_html($autorName) . '</option>';
|
243 |
+
}
|
244 |
+
|
245 |
+
$html .='</select>';
|
246 |
+
}
|
247 |
+
return $html;
|
248 |
+
}
|
249 |
+
|
250 |
+
}
|
251 |
+
|
includes/B2S/RePost/Save.php
ADDED
@@ -0,0 +1,397 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class B2S_RePost_Save {
|
4 |
+
|
5 |
+
private $title;
|
6 |
+
private $contentHtml;
|
7 |
+
private $postId;
|
8 |
+
private $content;
|
9 |
+
private $excerpt;
|
10 |
+
private $url;
|
11 |
+
private $imageUrl;
|
12 |
+
private $keywords;
|
13 |
+
private $blogUserId;
|
14 |
+
private $userTimezone;
|
15 |
+
private $setPreFillText;
|
16 |
+
private $optionPostFormat;
|
17 |
+
private $allowHashTag;
|
18 |
+
private $bestTimes;
|
19 |
+
private $userVersion;
|
20 |
+
private $defaultPostData;
|
21 |
+
private $b2sUserLang;
|
22 |
+
private $notAllowNetwork;
|
23 |
+
private $allowNetworkOnlyImage;
|
24 |
+
private $tosCrossPosting;
|
25 |
+
private $linkNoCache;
|
26 |
+
|
27 |
+
function __construct($blogUserId = 0, $b2sUserLang = 'en', $userTimezone = 0, $optionPostFormat = array(), $allowHashTag = true, $bestTimes = array(), $userVersion = 0) {
|
28 |
+
$this->userVersion = defined("B2S_PLUGIN_USER_VERSION") ? B2S_PLUGIN_USER_VERSION : (int) $userVersion;
|
29 |
+
$this->blogUserId = $blogUserId;
|
30 |
+
$this->userTimezone = $userTimezone;
|
31 |
+
$this->optionPostFormat = $optionPostFormat;
|
32 |
+
$this->allowHashTag = $allowHashTag;
|
33 |
+
$this->b2sUserLang = $b2sUserLang;
|
34 |
+
$this->bestTimes = (!empty($bestTimes)) ? $bestTimes : array();
|
35 |
+
$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);
|
36 |
+
$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));
|
37 |
+
$this->notAllowNetwork = array(4, 11, 14, 16, 18);
|
38 |
+
$this->allowNetworkOnlyImage = array(6, 7, 12, 21);
|
39 |
+
$this->tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
40 |
+
$this->linkNoCache = B2S_Tools::getNoCacheData(B2S_PLUGIN_BLOG_USER_ID);
|
41 |
+
}
|
42 |
+
|
43 |
+
public function setPostData($postId = 0, $title = '', $content = '', $excerpt = '', $url = '', $imageUrl = '', $keywords = '') {
|
44 |
+
$this->postId = $postId;
|
45 |
+
$this->title = $title;
|
46 |
+
$this->content = B2S_Util::prepareContent($postId, $content, $url, false, true, $this->b2sUserLang);
|
47 |
+
$this->excerpt = B2S_Util::prepareContent($postId, $excerpt, $url, false, true, $this->b2sUserLang);
|
48 |
+
$this->contentHtml = B2S_Util::prepareContent($postId, $content, $url, '<p><h1><h2><br><i><b><a><img>', true, $this->b2sUserLang);
|
49 |
+
$this->url = $url;
|
50 |
+
$this->imageUrl = $imageUrl;
|
51 |
+
$this->keywords = $keywords;
|
52 |
+
$this->defaultPostData = array(
|
53 |
+
'default_titel' => $title,
|
54 |
+
'image_url' => ($imageUrl !== false) ? trim(urldecode($imageUrl)) : '',
|
55 |
+
'lang' => $this->b2sUserLang,
|
56 |
+
'no_cache' => 0, //default inactive , 1=active 0=not
|
57 |
+
'board' => '',
|
58 |
+
'group' => '',
|
59 |
+
'url' => $url,
|
60 |
+
'user_timezone' => $this->userTimezone
|
61 |
+
);
|
62 |
+
}
|
63 |
+
|
64 |
+
public function generatePosts($startDate = '0000-00-00', $settings = array(), $networkData = array(), $twitter = '') {
|
65 |
+
foreach ($networkData as $k => $value) {
|
66 |
+
if (isset($value->networkAuthId) && (int) $value->networkAuthId > 0 && isset($value->networkId) && (int) $value->networkId > 0 && isset($value->networkType)) {
|
67 |
+
//Filter: Image network
|
68 |
+
if (in_array((int) $value->networkId, $this->allowNetworkOnlyImage) && empty($this->imageUrl)) {
|
69 |
+
continue;
|
70 |
+
}
|
71 |
+
//Filter: Blog network
|
72 |
+
if (in_array((int) $value->networkId, $this->notAllowNetwork)) {
|
73 |
+
continue;
|
74 |
+
}
|
75 |
+
//Filter: TOS Crossposting ignore
|
76 |
+
if (isset($this->tosCrossPosting[$value->networkId][$value->networkType])) {
|
77 |
+
continue;
|
78 |
+
}
|
79 |
+
//Filter: DeprecatedNetwork-8 31 march
|
80 |
+
if ((int) $value->networkId == 8) {
|
81 |
+
continue;
|
82 |
+
}
|
83 |
+
$selectedTwitterProfile = (isset($twitter) && !empty($twitter)) ? (int) $twitter : '';
|
84 |
+
if ((int) $value->networkId != 2 || ((int) $value->networkId == 2 && (empty($selectedTwitterProfile) || ((int) $selectedTwitterProfile == (int) $value->networkAuthId)))) {
|
85 |
+
$schedDate = $this->getPostDateTime($startDate, $settings, $value->networkAuthId);
|
86 |
+
$schedDateUtc = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($schedDate, ($this->userTimezone * -1))));
|
87 |
+
$shareApprove = (isset($value->instant_sharing) && (int) $value->instant_sharing == 1) ? 1 : 0;
|
88 |
+
$defaultPostData = $this->defaultPostData;
|
89 |
+
if ((int) $value->networkId == 1 || (int) $value->networkId == 3 || (int) $value->networkId == 19) {
|
90 |
+
if (is_array($this->linkNoCache) && isset($this->linkNoCache[$value->networkId]) && (int) $this->linkNoCache[$value->networkId] > 0) {
|
91 |
+
$defaultPostData['no_cache'] = $this->linkNoCache[$value->networkId];
|
92 |
+
}
|
93 |
+
}
|
94 |
+
$schedData = $this->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType);
|
95 |
+
if ($schedData !== false && is_array($schedData)) {
|
96 |
+
$schedData = array_merge($schedData, $defaultPostData);
|
97 |
+
}
|
98 |
+
$this->saveShareData($schedData, $value->networkId, $value->networkType, $value->networkAuthId, $shareApprove, strip_tags($value->networkUserName), $schedDate, $schedDateUtc);
|
99 |
+
}
|
100 |
+
}
|
101 |
+
}
|
102 |
+
}
|
103 |
+
|
104 |
+
public function getPostDateTime($startDate = '0000-00-00', $settings = array(), $networkAuthId = 0) {
|
105 |
+
$date = new DateTime($startDate);
|
106 |
+
if (!empty($this->bestTimes) && isset($this->bestTimes['delay_day'][$networkAuthId]) && isset($this->bestTimes['time'][$networkAuthId]) && !empty($this->bestTimes['time'][$networkAuthId])) {
|
107 |
+
if((int) $this->bestTimes['delay_day'][$networkAuthId] > 0) {
|
108 |
+
$date->modify('+' . $this->bestTimes['delay_day'][$networkAuthId] . ' days');
|
109 |
+
}
|
110 |
+
$time = $this->getTime($this->bestTimes['time'][$networkAuthId]);
|
111 |
+
$date->setTime($time['h'], $time['m']);
|
112 |
+
} else if (isset($settings['time']) && !empty($settings['time'])) {
|
113 |
+
$time = $this->getTime($settings['time']);
|
114 |
+
$date->setTime($time['h'], $time['m']);
|
115 |
+
}
|
116 |
+
if(isset($settings['type']) && (int) $settings['type'] == 0 && isset($settings['weekday']) && is_array($settings['weekday']) && !empty($settings['weekday'])) {
|
117 |
+
while (!$settings['weekday'][(int) $date->format('w')]) {
|
118 |
+
$date->modify('+1 days');
|
119 |
+
}
|
120 |
+
}
|
121 |
+
return $date->format("Y-m-d H:i:s");
|
122 |
+
}
|
123 |
+
|
124 |
+
private function getTime($time) {
|
125 |
+
$output = array('h' => (int) substr($time, 0, 2), 'm' => (int) substr($time, 3, 2));
|
126 |
+
if(substr($time, -2) == "PM") {
|
127 |
+
$output['h'] += 12;
|
128 |
+
}
|
129 |
+
return $output;
|
130 |
+
}
|
131 |
+
|
132 |
+
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
133 |
+
|
134 |
+
if(B2S_PLUGIN_USER_VERSION >= 3) {
|
135 |
+
global $wpdb;
|
136 |
+
$sqlGetData = $wpdb->prepare("SELECT `data` FROM `{$wpdb->prefix}b2s_posts_network_details` WHERE `network_auth_id` = %d", (int) $networkAuthId);
|
137 |
+
$dataString = $wpdb->get_var($sqlGetData);
|
138 |
+
if ($dataString !== NULL && !empty($dataString)) {
|
139 |
+
$networkAuthData = unserialize($dataString);
|
140 |
+
if(!empty($this->url) && $networkAuthData != false && is_array($networkAuthData) && isset($networkAuthData['url_parameter'][0]['querys']) && !empty($networkAuthData['url_parameter'][0]['querys'])) {
|
141 |
+
$this->url = B2S_Util::addUrlParameter($this->url, $networkAuthData['url_parameter'][0]['querys']);
|
142 |
+
}
|
143 |
+
}
|
144 |
+
}
|
145 |
+
|
146 |
+
if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
|
147 |
+
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
148 |
+
|
149 |
+
if ((int)$this->userVersion < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])) {
|
150 |
+
$this->optionPostFormat = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
151 |
+
}
|
152 |
+
|
153 |
+
//PostFormat
|
154 |
+
if (in_array($networkId, array(1, 2, 3, 12, 19))) {
|
155 |
+
//Get: client settings
|
156 |
+
if (isset($this->optionPostFormat[$networkId][$networkType]['format']) && ((int) $this->optionPostFormat[$networkId][$networkType]['format'] === 0 || (int) $this->optionPostFormat[$networkId][$networkType]['format'] === 1)) {
|
157 |
+
$postData['post_format'] = (int) $this->optionPostFormat[$networkId][$networkType]['format'];
|
158 |
+
} else {
|
159 |
+
//Set: default settings
|
160 |
+
$defaultPostFormat = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
161 |
+
$postData['post_format'] = isset($defaultPostFormat[$networkId][$networkType]['format']) ? (int) $defaultPostFormat[$networkId][$networkType]['format'] : 0;
|
162 |
+
}
|
163 |
+
}
|
164 |
+
//Special
|
165 |
+
if (in_array($networkId, array(1, 2, 3, 12, 19))) {
|
166 |
+
if ($networkId == 12 && $this->imageUrl == false) {
|
167 |
+
return false;
|
168 |
+
}
|
169 |
+
$postData['content'] = $this->optionPostFormat[$networkId][$networkType]['content'];
|
170 |
+
|
171 |
+
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['range_min'], (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['range_max']),"\\$");
|
172 |
+
$postData['content'] = preg_replace("/\{CONTENT\}/", $preContent, $postData['content']);
|
173 |
+
|
174 |
+
$title = sanitize_text_field($this->title);
|
175 |
+
$postData['content'] = preg_replace("/\{TITLE\}/", addcslashes($title,"\\$"), $postData['content']);
|
176 |
+
|
177 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
178 |
+
if (!isset($this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
179 |
+
$this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
180 |
+
}
|
181 |
+
if (!isset($this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
182 |
+
$this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
183 |
+
}
|
184 |
+
$excerpt = (isset($this->excerpt) && !empty($this->excerpt)) ? addcslashes(B2S_Util::getExcerpt($this->excerpt, (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'], (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']),"\\$") : '';
|
185 |
+
|
186 |
+
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
187 |
+
|
188 |
+
$hashtagcount = substr_count($postData['content'], '#');
|
189 |
+
if (strpos($postData['content'], "{KEYWORDS}") !== false) {
|
190 |
+
$hashtags = $this->getHashTagsString("", (($networkId == 12) ? 30-$hashtagcount : -1));
|
191 |
+
$postData['content'] = preg_replace("/\{KEYWORDS\}/", addcslashes($hashtags,"\\$"), $postData['content']);
|
192 |
+
} else if ($this->allowHashTag) {
|
193 |
+
$add = ($networkId != 2) ? "\n\n" : "";
|
194 |
+
$hashtags = $this->getHashTagsString($add, (($networkId == 12) ? 30-$hashtagcount : -1));
|
195 |
+
$postData['content'] .= " " . $hashtags;
|
196 |
+
}
|
197 |
+
|
198 |
+
$authorId = get_post_field('post_author', $this->postId);
|
199 |
+
if (isset($authorId) && !empty($authorId) && (int) $authorId > 0) {
|
200 |
+
$hook_filter = new B2S_Hook_Filter();
|
201 |
+
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $authorId);
|
202 |
+
$postData['content'] = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $postData['content']));
|
203 |
+
} else {
|
204 |
+
$postData['content'] = preg_replace("/\{AUTHOR\}/", "", $postData['content']);
|
205 |
+
}
|
206 |
+
}
|
207 |
+
|
208 |
+
if ($networkId == 4) {
|
209 |
+
$postData['custom_title'] = strip_tags($this->title);
|
210 |
+
$postData['content'] = $this->contentHtml;
|
211 |
+
if ($this->allowHashTag) {
|
212 |
+
if (is_array($this->keywords) && !empty($this->keywords)) {
|
213 |
+
foreach ($this->keywords as $tag) {
|
214 |
+
$postData['tags'][] = str_replace(" ", "", $tag->name);
|
215 |
+
}
|
216 |
+
}
|
217 |
+
}
|
218 |
+
}
|
219 |
+
|
220 |
+
if ($networkId == 6 || $networkId == 20) {
|
221 |
+
if ($this->imageUrl !== false) {
|
222 |
+
$postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
|
223 |
+
if ($this->allowHashTag) {
|
224 |
+
$postData['content'] .= $this->getHashTagsString();
|
225 |
+
}
|
226 |
+
$postData['custom_title'] = strip_tags($this->title);
|
227 |
+
} else {
|
228 |
+
return false;
|
229 |
+
}
|
230 |
+
}
|
231 |
+
|
232 |
+
if ($networkId == 7) {
|
233 |
+
if ($this->imageUrl !== false) {
|
234 |
+
$postData['custom_title'] = strip_tags($this->title);
|
235 |
+
} else {
|
236 |
+
return false;
|
237 |
+
}
|
238 |
+
}
|
239 |
+
if ($networkId == 8) {
|
240 |
+
$postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
|
241 |
+
$postData['custom_title'] = strip_tags($this->title);
|
242 |
+
}
|
243 |
+
if ($networkId == 9 || $networkId == 16) {
|
244 |
+
$postData['custom_title'] = $this->title;
|
245 |
+
$postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (int) $this->setPreFillTextLimit[$networkType][$networkId]) : $this->content;
|
246 |
+
if ($this->allowHashTag) {
|
247 |
+
if (is_array($this->keywords) && !empty($this->keywords)) {
|
248 |
+
foreach ($this->keywords as $tag) {
|
249 |
+
$postData['tags'][] = str_replace(" ", "", $tag->name);
|
250 |
+
}
|
251 |
+
}
|
252 |
+
}
|
253 |
+
}
|
254 |
+
|
255 |
+
if ($networkId == 10 || $networkId == 17 || $networkId == 18) {
|
256 |
+
$postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (isset($this->setPreFillTextLimit[$networkType][$networkId]) ? (int) $this->setPreFillTextLimit[$networkType][$networkId] : false)) : $this->content;
|
257 |
+
if ($this->allowHashTag) {
|
258 |
+
$postData['content'] .= $this->getHashTagsString();
|
259 |
+
}
|
260 |
+
}
|
261 |
+
|
262 |
+
if ($networkId == 11 || $networkId == 14) {
|
263 |
+
$postData['custom_title'] = strip_tags($this->title);
|
264 |
+
$postData['content'] = $this->contentHtml;
|
265 |
+
}
|
266 |
+
|
267 |
+
if ($networkId == 11) {
|
268 |
+
if ($this->allowHashTag) {
|
269 |
+
if (is_array($this->keywords) && !empty($this->keywords)) {
|
270 |
+
foreach ($this->keywords as $tag) {
|
271 |
+
$postData['tags'][] = str_replace(" ", "", $tag->name);
|
272 |
+
}
|
273 |
+
}
|
274 |
+
}
|
275 |
+
}
|
276 |
+
|
277 |
+
if ($networkId == 13 || $networkId == 15) {
|
278 |
+
$postData['content'] = strip_tags($this->title);
|
279 |
+
}
|
280 |
+
|
281 |
+
if ($networkId == 21) {
|
282 |
+
if ($this->imageUrl !== false) {
|
283 |
+
$postData['content'] = (isset($this->setPreFillText[$networkType][$networkId])) ? B2S_Util::getExcerpt($this->content, (int) $this->setPreFillText[$networkType][$networkId], (isset($this->setPreFillTextLimit[$networkType][$networkId]) ? (int) $this->setPreFillTextLimit[$networkType][$networkId] : false)) : $this->content;
|
284 |
+
$postData['custom_title'] = strip_tags($this->title);
|
285 |
+
if ($this->allowHashTag) {
|
286 |
+
if (is_array($this->keywords) && !empty($this->keywords)) {
|
287 |
+
foreach ($this->keywords as $tag) {
|
288 |
+
$postData['tags'][] = str_replace(" ", "", $tag->name);
|
289 |
+
}
|
290 |
+
}
|
291 |
+
}
|
292 |
+
} else {
|
293 |
+
return false;
|
294 |
+
}
|
295 |
+
}
|
296 |
+
|
297 |
+
return $postData;
|
298 |
+
}
|
299 |
+
return false;
|
300 |
+
}
|
301 |
+
|
302 |
+
private function getHashTagsString($add = "\n\n", $limit = -1) {// limit = -1 => no limit
|
303 |
+
if($limit != 0){
|
304 |
+
$hashTags = '';
|
305 |
+
if (is_array($this->keywords) && !empty($this->keywords)) {
|
306 |
+
foreach ($this->keywords as $tag) {
|
307 |
+
$hashTags .= ' #' . str_replace(array(" ", "-", '"', "'", "!", "?", ",", ".", ";", ":"), "", $tag->name);
|
308 |
+
}
|
309 |
+
}
|
310 |
+
if($limit > 0) {
|
311 |
+
$pos = 0;
|
312 |
+
$temp_str = $hashTags;
|
313 |
+
for($i = 0; $i <= $limit; $i++){
|
314 |
+
$pos = strpos($temp_str, '#');
|
315 |
+
$temp_str = substr($temp_str, $pos+1);
|
316 |
+
}
|
317 |
+
if($pos !== false){
|
318 |
+
$pos = strpos($hashTags, $temp_str);
|
319 |
+
$hashTags = substr($hashTags, 0, $pos-1);
|
320 |
+
}
|
321 |
+
}
|
322 |
+
return (!empty($hashTags) ? (!empty($add) ? $add . $hashTags : $hashTags) : '');
|
323 |
+
} else {
|
324 |
+
return '';
|
325 |
+
}
|
326 |
+
}
|
327 |
+
|
328 |
+
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') {
|
329 |
+
|
330 |
+
if(isset($shareData['image_url']) && !empty($shareData['image_url'])){
|
331 |
+
$image_data = wp_check_filetype($shareData['image_url']);
|
332 |
+
if(isset($image_data['ext']) && $image_data['ext'] == 'gif' && in_array($network_id, unserialize(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF))){
|
333 |
+
$shareData['image_url'] = '';
|
334 |
+
}
|
335 |
+
}
|
336 |
+
|
337 |
+
global $wpdb;
|
338 |
+
$networkDetailsId = 0;
|
339 |
+
$schedDetailsId = 0;
|
340 |
+
$networkDetailsIdSelect = $wpdb->get_col($wpdb->prepare("SELECT postNetworkDetails.id FROM {$wpdb->prefix}b2s_posts_network_details AS postNetworkDetails WHERE postNetworkDetails.network_auth_id = %s", $network_auth_id));
|
341 |
+
if (isset($networkDetailsIdSelect[0])) {
|
342 |
+
$networkDetailsId = (int) $networkDetailsIdSelect[0];
|
343 |
+
} else {
|
344 |
+
$wpdb->insert($wpdb->prefix.'b2s_posts_network_details', array(
|
345 |
+
'network_id' => (int) $network_id,
|
346 |
+
'network_type' => (int) $network_type,
|
347 |
+
'network_auth_id' => (int) $network_auth_id,
|
348 |
+
'network_display_name' => $network_display_name), array('%d', '%d', '%d', '%s'));
|
349 |
+
$networkDetailsId = $wpdb->insert_id;
|
350 |
+
}
|
351 |
+
|
352 |
+
if ($networkDetailsId > 0) {
|
353 |
+
//DeprecatedNetwork-8 31 march
|
354 |
+
if ($network_id == 8 && $sched_date_utc >= '2019-03-30 23:59:59') {
|
355 |
+
$wpdb->insert($wpdb->prefix.'b2s_posts', array(
|
356 |
+
'post_id' => $this->postId,
|
357 |
+
'blog_user_id' => $this->blogUserId,
|
358 |
+
'user_timezone' => $this->userTimezone,
|
359 |
+
'publish_date' => date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate(gmdate('Y-m-d H:i:s'), $this->userTimezone * (-1)))),
|
360 |
+
'publish_error_code' => 'DEPRECATED_NETWORK_8',
|
361 |
+
'network_details_id' => $networkDetailsId), array('%d', '%d', '%s', '%s', '%s', '%d'));
|
362 |
+
} else {
|
363 |
+
$wpdb->insert($wpdb->prefix.'b2s_posts_sched_details', array('sched_data' => serialize($shareData), 'image_url' => (isset($shareData['image_url']) ? $shareData['image_url'] : '')), array('%s', '%s'));
|
364 |
+
$schedDetailsId = $wpdb->insert_id;
|
365 |
+
$wpdb->insert($wpdb->prefix.'b2s_posts', array(
|
366 |
+
'post_id' => $this->postId,
|
367 |
+
'blog_user_id' => $this->blogUserId,
|
368 |
+
'user_timezone' => $this->userTimezone,
|
369 |
+
'publish_date' => "0000-00-00 00:00:00",
|
370 |
+
'sched_details_id' => $schedDetailsId,
|
371 |
+
'sched_type' => 5, // Re-Posting
|
372 |
+
'sched_date' => $sched_date,
|
373 |
+
'sched_date_utc' => $sched_date_utc,
|
374 |
+
'network_details_id' => $networkDetailsId,
|
375 |
+
'post_for_approve' => (int) $shareApprove,
|
376 |
+
'hook_action' => (((int) $shareApprove == 0) ? 1 : 0)), array('%d', '%d', '%s', '%s', '%d', '%d', '%s', '%s', '%d', '%d', '%d'));
|
377 |
+
B2S_Rating::trigger();
|
378 |
+
}
|
379 |
+
}
|
380 |
+
}
|
381 |
+
|
382 |
+
public function deletePostsByBlogPost($blogPostId = 0) {
|
383 |
+
global $wpdb;
|
384 |
+
$getSchedData = $wpdb->prepare("SELECT id as b2sPostId FROM {$wpdb->prefix}b2s_posts WHERE post_id = %d AND b.sched_type = %d AND b.publish_date = %s AND b.hide = %d", (int) $blogPostId, 5, "0000-00-00 00:00:00", 0);
|
385 |
+
$schedDataResult = $wpdb->get_results($getSchedData);
|
386 |
+
$delete_scheds = array();
|
387 |
+
foreach ($schedDataResult as $k => $value) {
|
388 |
+
array_push($delete_scheds, $value->b2sPostId);
|
389 |
+
}
|
390 |
+
if (!empty($delete_scheds)) {
|
391 |
+
require_once (B2S_PLUGIN_DIR . '/includes/B2S/Post/Tools.php');
|
392 |
+
B2S_Post_Tools::deleteUserSchedPost($delete_scheds);
|
393 |
+
B2S_Heartbeat::getInstance()->deleteSchedPost();
|
394 |
+
}
|
395 |
+
}
|
396 |
+
|
397 |
+
}
|
includes/B2S/Settings/Item.php
CHANGED
@@ -5,16 +5,12 @@ class B2S_Settings_Item {
|
|
5 |
private $userSchedTimeData = array();
|
6 |
private $networkData = array();
|
7 |
private $settings = array();
|
8 |
-
private $networkAuthData = array();
|
9 |
-
private $networkAutoPostData;
|
10 |
-
private $networkAuthCount = false;
|
11 |
private $lang;
|
12 |
private $allowPage;
|
13 |
private $options;
|
14 |
private $generalOptions;
|
15 |
private $allowGroup;
|
16 |
private $timeInfo;
|
17 |
-
private $postTypesData;
|
18 |
private $authUrl;
|
19 |
|
20 |
public function __construct() {
|
@@ -25,7 +21,6 @@ class B2S_Settings_Item {
|
|
25 |
$this->allowPage = unserialize(B2S_PLUGIN_NETWORK_ALLOW_PAGE);
|
26 |
$this->allowGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_GROUP);
|
27 |
$this->timeInfo = unserialize(B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO);
|
28 |
-
$this->postTypesData = get_post_types(array('public' => true));
|
29 |
$this->authUrl = B2S_PLUGIN_API_ENDPOINT_AUTH_SHORTENER . '?b2s_token=' . B2S_PLUGIN_TOKEN . '&sprache=' . substr(B2S_LANGUAGE, 0, 2);
|
30 |
}
|
31 |
|
@@ -36,9 +31,6 @@ class B2S_Settings_Item {
|
|
36 |
if (isset($result->settings) && is_object($result->settings)) {
|
37 |
$this->settings = $result->settings;
|
38 |
}
|
39 |
-
$this->networkAuthCount = isset($result->portal_auth_count) ? $result->portal_auth_count : false;
|
40 |
-
$this->networkAuthData = isset($result->portal_auth) ? $result->portal_auth : array();
|
41 |
-
$this->networkAutoPostData = isset($result->portal_auto_post) ? $result->portal_auto_post : array();
|
42 |
}
|
43 |
}
|
44 |
|
@@ -76,12 +68,20 @@ class B2S_Settings_Item {
|
|
76 |
|
77 |
$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>';
|
78 |
$content .= '<br>';
|
|
|
|
|
79 |
foreach (unserialize(B2S_PLUGIN_SHORTENER) as $id => $name) {
|
80 |
$display_name = '';
|
81 |
if(isset($this->settings->shortener_data) && is_array($this->settings->shortener_data) && !empty($this->settings->shortener_data)) {
|
82 |
foreach ($this->settings->shortener_data as $shortenerObject) {
|
83 |
if(isset($shortenerObject->provider_id) && $shortenerObject->provider_id == $id && isset($shortenerObject->display_name)) {
|
84 |
-
$display_name = $shortenerObject->display_name;
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
}
|
86 |
}
|
87 |
}
|
@@ -89,7 +89,7 @@ class B2S_Settings_Item {
|
|
89 |
$content .='<span class="b2s-user-network-shortener-account-area" data-provider-id="'.$id.'">';
|
90 |
$content .='<input type="hidden" class="b2s-user-network-shortener-state" data-provider-id="'.$id.'" value="' . ((!empty($display_name)) ? 1 : 0) . '"/>';
|
91 |
$content .='<span class="b2s-user-network-shortener-connect" data-provider-id="'.$id.'" style="display:' . ((empty($display_name)) ? 'inline-block' : 'none') . ';" ><a href="#" class="b2s-shortener-account-connect-btn" data-provider-id="'.$id.'" onclick="wopShortener(\'' . $this->authUrl . '&provider_id='.$id.'\', \'Blog2Social Network\'); return false;"> ' . esc_html__('authorize', 'blog2social') . '</a> </span>';
|
92 |
-
$content .=' <span class="b2s-user-network-shortener-account-detail" data-provider-id="'.$id.'" style="display:' . ((!empty($display_name)) ? 'inline-block' : 'none') . ';">(
|
93 |
$content .='</span>';
|
94 |
$content .= '<br>';
|
95 |
}
|
@@ -109,185 +109,6 @@ class B2S_Settings_Item {
|
|
109 |
return $content;
|
110 |
}
|
111 |
|
112 |
-
public function getAutoPostingSettingsHtml() {
|
113 |
-
|
114 |
-
$optionAutoPost = $this->options->_getOption('auto_post');
|
115 |
-
$optionAutoPostImport = $this->options->_getOption('auto_post_import');
|
116 |
-
|
117 |
-
$isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? ' <span class="label label-success label-sm">' . esc_html__("SMART", "blog2social") . '</span>' : '';
|
118 |
-
$versionType = unserialize(B2S_PLUGIN_VERSION_TYPE);
|
119 |
-
$limit = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
|
120 |
-
$autoPostActive = (isset($optionAutoPost['active'])) ? (((int) $optionAutoPost['active'] > 0) ? true : false) : (((isset($optionAutoPost['publish']) && !empty($optionAutoPost['publish'])) || (isset($optionAutoPost['update']) && !empty($optionAutoPost['update']))) ? true : false);
|
121 |
-
$autoPostImportActive = (isset($optionAutoPostImport['active']) && (int) $optionAutoPostImport['active'] == 1) ? true : false;
|
122 |
-
|
123 |
-
$content = '';
|
124 |
-
$content .='<div class="panel panel-group b2s-auto-post-own-general-warning"><div class="panel-body">';
|
125 |
-
$content .='<span class="glyphicon glyphicon-exclamation-sign glyphicon-warning"></span> ' . esc_html__('Auto-posts for Facebook Profiles will be shown in the "Instant Sharing" tab on your "Posts & Sharing" navigation bar and can be shared on your Facebook Profile by clicking on the "Share" button next to your auto-post.', 'blog2social');
|
126 |
-
$content .='</div>';
|
127 |
-
$content .='</div>';
|
128 |
-
$content .='<h4 class="b2s-auto-post-header">' . esc_html__('Autoposter', 'blog2social') . '</h4><a target="_blank" href="'.B2S_Tools::getSupportLink('auto_post_manuell').'">Info</a>';
|
129 |
-
$content .='<p class="b2s-bold">' . esc_html__('Set up your autoposter to automatically share your new or updated posts, pages and custom post types on your social media channels.', 'blog2social') . '</p>';
|
130 |
-
$content .='<form id = "b2s-user-network-settings-auto-post-own" method = "post">';
|
131 |
-
$content .='<div class="' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
132 |
-
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="ON" data-off="OFF" ' . (($autoPostActive) ? 'checked' : '') . ' name="b2s-manuell-auto-post" class="b2s-auto-post-area-toggle" data-area-type="manuell" value="1" type="checkbox">';
|
133 |
-
$content .='</div>';
|
134 |
-
$content .='<div class="b2s-auto-post-area" data-area-type="manuell"'.(($autoPostActive) ? '' : ' style="display:none;"').'>';
|
135 |
-
$content .='<br>';
|
136 |
-
$content .='<div class="' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
137 |
-
$content .='<div class="alert alert-danger b2s-auto-post-error" data-error-reason="no-auth-in-mandant" style="display:none;">' . esc_html__('There are no social network accounts assigned to your selected network collection. Please assign at least one social network account or select another network collection.', 'blog2social') . '<a href="' . esc_url(((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/') . 'wp-admin/admin.php?page=blog2social-network') . '" target="_bank">' . esc_html__('Network settings', 'blog2social') . '</a></div>';
|
138 |
-
$content .='<p class="b2s-bold">' . esc_html__('Select your preferred network collection for autoposting. This collection defines the social media accounts on which the autoposter will share your social media posts automatically.', 'blog2social') . '</p>';
|
139 |
-
$content .= $this->getMandantSelect((isset($optionAutoPost['profile']) ? $optionAutoPost['profile'] : 0), (isset($optionAutoPost['twitter']) ? $optionAutoPost['twitter'] : 0));
|
140 |
-
$content .='</div>';
|
141 |
-
$content .='<br>';
|
142 |
-
$content .='<div class="alert alert-danger b2s-auto-post-error" data-error-reason="no-post-type" style="display:none;">'.esc_html__('Please select a post type', 'blog2social').'</div>';
|
143 |
-
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
144 |
-
$content .='<div class="col-xs-12 col-md-2">';
|
145 |
-
$content .='<label class="b2s-auto-post-publish-label">' . esc_html__('new posts', 'blog2social') . '</label>';
|
146 |
-
$content .='<br><small><button class="btn btn-link btn-xs hidden-xs b2s-post-type-select-btn" data-post-type="publish" data-select-toogle-state="0" data-select-toogle-name="' . esc_attr__('Unselect all', 'blog2social') . '">' . esc_html__('Select all', 'blog2social') . '</button></small>';
|
147 |
-
$content .='</div>';
|
148 |
-
$content .='<div class="col-xs-12 col-md-6">';
|
149 |
-
$content .= $this->getPostTypesHtml($optionAutoPost);
|
150 |
-
$content .='</div>';
|
151 |
-
$content .='</div>';
|
152 |
-
$content .='<br>';
|
153 |
-
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
154 |
-
$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>';
|
155 |
-
$content .='<div class"clearfix"></div>';
|
156 |
-
$content .='<div class="col-xs-12 col-md-2">';
|
157 |
-
$content .='<label class="b2s-auto-post-update-label">' . esc_html__('updating existing posts', 'blog2social') . '</label>';
|
158 |
-
$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>';
|
159 |
-
$content .='</div>';
|
160 |
-
$content .='<div class="col-xs-12 col-md-6">';
|
161 |
-
$content .= $this->getPostTypesHtml($optionAutoPost, 'update');
|
162 |
-
$content .='</div>';
|
163 |
-
$content .='</div>';
|
164 |
-
$content .='<br>';
|
165 |
-
$content .='<div class="row ' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
166 |
-
$content .='<div class="col-md-12">';
|
167 |
-
$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>';
|
168 |
-
$content .='</div>';
|
169 |
-
$content .='</div>';
|
170 |
-
$content .='</div>';
|
171 |
-
$content .='<br>';
|
172 |
-
$content .='<hr>';
|
173 |
-
$content .='<h4 class="b2s-auto-post-header">' . esc_html__('Autoposter for Imported Posts', 'blog2social') . '</h4><a target="_blank" href="'.B2S_Tools::getSupportLink('auto_post_import').'">Info</a>';
|
174 |
-
$content .='<p class="b2s-bold">' . esc_html__('Set up your autoposter to automatically share your imported posts, pages and custom post types on your social media channels.', 'blog2social') . '</p>';
|
175 |
-
$content .='<p>' . esc_html__('Your current license:', 'blog2social') . '<span class="b2s-key-name"> ' . $versionType[B2S_PLUGIN_USER_VERSION] . '</span> ';
|
176 |
-
if (B2S_PLUGIN_USER_VERSION == 0) {
|
177 |
-
$content .='<br>' . esc_html__('Immediate Cross-Posting across all networks: Share an unlimited number of posts', 'blog2social') . '<br>';
|
178 |
-
$content .=esc_html__('Scheduled Auto-Posting', 'blog2social') . ': <a class="b2s-info-btn" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '" target="_blank">' . esc_html__('Upgrade', 'blog2social') . '</a>';
|
179 |
-
} else {
|
180 |
-
$content .='(' . esc_html__('share up to', 'blog2social') . ' ' . esc_html($limit[B2S_PLUGIN_USER_VERSION]) . ((B2S_PLUGIN_USER_VERSION >= 2) ? ' ' . esc_html__('posts per day, Google My Business max. 10 posts per day', 'blog2social') : '') . ') ';
|
181 |
-
$content .='<a class="b2s-info-btn" href="' . esc_html(B2S_Tools::getSupportLink('affiliate')) . '" target="_blank">' . esc_html__('Upgrade', 'blog2social') . '</a>';
|
182 |
-
}
|
183 |
-
$content .='</p>';
|
184 |
-
$content .='<br>';
|
185 |
-
$content .='<div class="' . (!empty($isPremium) ? 'b2s-btn-disabled' : '') . '">';
|
186 |
-
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="ON" data-off="OFF" ' . (($autoPostImportActive) ? 'checked' : '') . ' name="b2s-import-auto-post" class="b2s-auto-post-area-toggle" data-area-type="import" value="1" type="checkbox">';
|
187 |
-
$content .='<div class="b2s-auto-post-area" data-area-type="import"'.(($autoPostImportActive) ? '' : ' style="display:none;"').'>';
|
188 |
-
$content .='<br><br>';
|
189 |
-
$content .='<div class="alert alert-danger b2s-auto-post-error" data-error-reason="import-no-auth" style="display:none;">'.esc_html__('Please select a social media network', 'blog2social').'</div>';
|
190 |
-
$content .='<p class="b2s-bold">' . esc_html__('Available networks to select your auto-post connecitons:', 'blog2social') . '</p>';
|
191 |
-
$content .='<div class="b2s-network-tos-auto-post-import-warning"><div class="alert alert-danger">' . esc_html__('In accordance with the new Twitter TOS, one Twitter account can be selected as your primary Twitter account for auto-posting.', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('network_tos_faq_032018')) . '" target="_blank">' . esc_html__('More information', 'blog2social') . '</a></div></div>';
|
192 |
-
$content .= $this->getNetworkAutoPostData($optionAutoPostImport);
|
193 |
-
$content .='<p class="b2s-bold">' . esc_html__('Select to auto-post immediately after publishing or with a delay', 'blog2social') . '</p>';
|
194 |
-
$content .='<input id="b2s-import-auto-post-time-now" name="b2s-import-auto-post-time-state" ' . (((isset($optionAutoPostImport['ship_state']) && (int) $optionAutoPostImport['ship_state'] == 0) || !isset($optionAutoPostImport['ship_state'])) ? 'checked' : '') . ' value="0" type="radio"><label for="b2s-import-auto-post-time-now">' . esc_html__('immediately', 'blog2social') . '</label><br>';
|
195 |
-
$content .='<input id="b2s-import-auto-post-time-delay" name="b2s-import-auto-post-time-state" value="1" ' . ((isset($optionAutoPostImport['ship_state']) && (int) $optionAutoPostImport['ship_state'] == 1) ? 'checked' : '') . ' type="radio"><label for="b2s-import-auto-post-time-delay">' . esc_html__('publish with a delay of', 'blog2social');
|
196 |
-
$content .=' <input type="number" maxlength="2" max="10" min="1" class="b2s-input-text-size-45" name="b2s-import-auto-post-time-data" value="' . esc_attr((isset($optionAutoPostImport['ship_delay_time']) ? $optionAutoPostImport['ship_delay_time'] : 1)) . '" placeholder="1" > (1-10) ' . esc_html__('minutes', 'blog2social') . '</label>';
|
197 |
-
$content .='<br>';
|
198 |
-
$content .= $this->getChosenPostTypesData($optionAutoPostImport);
|
199 |
-
$content .='</div>';
|
200 |
-
$content .= '<input type="hidden" name="action" value="b2s_user_network_settings">';
|
201 |
-
$content .= '<input type="hidden" name="type" value="auto_post">';
|
202 |
-
$content .='</div>';
|
203 |
-
$content .='</form>';
|
204 |
-
if (B2S_PLUGIN_USER_VERSION > 0) {
|
205 |
-
$content .= '<button class="pull-right btn btn-primary btn-sm" id="b2s-auto-post-settings-btn" type="submit">';
|
206 |
-
} else {
|
207 |
-
$content .= '<button class="pull-right btn btn-primary btn-sm b2s-btn-disabled b2s-save-settings-pro-info b2sInfoAutoPosterMModalBtn">';
|
208 |
-
}
|
209 |
-
$content .= esc_html__('Save', 'blog2social') . '</button>';
|
210 |
-
|
211 |
-
return $content;
|
212 |
-
}
|
213 |
-
|
214 |
-
private function getChosenPostTypesData($data = array()) {
|
215 |
-
|
216 |
-
$html = '';
|
217 |
-
if (is_array($this->postTypesData) && !empty($this->postTypesData)) {
|
218 |
-
$html .='<br>';
|
219 |
-
$html .='<p><b><input value="1" ' . ((isset($data['post_filter']) && (int) $data['post_filter'] == 1) ? 'checked' : '') . ' name="b2s-import-auto-post-filter" type="checkbox"> ' . esc_html__('Filter Posts (Only posts that meet the following criteria will be autoposted)', 'blog2social') . '</b></p>';
|
220 |
-
$html .='<p>' . esc_html__('Post Types', 'blog2social');
|
221 |
-
$html .=' <input id="b2s-import-auto-post-type-state-include" name="b2s-import-auto-post-type-state" value="0" ' . (((isset($data['post_type_state']) && (int) $data['post_type_state'] == 0) || !isset($data['post_type_state'])) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
222 |
-
$html .='<input id="b2s-import-auto-post-type-state-exclude" name="b2s-import-auto-post-type-state" value="1" ' . ((isset($data['post_type_state']) && (int) $data['post_type_state'] == 1) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
223 |
-
$html .='</p>';
|
224 |
-
$html .='<select name="b2s-import-auto-post-type-data[]" data-placeholder="Select Post Types" class="b2s-import-auto-post-type" multiple>';
|
225 |
-
|
226 |
-
$selected = (is_array($data['post_type']) && isset($data['post_type'])) ? $data['post_type'] : array();
|
227 |
-
|
228 |
-
foreach ($this->postTypesData as $k => $v) {
|
229 |
-
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
230 |
-
$selItem = (in_array($v, $selected)) ? 'selected' : '';
|
231 |
-
$html .= '<option ' . $selItem . ' value="' . esc_attr($v) . '">' . esc_html($v) . '</option>';
|
232 |
-
}
|
233 |
-
}
|
234 |
-
|
235 |
-
$html .='</select>';
|
236 |
-
}
|
237 |
-
return $html;
|
238 |
-
}
|
239 |
-
|
240 |
-
private function getNetworkAutoPostData($data = array()) {
|
241 |
-
$html = '';
|
242 |
-
if (!empty($this->networkAutoPostData)) {
|
243 |
-
$selected = (is_array($data['network_auth_id']) && isset($data['network_auth_id'])) ? $data['network_auth_id'] : array();
|
244 |
-
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
245 |
-
$html .= '<ul class="list-group b2s-network-details-container-list">';
|
246 |
-
foreach ($this->networkAutoPostData as $k => $v) {
|
247 |
-
if ($v == 18 && B2S_PLUGIN_USER_VERSION <= 1) {
|
248 |
-
continue;
|
249 |
-
}
|
250 |
-
$maxNetworkAccount = ($this->networkAuthCount !== false && is_array($this->networkAuthCount)) ? ((isset($this->networkAuthCount[$v])) ? $this->networkAuthCount[$v] : $this->networkAuthCount[0]) : false;
|
251 |
-
$html .='<li class="list-group-item">';
|
252 |
-
$html .='<div class="media">';
|
253 |
-
$html .='<img class="pull-left hidden-xs b2s-img-network" alt="' . esc_attr($networkName[$v]) . '" src="' . plugins_url('/assets/images/portale/' . $v . '_flat.png', B2S_PLUGIN_FILE) . '">';
|
254 |
-
$html .='<div class="media-body network">';
|
255 |
-
$html .='<h4>' . esc_html(ucfirst($networkName[$v]));
|
256 |
-
if ($maxNetworkAccount !== false) {
|
257 |
-
$html .=' <span class="b2s-network-auth-count">(' . esc_html__("Connections", "blog2social") . ' <span class="b2s-network-auth-count-current" data-network-count-trigger="true" data-network-id="' . esc_attr($v) . '"></span>/' . esc_html($maxNetworkAccount) . ')</span>';
|
258 |
-
}
|
259 |
-
$html .=' <a href="admin.php?page=blog2social-network" class="b2s-info-btn">' . esc_html__('add/change connection', 'blog2social') . '</a>';
|
260 |
-
$html .='</h4>';
|
261 |
-
$html .= '<ul class="b2s-network-item-auth-list" data-network-id="' . esc_attr($v) . '" data-network-count="true" >';
|
262 |
-
if (!empty($this->networkAuthData)) {
|
263 |
-
foreach ($this->networkAuthData as $i => $t) {
|
264 |
-
if ($v == $t->networkId) {
|
265 |
-
$html .= '<li class="b2s-network-item-auth-list-li" data-network-auth-id="' . esc_attr($t->networkAuthId) . '" data-network-id="' . esc_attr($t->networkId) . '" data-network-type="0">';
|
266 |
-
$networkType = ((int) $t->networkType == 0 ) ? __('Profile', 'blog2social') : __('Page', 'blog2social');
|
267 |
-
if ($t->notAllow !== false) {
|
268 |
-
$html .='<span class="glyphicon glyphicon-remove-circle glyphicon-danger"></span> <span class="not-allow">' . esc_html($networkType) . ': ' . esc_html(stripslashes($t->networkUserName)) . '</span> ';
|
269 |
-
} else {
|
270 |
-
$selItem = (in_array($t->networkAuthId, $selected)) ? 'checked' : '';
|
271 |
-
$html .= '<input id="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '" class="b2s-network-tos-check" data-network-id="' . esc_attr($t->networkId) . '" ' . $selItem . ' value="' . esc_attr($t->networkAuthId) . '" name="b2s-import-auto-post-network-auth-id[]" type="checkbox"> <label for="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '">' . esc_html($networkType) . ': ' . esc_html(stripslashes($t->networkUserName)) . '</label>';
|
272 |
-
}
|
273 |
-
$html .= '</li>';
|
274 |
-
}
|
275 |
-
}
|
276 |
-
}
|
277 |
-
|
278 |
-
$html .= '</ul>';
|
279 |
-
$html .='</div>';
|
280 |
-
$html .='</div>';
|
281 |
-
$html .='</li>';
|
282 |
-
}
|
283 |
-
|
284 |
-
$html .= '</ul>';
|
285 |
-
}
|
286 |
-
|
287 |
-
|
288 |
-
return $html;
|
289 |
-
}
|
290 |
-
|
291 |
public function getSocialMetaDataHtml() {
|
292 |
|
293 |
$og = $this->generalOptions->_getOption('og_active');
|
@@ -465,50 +286,4 @@ class B2S_Settings_Item {
|
|
465 |
return $content;
|
466 |
}
|
467 |
|
468 |
-
private function getPostTypesHtml($selected = array(), $type = 'publish') {
|
469 |
-
$content = '';
|
470 |
-
$selected = (is_array($selected) && isset($selected[$type])) ? $selected[$type] : array();
|
471 |
-
if (is_array($this->postTypesData) && !empty($this->postTypesData)) {
|
472 |
-
foreach ($this->postTypesData as $k => $v) {
|
473 |
-
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
474 |
-
$selItem = (in_array($v, $selected)) ? 'checked' : '';
|
475 |
-
$content .= ' <div class="b2s-post-type-list"><input id="b2s-post-type-item-' . esc_attr($type) . '-' . esc_attr($v) . '" class="b2s-post-type-item-' . $type . '" value="' . esc_attr($v) . '" name="b2s-settings-auto-post-' . $type . '[]" type="checkbox" ' . $selItem . '><label for="b2s-post-type-item-' . $type . '-' . $v . '"> ' . esc_html($v) . '</label></div>';
|
476 |
-
}
|
477 |
-
}
|
478 |
-
}
|
479 |
-
return $content;
|
480 |
-
}
|
481 |
-
|
482 |
-
private function getMandantSelect($mandantId = 0, $twitterId = 0) {
|
483 |
-
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getProfileUserAuth', 'token' => B2S_PLUGIN_TOKEN)));
|
484 |
-
if (isset($result->result) && (int) $result->result == 1 && isset($result->data) && !empty($result->data) && isset($result->data->mandant) && isset($result->data->auth) && !empty($result->data->mandant) && !empty($result->data->auth)) {
|
485 |
-
$mandant = $result->data->mandant;
|
486 |
-
$auth = $result->data->auth;
|
487 |
-
$authContent = '';
|
488 |
-
$content = '<div class="row"><div class="col-md-3 b2s-auto-post-profile"><label for="b2s-auto-post-profil-dropdown">' . esc_html__('Select network collection:', 'blog2social') . '</label>
|
489 |
-
<select class="b2s-w-100" id="b2s-auto-post-profil-dropdown" name="b2s-auto-post-profil-dropdown">';
|
490 |
-
foreach ($mandant as $k => $m) {
|
491 |
-
$content .= '<option value="' . esc_attr($m->id) . '" '.(((int) $m->id == (int) $mandantId) ? 'selected' : '').'>' . esc_html((($m->id == 0) ? __($m->name, 'blog2social') : $m->name)) . '</option>';
|
492 |
-
$profilData = (isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0])) ? json_encode($auth->{$m->id}) : '';
|
493 |
-
$authContent .= "<input type='hidden' id='b2s-auto-post-profil-data-" . esc_attr($m->id) . "' value='" . base64_encode($profilData) . "'/>";
|
494 |
-
}
|
495 |
-
$content .= '</select><div class="pull-right"><a href="' . esc_url(get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/') . 'wp-admin/admin.php?page=blog2social-network') . '" target="_blank">' . esc_html__('Network settings', 'blog2social') . '</a></div></div>';
|
496 |
-
$content .= $authContent;
|
497 |
-
|
498 |
-
//TOS Twitter 032018 - none multiple Accounts - User select once
|
499 |
-
$content .='<div class="col-md-3 b2s-auto-post-twitter-profile"><label for="b2s-auto-post-profil-dropdown-twitter">' . esc_html__('Select Twitter profile:', 'blog2social') . '</label> <select class="b2s-w-100" id="b2s-auto-post-profil-dropdown-twitter" name="b2s-auto-post-profil-dropdown-twitter">';
|
500 |
-
foreach ($mandant as $k => $m) {
|
501 |
-
if ((isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0]))) {
|
502 |
-
foreach ($auth->{$m->id} as $key => $value) {
|
503 |
-
if ($value->networkId == 2) {
|
504 |
-
$content .= '<option data-mandant-id="' . esc_attr($m->id) . '" value="' . esc_attr($value->networkAuthId) . '" '.(((int) $value->networkAuthId == (int) $twitterId) ? 'selected' : '').'>' . esc_html($value->networkUserName) . '</option>';
|
505 |
-
}
|
506 |
-
}
|
507 |
-
}
|
508 |
-
}
|
509 |
-
$content .= '</select><div class="pull-right"><a href="#" class="b2sTwitterInfoModalBtn">'.esc_html__('Info', 'blog2social').'</a></div></div></div>';
|
510 |
-
return $content;
|
511 |
-
}
|
512 |
-
}
|
513 |
-
|
514 |
}
|
5 |
private $userSchedTimeData = array();
|
6 |
private $networkData = array();
|
7 |
private $settings = array();
|
|
|
|
|
|
|
8 |
private $lang;
|
9 |
private $allowPage;
|
10 |
private $options;
|
11 |
private $generalOptions;
|
12 |
private $allowGroup;
|
13 |
private $timeInfo;
|
|
|
14 |
private $authUrl;
|
15 |
|
16 |
public function __construct() {
|
21 |
$this->allowPage = unserialize(B2S_PLUGIN_NETWORK_ALLOW_PAGE);
|
22 |
$this->allowGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_GROUP);
|
23 |
$this->timeInfo = unserialize(B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO);
|
|
|
24 |
$this->authUrl = B2S_PLUGIN_API_ENDPOINT_AUTH_SHORTENER . '?b2s_token=' . B2S_PLUGIN_TOKEN . '&sprache=' . substr(B2S_LANGUAGE, 0, 2);
|
25 |
}
|
26 |
|
31 |
if (isset($result->settings) && is_object($result->settings)) {
|
32 |
$this->settings = $result->settings;
|
33 |
}
|
|
|
|
|
|
|
34 |
}
|
35 |
}
|
36 |
|
68 |
|
69 |
$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>';
|
70 |
$content .= '<br>';
|
71 |
+
$content .= '<input type="hidden" id="brandName" value="'.esc_html__('Brand', 'blog2social').'">';
|
72 |
+
$content .= '<input type="hidden" id="campaignName" value="'.esc_html__('Call-to-Action', 'blog2social').'">';
|
73 |
foreach (unserialize(B2S_PLUGIN_SHORTENER) as $id => $name) {
|
74 |
$display_name = '';
|
75 |
if(isset($this->settings->shortener_data) && is_array($this->settings->shortener_data) && !empty($this->settings->shortener_data)) {
|
76 |
foreach ($this->settings->shortener_data as $shortenerObject) {
|
77 |
if(isset($shortenerObject->provider_id) && $shortenerObject->provider_id == $id && isset($shortenerObject->display_name)) {
|
78 |
+
$display_name = esc_html__('Account', 'blog2social') . ': ' . $shortenerObject->display_name;
|
79 |
+
if($shortenerObject->provider_id == 2) { //Sniply
|
80 |
+
$display_name_parts = explode('#SNIP#', $shortenerObject->display_name);
|
81 |
+
if(isset($display_name_parts[0]) && isset($display_name_parts[1])) {
|
82 |
+
$display_name = esc_html__('Brand', 'blog2social') . ': ' . esc_html($display_name_parts[0]) . ' | ' . esc_html__('Call-to-Action', 'blog2social') . ': ' . esc_html($display_name_parts[1]);
|
83 |
+
}
|
84 |
+
}
|
85 |
}
|
86 |
}
|
87 |
}
|
89 |
$content .='<span class="b2s-user-network-shortener-account-area" data-provider-id="'.$id.'">';
|
90 |
$content .='<input type="hidden" class="b2s-user-network-shortener-state" data-provider-id="'.$id.'" value="' . ((!empty($display_name)) ? 1 : 0) . '"/>';
|
91 |
$content .='<span class="b2s-user-network-shortener-connect" data-provider-id="'.$id.'" style="display:' . ((empty($display_name)) ? 'inline-block' : 'none') . ';" ><a href="#" class="b2s-shortener-account-connect-btn" data-provider-id="'.$id.'" onclick="wopShortener(\'' . $this->authUrl . '&provider_id='.$id.'\', \'Blog2Social Network\'); return false;"> ' . esc_html__('authorize', 'blog2social') . '</a> </span>';
|
92 |
+
$content .=' <span class="b2s-user-network-shortener-account-detail" data-provider-id="'.$id.'" style="display:' . ((!empty($display_name)) ? 'inline-block' : 'none') . ';">(<span class="b2s-shortener-account-display-name" data-provider-id="'.$id.'">' . (!empty($display_name) ? esc_html($display_name) : '') . '</span> <a href="#" class="b2s-shortener-account-change-btn" data-provider-id="'.$id.'" onclick="wopShortener(\'' . $this->authUrl . '&provider_id='.$id.'\', \'Blog2Social Network\'); return false;">' . esc_html__('change', 'blog2social') . '</a> | <a href="#" class="b2s-shortener-account-delete-btn" data-provider-id="'.$id.'">' . esc_html__('delete', 'blog2social') . '</a>)</span>';
|
93 |
$content .='</span>';
|
94 |
$content .= '<br>';
|
95 |
}
|
109 |
return $content;
|
110 |
}
|
111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
112 |
public function getSocialMetaDataHtml() {
|
113 |
|
114 |
$og = $this->generalOptions->_getOption('og_active');
|
286 |
return $content;
|
287 |
}
|
288 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
}
|
includes/B2S/Ship/Item.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
class B2S_Ship_Item {
|
4 |
|
5 |
-
private $allowTitleProfile = array(7, 9, 13, 15, 16, 21);
|
6 |
private $allowTitlePage = array();
|
7 |
private $allowTitleGroup = array();
|
8 |
private $setPostFormat = array(1, 2, 3, 12, 19, 17);
|
@@ -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, 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);
|
@@ -136,7 +136,7 @@ class B2S_Ship_Item {
|
|
136 |
$dataString = $wpdb->get_var($sqlGetData);
|
137 |
if ($dataString !== NULL && !empty($dataString)) {
|
138 |
$networkAuthData = unserialize($dataString);
|
139 |
-
if($networkAuthData != false && is_array($networkAuthData) && isset($networkAuthData['url_parameter'][0]['querys']) && !empty($networkAuthData['url_parameter'][0]['querys'])) {
|
140 |
$this->postUrl = B2S_Util::addUrlParameter($this->postUrl, $networkAuthData['url_parameter'][0]['querys']);
|
141 |
}
|
142 |
}
|
@@ -840,11 +840,9 @@ class B2S_Ship_Item {
|
|
840 |
}
|
841 |
|
842 |
private function getHashTagsString($add = "\n\n", $limit = 0) {
|
843 |
-
|
844 |
-
if ($this->postData->post_type
|
845 |
-
$hashTagsData = get_the_terms($this->postId, '
|
846 |
-
} else {
|
847 |
-
$hashTagsData = get_the_tags($this->postId);
|
848 |
}
|
849 |
$hashTags = '';
|
850 |
if (is_array($hashTagsData) && !empty($hashTagsData)) {
|
@@ -914,6 +912,9 @@ class B2S_Ship_Item {
|
|
914 |
$tags .= '<div class="b2s-post-item-details-tag-title"> ' . esc_html__('Hashtags', 'blog2social') .' '. $info.' </div>';
|
915 |
$tags .= '<div class="b2s-post-item-details-tag-input form-inline">';
|
916 |
$posttags = get_the_tags($this->postId);
|
|
|
|
|
|
|
917 |
$countTags = 0;
|
918 |
$limit = false;
|
919 |
if ($posttags && $allowTags) {
|
2 |
|
3 |
class B2S_Ship_Item {
|
4 |
|
5 |
+
private $allowTitleProfile = array(6, 7, 9, 13, 15, 16, 21);
|
6 |
private $allowTitlePage = array();
|
7 |
private $allowTitleGroup = array();
|
8 |
private $setPostFormat = array(1, 2, 3, 12, 19, 17);
|
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);
|
136 |
$dataString = $wpdb->get_var($sqlGetData);
|
137 |
if ($dataString !== NULL && !empty($dataString)) {
|
138 |
$networkAuthData = unserialize($dataString);
|
139 |
+
if(!empty($this->postUrl) && $networkAuthData != false && is_array($networkAuthData) && isset($networkAuthData['url_parameter'][0]['querys']) && !empty($networkAuthData['url_parameter'][0]['querys'])) {
|
140 |
$this->postUrl = B2S_Util::addUrlParameter($this->postUrl, $networkAuthData['url_parameter'][0]['querys']);
|
141 |
}
|
142 |
}
|
840 |
}
|
841 |
|
842 |
private function getHashTagsString($add = "\n\n", $limit = 0) {
|
843 |
+
$hashTagsData = get_the_tags($this->postId);
|
844 |
+
if(($hashTagsData == false || empty($hashTagsData)) && taxonomy_exists($this->postData->post_type . '_tag')) {
|
845 |
+
$hashTagsData = get_the_terms($this->postId, $this->postData->post_type . '_tag');
|
|
|
|
|
846 |
}
|
847 |
$hashTags = '';
|
848 |
if (is_array($hashTagsData) && !empty($hashTagsData)) {
|
912 |
$tags .= '<div class="b2s-post-item-details-tag-title"> ' . esc_html__('Hashtags', 'blog2social') .' '. $info.' </div>';
|
913 |
$tags .= '<div class="b2s-post-item-details-tag-input form-inline">';
|
914 |
$posttags = get_the_tags($this->postId);
|
915 |
+
if(($posttags == false || empty($posttags)) && taxonomy_exists($this->postData->post_type . '_tag')) {
|
916 |
+
$posttags = get_the_terms($this->postId, $this->postData->post_type . '_tag');
|
917 |
+
}
|
918 |
$countTags = 0;
|
919 |
$limit = false;
|
920 |
if ($posttags && $allowTags) {
|
includes/B2S/Ship/Save.php
CHANGED
@@ -230,7 +230,7 @@ class B2S_Ship_Save {
|
|
230 |
|
231 |
$printSchedDate = array();
|
232 |
//mode: once schedule
|
233 |
-
if ($schedData['releaseSelect'] == 1 && is_array($schedData['date']) && isset($schedData['date'][0]) && !empty($schedData['date'][0]) && isset($schedData['time'][0]) && !empty($schedData['time'][0])) {
|
234 |
foreach ($schedData['date'] as $key => $date) {
|
235 |
if (isset($schedData['time'][$key]) && !empty($schedData['time'][$key])) {
|
236 |
//custom sched content
|
230 |
|
231 |
$printSchedDate = array();
|
232 |
//mode: once schedule
|
233 |
+
if (($schedData['releaseSelect'] == 1 || $schedData['releaseSelect'] == 5) && is_array($schedData['date']) && isset($schedData['date'][0]) && !empty($schedData['date'][0]) && isset($schedData['time'][0]) && !empty($schedData['time'][0])) {
|
234 |
foreach ($schedData['date'] as $key => $date) {
|
235 |
if (isset($schedData['time'][$key]) && !empty($schedData['time'][$key])) {
|
236 |
//custom sched content
|
includes/B2S/Support/Check/System.php
CHANGED
@@ -13,7 +13,8 @@ class B2S_Support_Check_System {
|
|
13 |
$this->systemData['PHPCURL'] = array("system" => $this->getPhpCurl(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_PHPCURL, "type" => "active", "name" => "PHP Curl", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
14 |
$this->systemData['PHPDOM'] = array("system" => $this->getPhpDom(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_PHPDOM, "type" => "active", "name" => "PHP Dom", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
15 |
$this->systemData['MYSQLVERSION'] = array("system" => $this->getMysqlVersion(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_MYSQLVERSION, "type" => "version", "name" => "MySql Version", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
16 |
-
|
|
|
17 |
$this->systemData['HOTLINKPROTECTION'] = array("system" => $this->getHotlinkProtection(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_HOTLINKPROTECTION, "type" => "active", "name" => "Hotlink Protection (disabled)", "link" => B2S_Tools::getSupportLink("hotlink_protection"));
|
18 |
$this->systemData['WPJSON'] = array("system" => $this->getWpJson(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_WPJSON, "type" => "active", "name" => "REST API / WP-JSON", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
19 |
$this->systemData['OPENSSL'] = array("system" => $this->getOpenssl(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_OPENSSL, "type" => "active", "name" => "OpenSSL", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
@@ -130,19 +131,20 @@ class B2S_Support_Check_System {
|
|
130 |
return $wpdb->db_version();
|
131 |
}
|
132 |
|
133 |
-
|
|
|
134 |
global $wpdb;
|
135 |
$rights = $wpdb->get_var("SHOW GRANTS");
|
136 |
-
if (isset($rights) && !empty($rights) && (strpos($rights, 'ALL PRIVILEGES') != false || strpos($rights, 'CREATE') != false)) {
|
137 |
return true;
|
138 |
} else {
|
139 |
$tables_count = $wpdb->get_var("SELECT count(*) FROM information_schema.tables WHERE table_name LIKE '{$wpdb->prefix}b2s_%%'");
|
140 |
-
if (isset($tables_count) && !empty($tables_count) && $tables_count >=
|
141 |
return true;
|
142 |
}
|
143 |
}
|
144 |
return false;
|
145 |
-
}
|
146 |
|
147 |
private function getHeartbeat() {
|
148 |
return wp_script_is('heartbeat', 'registered');
|
13 |
$this->systemData['PHPCURL'] = array("system" => $this->getPhpCurl(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_PHPCURL, "type" => "active", "name" => "PHP Curl", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
14 |
$this->systemData['PHPDOM'] = array("system" => $this->getPhpDom(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_PHPDOM, "type" => "active", "name" => "PHP Dom", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
15 |
$this->systemData['MYSQLVERSION'] = array("system" => $this->getMysqlVersion(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_MYSQLVERSION, "type" => "version", "name" => "MySql Version", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
16 |
+
// Since V6.2.0 - disabled check database rights - is checked in install prozess
|
17 |
+
// $this->systemData['DATABASERIGHTS'] = array("system" => $this->getDatabaseRights(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_DATABASERIGHTS, "type" => "active", "name" => "Database Rights", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
18 |
$this->systemData['HOTLINKPROTECTION'] = array("system" => $this->getHotlinkProtection(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_HOTLINKPROTECTION, "type" => "active", "name" => "Hotlink Protection (disabled)", "link" => B2S_Tools::getSupportLink("hotlink_protection"));
|
19 |
$this->systemData['WPJSON'] = array("system" => $this->getWpJson(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_WPJSON, "type" => "active", "name" => "REST API / WP-JSON", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
20 |
$this->systemData['OPENSSL'] = array("system" => $this->getOpenssl(), "req" => B2S_PLUGIN_SYSTEMREQUIREMENT_OPENSSL, "type" => "active", "name" => "OpenSSL", "link" => B2S_Tools::getSupportLink("system_requirements"));
|
131 |
return $wpdb->db_version();
|
132 |
}
|
133 |
|
134 |
+
//Since V6.2.0 - disabled check database rights - is checked in install prozess
|
135 |
+
/*private function getDatabaseRights() {
|
136 |
global $wpdb;
|
137 |
$rights = $wpdb->get_var("SHOW GRANTS");
|
138 |
+
if (isset($rights) && !empty($rights) && (strpos($rights, 'ALL PRIVILEGES') != false || (strpos($rights, 'CREATE') != false && strpos($rights, 'ALTER') != false))) {
|
139 |
return true;
|
140 |
} else {
|
141 |
$tables_count = $wpdb->get_var("SELECT count(*) FROM information_schema.tables WHERE table_name LIKE '{$wpdb->prefix}b2s_%%'");
|
142 |
+
if (isset($tables_count) && !empty($tables_count) && $tables_count >= 8) {
|
143 |
return true;
|
144 |
}
|
145 |
}
|
146 |
return false;
|
147 |
+
}*/
|
148 |
|
149 |
private function getHeartbeat() {
|
150 |
return wp_script_is('heartbeat', 'registered');
|
includes/Loader.php
CHANGED
@@ -44,6 +44,7 @@ class B2S_Loader {
|
|
44 |
define('B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT', serialize(array(19 => array(2 => 3)))); //2=group
|
45 |
define('B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP', serialize(array(6 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')), 8 => array('TYPE' => array(2), 'TITLE' => esc_html__('Edit group settings', 'blog2social')), 15 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify subreddit', 'blog2social')), 19 => array('TYPE' => array(2), 'TITLE' => esc_html__('Modify forum', 'blog2social')), 20 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')))));
|
46 |
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
|
|
47 |
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20, 21)));
|
48 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
49 |
1 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 500), 'content' => '{CONTENT}', 'format' => 0),
|
@@ -74,7 +75,7 @@ class B2S_Loader {
|
|
74 |
define('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF', json_encode(array(16, 18)));
|
75 |
define('B2S_PLUGIN_NETWORK_ANIMATE_GIF', json_encode(array(1 => array(0 => false, 1 => true), 2 => array(0 => false, 1 => true), 3 => array(0 => true, 1 => true), 4 => array(0 => true), 6 => array(0 => true), 7 => array(0 => false), 11 => array(0 => true), 12 => array(0 => false, 1 => false), 14 => array(0 => true), 15 => array(0 => false), 17 => array(0 => false), 19 => array(0 => true, 1 => true), 21 => array(0 => true))));
|
76 |
define('B2S_PLUGIN_NETWORK_META_TAGS', json_encode(array('og' => array(1, 3, 15, 19, 17), 'twitter' => array(2))));
|
77 |
-
define('B2S_PLUGIN_SHORTENER', serialize(array(0 => esc_html__('Bitly', 'blog2social'), 1 => esc_html__('Rebrandly', 'blog2social'))));
|
78 |
|
79 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
80 |
add_action('wp_logout', array($this, 'releaseLocks'));
|
@@ -254,12 +255,12 @@ class B2S_Loader {
|
|
254 |
if (($autoPostCon['count'] < $limitCount) || ($current_user_date != $autoPostCon['last_call_date'])) {
|
255 |
$limit = true;
|
256 |
$count = ($current_user_date != $autoPostCon['last_call_date']) ? 1 : $autoPostCon['count'] + 1;
|
257 |
-
$conData = array('count' => $count, '
|
258 |
}
|
259 |
} else {
|
260 |
$limit = true;
|
261 |
$count = 1;
|
262 |
-
$conData = array('count' => $count, '
|
263 |
}
|
264 |
if (!empty($conData)) {
|
265 |
$options->_setOption('auto_post_import_condition', $conData);
|
@@ -269,11 +270,9 @@ class B2S_Loader {
|
|
269 |
global $wpdb;
|
270 |
$optionPostFormat = $options->_getOption('post_template');
|
271 |
$image_url = wp_get_attachment_url(get_post_thumbnail_id((int) $post->ID));
|
272 |
-
|
273 |
-
if ($
|
274 |
-
$keywords = wp_get_post_terms((int) $post->ID, '
|
275 |
-
} else {
|
276 |
-
$keywords = wp_get_post_tags((int) $post->ID);
|
277 |
}
|
278 |
$url = get_permalink($post->ID);
|
279 |
$title = isset($post->post_title) ? B2S_Util::getTitleByLanguage(strip_tags($post->post_title)) : '';
|
@@ -287,13 +286,6 @@ class B2S_Loader {
|
|
287 |
$time = ($delay == 0) ? "-30 seconds" : "+" . $delay . " minutes";
|
288 |
$sched_date = date('Y-m-d H:i:s', strtotime($time, strtotime($current_user_datetime)));
|
289 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime($time, strtotime($current_utc_datetime)));
|
290 |
-
|
291 |
-
$linkNoCache = $options->_getOption("link_no_cache");
|
292 |
-
if ($linkNoCache == false || !is_array($linkNoCache)) {
|
293 |
-
$fb_linkNoCache = (((int) $linkNoCache > 0) ? 1 : 0);
|
294 |
-
$linkNoCache = array(1 => $fb_linkNoCache, 3 => 1);
|
295 |
-
$options->_setOption("link_no_cache", $linkNoCache);
|
296 |
-
}
|
297 |
$optionUserHashTag = $options->_getOption('user_allow_hashtag');
|
298 |
$allowHashTag = ($optionUserHashTag === false || $optionUserHashTag == 1) ? true : false;
|
299 |
|
@@ -312,11 +304,8 @@ class B2S_Loader {
|
|
312 |
|
313 |
foreach ($autoPostData['network_auth_id'] as $k => $value) {
|
314 |
$networkDetails = $wpdb->get_results($wpdb->prepare("SELECT postNetworkDetails.network_id, postNetworkDetails.network_type, postNetworkDetails.network_display_name FROM {$wpdb->prefix}b2s_posts_network_details AS postNetworkDetails WHERE postNetworkDetails.network_auth_id = %s", $value));
|
315 |
-
|
316 |
-
|
317 |
-
continue;
|
318 |
-
}
|
319 |
-
if ((int) $networkDetails[0]->network_id == 1 || (int) $networkDetails[0]->network_id == 3) {
|
320 |
if (is_array($linkNoCache) && isset($linkNoCache[$networkDetails[0]->network_id]) && (int) $linkNoCache[$networkDetails[0]->network_id] > 0) {
|
321 |
$defaultPostData['no_cache'] = $linkNoCache[$networkDetails[0]->network_id];
|
322 |
}
|
@@ -396,8 +385,10 @@ class B2S_Loader {
|
|
396 |
$post_types = get_post_types(array('public' => true));
|
397 |
if (is_array($post_types) && !empty($post_types)) {
|
398 |
foreach ($post_types as $post_type) {
|
399 |
-
|
400 |
-
|
|
|
|
|
401 |
}
|
402 |
}
|
403 |
}
|
@@ -520,38 +511,30 @@ class B2S_Loader {
|
|
520 |
$user_timezone = isset($_POST['b2s-user-timezone']) ? (int) $_POST['b2s-user-timezone'] : 0;
|
521 |
$current_utc_date = gmdate('Y-m-d H:i:s');
|
522 |
$current_user_date = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($current_utc_date, $user_timezone)));
|
523 |
-
|
524 |
-
//WP User Sched Post + B2S Share NOW FRIST SAVE
|
525 |
$post_date = '';
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
//
|
531 |
-
|
532 |
-
if (isset($_POST['mm']) && isset($_POST['jj']) && isset($_POST['aa']) && isset($_POST['hh']) && isset($_POST['mn']) && isset($_POST['ss'])) {
|
533 |
-
$wp_user_sched_post_date = $_POST['aa'] . '-' . $_POST['mm'] . '-' . $_POST['jj'] . ' ' . $_POST['hh'] . ':' . $_POST['mn'] . ':' . $_POST['ss'];
|
534 |
-
} else {
|
535 |
-
//V5.0.0 Gutenberg Editor
|
536 |
-
$wp_user_sched_post_date = get_the_date('Y-m-d H:i:s', $_POST['post_ID']);
|
537 |
-
}
|
538 |
-
$post_date = date('Y-m-d H:i:s', strtotime($wp_user_sched_post_date));
|
539 |
}
|
|
|
540 |
|
541 |
-
//ShareNow
|
542 |
$sched_type = 3;
|
543 |
$sched_date = $current_user_date;
|
544 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime("-30 seconds", strtotime($current_utc_date)));
|
545 |
$myTimeSettings = false;
|
546 |
-
|
547 |
-
//allow for User Post Date (Schedule)
|
548 |
if (!empty($post_date) && $current_user_date <= $post_date) {
|
549 |
$sched_type = 2;
|
550 |
$sched_date = date('Y-m-d H:i:59', strtotime($post_date));
|
551 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($sched_date, $user_timezone * (-1))));
|
552 |
}
|
553 |
|
554 |
-
//Schedule post for best times
|
555 |
if (isset($_POST['b2s-post-meta-box-sched-select']) && $_POST['b2s-post-meta-box-sched-select'] == 1) {
|
556 |
if (isset($_POST['b2s-post-meta-box-best-time-settings'])) {
|
557 |
$sched_type = 2;
|
@@ -564,11 +547,9 @@ class B2S_Loader {
|
|
564 |
|
565 |
delete_option('B2S_PLUGIN_POST_CONTENT_' . (int) $_POST['post_ID']);
|
566 |
$image_url = wp_get_attachment_url(get_post_thumbnail_id((int) $_POST['post_ID']));
|
567 |
-
|
568 |
-
if (get_post_type((int) $_POST['post_ID'])
|
569 |
-
$keywords = get_the_terms((int) $_POST['post_ID'], '
|
570 |
-
} else {
|
571 |
-
$keywords = get_the_tags((int) $_POST['post_ID']);
|
572 |
}
|
573 |
$url = get_permalink($_POST['post_ID']);
|
574 |
$title = isset($_POST['post_title']) ? B2S_Util::getTitleByLanguage(strip_tags($_POST['post_title']), strtolower($b2sPostLang)) : '';
|
@@ -577,12 +558,6 @@ class B2S_Loader {
|
|
577 |
|
578 |
$options = new B2S_Options((int) $_POST['user_ID']);
|
579 |
$optionPostFormat = $options->_getOption('post_template');
|
580 |
-
$linkNoCache = $options->_getOption("link_no_cache");
|
581 |
-
if ($linkNoCache == false || !is_array($linkNoCache)) {
|
582 |
-
$fb_linkNoCache = (((int) $linkNoCache > 0) ? 1 : 0);
|
583 |
-
$linkNoCache = array(1 => $fb_linkNoCache, 3 => 1);
|
584 |
-
$options->_setOption("link_no_cache", $linkNoCache);
|
585 |
-
}
|
586 |
$optionUserHashTag = $options->_getOption('user_allow_hashtag');
|
587 |
$allowHashTag = ($optionUserHashTag === false || $optionUserHashTag == 1) ? true : false;
|
588 |
|
@@ -623,7 +598,8 @@ class B2S_Loader {
|
|
623 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
624 |
$selectedTwitterProfile = (isset($_POST['b2s-post-meta-box-profil-dropdown-twitter']) && !empty($_POST['b2s-post-meta-box-profil-dropdown-twitter'])) ? (int) $_POST['b2s-post-meta-box-profil-dropdown-twitter'] : '';
|
625 |
foreach ($networkData as $k => $value) {
|
626 |
-
if ((int) $value->networkId == 1 || (int) $value->networkId == 3) {
|
|
|
627 |
if (is_array($linkNoCache) && isset($linkNoCache[$value->networkId]) && (int) $linkNoCache[$value->networkId] > 0) {
|
628 |
$defaultPostData['no_cache'] = $linkNoCache[$value->networkId];
|
629 |
}
|
@@ -781,10 +757,12 @@ class B2S_Loader {
|
|
781 |
}
|
782 |
|
783 |
public function override_plugin_action_links($links) {
|
|
|
784 |
if (defined("B2S_PLUGIN_USER_VERSION") && B2S_PLUGIN_USER_VERSION == 0) {
|
785 |
-
$
|
786 |
-
$links = array_merge($added_link, $links);
|
787 |
}
|
|
|
|
|
788 |
|
789 |
if (!isset($links['deactivate'])) {
|
790 |
return $links;
|
@@ -802,7 +780,7 @@ class B2S_Loader {
|
|
802 |
if (isset($matches[1][0])) {
|
803 |
$links['deactivate'] = sprintf(
|
804 |
'<a id="b2s-deactivate" href="%s">%s</a>', $matches[1][0], // @codingStandardsIgnoreLine
|
805 |
-
|
806 |
);
|
807 |
}
|
808 |
wp_enqueue_style('B2SPOSTBOXCSS');
|
@@ -824,7 +802,7 @@ class B2S_Loader {
|
|
824 |
if (isset($matches[1][0])) {
|
825 |
$links['deactivate'] = sprintf(
|
826 |
'<a id="b2s-deactivate" href="%s">%s</a>', $matches[1][0], // @codingStandardsIgnoreLine
|
827 |
-
|
828 |
);
|
829 |
}
|
830 |
wp_enqueue_style('B2SPOSTBOXCSS');
|
@@ -834,7 +812,7 @@ class B2S_Loader {
|
|
834 |
}
|
835 |
|
836 |
public function defineText() {
|
837 |
-
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'))));
|
838 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
839 |
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company', 'blog2social'), esc_html__('Business', 'blog2social'))));
|
840 |
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' => sprintf(__('The network could not publish your post. Please see <a target="_blank" href="%s">FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
@@ -934,6 +912,8 @@ class B2S_Loader {
|
|
934 |
$subPages[] = add_submenu_page(null, 'B2S Post Notice', 'B2S Post Notice', 'blog2social_access', 'blog2social-notice', array($this, 'b2sPostNotice')); //Error post page since 4.8.0
|
935 |
$subPages[] = add_submenu_page(null, 'B2S Ship', 'B2S Ship', 'blog2social_access', 'blog2social-ship', array($this, 'b2sShip'));
|
936 |
$subPages[] = add_submenu_page(null, 'B2S Curation Drafts', 'B2S Curation Drafts', 'blog2social_access', 'blog2social-curation-draft', array($this, 'b2sCurationDraft'));
|
|
|
|
|
937 |
$subPages[] = add_submenu_page(null, 'PRG Login', 'PRG Login', 'blog2social_access', 'prg-login', array($this, 'prgLogin'));
|
938 |
$subPages[] = add_submenu_page(null, 'PRG Ship', 'PRG Ship', 'blog2social_access', 'prg-ship', array($this, 'prgShip'));
|
939 |
foreach ($subPages as $var) {
|
@@ -1167,6 +1147,56 @@ class B2S_Loader {
|
|
1167 |
}
|
1168 |
}
|
1169 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1170 |
//PageFunktion
|
1171 |
public function prgLogin() {
|
1172 |
wp_enqueue_script('B2SVALIDATEJS');
|
@@ -1409,9 +1439,13 @@ class B2S_Loader {
|
|
1409 |
wp_register_style('B2SCHOSENCSS', plugins_url('assets/lib/chosen/chosen.min.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1410 |
wp_register_style('B2SPLUGINDEACTIVATECSS', plugins_url('assets/css/b2s/wp/plugin-deactivate.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1411 |
wp_register_style('B2SCURATIONDRAFTCSS', plugins_url('assets/css/b2s/curation.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
|
|
|
|
1412 |
|
1413 |
wp_register_script('B2SNETWORKJS', plugins_url('assets/js/b2s/network.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1414 |
wp_register_script('B2SSETTINGSJS', plugins_url('assets/js/b2s/settings.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
|
|
|
|
1415 |
wp_register_script('B2SSTARTJS', plugins_url('assets/js/b2s/start.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1416 |
wp_register_script('B2SPOSTJS', plugins_url('assets/js/b2s/post.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1417 |
wp_register_script('B2SSHIPJS', plugins_url('assets/js/b2s/ship.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
@@ -1480,13 +1514,7 @@ class B2S_Loader {
|
|
1480 |
}
|
1481 |
|
1482 |
global $wpdb;
|
1483 |
-
|
1484 |
-
$sqlDeleteFirst = 'DROP TABLE IF EXISTS `prg_connect_sent`';
|
1485 |
-
$wpdb->query($sqlDeleteFirst);
|
1486 |
-
$sqlDeleteSecond = 'DROP TABLE IF EXISTS `prg_connect_config`';
|
1487 |
-
$wpdb->query($sqlDeleteSecond);
|
1488 |
-
//END Old Plugin
|
1489 |
-
|
1490 |
/*
|
1491 |
* Change Table Names with Prefix
|
1492 |
*/
|
@@ -1710,7 +1738,10 @@ class B2S_Loader {
|
|
1710 |
PRIMARY KEY (`id`),
|
1711 |
INDEX `blog_user_id` (`blog_user_id`), INDEX `post_id` (`post_id`)
|
1712 |
) DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci AUTO_INCREMENT=1;";
|
1713 |
-
|
|
|
|
|
|
|
1714 |
|
1715 |
/*
|
1716 |
* SET SAFETY AUTO-INCREMENT
|
@@ -1723,12 +1754,13 @@ class B2S_Loader {
|
|
1723 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_contact` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1724 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_network_settings` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1725 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_posts_drafts` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1726 |
-
|
|
|
|
|
1727 |
|
1728 |
-
|
1729 |
-
if (is_array($b2sCheckAfter)) {
|
1730 |
$b2sSystem->deactivatePlugin();
|
1731 |
-
wp_die($b2sSystem->getErrorMessage(
|
1732 |
}
|
1733 |
|
1734 |
//Activate Social Meta Tags
|
44 |
define('B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT', serialize(array(19 => array(2 => 3)))); //2=group
|
45 |
define('B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP', serialize(array(6 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')), 8 => array('TYPE' => array(2), 'TITLE' => esc_html__('Edit group settings', 'blog2social')), 15 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify subreddit', 'blog2social')), 19 => array('TYPE' => array(2), 'TITLE' => esc_html__('Modify forum', 'blog2social')), 20 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')))));
|
46 |
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
47 |
+
define('B2S_PLUGIN_RE_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
48 |
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20, 21)));
|
49 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
50 |
1 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 500), 'content' => '{CONTENT}', 'format' => 0),
|
75 |
define('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF', json_encode(array(16, 18)));
|
76 |
define('B2S_PLUGIN_NETWORK_ANIMATE_GIF', json_encode(array(1 => array(0 => false, 1 => true), 2 => array(0 => false, 1 => true), 3 => array(0 => true, 1 => true), 4 => array(0 => true), 6 => array(0 => true), 7 => array(0 => false), 11 => array(0 => true), 12 => array(0 => false, 1 => false), 14 => array(0 => true), 15 => array(0 => false), 17 => array(0 => false), 19 => array(0 => true, 1 => true), 21 => array(0 => true))));
|
77 |
define('B2S_PLUGIN_NETWORK_META_TAGS', json_encode(array('og' => array(1, 3, 15, 19, 17), 'twitter' => array(2))));
|
78 |
+
define('B2S_PLUGIN_SHORTENER', serialize(array(0 => esc_html__('Bitly', 'blog2social'), 1 => esc_html__('Rebrandly', 'blog2social'), 2 => esc_html__('Sniply', 'blog2social'))));
|
79 |
|
80 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
81 |
add_action('wp_logout', array($this, 'releaseLocks'));
|
255 |
if (($autoPostCon['count'] < $limitCount) || ($current_user_date != $autoPostCon['last_call_date'])) {
|
256 |
$limit = true;
|
257 |
$count = ($current_user_date != $autoPostCon['last_call_date']) ? 1 : $autoPostCon['count'] + 1;
|
258 |
+
$conData = array('count' => $count, 'last_call_date' => $current_user_date);
|
259 |
}
|
260 |
} else {
|
261 |
$limit = true;
|
262 |
$count = 1;
|
263 |
+
$conData = array('count' => $count, 'last_call_date' => $current_user_date);
|
264 |
}
|
265 |
if (!empty($conData)) {
|
266 |
$options->_setOption('auto_post_import_condition', $conData);
|
270 |
global $wpdb;
|
271 |
$optionPostFormat = $options->_getOption('post_template');
|
272 |
$image_url = wp_get_attachment_url(get_post_thumbnail_id((int) $post->ID));
|
273 |
+
$keywords = wp_get_post_tags((int) $post->ID);
|
274 |
+
if (($keywords == false || empty($keywords)) && taxonomy_exists($post->post_type . '_tag')) {
|
275 |
+
$keywords = wp_get_post_terms((int) $post->ID, $post->post_type . '_tag');
|
|
|
|
|
276 |
}
|
277 |
$url = get_permalink($post->ID);
|
278 |
$title = isset($post->post_title) ? B2S_Util::getTitleByLanguage(strip_tags($post->post_title)) : '';
|
286 |
$time = ($delay == 0) ? "-30 seconds" : "+" . $delay . " minutes";
|
287 |
$sched_date = date('Y-m-d H:i:s', strtotime($time, strtotime($current_user_datetime)));
|
288 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime($time, strtotime($current_utc_datetime)));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
289 |
$optionUserHashTag = $options->_getOption('user_allow_hashtag');
|
290 |
$allowHashTag = ($optionUserHashTag === false || $optionUserHashTag == 1) ? true : false;
|
291 |
|
304 |
|
305 |
foreach ($autoPostData['network_auth_id'] as $k => $value) {
|
306 |
$networkDetails = $wpdb->get_results($wpdb->prepare("SELECT postNetworkDetails.network_id, postNetworkDetails.network_type, postNetworkDetails.network_display_name FROM {$wpdb->prefix}b2s_posts_network_details AS postNetworkDetails WHERE postNetworkDetails.network_auth_id = %s", $value));
|
307 |
+
if ((int) $networkDetails[0]->network_id == 1 || (int) $networkDetails[0]->network_id == 3 || (int) $networkDetails[0]->network_id == 19) {
|
308 |
+
$linkNoCache = B2S_Tools::getNoCacheData((int) $post->post_author);
|
|
|
|
|
|
|
309 |
if (is_array($linkNoCache) && isset($linkNoCache[$networkDetails[0]->network_id]) && (int) $linkNoCache[$networkDetails[0]->network_id] > 0) {
|
310 |
$defaultPostData['no_cache'] = $linkNoCache[$networkDetails[0]->network_id];
|
311 |
}
|
385 |
$post_types = get_post_types(array('public' => true));
|
386 |
if (is_array($post_types) && !empty($post_types)) {
|
387 |
foreach ($post_types as $post_type) {
|
388 |
+
if ($post_type != 'attachment' && $post_type != 'nav_menu_item') {
|
389 |
+
add_meta_box('b2s-post-meta-box-auto', esc_html__('Blog2Social: Autoposter', 'blog2social'), array($this, 'b2s_view_post_box'), $post_type, 'side', 'high');
|
390 |
+
add_meta_box('b2s-post-box-calendar-header', esc_html__('Blog2Social: Social Media Content Calendar', 'blog2social'), array($this, 'b2s_view_post_box_calendar'), $post_type, 'normal', 'high');
|
391 |
+
}
|
392 |
}
|
393 |
}
|
394 |
}
|
511 |
$user_timezone = isset($_POST['b2s-user-timezone']) ? (int) $_POST['b2s-user-timezone'] : 0;
|
512 |
$current_utc_date = gmdate('Y-m-d H:i:s');
|
513 |
$current_user_date = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($current_utc_date, $user_timezone)));
|
|
|
|
|
514 |
$post_date = '';
|
515 |
+
//WP User Sched Post + B2S Share NOW
|
516 |
+
if (isset($_POST['mm']) && isset($_POST['jj']) && isset($_POST['aa']) && isset($_POST['hh']) && isset($_POST['mn']) && isset($_POST['ss'])) {
|
517 |
+
$wp_user_sched_post_date = $_POST['aa'] . '-' . $_POST['mm'] . '-' . $_POST['jj'] . ' ' . $_POST['hh'] . ':' . $_POST['mn'] . ':' . $_POST['ss'];
|
518 |
+
} else {
|
519 |
+
//V5.0.0 Gutenberg Editor
|
520 |
+
$wp_user_sched_post_date = get_the_date('Y-m-d H:i:s', $_POST['post_ID']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
}
|
522 |
+
$post_date = date('Y-m-d H:i:s', strtotime($wp_user_sched_post_date));
|
523 |
|
524 |
+
//ShareNow
|
525 |
$sched_type = 3;
|
526 |
$sched_date = $current_user_date;
|
527 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime("-30 seconds", strtotime($current_utc_date)));
|
528 |
$myTimeSettings = false;
|
529 |
+
|
530 |
+
//allow for User Post Date (Schedule)
|
531 |
if (!empty($post_date) && $current_user_date <= $post_date) {
|
532 |
$sched_type = 2;
|
533 |
$sched_date = date('Y-m-d H:i:59', strtotime($post_date));
|
534 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($sched_date, $user_timezone * (-1))));
|
535 |
}
|
536 |
|
537 |
+
//Schedule post for best times
|
538 |
if (isset($_POST['b2s-post-meta-box-sched-select']) && $_POST['b2s-post-meta-box-sched-select'] == 1) {
|
539 |
if (isset($_POST['b2s-post-meta-box-best-time-settings'])) {
|
540 |
$sched_type = 2;
|
547 |
|
548 |
delete_option('B2S_PLUGIN_POST_CONTENT_' . (int) $_POST['post_ID']);
|
549 |
$image_url = wp_get_attachment_url(get_post_thumbnail_id((int) $_POST['post_ID']));
|
550 |
+
$keywords = get_the_tags((int) $_POST['post_ID']);
|
551 |
+
if (($keywords == false || empty($keywords)) && taxonomy_exists(get_post_type((int) $_POST['post_ID']) . '_tag')) {
|
552 |
+
$keywords = get_the_terms((int) $_POST['post_ID'], get_post_type((int) $_POST['post_ID']) . '_tag');
|
|
|
|
|
553 |
}
|
554 |
$url = get_permalink($_POST['post_ID']);
|
555 |
$title = isset($_POST['post_title']) ? B2S_Util::getTitleByLanguage(strip_tags($_POST['post_title']), strtolower($b2sPostLang)) : '';
|
558 |
|
559 |
$options = new B2S_Options((int) $_POST['user_ID']);
|
560 |
$optionPostFormat = $options->_getOption('post_template');
|
|
|
|
|
|
|
|
|
|
|
|
|
561 |
$optionUserHashTag = $options->_getOption('user_allow_hashtag');
|
562 |
$allowHashTag = ($optionUserHashTag === false || $optionUserHashTag == 1) ? true : false;
|
563 |
|
598 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
599 |
$selectedTwitterProfile = (isset($_POST['b2s-post-meta-box-profil-dropdown-twitter']) && !empty($_POST['b2s-post-meta-box-profil-dropdown-twitter'])) ? (int) $_POST['b2s-post-meta-box-profil-dropdown-twitter'] : '';
|
600 |
foreach ($networkData as $k => $value) {
|
601 |
+
if ((int) $value->networkId == 1 || (int) $value->networkId == 3 || (int) $value->networkId == 19) {
|
602 |
+
$linkNoCache = B2S_Tools::getNoCacheData((int) $_POST['user_ID']);
|
603 |
if (is_array($linkNoCache) && isset($linkNoCache[$value->networkId]) && (int) $linkNoCache[$value->networkId] > 0) {
|
604 |
$defaultPostData['no_cache'] = $linkNoCache[$value->networkId];
|
605 |
}
|
757 |
}
|
758 |
|
759 |
public function override_plugin_action_links($links) {
|
760 |
+
$premium = array();
|
761 |
if (defined("B2S_PLUGIN_USER_VERSION") && B2S_PLUGIN_USER_VERSION == 0) {
|
762 |
+
$premium = array('<a target="_blank" style="color: rgba(10, 154, 62, 1); font-weight: bold; font-size: 13px;" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>');
|
|
|
763 |
}
|
764 |
+
/* Settings & Support */
|
765 |
+
$links = array_merge($premium, array('settings' => sprintf('<a href="%s">%s</a>', 'admin.php?page=blog2social-settings', esc_html__('Settings', 'blog2social'))), array('support' => sprintf('<a href="%s">%s</a>', 'admin.php?page=blog2social-support', esc_html__('Support', 'blog2social'))), $links);
|
766 |
|
767 |
if (!isset($links['deactivate'])) {
|
768 |
return $links;
|
780 |
if (isset($matches[1][0])) {
|
781 |
$links['deactivate'] = sprintf(
|
782 |
'<a id="b2s-deactivate" href="%s">%s</a>', $matches[1][0], // @codingStandardsIgnoreLine
|
783 |
+
esc_html__('Deactivate')
|
784 |
);
|
785 |
}
|
786 |
wp_enqueue_style('B2SPOSTBOXCSS');
|
802 |
if (isset($matches[1][0])) {
|
803 |
$links['deactivate'] = sprintf(
|
804 |
'<a id="b2s-deactivate" href="%s">%s</a>', $matches[1][0], // @codingStandardsIgnoreLine
|
805 |
+
esc_html__('Network Deactivate')
|
806 |
);
|
807 |
}
|
808 |
wp_enqueue_style('B2SPOSTBOXCSS');
|
812 |
}
|
813 |
|
814 |
public function defineText() {
|
815 |
+
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>')));
|
816 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
817 |
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company', 'blog2social'), esc_html__('Business', 'blog2social'))));
|
818 |
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' => sprintf(__('The network could not publish your post. Please see <a target="_blank" href="%s">FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
912 |
$subPages[] = add_submenu_page(null, 'B2S Post Notice', 'B2S Post Notice', 'blog2social_access', 'blog2social-notice', array($this, 'b2sPostNotice')); //Error post page since 4.8.0
|
913 |
$subPages[] = add_submenu_page(null, 'B2S Ship', 'B2S Ship', 'blog2social_access', 'blog2social-ship', array($this, 'b2sShip'));
|
914 |
$subPages[] = add_submenu_page(null, 'B2S Curation Drafts', 'B2S Curation Drafts', 'blog2social_access', 'blog2social-curation-draft', array($this, 'b2sCurationDraft'));
|
915 |
+
$subPages[] = add_submenu_page(null, 'B2S Autoposter', 'B2S Autoposter', 'blog2social_access', 'blog2social-autopost', array($this, 'b2sAutoPost'));
|
916 |
+
$subPages[] = add_submenu_page(null, 'B2S Reposter', 'B2S Reposter', 'blog2social_access', 'blog2social-repost', array($this, 'b2sRePost'));
|
917 |
$subPages[] = add_submenu_page(null, 'PRG Login', 'PRG Login', 'blog2social_access', 'prg-login', array($this, 'prgLogin'));
|
918 |
$subPages[] = add_submenu_page(null, 'PRG Ship', 'PRG Ship', 'blog2social_access', 'prg-ship', array($this, 'prgShip'));
|
919 |
foreach ($subPages as $var) {
|
1147 |
}
|
1148 |
}
|
1149 |
|
1150 |
+
//PageFunktion
|
1151 |
+
public function b2sAutoPost() {
|
1152 |
+
if (B2S_Tools::showNotice() == false) {
|
1153 |
+
wp_enqueue_script('B2SVALIDATEJS');
|
1154 |
+
wp_enqueue_style('B2SAUTOPOSTCSS');
|
1155 |
+
wp_enqueue_script('B2SAUTOPOSTJS');
|
1156 |
+
wp_enqueue_style('B2SBTNTOOGLECSS');
|
1157 |
+
wp_enqueue_script('B2SBTNTOOGLEJS');
|
1158 |
+
wp_enqueue_style('B2SCHOSENCSS');
|
1159 |
+
wp_enqueue_script('B2SCHOSENJS');
|
1160 |
+
require_once( B2S_PLUGIN_DIR . 'views/b2s/autopost.php');
|
1161 |
+
} else {
|
1162 |
+
require_once( B2S_PLUGIN_DIR . 'views/notice.php');
|
1163 |
+
}
|
1164 |
+
}
|
1165 |
+
|
1166 |
+
//PageFunktion
|
1167 |
+
public function b2sRePost() {
|
1168 |
+
if (B2S_Tools::showNotice() == false) {
|
1169 |
+
wp_enqueue_script('B2SVALIDATEJS');
|
1170 |
+
wp_enqueue_style('B2SREPOSTCSS');
|
1171 |
+
wp_enqueue_script('B2SREPOSTJS');
|
1172 |
+
wp_enqueue_style('B2SCHOSENCSS');
|
1173 |
+
wp_enqueue_script('B2SCHOSENJS');
|
1174 |
+
wp_enqueue_script('B2SLIB');
|
1175 |
+
wp_enqueue_style('B2SDATEPICKERCSS');
|
1176 |
+
wp_enqueue_style('B2STIMEPICKERCSS');
|
1177 |
+
wp_enqueue_script('B2SDATEPICKERJS');
|
1178 |
+
wp_enqueue_script('B2SDATEPICKERDEJS');
|
1179 |
+
wp_enqueue_script('B2SDATEPICKERENJS');
|
1180 |
+
wp_enqueue_script('B2STIMEPICKERJS');
|
1181 |
+
wp_enqueue_style('B2SWYSIWYGCSS');
|
1182 |
+
wp_enqueue_script('B2SWYSIWYGJS');
|
1183 |
+
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
1184 |
+
wp_enqueue_script('B2SSHIPJS');
|
1185 |
+
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1186 |
+
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
1187 |
+
} else {
|
1188 |
+
wp_enqueue_script('B2SWYSIWYGLANGENJS');
|
1189 |
+
}
|
1190 |
+
if (current_user_can('upload_files')) {
|
1191 |
+
//Capability by Super Admin ,Administrator ,Editor ,Author
|
1192 |
+
wp_enqueue_media();
|
1193 |
+
}
|
1194 |
+
require_once( B2S_PLUGIN_DIR . 'views/b2s/repost.php');
|
1195 |
+
} else {
|
1196 |
+
require_once( B2S_PLUGIN_DIR . 'views/notice.php');
|
1197 |
+
}
|
1198 |
+
}
|
1199 |
+
|
1200 |
//PageFunktion
|
1201 |
public function prgLogin() {
|
1202 |
wp_enqueue_script('B2SVALIDATEJS');
|
1439 |
wp_register_style('B2SCHOSENCSS', plugins_url('assets/lib/chosen/chosen.min.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1440 |
wp_register_style('B2SPLUGINDEACTIVATECSS', plugins_url('assets/css/b2s/wp/plugin-deactivate.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1441 |
wp_register_style('B2SCURATIONDRAFTCSS', plugins_url('assets/css/b2s/curation.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1442 |
+
wp_register_style('B2SAUTOPOSTCSS', plugins_url('assets/css/b2s/autopost.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1443 |
+
wp_register_style('B2SREPOSTCSS', plugins_url('assets/css/b2s/repost.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1444 |
|
1445 |
wp_register_script('B2SNETWORKJS', plugins_url('assets/js/b2s/network.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1446 |
wp_register_script('B2SSETTINGSJS', plugins_url('assets/js/b2s/settings.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1447 |
+
wp_register_script('B2SAUTOPOSTJS', plugins_url('assets/js/b2s/autopost.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1448 |
+
wp_register_script('B2SREPOSTJS', plugins_url('assets/js/b2s/repost.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1449 |
wp_register_script('B2SSTARTJS', plugins_url('assets/js/b2s/start.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1450 |
wp_register_script('B2SPOSTJS', plugins_url('assets/js/b2s/post.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1451 |
wp_register_script('B2SSHIPJS', plugins_url('assets/js/b2s/ship.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1514 |
}
|
1515 |
|
1516 |
global $wpdb;
|
1517 |
+
$mySqlPermission = true;
|
|
|
|
|
|
|
|
|
|
|
|
|
1518 |
/*
|
1519 |
* Change Table Names with Prefix
|
1520 |
*/
|
1738 |
PRIMARY KEY (`id`),
|
1739 |
INDEX `blog_user_id` (`blog_user_id`), INDEX `post_id` (`post_id`)
|
1740 |
) DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci AUTO_INCREMENT=1;";
|
1741 |
+
|
1742 |
+
if (!$wpdb->query($sqlCreateFavorites)) {
|
1743 |
+
$mySqlPermission = false;
|
1744 |
+
}
|
1745 |
|
1746 |
/*
|
1747 |
* SET SAFETY AUTO-INCREMENT
|
1754 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_contact` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1755 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_network_settings` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1756 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_posts_drafts` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1757 |
+
if (!$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_posts_favorites` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;")) {
|
1758 |
+
$mySqlPermission = false;
|
1759 |
+
}
|
1760 |
|
1761 |
+
if (!$mySqlPermission) {
|
|
|
1762 |
$b2sSystem->deactivatePlugin();
|
1763 |
+
wp_die($b2sSystem->getErrorMessage(array('dbTable' => false)) . ' ' . esc_html__('or', 'blog2social') . ' <a href="' . esc_url(admin_url("/plugins.php", "http")) . '/">' . esc_html__('back to install plugins', 'blog2social') . '</a>');
|
1764 |
}
|
1765 |
|
1766 |
//Activate Social Meta Tags
|
includes/System.php
CHANGED
@@ -13,16 +13,7 @@ class B2S_System {
|
|
13 |
if (!$this->checkCurl()) {
|
14 |
$result['curl'] = false;
|
15 |
}
|
16 |
-
/* if(!$this->checkPHP()){
|
17 |
-
$result['php'] = false;
|
18 |
-
} */
|
19 |
}
|
20 |
-
if ($action == 'after') {
|
21 |
-
if (!$this->checkDbTables()) {
|
22 |
-
$result['dbTable'] = false;
|
23 |
-
}
|
24 |
-
}
|
25 |
-
|
26 |
return empty($result) ? true : $result;
|
27 |
}
|
28 |
|
@@ -30,54 +21,17 @@ class B2S_System {
|
|
30 |
return function_exists('curl_version');
|
31 |
}
|
32 |
|
33 |
-
private function checkPHP() {
|
34 |
-
if (version_compare(phpversion(), '5.5.3', '<')) {
|
35 |
-
return false;
|
36 |
-
}
|
37 |
-
return true;
|
38 |
-
}
|
39 |
-
|
40 |
-
private function checkDbTables() {
|
41 |
-
global $wpdb;
|
42 |
-
$return = false;
|
43 |
-
|
44 |
-
//ExistsColumn
|
45 |
-
$b2sUserCols = $wpdb->get_results('SHOW COLUMNS FROM '.$wpdb->prefix.'b2s_user');
|
46 |
-
if (is_array($b2sUserCols) && isset($b2sUserCols[0])) {
|
47 |
-
$b2sUserColsData = array();
|
48 |
-
foreach ($b2sUserCols as $key => $value) {
|
49 |
-
if (isset($value->Field) && !empty($value->Field)) {
|
50 |
-
$b2sUserColsData[] = $value->Field;
|
51 |
-
}
|
52 |
-
}
|
53 |
-
if (in_array("state_url", $b2sUserColsData)) {
|
54 |
-
$return = true;
|
55 |
-
}
|
56 |
-
}
|
57 |
-
//ExistsTable
|
58 |
-
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts_sched_details'") != $wpdb->prefix.'b2s_posts_sched_details') {
|
59 |
-
$return = false;
|
60 |
-
}
|
61 |
-
return $return;
|
62 |
-
}
|
63 |
-
|
64 |
public function getErrorMessage($errors, $removeBreakline = false) {
|
65 |
$output = '';
|
66 |
if (is_array($errors) && !empty($errors)) {
|
67 |
foreach ($errors as $error => $status) {
|
68 |
-
if ($error == 'curl'
|
69 |
$output .= esc_html__('Blog2Social used cURL. cURL is not installed in your PHP installation on your server. Install cURL and activate Blog2Social again.', 'blog2social');
|
70 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
71 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
72 |
$output .= sprintf(__('<a href="%s" target="_blank">Please find more Information and help in our FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('system')));
|
73 |
}
|
74 |
-
if ($error == '
|
75 |
-
$output .= esc_html__('Blog2Social used PHP. Your installed PHP version on your server is not high enough to use Blog2Social. Update your PHP version on 5.5.3 or higher.', 'blog2social');
|
76 |
-
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
77 |
-
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
78 |
-
$output .= sprintf(__('<a href="%s" target="_blank">Please find more Information and help in our FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('system')));
|
79 |
-
}
|
80 |
-
if ($error == 'dbTable' && $status == false) {
|
81 |
$output .= esc_html__('Blog2Social does not seem to have permission to write in your WordPress database. Please assign Blog2Social the permission to write in the WordPress database. Please also make sure that your MySQL server runs on v5.5.3 or higher, or ask your server administrator to do it for you.', 'blog2social');
|
82 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
83 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
13 |
if (!$this->checkCurl()) {
|
14 |
$result['curl'] = false;
|
15 |
}
|
|
|
|
|
|
|
16 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
return empty($result) ? true : $result;
|
18 |
}
|
19 |
|
21 |
return function_exists('curl_version');
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
public function getErrorMessage($errors, $removeBreakline = false) {
|
25 |
$output = '';
|
26 |
if (is_array($errors) && !empty($errors)) {
|
27 |
foreach ($errors as $error => $status) {
|
28 |
+
if (!$status && $error == 'curl') {
|
29 |
$output .= esc_html__('Blog2Social used cURL. cURL is not installed in your PHP installation on your server. Install cURL and activate Blog2Social again.', 'blog2social');
|
30 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
31 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
32 |
$output .= sprintf(__('<a href="%s" target="_blank">Please find more Information and help in our FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('system')));
|
33 |
}
|
34 |
+
if (!$status && $error == 'dbTable') {
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
$output .= esc_html__('Blog2Social does not seem to have permission to write in your WordPress database. Please assign Blog2Social the permission to write in the WordPress database. Please also make sure that your MySQL server runs on v5.5.3 or higher, or ask your server administrator to do it for you.', 'blog2social');
|
36 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
37 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
includes/Tools.php
CHANGED
@@ -224,7 +224,13 @@ class B2S_Tools {
|
|
224 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&lang=en&cat=3&id=116&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=116&artlang=de';
|
225 |
}
|
226 |
if($type == 'url_parameter'){
|
227 |
-
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
}
|
229 |
}
|
230 |
|
@@ -349,5 +355,41 @@ class B2S_Tools {
|
|
349 |
);
|
350 |
}
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
|
353 |
}
|
224 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&lang=en&cat=3&id=116&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=116&artlang=de';
|
225 |
}
|
226 |
if($type == 'url_parameter'){
|
227 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=6&id=164&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=6&id=160&artlang=de';
|
228 |
+
}
|
229 |
+
if($type == 'network_mandant'){
|
230 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=65&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=73&artlang=de';
|
231 |
+
}
|
232 |
+
if($type == 're_post'){
|
233 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=165&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=162&artlang=de';
|
234 |
}
|
235 |
}
|
236 |
|
355 |
);
|
356 |
}
|
357 |
|
358 |
+
public static function getNoCacheData($blogUserId) {
|
359 |
+
$default = array(
|
360 |
+
1 => 0,
|
361 |
+
3 => 1,
|
362 |
+
19 => 1
|
363 |
+
);
|
364 |
+
if((int) $blogUserId >= 1) {
|
365 |
+
$changed = false;
|
366 |
+
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
367 |
+
$options = new B2S_Options((int) $blogUserId);
|
368 |
+
$linkNoCache = $options->_getOption("link_no_cache");
|
369 |
+
if ($linkNoCache != false) {
|
370 |
+
if(!is_array($linkNoCache)) {
|
371 |
+
$fb_linkNoCache = (((int) $linkNoCache > 0) ? 1 : 0);
|
372 |
+
$linkNoCache = $default;
|
373 |
+
$linkNoCache[1] = $fb_linkNoCache;
|
374 |
+
$changed = true;
|
375 |
+
} else {
|
376 |
+
foreach ($default as $k => $v) {
|
377 |
+
if(!isset($linkNoCache[$k])) {
|
378 |
+
$linkNoCache[$k] = $v;
|
379 |
+
$changed = true;
|
380 |
+
}
|
381 |
+
}
|
382 |
+
}
|
383 |
+
} else {
|
384 |
+
$linkNoCache = $default;
|
385 |
+
$changed = true;
|
386 |
+
}
|
387 |
+
if($changed) {
|
388 |
+
$options->_setOption('link_no_cache', $linkNoCache);
|
389 |
+
}
|
390 |
+
return $linkNoCache;
|
391 |
+
}
|
392 |
+
return $default;
|
393 |
+
}
|
394 |
|
395 |
}
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -2,20 +2,19 @@
|
|
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: 2020-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: Loco https://localise.biz/\n"
|
11 |
"Language: de_DE\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: 2020-
|
16 |
-
"Last-Translator:
|
17 |
-
"Language-Team:
|
18 |
-
"X-Loco-Version: 2.
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
@@ -33,363 +32,287 @@ msgstr "Modify subreddit"
|
|
33 |
msgid "Modify forum"
|
34 |
msgstr "Modify forum"
|
35 |
|
36 |
-
#: includes/Loader.php:
|
37 |
msgid "Bitly"
|
38 |
msgstr "Bitly"
|
39 |
|
40 |
-
#: includes/Loader.php:
|
41 |
msgid "Rebrandly"
|
42 |
msgstr "Rebrandly"
|
43 |
|
44 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
45 |
msgid "Blog2Social: Autoposter"
|
46 |
msgstr "Blog2Social: Auto-Poster"
|
47 |
|
48 |
-
#: includes/Loader.php:
|
49 |
msgid "Blog2Social: Social Media Content Calendar"
|
50 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
51 |
|
52 |
-
#: includes/Loader.php:
|
53 |
msgid "This post will be shared into your social media from"
|
54 |
-
msgstr ""
|
55 |
-
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
56 |
|
57 |
-
#: includes/Loader.php:
|
58 |
msgid "show details"
|
59 |
msgstr "siehe Details"
|
60 |
|
61 |
-
#: includes/Loader.php:
|
62 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
63 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
64 |
|
65 |
-
#: includes/Loader.php:
|
66 |
msgid ""
|
67 |
-
"Please make sure that your post, page or custom post type is published or "
|
68 |
-
"
|
69 |
-
"Blog2Social. Published WP posts will be shared with your chosen permalink, "
|
70 |
-
"scheduled WP posts will be shared with the posting id link."
|
71 |
msgstr ""
|
72 |
-
"Bitte achte darauf, dass Dein Beitrag, Deine Seite oder Dein Custom Post "
|
73 |
-
"
|
74 |
-
|
75 |
-
|
76 |
-
"
|
77 |
-
|
78 |
-
#: includes/Loader.php:763 includes/B2S/PostBox.php:133
|
79 |
-
#: includes/B2S/Settings/Item.php:137
|
80 |
-
msgid ""
|
81 |
-
"There are no social network accounts assigned to your selected network "
|
82 |
-
"collection. Please assign at least one social network account or select "
|
83 |
-
"another network collection."
|
84 |
-
msgstr ""
|
85 |
-
"In der ausgewählten Netzwerkgruppierung sind keine Social Media Accounts "
|
86 |
-
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
87 |
-
"eine andere Netzwerkgruppierung aus. "
|
88 |
|
89 |
-
#: includes/Loader.php:
|
90 |
-
#: views/b2s/html/sidebar.ship.php:44
|
91 |
msgid "Upgrade to Premium"
|
92 |
msgstr "Premium freischalten"
|
93 |
|
94 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
msgid "Notifications"
|
96 |
msgstr "Benachrichtigungen"
|
97 |
|
98 |
-
#: includes/Loader.php:
|
99 |
-
#: views/b2s/html/sidebar.php:119
|
100 |
msgid "Shared Posts"
|
101 |
msgstr "geteilte Beiträge"
|
102 |
|
103 |
-
#: includes/Loader.php:
|
104 |
-
#: views/b2s/html/sidebar.php:113
|
105 |
msgid "Instant Sharing"
|
106 |
msgstr "Instant Sharing"
|
107 |
|
108 |
-
#: includes/Loader.php:
|
109 |
-
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:88
|
110 |
-
#: views/b2s/html/sidebar.php:110
|
111 |
msgid "Drafts"
|
112 |
msgstr "Entwürfe"
|
113 |
|
114 |
-
#: includes/Loader.php:
|
115 |
-
#: views/b2s/html/sidebar.php:116 views/b2s/widgets/posts.php:18
|
116 |
msgid "Scheduled Posts"
|
117 |
msgstr "geplante Beiträge"
|
118 |
|
119 |
-
#: includes/Loader.php:
|
120 |
msgid "Social Media Post Drafts"
|
121 |
msgstr "Social Media Posts Entwürfe"
|
122 |
|
123 |
-
#: includes/Loader.php:
|
124 |
-
#: views/b2s/html/sidebar.php:107
|
125 |
msgid "Favorites"
|
126 |
msgstr "Favoriten"
|
127 |
|
128 |
-
#: includes/Loader.php:
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
msgid "Profile"
|
134 |
msgstr "Profil"
|
135 |
|
136 |
-
#: includes/Loader.php:
|
137 |
-
#: includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:284
|
138 |
-
#: includes/B2S/Network/Item.php:584 includes/B2S/Settings/Item.php:266
|
139 |
-
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
140 |
msgid "Page"
|
141 |
msgstr "Seite"
|
142 |
|
143 |
-
#: includes/Loader.php:
|
144 |
-
#: includes/B2S/Network/Item.php:351 includes/B2S/Network/Item.php:587
|
145 |
-
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
146 |
msgid "Group"
|
147 |
msgstr "Gruppe"
|
148 |
|
149 |
-
#: includes/Loader.php:
|
150 |
msgid "Company"
|
151 |
msgstr "Unternehmen"
|
152 |
|
153 |
-
#: includes/Loader.php:
|
154 |
msgid "Business"
|
155 |
msgstr "Business"
|
156 |
|
157 |
-
#: includes/Loader.php:
|
158 |
#, php-format
|
159 |
-
msgid ""
|
160 |
-
"
|
161 |
-
"href=\"%s\">FAQ</a>"
|
162 |
-
msgstr ""
|
163 |
-
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Siehe <a "
|
164 |
-
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
165 |
|
166 |
-
#: includes/Loader.php:
|
167 |
-
msgid ""
|
168 |
-
"
|
169 |
-
"Blog2Social network settings."
|
170 |
-
msgstr ""
|
171 |
-
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
172 |
-
"Blog2Social Netzwerkeinstellungen erneut."
|
173 |
|
174 |
-
#: includes/Loader.php:
|
175 |
msgid "The network has marked the post as spam or abusive."
|
176 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
177 |
|
178 |
-
#: includes/Loader.php:
|
179 |
-
msgid ""
|
180 |
-
"
|
181 |
-
"authorization."
|
182 |
-
msgstr ""
|
183 |
-
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
184 |
-
"überprüfe deine Autorisierung."
|
185 |
|
186 |
-
#: includes/Loader.php:
|
187 |
#, php-format
|
188 |
-
msgid ""
|
189 |
-
"
|
190 |
-
"see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
191 |
-
msgstr ""
|
192 |
-
"Deine Autorisierung ist unterbrochen. Bitte überprüfe Deine Verbindung. "
|
193 |
-
"Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
194 |
|
195 |
-
#: includes/Loader.php:
|
196 |
msgid "Your daily limit has been reached."
|
197 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
198 |
|
199 |
-
#: includes/Loader.php:
|
200 |
-
msgid ""
|
201 |
-
"
|
202 |
-
"image source does not allow to publish"
|
203 |
-
msgstr ""
|
204 |
-
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
205 |
-
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
206 |
|
207 |
-
#: includes/Loader.php:
|
208 |
#, php-format
|
209 |
-
msgid ""
|
210 |
-
"
|
211 |
-
"href=\"%s\">FAQ</a>"
|
212 |
-
msgstr ""
|
213 |
-
"Das Netzwerk hat Dein Konto gesperrt. Siehe <a target=\"_blank\" href=\"%s\">"
|
214 |
-
"FAQ</a>"
|
215 |
|
216 |
-
#: includes/Loader.php:
|
217 |
#, php-format
|
218 |
-
msgid ""
|
219 |
-
"
|
220 |
-
"FAQ</a>"
|
221 |
-
msgstr ""
|
222 |
-
"Die Anzahl der Bilder ist erreicht. Siehe <a target=\"_blank\" href=\"%s\">"
|
223 |
-
"FAQ</a>"
|
224 |
|
225 |
-
#: includes/Loader.php:
|
226 |
-
msgid ""
|
227 |
-
"
|
228 |
-
msgstr ""
|
229 |
-
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
230 |
-
"versuche es später noch einmal."
|
231 |
|
232 |
-
#: includes/Loader.php:
|
233 |
#, php-format
|
234 |
-
msgid ""
|
235 |
-
"
|
236 |
-
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
237 |
-
msgstr ""
|
238 |
-
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Siehe <a "
|
239 |
-
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
240 |
|
241 |
-
#: includes/Loader.php:
|
242 |
msgid "Your post is a duplicate."
|
243 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
244 |
|
245 |
-
#: includes/Loader.php:
|
246 |
msgid "The network requires a public url."
|
247 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
248 |
|
249 |
-
#: includes/Loader.php:
|
250 |
-
msgid ""
|
251 |
-
"
|
252 |
-
msgstr ""
|
253 |
-
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
254 |
-
"nicht verfügbar."
|
255 |
|
256 |
-
#: includes/Loader.php:
|
257 |
msgid "You have already retweeted this post."
|
258 |
msgstr "Du hast diesen Post bereits retweetet."
|
259 |
|
260 |
-
#: includes/Loader.php:
|
261 |
-
msgid ""
|
262 |
-
"
|
263 |
-
"accounts with the new XING interface to reschedule your posts."
|
264 |
-
msgstr ""
|
265 |
-
"Diese XING-API wird von XING nicht mehr unterstützt. Bitte verbinde Dich mit "
|
266 |
-
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
267 |
-
"zu planen."
|
268 |
|
269 |
-
#: includes/Loader.php:
|
270 |
msgid "An image is required to post on this social network."
|
271 |
-
msgstr ""
|
272 |
-
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
273 |
-
"erforderlich."
|
274 |
|
275 |
-
#: includes/Loader.php:
|
276 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
277 |
-
msgstr ""
|
278 |
-
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
279 |
-
"erforderlich."
|
280 |
|
281 |
-
#: includes/Loader.php:
|
282 |
-
msgid ""
|
283 |
-
"
|
284 |
-
"the network."
|
285 |
-
msgstr ""
|
286 |
-
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
287 |
-
"Netzwerk verarbeitet werden kann"
|
288 |
|
289 |
-
#: includes/Loader.php:
|
290 |
#, php-format
|
291 |
-
msgid ""
|
292 |
-
"Instagram
|
293 |
-
"href=\"%s\">FAQ</a>"
|
294 |
-
msgstr ""
|
295 |
-
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Siehe <a "
|
296 |
-
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
297 |
|
298 |
-
#: includes/Loader.php:
|
299 |
msgid "Your group can not be found by the network."
|
300 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
301 |
|
302 |
-
#: includes/Loader.php:
|
303 |
msgid "Dashboard"
|
304 |
msgstr "Dashboard"
|
305 |
|
306 |
-
#: includes/Loader.php:
|
307 |
msgid "Share Website & Blog Content"
|
308 |
msgstr "Webseiten- & Blog Content teilen"
|
309 |
|
310 |
-
#: includes/Loader.php:
|
311 |
msgid "Site & Blog Content"
|
312 |
msgstr "Seiten & Blog Content"
|
313 |
|
314 |
-
#: includes/Loader.php:
|
315 |
msgid "Create Social Media Posts"
|
316 |
msgstr "Erstelle Social Media Posts"
|
317 |
|
318 |
-
#: includes/Loader.php:
|
319 |
msgid "Social Media Posts"
|
320 |
msgstr "Social Media Posts"
|
321 |
|
322 |
-
#: includes/Loader.php:
|
323 |
-
#: views/b2s/html/post.navbar.php:19 views/b2s/html/sidebar.php:122
|
324 |
msgid "Calendar"
|
325 |
msgstr "Kalender"
|
326 |
|
327 |
-
#: includes/Loader.php:
|
328 |
msgid "Networks"
|
329 |
msgstr "Netzwerke"
|
330 |
|
331 |
-
#: includes/Loader.php:
|
332 |
-
#: views/b2s/html/sidebar.php:131
|
333 |
-
msgid "Settings"
|
334 |
-
msgstr "Einstellungen"
|
335 |
-
|
336 |
-
#: includes/Loader.php:913 includes/Loader.php:991
|
337 |
msgid "PR-Service"
|
338 |
msgstr "PR-Service"
|
339 |
|
340 |
-
#: includes/Loader.php:
|
341 |
-
#: views/b2s/html/sidebar.php:134 views/b2s/html/sidebar.ship.php:66
|
342 |
msgid "Help & Support"
|
343 |
msgstr "Hilfe & Support"
|
344 |
|
345 |
-
#: includes/Loader.php:
|
346 |
msgid "Premium"
|
347 |
msgstr "Premium"
|
348 |
|
349 |
-
#: includes/Loader.php:
|
350 |
msgid "PREMIUM"
|
351 |
msgstr "PREMIUM"
|
352 |
|
353 |
-
#: includes/Loader.php:
|
354 |
-
#: views/b2s/html/sidebar.ship.php:24
|
355 |
msgid "Blog2Social"
|
356 |
msgstr "Blog2Social"
|
357 |
|
358 |
-
#: includes/Loader.php:
|
359 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
360 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
361 |
|
362 |
-
#: includes/Loader.php:
|
363 |
-
#: includes/System.php:84
|
364 |
#, php-format
|
365 |
-
msgid ""
|
366 |
-
"<a href=\"%s\" target=\"_blank\">
|
367 |
-
"our FAQ</a>"
|
368 |
-
msgstr ""
|
369 |
-
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
370 |
-
"in unserem FAQs.</a>"
|
371 |
|
372 |
-
#: includes/Loader.php:
|
373 |
msgid "or"
|
374 |
msgstr "oder"
|
375 |
|
376 |
-
#: includes/Loader.php:
|
377 |
msgid "back to install plugins"
|
378 |
msgstr "zurück zur Pluginübersicht"
|
379 |
|
380 |
-
#: includes/Notice.php:17 views/b2s/html/sidebar.php:
|
381 |
msgid "Rate it!"
|
382 |
msgstr "Bewerte uns!"
|
383 |
|
384 |
#: includes/Notice.php:18
|
385 |
-
msgid ""
|
386 |
-
"
|
387 |
-
"that does not work for you, please contact us!!"
|
388 |
-
msgstr ""
|
389 |
-
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
390 |
-
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
391 |
|
392 |
-
#: includes/Notice.php:19 views/b2s/html/sidebar.php:
|
393 |
msgid "RATE BLOG2SOCIAL"
|
394 |
msgstr "Blog2Social jetzt bewerten"
|
395 |
|
@@ -399,234 +322,213 @@ msgstr "ausblenden"
|
|
399 |
|
400 |
#: includes/Notice.php:35
|
401 |
msgid "Could not hide notice. Please refresh the page and retry."
|
402 |
-
msgstr ""
|
403 |
-
"Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite "
|
404 |
-
"und versuche es erneut. "
|
405 |
|
406 |
-
#: includes/System.php:
|
407 |
-
msgid ""
|
408 |
-
"Blog2Social
|
409 |
-
"your server. Install cURL and activate Blog2Social again."
|
410 |
-
msgstr ""
|
411 |
-
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
412 |
-
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
413 |
|
414 |
-
#: includes/System.php:
|
415 |
msgid ""
|
416 |
-
"Blog2Social
|
417 |
-
"
|
418 |
msgstr ""
|
419 |
-
"Blog2Social
|
420 |
-
"
|
421 |
-
" "
|
422 |
|
423 |
-
#: includes/
|
424 |
-
msgid ""
|
425 |
-
"Blog2Social does not seem to have permission to write in your WordPress "
|
426 |
-
"database. Please assign Blog2Social the permission to write in the WordPress "
|
427 |
-
"database. Please also make sure that your MySQL server runs on v5.5.3 or "
|
428 |
-
"higher, or ask your server administrator to do it for you."
|
429 |
-
msgstr ""
|
430 |
-
"Blog2Social scheint keine Schreibrechte für Ihre WordPress-Datenbank zu "
|
431 |
-
"haben. Bitte erlauben Sie Blog2Social, in die WordPress-Datenbank zu "
|
432 |
-
"schreiben. Bitte stellen Sie auch sicher, dass Ihr MySQL-Server auf v5.5.3 "
|
433 |
-
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
434 |
-
"zu tun."
|
435 |
-
|
436 |
-
#: includes/Tools.php:277 views/b2s/html/sidebar.php:30
|
437 |
-
#: views/b2s/html/sidebar.ship.php:29
|
438 |
msgid "License"
|
439 |
msgstr "Lizenz"
|
440 |
|
441 |
-
#: includes/Tools.php:
|
442 |
msgid "Greece"
|
443 |
msgstr "Griechenland"
|
444 |
|
445 |
-
#: includes/Tools.php:
|
446 |
msgid "India"
|
447 |
msgstr "Indien"
|
448 |
|
449 |
-
#: includes/Tools.php:
|
450 |
msgid "United States of America"
|
451 |
msgstr "Vereinigte Staaten von Amerika"
|
452 |
|
453 |
-
#: includes/Tools.php:
|
454 |
msgid "Ireland"
|
455 |
msgstr "Irland"
|
456 |
|
457 |
-
#: includes/Tools.php:
|
458 |
msgid "Italy"
|
459 |
msgstr "Italien"
|
460 |
|
461 |
-
#: includes/Tools.php:
|
462 |
msgid "Switzerland"
|
463 |
msgstr "Schweiz"
|
464 |
|
465 |
-
#: includes/Tools.php:
|
466 |
msgid "Czechoslovakia"
|
467 |
msgstr "Tschechoslowakei"
|
468 |
|
469 |
-
#: includes/Tools.php:
|
470 |
msgid "Indonesia"
|
471 |
msgstr "Indonesien"
|
472 |
|
473 |
-
#: includes/Tools.php:
|
474 |
msgid "Spain"
|
475 |
msgstr "Spanien"
|
476 |
|
477 |
-
#: includes/Tools.php:
|
478 |
msgid "Canada"
|
479 |
msgstr "Kanada"
|
480 |
|
481 |
-
#: includes/Tools.php:
|
482 |
msgid "Great Britain"
|
483 |
msgstr "Großbritannien"
|
484 |
|
485 |
-
#: includes/Tools.php:
|
486 |
msgid "Russia"
|
487 |
msgstr "Russland"
|
488 |
|
489 |
-
#: includes/Tools.php:
|
490 |
msgid "Netherlands"
|
491 |
msgstr "Niederlande"
|
492 |
|
493 |
-
#: includes/Tools.php:
|
494 |
msgid "Portugal"
|
495 |
msgstr "Portugal"
|
496 |
|
497 |
-
#: includes/Tools.php:
|
498 |
msgid "Norway"
|
499 |
msgstr "Norwegen"
|
500 |
|
501 |
-
#: includes/Tools.php:
|
502 |
msgid "Turkey"
|
503 |
msgstr "Türkei"
|
504 |
|
505 |
-
#: includes/Tools.php:
|
506 |
msgid "Australia"
|
507 |
msgstr "Australien"
|
508 |
|
509 |
-
#: includes/Tools.php:
|
510 |
msgid "Austria"
|
511 |
msgstr "Österreich"
|
512 |
|
513 |
-
#: includes/Tools.php:
|
514 |
msgid "Poland"
|
515 |
msgstr "Polen"
|
516 |
|
517 |
-
#: includes/Tools.php:
|
518 |
msgid "France"
|
519 |
msgstr "Frankreich"
|
520 |
|
521 |
-
#: includes/Tools.php:
|
522 |
msgid "Romania"
|
523 |
msgstr "Rumänien"
|
524 |
|
525 |
-
#: includes/Tools.php:
|
526 |
msgid "Germany"
|
527 |
msgstr "Deutschland"
|
528 |
|
529 |
-
#: includes/Tools.php:
|
530 |
msgid "Denmark"
|
531 |
msgstr "Dänemark"
|
532 |
|
533 |
-
#: includes/Tools.php:
|
534 |
msgid "New Zealand"
|
535 |
msgstr "Neuseeland"
|
536 |
|
537 |
-
#: includes/Tools.php:
|
538 |
msgid "Finland"
|
539 |
msgstr "Finnland"
|
540 |
|
541 |
-
#: includes/Tools.php:
|
542 |
msgid "Hungary"
|
543 |
msgstr "Ungarn"
|
544 |
|
545 |
-
#: includes/Tools.php:
|
546 |
msgid "Japan"
|
547 |
msgstr "Japan"
|
548 |
|
549 |
-
#: includes/Tools.php:
|
550 |
msgid "Argentina"
|
551 |
msgstr "Argentinien"
|
552 |
|
553 |
-
#: includes/Tools.php:
|
554 |
msgid "Korea"
|
555 |
msgstr "Korea"
|
556 |
|
557 |
-
#: includes/Tools.php:
|
558 |
msgid "Sweden"
|
559 |
msgstr "Schweden"
|
560 |
|
561 |
-
#: includes/Tools.php:
|
562 |
msgid "Mexico"
|
563 |
msgstr "Mexiko"
|
564 |
|
565 |
-
#: includes/Tools.php:
|
566 |
msgid "Slovakia"
|
567 |
msgstr "Slowakei"
|
568 |
|
569 |
-
#: includes/Tools.php:
|
570 |
msgid "Chile"
|
571 |
msgstr "Chile"
|
572 |
|
573 |
-
#: includes/Tools.php:
|
574 |
msgid "Colombia"
|
575 |
msgstr "Kolumbien"
|
576 |
|
577 |
-
#: includes/Tools.php:
|
578 |
msgid "South Africa"
|
579 |
msgstr "Südafrika"
|
580 |
|
581 |
-
#: includes/Tools.php:
|
582 |
msgid "Philippines"
|
583 |
msgstr "Philippinen"
|
584 |
|
585 |
-
#: includes/Tools.php:
|
586 |
msgid "is determined automatically"
|
587 |
msgstr "wird automatisch ermittelt"
|
588 |
|
589 |
-
#: includes/Tools.php:
|
590 |
msgid "Search"
|
591 |
msgstr "Suche"
|
592 |
|
593 |
-
#: includes/Tools.php:
|
594 |
msgid "Recently Used"
|
595 |
msgstr "Zuletzt verwendet"
|
596 |
|
597 |
-
#: includes/Tools.php:
|
598 |
msgid "Smileys & People"
|
599 |
msgstr "Smileys & Personen"
|
600 |
|
601 |
-
#: includes/Tools.php:
|
602 |
msgid "Animals & Nature"
|
603 |
msgstr "Tiere & Natur"
|
604 |
|
605 |
-
#: includes/Tools.php:
|
606 |
msgid "Food & Drink"
|
607 |
msgstr "Essen & Trinken"
|
608 |
|
609 |
-
#: includes/Tools.php:
|
610 |
msgid "Activities"
|
611 |
msgstr "Aktivitäten"
|
612 |
|
613 |
-
#: includes/Tools.php:
|
614 |
msgid "Travel & Places"
|
615 |
msgstr "Reisen & Orte"
|
616 |
|
617 |
-
#: includes/Tools.php:
|
618 |
msgid "Objects"
|
619 |
msgstr "Objekte"
|
620 |
|
621 |
-
#: includes/Tools.php:
|
622 |
msgid "Symbols"
|
623 |
msgstr "Symbole"
|
624 |
|
625 |
-
#: includes/Tools.php:
|
626 |
msgid "Flags"
|
627 |
msgstr "Flaggen"
|
628 |
|
629 |
-
#: includes/Tools.php:
|
630 |
msgid "No emojis found"
|
631 |
msgstr "Keine Ergebnisse"
|
632 |
|
@@ -635,26 +537,17 @@ msgid "Connection is broken..."
|
|
635 |
msgstr "Vebindung ist unterbrochen..."
|
636 |
|
637 |
#: views/notice.php:14
|
638 |
-
msgid ""
|
639 |
-
"The connection to your server has been interrupted. Please make sure that "
|
640 |
-
"your blog is reachable. If your server does not respond or is too slow, "
|
641 |
-
"Blog2Social cannot connect to the internet. Try again later or contact your "
|
642 |
-
"webmaster, if this error message persists."
|
643 |
msgstr ""
|
644 |
-
"Die Verbindung auf Deinen Server wurde unterbrochen. Bitte stelle sicher, "
|
645 |
-
"
|
646 |
-
"oder die Verbindungsgeschwindigkeit zu niedrig ist, kann Blog2Social sich "
|
647 |
-
"nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
|
648 |
-
"Deinen Webmaster, wenn dieser Fehler erneut erscheint."
|
649 |
|
650 |
#: views/notice.php:17
|
651 |
msgid "Update..."
|
652 |
msgstr "Aktualisierung..."
|
653 |
|
654 |
#: views/notice.php:19
|
655 |
-
msgid ""
|
656 |
-
"<b> A new version of Blog2Social is available. </b> Update now <br> "
|
657 |
-
"Blog2Social to continue to use the latest version of the plugin."
|
658 |
msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
|
659 |
|
660 |
#: views/notice.php:23
|
@@ -673,356 +566,252 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
|
673 |
msgid "Please contact our support!"
|
674 |
msgstr "Bitte kontaktiere unseren Support!"
|
675 |
|
676 |
-
#: includes/Ajax/Post.php:
|
677 |
-
#: includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282
|
678 |
-
#: includes/B2S/Network/Item.php:349 includes/B2S/Network/Item.php:475
|
679 |
msgid "Unknown username"
|
680 |
msgstr "unbekannter Blog-Nutzer"
|
681 |
|
682 |
-
#: includes/Ajax/Post.php:
|
683 |
-
#: includes/B2S/
|
684 |
-
#: includes/B2S/Post/Item.php:726 includes/B2S/Post/Item.php:775
|
685 |
-
#: includes/B2S/Settings/Item.php:92 includes/B2S/Ship/Item.php:986
|
686 |
-
#: includes/B2S/Ship/Item.php:1136
|
687 |
msgid "delete"
|
688 |
msgstr "löschen"
|
689 |
|
690 |
-
#: includes/B2S/PostBox.php:
|
691 |
msgid "Please see FAQ"
|
692 |
msgstr "Siehe FAQ"
|
693 |
|
694 |
-
#: includes/B2S/PostBox.php:
|
695 |
-
#: views/b2s/html/header.php:55
|
696 |
msgid "The connection to the server failed. Try again!"
|
697 |
-
msgstr ""
|
698 |
-
"Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
|
699 |
-
"erneut!"
|
700 |
|
701 |
-
#: includes/B2S/PostBox.php:
|
702 |
-
msgid ""
|
703 |
-
"WordPress
|
704 |
-
"heartbeats for using Blog2Social!"
|
705 |
-
msgstr ""
|
706 |
-
"WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
|
707 |
-
"Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
|
708 |
|
709 |
-
#: includes/B2S/PostBox.php:
|
710 |
-
msgid ""
|
711 |
-
"
|
712 |
-
"post is published or scheduled to be published on this blog. You can then "
|
713 |
-
"auto-post or schedule and customize your social media posts with Blog2Social."
|
714 |
-
msgstr ""
|
715 |
-
"Bitte stelle sicher, dass Dein Beitrag auf Deinem Blog veröffentlicht oder "
|
716 |
-
"geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
|
717 |
-
"planen."
|
718 |
|
719 |
-
#: includes/B2S/PostBox.php:
|
720 |
-
#: includes/B2S/Settings/Item.php:137 includes/B2S/Settings/Item.php:495
|
721 |
msgid "Network settings"
|
722 |
msgstr "Netzwerkeinstellungen"
|
723 |
|
724 |
-
#: includes/B2S/PostBox.php:
|
725 |
-
msgid ""
|
726 |
-
"
|
727 |
-
"Networks do not allow postings from local installations."
|
728 |
-
msgstr ""
|
729 |
-
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
730 |
-
"Fragen wende Dich bitte an unseren Support."
|
731 |
|
732 |
-
#: includes/B2S/PostBox.php:
|
733 |
msgid "Custom Sharing & Scheduling"
|
734 |
msgstr "Anpassen & Planen"
|
735 |
|
736 |
-
#: includes/B2S/PostBox.php:
|
737 |
-
#:
|
738 |
-
#: includes/B2S/Network/Item.php:172 includes/B2S/Settings/Item.php:509
|
739 |
-
#: includes/B2S/Ship/Item.php:950
|
740 |
msgid "Info"
|
741 |
msgstr "Info"
|
742 |
|
743 |
-
#: includes/B2S/PostBox.php:
|
744 |
msgid "Customize & Schedule Social Media Posts"
|
745 |
msgstr "Social Media Posts anpassen & planen"
|
746 |
|
747 |
-
#: includes/B2S/PostBox.php:
|
748 |
msgid "The Autoposter is"
|
749 |
msgstr "Der Auto-Poster ist"
|
750 |
|
751 |
-
#: includes/B2S/PostBox.php:
|
752 |
msgid "activated"
|
753 |
msgstr "aktiviert"
|
754 |
|
755 |
-
#: includes/B2S/PostBox.php:
|
756 |
msgid "deactivated"
|
757 |
msgstr "deaktiviert"
|
758 |
|
759 |
-
#: includes/B2S/PostBox.php:
|
760 |
msgid "Shared"
|
761 |
msgstr "Wie oft geteilt?"
|
762 |
|
763 |
-
#: includes/B2S/PostBox.php:
|
764 |
msgid "times"
|
765 |
msgstr "Mal"
|
766 |
|
767 |
-
#: includes/B2S/PostBox.php:
|
768 |
msgid "Last shared"
|
769 |
msgstr "Letzte Veröffentlichung"
|
770 |
|
771 |
-
#: includes/B2S/PostBox.php:
|
772 |
msgid "Advanced settings"
|
773 |
msgstr "Erweiterte Einstellungen"
|
774 |
|
775 |
-
#: includes/B2S/PostBox.php:
|
776 |
msgid "enable Auto-Posting"
|
777 |
msgstr "Auto-Posting aktivieren"
|
778 |
|
779 |
-
#: includes/B2S/PostBox.php:
|
780 |
msgid "show calendar"
|
781 |
msgstr "Planungskalender anzeigen"
|
782 |
|
783 |
-
#: includes/B2S/PostBox.php:
|
784 |
msgid "Blog2Social: Customize & Schedule Social Media Posts"
|
785 |
msgstr "Blog2Social : Beiträge anpassen & planen"
|
786 |
|
787 |
-
#: includes/B2S/PostBox.php:
|
788 |
msgid ""
|
789 |
-
"Customize and schedule your social media posts on the one page preview for "
|
790 |
-
"
|
791 |
-
"#hashtags or @handles and schedule your posts for the best times to post, "
|
792 |
-
"for multiple times or re-share recurrently for more visibility and "
|
793 |
-
"engagement with your community."
|
794 |
msgstr ""
|
795 |
-
"Individualisiere und plane Deine Social Media Posts über die Netzwerk-"
|
796 |
-
"
|
797 |
-
|
798 |
-
|
799 |
-
"Community zu erzielen"
|
800 |
-
|
801 |
-
#: includes/B2S/PostBox.php:192 views/b2s/html/footer.php:305
|
802 |
-
#: views/b2s/html/footer.php:345
|
803 |
msgid "Blog2Social: Social Media Auto-Posting"
|
804 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
805 |
|
806 |
-
#: includes/B2S/PostBox.php:
|
807 |
-
msgid ""
|
808 |
-
"Share your blog posts with the Auto Poster: Your blog posts will be shared "
|
809 |
-
"automatically on your social media channels as soon as you publish or update "
|
810 |
-
"a new post. You can also choose to autopost scheduled blog posts as soon as "
|
811 |
-
"they are published."
|
812 |
msgstr ""
|
813 |
-
"Teile Deine Blogbeiträge mit dem Auto-Poster: Deine Blogbeiträge werden "
|
814 |
-
"
|
815 |
-
"Beitrag veröffentlichst oder aktualisierst. Du kannst auch festlegen, dass "
|
816 |
-
"in WordPress vorgeplante Blogbeiträge automatisch geteilt werden, sobald sie "
|
817 |
-
"veröffentlicht werden."
|
818 |
|
819 |
-
#: includes/B2S/PostBox.php:
|
820 |
#, php-format
|
821 |
-
msgid ""
|
822 |
-
"<a target=\"_blank\" href=\"%s\">
|
823 |
-
"blog posts</a>"
|
824 |
-
msgstr ""
|
825 |
-
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für Deine "
|
826 |
-
"Blogbeiträge einrichtest.</a>"
|
827 |
|
828 |
-
#: includes/B2S/PostBox.php:
|
829 |
-
#: views/b2s/html/footer.php:355
|
830 |
msgid "You want to auto-post your blog post?"
|
831 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
832 |
|
833 |
-
#: includes/B2S/PostBox.php:
|
834 |
-
#: views/b2s/
|
835 |
-
#: views/b2s/ship.php:309 views/b2s/ship.php:369 views/b2s/ship.php:415
|
836 |
-
#: views/b2s/html/footer.php:26 views/b2s/html/footer.php:144
|
837 |
-
#: views/b2s/html/footer.php:208 views/b2s/html/footer.php:248
|
838 |
-
#: views/b2s/html/footer.php:317 views/b2s/html/footer.php:356
|
839 |
-
#: views/b2s/html/footer.php:443
|
840 |
msgid "With Blog2Social Premium you can:"
|
841 |
msgstr "Mit Blog2Social kannst Du:"
|
842 |
|
843 |
-
#: includes/B2S/PostBox.php:
|
844 |
-
#: views/b2s/
|
845 |
-
#: views/b2s/ship.php:312 views/b2s/ship.php:372 views/b2s/ship.php:418
|
846 |
-
#: views/b2s/html/footer.php:29 views/b2s/html/footer.php:147
|
847 |
-
#: views/b2s/html/footer.php:211 views/b2s/html/footer.php:251
|
848 |
-
#: views/b2s/html/footer.php:320 views/b2s/html/footer.php:359
|
849 |
-
#: views/b2s/html/footer.php:446 views/b2s/html/header.php:325
|
850 |
msgid "Post on pages and groups"
|
851 |
msgstr "Poste auf Seiten und in Gruppen"
|
852 |
|
853 |
-
#: includes/B2S/PostBox.php:
|
854 |
-
#: views/b2s/
|
855 |
-
#: views/b2s/ship.php:313 views/b2s/ship.php:373 views/b2s/ship.php:419
|
856 |
-
#: views/b2s/html/footer.php:30 views/b2s/html/footer.php:148
|
857 |
-
#: views/b2s/html/footer.php:212 views/b2s/html/footer.php:252
|
858 |
-
#: views/b2s/html/footer.php:321 views/b2s/html/footer.php:360
|
859 |
-
#: views/b2s/html/footer.php:447
|
860 |
msgid "Share on multiple profiles, pages and groups"
|
861 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
862 |
|
863 |
-
#: includes/B2S/PostBox.php:
|
864 |
-
#: views/b2s/
|
865 |
-
#: views/b2s/ship.php:314 views/b2s/ship.php:374 views/b2s/ship.php:420
|
866 |
-
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:65
|
867 |
-
#: views/b2s/html/footer.php:149 views/b2s/html/footer.php:213
|
868 |
-
#: views/b2s/html/footer.php:253 views/b2s/html/footer.php:322
|
869 |
-
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:448
|
870 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
871 |
-
msgstr ""
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
#: includes/B2S/PostBox.php:208 views/b2s/curation.php:177
|
876 |
-
#: views/b2s/curation.php:216 views/b2s/post.calendar.php:287
|
877 |
-
#: views/b2s/ship.php:315 views/b2s/ship.php:375 views/b2s/ship.php:421
|
878 |
-
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:150
|
879 |
-
#: views/b2s/html/footer.php:214 views/b2s/html/footer.php:254
|
880 |
-
#: views/b2s/html/footer.php:323 views/b2s/html/footer.php:362
|
881 |
-
#: views/b2s/html/footer.php:449
|
882 |
msgid "Schedule your posts at the best times on each network"
|
883 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
884 |
|
885 |
-
#: includes/B2S/PostBox.php:
|
886 |
-
#: views/b2s/
|
887 |
-
|
888 |
-
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:151
|
889 |
-
#: views/b2s/html/footer.php:215 views/b2s/html/footer.php:255
|
890 |
-
#: views/b2s/html/footer.php:324 views/b2s/html/footer.php:363
|
891 |
-
#: views/b2s/html/footer.php:450
|
892 |
-
msgid ""
|
893 |
-
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
894 |
-
"social media posts"
|
895 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
896 |
|
897 |
-
#: includes/B2S/PostBox.php:
|
898 |
-
#: views/b2s/
|
899 |
-
#: views/b2s/ship.php:317 views/b2s/ship.php:377 views/b2s/ship.php:423
|
900 |
-
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:152
|
901 |
-
#: views/b2s/html/footer.php:216 views/b2s/html/footer.php:256
|
902 |
-
#: views/b2s/html/footer.php:325 views/b2s/html/footer.php:364
|
903 |
-
#: views/b2s/html/footer.php:451
|
904 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
905 |
-
msgstr ""
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
#: includes/B2S/PostBox.php:211 views/b2s/curation.php:180
|
910 |
-
#: views/b2s/curation.php:219 views/b2s/post.calendar.php:290
|
911 |
-
#: views/b2s/ship.php:318 views/b2s/ship.php:378 views/b2s/ship.php:424
|
912 |
-
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:153
|
913 |
-
#: views/b2s/html/footer.php:217 views/b2s/html/footer.php:257
|
914 |
-
#: views/b2s/html/footer.php:326 views/b2s/html/footer.php:365
|
915 |
-
#: views/b2s/html/footer.php:452
|
916 |
msgid "Schedule and re-share old posts"
|
917 |
msgstr "Plane und teile alte Beiträge"
|
918 |
|
919 |
-
#: includes/B2S/PostBox.php:
|
920 |
-
#: views/b2s/
|
921 |
-
#: views/b2s/ship.php:319 views/b2s/ship.php:379 views/b2s/ship.php:425
|
922 |
-
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:67
|
923 |
-
#: views/b2s/html/footer.php:154 views/b2s/html/footer.php:218
|
924 |
-
#: views/b2s/html/footer.php:258 views/b2s/html/footer.php:327
|
925 |
-
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:453
|
926 |
msgid "Select link format or image format for your posts"
|
927 |
-
msgstr ""
|
928 |
-
|
929 |
-
|
930 |
-
#:
|
931 |
-
#: views/b2s/curation.php:221 views/b2s/post.calendar.php:292
|
932 |
-
#: views/b2s/ship.php:320 views/b2s/ship.php:380 views/b2s/ship.php:426
|
933 |
-
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:68
|
934 |
-
#: views/b2s/html/footer.php:155 views/b2s/html/footer.php:219
|
935 |
-
#: views/b2s/html/footer.php:259 views/b2s/html/footer.php:328
|
936 |
-
#: views/b2s/html/footer.php:367 views/b2s/html/footer.php:454
|
937 |
msgid "Select individual images per post"
|
938 |
-
msgstr ""
|
939 |
-
|
940 |
-
|
941 |
-
#:
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
#: views/b2s/html/footer.php:
|
946 |
-
#: views/b2s/html/footer.php:
|
947 |
-
#: views/b2s/html/footer.php:455
|
948 |
-
msgid ""
|
949 |
-
"Reporting & calendar: keep track of your published and scheduled social "
|
950 |
-
"media posts"
|
951 |
-
msgstr ""
|
952 |
-
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
953 |
-
"Media Beiträge"
|
954 |
-
|
955 |
-
#: includes/B2S/PostBox.php:216 views/b2s/curation.php:185
|
956 |
-
#: views/b2s/curation.php:224 views/b2s/post.calendar.php:295
|
957 |
-
#: views/b2s/ship.php:323 views/b2s/ship.php:383 views/b2s/ship.php:429
|
958 |
-
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:158
|
959 |
-
#: views/b2s/html/footer.php:222 views/b2s/html/footer.php:262
|
960 |
-
#: views/b2s/html/footer.php:331 views/b2s/html/footer.php:370
|
961 |
-
#: views/b2s/html/footer.php:457
|
962 |
msgid "Upgrade to SMART and above"
|
963 |
msgstr "Upgrade auf SMART und höher"
|
964 |
|
965 |
-
#: includes/B2S/PostBox.php:
|
966 |
-
#: views/b2s/
|
967 |
-
#: views/b2s/ship.php:325 views/b2s/ship.php:385 views/b2s/ship.php:431
|
968 |
-
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:73
|
969 |
-
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:160
|
970 |
-
#: views/b2s/html/footer.php:224 views/b2s/html/footer.php:264
|
971 |
-
#: views/b2s/html/footer.php:333 views/b2s/html/footer.php:372
|
972 |
-
#: views/b2s/html/footer.php:460
|
973 |
#, php-format
|
974 |
-
msgid ""
|
975 |
-
"
|
976 |
-
"Blog2Social Premium</a> (no payment information needed)"
|
977 |
-
msgstr ""
|
978 |
-
"oder <a target=\"_blank\" href=\"%s\">Starte mit der 30-tägigen kostenlosen "
|
979 |
-
"Testversion von Blog2Social Premium</a> (keine Zahlungsinformationen "
|
980 |
-
"erforderlich)"
|
981 |
|
982 |
-
#: includes/B2S/PostBox.php:
|
983 |
-
#: includes/B2S/Settings/Item.php:488
|
984 |
msgid "Select network collection:"
|
985 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
986 |
|
987 |
-
#: includes/B2S/PostBox.php:
|
988 |
-
#: includes/B2S/Curation/View.php:97 includes/B2S/Settings/Item.php:499
|
989 |
msgid "Select Twitter profile:"
|
990 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
991 |
|
992 |
-
#: includes/B2S/PostBox.php:
|
993 |
msgid "When do you want to share your post on social media?"
|
994 |
msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
995 |
|
996 |
-
#: includes/B2S/PostBox.php:
|
997 |
msgid "immediately after publishing"
|
998 |
msgstr "sofort nach Veröffentlichung"
|
999 |
|
1000 |
-
#: includes/B2S/PostBox.php:
|
1001 |
msgid "at best times"
|
1002 |
msgstr "zu den besten Zeiten"
|
1003 |
|
1004 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1005 |
msgid ""
|
1006 |
-
"
|
1007 |
-
"
|
1008 |
msgstr ""
|
1009 |
-
"
|
1010 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1011 |
|
1012 |
#: views/b2s/curation.draft.php:17
|
1013 |
msgid "Get the Blog2Social Browser Extension"
|
1014 |
msgstr "Blog2Social Browser Erweiterung"
|
1015 |
|
1016 |
-
#: views/b2s/curation.draft.php:47 views/b2s/network.php:
|
1017 |
-
#: views/b2s/
|
1018 |
-
#: views/b2s/
|
1019 |
-
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1020 |
-
#: views/b2s/post.calendar.php:243 views/b2s/post.draft.php:42
|
1021 |
-
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:45
|
1022 |
-
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1023 |
-
#: views/b2s/post.sched.php:59 views/b2s/ship.php:188 views/b2s/ship.php:570
|
1024 |
-
#: views/b2s/ship.php:658 views/b2s/support.php:204
|
1025 |
-
#: views/prg/html/header.php:86
|
1026 |
msgid "Loading..."
|
1027 |
msgstr "Wird geladen..."
|
1028 |
|
@@ -1034,20 +823,13 @@ msgstr "Entwurf löschen"
|
|
1034 |
msgid "Are you sure you want to delete this draft?"
|
1035 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1036 |
|
1037 |
-
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:141
|
1038 |
-
#: views/b2s/
|
1039 |
-
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
1040 |
-
#: views/b2s/post.notice.php:85 views/b2s/post.publish.php:85
|
1041 |
-
#: views/b2s/post.sched.php:99 views/b2s/ship.php:474 views/b2s/ship.php:553
|
1042 |
-
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
1043 |
msgid "NO"
|
1044 |
msgstr "NEIN"
|
1045 |
|
1046 |
-
#: views/b2s/curation.draft.php:91 views/b2s/network.php:
|
1047 |
-
#: views/b2s/
|
1048 |
-
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:86
|
1049 |
-
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:100
|
1050 |
-
#: views/b2s/widgets/posts.php:68
|
1051 |
msgid "YES, delete"
|
1052 |
msgstr "Ja, löschen"
|
1053 |
|
@@ -1056,13 +838,8 @@ msgid "No link preview available. Please check your link."
|
|
1056 |
msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
|
1057 |
|
1058 |
#: views/b2s/curation.php:34
|
1059 |
-
msgid ""
|
1060 |
-
"
|
1061 |
-
"account."
|
1062 |
-
msgstr ""
|
1063 |
-
"Keine verbundenen Netzwerke vorhanden. Bitte stelle sicher, dass Du "
|
1064 |
-
"mindestens einen Social Media Account in Blog2Social unter Netzwerke "
|
1065 |
-
"verbunden hast."
|
1066 |
|
1067 |
#: views/b2s/curation.php:37
|
1068 |
msgid "Invalid data. Please check your data."
|
@@ -1072,31 +849,17 @@ msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
|
1072 |
msgid "Saved as draft."
|
1073 |
msgstr "Als Entwurf gespeichert."
|
1074 |
|
1075 |
-
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
|
1076 |
-
#: views/b2s/post.sched.php:189 includes/B2S/Settings/Item.php:419
|
1077 |
-
#: includes/B2S/Settings/Item.php:452 views/b2s/html/footer.php:111
|
1078 |
msgid "Link Post"
|
1079 |
msgstr "Link-Beitrag"
|
1080 |
|
1081 |
-
#: views/b2s/curation.php:47 views/b2s/curation.php:49
|
1082 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1083 |
-
#: includes/B2S/Settings/Item.php:433 includes/B2S/Settings/Item.php:452
|
1084 |
msgid "Image Post"
|
1085 |
msgstr "Bild-Beitrag"
|
1086 |
|
1087 |
-
#: views/b2s/curation.php:
|
1088 |
-
#: views/b2s/html/post.navbar.php:
|
1089 |
-
|
1090 |
-
msgstr "Neu"
|
1091 |
-
|
1092 |
-
#: views/b2s/curation.php:49 views/b2s/network.php:215 views/b2s/ship.php:23
|
1093 |
-
#: includes/B2S/Curation/View.php:56 includes/B2S/Network/Item.php:162
|
1094 |
-
#: includes/B2S/Network/Item.php:256 includes/B2S/Network/Item.php:322
|
1095 |
-
#: includes/B2S/Network/Item.php:384 includes/B2S/Settings/Item.php:117
|
1096 |
-
#: includes/B2S/Settings/Item.php:339 includes/B2S/Ship/Image.php:80
|
1097 |
-
#: includes/B2S/Ship/Item.php:1009 views/b2s/html/post.navbar.php:15
|
1098 |
-
#: views/b2s/html/post.navbar.php:19 views/b2s/partials/post-edit-modal.php:9
|
1099 |
-
#: views/b2s/widgets/posts.php:18
|
1100 |
msgid "SMART"
|
1101 |
msgstr "SMART"
|
1102 |
|
@@ -1106,8 +869,7 @@ msgstr "Daten werden geladen..."
|
|
1106 |
|
1107 |
#: views/b2s/curation.php:65
|
1108 |
msgid "Enter a link you want share on your social media channels"
|
1109 |
-
msgstr ""
|
1110 |
-
"Füge einen Link ein, den Du auf Deinen Social Media Kanälen teilen möchtest"
|
1111 |
|
1112 |
#: views/b2s/curation.php:66
|
1113 |
msgid "Please enter a valid link"
|
@@ -1121,14 +883,8 @@ msgstr "Link eingeben"
|
|
1121 |
msgid "continue"
|
1122 |
msgstr "weiter"
|
1123 |
|
1124 |
-
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:446
|
1125 |
-
#: includes/B2S/Ship/Item.php:
|
1126 |
-
#: includes/B2S/Ship/Item.php:534 includes/B2S/Ship/Item.php:563
|
1127 |
-
#: includes/B2S/Ship/Item.php:591 includes/B2S/Ship/Item.php:634
|
1128 |
-
#: includes/B2S/Ship/Item.php:657 includes/B2S/Ship/Item.php:678
|
1129 |
-
#: includes/B2S/Ship/Item.php:699 includes/B2S/Ship/Item.php:720
|
1130 |
-
#: includes/B2S/Ship/Item.php:741 includes/B2S/Ship/Item.php:762
|
1131 |
-
#: includes/B2S/Ship/Item.php:806
|
1132 |
msgid "Change image"
|
1133 |
msgstr "Bild ändern"
|
1134 |
|
@@ -1136,8 +892,7 @@ msgstr "Bild ändern"
|
|
1136 |
msgid "Write something..."
|
1137 |
msgstr "Schreibe etwas..."
|
1138 |
|
1139 |
-
#: views/b2s/curation.php:112 views/b2s/ship.php:260 views/b2s/ship.php:262
|
1140 |
-
#: includes/B2S/Post/Item.php:379
|
1141 |
msgid "Re-share this post"
|
1142 |
msgstr "Diesen Beitrag nochmal teilen"
|
1143 |
|
@@ -1145,81 +900,51 @@ msgstr "Diesen Beitrag nochmal teilen"
|
|
1145 |
msgid "Create a new post"
|
1146 |
msgstr "Neuen Social Media Post erstellen"
|
1147 |
|
1148 |
-
#: views/b2s/curation.php:119 views/b2s/post.calendar.php:38
|
1149 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:659 includes/B2S/Post/Filter.php:57
|
1150 |
-
#: includes/B2S/Post/Item.php:308 includes/B2S/Ship/Save.php:417
|
1151 |
-
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1152 |
msgid "published"
|
1153 |
msgstr "veröffentlicht"
|
1154 |
|
1155 |
-
#: views/b2s/curation.php:135 views/b2s/post.approve.php:109
|
1156 |
-
#: views/b2s/ship.php:468
|
1157 |
msgid "Do you want to mark this post as published ?"
|
1158 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1159 |
|
1160 |
-
#: views/b2s/curation.php:140 views/b2s/post.approve.php:114
|
1161 |
-
#: views/b2s/ship.php:473 views/b2s/ship.php:554
|
1162 |
msgid "YES"
|
1163 |
msgstr "JA"
|
1164 |
|
1165 |
-
#: views/b2s/curation.php:154 views/b2s/post.calendar.php:264
|
1166 |
-
#: views/b2s/ship.php:398
|
1167 |
msgid "Need to schedule your posts?"
|
1168 |
msgstr "Du möchtest Deine Beiträge planen?"
|
1169 |
|
1170 |
-
#: views/b2s/curation.php:157 views/b2s/post.calendar.php:267
|
1171 |
-
#: views/b2s/ship.php:401
|
1172 |
msgid "Blog2Social Premium covers everything you need."
|
1173 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1174 |
|
1175 |
-
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:270
|
1176 |
-
#: views/b2s/ship.php:404 includes/B2S/Ship/Item.php:1010
|
1177 |
msgid "Schedule for specific dates"
|
1178 |
msgstr "Für bestimmte Termine planen"
|
1179 |
|
1180 |
-
#: views/b2s/curation.php:161 views/b2s/post.calendar.php:271
|
1181 |
-
|
1182 |
-
|
1183 |
-
"You want to publish a post on a specific date? No problem! Just enter your "
|
1184 |
-
"desired date and you are ready to go!"
|
1185 |
-
msgstr ""
|
1186 |
-
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
1187 |
-
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
1188 |
|
1189 |
-
#: views/b2s/curation.php:163 views/b2s/post.calendar.php:273
|
1190 |
-
#: views/b2s/ship.php:407
|
1191 |
msgid "Schedule post recurrently"
|
1192 |
msgstr "Beitrag mehrfach planen"
|
1193 |
|
1194 |
-
#: views/b2s/curation.php:164 views/b2s/post.calendar.php:274
|
1195 |
-
|
1196 |
-
|
1197 |
-
"You have evergreen content you want to re-share from time to time in your "
|
1198 |
-
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
1199 |
-
"or recurringly at specific times."
|
1200 |
-
msgstr ""
|
1201 |
-
"Du möchtest Deine beliebtesten Beiträge wiederholt auf den Social Media "
|
1202 |
-
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
1203 |
-
"wiederkehrenden Rhythmus"
|
1204 |
|
1205 |
-
#: views/b2s/curation.php:166 views/b2s/post.calendar.php:276
|
1206 |
-
#: views/b2s/ship.php:410
|
1207 |
msgid "Best Time Scheduler"
|
1208 |
msgstr "Beste Zeiten Manager"
|
1209 |
|
1210 |
-
#: views/b2s/curation.php:167 views/b2s/post.calendar.php:277
|
1211 |
-
|
1212 |
-
msgid ""
|
1213 |
-
"Whenever you publish a post, only a fraction of your followers will actually "
|
1214 |
-
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
1215 |
-
"at the best times for each social network. Get more outreach and extend the "
|
1216 |
-
"lifespan of your posts."
|
1217 |
msgstr ""
|
1218 |
-
"Wenn Du einen Post in den Social Media veröffentlichst, wird Dein Beitrag "
|
1219 |
-
"
|
1220 |
-
"Beste Zeiten Manager, um Deine Beiträge zu den besten Zeiten des jeweiligen "
|
1221 |
-
"Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
|
1222 |
-
"Deiner Posts."
|
1223 |
|
1224 |
#: views/b2s/curation.php:199
|
1225 |
msgid "Blog2Social: Social Media Posts"
|
@@ -1231,539 +956,398 @@ msgstr "Das ist eine Premium-Funktion."
|
|
1231 |
|
1232 |
#: views/b2s/curation.php:209
|
1233 |
msgid "You want to create image posts with any image from your media library?"
|
1234 |
-
msgstr ""
|
1235 |
-
"Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
|
1236 |
-
"erstellen?"
|
1237 |
|
1238 |
#: views/b2s/curation.php:238
|
1239 |
msgid "Select image"
|
1240 |
msgstr "Bild auswählen"
|
1241 |
|
1242 |
-
#: views/b2s/dashboard.php:
|
1243 |
-
msgid "What's New"
|
1244 |
-
msgstr "Das ist neu"
|
1245 |
-
|
1246 |
-
#: views/b2s/dashboard.php:27
|
1247 |
msgid "Your Activity"
|
1248 |
msgstr "Deine Aktivität"
|
1249 |
|
1250 |
-
#: views/b2s/dashboard.php:
|
1251 |
msgid "List"
|
1252 |
msgstr "Liste"
|
1253 |
|
1254 |
-
#: views/b2s/dashboard.php:
|
1255 |
msgid "Chart"
|
1256 |
msgstr "Diagramm"
|
1257 |
|
1258 |
-
#: views/b2s/dashboard.php:
|
1259 |
msgid "Follow us"
|
1260 |
msgstr "Folge uns"
|
1261 |
|
1262 |
-
#: views/b2s/network.php:
|
1263 |
-
#: views/b2s/post.calendar.php:225 views/b2s/post.calendar.php:226
|
1264 |
-
#: views/prg/post.php:26 views/prg/post.php:27
|
1265 |
-
#: views/b2s/html/post.navbar.php:25 views/b2s/html/post.navbar.php:26
|
1266 |
msgid "filter"
|
1267 |
msgstr "Filter"
|
1268 |
|
1269 |
-
#: views/b2s/network.php:
|
1270 |
msgid "Create new network collection"
|
1271 |
msgstr "Neue Netzwerkgruppierung anlegen"
|
1272 |
|
1273 |
-
#: views/b2s/network.php:
|
1274 |
msgid "You want to define a new combination of networks?"
|
1275 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
1276 |
|
1277 |
-
#: views/b2s/network.php:
|
1278 |
-
#: includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:159
|
1279 |
-
#: includes/B2S/Ship/Image.php:87 includes/B2S/Ship/Portale.php:32
|
1280 |
-
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:41
|
1281 |
msgid "PRO"
|
1282 |
msgstr "PRO"
|
1283 |
|
1284 |
-
#: views/b2s/network.php:
|
1285 |
msgid "Delete"
|
1286 |
msgstr "Löschen"
|
1287 |
|
1288 |
-
#: views/b2s/network.php:
|
1289 |
-
#: views/b2s/html/footer.php:207
|
1290 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1291 |
-
msgstr ""
|
1292 |
-
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
1293 |
-
"Manager benutzen?"
|
1294 |
|
1295 |
-
#: views/b2s/network.php:
|
1296 |
msgid "Load Best Times"
|
1297 |
msgstr "Lade beste Zeiten"
|
1298 |
|
1299 |
-
#: views/b2s/network.php:
|
1300 |
msgid "create"
|
1301 |
msgstr "erstellen"
|
1302 |
|
1303 |
-
#: views/b2s/network.php:
|
1304 |
msgid "Delete Profile"
|
1305 |
msgstr "Profil löschen"
|
1306 |
|
1307 |
-
#: views/b2s/network.php:
|
1308 |
msgid "Do you really want to delete this profile"
|
1309 |
msgstr "Soll Dein Profil wirklich gelöscht werden?"
|
1310 |
|
1311 |
-
#: views/b2s/network.php:
|
1312 |
msgid "Google My Business"
|
1313 |
msgstr "Google My Business"
|
1314 |
|
1315 |
-
#: views/b2s/network.php:121
|
1316 |
-
msgid ""
|
1317 |
-
"Blog2Social uses the official Google My Business API to share your content "
|
1318 |
-
"on your business listing. You can connect Google My Business listings with "
|
1319 |
-
"up to nine different locations to Blog2Social and you can choose which "
|
1320 |
-
"location you want to share your content on."
|
1321 |
-
msgstr ""
|
1322 |
-
"Blog2Social nutzt die offizielle Google My Business API um Ihre Blogbeiträge "
|
1323 |
-
"an Ihren Brancheneintrag zu versenden. Sie können Brancheneinträge mit bis "
|
1324 |
-
"zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf "
|
1325 |
-
"welchem Standort Ihr Content geteilt werden soll."
|
1326 |
-
|
1327 |
#: views/b2s/network.php:124
|
1328 |
-
msgid ""
|
1329 |
-
"Google currently allows access to the API for all companies with up to 9 "
|
1330 |
-
"locations in their Google My Business Listings. However, Google plans to "
|
1331 |
-
"extend the API for companies with more than 9 locations in their Google My "
|
1332 |
-
"Business listings."
|
1333 |
msgstr ""
|
1334 |
-
"
|
1335 |
-
"
|
1336 |
-
|
1337 |
-
|
|
|
|
|
1338 |
|
1339 |
-
#: views/b2s/network.php:
|
1340 |
-
#: includes/B2S/Ship/Item.php:1048 views/b2s/partials/post-edit-modal.php:48
|
1341 |
msgid "Learn more"
|
1342 |
msgstr "Mehr erfahren"
|
1343 |
|
1344 |
-
#: views/b2s/network.php:
|
1345 |
msgid "Delete Authorization"
|
1346 |
msgstr "Autorisierung löschen"
|
1347 |
|
1348 |
-
#: views/b2s/network.php:
|
1349 |
msgid "Do you really want to delete this authorization"
|
1350 |
msgstr "Soll die Autorisierung wirklich gelöscht werden?"
|
1351 |
|
1352 |
-
#: views/b2s/network.php:
|
1353 |
msgid "You have still set up scheduled posts for this network:"
|
1354 |
-
msgstr ""
|
1355 |
-
"Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
1356 |
|
1357 |
-
#: views/b2s/network.php:
|
1358 |
msgid "This network connection is still assigned to other users."
|
1359 |
msgstr "Diese Netzwerkverbindung ist anderen Blog-Nutzern zugeordnet."
|
1360 |
|
1361 |
-
#: views/b2s/network.php:
|
1362 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
1363 |
-
msgstr ""
|
1364 |
-
"Der Benutzer, dem die Verbindung zugewiesen ist, hat noch geplante Beiträge."
|
1365 |
|
1366 |
-
#: views/b2s/network.php:
|
1367 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1368 |
msgstr "Alle geplanten Beiträge für diesen Account unwiderruflich löschen."
|
1369 |
|
1370 |
-
#: views/b2s/network.php:
|
1371 |
msgid "scheduled posts"
|
1372 |
msgstr "geplante Beiträge"
|
1373 |
|
1374 |
-
#: views/b2s/network.php:
|
1375 |
-
msgid ""
|
1376 |
-
"
|
1377 |
-
"assigned connection from other users first."
|
1378 |
-
msgstr ""
|
1379 |
-
"Die Verbindung ist noch anderen Benutzern zugeordnet. Bitte entfernen Sie "
|
1380 |
-
"zuerst die zugewiesene Verbindung von anderen Benutzern."
|
1381 |
|
1382 |
-
#: views/b2s/network.php:
|
1383 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1384 |
-
msgstr ""
|
1385 |
-
"Lösche alle geplanten Beiträge von allen Benutzern, die diese Verbindung "
|
1386 |
-
"nutzen."
|
1387 |
|
1388 |
-
#: views/b2s/network.php:
|
1389 |
msgid "View schedule posts"
|
1390 |
msgstr "Geplante Beiträge anzeigen"
|
1391 |
|
1392 |
-
#: views/b2s/network.php:
|
1393 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
1394 |
-
msgstr ""
|
1395 |
-
"Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
|
1396 |
|
1397 |
-
#: views/b2s/network.php:
|
1398 |
msgid "Change successful"
|
1399 |
msgstr "Change successful"
|
1400 |
|
1401 |
-
#: views/b2s/network.php:
|
1402 |
msgid "Could not be changed"
|
1403 |
msgstr "Could not be changed"
|
1404 |
|
1405 |
-
#: views/b2s/network.php:
|
1406 |
msgid "modfiy"
|
1407 |
msgstr "modify"
|
1408 |
|
1409 |
-
#: views/b2s/network.php:
|
1410 |
-
#: includes/B2S/Network/Item.php:162
|
1411 |
msgid "Edit Post Template"
|
1412 |
msgstr "Beitragsvorlage bearbeiten"
|
1413 |
|
1414 |
-
#: views/b2s/network.php:
|
1415 |
-
#: includes/B2S/Network/Item.php:536 includes/B2S/Settings/Item.php:313
|
1416 |
msgid "save"
|
1417 |
msgstr "speichern"
|
1418 |
|
1419 |
-
#: views/b2s/network.php:
|
1420 |
msgid "Instant Caching for Link Posts"
|
1421 |
msgstr "Instant Caching für Link-Beiträge"
|
1422 |
|
1423 |
-
#: views/b2s/network.php:
|
1424 |
-
msgid ""
|
1425 |
-
"Please enable this feature, if you are using varnish caching (HTTP "
|
1426 |
-
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
1427 |
-
"parameter to the post URL of your link posts to ensure that the network "
|
1428 |
-
"always pulls the current meta data of your blog post."
|
1429 |
msgstr ""
|
1430 |
-
"Bitte aktiviere diese Funktion, wenn Du varnish caching (HTTP-Beschleuniger "
|
1431 |
-
"
|
1432 |
-
"Beiträgen den “no-cache=1” Parameter an die Beitrags-URL, um sicherzustellen,"
|
1433 |
-
" dass das Netzwerk immer die aktuellen Meta Daten Deines Blogbeitrags zieht."
|
1434 |
|
1435 |
-
#: views/b2s/network.php:
|
1436 |
msgid "Choose your Post Format"
|
1437 |
msgstr "Wähle Dein Postformat "
|
1438 |
|
1439 |
-
#: views/b2s/network.php:
|
1440 |
-
|
1441 |
-
|
1442 |
-
"Decide in which post format you want to post your content: Link post or "
|
1443 |
-
"image post."
|
1444 |
-
msgstr ""
|
1445 |
-
"Entscheide, in welchem Format Du Deine Inhalte veröffentlichen möchtest: "
|
1446 |
-
"Link-Beitrag oder Bild-Beitrag."
|
1447 |
|
1448 |
-
#: views/b2s/network.php:
|
1449 |
-
msgid ""
|
1450 |
-
"
|
1451 |
-
"frame, or as image cut out."
|
1452 |
-
msgstr ""
|
1453 |
-
" Entscheide, in welcher Form Du Deine Inhalte veröffentlichen möchtest. "
|
1454 |
-
"Entweder als Bild mit Rahmen oder als Bildausschnitt."
|
1455 |
|
1456 |
-
#: views/b2s/network.php:
|
1457 |
msgid "Post Content"
|
1458 |
msgstr "Post-Inhalt"
|
1459 |
|
1460 |
-
#: views/b2s/network.php:281
|
1461 |
-
msgid ""
|
1462 |
-
"Edit the content of your post. Move elements by drag and drop into the "
|
1463 |
-
"textarea and customize them as you like."
|
1464 |
-
msgstr ""
|
1465 |
-
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
1466 |
-
"das Textfeld und passe sie nach Deinen Wünschen an."
|
1467 |
-
|
1468 |
#: views/b2s/network.php:284
|
|
|
|
|
|
|
|
|
1469 |
msgid "Legend"
|
1470 |
msgstr "Legende"
|
1471 |
|
1472 |
-
#: views/b2s/network.php:
|
1473 |
msgid "The title of your post"
|
1474 |
msgstr "Der Titel deines Beitrags."
|
1475 |
|
1476 |
-
#: views/b2s/network.php:
|
1477 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1478 |
-
msgstr ""
|
1479 |
-
" Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü deines "
|
1480 |
-
"Beitrags festgelegt)."
|
1481 |
|
1482 |
-
#: views/b2s/network.php:
|
1483 |
msgid "The content of your post"
|
1484 |
msgstr "Der Inhalt Deines Beitrags."
|
1485 |
|
1486 |
-
#: views/b2s/network.php:
|
1487 |
msgid "The tags you have set in your post."
|
1488 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
1489 |
|
1490 |
-
#: views/b2s/network.php:
|
1491 |
msgid "The name of the post author."
|
1492 |
msgstr "Der Name des Autors Deines Beitrags."
|
1493 |
|
1494 |
-
#: views/b2s/network.php:
|
1495 |
msgid "Character limit"
|
1496 |
msgstr "Zeichenbegrenzung"
|
1497 |
|
1498 |
-
#: views/b2s/network.php:
|
1499 |
-
msgid ""
|
1500 |
-
"
|
1501 |
-
"individually. Your text will be shortened after the last comma, period, or "
|
1502 |
-
"space character within your character limit."
|
1503 |
-
msgstr ""
|
1504 |
-
"Lege das Zeichenlimit für die Variablen \"Textauszug\" (EXCERPT) und "
|
1505 |
-
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1506 |
-
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1507 |
|
1508 |
-
#: views/b2s/network.php:
|
1509 |
-
msgid ""
|
1510 |
-
|
1511 |
-
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
1512 |
-
"(document settings) of your post."
|
1513 |
-
msgstr ""
|
1514 |
-
"Ein “Textauszug” wird nur in Deinen Social-Media-Beitrag eingefügt, wenn Du "
|
1515 |
-
"einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü "
|
1516 |
-
"(Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. "
|
1517 |
|
1518 |
-
#: views/b2s/network.php:
|
1519 |
msgid ""
|
1520 |
-
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
1521 |
-
"
|
1522 |
-
"character limit you define for the \"EXCERPT\" and/or \"CONTENT\" variables "
|
1523 |
-
"will be applied within the remaining available character limit of the social "
|
1524 |
-
"network."
|
1525 |
msgstr ""
|
1526 |
-
"“TITLE” und “KEYWORDS” (Hashtags) werden nicht gekürzt. Wenn Du die "
|
1527 |
-
"
|
1528 |
-
"die von Dir definierte Zeichenanzahl für die Variablen \"Textauszug\" "
|
1529 |
-
"und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
|
1530 |
-
"des jeweiligen Social Networks berücksichtigt."
|
1531 |
|
1532 |
-
#: views/b2s/network.php:
|
1533 |
msgid "Connect with Pinterest"
|
1534 |
msgstr "Mit Pinterest verbinden"
|
1535 |
|
1536 |
-
#: views/b2s/network.php:
|
1537 |
msgid ""
|
1538 |
-
"Please make sure to use your original Pinterest login data (email and "
|
1539 |
-
"password). Social Login via Facebook or Google login data will not work here."
|
1540 |
-
" Please also check if the two-factor authentication in Pinterest is "
|
1541 |
-
"deactivated to ensure a stable connection to Blog2Social."
|
1542 |
msgstr ""
|
1543 |
-
"Bitte achte darauf, dass Du nur Deine direkten Pinterest Login-Daten "
|
1544 |
-
"verwendest. Melde Dich nicht über Facebook oder Google an. Bitte prüfe auch, "
|
1545 |
-
"dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
|
1546 |
-
"stabile Verbindung zu Blog2Social sicherzustellen."
|
1547 |
|
1548 |
-
#: views/b2s/network.php:
|
1549 |
msgid "An error occurred! Please try again."
|
1550 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
1551 |
|
1552 |
-
#: views/b2s/network.php:
|
1553 |
-
#: views/b2s/ship.php:576
|
1554 |
#, php-format
|
1555 |
-
msgid ""
|
1556 |
-
"
|
1557 |
-
"Upgrade to Blog2Social Premium</a>"
|
1558 |
-
msgstr ""
|
1559 |
-
"Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
|
1560 |
-
"href=\"%s\">Upgrade auf Blog2Social Premium</a>"
|
1561 |
|
1562 |
-
#: views/b2s/network.php:
|
1563 |
msgid "Invalid Data! Please try again."
|
1564 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
1565 |
|
1566 |
-
#: views/b2s/network.php:
|
1567 |
-
msgid ""
|
1568 |
-
"
|
1569 |
-
"up at least one pinboard to pin on your Pinterest account!"
|
1570 |
-
msgstr ""
|
1571 |
-
"Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
|
1572 |
-
"richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
|
1573 |
|
1574 |
-
#: views/b2s/network.php:
|
1575 |
#, php-format
|
1576 |
-
msgid ""
|
1577 |
-
"
|
1578 |
-
"Pinterest settings, if the two-factor authentication is turned off for this "
|
1579 |
-
"account: <a target=\"_blank\" href=\"%s\">%s</a>"
|
1580 |
-
msgstr ""
|
1581 |
-
"Die Anmeldung ist fehlgeschlagen. Bitte überprüfe Deine Logindaten auf "
|
1582 |
-
"Tippfehler und prüfe in Deinen Pinterest Einstellungen, ob die Zwei-Faktor-"
|
1583 |
-
"Authentifizierung für dieses Konto deaktiviert ist: <a target=\"_blank\" "
|
1584 |
-
"href=\"%s\">%s</a>"
|
1585 |
|
1586 |
-
#: views/b2s/network.php:
|
1587 |
msgid "Pinterest has rejected the connection to your blog"
|
1588 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
1589 |
|
1590 |
-
#: views/b2s/network.php:
|
1591 |
msgid "Please select your currect server location and connect again"
|
1592 |
-
msgstr ""
|
1593 |
-
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut"
|
1594 |
|
1595 |
-
#: views/b2s/network.php:
|
1596 |
-
msgid ""
|
1597 |
-
"
|
1598 |
-
"webserver configuration for caching."
|
1599 |
-
msgstr ""
|
1600 |
-
"Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte "
|
1601 |
-
"überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
1602 |
|
1603 |
-
#: views/b2s/network.php:
|
1604 |
-
msgid ""
|
1605 |
-
"
|
1606 |
-
"on your profile."
|
1607 |
-
msgstr ""
|
1608 |
-
"Anmeldung erfolgreich. Bitte bestätige, dass Blog2Social auf Deinem Profil "
|
1609 |
-
"veröffentlichen darf."
|
1610 |
|
1611 |
-
#: views/b2s/network.php:
|
1612 |
-
#: views/b2s/html/header.php:331 views/prg/html/form.php:141
|
1613 |
-
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1614 |
-
#: views/prg/html/form.php:220
|
1615 |
msgid "E-Mail"
|
1616 |
msgstr "E-Mail"
|
1617 |
|
1618 |
-
#: views/b2s/network.php:
|
1619 |
msgid "Password"
|
1620 |
msgstr "Passwort"
|
1621 |
|
1622 |
-
#: views/b2s/network.php:
|
1623 |
msgid "Server-Location"
|
1624 |
msgstr "Serverstandort"
|
1625 |
|
1626 |
-
#: views/b2s/network.php:
|
1627 |
msgid "Select Pinboard"
|
1628 |
msgstr "Pinnwand auswählen"
|
1629 |
|
1630 |
-
#: views/b2s/network.php:
|
1631 |
-
#: includes/B2S/Settings/Item.php:91
|
1632 |
msgid "authorize"
|
1633 |
msgstr "autorisieren"
|
1634 |
|
1635 |
-
#: views/b2s/network.php:
|
1636 |
msgid "confirm"
|
1637 |
msgstr "bestätigen"
|
1638 |
|
1639 |
-
#: views/b2s/network.php:
|
1640 |
msgid "Advanced Network Settings"
|
1641 |
msgstr "Erweiterte Netzwerkeinstellungen"
|
1642 |
|
1643 |
-
#: views/b2s/network.php:
|
1644 |
msgid "URL Parameters"
|
1645 |
msgstr "URL-Parameter"
|
1646 |
|
1647 |
-
#: views/b2s/network.php:
|
1648 |
msgid "The parameters could not be saved. Please try again."
|
1649 |
-
msgstr ""
|
1650 |
-
"Die Parameter konnten nicht gespeichert werden. Bitte versuchen Sie es noch "
|
1651 |
-
"einmal."
|
1652 |
|
1653 |
-
#: views/b2s/network.php:
|
1654 |
-
#: views/b2s/network.php:454 views/b2s/network.php:457
|
1655 |
-
#: views/b2s/network.php:460
|
1656 |
msgid "An error occured. Please contact our support."
|
1657 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
1658 |
|
1659 |
-
#: views/b2s/network.php:
|
1660 |
msgid "Network collection"
|
1661 |
msgstr "Netzwerkgruppierung"
|
1662 |
|
1663 |
-
#: views/b2s/network.php:
|
1664 |
msgid "Move the connection to another network collection."
|
1665 |
msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
1666 |
|
1667 |
-
#: views/b2s/network.php:
|
1668 |
msgid "move"
|
1669 |
msgstr "verschieben"
|
1670 |
|
1671 |
-
#: views/b2s/network.php:
|
1672 |
msgid "You need at least one network collection"
|
1673 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
1674 |
|
1675 |
-
#: views/b2s/network.php:
|
1676 |
msgid "Team Management"
|
1677 |
msgstr "Team-Management"
|
1678 |
|
1679 |
-
#: views/b2s/network.php:
|
1680 |
msgid "Assign the connection to other blog users"
|
1681 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
1682 |
|
1683 |
-
#: views/b2s/network.php:
|
1684 |
msgid "You don't have a Business License"
|
1685 |
msgstr "Du hast keine Business-Lizenz"
|
1686 |
|
1687 |
-
#: views/b2s/network.php:
|
1688 |
msgid "This user don't have a Business License, or it is not the same"
|
1689 |
-
msgstr ""
|
1690 |
-
"Dieser Benutzer hat keine Business-Lizenz oder nutzt nicht dieselbe Lizenz"
|
1691 |
|
1692 |
-
#: views/b2s/network.php:
|
1693 |
msgid "The connection has already been assigned to this user."
|
1694 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
1695 |
|
1696 |
-
#: views/b2s/network.php:
|
1697 |
msgid "The connection dose not exist"
|
1698 |
msgstr "Diese Verbindung existiert nicht."
|
1699 |
|
1700 |
-
#: views/b2s/network.php:
|
1701 |
msgid "This connection has already been assigned to this user."
|
1702 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
1703 |
|
1704 |
-
#: views/b2s/network.php:478
|
1705 |
-
msgid ""
|
1706 |
-
"You can only share the connection with blog users who use the same license "
|
1707 |
-
"as you."
|
1708 |
-
msgstr ""
|
1709 |
-
"Du kannst Deine Verbindung nur mit Blog-Benutzern teilen, die dieselbe "
|
1710 |
-
"Lizenz verwenden wie Du."
|
1711 |
-
|
1712 |
#: views/b2s/network.php:481
|
|
|
|
|
|
|
|
|
1713 |
msgid "There are no other users to whom the connection can be assigned."
|
1714 |
-
msgstr ""
|
1715 |
-
"Es sind keine weiteren Benutzer vorhanden, denen die Verbindung zugewiesen "
|
1716 |
-
"werden kann."
|
1717 |
|
1718 |
-
#: views/b2s/network.php:
|
1719 |
msgid "assign"
|
1720 |
msgstr "zuweisen"
|
1721 |
|
1722 |
-
#: views/b2s/network.php:
|
1723 |
msgid "Apply best time settings"
|
1724 |
msgstr "Beste Zeiten verwenden"
|
1725 |
|
1726 |
-
#: views/b2s/network.php:
|
1727 |
msgid "Apply post template settings"
|
1728 |
msgstr "Beitragsvorlagen verwenden"
|
1729 |
|
1730 |
-
#: views/b2s/network.php:
|
1731 |
msgid "Apply URL Parameters"
|
1732 |
msgstr "URL-Parameter verwenden"
|
1733 |
|
1734 |
-
#: views/b2s/network.php:
|
1735 |
msgid ""
|
1736 |
-
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
1737 |
-
"
|
1738 |
-
"users. You can update and delete the connections as well as select forums or "
|
1739 |
-
"boards. Other users will be able to use the social media connection you "
|
1740 |
-
"assigned to them to post and schedule to your social media profile, page or "
|
1741 |
-
"group."
|
1742 |
msgstr ""
|
1743 |
-
"Update auf Blog2Social Business, um Deine Verbindungen einfach in eine "
|
1744 |
-
"
|
1745 |
-
|
1746 |
-
|
1747 |
-
"die von Dir zugewiesenen Social-Media-Verbindungen verwenden, um Beiträge "
|
1748 |
-
"auf Deinem Social-Media-Profil, Deiner Seite oder Gruppe zu veröffentlichen "
|
1749 |
-
"oder vorzuplanen."
|
1750 |
-
|
1751 |
-
#: views/b2s/network.php:499
|
1752 |
msgid "Upgrade to Blog2Social Business"
|
1753 |
msgstr "Upgrade auf Blog2Social Business"
|
1754 |
|
1755 |
-
#: views/b2s/network.php:
|
1756 |
#, php-format
|
1757 |
-
msgid ""
|
1758 |
-
"
|
1759 |
-
"create tracking links with UTM paramters. <a target=\"_blank\" href=\"%s\">"
|
1760 |
-
"More information</a>"
|
1761 |
-
msgstr ""
|
1762 |
-
"Definiere Parameter, die bei Posts auf diesem Netzwerk zu Deinem Link "
|
1763 |
-
"hinzugefügt werden sollen z. B. um Tracking-Links mit UTM-Parametern zu "
|
1764 |
-
"erstellen. <a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
1765 |
|
1766 |
-
#: views/b2s/network.php:
|
1767 |
msgid "My Profile"
|
1768 |
msgstr "Mein Profil"
|
1769 |
|
@@ -1775,9 +1359,7 @@ msgstr "Social Media Posts löschen"
|
|
1775 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1776 |
msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
1777 |
|
1778 |
-
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:81
|
1779 |
-
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:95
|
1780 |
-
#: views/b2s/widgets/posts.php:63
|
1781 |
msgid "Number of entries"
|
1782 |
msgstr "Anzahl der Einträge"
|
1783 |
|
@@ -1785,85 +1367,55 @@ msgstr "Anzahl der Einträge"
|
|
1785 |
msgid "Sort by network"
|
1786 |
msgstr "Sortiere nach Netzwerk"
|
1787 |
|
1788 |
-
#: views/b2s/post.calendar.php:37 includes/B2S/Calendar/Filter.php:
|
1789 |
msgid "show all"
|
1790 |
msgstr "alles anzeigen"
|
1791 |
|
1792 |
-
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:18
|
1793 |
-
#: includes/B2S/Post/Filter.php:57 includes/B2S/Post/Item.php:308
|
1794 |
-
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1795 |
msgid "scheduled"
|
1796 |
msgstr "geplant"
|
1797 |
|
1798 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1799 |
-
#: includes/B2S/Network/Item.php:645 includes/B2S/Network/Item.php:648
|
1800 |
-
#: includes/B2S/Settings/Item.php:419 views/b2s/html/footer.php:128
|
1801 |
msgid "Image with frame"
|
1802 |
msgstr "Bild mit Rahmen"
|
1803 |
|
1804 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1805 |
-
#: includes/B2S/Network/Item.php:646 includes/B2S/Network/Item.php:649
|
1806 |
-
#: includes/B2S/Settings/Item.php:433 views/b2s/html/footer.php:133
|
1807 |
msgid "Image cut out"
|
1808 |
msgstr "Bild zuschneiden"
|
1809 |
|
1810 |
-
#: views/b2s/post.calendar.php:87 views/b2s/post.sched.php:172
|
1811 |
msgid "add post"
|
1812 |
msgstr "Beitrag hinzufügen"
|
1813 |
|
1814 |
-
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130
|
1815 |
-
#: views/b2s/ship.php:503
|
1816 |
msgid "Choose your"
|
1817 |
msgstr "Wähle Deinen"
|
1818 |
|
1819 |
-
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130
|
1820 |
-
#: views/b2s/ship.php:503
|
1821 |
msgid "Post Format"
|
1822 |
msgstr "Postformat"
|
1823 |
|
1824 |
-
#: views/b2s/post.calendar.php:112 views/b2s/post.sched.php:132
|
1825 |
-
#: views/b2s/ship.php:505
|
1826 |
msgid "for:"
|
1827 |
msgstr "für:"
|
1828 |
|
1829 |
-
#: views/b2s/post.calendar.php:131 views/b2s/post.sched.php:151
|
1830 |
-
|
1831 |
-
|
1832 |
-
"Define the default settings for the custom post format for all of your "
|
1833 |
-
"Facebook accounts in the Blog2Social settings."
|
1834 |
-
msgstr ""
|
1835 |
-
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1836 |
-
"den Blog2Social Einstellungen."
|
1837 |
|
1838 |
-
#: views/b2s/post.calendar.php:134 views/b2s/post.sched.php:154
|
1839 |
-
|
1840 |
-
|
1841 |
-
"Define the default settings for the custom post format for all of your "
|
1842 |
-
"Twitter accounts in the Blog2Social settings."
|
1843 |
-
msgstr ""
|
1844 |
-
"Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
|
1845 |
-
"unter den Blog2Social Einstellungen."
|
1846 |
|
1847 |
-
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:157
|
1848 |
-
|
1849 |
-
|
1850 |
-
"Define the default settings for the custom post format for all of your "
|
1851 |
-
"LinkedIn accounts in the Blog2Social settings."
|
1852 |
-
msgstr ""
|
1853 |
-
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1854 |
-
"unter den Blog2Social Einstellungen."
|
1855 |
|
1856 |
-
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:160
|
1857 |
-
|
1858 |
-
|
1859 |
-
"Define the default settings for the custom post format for all of your "
|
1860 |
-
"Instagram accounts in the Blog2Social settings."
|
1861 |
-
msgstr ""
|
1862 |
-
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1863 |
-
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1864 |
|
1865 |
-
#: views/b2s/post.calendar.php:155 views/b2s/post.sched.php:111
|
1866 |
-
#: views/b2s/ship.php:444
|
1867 |
msgid "Select image for"
|
1868 |
msgstr "Wähle Bild aus für"
|
1869 |
|
@@ -1895,17 +1447,15 @@ msgstr "Entwurf löschen"
|
|
1895 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1896 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1897 |
|
1898 |
-
#: views/b2s/post.favorites.php:67 includes/B2S/Post/Item.php:
|
1899 |
msgid "You have not saved any favorites."
|
1900 |
msgstr "Du hast keine Favoriten gespeichert."
|
1901 |
|
1902 |
-
#: views/b2s/post.notice.php:76 views/b2s/post.publish.php:76
|
1903 |
-
#: views/b2s/widgets/posts.php:58
|
1904 |
msgid "Delete entries from the reporting"
|
1905 |
msgstr "Einträge aus dem Reporting löschen"
|
1906 |
|
1907 |
-
#: views/b2s/post.notice.php:79 views/b2s/post.publish.php:79
|
1908 |
-
#: views/b2s/widgets/posts.php:61
|
1909 |
msgid "You are sure, you want to delete entries from the reporting?"
|
1910 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
1911 |
|
@@ -1913,20 +1463,19 @@ msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
|
1913 |
msgid "Uhr"
|
1914 |
msgstr "Uhr"
|
1915 |
|
1916 |
-
#: views/b2s/post.sched.php:90
|
1917 |
msgid "Delete entries form the scheduling"
|
1918 |
msgstr "Einträge aus der Planung löschen"
|
1919 |
|
1920 |
-
#: views/b2s/post.sched.php:93
|
1921 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
1922 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
1923 |
|
1924 |
-
#: views/b2s/premium.php:14 includes/B2S/
|
1925 |
msgid "Your current license:"
|
1926 |
msgstr "Deine aktuelle Lizenz:"
|
1927 |
|
1928 |
-
#: views/b2s/premium.php:26 views/b2s/html/sidebar.php:47
|
1929 |
-
#: views/b2s/html/sidebar.ship.php:46
|
1930 |
msgid "Start your 30-day free Premium trial"
|
1931 |
msgstr "Teste Blog2Social Premium kostenlos"
|
1932 |
|
@@ -1934,24 +1483,15 @@ msgstr "Teste Blog2Social Premium kostenlos"
|
|
1934 |
msgid "End of Trial"
|
1935 |
msgstr "Ende der Testzeit"
|
1936 |
|
1937 |
-
#: views/b2s/premium.php:31 includes/B2S/
|
1938 |
-
#: includes/B2S/Settings/Item.php:181
|
1939 |
msgid "Upgrade"
|
1940 |
msgstr "Upgrade"
|
1941 |
|
1942 |
#: views/b2s/premium.php:35
|
1943 |
-
msgid ""
|
1944 |
-
"Upgrade to Blog2Social Premium and get even smarter with social media "
|
1945 |
-
"automation: Schedule your posts for the best time or recurringly with the "
|
1946 |
-
"Best Time Manager or the Social Media Calendar. Post to pages, groups and "
|
1947 |
-
"multiple accounts per network."
|
1948 |
msgstr ""
|
1949 |
-
"Nutze Blog2Social Premium für noch intelligentere Social Media "
|
1950 |
-
"
|
1951 |
-
"Zeiten-Manager, wähle bestimmte Termine oder plane Deine Beiträge regelmäßig."
|
1952 |
-
" Behalte den Überblick über Deine Posts mit dem Social Media Kalender. "
|
1953 |
-
"Veröffentliche Beiträge auf Seiten, in Gruppen und auf mehreren Konten pro "
|
1954 |
-
"Netzwerk. Arbeite mit mehr Nutzern im Team. "
|
1955 |
|
1956 |
#: views/b2s/premium.php:41
|
1957 |
msgid "Select a user"
|
@@ -1971,140 +1511,91 @@ msgstr "Lizenz aktivieren"
|
|
1971 |
|
1972 |
#: views/b2s/premium.php:61
|
1973 |
msgid "Go Premium and get even smarter with social media automation"
|
1974 |
-
msgstr ""
|
1975 |
-
"Das sind die Vorteile, von denen Sie mit Blog2Social Premium profitieren "
|
1976 |
-
"können"
|
1977 |
|
1978 |
#: views/b2s/premium.php:70
|
1979 |
msgid "Pages and groups"
|
1980 |
msgstr "Seiten und Gruppen"
|
1981 |
|
1982 |
#: views/b2s/premium.php:71
|
1983 |
-
msgid ""
|
1984 |
-
"
|
1985 |
-
"Medium."
|
1986 |
-
msgstr ""
|
1987 |
-
"Teile Deine Beiträge auf Seiten und in Gruppen auf Facebook, LinkedIn, Xing,"
|
1988 |
-
" VK und Medium."
|
1989 |
|
1990 |
#: views/b2s/premium.php:79
|
1991 |
msgid "More users and accounts"
|
1992 |
msgstr "Mehr Benutzer und Accounts"
|
1993 |
|
1994 |
#: views/b2s/premium.php:80
|
1995 |
-
msgid ""
|
1996 |
-
"
|
1997 |
-
"selected network bundles."
|
1998 |
-
msgstr ""
|
1999 |
-
"Füge mehrere Benutzer und Accounts pro Netzwerk hinzu. Definiere Sharing-"
|
2000 |
-
"Profile für ausgewählte Netzwerk-Bundles."
|
2001 |
|
2002 |
#: views/b2s/premium.php:88
|
2003 |
msgid "Social Media Calendar"
|
2004 |
msgstr "Social Media Kalender"
|
2005 |
|
2006 |
#: views/b2s/premium.php:89
|
2007 |
-
msgid ""
|
2008 |
-
"
|
2009 |
-
"Edit scheduled posts or add new social media posts per drag & drop."
|
2010 |
-
msgstr ""
|
2011 |
-
"Sieh Deinen gesamten Zeitplan auf einen Blick, mit Teamansicht und "
|
2012 |
-
"Netzwerkfilter. Bearbeite geplante Beiträge oder füge neue Social-Media-"
|
2013 |
-
"Beiträge per Drag & Drop hinzu."
|
2014 |
|
2015 |
#: views/b2s/premium.php:97
|
2016 |
msgid "Best Times Manager"
|
2017 |
msgstr "Beste Zeiten Manager"
|
2018 |
|
2019 |
#: views/b2s/premium.php:98
|
2020 |
-
msgid ""
|
2021 |
-
"
|
2022 |
-
"your own best time scheme."
|
2023 |
-
msgstr ""
|
2024 |
-
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
2025 |
-
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2026 |
|
2027 |
-
#: views/b2s/premium.php:109
|
2028 |
-
#: includes/B2S/Post/Item.php:608 includes/B2S/Post/Item.php:744
|
2029 |
msgid "Auto-Posting"
|
2030 |
msgstr "Auto-Posting"
|
2031 |
|
2032 |
#: views/b2s/premium.php:110
|
2033 |
-
msgid ""
|
2034 |
-
"
|
2035 |
-
"your pre-scheduled time-settings."
|
2036 |
-
msgstr ""
|
2037 |
-
"Teile Deine Beiträge automatisch in Deinen bevorzugten Netzwerken sofort "
|
2038 |
-
"oder zu den von Dir festgelegten Zeiten."
|
2039 |
|
2040 |
#: views/b2s/premium.php:118
|
2041 |
msgid "RSS import & auto-post"
|
2042 |
msgstr "RSS-Import & Auto-Poster"
|
2043 |
|
2044 |
#: views/b2s/premium.php:119
|
2045 |
-
msgid ""
|
2046 |
-
"
|
2047 |
-
"content."
|
2048 |
-
msgstr ""
|
2049 |
-
"Teile importierte RSS-Feeds automatisch, um mehr Variationen für Deine "
|
2050 |
-
"Inhalte zu erhalten."
|
2051 |
|
2052 |
#: views/b2s/premium.php:128
|
2053 |
-
msgid ""
|
2054 |
-
"
|
2055 |
-
"your business listing and to add fresh content for your company."
|
2056 |
-
msgstr ""
|
2057 |
-
" Plane und teile Deine Blogartikel als Google My Business - Beiträge und "
|
2058 |
-
"verleihe Deinem Unternehmen mit aktullen News mehr Sichtbarkeit."
|
2059 |
|
2060 |
#: views/b2s/premium.php:136
|
2061 |
msgid "Schedule curated content"
|
2062 |
msgstr "Kuratierte Inhalte planen"
|
2063 |
|
2064 |
#: views/b2s/premium.php:137
|
2065 |
-
msgid ""
|
2066 |
-
"
|
2067 |
-
"networks."
|
2068 |
-
msgstr ""
|
2069 |
-
"Plane und teile kuratierte Inhalte aus beliebigen Quellen in Deinen "
|
2070 |
-
"bevorzugten Netzwerken."
|
2071 |
|
2072 |
#: views/b2s/premium.php:148
|
2073 |
msgid "Custom image"
|
2074 |
msgstr "Benutzerdefinierte Bilder"
|
2075 |
|
2076 |
#: views/b2s/premium.php:149
|
2077 |
-
msgid ""
|
2078 |
-
"
|
2079 |
-
"media library to create more variations for your posts."
|
2080 |
-
msgstr ""
|
2081 |
-
"Wähle individuelle Bilder pro Beitrag oder Netzwerk sowie ein beliebiges "
|
2082 |
-
"Bild aus Deiner Mediathek aus, um weitere Variationen für Deine Beiträge zu "
|
2083 |
-
"erstellen."
|
2084 |
|
2085 |
#: views/b2s/premium.php:157
|
2086 |
msgid "Custom format"
|
2087 |
msgstr "Benutzerdefiniertes Format"
|
2088 |
|
2089 |
#: views/b2s/premium.php:158
|
2090 |
-
msgid ""
|
2091 |
-
"
|
2092 |
-
"your post."
|
2093 |
-
msgstr ""
|
2094 |
-
"Wähle zwischen Link- oder Bild-Post pro Netzwerk, um das optimale Format für "
|
2095 |
-
"Deinen Beitrag zu wählen"
|
2096 |
|
2097 |
#: views/b2s/premium.php:166
|
2098 |
msgid "Open Graph and Twitter Card Tags"
|
2099 |
msgstr "Open Graph und Twitter Card Tags"
|
2100 |
|
2101 |
#: views/b2s/premium.php:167
|
2102 |
-
msgid ""
|
2103 |
-
"
|
2104 |
-
"Twitter Cards to define the look of your link posts."
|
2105 |
-
msgstr ""
|
2106 |
-
"Setze und bearbeite Social-Media-Tags für Open Graph (z.B. Facebook und "
|
2107 |
-
"LinkedIn) und Twitter Cards, um das Aussehen Deiner Link-Posts festzulegen."
|
2108 |
|
2109 |
#: views/b2s/premium.php:175
|
2110 |
msgid "Premium support"
|
@@ -2122,18 +1613,6 @@ msgstr "Versionen und Preise anzeigen"
|
|
2122 |
msgid "Show all premium features"
|
2123 |
msgstr "Alle Premium-Features anzeigen"
|
2124 |
|
2125 |
-
#: views/b2s/settings.php:18 includes/B2S/Ship/Image.php:28
|
2126 |
-
msgid ""
|
2127 |
-
"You need a higher user role to upload an image on this blog. Please contact "
|
2128 |
-
"your administrator."
|
2129 |
-
msgstr ""
|
2130 |
-
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
2131 |
-
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
2132 |
-
|
2133 |
-
#: views/b2s/settings.php:27
|
2134 |
-
msgid "save..."
|
2135 |
-
msgstr "speichere Daten..."
|
2136 |
-
|
2137 |
#: views/b2s/settings.php:32
|
2138 |
msgid "General"
|
2139 |
msgstr "Allgemein"
|
@@ -2142,117 +1621,51 @@ msgstr "Allgemein"
|
|
2142 |
msgid "Social Meta Data"
|
2143 |
msgstr "Social Meta Angaben"
|
2144 |
|
2145 |
-
#: views/b2s/settings.php:
|
2146 |
-
msgid "Select or upload an image from media gallery"
|
2147 |
-
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
2148 |
-
|
2149 |
-
#: views/b2s/settings.php:77 includes/B2S/Ship/Image.php:92
|
2150 |
-
msgid "Use image"
|
2151 |
-
msgstr "Bild verwenden"
|
2152 |
-
|
2153 |
-
#: views/b2s/settings.php:87
|
2154 |
msgid "Allow shortcodes in my post"
|
2155 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
2156 |
|
2157 |
-
#: views/b2s/settings.php:
|
2158 |
msgid ""
|
2159 |
-
"Shortcodes are used by some wordpress plugins like Elementor, Visual "
|
2160 |
-
"
|
2161 |
-
"post or page, it is replaced with some other content when you publish the "
|
2162 |
-
"article on your blog. In other words, a shortcode instructs WordPress to "
|
2163 |
-
"find a special command that is placed in square brackets ([]) and replace it "
|
2164 |
-
"with the appropriate dynamic content by a plugin you use.<br><br>Activate "
|
2165 |
-
"this feature, if you should use dynamic elements in your articles."
|
2166 |
msgstr ""
|
2167 |
-
"Shortcodes werden von einigen WordPress-Plugins wie Elementor, Visual "
|
2168 |
-
"
|
2169 |
-
"
|
2170 |
-
"andere Inhalte ersetzt, wenn du Deinen Beitrag auf Deinem Wordpress "
|
2171 |
-
"veröffentlicht. Mit anderen Worten, ein Shortcode weist WordPress an, einen "
|
2172 |
-
"speziellen Befehl zu finden, der in eckige Klammern gesetzt wird ([]) und "
|
2173 |
-
"den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
|
2174 |
-
"diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
|
2175 |
|
2176 |
-
#: views/b2s/settings.php:
|
2177 |
msgid "Include WordPress tags as hashtags in your posts"
|
2178 |
msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
2179 |
|
2180 |
-
#: views/b2s/settings.php:
|
2181 |
msgid ""
|
2182 |
-
"Hashtags are a great way to generate more reach and visibility for your "
|
2183 |
-
"
|
2184 |
-
"your WordPress tags as hashtags in all Social Media posts for networks that "
|
2185 |
-
"support hashtags. This way you don't need to worry about adding extra "
|
2186 |
-
"hashtags to your comments. Blog2Social erases unnecessary spaces in your "
|
2187 |
-
"WordPress tags to generate valid hashtags."
|
2188 |
msgstr ""
|
2189 |
-
"Hashtags sind eine großartige Möglichkeit, mehr Reichweite und Sichtbarkeit "
|
2190 |
-
"
|
2191 |
-
"aktivierst, wird Blog2Social Deine WordPress-Tags automatisch als Hashtags "
|
2192 |
-
"in alle Social Media-Posts für Netzwerke, die Hashtags unterstützen, "
|
2193 |
-
"einfügen. Auf diese Weise brauchst Du Dir keine Gedanken mehr über das "
|
2194 |
-
"Hinzufügen zusätzlicher Hashtags zu machen. Blog2Social löscht unnötige "
|
2195 |
-
"Leerzeichen Deiner WordPress-Tags, um gültige Hashtags zu erstellen. "
|
2196 |
|
2197 |
-
#: views/b2s/settings.php:
|
2198 |
msgid "Activate Legacy mode "
|
2199 |
msgstr "Kompatibilitätsmodus aktivieren"
|
2200 |
|
2201 |
-
#: views/b2s/settings.php:
|
2202 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2203 |
-
msgstr ""
|
2204 |
-
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
2205 |
-
"entlasten."
|
2206 |
|
2207 |
-
#: views/b2s/settings.php:
|
2208 |
msgid "Instant Caching for Facebook Link Posts"
|
2209 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2210 |
|
2211 |
-
#: views/b2s/settings.php:
|
2212 |
-
msgid ""
|
2213 |
-
"Please enable this feature, if you are using varnish caching (HTTP "
|
2214 |
-
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
2215 |
-
"parameter to the post URL of your Facebook link posts to ensure that "
|
2216 |
-
"Facebook always pulls the current meta data of your blog post."
|
2217 |
-
msgstr ""
|
2218 |
-
"Bitte aktiviere diese Funktion, wenn Du varnish caching (HTTP-Beschleuniger "
|
2219 |
-
"zur Entlastung Deiner Website) nutzt. Blog2Social hängt dann bei Deinen "
|
2220 |
-
"Facebook Link-Beiträgen den “no-cache=1” Parameter an die Beitrags-URL, um "
|
2221 |
-
"sicherzustellen, dass Facebook immer die aktuellen Meta Daten Deines "
|
2222 |
-
"Blogbeitrags zieht."
|
2223 |
-
|
2224 |
-
#: views/b2s/settings.php:143 includes/B2S/Settings/Item.php:63
|
2225 |
-
msgid "Personal Time Zone"
|
2226 |
-
msgstr "Persönliche Zeitzone"
|
2227 |
-
|
2228 |
-
#: views/b2s/settings.php:146
|
2229 |
-
msgid ""
|
2230 |
-
"Blog2Social applies the scheduled time settings based on the time zone "
|
2231 |
-
"defined in the general settings of your WordPress. You can select a user-"
|
2232 |
-
"specific time zone that deviates from the Wordpress system time zone for "
|
2233 |
-
"your social media scheduling.<br><br>Select the desired time zone from the "
|
2234 |
-
"drop-down menu."
|
2235 |
-
msgstr ""
|
2236 |
-
"Die Zeiteinstellungen zum Planen von Social Media Posts in Blog2Social "
|
2237 |
-
"basieren auf der Zeitzone, die in den allgemeinen Einstellungen Deines "
|
2238 |
-
"WordPress festgelegt ist. Du kannst aber auch eine andere Zeitzone als Basis "
|
2239 |
-
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
2240 |
-
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
2241 |
-
|
2242 |
-
#: views/b2s/settings.php:160
|
2243 |
msgid ""
|
2244 |
-
"
|
2245 |
-
"be sent to your primary Twitter profile."
|
2246 |
msgstr ""
|
2247 |
-
"
|
2248 |
-
"
|
2249 |
-
|
2250 |
-
#: views/b2s/settings.php:160 includes/B2S/Settings/Item.php:191
|
2251 |
-
msgid "More information"
|
2252 |
-
msgstr "Zusätzliche Informationen"
|
2253 |
|
2254 |
-
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:
|
2255 |
-
#: includes/B2S/Post/Item.php:308 includes/PRG/Post/Item.php:86
|
2256 |
msgid "draft"
|
2257 |
msgstr "Entwurf"
|
2258 |
|
@@ -2260,14 +1673,11 @@ msgstr "Entwurf"
|
|
2260 |
msgid "Social Media Scheduling & Sharing"
|
2261 |
msgstr "Beitrag auf Social Media planen und teilen"
|
2262 |
|
2263 |
-
#: views/b2s/ship.php:53 views/prg/ship.php:43 views/prg/ship.php:45
|
2264 |
-
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:349
|
2265 |
-
#: includes/B2S/Settings/Item.php:370 views/prg/html/form.php:26
|
2266 |
-
#: views/prg/html/form.php:28
|
2267 |
msgid "Title"
|
2268 |
msgstr "Titel"
|
2269 |
|
2270 |
-
#: views/b2s/ship.php:55 includes/B2S/Post/Item.php:
|
2271 |
msgid "on blog"
|
2272 |
msgstr "auf dem Blog"
|
2273 |
|
@@ -2283,7 +1693,7 @@ msgstr "Du möchtest Deine Zeiten laden?"
|
|
2283 |
msgid "Load My Times Settings"
|
2284 |
msgstr "Meine Zeit-Einstellungen laden"
|
2285 |
|
2286 |
-
#: views/b2s/ship.php:105 views/b2s/html/sidebar.php:
|
2287 |
msgid "Social Accounts"
|
2288 |
msgstr "Social Media Konten"
|
2289 |
|
@@ -2317,9 +1727,7 @@ msgstr "Webseiten-Adresse ändern"
|
|
2317 |
|
2318 |
#: views/b2s/ship.php:217
|
2319 |
msgid "First, connect or select network before posting"
|
2320 |
-
msgstr ""
|
2321 |
-
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2322 |
-
"Du den Beitrag teilst!"
|
2323 |
|
2324 |
#: views/b2s/ship.php:219
|
2325 |
msgid "connect"
|
@@ -2329,13 +1737,11 @@ msgstr "Jetzt mit Netzwerken verbinden"
|
|
2329 |
msgid "scroll to top"
|
2330 |
msgstr "zum Seitenanfang"
|
2331 |
|
2332 |
-
#: views/b2s/ship.php:228 views/b2s/ship.php:234
|
2333 |
-
#: includes/B2S/Curation/View.php:113
|
2334 |
msgid "Share"
|
2335 |
msgstr "Teilen"
|
2336 |
|
2337 |
-
#: views/b2s/ship.php:229 views/b2s/ship.php:233
|
2338 |
-
#: includes/B2S/Curation/View.php:110
|
2339 |
msgid "Save as Draft"
|
2340 |
msgstr "als Entwurf speichern"
|
2341 |
|
@@ -2357,29 +1763,13 @@ msgstr "Diesen Beitrag nochmal teilen"
|
|
2357 |
|
2358 |
#: views/b2s/ship.php:305
|
2359 |
msgid ""
|
2360 |
-
"You can re-share your post for a different sharing purpose, or to share on a "
|
2361 |
-
"
|
2362 |
-
"
|
2363 |
-
"networks only, or re-share them at different times. You may vary your "
|
2364 |
-
"comments and images in order to produce more variations of your social media "
|
2365 |
-
"posts to share more often without sharing the same message over and over "
|
2366 |
-
"again. Whatever your choose to do for re-sharing your post, you can simply "
|
2367 |
-
"click \"Re-share this post\" and you will be led to the preview page where "
|
2368 |
-
"your can select your networks and edit your texts, comments or images "
|
2369 |
-
"according to your current sharing preferences."
|
2370 |
msgstr ""
|
2371 |
-
"Du kannst diesen Blogbeitrag erneut teilen, zum Beispiel, um diesen Beitrag "
|
2372 |
-
"
|
2373 |
-
"
|
2374 |
-
"Texten nur auf bestimmten Netzwerke zu teilen, oder um weitere Bilder zum "
|
2375 |
-
"Blogbeitrag nur an die Bilder-Netzwerke zu senden, oder um Deine Social "
|
2376 |
-
"Media Posts zu anderen Zeiten zu teilen. So erzielt Du mehr Variationen "
|
2377 |
-
"Deiner Social Media Posts und kannst Deinen Beitrag öfters posten, um mehr "
|
2378 |
-
"Aufmerksamkeit und Reichweite zu erzielen, ohne immer wieder die gleiche "
|
2379 |
-
"Mitteilung zu posten. Was auch immer Du zu teilen wünscht, klicke einfach "
|
2380 |
-
"auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau "
|
2381 |
-
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
2382 |
-
"kannst. "
|
2383 |
|
2384 |
#: views/b2s/ship.php:308
|
2385 |
msgid "You want re-share your blog post?"
|
@@ -2391,35 +1781,16 @@ msgstr "Netzwerkeinstellungen speichern"
|
|
2391 |
|
2392 |
#: views/b2s/ship.php:339
|
2393 |
msgid ""
|
2394 |
-
"You can save your current network settings as \"Standard\" network settings "
|
2395 |
-
"
|
2396 |
-
"
|
2397 |
-
"
|
2398 |
-
"You can change these settings any time per click, or choose another network "
|
2399 |
-
"profile (Premium).<br><br>You can also pre-define various different sets of "
|
2400 |
-
"networks, for specific social media accounts, target groups, contents or "
|
2401 |
-
"sharing purposes. For example you can define a specific set of networks for "
|
2402 |
-
"sharing your posts images only or for re-sharing your evergreen content on a "
|
2403 |
-
"recurring basis. On the preview-page you may edit your selected or pre-"
|
2404 |
-
"selected networks anytime by simply clicking on the respective network "
|
2405 |
-
"account to select or remove an account from the current sharing scheme."
|
2406 |
msgstr ""
|
2407 |
-
"Du kannst die aktuelle Netzwerk-Auswahl als \"Standard\" Einstellungen "
|
2408 |
-
"speichern
|
2409 |
-
"
|
2410 |
-
"
|
2411 |
-
"
|
2412 |
-
"Beispiel, um diesen Beitrag auf einer anderen Auswahl an Netzwerken oder nur "
|
2413 |
-
"auf bestimmten Profilen, Seiten und Gruppen neu zu teilen, oder mit anderen "
|
2414 |
-
"Kommentaren, Bildern und Texten nur auf bestimmten Netzwerke zu teilen, oder "
|
2415 |
-
"um weitere Bilder zum Blogbeitrag nur an die Bilder-Netzwerke zu senden, "
|
2416 |
-
"oder um Deine Social Media Posts zu anderen Zeiten zu teilen. So erzielt Du "
|
2417 |
-
"mehre Variationen Deiner Social Media Posts und kannst Deinen Beitrag öfters "
|
2418 |
-
"posten, um mehr Aufmerksamkeit und Reichweite zu erzielen, ohne immer wieder "
|
2419 |
-
"die gleiche Mitteilung zu posten. Was auch immer Du zu teilen wünscht, "
|
2420 |
-
"klicken Sie einfach auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut "
|
2421 |
-
"zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
|
2422 |
-
"variieren kannst. "
|
2423 |
|
2424 |
#: views/b2s/ship.php:351
|
2425 |
msgid "Your blog post is not yet published on your Wordpress!"
|
@@ -2427,8 +1798,7 @@ msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
|
2427 |
|
2428 |
#: views/b2s/ship.php:354
|
2429 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
2430 |
-
msgstr ""
|
2431 |
-
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
2432 |
|
2433 |
#: views/b2s/ship.php:358
|
2434 |
msgid "Schedule your post"
|
@@ -2447,15 +1817,8 @@ msgid "Overwrite Draft"
|
|
2447 |
msgstr "Entwurf überschreiben"
|
2448 |
|
2449 |
#: views/b2s/ship.php:550
|
2450 |
-
msgid ""
|
2451 |
-
"
|
2452 |
-
"a new draft it will overwrite the old draft. Are you sure you want to "
|
2453 |
-
"overwrite your draft?"
|
2454 |
-
msgstr ""
|
2455 |
-
"Es gibt bereits einen gespeicherten Entwurf für diesen WordPress-"
|
2456 |
-
"Beitrag/Seite. Wenn Du einen neuen Entwurf speicherst, wird der alte Entwurf "
|
2457 |
-
"damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
|
2458 |
-
"möchtest?"
|
2459 |
|
2460 |
#: views/b2s/ship.php:646
|
2461 |
msgid "add Schedule"
|
@@ -2465,8 +1828,7 @@ msgstr "Zeitplan hinzufügen"
|
|
2465 |
msgid "Give me more information"
|
2466 |
msgstr "Erhalte mehr Infomationen"
|
2467 |
|
2468 |
-
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:
|
2469 |
-
#: includes/B2S/Ship/Save.php:438
|
2470 |
msgid "FAQ"
|
2471 |
msgstr "FAQ"
|
2472 |
|
@@ -2543,12 +1905,8 @@ msgid "(Support times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
|
|
2543 |
msgstr "(Anrufzeiten: Montags bis Freitags von 9:00 bis 17:00 MEZ)"
|
2544 |
|
2545 |
#: views/b2s/support.php:207
|
2546 |
-
msgid ""
|
2547 |
-
"
|
2548 |
-
"administrator."
|
2549 |
-
msgstr ""
|
2550 |
-
"Für die Nutzung des Problemanalyse-Tools werden Adminrechte benötigt. Bitte "
|
2551 |
-
"wende Dich an Deinen Administrator."
|
2552 |
|
2553 |
#: views/b2s/support.php:214
|
2554 |
msgid "Needed"
|
@@ -2568,9 +1926,7 @@ msgstr "Als txt-Datei exportieren"
|
|
2568 |
|
2569 |
#: views/b2s/support.php:234
|
2570 |
msgid "Enter a URL to see how your link preview will look on social media."
|
2571 |
-
msgstr ""
|
2572 |
-
"Gib eine URL ein, um zu sehen, wie die Link-Vorschau auf Social Media "
|
2573 |
-
"aussehen wird"
|
2574 |
|
2575 |
#: views/b2s/support.php:239
|
2576 |
msgid "Facebook Open Graph Meta Tags"
|
@@ -2610,16 +1966,11 @@ msgstr "Direkt bei Twitter prüfen"
|
|
2610 |
|
2611 |
#: views/prg/login.php:15
|
2612 |
msgid "Login failed. Please check your username and a password!"
|
2613 |
-
msgstr ""
|
2614 |
-
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
2615 |
-
"Benutzernamen und Dein Password!"
|
2616 |
|
2617 |
#: views/prg/login.php:21
|
2618 |
-
msgid ""
|
2619 |
-
"
|
2620 |
-
msgstr ""
|
2621 |
-
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfen Deine "
|
2622 |
-
"Server-Einstellungen. OpenSSL muss aktiviert sein. "
|
2623 |
|
2624 |
#: views/prg/login.php:24
|
2625 |
msgid "E-Mail or Username"
|
@@ -2654,16 +2005,10 @@ msgid "1x promote event"
|
|
2654 |
msgstr "1 x Veranstaltung bewerben"
|
2655 |
|
2656 |
#: views/prg/login.php:43
|
2657 |
-
msgid ""
|
2658 |
-
"The press distribution PR gateway automatically publish your press releases "
|
2659 |
-
"and events with one click.Publish your message over 250 portals."
|
2660 |
msgstr ""
|
2661 |
-
"Mit dem Presseverteiler PR-Gateway veröffentlicht Du Deine "
|
2662 |
-
"
|
2663 |
-
"Klick auf Deine individuelle Auswahl aus über 250 reichweitenstarken und "
|
2664 |
-
"zielgruppen-spezifischen kostenlosen Presseportalen, Eventportalen, "
|
2665 |
-
"internationalen und regionalen Portalen, Social Media und Dokumenten-"
|
2666 |
-
"Netzwerken."
|
2667 |
|
2668 |
#: views/prg/login.php:46
|
2669 |
msgid "Start your 14-Day Free Trial"
|
@@ -2690,34 +2035,146 @@ msgid "Please Note"
|
|
2690 |
msgstr "Hinweis"
|
2691 |
|
2692 |
#: views/prg/ship.php:90
|
2693 |
-
msgid ""
|
2694 |
-
"
|
2695 |
-
"not be withdrawn. If you want your press release to be published now?"
|
2696 |
-
msgstr ""
|
2697 |
-
"Bitte beachte, dass gegebenenfalls Gebühren für die Versendung von "
|
2698 |
-
"Pressemitteilungen über PR-Gateway anfallen können. Einmal versandte "
|
2699 |
-
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
2700 |
-
"Pressemitteilung jetzt versendet werden?"
|
2701 |
|
2702 |
#: views/prg/ship.php:93
|
2703 |
msgid "Yes, I accept"
|
2704 |
msgstr "Ja,einverstanden"
|
2705 |
|
2706 |
-
#: includes/B2S/
|
2707 |
-
msgid "Share your post"
|
2708 |
-
msgstr "
|
|
|
|
|
|
|
|
|
2709 |
|
2710 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2711 |
msgid "immediately"
|
2712 |
msgstr "sofort"
|
2713 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2714 |
#: includes/B2S/Curation/View.php:65
|
2715 |
msgid "at scheduled times"
|
2716 |
msgstr "zu geplanten Zeiten"
|
2717 |
|
2718 |
-
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2719 |
-
#: includes/B2S/Ship/Item.php:1118 views/b2s/partials/post-edit-modal.php:62
|
2720 |
-
#: views/b2s/partials/post-edit-modal.php:65
|
2721 |
msgid "Date"
|
2722 |
msgstr "Startdatum"
|
2723 |
|
@@ -2745,12 +2202,11 @@ msgstr "weitere Profile:"
|
|
2745 |
msgid "Best times"
|
2746 |
msgstr "Beste Zeiten"
|
2747 |
|
2748 |
-
#: includes/B2S/Network/Item.php:147 includes/B2S/Network/Item.php:218
|
2749 |
-
#: includes/B2S/Ship/Item.php:316 includes/B2S/Ship/Navbar.php:86
|
2750 |
msgid "Blog"
|
2751 |
msgstr "Blog"
|
2752 |
|
2753 |
-
#: includes/B2S/Network/Item.php:151 includes/B2S/Ship/Portale.php:
|
2754 |
msgid "You want to connect a network profile?"
|
2755 |
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
2756 |
|
@@ -2758,8 +2214,7 @@ msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
|
2758 |
msgid "You want to connect a network page?"
|
2759 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
2760 |
|
2761 |
-
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:351
|
2762 |
-
#: includes/B2S/Ship/Portale.php:31
|
2763 |
msgid "Publication"
|
2764 |
msgstr "Publication"
|
2765 |
|
@@ -2767,36 +2222,27 @@ msgstr "Publication"
|
|
2767 |
msgid "You want to connect a social media group?"
|
2768 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
2769 |
|
2770 |
-
#: includes/B2S/Network/Item.php:171 includes/B2S/Settings/Item.php:257
|
2771 |
-
msgid "Connections"
|
2772 |
-
msgstr "Verbindungen"
|
2773 |
-
|
2774 |
#: includes/B2S/Network/Item.php:172 views/b2s/html/footer.php:192
|
2775 |
msgid "Best Time Manager"
|
2776 |
msgstr "Best Time Manager"
|
2777 |
|
2778 |
-
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275
|
2779 |
-
#: includes/B2S/Network/Item.php:342
|
2780 |
msgid "To reactivate this connection,"
|
2781 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
2782 |
|
2783 |
-
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275
|
2784 |
-
#: includes/B2S/Network/Item.php:342 includes/B2S/Ship/Image.php:30
|
2785 |
msgid "please upgrade"
|
2786 |
msgstr "Bitte upgraden"
|
2787 |
|
2788 |
-
#: includes/B2S/Network/Item.php:212 includes/B2S/Network/Item.php:278
|
2789 |
-
#: includes/B2S/Network/Item.php:345
|
2790 |
msgid "Authorization is interrupted since"
|
2791 |
msgstr "Autorisierung ist unterbrochen seit"
|
2792 |
|
2793 |
-
#: includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282
|
2794 |
-
#: includes/B2S/Network/Item.php:349
|
2795 |
msgid "Assigned by"
|
2796 |
msgstr "Zugewiesen von"
|
2797 |
|
2798 |
-
#: includes/B2S/Network/Item.php:254 includes/B2S/Network/Item.php:320
|
2799 |
-
#: includes/B2S/Network/Item.php:382 includes/B2S/Ship/Item.php:1066
|
2800 |
msgid "Days"
|
2801 |
msgstr "Tage"
|
2802 |
|
@@ -2808,9 +2254,7 @@ msgstr "Employer Branding"
|
|
2808 |
msgid "Connection currently assigned to"
|
2809 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
2810 |
|
2811 |
-
#: includes/B2S/Network/Item.php:508 views/prg/html/form.php:84
|
2812 |
-
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
2813 |
-
#: views/prg/html/form.php:163
|
2814 |
msgid "Name"
|
2815 |
msgstr "Name"
|
2816 |
|
@@ -2831,756 +2275,645 @@ msgstr "Für alle %s Verbindungen übernehmen"
|
|
2831 |
msgid "Apply for all connections"
|
2832 |
msgstr "Für alle Verbindungen übernehmen"
|
2833 |
|
2834 |
-
#: includes/B2S/Network/Item.php:
|
2835 |
msgid "Successfully saved"
|
2836 |
msgstr "Erfolgreich gespeichert"
|
2837 |
|
2838 |
-
#: includes/B2S/Network/Item.php:
|
2839 |
msgid "Failed to save"
|
2840 |
msgstr "Speichern fehlgeschlagen"
|
2841 |
|
2842 |
-
#: includes/B2S/Network/Item.php:
|
2843 |
msgid "Failed to load the default template"
|
2844 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
2845 |
|
2846 |
-
#: includes/B2S/Network/Item.php:
|
2847 |
msgid ""
|
2848 |
-
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
2849 |
-
"templates
|
2850 |
-
"media posts. Select and define elements, such as title, excerpt, content, "
|
2851 |
-
"hashtags, and edit the post format. The “content” element is selected by "
|
2852 |
-
"default. Define custom post templates per social network and per profile, "
|
2853 |
-
"group & page. You can also add static content (such as individual hashtags "
|
2854 |
-
"or slogans) to your post templates."
|
2855 |
msgstr ""
|
2856 |
-
"Upgrade auf Blog2Social Smart oder eine höhere Version, um individuelle "
|
2857 |
-
"
|
2858 |
-
"
|
2859 |
-
|
2860 |
-
|
2861 |
-
"Standardmäßig ist das Element \"Inhalt\" ausgewählt. Nutze individuelle "
|
2862 |
-
"Beitragsvorlagen für einzelne Netzwerke, Profile, Gruppen & Seiten. Füge "
|
2863 |
-
"auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
|
2864 |
-
"Beitragsvorlagen hinzu."
|
2865 |
-
|
2866 |
-
#: includes/B2S/Network/Item.php:572
|
2867 |
msgid "Upgrade to Blog2Social Smart"
|
2868 |
msgstr "Upgrade auf Blog2Social Smart"
|
2869 |
|
2870 |
-
#: includes/B2S/Network/Item.php:
|
2871 |
msgid "Activate Instant Caching"
|
2872 |
msgstr "Instant Caching aktivieren"
|
2873 |
|
2874 |
-
#: includes/B2S/Network/Item.php:
|
2875 |
msgid "Format"
|
2876 |
msgstr "Format"
|
2877 |
|
2878 |
-
#: includes/B2S/Network/Item.php:
|
2879 |
msgid "Load default settings"
|
2880 |
msgstr "Lade Standardeinstellungen"
|
2881 |
|
2882 |
-
#: includes/B2S/Network/Item.php:
|
2883 |
-
#: includes/B2S/Ship/Item.php:813 includes/B2S/Ship/Item.php:815
|
2884 |
msgid "Link"
|
2885 |
msgstr "Link"
|
2886 |
|
2887 |
-
#: includes/B2S/Network/Item.php:
|
2888 |
msgid "Image"
|
2889 |
msgstr "Bild"
|
2890 |
|
2891 |
-
#: includes/B2S/Network/Item.php:
|
2892 |
msgid "Content"
|
2893 |
msgstr "Inhalt"
|
2894 |
|
2895 |
-
#: includes/B2S/Network/Item.php:
|
2896 |
-
msgid ""
|
2897 |
-
"Instagram
|
2898 |
-
"in your post."
|
2899 |
-
msgstr ""
|
2900 |
-
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
2901 |
-
"Hashtags in Deinem Beitrag."
|
2902 |
|
2903 |
-
#: includes/B2S/Network/Item.php:
|
2904 |
msgid "clear"
|
2905 |
msgstr "löschen"
|
2906 |
|
2907 |
-
#: includes/B2S/Network/Item.php:
|
2908 |
msgid "The link will be added automatically at the end of the post."
|
2909 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
2910 |
|
2911 |
-
#: includes/B2S/Network/Item.php:
|
2912 |
msgid "Network limit"
|
2913 |
msgstr "Netzwerkbegrenzung"
|
2914 |
|
2915 |
-
#: includes/B2S/Network/Item.php:
|
2916 |
-
#: includes/B2S/
|
2917 |
-
#: includes/B2S/Ship/Item.php:205 includes/B2S/Ship/Item.php:247
|
2918 |
-
#: includes/B2S/Ship/Item.php:251 includes/B2S/Ship/Item.php:284
|
2919 |
-
#: includes/B2S/Ship/Item.php:288 includes/B2S/Ship/Item.php:1145
|
2920 |
-
#: includes/B2S/Ship/Item.php:1147
|
2921 |
msgid "characters"
|
2922 |
msgstr "Zeichen"
|
2923 |
|
2924 |
-
#: includes/B2S/Network/Item.php:
|
2925 |
msgid "recommended length"
|
2926 |
msgstr "Empfohlene Länge"
|
2927 |
|
2928 |
-
#: includes/B2S/Network/Item.php:
|
2929 |
-
#: includes/B2S/Network/Item.php:842 includes/B2S/Network/Item.php:894
|
2930 |
-
#: includes/B2S/Network/Item.php:928
|
2931 |
msgid "Preview"
|
2932 |
msgstr "Vorschau"
|
2933 |
|
2934 |
-
#: includes/B2S/Post/Filter.php:
|
2935 |
msgid "all authors"
|
2936 |
msgstr "alle Autoren"
|
2937 |
|
2938 |
-
#: includes/B2S/Post/Filter.php:
|
2939 |
msgid "all posts"
|
2940 |
msgstr "alle Beiträge"
|
2941 |
|
2942 |
-
#: includes/B2S/Post/Filter.php:
|
2943 |
msgid "not yet shared"
|
2944 |
msgstr "noch nicht geteilt"
|
2945 |
|
2946 |
-
#: includes/B2S/Post/Filter.php:
|
2947 |
msgid "already shared"
|
2948 |
msgstr "geteilt"
|
2949 |
|
2950 |
-
#: includes/B2S/Post/Filter.php:
|
2951 |
msgid "currently scheduled"
|
2952 |
msgstr "geplant"
|
2953 |
|
2954 |
#: includes/B2S/Post/Filter.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2955 |
msgid "all statuses"
|
2956 |
msgstr "kein Status"
|
2957 |
|
2958 |
-
#: includes/B2S/Post/Filter.php:
|
2959 |
msgid "newest first"
|
2960 |
msgstr "neuste zuerst"
|
2961 |
|
2962 |
-
#: includes/B2S/Post/Filter.php:
|
2963 |
msgid "oldest first"
|
2964 |
msgstr "älteste zuerst"
|
2965 |
|
2966 |
-
#: includes/B2S/Post/Filter.php:
|
2967 |
msgid "all categories & tags"
|
2968 |
msgstr "alle Kategorien & Schlagwörter"
|
2969 |
|
2970 |
-
#: includes/B2S/Post/Filter.php:
|
2971 |
msgid "all post types"
|
2972 |
msgstr "alle Typen"
|
2973 |
|
2974 |
-
#: includes/B2S/Post/Filter.php:
|
2975 |
msgid "shared by user"
|
2976 |
msgstr "geteilt von Nutzer"
|
2977 |
|
2978 |
-
#: includes/B2S/Post/Filter.php:
|
2979 |
msgid "Search Title"
|
2980 |
msgstr "Suche nach Titel"
|
2981 |
|
2982 |
-
#: includes/B2S/Post/Filter.php:
|
2983 |
msgid "sort"
|
2984 |
msgstr "sortieren"
|
2985 |
|
2986 |
-
#: includes/B2S/Post/Filter.php:
|
2987 |
msgid "reset"
|
2988 |
msgstr "zurücksetzen"
|
2989 |
|
2990 |
-
#: includes/B2S/Post/Filter.php:
|
2991 |
msgid "selected date"
|
2992 |
msgstr "ausgewähltes Datum"
|
2993 |
|
2994 |
-
#: includes/B2S/Post/Filter.php:
|
2995 |
msgid "scheduled post(s)"
|
2996 |
msgstr "geplante Beiträge"
|
2997 |
|
2998 |
-
#: includes/B2S/Post/Item.php:
|
2999 |
msgid "You have not saved any drafts."
|
3000 |
msgstr "Du hast keine Entwürfe gespeichert."
|
3001 |
|
3002 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
3003 |
msgid "You have not published or scheduled any posts."
|
3004 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
3005 |
|
3006 |
-
#: includes/B2S/Post/Item.php:
|
3007 |
msgid "curated post"
|
3008 |
msgstr "kuratierter Beitrag"
|
3009 |
|
3010 |
-
#: includes/B2S/Post/Item.php:
|
3011 |
msgid "last shared on social media"
|
3012 |
msgstr "zuletzt auf Social Media geteilt"
|
3013 |
|
3014 |
-
#: includes/B2S/Post/Item.php:
|
3015 |
-
#: includes/B2S/Post/Item.php:455 includes/B2S/Post/Item.php:476
|
3016 |
-
#: includes/B2S/Post/Item.php:497
|
3017 |
msgid "Share on Social Media"
|
3018 |
msgstr "auf Social Media teilen"
|
3019 |
|
3020 |
-
#: includes/B2S/Post/Item.php:
|
3021 |
msgid "load Draft"
|
3022 |
msgstr "Entwurf aufrufen"
|
3023 |
|
3024 |
-
#: includes/B2S/Post/Item.php:
|
3025 |
-
#: includes/B2S/Post/Item.php:481 includes/B2S/Post/Item.php:499
|
3026 |
-
#: includes/PRG/Post/Item.php:121
|
3027 |
msgid "Author"
|
3028 |
msgstr "Autor"
|
3029 |
|
3030 |
-
#: includes/B2S/Post/Item.php:
|
3031 |
-
#: includes/B2S/Post/Item.php:426
|
3032 |
msgid "Details"
|
3033 |
msgstr "Details"
|
3034 |
|
3035 |
-
#: includes/B2S/Post/Item.php:
|
3036 |
msgid "shared social media posts"
|
3037 |
msgstr "geteilte Beiträge"
|
3038 |
|
3039 |
-
#: includes/B2S/Post/Item.php:
|
3040 |
#, php-format
|
3041 |
msgid "latest share by %s"
|
3042 |
msgstr "zuletzt von %s geteilt"
|
3043 |
|
3044 |
-
#: includes/B2S/Post/Item.php:
|
3045 |
msgid "scheduled social media posts"
|
3046 |
msgstr "geplante Beiträge"
|
3047 |
|
3048 |
-
#: includes/B2S/Post/Item.php:
|
3049 |
#, php-format
|
3050 |
msgid "next share by %s"
|
3051 |
msgstr "wird als nächstes von %s geteilt"
|
3052 |
|
3053 |
-
#: includes/B2S/Post/Item.php:
|
3054 |
msgid "social media posts ready to be shared"
|
3055 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
3056 |
|
3057 |
-
#: includes/B2S/Post/Item.php:
|
3058 |
msgid "via Browser-Extension"
|
3059 |
msgstr "via Browser-Extension"
|
3060 |
|
3061 |
-
#: includes/B2S/Post/Item.php:
|
3062 |
msgid "saved"
|
3063 |
msgstr "gespeichert"
|
3064 |
|
3065 |
-
#: includes/B2S/Post/Item.php:
|
3066 |
msgid "last saved"
|
3067 |
msgstr "zuletzt gespeichert:"
|
3068 |
|
3069 |
-
#: includes/B2S/Post/Item.php:
|
3070 |
-
#: includes/B2S/Ship/Save.php:427
|
3071 |
msgid "Retweet"
|
3072 |
msgstr "Retweet"
|
3073 |
|
3074 |
-
#: includes/B2S/Post/Item.php:
|
3075 |
-
|
|
|
|
|
|
|
3076 |
msgid "select all"
|
3077 |
msgstr "alle auswählen"
|
3078 |
|
3079 |
-
#: includes/B2S/Post/Item.php:
|
3080 |
msgid "show"
|
3081 |
msgstr "ansehen"
|
3082 |
|
3083 |
-
#: includes/B2S/Post/Item.php:
|
3084 |
msgid "Please see"
|
3085 |
msgstr "siehe"
|
3086 |
|
3087 |
-
#: includes/B2S/Post/Item.php:
|
3088 |
#, php-format
|
3089 |
msgid "sharing in progress by %s"
|
3090 |
msgstr "wird gerade von %s geteilt"
|
3091 |
|
3092 |
-
#: includes/B2S/Post/Item.php:
|
3093 |
#, php-format
|
3094 |
msgid "shared by %s"
|
3095 |
msgstr "von %s geteilt"
|
3096 |
|
3097 |
-
#: includes/B2S/Post/Item.php:
|
3098 |
msgid "You want to delete a publish post entry?"
|
3099 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3100 |
|
3101 |
-
#: includes/B2S/Post/Item.php:
|
3102 |
msgid "delete from reporting"
|
3103 |
msgstr "aus Reporting löschen"
|
3104 |
|
3105 |
-
#: includes/B2S/Post/Item.php:
|
3106 |
-
msgid "re-share"
|
3107 |
-
msgstr "erneut teilen"
|
3108 |
-
|
3109 |
-
#: includes/B2S/Post/Item.php:687
|
3110 |
#, php-format
|
3111 |
msgid "is waiting to shared by %s"
|
3112 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3113 |
|
3114 |
-
#: includes/B2S/Post/Item.php:
|
3115 |
msgid "share"
|
3116 |
msgstr "teilen"
|
3117 |
|
3118 |
-
#: includes/B2S/Post/Item.php:
|
3119 |
msgid "You want to delete your Social Media post?"
|
3120 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3121 |
|
3122 |
-
#: includes/B2S/Post/Item.php:
|
3123 |
#, php-format
|
3124 |
msgid "last modified by %s"
|
3125 |
msgstr "zuletzt von %s bearbeitet"
|
3126 |
|
3127 |
-
#: includes/B2S/Post/Item.php:
|
3128 |
msgid "is processed by the network"
|
3129 |
msgstr "wird vom Netzwerk verarbeitet"
|
3130 |
|
3131 |
-
#: includes/B2S/Post/Item.php:
|
3132 |
#, php-format
|
3133 |
msgid "scheduled by %s"
|
3134 |
msgstr "von %s vorgeplant "
|
3135 |
|
3136 |
-
#: includes/B2S/Post/Item.php:
|
3137 |
msgid "You want to edit your scheduled post?"
|
3138 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3139 |
|
3140 |
-
#: includes/B2S/Post/Item.php:
|
3141 |
msgid "edit"
|
3142 |
msgstr "edit"
|
3143 |
|
3144 |
-
#: includes/B2S/Post/Item.php:
|
3145 |
msgid "delete scheduling"
|
3146 |
msgstr "Planung löschen"
|
3147 |
|
3148 |
-
#: includes/B2S/
|
3149 |
-
|
3150 |
-
|
3151 |
-
msgstr "Konto"
|
3152 |
|
3153 |
-
#: includes/B2S/
|
3154 |
-
msgid "
|
3155 |
-
msgstr "
|
3156 |
|
3157 |
-
#: includes/B2S/
|
3158 |
-
msgid "
|
3159 |
-
msgstr "
|
3160 |
|
3161 |
-
#: includes/B2S/
|
3162 |
-
msgid "
|
3163 |
-
msgstr "
|
3164 |
|
3165 |
-
#: includes/B2S/
|
3166 |
-
msgid "
|
3167 |
-
msgstr "
|
3168 |
|
3169 |
-
#: includes/B2S/
|
3170 |
-
msgid "
|
3171 |
-
msgstr "
|
3172 |
|
3173 |
-
#: includes/B2S/
|
3174 |
-
|
3175 |
-
|
|
|
3176 |
|
3177 |
-
#: includes/B2S/
|
3178 |
-
msgid "
|
3179 |
-
msgstr "
|
3180 |
|
3181 |
-
#: includes/B2S/
|
3182 |
-
msgid "
|
3183 |
-
msgstr "
|
3184 |
|
3185 |
-
#: includes/B2S/
|
3186 |
-
msgid "
|
3187 |
-
msgstr "
|
3188 |
|
3189 |
-
#: includes/B2S/
|
3190 |
-
msgid "
|
3191 |
-
msgstr "
|
3192 |
|
3193 |
-
#: includes/B2S/
|
3194 |
-
|
3195 |
-
|
3196 |
-
"This is a global feature for your blog, which can only be edited by users "
|
3197 |
-
"with admin rights."
|
3198 |
-
msgstr ""
|
3199 |
-
"Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
|
3200 |
-
"Admin Rechten bearbeitet werden kann."
|
3201 |
|
3202 |
-
#: includes/B2S/
|
3203 |
-
msgid "
|
3204 |
-
msgstr "
|
3205 |
|
3206 |
-
#: includes/B2S/
|
3207 |
-
msgid ""
|
3208 |
-
|
3209 |
-
"tab on your \"Posts & Sharing\" navigation bar and can be shared on your "
|
3210 |
-
"Facebook Profile by clicking on the \"Share\" button next to your auto-post."
|
3211 |
-
msgstr ""
|
3212 |
-
"Auto-Posts für Facebook-Profile laufen automatisch im \"Instant Sharing\" "
|
3213 |
-
"Tab in der Navigationsleiste unter \"Beiträge\" ein und können durch einen "
|
3214 |
-
"Klick auf den “Teilen” Button neben dem Post an Dein Facebook-Profil "
|
3215 |
-
"gesendet werden."
|
3216 |
|
3217 |
-
#: includes/B2S/
|
3218 |
-
msgid "
|
3219 |
-
msgstr "
|
3220 |
|
3221 |
-
#: includes/B2S/
|
3222 |
-
msgid ""
|
3223 |
-
|
3224 |
-
"pages and custom post types on your social media channels."
|
3225 |
-
msgstr ""
|
3226 |
-
"Nutze den Auto-Poster, um Deine neuen oder aktualisierten Beiträge, Seiten "
|
3227 |
-
"und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
3228 |
|
3229 |
-
#: includes/B2S/
|
3230 |
-
msgid ""
|
3231 |
-
|
3232 |
-
"defines the social media accounts on which the autoposter will share your "
|
3233 |
-
"social media posts automatically."
|
3234 |
-
msgstr ""
|
3235 |
-
"Wähle die Netzwerkgruppierung mit den Social-Media-Accounts aus, auf denen "
|
3236 |
-
"der Auto-Poster veröffentlichen soll."
|
3237 |
|
3238 |
-
#: includes/B2S/
|
3239 |
-
msgid "
|
3240 |
-
msgstr "
|
3241 |
|
3242 |
-
#: includes/B2S/
|
3243 |
-
msgid "
|
3244 |
-
msgstr "
|
3245 |
|
3246 |
-
#: includes/B2S/
|
3247 |
-
msgid "
|
3248 |
-
msgstr "
|
3249 |
|
3250 |
-
#: includes/B2S/
|
3251 |
-
msgid "
|
3252 |
-
msgstr "
|
3253 |
|
3254 |
-
#: includes/B2S/
|
3255 |
-
msgid ""
|
3256 |
-
|
3257 |
-
"be sent again to your selected social media channels as soon as the post is "
|
3258 |
-
"updated."
|
3259 |
-
msgstr ""
|
3260 |
-
"Das Aktivieren dieser Funktion führt dazu, dass bereits veröffentlichte "
|
3261 |
-
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
3262 |
-
"Beitrag aktualisiert wird."
|
3263 |
|
3264 |
-
#: includes/B2S/
|
3265 |
-
msgid "
|
3266 |
-
msgstr "
|
3267 |
|
3268 |
-
#: includes/B2S/
|
3269 |
-
msgid "
|
3270 |
-
msgstr "
|
3271 |
|
3272 |
-
#: includes/B2S/
|
3273 |
-
msgid "
|
3274 |
-
msgstr "
|
3275 |
|
3276 |
-
#: includes/B2S/
|
3277 |
-
msgid ""
|
3278 |
-
|
3279 |
-
"custom post types on your social media channels."
|
3280 |
-
msgstr ""
|
3281 |
-
"Nutze den Auto-Poster, um Deine importierten Beiträge, Seiten und Cutsom "
|
3282 |
-
"Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
3283 |
|
3284 |
-
#: includes/B2S/
|
3285 |
-
msgid ""
|
3286 |
-
"
|
3287 |
-
"posts"
|
3288 |
-
msgstr ""
|
3289 |
-
"Immediate Cross-Posting über alle Netzwerke hinweg: Teile eine unbegrenzte "
|
3290 |
-
"Anzahl an Beiträgen"
|
3291 |
|
3292 |
-
#: includes/B2S/
|
3293 |
-
msgid "
|
3294 |
-
msgstr "
|
3295 |
|
3296 |
-
#: includes/B2S/
|
3297 |
-
msgid "
|
3298 |
-
msgstr "
|
3299 |
|
3300 |
-
#: includes/B2S/
|
3301 |
-
msgid "
|
3302 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3303 |
|
3304 |
-
#: includes/B2S/Settings/Item.php:
|
3305 |
-
msgid "
|
3306 |
-
msgstr "
|
3307 |
|
3308 |
-
#: includes/B2S/Settings/Item.php:
|
3309 |
-
msgid "
|
3310 |
-
msgstr "
|
3311 |
|
3312 |
-
#: includes/B2S/Settings/Item.php:
|
3313 |
-
msgid ""
|
3314 |
-
|
3315 |
-
"as your primary Twitter account for auto-posting."
|
3316 |
-
msgstr ""
|
3317 |
-
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
3318 |
-
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden"
|
3319 |
|
3320 |
-
#: includes/B2S/Settings/Item.php:
|
3321 |
-
msgid "
|
3322 |
-
msgstr "
|
3323 |
|
3324 |
-
#: includes/B2S/Settings/Item.php:
|
3325 |
-
msgid "
|
3326 |
-
msgstr "
|
3327 |
|
3328 |
-
#: includes/B2S/Settings/Item.php:
|
3329 |
-
msgid "
|
3330 |
-
msgstr "
|
3331 |
|
3332 |
-
#: includes/B2S/Settings/Item.php:
|
3333 |
-
msgid "
|
3334 |
-
msgstr "
|
3335 |
|
3336 |
-
#: includes/B2S/Settings/Item.php:
|
3337 |
-
msgid ""
|
3338 |
-
|
3339 |
-
msgstr ""
|
3340 |
-
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
3341 |
-
"automatisch veröffentlicht)"
|
3342 |
|
3343 |
-
#: includes/B2S/Settings/Item.php:
|
3344 |
-
msgid "
|
3345 |
-
msgstr "
|
3346 |
|
3347 |
-
#: includes/B2S/Settings/Item.php:
|
3348 |
-
msgid "
|
3349 |
-
msgstr "
|
3350 |
|
3351 |
-
#: includes/B2S/Settings/Item.php:
|
3352 |
-
msgid "
|
3353 |
-
msgstr "
|
3354 |
|
3355 |
-
#: includes/B2S/Settings/Item.php:
|
3356 |
-
msgid "
|
3357 |
-
msgstr "
|
3358 |
|
3359 |
-
#: includes/B2S/Settings/Item.php:
|
3360 |
msgid "Reset all page and post meta data"
|
3361 |
msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
3362 |
|
3363 |
-
#: includes/B2S/Settings/Item.php:
|
3364 |
msgid "Meta Tags Settings for Posts and Pages"
|
3365 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
3366 |
|
3367 |
-
#: includes/B2S/Settings/Item.php:
|
3368 |
-
msgid ""
|
3369 |
-
"
|
3370 |
-
"and other social networks to display your post or page image, title and "
|
3371 |
-
"description correctly."
|
3372 |
-
msgstr ""
|
3373 |
-
"Ergänze Open Graph Meta Tags zu Deinen geteilten Beiträgen/Seiten, damit "
|
3374 |
-
"Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
|
3375 |
-
"Beitrag/Seite korrekt darstellen können."
|
3376 |
|
3377 |
-
#: includes/B2S/Settings/Item.php:
|
3378 |
-
msgid ""
|
3379 |
-
"
|
3380 |
-
"Twitter to display your post or page image, title and description correctly."
|
3381 |
-
msgstr ""
|
3382 |
-
"Ergänze Twitter Card Meta Tags zu Deinen geteilten Beiträgen/Seiten, damit "
|
3383 |
-
"Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
|
3384 |
-
"darstellen kann."
|
3385 |
|
3386 |
-
#: includes/B2S/Settings/Item.php:
|
3387 |
msgid "Frontpage Settings"
|
3388 |
msgstr "Frontpage Einstellungen"
|
3389 |
|
3390 |
-
#: includes/B2S/Settings/Item.php:
|
3391 |
msgid "Check Settings with Sharing-Debugger"
|
3392 |
msgstr "Einstellungen mit Sharing-Debugger überprüfen"
|
3393 |
|
3394 |
-
#: includes/B2S/Settings/Item.php:
|
3395 |
-
msgid ""
|
3396 |
-
"
|
3397 |
-
"want Facebook to display, if you share the frontpage of your blog as link "
|
3398 |
-
"post (http://www.yourblog.com)"
|
3399 |
-
msgstr ""
|
3400 |
-
"Definiere die Default Einstellungen für Titel, Beschreibung und Image für "
|
3401 |
-
"die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
|
3402 |
-
"als Link Post teilst (http://www.DeinBlog.de)"
|
3403 |
|
3404 |
-
#: includes/B2S/Settings/Item.php:
|
3405 |
msgid "Description"
|
3406 |
msgstr "Beschreibung"
|
3407 |
|
3408 |
-
#: includes/B2S/Settings/Item.php:
|
3409 |
msgid "Image URL"
|
3410 |
msgstr "Bild Url"
|
3411 |
|
3412 |
-
#: includes/B2S/Settings/Item.php:
|
3413 |
-
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Image.php:87
|
3414 |
msgid "Image upload / Media Gallery"
|
3415 |
msgstr "Bild hochladen / Mediathek"
|
3416 |
|
3417 |
-
#: includes/B2S/Settings/Item.php:
|
3418 |
-
msgid ""
|
3419 |
-
"
|
3420 |
-
"pixels and an aspect ratio of 1:1."
|
3421 |
-
msgstr ""
|
3422 |
-
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
3423 |
-
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
3424 |
|
3425 |
-
#: includes/B2S/Settings/Item.php:
|
3426 |
-
msgid ""
|
3427 |
-
"
|
3428 |
-
"want Twitter to display, if you share the frontpage of your blog as link "
|
3429 |
-
"post (http://www.yourblog.com)"
|
3430 |
-
msgstr ""
|
3431 |
-
"Definiere die Default Twitter Card Parameter für Titel, Beschreibung und "
|
3432 |
-
"Image, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www."
|
3433 |
-
"DeinBlog.de)"
|
3434 |
|
3435 |
-
#: includes/B2S/Settings/Item.php:
|
3436 |
msgid "The default card type to use"
|
3437 |
msgstr "Wählen Sie Ihre Standard-Twitter-Card"
|
3438 |
|
3439 |
-
#: includes/B2S/Settings/Item.php:
|
3440 |
msgid "Summary"
|
3441 |
msgstr "Link-Darstellung"
|
3442 |
|
3443 |
-
#: includes/B2S/Settings/Item.php:
|
3444 |
msgid "Summary with large image"
|
3445 |
msgstr "Link-Darstellung mit großem Bild"
|
3446 |
|
3447 |
-
#: includes/B2S/Settings/Item.php:
|
3448 |
msgid "(SMART)"
|
3449 |
msgstr "(SMART)"
|
3450 |
|
3451 |
-
#: includes/B2S/Settings/Item.php:
|
3452 |
-
msgid ""
|
3453 |
-
"
|
3454 |
-
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
3455 |
-
"image will be cropped to a square. Twitter supports JPG, PNG, WEBP and GIF "
|
3456 |
-
"formats."
|
3457 |
-
msgstr ""
|
3458 |
-
"Bitte beachte: Twitter unterstützt Bilder mit einer Mindestgröße von 144x144 "
|
3459 |
-
"Pixel und eine maximale Größe 4096 x 4096 Pixel mit weniger als 5 MB. Die "
|
3460 |
-
"Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt die "
|
3461 |
-
"Bildformate JPG, PNG, WEBP und GIF. "
|
3462 |
|
3463 |
-
#: includes/B2S/Settings/Item.php:
|
3464 |
msgid "Did you know?"
|
3465 |
msgstr "Wusstest Du schon?"
|
3466 |
|
3467 |
-
#: includes/B2S/Settings/Item.php:
|
3468 |
-
msgid ""
|
3469 |
-
"
|
3470 |
-
"post for each individual social media post and channel (profile, page, group)"
|
3471 |
-
"."
|
3472 |
-
msgstr ""
|
3473 |
-
"Mit der Premium Pro Version kannst Du das Standard Post-Format individuell "
|
3474 |
-
"pro Social Media Kanal verändern und Deine Beiträge als BildPost oder als "
|
3475 |
-
"Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
|
3476 |
|
3477 |
-
#: includes/B2S/Settings/Item.php:
|
3478 |
msgid "Upgrade to Premium Pro now."
|
3479 |
msgstr "Upgrade auf Premium PRO"
|
3480 |
|
3481 |
-
#: includes/B2S/Settings/Item.php:
|
3482 |
msgid "The image will be changed"
|
3483 |
msgstr "Das Bild wird geändert"
|
3484 |
|
3485 |
-
#: includes/B2S/Settings/Item.php:
|
3486 |
-
msgid ""
|
3487 |
-
"
|
3488 |
-
"information will be shown in your timeline."
|
3489 |
-
msgstr ""
|
3490 |
-
"Füge weiße Rahmen ein, um das gesamte Bild in Deiner Zeitleiste anzuzeigen. "
|
3491 |
-
"Alle Bildinformationen werden in Deiner Zeitleiste angezeigt."
|
3492 |
|
3493 |
-
#: includes/B2S/Settings/Item.php:
|
3494 |
-
msgid ""
|
3495 |
-
"The link post format displays posts title, link address and the first one or "
|
3496 |
-
"two sentences of the post. The networks scan this information from your META "
|
3497 |
-
"or OpenGraph. PLEASE NOTE: If you want your link posts to display the "
|
3498 |
-
"selected image from the Blog2Social preview editor, please make sure you "
|
3499 |
-
"have activated the Social Meta Tags for Facebook and Twitter in your "
|
3500 |
-
"Blog2Social settings. You find these settings in the tab \"Social Meta "
|
3501 |
-
"Data\". If you don't select a specific post image, some networks display the "
|
3502 |
-
"first image detected on your page. The image links to your blog post."
|
3503 |
-
msgstr ""
|
3504 |
-
"Im Link-Post-Format generiert das Netzwerk automatisch eine Link-Vorschau "
|
3505 |
-
"mit den Informationen aus den Social Meta Tags Deiner Blogbeiträge. Die "
|
3506 |
-
"Vorschau zeigt den Titel, das Bild und die ersten ein oder zwei Sätze des "
|
3507 |
-
"Beitrags. Ein Klick auf das Bild führt den Benutzer zu Deinem Blogbeitrag. "
|
3508 |
-
"BITTE BEACHTE: Wenn Deine Link-Posts das ausgewählte Bild aus dem "
|
3509 |
-
"Blog2Social Vorschau-Editor anzeigen sollen, stelle bitte sicher, dass Du "
|
3510 |
-
"die Social Meta Tags für Facebook und Twitter in Deinen Blog2Social-"
|
3511 |
-
"Einstellungen aktiviert hast. Diese Einstellungen findest Du im Tab \"Social "
|
3512 |
-
"Meta Angaben\". Wenn Du kein bestimmtes Beitragsbild für Deinen Blogbeitrag "
|
3513 |
-
"ausgewählt hast, zeigen einige Netzwerke das erste Bild an, dass sie auf "
|
3514 |
-
"Deiner Seite finden."
|
3515 |
-
|
3516 |
-
#: includes/B2S/Settings/Item.php:438 views/b2s/html/footer.php:134
|
3517 |
msgid ""
|
3518 |
-
"The
|
3519 |
-
"
|
3520 |
-
"
|
3521 |
msgstr ""
|
3522 |
-
"
|
3523 |
-
"
|
3524 |
-
"
|
3525 |
-
|
|
|
|
|
|
|
3526 |
|
3527 |
-
#: includes/B2S/Settings/Item.php:
|
3528 |
msgid ""
|
3529 |
-
"A photo or image post displays the selected image in the one-page preview of "
|
3530 |
-
"
|
3531 |
-
"view on your image gallery in the respective network. Blog2Social adds the "
|
3532 |
-
"link to your post in your comment. The main benefit of photo posts is that "
|
3533 |
-
"your image is uploaded to your personal image albums or gallery. In Facebook,"
|
3534 |
-
" you can edit the albums name with a description of your choice."
|
3535 |
msgstr ""
|
3536 |
-
"Ein Foto oder ein Bildbeitrag zeigt das ausgewählte Bild in der einseitigen "
|
3537 |
-
"
|
3538 |
-
"verlinkt auf die Bildansicht Deiner Bildergalerie im jeweiligen Netzwerk. "
|
3539 |
-
"Blog2Social fügt den Link zu Deinem Post in Deinem Kommentar hinzu. Der "
|
3540 |
-
"Hauptvorteil von Foto-Posts ist, dass Dein Bild in Deinen persönlichen "
|
3541 |
-
"Bildalben oder Deiner Galerie hochgeladen wird. In Facebook kannst Du den "
|
3542 |
-
"Namen des Albums mit einer Beschreibung Deiner Wahl bearbeiten."
|
3543 |
|
3544 |
#: includes/B2S/Ship/Image.php:27
|
3545 |
msgid "The images file types .jpg and .png are allowed. Please try another."
|
3546 |
-
msgstr ""
|
3547 |
-
"Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
|
3548 |
|
3549 |
#: includes/B2S/Ship/Image.php:29
|
3550 |
msgid "To select an individual image from your media library,"
|
3551 |
msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
|
3552 |
|
3553 |
#: includes/B2S/Ship/Image.php:32
|
3554 |
-
msgid ""
|
3555 |
-
"
|
3556 |
-
"image format and will display your standard image instead."
|
3557 |
-
msgstr ""
|
3558 |
-
"Die Netzwerke Diigo, Bloglovin' und Google My Business unterstützen das GIF "
|
3559 |
-
"format nicht und stellen stattdessen das Standardbild dar."
|
3560 |
|
3561 |
#: includes/B2S/Ship/Image.php:33
|
3562 |
-
msgid ""
|
3563 |
-
"
|
3564 |
-
"networks listed below. This also applies for all scheduled posts in this "
|
3565 |
-
"post format. "
|
3566 |
-
msgstr ""
|
3567 |
-
"Wenn Du Dein Bild im Linkpost-Format änderst, wird es für alle unten "
|
3568 |
-
"aufgeführten Netzwerke geändert. Dies gilt auch für deine vorgeplanten Posts "
|
3569 |
-
"in diesem Format."
|
3570 |
|
3571 |
#: includes/B2S/Ship/Image.php:33
|
3572 |
msgid "More Information"
|
3573 |
msgstr "Weitere Informationen"
|
3574 |
|
3575 |
#: includes/B2S/Ship/Image.php:37
|
3576 |
-
msgid ""
|
3577 |
-
"
|
3578 |
-
"1000px. Blog2Social will automatically resize your image according to "
|
3579 |
-
"network requirements."
|
3580 |
-
msgstr ""
|
3581 |
-
"Die optimalen Bildgrößen für Deine Social Media Posts liegen zwischen: 667-"
|
3582 |
-
"1000px x 523-1000px <br> Blog2Social passt Dein Bild automatisch die Größe "
|
3583 |
-
"des jeweiligen Netzwerks an."
|
3584 |
|
3585 |
#: includes/B2S/Ship/Image.php:61
|
3586 |
msgid "No images are included in your post."
|
@@ -3642,130 +2975,73 @@ msgstr "Die Verbindung endet am 2. April 2019."
|
|
3642 |
msgid "post format"
|
3643 |
msgstr "Postformat"
|
3644 |
|
3645 |
-
#: includes/B2S/Ship/Item.php:340 includes/B2S/Ship/Item.php:
|
3646 |
msgid "Insert full-text"
|
3647 |
msgstr "ganzen Text einfügen"
|
3648 |
|
3649 |
-
#: includes/B2S/Ship/Item.php:342 includes/B2S/Ship/Item.php:
|
3650 |
msgid "Delete text"
|
3651 |
msgstr "Text löschen"
|
3652 |
|
3653 |
-
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651
|
3654 |
-
|
3655 |
-
|
3656 |
-
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3657 |
-
"allowed to post identical or substantially similar content to multiple "
|
3658 |
-
"accounts or multiple duplicate updates on one account."
|
3659 |
-
msgstr ""
|
3660 |
-
"Bitte beachten Sie, dass es nach den neuen AGB von Twitter nicht mehr "
|
3661 |
-
"erlaubt ist, identische oder im Wesentlichen ähnliche Inhalte auf mehreren "
|
3662 |
-
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3663 |
-
"mehreren Accounts zu posten."
|
3664 |
|
3665 |
-
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651
|
3666 |
-
|
3667 |
-
|
3668 |
-
"Violating these rules can result in Twitter suspending your account. Always "
|
3669 |
-
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3670 |
-
"duplicate posts."
|
3671 |
-
msgstr ""
|
3672 |
-
"Ein Verstoß gegen diese Regeln kann dazu führen, dass Twitter Ihren Account "
|
3673 |
-
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
3674 |
-
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
3675 |
|
3676 |
-
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651
|
3677 |
-
#: includes/B2S/Ship/Item.php:1019
|
3678 |
msgid "Learn more about this"
|
3679 |
msgstr "Erfahre mehr darüber"
|
3680 |
|
3681 |
#: includes/B2S/Ship/Item.php:353
|
3682 |
-
msgid ""
|
3683 |
-
"
|
3684 |
-
"group and no more than three times across different groups."
|
3685 |
-
msgstr ""
|
3686 |
-
"Bitte beachte: XING erlaubt die Veröffentlichung identischer Beiträge nur "
|
3687 |
-
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
3688 |
-
"Gruppen."
|
3689 |
|
3690 |
#: includes/B2S/Ship/Item.php:353
|
3691 |
msgid "Read more"
|
3692 |
msgstr "Weiterlesen"
|
3693 |
|
3694 |
#: includes/B2S/Ship/Item.php:358
|
3695 |
-
msgid ""
|
3696 |
-
"
|
3697 |
-
"substantially similar content to multiple accounts or multiple duplicate "
|
3698 |
-
"updates on one account."
|
3699 |
-
msgstr ""
|
3700 |
-
"Bitte beachten Sie, dass es Benutzern nicht gestattet ist, identische oder "
|
3701 |
-
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
3702 |
-
"Updates in einem Konto zu veröffentlichen."
|
3703 |
|
3704 |
#: includes/B2S/Ship/Item.php:358
|
3705 |
-
msgid ""
|
3706 |
-
"
|
3707 |
-
"your content with different images, comments, hashtags or handles to prevent "
|
3708 |
-
"duplicate posts."
|
3709 |
-
msgstr ""
|
3710 |
-
"Ein Verstoß gegen diese Regeln kann zur Sperrung Ihres Kontos führen. "
|
3711 |
-
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
3712 |
-
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
3713 |
|
3714 |
#: includes/B2S/Ship/Item.php:378
|
3715 |
msgid "hide calendar"
|
3716 |
msgstr "Planungskalender verbergen"
|
3717 |
|
3718 |
-
#: includes/B2S/Ship/Item.php:435 includes/B2S/Ship/Item.php:464
|
3719 |
-
#: includes/B2S/Ship/Item.php:
|
3720 |
-
#: includes/B2S/Ship/Item.php:552 includes/B2S/Ship/Item.php:580
|
3721 |
-
#: includes/B2S/Ship/Item.php:608 includes/B2S/Ship/Item.php:639
|
3722 |
-
#: includes/B2S/Ship/Item.php:662 includes/B2S/Ship/Item.php:683
|
3723 |
-
#: includes/B2S/Ship/Item.php:704 includes/B2S/Ship/Item.php:725
|
3724 |
-
#: includes/B2S/Ship/Item.php:746 includes/B2S/Ship/Item.php:767
|
3725 |
-
#: includes/B2S/Ship/Item.php:777
|
3726 |
msgid "Write something about your post..."
|
3727 |
msgstr "Schreibe etwas..."
|
3728 |
|
3729 |
-
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:509
|
3730 |
-
|
3731 |
-
#: includes/B2S/Ship/Item.php:595
|
3732 |
-
msgid ""
|
3733 |
-
"Info: Change Open Graph Meta tags image, title and description for this "
|
3734 |
-
"network"
|
3735 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
3736 |
|
3737 |
-
#: includes/B2S/Ship/Item.php:453 includes/B2S/Ship/Item.php:483
|
3738 |
-
|
3739 |
-
|
3740 |
-
msgid ""
|
3741 |
-
"You want to change your link image, link title and link description for this "
|
3742 |
-
"network? Click here."
|
3743 |
-
msgstr ""
|
3744 |
-
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
3745 |
|
3746 |
-
#: includes/B2S/Ship/Item.php:455 includes/B2S/Ship/Item.php:514
|
3747 |
-
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:572
|
3748 |
-
#: includes/B2S/Ship/Item.php:600
|
3749 |
msgid "OG Meta title"
|
3750 |
msgstr "OG Titel"
|
3751 |
|
3752 |
-
#: includes/B2S/Ship/Item.php:456 includes/B2S/Ship/Item.php:515
|
3753 |
-
#: includes/B2S/Ship/Item.php:545 includes/B2S/Ship/Item.php:573
|
3754 |
-
#: includes/B2S/Ship/Item.php:601
|
3755 |
msgid "OG Meta description"
|
3756 |
msgstr "OG Beschreibung"
|
3757 |
|
3758 |
#: includes/B2S/Ship/Item.php:478
|
3759 |
-
msgid ""
|
3760 |
-
"
|
3761 |
-
"Changes may not be immediately visible on Twitter."
|
3762 |
-
msgstr ""
|
3763 |
-
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
3764 |
-
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
3765 |
|
3766 |
#: includes/B2S/Ship/Item.php:480
|
3767 |
-
msgid ""
|
3768 |
-
"Info: Change Card Meta tags image, title and description for this network"
|
3769 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
3770 |
|
3771 |
#: includes/B2S/Ship/Item.php:485
|
@@ -3777,223 +3053,166 @@ msgid "Card Meta description"
|
|
3777 |
msgstr "Card Beschreibung"
|
3778 |
|
3779 |
#: includes/B2S/Ship/Item.php:537
|
3780 |
-
msgid ""
|
3781 |
-
"
|
3782 |
-
"days. Changes may not be immediately visible on XING."
|
3783 |
-
msgstr ""
|
3784 |
-
"Hinweis: XING speichert die Open Graph Parameter eines Links für bis zu 7 "
|
3785 |
-
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
3786 |
-
"dargestellt."
|
3787 |
|
3788 |
#: includes/B2S/Ship/Item.php:793
|
3789 |
msgid "required"
|
3790 |
msgstr "erforderlich"
|
3791 |
|
3792 |
-
#: includes/B2S/Ship/Item.php:
|
3793 |
msgid "Jobs & Projects"
|
3794 |
msgstr "Stellenangebote & Projekte"
|
3795 |
|
3796 |
-
#: includes/B2S/Ship/Item.php:
|
3797 |
msgid "Events"
|
3798 |
msgstr "Events"
|
3799 |
|
3800 |
-
#: includes/B2S/Ship/Item.php:
|
3801 |
msgid "Classified Ads"
|
3802 |
msgstr "Kleinanzeigen"
|
3803 |
|
3804 |
-
#: includes/B2S/Ship/Item.php:
|
3805 |
msgid "Offer"
|
3806 |
msgstr "Angebot"
|
3807 |
|
3808 |
-
#: includes/B2S/Ship/Item.php:
|
3809 |
msgid "Request"
|
3810 |
msgstr "Anfrage"
|
3811 |
|
3812 |
-
#: includes/B2S/Ship/Item.php:
|
3813 |
msgid "The Headline..."
|
3814 |
msgstr "Die Überschrift..."
|
3815 |
|
3816 |
-
#: includes/B2S/Ship/Item.php:
|
3817 |
#, php-format
|
3818 |
msgid "max. %s Tags"
|
3819 |
msgstr "max. %s Tags"
|
3820 |
|
3821 |
-
#: includes/B2S/Ship/Item.php:
|
3822 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3823 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
3824 |
|
3825 |
-
#: includes/B2S/Ship/Item.php:
|
3826 |
msgid "Delay"
|
3827 |
msgstr "Verzögerung"
|
3828 |
|
3829 |
-
#: includes/B2S/Ship/Item.php:
|
3830 |
-
#: includes/B2S/Ship/Item.php:981 includes/B2S/Ship/Item.php:982
|
3831 |
-
#: views/b2s/partials/post-edit-modal.php:77
|
3832 |
-
#: views/b2s/partials/post-edit-modal.php:78
|
3833 |
-
#: views/b2s/partials/post-edit-modal.php:79
|
3834 |
#: views/b2s/partials/post-edit-modal.php:80
|
3835 |
msgid "min"
|
3836 |
msgstr "min"
|
3837 |
|
3838 |
-
#: includes/B2S/Ship/Item.php:
|
3839 |
msgid "Add Retweet"
|
3840 |
msgstr "Retweet hinzufügen"
|
3841 |
|
3842 |
-
#: includes/B2S/Ship/Item.php:
|
3843 |
msgid "Share Now"
|
3844 |
msgstr "Sofort teilen"
|
3845 |
|
3846 |
-
#: includes/B2S/Ship/Item.php:
|
3847 |
msgid "Schedule Recurrent Post"
|
3848 |
msgstr "regelmäßig Planen"
|
3849 |
|
3850 |
-
#: includes/B2S/Ship/Item.php:
|
3851 |
msgid ""
|
3852 |
-
"Please note: Your account is connected via an old XING API that is no longer "
|
3853 |
-
"
|
3854 |
-
"as your XING company pages (Employer branding profiles) and business pages "
|
3855 |
-
"with the new XING interface in the Blog2Social network settings. To do this, "
|
3856 |
-
"go to the Blog2Social Networks section and connect your XING accounts with "
|
3857 |
-
"the new XING."
|
3858 |
msgstr ""
|
3859 |
-
"Bitte beachte: Dein Account ist über eine alte XING-Schnittstelle verbunden, "
|
3860 |
-
"
|
3861 |
-
"sowie Deine XING-Unternehmensseiten- (Arbeitgeberprofile) und Business Pages "
|
3862 |
-
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
3863 |
-
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
3864 |
|
3865 |
-
#: includes/B2S/Ship/Item.php:
|
3866 |
-
msgid ""
|
3867 |
-
"
|
3868 |
-
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3869 |
-
"information and the next steps, including how to download your photos and "
|
3870 |
-
"other content here:"
|
3871 |
-
msgstr ""
|
3872 |
-
"Bitte beachte: Google stellt das Netzwerk Google+ für alle private Konten "
|
3873 |
-
"(Profile, Seiten und Gruppen) zum 02. April 2019 ein. Hier findest Du "
|
3874 |
-
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
3875 |
-
"andere Inhalte herunterladen kannst:"
|
3876 |
|
3877 |
-
#: includes/B2S/Ship/Item.php:
|
3878 |
msgid "Repeats"
|
3879 |
msgstr "Wiederholen"
|
3880 |
|
3881 |
-
#: includes/B2S/Ship/Item.php:
|
3882 |
msgid "Duration"
|
3883 |
msgstr "Dauer"
|
3884 |
|
3885 |
-
#: includes/B2S/Ship/Item.php:
|
3886 |
msgid "Number of repeats"
|
3887 |
msgstr "Anzahl der Wiederholungen"
|
3888 |
|
3889 |
-
#: includes/B2S/Ship/Item.php:
|
3890 |
msgid "Day of month"
|
3891 |
msgstr "Tag im Monat"
|
3892 |
|
3893 |
-
#: includes/B2S/Ship/Item.php:
|
3894 |
msgid "Repeats every (days)"
|
3895 |
msgstr "Wiederholt sich alle X Tage"
|
3896 |
|
3897 |
-
#: includes/B2S/Ship/Item.php:
|
3898 |
msgid "Start date"
|
3899 |
msgstr "Startdatum"
|
3900 |
|
3901 |
-
#: includes/B2S/Ship/Item.php:
|
3902 |
msgid "Time to publish"
|
3903 |
msgstr "Veröffentlichungszeitpunkt"
|
3904 |
|
3905 |
-
#: includes/B2S/Ship/Item.php:
|
3906 |
msgid "weekly"
|
3907 |
msgstr "wöchentlich"
|
3908 |
|
3909 |
-
#: includes/B2S/Ship/Item.php:
|
3910 |
msgid "monthly"
|
3911 |
msgstr "monatlich"
|
3912 |
|
3913 |
-
#: includes/B2S/Ship/Item.php:
|
3914 |
msgid "own period"
|
3915 |
msgstr "Eigener Zeitraum"
|
3916 |
|
3917 |
-
#: includes/B2S/Ship/Item.php:
|
3918 |
msgid "Week"
|
3919 |
msgstr "Woche"
|
3920 |
|
3921 |
-
#: includes/B2S/Ship/Item.php:
|
3922 |
msgid "Weeks"
|
3923 |
msgstr "Wochen"
|
3924 |
|
3925 |
-
#: includes/B2S/Ship/Item.php:
|
3926 |
msgid "Month"
|
3927 |
msgstr "Monat"
|
3928 |
|
3929 |
-
#: includes/B2S/Ship/Item.php:
|
3930 |
msgid "Months"
|
3931 |
msgstr "Monate"
|
3932 |
|
3933 |
-
#: includes/B2S/Ship/Item.php:
|
3934 |
msgid "End Of Month"
|
3935 |
msgstr "Monatsende"
|
3936 |
|
3937 |
-
#: includes/B2S/Ship/Item.php:
|
3938 |
msgid "Timespan"
|
3939 |
msgstr "Zeitspanne"
|
3940 |
|
3941 |
-
#: includes/B2S/Ship/Item.php:
|
3942 |
-
#: views/b2s/partials/post-edit-modal.php:66
|
3943 |
msgid "Time"
|
3944 |
msgstr "Mal"
|
3945 |
|
3946 |
-
#: includes/B2S/Ship/Item.php:
|
3947 |
-
msgid "Mon"
|
3948 |
-
msgstr "Mo"
|
3949 |
-
|
3950 |
-
#: includes/B2S/Ship/Item.php:1125
|
3951 |
-
msgid "Tue"
|
3952 |
-
msgstr "Di"
|
3953 |
-
|
3954 |
-
#: includes/B2S/Ship/Item.php:1126
|
3955 |
-
msgid "Wed"
|
3956 |
-
msgstr "Mi"
|
3957 |
-
|
3958 |
-
#: includes/B2S/Ship/Item.php:1127
|
3959 |
-
msgid "Thu"
|
3960 |
-
msgstr "Do"
|
3961 |
-
|
3962 |
-
#: includes/B2S/Ship/Item.php:1128
|
3963 |
-
msgid "Fri"
|
3964 |
-
msgstr "Fr"
|
3965 |
-
|
3966 |
-
#: includes/B2S/Ship/Item.php:1129
|
3967 |
-
msgid "Sat"
|
3968 |
-
msgstr "Sa"
|
3969 |
-
|
3970 |
-
#: includes/B2S/Ship/Item.php:1130
|
3971 |
-
msgid "Sun"
|
3972 |
-
msgstr "So"
|
3973 |
-
|
3974 |
-
#: includes/B2S/Ship/Item.php:1137
|
3975 |
msgid "add another post"
|
3976 |
msgstr "einen weiteren Post anlegen"
|
3977 |
|
3978 |
-
#: includes/B2S/Ship/Item.php:
|
3979 |
msgid "Copy from original"
|
3980 |
msgstr "Originaltext kopieren"
|
3981 |
|
3982 |
-
#: includes/B2S/Ship/Item.php:
|
3983 |
msgid "Apply Settings To All Networks"
|
3984 |
msgstr "Planung für alle Netzwerke übernehmen"
|
3985 |
|
3986 |
-
#: includes/B2S/Ship/Item.php:
|
3987 |
msgid "Save as best time for this network"
|
3988 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
3989 |
|
3990 |
#: includes/B2S/Ship/Save.php:391
|
3991 |
-
msgid ""
|
3992 |
-
"
|
3993 |
-
"Instant Sharing"
|
3994 |
-
msgstr ""
|
3995 |
-
"Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht Facebook "
|
3996 |
-
"Instant Sharing zur Verfügung"
|
3997 |
|
3998 |
#: includes/B2S/Ship/Save.php:391
|
3999 |
msgid "Learn how it works"
|
@@ -4004,60 +3223,36 @@ msgid "This is how it works:"
|
|
4004 |
msgstr "Und so funktioniert es:"
|
4005 |
|
4006 |
#: includes/B2S/Ship/Save.php:394
|
4007 |
-
msgid ""
|
4008 |
-
"-
|
4009 |
-
"selected Facebook profile below."
|
4010 |
-
msgstr ""
|
4011 |
-
"-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
|
4012 |
-
"neben Deinem unten aufgeführten Profil."
|
4013 |
|
4014 |
#: includes/B2S/Ship/Save.php:395
|
4015 |
msgid ""
|
4016 |
-
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
4017 |
-
"
|
4018 |
-
"scheduled date and time, your post will move to the \"Instant Sharing\" tab "
|
4019 |
-
"and you can click on \"Share\" to post it to your Facebook Profile instantly."
|
4020 |
msgstr ""
|
4021 |
-
"-Bei geplanten Beiträgen speichert Blog2Social Deinen Beitrag und verschiebt "
|
4022 |
-
"
|
4023 |
-
"\"Beiträge\". An Deinem geplanten Termin erscheint dein Post im “Instant "
|
4024 |
-
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
4025 |
-
"Facebook-Profil zu senden!"
|
4026 |
|
4027 |
#: includes/B2S/Ship/Save.php:399
|
4028 |
-
msgid ""
|
4029 |
-
"
|
4030 |
-
msgstr ""
|
4031 |
-
"Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
|
4032 |
-
"zur Verfügung"
|
4033 |
|
4034 |
#: includes/B2S/Ship/Save.php:402
|
4035 |
-
msgid ""
|
4036 |
-
"
|
4037 |
-
"selected Google+ account below."
|
4038 |
-
msgstr ""
|
4039 |
-
"Um den Beitrag sofort zu teilen, klicke einfach auf den Teilen Button neben "
|
4040 |
-
"Deinem unten aufgeführten Konto."
|
4041 |
|
4042 |
#: includes/B2S/Ship/Save.php:403
|
4043 |
msgid ""
|
4044 |
-
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
4045 |
-
"
|
4046 |
-
"your scheduled date and time, your post will move to the \"Instant Sharing\" "
|
4047 |
-
"tab and you can click on \"Share\" to post it to your account instantly."
|
4048 |
msgstr ""
|
4049 |
-
"-Bei geplanten Beiträgen speichert Blog2Social Deinen Beitrag und verschiebt "
|
4050 |
-
"
|
4051 |
-
"\"Beiträge\". An Deinem geplanten Termin erscheint dein Post im “Instant "
|
4052 |
-
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
4053 |
-
"Facebook-Profil zu senden!"
|
4054 |
|
4055 |
#: includes/B2S/Ship/Save.php:404
|
4056 |
-
msgid ""
|
4057 |
-
"
|
4058 |
-
msgstr ""
|
4059 |
-
"Um in eine Gruppe zu teilen, muss Dein Beitrag auf Öffentlich gestellt "
|
4060 |
-
"werden."
|
4061 |
|
4062 |
#: includes/B2S/Ship/Save.php:409
|
4063 |
msgid "Please share your post now"
|
@@ -4103,8 +3298,7 @@ msgstr "Bedingungen"
|
|
4103 |
msgid "We never store your data from your social media profiles"
|
4104 |
msgstr "Wir speichern Deine Daten aus Deinen Social-Media-Profilen niemals."
|
4105 |
|
4106 |
-
#: views/b2s/html/footer.php:8 views/prg/html/footer.php:8
|
4107 |
-
#: views/prg/html/header.php:45
|
4108 |
msgid "Post"
|
4109 |
msgstr "Beitrag"
|
4110 |
|
@@ -4129,64 +3323,34 @@ msgid "Upgrade to Blog2Social PREMIUM PRO"
|
|
4129 |
msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden"
|
4130 |
|
4131 |
#: views/b2s/html/footer.php:56
|
4132 |
-
msgid ""
|
4133 |
-
"
|
4134 |
-
"different sharing purposes."
|
4135 |
-
msgstr ""
|
4136 |
-
"Du kannst verschiedene Netzwerk-Gruppierungen auswählen und für verschiedene "
|
4137 |
-
"Zwecke speichern."
|
4138 |
|
4139 |
#: views/b2s/html/footer.php:59
|
4140 |
msgid ""
|
4141 |
-
"Blog2Social Premium PRO allows you to save your preferred social network "
|
4142 |
-
"accounts into network
|
4143 |
-
"
|
4144 |
-
"for your next social sharing activitiy. Use specific network collections for "
|
4145 |
-
"recurring sharing purposes or campaigns, e.g. for initial sharing of new "
|
4146 |
-
"blog posts, for re-sharing evergreen content or for sharing images or videos."
|
4147 |
-
" Bundle your preferred social network accounts into a network collection for "
|
4148 |
-
"a faster future access. Assign a name to each network collection so you can "
|
4149 |
-
"easily access them for your next social sharing activitiy. You can also "
|
4150 |
-
"connect multiple profiles, pages and groups per network in one network "
|
4151 |
-
"collection."
|
4152 |
msgstr ""
|
4153 |
-
"Ab Blog2Social Premium PRO kannst Du Deine bevorzugten Netzwerk-"
|
4154 |
-
"
|
4155 |
-
"
|
4156 |
-
"Gruppierungen für wiederkehrende Planung oder Kampagnen, z.B. für die erste "
|
4157 |
-
"Veröffentlichung neuer Blogbeiträge, für die erneute Veröffentlichung von "
|
4158 |
-
"Evergreen Content oder für das Teilen von Bildern oder Videos. Wähle schnell "
|
4159 |
-
"und einfach Deine bevorzugte Netzwerk-Gruppierung für Deine nächste Social-"
|
4160 |
-
"Media-Aktivität. Du kannst auch mehrere Profile, Seiten und Gruppen pro "
|
4161 |
-
"Netzwerk in einer Netzwerk-Gruppierung verbinden."
|
4162 |
|
4163 |
#: views/b2s/html/footer.php:62
|
4164 |
msgid "With Blog2Social PREMIUM PRO you can also:"
|
4165 |
msgstr "Mit Blog2Social PREMIUM PRO kannst Du außerdem:"
|
4166 |
|
4167 |
#: views/b2s/html/footer.php:64
|
4168 |
-
msgid ""
|
4169 |
-
"
|
4170 |
-
"groups"
|
4171 |
-
msgstr ""
|
4172 |
-
"Veröffentliche Posts auf LinkedIn-Seiten, XING-Seiten und -Gruppen sowie "
|
4173 |
-
"Facebook-Seiten und -Gruppen"
|
4174 |
|
4175 |
#: views/b2s/html/footer.php:66
|
4176 |
-
msgid ""
|
4177 |
-
"
|
4178 |
-
"multiple times or recurrently"
|
4179 |
-
msgstr ""
|
4180 |
-
"Plane Deine Beiträge zu den besten Zeiten in jedem Netzwerk: einmal, "
|
4181 |
-
"mehrmals oder wiederkehrend"
|
4182 |
|
4183 |
#: views/b2s/html/footer.php:69
|
4184 |
-
msgid ""
|
4185 |
-
"Reporting
|
4186 |
-
"media posts"
|
4187 |
-
msgstr ""
|
4188 |
-
"Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
|
4189 |
-
"und geplanten Social Media Beiträge."
|
4190 |
|
4191 |
#: views/b2s/html/footer.php:71 views/b2s/html/footer.php:89
|
4192 |
msgid "Upgrade to PRO and above"
|
@@ -4197,12 +3361,8 @@ msgid "Activate Blog2Social PREMIUM PRO."
|
|
4197 |
msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
4198 |
|
4199 |
#: views/b2s/html/footer.php:78
|
4200 |
-
msgid ""
|
4201 |
-
"
|
4202 |
-
"well as XING groups."
|
4203 |
-
msgstr ""
|
4204 |
-
"Mit Blog2Social Premium PRO kannst Du Seiten in LinkedIn und XING, sowie "
|
4205 |
-
"XING-Gruppen verbinden."
|
4206 |
|
4207 |
#: views/b2s/html/footer.php:81
|
4208 |
msgid "Also included:"
|
@@ -4222,9 +3382,7 @@ msgstr "Poste auf mehrere Accounts pro Netzwerk"
|
|
4222 |
|
4223 |
#: views/b2s/html/footer.php:86
|
4224 |
msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
|
4225 |
-
msgstr ""
|
4226 |
-
"Beste Zeiten Manager: Plane Deine Veröffentlichungen mehrmals oder "
|
4227 |
-
"regelmäßig."
|
4228 |
|
4229 |
#: views/b2s/html/footer.php:87
|
4230 |
msgid "Reporting with links to already published posts"
|
@@ -4235,24 +3393,16 @@ msgid "Select the preferred custom post format for your posts"
|
|
4235 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
4236 |
|
4237 |
#: views/b2s/html/footer.php:107
|
4238 |
-
msgid ""
|
4239 |
-
"
|
4240 |
-
"format for Twitter, LinkedIn, and Facebook."
|
4241 |
-
msgstr ""
|
4242 |
-
"Wähle zwischen Link-Beitrag oder Bild-Beitrag, um Dein bevorzugtes "
|
4243 |
-
"Postformat für Twitter, LinkedIn und Facebook zu definieren."
|
4244 |
|
4245 |
#: views/b2s/html/footer.php:116
|
4246 |
msgid "Photo Post"
|
4247 |
msgstr "Bild-Beitrag"
|
4248 |
|
4249 |
#: views/b2s/html/footer.php:124
|
4250 |
-
msgid ""
|
4251 |
-
"
|
4252 |
-
"your preferred custom post format."
|
4253 |
-
msgstr ""
|
4254 |
-
"Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
|
4255 |
-
"bevorzugtes benutzerdefiniertes Postformat auswählen."
|
4256 |
|
4257 |
#: views/b2s/html/footer.php:174
|
4258 |
msgid "Did you miss something?"
|
@@ -4268,85 +3418,43 @@ msgstr "abschicken"
|
|
4268 |
|
4269 |
#: views/b2s/html/footer.php:195
|
4270 |
msgid ""
|
4271 |
-
"Blog2Social provides you with a pre-configured time-scheme to automatically "
|
4272 |
-
"
|
4273 |
-
"network based on recent research. Click Load Best Times in the preview "
|
4274 |
-
"editor to schedule your posts automatically for the best times to post on "
|
4275 |
-
"each social network."
|
4276 |
msgstr ""
|
4277 |
-
"Blog2Social bietet Dir ein vorkonfiguriertes Zeitschema, um Deine Social "
|
4278 |
-
"
|
4279 |
-
"zu teilen, basierend auf aktuellen Forschungsergebnissen. Klicke dazu im "
|
4280 |
-
"Vorschau-Editor auf „Lade beste Zeiten“, um Deine Beiträge automatisch für "
|
4281 |
-
"die besten Zeiten in jedem sozialen Netzwerk zu planen."
|
4282 |
|
4283 |
#: views/b2s/html/footer.php:197
|
4284 |
msgid ""
|
4285 |
-
"You can also configure your own individual time settings for each of your "
|
4286 |
-
"
|
4287 |
-
"followers are online. By configuring an individual cross-posting schedule "
|
4288 |
-
"for all your networks you can set up an effective social media posting plan "
|
4289 |
-
"to reach as many followers as possible."
|
4290 |
msgstr ""
|
4291 |
-
"Du kannst auch Deine eigenen individuellen Zeiteinstellungen für jede Deiner "
|
4292 |
-
"Social Media-
|
4293 |
-
"zu veröffentlichen, wenn Deine Follower online sind. Durch die Konfiguration "
|
4294 |
-
"eines individuellen Cross-Posting-Plans für alle Deine Netzwerke kannst Du "
|
4295 |
-
"einen effektiven Social Media-Posting-Plan einrichten, um so viele Follower "
|
4296 |
-
"wie möglich zu erreichen."
|
4297 |
|
4298 |
#: views/b2s/html/footer.php:199
|
4299 |
-
msgid ""
|
4300 |
-
"
|
4301 |
-
"automatically for your individually chosen best times."
|
4302 |
-
msgstr ""
|
4303 |
-
"Klicke im Vorschau-Editor auf „Meine Zeiteinstellungen laden\", um Deine "
|
4304 |
-
"Beiträge automatisch für Deine individuell gewählten besten Zeiten zu planen."
|
4305 |
|
4306 |
#: views/b2s/html/footer.php:201
|
4307 |
-
msgid ""
|
4308 |
-
"
|
4309 |
-
"or network and save your new settings as default for future use."
|
4310 |
-
msgstr ""
|
4311 |
-
"Du kannst die vordefinierten Zeiten im Vorschau-Editor für jeden Beitrag "
|
4312 |
-
"oder jedes Netzwerk bearbeiten und Deine neuen Einstellungen als Standard "
|
4313 |
-
"für die zukünftige Verwendung speichern."
|
4314 |
|
4315 |
#: views/b2s/html/footer.php:203
|
4316 |
-
msgid ""
|
4317 |
-
"
|
4318 |
-
"scheduling and auto-poster."
|
4319 |
-
msgstr ""
|
4320 |
-
"Erfahre, wie Du individuelle Beste Zeiten für Deine Social Media Planung und "
|
4321 |
-
"Deinen Auto-Poster einrichten und anwenden kannst."
|
4322 |
|
4323 |
#: views/b2s/html/footer.php:237
|
4324 |
msgid "Why Retweets?"
|
4325 |
msgstr "Wieso Retweeten?"
|
4326 |
|
4327 |
#: views/b2s/html/footer.php:240
|
4328 |
-
msgid ""
|
4329 |
-
"Retweets
|
4330 |
-
"accounts in accordance with Twitter new rules. You can now schedule multiple "
|
4331 |
-
"Retweets for an original Tweet that you are planning right from your "
|
4332 |
-
"WordPress."
|
4333 |
-
msgstr ""
|
4334 |
-
"Retweets sind die empfohlene Methode, um die gleichen Tweets über mehrere "
|
4335 |
-
"Twitter-Konten hinweg im Einklang mit den neuen Regeln von Twitter zu "
|
4336 |
-
"verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
|
4337 |
-
"aus Deinem WordPress heraus planen."
|
4338 |
|
4339 |
#: views/b2s/html/footer.php:243
|
4340 |
-
msgid ""
|
4341 |
-
"
|
4342 |
-
"be retweeted by the selected Twitter accounts. If, for example, 3 Original-"
|
4343 |
-
"Tweets are scheduled, every single Tweet will trigger a Retweet for the "
|
4344 |
-
"selected Twitter accounts."
|
4345 |
-
msgstr ""
|
4346 |
-
"Wenn Retweets aktiviert sind, wird jeder Original-Tweet, den Du in diesem "
|
4347 |
-
"Schritt planst, von den ausgewählten Twitter-Konten retweetet. Wenn "
|
4348 |
-
"beispielsweise 3 Original-Tweets geplant sind, löst jeder einzelne Tweet "
|
4349 |
-
"einen Retweet für die ausgewählten Twitter-Konten aus."
|
4350 |
|
4351 |
#: views/b2s/html/footer.php:247
|
4352 |
msgid "Would you like to retweet?"
|
@@ -4358,651 +3466,460 @@ msgstr "Bitly Integration (Kurzlinks)"
|
|
4358 |
|
4359 |
#: views/b2s/html/footer.php:279
|
4360 |
msgid ""
|
4361 |
-
"You can use Bit.ly links to shorten the URL of your links and to track the "
|
4362 |
-
"
|
4363 |
-
"the Blog2Social settings and link it to your Bit.ly account. Your social "
|
4364 |
-
"media posts will then be shared with your Bit.ly links and you can monitor "
|
4365 |
-
"the success of your posts in your Bit.ly account. Please note: Reddit, "
|
4366 |
-
"Pinterest and Medium do not allow Bit.ly shortlinks. Blog2Social will apply "
|
4367 |
-
"the regular URL for these networks."
|
4368 |
msgstr ""
|
4369 |
-
"Du kannst Bit.ly-Links verwenden, um die URL Deiner Links zu verkürzen und "
|
4370 |
-
"
|
4371 |
-
"Aktiviere Bit.ly in den Blog2Social-Einstellungen und verbinde Blog2Social "
|
4372 |
-
"mit Deinem Bit.ly-Konto. Deine Social Media Beiträge werden dann mit Deinen "
|
4373 |
-
"Bit.ly Links geteilt und Du kannst den Erfolg Deiner Beiträge in Deinem Bit."
|
4374 |
-
"ly Konto verfolgen. Bitte beachte: Reddit, Pinterest und Medium erlauben "
|
4375 |
-
"keine Bit.ly Kurzlinks. Blog2Social verwendet für diese Netzwerke dann die "
|
4376 |
-
"normale URL. "
|
4377 |
|
4378 |
#: views/b2s/html/footer.php:290
|
4379 |
msgid "Define Twitter post content"
|
4380 |
msgstr "Twitter Beitragsinhalt definieren"
|
4381 |
|
4382 |
#: views/b2s/html/footer.php:293
|
4383 |
-
msgid ""
|
4384 |
-
"
|
4385 |
-
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
4386 |
-
"post\", hashtags are automatically added in the drop-down menu."
|
4387 |
-
msgstr ""
|
4388 |
-
"Wähle den Inhalt aus, der automatisch in Deinen Twitter-Posts vorgefüllt "
|
4389 |
-
"wird. Wenn Du das Kästchen \"WordPress-Tags als Hashtags in meinen Beitrag "
|
4390 |
-
"aufnehmen\" angekreuzt haben, werden Hashtags automatisch im Dropdown-Menü "
|
4391 |
-
"hinzugefügt."
|
4392 |
|
4393 |
#: views/b2s/html/footer.php:349
|
4394 |
-
msgid ""
|
4395 |
-
"
|
4396 |
-
"feeds and plugins can be shared automatically on your social media channels."
|
4397 |
-
msgstr ""
|
4398 |
-
"Teile importierte Beiträge mit dem Auto-Poster: Beiträge, die Du über RSS-"
|
4399 |
-
"Feeds und Plugins importierst, können automatisch auf Deinen Social Media-"
|
4400 |
-
"Kanälen geteilt werden."
|
4401 |
|
4402 |
#: views/b2s/html/footer.php:350
|
4403 |
#, php-format
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4404 |
msgid ""
|
4405 |
-
"
|
4406 |
-
"imported posts</a>"
|
4407 |
msgstr ""
|
4408 |
-
"
|
4409 |
-
"
|
4410 |
|
4411 |
-
#: views/b2s/html/footer.php:
|
|
|
|
|
|
|
|
|
|
|
4412 |
msgid "Social Meta Tags Settings"
|
4413 |
msgstr "Social Meta Tags Einstellungen"
|
4414 |
|
4415 |
-
#: views/b2s/html/footer.php:
|
4416 |
msgid "Change image, title and description for your post on this network"
|
4417 |
-
msgstr ""
|
4418 |
-
"Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
|
4419 |
-
"Netzwerk"
|
4420 |
|
4421 |
-
#: views/b2s/html/footer.php:
|
4422 |
-
msgid ""
|
4423 |
-
"Facebook has changed its policy for posting link posts via plugins or web "
|
4424 |
-
"applications. Facebook does no longer display the featured or selected image "
|
4425 |
-
"for your blog post, but only images defined in the Open Graph (OG) Meta Tags "
|
4426 |
-
"of your blog post. If you have not defined any OG Meta Tags, Facebook "
|
4427 |
-
"displays a random image from your blog post or blog site. If you have "
|
4428 |
-
"defined an image in your blog post OG Meta Tags that does not meet the image "
|
4429 |
-
"size requirements, Facebook also does not displayed your selected image, but "
|
4430 |
-
"a random image. Please make sure that your image meets the image size "
|
4431 |
-
"requirements for Facebook."
|
4432 |
-
msgstr ""
|
4433 |
-
"Facebook hat seine Richtlinien für die Veröffentlichung von Link-Beiträgen "
|
4434 |
-
"über Plugins oder Webanwendungen geändert. Facebook zeigt nicht mehr das "
|
4435 |
-
"Beitragsbild oder ausgewählte Bild für Deinen Blogbeitrag an, sondern nur "
|
4436 |
-
"noch das Bild, das in den Open Graph (OG) Meta Tags Deines Blogbeitrags "
|
4437 |
-
"definiert ist. Wenn Du keine OG Meta Tags definiert hast, zeigt Facebook ein "
|
4438 |
-
"zufälliges Bild aus Deinem Blogbeitrag oder Deiner Blog-Seite an. Wenn Du in "
|
4439 |
-
"den OG Meta Tags Deines Blogbeitrag ein Bild definiert hast, das nicht den "
|
4440 |
-
"Anforderungen an die Bildgröße entspricht, zeigt Facebook gar kein Bild oder "
|
4441 |
-
"ein zufällig gewähltes Bild bei Link-Beiträgen an. Bitte stelle sicher, dass "
|
4442 |
-
"Dein Bild die Anforderungen an die Bildgröße für Facebook erfüllt."
|
4443 |
-
|
4444 |
-
#: views/b2s/html/footer.php:400
|
4445 |
msgid ""
|
4446 |
-
"
|
4447 |
-
"
|
4448 |
-
"
|
4449 |
-
"selected image will be displayed with your link post. If you don't want "
|
4450 |
-
"Blog2Social to do that, because you have defined your own OG meta tags, "
|
4451 |
-
"please uncheck this box. Please note that you cannot select a specific image "
|
4452 |
-
"for your link post without OG meta tags."
|
4453 |
msgstr ""
|
4454 |
-
"
|
4455 |
-
"
|
4456 |
-
"
|
4457 |
-
|
4458 |
-
|
4459 |
-
" weil Du Deine eigenen Open Graph Meta Tags definiert hast, deaktiviere "
|
4460 |
-
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
4461 |
-
"Deinen Linkbeitrag bei Facebook auswählen kannst.\t\t"
|
4462 |
-
|
4463 |
-
#: views/b2s/html/footer.php:403
|
4464 |
msgid ""
|
4465 |
-
"
|
4466 |
-
"
|
4467 |
-
"for your blog post, but only images defined in the Twitter Card Meta Tags of "
|
4468 |
-
"your blog post. If you have not defined any Twitter Card Meta Tags, Twitter "
|
4469 |
-
"displays a random image from your blog post or blog site. If you have "
|
4470 |
-
"defined an image in your blog post Twitter Card Meta Tags that does not meet "
|
4471 |
-
"the image size requirements, Twitter displays a white space for the image of "
|
4472 |
-
"your link post. Please make sure that your image meets the image size "
|
4473 |
-
"requirements for Twitter."
|
4474 |
msgstr ""
|
4475 |
-
"
|
4476 |
-
"
|
4477 |
-
"
|
4478 |
-
|
4479 |
-
|
4480 |
-
"Twitter ein zufälliges Bild aus Deinem Blogbeitrag oder Deiner Blog-Seite an."
|
4481 |
-
" Wenn Du in den Twitter Card Meta Tags Deines Blogbeitrag ein Bild definiert "
|
4482 |
-
"hast, das nicht den Anforderungen an die Bildgröße entspricht, zeigt Twitter "
|
4483 |
-
"einen weißen Bereich anstelle Deines Bildes bei Link-Beiträgen an. Bitte "
|
4484 |
-
"stelle sicher, dass Dein Bild die Anforderungen an die Bildgröße für Twitter "
|
4485 |
-
"erfüllt."
|
4486 |
-
|
4487 |
-
#: views/b2s/html/footer.php:405
|
4488 |
msgid ""
|
4489 |
-
"
|
4490 |
-
"
|
4491 |
-
"
|
4492 |
-
"your selected image will be displayed with your link post. If you don't want "
|
4493 |
-
"Blog2Social to do that, because you have defined your own Twitter Card meta "
|
4494 |
-
"tags, please uncheck this box. Please note that you cannot select a specific "
|
4495 |
-
"image for your link post without Twitter Card meta tags."
|
4496 |
msgstr ""
|
4497 |
-
"
|
4498 |
-
"
|
4499 |
-
"
|
4500 |
-
|
4501 |
-
|
4502 |
-
" weil Du Deine eigenen Twitter Card Meta-Tags definiert hast, deaktiviere "
|
4503 |
-
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
4504 |
-
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
4505 |
-
|
4506 |
-
#: views/b2s/html/footer.php:408
|
4507 |
msgid ""
|
4508 |
-
"
|
4509 |
-
"
|
4510 |
msgstr ""
|
4511 |
-
"
|
4512 |
-
"
|
4513 |
-
"
|
|
|
|
|
|
|
|
|
4514 |
|
4515 |
-
#: views/b2s/html/footer.php:
|
4516 |
msgid "image"
|
4517 |
msgstr "Bild"
|
4518 |
|
4519 |
-
#: views/b2s/html/footer.php:
|
4520 |
msgid "title"
|
4521 |
msgstr "Titel"
|
4522 |
|
4523 |
-
#: views/b2s/html/footer.php:
|
4524 |
msgid "description"
|
4525 |
msgstr "Beschreibung"
|
4526 |
|
4527 |
-
#: views/b2s/html/footer.php:
|
4528 |
-
msgid ""
|
4529 |
-
"Blog2Social
|
4530 |
-
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
4531 |
-
msgstr ""
|
4532 |
-
"Blog2Social schreibt diese Informationen automatisch in die Facebook Open "
|
4533 |
-
"Graph (OG) Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
4534 |
|
4535 |
-
#: views/b2s/html/footer.php:
|
4536 |
msgid ""
|
4537 |
-
"Please note: If this post has already been shared or scheduled previously, "
|
4538 |
-
"
|
4539 |
-
"scheduled posts, as Facebook always refers to the current Open Graph meta "
|
4540 |
-
"tags information and automatically updated all existing posts."
|
4541 |
msgstr ""
|
4542 |
-
"Bitte beachte: Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde,"
|
4543 |
-
"
|
4544 |
-
"geteilten oder geplanten Beiträgen aus, da Facebook sich immer die "
|
4545 |
-
"aktuellsten Informationen aus den Open Graph Meta Tags zieht und alle "
|
4546 |
-
"bereits existierenden Beiträge automatisch updatet. "
|
4547 |
|
4548 |
-
#: views/b2s/html/footer.php:
|
4549 |
#, php-format
|
4550 |
-
msgid ""
|
4551 |
-
"
|
4552 |
-
"Facebook, if you have manually unchecked the Meta Tag options for Facebook "
|
4553 |
-
"in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4554 |
-
msgstr ""
|
4555 |
-
"Bitte beachte: Deine Änderungen haben keine Auswirkungen auf Deine Social "
|
4556 |
-
"Media Beiträge auf Facebook, wenn Du die Meta Tag Optionen für Facebook in "
|
4557 |
-
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
4558 |
-
"manuell deaktiviert hast."
|
4559 |
|
4560 |
-
#: views/b2s/html/footer.php:
|
4561 |
-
msgid ""
|
4562 |
-
"
|
4563 |
-
"editing the following fields for"
|
4564 |
-
msgstr ""
|
4565 |
-
"Du kannst das Bild, den Titel und die Beschreibung Deines Beitrags auf "
|
4566 |
-
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
4567 |
-
"bearbeitest"
|
4568 |
|
4569 |
-
#: views/b2s/html/footer.php:
|
4570 |
-
msgid ""
|
4571 |
-
"Blog2Social
|
4572 |
-
"Meta Tags for Image, Title and Description of your blog post."
|
4573 |
-
msgstr ""
|
4574 |
-
"Blog2Social schreibt diese Informationen automatisch in die Twitter Card "
|
4575 |
-
"Meta Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
4576 |
|
4577 |
-
#: views/b2s/html/footer.php:
|
4578 |
msgid ""
|
4579 |
-
"Please note: If this post was previously shared or scheduled, your current "
|
4580 |
-
"
|
4581 |
-
"as Twitter will always pull the most up-to-date information from the Twitter "
|
4582 |
-
"Card tags. If this post has already been shared, it may take up to 7 days "
|
4583 |
-
"for Twitter to update your current changes."
|
4584 |
msgstr ""
|
4585 |
-
"Bitte beachte: Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde,"
|
4586 |
-
"
|
4587 |
-
|
4588 |
-
|
4589 |
-
"Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter "
|
4590 |
-
"Deine aktuellen Änderungen aktualisiert."
|
4591 |
-
|
4592 |
-
#: views/b2s/html/footer.php:435
|
4593 |
#, php-format
|
4594 |
-
msgid ""
|
4595 |
-
"
|
4596 |
-
"Twitter, if you have manually unchecked the Meta Tag options for Twitter in "
|
4597 |
-
"your <a target=\"_blank\" href=\"%s\">settings</a>"
|
4598 |
-
msgstr ""
|
4599 |
-
"Bitte beachte: Deine Änderungen haben keine Auswirkungen auf Deine Social "
|
4600 |
-
"Media Beiträge auf Twitter, wenn Du die Meta Tag Optionen für Twitter in "
|
4601 |
-
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
4602 |
-
"manuell deaktiviert hast."
|
4603 |
|
4604 |
-
#: views/b2s/html/footer.php:
|
4605 |
msgid "You want to change the image, title and description for your post?"
|
4606 |
-
msgstr ""
|
4607 |
-
"Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
|
4608 |
|
4609 |
-
#: views/b2s/html/footer.php:
|
4610 |
msgid ""
|
4611 |
-
"You are currently sharing this post as image post. Changes to title and "
|
4612 |
-
"description Meta Tag parameters will only be supported for link post formats."
|
4613 |
-
" Please change your post format to link post to make individual changes to "
|
4614 |
-
"the title and description for your post preview."
|
4615 |
msgstr ""
|
4616 |
-
"Du teilst diesen Beitrag derzeit als Bild-Beitrag. Änderungen an den Meta "
|
4617 |
-
"
|
4618 |
-
"unterstützt. Bitte ändere Dein Beitragsformat auf Link-Beitrag, um "
|
4619 |
-
"individuelle Änderungen am Titel und an der Beschreibung für Deine "
|
4620 |
-
"Beitragsvorschau vorzunehmen."
|
4621 |
|
4622 |
-
#: views/b2s/html/footer.php:
|
4623 |
#, php-format
|
4624 |
-
msgid ""
|
4625 |
-
"
|
4626 |
-
"you have manually unchecked the Meta Tag options for Facebook in your "
|
4627 |
-
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4628 |
-
msgstr ""
|
4629 |
-
"Deine Änderungen haben keine Auswirkungen auf Deine Social Media Beiträge "
|
4630 |
-
"auf Facebook, wenn Du die Meta Tag Optionen für Facebook in Deinen "
|
4631 |
-
"Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell "
|
4632 |
-
"deaktiviert hast."
|
4633 |
|
4634 |
-
#: views/b2s/html/footer.php:
|
4635 |
#, php-format
|
4636 |
-
msgid ""
|
4637 |
-
"
|
4638 |
-
"you have manually unchecked the Meta Tag options for Twitter in your "
|
4639 |
-
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4640 |
-
msgstr ""
|
4641 |
-
"Deine Änderungen haben keine Auswirkungen auf Deine Social Media Beiträge "
|
4642 |
-
"auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
|
4643 |
-
"<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
4644 |
|
4645 |
-
#: views/b2s/html/header.php:
|
4646 |
-
msgid ""
|
4647 |
-
"
|
4648 |
-
"Our support assists you as of PHP version 5.5.3. See also:"
|
4649 |
-
msgstr ""
|
4650 |
-
"Um alle Funktionen von Blog2Social nutzen zu können, ist PHP Version 5.5.3 "
|
4651 |
-
"oder höher erforderlich. Unser Support unterstützt Dich ab PHP Version 5.5.3."
|
4652 |
-
" Siehe auch:"
|
4653 |
|
4654 |
-
#: views/b2s/html/header.php:
|
4655 |
msgid "Blog2Social Troubleshooting-Tool"
|
4656 |
msgstr "Blog2Social Problemanalyse-Tool"
|
4657 |
|
4658 |
-
#: views/b2s/html/header.php:
|
4659 |
-
msgid ""
|
4660 |
-
"WordPress
|
4661 |
-
"heartbeats for using Blog2Social! See also:"
|
4662 |
-
msgstr ""
|
4663 |
-
"WordPress verwendet standardmäßig Heartbeats, ebenso wie Blog2Social. Bitte "
|
4664 |
-
"aktiviere Heartbeats für die Nutzung von Blog2Social! Siehe auch:"
|
4665 |
|
4666 |
-
#: views/b2s/html/header.php:
|
4667 |
msgid "The link you followed has expired. Please refresh your page."
|
4668 |
-
msgstr ""
|
4669 |
-
"Der Link, dem Du gefolgt bist, ist abgelaufen. Bitte aktualisiere Deine "
|
4670 |
-
"Seite."
|
4671 |
|
4672 |
-
#: views/b2s/html/header.php:
|
4673 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
4674 |
msgstr "Vielen Dank. Du erhältst nun die Blog-Updates von Blog2Social."
|
4675 |
|
4676 |
-
#: views/b2s/html/header.php:
|
4677 |
msgid "Autoposter limit has been reached"
|
4678 |
msgstr "Das Autoposter-Limit wurde erreicht."
|
4679 |
|
4680 |
-
#: views/b2s/html/header.php:
|
4681 |
msgid "Your daily limit for posting automatically has been reached."
|
4682 |
msgstr "Dein tägliches Limit für Autoposter-Beiträge ist erreicht."
|
4683 |
|
4684 |
#: views/b2s/html/header.php:79
|
4685 |
-
msgid "The Autoposter limit for Google My Business has been reached."
|
4686 |
-
msgstr "Das Autoposter-Limit für Google My Business ist erreicht."
|
4687 |
-
|
4688 |
-
#: views/b2s/html/header.php:79
|
4689 |
-
msgid ""
|
4690 |
-
"Your daily limit of 10 posts per day for auto-posting on Google My Business "
|
4691 |
-
"has been reached."
|
4692 |
-
msgstr ""
|
4693 |
-
"Dein tägliches Limit in Höhe von 10 Beiträgen für automatische Posts in "
|
4694 |
-
"Google My Business wurde erreicht."
|
4695 |
-
|
4696 |
-
#: views/b2s/html/header.php:86
|
4697 |
msgid "You have deleted all meta data for posts and pages successfully."
|
4698 |
msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
|
4699 |
|
4700 |
-
#: views/b2s/html/header.php:
|
4701 |
msgid "The page and post meta data could not be removed."
|
4702 |
msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
4703 |
|
4704 |
-
#: views/b2s/html/header.php:
|
4705 |
-
msgid ""
|
4706 |
-
"
|
4707 |
-
"tags from Yoast SEO."
|
4708 |
-
msgstr ""
|
4709 |
-
"Du hast Yoast SEO aktiv. Die Blog2Social Social-Meta-Tags-Funktion "
|
4710 |
-
"überschreibt die Meta-Tags von Yoast SEO."
|
4711 |
|
4712 |
-
#: views/b2s/html/header.php:
|
4713 |
-
msgid ""
|
4714 |
-
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
4715 |
-
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
4716 |
-
"please deactivate All in One Seo Social Meta settings. If they are already "
|
4717 |
-
"deactivated, you can ignore this message."
|
4718 |
msgstr ""
|
4719 |
-
"Du hast derzeit sowohl Blog2Social Social Meta Tags als auch All in One SEO "
|
4720 |
-
"
|
4721 |
-
"sind, deaktiviere bitte die Social Meta Tags in All in One SEO. Wenn sie "
|
4722 |
-
"bereits deaktiviert sind, kannst Du diese Meldung ignorieren."
|
4723 |
|
4724 |
-
#: views/b2s/html/header.php:
|
4725 |
msgid ""
|
4726 |
-
"Blog2Social has detected another plugin that is setting Social Meta tags for "
|
4727 |
-
"your
|
4728 |
-
"your social media posts shared with Blog2Social, please deactivate the "
|
4729 |
-
"Facebook Open Graph and Twitter Card Tags settings in your other plugins."
|
4730 |
msgstr ""
|
4731 |
-
"Blog2Social hat ein weiteres Plugin entdeckt, das Social Meta Tags für Deine "
|
4732 |
-
"
|
4733 |
-
"Deine Social Media-Posts, die mit Blog2Social geteilt werden, korrekt "
|
4734 |
-
"eingestellt sind, deaktiviere bitte die Einstellungen für Facebook Open "
|
4735 |
-
"Graph und Twitter Card Tags in Deinen anderen Plugins."
|
4736 |
|
4737 |
-
#: views/b2s/html/header.php:
|
4738 |
msgid "This entry could not be removed. It's not yours!"
|
4739 |
msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
|
4740 |
|
4741 |
-
#: views/b2s/html/header.php:
|
4742 |
msgid "This entry was removed successfully."
|
4743 |
msgstr "Dieser Eintrag wurde erfolgreich entfernt."
|
4744 |
|
4745 |
-
#: views/b2s/html/header.php:
|
4746 |
msgid "This post was edited successfully."
|
4747 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
4748 |
|
4749 |
-
#: views/b2s/html/header.php:
|
4750 |
msgid "Post was scheduled successfully on your blog!"
|
4751 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
|
4752 |
|
4753 |
-
#: views/b2s/html/header.php:
|
4754 |
msgid "Post is published successfully on your blog!"
|
4755 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog veröffentlicht!"
|
4756 |
|
4757 |
-
#: views/b2s/html/header.php:
|
4758 |
msgid "Saved as draft"
|
4759 |
msgstr "Als Entwurf gespeichert"
|
4760 |
|
4761 |
-
#: views/b2s/html/header.php:
|
4762 |
msgid "Could not save draft"
|
4763 |
msgstr "Der Entwurf konnte nicht gespeichert werden"
|
4764 |
|
4765 |
-
#: views/b2s/html/header.php:
|
4766 |
msgid "Your authorization was successful."
|
4767 |
msgstr "Deine Autorisierung war erfolgreich."
|
4768 |
|
4769 |
-
#: views/b2s/html/header.php:
|
4770 |
msgid "Your profile was saved successful."
|
4771 |
msgstr "Dein Profil wurde erfolgreich gespeichert. "
|
4772 |
|
4773 |
-
#: views/b2s/html/header.php:
|
4774 |
msgid "Your profile could not be saved."
|
4775 |
msgstr "Dein Profil konnte nicht gespeichert werden."
|
4776 |
|
4777 |
-
#: views/b2s/html/header.php:
|
4778 |
msgid "Your authorization could not be removed."
|
4779 |
msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
4780 |
|
4781 |
-
#: views/b2s/html/header.php:
|
4782 |
msgid "Your authorization has been removed successfully."
|
4783 |
msgstr "Deine Autorisierung wurde erfolgreich entfernt."
|
4784 |
|
4785 |
-
#: views/b2s/html/header.php:
|
4786 |
msgid "Thank you! Your feedback has been received."
|
4787 |
msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
|
4788 |
|
4789 |
-
#: views/b2s/html/header.php:
|
4790 |
msgid "Your feedback could not be delivered."
|
4791 |
msgstr "Dein Feedback konnte nicht gesendet werden."
|
4792 |
|
4793 |
-
#: views/b2s/html/header.php:
|
4794 |
msgid "Your settings were successfully saved."
|
4795 |
msgstr "Deine Einstellungen wurden erfolgreich gespeichert. "
|
4796 |
|
4797 |
-
#: views/b2s/html/header.php:
|
4798 |
msgid "Your settings could not be saved."
|
4799 |
msgstr "Deine Einstellungen konnten nicht gespeichert werden."
|
4800 |
|
4801 |
-
#: views/b2s/html/header.php:
|
4802 |
-
msgid ""
|
4803 |
-
"
|
4804 |
-
|
4805 |
-
|
4806 |
-
"
|
4807 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4808 |
|
4809 |
-
#: views/b2s/html/header.php:
|
4810 |
msgid "RATE IT!"
|
4811 |
msgstr "BEWERTE ES!"
|
4812 |
|
4813 |
-
#: views/b2s/html/header.php:
|
4814 |
#, php-format
|
4815 |
-
msgid ""
|
4816 |
-
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
4817 |
-
"awesome! Could you please do us a favor and give it a 5-star rating on "
|
4818 |
-
"WordPress? Just to help us spread the word and boost our motivation."
|
4819 |
msgstr ""
|
4820 |
-
"Hallo, wir haben bemerkt, dass Du gerade Deinen %s. Blogbeitrag mit "
|
4821 |
-
"Blog2Social
|
4822 |
-
"Gefallen tun und uns eine 5-Sterne-Bewertung auf WordPress geben? Damit "
|
4823 |
-
"hilfst Du uns bekannter zu werden und motivierst uns Blog2Social stetig zu "
|
4824 |
-
"verbessen."
|
4825 |
|
4826 |
-
#: views/b2s/html/header.php:
|
4827 |
msgid "Ok, you deserve it"
|
4828 |
msgstr "Okay, ihr habt euch das verdient"
|
4829 |
|
4830 |
-
#: views/b2s/html/header.php:
|
4831 |
msgid "Nope, maybe later"
|
4832 |
msgstr "Nein, vielleicht später"
|
4833 |
|
4834 |
-
#: views/b2s/html/header.php:
|
4835 |
msgid "I already did it"
|
4836 |
msgstr "Habe ich schon erledigt"
|
4837 |
|
4838 |
-
#: views/b2s/html/header.php:
|
4839 |
msgid "Start your free 30-day-Premium-trial"
|
4840 |
msgstr "Teste Blog2Social Premium"
|
4841 |
|
4842 |
-
#: views/b2s/html/header.php:
|
4843 |
msgid ""
|
4844 |
-
"Check out Blog2Social Premium with more awesome features for scheduling and "
|
4845 |
-
"
|
4846 |
-
"
|
4847 |
-
"automatic subscription. Basic features of the Free Version are free forever."
|
4848 |
-
msgstr ""
|
4849 |
-
"Teste Blog2Social Premium mit weiteren tollen Funktionen (z.B. Auto-Posting, "
|
4850 |
-
"Beste-Zeiten-Planer, Social Media Kalender) zum automatisierten Planen und "
|
4851 |
-
"Teilen 30 Tage lang kostenlos und unverbindlich (kein automatisches "
|
4852 |
-
"Abonnement)"
|
4853 |
|
4854 |
-
#: views/b2s/html/header.php:
|
4855 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
4856 |
msgstr "Ja, ich möchte Blog2Social Premium 30 Tage kostenlos testen"
|
4857 |
|
4858 |
-
#: views/b2s/html/header.php:
|
4859 |
msgid "Your free Blog2Social Premium trial version is activated for "
|
4860 |
msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
|
4861 |
|
4862 |
-
#: views/b2s/html/header.php:
|
4863 |
msgid " Days"
|
4864 |
msgstr "Tage"
|
4865 |
|
4866 |
-
#: views/b2s/html/header.php:
|
4867 |
msgid " today"
|
4868 |
msgstr "heute"
|
4869 |
|
4870 |
-
#: views/b2s/html/header.php:
|
4871 |
msgid ""
|
4872 |
-
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
4873 |
-
"
|
4874 |
-
"Manager. Select images and post formats (link post or image post) for each "
|
4875 |
-
"social community. Upload and select any image for sharing. Save multiple "
|
4876 |
-
"combinations of networks for different sharing purposes. Start from only $5."
|
4877 |
-
"75 per month to benefit from PREMIUM features."
|
4878 |
msgstr ""
|
4879 |
-
"Blog2Social PREMIUM kann so viel für Dich tun: Veröffentliche Deine "
|
4880 |
-
"
|
4881 |
-
|
4882 |
-
|
4883 |
-
"Bild hoch teile es. Speicher mehrere Netzwerk-Gruppierungen für verschiedene "
|
4884 |
-
"Zwecke. Schon ab 5,75 € pro Monat kannst du mit den PREMIUM-Funktionen "
|
4885 |
-
"durchstarten."
|
4886 |
-
|
4887 |
-
#: views/b2s/html/header.php:279
|
4888 |
msgid "Upgrade to PREMIUM"
|
4889 |
msgstr "Jetzt auf Premium upgraden"
|
4890 |
|
4891 |
-
#: views/b2s/html/header.php:
|
4892 |
msgid "I need some more time to decide"
|
4893 |
msgstr "Ich brauche etwas mehr Zeit, um mich zu entscheiden"
|
4894 |
|
4895 |
-
#: views/b2s/html/header.php:
|
4896 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
4897 |
msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
|
4898 |
|
4899 |
-
#: views/b2s/html/header.php:
|
4900 |
msgid "We hope you liked Blog2Social Premium."
|
4901 |
msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
|
4902 |
|
4903 |
-
#: views/b2s/html/header.php:
|
4904 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
4905 |
msgstr "Ja, ich möchte gerne auf Blog2Social Premium upgraden"
|
4906 |
|
4907 |
-
#: views/b2s/html/header.php:
|
4908 |
msgid "Did you miss something? Tell us!"
|
4909 |
msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
|
4910 |
|
4911 |
-
#: views/b2s/html/header.php:
|
4912 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
4913 |
msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
|
4914 |
|
4915 |
-
#: views/b2s/html/header.php:
|
4916 |
-
msgid ""
|
4917 |
-
"
|
4918 |
-
"the free trial."
|
4919 |
-
msgstr ""
|
4920 |
-
"Die kostenlose Testversion kann nicht gestartet werden. Dieser Blog wurde "
|
4921 |
-
"bereits für die kostenlose Testversion registriert."
|
4922 |
|
4923 |
-
#: views/b2s/html/header.php:
|
4924 |
msgid "Social Media Auto-Posting"
|
4925 |
msgstr "Social Media Auto-Posting"
|
4926 |
|
4927 |
-
#: views/b2s/html/header.php:
|
4928 |
msgid "Share on multiple accounts per network"
|
4929 |
msgstr "Teile auf mehreren Netzwerk-Konten "
|
4930 |
|
4931 |
-
#: views/b2s/html/header.php:
|
4932 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
4933 |
msgstr "Beste Zeitenplaner: Plane einmal, mehrmals oder wiederkehrend."
|
4934 |
|
4935 |
-
#: views/b2s/html/header.php:
|
4936 |
msgid "Reporting with links to all published social media posts"
|
4937 |
msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
|
4938 |
|
4939 |
-
#: views/b2s/html/header.php:
|
4940 |
-
#: views/prg/html/form.php:100 views/prg/html/form.php:168
|
4941 |
-
#: views/prg/html/form.php:177
|
4942 |
msgid "First Name"
|
4943 |
msgstr "Vorname"
|
4944 |
|
4945 |
-
#: views/b2s/html/header.php:
|
4946 |
-
#: views/prg/html/form.php:103 views/prg/html/form.php:169
|
4947 |
-
#: views/prg/html/form.php:180
|
4948 |
msgid "Last Name"
|
4949 |
msgstr "Nachname"
|
4950 |
|
4951 |
-
#: views/b2s/html/header.php:
|
4952 |
#, php-format
|
4953 |
-
msgid ""
|
4954 |
-
"
|
4955 |
-
"href=\"%s\">Conditions of Use</a>"
|
4956 |
-
msgstr ""
|
4957 |
-
"Mit der Erstellung eines Kontos erklärst Du Dich einverstanden mit den "
|
4958 |
-
"Blog2Social <a target=\"_blank\" href=\"%s\">Nutzungsbedingungen</a>"
|
4959 |
|
4960 |
-
#: views/b2s/html/header.php:
|
4961 |
#, php-format
|
4962 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
4963 |
msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
|
4964 |
|
4965 |
-
#: views/b2s/html/header.php:
|
4966 |
msgid "No credit card required"
|
4967 |
msgstr "Keine Kreditkarte erforderlich"
|
4968 |
|
4969 |
-
#: views/b2s/html/header.php:
|
4970 |
msgid "Get Started"
|
4971 |
msgstr "Jetzt loslegen"
|
4972 |
|
4973 |
-
#: views/b2s/html/header.php:
|
4974 |
msgid "The license has been successfully activated."
|
4975 |
msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
|
4976 |
|
4977 |
-
#: views/b2s/html/header.php:
|
4978 |
msgid "Your entered License Key is invalid. Please contact support!"
|
4979 |
-
msgstr ""
|
4980 |
-
"Der eingegebene Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren "
|
4981 |
-
"Kundenservice."
|
4982 |
|
4983 |
-
#: views/b2s/html/header.php:
|
4984 |
msgid "Your license key has reached the maximum number of users."
|
4985 |
msgstr "Dein Lizenzschlüssel hat die maximale Anzahl von Benutzern erreicht."
|
4986 |
|
4987 |
-
#: views/b2s/html/header.php:
|
4988 |
msgid "Something went wrong on our side. Please contact support!"
|
4989 |
-
msgstr ""
|
4990 |
-
"Etwas ist auf unserer Seite schiefgelaufen. Bitte wende Dich an unseren "
|
4991 |
-
"Kundenservice."
|
4992 |
|
4993 |
-
#: views/b2s/html/header.php:
|
4994 |
msgid "OK"
|
4995 |
msgstr "OK"
|
4996 |
|
4997 |
-
#: views/b2s/html/header.php:
|
4998 |
msgid "We updated our Privacy Policy"
|
4999 |
msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
5000 |
|
5001 |
-
#: views/b2s/html/header.php:
|
5002 |
msgid "Blog2Social is a service of Adenion GmbH"
|
5003 |
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
5004 |
|
5005 |
-
#: views/b2s/html/header.php:
|
5006 |
msgid "I agree to the Adenion Privacy Policy"
|
5007 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
5008 |
|
@@ -5019,42 +3936,38 @@ msgid "Website & Blog Content"
|
|
5019 |
msgstr "Webseiten & Blog Content"
|
5020 |
|
5021 |
#: views/b2s/html/sidebar.php:69
|
5022 |
-
msgid "Share
|
5023 |
-
msgstr "
|
5024 |
|
5025 |
-
#: views/b2s/html/sidebar.php:
|
5026 |
msgid "Social Media Post"
|
5027 |
msgstr "Social Media Post"
|
5028 |
|
5029 |
-
#: views/b2s/html/sidebar.php:
|
5030 |
msgid "Create Post"
|
5031 |
msgstr "Beitrag erstellen"
|
5032 |
|
5033 |
-
#: views/b2s/html/sidebar.php:
|
5034 |
msgid "Content Library"
|
5035 |
msgstr "Content-Bibliothek"
|
5036 |
|
5037 |
-
#: views/b2s/html/sidebar.php:
|
5038 |
msgid "all Posts"
|
5039 |
msgstr "Alle Beiträge"
|
5040 |
|
5041 |
-
#: views/b2s/html/sidebar.php:
|
5042 |
msgid "Upgrade License"
|
5043 |
msgstr "Lizenz upgraden"
|
5044 |
|
5045 |
-
#: views/b2s/html/sidebar.php:
|
5046 |
msgid "Plans & Prices"
|
5047 |
msgstr "Tarife & Preise"
|
5048 |
|
5049 |
-
#: views/b2s/html/sidebar.php:
|
5050 |
-
msgid ""
|
5051 |
-
"
|
5052 |
-
"anything that does not work for you, please contact us!"
|
5053 |
-
msgstr ""
|
5054 |
-
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
5055 |
-
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
5056 |
|
5057 |
-
#: views/b2s/html/sidebar.php:
|
5058 |
msgid "Blog2Social Blog News"
|
5059 |
msgstr "Blog2Social Blog News"
|
5060 |
|
@@ -5063,13 +3976,8 @@ msgid "Do you want to delete your scheduled posts?"
|
|
5063 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
5064 |
|
5065 |
#: views/b2s/partials/plugin-deactivate-modal.php:13
|
5066 |
-
msgid ""
|
5067 |
-
"
|
5068 |
-
"Your scheduled posts will no longer be sent to your social networks."
|
5069 |
-
msgstr ""
|
5070 |
-
"Möchtest Du, dass Blog2Social die Versandplanung für alle mit Blog2Social "
|
5071 |
-
"geplanten Beiträge löscht? Deine geplanten Beiträge werden anschließend "
|
5072 |
-
"nicht weiter an Deine sozialen Netzwerke versendet."
|
5073 |
|
5074 |
#: views/b2s/partials/plugin-deactivate-modal.php:14
|
5075 |
msgid "Delete scheduled posts"
|
@@ -5175,23 +4083,19 @@ msgstr "Frau"
|
|
5175 |
msgid "Mr."
|
5176 |
msgstr "Herr"
|
5177 |
|
5178 |
-
#: views/prg/html/form.php:107 views/prg/html/form.php:110
|
5179 |
-
#: views/prg/html/form.php:184 views/prg/html/form.php:187
|
5180 |
msgid "Street"
|
5181 |
msgstr "Straße"
|
5182 |
|
5183 |
-
#: views/prg/html/form.php:108 views/prg/html/form.php:113
|
5184 |
-
#: views/prg/html/form.php:185 views/prg/html/form.php:190
|
5185 |
msgid "Number"
|
5186 |
msgstr "Nummer"
|
5187 |
|
5188 |
-
#: views/prg/html/form.php:117 views/prg/html/form.php:120
|
5189 |
-
#: views/prg/html/form.php:194 views/prg/html/form.php:197
|
5190 |
msgid "Zip Code"
|
5191 |
msgstr "Postleitzahl"
|
5192 |
|
5193 |
-
#: views/prg/html/form.php:118 views/prg/html/form.php:123
|
5194 |
-
#: views/prg/html/form.php:195 views/prg/html/form.php:200
|
5195 |
msgid "City"
|
5196 |
msgstr "Stadt"
|
5197 |
|
@@ -5199,13 +4103,11 @@ msgstr "Stadt"
|
|
5199 |
msgid "Country"
|
5200 |
msgstr "Land"
|
5201 |
|
5202 |
-
#: views/prg/html/form.php:135 views/prg/html/form.php:137
|
5203 |
-
#: views/prg/html/form.php:212 views/prg/html/form.php:214
|
5204 |
msgid "Phone"
|
5205 |
msgstr "Telefonnummer"
|
5206 |
|
5207 |
-
#: views/prg/html/form.php:147 views/prg/html/form.php:149
|
5208 |
-
#: views/prg/html/form.php:224 views/prg/html/form.php:226
|
5209 |
msgid "Website"
|
5210 |
msgstr "Website"
|
5211 |
|
@@ -5219,8 +4121,7 @@ msgstr "Du bist von PR-Gateway abgemeldet!"
|
|
5219 |
|
5220 |
#: views/prg/html/header.php:17
|
5221 |
msgid "Your message will now be sent over PR gateway to the press portals!"
|
5222 |
-
msgstr ""
|
5223 |
-
"Deine Mitteilung wird nun über PR-Gateway an die Presseportale gesendet!"
|
5224 |
|
5225 |
#: views/prg/html/header.php:18
|
5226 |
msgid "See all publications for your message live on "
|
@@ -5231,38 +4132,21 @@ msgid "Your message has been saved by PR-Gateway as a draft!"
|
|
5231 |
msgstr "Deine Nachricht wurde von PR-Gateway als Entwurf gespeichert."
|
5232 |
|
5233 |
#: views/prg/html/header.php:28
|
5234 |
-
msgid ""
|
5235 |
-
"
|
5236 |
-
"again!"
|
5237 |
-
msgstr ""
|
5238 |
-
"Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
|
5239 |
-
"versuche es erneut!"
|
5240 |
|
5241 |
#: views/prg/html/header.php:34
|
5242 |
msgid "Your message was not successfully transmitted. Please try again!"
|
5243 |
-
msgstr ""
|
5244 |
-
"Deine Nachricht wurde nicht erfolgreich übertragen. Bitte versuche es erneut!"
|
5245 |
|
5246 |
#: views/prg/html/header.php:53
|
5247 |
msgid ""
|
5248 |
-
"PR-Gateway offers a paid online distribution service for submitting press "
|
5249 |
-
"
|
5250 |
-
"special interest websites and social news sites. If your blog posts provide "
|
5251 |
-
"trade or industry information or expert articles (no advertising), you may "
|
5252 |
-
"submit them to PR-Gateway to turn them into valid online press releases or "
|
5253 |
-
"online articles and select a specific choice of websites and services to "
|
5254 |
-
"publish your post."
|
5255 |
msgstr ""
|
5256 |
-
"PR-Gateway bietet einen kostenpflichtigen Online-Distributionsservice für "
|
5257 |
-
"
|
5258 |
-
"
|
5259 |
-
"Media Presseticker.\n"
|
5260 |
-
"Wenn es sich bei Deinen Beiträgen um Fachartikel handelt oder diese "
|
5261 |
-
"Unternehmensinformationen (keine Werbung) enthalten, kannst Du Deine "
|
5262 |
-
"Beiträge an PR-Gateway senden, um sie als Online-Pressemitteilungen oder "
|
5263 |
-
"Online-Artikel zu veröffentlichen und eine bestimmte Auswahl an "
|
5264 |
-
"Presseportalen und Nachrichtenseiten für die Veröffentlichung Deines "
|
5265 |
-
"Beitrags auswählen."
|
5266 |
|
5267 |
#: views/prg/html/header.php:54
|
5268 |
msgid "Register here to open your PR-Gateway account."
|
@@ -5272,16 +4156,15 @@ msgstr "Registriere Dich hier, um ein PR-Gateway-Konto zu eröffnen."
|
|
5272 |
msgid "Logout"
|
5273 |
msgstr "Ausloggen"
|
5274 |
|
5275 |
-
#: includes/B2S/Support/Check/System.php:
|
5276 |
msgid "or higher"
|
5277 |
msgstr "oder höher"
|
5278 |
|
5279 |
-
#: includes/B2S/Support/Check/System.php:
|
5280 |
-
#: includes/B2S/Support/Check/System.php:83
|
5281 |
msgid "resolve conflict"
|
5282 |
msgstr "Konflikt beheben"
|
5283 |
|
5284 |
-
#: includes/B2S/Support/Check/System.php:
|
5285 |
msgid "Plugin Warnings:"
|
5286 |
msgstr "Plugin Warnungen:"
|
5287 |
|
@@ -5290,12 +4173,8 @@ msgid "Blog2Social: Social Media Auto Post & Scheduler"
|
|
5290 |
msgstr "Blog2Social: Social Media Auto Post & Scheduler"
|
5291 |
|
5292 |
#. Description of the plugin
|
5293 |
-
msgid ""
|
5294 |
-
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
5295 |
-
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
5296 |
-
msgstr ""
|
5297 |
-
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
5298 |
-
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
5299 |
|
5300 |
#. Plugin URI of the plugin
|
5301 |
#. Author URI of the plugin
|
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: 2020-03-09 12:59+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
10 |
"X-Generator: Loco https://localise.biz/\n"
|
11 |
"Language: de_DE\n"
|
12 |
+
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release)\n"
|
|
|
13 |
"Report-Msgid-Bugs-To: \n"
|
14 |
+
"POT-Creation-Date: 2020-03-09 12:59+0000\n"
|
15 |
+
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
16 |
+
"Language-Team: German\n"
|
17 |
+
"X-Loco-Version: 2.2.2; wp-5.4-RC1-47424"
|
18 |
|
19 |
#: includes/Loader.php:45
|
20 |
msgid "Modify pin board"
|
32 |
msgid "Modify forum"
|
33 |
msgstr "Modify forum"
|
34 |
|
35 |
+
#: includes/Loader.php:78
|
36 |
msgid "Bitly"
|
37 |
msgstr "Bitly"
|
38 |
|
39 |
+
#: includes/Loader.php:78
|
40 |
msgid "Rebrandly"
|
41 |
msgstr "Rebrandly"
|
42 |
|
43 |
+
#: includes/Loader.php:78
|
44 |
+
msgid "Sniply"
|
45 |
+
msgstr "Sniply"
|
46 |
+
|
47 |
+
#: includes/Loader.php:389
|
48 |
msgid "Blog2Social: Autoposter"
|
49 |
msgstr "Blog2Social: Auto-Poster"
|
50 |
|
51 |
+
#: includes/Loader.php:390
|
52 |
msgid "Blog2Social: Social Media Content Calendar"
|
53 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
54 |
|
55 |
+
#: includes/Loader.php:740
|
56 |
msgid "This post will be shared into your social media from"
|
57 |
+
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
|
|
58 |
|
59 |
+
#: includes/Loader.php:740 includes/Loader.php:742
|
60 |
msgid "show details"
|
61 |
msgstr "siehe Details"
|
62 |
|
63 |
+
#: includes/Loader.php:742
|
64 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
65 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
66 |
|
67 |
+
#: includes/Loader.php:746
|
68 |
msgid ""
|
69 |
+
"Please make sure that your post, page or custom post type is published or scheduled to be published on this blog before you try to post it with Blog2Social. Published WP posts will be shared with your chosen permalink, scheduled WP posts will be shared with the posting id "
|
70 |
+
"link."
|
|
|
|
|
71 |
msgstr ""
|
72 |
+
"Bitte achte darauf, dass Dein Beitrag, Deine Seite oder Dein Custom Post Type auf diesem Blog veröffentlicht oder zur Veröffentlichung vorgeplant ist, bevor Du versucht den Beitrag mit Blog2Social zu teilen. Veröffentlichte WP-Posts werden mit dem von Dir gewählten Permalink "
|
73 |
+
"geteilt, geplante WP-Posts werden mit dem Posting-ID-Link geteilt."
|
74 |
+
|
75 |
+
#: includes/Loader.php:749 includes/B2S/PostBox.php:134 includes/B2S/AutoPost/Item.php:51
|
76 |
+
msgid "There are no social network accounts assigned to your selected network collection. Please assign at least one social network account or select another network collection."
|
77 |
+
msgstr "In der ausgewählten Netzwerkgruppierung sind keine Social Media Accounts verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle eine andere Netzwerkgruppierung aus. "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
78 |
|
79 |
+
#: includes/Loader.php:762 views/b2s/html/sidebar.php:45 views/b2s/html/sidebar.ship.php:44
|
|
|
80 |
msgid "Upgrade to Premium"
|
81 |
msgstr "Premium freischalten"
|
82 |
|
83 |
+
#: includes/Loader.php:765 includes/Loader.php:899 includes/Loader.php:899 includes/Loader.php:973 includes/B2S/RePost/Item.php:25 views/b2s/html/sidebar.php:137
|
84 |
+
msgid "Settings"
|
85 |
+
msgstr "Einstellungen"
|
86 |
+
|
87 |
+
#: includes/Loader.php:765
|
88 |
+
msgid "Support"
|
89 |
+
msgstr "Support"
|
90 |
+
|
91 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:19
|
92 |
msgid "Notifications"
|
93 |
msgstr "Benachrichtigungen"
|
94 |
|
95 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:17 views/b2s/html/sidebar.php:125
|
|
|
96 |
msgid "Shared Posts"
|
97 |
msgstr "geteilte Beiträge"
|
98 |
|
99 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:14 views/b2s/html/sidebar.php:119
|
|
|
100 |
msgid "Instant Sharing"
|
101 |
msgstr "Instant Sharing"
|
102 |
|
103 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:10 views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:94 views/b2s/html/sidebar.php:116
|
|
|
|
|
104 |
msgid "Drafts"
|
105 |
msgstr "Entwürfe"
|
106 |
|
107 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
|
|
108 |
msgid "Scheduled Posts"
|
109 |
msgstr "geplante Beiträge"
|
110 |
|
111 |
+
#: includes/Loader.php:815
|
112 |
msgid "Social Media Post Drafts"
|
113 |
msgstr "Social Media Posts Entwürfe"
|
114 |
|
115 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:9 views/b2s/html/sidebar.php:113
|
|
|
116 |
msgid "Favorites"
|
117 |
msgstr "Favoriten"
|
118 |
|
119 |
+
#: includes/Loader.php:815 views/b2s/settings.php:35 views/b2s/html/sidebar.php:75
|
120 |
+
msgid "Auto-Post"
|
121 |
+
msgstr "Beiträge automatisch teilen"
|
122 |
+
|
123 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:18 views/b2s/html/sidebar.php:72
|
124 |
+
msgid "Re-Share Posts"
|
125 |
+
msgstr "Beiträge wiederholt teilen"
|
126 |
+
|
127 |
+
#: includes/Loader.php:815 views/b2s/curation.php:47 views/b2s/support.php:19 views/b2s/support.php:22
|
128 |
+
msgid "NEW"
|
129 |
+
msgstr "Neu"
|
130 |
+
|
131 |
+
#: includes/Loader.php:816 includes/B2S/AutoPost/Item.php:199 includes/B2S/Network/Item.php:147 includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:576 includes/B2S/Ship/Portale.php:38
|
132 |
+
#: includes/B2S/Ship/Portale.php:40 includes/B2S/Ship/Portale.php:42
|
133 |
msgid "Profile"
|
134 |
msgstr "Profil"
|
135 |
|
136 |
+
#: includes/Loader.php:816 includes/B2S/AutoPost/Item.php:199 includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:284 includes/B2S/Network/Item.php:578 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
|
|
|
|
|
|
137 |
msgid "Page"
|
138 |
msgstr "Seite"
|
139 |
|
140 |
+
#: includes/Loader.php:816 includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:351 includes/B2S/Network/Item.php:581 includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
|
|
|
|
141 |
msgid "Group"
|
142 |
msgstr "Gruppe"
|
143 |
|
144 |
+
#: includes/Loader.php:817 views/prg/html/form.php:74
|
145 |
msgid "Company"
|
146 |
msgstr "Unternehmen"
|
147 |
|
148 |
+
#: includes/Loader.php:817
|
149 |
msgid "Business"
|
150 |
msgstr "Business"
|
151 |
|
152 |
+
#: includes/Loader.php:818
|
153 |
#, php-format
|
154 |
+
msgid "The network could not publish your post. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
155 |
+
msgstr "Dein Post ist vom Netzwerk nicht veröffentlicht worden. Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
|
|
|
|
156 |
|
157 |
+
#: includes/Loader.php:819
|
158 |
+
msgid "Your authorization has expired. Please reconnect your account in the Blog2Social network settings."
|
159 |
+
msgstr "Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den Blog2Social Netzwerkeinstellungen erneut."
|
|
|
|
|
|
|
|
|
160 |
|
161 |
+
#: includes/Loader.php:820
|
162 |
msgid "The network has marked the post as spam or abusive."
|
163 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
164 |
|
165 |
+
#: includes/Loader.php:821
|
166 |
+
msgid "We don't have the permission to publish your post. Please check your authorization."
|
167 |
+
msgstr "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte überprüfe deine Autorisierung."
|
|
|
|
|
|
|
|
|
168 |
|
169 |
+
#: includes/Loader.php:822
|
170 |
#, php-format
|
171 |
+
msgid "Your authorization is interrupted. Please check your authorization. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
172 |
+
msgstr "Deine Autorisierung ist unterbrochen. Bitte überprüfe Deine Verbindung. Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
|
|
|
|
173 |
|
174 |
+
#: includes/Loader.php:823
|
175 |
msgid "Your daily limit has been reached."
|
176 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
177 |
|
178 |
+
#: includes/Loader.php:824
|
179 |
+
msgid "Your post could not be posted, because your image is not available or the image source does not allow to publish"
|
180 |
+
msgstr "Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
|
|
|
|
|
|
|
|
181 |
|
182 |
+
#: includes/Loader.php:825
|
183 |
#, php-format
|
184 |
+
msgid "The network has blocked your account. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
185 |
+
msgstr "Das Netzwerk hat Dein Konto gesperrt. Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
|
|
|
|
186 |
|
187 |
+
#: includes/Loader.php:826
|
188 |
#, php-format
|
189 |
+
msgid "The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
190 |
+
msgstr "Die Anzahl der Bilder ist erreicht. Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
|
|
|
|
191 |
|
192 |
+
#: includes/Loader.php:827
|
193 |
+
msgid "Your daily limit for this network has been reached. Please try again later."
|
194 |
+
msgstr "Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte versuche es später noch einmal."
|
|
|
|
|
|
|
195 |
|
196 |
+
#: includes/Loader.php:828
|
197 |
#, php-format
|
198 |
+
msgid "The network can not publish special characters such as Emoji. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
199 |
+
msgstr "Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
|
|
|
|
200 |
|
201 |
+
#: includes/Loader.php:829
|
202 |
msgid "Your post is a duplicate."
|
203 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
204 |
|
205 |
+
#: includes/Loader.php:830
|
206 |
msgid "The network requires a public url."
|
207 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
208 |
|
209 |
+
#: includes/Loader.php:831
|
210 |
+
msgid "Your blog post was not available for the network at the time of publication."
|
211 |
+
msgstr "Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk nicht verfügbar."
|
|
|
|
|
|
|
212 |
|
213 |
+
#: includes/Loader.php:832
|
214 |
msgid "You have already retweeted this post."
|
215 |
msgstr "Du hast diesen Post bereits retweetet."
|
216 |
|
217 |
+
#: includes/Loader.php:833
|
218 |
+
msgid "This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts."
|
219 |
+
msgstr "Diese XING-API wird von XING nicht mehr unterstützt. Bitte verbinde Dich mit Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu zu planen."
|
|
|
|
|
|
|
|
|
|
|
220 |
|
221 |
+
#: includes/Loader.php:834
|
222 |
msgid "An image is required to post on this social network."
|
223 |
+
msgstr "Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild erforderlich."
|
|
|
|
|
224 |
|
225 |
+
#: includes/Loader.php:835
|
226 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
227 |
+
msgstr "Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link erforderlich."
|
|
|
|
|
228 |
|
229 |
+
#: includes/Loader.php:836
|
230 |
+
msgid "Your post could not be posted, because your image can not be processed by the network."
|
231 |
+
msgstr "Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom Netzwerk verarbeitet werden kann"
|
|
|
|
|
|
|
|
|
232 |
|
233 |
+
#: includes/Loader.php:837
|
234 |
#, php-format
|
235 |
+
msgid "Instagram published your post without text. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
236 |
+
msgstr "Instagram hat Deinen Beitrag ohne Text veröffentlicht. Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
|
|
|
|
237 |
|
238 |
+
#: includes/Loader.php:838
|
239 |
msgid "Your group can not be found by the network."
|
240 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
241 |
|
242 |
+
#: includes/Loader.php:894 includes/Loader.php:939
|
243 |
msgid "Dashboard"
|
244 |
msgstr "Dashboard"
|
245 |
|
246 |
+
#: includes/Loader.php:895
|
247 |
msgid "Share Website & Blog Content"
|
248 |
msgstr "Webseiten- & Blog Content teilen"
|
249 |
|
250 |
+
#: includes/Loader.php:895 includes/Loader.php:946
|
251 |
msgid "Site & Blog Content"
|
252 |
msgstr "Seiten & Blog Content"
|
253 |
|
254 |
+
#: includes/Loader.php:896
|
255 |
msgid "Create Social Media Posts"
|
256 |
msgstr "Erstelle Social Media Posts"
|
257 |
|
258 |
+
#: includes/Loader.php:896 includes/Loader.php:953
|
259 |
msgid "Social Media Posts"
|
260 |
msgstr "Social Media Posts"
|
261 |
|
262 |
+
#: includes/Loader.php:897 includes/Loader.php:960 views/b2s/dashboard.php:30 views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:128
|
|
|
263 |
msgid "Calendar"
|
264 |
msgstr "Kalender"
|
265 |
|
266 |
+
#: includes/Loader.php:898 includes/Loader.php:967
|
267 |
msgid "Networks"
|
268 |
msgstr "Netzwerke"
|
269 |
|
270 |
+
#: includes/Loader.php:901 includes/Loader.php:981
|
|
|
|
|
|
|
|
|
|
|
271 |
msgid "PR-Service"
|
272 |
msgstr "PR-Service"
|
273 |
|
274 |
+
#: includes/Loader.php:903 includes/Loader.php:989 views/b2s/html/header.php:33 views/b2s/html/sidebar.php:140 views/b2s/html/sidebar.ship.php:66
|
|
|
275 |
msgid "Help & Support"
|
276 |
msgstr "Hilfe & Support"
|
277 |
|
278 |
+
#: includes/Loader.php:905
|
279 |
msgid "Premium"
|
280 |
msgstr "Premium"
|
281 |
|
282 |
+
#: includes/Loader.php:905 includes/Loader.php:997
|
283 |
msgid "PREMIUM"
|
284 |
msgstr "PREMIUM"
|
285 |
|
286 |
+
#: includes/Loader.php:930 views/b2s/html/sidebar.php:25 views/b2s/html/sidebar.ship.php:24
|
|
|
287 |
msgid "Blog2Social"
|
288 |
msgstr "Blog2Social"
|
289 |
|
290 |
+
#: includes/Loader.php:1492
|
291 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
292 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
293 |
|
294 |
+
#: includes/Loader.php:1492 includes/System.php:32 includes/System.php:38
|
|
|
295 |
#, php-format
|
296 |
+
msgid "<a href=\"%s\" target=\"_blank\">Please find more Information and help in our FAQ</a>"
|
297 |
+
msgstr "<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du in unserem FAQs.</a>"
|
|
|
|
|
|
|
|
|
298 |
|
299 |
+
#: includes/Loader.php:1492 includes/Loader.php:1513 includes/Loader.php:1763
|
300 |
msgid "or"
|
301 |
msgstr "oder"
|
302 |
|
303 |
+
#: includes/Loader.php:1492 includes/Loader.php:1513 includes/Loader.php:1763
|
304 |
msgid "back to install plugins"
|
305 |
msgstr "zurück zur Pluginübersicht"
|
306 |
|
307 |
+
#: includes/Notice.php:17 views/b2s/html/sidebar.php:164
|
308 |
msgid "Rate it!"
|
309 |
msgstr "Bewerte uns!"
|
310 |
|
311 |
#: includes/Notice.php:18
|
312 |
+
msgid "If you like Blog2Social, please give us a 5 star rating. I there is anything that does not work for you, please contact us!!"
|
313 |
+
msgstr "Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
|
|
|
|
|
|
|
|
314 |
|
315 |
+
#: includes/Notice.php:19 views/b2s/html/sidebar.php:167
|
316 |
msgid "RATE BLOG2SOCIAL"
|
317 |
msgstr "Blog2Social jetzt bewerten"
|
318 |
|
322 |
|
323 |
#: includes/Notice.php:35
|
324 |
msgid "Could not hide notice. Please refresh the page and retry."
|
325 |
+
msgstr "Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite und versuche es erneut. "
|
|
|
|
|
326 |
|
327 |
+
#: includes/System.php:29
|
328 |
+
msgid "Blog2Social used cURL. cURL is not installed in your PHP installation on your server. Install cURL and activate Blog2Social again."
|
329 |
+
msgstr "Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
|
|
|
|
|
|
|
|
330 |
|
331 |
+
#: includes/System.php:35
|
332 |
msgid ""
|
333 |
+
"Blog2Social does not seem to have permission to write in your WordPress database. Please assign Blog2Social the permission to write in the WordPress database. Please also make sure that your MySQL server runs on v5.5.3 or higher, or ask your server administrator to do it for "
|
334 |
+
"you."
|
335 |
msgstr ""
|
336 |
+
"Blog2Social scheint keine Schreibrechte für Ihre WordPress-Datenbank zu haben. Bitte erlauben Sie Blog2Social, in die WordPress-Datenbank zu schreiben. Bitte stellen Sie auch sicher, dass Ihr MySQL-Server auf v5.5.3 oder höher läuft, oder bitten Sie Ihren Server-Administrator,"
|
337 |
+
" dies für Sie zu tun."
|
|
|
338 |
|
339 |
+
#: includes/Tools.php:283 views/b2s/html/sidebar.php:30 views/b2s/html/sidebar.ship.php:29
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
msgid "License"
|
341 |
msgstr "Lizenz"
|
342 |
|
343 |
+
#: includes/Tools.php:298
|
344 |
msgid "Greece"
|
345 |
msgstr "Griechenland"
|
346 |
|
347 |
+
#: includes/Tools.php:299
|
348 |
msgid "India"
|
349 |
msgstr "Indien"
|
350 |
|
351 |
+
#: includes/Tools.php:300
|
352 |
msgid "United States of America"
|
353 |
msgstr "Vereinigte Staaten von Amerika"
|
354 |
|
355 |
+
#: includes/Tools.php:301
|
356 |
msgid "Ireland"
|
357 |
msgstr "Irland"
|
358 |
|
359 |
+
#: includes/Tools.php:302
|
360 |
msgid "Italy"
|
361 |
msgstr "Italien"
|
362 |
|
363 |
+
#: includes/Tools.php:303
|
364 |
msgid "Switzerland"
|
365 |
msgstr "Schweiz"
|
366 |
|
367 |
+
#: includes/Tools.php:304
|
368 |
msgid "Czechoslovakia"
|
369 |
msgstr "Tschechoslowakei"
|
370 |
|
371 |
+
#: includes/Tools.php:305
|
372 |
msgid "Indonesia"
|
373 |
msgstr "Indonesien"
|
374 |
|
375 |
+
#: includes/Tools.php:306
|
376 |
msgid "Spain"
|
377 |
msgstr "Spanien"
|
378 |
|
379 |
+
#: includes/Tools.php:307
|
380 |
msgid "Canada"
|
381 |
msgstr "Kanada"
|
382 |
|
383 |
+
#: includes/Tools.php:308
|
384 |
msgid "Great Britain"
|
385 |
msgstr "Großbritannien"
|
386 |
|
387 |
+
#: includes/Tools.php:309
|
388 |
msgid "Russia"
|
389 |
msgstr "Russland"
|
390 |
|
391 |
+
#: includes/Tools.php:310
|
392 |
msgid "Netherlands"
|
393 |
msgstr "Niederlande"
|
394 |
|
395 |
+
#: includes/Tools.php:311 includes/Tools.php:325
|
396 |
msgid "Portugal"
|
397 |
msgstr "Portugal"
|
398 |
|
399 |
+
#: includes/Tools.php:312
|
400 |
msgid "Norway"
|
401 |
msgstr "Norwegen"
|
402 |
|
403 |
+
#: includes/Tools.php:313
|
404 |
msgid "Turkey"
|
405 |
msgstr "Türkei"
|
406 |
|
407 |
+
#: includes/Tools.php:314
|
408 |
msgid "Australia"
|
409 |
msgstr "Australien"
|
410 |
|
411 |
+
#: includes/Tools.php:315
|
412 |
msgid "Austria"
|
413 |
msgstr "Österreich"
|
414 |
|
415 |
+
#: includes/Tools.php:316
|
416 |
msgid "Poland"
|
417 |
msgstr "Polen"
|
418 |
|
419 |
+
#: includes/Tools.php:317
|
420 |
msgid "France"
|
421 |
msgstr "Frankreich"
|
422 |
|
423 |
+
#: includes/Tools.php:318
|
424 |
msgid "Romania"
|
425 |
msgstr "Rumänien"
|
426 |
|
427 |
+
#: includes/Tools.php:319
|
428 |
msgid "Germany"
|
429 |
msgstr "Deutschland"
|
430 |
|
431 |
+
#: includes/Tools.php:320
|
432 |
msgid "Denmark"
|
433 |
msgstr "Dänemark"
|
434 |
|
435 |
+
#: includes/Tools.php:321
|
436 |
msgid "New Zealand"
|
437 |
msgstr "Neuseeland"
|
438 |
|
439 |
+
#: includes/Tools.php:322
|
440 |
msgid "Finland"
|
441 |
msgstr "Finnland"
|
442 |
|
443 |
+
#: includes/Tools.php:323
|
444 |
msgid "Hungary"
|
445 |
msgstr "Ungarn"
|
446 |
|
447 |
+
#: includes/Tools.php:324
|
448 |
msgid "Japan"
|
449 |
msgstr "Japan"
|
450 |
|
451 |
+
#: includes/Tools.php:326
|
452 |
msgid "Argentina"
|
453 |
msgstr "Argentinien"
|
454 |
|
455 |
+
#: includes/Tools.php:327
|
456 |
msgid "Korea"
|
457 |
msgstr "Korea"
|
458 |
|
459 |
+
#: includes/Tools.php:328
|
460 |
msgid "Sweden"
|
461 |
msgstr "Schweden"
|
462 |
|
463 |
+
#: includes/Tools.php:329
|
464 |
msgid "Mexico"
|
465 |
msgstr "Mexiko"
|
466 |
|
467 |
+
#: includes/Tools.php:330
|
468 |
msgid "Slovakia"
|
469 |
msgstr "Slowakei"
|
470 |
|
471 |
+
#: includes/Tools.php:331
|
472 |
msgid "Chile"
|
473 |
msgstr "Chile"
|
474 |
|
475 |
+
#: includes/Tools.php:332
|
476 |
msgid "Colombia"
|
477 |
msgstr "Kolumbien"
|
478 |
|
479 |
+
#: includes/Tools.php:333
|
480 |
msgid "South Africa"
|
481 |
msgstr "Südafrika"
|
482 |
|
483 |
+
#: includes/Tools.php:334
|
484 |
msgid "Philippines"
|
485 |
msgstr "Philippinen"
|
486 |
|
487 |
+
#: includes/Tools.php:337
|
488 |
msgid "is determined automatically"
|
489 |
msgstr "wird automatisch ermittelt"
|
490 |
|
491 |
+
#: includes/Tools.php:344
|
492 |
msgid "Search"
|
493 |
msgstr "Suche"
|
494 |
|
495 |
+
#: includes/Tools.php:345
|
496 |
msgid "Recently Used"
|
497 |
msgstr "Zuletzt verwendet"
|
498 |
|
499 |
+
#: includes/Tools.php:346
|
500 |
msgid "Smileys & People"
|
501 |
msgstr "Smileys & Personen"
|
502 |
|
503 |
+
#: includes/Tools.php:347
|
504 |
msgid "Animals & Nature"
|
505 |
msgstr "Tiere & Natur"
|
506 |
|
507 |
+
#: includes/Tools.php:348
|
508 |
msgid "Food & Drink"
|
509 |
msgstr "Essen & Trinken"
|
510 |
|
511 |
+
#: includes/Tools.php:349
|
512 |
msgid "Activities"
|
513 |
msgstr "Aktivitäten"
|
514 |
|
515 |
+
#: includes/Tools.php:350
|
516 |
msgid "Travel & Places"
|
517 |
msgstr "Reisen & Orte"
|
518 |
|
519 |
+
#: includes/Tools.php:351
|
520 |
msgid "Objects"
|
521 |
msgstr "Objekte"
|
522 |
|
523 |
+
#: includes/Tools.php:352
|
524 |
msgid "Symbols"
|
525 |
msgstr "Symbole"
|
526 |
|
527 |
+
#: includes/Tools.php:353
|
528 |
msgid "Flags"
|
529 |
msgstr "Flaggen"
|
530 |
|
531 |
+
#: includes/Tools.php:354
|
532 |
msgid "No emojis found"
|
533 |
msgstr "Keine Ergebnisse"
|
534 |
|
537 |
msgstr "Vebindung ist unterbrochen..."
|
538 |
|
539 |
#: views/notice.php:14
|
540 |
+
msgid "The connection to your server has been interrupted. Please make sure that your blog is reachable. If your server does not respond or is too slow, Blog2Social cannot connect to the internet. Try again later or contact your webmaster, if this error message persists."
|
|
|
|
|
|
|
|
|
541 |
msgstr ""
|
542 |
+
"Die Verbindung auf Deinen Server wurde unterbrochen. Bitte stelle sicher, dass Dein Blog von außen erreichbar ist.Wenn Dein Server nicht antwortet, oder die Verbindungsgeschwindigkeit zu niedrig ist, kann Blog2Social sich nicht mit dem internet verbinden. Versuche es später "
|
543 |
+
"erneut oder kontaktiere Deinen Webmaster, wenn dieser Fehler erneut erscheint."
|
|
|
|
|
|
|
544 |
|
545 |
#: views/notice.php:17
|
546 |
msgid "Update..."
|
547 |
msgstr "Aktualisierung..."
|
548 |
|
549 |
#: views/notice.php:19
|
550 |
+
msgid "<b> A new version of Blog2Social is available. </b> Update now <br> Blog2Social to continue to use the latest version of the plugin."
|
|
|
|
|
551 |
msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
|
552 |
|
553 |
#: views/notice.php:23
|
566 |
msgid "Please contact our support!"
|
567 |
msgstr "Bitte kontaktiere unseren Support!"
|
568 |
|
569 |
+
#: includes/Ajax/Post.php:1720 views/b2s/network.php:7 includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282 includes/B2S/Network/Item.php:349 includes/B2S/Network/Item.php:475
|
|
|
|
|
570 |
msgid "Unknown username"
|
571 |
msgstr "unbekannter Blog-Nutzer"
|
572 |
|
573 |
+
#: includes/Ajax/Post.php:1721 includes/B2S/Network/Item.php:476 includes/B2S/Post/Item.php:491 includes/B2S/Post/Item.php:511 includes/B2S/Post/Item.php:803 includes/B2S/Post/Item.php:861 includes/B2S/Settings/Item.php:92 includes/B2S/Ship/Item.php:987
|
574 |
+
#: includes/B2S/Ship/Item.php:1137
|
|
|
|
|
|
|
575 |
msgid "delete"
|
576 |
msgstr "löschen"
|
577 |
|
578 |
+
#: includes/B2S/PostBox.php:29
|
579 |
msgid "Please see FAQ"
|
580 |
msgstr "Siehe FAQ"
|
581 |
|
582 |
+
#: includes/B2S/PostBox.php:131 views/b2s/ship.php:660 views/b2s/html/header.php:53
|
|
|
583 |
msgid "The connection to the server failed. Try again!"
|
584 |
+
msgstr "Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es erneut!"
|
|
|
|
|
585 |
|
586 |
+
#: includes/B2S/PostBox.php:132
|
587 |
+
msgid "WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social!"
|
588 |
+
msgstr "WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
|
|
|
|
|
|
|
|
|
589 |
|
590 |
+
#: includes/B2S/PostBox.php:133 includes/B2S/PostBox.php:135
|
591 |
+
msgid "Your post is still on draft or pending status. Please make sure that your post is published or scheduled to be published on this blog. You can then auto-post or schedule and customize your social media posts with Blog2Social."
|
592 |
+
msgstr "Bitte stelle sicher, dass Dein Beitrag auf Deinem Blog veröffentlicht oder geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und planen."
|
|
|
|
|
|
|
|
|
|
|
|
|
593 |
|
594 |
+
#: includes/B2S/PostBox.php:134 includes/B2S/PostBox.php:233 includes/B2S/AutoPost/Item.php:51 includes/B2S/AutoPost/Item.php:140 includes/B2S/RePost/Item.php:149
|
|
|
595 |
msgid "Network settings"
|
596 |
msgstr "Netzwerkeinstellungen"
|
597 |
|
598 |
+
#: includes/B2S/PostBox.php:136 views/b2s/ship.php:198
|
599 |
+
msgid "Notice: Please make sure, that your website address is reachable. The Social Networks do not allow postings from local installations."
|
600 |
+
msgstr "Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei Fragen wende Dich bitte an unseren Support."
|
|
|
|
|
|
|
|
|
601 |
|
602 |
+
#: includes/B2S/PostBox.php:153
|
603 |
msgid "Custom Sharing & Scheduling"
|
604 |
msgstr "Anpassen & Planen"
|
605 |
|
606 |
+
#: includes/B2S/PostBox.php:153 includes/B2S/PostBox.php:156 views/b2s/network.php:42 views/b2s/ship.php:76 views/b2s/ship.php:166 views/b2s/ship.php:258 includes/B2S/AutoPost/Item.php:154 includes/B2S/Network/Item.php:172 includes/B2S/RePost/Item.php:163
|
607 |
+
#: includes/B2S/Ship/Item.php:951
|
|
|
|
|
608 |
msgid "Info"
|
609 |
msgstr "Info"
|
610 |
|
611 |
+
#: includes/B2S/PostBox.php:154
|
612 |
msgid "Customize & Schedule Social Media Posts"
|
613 |
msgstr "Social Media Posts anpassen & planen"
|
614 |
|
615 |
+
#: includes/B2S/PostBox.php:156
|
616 |
msgid "The Autoposter is"
|
617 |
msgstr "Der Auto-Poster ist"
|
618 |
|
619 |
+
#: includes/B2S/PostBox.php:156
|
620 |
msgid "activated"
|
621 |
msgstr "aktiviert"
|
622 |
|
623 |
+
#: includes/B2S/PostBox.php:156
|
624 |
msgid "deactivated"
|
625 |
msgstr "deaktiviert"
|
626 |
|
627 |
+
#: includes/B2S/PostBox.php:158
|
628 |
msgid "Shared"
|
629 |
msgstr "Wie oft geteilt?"
|
630 |
|
631 |
+
#: includes/B2S/PostBox.php:158
|
632 |
msgid "times"
|
633 |
msgstr "Mal"
|
634 |
|
635 |
+
#: includes/B2S/PostBox.php:159
|
636 |
msgid "Last shared"
|
637 |
msgstr "Letzte Veröffentlichung"
|
638 |
|
639 |
+
#: includes/B2S/PostBox.php:163
|
640 |
msgid "Advanced settings"
|
641 |
msgstr "Erweiterte Einstellungen"
|
642 |
|
643 |
+
#: includes/B2S/PostBox.php:166
|
644 |
msgid "enable Auto-Posting"
|
645 |
msgstr "Auto-Posting aktivieren"
|
646 |
|
647 |
+
#: includes/B2S/PostBox.php:168 includes/B2S/Ship/Item.php:378
|
648 |
msgid "show calendar"
|
649 |
msgstr "Planungskalender anzeigen"
|
650 |
|
651 |
+
#: includes/B2S/PostBox.php:183
|
652 |
msgid "Blog2Social: Customize & Schedule Social Media Posts"
|
653 |
msgstr "Blog2Social : Beiträge anpassen & planen"
|
654 |
|
655 |
+
#: includes/B2S/PostBox.php:186
|
656 |
msgid ""
|
657 |
+
"Customize and schedule your social media posts on the one page preview for all your selected networks: tailor your posts with individual comments, #hashtags or @handles and schedule your posts for the best times to post, for multiple times or re-share recurrently for more "
|
658 |
+
"visibility and engagement with your community."
|
|
|
|
|
|
|
659 |
msgstr ""
|
660 |
+
"Individualisiere und plane Deine Social Media Posts über die Netzwerk-Vorschau: Ergänze individuelle Kommentare, #Hashtags oder @Handles für die verschiedenen Netzwerke und plane Deine Posts für die besten Zeiten, mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback "
|
661 |
+
"von Deiner Community zu erzielen"
|
662 |
+
|
663 |
+
#: includes/B2S/PostBox.php:195 views/b2s/html/footer.php:305 views/b2s/html/footer.php:345
|
|
|
|
|
|
|
|
|
664 |
msgid "Blog2Social: Social Media Auto-Posting"
|
665 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
666 |
|
667 |
+
#: includes/B2S/PostBox.php:199 views/b2s/html/footer.php:309
|
668 |
+
msgid "Share your blog posts with the Auto Poster: Your blog posts will be shared automatically on your social media channels as soon as you publish or update a new post. You can also choose to autopost scheduled blog posts as soon as they are published."
|
|
|
|
|
|
|
|
|
669 |
msgstr ""
|
670 |
+
"Teile Deine Blogbeiträge mit dem Auto-Poster: Deine Blogbeiträge werden automatisch auf Deinen Social Media-Kanälen geteilt, sobald Du einen neuen Beitrag veröffentlichst oder aktualisierst. Du kannst auch festlegen, dass in WordPress vorgeplante Blogbeiträge automatisch "
|
671 |
+
"geteilt werden, sobald sie veröffentlicht werden."
|
|
|
|
|
|
|
672 |
|
673 |
+
#: includes/B2S/PostBox.php:200 views/b2s/html/footer.php:310
|
674 |
#, php-format
|
675 |
+
msgid "<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your blog posts</a>"
|
676 |
+
msgstr "<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für Deine Blogbeiträge einrichtest.</a>"
|
|
|
|
|
|
|
|
|
677 |
|
678 |
+
#: includes/B2S/PostBox.php:204 views/b2s/html/footer.php:316 views/b2s/html/footer.php:355 views/b2s/html/footer.php:396
|
|
|
679 |
msgid "You want to auto-post your blog post?"
|
680 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
681 |
|
682 |
+
#: includes/B2S/PostBox.php:205 views/b2s/curation.php:171 views/b2s/curation.php:210 views/b2s/post.calendar.php:281 views/b2s/ship.php:309 views/b2s/ship.php:369 views/b2s/ship.php:415 views/b2s/html/footer.php:26 views/b2s/html/footer.php:144 views/b2s/html/footer.php:208
|
683 |
+
#: views/b2s/html/footer.php:248 views/b2s/html/footer.php:317 views/b2s/html/footer.php:356 views/b2s/html/footer.php:397 views/b2s/html/footer.php:483
|
|
|
|
|
|
|
|
|
|
|
684 |
msgid "With Blog2Social Premium you can:"
|
685 |
msgstr "Mit Blog2Social kannst Du:"
|
686 |
|
687 |
+
#: includes/B2S/PostBox.php:208 views/b2s/curation.php:174 views/b2s/curation.php:213 views/b2s/post.calendar.php:284 views/b2s/ship.php:312 views/b2s/ship.php:372 views/b2s/ship.php:418 views/b2s/html/footer.php:29 views/b2s/html/footer.php:147 views/b2s/html/footer.php:211
|
688 |
+
#: views/b2s/html/footer.php:251 views/b2s/html/footer.php:320 views/b2s/html/footer.php:359 views/b2s/html/footer.php:400 views/b2s/html/footer.php:486 views/b2s/html/header.php:330
|
|
|
|
|
|
|
|
|
|
|
689 |
msgid "Post on pages and groups"
|
690 |
msgstr "Poste auf Seiten und in Gruppen"
|
691 |
|
692 |
+
#: includes/B2S/PostBox.php:209 views/b2s/curation.php:175 views/b2s/curation.php:214 views/b2s/post.calendar.php:285 views/b2s/ship.php:313 views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:30 views/b2s/html/footer.php:148 views/b2s/html/footer.php:212
|
693 |
+
#: views/b2s/html/footer.php:252 views/b2s/html/footer.php:321 views/b2s/html/footer.php:360 views/b2s/html/footer.php:401 views/b2s/html/footer.php:487
|
|
|
|
|
|
|
|
|
|
|
694 |
msgid "Share on multiple profiles, pages and groups"
|
695 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
696 |
|
697 |
+
#: includes/B2S/PostBox.php:210 views/b2s/curation.php:176 views/b2s/curation.php:215 views/b2s/post.calendar.php:286 views/b2s/ship.php:314 views/b2s/ship.php:374 views/b2s/ship.php:420 views/b2s/html/footer.php:31 views/b2s/html/footer.php:65 views/b2s/html/footer.php:149
|
698 |
+
#: views/b2s/html/footer.php:213 views/b2s/html/footer.php:253 views/b2s/html/footer.php:322 views/b2s/html/footer.php:361 views/b2s/html/footer.php:402 views/b2s/html/footer.php:488
|
|
|
|
|
|
|
|
|
|
|
699 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
700 |
+
msgstr " Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder Aktualisierung posten und zeitversetzt planen"
|
701 |
+
|
702 |
+
#: includes/B2S/PostBox.php:211 views/b2s/curation.php:177 views/b2s/curation.php:216 views/b2s/post.calendar.php:287 views/b2s/ship.php:315 views/b2s/ship.php:375 views/b2s/ship.php:421 views/b2s/html/footer.php:32 views/b2s/html/footer.php:150 views/b2s/html/footer.php:214
|
703 |
+
#: views/b2s/html/footer.php:254 views/b2s/html/footer.php:323 views/b2s/html/footer.php:362 views/b2s/html/footer.php:403 views/b2s/html/footer.php:489
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
704 |
msgid "Schedule your posts at the best times on each network"
|
705 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
706 |
|
707 |
+
#: includes/B2S/PostBox.php:212 views/b2s/curation.php:178 views/b2s/curation.php:217 views/b2s/post.calendar.php:288 views/b2s/ship.php:316 views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:33 views/b2s/html/footer.php:151 views/b2s/html/footer.php:215
|
708 |
+
#: views/b2s/html/footer.php:255 views/b2s/html/footer.php:324 views/b2s/html/footer.php:363 views/b2s/html/footer.php:404 views/b2s/html/footer.php:490
|
709 |
+
msgid "Best Time Manager: use predefined best time scheduler to auto-schedule your social media posts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
710 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
711 |
|
712 |
+
#: includes/B2S/PostBox.php:213 views/b2s/curation.php:179 views/b2s/curation.php:218 views/b2s/post.calendar.php:289 views/b2s/ship.php:317 views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:34 views/b2s/html/footer.php:152 views/b2s/html/footer.php:216
|
713 |
+
#: views/b2s/html/footer.php:256 views/b2s/html/footer.php:325 views/b2s/html/footer.php:364 views/b2s/html/footer.php:405 views/b2s/html/footer.php:491
|
|
|
|
|
|
|
|
|
|
|
714 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
715 |
+
msgstr "Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig oder nach einem regelmäßigen Muster"
|
716 |
+
|
717 |
+
#: includes/B2S/PostBox.php:214 views/b2s/curation.php:180 views/b2s/curation.php:219 views/b2s/post.calendar.php:290 views/b2s/ship.php:318 views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:35 views/b2s/html/footer.php:153 views/b2s/html/footer.php:217
|
718 |
+
#: views/b2s/html/footer.php:257 views/b2s/html/footer.php:326 views/b2s/html/footer.php:365 views/b2s/html/footer.php:406 views/b2s/html/footer.php:492
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
719 |
msgid "Schedule and re-share old posts"
|
720 |
msgstr "Plane und teile alte Beiträge"
|
721 |
|
722 |
+
#: includes/B2S/PostBox.php:215 views/b2s/curation.php:181 views/b2s/curation.php:220 views/b2s/post.calendar.php:291 views/b2s/ship.php:319 views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:36 views/b2s/html/footer.php:67 views/b2s/html/footer.php:154
|
723 |
+
#: views/b2s/html/footer.php:218 views/b2s/html/footer.php:258 views/b2s/html/footer.php:327 views/b2s/html/footer.php:366 views/b2s/html/footer.php:407 views/b2s/html/footer.php:493
|
|
|
|
|
|
|
|
|
|
|
724 |
msgid "Select link format or image format for your posts"
|
725 |
+
msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
726 |
+
|
727 |
+
#: includes/B2S/PostBox.php:216 views/b2s/curation.php:182 views/b2s/curation.php:221 views/b2s/post.calendar.php:292 views/b2s/ship.php:320 views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:37 views/b2s/html/footer.php:68 views/b2s/html/footer.php:155
|
728 |
+
#: views/b2s/html/footer.php:219 views/b2s/html/footer.php:259 views/b2s/html/footer.php:328 views/b2s/html/footer.php:367 views/b2s/html/footer.php:408 views/b2s/html/footer.php:494
|
|
|
|
|
|
|
|
|
|
|
|
|
729 |
msgid "Select individual images per post"
|
730 |
+
msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
731 |
+
|
732 |
+
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:183 views/b2s/curation.php:222 views/b2s/post.calendar.php:293 views/b2s/ship.php:321 views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:38 views/b2s/html/footer.php:156 views/b2s/html/footer.php:220
|
733 |
+
#: views/b2s/html/footer.php:260 views/b2s/html/footer.php:329 views/b2s/html/footer.php:368 views/b2s/html/footer.php:409 views/b2s/html/footer.php:495
|
734 |
+
msgid "Reporting & calendar: keep track of your published and scheduled social media posts"
|
735 |
+
msgstr "Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social Media Beiträge"
|
736 |
+
|
737 |
+
#: includes/B2S/PostBox.php:219 views/b2s/curation.php:185 views/b2s/curation.php:224 views/b2s/post.calendar.php:295 views/b2s/ship.php:323 views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:40 views/b2s/html/footer.php:158 views/b2s/html/footer.php:222
|
738 |
+
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:331 views/b2s/html/footer.php:370 views/b2s/html/footer.php:411 views/b2s/html/footer.php:497
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
739 |
msgid "Upgrade to SMART and above"
|
740 |
msgstr "Upgrade auf SMART und höher"
|
741 |
|
742 |
+
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:187 views/b2s/curation.php:226 views/b2s/post.calendar.php:297 views/b2s/ship.php:325 views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:42 views/b2s/html/footer.php:73 views/b2s/html/footer.php:91
|
743 |
+
#: views/b2s/html/footer.php:160 views/b2s/html/footer.php:224 views/b2s/html/footer.php:264 views/b2s/html/footer.php:333 views/b2s/html/footer.php:372 views/b2s/html/footer.php:413 views/b2s/html/footer.php:500
|
|
|
|
|
|
|
|
|
|
|
|
|
744 |
#, php-format
|
745 |
+
msgid "or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)"
|
746 |
+
msgstr "oder <a target=\"_blank\" href=\"%s\">Starte mit der 30-tägigen kostenlosen Testversion von Blog2Social Premium</a> (keine Zahlungsinformationen erforderlich)"
|
|
|
|
|
|
|
|
|
|
|
747 |
|
748 |
+
#: includes/B2S/PostBox.php:233 includes/B2S/AutoPost/Item.php:133 includes/B2S/Curation/View.php:73 includes/B2S/RePost/Item.php:142
|
|
|
749 |
msgid "Select network collection:"
|
750 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
751 |
|
752 |
+
#: includes/B2S/PostBox.php:244 views/b2s/autopost.php:73 views/b2s/repost.php:167 includes/B2S/AutoPost/Item.php:144 includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:153
|
|
|
753 |
msgid "Select Twitter profile:"
|
754 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
755 |
|
756 |
+
#: includes/B2S/PostBox.php:280
|
757 |
msgid "When do you want to share your post on social media?"
|
758 |
msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
759 |
|
760 |
+
#: includes/B2S/PostBox.php:282
|
761 |
msgid "immediately after publishing"
|
762 |
msgstr "sofort nach Veröffentlichung"
|
763 |
|
764 |
+
#: includes/B2S/PostBox.php:283
|
765 |
msgid "at best times"
|
766 |
msgstr "zu den besten Zeiten"
|
767 |
|
768 |
+
#: views/b2s/autopost.php:18 views/b2s/settings.php:18 includes/B2S/Ship/Image.php:28
|
769 |
+
msgid "You need a higher user role to upload an image on this blog. Please contact your administrator."
|
770 |
+
msgstr "Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog hochzuladen. Bitte kontaktiere Deinen Administrator."
|
771 |
+
|
772 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:27
|
773 |
+
msgid "save..."
|
774 |
+
msgstr "speichere Daten..."
|
775 |
+
|
776 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:73 includes/B2S/Ship/Image.php:91
|
777 |
+
msgid "Select or upload an image from media gallery"
|
778 |
+
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
779 |
+
|
780 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:74 includes/B2S/Ship/Image.php:92
|
781 |
+
msgid "Use image"
|
782 |
+
msgstr "Bild verwenden"
|
783 |
+
|
784 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:140 includes/B2S/Settings/Item.php:55
|
785 |
+
msgid "Personal Time Zone"
|
786 |
+
msgstr "Persönliche Zeitzone"
|
787 |
+
|
788 |
+
#: views/b2s/autopost.php:62 views/b2s/settings.php:143
|
789 |
msgid ""
|
790 |
+
"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 "
|
791 |
+
"time zone from the drop-down menu."
|
792 |
msgstr ""
|
793 |
+
"Die Zeiteinstellungen zum Planen von Social Media Posts in Blog2Social basieren auf der Zeitzone, die in den allgemeinen Einstellungen Deines WordPress festgelegt ist. Du kannst aber auch eine andere Zeitzone als Basis für die Planung Deiner Social Media Posts festlegen. "
|
794 |
+
"Wähle dazu die gewünschte Zeitzone aus dem Drop-Down Menü."
|
795 |
+
|
796 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:170
|
797 |
+
msgid "To comply with the Twitter TOS and to avoid duplicate posts, autoposts will be sent to your primary Twitter profile."
|
798 |
+
msgstr "Um den Geschäftsbedingungen von Twitter zu entsprechen und doppelte Postings zu vermeiden, werden Autoposts an Dein primäres Twitter-Profil gesendet."
|
799 |
+
|
800 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:170 includes/B2S/AutoPost/Item.php:105
|
801 |
+
msgid "More information"
|
802 |
+
msgstr "Zusätzliche Informationen"
|
803 |
+
|
804 |
+
#: views/b2s/curation.draft.php:17
|
805 |
+
msgid "Save links as drafts while browsing and share or schedule them whenever you want."
|
806 |
+
msgstr "Speicher beim Surfen Links aus Deinem Browser und teile sie, wann immer Du möchtest"
|
807 |
|
808 |
#: views/b2s/curation.draft.php:17
|
809 |
msgid "Get the Blog2Social Browser Extension"
|
810 |
msgstr "Blog2Social Browser Erweiterung"
|
811 |
|
812 |
+
#: views/b2s/curation.draft.php:47 views/b2s/network.php:61 views/b2s/network.php:149 views/b2s/network.php:224 views/b2s/network.php:327 views/b2s/network.php:402 views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60 views/b2s/post.calendar.php:243
|
813 |
+
#: views/b2s/post.draft.php:42 views/b2s/post.favorites.php:41 views/b2s/post.notice.php:45 views/b2s/post.php:41 views/b2s/post.publish.php:45 views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188 views/b2s/ship.php:570 views/b2s/ship.php:658
|
814 |
+
#: views/b2s/support.php:204 views/prg/html/header.php:86
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
815 |
msgid "Loading..."
|
816 |
msgstr "Wird geladen..."
|
817 |
|
823 |
msgid "Are you sure you want to delete this draft?"
|
824 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
825 |
|
826 |
+
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:141 views/b2s/network.php:109 views/b2s/post.approve.php:98 views/b2s/post.approve.php:115 views/b2s/post.draft.php:87 views/b2s/post.notice.php:85 views/b2s/post.publish.php:85 views/b2s/post.sched.php:99
|
827 |
+
#: views/b2s/repost.php:91 views/b2s/ship.php:474 views/b2s/ship.php:553 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
|
|
|
|
|
|
|
|
828 |
msgid "NO"
|
829 |
msgstr "NEIN"
|
830 |
|
831 |
+
#: views/b2s/curation.draft.php:91 views/b2s/network.php:110 views/b2s/network.php:173 views/b2s/post.approve.php:99 views/b2s/post.draft.php:88 views/b2s/post.notice.php:86 views/b2s/post.publish.php:86 views/b2s/post.sched.php:100 views/b2s/repost.php:92
|
832 |
+
#: views/b2s/repost.php:93 views/b2s/widgets/posts.php:68
|
|
|
|
|
|
|
833 |
msgid "YES, delete"
|
834 |
msgstr "Ja, löschen"
|
835 |
|
838 |
msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
|
839 |
|
840 |
#: views/b2s/curation.php:34
|
841 |
+
msgid "No connected networks. Please make sure to connect at least one social media account."
|
842 |
+
msgstr "Keine verbundenen Netzwerke vorhanden. Bitte stelle sicher, dass Du mindestens einen Social Media Account in Blog2Social unter Netzwerke verbunden hast."
|
|
|
|
|
|
|
|
|
|
|
843 |
|
844 |
#: views/b2s/curation.php:37
|
845 |
msgid "Invalid data. Please check your data."
|
849 |
msgid "Saved as draft."
|
850 |
msgstr "Als Entwurf gespeichert."
|
851 |
|
852 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Settings/Item.php:240 includes/B2S/Settings/Item.php:273 views/b2s/html/footer.php:111
|
|
|
|
|
853 |
msgid "Link Post"
|
854 |
msgstr "Link-Beitrag"
|
855 |
|
856 |
+
#: views/b2s/curation.php:47 views/b2s/curation.php:49 views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Settings/Item.php:254 includes/B2S/Settings/Item.php:273
|
|
|
|
|
857 |
msgid "Image Post"
|
858 |
msgstr "Bild-Beitrag"
|
859 |
|
860 |
+
#: views/b2s/curation.php:49 views/b2s/network.php:218 views/b2s/ship.php:23 includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56 includes/B2S/Network/Item.php:162 includes/B2S/Network/Item.php:256 includes/B2S/Network/Item.php:322
|
861 |
+
#: includes/B2S/Network/Item.php:384 includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:160 includes/B2S/Ship/Image.php:80 includes/B2S/Ship/Item.php:1010 views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:20
|
862 |
+
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
863 |
msgid "SMART"
|
864 |
msgstr "SMART"
|
865 |
|
869 |
|
870 |
#: views/b2s/curation.php:65
|
871 |
msgid "Enter a link you want share on your social media channels"
|
872 |
+
msgstr "Füge einen Link ein, den Du auf Deinen Social Media Kanälen teilen möchtest"
|
|
|
873 |
|
874 |
#: views/b2s/curation.php:66
|
875 |
msgid "Please enter a valid link"
|
883 |
msgid "continue"
|
884 |
msgstr "weiter"
|
885 |
|
886 |
+
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:446 includes/B2S/Ship/Item.php:475 includes/B2S/Ship/Item.php:505 includes/B2S/Ship/Item.php:534 includes/B2S/Ship/Item.php:563 includes/B2S/Ship/Item.php:591 includes/B2S/Ship/Item.php:634 includes/B2S/Ship/Item.php:657
|
887 |
+
#: includes/B2S/Ship/Item.php:678 includes/B2S/Ship/Item.php:699 includes/B2S/Ship/Item.php:720 includes/B2S/Ship/Item.php:741 includes/B2S/Ship/Item.php:762 includes/B2S/Ship/Item.php:806
|
|
|
|
|
|
|
|
|
|
|
|
|
888 |
msgid "Change image"
|
889 |
msgstr "Bild ändern"
|
890 |
|
892 |
msgid "Write something..."
|
893 |
msgstr "Schreibe etwas..."
|
894 |
|
895 |
+
#: views/b2s/curation.php:112 views/b2s/ship.php:260 views/b2s/ship.php:262 includes/B2S/Post/Item.php:411
|
|
|
896 |
msgid "Re-share this post"
|
897 |
msgstr "Diesen Beitrag nochmal teilen"
|
898 |
|
900 |
msgid "Create a new post"
|
901 |
msgstr "Neuen Social Media Post erstellen"
|
902 |
|
903 |
+
#: views/b2s/curation.php:119 views/b2s/post.calendar.php:38 views/b2s/ship.php:18 views/b2s/ship.php:659 includes/B2S/Post/Filter.php:58 includes/B2S/Post/Item.php:338 includes/B2S/Ship/Save.php:417 includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
|
|
|
|
|
|
904 |
msgid "published"
|
905 |
msgstr "veröffentlicht"
|
906 |
|
907 |
+
#: views/b2s/curation.php:135 views/b2s/post.approve.php:109 views/b2s/ship.php:468
|
|
|
908 |
msgid "Do you want to mark this post as published ?"
|
909 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
910 |
|
911 |
+
#: views/b2s/curation.php:140 views/b2s/post.approve.php:114 views/b2s/ship.php:473 views/b2s/ship.php:554
|
|
|
912 |
msgid "YES"
|
913 |
msgstr "JA"
|
914 |
|
915 |
+
#: views/b2s/curation.php:154 views/b2s/post.calendar.php:264 views/b2s/ship.php:398
|
|
|
916 |
msgid "Need to schedule your posts?"
|
917 |
msgstr "Du möchtest Deine Beiträge planen?"
|
918 |
|
919 |
+
#: views/b2s/curation.php:157 views/b2s/post.calendar.php:267 views/b2s/ship.php:401
|
|
|
920 |
msgid "Blog2Social Premium covers everything you need."
|
921 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
922 |
|
923 |
+
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:270 views/b2s/ship.php:404 includes/B2S/Ship/Item.php:1011
|
|
|
924 |
msgid "Schedule for specific dates"
|
925 |
msgstr "Für bestimmte Termine planen"
|
926 |
|
927 |
+
#: views/b2s/curation.php:161 views/b2s/post.calendar.php:271 views/b2s/ship.php:405
|
928 |
+
msgid "You want to publish a post on a specific date? No problem! Just enter your desired date and you are ready to go!"
|
929 |
+
msgstr "Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
|
|
|
|
|
|
|
|
|
|
930 |
|
931 |
+
#: views/b2s/curation.php:163 views/b2s/post.calendar.php:273 views/b2s/ship.php:407
|
|
|
932 |
msgid "Schedule post recurrently"
|
933 |
msgstr "Beitrag mehrfach planen"
|
934 |
|
935 |
+
#: views/b2s/curation.php:164 views/b2s/post.calendar.php:274 views/b2s/ship.php:408
|
936 |
+
msgid "You have evergreen content you want to re-share from time to time in your timeline? Schedule your evergreen content to be shared once, multiple times or recurringly at specific times."
|
937 |
+
msgstr "Du möchtest Deine beliebtesten Beiträge wiederholt auf den Social Media teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem wiederkehrenden Rhythmus"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
938 |
|
939 |
+
#: views/b2s/curation.php:166 views/b2s/post.calendar.php:276 views/b2s/ship.php:410
|
|
|
940 |
msgid "Best Time Scheduler"
|
941 |
msgstr "Beste Zeiten Manager"
|
942 |
|
943 |
+
#: views/b2s/curation.php:167 views/b2s/post.calendar.php:277 views/b2s/ship.php:411
|
944 |
+
msgid "Whenever you publish a post, only a fraction of your followers will actually see your post. Use the Blog2Social Best Times Scheduler to share your post at the best times for each social network. Get more outreach and extend the lifespan of your posts."
|
|
|
|
|
|
|
|
|
|
|
945 |
msgstr ""
|
946 |
+
"Wenn Du einen Post in den Social Media veröffentlichst, wird Dein Beitrag immer nur von einer kleinen Anzahl Deiner Follower wahrgenommen. Nutze den Beste Zeiten Manager, um Deine Beiträge zu den besten Zeiten des jeweiligen Netzwerks zu teilen. Steigere so die Reichweite, "
|
947 |
+
"Interaktion und Lebensdauer Deiner Posts."
|
|
|
|
|
|
|
948 |
|
949 |
#: views/b2s/curation.php:199
|
950 |
msgid "Blog2Social: Social Media Posts"
|
956 |
|
957 |
#: views/b2s/curation.php:209
|
958 |
msgid "You want to create image posts with any image from your media library?"
|
959 |
+
msgstr "Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek erstellen?"
|
|
|
|
|
960 |
|
961 |
#: views/b2s/curation.php:238
|
962 |
msgid "Select image"
|
963 |
msgstr "Bild auswählen"
|
964 |
|
965 |
+
#: views/b2s/dashboard.php:26
|
|
|
|
|
|
|
|
|
966 |
msgid "Your Activity"
|
967 |
msgstr "Deine Aktivität"
|
968 |
|
969 |
+
#: views/b2s/dashboard.php:31
|
970 |
msgid "List"
|
971 |
msgstr "Liste"
|
972 |
|
973 |
+
#: views/b2s/dashboard.php:32
|
974 |
msgid "Chart"
|
975 |
msgstr "Diagramm"
|
976 |
|
977 |
+
#: views/b2s/dashboard.php:60
|
978 |
msgid "Follow us"
|
979 |
msgstr "Folge uns"
|
980 |
|
981 |
+
#: views/b2s/network.php:25 views/b2s/network.php:26 views/b2s/post.calendar.php:225 views/b2s/post.calendar.php:226 views/prg/post.php:26 views/prg/post.php:27 views/b2s/html/post.navbar.php:26 views/b2s/html/post.navbar.php:27
|
|
|
|
|
|
|
982 |
msgid "filter"
|
983 |
msgstr "Filter"
|
984 |
|
985 |
+
#: views/b2s/network.php:32 views/b2s/network.php:35 views/b2s/network.php:81
|
986 |
msgid "Create new network collection"
|
987 |
msgstr "Neue Netzwerkgruppierung anlegen"
|
988 |
|
989 |
+
#: views/b2s/network.php:34
|
990 |
msgid "You want to define a new combination of networks?"
|
991 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
992 |
|
993 |
+
#: views/b2s/network.php:35 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:159 includes/B2S/Ship/Image.php:87 includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:42
|
|
|
|
|
|
|
994 |
msgid "PRO"
|
995 |
msgstr "PRO"
|
996 |
|
997 |
+
#: views/b2s/network.php:39 views/b2s/partials/post-edit-modal.php:97
|
998 |
msgid "Delete"
|
999 |
msgstr "Löschen"
|
1000 |
|
1001 |
+
#: views/b2s/network.php:48 views/b2s/ship.php:74 views/b2s/ship.php:368 views/b2s/html/footer.php:207
|
|
|
1002 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1003 |
+
msgstr "Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten Manager benutzen?"
|
|
|
|
|
1004 |
|
1005 |
+
#: views/b2s/network.php:49 views/b2s/ship.php:75
|
1006 |
msgid "Load Best Times"
|
1007 |
msgstr "Lade beste Zeiten"
|
1008 |
|
1009 |
+
#: views/b2s/network.php:87
|
1010 |
msgid "create"
|
1011 |
msgstr "erstellen"
|
1012 |
|
1013 |
+
#: views/b2s/network.php:103
|
1014 |
msgid "Delete Profile"
|
1015 |
msgstr "Profil löschen"
|
1016 |
|
1017 |
+
#: views/b2s/network.php:106
|
1018 |
msgid "Do you really want to delete this profile"
|
1019 |
msgstr "Soll Dein Profil wirklich gelöscht werden?"
|
1020 |
|
1021 |
+
#: views/b2s/network.php:121 views/b2s/premium.php:127
|
1022 |
msgid "Google My Business"
|
1023 |
msgstr "Google My Business"
|
1024 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
#: views/b2s/network.php:124
|
1026 |
+
msgid "Blog2Social uses the official Google My Business API to share your content on your business listing. You can connect Google My Business listings with up to nine different locations to Blog2Social and you can choose which location you want to share your content on."
|
|
|
|
|
|
|
|
|
1027 |
msgstr ""
|
1028 |
+
"Blog2Social nutzt die offizielle Google My Business API um Ihre Blogbeiträge an Ihren Brancheneintrag zu versenden. Sie können Brancheneinträge mit bis zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf welchem Standort Ihr Content geteilt werden "
|
1029 |
+
"soll."
|
1030 |
+
|
1031 |
+
#: views/b2s/network.php:127
|
1032 |
+
msgid "Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings."
|
1033 |
+
msgstr "Google erlaubt derzeit den Zugriff auf die API für alle Unternehmen mit bis zu 9 Standorten. Google plant, den Zugriff auf die API in Zukunft auch auf Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My Business Brancheneinträgen zu erweitern."
|
1034 |
|
1035 |
+
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:490 includes/B2S/Ship/Item.php:1049 views/b2s/partials/post-edit-modal.php:48
|
|
|
1036 |
msgid "Learn more"
|
1037 |
msgstr "Mehr erfahren"
|
1038 |
|
1039 |
+
#: views/b2s/network.php:143
|
1040 |
msgid "Delete Authorization"
|
1041 |
msgstr "Autorisierung löschen"
|
1042 |
|
1043 |
+
#: views/b2s/network.php:152
|
1044 |
msgid "Do you really want to delete this authorization"
|
1045 |
msgstr "Soll die Autorisierung wirklich gelöscht werden?"
|
1046 |
|
1047 |
+
#: views/b2s/network.php:155
|
1048 |
msgid "You have still set up scheduled posts for this network:"
|
1049 |
+
msgstr "Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
|
|
1050 |
|
1051 |
+
#: views/b2s/network.php:156
|
1052 |
msgid "This network connection is still assigned to other users."
|
1053 |
msgstr "Diese Netzwerkverbindung ist anderen Blog-Nutzern zugeordnet."
|
1054 |
|
1055 |
+
#: views/b2s/network.php:157
|
1056 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
1057 |
+
msgstr "Der Benutzer, dem die Verbindung zugewiesen ist, hat noch geplante Beiträge."
|
|
|
1058 |
|
1059 |
+
#: views/b2s/network.php:160
|
1060 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1061 |
msgstr "Alle geplanten Beiträge für diesen Account unwiderruflich löschen."
|
1062 |
|
1063 |
+
#: views/b2s/network.php:160
|
1064 |
msgid "scheduled posts"
|
1065 |
msgstr "geplante Beiträge"
|
1066 |
|
1067 |
+
#: views/b2s/network.php:161
|
1068 |
+
msgid "The connection is still assigned to other users. Please withdraw the assigned connection from other users first."
|
1069 |
+
msgstr "Die Verbindung ist noch anderen Benutzern zugeordnet. Bitte entfernen Sie zuerst die zugewiesene Verbindung von anderen Benutzern."
|
|
|
|
|
|
|
|
|
1070 |
|
1071 |
+
#: views/b2s/network.php:162
|
1072 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1073 |
+
msgstr "Lösche alle geplanten Beiträge von allen Benutzern, die diese Verbindung nutzen."
|
|
|
|
|
1074 |
|
1075 |
+
#: views/b2s/network.php:174
|
1076 |
msgid "View schedule posts"
|
1077 |
msgstr "Geplante Beiträge anzeigen"
|
1078 |
|
1079 |
+
#: views/b2s/network.php:193
|
1080 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
1081 |
+
msgstr "Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
|
|
|
1082 |
|
1083 |
+
#: views/b2s/network.php:194
|
1084 |
msgid "Change successful"
|
1085 |
msgstr "Change successful"
|
1086 |
|
1087 |
+
#: views/b2s/network.php:195
|
1088 |
msgid "Could not be changed"
|
1089 |
msgstr "Could not be changed"
|
1090 |
|
1091 |
+
#: views/b2s/network.php:203
|
1092 |
msgid "modfiy"
|
1093 |
msgstr "modify"
|
1094 |
|
1095 |
+
#: views/b2s/network.php:218 includes/B2S/Network/Item.php:162 includes/B2S/Network/Item.php:162
|
|
|
1096 |
msgid "Edit Post Template"
|
1097 |
msgstr "Beitragsvorlage bearbeiten"
|
1098 |
|
1099 |
+
#: views/b2s/network.php:230 views/b2s/settings.php:49 includes/B2S/Network/Item.php:536 includes/B2S/Settings/Item.php:134
|
|
|
1100 |
msgid "save"
|
1101 |
msgstr "speichern"
|
1102 |
|
1103 |
+
#: views/b2s/network.php:242
|
1104 |
msgid "Instant Caching for Link Posts"
|
1105 |
msgstr "Instant Caching für Link-Beiträge"
|
1106 |
|
1107 |
+
#: views/b2s/network.php:245
|
1108 |
+
msgid "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 link posts to ensure that the network always pulls the current meta data of your blog post."
|
|
|
|
|
|
|
|
|
1109 |
msgstr ""
|
1110 |
+
"Bitte aktiviere diese Funktion, wenn Du varnish caching (HTTP-Beschleuniger zur Entlastung Deiner Website) nutzt. Blog2Social hängt dann bei Deinen Link-Beiträgen den “no-cache=1” Parameter an die Beitrags-URL, um sicherzustellen, dass das Netzwerk immer die aktuellen Meta "
|
1111 |
+
"Daten Deines Blogbeitrags zieht."
|
|
|
|
|
1112 |
|
1113 |
+
#: views/b2s/network.php:256
|
1114 |
msgid "Choose your Post Format"
|
1115 |
msgstr "Wähle Dein Postformat "
|
1116 |
|
1117 |
+
#: views/b2s/network.php:260 views/b2s/network.php:263 views/b2s/network.php:266
|
1118 |
+
msgid "Decide in which post format you want to post your content: Link post or image post."
|
1119 |
+
msgstr "Entscheide, in welchem Format Du Deine Inhalte veröffentlichen möchtest: Link-Beitrag oder Bild-Beitrag."
|
|
|
|
|
|
|
|
|
|
|
1120 |
|
1121 |
+
#: views/b2s/network.php:269
|
1122 |
+
msgid "Decide in wich form you want to post your Content. Either as image with frame, or as image cut out."
|
1123 |
+
msgstr " Entscheide, in welcher Form Du Deine Inhalte veröffentlichen möchtest. Entweder als Bild mit Rahmen oder als Bildausschnitt."
|
|
|
|
|
|
|
|
|
1124 |
|
1125 |
+
#: views/b2s/network.php:281
|
1126 |
msgid "Post Content"
|
1127 |
msgstr "Post-Inhalt"
|
1128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1129 |
#: views/b2s/network.php:284
|
1130 |
+
msgid "Edit the content of your post. Move elements by drag and drop into the textarea and customize them as you like."
|
1131 |
+
msgstr "Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in das Textfeld und passe sie nach Deinen Wünschen an."
|
1132 |
+
|
1133 |
+
#: views/b2s/network.php:287
|
1134 |
msgid "Legend"
|
1135 |
msgstr "Legende"
|
1136 |
|
1137 |
+
#: views/b2s/network.php:289
|
1138 |
msgid "The title of your post"
|
1139 |
msgstr "Der Titel deines Beitrags."
|
1140 |
|
1141 |
+
#: views/b2s/network.php:290
|
1142 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1143 |
+
msgstr " Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü deines Beitrags festgelegt)."
|
|
|
|
|
1144 |
|
1145 |
+
#: views/b2s/network.php:291
|
1146 |
msgid "The content of your post"
|
1147 |
msgstr "Der Inhalt Deines Beitrags."
|
1148 |
|
1149 |
+
#: views/b2s/network.php:292
|
1150 |
msgid "The tags you have set in your post."
|
1151 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
1152 |
|
1153 |
+
#: views/b2s/network.php:293
|
1154 |
msgid "The name of the post author."
|
1155 |
msgstr "Der Name des Autors Deines Beitrags."
|
1156 |
|
1157 |
+
#: views/b2s/network.php:306 includes/B2S/Network/Item.php:692
|
1158 |
msgid "Character limit"
|
1159 |
msgstr "Zeichenbegrenzung"
|
1160 |
|
1161 |
+
#: views/b2s/network.php:309
|
1162 |
+
msgid "Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" individually. Your text will be shortened after the last comma, period, or space character within your character limit."
|
1163 |
+
msgstr "Lege das Zeichenlimit für die Variablen \"Textauszug\" (EXCERPT) und \"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
|
|
|
|
|
|
|
|
|
|
|
|
1164 |
|
1165 |
+
#: views/b2s/network.php:310
|
1166 |
+
msgid "An \"EXCERPT\" will only be added to your social media post if you have added a manual excerpt in the excerpt editing box of the Gutenberg side menu (document settings) of your post."
|
1167 |
+
msgstr "Ein “Textauszug” wird nur in Deinen Social-Media-Beitrag eingefügt, wenn Du einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü (Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. "
|
|
|
|
|
|
|
|
|
|
|
|
|
1168 |
|
1169 |
+
#: views/b2s/network.php:311
|
1170 |
msgid ""
|
1171 |
+
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the \"TITLE\" and \"KEYWORD\" variables for your social media posts, the character limit you define for the \"EXCERPT\" and/or \"CONTENT\" variables will be applied within the remaining available "
|
1172 |
+
"character limit of the social network."
|
|
|
|
|
|
|
1173 |
msgstr ""
|
1174 |
+
"“TITLE” und “KEYWORDS” (Hashtags) werden nicht gekürzt. Wenn Du die Variablen “TITLE” und “KEYWORD” für Deine Social-Media-Posts auswählst, wird die von Dir definierte Zeichenanzahl für die Variablen \"Textauszug\" und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren "
|
1175 |
+
"Zeichenanzahl des jeweiligen Social Networks berücksichtigt."
|
|
|
|
|
|
|
1176 |
|
1177 |
+
#: views/b2s/network.php:322 views/b2s/ship.php:565
|
1178 |
msgid "Connect with Pinterest"
|
1179 |
msgstr "Mit Pinterest verbinden"
|
1180 |
|
1181 |
+
#: views/b2s/network.php:330 views/b2s/ship.php:573
|
1182 |
msgid ""
|
1183 |
+
"Please make sure to use your original Pinterest login data (email and password). Social Login via Facebook or Google login data will not work here. Please also check if the two-factor authentication in Pinterest is deactivated to ensure a stable connection to Blog2Social."
|
|
|
|
|
|
|
1184 |
msgstr ""
|
1185 |
+
"Bitte achte darauf, dass Du nur Deine direkten Pinterest Login-Daten verwendest. Melde Dich nicht über Facebook oder Google an. Bitte prüfe auch, dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine stabile Verbindung zu Blog2Social sicherzustellen."
|
|
|
|
|
|
|
1186 |
|
1187 |
+
#: views/b2s/network.php:331 views/b2s/ship.php:574
|
1188 |
msgid "An error occurred! Please try again."
|
1189 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
1190 |
|
1191 |
+
#: views/b2s/network.php:332 views/b2s/network.php:333 views/b2s/ship.php:575 views/b2s/ship.php:576
|
|
|
1192 |
#, php-format
|
1193 |
+
msgid "You want to connect an additional account? <a target=\"_blank\" href=\"%s\">Upgrade to Blog2Social Premium</a>"
|
1194 |
+
msgstr "Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" href=\"%s\">Upgrade auf Blog2Social Premium</a>"
|
|
|
|
|
|
|
|
|
1195 |
|
1196 |
+
#: views/b2s/network.php:334 views/b2s/ship.php:577
|
1197 |
msgid "Invalid Data! Please try again."
|
1198 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
1199 |
|
1200 |
+
#: views/b2s/network.php:335 views/b2s/ship.php:578
|
1201 |
+
msgid "You have not yet created any pinboards in your Pinterest account. Please set up at least one pinboard to pin on your Pinterest account!"
|
1202 |
+
msgstr "Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
|
|
|
|
|
|
|
|
|
1203 |
|
1204 |
+
#: views/b2s/network.php:336 views/b2s/ship.php:579
|
1205 |
#, php-format
|
1206 |
+
msgid "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>"
|
1207 |
+
msgstr "Die Anmeldung ist fehlgeschlagen. Bitte überprüfe Deine Logindaten auf Tippfehler und prüfe in Deinen Pinterest Einstellungen, ob die Zwei-Faktor-Authentifizierung für dieses Konto deaktiviert ist: <a target=\"_blank\" href=\"%s\">%s</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1208 |
|
1209 |
+
#: views/b2s/network.php:337 views/b2s/ship.php:580
|
1210 |
msgid "Pinterest has rejected the connection to your blog"
|
1211 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
1212 |
|
1213 |
+
#: views/b2s/network.php:338 views/b2s/ship.php:581
|
1214 |
msgid "Please select your currect server location and connect again"
|
1215 |
+
msgstr "Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut"
|
|
|
1216 |
|
1217 |
+
#: views/b2s/network.php:339 views/b2s/ship.php:582
|
1218 |
+
msgid "Access to this resource on your server is denied! Please check your webserver configuration for caching."
|
1219 |
+
msgstr "Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
|
|
|
|
|
|
|
|
1220 |
|
1221 |
+
#: views/b2s/network.php:340 views/b2s/ship.php:583
|
1222 |
+
msgid "Login up successful. Please confirm that Blog2Social is allowed to publish on your profile."
|
1223 |
+
msgstr "Anmeldung erfolgreich. Bitte bestätige, dass Blog2Social auf Deinem Profil veröffentlichen darf."
|
|
|
|
|
|
|
|
|
1224 |
|
1225 |
+
#: views/b2s/network.php:342 views/b2s/ship.php:585 views/b2s/html/header.php:336 views/prg/html/form.php:141 views/prg/html/form.php:143 views/prg/html/form.php:218 views/prg/html/form.php:220
|
|
|
|
|
|
|
1226 |
msgid "E-Mail"
|
1227 |
msgstr "E-Mail"
|
1228 |
|
1229 |
+
#: views/b2s/network.php:348 views/b2s/ship.php:591 views/prg/login.php:25
|
1230 |
msgid "Password"
|
1231 |
msgstr "Passwort"
|
1232 |
|
1233 |
+
#: views/b2s/network.php:359 views/b2s/ship.php:602
|
1234 |
msgid "Server-Location"
|
1235 |
msgstr "Serverstandort"
|
1236 |
|
1237 |
+
#: views/b2s/network.php:373 views/b2s/ship.php:616
|
1238 |
msgid "Select Pinboard"
|
1239 |
msgstr "Pinnwand auswählen"
|
1240 |
|
1241 |
+
#: views/b2s/network.php:381 views/b2s/ship.php:624 includes/B2S/Settings/Item.php:91
|
|
|
1242 |
msgid "authorize"
|
1243 |
msgstr "autorisieren"
|
1244 |
|
1245 |
+
#: views/b2s/network.php:382 views/b2s/ship.php:625
|
1246 |
msgid "confirm"
|
1247 |
msgstr "bestätigen"
|
1248 |
|
1249 |
+
#: views/b2s/network.php:396
|
1250 |
msgid "Advanced Network Settings"
|
1251 |
msgstr "Erweiterte Netzwerkeinstellungen"
|
1252 |
|
1253 |
+
#: views/b2s/network.php:408 views/b2s/network.php:505
|
1254 |
msgid "URL Parameters"
|
1255 |
msgstr "URL-Parameter"
|
1256 |
|
1257 |
+
#: views/b2s/network.php:409
|
1258 |
msgid "The parameters could not be saved. Please try again."
|
1259 |
+
msgstr "Die Parameter konnten nicht gespeichert werden. Bitte versuchen Sie es noch einmal."
|
|
|
|
|
1260 |
|
1261 |
+
#: views/b2s/network.php:410 views/b2s/network.php:425 views/b2s/network.php:457 views/b2s/network.php:460 views/b2s/network.php:463
|
|
|
|
|
1262 |
msgid "An error occured. Please contact our support."
|
1263 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
1264 |
|
1265 |
+
#: views/b2s/network.php:417 views/b2s/network.php:514
|
1266 |
msgid "Network collection"
|
1267 |
msgstr "Netzwerkgruppierung"
|
1268 |
|
1269 |
+
#: views/b2s/network.php:420 views/b2s/network.php:517
|
1270 |
msgid "Move the connection to another network collection."
|
1271 |
msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
1272 |
|
1273 |
+
#: views/b2s/network.php:432 views/b2s/network.php:524
|
1274 |
msgid "move"
|
1275 |
msgstr "verschieben"
|
1276 |
|
1277 |
+
#: views/b2s/network.php:440
|
1278 |
msgid "You need at least one network collection"
|
1279 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
1280 |
|
1281 |
+
#: views/b2s/network.php:449 views/b2s/network.php:531
|
1282 |
msgid "Team Management"
|
1283 |
msgstr "Team-Management"
|
1284 |
|
1285 |
+
#: views/b2s/network.php:452 views/b2s/network.php:534
|
1286 |
msgid "Assign the connection to other blog users"
|
1287 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
1288 |
|
1289 |
+
#: views/b2s/network.php:466
|
1290 |
msgid "You don't have a Business License"
|
1291 |
msgstr "Du hast keine Business-Lizenz"
|
1292 |
|
1293 |
+
#: views/b2s/network.php:469
|
1294 |
msgid "This user don't have a Business License, or it is not the same"
|
1295 |
+
msgstr "Dieser Benutzer hat keine Business-Lizenz oder nutzt nicht dieselbe Lizenz"
|
|
|
1296 |
|
1297 |
+
#: views/b2s/network.php:472
|
1298 |
msgid "The connection has already been assigned to this user."
|
1299 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
1300 |
|
1301 |
+
#: views/b2s/network.php:475
|
1302 |
msgid "The connection dose not exist"
|
1303 |
msgstr "Diese Verbindung existiert nicht."
|
1304 |
|
1305 |
+
#: views/b2s/network.php:478
|
1306 |
msgid "This connection has already been assigned to this user."
|
1307 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
1308 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1309 |
#: views/b2s/network.php:481
|
1310 |
+
msgid "You can only share the connection with blog users who use the same license as you."
|
1311 |
+
msgstr "Du kannst Deine Verbindung nur mit Blog-Benutzern teilen, die dieselbe Lizenz verwenden wie Du."
|
1312 |
+
|
1313 |
+
#: views/b2s/network.php:484
|
1314 |
msgid "There are no other users to whom the connection can be assigned."
|
1315 |
+
msgstr "Es sind keine weiteren Benutzer vorhanden, denen die Verbindung zugewiesen werden kann."
|
|
|
|
|
1316 |
|
1317 |
+
#: views/b2s/network.php:487 views/b2s/network.php:537
|
1318 |
msgid "assign"
|
1319 |
msgstr "zuweisen"
|
1320 |
|
1321 |
+
#: views/b2s/network.php:488
|
1322 |
msgid "Apply best time settings"
|
1323 |
msgstr "Beste Zeiten verwenden"
|
1324 |
|
1325 |
+
#: views/b2s/network.php:489
|
1326 |
msgid "Apply post template settings"
|
1327 |
msgstr "Beitragsvorlagen verwenden"
|
1328 |
|
1329 |
+
#: views/b2s/network.php:490
|
1330 |
msgid "Apply URL Parameters"
|
1331 |
msgstr "URL-Parameter verwenden"
|
1332 |
|
1333 |
+
#: views/b2s/network.php:501
|
1334 |
msgid ""
|
1335 |
+
"Upgrade to Blog2Social Business to easily bundle your connections into network collection and assign your social media connections to other blog users. You can update and delete the connections as well as select forums or boards. Other users will be able to use the social "
|
1336 |
+
"media connection you assigned to them to post and schedule to your social media profile, page or group."
|
|
|
|
|
|
|
|
|
1337 |
msgstr ""
|
1338 |
+
"Update auf Blog2Social Business, um Deine Verbindungen einfach in eine Netzwerkgruppierung zu verschieben und Deine Social Media-Verbindungen anderen Blog-Benutzern zuzuweisen. Du kannst die Verbindungen aktualisieren und löschen, sowie Foren oder Pinnwände auswählen. Andere "
|
1339 |
+
"Benutzer können die von Dir zugewiesenen Social-Media-Verbindungen verwenden, um Beiträge auf Deinem Social-Media-Profil, Deiner Seite oder Gruppe zu veröffentlichen oder vorzuplanen."
|
1340 |
+
|
1341 |
+
#: views/b2s/network.php:502
|
|
|
|
|
|
|
|
|
|
|
1342 |
msgid "Upgrade to Blog2Social Business"
|
1343 |
msgstr "Upgrade auf Blog2Social Business"
|
1344 |
|
1345 |
+
#: views/b2s/network.php:506 includes/B2S/Network/Item.php:506
|
1346 |
#, php-format
|
1347 |
+
msgid "Define parameters that will be added to link posts on this network e.g. to create tracking links with UTM paramters. <a target=\"_blank\" href=\"%s\">More information</a>"
|
1348 |
+
msgstr "Definiere Parameter, die bei Posts auf diesem Netzwerk zu Deinem Link hinzugefügt werden sollen z. B. um Tracking-Links mit UTM-Parametern zu erstellen. <a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
1349 |
|
1350 |
+
#: views/b2s/network.php:522 includes/B2S/Ship/Navbar.php:37
|
1351 |
msgid "My Profile"
|
1352 |
msgstr "Mein Profil"
|
1353 |
|
1359 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1360 |
msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
1361 |
|
1362 |
+
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:81 views/b2s/post.publish.php:81 views/b2s/post.sched.php:95 views/b2s/repost.php:87 views/b2s/widgets/posts.php:63
|
|
|
|
|
1363 |
msgid "Number of entries"
|
1364 |
msgstr "Anzahl der Einträge"
|
1365 |
|
1367 |
msgid "Sort by network"
|
1368 |
msgstr "Sortiere nach Netzwerk"
|
1369 |
|
1370 |
+
#: views/b2s/post.calendar.php:37 includes/B2S/Calendar/Filter.php:127
|
1371 |
msgid "show all"
|
1372 |
msgstr "alles anzeigen"
|
1373 |
|
1374 |
+
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:18 includes/B2S/Post/Filter.php:58 includes/B2S/Post/Item.php:338 includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
|
|
|
|
1375 |
msgid "scheduled"
|
1376 |
msgstr "geplant"
|
1377 |
|
1378 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Network/Item.php:640 includes/B2S/Network/Item.php:643 includes/B2S/Settings/Item.php:240 views/b2s/html/footer.php:128
|
|
|
|
|
1379 |
msgid "Image with frame"
|
1380 |
msgstr "Bild mit Rahmen"
|
1381 |
|
1382 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Network/Item.php:641 includes/B2S/Network/Item.php:644 includes/B2S/Settings/Item.php:254 views/b2s/html/footer.php:133
|
|
|
|
|
1383 |
msgid "Image cut out"
|
1384 |
msgstr "Bild zuschneiden"
|
1385 |
|
1386 |
+
#: views/b2s/post.calendar.php:87 views/b2s/post.sched.php:172 views/b2s/repost.php:56
|
1387 |
msgid "add post"
|
1388 |
msgstr "Beitrag hinzufügen"
|
1389 |
|
1390 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130 views/b2s/repost.php:104 views/b2s/ship.php:503
|
|
|
1391 |
msgid "Choose your"
|
1392 |
msgstr "Wähle Deinen"
|
1393 |
|
1394 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130 views/b2s/repost.php:104 views/b2s/ship.php:503
|
|
|
1395 |
msgid "Post Format"
|
1396 |
msgstr "Postformat"
|
1397 |
|
1398 |
+
#: views/b2s/post.calendar.php:112 views/b2s/post.sched.php:132 views/b2s/repost.php:106 views/b2s/ship.php:505
|
|
|
1399 |
msgid "for:"
|
1400 |
msgstr "für:"
|
1401 |
|
1402 |
+
#: views/b2s/post.calendar.php:131 views/b2s/post.sched.php:151 views/b2s/repost.php:125 views/b2s/ship.php:523
|
1403 |
+
msgid "Define the default settings for the custom post format for all of your Facebook accounts in the Blog2Social settings."
|
1404 |
+
msgstr "Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in den Blog2Social Einstellungen."
|
|
|
|
|
|
|
|
|
|
|
1405 |
|
1406 |
+
#: views/b2s/post.calendar.php:134 views/b2s/post.sched.php:154 views/b2s/repost.php:128 views/b2s/ship.php:526
|
1407 |
+
msgid "Define the default settings for the custom post format for all of your Twitter accounts in the Blog2Social settings."
|
1408 |
+
msgstr "Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen unter den Blog2Social Einstellungen."
|
|
|
|
|
|
|
|
|
|
|
1409 |
|
1410 |
+
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:157 views/b2s/repost.php:131 views/b2s/ship.php:529
|
1411 |
+
msgid "Define the default settings for the custom post format for all of your LinkedIn accounts in the Blog2Social settings."
|
1412 |
+
msgstr "Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen unter den Blog2Social Einstellungen."
|
|
|
|
|
|
|
|
|
|
|
1413 |
|
1414 |
+
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:160 views/b2s/repost.php:134 views/b2s/ship.php:532
|
1415 |
+
msgid "Define the default settings for the custom post format for all of your Instagram accounts in the Blog2Social settings."
|
1416 |
+
msgstr "Definiere die Standardeinstellungen für das benutzerdefinierte Postformat für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
|
|
|
|
|
|
|
|
|
|
1417 |
|
1418 |
+
#: views/b2s/post.calendar.php:155 views/b2s/post.sched.php:111 views/b2s/repost.php:149 views/b2s/ship.php:444
|
|
|
1419 |
msgid "Select image for"
|
1420 |
msgstr "Wähle Bild aus für"
|
1421 |
|
1447 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1448 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1449 |
|
1450 |
+
#: views/b2s/post.favorites.php:67 includes/B2S/Post/Item.php:344
|
1451 |
msgid "You have not saved any favorites."
|
1452 |
msgstr "Du hast keine Favoriten gespeichert."
|
1453 |
|
1454 |
+
#: views/b2s/post.notice.php:76 views/b2s/post.publish.php:76 views/b2s/widgets/posts.php:58
|
|
|
1455 |
msgid "Delete entries from the reporting"
|
1456 |
msgstr "Einträge aus dem Reporting löschen"
|
1457 |
|
1458 |
+
#: views/b2s/post.notice.php:79 views/b2s/post.publish.php:79 views/b2s/widgets/posts.php:61
|
|
|
1459 |
msgid "You are sure, you want to delete entries from the reporting?"
|
1460 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
1461 |
|
1463 |
msgid "Uhr"
|
1464 |
msgstr "Uhr"
|
1465 |
|
1466 |
+
#: views/b2s/post.sched.php:90 views/b2s/repost.php:82
|
1467 |
msgid "Delete entries form the scheduling"
|
1468 |
msgstr "Einträge aus der Planung löschen"
|
1469 |
|
1470 |
+
#: views/b2s/post.sched.php:93 views/b2s/repost.php:85
|
1471 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
1472 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
1473 |
|
1474 |
+
#: views/b2s/premium.php:14 includes/B2S/AutoPost/Item.php:89
|
1475 |
msgid "Your current license:"
|
1476 |
msgstr "Deine aktuelle Lizenz:"
|
1477 |
|
1478 |
+
#: views/b2s/premium.php:26 views/b2s/html/sidebar.php:47 views/b2s/html/sidebar.ship.php:46
|
|
|
1479 |
msgid "Start your 30-day free Premium trial"
|
1480 |
msgstr "Teste Blog2Social Premium kostenlos"
|
1481 |
|
1483 |
msgid "End of Trial"
|
1484 |
msgstr "Ende der Testzeit"
|
1485 |
|
1486 |
+
#: views/b2s/premium.php:31 includes/B2S/AutoPost/Item.php:92 includes/B2S/AutoPost/Item.php:95 includes/B2S/RePost/Item.php:33
|
|
|
1487 |
msgid "Upgrade"
|
1488 |
msgstr "Upgrade"
|
1489 |
|
1490 |
#: views/b2s/premium.php:35
|
1491 |
+
msgid "Upgrade to Blog2Social Premium and get even smarter with social media automation: Schedule your posts for the best time or recurringly with the Best Time Manager or the Social Media Calendar. Post to pages, groups and multiple accounts per network."
|
|
|
|
|
|
|
|
|
1492 |
msgstr ""
|
1493 |
+
"Nutze Blog2Social Premium für noch intelligentere Social Media Automatisierung: Plane Deine Beiträge voll-automatisiert mit dem Beste-Zeiten-Manager, wähle bestimmte Termine oder plane Deine Beiträge regelmäßig. Behalte den Überblick über Deine Posts mit dem Social Media "
|
1494 |
+
"Kalender. Veröffentliche Beiträge auf Seiten, in Gruppen und auf mehreren Konten pro Netzwerk. Arbeite mit mehr Nutzern im Team. "
|
|
|
|
|
|
|
|
|
1495 |
|
1496 |
#: views/b2s/premium.php:41
|
1497 |
msgid "Select a user"
|
1511 |
|
1512 |
#: views/b2s/premium.php:61
|
1513 |
msgid "Go Premium and get even smarter with social media automation"
|
1514 |
+
msgstr "Das sind die Vorteile, von denen Sie mit Blog2Social Premium profitieren können"
|
|
|
|
|
1515 |
|
1516 |
#: views/b2s/premium.php:70
|
1517 |
msgid "Pages and groups"
|
1518 |
msgstr "Seiten und Gruppen"
|
1519 |
|
1520 |
#: views/b2s/premium.php:71
|
1521 |
+
msgid "Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and Medium."
|
1522 |
+
msgstr "Teile Deine Beiträge auf Seiten und in Gruppen auf Facebook, LinkedIn, Xing, VK und Medium."
|
|
|
|
|
|
|
|
|
1523 |
|
1524 |
#: views/b2s/premium.php:79
|
1525 |
msgid "More users and accounts"
|
1526 |
msgstr "Mehr Benutzer und Accounts"
|
1527 |
|
1528 |
#: views/b2s/premium.php:80
|
1529 |
+
msgid "Add multiple users and accounts per network. Define sharing-profiles for selected network bundles."
|
1530 |
+
msgstr "Füge mehrere Benutzer und Accounts pro Netzwerk hinzu. Definiere Sharing-Profile für ausgewählte Netzwerk-Bundles."
|
|
|
|
|
|
|
|
|
1531 |
|
1532 |
#: views/b2s/premium.php:88
|
1533 |
msgid "Social Media Calendar"
|
1534 |
msgstr "Social Media Kalender"
|
1535 |
|
1536 |
#: views/b2s/premium.php:89
|
1537 |
+
msgid "See your entire schedule at a glance, with team view and network filter. Edit scheduled posts or add new social media posts per drag & drop."
|
1538 |
+
msgstr "Sieh Deinen gesamten Zeitplan auf einen Blick, mit Teamansicht und Netzwerkfilter. Bearbeite geplante Beiträge oder füge neue Social-Media-Beiträge per Drag & Drop hinzu."
|
|
|
|
|
|
|
|
|
|
|
1539 |
|
1540 |
#: views/b2s/premium.php:97
|
1541 |
msgid "Best Times Manager"
|
1542 |
msgstr "Beste Zeiten Manager"
|
1543 |
|
1544 |
#: views/b2s/premium.php:98
|
1545 |
+
msgid "Use the Best Times Manager to schedule your posts automatically or define your own best time scheme."
|
1546 |
+
msgstr "Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen oder Dein eigenes bestes Zeitschema zu definieren."
|
|
|
|
|
|
|
|
|
1547 |
|
1548 |
+
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:685 includes/B2S/Post/Item.php:826
|
|
|
1549 |
msgid "Auto-Posting"
|
1550 |
msgstr "Auto-Posting"
|
1551 |
|
1552 |
#: views/b2s/premium.php:110
|
1553 |
+
msgid "Share your posts automatically across your preferred networks at once or at your pre-scheduled time-settings."
|
1554 |
+
msgstr "Teile Deine Beiträge automatisch in Deinen bevorzugten Netzwerken sofort oder zu den von Dir festgelegten Zeiten."
|
|
|
|
|
|
|
|
|
1555 |
|
1556 |
#: views/b2s/premium.php:118
|
1557 |
msgid "RSS import & auto-post"
|
1558 |
msgstr "RSS-Import & Auto-Poster"
|
1559 |
|
1560 |
#: views/b2s/premium.php:119
|
1561 |
+
msgid "Share imported RSS feeds automatically to get more variations for your content."
|
1562 |
+
msgstr "Teile importierte RSS-Feeds automatisch, um mehr Variationen für Deine Inhalte zu erhalten."
|
|
|
|
|
|
|
|
|
1563 |
|
1564 |
#: views/b2s/premium.php:128
|
1565 |
+
msgid "Schedule and share your blog posts as Google My Business posts to update your business listing and to add fresh content for your company."
|
1566 |
+
msgstr " Plane und teile Deine Blogartikel als Google My Business - Beiträge und verleihe Deinem Unternehmen mit aktullen News mehr Sichtbarkeit."
|
|
|
|
|
|
|
|
|
1567 |
|
1568 |
#: views/b2s/premium.php:136
|
1569 |
msgid "Schedule curated content"
|
1570 |
msgstr "Kuratierte Inhalte planen"
|
1571 |
|
1572 |
#: views/b2s/premium.php:137
|
1573 |
+
msgid "Schedule and share curated content from any source on your preferred networks."
|
1574 |
+
msgstr "Plane und teile kuratierte Inhalte aus beliebigen Quellen in Deinen bevorzugten Netzwerken."
|
|
|
|
|
|
|
|
|
1575 |
|
1576 |
#: views/b2s/premium.php:148
|
1577 |
msgid "Custom image"
|
1578 |
msgstr "Benutzerdefinierte Bilder"
|
1579 |
|
1580 |
#: views/b2s/premium.php:149
|
1581 |
+
msgid "Select individual images per post or network and select any image from your media library to create more variations for your posts."
|
1582 |
+
msgstr "Wähle individuelle Bilder pro Beitrag oder Netzwerk sowie ein beliebiges Bild aus Deiner Mediathek aus, um weitere Variationen für Deine Beiträge zu erstellen."
|
|
|
|
|
|
|
|
|
|
|
1583 |
|
1584 |
#: views/b2s/premium.php:157
|
1585 |
msgid "Custom format"
|
1586 |
msgstr "Benutzerdefiniertes Format"
|
1587 |
|
1588 |
#: views/b2s/premium.php:158
|
1589 |
+
msgid "Select link post or image post per network to choose the optimal format for your post."
|
1590 |
+
msgstr "Wähle zwischen Link- oder Bild-Post pro Netzwerk, um das optimale Format für Deinen Beitrag zu wählen"
|
|
|
|
|
|
|
|
|
1591 |
|
1592 |
#: views/b2s/premium.php:166
|
1593 |
msgid "Open Graph and Twitter Card Tags"
|
1594 |
msgstr "Open Graph und Twitter Card Tags"
|
1595 |
|
1596 |
#: views/b2s/premium.php:167
|
1597 |
+
msgid "Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and Twitter Cards to define the look of your link posts."
|
1598 |
+
msgstr "Setze und bearbeite Social-Media-Tags für Open Graph (z.B. Facebook und LinkedIn) und Twitter Cards, um das Aussehen Deiner Link-Posts festzulegen."
|
|
|
|
|
|
|
|
|
1599 |
|
1600 |
#: views/b2s/premium.php:175
|
1601 |
msgid "Premium support"
|
1613 |
msgid "Show all premium features"
|
1614 |
msgstr "Alle Premium-Features anzeigen"
|
1615 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1616 |
#: views/b2s/settings.php:32
|
1617 |
msgid "General"
|
1618 |
msgstr "Allgemein"
|
1621 |
msgid "Social Meta Data"
|
1622 |
msgstr "Social Meta Angaben"
|
1623 |
|
1624 |
+
#: views/b2s/settings.php:84
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1625 |
msgid "Allow shortcodes in my post"
|
1626 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
1627 |
|
1628 |
+
#: views/b2s/settings.php:87
|
1629 |
msgid ""
|
1630 |
+
"Shortcodes are used by some wordpress plugins like Elementor, Visual Composer and Content Builder. When a shortcode is inserted in a WordPress post or page, it is replaced with some other content when you publish the article on your blog. In other words, a shortcode instructs "
|
1631 |
+
"WordPress to find a special command that is placed in square brackets ([]) and replace it with the appropriate dynamic content by a plugin you use.<br><br>Activate this feature, if you should use dynamic elements in your articles."
|
|
|
|
|
|
|
|
|
|
|
1632 |
msgstr ""
|
1633 |
+
"Shortcodes werden von einigen WordPress-Plugins wie Elementor, Visual Composer und Content Builder verwendet. Wenn ein Shortcode in einem WordPress-Post oder einer Seite eingefügt wird, wird dieser dynamisch durch andere Inhalte ersetzt, wenn du Deinen Beitrag auf Deinem "
|
1634 |
+
"Wordpress veröffentlicht. Mit anderen Worten, ein Shortcode weist WordPress an, einen speziellen Befehl zu finden, der in eckige Klammern gesetzt wird ([]) und den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere diese Funktion, wenn Du dynamische "
|
1635 |
+
"Elemente in Deinen Beiträgen verwendest."
|
|
|
|
|
|
|
|
|
|
|
1636 |
|
1637 |
+
#: views/b2s/settings.php:98
|
1638 |
msgid "Include WordPress tags as hashtags in your posts"
|
1639 |
msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
1640 |
|
1641 |
+
#: views/b2s/settings.php:101
|
1642 |
msgid ""
|
1643 |
+
"Hashtags are a great way to generate more reach and visibility for your posts. By activating this feature Blog2Social will automatically include your WordPress tags as hashtags in all Social Media posts for networks that support hashtags. This way you don't need to worry "
|
1644 |
+
"about adding extra hashtags to your comments. Blog2Social erases unnecessary spaces in your WordPress tags to generate valid hashtags."
|
|
|
|
|
|
|
|
|
1645 |
msgstr ""
|
1646 |
+
"Hashtags sind eine großartige Möglichkeit, mehr Reichweite und Sichtbarkeit für Deine Social Media-Posts zu generieren. Wenn Du diese Funktion aktivierst, wird Blog2Social Deine WordPress-Tags automatisch als Hashtags in alle Social Media-Posts für Netzwerke, die Hashtags "
|
1647 |
+
"unterstützen, einfügen. Auf diese Weise brauchst Du Dir keine Gedanken mehr über das Hinzufügen zusätzlicher Hashtags zu machen. Blog2Social löscht unnötige Leerzeichen Deiner WordPress-Tags, um gültige Hashtags zu erstellen. "
|
|
|
|
|
|
|
|
|
|
|
1648 |
|
1649 |
+
#: views/b2s/settings.php:112
|
1650 |
msgid "Activate Legacy mode "
|
1651 |
msgstr "Kompatibilitätsmodus aktivieren"
|
1652 |
|
1653 |
+
#: views/b2s/settings.php:115
|
1654 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
1655 |
+
msgstr "Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu entlasten."
|
|
|
|
|
1656 |
|
1657 |
+
#: views/b2s/settings.php:126
|
1658 |
msgid "Instant Caching for Facebook Link Posts"
|
1659 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
1660 |
|
1661 |
+
#: views/b2s/settings.php:129
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1662 |
msgid ""
|
1663 |
+
"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."
|
|
|
1664 |
msgstr ""
|
1665 |
+
"Bitte aktiviere diese Funktion, wenn Du varnish caching (HTTP-Beschleuniger zur Entlastung Deiner Website) nutzt. Blog2Social hängt dann bei Deinen Facebook Link-Beiträgen den “no-cache=1” Parameter an die Beitrags-URL, um sicherzustellen, dass Facebook immer die aktuellen "
|
1666 |
+
"Meta Daten Deines Blogbeitrags zieht."
|
|
|
|
|
|
|
|
|
1667 |
|
1668 |
+
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:58 includes/B2S/Post/Item.php:338 includes/PRG/Post/Item.php:86
|
|
|
1669 |
msgid "draft"
|
1670 |
msgstr "Entwurf"
|
1671 |
|
1673 |
msgid "Social Media Scheduling & Sharing"
|
1674 |
msgstr "Beitrag auf Social Media planen und teilen"
|
1675 |
|
1676 |
+
#: views/b2s/ship.php:53 views/prg/ship.php:43 views/prg/ship.php:45 includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:170 includes/B2S/Settings/Item.php:191 views/prg/html/form.php:26 views/prg/html/form.php:28
|
|
|
|
|
|
|
1677 |
msgid "Title"
|
1678 |
msgstr "Titel"
|
1679 |
|
1680 |
+
#: views/b2s/ship.php:55 includes/B2S/Post/Item.php:394 includes/B2S/Post/Item.php:537
|
1681 |
msgid "on blog"
|
1682 |
msgstr "auf dem Blog"
|
1683 |
|
1693 |
msgid "Load My Times Settings"
|
1694 |
msgstr "Meine Zeit-Einstellungen laden"
|
1695 |
|
1696 |
+
#: views/b2s/ship.php:105 views/b2s/html/sidebar.php:134
|
1697 |
msgid "Social Accounts"
|
1698 |
msgstr "Social Media Konten"
|
1699 |
|
1727 |
|
1728 |
#: views/b2s/ship.php:217
|
1729 |
msgid "First, connect or select network before posting"
|
1730 |
+
msgstr "Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor Du den Beitrag teilst!"
|
|
|
|
|
1731 |
|
1732 |
#: views/b2s/ship.php:219
|
1733 |
msgid "connect"
|
1737 |
msgid "scroll to top"
|
1738 |
msgstr "zum Seitenanfang"
|
1739 |
|
1740 |
+
#: views/b2s/ship.php:228 views/b2s/ship.php:234 includes/B2S/Curation/View.php:113
|
|
|
1741 |
msgid "Share"
|
1742 |
msgstr "Teilen"
|
1743 |
|
1744 |
+
#: views/b2s/ship.php:229 views/b2s/ship.php:233 includes/B2S/Curation/View.php:110
|
|
|
1745 |
msgid "Save as Draft"
|
1746 |
msgstr "als Entwurf speichern"
|
1747 |
|
1763 |
|
1764 |
#: views/b2s/ship.php:305
|
1765 |
msgid ""
|
1766 |
+
"You can re-share your post for a different sharing purpose, or to share on a different choice of networks, profiles, pages or groups, or with different comments or images, or if you want to share your blog post images to image networks only, or re-share them at different "
|
1767 |
+
"times. You may vary your comments and images in order to produce more variations of your social media posts to share more often without sharing the same message over and over again. Whatever your choose to do for re-sharing your post, you can simply click \"Re-share this "
|
1768 |
+
"post\" and you will be led to the preview page where your can select your networks and edit your texts, comments or images according to your current sharing preferences."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1769 |
msgstr ""
|
1770 |
+
"Du kannst diesen Blogbeitrag erneut teilen, zum Beispiel, um diesen Beitrag auf einer anderen Auswahl an Netzwerken oder nur auf bestimmten Profilen, Seiten und Gruppen neu zu teilen, oder mit anderen Kommentaren, Bildern und Texten nur auf bestimmten Netzwerke zu teilen, "
|
1771 |
+
"oder um weitere Bilder zum Blogbeitrag nur an die Bilder-Netzwerke zu senden, oder um Deine Social Media Posts zu anderen Zeiten zu teilen. So erzielt Du mehr Variationen Deiner Social Media Posts und kannst Deinen Beitrag öfters posten, um mehr Aufmerksamkeit und Reichweite "
|
1772 |
+
"zu erzielen, ohne immer wieder die gleiche Mitteilung zu posten. Was auch immer Du zu teilen wünscht, klicke einfach auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1773 |
|
1774 |
#: views/b2s/ship.php:308
|
1775 |
msgid "You want re-share your blog post?"
|
1781 |
|
1782 |
#: views/b2s/ship.php:339
|
1783 |
msgid ""
|
1784 |
+
"You can save your current network settings as \"Standard\" network settings for any future sharing activities or as a \"Profile\" to choose from (Premium).<br><br>Your Standard selection will show as activated upon pressing the \"share on social media\" button on the right "
|
1785 |
+
"hand side bar. You can change these settings any time per click, or choose another network profile (Premium).<br><br>You can also pre-define various different sets of networks, for specific social media accounts, target groups, contents or sharing purposes. For example you "
|
1786 |
+
"can define a specific set of networks for sharing your posts images only or for re-sharing your evergreen content on a recurring basis. On the preview-page you may edit your selected or pre-selected networks anytime by simply clicking on the respective network account to "
|
1787 |
+
"select or remove an account from the current sharing scheme."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1788 |
msgstr ""
|
1789 |
+
"Du kannst die aktuelle Netzwerk-Auswahl als \"Standard\" Einstellungen speichern. Diese Netzwerke werden dann als aktiviert auf der rechten Seitennavigation angezeigt, wenn Du den Button \"Auf Social Media teilen\" klickst, oder Du kannst die Einstellungen in einem neuen "
|
1790 |
+
"Netzwerk Profil speichern (Premium).<br><br>Du kannst diesen Blogbeitrag erneut teilen, zum Beispiel, um diesen Beitrag auf einer anderen Auswahl an Netzwerken oder nur auf bestimmten Profilen, Seiten und Gruppen neu zu teilen, oder mit anderen Kommentaren, Bildern und Texten "
|
1791 |
+
"nur auf bestimmten Netzwerke zu teilen, oder um weitere Bilder zum Blogbeitrag nur an die Bilder-Netzwerke zu senden, oder um Deine Social Media Posts zu anderen Zeiten zu teilen. So erzielt Du mehre Variationen Deiner Social Media Posts und kannst Deinen Beitrag öfters "
|
1792 |
+
"posten, um mehr Aufmerksamkeit und Reichweite zu erzielen, ohne immer wieder die gleiche Mitteilung zu posten. Was auch immer Du zu teilen wünscht, klicken Sie einfach auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, wo Du Deine Netzwerke, Texte "
|
1793 |
+
"und Bilder wählen oder variieren kannst. "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1794 |
|
1795 |
#: views/b2s/ship.php:351
|
1796 |
msgid "Your blog post is not yet published on your Wordpress!"
|
1798 |
|
1799 |
#: views/b2s/ship.php:354
|
1800 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
1801 |
+
msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
|
|
1802 |
|
1803 |
#: views/b2s/ship.php:358
|
1804 |
msgid "Schedule your post"
|
1817 |
msgstr "Entwurf überschreiben"
|
1818 |
|
1819 |
#: views/b2s/ship.php:550
|
1820 |
+
msgid "There is already a saved draft for this WordPress post or page. If you save a new draft it will overwrite the old draft. Are you sure you want to overwrite your draft?"
|
1821 |
+
msgstr "Es gibt bereits einen gespeicherten Entwurf für diesen WordPress-Beitrag/Seite. Wenn Du einen neuen Entwurf speicherst, wird der alte Entwurf damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben möchtest?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1822 |
|
1823 |
#: views/b2s/ship.php:646
|
1824 |
msgid "add Schedule"
|
1828 |
msgid "Give me more information"
|
1829 |
msgstr "Erhalte mehr Infomationen"
|
1830 |
|
1831 |
+
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:701 includes/B2S/Ship/Save.php:438
|
|
|
1832 |
msgid "FAQ"
|
1833 |
msgstr "FAQ"
|
1834 |
|
1905 |
msgstr "(Anrufzeiten: Montags bis Freitags von 9:00 bis 17:00 MEZ)"
|
1906 |
|
1907 |
#: views/b2s/support.php:207
|
1908 |
+
msgid "You need admin rights to use the Troubleshooting-Tool. Please contact your administrator."
|
1909 |
+
msgstr "Für die Nutzung des Problemanalyse-Tools werden Adminrechte benötigt. Bitte wende Dich an Deinen Administrator."
|
|
|
|
|
|
|
|
|
1910 |
|
1911 |
#: views/b2s/support.php:214
|
1912 |
msgid "Needed"
|
1926 |
|
1927 |
#: views/b2s/support.php:234
|
1928 |
msgid "Enter a URL to see how your link preview will look on social media."
|
1929 |
+
msgstr "Gib eine URL ein, um zu sehen, wie die Link-Vorschau auf Social Media aussehen wird"
|
|
|
|
|
1930 |
|
1931 |
#: views/b2s/support.php:239
|
1932 |
msgid "Facebook Open Graph Meta Tags"
|
1966 |
|
1967 |
#: views/prg/login.php:15
|
1968 |
msgid "Login failed. Please check your username and a password!"
|
1969 |
+
msgstr " Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen Benutzernamen und Dein Password!"
|
|
|
|
|
1970 |
|
1971 |
#: views/prg/login.php:21
|
1972 |
+
msgid "Login failed. Please check your server settings. OpenSSL must be enabled on."
|
1973 |
+
msgstr " Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfen Deine Server-Einstellungen. OpenSSL muss aktiviert sein. "
|
|
|
|
|
|
|
1974 |
|
1975 |
#: views/prg/login.php:24
|
1976 |
msgid "E-Mail or Username"
|
2005 |
msgstr "1 x Veranstaltung bewerben"
|
2006 |
|
2007 |
#: views/prg/login.php:43
|
2008 |
+
msgid "The press distribution PR gateway automatically publish your press releases and events with one click.Publish your message over 250 portals."
|
|
|
|
|
2009 |
msgstr ""
|
2010 |
+
"Mit dem Presseverteiler PR-Gateway veröffentlicht Du Deine Pressemitteilungen und Veranstaltungsankündigungen automatisch mit nur einem Klick auf Deine individuelle Auswahl aus über 250 reichweitenstarken und zielgruppen-spezifischen kostenlosen Presseportalen, Eventportalen, "
|
2011 |
+
"internationalen und regionalen Portalen, Social Media und Dokumenten-Netzwerken."
|
|
|
|
|
|
|
|
|
2012 |
|
2013 |
#: views/prg/login.php:46
|
2014 |
msgid "Start your 14-Day Free Trial"
|
2035 |
msgstr "Hinweis"
|
2036 |
|
2037 |
#: views/prg/ship.php:90
|
2038 |
+
msgid "It may incur charges for publishing on PR-Gateway. Sent press releases can not be withdrawn. If you want your press release to be published now?"
|
2039 |
+
msgstr "Bitte beachte, dass gegebenenfalls Gebühren für die Versendung von Pressemitteilungen über PR-Gateway anfallen können. Einmal versandte Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine Pressemitteilung jetzt versendet werden?"
|
|
|
|
|
|
|
|
|
|
|
|
|
2040 |
|
2041 |
#: views/prg/ship.php:93
|
2042 |
msgid "Yes, I accept"
|
2043 |
msgstr "Ja,einverstanden"
|
2044 |
|
2045 |
+
#: includes/B2S/AutoPost/Item.php:39
|
2046 |
+
msgid "Auto-posts for Facebook Profiles will be shown in the \"Instant Sharing\" tab on your \"Posts & Sharing\" navigation bar and can be shared on your Facebook Profile by clicking on the \"Share\" button next to your auto-post."
|
2047 |
+
msgstr "Auto-Posts für Facebook-Profile laufen automatisch im \"Instant Sharing\" Tab in der Navigationsleiste unter \"Beiträge\" ein und können durch einen Klick auf den “Teilen” Button neben dem Post an Dein Facebook-Profil gesendet werden."
|
2048 |
+
|
2049 |
+
#: includes/B2S/AutoPost/Item.php:42
|
2050 |
+
msgid "Autoposter"
|
2051 |
+
msgstr "Auto-Poster"
|
2052 |
|
2053 |
+
#: includes/B2S/AutoPost/Item.php:43
|
2054 |
+
msgid "Set up your autoposter to automatically share your new or updated posts, pages and custom post types on your social media channels."
|
2055 |
+
msgstr "Nutze den Auto-Poster, um Deine neuen oder aktualisierten Beiträge, Seiten und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
2056 |
+
|
2057 |
+
#: includes/B2S/AutoPost/Item.php:52
|
2058 |
+
msgid "Select your preferred network collection for autoposting. This collection defines the social media accounts on which the autoposter will share your social media posts automatically."
|
2059 |
+
msgstr "Wähle die Netzwerkgruppierung mit den Social-Media-Accounts aus, auf denen der Auto-Poster veröffentlichen soll."
|
2060 |
+
|
2061 |
+
#: includes/B2S/AutoPost/Item.php:56
|
2062 |
+
msgid "Please select a post type"
|
2063 |
+
msgstr "Bitte wählen Sie einen Post Type aus"
|
2064 |
+
|
2065 |
+
#: includes/B2S/AutoPost/Item.php:59
|
2066 |
+
msgid "new posts"
|
2067 |
+
msgstr "Neue Beiträge"
|
2068 |
+
|
2069 |
+
#: includes/B2S/AutoPost/Item.php:60 includes/B2S/AutoPost/Item.php:72
|
2070 |
+
msgid "Unselect all"
|
2071 |
+
msgstr "Alle abwählen"
|
2072 |
+
|
2073 |
+
#: includes/B2S/AutoPost/Item.php:60 includes/B2S/AutoPost/Item.php:72
|
2074 |
+
msgid "Select all"
|
2075 |
+
msgstr "Alle auswählen"
|
2076 |
+
|
2077 |
+
#: includes/B2S/AutoPost/Item.php:68
|
2078 |
+
msgid "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."
|
2079 |
+
msgstr "Das Aktivieren dieser Funktion führt dazu, dass bereits veröffentlichte Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der Beitrag aktualisiert wird."
|
2080 |
+
|
2081 |
+
#: includes/B2S/AutoPost/Item.php:71
|
2082 |
+
msgid "updating existing posts"
|
2083 |
+
msgstr "Bestehenden Beitrag aktualisieren"
|
2084 |
+
|
2085 |
+
#: includes/B2S/AutoPost/Item.php:81
|
2086 |
+
msgid "Apply best times"
|
2087 |
+
msgstr "Beste Zeiten berücksichtigen"
|
2088 |
+
|
2089 |
+
#: includes/B2S/AutoPost/Item.php:87
|
2090 |
+
msgid "Autoposter for Imported Posts"
|
2091 |
+
msgstr "Auto-Poster für importierte Beiträge"
|
2092 |
+
|
2093 |
+
#: includes/B2S/AutoPost/Item.php:88
|
2094 |
+
msgid "Set up your autoposter to automatically share your imported posts, pages and custom post types on your social media channels."
|
2095 |
+
msgstr "Nutze den Auto-Poster, um Deine importierten Beiträge, Seiten und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
2096 |
+
|
2097 |
+
#: includes/B2S/AutoPost/Item.php:91
|
2098 |
+
msgid "Immediate Cross-Posting across all networks: Share an unlimited number of posts"
|
2099 |
+
msgstr "Immediate Cross-Posting über alle Netzwerke hinweg: Teile eine unbegrenzte Anzahl an Beiträgen"
|
2100 |
+
|
2101 |
+
#: includes/B2S/AutoPost/Item.php:92
|
2102 |
+
msgid "Scheduled Auto-Posting"
|
2103 |
+
msgstr "Scheduled Auto-Posting"
|
2104 |
+
|
2105 |
+
#: includes/B2S/AutoPost/Item.php:94
|
2106 |
+
msgid "share up to"
|
2107 |
+
msgstr "teile bis zu"
|
2108 |
+
|
2109 |
+
#: includes/B2S/AutoPost/Item.php:94
|
2110 |
+
msgid "posts per day"
|
2111 |
+
msgstr "Posts pro Tag"
|
2112 |
+
|
2113 |
+
#: includes/B2S/AutoPost/Item.php:103
|
2114 |
+
msgid "Please select a social media network"
|
2115 |
+
msgstr "Bitte wählen Sie ein Netzwerk aus"
|
2116 |
+
|
2117 |
+
#: includes/B2S/AutoPost/Item.php:104
|
2118 |
+
msgid "Available networks to select your auto-post connecitons:"
|
2119 |
+
msgstr "Verfügbare Netwerkverbindungen:"
|
2120 |
+
|
2121 |
+
#: includes/B2S/AutoPost/Item.php:105
|
2122 |
+
msgid "In accordance with the new Twitter TOS, one Twitter account can be selected as your primary Twitter account for auto-posting."
|
2123 |
+
msgstr "In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden"
|
2124 |
+
|
2125 |
+
#: includes/B2S/AutoPost/Item.php:107
|
2126 |
+
msgid "Select to auto-post immediately after publishing or with a delay"
|
2127 |
+
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
2128 |
+
|
2129 |
+
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/Curation/View.php:64
|
2130 |
msgid "immediately"
|
2131 |
msgstr "sofort"
|
2132 |
|
2133 |
+
#: includes/B2S/AutoPost/Item.php:109
|
2134 |
+
msgid "publish with a delay of"
|
2135 |
+
msgstr "Veröffentliche mit einer Verzögerung von"
|
2136 |
+
|
2137 |
+
#: includes/B2S/AutoPost/Item.php:110
|
2138 |
+
msgid "minutes"
|
2139 |
+
msgstr "Minuten"
|
2140 |
+
|
2141 |
+
#: includes/B2S/AutoPost/Item.php:122
|
2142 |
+
msgid "Save"
|
2143 |
+
msgstr " Speichern"
|
2144 |
+
|
2145 |
+
#: includes/B2S/AutoPost/Item.php:190 includes/B2S/Network/Item.php:171
|
2146 |
+
msgid "Connections"
|
2147 |
+
msgstr "Verbindungen"
|
2148 |
+
|
2149 |
+
#: includes/B2S/AutoPost/Item.php:192
|
2150 |
+
msgid "add/change connection"
|
2151 |
+
msgstr "Verbindung hinzufügen/ändern"
|
2152 |
+
|
2153 |
+
#: includes/B2S/AutoPost/Item.php:229
|
2154 |
+
msgid "Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
2155 |
+
msgstr "Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden automatisch veröffentlicht)"
|
2156 |
+
|
2157 |
+
#: includes/B2S/AutoPost/Item.php:230 includes/B2S/RePost/Item.php:173
|
2158 |
+
msgid "Post Types"
|
2159 |
+
msgstr "Posttypen"
|
2160 |
+
|
2161 |
+
#: includes/B2S/AutoPost/Item.php:231 includes/B2S/RePost/Item.php:174 includes/B2S/RePost/Item.php:194 includes/B2S/RePost/Item.php:214 includes/B2S/RePost/Item.php:233
|
2162 |
+
msgid "Include (Post only...)"
|
2163 |
+
msgstr "enthält (nur Beiträge, mit ...)"
|
2164 |
+
|
2165 |
+
#: includes/B2S/AutoPost/Item.php:232 includes/B2S/RePost/Item.php:175 includes/B2S/RePost/Item.php:195 includes/B2S/RePost/Item.php:215 includes/B2S/RePost/Item.php:234
|
2166 |
+
msgid "Exclude (Do no post ...)"
|
2167 |
+
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
2168 |
+
|
2169 |
+
#: includes/B2S/Curation/View.php:62
|
2170 |
+
msgid "Share your post"
|
2171 |
+
msgstr "Teile Deinen Post"
|
2172 |
+
|
2173 |
#: includes/B2S/Curation/View.php:65
|
2174 |
msgid "at scheduled times"
|
2175 |
msgstr "zu geplanten Zeiten"
|
2176 |
|
2177 |
+
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70 includes/B2S/RePost/Item.php:193 includes/B2S/Ship/Item.php:1119 views/b2s/partials/post-edit-modal.php:62 views/b2s/partials/post-edit-modal.php:65
|
|
|
|
|
2178 |
msgid "Date"
|
2179 |
msgstr "Startdatum"
|
2180 |
|
2202 |
msgid "Best times"
|
2203 |
msgstr "Beste Zeiten"
|
2204 |
|
2205 |
+
#: includes/B2S/Network/Item.php:147 includes/B2S/Network/Item.php:218 includes/B2S/Ship/Item.php:316 includes/B2S/Ship/Navbar.php:86 includes/B2S/Ship/Portale.php:38
|
|
|
2206 |
msgid "Blog"
|
2207 |
msgstr "Blog"
|
2208 |
|
2209 |
+
#: includes/B2S/Network/Item.php:151 includes/B2S/Ship/Portale.php:42
|
2210 |
msgid "You want to connect a network profile?"
|
2211 |
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
2212 |
|
2214 |
msgid "You want to connect a network page?"
|
2215 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
2216 |
|
2217 |
+
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:351 includes/B2S/Ship/Portale.php:31
|
|
|
2218 |
msgid "Publication"
|
2219 |
msgstr "Publication"
|
2220 |
|
2222 |
msgid "You want to connect a social media group?"
|
2223 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
2224 |
|
|
|
|
|
|
|
|
|
2225 |
#: includes/B2S/Network/Item.php:172 views/b2s/html/footer.php:192
|
2226 |
msgid "Best Time Manager"
|
2227 |
msgstr "Best Time Manager"
|
2228 |
|
2229 |
+
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275 includes/B2S/Network/Item.php:342
|
|
|
2230 |
msgid "To reactivate this connection,"
|
2231 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
2232 |
|
2233 |
+
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275 includes/B2S/Network/Item.php:342 includes/B2S/Ship/Image.php:30
|
|
|
2234 |
msgid "please upgrade"
|
2235 |
msgstr "Bitte upgraden"
|
2236 |
|
2237 |
+
#: includes/B2S/Network/Item.php:212 includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:345
|
|
|
2238 |
msgid "Authorization is interrupted since"
|
2239 |
msgstr "Autorisierung ist unterbrochen seit"
|
2240 |
|
2241 |
+
#: includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282 includes/B2S/Network/Item.php:349
|
|
|
2242 |
msgid "Assigned by"
|
2243 |
msgstr "Zugewiesen von"
|
2244 |
|
2245 |
+
#: includes/B2S/Network/Item.php:254 includes/B2S/Network/Item.php:320 includes/B2S/Network/Item.php:382 includes/B2S/Ship/Item.php:1067
|
|
|
2246 |
msgid "Days"
|
2247 |
msgstr "Tage"
|
2248 |
|
2254 |
msgid "Connection currently assigned to"
|
2255 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
2256 |
|
2257 |
+
#: includes/B2S/Network/Item.php:508 views/prg/html/form.php:84 views/prg/html/form.php:86 views/prg/html/form.php:161 views/prg/html/form.php:163
|
|
|
|
|
2258 |
msgid "Name"
|
2259 |
msgstr "Name"
|
2260 |
|
2275 |
msgid "Apply for all connections"
|
2276 |
msgstr "Für alle Verbindungen übernehmen"
|
2277 |
|
2278 |
+
#: includes/B2S/Network/Item.php:556
|
2279 |
msgid "Successfully saved"
|
2280 |
msgstr "Erfolgreich gespeichert"
|
2281 |
|
2282 |
+
#: includes/B2S/Network/Item.php:557
|
2283 |
msgid "Failed to save"
|
2284 |
msgstr "Speichern fehlgeschlagen"
|
2285 |
|
2286 |
+
#: includes/B2S/Network/Item.php:558
|
2287 |
msgid "Failed to load the default template"
|
2288 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
2289 |
|
2290 |
+
#: includes/B2S/Network/Item.php:565
|
2291 |
msgid ""
|
2292 |
+
"Upgrade to Blog2Social Smart or higher to customize your individual post templates that will automatically pre-format the structure of your social media posts. Select and define elements, such as title, excerpt, content, hashtags, and edit the post format. The “content” "
|
2293 |
+
"element is selected by default. Define custom post templates per social network and per profile, group & page. You can also add static content (such as individual hashtags or slogans) to your post templates."
|
|
|
|
|
|
|
|
|
|
|
2294 |
msgstr ""
|
2295 |
+
"Upgrade auf Blog2Social Smart oder eine höhere Version, um individuelle Beitragsvorlagen für Deine Social Media Posts auf den verschiedenen Netzwerken zu definieren, mit denen Deine Beiträge automatisiert formatiert werden. Wähle aus verschiedenen Elementen wie Titel, Auszug, "
|
2296 |
+
"Inhalt, Hashtags und bearbeite das Post-Format.\n"
|
2297 |
+
"Standardmäßig ist das Element \"Inhalt\" ausgewählt. Nutze individuelle Beitragsvorlagen für einzelne Netzwerke, Profile, Gruppen & Seiten. Füge auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen Beitragsvorlagen hinzu."
|
2298 |
+
|
2299 |
+
#: includes/B2S/Network/Item.php:566
|
|
|
|
|
|
|
|
|
|
|
|
|
2300 |
msgid "Upgrade to Blog2Social Smart"
|
2301 |
msgstr "Upgrade auf Blog2Social Smart"
|
2302 |
|
2303 |
+
#: includes/B2S/Network/Item.php:587
|
2304 |
msgid "Activate Instant Caching"
|
2305 |
msgstr "Instant Caching aktivieren"
|
2306 |
|
2307 |
+
#: includes/B2S/Network/Item.php:633
|
2308 |
msgid "Format"
|
2309 |
msgstr "Format"
|
2310 |
|
2311 |
+
#: includes/B2S/Network/Item.php:634 includes/B2S/Network/Item.php:655
|
2312 |
msgid "Load default settings"
|
2313 |
msgstr "Lade Standardeinstellungen"
|
2314 |
|
2315 |
+
#: includes/B2S/Network/Item.php:640 includes/B2S/Network/Item.php:643 includes/B2S/Ship/Item.php:813 includes/B2S/Ship/Item.php:815
|
|
|
2316 |
msgid "Link"
|
2317 |
msgstr "Link"
|
2318 |
|
2319 |
+
#: includes/B2S/Network/Item.php:641 includes/B2S/Network/Item.php:644
|
2320 |
msgid "Image"
|
2321 |
msgstr "Bild"
|
2322 |
|
2323 |
+
#: includes/B2S/Network/Item.php:653 includes/B2S/Settings/Item.php:66
|
2324 |
msgid "Content"
|
2325 |
msgstr "Inhalt"
|
2326 |
|
2327 |
+
#: includes/B2S/Network/Item.php:662 includes/B2S/Ship/Item.php:357
|
2328 |
+
msgid "Instagram supports up to 30 hashtags. Please reduce the number of hashtags in your post."
|
2329 |
+
msgstr "Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der Hashtags in Deinem Beitrag."
|
|
|
|
|
|
|
|
|
2330 |
|
2331 |
+
#: includes/B2S/Network/Item.php:674
|
2332 |
msgid "clear"
|
2333 |
msgstr "löschen"
|
2334 |
|
2335 |
+
#: includes/B2S/Network/Item.php:683
|
2336 |
msgid "The link will be added automatically at the end of the post."
|
2337 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
2338 |
|
2339 |
+
#: includes/B2S/Network/Item.php:685 includes/B2S/Network/Item.php:711
|
2340 |
msgid "Network limit"
|
2341 |
msgstr "Netzwerkbegrenzung"
|
2342 |
|
2343 |
+
#: includes/B2S/Network/Item.php:685 includes/B2S/Network/Item.php:711 includes/B2S/Network/Item.php:711 includes/B2S/Ship/Item.php:201 includes/B2S/Ship/Item.php:205 includes/B2S/Ship/Item.php:247 includes/B2S/Ship/Item.php:251 includes/B2S/Ship/Item.php:284
|
2344 |
+
#: includes/B2S/Ship/Item.php:288 includes/B2S/Ship/Item.php:1146 includes/B2S/Ship/Item.php:1148
|
|
|
|
|
|
|
|
|
2345 |
msgid "characters"
|
2346 |
msgstr "Zeichen"
|
2347 |
|
2348 |
+
#: includes/B2S/Network/Item.php:711
|
2349 |
msgid "recommended length"
|
2350 |
msgstr "Empfohlene Länge"
|
2351 |
|
2352 |
+
#: includes/B2S/Network/Item.php:731 includes/B2S/Network/Item.php:783 includes/B2S/Network/Item.php:837 includes/B2S/Network/Item.php:889 includes/B2S/Network/Item.php:923
|
|
|
|
|
2353 |
msgid "Preview"
|
2354 |
msgstr "Vorschau"
|
2355 |
|
2356 |
+
#: includes/B2S/Post/Filter.php:43
|
2357 |
msgid "all authors"
|
2358 |
msgstr "alle Autoren"
|
2359 |
|
2360 |
+
#: includes/B2S/Post/Filter.php:59
|
2361 |
msgid "all posts"
|
2362 |
msgstr "alle Beiträge"
|
2363 |
|
2364 |
+
#: includes/B2S/Post/Filter.php:70
|
2365 |
msgid "not yet shared"
|
2366 |
msgstr "noch nicht geteilt"
|
2367 |
|
2368 |
+
#: includes/B2S/Post/Filter.php:70
|
2369 |
msgid "already shared"
|
2370 |
msgstr "geteilt"
|
2371 |
|
2372 |
+
#: includes/B2S/Post/Filter.php:70
|
2373 |
msgid "currently scheduled"
|
2374 |
msgstr "geplant"
|
2375 |
|
2376 |
#: includes/B2S/Post/Filter.php:70
|
2377 |
+
msgid "autopost"
|
2378 |
+
msgstr "Auto-Post"
|
2379 |
+
|
2380 |
+
#: includes/B2S/Post/Filter.php:70 includes/B2S/Post/Item.php:732
|
2381 |
+
msgid "re-share"
|
2382 |
+
msgstr "erneut teilen"
|
2383 |
+
|
2384 |
+
#: includes/B2S/Post/Filter.php:71
|
2385 |
msgid "all statuses"
|
2386 |
msgstr "kein Status"
|
2387 |
|
2388 |
+
#: includes/B2S/Post/Filter.php:82 includes/B2S/Post/Filter.php:94
|
2389 |
msgid "newest first"
|
2390 |
msgstr "neuste zuerst"
|
2391 |
|
2392 |
+
#: includes/B2S/Post/Filter.php:82 includes/B2S/Post/Filter.php:94
|
2393 |
msgid "oldest first"
|
2394 |
msgstr "älteste zuerst"
|
2395 |
|
2396 |
+
#: includes/B2S/Post/Filter.php:107
|
2397 |
msgid "all categories & tags"
|
2398 |
msgstr "alle Kategorien & Schlagwörter"
|
2399 |
|
2400 |
+
#: includes/B2S/Post/Filter.php:129 includes/PRG/Post/Filter.php:49
|
2401 |
msgid "all post types"
|
2402 |
msgstr "alle Typen"
|
2403 |
|
2404 |
+
#: includes/B2S/Post/Filter.php:156
|
2405 |
msgid "shared by user"
|
2406 |
msgstr "geteilt von Nutzer"
|
2407 |
|
2408 |
+
#: includes/B2S/Post/Filter.php:173 includes/PRG/Post/Filter.php:70
|
2409 |
msgid "Search Title"
|
2410 |
msgstr "Suche nach Titel"
|
2411 |
|
2412 |
+
#: includes/B2S/Post/Filter.php:201 includes/PRG/Post/Filter.php:81
|
2413 |
msgid "sort"
|
2414 |
msgstr "sortieren"
|
2415 |
|
2416 |
+
#: includes/B2S/Post/Filter.php:202 includes/PRG/Post/Filter.php:82
|
2417 |
msgid "reset"
|
2418 |
msgstr "zurücksetzen"
|
2419 |
|
2420 |
+
#: includes/B2S/Post/Filter.php:207
|
2421 |
msgid "selected date"
|
2422 |
msgstr "ausgewähltes Datum"
|
2423 |
|
2424 |
+
#: includes/B2S/Post/Filter.php:207
|
2425 |
msgid "scheduled post(s)"
|
2426 |
msgstr "geplante Beiträge"
|
2427 |
|
2428 |
+
#: includes/B2S/Post/Item.php:342
|
2429 |
msgid "You have not saved any drafts."
|
2430 |
msgstr "Du hast keine Entwürfe gespeichert."
|
2431 |
|
2432 |
+
#: includes/B2S/Post/Item.php:346
|
2433 |
+
msgid "You have no posts in your queue."
|
2434 |
+
msgstr "Du hast noch keine Beiträge in Deiner Warteschlange."
|
2435 |
+
|
2436 |
+
#: includes/B2S/Post/Item.php:348
|
2437 |
msgid "You have not published or scheduled any posts."
|
2438 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
2439 |
|
2440 |
+
#: includes/B2S/Post/Item.php:371
|
2441 |
msgid "curated post"
|
2442 |
msgstr "kuratierter Beitrag"
|
2443 |
|
2444 |
+
#: includes/B2S/Post/Item.php:376 includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:522
|
2445 |
msgid "last shared on social media"
|
2446 |
msgstr "zuletzt auf Social Media geteilt"
|
2447 |
|
2448 |
+
#: includes/B2S/Post/Item.php:388 includes/B2S/Post/Item.php:485 includes/B2S/Post/Item.php:487 includes/B2S/Post/Item.php:508 includes/B2S/Post/Item.php:531
|
|
|
|
|
2449 |
msgid "Share on Social Media"
|
2450 |
msgstr "auf Social Media teilen"
|
2451 |
|
2452 |
+
#: includes/B2S/Post/Item.php:392 includes/B2S/Post/Item.php:535
|
2453 |
msgid "load Draft"
|
2454 |
msgstr "Entwurf aufrufen"
|
2455 |
|
2456 |
+
#: includes/B2S/Post/Item.php:394 includes/B2S/Post/Item.php:493 includes/B2S/Post/Item.php:513 includes/B2S/Post/Item.php:537 includes/PRG/Post/Item.php:121
|
|
|
|
|
2457 |
msgid "Author"
|
2458 |
msgstr "Autor"
|
2459 |
|
2460 |
+
#: includes/B2S/Post/Item.php:412 includes/B2S/Post/Item.php:436 includes/B2S/Post/Item.php:458 includes/B2S/Post/Item.php:555
|
|
|
2461 |
msgid "Details"
|
2462 |
msgstr "Details"
|
2463 |
|
2464 |
+
#: includes/B2S/Post/Item.php:414
|
2465 |
msgid "shared social media posts"
|
2466 |
msgstr "geteilte Beiträge"
|
2467 |
|
2468 |
+
#: includes/B2S/Post/Item.php:414
|
2469 |
#, php-format
|
2470 |
msgid "latest share by %s"
|
2471 |
msgstr "zuletzt von %s geteilt"
|
2472 |
|
2473 |
+
#: includes/B2S/Post/Item.php:438 includes/B2S/Post/Item.php:558 views/b2s/widgets/activity.php:10
|
2474 |
msgid "scheduled social media posts"
|
2475 |
msgstr "geplante Beiträge"
|
2476 |
|
2477 |
+
#: includes/B2S/Post/Item.php:438 includes/B2S/Post/Item.php:558
|
2478 |
#, php-format
|
2479 |
msgid "next share by %s"
|
2480 |
msgstr "wird als nächstes von %s geteilt"
|
2481 |
|
2482 |
+
#: includes/B2S/Post/Item.php:460
|
2483 |
msgid "social media posts ready to be shared"
|
2484 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
2485 |
|
2486 |
+
#: includes/B2S/Post/Item.php:471
|
2487 |
msgid "via Browser-Extension"
|
2488 |
msgstr "via Browser-Extension"
|
2489 |
|
2490 |
+
#: includes/B2S/Post/Item.php:493
|
2491 |
msgid "saved"
|
2492 |
msgstr "gespeichert"
|
2493 |
|
2494 |
+
#: includes/B2S/Post/Item.php:513
|
2495 |
msgid "last saved"
|
2496 |
msgstr "zuletzt gespeichert:"
|
2497 |
|
2498 |
+
#: includes/B2S/Post/Item.php:685 includes/B2S/Post/Item.php:826 includes/B2S/Ship/Save.php:427
|
|
|
2499 |
msgid "Retweet"
|
2500 |
msgstr "Retweet"
|
2501 |
|
2502 |
+
#: includes/B2S/Post/Item.php:685 includes/B2S/Post/Item.php:826
|
2503 |
+
msgid "Re-Share"
|
2504 |
+
msgstr "Wiederholt geteilt"
|
2505 |
+
|
2506 |
+
#: includes/B2S/Post/Item.php:691 includes/B2S/Post/Item.php:761 includes/B2S/Post/Item.php:832 includes/B2S/RePost/Item.php:127
|
2507 |
msgid "select all"
|
2508 |
msgstr "alle auswählen"
|
2509 |
|
2510 |
+
#: includes/B2S/Post/Item.php:694
|
2511 |
msgid "show"
|
2512 |
msgstr "ansehen"
|
2513 |
|
2514 |
+
#: includes/B2S/Post/Item.php:701 includes/B2S/Ship/Save.php:438
|
2515 |
msgid "Please see"
|
2516 |
msgstr "siehe"
|
2517 |
|
2518 |
+
#: includes/B2S/Post/Item.php:707
|
2519 |
#, php-format
|
2520 |
msgid "sharing in progress by %s"
|
2521 |
msgstr "wird gerade von %s geteilt"
|
2522 |
|
2523 |
+
#: includes/B2S/Post/Item.php:707
|
2524 |
#, php-format
|
2525 |
msgid "shared by %s"
|
2526 |
msgstr "von %s geteilt"
|
2527 |
|
2528 |
+
#: includes/B2S/Post/Item.php:728 includes/B2S/Post/Item.php:741
|
2529 |
msgid "You want to delete a publish post entry?"
|
2530 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
2531 |
|
2532 |
+
#: includes/B2S/Post/Item.php:729 includes/B2S/Post/Item.php:742
|
2533 |
msgid "delete from reporting"
|
2534 |
msgstr "aus Reporting löschen"
|
2535 |
|
2536 |
+
#: includes/B2S/Post/Item.php:764
|
|
|
|
|
|
|
|
|
2537 |
#, php-format
|
2538 |
msgid "is waiting to shared by %s"
|
2539 |
msgstr "wartet darauf von %s geteilt zu werden"
|
2540 |
|
2541 |
+
#: includes/B2S/Post/Item.php:794 includes/B2S/Ship/Save.php:408
|
2542 |
msgid "share"
|
2543 |
msgstr "teilen"
|
2544 |
|
2545 |
+
#: includes/B2S/Post/Item.php:802
|
2546 |
msgid "You want to delete your Social Media post?"
|
2547 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
2548 |
|
2549 |
+
#: includes/B2S/Post/Item.php:845
|
2550 |
#, php-format
|
2551 |
msgid "last modified by %s"
|
2552 |
msgstr "zuletzt von %s bearbeitet"
|
2553 |
|
2554 |
+
#: includes/B2S/Post/Item.php:847
|
2555 |
msgid "is processed by the network"
|
2556 |
msgstr "wird vom Netzwerk verarbeitet"
|
2557 |
|
2558 |
+
#: includes/B2S/Post/Item.php:852
|
2559 |
#, php-format
|
2560 |
msgid "scheduled by %s"
|
2561 |
msgstr "von %s vorgeplant "
|
2562 |
|
2563 |
+
#: includes/B2S/Post/Item.php:857
|
2564 |
msgid "You want to edit your scheduled post?"
|
2565 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
2566 |
|
2567 |
+
#: includes/B2S/Post/Item.php:858
|
2568 |
msgid "edit"
|
2569 |
msgstr "edit"
|
2570 |
|
2571 |
+
#: includes/B2S/Post/Item.php:870
|
2572 |
msgid "delete scheduling"
|
2573 |
msgstr "Planung löschen"
|
2574 |
|
2575 |
+
#: includes/B2S/RePost/Item.php:23
|
2576 |
+
msgid "Re-share your blog content automatically on your social media channels."
|
2577 |
+
msgstr "Teile Deinen Blog-Content automatisiert und wiederholt auf Deinen Social-Media-Kanälen."
|
|
|
2578 |
|
2579 |
+
#: includes/B2S/RePost/Item.php:32
|
2580 |
+
msgid "Which content should be shared?"
|
2581 |
+
msgstr "Welcher Content soll geteilt werden?"
|
2582 |
|
2583 |
+
#: includes/B2S/RePost/Item.php:33
|
2584 |
+
msgid "your Blog2Social license to extend the quota for the number of posts in your queue."
|
2585 |
+
msgstr "Blog2Social für ein höheres Kontingent an Posts in der Warteschlange."
|
2586 |
|
2587 |
+
#: includes/B2S/RePost/Item.php:35
|
2588 |
+
msgid "Number of posts"
|
2589 |
+
msgstr "Anzahl der Beiträge"
|
2590 |
|
2591 |
+
#: includes/B2S/RePost/Item.php:43
|
2592 |
+
msgid "share oldest posts first"
|
2593 |
+
msgstr "älteste Beiträge zuerst teilen"
|
2594 |
|
2595 |
+
#: includes/B2S/RePost/Item.php:44
|
2596 |
+
msgid "customize"
|
2597 |
+
msgstr "inividualisieren"
|
2598 |
|
2599 |
+
#: includes/B2S/RePost/Item.php:54
|
2600 |
+
#, php-format
|
2601 |
+
msgid "include <a href=\"%s\" target=\"_blank\">favorites posts</a> only"
|
2602 |
+
msgstr "nur <a href=\"%s\" target=\"_blank\">Favoriten</a> hinzufügen"
|
2603 |
|
2604 |
+
#: includes/B2S/RePost/Item.php:60
|
2605 |
+
msgid "When should your content be shared?"
|
2606 |
+
msgstr "Wann soll Dein Content geteilt werden?"
|
2607 |
|
2608 |
+
#: includes/B2S/RePost/Item.php:63 includes/B2S/RePost/Item.php:80
|
2609 |
+
msgid "Post every"
|
2610 |
+
msgstr "Poste alle"
|
2611 |
|
2612 |
+
#: includes/B2S/RePost/Item.php:63
|
2613 |
+
msgid "days at"
|
2614 |
+
msgstr "Tage um"
|
2615 |
|
2616 |
+
#: includes/B2S/RePost/Item.php:68
|
2617 |
+
msgid "on"
|
2618 |
+
msgstr " "
|
2619 |
|
2620 |
+
#: includes/B2S/RePost/Item.php:69 includes/B2S/Ship/Item.php:1125
|
2621 |
+
msgid "Mon"
|
2622 |
+
msgstr "Mo"
|
|
|
|
|
|
|
|
|
|
|
2623 |
|
2624 |
+
#: includes/B2S/RePost/Item.php:70 includes/B2S/Ship/Item.php:1126
|
2625 |
+
msgid "Tue"
|
2626 |
+
msgstr "Di"
|
2627 |
|
2628 |
+
#: includes/B2S/RePost/Item.php:71 includes/B2S/Ship/Item.php:1127
|
2629 |
+
msgid "Wed"
|
2630 |
+
msgstr "Mi"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2631 |
|
2632 |
+
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:1128
|
2633 |
+
msgid "Thu"
|
2634 |
+
msgstr "Do"
|
2635 |
|
2636 |
+
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:1129
|
2637 |
+
msgid "Fri"
|
2638 |
+
msgstr "Fr"
|
|
|
|
|
|
|
|
|
2639 |
|
2640 |
+
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:1130
|
2641 |
+
msgid "Sat"
|
2642 |
+
msgstr "Sa"
|
|
|
|
|
|
|
|
|
|
|
2643 |
|
2644 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1131
|
2645 |
+
msgid "Sun"
|
2646 |
+
msgstr "So"
|
2647 |
|
2648 |
+
#: includes/B2S/RePost/Item.php:82
|
2649 |
+
msgid "Monday"
|
2650 |
+
msgstr "Montag"
|
2651 |
|
2652 |
+
#: includes/B2S/RePost/Item.php:83
|
2653 |
+
msgid "Tuesday"
|
2654 |
+
msgstr "Dienstag"
|
2655 |
|
2656 |
+
#: includes/B2S/RePost/Item.php:84
|
2657 |
+
msgid "Wednesday"
|
2658 |
+
msgstr "Mittwoch"
|
2659 |
|
2660 |
+
#: includes/B2S/RePost/Item.php:85
|
2661 |
+
msgid "Thursday"
|
2662 |
+
msgstr "Donnerstag"
|
|
|
|
|
|
|
|
|
|
|
|
|
2663 |
|
2664 |
+
#: includes/B2S/RePost/Item.php:86
|
2665 |
+
msgid "Friday"
|
2666 |
+
msgstr "Freitag"
|
2667 |
|
2668 |
+
#: includes/B2S/RePost/Item.php:87
|
2669 |
+
msgid "Saturday"
|
2670 |
+
msgstr "Samstag"
|
2671 |
|
2672 |
+
#: includes/B2S/RePost/Item.php:88
|
2673 |
+
msgid "Sunday"
|
2674 |
+
msgstr "Sonntag"
|
2675 |
|
2676 |
+
#: includes/B2S/RePost/Item.php:90
|
2677 |
+
msgid "at"
|
2678 |
+
msgstr "um"
|
|
|
|
|
|
|
|
|
2679 |
|
2680 |
+
#: includes/B2S/RePost/Item.php:96
|
2681 |
+
msgid "at my best times"
|
2682 |
+
msgstr "zu meinen besten Zeiten"
|
|
|
|
|
|
|
|
|
2683 |
|
2684 |
+
#: includes/B2S/RePost/Item.php:103
|
2685 |
+
msgid "Where should your content be shared?"
|
2686 |
+
msgstr "Wo soll Dein Content geteilt werden?"
|
2687 |
|
2688 |
+
#: includes/B2S/RePost/Item.php:105
|
2689 |
+
msgid "Add to queue"
|
2690 |
+
msgstr "Zur Warteschlange hinzufügen"
|
2691 |
|
2692 |
+
#: includes/B2S/RePost/Item.php:120
|
2693 |
+
msgid "Need more?"
|
2694 |
+
msgstr "Benötigst Du mehr?"
|
2695 |
+
|
2696 |
+
#: includes/B2S/RePost/Item.php:123
|
2697 |
+
msgid "Queue"
|
2698 |
+
msgstr "Warteschlange"
|
2699 |
+
|
2700 |
+
#: includes/B2S/RePost/Item.php:124
|
2701 |
+
msgid "Posts"
|
2702 |
+
msgstr "Posts"
|
2703 |
+
|
2704 |
+
#: includes/B2S/RePost/Item.php:128
|
2705 |
+
msgid "delete selected posts"
|
2706 |
+
msgstr "markierte Beiträge löschen"
|
2707 |
+
|
2708 |
+
#: includes/B2S/RePost/Item.php:198
|
2709 |
+
msgid "Startdate"
|
2710 |
+
msgstr "Startdatum"
|
2711 |
+
|
2712 |
+
#: includes/B2S/RePost/Item.php:201
|
2713 |
+
msgid "Enddate"
|
2714 |
+
msgstr "Enddatum"
|
2715 |
+
|
2716 |
+
#: includes/B2S/RePost/Item.php:213
|
2717 |
+
msgid "Categories"
|
2718 |
+
msgstr "Kategorien"
|
2719 |
+
|
2720 |
+
#: includes/B2S/RePost/Item.php:232
|
2721 |
+
msgid "Authors"
|
2722 |
+
msgstr "Autoren"
|
2723 |
+
|
2724 |
+
#: includes/B2S/Settings/Item.php:52 includes/B2S/Settings/Item.php:78 includes/B2S/Ship/Item.php:969
|
2725 |
+
msgid "Account"
|
2726 |
+
msgstr "Konto"
|
2727 |
+
|
2728 |
+
#: includes/B2S/Settings/Item.php:61
|
2729 |
+
msgid "Timezone for Scheduling"
|
2730 |
+
msgstr "Zeitzone für die Planung"
|
2731 |
+
|
2732 |
+
#: includes/B2S/Settings/Item.php:61
|
2733 |
+
msgid "User"
|
2734 |
+
msgstr "Benutzer"
|
2735 |
|
2736 |
+
#: includes/B2S/Settings/Item.php:67
|
2737 |
+
msgid "Url Shortener"
|
2738 |
+
msgstr "Url Shortener"
|
2739 |
|
2740 |
+
#: includes/B2S/Settings/Item.php:69
|
2741 |
+
msgid "no URL Shortener"
|
2742 |
+
msgstr "kein URL Shortener"
|
2743 |
|
2744 |
+
#: includes/B2S/Settings/Item.php:71 includes/B2S/Settings/Item.php:82
|
2745 |
+
msgid "Brand"
|
2746 |
+
msgstr "Brand"
|
|
|
|
|
|
|
|
|
2747 |
|
2748 |
+
#: includes/B2S/Settings/Item.php:72 includes/B2S/Settings/Item.php:82
|
2749 |
+
msgid "Call-to-Action"
|
2750 |
+
msgstr "Call-to-Action"
|
2751 |
|
2752 |
+
#: includes/B2S/Settings/Item.php:92
|
2753 |
+
msgid "change"
|
2754 |
+
msgstr "ändern"
|
2755 |
|
2756 |
+
#: includes/B2S/Settings/Item.php:98
|
2757 |
+
msgid "Shortcodes"
|
2758 |
+
msgstr "Shortcodes"
|
2759 |
|
2760 |
+
#: includes/B2S/Settings/Item.php:99
|
2761 |
+
msgid "allow shortcodes in my post"
|
2762 |
+
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
2763 |
|
2764 |
+
#: includes/B2S/Settings/Item.php:101 includes/B2S/Ship/Item.php:912
|
2765 |
+
msgid "Hashtags"
|
2766 |
+
msgstr "Hashtags"
|
|
|
|
|
|
|
2767 |
|
2768 |
+
#: includes/B2S/Settings/Item.php:102
|
2769 |
+
msgid "include Wordpress tags as hashtags in my post"
|
2770 |
+
msgstr " Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
2771 |
|
2772 |
+
#: includes/B2S/Settings/Item.php:106
|
2773 |
+
msgid "System"
|
2774 |
+
msgstr "System"
|
2775 |
|
2776 |
+
#: includes/B2S/Settings/Item.php:107 includes/B2S/Settings/Item.php:126 includes/B2S/Settings/Item.php:153
|
2777 |
+
msgid "This is a global feature for your blog, which can only be edited by users with admin rights."
|
2778 |
+
msgstr "Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit Admin Rechten bearbeitet werden kann."
|
2779 |
|
2780 |
+
#: includes/B2S/Settings/Item.php:108
|
2781 |
+
msgid "activate Legacy mode"
|
2782 |
+
msgstr "Kompatibilitätsmodus aktivieren"
|
2783 |
|
2784 |
+
#: includes/B2S/Settings/Item.php:124
|
2785 |
msgid "Reset all page and post meta data"
|
2786 |
msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
2787 |
|
2788 |
+
#: includes/B2S/Settings/Item.php:129
|
2789 |
msgid "Meta Tags Settings for Posts and Pages"
|
2790 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
2791 |
|
2792 |
+
#: includes/B2S/Settings/Item.php:130
|
2793 |
+
msgid "Add Open Graph meta tags to your shared posts or pages, required by Facebook and other social networks to display your post or page image, title and description correctly."
|
2794 |
+
msgstr "Ergänze Open Graph Meta Tags zu Deinen geteilten Beiträgen/Seiten, damit Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt darstellen können."
|
|
|
|
|
|
|
|
|
|
|
|
|
2795 |
|
2796 |
+
#: includes/B2S/Settings/Item.php:132
|
2797 |
+
msgid "Add Twitter Card meta tags to your shared posts or pages, required by Twitter to display your post or page image, title and description correctly."
|
2798 |
+
msgstr "Ergänze Twitter Card Meta Tags zu Deinen geteilten Beiträgen/Seiten, damit Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt darstellen kann."
|
|
|
|
|
|
|
|
|
|
|
2799 |
|
2800 |
+
#: includes/B2S/Settings/Item.php:155
|
2801 |
msgid "Frontpage Settings"
|
2802 |
msgstr "Frontpage Einstellungen"
|
2803 |
|
2804 |
+
#: includes/B2S/Settings/Item.php:157
|
2805 |
msgid "Check Settings with Sharing-Debugger"
|
2806 |
msgstr "Einstellungen mit Sharing-Debugger überprüfen"
|
2807 |
|
2808 |
+
#: includes/B2S/Settings/Item.php:167
|
2809 |
+
msgid "Add the default Open Graph parameters for title, description and image you want Facebook to display, if you share the frontpage of your blog as link post (http://www.yourblog.com)"
|
2810 |
+
msgstr "Definiere die Default Einstellungen für Titel, Beschreibung und Image für die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www.DeinBlog.de)"
|
|
|
|
|
|
|
|
|
|
|
|
|
2811 |
|
2812 |
+
#: includes/B2S/Settings/Item.php:171 includes/B2S/Settings/Item.php:192
|
2813 |
msgid "Description"
|
2814 |
msgstr "Beschreibung"
|
2815 |
|
2816 |
+
#: includes/B2S/Settings/Item.php:172 includes/B2S/Settings/Item.php:193
|
2817 |
msgid "Image URL"
|
2818 |
msgstr "Bild Url"
|
2819 |
|
2820 |
+
#: includes/B2S/Settings/Item.php:174 includes/B2S/Settings/Item.php:195 includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Image.php:87
|
|
|
2821 |
msgid "Image upload / Media Gallery"
|
2822 |
msgstr "Bild hochladen / Mediathek"
|
2823 |
|
2824 |
+
#: includes/B2S/Settings/Item.php:177
|
2825 |
+
msgid "Please note: Facebook supports images with a minimum dimension of 200x200 pixels and an aspect ratio of 1:1."
|
2826 |
+
msgstr "Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von 200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
|
|
|
|
|
|
|
|
2827 |
|
2828 |
+
#: includes/B2S/Settings/Item.php:183
|
2829 |
+
msgid "Add the default Twitter Card parameters for title, description and image you want Twitter to display, if you share the frontpage of your blog as link post (http://www.yourblog.com)"
|
2830 |
+
msgstr "Definiere die Default Twitter Card Parameter für Titel, Beschreibung und Image, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www.DeinBlog.de)"
|
|
|
|
|
|
|
|
|
|
|
|
|
2831 |
|
2832 |
+
#: includes/B2S/Settings/Item.php:186
|
2833 |
msgid "The default card type to use"
|
2834 |
msgstr "Wählen Sie Ihre Standard-Twitter-Card"
|
2835 |
|
2836 |
+
#: includes/B2S/Settings/Item.php:188
|
2837 |
msgid "Summary"
|
2838 |
msgstr "Link-Darstellung"
|
2839 |
|
2840 |
+
#: includes/B2S/Settings/Item.php:189
|
2841 |
msgid "Summary with large image"
|
2842 |
msgstr "Link-Darstellung mit großem Bild"
|
2843 |
|
2844 |
+
#: includes/B2S/Settings/Item.php:189
|
2845 |
msgid "(SMART)"
|
2846 |
msgstr "(SMART)"
|
2847 |
|
2848 |
+
#: includes/B2S/Settings/Item.php:198
|
2849 |
+
msgid "Please note: Twitter supports images with a minimum dimension of 144x144 pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The image will be cropped to a square. Twitter supports JPG, PNG, WEBP and GIF formats."
|
2850 |
+
msgstr "Bitte beachte: Twitter unterstützt Bilder mit einer Mindestgröße von 144x144 Pixel und eine maximale Größe 4096 x 4096 Pixel mit weniger als 5 MB. Die Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt die Bildformate JPG, PNG, WEBP und GIF. "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2851 |
|
2852 |
+
#: includes/B2S/Settings/Item.php:216
|
2853 |
msgid "Did you know?"
|
2854 |
msgstr "Wusstest Du schon?"
|
2855 |
|
2856 |
+
#: includes/B2S/Settings/Item.php:217
|
2857 |
+
msgid "With Premium Pro, you can change the custom post format photo post or link post for each individual social media post and channel (profile, page, group)."
|
2858 |
+
msgstr "Mit der Premium Pro Version kannst Du das Standard Post-Format individuell pro Social Media Kanal verändern und Deine Beiträge als BildPost oder als Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
|
|
|
|
|
|
|
|
|
|
|
|
|
2859 |
|
2860 |
+
#: includes/B2S/Settings/Item.php:217
|
2861 |
msgid "Upgrade to Premium Pro now."
|
2862 |
msgstr "Upgrade auf Premium PRO"
|
2863 |
|
2864 |
+
#: includes/B2S/Settings/Item.php:245
|
2865 |
msgid "The image will be changed"
|
2866 |
msgstr "Das Bild wird geändert"
|
2867 |
|
2868 |
+
#: includes/B2S/Settings/Item.php:248 views/b2s/html/footer.php:129
|
2869 |
+
msgid "Insert white frames to show the whole image in your timeline. All image information will be shown in your timeline."
|
2870 |
+
msgstr "Füge weiße Rahmen ein, um das gesamte Bild in Deiner Zeitleiste anzuzeigen. Alle Bildinformationen werden in Deiner Zeitleiste angezeigt."
|
|
|
|
|
|
|
|
|
2871 |
|
2872 |
+
#: includes/B2S/Settings/Item.php:250 views/b2s/html/footer.php:112
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2873 |
msgid ""
|
2874 |
+
"The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. PLEASE NOTE: If you want your link posts to display the selected image from the Blog2Social preview editor, "
|
2875 |
+
"please make sure you have activated the Social Meta Tags for Facebook and Twitter in your Blog2Social settings. You find these settings in the tab \"Social Meta Data\". If you don't select a specific post image, some networks display the first image detected on your page. The "
|
2876 |
+
"image links to your blog post."
|
2877 |
msgstr ""
|
2878 |
+
"Im Link-Post-Format generiert das Netzwerk automatisch eine Link-Vorschau mit den Informationen aus den Social Meta Tags Deiner Blogbeiträge. Die Vorschau zeigt den Titel, das Bild und die ersten ein oder zwei Sätze des Beitrags. Ein Klick auf das Bild führt den Benutzer zu "
|
2879 |
+
"Deinem Blogbeitrag. BITTE BEACHTE: Wenn Deine Link-Posts das ausgewählte Bild aus dem Blog2Social Vorschau-Editor anzeigen sollen, stelle bitte sicher, dass Du die Social Meta Tags für Facebook und Twitter in Deinen Blog2Social-Einstellungen aktiviert hast. Diese "
|
2880 |
+
"Einstellungen findest Du im Tab \"Social Meta Angaben\". Wenn Du kein bestimmtes Beitragsbild für Deinen Blogbeitrag ausgewählt hast, zeigen einige Netzwerke das erste Bild an, dass sie auf Deiner Seite finden."
|
2881 |
+
|
2882 |
+
#: includes/B2S/Settings/Item.php:259 views/b2s/html/footer.php:134
|
2883 |
+
msgid "The image preview will be cropped automatically to fit the default Instagram layout for your Instagram timeline. The image will be shown uncropped when opening the preview page for your Instagram post."
|
2884 |
+
msgstr "Die Bildvorschau wird automatisch zugeschnitten, damit es dem Instagram-Standardlayout für Deine Instagram-Timeline entspricht. Das Bild wird als Ganzes angezeigt, wenn Du die Vorschauseite für Deinen Instagram-Beitrag öffnest. "
|
2885 |
|
2886 |
+
#: includes/B2S/Settings/Item.php:261 views/b2s/html/footer.php:117
|
2887 |
msgid ""
|
2888 |
+
"A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main "
|
2889 |
+
"benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook, you can edit the albums name with a description of your choice."
|
|
|
|
|
|
|
|
|
2890 |
msgstr ""
|
2891 |
+
"Ein Foto oder ein Bildbeitrag zeigt das ausgewählte Bild in der einseitigen Vorschau von Blog2Social und Deinem Kommentar über dem Bild an. Das Bild verlinkt auf die Bildansicht Deiner Bildergalerie im jeweiligen Netzwerk. Blog2Social fügt den Link zu Deinem Post in Deinem "
|
2892 |
+
"Kommentar hinzu. Der Hauptvorteil von Foto-Posts ist, dass Dein Bild in Deinen persönlichen Bildalben oder Deiner Galerie hochgeladen wird. In Facebook kannst Du den Namen des Albums mit einer Beschreibung Deiner Wahl bearbeiten."
|
|
|
|
|
|
|
|
|
|
|
2893 |
|
2894 |
#: includes/B2S/Ship/Image.php:27
|
2895 |
msgid "The images file types .jpg and .png are allowed. Please try another."
|
2896 |
+
msgstr "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
|
|
|
2897 |
|
2898 |
#: includes/B2S/Ship/Image.php:29
|
2899 |
msgid "To select an individual image from your media library,"
|
2900 |
msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
|
2901 |
|
2902 |
#: includes/B2S/Ship/Image.php:32
|
2903 |
+
msgid "The networks Diigo, Bloglovin’ and Google My Business do not support the GIF image format and will display your standard image instead."
|
2904 |
+
msgstr "Die Netzwerke Diigo, Bloglovin' und Google My Business unterstützen das GIF format nicht und stellen stattdessen das Standardbild dar."
|
|
|
|
|
|
|
|
|
2905 |
|
2906 |
#: includes/B2S/Ship/Image.php:33
|
2907 |
+
msgid "By changing your image in the link post format it will be changed for all networks listed below. This also applies for all scheduled posts in this post format. "
|
2908 |
+
msgstr "Wenn Du Dein Bild im Linkpost-Format änderst, wird es für alle unten aufgeführten Netzwerke geändert. Dies gilt auch für deine vorgeplanten Posts in diesem Format."
|
|
|
|
|
|
|
|
|
|
|
|
|
2909 |
|
2910 |
#: includes/B2S/Ship/Image.php:33
|
2911 |
msgid "More Information"
|
2912 |
msgstr "Weitere Informationen"
|
2913 |
|
2914 |
#: includes/B2S/Ship/Image.php:37
|
2915 |
+
msgid "The best size for images in social media posts are between: 667-1000px x 523-1000px. Blog2Social will automatically resize your image according to network requirements."
|
2916 |
+
msgstr "Die optimalen Bildgrößen für Deine Social Media Posts liegen zwischen: 667-1000px x 523-1000px <br> Blog2Social passt Dein Bild automatisch die Größe des jeweiligen Netzwerks an."
|
|
|
|
|
|
|
|
|
|
|
|
|
2917 |
|
2918 |
#: includes/B2S/Ship/Image.php:61
|
2919 |
msgid "No images are included in your post."
|
2975 |
msgid "post format"
|
2976 |
msgstr "Postformat"
|
2977 |
|
2978 |
+
#: includes/B2S/Ship/Item.php:340 includes/B2S/Ship/Item.php:1154
|
2979 |
msgid "Insert full-text"
|
2980 |
msgstr "ganzen Text einfügen"
|
2981 |
|
2982 |
+
#: includes/B2S/Ship/Item.php:342 includes/B2S/Ship/Item.php:1156
|
2983 |
msgid "Delete text"
|
2984 |
msgstr "Text löschen"
|
2985 |
|
2986 |
+
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651 includes/B2S/Ship/Item.php:1020
|
2987 |
+
msgid "Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
2988 |
+
msgstr "Bitte beachten Sie, dass es nach den neuen AGB von Twitter nicht mehr erlaubt ist, identische oder im Wesentlichen ähnliche Inhalte auf mehreren Accounts oder mehrere identische Updates auf einem Twitter Account oder auch mehreren Accounts zu posten."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2989 |
|
2990 |
+
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651 includes/B2S/Ship/Item.php:1020
|
2991 |
+
msgid "Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts."
|
2992 |
+
msgstr "Ein Verstoß gegen diese Regeln kann dazu führen, dass Twitter Ihren Account sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2993 |
|
2994 |
+
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651 includes/B2S/Ship/Item.php:1020
|
|
|
2995 |
msgid "Learn more about this"
|
2996 |
msgstr "Erfahre mehr darüber"
|
2997 |
|
2998 |
#: includes/B2S/Ship/Item.php:353
|
2999 |
+
msgid "Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups."
|
3000 |
+
msgstr "Bitte beachte: XING erlaubt die Veröffentlichung identischer Beiträge nur einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen Gruppen."
|
|
|
|
|
|
|
|
|
|
|
3001 |
|
3002 |
#: includes/B2S/Ship/Item.php:353
|
3003 |
msgid "Read more"
|
3004 |
msgstr "Weiterlesen"
|
3005 |
|
3006 |
#: includes/B2S/Ship/Item.php:358
|
3007 |
+
msgid "Please keep in mind that users are not allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
3008 |
+
msgstr "Bitte beachten Sie, dass es Benutzern nicht gestattet ist, identische oder im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte Updates in einem Konto zu veröffentlichen."
|
|
|
|
|
|
|
|
|
|
|
|
|
3009 |
|
3010 |
#: includes/B2S/Ship/Item.php:358
|
3011 |
+
msgid "Violating these rules can result in suspending your account. Always vary your content with different images, comments, hashtags or handles to prevent duplicate posts."
|
3012 |
+
msgstr "Ein Verstoß gegen diese Regeln kann zur Sperrung Ihres Kontos führen. Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
|
|
|
|
|
|
|
|
|
|
|
|
3013 |
|
3014 |
#: includes/B2S/Ship/Item.php:378
|
3015 |
msgid "hide calendar"
|
3016 |
msgstr "Planungskalender verbergen"
|
3017 |
|
3018 |
+
#: includes/B2S/Ship/Item.php:435 includes/B2S/Ship/Item.php:464 includes/B2S/Ship/Item.php:494 includes/B2S/Ship/Item.php:523 includes/B2S/Ship/Item.php:552 includes/B2S/Ship/Item.php:580 includes/B2S/Ship/Item.php:608 includes/B2S/Ship/Item.php:639
|
3019 |
+
#: includes/B2S/Ship/Item.php:662 includes/B2S/Ship/Item.php:683 includes/B2S/Ship/Item.php:704 includes/B2S/Ship/Item.php:725 includes/B2S/Ship/Item.php:746 includes/B2S/Ship/Item.php:767 includes/B2S/Ship/Item.php:777
|
|
|
|
|
|
|
|
|
|
|
|
|
3020 |
msgid "Write something about your post..."
|
3021 |
msgstr "Schreibe etwas..."
|
3022 |
|
3023 |
+
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:509 includes/B2S/Ship/Item.php:539 includes/B2S/Ship/Item.php:567 includes/B2S/Ship/Item.php:595
|
3024 |
+
msgid "Info: Change Open Graph Meta tags image, title and description for this network"
|
|
|
|
|
|
|
|
|
3025 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
3026 |
|
3027 |
+
#: includes/B2S/Ship/Item.php:453 includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:512 includes/B2S/Ship/Item.php:542 includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:598
|
3028 |
+
msgid "You want to change your link image, link title and link description for this network? Click here."
|
3029 |
+
msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
|
|
|
|
|
|
|
|
|
|
3030 |
|
3031 |
+
#: includes/B2S/Ship/Item.php:455 includes/B2S/Ship/Item.php:514 includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:572 includes/B2S/Ship/Item.php:600
|
|
|
|
|
3032 |
msgid "OG Meta title"
|
3033 |
msgstr "OG Titel"
|
3034 |
|
3035 |
+
#: includes/B2S/Ship/Item.php:456 includes/B2S/Ship/Item.php:515 includes/B2S/Ship/Item.php:545 includes/B2S/Ship/Item.php:573 includes/B2S/Ship/Item.php:601
|
|
|
|
|
3036 |
msgid "OG Meta description"
|
3037 |
msgstr "OG Beschreibung"
|
3038 |
|
3039 |
#: includes/B2S/Ship/Item.php:478
|
3040 |
+
msgid "Please note: Twitter stores the Card parameters of a link for up to 7 days. Changes may not be immediately visible on Twitter."
|
3041 |
+
msgstr "Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
|
|
|
|
|
|
|
|
3042 |
|
3043 |
#: includes/B2S/Ship/Item.php:480
|
3044 |
+
msgid "Info: Change Card Meta tags image, title and description for this network"
|
|
|
3045 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
3046 |
|
3047 |
#: includes/B2S/Ship/Item.php:485
|
3053 |
msgstr "Card Beschreibung"
|
3054 |
|
3055 |
#: includes/B2S/Ship/Item.php:537
|
3056 |
+
msgid "Please note: XING stores the Open Graph parameters of a link for up to 7 days. Changes may not be immediately visible on XING."
|
3057 |
+
msgstr "Hinweis: XING speichert die Open Graph Parameter eines Links für bis zu 7 Tage. Änderungen werden daher möglicherweise nicht sofort auf XING dargestellt."
|
|
|
|
|
|
|
|
|
|
|
3058 |
|
3059 |
#: includes/B2S/Ship/Item.php:793
|
3060 |
msgid "required"
|
3061 |
msgstr "erforderlich"
|
3062 |
|
3063 |
+
#: includes/B2S/Ship/Item.php:886
|
3064 |
msgid "Jobs & Projects"
|
3065 |
msgstr "Stellenangebote & Projekte"
|
3066 |
|
3067 |
+
#: includes/B2S/Ship/Item.php:887
|
3068 |
msgid "Events"
|
3069 |
msgstr "Events"
|
3070 |
|
3071 |
+
#: includes/B2S/Ship/Item.php:888
|
3072 |
msgid "Classified Ads"
|
3073 |
msgstr "Kleinanzeigen"
|
3074 |
|
3075 |
+
#: includes/B2S/Ship/Item.php:890
|
3076 |
msgid "Offer"
|
3077 |
msgstr "Angebot"
|
3078 |
|
3079 |
+
#: includes/B2S/Ship/Item.php:891
|
3080 |
msgid "Request"
|
3081 |
msgstr "Anfrage"
|
3082 |
|
3083 |
+
#: includes/B2S/Ship/Item.php:902
|
3084 |
msgid "The Headline..."
|
3085 |
msgstr "Die Überschrift..."
|
3086 |
|
3087 |
+
#: includes/B2S/Ship/Item.php:910
|
3088 |
#, php-format
|
3089 |
msgid "max. %s Tags"
|
3090 |
msgstr "max. %s Tags"
|
3091 |
|
3092 |
+
#: includes/B2S/Ship/Item.php:951
|
3093 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3094 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
3095 |
|
3096 |
+
#: includes/B2S/Ship/Item.php:970 views/b2s/partials/post-edit-modal.php:73
|
3097 |
msgid "Delay"
|
3098 |
msgstr "Verzögerung"
|
3099 |
|
3100 |
+
#: includes/B2S/Ship/Item.php:980 includes/B2S/Ship/Item.php:981 includes/B2S/Ship/Item.php:982 includes/B2S/Ship/Item.php:983 views/b2s/partials/post-edit-modal.php:77 views/b2s/partials/post-edit-modal.php:78 views/b2s/partials/post-edit-modal.php:79
|
|
|
|
|
|
|
|
|
3101 |
#: views/b2s/partials/post-edit-modal.php:80
|
3102 |
msgid "min"
|
3103 |
msgstr "min"
|
3104 |
|
3105 |
+
#: includes/B2S/Ship/Item.php:988
|
3106 |
msgid "Add Retweet"
|
3107 |
msgstr "Retweet hinzufügen"
|
3108 |
|
3109 |
+
#: includes/B2S/Ship/Item.php:1008
|
3110 |
msgid "Share Now"
|
3111 |
msgstr "Sofort teilen"
|
3112 |
|
3113 |
+
#: includes/B2S/Ship/Item.php:1013
|
3114 |
msgid "Schedule Recurrent Post"
|
3115 |
msgstr "regelmäßig Planen"
|
3116 |
|
3117 |
+
#: includes/B2S/Ship/Item.php:1049 views/b2s/partials/post-edit-modal.php:47
|
3118 |
msgid ""
|
3119 |
+
"Please note: Your account is connected via an old XING API that is no longer supported by XING after March 31. Please connect your XING profile, as well as your XING company pages (Employer branding profiles) and business pages with the new XING interface in the Blog2Social "
|
3120 |
+
"network settings. To do this, go to the Blog2Social Networks section and connect your XING accounts with the new XING."
|
|
|
|
|
|
|
|
|
3121 |
msgstr ""
|
3122 |
+
"Bitte beachte: Dein Account ist über eine alte XING-Schnittstelle verbunden, die nicht weiter von XING unterstützt wird. Bitte verbinde Dein XING-Profil sowie Deine XING-Unternehmensseiten- (Arbeitgeberprofile) und Business Pages mit der neuen XING-Schnittstelle. Gehe dazu in "
|
3123 |
+
"den Bereich Blog2Social \"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
|
|
|
|
|
|
3124 |
|
3125 |
+
#: includes/B2S/Ship/Item.php:1053 views/b2s/partials/post-edit-modal.php:51
|
3126 |
+
msgid "Please note: Google will shut down Google+ for all private accounts (profiles, pages, groups) on 2nd April 2019. You can find further information and the next steps, including how to download your photos and other content here:"
|
3127 |
+
msgstr "Bitte beachte: Google stellt das Netzwerk Google+ für alle private Konten (Profile, Seiten und Gruppen) zum 02. April 2019 ein. Hier findest Du Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und andere Inhalte herunterladen kannst:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3128 |
|
3129 |
+
#: includes/B2S/Ship/Item.php:1056
|
3130 |
msgid "Repeats"
|
3131 |
msgstr "Wiederholen"
|
3132 |
|
3133 |
+
#: includes/B2S/Ship/Item.php:1057 includes/B2S/Ship/Item.php:1060
|
3134 |
msgid "Duration"
|
3135 |
msgstr "Dauer"
|
3136 |
|
3137 |
+
#: includes/B2S/Ship/Item.php:1061
|
3138 |
msgid "Number of repeats"
|
3139 |
msgstr "Anzahl der Wiederholungen"
|
3140 |
|
3141 |
+
#: includes/B2S/Ship/Item.php:1062
|
3142 |
msgid "Day of month"
|
3143 |
msgstr "Tag im Monat"
|
3144 |
|
3145 |
+
#: includes/B2S/Ship/Item.php:1063
|
3146 |
msgid "Repeats every (days)"
|
3147 |
msgstr "Wiederholt sich alle X Tage"
|
3148 |
|
3149 |
+
#: includes/B2S/Ship/Item.php:1065
|
3150 |
msgid "Start date"
|
3151 |
msgstr "Startdatum"
|
3152 |
|
3153 |
+
#: includes/B2S/Ship/Item.php:1066
|
3154 |
msgid "Time to publish"
|
3155 |
msgstr "Veröffentlichungszeitpunkt"
|
3156 |
|
3157 |
+
#: includes/B2S/Ship/Item.php:1075
|
3158 |
msgid "weekly"
|
3159 |
msgstr "wöchentlich"
|
3160 |
|
3161 |
+
#: includes/B2S/Ship/Item.php:1076
|
3162 |
msgid "monthly"
|
3163 |
msgstr "monatlich"
|
3164 |
|
3165 |
+
#: includes/B2S/Ship/Item.php:1077
|
3166 |
msgid "own period"
|
3167 |
msgstr "Eigener Zeitraum"
|
3168 |
|
3169 |
+
#: includes/B2S/Ship/Item.php:1083
|
3170 |
msgid "Week"
|
3171 |
msgstr "Woche"
|
3172 |
|
3173 |
+
#: includes/B2S/Ship/Item.php:1083
|
3174 |
msgid "Weeks"
|
3175 |
msgstr "Wochen"
|
3176 |
|
3177 |
+
#: includes/B2S/Ship/Item.php:1092
|
3178 |
msgid "Month"
|
3179 |
msgstr "Monat"
|
3180 |
|
3181 |
+
#: includes/B2S/Ship/Item.php:1092
|
3182 |
msgid "Months"
|
3183 |
msgstr "Monate"
|
3184 |
|
3185 |
+
#: includes/B2S/Ship/Item.php:1112
|
3186 |
msgid "End Of Month"
|
3187 |
msgstr "Monatsende"
|
3188 |
|
3189 |
+
#: includes/B2S/Ship/Item.php:1117
|
3190 |
msgid "Timespan"
|
3191 |
msgstr "Zeitspanne"
|
3192 |
|
3193 |
+
#: includes/B2S/Ship/Item.php:1120 views/b2s/partials/post-edit-modal.php:63 views/b2s/partials/post-edit-modal.php:66
|
|
|
3194 |
msgid "Time"
|
3195 |
msgstr "Mal"
|
3196 |
|
3197 |
+
#: includes/B2S/Ship/Item.php:1138
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3198 |
msgid "add another post"
|
3199 |
msgstr "einen weiteren Post anlegen"
|
3200 |
|
3201 |
+
#: includes/B2S/Ship/Item.php:1152
|
3202 |
msgid "Copy from original"
|
3203 |
msgstr "Originaltext kopieren"
|
3204 |
|
3205 |
+
#: includes/B2S/Ship/Item.php:1168
|
3206 |
msgid "Apply Settings To All Networks"
|
3207 |
msgstr "Planung für alle Netzwerke übernehmen"
|
3208 |
|
3209 |
+
#: includes/B2S/Ship/Item.php:1169
|
3210 |
msgid "Save as best time for this network"
|
3211 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
3212 |
|
3213 |
#: includes/B2S/Ship/Save.php:391
|
3214 |
+
msgid "For sharing your posts on personal Facebook Profiles you can use Facebook Instant Sharing"
|
3215 |
+
msgstr "Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht Facebook Instant Sharing zur Verfügung"
|
|
|
|
|
|
|
|
|
3216 |
|
3217 |
#: includes/B2S/Ship/Save.php:391
|
3218 |
msgid "Learn how it works"
|
3223 |
msgstr "Und so funktioniert es:"
|
3224 |
|
3225 |
#: includes/B2S/Ship/Save.php:394
|
3226 |
+
msgid "-To share your post immediately, click the \"Share\" button next to your selected Facebook profile below."
|
3227 |
+
msgstr "-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button neben Deinem unten aufgeführten Profil."
|
|
|
|
|
|
|
|
|
3228 |
|
3229 |
#: includes/B2S/Ship/Save.php:395
|
3230 |
msgid ""
|
3231 |
+
"-For scheduled posts, Blog2Social will save your post and move it to the \"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your scheduled date and time, your post will move to the \"Instant Sharing\" tab and you can click on \"Share\" to post it to your "
|
3232 |
+
"Facebook Profile instantly."
|
|
|
|
|
3233 |
msgstr ""
|
3234 |
+
"-Bei geplanten Beiträgen speichert Blog2Social Deinen Beitrag und verschiebt ihn in das \"Geplante Beiträge\" Tab in der Navigationsleiste unter \"Beiträge\". An Deinem geplanten Termin erscheint dein Post im “Instant Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post "
|
3235 |
+
"dann an Dein Facebook-Profil zu senden!"
|
|
|
|
|
|
|
3236 |
|
3237 |
#: includes/B2S/Ship/Save.php:399
|
3238 |
+
msgid "For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
3239 |
+
msgstr "Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing zur Verfügung"
|
|
|
|
|
|
|
3240 |
|
3241 |
#: includes/B2S/Ship/Save.php:402
|
3242 |
+
msgid "-To share your post immediately, click the \"Share\" button next to your selected Google+ account below."
|
3243 |
+
msgstr "Um den Beitrag sofort zu teilen, klicke einfach auf den Teilen Button neben Deinem unten aufgeführten Konto."
|
|
|
|
|
|
|
|
|
3244 |
|
3245 |
#: includes/B2S/Ship/Save.php:403
|
3246 |
msgid ""
|
3247 |
+
"-For scheduled posts, Blog2Social will save your post and move it to the \"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On your scheduled date and time, your post will move to the \"Instant Sharing\" tab and you can click on \"Share\" to post it to "
|
3248 |
+
"your account instantly."
|
|
|
|
|
3249 |
msgstr ""
|
3250 |
+
"-Bei geplanten Beiträgen speichert Blog2Social Deinen Beitrag und verschiebt ihn in das \"Geplante Beiträge\" Tab in der Navigationsleiste unter \"Beiträge\". An Deinem geplanten Termin erscheint dein Post im “Instant Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post "
|
3251 |
+
"dann an Dein Facebook-Profil zu senden!"
|
|
|
|
|
|
|
3252 |
|
3253 |
#: includes/B2S/Ship/Save.php:404
|
3254 |
+
msgid "Please note: You post has to be marked as public to be posted in a group."
|
3255 |
+
msgstr "Um in eine Gruppe zu teilen, muss Dein Beitrag auf Öffentlich gestellt werden."
|
|
|
|
|
|
|
3256 |
|
3257 |
#: includes/B2S/Ship/Save.php:409
|
3258 |
msgid "Please share your post now"
|
3298 |
msgid "We never store your data from your social media profiles"
|
3299 |
msgstr "Wir speichern Deine Daten aus Deinen Social-Media-Profilen niemals."
|
3300 |
|
3301 |
+
#: views/b2s/html/footer.php:8 views/prg/html/footer.php:8 views/prg/html/header.php:45
|
|
|
3302 |
msgid "Post"
|
3303 |
msgstr "Beitrag"
|
3304 |
|
3323 |
msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden"
|
3324 |
|
3325 |
#: views/b2s/html/footer.php:56
|
3326 |
+
msgid "You can select different combinations of networks and save them for different sharing purposes."
|
3327 |
+
msgstr "Du kannst verschiedene Netzwerk-Gruppierungen auswählen und für verschiedene Zwecke speichern."
|
|
|
|
|
|
|
|
|
3328 |
|
3329 |
#: views/b2s/html/footer.php:59
|
3330 |
msgid ""
|
3331 |
+
"Blog2Social Premium PRO allows you to save your preferred social network accounts into network collections for a faster future access. You can assign individual names for each network collection so you can easily access them for your next social sharing activitiy. Use "
|
3332 |
+
"specific network collections for recurring sharing purposes or campaigns, e.g. for initial sharing of new blog posts, for re-sharing evergreen content or for sharing images or videos. Bundle your preferred social network accounts into a network collection for a faster future "
|
3333 |
+
"access. Assign a name to each network collection so you can easily access them for your next social sharing activitiy. You can also connect multiple profiles, pages and groups per network in one network collection."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3334 |
msgstr ""
|
3335 |
+
"Ab Blog2Social Premium PRO kannst Du Deine bevorzugten Netzwerk-Gruppierungen zur späteren Verwendung speichern und individuelle Namen für jede Netzwerk-Gruppierung auswählen. Verwende bestimmte Netzwerk-Gruppierungen für wiederkehrende Planung oder Kampagnen, z.B. für die "
|
3336 |
+
"erste Veröffentlichung neuer Blogbeiträge, für die erneute Veröffentlichung von Evergreen Content oder für das Teilen von Bildern oder Videos. Wähle schnell und einfach Deine bevorzugte Netzwerk-Gruppierung für Deine nächste Social-Media-Aktivität. Du kannst auch mehrere "
|
3337 |
+
"Profile, Seiten und Gruppen pro Netzwerk in einer Netzwerk-Gruppierung verbinden."
|
|
|
|
|
|
|
|
|
|
|
|
|
3338 |
|
3339 |
#: views/b2s/html/footer.php:62
|
3340 |
msgid "With Blog2Social PREMIUM PRO you can also:"
|
3341 |
msgstr "Mit Blog2Social PREMIUM PRO kannst Du außerdem:"
|
3342 |
|
3343 |
#: views/b2s/html/footer.php:64
|
3344 |
+
msgid "Post on LinkedIn pages, XING pages and groups, as well as Facebook pages and groups"
|
3345 |
+
msgstr "Veröffentliche Posts auf LinkedIn-Seiten, XING-Seiten und -Gruppen sowie Facebook-Seiten und -Gruppen"
|
|
|
|
|
|
|
|
|
3346 |
|
3347 |
#: views/b2s/html/footer.php:66
|
3348 |
+
msgid "Schedule your posts at the best times on each network: for one time, multiple times or recurrently"
|
3349 |
+
msgstr "Plane Deine Beiträge zu den besten Zeiten in jedem Netzwerk: einmal, mehrmals oder wiederkehrend"
|
|
|
|
|
|
|
|
|
3350 |
|
3351 |
#: views/b2s/html/footer.php:69
|
3352 |
+
msgid "Reporting and calendar: keep track of your published and scheduled social media posts"
|
3353 |
+
msgstr "Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten und geplanten Social Media Beiträge."
|
|
|
|
|
|
|
|
|
3354 |
|
3355 |
#: views/b2s/html/footer.php:71 views/b2s/html/footer.php:89
|
3356 |
msgid "Upgrade to PRO and above"
|
3361 |
msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
3362 |
|
3363 |
#: views/b2s/html/footer.php:78
|
3364 |
+
msgid "With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as well as XING groups."
|
3365 |
+
msgstr "Mit Blog2Social Premium PRO kannst Du Seiten in LinkedIn und XING, sowie XING-Gruppen verbinden."
|
|
|
|
|
|
|
|
|
3366 |
|
3367 |
#: views/b2s/html/footer.php:81
|
3368 |
msgid "Also included:"
|
3382 |
|
3383 |
#: views/b2s/html/footer.php:86
|
3384 |
msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
|
3385 |
+
msgstr "Beste Zeiten Manager: Plane Deine Veröffentlichungen mehrmals oder regelmäßig."
|
|
|
|
|
3386 |
|
3387 |
#: views/b2s/html/footer.php:87
|
3388 |
msgid "Reporting with links to already published posts"
|
3393 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
3394 |
|
3395 |
#: views/b2s/html/footer.php:107
|
3396 |
+
msgid "Select link post or image post format to define your preferred custom post format for Twitter, LinkedIn, and Facebook."
|
3397 |
+
msgstr "Wähle zwischen Link-Beitrag oder Bild-Beitrag, um Dein bevorzugtes Postformat für Twitter, LinkedIn und Facebook zu definieren."
|
|
|
|
|
|
|
|
|
3398 |
|
3399 |
#: views/b2s/html/footer.php:116
|
3400 |
msgid "Photo Post"
|
3401 |
msgstr "Bild-Beitrag"
|
3402 |
|
3403 |
#: views/b2s/html/footer.php:124
|
3404 |
+
msgid "For Instagram, you can select \"image with frame\" or \"image cut out\" as your preferred custom post format."
|
3405 |
+
msgstr "Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als bevorzugtes benutzerdefiniertes Postformat auswählen."
|
|
|
|
|
|
|
|
|
3406 |
|
3407 |
#: views/b2s/html/footer.php:174
|
3408 |
msgid "Did you miss something?"
|
3418 |
|
3419 |
#: views/b2s/html/footer.php:195
|
3420 |
msgid ""
|
3421 |
+
"Blog2Social provides you with a pre-configured time-scheme to automatically schedule your social media posts for the best times to share on each social network based on recent research. Click Load Best Times in the preview editor to schedule your posts automatically for the "
|
3422 |
+
"best times to post on each social network."
|
|
|
|
|
|
|
3423 |
msgstr ""
|
3424 |
+
"Blog2Social bietet Dir ein vorkonfiguriertes Zeitschema, um Deine Social Media Beiträge automatisch für die besten Zeiten für jedes soziale Netzwerk zu teilen, basierend auf aktuellen Forschungsergebnissen. Klicke dazu im Vorschau-Editor auf „Lade beste Zeiten“, um Deine "
|
3425 |
+
"Beiträge automatisch für die besten Zeiten in jedem sozialen Netzwerk zu planen."
|
|
|
|
|
|
|
3426 |
|
3427 |
#: views/b2s/html/footer.php:197
|
3428 |
msgid ""
|
3429 |
+
"You can also configure your own individual time settings for each of your social media connections to post your content on social media when your followers are online. By configuring an individual cross-posting schedule for all your networks you can set up an effective social "
|
3430 |
+
"media posting plan to reach as many followers as possible."
|
|
|
|
|
|
|
3431 |
msgstr ""
|
3432 |
+
"Du kannst auch Deine eigenen individuellen Zeiteinstellungen für jede Deiner Social Media-Verbindungen konfigurieren, um Deine Inhalte auf Social Media zu veröffentlichen, wenn Deine Follower online sind. Durch die Konfiguration eines individuellen Cross-Posting-Plans für "
|
3433 |
+
"alle Deine Netzwerke kannst Du einen effektiven Social Media-Posting-Plan einrichten, um so viele Follower wie möglich zu erreichen."
|
|
|
|
|
|
|
|
|
3434 |
|
3435 |
#: views/b2s/html/footer.php:199
|
3436 |
+
msgid "Click Load My Time Settings in the preview editor to schedule your posts automatically for your individually chosen best times."
|
3437 |
+
msgstr "Klicke im Vorschau-Editor auf „Meine Zeiteinstellungen laden\", um Deine Beiträge automatisch für Deine individuell gewählten besten Zeiten zu planen."
|
|
|
|
|
|
|
|
|
3438 |
|
3439 |
#: views/b2s/html/footer.php:201
|
3440 |
+
msgid "You can always edit the predefined times in the preview editor for any post or network and save your new settings as default for future use."
|
3441 |
+
msgstr "Du kannst die vordefinierten Zeiten im Vorschau-Editor für jeden Beitrag oder jedes Netzwerk bearbeiten und Deine neuen Einstellungen als Standard für die zukünftige Verwendung speichern."
|
|
|
|
|
|
|
|
|
|
|
3442 |
|
3443 |
#: views/b2s/html/footer.php:203
|
3444 |
+
msgid "Learn how to set up and apply individual best times to your social media scheduling and auto-poster."
|
3445 |
+
msgstr "Erfahre, wie Du individuelle Beste Zeiten für Deine Social Media Planung und Deinen Auto-Poster einrichten und anwenden kannst."
|
|
|
|
|
|
|
|
|
3446 |
|
3447 |
#: views/b2s/html/footer.php:237
|
3448 |
msgid "Why Retweets?"
|
3449 |
msgstr "Wieso Retweeten?"
|
3450 |
|
3451 |
#: views/b2s/html/footer.php:240
|
3452 |
+
msgid "Retweets are the recommended way to reshare the same Tweets across Twitter accounts in accordance with Twitter new rules. You can now schedule multiple Retweets for an original Tweet that you are planning right from your WordPress."
|
3453 |
+
msgstr "Retweets sind die empfohlene Methode, um die gleichen Tweets über mehrere Twitter-Konten hinweg im Einklang mit den neuen Regeln von Twitter zu verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt aus Deinem WordPress heraus planen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3454 |
|
3455 |
#: views/b2s/html/footer.php:243
|
3456 |
+
msgid "If Retweets are enabled, every Original-Tweet you schedule in this step will be retweeted by the selected Twitter accounts. If, for example, 3 Original-Tweets are scheduled, every single Tweet will trigger a Retweet for the selected Twitter accounts."
|
3457 |
+
msgstr "Wenn Retweets aktiviert sind, wird jeder Original-Tweet, den Du in diesem Schritt planst, von den ausgewählten Twitter-Konten retweetet. Wenn beispielsweise 3 Original-Tweets geplant sind, löst jeder einzelne Tweet einen Retweet für die ausgewählten Twitter-Konten aus."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3458 |
|
3459 |
#: views/b2s/html/footer.php:247
|
3460 |
msgid "Would you like to retweet?"
|
3466 |
|
3467 |
#: views/b2s/html/footer.php:279
|
3468 |
msgid ""
|
3469 |
+
"You can use Bit.ly links to shorten the URL of your links and to track the performance of your links in your social media networks. Activate Bit.ly in the Blog2Social settings and link it to your Bit.ly account. Your social media posts will then be shared with your Bit.ly "
|
3470 |
+
"links and you can monitor the success of your posts in your Bit.ly account. Please note: Reddit, Pinterest and Medium do not allow Bit.ly shortlinks. Blog2Social will apply the regular URL for these networks."
|
|
|
|
|
|
|
|
|
|
|
3471 |
msgstr ""
|
3472 |
+
"Du kannst Bit.ly-Links verwenden, um die URL Deiner Links zu verkürzen und die Performance Deiner Links in den sozialen Netzwerken zu verfolgen. Aktiviere Bit.ly in den Blog2Social-Einstellungen und verbinde Blog2Social mit Deinem Bit.ly-Konto. Deine Social Media Beiträge "
|
3473 |
+
"werden dann mit Deinen Bit.ly Links geteilt und Du kannst den Erfolg Deiner Beiträge in Deinem Bit.ly Konto verfolgen. Bitte beachte: Reddit, Pinterest und Medium erlauben keine Bit.ly Kurzlinks. Blog2Social verwendet für diese Netzwerke dann die normale URL. "
|
|
|
|
|
|
|
|
|
|
|
|
|
3474 |
|
3475 |
#: views/b2s/html/footer.php:290
|
3476 |
msgid "Define Twitter post content"
|
3477 |
msgstr "Twitter Beitragsinhalt definieren"
|
3478 |
|
3479 |
#: views/b2s/html/footer.php:293
|
3480 |
+
msgid "Select the content that will be automatically pre-filled in your Twitter posts. If you have ticked the box \"include WordPress tags as hashtags in my post\", hashtags are automatically added in the drop-down menu."
|
3481 |
+
msgstr "Wähle den Inhalt aus, der automatisch in Deinen Twitter-Posts vorgefüllt wird. Wenn Du das Kästchen \"WordPress-Tags als Hashtags in meinen Beitrag aufnehmen\" angekreuzt haben, werden Hashtags automatisch im Dropdown-Menü hinzugefügt."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3482 |
|
3483 |
#: views/b2s/html/footer.php:349
|
3484 |
+
msgid "Share imported posts with the Auto Poster: Posts that you import via RSS feeds and plugins can be shared automatically on your social media channels."
|
3485 |
+
msgstr "Teile importierte Beiträge mit dem Auto-Poster: Beiträge, die Du über RSS-Feeds und Plugins importierst, können automatisch auf Deinen Social Media-Kanälen geteilt werden."
|
|
|
|
|
|
|
|
|
|
|
3486 |
|
3487 |
#: views/b2s/html/footer.php:350
|
3488 |
#, php-format
|
3489 |
+
msgid "<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for imported posts</a>"
|
3490 |
+
msgstr "<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für importierte Beiträge einrichtest.</a>"
|
3491 |
+
|
3492 |
+
#: views/b2s/html/footer.php:385
|
3493 |
+
msgid "Blog2Social: Re-Share Posts"
|
3494 |
+
msgstr "Blog2Social: Beiträge wiederholt teilen"
|
3495 |
+
|
3496 |
+
#: views/b2s/html/footer.php:389
|
3497 |
msgid ""
|
3498 |
+
"Keep your social media feed updated automatically with your best content and save valuable time by reviving your evergreen content regularly. Automate your resharing process with Blog2Social, so you can use your time to create new content and interact with your community."
|
|
|
3499 |
msgstr ""
|
3500 |
+
"Blog2Social kann Deinen Social-Media-Feed automatisch und regelmäßig mit Deinem besten Content versorgen. Spare wertvolle Zeit und lass Blog2Social Deinen Evergreen-Content automatisch wiederbeleben. Automatisiere Deinen gesamten Re-Sharing-Prozess, damit Du mehr Zeit hast "
|
3501 |
+
"neuen Content zu erstellen und mit Deiner Community zu interagieren."
|
3502 |
|
3503 |
+
#: views/b2s/html/footer.php:390
|
3504 |
+
#, php-format
|
3505 |
+
msgid "<a target=\"_blank\" href=\"%s\">More information</a>"
|
3506 |
+
msgstr "<a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
3507 |
+
|
3508 |
+
#: views/b2s/html/footer.php:429
|
3509 |
msgid "Social Meta Tags Settings"
|
3510 |
msgstr "Social Meta Tags Einstellungen"
|
3511 |
|
3512 |
+
#: views/b2s/html/footer.php:432 views/b2s/html/footer.php:516
|
3513 |
msgid "Change image, title and description for your post on this network"
|
3514 |
+
msgstr "Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem Netzwerk"
|
|
|
|
|
3515 |
|
3516 |
+
#: views/b2s/html/footer.php:438
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3517 |
msgid ""
|
3518 |
+
"Facebook has changed its policy for posting link posts via plugins or web applications. Facebook does no longer display the featured or selected image for your blog post, but only images defined in the Open Graph (OG) Meta Tags of your blog post. If you have not defined any "
|
3519 |
+
"OG Meta Tags, Facebook displays a random image from your blog post or blog site. If you have defined an image in your blog post OG Meta Tags that does not meet the image size requirements, Facebook also does not displayed your selected image, but a random image. Please make "
|
3520 |
+
"sure that your image meets the image size requirements for Facebook."
|
|
|
|
|
|
|
|
|
3521 |
msgstr ""
|
3522 |
+
"Facebook hat seine Richtlinien für die Veröffentlichung von Link-Beiträgen über Plugins oder Webanwendungen geändert. Facebook zeigt nicht mehr das Beitragsbild oder ausgewählte Bild für Deinen Blogbeitrag an, sondern nur noch das Bild, das in den Open Graph (OG) Meta Tags "
|
3523 |
+
"Deines Blogbeitrags definiert ist. Wenn Du keine OG Meta Tags definiert hast, zeigt Facebook ein zufälliges Bild aus Deinem Blogbeitrag oder Deiner Blog-Seite an. Wenn Du in den OG Meta Tags Deines Blogbeitrag ein Bild definiert hast, das nicht den Anforderungen an die "
|
3524 |
+
"Bildgröße entspricht, zeigt Facebook gar kein Bild oder ein zufällig gewähltes Bild bei Link-Beiträgen an. Bitte stelle sicher, dass Dein Bild die Anforderungen an die Bildgröße für Facebook erfüllt."
|
3525 |
+
|
3526 |
+
#: views/b2s/html/footer.php:440
|
|
|
|
|
|
|
|
|
|
|
3527 |
msgid ""
|
3528 |
+
"With Blog2Social you can select a featured image or any image you select to be displayed with your link post. Blog2Social will automatically write the required parameter in the OG Meta Tags of your blog post, so that your selected image will be displayed with your link post. "
|
3529 |
+
"If you don't want Blog2Social to do that, because you have defined your own OG meta tags, please uncheck this box. Please note that you cannot select a specific image for your link post without OG meta tags."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3530 |
msgstr ""
|
3531 |
+
"Mit Blog2Social kannst Du das Beitragsbild oder ein beliebiges Bild auswählen, das Du in Deinem Linkbeitrag anzeigen möchtest. Blog2Social schreibt automatisch den erforderlichen Parameter in die Open Graph (OG) Meta Tags Deines Blogbeitrags, so dass das ausgewählte Bild mit "
|
3532 |
+
"Deinem Linkbeitrag angezeigt wird. Wenn Du nicht möchtest, dass Blog2Social das tut, weil Du Deine eigenen Open Graph Meta Tags definiert hast, deaktiviere bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für Deinen Linkbeitrag bei Facebook auswählen "
|
3533 |
+
"kannst.\t\t"
|
3534 |
+
|
3535 |
+
#: views/b2s/html/footer.php:443
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3536 |
msgid ""
|
3537 |
+
"Twitter has changed its policy for posting link posts via plugins or web applications. Twitter does no longer display the featured or selected image for your blog post, but only images defined in the Twitter Card Meta Tags of your blog post. If you have not defined any "
|
3538 |
+
"Twitter Card Meta Tags, Twitter displays a random image from your blog post or blog site. If you have defined an image in your blog post Twitter Card Meta Tags that does not meet the image size requirements, Twitter displays a white space for the image of your link post. "
|
3539 |
+
"Please make sure that your image meets the image size requirements for Twitter."
|
|
|
|
|
|
|
|
|
3540 |
msgstr ""
|
3541 |
+
"Twitter hat seine Richtlinien für die Veröffentlichung von Link-Beiträgen über Plugins oder Webanwendungen geändert. Twitter zeigt nicht mehr das Beitragsbild oder ausgewählte Bild für Deinen Blogbeitrag an, sondern nur noch das Bild, das in den Twitter Card Meta Tags Deines "
|
3542 |
+
"Blogbeitrags definiert ist. Wenn Du keine Twitter Card Meta Tags definiert hast, zeigt Twitter ein zufälliges Bild aus Deinem Blogbeitrag oder Deiner Blog-Seite an. Wenn Du in den Twitter Card Meta Tags Deines Blogbeitrag ein Bild definiert hast, das nicht den Anforderungen "
|
3543 |
+
"an die Bildgröße entspricht, zeigt Twitter einen weißen Bereich anstelle Deines Bildes bei Link-Beiträgen an. Bitte stelle sicher, dass Dein Bild die Anforderungen an die Bildgröße für Twitter erfüllt."
|
3544 |
+
|
3545 |
+
#: views/b2s/html/footer.php:445
|
|
|
|
|
|
|
|
|
|
|
3546 |
msgid ""
|
3547 |
+
"With Blog2Social you can select a featured image or any image you select to be displayed with your link post. Blog2Social will automatically write the required parameter in the Twitter Card meta tags of your blog post, so that your selected image will be displayed with your "
|
3548 |
+
"link post. If you don't want Blog2Social to do that, because you have defined your own Twitter Card meta tags, please uncheck this box. Please note that you cannot select a specific image for your link post without Twitter Card meta tags."
|
3549 |
msgstr ""
|
3550 |
+
"Mit Blog2Social kannst Du das Beitragsbild oder ein beliebiges Bild auswählen, das Du in Deinem Linkbeitrag anzeigen möchtest. Blog2Social schreibt automatisch den erforderlichen Parameter in die Twitter Card-Meta-Tags Deines Blogbeitrags, so dass das ausgewählte Bild mit "
|
3551 |
+
"Deinem Linkbeitrag angezeigt wird. Wenn Du nicht möchtest, dass Blog2Social das tut, weil Du Deine eigenen Twitter Card Meta-Tags definiert hast, deaktiviere bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für Deinen Linkbeitrag bei Twitter auswählen "
|
3552 |
+
"kannst."
|
3553 |
+
|
3554 |
+
#: views/b2s/html/footer.php:448
|
3555 |
+
msgid "You can change the image, title and description for your post on Facebook, by editing the following fields for"
|
3556 |
+
msgstr "Du kannst das Bild, den Titel und die Beschreibung Deines Beitrags auf Facebook ändern, indem Du die folgenden Felder für die Open GraphTags bearbeitest"
|
3557 |
|
3558 |
+
#: views/b2s/html/footer.php:451 views/b2s/html/footer.php:466
|
3559 |
msgid "image"
|
3560 |
msgstr "Bild"
|
3561 |
|
3562 |
+
#: views/b2s/html/footer.php:452 views/b2s/html/footer.php:467
|
3563 |
msgid "title"
|
3564 |
msgstr "Titel"
|
3565 |
|
3566 |
+
#: views/b2s/html/footer.php:453 views/b2s/html/footer.php:468
|
3567 |
msgid "description"
|
3568 |
msgstr "Beschreibung"
|
3569 |
|
3570 |
+
#: views/b2s/html/footer.php:455
|
3571 |
+
msgid "Blog2Social will automatically write these information in the Facebook Open Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
3572 |
+
msgstr "Blog2Social schreibt diese Informationen automatisch in die Facebook Open Graph (OG) Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
|
|
|
|
|
|
|
|
3573 |
|
3574 |
+
#: views/b2s/html/footer.php:458
|
3575 |
msgid ""
|
3576 |
+
"Please note: If this post has already been shared or scheduled previously, your current changes will also affect the look of previously shared or scheduled posts, as Facebook always refers to the current Open Graph meta tags information and automatically updated all existing "
|
3577 |
+
"posts."
|
|
|
|
|
3578 |
msgstr ""
|
3579 |
+
"Bitte beachte: Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde, wirken sich Deine aktuellen Änderungen auch auf das Aussehen von zuvor geteilten oder geplanten Beiträgen aus, da Facebook sich immer die aktuellsten Informationen aus den Open Graph Meta Tags zieht "
|
3580 |
+
"und alle bereits existierenden Beiträge automatisch updatet. "
|
|
|
|
|
|
|
3581 |
|
3582 |
+
#: views/b2s/html/footer.php:460
|
3583 |
#, php-format
|
3584 |
+
msgid "Please note: Your changes will have no effect on your social media posts on Facebook, if you have manually unchecked the Meta Tag options for Facebook in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
3585 |
+
msgstr "Bitte beachte: Deine Änderungen haben keine Auswirkungen auf Deine Social Media Beiträge auf Facebook, wenn Du die Meta Tag Optionen für Facebook in Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3586 |
|
3587 |
+
#: views/b2s/html/footer.php:463
|
3588 |
+
msgid "You can change the image, title and description for your post on Twitter, by editing the following fields for"
|
3589 |
+
msgstr "Du kannst das Bild, den Titel und die Beschreibung Deines Beitrags auf Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags bearbeitest"
|
|
|
|
|
|
|
|
|
|
|
3590 |
|
3591 |
+
#: views/b2s/html/footer.php:470
|
3592 |
+
msgid "Blog2Social will automatically write these information in the Twitter Card Meta Tags for Image, Title and Description of your blog post."
|
3593 |
+
msgstr "Blog2Social schreibt diese Informationen automatisch in die Twitter Card Meta Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
|
|
|
|
|
|
|
|
3594 |
|
3595 |
+
#: views/b2s/html/footer.php:473
|
3596 |
msgid ""
|
3597 |
+
"Please note: If this post was previously shared or scheduled, your current changes will also affect the look of previously shared or scheduled posts, as Twitter will always pull the most up-to-date information from the Twitter Card tags. If this post has already been shared, "
|
3598 |
+
"it may take up to 7 days for Twitter to update your current changes."
|
|
|
|
|
|
|
3599 |
msgstr ""
|
3600 |
+
"Bitte beachte: Wenn dieser Beitrag bereits vorher geteilt oder geplant wurde, wirken sich Deine aktuellen Änderungen auch auf das Aussehen von zuvor geteilten oder geplanten Beiträgen aus, da Twitter sich immer die aktuellsten Informationen aus den Twitter Card Tags zieht. "
|
3601 |
+
"Wenn dieser Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter Deine aktuellen Änderungen aktualisiert."
|
3602 |
+
|
3603 |
+
#: views/b2s/html/footer.php:475
|
|
|
|
|
|
|
|
|
3604 |
#, php-format
|
3605 |
+
msgid "Please note: Your changes will have no effect on your social media posts on Twitter, if you have manually unchecked the Meta Tag options for Twitter in your <a target=\"_blank\" href=\"%s\">settings</a>"
|
3606 |
+
msgstr "Bitte beachte: Deine Änderungen haben keine Auswirkungen auf Deine Social Media Beiträge auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3607 |
|
3608 |
+
#: views/b2s/html/footer.php:482
|
3609 |
msgid "You want to change the image, title and description for your post?"
|
3610 |
+
msgstr "Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
|
|
|
3611 |
|
3612 |
+
#: views/b2s/html/footer.php:521
|
3613 |
msgid ""
|
3614 |
+
"You are currently sharing this post as image post. Changes to title and description Meta Tag parameters will only be supported for link post formats. Please change your post format to link post to make individual changes to the title and description for your post preview."
|
|
|
|
|
|
|
3615 |
msgstr ""
|
3616 |
+
"Du teilst diesen Beitrag derzeit als Bild-Beitrag. Änderungen an den Meta Tags für Titel und Beschreibung werden nur für das Link-Beitragsformat unterstützt. Bitte ändere Dein Beitragsformat auf Link-Beitrag, um individuelle Änderungen am Titel und an der Beschreibung für "
|
3617 |
+
"Deine Beitragsvorschau vorzunehmen."
|
|
|
|
|
|
|
3618 |
|
3619 |
+
#: views/b2s/html/footer.php:524
|
3620 |
#, php-format
|
3621 |
+
msgid "Your changes will have no effect on your social media posts on Facebook, if you have manually unchecked the Meta Tag options for Facebook in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
3622 |
+
msgstr "Deine Änderungen haben keine Auswirkungen auf Deine Social Media Beiträge auf Facebook, wenn Du die Meta Tag Optionen für Facebook in Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3623 |
|
3624 |
+
#: views/b2s/html/footer.php:527
|
3625 |
#, php-format
|
3626 |
+
msgid "Your changes will have no effect on your social media posts on Twitter, if you have manually unchecked the Meta Tag options for Twitter in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
3627 |
+
msgstr "Deine Änderungen haben keine Auswirkungen auf Deine Social Media Beiträge auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
|
|
|
|
|
|
|
|
|
|
|
|
3628 |
|
3629 |
+
#: views/b2s/html/header.php:40
|
3630 |
+
msgid "To use all features of Blog2Social, PHP version 5.5.3 or higher is required. Our support assists you as of PHP version 5.5.3. See also:"
|
3631 |
+
msgstr "Um alle Funktionen von Blog2Social nutzen zu können, ist PHP Version 5.5.3 oder höher erforderlich. Unser Support unterstützt Dich ab PHP Version 5.5.3. Siehe auch:"
|
|
|
|
|
|
|
|
|
|
|
3632 |
|
3633 |
+
#: views/b2s/html/header.php:41 views/b2s/html/header.php:48
|
3634 |
msgid "Blog2Social Troubleshooting-Tool"
|
3635 |
msgstr "Blog2Social Problemanalyse-Tool"
|
3636 |
|
3637 |
+
#: views/b2s/html/header.php:47
|
3638 |
+
msgid "WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social! See also:"
|
3639 |
+
msgstr "WordPress verwendet standardmäßig Heartbeats, ebenso wie Blog2Social. Bitte aktiviere Heartbeats für die Nutzung von Blog2Social! Siehe auch:"
|
|
|
|
|
|
|
|
|
3640 |
|
3641 |
+
#: views/b2s/html/header.php:58 views/prg/html/header.php:39
|
3642 |
msgid "The link you followed has expired. Please refresh your page."
|
3643 |
+
msgstr "Der Link, dem Du gefolgt bist, ist abgelaufen. Bitte aktualisiere Deine Seite."
|
|
|
|
|
3644 |
|
3645 |
+
#: views/b2s/html/header.php:65
|
3646 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
3647 |
msgstr "Vielen Dank. Du erhältst nun die Blog-Updates von Blog2Social."
|
3648 |
|
3649 |
+
#: views/b2s/html/header.php:72
|
3650 |
msgid "Autoposter limit has been reached"
|
3651 |
msgstr "Das Autoposter-Limit wurde erreicht."
|
3652 |
|
3653 |
+
#: views/b2s/html/header.php:72
|
3654 |
msgid "Your daily limit for posting automatically has been reached."
|
3655 |
msgstr "Dein tägliches Limit für Autoposter-Beiträge ist erreicht."
|
3656 |
|
3657 |
#: views/b2s/html/header.php:79
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3658 |
msgid "You have deleted all meta data for posts and pages successfully."
|
3659 |
msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
|
3660 |
|
3661 |
+
#: views/b2s/html/header.php:84
|
3662 |
msgid "The page and post meta data could not be removed."
|
3663 |
msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
3664 |
|
3665 |
+
#: views/b2s/html/header.php:90
|
3666 |
+
msgid "You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta tags from Yoast SEO."
|
3667 |
+
msgstr "Du hast Yoast SEO aktiv. Die Blog2Social Social-Meta-Tags-Funktion überschreibt die Meta-Tags von Yoast SEO."
|
|
|
|
|
|
|
|
|
3668 |
|
3669 |
+
#: views/b2s/html/header.php:96
|
3670 |
+
msgid "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack plugins active. To make sure that your Social Meta Tags are set correctly, please deactivate All in One Seo Social Meta settings. If they are already deactivated, you can ignore this message."
|
|
|
|
|
|
|
|
|
3671 |
msgstr ""
|
3672 |
+
"Du hast derzeit sowohl Blog2Social Social Meta Tags als auch All in One SEO aktiv. Um sicherzustellen, dass Deine Social Meta Tags korrekt eingestellt sind, deaktiviere bitte die Social Meta Tags in All in One SEO. Wenn sie bereits deaktiviert sind, kannst Du diese Meldung "
|
3673 |
+
"ignorieren."
|
|
|
|
|
3674 |
|
3675 |
+
#: views/b2s/html/header.php:102
|
3676 |
msgid ""
|
3677 |
+
"Blog2Social has detected another plugin that is setting Social Meta tags for your blog posts. To ensure that your Social Meta tags are set correctly for your social media posts shared with Blog2Social, please deactivate the Facebook Open Graph and Twitter Card Tags settings "
|
3678 |
+
"in your other plugins."
|
|
|
|
|
3679 |
msgstr ""
|
3680 |
+
"Blog2Social hat ein weiteres Plugin entdeckt, das Social Meta Tags für Deine Blogbeiträge setzt. Um sicherzustellen, dass Deine Social Meta-Tags für Deine Social Media-Posts, die mit Blog2Social geteilt werden, korrekt eingestellt sind, deaktiviere bitte die Einstellungen für "
|
3681 |
+
"Facebook Open Graph und Twitter Card Tags in Deinen anderen Plugins."
|
|
|
|
|
|
|
3682 |
|
3683 |
+
#: views/b2s/html/header.php:109
|
3684 |
msgid "This entry could not be removed. It's not yours!"
|
3685 |
msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
|
3686 |
|
3687 |
+
#: views/b2s/html/header.php:114
|
3688 |
msgid "This entry was removed successfully."
|
3689 |
msgstr "Dieser Eintrag wurde erfolgreich entfernt."
|
3690 |
|
3691 |
+
#: views/b2s/html/header.php:119
|
3692 |
msgid "This post was edited successfully."
|
3693 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
3694 |
|
3695 |
+
#: views/b2s/html/header.php:128
|
3696 |
msgid "Post was scheduled successfully on your blog!"
|
3697 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
|
3698 |
|
3699 |
+
#: views/b2s/html/header.php:130
|
3700 |
msgid "Post is published successfully on your blog!"
|
3701 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog veröffentlicht!"
|
3702 |
|
3703 |
+
#: views/b2s/html/header.php:142
|
3704 |
msgid "Saved as draft"
|
3705 |
msgstr "Als Entwurf gespeichert"
|
3706 |
|
3707 |
+
#: views/b2s/html/header.php:148
|
3708 |
msgid "Could not save draft"
|
3709 |
msgstr "Der Entwurf konnte nicht gespeichert werden"
|
3710 |
|
3711 |
+
#: views/b2s/html/header.php:156
|
3712 |
msgid "Your authorization was successful."
|
3713 |
msgstr "Deine Autorisierung war erfolgreich."
|
3714 |
|
3715 |
+
#: views/b2s/html/header.php:161
|
3716 |
msgid "Your profile was saved successful."
|
3717 |
msgstr "Dein Profil wurde erfolgreich gespeichert. "
|
3718 |
|
3719 |
+
#: views/b2s/html/header.php:166
|
3720 |
msgid "Your profile could not be saved."
|
3721 |
msgstr "Dein Profil konnte nicht gespeichert werden."
|
3722 |
|
3723 |
+
#: views/b2s/html/header.php:171
|
3724 |
msgid "Your authorization could not be removed."
|
3725 |
msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
3726 |
|
3727 |
+
#: views/b2s/html/header.php:176
|
3728 |
msgid "Your authorization has been removed successfully."
|
3729 |
msgstr "Deine Autorisierung wurde erfolgreich entfernt."
|
3730 |
|
3731 |
+
#: views/b2s/html/header.php:181
|
3732 |
msgid "Thank you! Your feedback has been received."
|
3733 |
msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
|
3734 |
|
3735 |
+
#: views/b2s/html/header.php:186
|
3736 |
msgid "Your feedback could not be delivered."
|
3737 |
msgstr "Dein Feedback konnte nicht gesendet werden."
|
3738 |
|
3739 |
+
#: views/b2s/html/header.php:193 views/b2s/html/header.php:208
|
3740 |
msgid "Your settings were successfully saved."
|
3741 |
msgstr "Deine Einstellungen wurden erfolgreich gespeichert. "
|
3742 |
|
3743 |
+
#: views/b2s/html/header.php:198
|
3744 |
msgid "Your settings could not be saved."
|
3745 |
msgstr "Deine Einstellungen konnten nicht gespeichert werden."
|
3746 |
|
3747 |
+
#: views/b2s/html/header.php:203
|
3748 |
+
msgid "Your settings could not be saved, because you have auto-posting enabled but no social networks selected."
|
3749 |
+
msgstr "Deine Einstellungen konnten nicht gespeichert werden, da Du keine sozialen Netzwerke ausgewählt hast, bevor Du den Auto-Poster aktiviert hast."
|
3750 |
+
|
3751 |
+
#: views/b2s/html/header.php:215
|
3752 |
+
msgid "No posts found. Please try again with different filter options."
|
3753 |
+
msgstr "Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen Filterkriterien."
|
3754 |
+
|
3755 |
+
#: views/b2s/html/header.php:220
|
3756 |
+
msgid "Your limit for your quota of posts in your queue has been reached. Please detele posts from your queue before you add more"
|
3757 |
+
msgstr "Das Limit Deines Kontingents für Beiträge in Deiner Warteschlange wurde erreicht. Bitte lösche Beiträge aus Deiner Warteschlange bevor Du neue hinzufügst "
|
3758 |
+
|
3759 |
+
#: views/b2s/html/header.php:220
|
3760 |
+
msgid " or upgade your Blog2Social license to extend your quota."
|
3761 |
+
msgstr " oder upgrade Deine Blog2Social Lizenz, um Deine Warteschlange zu erweitern."
|
3762 |
|
3763 |
+
#: views/b2s/html/header.php:231
|
3764 |
msgid "RATE IT!"
|
3765 |
msgstr "BEWERTE ES!"
|
3766 |
|
3767 |
+
#: views/b2s/html/header.php:232
|
3768 |
#, php-format
|
3769 |
+
msgid "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's awesome! Could you please do us a favor and give it a 5-star rating on WordPress? Just to help us spread the word and boost our motivation."
|
|
|
|
|
|
|
3770 |
msgstr ""
|
3771 |
+
"Hallo, wir haben bemerkt, dass Du gerade Deinen %s. Blogbeitrag mit Blog2Social geteilt hast - das ist fantastisch! Könntest Du uns bitte einen Gefallen tun und uns eine 5-Sterne-Bewertung auf WordPress geben? Damit hilfst Du uns bekannter zu werden und motivierst uns "
|
3772 |
+
"Blog2Social stetig zu verbessen."
|
|
|
|
|
|
|
3773 |
|
3774 |
+
#: views/b2s/html/header.php:236
|
3775 |
msgid "Ok, you deserve it"
|
3776 |
msgstr "Okay, ihr habt euch das verdient"
|
3777 |
|
3778 |
+
#: views/b2s/html/header.php:239
|
3779 |
msgid "Nope, maybe later"
|
3780 |
msgstr "Nein, vielleicht später"
|
3781 |
|
3782 |
+
#: views/b2s/html/header.php:242
|
3783 |
msgid "I already did it"
|
3784 |
msgstr "Habe ich schon erledigt"
|
3785 |
|
3786 |
+
#: views/b2s/html/header.php:256
|
3787 |
msgid "Start your free 30-day-Premium-trial"
|
3788 |
msgstr "Teste Blog2Social Premium"
|
3789 |
|
3790 |
+
#: views/b2s/html/header.php:258
|
3791 |
msgid ""
|
3792 |
+
"Check out Blog2Social Premium with more awesome features for scheduling and sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-days for free. The trial is free of charge, without any obligations, no automatic subscription. Basic features of the Free "
|
3793 |
+
"Version are free forever."
|
3794 |
+
msgstr "Teste Blog2Social Premium mit weiteren tollen Funktionen (z.B. Auto-Posting, Beste-Zeiten-Planer, Social Media Kalender) zum automatisierten Planen und Teilen 30 Tage lang kostenlos und unverbindlich (kein automatisches Abonnement)"
|
|
|
|
|
|
|
|
|
|
|
|
|
3795 |
|
3796 |
+
#: views/b2s/html/header.php:262
|
3797 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
3798 |
msgstr "Ja, ich möchte Blog2Social Premium 30 Tage kostenlos testen"
|
3799 |
|
3800 |
+
#: views/b2s/html/header.php:274
|
3801 |
msgid "Your free Blog2Social Premium trial version is activated for "
|
3802 |
msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
|
3803 |
|
3804 |
+
#: views/b2s/html/header.php:277
|
3805 |
msgid " Days"
|
3806 |
msgstr "Tage"
|
3807 |
|
3808 |
+
#: views/b2s/html/header.php:277
|
3809 |
msgid " today"
|
3810 |
msgstr "heute"
|
3811 |
|
3812 |
+
#: views/b2s/html/header.php:281 views/b2s/html/header.php:300
|
3813 |
msgid ""
|
3814 |
+
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for "
|
3815 |
+
"sharing. Save multiple combinations of networks for different sharing purposes. Start from only $5.75 per month to benefit from PREMIUM features."
|
|
|
|
|
|
|
|
|
3816 |
msgstr ""
|
3817 |
+
"Blog2Social PREMIUM kann so viel für Dich tun: Veröffentliche Deine Blogbeiträge mit dem Autoposter, plane Deine Social Media Beiträge automatisch mit dem Best Time Manager. Wähle Bilder und Postformate (Link-Beitrag oder Bild-Beitrag) für jede Social Community. Lade ein "
|
3818 |
+
"beliebiges Bild hoch teile es. Speicher mehrere Netzwerk-Gruppierungen für verschiedene Zwecke. Schon ab 5,75 € pro Monat kannst du mit den PREMIUM-Funktionen durchstarten."
|
3819 |
+
|
3820 |
+
#: views/b2s/html/header.php:284
|
|
|
|
|
|
|
|
|
|
|
3821 |
msgid "Upgrade to PREMIUM"
|
3822 |
msgstr "Jetzt auf Premium upgraden"
|
3823 |
|
3824 |
+
#: views/b2s/html/header.php:285 views/b2s/html/header.php:304
|
3825 |
msgid "I need some more time to decide"
|
3826 |
msgstr "Ich brauche etwas mehr Zeit, um mich zu entscheiden"
|
3827 |
|
3828 |
+
#: views/b2s/html/header.php:296
|
3829 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
3830 |
msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
|
3831 |
|
3832 |
+
#: views/b2s/html/header.php:297
|
3833 |
msgid "We hope you liked Blog2Social Premium."
|
3834 |
msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
|
3835 |
|
3836 |
+
#: views/b2s/html/header.php:303
|
3837 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
3838 |
msgstr "Ja, ich möchte gerne auf Blog2Social Premium upgraden"
|
3839 |
|
3840 |
+
#: views/b2s/html/header.php:305
|
3841 |
msgid "Did you miss something? Tell us!"
|
3842 |
msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
|
3843 |
|
3844 |
+
#: views/b2s/html/header.php:320
|
3845 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
3846 |
msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
|
3847 |
|
3848 |
+
#: views/b2s/html/header.php:326
|
3849 |
+
msgid "The free trial can not be started. This blog has been already registered for the free trial."
|
3850 |
+
msgstr "Die kostenlose Testversion kann nicht gestartet werden. Dieser Blog wurde bereits für die kostenlose Testversion registriert."
|
|
|
|
|
|
|
|
|
3851 |
|
3852 |
+
#: views/b2s/html/header.php:329
|
3853 |
msgid "Social Media Auto-Posting"
|
3854 |
msgstr "Social Media Auto-Posting"
|
3855 |
|
3856 |
+
#: views/b2s/html/header.php:331
|
3857 |
msgid "Share on multiple accounts per network"
|
3858 |
msgstr "Teile auf mehreren Netzwerk-Konten "
|
3859 |
|
3860 |
+
#: views/b2s/html/header.php:332
|
3861 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
3862 |
msgstr "Beste Zeitenplaner: Plane einmal, mehrmals oder wiederkehrend."
|
3863 |
|
3864 |
+
#: views/b2s/html/header.php:333
|
3865 |
msgid "Reporting with links to all published social media posts"
|
3866 |
msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
|
3867 |
|
3868 |
+
#: views/b2s/html/header.php:340 views/prg/html/form.php:91 views/prg/html/form.php:100 views/prg/html/form.php:168 views/prg/html/form.php:177
|
|
|
|
|
3869 |
msgid "First Name"
|
3870 |
msgstr "Vorname"
|
3871 |
|
3872 |
+
#: views/b2s/html/header.php:344 views/prg/html/form.php:92 views/prg/html/form.php:103 views/prg/html/form.php:169 views/prg/html/form.php:180
|
|
|
|
|
3873 |
msgid "Last Name"
|
3874 |
msgstr "Nachname"
|
3875 |
|
3876 |
+
#: views/b2s/html/header.php:350
|
3877 |
#, php-format
|
3878 |
+
msgid "By creating an account, you agree to Blog2Social's <a target=\"_blank\" href=\"%s\">Conditions of Use</a>"
|
3879 |
+
msgstr "Mit der Erstellung eines Kontos erklärst Du Dich einverstanden mit den Blog2Social <a target=\"_blank\" href=\"%s\">Nutzungsbedingungen</a>"
|
|
|
|
|
|
|
|
|
3880 |
|
3881 |
+
#: views/b2s/html/header.php:351
|
3882 |
#, php-format
|
3883 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
3884 |
msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
|
3885 |
|
3886 |
+
#: views/b2s/html/header.php:358
|
3887 |
msgid "No credit card required"
|
3888 |
msgstr "Keine Kreditkarte erforderlich"
|
3889 |
|
3890 |
+
#: views/b2s/html/header.php:362
|
3891 |
msgid "Get Started"
|
3892 |
msgstr "Jetzt loslegen"
|
3893 |
|
3894 |
+
#: views/b2s/html/header.php:388
|
3895 |
msgid "The license has been successfully activated."
|
3896 |
msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
|
3897 |
|
3898 |
+
#: views/b2s/html/header.php:404
|
3899 |
msgid "Your entered License Key is invalid. Please contact support!"
|
3900 |
+
msgstr "Der eingegebene Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Kundenservice."
|
|
|
|
|
3901 |
|
3902 |
+
#: views/b2s/html/header.php:420
|
3903 |
msgid "Your license key has reached the maximum number of users."
|
3904 |
msgstr "Dein Lizenzschlüssel hat die maximale Anzahl von Benutzern erreicht."
|
3905 |
|
3906 |
+
#: views/b2s/html/header.php:436
|
3907 |
msgid "Something went wrong on our side. Please contact support!"
|
3908 |
+
msgstr "Etwas ist auf unserer Seite schiefgelaufen. Bitte wende Dich an unseren Kundenservice."
|
|
|
|
|
3909 |
|
3910 |
+
#: views/b2s/html/header.php:445
|
3911 |
msgid "OK"
|
3912 |
msgstr "OK"
|
3913 |
|
3914 |
+
#: views/b2s/html/header.php:461
|
3915 |
msgid "We updated our Privacy Policy"
|
3916 |
msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
3917 |
|
3918 |
+
#: views/b2s/html/header.php:475
|
3919 |
msgid "Blog2Social is a service of Adenion GmbH"
|
3920 |
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
3921 |
|
3922 |
+
#: views/b2s/html/header.php:476
|
3923 |
msgid "I agree to the Adenion Privacy Policy"
|
3924 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
3925 |
|
3936 |
msgstr "Webseiten & Blog Content"
|
3937 |
|
3938 |
#: views/b2s/html/sidebar.php:69
|
3939 |
+
msgid "Share Posts"
|
3940 |
+
msgstr "Beiträge teilen"
|
3941 |
|
3942 |
+
#: views/b2s/html/sidebar.php:87
|
3943 |
msgid "Social Media Post"
|
3944 |
msgstr "Social Media Post"
|
3945 |
|
3946 |
+
#: views/b2s/html/sidebar.php:91
|
3947 |
msgid "Create Post"
|
3948 |
msgstr "Beitrag erstellen"
|
3949 |
|
3950 |
+
#: views/b2s/html/sidebar.php:106
|
3951 |
msgid "Content Library"
|
3952 |
msgstr "Content-Bibliothek"
|
3953 |
|
3954 |
+
#: views/b2s/html/sidebar.php:110
|
3955 |
msgid "all Posts"
|
3956 |
msgstr "Alle Beiträge"
|
3957 |
|
3958 |
+
#: views/b2s/html/sidebar.php:144
|
3959 |
msgid "Upgrade License"
|
3960 |
msgstr "Lizenz upgraden"
|
3961 |
|
3962 |
+
#: views/b2s/html/sidebar.php:149
|
3963 |
msgid "Plans & Prices"
|
3964 |
msgstr "Tarife & Preise"
|
3965 |
|
3966 |
+
#: views/b2s/html/sidebar.php:166
|
3967 |
+
msgid "If you like Blog2Social, please give us a 5 star rating. If there is anything that does not work for you, please contact us!"
|
3968 |
+
msgstr "Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
|
|
|
|
|
|
|
|
3969 |
|
3970 |
+
#: views/b2s/html/sidebar.php:180
|
3971 |
msgid "Blog2Social Blog News"
|
3972 |
msgstr "Blog2Social Blog News"
|
3973 |
|
3976 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
3977 |
|
3978 |
#: views/b2s/partials/plugin-deactivate-modal.php:13
|
3979 |
+
msgid "Do you want Blog2Social to delete all your scheduled social media posts? Your scheduled posts will no longer be sent to your social networks."
|
3980 |
+
msgstr "Möchtest Du, dass Blog2Social die Versandplanung für alle mit Blog2Social geplanten Beiträge löscht? Deine geplanten Beiträge werden anschließend nicht weiter an Deine sozialen Netzwerke versendet."
|
|
|
|
|
|
|
|
|
|
|
3981 |
|
3982 |
#: views/b2s/partials/plugin-deactivate-modal.php:14
|
3983 |
msgid "Delete scheduled posts"
|
4083 |
msgid "Mr."
|
4084 |
msgstr "Herr"
|
4085 |
|
4086 |
+
#: views/prg/html/form.php:107 views/prg/html/form.php:110 views/prg/html/form.php:184 views/prg/html/form.php:187
|
|
|
4087 |
msgid "Street"
|
4088 |
msgstr "Straße"
|
4089 |
|
4090 |
+
#: views/prg/html/form.php:108 views/prg/html/form.php:113 views/prg/html/form.php:185 views/prg/html/form.php:190
|
|
|
4091 |
msgid "Number"
|
4092 |
msgstr "Nummer"
|
4093 |
|
4094 |
+
#: views/prg/html/form.php:117 views/prg/html/form.php:120 views/prg/html/form.php:194 views/prg/html/form.php:197
|
|
|
4095 |
msgid "Zip Code"
|
4096 |
msgstr "Postleitzahl"
|
4097 |
|
4098 |
+
#: views/prg/html/form.php:118 views/prg/html/form.php:123 views/prg/html/form.php:195 views/prg/html/form.php:200
|
|
|
4099 |
msgid "City"
|
4100 |
msgstr "Stadt"
|
4101 |
|
4103 |
msgid "Country"
|
4104 |
msgstr "Land"
|
4105 |
|
4106 |
+
#: views/prg/html/form.php:135 views/prg/html/form.php:137 views/prg/html/form.php:212 views/prg/html/form.php:214
|
|
|
4107 |
msgid "Phone"
|
4108 |
msgstr "Telefonnummer"
|
4109 |
|
4110 |
+
#: views/prg/html/form.php:147 views/prg/html/form.php:149 views/prg/html/form.php:224 views/prg/html/form.php:226
|
|
|
4111 |
msgid "Website"
|
4112 |
msgstr "Website"
|
4113 |
|
4121 |
|
4122 |
#: views/prg/html/header.php:17
|
4123 |
msgid "Your message will now be sent over PR gateway to the press portals!"
|
4124 |
+
msgstr "Deine Mitteilung wird nun über PR-Gateway an die Presseportale gesendet!"
|
|
|
4125 |
|
4126 |
#: views/prg/html/header.php:18
|
4127 |
msgid "See all publications for your message live on "
|
4132 |
msgstr "Deine Nachricht wurde von PR-Gateway als Entwurf gespeichert."
|
4133 |
|
4134 |
#: views/prg/html/header.php:28
|
4135 |
+
msgid "Unfortunately, your request cannot be processed by Blog2Social. Please try again!"
|
4136 |
+
msgstr "Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte versuche es erneut!"
|
|
|
|
|
|
|
|
|
4137 |
|
4138 |
#: views/prg/html/header.php:34
|
4139 |
msgid "Your message was not successfully transmitted. Please try again!"
|
4140 |
+
msgstr "Deine Nachricht wurde nicht erfolgreich übertragen. Bitte versuche es erneut!"
|
|
|
4141 |
|
4142 |
#: views/prg/html/header.php:53
|
4143 |
msgid ""
|
4144 |
+
"PR-Gateway offers a paid online distribution service for submitting press releases, articles and social media news to more than 250 news sites, special interest websites and social news sites. If your blog posts provide trade or industry information or expert articles (no "
|
4145 |
+
"advertising), you may submit them to PR-Gateway to turn them into valid online press releases or online articles and select a specific choice of websites and services to publish your post."
|
|
|
|
|
|
|
|
|
|
|
4146 |
msgstr ""
|
4147 |
+
"PR-Gateway bietet einen kostenpflichtigen Online-Distributionsservice für die Übermittlung von Pressemitteilungen, Artikeln und Social Media-Nachrichten an mehr als 250 Nachrichtenseiten, Fachwebseiten und Social Media Presseticker.\n"
|
4148 |
+
"Wenn es sich bei Deinen Beiträgen um Fachartikel handelt oder diese Unternehmensinformationen (keine Werbung) enthalten, kannst Du Deine Beiträge an PR-Gateway senden, um sie als Online-Pressemitteilungen oder Online-Artikel zu veröffentlichen und eine bestimmte Auswahl an "
|
4149 |
+
"Presseportalen und Nachrichtenseiten für die Veröffentlichung Deines Beitrags auswählen."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4150 |
|
4151 |
#: views/prg/html/header.php:54
|
4152 |
msgid "Register here to open your PR-Gateway account."
|
4156 |
msgid "Logout"
|
4157 |
msgstr "Ausloggen"
|
4158 |
|
4159 |
+
#: includes/B2S/Support/Check/System.php:45
|
4160 |
msgid "or higher"
|
4161 |
msgstr "oder höher"
|
4162 |
|
4163 |
+
#: includes/B2S/Support/Check/System.php:66 includes/B2S/Support/Check/System.php:84
|
|
|
4164 |
msgid "resolve conflict"
|
4165 |
msgstr "Konflikt beheben"
|
4166 |
|
4167 |
+
#: includes/B2S/Support/Check/System.php:91
|
4168 |
msgid "Plugin Warnings:"
|
4169 |
msgstr "Plugin Warnungen:"
|
4170 |
|
4173 |
msgstr "Blog2Social: Social Media Auto Post & Scheduler"
|
4174 |
|
4175 |
#. Description of the plugin
|
4176 |
+
msgid "Auto publish, schedule & share posts on social media: Facebook, Twitter, XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
4177 |
+
msgstr "Auto publish, schedule & share posts on social media: Facebook, Twitter, XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
|
|
|
|
|
|
|
|
4178 |
|
4179 |
#. Plugin URI of the plugin
|
4180 |
#. Author URI of the plugin
|
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: 2020-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -31,319 +31,285 @@ msgstr ""
|
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes/Loader.php:
|
35 |
msgid "Bitly"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes/Loader.php:
|
39 |
msgid "Rebrandly"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
43 |
msgid "Blog2Social: Autoposter"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/Loader.php:
|
47 |
msgid "Blog2Social: Social Media Content Calendar"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/Loader.php:
|
51 |
msgid "This post will be shared into your social media from"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/Loader.php:
|
55 |
msgid "show details"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/Loader.php:
|
59 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes/Loader.php:
|
63 |
msgid ""
|
64 |
-
"Please make sure that your post, page or custom post type is published or "
|
65 |
-
"
|
66 |
-
"Blog2Social. Published WP posts will be shared with your chosen permalink, "
|
67 |
-
"scheduled WP posts will be shared with the posting id link."
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: includes/Loader.php:
|
71 |
-
|
72 |
-
msgid ""
|
73 |
-
"There are no social network accounts assigned to your selected network "
|
74 |
-
"collection. Please assign at least one social network account or select "
|
75 |
-
"another network collection."
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/Loader.php:
|
79 |
-
#: views/b2s/html/sidebar.ship.php:44
|
80 |
msgid "Upgrade to Premium"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
84 |
msgid "Notifications"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/Loader.php:
|
88 |
-
#: views/b2s/html/sidebar.php:119
|
89 |
msgid "Shared Posts"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: includes/Loader.php:
|
93 |
-
#: views/b2s/html/sidebar.php:113
|
94 |
msgid "Instant Sharing"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/Loader.php:
|
98 |
-
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:88
|
99 |
-
#: views/b2s/html/sidebar.php:110
|
100 |
msgid "Drafts"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/Loader.php:
|
104 |
-
#: views/b2s/html/sidebar.php:116 views/b2s/widgets/posts.php:18
|
105 |
msgid "Scheduled Posts"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/Loader.php:
|
109 |
msgid "Social Media Post Drafts"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/Loader.php:
|
113 |
-
#: views/b2s/html/sidebar.php:107
|
114 |
msgid "Favorites"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/Loader.php:
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
msgid "Profile"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/Loader.php:
|
126 |
-
#: includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:284
|
127 |
-
#: includes/B2S/Network/Item.php:584 includes/B2S/Settings/Item.php:266
|
128 |
-
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
129 |
msgid "Page"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: includes/Loader.php:
|
133 |
-
#: includes/B2S/Network/Item.php:351 includes/B2S/Network/Item.php:587
|
134 |
-
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
135 |
msgid "Group"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/Loader.php:
|
139 |
msgid "Company"
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: includes/Loader.php:
|
143 |
msgid "Business"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/Loader.php:
|
147 |
#, php-format
|
148 |
-
msgid ""
|
149 |
-
"The network could not publish your post. Please see <a target=\"_blank\" "
|
150 |
-
"href=\"%s\">FAQ</a>"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/Loader.php:
|
154 |
-
msgid ""
|
155 |
-
"Your authorization has expired. Please reconnect your account in the "
|
156 |
-
"Blog2Social network settings."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: includes/Loader.php:
|
160 |
msgid "The network has marked the post as spam or abusive."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/Loader.php:
|
164 |
-
msgid ""
|
165 |
-
"We don't have the permission to publish your post. Please check your "
|
166 |
-
"authorization."
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/Loader.php:
|
170 |
#, php-format
|
171 |
-
msgid ""
|
172 |
-
"Your authorization is interrupted. Please check your authorization. Please "
|
173 |
-
"see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/Loader.php:
|
177 |
msgid "Your daily limit has been reached."
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: includes/Loader.php:
|
181 |
-
msgid ""
|
182 |
-
"Your post could not be posted, because your image is not available or the "
|
183 |
-
"image source does not allow to publish"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/Loader.php:
|
187 |
#, php-format
|
188 |
-
msgid ""
|
189 |
-
"The network has blocked your account. Please see <a target=\"_blank\" "
|
190 |
-
"href=\"%s\">FAQ</a>"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/Loader.php:
|
194 |
#, php-format
|
195 |
-
msgid ""
|
196 |
-
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
197 |
-
"FAQ</a>"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/Loader.php:
|
201 |
-
msgid ""
|
202 |
-
"Your daily limit for this network has been reached. Please try again later."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/Loader.php:
|
206 |
#, php-format
|
207 |
-
msgid ""
|
208 |
-
"The network can not publish special characters such as Emoji. Please see <a "
|
209 |
-
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/Loader.php:
|
213 |
msgid "Your post is a duplicate."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/Loader.php:
|
217 |
msgid "The network requires a public url."
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/Loader.php:
|
221 |
-
msgid ""
|
222 |
-
"Your blog post was not available for the network at the time of publication."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/Loader.php:
|
226 |
msgid "You have already retweeted this post."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/Loader.php:
|
230 |
-
msgid ""
|
231 |
-
"This XING API is no longer supported by XING. Please connect your XING "
|
232 |
-
"accounts with the new XING interface to reschedule your posts."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/Loader.php:
|
236 |
msgid "An image is required to post on this social network."
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: includes/Loader.php:
|
240 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/Loader.php:
|
244 |
-
msgid ""
|
245 |
-
"Your post could not be posted, because your image can not be processed by "
|
246 |
-
"the network."
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/Loader.php:
|
250 |
#, php-format
|
251 |
-
msgid ""
|
252 |
-
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
253 |
-
"href=\"%s\">FAQ</a>"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/Loader.php:
|
257 |
msgid "Your group can not be found by the network."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/Loader.php:
|
261 |
msgid "Dashboard"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/Loader.php:
|
265 |
msgid "Share Website & Blog Content"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: includes/Loader.php:
|
269 |
msgid "Site & Blog Content"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: includes/Loader.php:
|
273 |
msgid "Create Social Media Posts"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/Loader.php:
|
277 |
msgid "Social Media Posts"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/Loader.php:
|
281 |
-
#: views/b2s/html/post.navbar.php:19 views/b2s/html/sidebar.php:122
|
282 |
msgid "Calendar"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/Loader.php:
|
286 |
msgid "Networks"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/Loader.php:
|
290 |
-
#: views/b2s/html/sidebar.php:131
|
291 |
-
msgid "Settings"
|
292 |
-
msgstr ""
|
293 |
-
|
294 |
-
#: includes/Loader.php:913 includes/Loader.php:991
|
295 |
msgid "PR-Service"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/Loader.php:
|
299 |
-
#: views/b2s/html/sidebar.php:134 views/b2s/html/sidebar.ship.php:66
|
300 |
msgid "Help & Support"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/Loader.php:
|
304 |
msgid "Premium"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/Loader.php:
|
308 |
msgid "PREMIUM"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/Loader.php:
|
312 |
-
#: views/b2s/html/sidebar.ship.php:24
|
313 |
msgid "Blog2Social"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/Loader.php:
|
317 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/Loader.php:
|
321 |
-
#: includes/System.php:84
|
322 |
#, php-format
|
323 |
-
msgid ""
|
324 |
-
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
325 |
-
"our FAQ</a>"
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: includes/Loader.php:
|
329 |
msgid "or"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: includes/Loader.php:
|
333 |
msgid "back to install plugins"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: includes/Notice.php:17 views/b2s/html/sidebar.php:
|
337 |
msgid "Rate it!"
|
338 |
msgstr ""
|
339 |
|
340 |
#: includes/Notice.php:18
|
341 |
-
msgid ""
|
342 |
-
"If you like Blog2Social, please give us a 5 star rating. I there is anything "
|
343 |
-
"that does not work for you, please contact us!!"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/Notice.php:19 views/b2s/html/sidebar.php:
|
347 |
msgid "RATE BLOG2SOCIAL"
|
348 |
msgstr ""
|
349 |
|
@@ -355,220 +321,209 @@ msgstr ""
|
|
355 |
msgid "Could not hide notice. Please refresh the page and retry."
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/System.php:
|
359 |
-
msgid ""
|
360 |
-
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
361 |
-
"your server. Install cURL and activate Blog2Social again."
|
362 |
-
msgstr ""
|
363 |
-
|
364 |
-
#: includes/System.php:75
|
365 |
-
msgid ""
|
366 |
-
"Blog2Social used PHP. Your installed PHP version on your server is not high "
|
367 |
-
"enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/System.php:
|
371 |
msgid ""
|
372 |
-
"Blog2Social does not seem to have permission to write in your WordPress "
|
373 |
-
"
|
374 |
-
"database. Please also make sure that your MySQL server runs on v5.5.3 or "
|
375 |
-
"higher, or ask your server administrator to do it for you."
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/Tools.php:
|
379 |
-
#: views/b2s/html/sidebar.ship.php:29
|
380 |
msgid "License"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#: includes/Tools.php:
|
384 |
msgid "Greece"
|
385 |
msgstr ""
|
386 |
|
387 |
-
#: includes/Tools.php:
|
388 |
msgid "India"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: includes/Tools.php:
|
392 |
msgid "United States of America"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/Tools.php:
|
396 |
msgid "Ireland"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: includes/Tools.php:
|
400 |
msgid "Italy"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/Tools.php:
|
404 |
msgid "Switzerland"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/Tools.php:
|
408 |
msgid "Czechoslovakia"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/Tools.php:
|
412 |
msgid "Indonesia"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: includes/Tools.php:
|
416 |
msgid "Spain"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/Tools.php:
|
420 |
msgid "Canada"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/Tools.php:
|
424 |
msgid "Great Britain"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/Tools.php:
|
428 |
msgid "Russia"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/Tools.php:
|
432 |
msgid "Netherlands"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/Tools.php:
|
436 |
msgid "Portugal"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/Tools.php:
|
440 |
msgid "Norway"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/Tools.php:
|
444 |
msgid "Turkey"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/Tools.php:
|
448 |
msgid "Australia"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/Tools.php:
|
452 |
msgid "Austria"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/Tools.php:
|
456 |
msgid "Poland"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/Tools.php:
|
460 |
msgid "France"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/Tools.php:
|
464 |
msgid "Romania"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/Tools.php:
|
468 |
msgid "Germany"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/Tools.php:
|
472 |
msgid "Denmark"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/Tools.php:
|
476 |
msgid "New Zealand"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/Tools.php:
|
480 |
msgid "Finland"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/Tools.php:
|
484 |
msgid "Hungary"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/Tools.php:
|
488 |
msgid "Japan"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/Tools.php:
|
492 |
msgid "Argentina"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/Tools.php:
|
496 |
msgid "Korea"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/Tools.php:
|
500 |
msgid "Sweden"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/Tools.php:
|
504 |
msgid "Mexico"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/Tools.php:
|
508 |
msgid "Slovakia"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/Tools.php:
|
512 |
msgid "Chile"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/Tools.php:
|
516 |
msgid "Colombia"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/Tools.php:
|
520 |
msgid "South Africa"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/Tools.php:
|
524 |
msgid "Philippines"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/Tools.php:
|
528 |
msgid "is determined automatically"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/Tools.php:
|
532 |
msgid "Search"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/Tools.php:
|
536 |
msgid "Recently Used"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/Tools.php:
|
540 |
msgid "Smileys & People"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/Tools.php:
|
544 |
msgid "Animals & Nature"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/Tools.php:
|
548 |
msgid "Food & Drink"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/Tools.php:
|
552 |
msgid "Activities"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/Tools.php:
|
556 |
msgid "Travel & Places"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/Tools.php:
|
560 |
msgid "Objects"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/Tools.php:
|
564 |
msgid "Symbols"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/Tools.php:
|
568 |
msgid "Flags"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/Tools.php:
|
572 |
msgid "No emojis found"
|
573 |
msgstr ""
|
574 |
|
@@ -577,11 +532,7 @@ msgid "Connection is broken..."
|
|
577 |
msgstr ""
|
578 |
|
579 |
#: views/notice.php:14
|
580 |
-
msgid ""
|
581 |
-
"The connection to your server has been interrupted. Please make sure that "
|
582 |
-
"your blog is reachable. If your server does not respond or is too slow, "
|
583 |
-
"Blog2Social cannot connect to the internet. Try again later or contact your "
|
584 |
-
"webmaster, if this error message persists."
|
585 |
msgstr ""
|
586 |
|
587 |
#: views/notice.php:17
|
@@ -589,9 +540,7 @@ msgid "Update..."
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: views/notice.php:19
|
592 |
-
msgid ""
|
593 |
-
"<b> A new version of Blog2Social is available. </b> Update now <br> "
|
594 |
-
"Blog2Social to continue to use the latest version of the plugin."
|
595 |
msgstr ""
|
596 |
|
597 |
#: views/notice.php:23
|
@@ -610,322 +559,246 @@ msgstr ""
|
|
610 |
msgid "Please contact our support!"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: includes/Ajax/Post.php:
|
614 |
-
#: includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282
|
615 |
-
#: includes/B2S/Network/Item.php:349 includes/B2S/Network/Item.php:475
|
616 |
msgid "Unknown username"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: includes/Ajax/Post.php:
|
620 |
-
#: includes/B2S/
|
621 |
-
#: includes/B2S/Post/Item.php:726 includes/B2S/Post/Item.php:775
|
622 |
-
#: includes/B2S/Settings/Item.php:92 includes/B2S/Ship/Item.php:986
|
623 |
-
#: includes/B2S/Ship/Item.php:1136
|
624 |
msgid "delete"
|
625 |
msgstr ""
|
626 |
|
627 |
-
#: includes/B2S/PostBox.php:
|
628 |
msgid "Please see FAQ"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/B2S/PostBox.php:
|
632 |
-
#: views/b2s/html/header.php:55
|
633 |
msgid "The connection to the server failed. Try again!"
|
634 |
msgstr ""
|
635 |
|
636 |
-
#: includes/B2S/PostBox.php:
|
637 |
-
msgid ""
|
638 |
-
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
639 |
-
"heartbeats for using Blog2Social!"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: includes/B2S/PostBox.php:
|
643 |
-
msgid ""
|
644 |
-
"Your post is still on draft or pending status. Please make sure that your "
|
645 |
-
"post is published or scheduled to be published on this blog. You can then "
|
646 |
-
"auto-post or schedule and customize your social media posts with Blog2Social."
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/B2S/PostBox.php:
|
650 |
-
#: includes/B2S/Settings/Item.php:137 includes/B2S/Settings/Item.php:495
|
651 |
msgid "Network settings"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: includes/B2S/PostBox.php:
|
655 |
-
msgid ""
|
656 |
-
"Notice: Please make sure, that your website address is reachable. The Social "
|
657 |
-
"Networks do not allow postings from local installations."
|
658 |
msgstr ""
|
659 |
|
660 |
-
#: includes/B2S/PostBox.php:
|
661 |
msgid "Custom Sharing & Scheduling"
|
662 |
msgstr ""
|
663 |
|
664 |
-
#: includes/B2S/PostBox.php:
|
665 |
-
#:
|
666 |
-
#: includes/B2S/Network/Item.php:172 includes/B2S/Settings/Item.php:509
|
667 |
-
#: includes/B2S/Ship/Item.php:950
|
668 |
msgid "Info"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: includes/B2S/PostBox.php:
|
672 |
msgid "Customize & Schedule Social Media Posts"
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: includes/B2S/PostBox.php:
|
676 |
msgid "The Autoposter is"
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: includes/B2S/PostBox.php:
|
680 |
msgid "activated"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: includes/B2S/PostBox.php:
|
684 |
msgid "deactivated"
|
685 |
msgstr ""
|
686 |
|
687 |
-
#: includes/B2S/PostBox.php:
|
688 |
msgid "Shared"
|
689 |
msgstr ""
|
690 |
|
691 |
-
#: includes/B2S/PostBox.php:
|
692 |
msgid "times"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: includes/B2S/PostBox.php:
|
696 |
msgid "Last shared"
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: includes/B2S/PostBox.php:
|
700 |
msgid "Advanced settings"
|
701 |
msgstr ""
|
702 |
|
703 |
-
#: includes/B2S/PostBox.php:
|
704 |
msgid "enable Auto-Posting"
|
705 |
msgstr ""
|
706 |
|
707 |
-
#: includes/B2S/PostBox.php:
|
708 |
msgid "show calendar"
|
709 |
msgstr ""
|
710 |
|
711 |
-
#: includes/B2S/PostBox.php:
|
712 |
msgid "Blog2Social: Customize & Schedule Social Media Posts"
|
713 |
msgstr ""
|
714 |
|
715 |
-
#: includes/B2S/PostBox.php:
|
716 |
msgid ""
|
717 |
-
"Customize and schedule your social media posts on the one page preview for "
|
718 |
-
"
|
719 |
-
"#hashtags or @handles and schedule your posts for the best times to post, "
|
720 |
-
"for multiple times or re-share recurrently for more visibility and "
|
721 |
-
"engagement with your community."
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: includes/B2S/PostBox.php:
|
725 |
-
#: views/b2s/html/footer.php:345
|
726 |
msgid "Blog2Social: Social Media Auto-Posting"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/B2S/PostBox.php:
|
730 |
-
msgid ""
|
731 |
-
"Share your blog posts with the Auto Poster: Your blog posts will be shared "
|
732 |
-
"automatically on your social media channels as soon as you publish or update "
|
733 |
-
"a new post. You can also choose to autopost scheduled blog posts as soon as "
|
734 |
-
"they are published."
|
735 |
msgstr ""
|
736 |
|
737 |
-
#: includes/B2S/PostBox.php:
|
738 |
#, php-format
|
739 |
-
msgid ""
|
740 |
-
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your "
|
741 |
-
"blog posts</a>"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/B2S/PostBox.php:
|
745 |
-
#: views/b2s/html/footer.php:355
|
746 |
msgid "You want to auto-post your blog post?"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: includes/B2S/PostBox.php:
|
750 |
-
#: views/b2s/
|
751 |
-
#: views/b2s/ship.php:309 views/b2s/ship.php:369 views/b2s/ship.php:415
|
752 |
-
#: views/b2s/html/footer.php:26 views/b2s/html/footer.php:144
|
753 |
-
#: views/b2s/html/footer.php:208 views/b2s/html/footer.php:248
|
754 |
-
#: views/b2s/html/footer.php:317 views/b2s/html/footer.php:356
|
755 |
-
#: views/b2s/html/footer.php:443
|
756 |
msgid "With Blog2Social Premium you can:"
|
757 |
msgstr ""
|
758 |
|
759 |
-
#: includes/B2S/PostBox.php:
|
760 |
-
#: views/b2s/
|
761 |
-
#: views/b2s/ship.php:312 views/b2s/ship.php:372 views/b2s/ship.php:418
|
762 |
-
#: views/b2s/html/footer.php:29 views/b2s/html/footer.php:147
|
763 |
-
#: views/b2s/html/footer.php:211 views/b2s/html/footer.php:251
|
764 |
-
#: views/b2s/html/footer.php:320 views/b2s/html/footer.php:359
|
765 |
-
#: views/b2s/html/footer.php:446 views/b2s/html/header.php:325
|
766 |
msgid "Post on pages and groups"
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: includes/B2S/PostBox.php:
|
770 |
-
#: views/b2s/
|
771 |
-
#: views/b2s/ship.php:313 views/b2s/ship.php:373 views/b2s/ship.php:419
|
772 |
-
#: views/b2s/html/footer.php:30 views/b2s/html/footer.php:148
|
773 |
-
#: views/b2s/html/footer.php:212 views/b2s/html/footer.php:252
|
774 |
-
#: views/b2s/html/footer.php:321 views/b2s/html/footer.php:360
|
775 |
-
#: views/b2s/html/footer.php:447
|
776 |
msgid "Share on multiple profiles, pages and groups"
|
777 |
msgstr ""
|
778 |
|
779 |
-
#: includes/B2S/PostBox.php:
|
780 |
-
#: views/b2s/
|
781 |
-
#: views/b2s/ship.php:314 views/b2s/ship.php:374 views/b2s/ship.php:420
|
782 |
-
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:65
|
783 |
-
#: views/b2s/html/footer.php:149 views/b2s/html/footer.php:213
|
784 |
-
#: views/b2s/html/footer.php:253 views/b2s/html/footer.php:322
|
785 |
-
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:448
|
786 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
787 |
msgstr ""
|
788 |
|
789 |
-
#: includes/B2S/PostBox.php:
|
790 |
-
#: views/b2s/
|
791 |
-
#: views/b2s/ship.php:315 views/b2s/ship.php:375 views/b2s/ship.php:421
|
792 |
-
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:150
|
793 |
-
#: views/b2s/html/footer.php:214 views/b2s/html/footer.php:254
|
794 |
-
#: views/b2s/html/footer.php:323 views/b2s/html/footer.php:362
|
795 |
-
#: views/b2s/html/footer.php:449
|
796 |
msgid "Schedule your posts at the best times on each network"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: includes/B2S/PostBox.php:
|
800 |
-
#: views/b2s/
|
801 |
-
|
802 |
-
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:151
|
803 |
-
#: views/b2s/html/footer.php:215 views/b2s/html/footer.php:255
|
804 |
-
#: views/b2s/html/footer.php:324 views/b2s/html/footer.php:363
|
805 |
-
#: views/b2s/html/footer.php:450
|
806 |
-
msgid ""
|
807 |
-
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
808 |
-
"social media posts"
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: includes/B2S/PostBox.php:
|
812 |
-
#: views/b2s/
|
813 |
-
#: views/b2s/ship.php:317 views/b2s/ship.php:377 views/b2s/ship.php:423
|
814 |
-
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:152
|
815 |
-
#: views/b2s/html/footer.php:216 views/b2s/html/footer.php:256
|
816 |
-
#: views/b2s/html/footer.php:325 views/b2s/html/footer.php:364
|
817 |
-
#: views/b2s/html/footer.php:451
|
818 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#: includes/B2S/PostBox.php:
|
822 |
-
#: views/b2s/
|
823 |
-
#: views/b2s/ship.php:318 views/b2s/ship.php:378 views/b2s/ship.php:424
|
824 |
-
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:153
|
825 |
-
#: views/b2s/html/footer.php:217 views/b2s/html/footer.php:257
|
826 |
-
#: views/b2s/html/footer.php:326 views/b2s/html/footer.php:365
|
827 |
-
#: views/b2s/html/footer.php:452
|
828 |
msgid "Schedule and re-share old posts"
|
829 |
msgstr ""
|
830 |
|
831 |
-
#: includes/B2S/PostBox.php:
|
832 |
-
#: views/b2s/
|
833 |
-
#: views/b2s/ship.php:319 views/b2s/ship.php:379 views/b2s/ship.php:425
|
834 |
-
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:67
|
835 |
-
#: views/b2s/html/footer.php:154 views/b2s/html/footer.php:218
|
836 |
-
#: views/b2s/html/footer.php:258 views/b2s/html/footer.php:327
|
837 |
-
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:453
|
838 |
msgid "Select link format or image format for your posts"
|
839 |
msgstr ""
|
840 |
|
841 |
-
#: includes/B2S/PostBox.php:
|
842 |
-
#: views/b2s/
|
843 |
-
#: views/b2s/ship.php:320 views/b2s/ship.php:380 views/b2s/ship.php:426
|
844 |
-
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:68
|
845 |
-
#: views/b2s/html/footer.php:155 views/b2s/html/footer.php:219
|
846 |
-
#: views/b2s/html/footer.php:259 views/b2s/html/footer.php:328
|
847 |
-
#: views/b2s/html/footer.php:367 views/b2s/html/footer.php:454
|
848 |
msgid "Select individual images per post"
|
849 |
msgstr ""
|
850 |
|
851 |
-
#: includes/B2S/PostBox.php:
|
852 |
-
#: views/b2s/
|
853 |
-
|
854 |
-
#: views/b2s/html/footer.php:38 views/b2s/html/footer.php:156
|
855 |
-
#: views/b2s/html/footer.php:220 views/b2s/html/footer.php:260
|
856 |
-
#: views/b2s/html/footer.php:329 views/b2s/html/footer.php:368
|
857 |
-
#: views/b2s/html/footer.php:455
|
858 |
-
msgid ""
|
859 |
-
"Reporting & calendar: keep track of your published and scheduled social "
|
860 |
-
"media posts"
|
861 |
msgstr ""
|
862 |
|
863 |
-
#: includes/B2S/PostBox.php:
|
864 |
-
#: views/b2s/
|
865 |
-
#: views/b2s/ship.php:323 views/b2s/ship.php:383 views/b2s/ship.php:429
|
866 |
-
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:158
|
867 |
-
#: views/b2s/html/footer.php:222 views/b2s/html/footer.php:262
|
868 |
-
#: views/b2s/html/footer.php:331 views/b2s/html/footer.php:370
|
869 |
-
#: views/b2s/html/footer.php:457
|
870 |
msgid "Upgrade to SMART and above"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: includes/B2S/PostBox.php:
|
874 |
-
#: views/b2s/
|
875 |
-
#: views/b2s/ship.php:325 views/b2s/ship.php:385 views/b2s/ship.php:431
|
876 |
-
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:73
|
877 |
-
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:160
|
878 |
-
#: views/b2s/html/footer.php:224 views/b2s/html/footer.php:264
|
879 |
-
#: views/b2s/html/footer.php:333 views/b2s/html/footer.php:372
|
880 |
-
#: views/b2s/html/footer.php:460
|
881 |
#, php-format
|
882 |
-
msgid ""
|
883 |
-
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
884 |
-
"Blog2Social Premium</a> (no payment information needed)"
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: includes/B2S/PostBox.php:
|
888 |
-
#: includes/B2S/Settings/Item.php:488
|
889 |
msgid "Select network collection:"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: includes/B2S/PostBox.php:
|
893 |
-
#: includes/B2S/Curation/View.php:97 includes/B2S/Settings/Item.php:499
|
894 |
msgid "Select Twitter profile:"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#: includes/B2S/PostBox.php:
|
898 |
msgid "When do you want to share your post on social media?"
|
899 |
msgstr ""
|
900 |
|
901 |
-
#: includes/B2S/PostBox.php:
|
902 |
msgid "immediately after publishing"
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: includes/B2S/PostBox.php:
|
906 |
msgid "at best times"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
910 |
msgid ""
|
911 |
-
"
|
912 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
913 |
msgstr ""
|
914 |
|
915 |
#: views/b2s/curation.draft.php:17
|
916 |
msgid "Get the Blog2Social Browser Extension"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: views/b2s/curation.draft.php:47 views/b2s/network.php:
|
920 |
-
#: views/b2s/
|
921 |
-
#: views/b2s/
|
922 |
-
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
923 |
-
#: views/b2s/post.calendar.php:243 views/b2s/post.draft.php:42
|
924 |
-
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:45
|
925 |
-
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
926 |
-
#: views/b2s/post.sched.php:59 views/b2s/ship.php:188 views/b2s/ship.php:570
|
927 |
-
#: views/b2s/ship.php:658 views/b2s/support.php:204
|
928 |
-
#: views/prg/html/header.php:86
|
929 |
msgid "Loading..."
|
930 |
msgstr ""
|
931 |
|
@@ -937,20 +810,13 @@ msgstr ""
|
|
937 |
msgid "Are you sure you want to delete this draft?"
|
938 |
msgstr ""
|
939 |
|
940 |
-
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:141
|
941 |
-
#: views/b2s/
|
942 |
-
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
943 |
-
#: views/b2s/post.notice.php:85 views/b2s/post.publish.php:85
|
944 |
-
#: views/b2s/post.sched.php:99 views/b2s/ship.php:474 views/b2s/ship.php:553
|
945 |
-
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
946 |
msgid "NO"
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: views/b2s/curation.draft.php:91 views/b2s/network.php:
|
950 |
-
#: views/b2s/
|
951 |
-
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:86
|
952 |
-
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:100
|
953 |
-
#: views/b2s/widgets/posts.php:68
|
954 |
msgid "YES, delete"
|
955 |
msgstr ""
|
956 |
|
@@ -959,9 +825,7 @@ msgid "No link preview available. Please check your link."
|
|
959 |
msgstr ""
|
960 |
|
961 |
#: views/b2s/curation.php:34
|
962 |
-
msgid ""
|
963 |
-
"No connected networks. Please make sure to connect at least one social media "
|
964 |
-
"account."
|
965 |
msgstr ""
|
966 |
|
967 |
#: views/b2s/curation.php:37
|
@@ -972,31 +836,17 @@ msgstr ""
|
|
972 |
msgid "Saved as draft."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
|
976 |
-
#: views/b2s/post.sched.php:189 includes/B2S/Settings/Item.php:419
|
977 |
-
#: includes/B2S/Settings/Item.php:452 views/b2s/html/footer.php:111
|
978 |
msgid "Link Post"
|
979 |
msgstr ""
|
980 |
|
981 |
-
#: views/b2s/curation.php:47 views/b2s/curation.php:49
|
982 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
983 |
-
#: includes/B2S/Settings/Item.php:433 includes/B2S/Settings/Item.php:452
|
984 |
msgid "Image Post"
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: views/b2s/curation.php:
|
988 |
-
#: views/b2s/html/post.navbar.php:
|
989 |
-
|
990 |
-
msgstr ""
|
991 |
-
|
992 |
-
#: views/b2s/curation.php:49 views/b2s/network.php:215 views/b2s/ship.php:23
|
993 |
-
#: includes/B2S/Curation/View.php:56 includes/B2S/Network/Item.php:162
|
994 |
-
#: includes/B2S/Network/Item.php:256 includes/B2S/Network/Item.php:322
|
995 |
-
#: includes/B2S/Network/Item.php:384 includes/B2S/Settings/Item.php:117
|
996 |
-
#: includes/B2S/Settings/Item.php:339 includes/B2S/Ship/Image.php:80
|
997 |
-
#: includes/B2S/Ship/Item.php:1009 views/b2s/html/post.navbar.php:15
|
998 |
-
#: views/b2s/html/post.navbar.php:19 views/b2s/partials/post-edit-modal.php:9
|
999 |
-
#: views/b2s/widgets/posts.php:18
|
1000 |
msgid "SMART"
|
1001 |
msgstr ""
|
1002 |
|
@@ -1020,14 +870,8 @@ msgstr ""
|
|
1020 |
msgid "continue"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
-
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:446
|
1024 |
-
#: includes/B2S/Ship/Item.php:
|
1025 |
-
#: includes/B2S/Ship/Item.php:534 includes/B2S/Ship/Item.php:563
|
1026 |
-
#: includes/B2S/Ship/Item.php:591 includes/B2S/Ship/Item.php:634
|
1027 |
-
#: includes/B2S/Ship/Item.php:657 includes/B2S/Ship/Item.php:678
|
1028 |
-
#: includes/B2S/Ship/Item.php:699 includes/B2S/Ship/Item.php:720
|
1029 |
-
#: includes/B2S/Ship/Item.php:741 includes/B2S/Ship/Item.php:762
|
1030 |
-
#: includes/B2S/Ship/Item.php:806
|
1031 |
msgid "Change image"
|
1032 |
msgstr ""
|
1033 |
|
@@ -1035,8 +879,7 @@ msgstr ""
|
|
1035 |
msgid "Write something..."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
-
#: views/b2s/curation.php:112 views/b2s/ship.php:260 views/b2s/ship.php:262
|
1039 |
-
#: includes/B2S/Post/Item.php:379
|
1040 |
msgid "Re-share this post"
|
1041 |
msgstr ""
|
1042 |
|
@@ -1044,70 +887,48 @@ msgstr ""
|
|
1044 |
msgid "Create a new post"
|
1045 |
msgstr ""
|
1046 |
|
1047 |
-
#: views/b2s/curation.php:119 views/b2s/post.calendar.php:38
|
1048 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:659 includes/B2S/Post/Filter.php:57
|
1049 |
-
#: includes/B2S/Post/Item.php:308 includes/B2S/Ship/Save.php:417
|
1050 |
-
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1051 |
msgid "published"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: views/b2s/curation.php:135 views/b2s/post.approve.php:109
|
1055 |
-
#: views/b2s/ship.php:468
|
1056 |
msgid "Do you want to mark this post as published ?"
|
1057 |
msgstr ""
|
1058 |
|
1059 |
-
#: views/b2s/curation.php:140 views/b2s/post.approve.php:114
|
1060 |
-
#: views/b2s/ship.php:473 views/b2s/ship.php:554
|
1061 |
msgid "YES"
|
1062 |
msgstr ""
|
1063 |
|
1064 |
-
#: views/b2s/curation.php:154 views/b2s/post.calendar.php:264
|
1065 |
-
#: views/b2s/ship.php:398
|
1066 |
msgid "Need to schedule your posts?"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
-
#: views/b2s/curation.php:157 views/b2s/post.calendar.php:267
|
1070 |
-
#: views/b2s/ship.php:401
|
1071 |
msgid "Blog2Social Premium covers everything you need."
|
1072 |
msgstr ""
|
1073 |
|
1074 |
-
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:270
|
1075 |
-
#: views/b2s/ship.php:404 includes/B2S/Ship/Item.php:1010
|
1076 |
msgid "Schedule for specific dates"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: views/b2s/curation.php:161 views/b2s/post.calendar.php:271
|
1080 |
-
|
1081 |
-
msgid ""
|
1082 |
-
"You want to publish a post on a specific date? No problem! Just enter your "
|
1083 |
-
"desired date and you are ready to go!"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
-
#: views/b2s/curation.php:163 views/b2s/post.calendar.php:273
|
1087 |
-
#: views/b2s/ship.php:407
|
1088 |
msgid "Schedule post recurrently"
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: views/b2s/curation.php:164 views/b2s/post.calendar.php:274
|
1092 |
-
|
1093 |
-
msgid ""
|
1094 |
-
"You have evergreen content you want to re-share from time to time in your "
|
1095 |
-
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
1096 |
-
"or recurringly at specific times."
|
1097 |
msgstr ""
|
1098 |
|
1099 |
-
#: views/b2s/curation.php:166 views/b2s/post.calendar.php:276
|
1100 |
-
#: views/b2s/ship.php:410
|
1101 |
msgid "Best Time Scheduler"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: views/b2s/curation.php:167 views/b2s/post.calendar.php:277
|
1105 |
-
|
1106 |
-
msgid ""
|
1107 |
-
"Whenever you publish a post, only a fraction of your followers will actually "
|
1108 |
-
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
1109 |
-
"at the best times for each social network. Get more outreach and extend the "
|
1110 |
-
"lifespan of your posts."
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: views/b2s/curation.php:199
|
@@ -1126,457 +947,383 @@ msgstr ""
|
|
1126 |
msgid "Select image"
|
1127 |
msgstr ""
|
1128 |
|
1129 |
-
#: views/b2s/dashboard.php:
|
1130 |
-
msgid "What's New"
|
1131 |
-
msgstr ""
|
1132 |
-
|
1133 |
-
#: views/b2s/dashboard.php:27
|
1134 |
msgid "Your Activity"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: views/b2s/dashboard.php:
|
1138 |
msgid "List"
|
1139 |
msgstr ""
|
1140 |
|
1141 |
-
#: views/b2s/dashboard.php:
|
1142 |
msgid "Chart"
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#: views/b2s/dashboard.php:
|
1146 |
msgid "Follow us"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: views/b2s/network.php:
|
1150 |
-
#: views/b2s/post.calendar.php:225 views/b2s/post.calendar.php:226
|
1151 |
-
#: views/prg/post.php:26 views/prg/post.php:27
|
1152 |
-
#: views/b2s/html/post.navbar.php:25 views/b2s/html/post.navbar.php:26
|
1153 |
msgid "filter"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: views/b2s/network.php:
|
1157 |
msgid "Create new network collection"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: views/b2s/network.php:
|
1161 |
msgid "You want to define a new combination of networks?"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: views/b2s/network.php:
|
1165 |
-
#: includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:159
|
1166 |
-
#: includes/B2S/Ship/Image.php:87 includes/B2S/Ship/Portale.php:32
|
1167 |
-
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:41
|
1168 |
msgid "PRO"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: views/b2s/network.php:
|
1172 |
msgid "Delete"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: views/b2s/network.php:
|
1176 |
-
#: views/b2s/html/footer.php:207
|
1177 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
-
#: views/b2s/network.php:
|
1181 |
msgid "Load Best Times"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
-
#: views/b2s/network.php:
|
1185 |
msgid "create"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: views/b2s/network.php:
|
1189 |
msgid "Delete Profile"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: views/b2s/network.php:
|
1193 |
msgid "Do you really want to delete this profile"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: views/b2s/network.php:
|
1197 |
msgid "Google My Business"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: views/b2s/network.php:
|
1201 |
-
msgid ""
|
1202 |
-
"Blog2Social uses the official Google My Business API to share your content "
|
1203 |
-
"on your business listing. You can connect Google My Business listings with "
|
1204 |
-
"up to nine different locations to Blog2Social and you can choose which "
|
1205 |
-
"location you want to share your content on."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: views/b2s/network.php:
|
1209 |
-
msgid ""
|
1210 |
-
"Google currently allows access to the API for all companies with up to 9 "
|
1211 |
-
"locations in their Google My Business Listings. However, Google plans to "
|
1212 |
-
"extend the API for companies with more than 9 locations in their Google My "
|
1213 |
-
"Business listings."
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: views/b2s/network.php:
|
1217 |
-
#: includes/B2S/Ship/Item.php:1048 views/b2s/partials/post-edit-modal.php:48
|
1218 |
msgid "Learn more"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: views/b2s/network.php:
|
1222 |
msgid "Delete Authorization"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: views/b2s/network.php:
|
1226 |
msgid "Do you really want to delete this authorization"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: views/b2s/network.php:
|
1230 |
msgid "You have still set up scheduled posts for this network:"
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: views/b2s/network.php:
|
1234 |
msgid "This network connection is still assigned to other users."
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: views/b2s/network.php:
|
1238 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: views/b2s/network.php:
|
1242 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: views/b2s/network.php:
|
1246 |
msgid "scheduled posts"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: views/b2s/network.php:
|
1250 |
-
msgid ""
|
1251 |
-
"The connection is still assigned to other users. Please withdraw the "
|
1252 |
-
"assigned connection from other users first."
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: views/b2s/network.php:
|
1256 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: views/b2s/network.php:
|
1260 |
msgid "View schedule posts"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: views/b2s/network.php:
|
1264 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: views/b2s/network.php:
|
1268 |
msgid "Change successful"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: views/b2s/network.php:
|
1272 |
msgid "Could not be changed"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: views/b2s/network.php:
|
1276 |
msgid "modfiy"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: views/b2s/network.php:
|
1280 |
-
#: includes/B2S/Network/Item.php:162
|
1281 |
msgid "Edit Post Template"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: views/b2s/network.php:
|
1285 |
-
#: includes/B2S/Network/Item.php:536 includes/B2S/Settings/Item.php:313
|
1286 |
msgid "save"
|
1287 |
msgstr ""
|
1288 |
|
1289 |
-
#: views/b2s/network.php:
|
1290 |
msgid "Instant Caching for Link Posts"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: views/b2s/network.php:
|
1294 |
-
msgid ""
|
1295 |
-
"Please enable this feature, if you are using varnish caching (HTTP "
|
1296 |
-
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
1297 |
-
"parameter to the post URL of your link posts to ensure that the network "
|
1298 |
-
"always pulls the current meta data of your blog post."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: views/b2s/network.php:
|
1302 |
msgid "Choose your Post Format"
|
1303 |
msgstr ""
|
1304 |
|
1305 |
-
#: views/b2s/network.php:
|
1306 |
-
|
1307 |
-
msgid ""
|
1308 |
-
"Decide in which post format you want to post your content: Link post or "
|
1309 |
-
"image post."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: views/b2s/network.php:
|
1313 |
-
msgid ""
|
1314 |
-
"Decide in wich form you want to post your Content. Either as image with "
|
1315 |
-
"frame, or as image cut out."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: views/b2s/network.php:
|
1319 |
msgid "Post Content"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: views/b2s/network.php:
|
1323 |
-
msgid ""
|
1324 |
-
"Edit the content of your post. Move elements by drag and drop into the "
|
1325 |
-
"textarea and customize them as you like."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: views/b2s/network.php:
|
1329 |
msgid "Legend"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: views/b2s/network.php:
|
1333 |
msgid "The title of your post"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: views/b2s/network.php:
|
1337 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: views/b2s/network.php:
|
1341 |
msgid "The content of your post"
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: views/b2s/network.php:
|
1345 |
msgid "The tags you have set in your post."
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: views/b2s/network.php:
|
1349 |
msgid "The name of the post author."
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: views/b2s/network.php:
|
1353 |
msgid "Character limit"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: views/b2s/network.php:
|
1357 |
-
msgid ""
|
1358 |
-
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1359 |
-
"individually. Your text will be shortened after the last comma, period, or "
|
1360 |
-
"space character within your character limit."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: views/b2s/network.php:
|
1364 |
-
msgid ""
|
1365 |
-
"An \"EXCERPT\" will only be added to your social media post if you have "
|
1366 |
-
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
1367 |
-
"(document settings) of your post."
|
1368 |
msgstr ""
|
1369 |
|
1370 |
-
#: views/b2s/network.php:
|
1371 |
msgid ""
|
1372 |
-
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
1373 |
-
"
|
1374 |
-
"character limit you define for the \"EXCERPT\" and/or \"CONTENT\" variables "
|
1375 |
-
"will be applied within the remaining available character limit of the social "
|
1376 |
-
"network."
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: views/b2s/network.php:
|
1380 |
msgid "Connect with Pinterest"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: views/b2s/network.php:
|
1384 |
msgid ""
|
1385 |
-
"Please make sure to use your original Pinterest login data (email and "
|
1386 |
-
"password). Social Login via Facebook or Google login data will not work here."
|
1387 |
-
" Please also check if the two-factor authentication in Pinterest is "
|
1388 |
-
"deactivated to ensure a stable connection to Blog2Social."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
-
#: views/b2s/network.php:
|
1392 |
msgid "An error occurred! Please try again."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
-
#: views/b2s/network.php:
|
1396 |
-
#: views/b2s/ship.php:576
|
1397 |
#, php-format
|
1398 |
-
msgid ""
|
1399 |
-
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
1400 |
-
"Upgrade to Blog2Social Premium</a>"
|
1401 |
msgstr ""
|
1402 |
|
1403 |
-
#: views/b2s/network.php:
|
1404 |
msgid "Invalid Data! Please try again."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
-
#: views/b2s/network.php:
|
1408 |
-
msgid ""
|
1409 |
-
"You have not yet created any pinboards in your Pinterest account. Please set "
|
1410 |
-
"up at least one pinboard to pin on your Pinterest account!"
|
1411 |
msgstr ""
|
1412 |
|
1413 |
-
#: views/b2s/network.php:
|
1414 |
#, php-format
|
1415 |
-
msgid ""
|
1416 |
-
"Login failed. Please check your login data for typos and please check your "
|
1417 |
-
"Pinterest settings, if the two-factor authentication is turned off for this "
|
1418 |
-
"account: <a target=\"_blank\" href=\"%s\">%s</a>"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: views/b2s/network.php:
|
1422 |
msgid "Pinterest has rejected the connection to your blog"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: views/b2s/network.php:
|
1426 |
msgid "Please select your currect server location and connect again"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: views/b2s/network.php:
|
1430 |
-
msgid ""
|
1431 |
-
"Access to this resource on your server is denied! Please check your "
|
1432 |
-
"webserver configuration for caching."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: views/b2s/network.php:
|
1436 |
-
msgid ""
|
1437 |
-
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
1438 |
-
"on your profile."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: views/b2s/network.php:
|
1442 |
-
#: views/b2s/html/header.php:331 views/prg/html/form.php:141
|
1443 |
-
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1444 |
-
#: views/prg/html/form.php:220
|
1445 |
msgid "E-Mail"
|
1446 |
msgstr ""
|
1447 |
|
1448 |
-
#: views/b2s/network.php:
|
1449 |
msgid "Password"
|
1450 |
msgstr ""
|
1451 |
|
1452 |
-
#: views/b2s/network.php:
|
1453 |
msgid "Server-Location"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: views/b2s/network.php:
|
1457 |
msgid "Select Pinboard"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: views/b2s/network.php:
|
1461 |
-
#: includes/B2S/Settings/Item.php:91
|
1462 |
msgid "authorize"
|
1463 |
msgstr ""
|
1464 |
|
1465 |
-
#: views/b2s/network.php:
|
1466 |
msgid "confirm"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: views/b2s/network.php:
|
1470 |
msgid "Advanced Network Settings"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: views/b2s/network.php:
|
1474 |
msgid "URL Parameters"
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: views/b2s/network.php:
|
1478 |
msgid "The parameters could not be saved. Please try again."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: views/b2s/network.php:
|
1482 |
-
#: views/b2s/network.php:454 views/b2s/network.php:457
|
1483 |
-
#: views/b2s/network.php:460
|
1484 |
msgid "An error occured. Please contact our support."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
-
#: views/b2s/network.php:
|
1488 |
msgid "Network collection"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
-
#: views/b2s/network.php:
|
1492 |
msgid "Move the connection to another network collection."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
-
#: views/b2s/network.php:
|
1496 |
msgid "move"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: views/b2s/network.php:
|
1500 |
msgid "You need at least one network collection"
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: views/b2s/network.php:
|
1504 |
msgid "Team Management"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: views/b2s/network.php:
|
1508 |
msgid "Assign the connection to other blog users"
|
1509 |
msgstr ""
|
1510 |
|
1511 |
-
#: views/b2s/network.php:
|
1512 |
msgid "You don't have a Business License"
|
1513 |
msgstr ""
|
1514 |
|
1515 |
-
#: views/b2s/network.php:
|
1516 |
msgid "This user don't have a Business License, or it is not the same"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#: views/b2s/network.php:
|
1520 |
msgid "The connection has already been assigned to this user."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: views/b2s/network.php:
|
1524 |
msgid "The connection dose not exist"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
-
#: views/b2s/network.php:
|
1528 |
msgid "This connection has already been assigned to this user."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#: views/b2s/network.php:
|
1532 |
-
msgid ""
|
1533 |
-
"You can only share the connection with blog users who use the same license "
|
1534 |
-
"as you."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
-
#: views/b2s/network.php:
|
1538 |
msgid "There are no other users to whom the connection can be assigned."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: views/b2s/network.php:
|
1542 |
msgid "assign"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: views/b2s/network.php:
|
1546 |
msgid "Apply best time settings"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: views/b2s/network.php:
|
1550 |
msgid "Apply post template settings"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: views/b2s/network.php:
|
1554 |
msgid "Apply URL Parameters"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
-
#: views/b2s/network.php:
|
1558 |
msgid ""
|
1559 |
-
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
1560 |
-
"
|
1561 |
-
"users. You can update and delete the connections as well as select forums or "
|
1562 |
-
"boards. Other users will be able to use the social media connection you "
|
1563 |
-
"assigned to them to post and schedule to your social media profile, page or "
|
1564 |
-
"group."
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: views/b2s/network.php:
|
1568 |
msgid "Upgrade to Blog2Social Business"
|
1569 |
msgstr ""
|
1570 |
|
1571 |
-
#: views/b2s/network.php:
|
1572 |
#, php-format
|
1573 |
-
msgid ""
|
1574 |
-
"Define parameters that will be added to link posts on this network e.g. to "
|
1575 |
-
"create tracking links with UTM paramters. <a target=\"_blank\" href=\"%s\">"
|
1576 |
-
"More information</a>"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: views/b2s/network.php:
|
1580 |
msgid "My Profile"
|
1581 |
msgstr ""
|
1582 |
|
@@ -1588,9 +1335,7 @@ msgstr ""
|
|
1588 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
-
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:81
|
1592 |
-
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:95
|
1593 |
-
#: views/b2s/widgets/posts.php:63
|
1594 |
msgid "Number of entries"
|
1595 |
msgstr ""
|
1596 |
|
@@ -1598,77 +1343,55 @@ msgstr ""
|
|
1598 |
msgid "Sort by network"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
-
#: views/b2s/post.calendar.php:37 includes/B2S/Calendar/Filter.php:
|
1602 |
msgid "show all"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:18
|
1606 |
-
#: includes/B2S/Post/Filter.php:57 includes/B2S/Post/Item.php:308
|
1607 |
-
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1608 |
msgid "scheduled"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1612 |
-
#: includes/B2S/Network/Item.php:645 includes/B2S/Network/Item.php:648
|
1613 |
-
#: includes/B2S/Settings/Item.php:419 views/b2s/html/footer.php:128
|
1614 |
msgid "Image with frame"
|
1615 |
msgstr ""
|
1616 |
|
1617 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1618 |
-
#: includes/B2S/Network/Item.php:646 includes/B2S/Network/Item.php:649
|
1619 |
-
#: includes/B2S/Settings/Item.php:433 views/b2s/html/footer.php:133
|
1620 |
msgid "Image cut out"
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: views/b2s/post.calendar.php:87 views/b2s/post.sched.php:172
|
1624 |
msgid "add post"
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130
|
1628 |
-
#: views/b2s/ship.php:503
|
1629 |
msgid "Choose your"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130
|
1633 |
-
#: views/b2s/ship.php:503
|
1634 |
msgid "Post Format"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: views/b2s/post.calendar.php:112 views/b2s/post.sched.php:132
|
1638 |
-
#: views/b2s/ship.php:505
|
1639 |
msgid "for:"
|
1640 |
msgstr ""
|
1641 |
|
1642 |
-
#: views/b2s/post.calendar.php:131 views/b2s/post.sched.php:151
|
1643 |
-
|
1644 |
-
msgid ""
|
1645 |
-
"Define the default settings for the custom post format for all of your "
|
1646 |
-
"Facebook accounts in the Blog2Social settings."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: views/b2s/post.calendar.php:134 views/b2s/post.sched.php:154
|
1650 |
-
|
1651 |
-
msgid ""
|
1652 |
-
"Define the default settings for the custom post format for all of your "
|
1653 |
-
"Twitter accounts in the Blog2Social settings."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:157
|
1657 |
-
|
1658 |
-
msgid ""
|
1659 |
-
"Define the default settings for the custom post format for all of your "
|
1660 |
-
"LinkedIn accounts in the Blog2Social settings."
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:160
|
1664 |
-
|
1665 |
-
msgid ""
|
1666 |
-
"Define the default settings for the custom post format for all of your "
|
1667 |
-
"Instagram accounts in the Blog2Social settings."
|
1668 |
msgstr ""
|
1669 |
|
1670 |
-
#: views/b2s/post.calendar.php:155 views/b2s/post.sched.php:111
|
1671 |
-
#: views/b2s/ship.php:444
|
1672 |
msgid "Select image for"
|
1673 |
msgstr ""
|
1674 |
|
@@ -1700,17 +1423,15 @@ msgstr ""
|
|
1700 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: views/b2s/post.favorites.php:67 includes/B2S/Post/Item.php:
|
1704 |
msgid "You have not saved any favorites."
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#: views/b2s/post.notice.php:76 views/b2s/post.publish.php:76
|
1708 |
-
#: views/b2s/widgets/posts.php:58
|
1709 |
msgid "Delete entries from the reporting"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: views/b2s/post.notice.php:79 views/b2s/post.publish.php:79
|
1713 |
-
#: views/b2s/widgets/posts.php:61
|
1714 |
msgid "You are sure, you want to delete entries from the reporting?"
|
1715 |
msgstr ""
|
1716 |
|
@@ -1718,20 +1439,19 @@ msgstr ""
|
|
1718 |
msgid "Uhr"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: views/b2s/post.sched.php:90
|
1722 |
msgid "Delete entries form the scheduling"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: views/b2s/post.sched.php:93
|
1726 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: views/b2s/premium.php:14 includes/B2S/
|
1730 |
msgid "Your current license:"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: views/b2s/premium.php:26 views/b2s/html/sidebar.php:47
|
1734 |
-
#: views/b2s/html/sidebar.ship.php:46
|
1735 |
msgid "Start your 30-day free Premium trial"
|
1736 |
msgstr ""
|
1737 |
|
@@ -1739,17 +1459,12 @@ msgstr ""
|
|
1739 |
msgid "End of Trial"
|
1740 |
msgstr ""
|
1741 |
|
1742 |
-
#: views/b2s/premium.php:31 includes/B2S/
|
1743 |
-
#: includes/B2S/Settings/Item.php:181
|
1744 |
msgid "Upgrade"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
#: views/b2s/premium.php:35
|
1748 |
-
msgid ""
|
1749 |
-
"Upgrade to Blog2Social Premium and get even smarter with social media "
|
1750 |
-
"automation: Schedule your posts for the best time or recurringly with the "
|
1751 |
-
"Best Time Manager or the Social Media Calendar. Post to pages, groups and "
|
1752 |
-
"multiple accounts per network."
|
1753 |
msgstr ""
|
1754 |
|
1755 |
#: views/b2s/premium.php:41
|
@@ -1777,9 +1492,7 @@ msgid "Pages and groups"
|
|
1777 |
msgstr ""
|
1778 |
|
1779 |
#: views/b2s/premium.php:71
|
1780 |
-
msgid ""
|
1781 |
-
"Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and "
|
1782 |
-
"Medium."
|
1783 |
msgstr ""
|
1784 |
|
1785 |
#: views/b2s/premium.php:79
|
@@ -1787,9 +1500,7 @@ msgid "More users and accounts"
|
|
1787 |
msgstr ""
|
1788 |
|
1789 |
#: views/b2s/premium.php:80
|
1790 |
-
msgid ""
|
1791 |
-
"Add multiple users and accounts per network. Define sharing-profiles for "
|
1792 |
-
"selected network bundles."
|
1793 |
msgstr ""
|
1794 |
|
1795 |
#: views/b2s/premium.php:88
|
@@ -1797,9 +1508,7 @@ msgid "Social Media Calendar"
|
|
1797 |
msgstr ""
|
1798 |
|
1799 |
#: views/b2s/premium.php:89
|
1800 |
-
msgid ""
|
1801 |
-
"See your entire schedule at a glance, with team view and network filter. "
|
1802 |
-
"Edit scheduled posts or add new social media posts per drag & drop."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: views/b2s/premium.php:97
|
@@ -1807,20 +1516,15 @@ msgid "Best Times Manager"
|
|
1807 |
msgstr ""
|
1808 |
|
1809 |
#: views/b2s/premium.php:98
|
1810 |
-
msgid ""
|
1811 |
-
"Use the Best Times Manager to schedule your posts automatically or define "
|
1812 |
-
"your own best time scheme."
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#: views/b2s/premium.php:109
|
1816 |
-
#: includes/B2S/Post/Item.php:608 includes/B2S/Post/Item.php:744
|
1817 |
msgid "Auto-Posting"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
#: views/b2s/premium.php:110
|
1821 |
-
msgid ""
|
1822 |
-
"Share your posts automatically across your preferred networks at once or at "
|
1823 |
-
"your pre-scheduled time-settings."
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#: views/b2s/premium.php:118
|
@@ -1828,15 +1532,11 @@ msgid "RSS import & auto-post"
|
|
1828 |
msgstr ""
|
1829 |
|
1830 |
#: views/b2s/premium.php:119
|
1831 |
-
msgid ""
|
1832 |
-
"Share imported RSS feeds automatically to get more variations for your "
|
1833 |
-
"content."
|
1834 |
msgstr ""
|
1835 |
|
1836 |
#: views/b2s/premium.php:128
|
1837 |
-
msgid ""
|
1838 |
-
"Schedule and share your blog posts as Google My Business posts to update "
|
1839 |
-
"your business listing and to add fresh content for your company."
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: views/b2s/premium.php:136
|
@@ -1844,9 +1544,7 @@ msgid "Schedule curated content"
|
|
1844 |
msgstr ""
|
1845 |
|
1846 |
#: views/b2s/premium.php:137
|
1847 |
-
msgid ""
|
1848 |
-
"Schedule and share curated content from any source on your preferred "
|
1849 |
-
"networks."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
#: views/b2s/premium.php:148
|
@@ -1854,9 +1552,7 @@ msgid "Custom image"
|
|
1854 |
msgstr ""
|
1855 |
|
1856 |
#: views/b2s/premium.php:149
|
1857 |
-
msgid ""
|
1858 |
-
"Select individual images per post or network and select any image from your "
|
1859 |
-
"media library to create more variations for your posts."
|
1860 |
msgstr ""
|
1861 |
|
1862 |
#: views/b2s/premium.php:157
|
@@ -1864,9 +1560,7 @@ msgid "Custom format"
|
|
1864 |
msgstr ""
|
1865 |
|
1866 |
#: views/b2s/premium.php:158
|
1867 |
-
msgid ""
|
1868 |
-
"Select link post or image post per network to choose the optimal format for "
|
1869 |
-
"your post."
|
1870 |
msgstr ""
|
1871 |
|
1872 |
#: views/b2s/premium.php:166
|
@@ -1874,9 +1568,7 @@ msgid "Open Graph and Twitter Card Tags"
|
|
1874 |
msgstr ""
|
1875 |
|
1876 |
#: views/b2s/premium.php:167
|
1877 |
-
msgid ""
|
1878 |
-
"Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and "
|
1879 |
-
"Twitter Cards to define the look of your link posts."
|
1880 |
msgstr ""
|
1881 |
|
1882 |
#: views/b2s/premium.php:175
|
@@ -1895,16 +1587,6 @@ msgstr ""
|
|
1895 |
msgid "Show all premium features"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: views/b2s/settings.php:18 includes/B2S/Ship/Image.php:28
|
1899 |
-
msgid ""
|
1900 |
-
"You need a higher user role to upload an image on this blog. Please contact "
|
1901 |
-
"your administrator."
|
1902 |
-
msgstr ""
|
1903 |
-
|
1904 |
-
#: views/b2s/settings.php:27
|
1905 |
-
msgid "save..."
|
1906 |
-
msgstr ""
|
1907 |
-
|
1908 |
#: views/b2s/settings.php:32
|
1909 |
msgid "General"
|
1910 |
msgstr ""
|
@@ -1913,88 +1595,44 @@ msgstr ""
|
|
1913 |
msgid "Social Meta Data"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: views/b2s/settings.php:
|
1917 |
-
msgid "Select or upload an image from media gallery"
|
1918 |
-
msgstr ""
|
1919 |
-
|
1920 |
-
#: views/b2s/settings.php:77 includes/B2S/Ship/Image.php:92
|
1921 |
-
msgid "Use image"
|
1922 |
-
msgstr ""
|
1923 |
-
|
1924 |
-
#: views/b2s/settings.php:87
|
1925 |
msgid "Allow shortcodes in my post"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
-
#: views/b2s/settings.php:
|
1929 |
msgid ""
|
1930 |
-
"Shortcodes are used by some wordpress plugins like Elementor, Visual "
|
1931 |
-
"
|
1932 |
-
"post or page, it is replaced with some other content when you publish the "
|
1933 |
-
"article on your blog. In other words, a shortcode instructs WordPress to "
|
1934 |
-
"find a special command that is placed in square brackets ([]) and replace it "
|
1935 |
-
"with the appropriate dynamic content by a plugin you use.<br><br>Activate "
|
1936 |
-
"this feature, if you should use dynamic elements in your articles."
|
1937 |
msgstr ""
|
1938 |
|
1939 |
-
#: views/b2s/settings.php:
|
1940 |
msgid "Include WordPress tags as hashtags in your posts"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
-
#: views/b2s/settings.php:
|
1944 |
msgid ""
|
1945 |
-
"Hashtags are a great way to generate more reach and visibility for your "
|
1946 |
-
"
|
1947 |
-
"your WordPress tags as hashtags in all Social Media posts for networks that "
|
1948 |
-
"support hashtags. This way you don't need to worry about adding extra "
|
1949 |
-
"hashtags to your comments. Blog2Social erases unnecessary spaces in your "
|
1950 |
-
"WordPress tags to generate valid hashtags."
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: views/b2s/settings.php:
|
1954 |
msgid "Activate Legacy mode "
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: views/b2s/settings.php:
|
1958 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
-
#: views/b2s/settings.php:
|
1962 |
msgid "Instant Caching for Facebook Link Posts"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: views/b2s/settings.php:
|
1966 |
-
msgid ""
|
1967 |
-
"Please enable this feature, if you are using varnish caching (HTTP "
|
1968 |
-
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
1969 |
-
"parameter to the post URL of your Facebook link posts to ensure that "
|
1970 |
-
"Facebook always pulls the current meta data of your blog post."
|
1971 |
-
msgstr ""
|
1972 |
-
|
1973 |
-
#: views/b2s/settings.php:143 includes/B2S/Settings/Item.php:63
|
1974 |
-
msgid "Personal Time Zone"
|
1975 |
-
msgstr ""
|
1976 |
-
|
1977 |
-
#: views/b2s/settings.php:146
|
1978 |
-
msgid ""
|
1979 |
-
"Blog2Social applies the scheduled time settings based on the time zone "
|
1980 |
-
"defined in the general settings of your WordPress. You can select a user-"
|
1981 |
-
"specific time zone that deviates from the Wordpress system time zone for "
|
1982 |
-
"your social media scheduling.<br><br>Select the desired time zone from the "
|
1983 |
-
"drop-down menu."
|
1984 |
-
msgstr ""
|
1985 |
-
|
1986 |
-
#: views/b2s/settings.php:160
|
1987 |
msgid ""
|
1988 |
-
"
|
1989 |
-
"be sent to your primary Twitter profile."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: views/b2s/
|
1993 |
-
msgid "More information"
|
1994 |
-
msgstr ""
|
1995 |
-
|
1996 |
-
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:57
|
1997 |
-
#: includes/B2S/Post/Item.php:308 includes/PRG/Post/Item.php:86
|
1998 |
msgid "draft"
|
1999 |
msgstr ""
|
2000 |
|
@@ -2002,14 +1640,11 @@ msgstr ""
|
|
2002 |
msgid "Social Media Scheduling & Sharing"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: views/b2s/ship.php:53 views/prg/ship.php:43 views/prg/ship.php:45
|
2006 |
-
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:349
|
2007 |
-
#: includes/B2S/Settings/Item.php:370 views/prg/html/form.php:26
|
2008 |
-
#: views/prg/html/form.php:28
|
2009 |
msgid "Title"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
-
#: views/b2s/ship.php:55 includes/B2S/Post/Item.php:
|
2013 |
msgid "on blog"
|
2014 |
msgstr ""
|
2015 |
|
@@ -2025,7 +1660,7 @@ msgstr ""
|
|
2025 |
msgid "Load My Times Settings"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: views/b2s/ship.php:105 views/b2s/html/sidebar.php:
|
2029 |
msgid "Social Accounts"
|
2030 |
msgstr ""
|
2031 |
|
@@ -2069,13 +1704,11 @@ msgstr ""
|
|
2069 |
msgid "scroll to top"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: views/b2s/ship.php:228 views/b2s/ship.php:234
|
2073 |
-
#: includes/B2S/Curation/View.php:113
|
2074 |
msgid "Share"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: views/b2s/ship.php:229 views/b2s/ship.php:233
|
2078 |
-
#: includes/B2S/Curation/View.php:110
|
2079 |
msgid "Save as Draft"
|
2080 |
msgstr ""
|
2081 |
|
@@ -2097,16 +1730,9 @@ msgstr ""
|
|
2097 |
|
2098 |
#: views/b2s/ship.php:305
|
2099 |
msgid ""
|
2100 |
-
"You can re-share your post for a different sharing purpose, or to share on a "
|
2101 |
-
"
|
2102 |
-
"
|
2103 |
-
"networks only, or re-share them at different times. You may vary your "
|
2104 |
-
"comments and images in order to produce more variations of your social media "
|
2105 |
-
"posts to share more often without sharing the same message over and over "
|
2106 |
-
"again. Whatever your choose to do for re-sharing your post, you can simply "
|
2107 |
-
"click \"Re-share this post\" and you will be led to the preview page where "
|
2108 |
-
"your can select your networks and edit your texts, comments or images "
|
2109 |
-
"according to your current sharing preferences."
|
2110 |
msgstr ""
|
2111 |
|
2112 |
#: views/b2s/ship.php:308
|
@@ -2119,18 +1745,10 @@ msgstr ""
|
|
2119 |
|
2120 |
#: views/b2s/ship.php:339
|
2121 |
msgid ""
|
2122 |
-
"You can save your current network settings as \"Standard\" network settings "
|
2123 |
-
"
|
2124 |
-
"
|
2125 |
-
"
|
2126 |
-
"You can change these settings any time per click, or choose another network "
|
2127 |
-
"profile (Premium).<br><br>You can also pre-define various different sets of "
|
2128 |
-
"networks, for specific social media accounts, target groups, contents or "
|
2129 |
-
"sharing purposes. For example you can define a specific set of networks for "
|
2130 |
-
"sharing your posts images only or for re-sharing your evergreen content on a "
|
2131 |
-
"recurring basis. On the preview-page you may edit your selected or pre-"
|
2132 |
-
"selected networks anytime by simply clicking on the respective network "
|
2133 |
-
"account to select or remove an account from the current sharing scheme."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#: views/b2s/ship.php:351
|
@@ -2158,10 +1776,7 @@ msgid "Overwrite Draft"
|
|
2158 |
msgstr ""
|
2159 |
|
2160 |
#: views/b2s/ship.php:550
|
2161 |
-
msgid ""
|
2162 |
-
"There is already a saved draft for this WordPress post or page. If you save "
|
2163 |
-
"a new draft it will overwrite the old draft. Are you sure you want to "
|
2164 |
-
"overwrite your draft?"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: views/b2s/ship.php:646
|
@@ -2172,8 +1787,7 @@ msgstr ""
|
|
2172 |
msgid "Give me more information"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:
|
2176 |
-
#: includes/B2S/Ship/Save.php:438
|
2177 |
msgid "FAQ"
|
2178 |
msgstr ""
|
2179 |
|
@@ -2250,9 +1864,7 @@ msgid "(Support times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
|
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: views/b2s/support.php:207
|
2253 |
-
msgid ""
|
2254 |
-
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
2255 |
-
"administrator."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
#: views/b2s/support.php:214
|
@@ -2316,8 +1928,7 @@ msgid "Login failed. Please check your username and a password!"
|
|
2316 |
msgstr ""
|
2317 |
|
2318 |
#: views/prg/login.php:21
|
2319 |
-
msgid ""
|
2320 |
-
"Login failed. Please check your server settings. OpenSSL must be enabled on."
|
2321 |
msgstr ""
|
2322 |
|
2323 |
#: views/prg/login.php:24
|
@@ -2353,9 +1964,7 @@ msgid "1x promote event"
|
|
2353 |
msgstr ""
|
2354 |
|
2355 |
#: views/prg/login.php:43
|
2356 |
-
msgid ""
|
2357 |
-
"The press distribution PR gateway automatically publish your press releases "
|
2358 |
-
"and events with one click.Publish your message over 250 portals."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
#: views/prg/login.php:46
|
@@ -2383,30 +1992,146 @@ msgid "Please Note"
|
|
2383 |
msgstr ""
|
2384 |
|
2385 |
#: views/prg/ship.php:90
|
2386 |
-
msgid ""
|
2387 |
-
"It may incur charges for publishing on PR-Gateway. Sent press releases can "
|
2388 |
-
"not be withdrawn. If you want your press release to be published now?"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
#: views/prg/ship.php:93
|
2392 |
msgid "Yes, I accept"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/B2S/
|
2396 |
-
msgid "Share your post"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2400 |
msgid "immediately"
|
2401 |
msgstr ""
|
2402 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2403 |
#: includes/B2S/Curation/View.php:65
|
2404 |
msgid "at scheduled times"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2408 |
-
#: includes/B2S/Ship/Item.php:1118 views/b2s/partials/post-edit-modal.php:62
|
2409 |
-
#: views/b2s/partials/post-edit-modal.php:65
|
2410 |
msgid "Date"
|
2411 |
msgstr ""
|
2412 |
|
@@ -2434,12 +2159,11 @@ msgstr ""
|
|
2434 |
msgid "Best times"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: includes/B2S/Network/Item.php:147 includes/B2S/Network/Item.php:218
|
2438 |
-
#: includes/B2S/Ship/Item.php:316 includes/B2S/Ship/Navbar.php:86
|
2439 |
msgid "Blog"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: includes/B2S/Network/Item.php:151 includes/B2S/Ship/Portale.php:
|
2443 |
msgid "You want to connect a network profile?"
|
2444 |
msgstr ""
|
2445 |
|
@@ -2447,8 +2171,7 @@ msgstr ""
|
|
2447 |
msgid "You want to connect a network page?"
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:351
|
2451 |
-
#: includes/B2S/Ship/Portale.php:31
|
2452 |
msgid "Publication"
|
2453 |
msgstr ""
|
2454 |
|
@@ -2456,36 +2179,27 @@ msgstr ""
|
|
2456 |
msgid "You want to connect a social media group?"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: includes/B2S/Network/Item.php:171 includes/B2S/Settings/Item.php:257
|
2460 |
-
msgid "Connections"
|
2461 |
-
msgstr ""
|
2462 |
-
|
2463 |
#: includes/B2S/Network/Item.php:172 views/b2s/html/footer.php:192
|
2464 |
msgid "Best Time Manager"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275
|
2468 |
-
#: includes/B2S/Network/Item.php:342
|
2469 |
msgid "To reactivate this connection,"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275
|
2473 |
-
#: includes/B2S/Network/Item.php:342 includes/B2S/Ship/Image.php:30
|
2474 |
msgid "please upgrade"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: includes/B2S/Network/Item.php:212 includes/B2S/Network/Item.php:278
|
2478 |
-
#: includes/B2S/Network/Item.php:345
|
2479 |
msgid "Authorization is interrupted since"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282
|
2483 |
-
#: includes/B2S/Network/Item.php:349
|
2484 |
msgid "Assigned by"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
-
#: includes/B2S/Network/Item.php:254 includes/B2S/Network/Item.php:320
|
2488 |
-
#: includes/B2S/Network/Item.php:382 includes/B2S/Ship/Item.php:1066
|
2489 |
msgid "Days"
|
2490 |
msgstr ""
|
2491 |
|
@@ -2497,9 +2211,7 @@ msgstr ""
|
|
2497 |
msgid "Connection currently assigned to"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: includes/B2S/Network/Item.php:508 views/prg/html/form.php:84
|
2501 |
-
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
2502 |
-
#: views/prg/html/form.php:163
|
2503 |
msgid "Name"
|
2504 |
msgstr ""
|
2505 |
|
@@ -2520,637 +2232,612 @@ msgstr ""
|
|
2520 |
msgid "Apply for all connections"
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: includes/B2S/Network/Item.php:
|
2524 |
msgid "Successfully saved"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/B2S/Network/Item.php:
|
2528 |
msgid "Failed to save"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#: includes/B2S/Network/Item.php:
|
2532 |
msgid "Failed to load the default template"
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: includes/B2S/Network/Item.php:
|
2536 |
msgid ""
|
2537 |
-
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
2538 |
-
"templates
|
2539 |
-
"media posts. Select and define elements, such as title, excerpt, content, "
|
2540 |
-
"hashtags, and edit the post format. The “content” element is selected by "
|
2541 |
-
"default. Define custom post templates per social network and per profile, "
|
2542 |
-
"group & page. You can also add static content (such as individual hashtags "
|
2543 |
-
"or slogans) to your post templates."
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: includes/B2S/Network/Item.php:
|
2547 |
msgid "Upgrade to Blog2Social Smart"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: includes/B2S/Network/Item.php:
|
2551 |
msgid "Activate Instant Caching"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: includes/B2S/Network/Item.php:
|
2555 |
msgid "Format"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: includes/B2S/Network/Item.php:
|
2559 |
msgid "Load default settings"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: includes/B2S/Network/Item.php:
|
2563 |
-
#: includes/B2S/Ship/Item.php:813 includes/B2S/Ship/Item.php:815
|
2564 |
msgid "Link"
|
2565 |
msgstr ""
|
2566 |
|
2567 |
-
#: includes/B2S/Network/Item.php:
|
2568 |
msgid "Image"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
-
#: includes/B2S/Network/Item.php:
|
2572 |
msgid "Content"
|
2573 |
msgstr ""
|
2574 |
|
2575 |
-
#: includes/B2S/Network/Item.php:
|
2576 |
-
msgid ""
|
2577 |
-
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2578 |
-
"in your post."
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: includes/B2S/Network/Item.php:
|
2582 |
msgid "clear"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: includes/B2S/Network/Item.php:
|
2586 |
msgid "The link will be added automatically at the end of the post."
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: includes/B2S/Network/Item.php:
|
2590 |
msgid "Network limit"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: includes/B2S/Network/Item.php:
|
2594 |
-
#: includes/B2S/
|
2595 |
-
#: includes/B2S/Ship/Item.php:205 includes/B2S/Ship/Item.php:247
|
2596 |
-
#: includes/B2S/Ship/Item.php:251 includes/B2S/Ship/Item.php:284
|
2597 |
-
#: includes/B2S/Ship/Item.php:288 includes/B2S/Ship/Item.php:1145
|
2598 |
-
#: includes/B2S/Ship/Item.php:1147
|
2599 |
msgid "characters"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: includes/B2S/Network/Item.php:
|
2603 |
msgid "recommended length"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: includes/B2S/Network/Item.php:
|
2607 |
-
#: includes/B2S/Network/Item.php:842 includes/B2S/Network/Item.php:894
|
2608 |
-
#: includes/B2S/Network/Item.php:928
|
2609 |
msgid "Preview"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
-
#: includes/B2S/Post/Filter.php:
|
2613 |
msgid "all authors"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
-
#: includes/B2S/Post/Filter.php:
|
2617 |
msgid "all posts"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
-
#: includes/B2S/Post/Filter.php:
|
2621 |
msgid "not yet shared"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
-
#: includes/B2S/Post/Filter.php:
|
2625 |
msgid "already shared"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#: includes/B2S/Post/Filter.php:
|
2629 |
msgid "currently scheduled"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
#: includes/B2S/Post/Filter.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2633 |
msgid "all statuses"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#: includes/B2S/Post/Filter.php:
|
2637 |
msgid "newest first"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: includes/B2S/Post/Filter.php:
|
2641 |
msgid "oldest first"
|
2642 |
msgstr ""
|
2643 |
|
2644 |
-
#: includes/B2S/Post/Filter.php:
|
2645 |
msgid "all categories & tags"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: includes/B2S/Post/Filter.php:
|
2649 |
msgid "all post types"
|
2650 |
msgstr ""
|
2651 |
|
2652 |
-
#: includes/B2S/Post/Filter.php:
|
2653 |
msgid "shared by user"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
-
#: includes/B2S/Post/Filter.php:
|
2657 |
msgid "Search Title"
|
2658 |
msgstr ""
|
2659 |
|
2660 |
-
#: includes/B2S/Post/Filter.php:
|
2661 |
msgid "sort"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
-
#: includes/B2S/Post/Filter.php:
|
2665 |
msgid "reset"
|
2666 |
msgstr ""
|
2667 |
|
2668 |
-
#: includes/B2S/Post/Filter.php:
|
2669 |
msgid "selected date"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: includes/B2S/Post/Filter.php:
|
2673 |
msgid "scheduled post(s)"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: includes/B2S/Post/Item.php:
|
2677 |
msgid "You have not saved any drafts."
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
2681 |
msgid "You have not published or scheduled any posts."
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#: includes/B2S/Post/Item.php:
|
2685 |
msgid "curated post"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#: includes/B2S/Post/Item.php:
|
2689 |
msgid "last shared on social media"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#: includes/B2S/Post/Item.php:
|
2693 |
-
#: includes/B2S/Post/Item.php:455 includes/B2S/Post/Item.php:476
|
2694 |
-
#: includes/B2S/Post/Item.php:497
|
2695 |
msgid "Share on Social Media"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: includes/B2S/Post/Item.php:
|
2699 |
msgid "load Draft"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: includes/B2S/Post/Item.php:
|
2703 |
-
#: includes/B2S/Post/Item.php:481 includes/B2S/Post/Item.php:499
|
2704 |
-
#: includes/PRG/Post/Item.php:121
|
2705 |
msgid "Author"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#: includes/B2S/Post/Item.php:
|
2709 |
-
#: includes/B2S/Post/Item.php:426
|
2710 |
msgid "Details"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#: includes/B2S/Post/Item.php:
|
2714 |
msgid "shared social media posts"
|
2715 |
msgstr ""
|
2716 |
|
2717 |
-
#: includes/B2S/Post/Item.php:
|
2718 |
#, php-format
|
2719 |
msgid "latest share by %s"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: includes/B2S/Post/Item.php:
|
2723 |
msgid "scheduled social media posts"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: includes/B2S/Post/Item.php:
|
2727 |
#, php-format
|
2728 |
msgid "next share by %s"
|
2729 |
msgstr ""
|
2730 |
|
2731 |
-
#: includes/B2S/Post/Item.php:
|
2732 |
msgid "social media posts ready to be shared"
|
2733 |
msgstr ""
|
2734 |
|
2735 |
-
#: includes/B2S/Post/Item.php:
|
2736 |
msgid "via Browser-Extension"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: includes/B2S/Post/Item.php:
|
2740 |
msgid "saved"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: includes/B2S/Post/Item.php:
|
2744 |
msgid "last saved"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: includes/B2S/Post/Item.php:
|
2748 |
-
#: includes/B2S/Ship/Save.php:427
|
2749 |
msgid "Retweet"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: includes/B2S/Post/Item.php:
|
2753 |
-
|
|
|
|
|
|
|
2754 |
msgid "select all"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#: includes/B2S/Post/Item.php:
|
2758 |
msgid "show"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: includes/B2S/Post/Item.php:
|
2762 |
msgid "Please see"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: includes/B2S/Post/Item.php:
|
2766 |
#, php-format
|
2767 |
msgid "sharing in progress by %s"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: includes/B2S/Post/Item.php:
|
2771 |
#, php-format
|
2772 |
msgid "shared by %s"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: includes/B2S/Post/Item.php:
|
2776 |
msgid "You want to delete a publish post entry?"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: includes/B2S/Post/Item.php:
|
2780 |
msgid "delete from reporting"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: includes/B2S/Post/Item.php:
|
2784 |
-
msgid "re-share"
|
2785 |
-
msgstr ""
|
2786 |
-
|
2787 |
-
#: includes/B2S/Post/Item.php:687
|
2788 |
#, php-format
|
2789 |
msgid "is waiting to shared by %s"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
-
#: includes/B2S/Post/Item.php:
|
2793 |
msgid "share"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: includes/B2S/Post/Item.php:
|
2797 |
msgid "You want to delete your Social Media post?"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
-
#: includes/B2S/Post/Item.php:
|
2801 |
#, php-format
|
2802 |
msgid "last modified by %s"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#: includes/B2S/Post/Item.php:
|
2806 |
msgid "is processed by the network"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#: includes/B2S/Post/Item.php:
|
2810 |
#, php-format
|
2811 |
msgid "scheduled by %s"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: includes/B2S/Post/Item.php:
|
2815 |
msgid "You want to edit your scheduled post?"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: includes/B2S/Post/Item.php:
|
2819 |
msgid "edit"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: includes/B2S/Post/Item.php:
|
2823 |
msgid "delete scheduling"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: includes/B2S/
|
2827 |
-
|
2828 |
-
msgid "Account"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: includes/B2S/
|
2832 |
-
msgid "
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: includes/B2S/
|
2836 |
-
msgid "
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: includes/B2S/
|
2840 |
-
msgid "
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: includes/B2S/
|
2844 |
-
msgid "
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: includes/B2S/
|
2848 |
-
msgid "
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: includes/B2S/
|
2852 |
-
|
|
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: includes/B2S/
|
2856 |
-
msgid "
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: includes/B2S/
|
2860 |
-
msgid "
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: includes/B2S/
|
2864 |
-
msgid "
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: includes/B2S/
|
2868 |
-
msgid "
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: includes/B2S/
|
2872 |
-
|
2873 |
-
msgid ""
|
2874 |
-
"This is a global feature for your blog, which can only be edited by users "
|
2875 |
-
"with admin rights."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: includes/B2S/
|
2879 |
-
msgid "
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: includes/B2S/
|
2883 |
-
msgid ""
|
2884 |
-
"Auto-posts for Facebook Profiles will be shown in the \"Instant Sharing\" "
|
2885 |
-
"tab on your \"Posts & Sharing\" navigation bar and can be shared on your "
|
2886 |
-
"Facebook Profile by clicking on the \"Share\" button next to your auto-post."
|
2887 |
msgstr ""
|
2888 |
|
2889 |
-
#: includes/B2S/
|
2890 |
-
msgid "
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: includes/B2S/
|
2894 |
-
msgid ""
|
2895 |
-
"Set up your autoposter to automatically share your new or updated posts, "
|
2896 |
-
"pages and custom post types on your social media channels."
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: includes/B2S/
|
2900 |
-
msgid ""
|
2901 |
-
"Select your preferred network collection for autoposting. This collection "
|
2902 |
-
"defines the social media accounts on which the autoposter will share your "
|
2903 |
-
"social media posts automatically."
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: includes/B2S/
|
2907 |
-
msgid "
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: includes/B2S/
|
2911 |
-
msgid "
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: includes/B2S/
|
2915 |
-
msgid "
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: includes/B2S/
|
2919 |
-
msgid "
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: includes/B2S/
|
2923 |
-
msgid ""
|
2924 |
-
"By enabling this feature your previously published social media posts will "
|
2925 |
-
"be sent again to your selected social media channels as soon as the post is "
|
2926 |
-
"updated."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: includes/B2S/
|
2930 |
-
msgid "
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: includes/B2S/
|
2934 |
-
msgid "
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: includes/B2S/
|
2938 |
-
msgid "
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: includes/B2S/
|
2942 |
-
msgid ""
|
2943 |
-
"Set up your autoposter to automatically share your imported posts, pages and "
|
2944 |
-
"custom post types on your social media channels."
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: includes/B2S/
|
2948 |
-
msgid ""
|
2949 |
-
"Immediate Cross-Posting across all networks: Share an unlimited number of "
|
2950 |
-
"posts"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/B2S/
|
2954 |
-
msgid "
|
2955 |
msgstr ""
|
2956 |
|
2957 |
-
#: includes/B2S/
|
2958 |
-
msgid "
|
2959 |
msgstr ""
|
2960 |
|
2961 |
-
#: includes/B2S/
|
2962 |
-
msgid "
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: includes/B2S/
|
2966 |
-
msgid "
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: includes/B2S/
|
2970 |
-
msgid "
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: includes/B2S/
|
2974 |
-
msgid ""
|
2975 |
-
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
2976 |
-
"as your primary Twitter account for auto-posting."
|
2977 |
msgstr ""
|
2978 |
|
2979 |
-
#: includes/B2S/
|
2980 |
-
msgid "
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: includes/B2S/
|
2984 |
-
msgid "
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: includes/B2S/
|
2988 |
-
msgid "
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: includes/B2S/
|
2992 |
-
msgid "
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: includes/B2S/Settings/Item.php:
|
2996 |
-
msgid ""
|
2997 |
-
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: includes/B2S/Settings/Item.php:
|
3001 |
-
msgid "
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: includes/B2S/Settings/Item.php:
|
3005 |
-
msgid "
|
3006 |
msgstr ""
|
3007 |
|
3008 |
-
#: includes/B2S/Settings/Item.php:
|
3009 |
-
msgid "
|
3010 |
msgstr ""
|
3011 |
|
3012 |
-
#: includes/B2S/Settings/Item.php:
|
3013 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3014 |
msgstr ""
|
3015 |
|
3016 |
-
#: includes/B2S/Settings/Item.php:
|
3017 |
msgid "Reset all page and post meta data"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
-
#: includes/B2S/Settings/Item.php:
|
3021 |
msgid "Meta Tags Settings for Posts and Pages"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
-
#: includes/B2S/Settings/Item.php:
|
3025 |
-
msgid ""
|
3026 |
-
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
3027 |
-
"and other social networks to display your post or page image, title and "
|
3028 |
-
"description correctly."
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: includes/B2S/Settings/Item.php:
|
3032 |
-
msgid ""
|
3033 |
-
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
3034 |
-
"Twitter to display your post or page image, title and description correctly."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: includes/B2S/Settings/Item.php:
|
3038 |
msgid "Frontpage Settings"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: includes/B2S/Settings/Item.php:
|
3042 |
msgid "Check Settings with Sharing-Debugger"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: includes/B2S/Settings/Item.php:
|
3046 |
-
msgid ""
|
3047 |
-
"Add the default Open Graph parameters for title, description and image you "
|
3048 |
-
"want Facebook to display, if you share the frontpage of your blog as link "
|
3049 |
-
"post (http://www.yourblog.com)"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: includes/B2S/Settings/Item.php:
|
3053 |
msgid "Description"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: includes/B2S/Settings/Item.php:
|
3057 |
msgid "Image URL"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: includes/B2S/Settings/Item.php:
|
3061 |
-
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Image.php:87
|
3062 |
msgid "Image upload / Media Gallery"
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: includes/B2S/Settings/Item.php:
|
3066 |
-
msgid ""
|
3067 |
-
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
3068 |
-
"pixels and an aspect ratio of 1:1."
|
3069 |
msgstr ""
|
3070 |
|
3071 |
-
#: includes/B2S/Settings/Item.php:
|
3072 |
-
msgid ""
|
3073 |
-
"Add the default Twitter Card parameters for title, description and image you "
|
3074 |
-
"want Twitter to display, if you share the frontpage of your blog as link "
|
3075 |
-
"post (http://www.yourblog.com)"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: includes/B2S/Settings/Item.php:
|
3079 |
msgid "The default card type to use"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: includes/B2S/Settings/Item.php:
|
3083 |
msgid "Summary"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: includes/B2S/Settings/Item.php:
|
3087 |
msgid "Summary with large image"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: includes/B2S/Settings/Item.php:
|
3091 |
msgid "(SMART)"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: includes/B2S/Settings/Item.php:
|
3095 |
-
msgid ""
|
3096 |
-
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
3097 |
-
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
3098 |
-
"image will be cropped to a square. Twitter supports JPG, PNG, WEBP and GIF "
|
3099 |
-
"formats."
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: includes/B2S/Settings/Item.php:
|
3103 |
msgid "Did you know?"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: includes/B2S/Settings/Item.php:
|
3107 |
-
msgid ""
|
3108 |
-
"With Premium Pro, you can change the custom post format photo post or link "
|
3109 |
-
"post for each individual social media post and channel (profile, page, group)"
|
3110 |
-
"."
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: includes/B2S/Settings/Item.php:
|
3114 |
msgid "Upgrade to Premium Pro now."
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: includes/B2S/Settings/Item.php:
|
3118 |
msgid "The image will be changed"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: includes/B2S/Settings/Item.php:
|
3122 |
-
msgid ""
|
3123 |
-
"Insert white frames to show the whole image in your timeline. All image "
|
3124 |
-
"information will be shown in your timeline."
|
3125 |
msgstr ""
|
3126 |
|
3127 |
-
#: includes/B2S/Settings/Item.php:
|
3128 |
msgid ""
|
3129 |
-
"The link post format displays posts title, link address and the first one or "
|
3130 |
-
"
|
3131 |
-
"
|
3132 |
-
"selected image from the Blog2Social preview editor, please make sure you "
|
3133 |
-
"have activated the Social Meta Tags for Facebook and Twitter in your "
|
3134 |
-
"Blog2Social settings. You find these settings in the tab \"Social Meta "
|
3135 |
-
"Data\". If you don't select a specific post image, some networks display the "
|
3136 |
-
"first image detected on your page. The image links to your blog post."
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#: includes/B2S/Settings/Item.php:
|
3140 |
-
msgid ""
|
3141 |
-
"The image preview will be cropped automatically to fit the default Instagram "
|
3142 |
-
"layout for your Instagram timeline. The image will be shown uncropped when "
|
3143 |
-
"opening the preview page for your Instagram post."
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: includes/B2S/Settings/Item.php:
|
3147 |
msgid ""
|
3148 |
-
"A photo or image post displays the selected image in the one-page preview of "
|
3149 |
-
"
|
3150 |
-
"view on your image gallery in the respective network. Blog2Social adds the "
|
3151 |
-
"link to your post in your comment. The main benefit of photo posts is that "
|
3152 |
-
"your image is uploaded to your personal image albums or gallery. In Facebook,"
|
3153 |
-
" you can edit the albums name with a description of your choice."
|
3154 |
msgstr ""
|
3155 |
|
3156 |
#: includes/B2S/Ship/Image.php:27
|
@@ -3162,16 +2849,11 @@ msgid "To select an individual image from your media library,"
|
|
3162 |
msgstr ""
|
3163 |
|
3164 |
#: includes/B2S/Ship/Image.php:32
|
3165 |
-
msgid ""
|
3166 |
-
"The networks Diigo, Bloglovin’ and Google My Business do not support the GIF "
|
3167 |
-
"image format and will display your standard image instead."
|
3168 |
msgstr ""
|
3169 |
|
3170 |
#: includes/B2S/Ship/Image.php:33
|
3171 |
-
msgid ""
|
3172 |
-
"By changing your image in the link post format it will be changed for all "
|
3173 |
-
"networks listed below. This also applies for all scheduled posts in this "
|
3174 |
-
"post format. "
|
3175 |
msgstr ""
|
3176 |
|
3177 |
#: includes/B2S/Ship/Image.php:33
|
@@ -3179,10 +2861,7 @@ msgid "More Information"
|
|
3179 |
msgstr ""
|
3180 |
|
3181 |
#: includes/B2S/Ship/Image.php:37
|
3182 |
-
msgid ""
|
3183 |
-
"The best size for images in social media posts are between: 667-1000px x 523-"
|
3184 |
-
"1000px. Blog2Social will automatically resize your image according to "
|
3185 |
-
"network requirements."
|
3186 |
msgstr ""
|
3187 |
|
3188 |
#: includes/B2S/Ship/Image.php:61
|
@@ -3245,39 +2924,28 @@ msgstr ""
|
|
3245 |
msgid "post format"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: includes/B2S/Ship/Item.php:340 includes/B2S/Ship/Item.php:
|
3249 |
msgid "Insert full-text"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: includes/B2S/Ship/Item.php:342 includes/B2S/Ship/Item.php:
|
3253 |
msgid "Delete text"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651
|
3257 |
-
|
3258 |
-
msgid ""
|
3259 |
-
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3260 |
-
"allowed to post identical or substantially similar content to multiple "
|
3261 |
-
"accounts or multiple duplicate updates on one account."
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651
|
3265 |
-
|
3266 |
-
msgid ""
|
3267 |
-
"Violating these rules can result in Twitter suspending your account. Always "
|
3268 |
-
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3269 |
-
"duplicate posts."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651
|
3273 |
-
#: includes/B2S/Ship/Item.php:1019
|
3274 |
msgid "Learn more about this"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
#: includes/B2S/Ship/Item.php:353
|
3278 |
-
msgid ""
|
3279 |
-
"Please note: XING allows identical posts to be published only once within a "
|
3280 |
-
"group and no more than three times across different groups."
|
3281 |
msgstr ""
|
3282 |
|
3283 |
#: includes/B2S/Ship/Item.php:353
|
@@ -3285,71 +2953,44 @@ msgid "Read more"
|
|
3285 |
msgstr ""
|
3286 |
|
3287 |
#: includes/B2S/Ship/Item.php:358
|
3288 |
-
msgid ""
|
3289 |
-
"Please keep in mind that users are not allowed to post identical or "
|
3290 |
-
"substantially similar content to multiple accounts or multiple duplicate "
|
3291 |
-
"updates on one account."
|
3292 |
msgstr ""
|
3293 |
|
3294 |
#: includes/B2S/Ship/Item.php:358
|
3295 |
-
msgid ""
|
3296 |
-
"Violating these rules can result in suspending your account. Always vary "
|
3297 |
-
"your content with different images, comments, hashtags or handles to prevent "
|
3298 |
-
"duplicate posts."
|
3299 |
msgstr ""
|
3300 |
|
3301 |
#: includes/B2S/Ship/Item.php:378
|
3302 |
msgid "hide calendar"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: includes/B2S/Ship/Item.php:435 includes/B2S/Ship/Item.php:464
|
3306 |
-
#: includes/B2S/Ship/Item.php:
|
3307 |
-
#: includes/B2S/Ship/Item.php:552 includes/B2S/Ship/Item.php:580
|
3308 |
-
#: includes/B2S/Ship/Item.php:608 includes/B2S/Ship/Item.php:639
|
3309 |
-
#: includes/B2S/Ship/Item.php:662 includes/B2S/Ship/Item.php:683
|
3310 |
-
#: includes/B2S/Ship/Item.php:704 includes/B2S/Ship/Item.php:725
|
3311 |
-
#: includes/B2S/Ship/Item.php:746 includes/B2S/Ship/Item.php:767
|
3312 |
-
#: includes/B2S/Ship/Item.php:777
|
3313 |
msgid "Write something about your post..."
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:509
|
3317 |
-
|
3318 |
-
#: includes/B2S/Ship/Item.php:595
|
3319 |
-
msgid ""
|
3320 |
-
"Info: Change Open Graph Meta tags image, title and description for this "
|
3321 |
-
"network"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
-
#: includes/B2S/Ship/Item.php:453 includes/B2S/Ship/Item.php:483
|
3325 |
-
|
3326 |
-
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:598
|
3327 |
-
msgid ""
|
3328 |
-
"You want to change your link image, link title and link description for this "
|
3329 |
-
"network? Click here."
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: includes/B2S/Ship/Item.php:455 includes/B2S/Ship/Item.php:514
|
3333 |
-
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:572
|
3334 |
-
#: includes/B2S/Ship/Item.php:600
|
3335 |
msgid "OG Meta title"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: includes/B2S/Ship/Item.php:456 includes/B2S/Ship/Item.php:515
|
3339 |
-
#: includes/B2S/Ship/Item.php:545 includes/B2S/Ship/Item.php:573
|
3340 |
-
#: includes/B2S/Ship/Item.php:601
|
3341 |
msgid "OG Meta description"
|
3342 |
msgstr ""
|
3343 |
|
3344 |
#: includes/B2S/Ship/Item.php:478
|
3345 |
-
msgid ""
|
3346 |
-
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3347 |
-
"Changes may not be immediately visible on Twitter."
|
3348 |
msgstr ""
|
3349 |
|
3350 |
#: includes/B2S/Ship/Item.php:480
|
3351 |
-
msgid ""
|
3352 |
-
"Info: Change Card Meta tags image, title and description for this network"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
#: includes/B2S/Ship/Item.php:485
|
@@ -3361,208 +3002,163 @@ msgid "Card Meta description"
|
|
3361 |
msgstr ""
|
3362 |
|
3363 |
#: includes/B2S/Ship/Item.php:537
|
3364 |
-
msgid ""
|
3365 |
-
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3366 |
-
"days. Changes may not be immediately visible on XING."
|
3367 |
msgstr ""
|
3368 |
|
3369 |
#: includes/B2S/Ship/Item.php:793
|
3370 |
msgid "required"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: includes/B2S/Ship/Item.php:
|
3374 |
msgid "Jobs & Projects"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#: includes/B2S/Ship/Item.php:
|
3378 |
msgid "Events"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
-
#: includes/B2S/Ship/Item.php:
|
3382 |
msgid "Classified Ads"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
-
#: includes/B2S/Ship/Item.php:
|
3386 |
msgid "Offer"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
-
#: includes/B2S/Ship/Item.php:
|
3390 |
msgid "Request"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
-
#: includes/B2S/Ship/Item.php:
|
3394 |
msgid "The Headline..."
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: includes/B2S/Ship/Item.php:
|
3398 |
#, php-format
|
3399 |
msgid "max. %s Tags"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: includes/B2S/Ship/Item.php:
|
3403 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: includes/B2S/Ship/Item.php:
|
3407 |
msgid "Delay"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: includes/B2S/Ship/Item.php:
|
3411 |
-
#: includes/B2S/Ship/Item.php:981 includes/B2S/Ship/Item.php:982
|
3412 |
-
#: views/b2s/partials/post-edit-modal.php:77
|
3413 |
-
#: views/b2s/partials/post-edit-modal.php:78
|
3414 |
-
#: views/b2s/partials/post-edit-modal.php:79
|
3415 |
#: views/b2s/partials/post-edit-modal.php:80
|
3416 |
msgid "min"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: includes/B2S/Ship/Item.php:
|
3420 |
msgid "Add Retweet"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: includes/B2S/Ship/Item.php:
|
3424 |
msgid "Share Now"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: includes/B2S/Ship/Item.php:
|
3428 |
msgid "Schedule Recurrent Post"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: includes/B2S/Ship/Item.php:
|
3432 |
msgid ""
|
3433 |
-
"Please note: Your account is connected via an old XING API that is no longer "
|
3434 |
-
"
|
3435 |
-
"as your XING company pages (Employer branding profiles) and business pages "
|
3436 |
-
"with the new XING interface in the Blog2Social network settings. To do this, "
|
3437 |
-
"go to the Blog2Social Networks section and connect your XING accounts with "
|
3438 |
-
"the new XING."
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: includes/B2S/Ship/Item.php:
|
3442 |
-
msgid ""
|
3443 |
-
"Please note: Google will shut down Google+ for all private accounts "
|
3444 |
-
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3445 |
-
"information and the next steps, including how to download your photos and "
|
3446 |
-
"other content here:"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: includes/B2S/Ship/Item.php:
|
3450 |
msgid "Repeats"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: includes/B2S/Ship/Item.php:
|
3454 |
msgid "Duration"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: includes/B2S/Ship/Item.php:
|
3458 |
msgid "Number of repeats"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: includes/B2S/Ship/Item.php:
|
3462 |
msgid "Day of month"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#: includes/B2S/Ship/Item.php:
|
3466 |
msgid "Repeats every (days)"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: includes/B2S/Ship/Item.php:
|
3470 |
msgid "Start date"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: includes/B2S/Ship/Item.php:
|
3474 |
msgid "Time to publish"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: includes/B2S/Ship/Item.php:
|
3478 |
msgid "weekly"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: includes/B2S/Ship/Item.php:
|
3482 |
msgid "monthly"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: includes/B2S/Ship/Item.php:
|
3486 |
msgid "own period"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: includes/B2S/Ship/Item.php:
|
3490 |
msgid "Week"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: includes/B2S/Ship/Item.php:
|
3494 |
msgid "Weeks"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: includes/B2S/Ship/Item.php:
|
3498 |
msgid "Month"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: includes/B2S/Ship/Item.php:
|
3502 |
msgid "Months"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
-
#: includes/B2S/Ship/Item.php:
|
3506 |
msgid "End Of Month"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
-
#: includes/B2S/Ship/Item.php:
|
3510 |
msgid "Timespan"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: includes/B2S/Ship/Item.php:
|
3514 |
-
#: views/b2s/partials/post-edit-modal.php:66
|
3515 |
msgid "Time"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: includes/B2S/Ship/Item.php:
|
3519 |
-
msgid "Mon"
|
3520 |
-
msgstr ""
|
3521 |
-
|
3522 |
-
#: includes/B2S/Ship/Item.php:1125
|
3523 |
-
msgid "Tue"
|
3524 |
-
msgstr ""
|
3525 |
-
|
3526 |
-
#: includes/B2S/Ship/Item.php:1126
|
3527 |
-
msgid "Wed"
|
3528 |
-
msgstr ""
|
3529 |
-
|
3530 |
-
#: includes/B2S/Ship/Item.php:1127
|
3531 |
-
msgid "Thu"
|
3532 |
-
msgstr ""
|
3533 |
-
|
3534 |
-
#: includes/B2S/Ship/Item.php:1128
|
3535 |
-
msgid "Fri"
|
3536 |
-
msgstr ""
|
3537 |
-
|
3538 |
-
#: includes/B2S/Ship/Item.php:1129
|
3539 |
-
msgid "Sat"
|
3540 |
-
msgstr ""
|
3541 |
-
|
3542 |
-
#: includes/B2S/Ship/Item.php:1130
|
3543 |
-
msgid "Sun"
|
3544 |
-
msgstr ""
|
3545 |
-
|
3546 |
-
#: includes/B2S/Ship/Item.php:1137
|
3547 |
msgid "add another post"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: includes/B2S/Ship/Item.php:
|
3551 |
msgid "Copy from original"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: includes/B2S/Ship/Item.php:
|
3555 |
msgid "Apply Settings To All Networks"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: includes/B2S/Ship/Item.php:
|
3559 |
msgid "Save as best time for this network"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
#: includes/B2S/Ship/Save.php:391
|
3563 |
-
msgid ""
|
3564 |
-
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
3565 |
-
"Instant Sharing"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
#: includes/B2S/Ship/Save.php:391
|
@@ -3574,41 +3170,31 @@ msgid "This is how it works:"
|
|
3574 |
msgstr ""
|
3575 |
|
3576 |
#: includes/B2S/Ship/Save.php:394
|
3577 |
-
msgid ""
|
3578 |
-
"-To share your post immediately, click the \"Share\" button next to your "
|
3579 |
-
"selected Facebook profile below."
|
3580 |
msgstr ""
|
3581 |
|
3582 |
#: includes/B2S/Ship/Save.php:395
|
3583 |
msgid ""
|
3584 |
-
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
3585 |
-
"
|
3586 |
-
"scheduled date and time, your post will move to the \"Instant Sharing\" tab "
|
3587 |
-
"and you can click on \"Share\" to post it to your Facebook Profile instantly."
|
3588 |
msgstr ""
|
3589 |
|
3590 |
#: includes/B2S/Ship/Save.php:399
|
3591 |
-
msgid ""
|
3592 |
-
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
#: includes/B2S/Ship/Save.php:402
|
3596 |
-
msgid ""
|
3597 |
-
"-To share your post immediately, click the \"Share\" button next to your "
|
3598 |
-
"selected Google+ account below."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
#: includes/B2S/Ship/Save.php:403
|
3602 |
msgid ""
|
3603 |
-
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
3604 |
-
"
|
3605 |
-
"your scheduled date and time, your post will move to the \"Instant Sharing\" "
|
3606 |
-
"tab and you can click on \"Share\" to post it to your account instantly."
|
3607 |
msgstr ""
|
3608 |
|
3609 |
#: includes/B2S/Ship/Save.php:404
|
3610 |
-
msgid ""
|
3611 |
-
"Please note: You post has to be marked as public to be posted in a group."
|
3612 |
msgstr ""
|
3613 |
|
3614 |
#: includes/B2S/Ship/Save.php:409
|
@@ -3655,8 +3241,7 @@ msgstr ""
|
|
3655 |
msgid "We never store your data from your social media profiles"
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: views/b2s/html/footer.php:8 views/prg/html/footer.php:8
|
3659 |
-
#: views/prg/html/header.php:45
|
3660 |
msgid "Post"
|
3661 |
msgstr ""
|
3662 |
|
@@ -3681,24 +3266,14 @@ msgid "Upgrade to Blog2Social PREMIUM PRO"
|
|
3681 |
msgstr ""
|
3682 |
|
3683 |
#: views/b2s/html/footer.php:56
|
3684 |
-
msgid ""
|
3685 |
-
"You can select different combinations of networks and save them for "
|
3686 |
-
"different sharing purposes."
|
3687 |
msgstr ""
|
3688 |
|
3689 |
#: views/b2s/html/footer.php:59
|
3690 |
msgid ""
|
3691 |
-
"Blog2Social Premium PRO allows you to save your preferred social network "
|
3692 |
-
"accounts into network
|
3693 |
-
"
|
3694 |
-
"for your next social sharing activitiy. Use specific network collections for "
|
3695 |
-
"recurring sharing purposes or campaigns, e.g. for initial sharing of new "
|
3696 |
-
"blog posts, for re-sharing evergreen content or for sharing images or videos."
|
3697 |
-
" Bundle your preferred social network accounts into a network collection for "
|
3698 |
-
"a faster future access. Assign a name to each network collection so you can "
|
3699 |
-
"easily access them for your next social sharing activitiy. You can also "
|
3700 |
-
"connect multiple profiles, pages and groups per network in one network "
|
3701 |
-
"collection."
|
3702 |
msgstr ""
|
3703 |
|
3704 |
#: views/b2s/html/footer.php:62
|
@@ -3706,21 +3281,15 @@ msgid "With Blog2Social PREMIUM PRO you can also:"
|
|
3706 |
msgstr ""
|
3707 |
|
3708 |
#: views/b2s/html/footer.php:64
|
3709 |
-
msgid ""
|
3710 |
-
"Post on LinkedIn pages, XING pages and groups, as well as Facebook pages and "
|
3711 |
-
"groups"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
#: views/b2s/html/footer.php:66
|
3715 |
-
msgid ""
|
3716 |
-
"Schedule your posts at the best times on each network: for one time, "
|
3717 |
-
"multiple times or recurrently"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
#: views/b2s/html/footer.php:69
|
3721 |
-
msgid ""
|
3722 |
-
"Reporting and calendar: keep track of your published and scheduled social "
|
3723 |
-
"media posts"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
#: views/b2s/html/footer.php:71 views/b2s/html/footer.php:89
|
@@ -3732,9 +3301,7 @@ msgid "Activate Blog2Social PREMIUM PRO."
|
|
3732 |
msgstr ""
|
3733 |
|
3734 |
#: views/b2s/html/footer.php:78
|
3735 |
-
msgid ""
|
3736 |
-
"With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as "
|
3737 |
-
"well as XING groups."
|
3738 |
msgstr ""
|
3739 |
|
3740 |
#: views/b2s/html/footer.php:81
|
@@ -3766,9 +3333,7 @@ msgid "Select the preferred custom post format for your posts"
|
|
3766 |
msgstr ""
|
3767 |
|
3768 |
#: views/b2s/html/footer.php:107
|
3769 |
-
msgid ""
|
3770 |
-
"Select link post or image post format to define your preferred custom post "
|
3771 |
-
"format for Twitter, LinkedIn, and Facebook."
|
3772 |
msgstr ""
|
3773 |
|
3774 |
#: views/b2s/html/footer.php:116
|
@@ -3776,9 +3341,7 @@ msgid "Photo Post"
|
|
3776 |
msgstr ""
|
3777 |
|
3778 |
#: views/b2s/html/footer.php:124
|
3779 |
-
msgid ""
|
3780 |
-
"For Instagram, you can select \"image with frame\" or \"image cut out\" as "
|
3781 |
-
"your preferred custom post format."
|
3782 |
msgstr ""
|
3783 |
|
3784 |
#: views/b2s/html/footer.php:174
|
@@ -3795,38 +3358,26 @@ msgstr ""
|
|
3795 |
|
3796 |
#: views/b2s/html/footer.php:195
|
3797 |
msgid ""
|
3798 |
-
"Blog2Social provides you with a pre-configured time-scheme to automatically "
|
3799 |
-
"
|
3800 |
-
"network based on recent research. Click Load Best Times in the preview "
|
3801 |
-
"editor to schedule your posts automatically for the best times to post on "
|
3802 |
-
"each social network."
|
3803 |
msgstr ""
|
3804 |
|
3805 |
#: views/b2s/html/footer.php:197
|
3806 |
msgid ""
|
3807 |
-
"You can also configure your own individual time settings for each of your "
|
3808 |
-
"
|
3809 |
-
"followers are online. By configuring an individual cross-posting schedule "
|
3810 |
-
"for all your networks you can set up an effective social media posting plan "
|
3811 |
-
"to reach as many followers as possible."
|
3812 |
msgstr ""
|
3813 |
|
3814 |
#: views/b2s/html/footer.php:199
|
3815 |
-
msgid ""
|
3816 |
-
"Click Load My Time Settings in the preview editor to schedule your posts "
|
3817 |
-
"automatically for your individually chosen best times."
|
3818 |
msgstr ""
|
3819 |
|
3820 |
#: views/b2s/html/footer.php:201
|
3821 |
-
msgid ""
|
3822 |
-
"You can always edit the predefined times in the preview editor for any post "
|
3823 |
-
"or network and save your new settings as default for future use."
|
3824 |
msgstr ""
|
3825 |
|
3826 |
#: views/b2s/html/footer.php:203
|
3827 |
-
msgid ""
|
3828 |
-
"Learn how to set up and apply individual best times to your social media "
|
3829 |
-
"scheduling and auto-poster."
|
3830 |
msgstr ""
|
3831 |
|
3832 |
#: views/b2s/html/footer.php:237
|
@@ -3834,19 +3385,11 @@ msgid "Why Retweets?"
|
|
3834 |
msgstr ""
|
3835 |
|
3836 |
#: views/b2s/html/footer.php:240
|
3837 |
-
msgid ""
|
3838 |
-
"Retweets are the recommended way to reshare the same Tweets across Twitter "
|
3839 |
-
"accounts in accordance with Twitter new rules. You can now schedule multiple "
|
3840 |
-
"Retweets for an original Tweet that you are planning right from your "
|
3841 |
-
"WordPress."
|
3842 |
msgstr ""
|
3843 |
|
3844 |
#: views/b2s/html/footer.php:243
|
3845 |
-
msgid ""
|
3846 |
-
"If Retweets are enabled, every Original-Tweet you schedule in this step will "
|
3847 |
-
"be retweeted by the selected Twitter accounts. If, for example, 3 Original-"
|
3848 |
-
"Tweets are scheduled, every single Tweet will trigger a Retweet for the "
|
3849 |
-
"selected Twitter accounts."
|
3850 |
msgstr ""
|
3851 |
|
3852 |
#: views/b2s/html/footer.php:247
|
@@ -3859,13 +3402,8 @@ msgstr ""
|
|
3859 |
|
3860 |
#: views/b2s/html/footer.php:279
|
3861 |
msgid ""
|
3862 |
-
"You can use Bit.ly links to shorten the URL of your links and to track the "
|
3863 |
-
"
|
3864 |
-
"the Blog2Social settings and link it to your Bit.ly account. Your social "
|
3865 |
-
"media posts will then be shared with your Bit.ly links and you can monitor "
|
3866 |
-
"the success of your posts in your Bit.ly account. Please note: Reddit, "
|
3867 |
-
"Pinterest and Medium do not allow Bit.ly shortlinks. Blog2Social will apply "
|
3868 |
-
"the regular URL for these networks."
|
3869 |
msgstr ""
|
3870 |
|
3871 |
#: views/b2s/html/footer.php:290
|
@@ -3873,493 +3411,421 @@ msgid "Define Twitter post content"
|
|
3873 |
msgstr ""
|
3874 |
|
3875 |
#: views/b2s/html/footer.php:293
|
3876 |
-
msgid ""
|
3877 |
-
"Select the content that will be automatically pre-filled in your Twitter "
|
3878 |
-
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
3879 |
-
"post\", hashtags are automatically added in the drop-down menu."
|
3880 |
msgstr ""
|
3881 |
|
3882 |
#: views/b2s/html/footer.php:349
|
3883 |
-
msgid ""
|
3884 |
-
"Share imported posts with the Auto Poster: Posts that you import via RSS "
|
3885 |
-
"feeds and plugins can be shared automatically on your social media channels."
|
3886 |
msgstr ""
|
3887 |
|
3888 |
#: views/b2s/html/footer.php:350
|
3889 |
#, php-format
|
3890 |
-
msgid ""
|
3891 |
-
|
3892 |
-
|
|
|
|
|
3893 |
msgstr ""
|
3894 |
|
3895 |
#: views/b2s/html/footer.php:389
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3896 |
msgid "Social Meta Tags Settings"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#: views/b2s/html/footer.php:
|
3900 |
msgid "Change image, title and description for your post on this network"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: views/b2s/html/footer.php:
|
3904 |
msgid ""
|
3905 |
-
"Facebook has changed its policy for posting link posts via plugins or web "
|
3906 |
-
"
|
3907 |
-
"
|
3908 |
-
"of your blog post. If you have not defined any OG Meta Tags, Facebook "
|
3909 |
-
"displays a random image from your blog post or blog site. If you have "
|
3910 |
-
"defined an image in your blog post OG Meta Tags that does not meet the image "
|
3911 |
-
"size requirements, Facebook also does not displayed your selected image, but "
|
3912 |
-
"a random image. Please make sure that your image meets the image size "
|
3913 |
-
"requirements for Facebook."
|
3914 |
-
msgstr ""
|
3915 |
-
|
3916 |
-
#: views/b2s/html/footer.php:400
|
3917 |
-
msgid ""
|
3918 |
-
"With Blog2Social you can select a featured image or any image you select to "
|
3919 |
-
"be displayed with your link post. Blog2Social will automatically write the "
|
3920 |
-
"required parameter in the OG Meta Tags of your blog post, so that your "
|
3921 |
-
"selected image will be displayed with your link post. If you don't want "
|
3922 |
-
"Blog2Social to do that, because you have defined your own OG meta tags, "
|
3923 |
-
"please uncheck this box. Please note that you cannot select a specific image "
|
3924 |
-
"for your link post without OG meta tags."
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: views/b2s/html/footer.php:
|
3928 |
msgid ""
|
3929 |
-
"
|
3930 |
-
"
|
3931 |
-
|
3932 |
-
|
3933 |
-
|
3934 |
-
"defined an image in your blog post Twitter Card Meta Tags that does not meet "
|
3935 |
-
"the image size requirements, Twitter displays a white space for the image of "
|
3936 |
-
"your link post. Please make sure that your image meets the image size "
|
3937 |
-
"requirements for Twitter."
|
3938 |
-
msgstr ""
|
3939 |
-
|
3940 |
-
#: views/b2s/html/footer.php:405
|
3941 |
msgid ""
|
3942 |
-
"
|
3943 |
-
"
|
3944 |
-
"
|
3945 |
-
"your selected image will be displayed with your link post. If you don't want "
|
3946 |
-
"Blog2Social to do that, because you have defined your own Twitter Card meta "
|
3947 |
-
"tags, please uncheck this box. Please note that you cannot select a specific "
|
3948 |
-
"image for your link post without Twitter Card meta tags."
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: views/b2s/html/footer.php:
|
3952 |
msgid ""
|
3953 |
-
"
|
3954 |
-
"
|
|
|
|
|
|
|
|
|
3955 |
msgstr ""
|
3956 |
|
3957 |
-
#: views/b2s/html/footer.php:
|
3958 |
msgid "image"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: views/b2s/html/footer.php:
|
3962 |
msgid "title"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
-
#: views/b2s/html/footer.php:
|
3966 |
msgid "description"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: views/b2s/html/footer.php:
|
3970 |
-
msgid ""
|
3971 |
-
"Blog2Social will automatically write these information in the Facebook Open "
|
3972 |
-
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: views/b2s/html/footer.php:
|
3976 |
msgid ""
|
3977 |
-
"Please note: If this post has already been shared or scheduled previously, "
|
3978 |
-
"
|
3979 |
-
"scheduled posts, as Facebook always refers to the current Open Graph meta "
|
3980 |
-
"tags information and automatically updated all existing posts."
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: views/b2s/html/footer.php:
|
3984 |
#, php-format
|
3985 |
-
msgid ""
|
3986 |
-
"Please note: Your changes will have no effect on your social media posts on "
|
3987 |
-
"Facebook, if you have manually unchecked the Meta Tag options for Facebook "
|
3988 |
-
"in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: views/b2s/html/footer.php:
|
3992 |
-
msgid ""
|
3993 |
-
"You can change the image, title and description for your post on Twitter, by "
|
3994 |
-
"editing the following fields for"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: views/b2s/html/footer.php:
|
3998 |
-
msgid ""
|
3999 |
-
"Blog2Social will automatically write these information in the Twitter Card "
|
4000 |
-
"Meta Tags for Image, Title and Description of your blog post."
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: views/b2s/html/footer.php:
|
4004 |
msgid ""
|
4005 |
-
"Please note: If this post was previously shared or scheduled, your current "
|
4006 |
-
"
|
4007 |
-
"as Twitter will always pull the most up-to-date information from the Twitter "
|
4008 |
-
"Card tags. If this post has already been shared, it may take up to 7 days "
|
4009 |
-
"for Twitter to update your current changes."
|
4010 |
msgstr ""
|
4011 |
|
4012 |
-
#: views/b2s/html/footer.php:
|
4013 |
#, php-format
|
4014 |
-
msgid ""
|
4015 |
-
"Please note: Your changes will have no effect on your social media posts on "
|
4016 |
-
"Twitter, if you have manually unchecked the Meta Tag options for Twitter in "
|
4017 |
-
"your <a target=\"_blank\" href=\"%s\">settings</a>"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: views/b2s/html/footer.php:
|
4021 |
msgid "You want to change the image, title and description for your post?"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
-
#: views/b2s/html/footer.php:
|
4025 |
msgid ""
|
4026 |
-
"You are currently sharing this post as image post. Changes to title and "
|
4027 |
-
"description Meta Tag parameters will only be supported for link post formats."
|
4028 |
-
" Please change your post format to link post to make individual changes to "
|
4029 |
-
"the title and description for your post preview."
|
4030 |
msgstr ""
|
4031 |
|
4032 |
-
#: views/b2s/html/footer.php:
|
4033 |
#, php-format
|
4034 |
-
msgid ""
|
4035 |
-
"Your changes will have no effect on your social media posts on Facebook, if "
|
4036 |
-
"you have manually unchecked the Meta Tag options for Facebook in your "
|
4037 |
-
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
-
#: views/b2s/html/footer.php:
|
4041 |
#, php-format
|
4042 |
-
msgid ""
|
4043 |
-
"Your changes will have no effect on your social media posts on Twitter, if "
|
4044 |
-
"you have manually unchecked the Meta Tag options for Twitter in your "
|
4045 |
-
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: views/b2s/html/header.php:
|
4049 |
-
msgid ""
|
4050 |
-
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
4051 |
-
"Our support assists you as of PHP version 5.5.3. See also:"
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
#: views/b2s/html/header.php:
|
4055 |
msgid "Blog2Social Troubleshooting-Tool"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#: views/b2s/html/header.php:
|
4059 |
-
msgid ""
|
4060 |
-
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
4061 |
-
"heartbeats for using Blog2Social! See also:"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: views/b2s/html/header.php:
|
4065 |
msgid "The link you followed has expired. Please refresh your page."
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: views/b2s/html/header.php:
|
4069 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: views/b2s/html/header.php:
|
4073 |
msgid "Autoposter limit has been reached"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: views/b2s/html/header.php:
|
4077 |
msgid "Your daily limit for posting automatically has been reached."
|
4078 |
msgstr ""
|
4079 |
|
4080 |
#: views/b2s/html/header.php:79
|
4081 |
-
msgid "The Autoposter limit for Google My Business has been reached."
|
4082 |
-
msgstr ""
|
4083 |
-
|
4084 |
-
#: views/b2s/html/header.php:79
|
4085 |
-
msgid ""
|
4086 |
-
"Your daily limit of 10 posts per day for auto-posting on Google My Business "
|
4087 |
-
"has been reached."
|
4088 |
-
msgstr ""
|
4089 |
-
|
4090 |
-
#: views/b2s/html/header.php:86
|
4091 |
msgid "You have deleted all meta data for posts and pages successfully."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: views/b2s/html/header.php:
|
4095 |
msgid "The page and post meta data could not be removed."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: views/b2s/html/header.php:
|
4099 |
-
msgid ""
|
4100 |
-
"You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta "
|
4101 |
-
"tags from Yoast SEO."
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: views/b2s/html/header.php:
|
4105 |
-
msgid ""
|
4106 |
-
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
4107 |
-
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
4108 |
-
"please deactivate All in One Seo Social Meta settings. If they are already "
|
4109 |
-
"deactivated, you can ignore this message."
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: views/b2s/html/header.php:
|
4113 |
msgid ""
|
4114 |
-
"Blog2Social has detected another plugin that is setting Social Meta tags for "
|
4115 |
-
"your
|
4116 |
-
"your social media posts shared with Blog2Social, please deactivate the "
|
4117 |
-
"Facebook Open Graph and Twitter Card Tags settings in your other plugins."
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: views/b2s/html/header.php:
|
4121 |
msgid "This entry could not be removed. It's not yours!"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: views/b2s/html/header.php:
|
4125 |
msgid "This entry was removed successfully."
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: views/b2s/html/header.php:
|
4129 |
msgid "This post was edited successfully."
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: views/b2s/html/header.php:
|
4133 |
msgid "Post was scheduled successfully on your blog!"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: views/b2s/html/header.php:
|
4137 |
msgid "Post is published successfully on your blog!"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: views/b2s/html/header.php:
|
4141 |
msgid "Saved as draft"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: views/b2s/html/header.php:
|
4145 |
msgid "Could not save draft"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: views/b2s/html/header.php:
|
4149 |
msgid "Your authorization was successful."
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: views/b2s/html/header.php:
|
4153 |
msgid "Your profile was saved successful."
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: views/b2s/html/header.php:
|
4157 |
msgid "Your profile could not be saved."
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: views/b2s/html/header.php:
|
4161 |
msgid "Your authorization could not be removed."
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#: views/b2s/html/header.php:
|
4165 |
msgid "Your authorization has been removed successfully."
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: views/b2s/html/header.php:
|
4169 |
msgid "Thank you! Your feedback has been received."
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#: views/b2s/html/header.php:
|
4173 |
msgid "Your feedback could not be delivered."
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#: views/b2s/html/header.php:
|
4177 |
msgid "Your settings were successfully saved."
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#: views/b2s/html/header.php:
|
4181 |
msgid "Your settings could not be saved."
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: views/b2s/html/header.php:
|
4185 |
-
msgid ""
|
4186 |
-
|
4187 |
-
|
|
|
|
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: views/b2s/html/header.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4191 |
msgid "RATE IT!"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: views/b2s/html/header.php:
|
4195 |
#, php-format
|
4196 |
-
msgid ""
|
4197 |
-
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
4198 |
-
"awesome! Could you please do us a favor and give it a 5-star rating on "
|
4199 |
-
"WordPress? Just to help us spread the word and boost our motivation."
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: views/b2s/html/header.php:
|
4203 |
msgid "Ok, you deserve it"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
-
#: views/b2s/html/header.php:
|
4207 |
msgid "Nope, maybe later"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: views/b2s/html/header.php:
|
4211 |
msgid "I already did it"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: views/b2s/html/header.php:
|
4215 |
msgid "Start your free 30-day-Premium-trial"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: views/b2s/html/header.php:
|
4219 |
msgid ""
|
4220 |
-
"Check out Blog2Social Premium with more awesome features for scheduling and "
|
4221 |
-
"
|
4222 |
-
"days for free. The trial is free of charge, without any obligations, no "
|
4223 |
-
"automatic subscription. Basic features of the Free Version are free forever."
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: views/b2s/html/header.php:
|
4227 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: views/b2s/html/header.php:
|
4231 |
msgid "Your free Blog2Social Premium trial version is activated for "
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: views/b2s/html/header.php:
|
4235 |
msgid " Days"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: views/b2s/html/header.php:
|
4239 |
msgid " today"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: views/b2s/html/header.php:
|
4243 |
msgid ""
|
4244 |
-
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
4245 |
-
"
|
4246 |
-
"Manager. Select images and post formats (link post or image post) for each "
|
4247 |
-
"social community. Upload and select any image for sharing. Save multiple "
|
4248 |
-
"combinations of networks for different sharing purposes. Start from only $5."
|
4249 |
-
"75 per month to benefit from PREMIUM features."
|
4250 |
msgstr ""
|
4251 |
|
4252 |
-
#: views/b2s/html/header.php:
|
4253 |
msgid "Upgrade to PREMIUM"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
-
#: views/b2s/html/header.php:
|
4257 |
msgid "I need some more time to decide"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
-
#: views/b2s/html/header.php:
|
4261 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
4262 |
msgstr ""
|
4263 |
|
4264 |
-
#: views/b2s/html/header.php:
|
4265 |
msgid "We hope you liked Blog2Social Premium."
|
4266 |
msgstr ""
|
4267 |
|
4268 |
-
#: views/b2s/html/header.php:
|
4269 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
-
#: views/b2s/html/header.php:
|
4273 |
msgid "Did you miss something? Tell us!"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
-
#: views/b2s/html/header.php:
|
4277 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: views/b2s/html/header.php:
|
4281 |
-
msgid ""
|
4282 |
-
"The free trial can not be started. This blog has been already registered for "
|
4283 |
-
"the free trial."
|
4284 |
msgstr ""
|
4285 |
|
4286 |
-
#: views/b2s/html/header.php:
|
4287 |
msgid "Social Media Auto-Posting"
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: views/b2s/html/header.php:
|
4291 |
msgid "Share on multiple accounts per network"
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: views/b2s/html/header.php:
|
4295 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
4296 |
msgstr ""
|
4297 |
|
4298 |
-
#: views/b2s/html/header.php:
|
4299 |
msgid "Reporting with links to all published social media posts"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
-
#: views/b2s/html/header.php:
|
4303 |
-
#: views/prg/html/form.php:100 views/prg/html/form.php:168
|
4304 |
-
#: views/prg/html/form.php:177
|
4305 |
msgid "First Name"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: views/b2s/html/header.php:
|
4309 |
-
#: views/prg/html/form.php:103 views/prg/html/form.php:169
|
4310 |
-
#: views/prg/html/form.php:180
|
4311 |
msgid "Last Name"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: views/b2s/html/header.php:
|
4315 |
#, php-format
|
4316 |
-
msgid ""
|
4317 |
-
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
4318 |
-
"href=\"%s\">Conditions of Use</a>"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#: views/b2s/html/header.php:
|
4322 |
#, php-format
|
4323 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
-
#: views/b2s/html/header.php:
|
4327 |
msgid "No credit card required"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: views/b2s/html/header.php:
|
4331 |
msgid "Get Started"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: views/b2s/html/header.php:
|
4335 |
msgid "The license has been successfully activated."
|
4336 |
msgstr ""
|
4337 |
|
4338 |
-
#: views/b2s/html/header.php:
|
4339 |
msgid "Your entered License Key is invalid. Please contact support!"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: views/b2s/html/header.php:
|
4343 |
msgid "Your license key has reached the maximum number of users."
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: views/b2s/html/header.php:
|
4347 |
msgid "Something went wrong on our side. Please contact support!"
|
4348 |
msgstr ""
|
4349 |
|
4350 |
-
#: views/b2s/html/header.php:
|
4351 |
msgid "OK"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
-
#: views/b2s/html/header.php:
|
4355 |
msgid "We updated our Privacy Policy"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: views/b2s/html/header.php:
|
4359 |
msgid "Blog2Social is a service of Adenion GmbH"
|
4360 |
msgstr ""
|
4361 |
|
4362 |
-
#: views/b2s/html/header.php:
|
4363 |
msgid "I agree to the Adenion Privacy Policy"
|
4364 |
msgstr ""
|
4365 |
|
@@ -4376,40 +3842,38 @@ msgid "Website & Blog Content"
|
|
4376 |
msgstr ""
|
4377 |
|
4378 |
#: views/b2s/html/sidebar.php:69
|
4379 |
-
msgid "Share
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: views/b2s/html/sidebar.php:
|
4383 |
msgid "Social Media Post"
|
4384 |
msgstr ""
|
4385 |
|
4386 |
-
#: views/b2s/html/sidebar.php:
|
4387 |
msgid "Create Post"
|
4388 |
msgstr ""
|
4389 |
|
4390 |
-
#: views/b2s/html/sidebar.php:
|
4391 |
msgid "Content Library"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: views/b2s/html/sidebar.php:
|
4395 |
msgid "all Posts"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: views/b2s/html/sidebar.php:
|
4399 |
msgid "Upgrade License"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: views/b2s/html/sidebar.php:
|
4403 |
msgid "Plans & Prices"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: views/b2s/html/sidebar.php:
|
4407 |
-
msgid ""
|
4408 |
-
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4409 |
-
"anything that does not work for you, please contact us!"
|
4410 |
msgstr ""
|
4411 |
|
4412 |
-
#: views/b2s/html/sidebar.php:
|
4413 |
msgid "Blog2Social Blog News"
|
4414 |
msgstr ""
|
4415 |
|
@@ -4418,9 +3882,7 @@ msgid "Do you want to delete your scheduled posts?"
|
|
4418 |
msgstr ""
|
4419 |
|
4420 |
#: views/b2s/partials/plugin-deactivate-modal.php:13
|
4421 |
-
msgid ""
|
4422 |
-
"Do you want Blog2Social to delete all your scheduled social media posts? "
|
4423 |
-
"Your scheduled posts will no longer be sent to your social networks."
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#: views/b2s/partials/plugin-deactivate-modal.php:14
|
@@ -4527,23 +3989,19 @@ msgstr ""
|
|
4527 |
msgid "Mr."
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: views/prg/html/form.php:107 views/prg/html/form.php:110
|
4531 |
-
#: views/prg/html/form.php:184 views/prg/html/form.php:187
|
4532 |
msgid "Street"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#: views/prg/html/form.php:108 views/prg/html/form.php:113
|
4536 |
-
#: views/prg/html/form.php:185 views/prg/html/form.php:190
|
4537 |
msgid "Number"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: views/prg/html/form.php:117 views/prg/html/form.php:120
|
4541 |
-
#: views/prg/html/form.php:194 views/prg/html/form.php:197
|
4542 |
msgid "Zip Code"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: views/prg/html/form.php:118 views/prg/html/form.php:123
|
4546 |
-
#: views/prg/html/form.php:195 views/prg/html/form.php:200
|
4547 |
msgid "City"
|
4548 |
msgstr ""
|
4549 |
|
@@ -4551,13 +4009,11 @@ msgstr ""
|
|
4551 |
msgid "Country"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: views/prg/html/form.php:135 views/prg/html/form.php:137
|
4555 |
-
#: views/prg/html/form.php:212 views/prg/html/form.php:214
|
4556 |
msgid "Phone"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#: views/prg/html/form.php:147 views/prg/html/form.php:149
|
4560 |
-
#: views/prg/html/form.php:224 views/prg/html/form.php:226
|
4561 |
msgid "Website"
|
4562 |
msgstr ""
|
4563 |
|
@@ -4582,9 +4038,7 @@ msgid "Your message has been saved by PR-Gateway as a draft!"
|
|
4582 |
msgstr ""
|
4583 |
|
4584 |
#: views/prg/html/header.php:28
|
4585 |
-
msgid ""
|
4586 |
-
"Unfortunately, your request cannot be processed by Blog2Social. Please try "
|
4587 |
-
"again!"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
#: views/prg/html/header.php:34
|
@@ -4593,13 +4047,8 @@ msgstr ""
|
|
4593 |
|
4594 |
#: views/prg/html/header.php:53
|
4595 |
msgid ""
|
4596 |
-
"PR-Gateway offers a paid online distribution service for submitting press "
|
4597 |
-
"
|
4598 |
-
"special interest websites and social news sites. If your blog posts provide "
|
4599 |
-
"trade or industry information or expert articles (no advertising), you may "
|
4600 |
-
"submit them to PR-Gateway to turn them into valid online press releases or "
|
4601 |
-
"online articles and select a specific choice of websites and services to "
|
4602 |
-
"publish your post."
|
4603 |
msgstr ""
|
4604 |
|
4605 |
#: views/prg/html/header.php:54
|
@@ -4610,16 +4059,15 @@ msgstr ""
|
|
4610 |
msgid "Logout"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
-
#: includes/B2S/Support/Check/System.php:
|
4614 |
msgid "or higher"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: includes/B2S/Support/Check/System.php:
|
4618 |
-
#: includes/B2S/Support/Check/System.php:83
|
4619 |
msgid "resolve conflict"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
-
#: includes/B2S/Support/Check/System.php:
|
4623 |
msgid "Plugin Warnings:"
|
4624 |
msgstr ""
|
4625 |
|
@@ -4628,9 +4076,7 @@ msgid "Blog2Social: Social Media Auto Post & Scheduler"
|
|
4628 |
msgstr ""
|
4629 |
|
4630 |
#. Description of the plugin
|
4631 |
-
msgid ""
|
4632 |
-
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
4633 |
-
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
#. URI of the plugin
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2020-03-09 12:59+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: includes/Loader.php:78
|
35 |
msgid "Bitly"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/Loader.php:78
|
39 |
msgid "Rebrandly"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: includes/Loader.php:78
|
43 |
+
msgid "Sniply"
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: includes/Loader.php:389
|
47 |
msgid "Blog2Social: Autoposter"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/Loader.php:390
|
51 |
msgid "Blog2Social: Social Media Content Calendar"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/Loader.php:740
|
55 |
msgid "This post will be shared into your social media from"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/Loader.php:740 includes/Loader.php:742
|
59 |
msgid "show details"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/Loader.php:742
|
63 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/Loader.php:746
|
67 |
msgid ""
|
68 |
+
"Please make sure that your post, page or custom post type is published or scheduled to be published on this blog before you try to post it with Blog2Social. Published WP posts will be shared with your chosen permalink, scheduled WP posts will be shared with the posting id "
|
69 |
+
"link."
|
|
|
|
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/Loader.php:749 includes/B2S/PostBox.php:134 includes/B2S/AutoPost/Item.php:51
|
73 |
+
msgid "There are no social network accounts assigned to your selected network collection. Please assign at least one social network account or select another network collection."
|
|
|
|
|
|
|
|
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/Loader.php:762 views/b2s/html/sidebar.php:45 views/b2s/html/sidebar.ship.php:44
|
|
|
77 |
msgid "Upgrade to Premium"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: includes/Loader.php:765 includes/Loader.php:899 includes/Loader.php:899 includes/Loader.php:973 includes/B2S/RePost/Item.php:25 views/b2s/html/sidebar.php:137
|
81 |
+
msgid "Settings"
|
82 |
+
msgstr ""
|
83 |
+
|
84 |
+
#: includes/Loader.php:765
|
85 |
+
msgid "Support"
|
86 |
+
msgstr ""
|
87 |
+
|
88 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:19
|
89 |
msgid "Notifications"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:17 views/b2s/html/sidebar.php:125
|
|
|
93 |
msgid "Shared Posts"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:14 views/b2s/html/sidebar.php:119
|
|
|
97 |
msgid "Instant Sharing"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:10 views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:94 views/b2s/html/sidebar.php:116
|
|
|
|
|
101 |
msgid "Drafts"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
|
|
105 |
msgid "Scheduled Posts"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: includes/Loader.php:815
|
109 |
msgid "Social Media Post Drafts"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:9 views/b2s/html/sidebar.php:113
|
|
|
113 |
msgid "Favorites"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: includes/Loader.php:815 views/b2s/settings.php:35 views/b2s/html/sidebar.php:75
|
117 |
+
msgid "Auto-Post"
|
118 |
+
msgstr ""
|
119 |
+
|
120 |
+
#: includes/Loader.php:815 views/b2s/html/post.navbar.php:18 views/b2s/html/sidebar.php:72
|
121 |
+
msgid "Re-Share Posts"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/Loader.php:815 views/b2s/curation.php:47 views/b2s/support.php:19 views/b2s/support.php:22
|
125 |
+
msgid "NEW"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/Loader.php:816 includes/B2S/AutoPost/Item.php:199 includes/B2S/Network/Item.php:147 includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:576 includes/B2S/Ship/Portale.php:38
|
129 |
+
#: includes/B2S/Ship/Portale.php:40 includes/B2S/Ship/Portale.php:42
|
130 |
msgid "Profile"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/Loader.php:816 includes/B2S/AutoPost/Item.php:199 includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:284 includes/B2S/Network/Item.php:578 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
|
|
|
|
|
|
134 |
msgid "Page"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: includes/Loader.php:816 includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:351 includes/B2S/Network/Item.php:581 includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
|
|
|
|
138 |
msgid "Group"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/Loader.php:817 views/prg/html/form.php:74
|
142 |
msgid "Company"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: includes/Loader.php:817
|
146 |
msgid "Business"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: includes/Loader.php:818
|
150 |
#, php-format
|
151 |
+
msgid "The network could not publish your post. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: includes/Loader.php:819
|
155 |
+
msgid "Your authorization has expired. Please reconnect your account in the Blog2Social network settings."
|
|
|
|
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: includes/Loader.php:820
|
159 |
msgid "The network has marked the post as spam or abusive."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/Loader.php:821
|
163 |
+
msgid "We don't have the permission to publish your post. Please check your authorization."
|
|
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: includes/Loader.php:822
|
167 |
#, php-format
|
168 |
+
msgid "Your authorization is interrupted. Please check your authorization. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: includes/Loader.php:823
|
172 |
msgid "Your daily limit has been reached."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/Loader.php:824
|
176 |
+
msgid "Your post could not be posted, because your image is not available or the image source does not allow to publish"
|
|
|
|
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: includes/Loader.php:825
|
180 |
#, php-format
|
181 |
+
msgid "The network has blocked your account. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/Loader.php:826
|
185 |
#, php-format
|
186 |
+
msgid "The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/Loader.php:827
|
190 |
+
msgid "Your daily limit for this network has been reached. Please try again later."
|
|
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/Loader.php:828
|
194 |
#, php-format
|
195 |
+
msgid "The network can not publish special characters such as Emoji. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/Loader.php:829
|
199 |
msgid "Your post is a duplicate."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/Loader.php:830
|
203 |
msgid "The network requires a public url."
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/Loader.php:831
|
207 |
+
msgid "Your blog post was not available for the network at the time of publication."
|
|
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/Loader.php:832
|
211 |
msgid "You have already retweeted this post."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/Loader.php:833
|
215 |
+
msgid "This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts."
|
|
|
|
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/Loader.php:834
|
219 |
msgid "An image is required to post on this social network."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: includes/Loader.php:835
|
223 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/Loader.php:836
|
227 |
+
msgid "Your post could not be posted, because your image can not be processed by the network."
|
|
|
|
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/Loader.php:837
|
231 |
#, php-format
|
232 |
+
msgid "Instagram published your post without text. Please see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
|
|
|
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/Loader.php:838
|
236 |
msgid "Your group can not be found by the network."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: includes/Loader.php:894 includes/Loader.php:939
|
240 |
msgid "Dashboard"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/Loader.php:895
|
244 |
msgid "Share Website & Blog Content"
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/Loader.php:895 includes/Loader.php:946
|
248 |
msgid "Site & Blog Content"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/Loader.php:896
|
252 |
msgid "Create Social Media Posts"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/Loader.php:896 includes/Loader.php:953
|
256 |
msgid "Social Media Posts"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: includes/Loader.php:897 includes/Loader.php:960 views/b2s/dashboard.php:30 views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:128
|
|
|
260 |
msgid "Calendar"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/Loader.php:898 includes/Loader.php:967
|
264 |
msgid "Networks"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/Loader.php:901 includes/Loader.php:981
|
|
|
|
|
|
|
|
|
|
|
268 |
msgid "PR-Service"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/Loader.php:903 includes/Loader.php:989 views/b2s/html/header.php:33 views/b2s/html/sidebar.php:140 views/b2s/html/sidebar.ship.php:66
|
|
|
272 |
msgid "Help & Support"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/Loader.php:905
|
276 |
msgid "Premium"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/Loader.php:905 includes/Loader.php:997
|
280 |
msgid "PREMIUM"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/Loader.php:930 views/b2s/html/sidebar.php:25 views/b2s/html/sidebar.ship.php:24
|
|
|
284 |
msgid "Blog2Social"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/Loader.php:1492
|
288 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/Loader.php:1492 includes/System.php:32 includes/System.php:38
|
|
|
292 |
#, php-format
|
293 |
+
msgid "<a href=\"%s\" target=\"_blank\">Please find more Information and help in our FAQ</a>"
|
|
|
|
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/Loader.php:1492 includes/Loader.php:1513 includes/Loader.php:1763
|
297 |
msgid "or"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/Loader.php:1492 includes/Loader.php:1513 includes/Loader.php:1763
|
301 |
msgid "back to install plugins"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/Notice.php:17 views/b2s/html/sidebar.php:164
|
305 |
msgid "Rate it!"
|
306 |
msgstr ""
|
307 |
|
308 |
#: includes/Notice.php:18
|
309 |
+
msgid "If you like Blog2Social, please give us a 5 star rating. I there is anything that does not work for you, please contact us!!"
|
|
|
|
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/Notice.php:19 views/b2s/html/sidebar.php:167
|
313 |
msgid "RATE BLOG2SOCIAL"
|
314 |
msgstr ""
|
315 |
|
321 |
msgid "Could not hide notice. Please refresh the page and retry."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/System.php:29
|
325 |
+
msgid "Blog2Social used cURL. cURL is not installed in your PHP installation on your server. Install cURL and activate Blog2Social again."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: includes/System.php:35
|
329 |
msgid ""
|
330 |
+
"Blog2Social does not seem to have permission to write in your WordPress database. Please assign Blog2Social the permission to write in the WordPress database. Please also make sure that your MySQL server runs on v5.5.3 or higher, or ask your server administrator to do it for "
|
331 |
+
"you."
|
|
|
|
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/Tools.php:283 views/b2s/html/sidebar.php:30 views/b2s/html/sidebar.ship.php:29
|
|
|
335 |
msgid "License"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/Tools.php:298
|
339 |
msgid "Greece"
|
340 |
msgstr ""
|
341 |
|
342 |
+
#: includes/Tools.php:299
|
343 |
msgid "India"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/Tools.php:300
|
347 |
msgid "United States of America"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: includes/Tools.php:301
|
351 |
msgid "Ireland"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/Tools.php:302
|
355 |
msgid "Italy"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/Tools.php:303
|
359 |
msgid "Switzerland"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: includes/Tools.php:304
|
363 |
msgid "Czechoslovakia"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: includes/Tools.php:305
|
367 |
msgid "Indonesia"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: includes/Tools.php:306
|
371 |
msgid "Spain"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: includes/Tools.php:307
|
375 |
msgid "Canada"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: includes/Tools.php:308
|
379 |
msgid "Great Britain"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: includes/Tools.php:309
|
383 |
msgid "Russia"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: includes/Tools.php:310
|
387 |
msgid "Netherlands"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: includes/Tools.php:311 includes/Tools.php:325
|
391 |
msgid "Portugal"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: includes/Tools.php:312
|
395 |
msgid "Norway"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: includes/Tools.php:313
|
399 |
msgid "Turkey"
|
400 |
msgstr ""
|
401 |
|
402 |
+
#: includes/Tools.php:314
|
403 |
msgid "Australia"
|
404 |
msgstr ""
|
405 |
|
406 |
+
#: includes/Tools.php:315
|
407 |
msgid "Austria"
|
408 |
msgstr ""
|
409 |
|
410 |
+
#: includes/Tools.php:316
|
411 |
msgid "Poland"
|
412 |
msgstr ""
|
413 |
|
414 |
+
#: includes/Tools.php:317
|
415 |
msgid "France"
|
416 |
msgstr ""
|
417 |
|
418 |
+
#: includes/Tools.php:318
|
419 |
msgid "Romania"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/Tools.php:319
|
423 |
msgid "Germany"
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/Tools.php:320
|
427 |
msgid "Denmark"
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/Tools.php:321
|
431 |
msgid "New Zealand"
|
432 |
msgstr ""
|
433 |
|
434 |
+
#: includes/Tools.php:322
|
435 |
msgid "Finland"
|
436 |
msgstr ""
|
437 |
|
438 |
+
#: includes/Tools.php:323
|
439 |
msgid "Hungary"
|
440 |
msgstr ""
|
441 |
|
442 |
+
#: includes/Tools.php:324
|
443 |
msgid "Japan"
|
444 |
msgstr ""
|
445 |
|
446 |
+
#: includes/Tools.php:326
|
447 |
msgid "Argentina"
|
448 |
msgstr ""
|
449 |
|
450 |
+
#: includes/Tools.php:327
|
451 |
msgid "Korea"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/Tools.php:328
|
455 |
msgid "Sweden"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: includes/Tools.php:329
|
459 |
msgid "Mexico"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: includes/Tools.php:330
|
463 |
msgid "Slovakia"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: includes/Tools.php:331
|
467 |
msgid "Chile"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: includes/Tools.php:332
|
471 |
msgid "Colombia"
|
472 |
msgstr ""
|
473 |
|
474 |
+
#: includes/Tools.php:333
|
475 |
msgid "South Africa"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: includes/Tools.php:334
|
479 |
msgid "Philippines"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: includes/Tools.php:337
|
483 |
msgid "is determined automatically"
|
484 |
msgstr ""
|
485 |
|
486 |
+
#: includes/Tools.php:344
|
487 |
msgid "Search"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: includes/Tools.php:345
|
491 |
msgid "Recently Used"
|
492 |
msgstr ""
|
493 |
|
494 |
+
#: includes/Tools.php:346
|
495 |
msgid "Smileys & People"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: includes/Tools.php:347
|
499 |
msgid "Animals & Nature"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: includes/Tools.php:348
|
503 |
msgid "Food & Drink"
|
504 |
msgstr ""
|
505 |
|
506 |
+
#: includes/Tools.php:349
|
507 |
msgid "Activities"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/Tools.php:350
|
511 |
msgid "Travel & Places"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/Tools.php:351
|
515 |
msgid "Objects"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: includes/Tools.php:352
|
519 |
msgid "Symbols"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: includes/Tools.php:353
|
523 |
msgid "Flags"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: includes/Tools.php:354
|
527 |
msgid "No emojis found"
|
528 |
msgstr ""
|
529 |
|
532 |
msgstr ""
|
533 |
|
534 |
#: views/notice.php:14
|
535 |
+
msgid "The connection to your server has been interrupted. Please make sure that your blog is reachable. If your server does not respond or is too slow, Blog2Social cannot connect to the internet. Try again later or contact your webmaster, if this error message persists."
|
|
|
|
|
|
|
|
|
536 |
msgstr ""
|
537 |
|
538 |
#: views/notice.php:17
|
540 |
msgstr ""
|
541 |
|
542 |
#: views/notice.php:19
|
543 |
+
msgid "<b> A new version of Blog2Social is available. </b> Update now <br> Blog2Social to continue to use the latest version of the plugin."
|
|
|
|
|
544 |
msgstr ""
|
545 |
|
546 |
#: views/notice.php:23
|
559 |
msgid "Please contact our support!"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/Ajax/Post.php:1720 views/b2s/network.php:7 includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282 includes/B2S/Network/Item.php:349 includes/B2S/Network/Item.php:475
|
|
|
|
|
563 |
msgid "Unknown username"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: includes/Ajax/Post.php:1721 includes/B2S/Network/Item.php:476 includes/B2S/Post/Item.php:491 includes/B2S/Post/Item.php:511 includes/B2S/Post/Item.php:803 includes/B2S/Post/Item.php:861 includes/B2S/Settings/Item.php:92 includes/B2S/Ship/Item.php:987
|
567 |
+
#: includes/B2S/Ship/Item.php:1137
|
|
|
|
|
|
|
568 |
msgid "delete"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: includes/B2S/PostBox.php:29
|
572 |
msgid "Please see FAQ"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: includes/B2S/PostBox.php:131 views/b2s/ship.php:660 views/b2s/html/header.php:53
|
|
|
576 |
msgid "The connection to the server failed. Try again!"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: includes/B2S/PostBox.php:132
|
580 |
+
msgid "WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social!"
|
|
|
|
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: includes/B2S/PostBox.php:133 includes/B2S/PostBox.php:135
|
584 |
+
msgid "Your post is still on draft or pending status. Please make sure that your post is published or scheduled to be published on this blog. You can then auto-post or schedule and customize your social media posts with Blog2Social."
|
|
|
|
|
|
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: includes/B2S/PostBox.php:134 includes/B2S/PostBox.php:233 includes/B2S/AutoPost/Item.php:51 includes/B2S/AutoPost/Item.php:140 includes/B2S/RePost/Item.php:149
|
|
|
588 |
msgid "Network settings"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: includes/B2S/PostBox.php:136 views/b2s/ship.php:198
|
592 |
+
msgid "Notice: Please make sure, that your website address is reachable. The Social Networks do not allow postings from local installations."
|
|
|
|
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/B2S/PostBox.php:153
|
596 |
msgid "Custom Sharing & Scheduling"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: includes/B2S/PostBox.php:153 includes/B2S/PostBox.php:156 views/b2s/network.php:42 views/b2s/ship.php:76 views/b2s/ship.php:166 views/b2s/ship.php:258 includes/B2S/AutoPost/Item.php:154 includes/B2S/Network/Item.php:172 includes/B2S/RePost/Item.php:163
|
600 |
+
#: includes/B2S/Ship/Item.php:951
|
|
|
|
|
601 |
msgid "Info"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: includes/B2S/PostBox.php:154
|
605 |
msgid "Customize & Schedule Social Media Posts"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: includes/B2S/PostBox.php:156
|
609 |
msgid "The Autoposter is"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: includes/B2S/PostBox.php:156
|
613 |
msgid "activated"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: includes/B2S/PostBox.php:156
|
617 |
msgid "deactivated"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: includes/B2S/PostBox.php:158
|
621 |
msgid "Shared"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: includes/B2S/PostBox.php:158
|
625 |
msgid "times"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: includes/B2S/PostBox.php:159
|
629 |
msgid "Last shared"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: includes/B2S/PostBox.php:163
|
633 |
msgid "Advanced settings"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: includes/B2S/PostBox.php:166
|
637 |
msgid "enable Auto-Posting"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: includes/B2S/PostBox.php:168 includes/B2S/Ship/Item.php:378
|
641 |
msgid "show calendar"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: includes/B2S/PostBox.php:183
|
645 |
msgid "Blog2Social: Customize & Schedule Social Media Posts"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: includes/B2S/PostBox.php:186
|
649 |
msgid ""
|
650 |
+
"Customize and schedule your social media posts on the one page preview for all your selected networks: tailor your posts with individual comments, #hashtags or @handles and schedule your posts for the best times to post, for multiple times or re-share recurrently for more "
|
651 |
+
"visibility and engagement with your community."
|
|
|
|
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: includes/B2S/PostBox.php:195 views/b2s/html/footer.php:305 views/b2s/html/footer.php:345
|
|
|
655 |
msgid "Blog2Social: Social Media Auto-Posting"
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: includes/B2S/PostBox.php:199 views/b2s/html/footer.php:309
|
659 |
+
msgid "Share your blog posts with the Auto Poster: Your blog posts will be shared automatically on your social media channels as soon as you publish or update a new post. You can also choose to autopost scheduled blog posts as soon as they are published."
|
|
|
|
|
|
|
|
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: includes/B2S/PostBox.php:200 views/b2s/html/footer.php:310
|
663 |
#, php-format
|
664 |
+
msgid "<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your blog posts</a>"
|
|
|
|
|
665 |
msgstr ""
|
666 |
|
667 |
+
#: includes/B2S/PostBox.php:204 views/b2s/html/footer.php:316 views/b2s/html/footer.php:355 views/b2s/html/footer.php:396
|
|
|
668 |
msgid "You want to auto-post your blog post?"
|
669 |
msgstr ""
|
670 |
|
671 |
+
#: includes/B2S/PostBox.php:205 views/b2s/curation.php:171 views/b2s/curation.php:210 views/b2s/post.calendar.php:281 views/b2s/ship.php:309 views/b2s/ship.php:369 views/b2s/ship.php:415 views/b2s/html/footer.php:26 views/b2s/html/footer.php:144 views/b2s/html/footer.php:208
|
672 |
+
#: views/b2s/html/footer.php:248 views/b2s/html/footer.php:317 views/b2s/html/footer.php:356 views/b2s/html/footer.php:397 views/b2s/html/footer.php:483
|
|
|
|
|
|
|
|
|
|
|
673 |
msgid "With Blog2Social Premium you can:"
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: includes/B2S/PostBox.php:208 views/b2s/curation.php:174 views/b2s/curation.php:213 views/b2s/post.calendar.php:284 views/b2s/ship.php:312 views/b2s/ship.php:372 views/b2s/ship.php:418 views/b2s/html/footer.php:29 views/b2s/html/footer.php:147 views/b2s/html/footer.php:211
|
677 |
+
#: views/b2s/html/footer.php:251 views/b2s/html/footer.php:320 views/b2s/html/footer.php:359 views/b2s/html/footer.php:400 views/b2s/html/footer.php:486 views/b2s/html/header.php:330
|
|
|
|
|
|
|
|
|
|
|
678 |
msgid "Post on pages and groups"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: includes/B2S/PostBox.php:209 views/b2s/curation.php:175 views/b2s/curation.php:214 views/b2s/post.calendar.php:285 views/b2s/ship.php:313 views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:30 views/b2s/html/footer.php:148 views/b2s/html/footer.php:212
|
682 |
+
#: views/b2s/html/footer.php:252 views/b2s/html/footer.php:321 views/b2s/html/footer.php:360 views/b2s/html/footer.php:401 views/b2s/html/footer.php:487
|
|
|
|
|
|
|
|
|
|
|
683 |
msgid "Share on multiple profiles, pages and groups"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: includes/B2S/PostBox.php:210 views/b2s/curation.php:176 views/b2s/curation.php:215 views/b2s/post.calendar.php:286 views/b2s/ship.php:314 views/b2s/ship.php:374 views/b2s/ship.php:420 views/b2s/html/footer.php:31 views/b2s/html/footer.php:65 views/b2s/html/footer.php:149
|
687 |
+
#: views/b2s/html/footer.php:213 views/b2s/html/footer.php:253 views/b2s/html/footer.php:322 views/b2s/html/footer.php:361 views/b2s/html/footer.php:402 views/b2s/html/footer.php:488
|
|
|
|
|
|
|
|
|
|
|
688 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: includes/B2S/PostBox.php:211 views/b2s/curation.php:177 views/b2s/curation.php:216 views/b2s/post.calendar.php:287 views/b2s/ship.php:315 views/b2s/ship.php:375 views/b2s/ship.php:421 views/b2s/html/footer.php:32 views/b2s/html/footer.php:150 views/b2s/html/footer.php:214
|
692 |
+
#: views/b2s/html/footer.php:254 views/b2s/html/footer.php:323 views/b2s/html/footer.php:362 views/b2s/html/footer.php:403 views/b2s/html/footer.php:489
|
|
|
|
|
|
|
|
|
|
|
693 |
msgid "Schedule your posts at the best times on each network"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: includes/B2S/PostBox.php:212 views/b2s/curation.php:178 views/b2s/curation.php:217 views/b2s/post.calendar.php:288 views/b2s/ship.php:316 views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:33 views/b2s/html/footer.php:151 views/b2s/html/footer.php:215
|
697 |
+
#: views/b2s/html/footer.php:255 views/b2s/html/footer.php:324 views/b2s/html/footer.php:363 views/b2s/html/footer.php:404 views/b2s/html/footer.php:490
|
698 |
+
msgid "Best Time Manager: use predefined best time scheduler to auto-schedule your social media posts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: includes/B2S/PostBox.php:213 views/b2s/curation.php:179 views/b2s/curation.php:218 views/b2s/post.calendar.php:289 views/b2s/ship.php:317 views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:34 views/b2s/html/footer.php:152 views/b2s/html/footer.php:216
|
702 |
+
#: views/b2s/html/footer.php:256 views/b2s/html/footer.php:325 views/b2s/html/footer.php:364 views/b2s/html/footer.php:405 views/b2s/html/footer.php:491
|
|
|
|
|
|
|
|
|
|
|
703 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: includes/B2S/PostBox.php:214 views/b2s/curation.php:180 views/b2s/curation.php:219 views/b2s/post.calendar.php:290 views/b2s/ship.php:318 views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:35 views/b2s/html/footer.php:153 views/b2s/html/footer.php:217
|
707 |
+
#: views/b2s/html/footer.php:257 views/b2s/html/footer.php:326 views/b2s/html/footer.php:365 views/b2s/html/footer.php:406 views/b2s/html/footer.php:492
|
|
|
|
|
|
|
|
|
|
|
708 |
msgid "Schedule and re-share old posts"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: includes/B2S/PostBox.php:215 views/b2s/curation.php:181 views/b2s/curation.php:220 views/b2s/post.calendar.php:291 views/b2s/ship.php:319 views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:36 views/b2s/html/footer.php:67 views/b2s/html/footer.php:154
|
712 |
+
#: views/b2s/html/footer.php:218 views/b2s/html/footer.php:258 views/b2s/html/footer.php:327 views/b2s/html/footer.php:366 views/b2s/html/footer.php:407 views/b2s/html/footer.php:493
|
|
|
|
|
|
|
|
|
|
|
713 |
msgid "Select link format or image format for your posts"
|
714 |
msgstr ""
|
715 |
|
716 |
+
#: includes/B2S/PostBox.php:216 views/b2s/curation.php:182 views/b2s/curation.php:221 views/b2s/post.calendar.php:292 views/b2s/ship.php:320 views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:37 views/b2s/html/footer.php:68 views/b2s/html/footer.php:155
|
717 |
+
#: views/b2s/html/footer.php:219 views/b2s/html/footer.php:259 views/b2s/html/footer.php:328 views/b2s/html/footer.php:367 views/b2s/html/footer.php:408 views/b2s/html/footer.php:494
|
|
|
|
|
|
|
|
|
|
|
718 |
msgid "Select individual images per post"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:183 views/b2s/curation.php:222 views/b2s/post.calendar.php:293 views/b2s/ship.php:321 views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:38 views/b2s/html/footer.php:156 views/b2s/html/footer.php:220
|
722 |
+
#: views/b2s/html/footer.php:260 views/b2s/html/footer.php:329 views/b2s/html/footer.php:368 views/b2s/html/footer.php:409 views/b2s/html/footer.php:495
|
723 |
+
msgid "Reporting & calendar: keep track of your published and scheduled social media posts"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: includes/B2S/PostBox.php:219 views/b2s/curation.php:185 views/b2s/curation.php:224 views/b2s/post.calendar.php:295 views/b2s/ship.php:323 views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:40 views/b2s/html/footer.php:158 views/b2s/html/footer.php:222
|
727 |
+
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:331 views/b2s/html/footer.php:370 views/b2s/html/footer.php:411 views/b2s/html/footer.php:497
|
|
|
|
|
|
|
|
|
|
|
728 |
msgid "Upgrade to SMART and above"
|
729 |
msgstr ""
|
730 |
|
731 |
+
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:187 views/b2s/curation.php:226 views/b2s/post.calendar.php:297 views/b2s/ship.php:325 views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:42 views/b2s/html/footer.php:73 views/b2s/html/footer.php:91
|
732 |
+
#: views/b2s/html/footer.php:160 views/b2s/html/footer.php:224 views/b2s/html/footer.php:264 views/b2s/html/footer.php:333 views/b2s/html/footer.php:372 views/b2s/html/footer.php:413 views/b2s/html/footer.php:500
|
|
|
|
|
|
|
|
|
|
|
|
|
733 |
#, php-format
|
734 |
+
msgid "or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)"
|
|
|
|
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: includes/B2S/PostBox.php:233 includes/B2S/AutoPost/Item.php:133 includes/B2S/Curation/View.php:73 includes/B2S/RePost/Item.php:142
|
|
|
738 |
msgid "Select network collection:"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: includes/B2S/PostBox.php:244 views/b2s/autopost.php:73 views/b2s/repost.php:167 includes/B2S/AutoPost/Item.php:144 includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:153
|
|
|
742 |
msgid "Select Twitter profile:"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/B2S/PostBox.php:280
|
746 |
msgid "When do you want to share your post on social media?"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/B2S/PostBox.php:282
|
750 |
msgid "immediately after publishing"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: includes/B2S/PostBox.php:283
|
754 |
msgid "at best times"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: views/b2s/autopost.php:18 views/b2s/settings.php:18 includes/B2S/Ship/Image.php:28
|
758 |
+
msgid "You need a higher user role to upload an image on this blog. Please contact your administrator."
|
759 |
+
msgstr ""
|
760 |
+
|
761 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:27
|
762 |
+
msgid "save..."
|
763 |
+
msgstr ""
|
764 |
+
|
765 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:73 includes/B2S/Ship/Image.php:91
|
766 |
+
msgid "Select or upload an image from media gallery"
|
767 |
+
msgstr ""
|
768 |
+
|
769 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:74 includes/B2S/Ship/Image.php:92
|
770 |
+
msgid "Use image"
|
771 |
+
msgstr ""
|
772 |
+
|
773 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:140 includes/B2S/Settings/Item.php:55
|
774 |
+
msgid "Personal Time Zone"
|
775 |
+
msgstr ""
|
776 |
+
|
777 |
+
#: views/b2s/autopost.php:62 views/b2s/settings.php:143
|
778 |
msgid ""
|
779 |
+
"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 "
|
780 |
+
"time zone from the drop-down menu."
|
781 |
+
msgstr ""
|
782 |
+
|
783 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:170
|
784 |
+
msgid "To comply with the Twitter TOS and to avoid duplicate posts, autoposts will be sent to your primary Twitter profile."
|
785 |
+
msgstr ""
|
786 |
+
|
787 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:170 includes/B2S/AutoPost/Item.php:105
|
788 |
+
msgid "More information"
|
789 |
+
msgstr ""
|
790 |
+
|
791 |
+
#: views/b2s/curation.draft.php:17
|
792 |
+
msgid "Save links as drafts while browsing and share or schedule them whenever you want."
|
793 |
msgstr ""
|
794 |
|
795 |
#: views/b2s/curation.draft.php:17
|
796 |
msgid "Get the Blog2Social Browser Extension"
|
797 |
msgstr ""
|
798 |
|
799 |
+
#: views/b2s/curation.draft.php:47 views/b2s/network.php:61 views/b2s/network.php:149 views/b2s/network.php:224 views/b2s/network.php:327 views/b2s/network.php:402 views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60 views/b2s/post.calendar.php:243
|
800 |
+
#: views/b2s/post.draft.php:42 views/b2s/post.favorites.php:41 views/b2s/post.notice.php:45 views/b2s/post.php:41 views/b2s/post.publish.php:45 views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188 views/b2s/ship.php:570 views/b2s/ship.php:658
|
801 |
+
#: views/b2s/support.php:204 views/prg/html/header.php:86
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
802 |
msgid "Loading..."
|
803 |
msgstr ""
|
804 |
|
810 |
msgid "Are you sure you want to delete this draft?"
|
811 |
msgstr ""
|
812 |
|
813 |
+
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:141 views/b2s/network.php:109 views/b2s/post.approve.php:98 views/b2s/post.approve.php:115 views/b2s/post.draft.php:87 views/b2s/post.notice.php:85 views/b2s/post.publish.php:85 views/b2s/post.sched.php:99
|
814 |
+
#: views/b2s/repost.php:91 views/b2s/ship.php:474 views/b2s/ship.php:553 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
|
|
|
|
|
|
|
|
815 |
msgid "NO"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: views/b2s/curation.draft.php:91 views/b2s/network.php:110 views/b2s/network.php:173 views/b2s/post.approve.php:99 views/b2s/post.draft.php:88 views/b2s/post.notice.php:86 views/b2s/post.publish.php:86 views/b2s/post.sched.php:100 views/b2s/repost.php:92
|
819 |
+
#: views/b2s/repost.php:93 views/b2s/widgets/posts.php:68
|
|
|
|
|
|
|
820 |
msgid "YES, delete"
|
821 |
msgstr ""
|
822 |
|
825 |
msgstr ""
|
826 |
|
827 |
#: views/b2s/curation.php:34
|
828 |
+
msgid "No connected networks. Please make sure to connect at least one social media account."
|
|
|
|
|
829 |
msgstr ""
|
830 |
|
831 |
#: views/b2s/curation.php:37
|
836 |
msgid "Saved as draft."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Settings/Item.php:240 includes/B2S/Settings/Item.php:273 views/b2s/html/footer.php:111
|
|
|
|
|
840 |
msgid "Link Post"
|
841 |
msgstr ""
|
842 |
|
843 |
+
#: views/b2s/curation.php:47 views/b2s/curation.php:49 views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Settings/Item.php:254 includes/B2S/Settings/Item.php:273
|
|
|
|
|
844 |
msgid "Image Post"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: views/b2s/curation.php:49 views/b2s/network.php:218 views/b2s/ship.php:23 includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56 includes/B2S/Network/Item.php:162 includes/B2S/Network/Item.php:256 includes/B2S/Network/Item.php:322
|
848 |
+
#: includes/B2S/Network/Item.php:384 includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:160 includes/B2S/Ship/Image.php:80 includes/B2S/Ship/Item.php:1010 views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:20
|
849 |
+
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
850 |
msgid "SMART"
|
851 |
msgstr ""
|
852 |
|
870 |
msgid "continue"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:446 includes/B2S/Ship/Item.php:475 includes/B2S/Ship/Item.php:505 includes/B2S/Ship/Item.php:534 includes/B2S/Ship/Item.php:563 includes/B2S/Ship/Item.php:591 includes/B2S/Ship/Item.php:634 includes/B2S/Ship/Item.php:657
|
874 |
+
#: includes/B2S/Ship/Item.php:678 includes/B2S/Ship/Item.php:699 includes/B2S/Ship/Item.php:720 includes/B2S/Ship/Item.php:741 includes/B2S/Ship/Item.php:762 includes/B2S/Ship/Item.php:806
|
|
|
|
|
|
|
|
|
|
|
|
|
875 |
msgid "Change image"
|
876 |
msgstr ""
|
877 |
|
879 |
msgid "Write something..."
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: views/b2s/curation.php:112 views/b2s/ship.php:260 views/b2s/ship.php:262 includes/B2S/Post/Item.php:411
|
|
|
883 |
msgid "Re-share this post"
|
884 |
msgstr ""
|
885 |
|
887 |
msgid "Create a new post"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: views/b2s/curation.php:119 views/b2s/post.calendar.php:38 views/b2s/ship.php:18 views/b2s/ship.php:659 includes/B2S/Post/Filter.php:58 includes/B2S/Post/Item.php:338 includes/B2S/Ship/Save.php:417 includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
|
|
|
|
|
|
891 |
msgid "published"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: views/b2s/curation.php:135 views/b2s/post.approve.php:109 views/b2s/ship.php:468
|
|
|
895 |
msgid "Do you want to mark this post as published ?"
|
896 |
msgstr ""
|
897 |
|
898 |
+
#: views/b2s/curation.php:140 views/b2s/post.approve.php:114 views/b2s/ship.php:473 views/b2s/ship.php:554
|
|
|
899 |
msgid "YES"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: views/b2s/curation.php:154 views/b2s/post.calendar.php:264 views/b2s/ship.php:398
|
|
|
903 |
msgid "Need to schedule your posts?"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: views/b2s/curation.php:157 views/b2s/post.calendar.php:267 views/b2s/ship.php:401
|
|
|
907 |
msgid "Blog2Social Premium covers everything you need."
|
908 |
msgstr ""
|
909 |
|
910 |
+
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:270 views/b2s/ship.php:404 includes/B2S/Ship/Item.php:1011
|
|
|
911 |
msgid "Schedule for specific dates"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: views/b2s/curation.php:161 views/b2s/post.calendar.php:271 views/b2s/ship.php:405
|
915 |
+
msgid "You want to publish a post on a specific date? No problem! Just enter your desired date and you are ready to go!"
|
|
|
|
|
|
|
916 |
msgstr ""
|
917 |
|
918 |
+
#: views/b2s/curation.php:163 views/b2s/post.calendar.php:273 views/b2s/ship.php:407
|
|
|
919 |
msgid "Schedule post recurrently"
|
920 |
msgstr ""
|
921 |
|
922 |
+
#: views/b2s/curation.php:164 views/b2s/post.calendar.php:274 views/b2s/ship.php:408
|
923 |
+
msgid "You have evergreen content you want to re-share from time to time in your timeline? Schedule your evergreen content to be shared once, multiple times or recurringly at specific times."
|
|
|
|
|
|
|
|
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: views/b2s/curation.php:166 views/b2s/post.calendar.php:276 views/b2s/ship.php:410
|
|
|
927 |
msgid "Best Time Scheduler"
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: views/b2s/curation.php:167 views/b2s/post.calendar.php:277 views/b2s/ship.php:411
|
931 |
+
msgid "Whenever you publish a post, only a fraction of your followers will actually see your post. Use the Blog2Social Best Times Scheduler to share your post at the best times for each social network. Get more outreach and extend the lifespan of your posts."
|
|
|
|
|
|
|
|
|
|
|
932 |
msgstr ""
|
933 |
|
934 |
#: views/b2s/curation.php:199
|
947 |
msgid "Select image"
|
948 |
msgstr ""
|
949 |
|
950 |
+
#: views/b2s/dashboard.php:26
|
|
|
|
|
|
|
|
|
951 |
msgid "Your Activity"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: views/b2s/dashboard.php:31
|
955 |
msgid "List"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: views/b2s/dashboard.php:32
|
959 |
msgid "Chart"
|
960 |
msgstr ""
|
961 |
|
962 |
+
#: views/b2s/dashboard.php:60
|
963 |
msgid "Follow us"
|
964 |
msgstr ""
|
965 |
|
966 |
+
#: views/b2s/network.php:25 views/b2s/network.php:26 views/b2s/post.calendar.php:225 views/b2s/post.calendar.php:226 views/prg/post.php:26 views/prg/post.php:27 views/b2s/html/post.navbar.php:26 views/b2s/html/post.navbar.php:27
|
|
|
|
|
|
|
967 |
msgid "filter"
|
968 |
msgstr ""
|
969 |
|
970 |
+
#: views/b2s/network.php:32 views/b2s/network.php:35 views/b2s/network.php:81
|
971 |
msgid "Create new network collection"
|
972 |
msgstr ""
|
973 |
|
974 |
+
#: views/b2s/network.php:34
|
975 |
msgid "You want to define a new combination of networks?"
|
976 |
msgstr ""
|
977 |
|
978 |
+
#: views/b2s/network.php:35 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:155 includes/B2S/Network/Item.php:159 includes/B2S/Ship/Image.php:87 includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:42
|
|
|
|
|
|
|
979 |
msgid "PRO"
|
980 |
msgstr ""
|
981 |
|
982 |
+
#: views/b2s/network.php:39 views/b2s/partials/post-edit-modal.php:97
|
983 |
msgid "Delete"
|
984 |
msgstr ""
|
985 |
|
986 |
+
#: views/b2s/network.php:48 views/b2s/ship.php:74 views/b2s/ship.php:368 views/b2s/html/footer.php:207
|
|
|
987 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
988 |
msgstr ""
|
989 |
|
990 |
+
#: views/b2s/network.php:49 views/b2s/ship.php:75
|
991 |
msgid "Load Best Times"
|
992 |
msgstr ""
|
993 |
|
994 |
+
#: views/b2s/network.php:87
|
995 |
msgid "create"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: views/b2s/network.php:103
|
999 |
msgid "Delete Profile"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: views/b2s/network.php:106
|
1003 |
msgid "Do you really want to delete this profile"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
+
#: views/b2s/network.php:121 views/b2s/premium.php:127
|
1007 |
msgid "Google My Business"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
+
#: views/b2s/network.php:124
|
1011 |
+
msgid "Blog2Social uses the official Google My Business API to share your content on your business listing. You can connect Google My Business listings with up to nine different locations to Blog2Social and you can choose which location you want to share your content on."
|
|
|
|
|
|
|
|
|
1012 |
msgstr ""
|
1013 |
|
1014 |
+
#: views/b2s/network.php:127
|
1015 |
+
msgid "Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings."
|
|
|
|
|
|
|
|
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:490 includes/B2S/Ship/Item.php:1049 views/b2s/partials/post-edit-modal.php:48
|
|
|
1019 |
msgid "Learn more"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
+
#: views/b2s/network.php:143
|
1023 |
msgid "Delete Authorization"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
+
#: views/b2s/network.php:152
|
1027 |
msgid "Do you really want to delete this authorization"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: views/b2s/network.php:155
|
1031 |
msgid "You have still set up scheduled posts for this network:"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: views/b2s/network.php:156
|
1035 |
msgid "This network connection is still assigned to other users."
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: views/b2s/network.php:157
|
1039 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: views/b2s/network.php:160
|
1043 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1044 |
msgstr ""
|
1045 |
|
1046 |
+
#: views/b2s/network.php:160
|
1047 |
msgid "scheduled posts"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
+
#: views/b2s/network.php:161
|
1051 |
+
msgid "The connection is still assigned to other users. Please withdraw the assigned connection from other users first."
|
|
|
|
|
1052 |
msgstr ""
|
1053 |
|
1054 |
+
#: views/b2s/network.php:162
|
1055 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1056 |
msgstr ""
|
1057 |
|
1058 |
+
#: views/b2s/network.php:174
|
1059 |
msgid "View schedule posts"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: views/b2s/network.php:193
|
1063 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
+
#: views/b2s/network.php:194
|
1067 |
msgid "Change successful"
|
1068 |
msgstr ""
|
1069 |
|
1070 |
+
#: views/b2s/network.php:195
|
1071 |
msgid "Could not be changed"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
+
#: views/b2s/network.php:203
|
1075 |
msgid "modfiy"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: views/b2s/network.php:218 includes/B2S/Network/Item.php:162 includes/B2S/Network/Item.php:162
|
|
|
1079 |
msgid "Edit Post Template"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: views/b2s/network.php:230 views/b2s/settings.php:49 includes/B2S/Network/Item.php:536 includes/B2S/Settings/Item.php:134
|
|
|
1083 |
msgid "save"
|
1084 |
msgstr ""
|
1085 |
|
1086 |
+
#: views/b2s/network.php:242
|
1087 |
msgid "Instant Caching for Link Posts"
|
1088 |
msgstr ""
|
1089 |
|
1090 |
+
#: views/b2s/network.php:245
|
1091 |
+
msgid "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 link posts to ensure that the network always pulls the current meta data of your blog post."
|
|
|
|
|
|
|
|
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: views/b2s/network.php:256
|
1095 |
msgid "Choose your Post Format"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#: views/b2s/network.php:260 views/b2s/network.php:263 views/b2s/network.php:266
|
1099 |
+
msgid "Decide in which post format you want to post your content: Link post or image post."
|
|
|
|
|
|
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: views/b2s/network.php:269
|
1103 |
+
msgid "Decide in wich form you want to post your Content. Either as image with frame, or as image cut out."
|
|
|
|
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: views/b2s/network.php:281
|
1107 |
msgid "Post Content"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: views/b2s/network.php:284
|
1111 |
+
msgid "Edit the content of your post. Move elements by drag and drop into the textarea and customize them as you like."
|
|
|
|
|
1112 |
msgstr ""
|
1113 |
|
1114 |
+
#: views/b2s/network.php:287
|
1115 |
msgid "Legend"
|
1116 |
msgstr ""
|
1117 |
|
1118 |
+
#: views/b2s/network.php:289
|
1119 |
msgid "The title of your post"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: views/b2s/network.php:290
|
1123 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: views/b2s/network.php:291
|
1127 |
msgid "The content of your post"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: views/b2s/network.php:292
|
1131 |
msgid "The tags you have set in your post."
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: views/b2s/network.php:293
|
1135 |
msgid "The name of the post author."
|
1136 |
msgstr ""
|
1137 |
|
1138 |
+
#: views/b2s/network.php:306 includes/B2S/Network/Item.php:692
|
1139 |
msgid "Character limit"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: views/b2s/network.php:309
|
1143 |
+
msgid "Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" individually. Your text will be shortened after the last comma, period, or space character within your character limit."
|
|
|
|
|
|
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: views/b2s/network.php:310
|
1147 |
+
msgid "An \"EXCERPT\" will only be added to your social media post if you have added a manual excerpt in the excerpt editing box of the Gutenberg side menu (document settings) of your post."
|
|
|
|
|
|
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: views/b2s/network.php:311
|
1151 |
msgid ""
|
1152 |
+
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the \"TITLE\" and \"KEYWORD\" variables for your social media posts, the character limit you define for the \"EXCERPT\" and/or \"CONTENT\" variables will be applied within the remaining available "
|
1153 |
+
"character limit of the social network."
|
|
|
|
|
|
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: views/b2s/network.php:322 views/b2s/ship.php:565
|
1157 |
msgid "Connect with Pinterest"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
+
#: views/b2s/network.php:330 views/b2s/ship.php:573
|
1161 |
msgid ""
|
1162 |
+
"Please make sure to use your original Pinterest login data (email and password). Social Login via Facebook or Google login data will not work here. Please also check if the two-factor authentication in Pinterest is deactivated to ensure a stable connection to Blog2Social."
|
|
|
|
|
|
|
1163 |
msgstr ""
|
1164 |
|
1165 |
+
#: views/b2s/network.php:331 views/b2s/ship.php:574
|
1166 |
msgid "An error occurred! Please try again."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
+
#: views/b2s/network.php:332 views/b2s/network.php:333 views/b2s/ship.php:575 views/b2s/ship.php:576
|
|
|
1170 |
#, php-format
|
1171 |
+
msgid "You want to connect an additional account? <a target=\"_blank\" href=\"%s\">Upgrade to Blog2Social Premium</a>"
|
|
|
|
|
1172 |
msgstr ""
|
1173 |
|
1174 |
+
#: views/b2s/network.php:334 views/b2s/ship.php:577
|
1175 |
msgid "Invalid Data! Please try again."
|
1176 |
msgstr ""
|
1177 |
|
1178 |
+
#: views/b2s/network.php:335 views/b2s/ship.php:578
|
1179 |
+
msgid "You have not yet created any pinboards in your Pinterest account. Please set up at least one pinboard to pin on your Pinterest account!"
|
|
|
|
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: views/b2s/network.php:336 views/b2s/ship.php:579
|
1183 |
#, php-format
|
1184 |
+
msgid "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>"
|
|
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: views/b2s/network.php:337 views/b2s/ship.php:580
|
1188 |
msgid "Pinterest has rejected the connection to your blog"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: views/b2s/network.php:338 views/b2s/ship.php:581
|
1192 |
msgid "Please select your currect server location and connect again"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: views/b2s/network.php:339 views/b2s/ship.php:582
|
1196 |
+
msgid "Access to this resource on your server is denied! Please check your webserver configuration for caching."
|
|
|
|
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: views/b2s/network.php:340 views/b2s/ship.php:583
|
1200 |
+
msgid "Login up successful. Please confirm that Blog2Social is allowed to publish on your profile."
|
|
|
|
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: views/b2s/network.php:342 views/b2s/ship.php:585 views/b2s/html/header.php:336 views/prg/html/form.php:141 views/prg/html/form.php:143 views/prg/html/form.php:218 views/prg/html/form.php:220
|
|
|
|
|
|
|
1204 |
msgid "E-Mail"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: views/b2s/network.php:348 views/b2s/ship.php:591 views/prg/login.php:25
|
1208 |
msgid "Password"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: views/b2s/network.php:359 views/b2s/ship.php:602
|
1212 |
msgid "Server-Location"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: views/b2s/network.php:373 views/b2s/ship.php:616
|
1216 |
msgid "Select Pinboard"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: views/b2s/network.php:381 views/b2s/ship.php:624 includes/B2S/Settings/Item.php:91
|
|
|
1220 |
msgid "authorize"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: views/b2s/network.php:382 views/b2s/ship.php:625
|
1224 |
msgid "confirm"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: views/b2s/network.php:396
|
1228 |
msgid "Advanced Network Settings"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: views/b2s/network.php:408 views/b2s/network.php:505
|
1232 |
msgid "URL Parameters"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: views/b2s/network.php:409
|
1236 |
msgid "The parameters could not be saved. Please try again."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: views/b2s/network.php:410 views/b2s/network.php:425 views/b2s/network.php:457 views/b2s/network.php:460 views/b2s/network.php:463
|
|
|
|
|
1240 |
msgid "An error occured. Please contact our support."
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: views/b2s/network.php:417 views/b2s/network.php:514
|
1244 |
msgid "Network collection"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: views/b2s/network.php:420 views/b2s/network.php:517
|
1248 |
msgid "Move the connection to another network collection."
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: views/b2s/network.php:432 views/b2s/network.php:524
|
1252 |
msgid "move"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: views/b2s/network.php:440
|
1256 |
msgid "You need at least one network collection"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: views/b2s/network.php:449 views/b2s/network.php:531
|
1260 |
msgid "Team Management"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: views/b2s/network.php:452 views/b2s/network.php:534
|
1264 |
msgid "Assign the connection to other blog users"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: views/b2s/network.php:466
|
1268 |
msgid "You don't have a Business License"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: views/b2s/network.php:469
|
1272 |
msgid "This user don't have a Business License, or it is not the same"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
+
#: views/b2s/network.php:472
|
1276 |
msgid "The connection has already been assigned to this user."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: views/b2s/network.php:475
|
1280 |
msgid "The connection dose not exist"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: views/b2s/network.php:478
|
1284 |
msgid "This connection has already been assigned to this user."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: views/b2s/network.php:481
|
1288 |
+
msgid "You can only share the connection with blog users who use the same license as you."
|
|
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: views/b2s/network.php:484
|
1292 |
msgid "There are no other users to whom the connection can be assigned."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: views/b2s/network.php:487 views/b2s/network.php:537
|
1296 |
msgid "assign"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: views/b2s/network.php:488
|
1300 |
msgid "Apply best time settings"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: views/b2s/network.php:489
|
1304 |
msgid "Apply post template settings"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: views/b2s/network.php:490
|
1308 |
msgid "Apply URL Parameters"
|
1309 |
msgstr ""
|
1310 |
|
1311 |
+
#: views/b2s/network.php:501
|
1312 |
msgid ""
|
1313 |
+
"Upgrade to Blog2Social Business to easily bundle your connections into network collection and assign your social media connections to other blog users. You can update and delete the connections as well as select forums or boards. Other users will be able to use the social "
|
1314 |
+
"media connection you assigned to them to post and schedule to your social media profile, page or group."
|
|
|
|
|
|
|
|
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: views/b2s/network.php:502
|
1318 |
msgid "Upgrade to Blog2Social Business"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: views/b2s/network.php:506 includes/B2S/Network/Item.php:506
|
1322 |
#, php-format
|
1323 |
+
msgid "Define parameters that will be added to link posts on this network e.g. to create tracking links with UTM paramters. <a target=\"_blank\" href=\"%s\">More information</a>"
|
|
|
|
|
|
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: views/b2s/network.php:522 includes/B2S/Ship/Navbar.php:37
|
1327 |
msgid "My Profile"
|
1328 |
msgstr ""
|
1329 |
|
1335 |
msgid "Are you sure you want to delete these Social Media posts?"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:81 views/b2s/post.publish.php:81 views/b2s/post.sched.php:95 views/b2s/repost.php:87 views/b2s/widgets/posts.php:63
|
|
|
|
|
1339 |
msgid "Number of entries"
|
1340 |
msgstr ""
|
1341 |
|
1343 |
msgid "Sort by network"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: views/b2s/post.calendar.php:37 includes/B2S/Calendar/Filter.php:127
|
1347 |
msgid "show all"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:18 includes/B2S/Post/Filter.php:58 includes/B2S/Post/Item.php:338 includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
|
|
|
|
1351 |
msgid "scheduled"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Network/Item.php:640 includes/B2S/Network/Item.php:643 includes/B2S/Settings/Item.php:240 views/b2s/html/footer.php:128
|
|
|
|
|
1355 |
msgid "Image with frame"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189 views/b2s/repost.php:73 includes/B2S/Network/Item.php:641 includes/B2S/Network/Item.php:644 includes/B2S/Settings/Item.php:254 views/b2s/html/footer.php:133
|
|
|
|
|
1359 |
msgid "Image cut out"
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: views/b2s/post.calendar.php:87 views/b2s/post.sched.php:172 views/b2s/repost.php:56
|
1363 |
msgid "add post"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130 views/b2s/repost.php:104 views/b2s/ship.php:503
|
|
|
1367 |
msgid "Choose your"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:130 views/b2s/repost.php:104 views/b2s/ship.php:503
|
|
|
1371 |
msgid "Post Format"
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: views/b2s/post.calendar.php:112 views/b2s/post.sched.php:132 views/b2s/repost.php:106 views/b2s/ship.php:505
|
|
|
1375 |
msgid "for:"
|
1376 |
msgstr ""
|
1377 |
|
1378 |
+
#: views/b2s/post.calendar.php:131 views/b2s/post.sched.php:151 views/b2s/repost.php:125 views/b2s/ship.php:523
|
1379 |
+
msgid "Define the default settings for the custom post format for all of your Facebook accounts in the Blog2Social settings."
|
|
|
|
|
|
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: views/b2s/post.calendar.php:134 views/b2s/post.sched.php:154 views/b2s/repost.php:128 views/b2s/ship.php:526
|
1383 |
+
msgid "Define the default settings for the custom post format for all of your Twitter accounts in the Blog2Social settings."
|
|
|
|
|
|
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:157 views/b2s/repost.php:131 views/b2s/ship.php:529
|
1387 |
+
msgid "Define the default settings for the custom post format for all of your LinkedIn accounts in the Blog2Social settings."
|
|
|
|
|
|
|
1388 |
msgstr ""
|
1389 |
|
1390 |
+
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:160 views/b2s/repost.php:134 views/b2s/ship.php:532
|
1391 |
+
msgid "Define the default settings for the custom post format for all of your Instagram accounts in the Blog2Social settings."
|
|
|
|
|
|
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: views/b2s/post.calendar.php:155 views/b2s/post.sched.php:111 views/b2s/repost.php:149 views/b2s/ship.php:444
|
|
|
1395 |
msgid "Select image for"
|
1396 |
msgstr ""
|
1397 |
|
1423 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: views/b2s/post.favorites.php:67 includes/B2S/Post/Item.php:344
|
1427 |
msgid "You have not saved any favorites."
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: views/b2s/post.notice.php:76 views/b2s/post.publish.php:76 views/b2s/widgets/posts.php:58
|
|
|
1431 |
msgid "Delete entries from the reporting"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: views/b2s/post.notice.php:79 views/b2s/post.publish.php:79 views/b2s/widgets/posts.php:61
|
|
|
1435 |
msgid "You are sure, you want to delete entries from the reporting?"
|
1436 |
msgstr ""
|
1437 |
|
1439 |
msgid "Uhr"
|
1440 |
msgstr ""
|
1441 |
|
1442 |
+
#: views/b2s/post.sched.php:90 views/b2s/repost.php:82
|
1443 |
msgid "Delete entries form the scheduling"
|
1444 |
msgstr ""
|
1445 |
|
1446 |
+
#: views/b2s/post.sched.php:93 views/b2s/repost.php:85
|
1447 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: views/b2s/premium.php:14 includes/B2S/AutoPost/Item.php:89
|
1451 |
msgid "Your current license:"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: views/b2s/premium.php:26 views/b2s/html/sidebar.php:47 views/b2s/html/sidebar.ship.php:46
|
|
|
1455 |
msgid "Start your 30-day free Premium trial"
|
1456 |
msgstr ""
|
1457 |
|
1459 |
msgid "End of Trial"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: views/b2s/premium.php:31 includes/B2S/AutoPost/Item.php:92 includes/B2S/AutoPost/Item.php:95 includes/B2S/RePost/Item.php:33
|
|
|
1463 |
msgid "Upgrade"
|
1464 |
msgstr ""
|
1465 |
|
1466 |
#: views/b2s/premium.php:35
|
1467 |
+
msgid "Upgrade to Blog2Social Premium and get even smarter with social media automation: Schedule your posts for the best time or recurringly with the Best Time Manager or the Social Media Calendar. Post to pages, groups and multiple accounts per network."
|
|
|
|
|
|
|
|
|
1468 |
msgstr ""
|
1469 |
|
1470 |
#: views/b2s/premium.php:41
|
1492 |
msgstr ""
|
1493 |
|
1494 |
#: views/b2s/premium.php:71
|
1495 |
+
msgid "Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and Medium."
|
|
|
|
|
1496 |
msgstr ""
|
1497 |
|
1498 |
#: views/b2s/premium.php:79
|
1500 |
msgstr ""
|
1501 |
|
1502 |
#: views/b2s/premium.php:80
|
1503 |
+
msgid "Add multiple users and accounts per network. Define sharing-profiles for selected network bundles."
|
|
|
|
|
1504 |
msgstr ""
|
1505 |
|
1506 |
#: views/b2s/premium.php:88
|
1508 |
msgstr ""
|
1509 |
|
1510 |
#: views/b2s/premium.php:89
|
1511 |
+
msgid "See your entire schedule at a glance, with team view and network filter. Edit scheduled posts or add new social media posts per drag & drop."
|
|
|
|
|
1512 |
msgstr ""
|
1513 |
|
1514 |
#: views/b2s/premium.php:97
|
1516 |
msgstr ""
|
1517 |
|
1518 |
#: views/b2s/premium.php:98
|
1519 |
+
msgid "Use the Best Times Manager to schedule your posts automatically or define your own best time scheme."
|
|
|
|
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:685 includes/B2S/Post/Item.php:826
|
|
|
1523 |
msgid "Auto-Posting"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
#: views/b2s/premium.php:110
|
1527 |
+
msgid "Share your posts automatically across your preferred networks at once or at your pre-scheduled time-settings."
|
|
|
|
|
1528 |
msgstr ""
|
1529 |
|
1530 |
#: views/b2s/premium.php:118
|
1532 |
msgstr ""
|
1533 |
|
1534 |
#: views/b2s/premium.php:119
|
1535 |
+
msgid "Share imported RSS feeds automatically to get more variations for your content."
|
|
|
|
|
1536 |
msgstr ""
|
1537 |
|
1538 |
#: views/b2s/premium.php:128
|
1539 |
+
msgid "Schedule and share your blog posts as Google My Business posts to update your business listing and to add fresh content for your company."
|
|
|
|
|
1540 |
msgstr ""
|
1541 |
|
1542 |
#: views/b2s/premium.php:136
|
1544 |
msgstr ""
|
1545 |
|
1546 |
#: views/b2s/premium.php:137
|
1547 |
+
msgid "Schedule and share curated content from any source on your preferred networks."
|
|
|
|
|
1548 |
msgstr ""
|
1549 |
|
1550 |
#: views/b2s/premium.php:148
|
1552 |
msgstr ""
|
1553 |
|
1554 |
#: views/b2s/premium.php:149
|
1555 |
+
msgid "Select individual images per post or network and select any image from your media library to create more variations for your posts."
|
|
|
|
|
1556 |
msgstr ""
|
1557 |
|
1558 |
#: views/b2s/premium.php:157
|
1560 |
msgstr ""
|
1561 |
|
1562 |
#: views/b2s/premium.php:158
|
1563 |
+
msgid "Select link post or image post per network to choose the optimal format for your post."
|
|
|
|
|
1564 |
msgstr ""
|
1565 |
|
1566 |
#: views/b2s/premium.php:166
|
1568 |
msgstr ""
|
1569 |
|
1570 |
#: views/b2s/premium.php:167
|
1571 |
+
msgid "Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and Twitter Cards to define the look of your link posts."
|
|
|
|
|
1572 |
msgstr ""
|
1573 |
|
1574 |
#: views/b2s/premium.php:175
|
1587 |
msgid "Show all premium features"
|
1588 |
msgstr ""
|
1589 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1590 |
#: views/b2s/settings.php:32
|
1591 |
msgid "General"
|
1592 |
msgstr ""
|
1595 |
msgid "Social Meta Data"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: views/b2s/settings.php:84
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1599 |
msgid "Allow shortcodes in my post"
|
1600 |
msgstr ""
|
1601 |
|
1602 |
+
#: views/b2s/settings.php:87
|
1603 |
msgid ""
|
1604 |
+
"Shortcodes are used by some wordpress plugins like Elementor, Visual Composer and Content Builder. When a shortcode is inserted in a WordPress post or page, it is replaced with some other content when you publish the article on your blog. In other words, a shortcode instructs "
|
1605 |
+
"WordPress to find a special command that is placed in square brackets ([]) and replace it with the appropriate dynamic content by a plugin you use.<br><br>Activate this feature, if you should use dynamic elements in your articles."
|
|
|
|
|
|
|
|
|
|
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: views/b2s/settings.php:98
|
1609 |
msgid "Include WordPress tags as hashtags in your posts"
|
1610 |
msgstr ""
|
1611 |
|
1612 |
+
#: views/b2s/settings.php:101
|
1613 |
msgid ""
|
1614 |
+
"Hashtags are a great way to generate more reach and visibility for your posts. By activating this feature Blog2Social will automatically include your WordPress tags as hashtags in all Social Media posts for networks that support hashtags. This way you don't need to worry "
|
1615 |
+
"about adding extra hashtags to your comments. Blog2Social erases unnecessary spaces in your WordPress tags to generate valid hashtags."
|
|
|
|
|
|
|
|
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: views/b2s/settings.php:112
|
1619 |
msgid "Activate Legacy mode "
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: views/b2s/settings.php:115
|
1623 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: views/b2s/settings.php:126
|
1627 |
msgid "Instant Caching for Facebook Link Posts"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
+
#: views/b2s/settings.php:129
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1631 |
msgid ""
|
1632 |
+
"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."
|
|
|
1633 |
msgstr ""
|
1634 |
|
1635 |
+
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:58 includes/B2S/Post/Item.php:338 includes/PRG/Post/Item.php:86
|
|
|
|
|
|
|
|
|
|
|
1636 |
msgid "draft"
|
1637 |
msgstr ""
|
1638 |
|
1640 |
msgid "Social Media Scheduling & Sharing"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
+
#: views/b2s/ship.php:53 views/prg/ship.php:43 views/prg/ship.php:45 includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:170 includes/B2S/Settings/Item.php:191 views/prg/html/form.php:26 views/prg/html/form.php:28
|
|
|
|
|
|
|
1644 |
msgid "Title"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: views/b2s/ship.php:55 includes/B2S/Post/Item.php:394 includes/B2S/Post/Item.php:537
|
1648 |
msgid "on blog"
|
1649 |
msgstr ""
|
1650 |
|
1660 |
msgid "Load My Times Settings"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: views/b2s/ship.php:105 views/b2s/html/sidebar.php:134
|
1664 |
msgid "Social Accounts"
|
1665 |
msgstr ""
|
1666 |
|
1704 |
msgid "scroll to top"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: views/b2s/ship.php:228 views/b2s/ship.php:234 includes/B2S/Curation/View.php:113
|
|
|
1708 |
msgid "Share"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: views/b2s/ship.php:229 views/b2s/ship.php:233 includes/B2S/Curation/View.php:110
|
|
|
1712 |
msgid "Save as Draft"
|
1713 |
msgstr ""
|
1714 |
|
1730 |
|
1731 |
#: views/b2s/ship.php:305
|
1732 |
msgid ""
|
1733 |
+
"You can re-share your post for a different sharing purpose, or to share on a different choice of networks, profiles, pages or groups, or with different comments or images, or if you want to share your blog post images to image networks only, or re-share them at different "
|
1734 |
+
"times. You may vary your comments and images in order to produce more variations of your social media posts to share more often without sharing the same message over and over again. Whatever your choose to do for re-sharing your post, you can simply click \"Re-share this "
|
1735 |
+
"post\" and you will be led to the preview page where your can select your networks and edit your texts, comments or images according to your current sharing preferences."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1736 |
msgstr ""
|
1737 |
|
1738 |
#: views/b2s/ship.php:308
|
1745 |
|
1746 |
#: views/b2s/ship.php:339
|
1747 |
msgid ""
|
1748 |
+
"You can save your current network settings as \"Standard\" network settings for any future sharing activities or as a \"Profile\" to choose from (Premium).<br><br>Your Standard selection will show as activated upon pressing the \"share on social media\" button on the right "
|
1749 |
+
"hand side bar. You can change these settings any time per click, or choose another network profile (Premium).<br><br>You can also pre-define various different sets of networks, for specific social media accounts, target groups, contents or sharing purposes. For example you "
|
1750 |
+
"can define a specific set of networks for sharing your posts images only or for re-sharing your evergreen content on a recurring basis. On the preview-page you may edit your selected or pre-selected networks anytime by simply clicking on the respective network account to "
|
1751 |
+
"select or remove an account from the current sharing scheme."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1752 |
msgstr ""
|
1753 |
|
1754 |
#: views/b2s/ship.php:351
|
1776 |
msgstr ""
|
1777 |
|
1778 |
#: views/b2s/ship.php:550
|
1779 |
+
msgid "There is already a saved draft for this WordPress post or page. If you save a new draft it will overwrite the old draft. Are you sure you want to overwrite your draft?"
|
|
|
|
|
|
|
1780 |
msgstr ""
|
1781 |
|
1782 |
#: views/b2s/ship.php:646
|
1787 |
msgid "Give me more information"
|
1788 |
msgstr ""
|
1789 |
|
1790 |
+
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:701 includes/B2S/Ship/Save.php:438
|
|
|
1791 |
msgid "FAQ"
|
1792 |
msgstr ""
|
1793 |
|
1864 |
msgstr ""
|
1865 |
|
1866 |
#: views/b2s/support.php:207
|
1867 |
+
msgid "You need admin rights to use the Troubleshooting-Tool. Please contact your administrator."
|
|
|
|
|
1868 |
msgstr ""
|
1869 |
|
1870 |
#: views/b2s/support.php:214
|
1928 |
msgstr ""
|
1929 |
|
1930 |
#: views/prg/login.php:21
|
1931 |
+
msgid "Login failed. Please check your server settings. OpenSSL must be enabled on."
|
|
|
1932 |
msgstr ""
|
1933 |
|
1934 |
#: views/prg/login.php:24
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: views/prg/login.php:43
|
1967 |
+
msgid "The press distribution PR gateway automatically publish your press releases and events with one click.Publish your message over 250 portals."
|
|
|
|
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: views/prg/login.php:46
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: views/prg/ship.php:90
|
1995 |
+
msgid "It may incur charges for publishing on PR-Gateway. Sent press releases can not be withdrawn. If you want your press release to be published now?"
|
|
|
|
|
1996 |
msgstr ""
|
1997 |
|
1998 |
#: views/prg/ship.php:93
|
1999 |
msgid "Yes, I accept"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
+
#: includes/B2S/AutoPost/Item.php:39
|
2003 |
+
msgid "Auto-posts for Facebook Profiles will be shown in the \"Instant Sharing\" tab on your \"Posts & Sharing\" navigation bar and can be shared on your Facebook Profile by clicking on the \"Share\" button next to your auto-post."
|
2004 |
+
msgstr ""
|
2005 |
+
|
2006 |
+
#: includes/B2S/AutoPost/Item.php:42
|
2007 |
+
msgid "Autoposter"
|
2008 |
+
msgstr ""
|
2009 |
+
|
2010 |
+
#: includes/B2S/AutoPost/Item.php:43
|
2011 |
+
msgid "Set up your autoposter to automatically share your new or updated posts, pages and custom post types on your social media channels."
|
2012 |
+
msgstr ""
|
2013 |
+
|
2014 |
+
#: includes/B2S/AutoPost/Item.php:52
|
2015 |
+
msgid "Select your preferred network collection for autoposting. This collection defines the social media accounts on which the autoposter will share your social media posts automatically."
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: includes/B2S/AutoPost/Item.php:56
|
2019 |
+
msgid "Please select a post type"
|
2020 |
+
msgstr ""
|
2021 |
+
|
2022 |
+
#: includes/B2S/AutoPost/Item.php:59
|
2023 |
+
msgid "new posts"
|
2024 |
+
msgstr ""
|
2025 |
+
|
2026 |
+
#: includes/B2S/AutoPost/Item.php:60 includes/B2S/AutoPost/Item.php:72
|
2027 |
+
msgid "Unselect all"
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: includes/B2S/AutoPost/Item.php:60 includes/B2S/AutoPost/Item.php:72
|
2031 |
+
msgid "Select all"
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: includes/B2S/AutoPost/Item.php:68
|
2035 |
+
msgid "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."
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: includes/B2S/AutoPost/Item.php:71
|
2039 |
+
msgid "updating existing posts"
|
2040 |
+
msgstr ""
|
2041 |
+
|
2042 |
+
#: includes/B2S/AutoPost/Item.php:81
|
2043 |
+
msgid "Apply best times"
|
2044 |
+
msgstr ""
|
2045 |
+
|
2046 |
+
#: includes/B2S/AutoPost/Item.php:87
|
2047 |
+
msgid "Autoposter for Imported Posts"
|
2048 |
+
msgstr ""
|
2049 |
+
|
2050 |
+
#: includes/B2S/AutoPost/Item.php:88
|
2051 |
+
msgid "Set up your autoposter to automatically share your imported posts, pages and custom post types on your social media channels."
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: includes/B2S/AutoPost/Item.php:91
|
2055 |
+
msgid "Immediate Cross-Posting across all networks: Share an unlimited number of posts"
|
2056 |
+
msgstr ""
|
2057 |
+
|
2058 |
+
#: includes/B2S/AutoPost/Item.php:92
|
2059 |
+
msgid "Scheduled Auto-Posting"
|
2060 |
+
msgstr ""
|
2061 |
+
|
2062 |
+
#: includes/B2S/AutoPost/Item.php:94
|
2063 |
+
msgid "share up to"
|
2064 |
+
msgstr ""
|
2065 |
+
|
2066 |
+
#: includes/B2S/AutoPost/Item.php:94
|
2067 |
+
msgid "posts per day"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: includes/B2S/AutoPost/Item.php:103
|
2071 |
+
msgid "Please select a social media network"
|
2072 |
+
msgstr ""
|
2073 |
+
|
2074 |
+
#: includes/B2S/AutoPost/Item.php:104
|
2075 |
+
msgid "Available networks to select your auto-post connecitons:"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: includes/B2S/AutoPost/Item.php:105
|
2079 |
+
msgid "In accordance with the new Twitter TOS, one Twitter account can be selected as your primary Twitter account for auto-posting."
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: includes/B2S/AutoPost/Item.php:107
|
2083 |
+
msgid "Select to auto-post immediately after publishing or with a delay"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/Curation/View.php:64
|
2087 |
msgid "immediately"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
+
#: includes/B2S/AutoPost/Item.php:109
|
2091 |
+
msgid "publish with a delay of"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: includes/B2S/AutoPost/Item.php:110
|
2095 |
+
msgid "minutes"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: includes/B2S/AutoPost/Item.php:122
|
2099 |
+
msgid "Save"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: includes/B2S/AutoPost/Item.php:190 includes/B2S/Network/Item.php:171
|
2103 |
+
msgid "Connections"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#: includes/B2S/AutoPost/Item.php:192
|
2107 |
+
msgid "add/change connection"
|
2108 |
+
msgstr ""
|
2109 |
+
|
2110 |
+
#: includes/B2S/AutoPost/Item.php:229
|
2111 |
+
msgid "Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
2112 |
+
msgstr ""
|
2113 |
+
|
2114 |
+
#: includes/B2S/AutoPost/Item.php:230 includes/B2S/RePost/Item.php:173
|
2115 |
+
msgid "Post Types"
|
2116 |
+
msgstr ""
|
2117 |
+
|
2118 |
+
#: includes/B2S/AutoPost/Item.php:231 includes/B2S/RePost/Item.php:174 includes/B2S/RePost/Item.php:194 includes/B2S/RePost/Item.php:214 includes/B2S/RePost/Item.php:233
|
2119 |
+
msgid "Include (Post only...)"
|
2120 |
+
msgstr ""
|
2121 |
+
|
2122 |
+
#: includes/B2S/AutoPost/Item.php:232 includes/B2S/RePost/Item.php:175 includes/B2S/RePost/Item.php:195 includes/B2S/RePost/Item.php:215 includes/B2S/RePost/Item.php:234
|
2123 |
+
msgid "Exclude (Do no post ...)"
|
2124 |
+
msgstr ""
|
2125 |
+
|
2126 |
+
#: includes/B2S/Curation/View.php:62
|
2127 |
+
msgid "Share your post"
|
2128 |
+
msgstr ""
|
2129 |
+
|
2130 |
#: includes/B2S/Curation/View.php:65
|
2131 |
msgid "at scheduled times"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70 includes/B2S/RePost/Item.php:193 includes/B2S/Ship/Item.php:1119 views/b2s/partials/post-edit-modal.php:62 views/b2s/partials/post-edit-modal.php:65
|
|
|
|
|
2135 |
msgid "Date"
|
2136 |
msgstr ""
|
2137 |
|
2159 |
msgid "Best times"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: includes/B2S/Network/Item.php:147 includes/B2S/Network/Item.php:218 includes/B2S/Ship/Item.php:316 includes/B2S/Ship/Navbar.php:86 includes/B2S/Ship/Portale.php:38
|
|
|
2163 |
msgid "Blog"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: includes/B2S/Network/Item.php:151 includes/B2S/Ship/Portale.php:42
|
2167 |
msgid "You want to connect a network profile?"
|
2168 |
msgstr ""
|
2169 |
|
2171 |
msgid "You want to connect a network page?"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:351 includes/B2S/Ship/Portale.php:31
|
|
|
2175 |
msgid "Publication"
|
2176 |
msgstr ""
|
2177 |
|
2179 |
msgid "You want to connect a social media group?"
|
2180 |
msgstr ""
|
2181 |
|
|
|
|
|
|
|
|
|
2182 |
#: includes/B2S/Network/Item.php:172 views/b2s/html/footer.php:192
|
2183 |
msgid "Best Time Manager"
|
2184 |
msgstr ""
|
2185 |
|
2186 |
+
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275 includes/B2S/Network/Item.php:342
|
|
|
2187 |
msgid "To reactivate this connection,"
|
2188 |
msgstr ""
|
2189 |
|
2190 |
+
#: includes/B2S/Network/Item.php:209 includes/B2S/Network/Item.php:275 includes/B2S/Network/Item.php:342 includes/B2S/Ship/Image.php:30
|
|
|
2191 |
msgid "please upgrade"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: includes/B2S/Network/Item.php:212 includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:345
|
|
|
2195 |
msgid "Authorization is interrupted since"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: includes/B2S/Network/Item.php:216 includes/B2S/Network/Item.php:282 includes/B2S/Network/Item.php:349
|
|
|
2199 |
msgid "Assigned by"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: includes/B2S/Network/Item.php:254 includes/B2S/Network/Item.php:320 includes/B2S/Network/Item.php:382 includes/B2S/Ship/Item.php:1067
|
|
|
2203 |
msgid "Days"
|
2204 |
msgstr ""
|
2205 |
|
2211 |
msgid "Connection currently assigned to"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
+
#: includes/B2S/Network/Item.php:508 views/prg/html/form.php:84 views/prg/html/form.php:86 views/prg/html/form.php:161 views/prg/html/form.php:163
|
|
|
|
|
2215 |
msgid "Name"
|
2216 |
msgstr ""
|
2217 |
|
2232 |
msgid "Apply for all connections"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: includes/B2S/Network/Item.php:556
|
2236 |
msgid "Successfully saved"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: includes/B2S/Network/Item.php:557
|
2240 |
msgid "Failed to save"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: includes/B2S/Network/Item.php:558
|
2244 |
msgid "Failed to load the default template"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: includes/B2S/Network/Item.php:565
|
2248 |
msgid ""
|
2249 |
+
"Upgrade to Blog2Social Smart or higher to customize your individual post templates that will automatically pre-format the structure of your social media posts. Select and define elements, such as title, excerpt, content, hashtags, and edit the post format. The “content” "
|
2250 |
+
"element is selected by default. Define custom post templates per social network and per profile, group & page. You can also add static content (such as individual hashtags or slogans) to your post templates."
|
|
|
|
|
|
|
|
|
|
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: includes/B2S/Network/Item.php:566
|
2254 |
msgid "Upgrade to Blog2Social Smart"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: includes/B2S/Network/Item.php:587
|
2258 |
msgid "Activate Instant Caching"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: includes/B2S/Network/Item.php:633
|
2262 |
msgid "Format"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: includes/B2S/Network/Item.php:634 includes/B2S/Network/Item.php:655
|
2266 |
msgid "Load default settings"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: includes/B2S/Network/Item.php:640 includes/B2S/Network/Item.php:643 includes/B2S/Ship/Item.php:813 includes/B2S/Ship/Item.php:815
|
|
|
2270 |
msgid "Link"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: includes/B2S/Network/Item.php:641 includes/B2S/Network/Item.php:644
|
2274 |
msgid "Image"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: includes/B2S/Network/Item.php:653 includes/B2S/Settings/Item.php:66
|
2278 |
msgid "Content"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: includes/B2S/Network/Item.php:662 includes/B2S/Ship/Item.php:357
|
2282 |
+
msgid "Instagram supports up to 30 hashtags. Please reduce the number of hashtags in your post."
|
|
|
|
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: includes/B2S/Network/Item.php:674
|
2286 |
msgid "clear"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: includes/B2S/Network/Item.php:683
|
2290 |
msgid "The link will be added automatically at the end of the post."
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: includes/B2S/Network/Item.php:685 includes/B2S/Network/Item.php:711
|
2294 |
msgid "Network limit"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: includes/B2S/Network/Item.php:685 includes/B2S/Network/Item.php:711 includes/B2S/Network/Item.php:711 includes/B2S/Ship/Item.php:201 includes/B2S/Ship/Item.php:205 includes/B2S/Ship/Item.php:247 includes/B2S/Ship/Item.php:251 includes/B2S/Ship/Item.php:284
|
2298 |
+
#: includes/B2S/Ship/Item.php:288 includes/B2S/Ship/Item.php:1146 includes/B2S/Ship/Item.php:1148
|
|
|
|
|
|
|
|
|
2299 |
msgid "characters"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: includes/B2S/Network/Item.php:711
|
2303 |
msgid "recommended length"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: includes/B2S/Network/Item.php:731 includes/B2S/Network/Item.php:783 includes/B2S/Network/Item.php:837 includes/B2S/Network/Item.php:889 includes/B2S/Network/Item.php:923
|
|
|
|
|
2307 |
msgid "Preview"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: includes/B2S/Post/Filter.php:43
|
2311 |
msgid "all authors"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: includes/B2S/Post/Filter.php:59
|
2315 |
msgid "all posts"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/B2S/Post/Filter.php:70
|
2319 |
msgid "not yet shared"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/B2S/Post/Filter.php:70
|
2323 |
msgid "already shared"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/B2S/Post/Filter.php:70
|
2327 |
msgid "currently scheduled"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
#: includes/B2S/Post/Filter.php:70
|
2331 |
+
msgid "autopost"
|
2332 |
+
msgstr ""
|
2333 |
+
|
2334 |
+
#: includes/B2S/Post/Filter.php:70 includes/B2S/Post/Item.php:732
|
2335 |
+
msgid "re-share"
|
2336 |
+
msgstr ""
|
2337 |
+
|
2338 |
+
#: includes/B2S/Post/Filter.php:71
|
2339 |
msgid "all statuses"
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: includes/B2S/Post/Filter.php:82 includes/B2S/Post/Filter.php:94
|
2343 |
msgid "newest first"
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: includes/B2S/Post/Filter.php:82 includes/B2S/Post/Filter.php:94
|
2347 |
msgid "oldest first"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: includes/B2S/Post/Filter.php:107
|
2351 |
msgid "all categories & tags"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: includes/B2S/Post/Filter.php:129 includes/PRG/Post/Filter.php:49
|
2355 |
msgid "all post types"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: includes/B2S/Post/Filter.php:156
|
2359 |
msgid "shared by user"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: includes/B2S/Post/Filter.php:173 includes/PRG/Post/Filter.php:70
|
2363 |
msgid "Search Title"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: includes/B2S/Post/Filter.php:201 includes/PRG/Post/Filter.php:81
|
2367 |
msgid "sort"
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: includes/B2S/Post/Filter.php:202 includes/PRG/Post/Filter.php:82
|
2371 |
msgid "reset"
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: includes/B2S/Post/Filter.php:207
|
2375 |
msgid "selected date"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: includes/B2S/Post/Filter.php:207
|
2379 |
msgid "scheduled post(s)"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: includes/B2S/Post/Item.php:342
|
2383 |
msgid "You have not saved any drafts."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: includes/B2S/Post/Item.php:346
|
2387 |
+
msgid "You have no posts in your queue."
|
2388 |
+
msgstr ""
|
2389 |
+
|
2390 |
+
#: includes/B2S/Post/Item.php:348
|
2391 |
msgid "You have not published or scheduled any posts."
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: includes/B2S/Post/Item.php:371
|
2395 |
msgid "curated post"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: includes/B2S/Post/Item.php:376 includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:522
|
2399 |
msgid "last shared on social media"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: includes/B2S/Post/Item.php:388 includes/B2S/Post/Item.php:485 includes/B2S/Post/Item.php:487 includes/B2S/Post/Item.php:508 includes/B2S/Post/Item.php:531
|
|
|
|
|
2403 |
msgid "Share on Social Media"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: includes/B2S/Post/Item.php:392 includes/B2S/Post/Item.php:535
|
2407 |
msgid "load Draft"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: includes/B2S/Post/Item.php:394 includes/B2S/Post/Item.php:493 includes/B2S/Post/Item.php:513 includes/B2S/Post/Item.php:537 includes/PRG/Post/Item.php:121
|
|
|
|
|
2411 |
msgid "Author"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: includes/B2S/Post/Item.php:412 includes/B2S/Post/Item.php:436 includes/B2S/Post/Item.php:458 includes/B2S/Post/Item.php:555
|
|
|
2415 |
msgid "Details"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: includes/B2S/Post/Item.php:414
|
2419 |
msgid "shared social media posts"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: includes/B2S/Post/Item.php:414
|
2423 |
#, php-format
|
2424 |
msgid "latest share by %s"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: includes/B2S/Post/Item.php:438 includes/B2S/Post/Item.php:558 views/b2s/widgets/activity.php:10
|
2428 |
msgid "scheduled social media posts"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: includes/B2S/Post/Item.php:438 includes/B2S/Post/Item.php:558
|
2432 |
#, php-format
|
2433 |
msgid "next share by %s"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: includes/B2S/Post/Item.php:460
|
2437 |
msgid "social media posts ready to be shared"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: includes/B2S/Post/Item.php:471
|
2441 |
msgid "via Browser-Extension"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: includes/B2S/Post/Item.php:493
|
2445 |
msgid "saved"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: includes/B2S/Post/Item.php:513
|
2449 |
msgid "last saved"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: includes/B2S/Post/Item.php:685 includes/B2S/Post/Item.php:826 includes/B2S/Ship/Save.php:427
|
|
|
2453 |
msgid "Retweet"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: includes/B2S/Post/Item.php:685 includes/B2S/Post/Item.php:826
|
2457 |
+
msgid "Re-Share"
|
2458 |
+
msgstr ""
|
2459 |
+
|
2460 |
+
#: includes/B2S/Post/Item.php:691 includes/B2S/Post/Item.php:761 includes/B2S/Post/Item.php:832 includes/B2S/RePost/Item.php:127
|
2461 |
msgid "select all"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: includes/B2S/Post/Item.php:694
|
2465 |
msgid "show"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: includes/B2S/Post/Item.php:701 includes/B2S/Ship/Save.php:438
|
2469 |
msgid "Please see"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/B2S/Post/Item.php:707
|
2473 |
#, php-format
|
2474 |
msgid "sharing in progress by %s"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
+
#: includes/B2S/Post/Item.php:707
|
2478 |
#, php-format
|
2479 |
msgid "shared by %s"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: includes/B2S/Post/Item.php:728 includes/B2S/Post/Item.php:741
|
2483 |
msgid "You want to delete a publish post entry?"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: includes/B2S/Post/Item.php:729 includes/B2S/Post/Item.php:742
|
2487 |
msgid "delete from reporting"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: includes/B2S/Post/Item.php:764
|
|
|
|
|
|
|
|
|
2491 |
#, php-format
|
2492 |
msgid "is waiting to shared by %s"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
+
#: includes/B2S/Post/Item.php:794 includes/B2S/Ship/Save.php:408
|
2496 |
msgid "share"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: includes/B2S/Post/Item.php:802
|
2500 |
msgid "You want to delete your Social Media post?"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: includes/B2S/Post/Item.php:845
|
2504 |
#, php-format
|
2505 |
msgid "last modified by %s"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: includes/B2S/Post/Item.php:847
|
2509 |
msgid "is processed by the network"
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: includes/B2S/Post/Item.php:852
|
2513 |
#, php-format
|
2514 |
msgid "scheduled by %s"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: includes/B2S/Post/Item.php:857
|
2518 |
msgid "You want to edit your scheduled post?"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: includes/B2S/Post/Item.php:858
|
2522 |
msgid "edit"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/B2S/Post/Item.php:870
|
2526 |
msgid "delete scheduling"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
+
#: includes/B2S/RePost/Item.php:23
|
2530 |
+
msgid "Re-share your blog content automatically on your social media channels."
|
|
|
2531 |
msgstr ""
|
2532 |
|
2533 |
+
#: includes/B2S/RePost/Item.php:32
|
2534 |
+
msgid "Which content should be shared?"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
+
#: includes/B2S/RePost/Item.php:33
|
2538 |
+
msgid "your Blog2Social license to extend the quota for the number of posts in your queue."
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: includes/B2S/RePost/Item.php:35
|
2542 |
+
msgid "Number of posts"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: includes/B2S/RePost/Item.php:43
|
2546 |
+
msgid "share oldest posts first"
|
2547 |
msgstr ""
|
2548 |
|
2549 |
+
#: includes/B2S/RePost/Item.php:44
|
2550 |
+
msgid "customize"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: includes/B2S/RePost/Item.php:54
|
2554 |
+
#, php-format
|
2555 |
+
msgid "include <a href=\"%s\" target=\"_blank\">favorites posts</a> only"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: includes/B2S/RePost/Item.php:60
|
2559 |
+
msgid "When should your content be shared?"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: includes/B2S/RePost/Item.php:63 includes/B2S/RePost/Item.php:80
|
2563 |
+
msgid "Post every"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: includes/B2S/RePost/Item.php:63
|
2567 |
+
msgid "days at"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: includes/B2S/RePost/Item.php:68
|
2571 |
+
msgid "on"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: includes/B2S/RePost/Item.php:69 includes/B2S/Ship/Item.php:1125
|
2575 |
+
msgid "Mon"
|
|
|
|
|
|
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: includes/B2S/RePost/Item.php:70 includes/B2S/Ship/Item.php:1126
|
2579 |
+
msgid "Tue"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: includes/B2S/RePost/Item.php:71 includes/B2S/Ship/Item.php:1127
|
2583 |
+
msgid "Wed"
|
|
|
|
|
|
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:1128
|
2587 |
+
msgid "Thu"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:1129
|
2591 |
+
msgid "Fri"
|
|
|
|
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:1130
|
2595 |
+
msgid "Sat"
|
|
|
|
|
|
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1131
|
2599 |
+
msgid "Sun"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: includes/B2S/RePost/Item.php:82
|
2603 |
+
msgid "Monday"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: includes/B2S/RePost/Item.php:83
|
2607 |
+
msgid "Tuesday"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: includes/B2S/RePost/Item.php:84
|
2611 |
+
msgid "Wednesday"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: includes/B2S/RePost/Item.php:85
|
2615 |
+
msgid "Thursday"
|
|
|
|
|
|
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: includes/B2S/RePost/Item.php:86
|
2619 |
+
msgid "Friday"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: includes/B2S/RePost/Item.php:87
|
2623 |
+
msgid "Saturday"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: includes/B2S/RePost/Item.php:88
|
2627 |
+
msgid "Sunday"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: includes/B2S/RePost/Item.php:90
|
2631 |
+
msgid "at"
|
|
|
|
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: includes/B2S/RePost/Item.php:96
|
2635 |
+
msgid "at my best times"
|
|
|
|
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: includes/B2S/RePost/Item.php:103
|
2639 |
+
msgid "Where should your content be shared?"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: includes/B2S/RePost/Item.php:105
|
2643 |
+
msgid "Add to queue"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: includes/B2S/RePost/Item.php:120
|
2647 |
+
msgid "Need more?"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: includes/B2S/RePost/Item.php:123
|
2651 |
+
msgid "Queue"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: includes/B2S/RePost/Item.php:124
|
2655 |
+
msgid "Posts"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: includes/B2S/RePost/Item.php:128
|
2659 |
+
msgid "delete selected posts"
|
|
|
|
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: includes/B2S/RePost/Item.php:198
|
2663 |
+
msgid "Startdate"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: includes/B2S/RePost/Item.php:201
|
2667 |
+
msgid "Enddate"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: includes/B2S/RePost/Item.php:213
|
2671 |
+
msgid "Categories"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: includes/B2S/RePost/Item.php:232
|
2675 |
+
msgid "Authors"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: includes/B2S/Settings/Item.php:52 includes/B2S/Settings/Item.php:78 includes/B2S/Ship/Item.php:969
|
2679 |
+
msgid "Account"
|
|
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: includes/B2S/Settings/Item.php:61
|
2683 |
+
msgid "Timezone for Scheduling"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: includes/B2S/Settings/Item.php:61
|
2687 |
+
msgid "User"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: includes/B2S/Settings/Item.php:67
|
2691 |
+
msgid "Url Shortener"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: includes/B2S/Settings/Item.php:69
|
2695 |
+
msgid "no URL Shortener"
|
2696 |
+
msgstr ""
|
2697 |
+
|
2698 |
+
#: includes/B2S/Settings/Item.php:71 includes/B2S/Settings/Item.php:82
|
2699 |
+
msgid "Brand"
|
2700 |
+
msgstr ""
|
2701 |
+
|
2702 |
+
#: includes/B2S/Settings/Item.php:72 includes/B2S/Settings/Item.php:82
|
2703 |
+
msgid "Call-to-Action"
|
2704 |
+
msgstr ""
|
2705 |
+
|
2706 |
+
#: includes/B2S/Settings/Item.php:92
|
2707 |
+
msgid "change"
|
2708 |
+
msgstr ""
|
2709 |
+
|
2710 |
+
#: includes/B2S/Settings/Item.php:98
|
2711 |
+
msgid "Shortcodes"
|
2712 |
+
msgstr ""
|
2713 |
+
|
2714 |
+
#: includes/B2S/Settings/Item.php:99
|
2715 |
+
msgid "allow shortcodes in my post"
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: includes/B2S/Settings/Item.php:101 includes/B2S/Ship/Item.php:912
|
2719 |
+
msgid "Hashtags"
|
2720 |
+
msgstr ""
|
2721 |
+
|
2722 |
+
#: includes/B2S/Settings/Item.php:102
|
2723 |
+
msgid "include Wordpress tags as hashtags in my post"
|
2724 |
+
msgstr ""
|
2725 |
+
|
2726 |
+
#: includes/B2S/Settings/Item.php:106
|
2727 |
+
msgid "System"
|
2728 |
+
msgstr ""
|
2729 |
+
|
2730 |
+
#: includes/B2S/Settings/Item.php:107 includes/B2S/Settings/Item.php:126 includes/B2S/Settings/Item.php:153
|
2731 |
+
msgid "This is a global feature for your blog, which can only be edited by users with admin rights."
|
2732 |
+
msgstr ""
|
2733 |
+
|
2734 |
+
#: includes/B2S/Settings/Item.php:108
|
2735 |
+
msgid "activate Legacy mode"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: includes/B2S/Settings/Item.php:124
|
2739 |
msgid "Reset all page and post meta data"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: includes/B2S/Settings/Item.php:129
|
2743 |
msgid "Meta Tags Settings for Posts and Pages"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: includes/B2S/Settings/Item.php:130
|
2747 |
+
msgid "Add Open Graph meta tags to your shared posts or pages, required by Facebook and other social networks to display your post or page image, title and description correctly."
|
|
|
|
|
|
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: includes/B2S/Settings/Item.php:132
|
2751 |
+
msgid "Add Twitter Card meta tags to your shared posts or pages, required by Twitter to display your post or page image, title and description correctly."
|
|
|
|
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: includes/B2S/Settings/Item.php:155
|
2755 |
msgid "Frontpage Settings"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: includes/B2S/Settings/Item.php:157
|
2759 |
msgid "Check Settings with Sharing-Debugger"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: includes/B2S/Settings/Item.php:167
|
2763 |
+
msgid "Add the default Open Graph parameters for title, description and image you want Facebook to display, if you share the frontpage of your blog as link post (http://www.yourblog.com)"
|
|
|
|
|
|
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: includes/B2S/Settings/Item.php:171 includes/B2S/Settings/Item.php:192
|
2767 |
msgid "Description"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: includes/B2S/Settings/Item.php:172 includes/B2S/Settings/Item.php:193
|
2771 |
msgid "Image URL"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: includes/B2S/Settings/Item.php:174 includes/B2S/Settings/Item.php:195 includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Image.php:87
|
|
|
2775 |
msgid "Image upload / Media Gallery"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: includes/B2S/Settings/Item.php:177
|
2779 |
+
msgid "Please note: Facebook supports images with a minimum dimension of 200x200 pixels and an aspect ratio of 1:1."
|
|
|
|
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: includes/B2S/Settings/Item.php:183
|
2783 |
+
msgid "Add the default Twitter Card parameters for title, description and image you want Twitter to display, if you share the frontpage of your blog as link post (http://www.yourblog.com)"
|
|
|
|
|
|
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: includes/B2S/Settings/Item.php:186
|
2787 |
msgid "The default card type to use"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: includes/B2S/Settings/Item.php:188
|
2791 |
msgid "Summary"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: includes/B2S/Settings/Item.php:189
|
2795 |
msgid "Summary with large image"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: includes/B2S/Settings/Item.php:189
|
2799 |
msgid "(SMART)"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: includes/B2S/Settings/Item.php:198
|
2803 |
+
msgid "Please note: Twitter supports images with a minimum dimension of 144x144 pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The image will be cropped to a square. Twitter supports JPG, PNG, WEBP and GIF formats."
|
|
|
|
|
|
|
|
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: includes/B2S/Settings/Item.php:216
|
2807 |
msgid "Did you know?"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: includes/B2S/Settings/Item.php:217
|
2811 |
+
msgid "With Premium Pro, you can change the custom post format photo post or link post for each individual social media post and channel (profile, page, group)."
|
|
|
|
|
|
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: includes/B2S/Settings/Item.php:217
|
2815 |
msgid "Upgrade to Premium Pro now."
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: includes/B2S/Settings/Item.php:245
|
2819 |
msgid "The image will be changed"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: includes/B2S/Settings/Item.php:248 views/b2s/html/footer.php:129
|
2823 |
+
msgid "Insert white frames to show the whole image in your timeline. All image information will be shown in your timeline."
|
|
|
|
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: includes/B2S/Settings/Item.php:250 views/b2s/html/footer.php:112
|
2827 |
msgid ""
|
2828 |
+
"The link post format displays posts title, link address and the first one or two sentences of the post. The networks scan this information from your META or OpenGraph. PLEASE NOTE: If you want your link posts to display the selected image from the Blog2Social preview editor, "
|
2829 |
+
"please make sure you have activated the Social Meta Tags for Facebook and Twitter in your Blog2Social settings. You find these settings in the tab \"Social Meta Data\". If you don't select a specific post image, some networks display the first image detected on your page. The "
|
2830 |
+
"image links to your blog post."
|
|
|
|
|
|
|
|
|
|
|
2831 |
msgstr ""
|
2832 |
|
2833 |
+
#: includes/B2S/Settings/Item.php:259 views/b2s/html/footer.php:134
|
2834 |
+
msgid "The image preview will be cropped automatically to fit the default Instagram layout for your Instagram timeline. The image will be shown uncropped when opening the preview page for your Instagram post."
|
|
|
|
|
|
|
2835 |
msgstr ""
|
2836 |
|
2837 |
+
#: includes/B2S/Settings/Item.php:261 views/b2s/html/footer.php:117
|
2838 |
msgid ""
|
2839 |
+
"A photo or image post displays the selected image in the one-page preview of Blog2Social and your comment above the image. The image links to the image view on your image gallery in the respective network. Blog2Social adds the link to your post in your comment. The main "
|
2840 |
+
"benefit of photo posts is that your image is uploaded to your personal image albums or gallery. In Facebook, you can edit the albums name with a description of your choice."
|
|
|
|
|
|
|
|
|
2841 |
msgstr ""
|
2842 |
|
2843 |
#: includes/B2S/Ship/Image.php:27
|
2849 |
msgstr ""
|
2850 |
|
2851 |
#: includes/B2S/Ship/Image.php:32
|
2852 |
+
msgid "The networks Diigo, Bloglovin’ and Google My Business do not support the GIF image format and will display your standard image instead."
|
|
|
|
|
2853 |
msgstr ""
|
2854 |
|
2855 |
#: includes/B2S/Ship/Image.php:33
|
2856 |
+
msgid "By changing your image in the link post format it will be changed for all networks listed below. This also applies for all scheduled posts in this post format. "
|
|
|
|
|
|
|
2857 |
msgstr ""
|
2858 |
|
2859 |
#: includes/B2S/Ship/Image.php:33
|
2861 |
msgstr ""
|
2862 |
|
2863 |
#: includes/B2S/Ship/Image.php:37
|
2864 |
+
msgid "The best size for images in social media posts are between: 667-1000px x 523-1000px. Blog2Social will automatically resize your image according to network requirements."
|
|
|
|
|
|
|
2865 |
msgstr ""
|
2866 |
|
2867 |
#: includes/B2S/Ship/Image.php:61
|
2924 |
msgid "post format"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: includes/B2S/Ship/Item.php:340 includes/B2S/Ship/Item.php:1154
|
2928 |
msgid "Insert full-text"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: includes/B2S/Ship/Item.php:342 includes/B2S/Ship/Item.php:1156
|
2932 |
msgid "Delete text"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651 includes/B2S/Ship/Item.php:1020
|
2936 |
+
msgid "Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
|
|
|
|
|
|
|
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651 includes/B2S/Ship/Item.php:1020
|
2940 |
+
msgid "Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts."
|
|
|
|
|
|
|
|
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: includes/B2S/Ship/Item.php:349 includes/B2S/Ship/Item.php:651 includes/B2S/Ship/Item.php:1020
|
|
|
2944 |
msgid "Learn more about this"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
#: includes/B2S/Ship/Item.php:353
|
2948 |
+
msgid "Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups."
|
|
|
|
|
2949 |
msgstr ""
|
2950 |
|
2951 |
#: includes/B2S/Ship/Item.php:353
|
2953 |
msgstr ""
|
2954 |
|
2955 |
#: includes/B2S/Ship/Item.php:358
|
2956 |
+
msgid "Please keep in mind that users are not allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
|
|
|
|
|
|
2957 |
msgstr ""
|
2958 |
|
2959 |
#: includes/B2S/Ship/Item.php:358
|
2960 |
+
msgid "Violating these rules can result in suspending your account. Always vary your content with different images, comments, hashtags or handles to prevent duplicate posts."
|
|
|
|
|
|
|
2961 |
msgstr ""
|
2962 |
|
2963 |
#: includes/B2S/Ship/Item.php:378
|
2964 |
msgid "hide calendar"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: includes/B2S/Ship/Item.php:435 includes/B2S/Ship/Item.php:464 includes/B2S/Ship/Item.php:494 includes/B2S/Ship/Item.php:523 includes/B2S/Ship/Item.php:552 includes/B2S/Ship/Item.php:580 includes/B2S/Ship/Item.php:608 includes/B2S/Ship/Item.php:639
|
2968 |
+
#: includes/B2S/Ship/Item.php:662 includes/B2S/Ship/Item.php:683 includes/B2S/Ship/Item.php:704 includes/B2S/Ship/Item.php:725 includes/B2S/Ship/Item.php:746 includes/B2S/Ship/Item.php:767 includes/B2S/Ship/Item.php:777
|
|
|
|
|
|
|
|
|
|
|
|
|
2969 |
msgid "Write something about your post..."
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:509 includes/B2S/Ship/Item.php:539 includes/B2S/Ship/Item.php:567 includes/B2S/Ship/Item.php:595
|
2973 |
+
msgid "Info: Change Open Graph Meta tags image, title and description for this network"
|
|
|
|
|
|
|
|
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: includes/B2S/Ship/Item.php:453 includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:512 includes/B2S/Ship/Item.php:542 includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:598
|
2977 |
+
msgid "You want to change your link image, link title and link description for this network? Click here."
|
|
|
|
|
|
|
|
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: includes/B2S/Ship/Item.php:455 includes/B2S/Ship/Item.php:514 includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:572 includes/B2S/Ship/Item.php:600
|
|
|
|
|
2981 |
msgid "OG Meta title"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: includes/B2S/Ship/Item.php:456 includes/B2S/Ship/Item.php:515 includes/B2S/Ship/Item.php:545 includes/B2S/Ship/Item.php:573 includes/B2S/Ship/Item.php:601
|
|
|
|
|
2985 |
msgid "OG Meta description"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
#: includes/B2S/Ship/Item.php:478
|
2989 |
+
msgid "Please note: Twitter stores the Card parameters of a link for up to 7 days. Changes may not be immediately visible on Twitter."
|
|
|
|
|
2990 |
msgstr ""
|
2991 |
|
2992 |
#: includes/B2S/Ship/Item.php:480
|
2993 |
+
msgid "Info: Change Card Meta tags image, title and description for this network"
|
|
|
2994 |
msgstr ""
|
2995 |
|
2996 |
#: includes/B2S/Ship/Item.php:485
|
3002 |
msgstr ""
|
3003 |
|
3004 |
#: includes/B2S/Ship/Item.php:537
|
3005 |
+
msgid "Please note: XING stores the Open Graph parameters of a link for up to 7 days. Changes may not be immediately visible on XING."
|
|
|
|
|
3006 |
msgstr ""
|
3007 |
|
3008 |
#: includes/B2S/Ship/Item.php:793
|
3009 |
msgid "required"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: includes/B2S/Ship/Item.php:886
|
3013 |
msgid "Jobs & Projects"
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: includes/B2S/Ship/Item.php:887
|
3017 |
msgid "Events"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: includes/B2S/Ship/Item.php:888
|
3021 |
msgid "Classified Ads"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: includes/B2S/Ship/Item.php:890
|
3025 |
msgid "Offer"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: includes/B2S/Ship/Item.php:891
|
3029 |
msgid "Request"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: includes/B2S/Ship/Item.php:902
|
3033 |
msgid "The Headline..."
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: includes/B2S/Ship/Item.php:910
|
3037 |
#, php-format
|
3038 |
msgid "max. %s Tags"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: includes/B2S/Ship/Item.php:951
|
3042 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: includes/B2S/Ship/Item.php:970 views/b2s/partials/post-edit-modal.php:73
|
3046 |
msgid "Delay"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
+
#: includes/B2S/Ship/Item.php:980 includes/B2S/Ship/Item.php:981 includes/B2S/Ship/Item.php:982 includes/B2S/Ship/Item.php:983 views/b2s/partials/post-edit-modal.php:77 views/b2s/partials/post-edit-modal.php:78 views/b2s/partials/post-edit-modal.php:79
|
|
|
|
|
|
|
|
|
3050 |
#: views/b2s/partials/post-edit-modal.php:80
|
3051 |
msgid "min"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: includes/B2S/Ship/Item.php:988
|
3055 |
msgid "Add Retweet"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: includes/B2S/Ship/Item.php:1008
|
3059 |
msgid "Share Now"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: includes/B2S/Ship/Item.php:1013
|
3063 |
msgid "Schedule Recurrent Post"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: includes/B2S/Ship/Item.php:1049 views/b2s/partials/post-edit-modal.php:47
|
3067 |
msgid ""
|
3068 |
+
"Please note: Your account is connected via an old XING API that is no longer supported by XING after March 31. Please connect your XING profile, as well as your XING company pages (Employer branding profiles) and business pages with the new XING interface in the Blog2Social "
|
3069 |
+
"network settings. To do this, go to the Blog2Social Networks section and connect your XING accounts with the new XING."
|
|
|
|
|
|
|
|
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: includes/B2S/Ship/Item.php:1053 views/b2s/partials/post-edit-modal.php:51
|
3073 |
+
msgid "Please note: Google will shut down Google+ for all private accounts (profiles, pages, groups) on 2nd April 2019. You can find further information and the next steps, including how to download your photos and other content here:"
|
|
|
|
|
|
|
|
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: includes/B2S/Ship/Item.php:1056
|
3077 |
msgid "Repeats"
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: includes/B2S/Ship/Item.php:1057 includes/B2S/Ship/Item.php:1060
|
3081 |
msgid "Duration"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: includes/B2S/Ship/Item.php:1061
|
3085 |
msgid "Number of repeats"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: includes/B2S/Ship/Item.php:1062
|
3089 |
msgid "Day of month"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: includes/B2S/Ship/Item.php:1063
|
3093 |
msgid "Repeats every (days)"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: includes/B2S/Ship/Item.php:1065
|
3097 |
msgid "Start date"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: includes/B2S/Ship/Item.php:1066
|
3101 |
msgid "Time to publish"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: includes/B2S/Ship/Item.php:1075
|
3105 |
msgid "weekly"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: includes/B2S/Ship/Item.php:1076
|
3109 |
msgid "monthly"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: includes/B2S/Ship/Item.php:1077
|
3113 |
msgid "own period"
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: includes/B2S/Ship/Item.php:1083
|
3117 |
msgid "Week"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: includes/B2S/Ship/Item.php:1083
|
3121 |
msgid "Weeks"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: includes/B2S/Ship/Item.php:1092
|
3125 |
msgid "Month"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: includes/B2S/Ship/Item.php:1092
|
3129 |
msgid "Months"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: includes/B2S/Ship/Item.php:1112
|
3133 |
msgid "End Of Month"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: includes/B2S/Ship/Item.php:1117
|
3137 |
msgid "Timespan"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: includes/B2S/Ship/Item.php:1120 views/b2s/partials/post-edit-modal.php:63 views/b2s/partials/post-edit-modal.php:66
|
|
|
3141 |
msgid "Time"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: includes/B2S/Ship/Item.php:1138
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3145 |
msgid "add another post"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: includes/B2S/Ship/Item.php:1152
|
3149 |
msgid "Copy from original"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: includes/B2S/Ship/Item.php:1168
|
3153 |
msgid "Apply Settings To All Networks"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: includes/B2S/Ship/Item.php:1169
|
3157 |
msgid "Save as best time for this network"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
#: includes/B2S/Ship/Save.php:391
|
3161 |
+
msgid "For sharing your posts on personal Facebook Profiles you can use Facebook Instant Sharing"
|
|
|
|
|
3162 |
msgstr ""
|
3163 |
|
3164 |
#: includes/B2S/Ship/Save.php:391
|
3170 |
msgstr ""
|
3171 |
|
3172 |
#: includes/B2S/Ship/Save.php:394
|
3173 |
+
msgid "-To share your post immediately, click the \"Share\" button next to your selected Facebook profile below."
|
|
|
|
|
3174 |
msgstr ""
|
3175 |
|
3176 |
#: includes/B2S/Ship/Save.php:395
|
3177 |
msgid ""
|
3178 |
+
"-For scheduled posts, Blog2Social will save your post and move it to the \"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your scheduled date and time, your post will move to the \"Instant Sharing\" tab and you can click on \"Share\" to post it to your "
|
3179 |
+
"Facebook Profile instantly."
|
|
|
|
|
3180 |
msgstr ""
|
3181 |
|
3182 |
#: includes/B2S/Ship/Save.php:399
|
3183 |
+
msgid "For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
|
|
3184 |
msgstr ""
|
3185 |
|
3186 |
#: includes/B2S/Ship/Save.php:402
|
3187 |
+
msgid "-To share your post immediately, click the \"Share\" button next to your selected Google+ account below."
|
|
|
|
|
3188 |
msgstr ""
|
3189 |
|
3190 |
#: includes/B2S/Ship/Save.php:403
|
3191 |
msgid ""
|
3192 |
+
"-For scheduled posts, Blog2Social will save your post and move it to the \"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On your scheduled date and time, your post will move to the \"Instant Sharing\" tab and you can click on \"Share\" to post it to "
|
3193 |
+
"your account instantly."
|
|
|
|
|
3194 |
msgstr ""
|
3195 |
|
3196 |
#: includes/B2S/Ship/Save.php:404
|
3197 |
+
msgid "Please note: You post has to be marked as public to be posted in a group."
|
|
|
3198 |
msgstr ""
|
3199 |
|
3200 |
#: includes/B2S/Ship/Save.php:409
|
3241 |
msgid "We never store your data from your social media profiles"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: views/b2s/html/footer.php:8 views/prg/html/footer.php:8 views/prg/html/header.php:45
|
|
|
3245 |
msgid "Post"
|
3246 |
msgstr ""
|
3247 |
|
3266 |
msgstr ""
|
3267 |
|
3268 |
#: views/b2s/html/footer.php:56
|
3269 |
+
msgid "You can select different combinations of networks and save them for different sharing purposes."
|
|
|
|
|
3270 |
msgstr ""
|
3271 |
|
3272 |
#: views/b2s/html/footer.php:59
|
3273 |
msgid ""
|
3274 |
+
"Blog2Social Premium PRO allows you to save your preferred social network accounts into network collections for a faster future access. You can assign individual names for each network collection so you can easily access them for your next social sharing activitiy. Use "
|
3275 |
+
"specific network collections for recurring sharing purposes or campaigns, e.g. for initial sharing of new blog posts, for re-sharing evergreen content or for sharing images or videos. Bundle your preferred social network accounts into a network collection for a faster future "
|
3276 |
+
"access. Assign a name to each network collection so you can easily access them for your next social sharing activitiy. You can also connect multiple profiles, pages and groups per network in one network collection."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3277 |
msgstr ""
|
3278 |
|
3279 |
#: views/b2s/html/footer.php:62
|
3281 |
msgstr ""
|
3282 |
|
3283 |
#: views/b2s/html/footer.php:64
|
3284 |
+
msgid "Post on LinkedIn pages, XING pages and groups, as well as Facebook pages and groups"
|
|
|
|
|
3285 |
msgstr ""
|
3286 |
|
3287 |
#: views/b2s/html/footer.php:66
|
3288 |
+
msgid "Schedule your posts at the best times on each network: for one time, multiple times or recurrently"
|
|
|
|
|
3289 |
msgstr ""
|
3290 |
|
3291 |
#: views/b2s/html/footer.php:69
|
3292 |
+
msgid "Reporting and calendar: keep track of your published and scheduled social media posts"
|
|
|
|
|
3293 |
msgstr ""
|
3294 |
|
3295 |
#: views/b2s/html/footer.php:71 views/b2s/html/footer.php:89
|
3301 |
msgstr ""
|
3302 |
|
3303 |
#: views/b2s/html/footer.php:78
|
3304 |
+
msgid "With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as well as XING groups."
|
|
|
|
|
3305 |
msgstr ""
|
3306 |
|
3307 |
#: views/b2s/html/footer.php:81
|
3333 |
msgstr ""
|
3334 |
|
3335 |
#: views/b2s/html/footer.php:107
|
3336 |
+
msgid "Select link post or image post format to define your preferred custom post format for Twitter, LinkedIn, and Facebook."
|
|
|
|
|
3337 |
msgstr ""
|
3338 |
|
3339 |
#: views/b2s/html/footer.php:116
|
3341 |
msgstr ""
|
3342 |
|
3343 |
#: views/b2s/html/footer.php:124
|
3344 |
+
msgid "For Instagram, you can select \"image with frame\" or \"image cut out\" as your preferred custom post format."
|
|
|
|
|
3345 |
msgstr ""
|
3346 |
|
3347 |
#: views/b2s/html/footer.php:174
|
3358 |
|
3359 |
#: views/b2s/html/footer.php:195
|
3360 |
msgid ""
|
3361 |
+
"Blog2Social provides you with a pre-configured time-scheme to automatically schedule your social media posts for the best times to share on each social network based on recent research. Click Load Best Times in the preview editor to schedule your posts automatically for the "
|
3362 |
+
"best times to post on each social network."
|
|
|
|
|
|
|
3363 |
msgstr ""
|
3364 |
|
3365 |
#: views/b2s/html/footer.php:197
|
3366 |
msgid ""
|
3367 |
+
"You can also configure your own individual time settings for each of your social media connections to post your content on social media when your followers are online. By configuring an individual cross-posting schedule for all your networks you can set up an effective social "
|
3368 |
+
"media posting plan to reach as many followers as possible."
|
|
|
|
|
|
|
3369 |
msgstr ""
|
3370 |
|
3371 |
#: views/b2s/html/footer.php:199
|
3372 |
+
msgid "Click Load My Time Settings in the preview editor to schedule your posts automatically for your individually chosen best times."
|
|
|
|
|
3373 |
msgstr ""
|
3374 |
|
3375 |
#: views/b2s/html/footer.php:201
|
3376 |
+
msgid "You can always edit the predefined times in the preview editor for any post or network and save your new settings as default for future use."
|
|
|
|
|
3377 |
msgstr ""
|
3378 |
|
3379 |
#: views/b2s/html/footer.php:203
|
3380 |
+
msgid "Learn how to set up and apply individual best times to your social media scheduling and auto-poster."
|
|
|
|
|
3381 |
msgstr ""
|
3382 |
|
3383 |
#: views/b2s/html/footer.php:237
|
3385 |
msgstr ""
|
3386 |
|
3387 |
#: views/b2s/html/footer.php:240
|
3388 |
+
msgid "Retweets are the recommended way to reshare the same Tweets across Twitter accounts in accordance with Twitter new rules. You can now schedule multiple Retweets for an original Tweet that you are planning right from your WordPress."
|
|
|
|
|
|
|
|
|
3389 |
msgstr ""
|
3390 |
|
3391 |
#: views/b2s/html/footer.php:243
|
3392 |
+
msgid "If Retweets are enabled, every Original-Tweet you schedule in this step will be retweeted by the selected Twitter accounts. If, for example, 3 Original-Tweets are scheduled, every single Tweet will trigger a Retweet for the selected Twitter accounts."
|
|
|
|
|
|
|
|
|
3393 |
msgstr ""
|
3394 |
|
3395 |
#: views/b2s/html/footer.php:247
|
3402 |
|
3403 |
#: views/b2s/html/footer.php:279
|
3404 |
msgid ""
|
3405 |
+
"You can use Bit.ly links to shorten the URL of your links and to track the performance of your links in your social media networks. Activate Bit.ly in the Blog2Social settings and link it to your Bit.ly account. Your social media posts will then be shared with your Bit.ly "
|
3406 |
+
"links and you can monitor the success of your posts in your Bit.ly account. Please note: Reddit, Pinterest and Medium do not allow Bit.ly shortlinks. Blog2Social will apply the regular URL for these networks."
|
|
|
|
|
|
|
|
|
|
|
3407 |
msgstr ""
|
3408 |
|
3409 |
#: views/b2s/html/footer.php:290
|
3411 |
msgstr ""
|
3412 |
|
3413 |
#: views/b2s/html/footer.php:293
|
3414 |
+
msgid "Select the content that will be automatically pre-filled in your Twitter posts. If you have ticked the box \"include WordPress tags as hashtags in my post\", hashtags are automatically added in the drop-down menu."
|
|
|
|
|
|
|
3415 |
msgstr ""
|
3416 |
|
3417 |
#: views/b2s/html/footer.php:349
|
3418 |
+
msgid "Share imported posts with the Auto Poster: Posts that you import via RSS feeds and plugins can be shared automatically on your social media channels."
|
|
|
|
|
3419 |
msgstr ""
|
3420 |
|
3421 |
#: views/b2s/html/footer.php:350
|
3422 |
#, php-format
|
3423 |
+
msgid "<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for imported posts</a>"
|
3424 |
+
msgstr ""
|
3425 |
+
|
3426 |
+
#: views/b2s/html/footer.php:385
|
3427 |
+
msgid "Blog2Social: Re-Share Posts"
|
3428 |
msgstr ""
|
3429 |
|
3430 |
#: views/b2s/html/footer.php:389
|
3431 |
+
msgid ""
|
3432 |
+
"Keep your social media feed updated automatically with your best content and save valuable time by reviving your evergreen content regularly. Automate your resharing process with Blog2Social, so you can use your time to create new content and interact with your community."
|
3433 |
+
msgstr ""
|
3434 |
+
|
3435 |
+
#: views/b2s/html/footer.php:390
|
3436 |
+
#, php-format
|
3437 |
+
msgid "<a target=\"_blank\" href=\"%s\">More information</a>"
|
3438 |
+
msgstr ""
|
3439 |
+
|
3440 |
+
#: views/b2s/html/footer.php:429
|
3441 |
msgid "Social Meta Tags Settings"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: views/b2s/html/footer.php:432 views/b2s/html/footer.php:516
|
3445 |
msgid "Change image, title and description for your post on this network"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: views/b2s/html/footer.php:438
|
3449 |
msgid ""
|
3450 |
+
"Facebook has changed its policy for posting link posts via plugins or web applications. Facebook does no longer display the featured or selected image for your blog post, but only images defined in the Open Graph (OG) Meta Tags of your blog post. If you have not defined any "
|
3451 |
+
"OG Meta Tags, Facebook displays a random image from your blog post or blog site. If you have defined an image in your blog post OG Meta Tags that does not meet the image size requirements, Facebook also does not displayed your selected image, but a random image. Please make "
|
3452 |
+
"sure that your image meets the image size requirements for Facebook."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: views/b2s/html/footer.php:440
|
3456 |
msgid ""
|
3457 |
+
"With Blog2Social you can select a featured image or any image you select to be displayed with your link post. Blog2Social will automatically write the required parameter in the OG Meta Tags of your blog post, so that your selected image will be displayed with your link post. "
|
3458 |
+
"If you don't want Blog2Social to do that, because you have defined your own OG meta tags, please uncheck this box. Please note that you cannot select a specific image for your link post without OG meta tags."
|
3459 |
+
msgstr ""
|
3460 |
+
|
3461 |
+
#: views/b2s/html/footer.php:443
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3462 |
msgid ""
|
3463 |
+
"Twitter has changed its policy for posting link posts via plugins or web applications. Twitter does no longer display the featured or selected image for your blog post, but only images defined in the Twitter Card Meta Tags of your blog post. If you have not defined any "
|
3464 |
+
"Twitter Card Meta Tags, Twitter displays a random image from your blog post or blog site. If you have defined an image in your blog post Twitter Card Meta Tags that does not meet the image size requirements, Twitter displays a white space for the image of your link post. "
|
3465 |
+
"Please make sure that your image meets the image size requirements for Twitter."
|
|
|
|
|
|
|
|
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: views/b2s/html/footer.php:445
|
3469 |
msgid ""
|
3470 |
+
"With Blog2Social you can select a featured image or any image you select to be displayed with your link post. Blog2Social will automatically write the required parameter in the Twitter Card meta tags of your blog post, so that your selected image will be displayed with your "
|
3471 |
+
"link post. If you don't want Blog2Social to do that, because you have defined your own Twitter Card meta tags, please uncheck this box. Please note that you cannot select a specific image for your link post without Twitter Card meta tags."
|
3472 |
+
msgstr ""
|
3473 |
+
|
3474 |
+
#: views/b2s/html/footer.php:448
|
3475 |
+
msgid "You can change the image, title and description for your post on Facebook, by editing the following fields for"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
+
#: views/b2s/html/footer.php:451 views/b2s/html/footer.php:466
|
3479 |
msgid "image"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
+
#: views/b2s/html/footer.php:452 views/b2s/html/footer.php:467
|
3483 |
msgid "title"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: views/b2s/html/footer.php:453 views/b2s/html/footer.php:468
|
3487 |
msgid "description"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: views/b2s/html/footer.php:455
|
3491 |
+
msgid "Blog2Social will automatically write these information in the Facebook Open Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
|
|
|
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: views/b2s/html/footer.php:458
|
3495 |
msgid ""
|
3496 |
+
"Please note: If this post has already been shared or scheduled previously, your current changes will also affect the look of previously shared or scheduled posts, as Facebook always refers to the current Open Graph meta tags information and automatically updated all existing "
|
3497 |
+
"posts."
|
|
|
|
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: views/b2s/html/footer.php:460
|
3501 |
#, php-format
|
3502 |
+
msgid "Please note: Your changes will have no effect on your social media posts on Facebook, if you have manually unchecked the Meta Tag options for Facebook in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
|
|
|
|
|
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: views/b2s/html/footer.php:463
|
3506 |
+
msgid "You can change the image, title and description for your post on Twitter, by editing the following fields for"
|
|
|
|
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: views/b2s/html/footer.php:470
|
3510 |
+
msgid "Blog2Social will automatically write these information in the Twitter Card Meta Tags for Image, Title and Description of your blog post."
|
|
|
|
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: views/b2s/html/footer.php:473
|
3514 |
msgid ""
|
3515 |
+
"Please note: If this post was previously shared or scheduled, your current changes will also affect the look of previously shared or scheduled posts, as Twitter will always pull the most up-to-date information from the Twitter Card tags. If this post has already been shared, "
|
3516 |
+
"it may take up to 7 days for Twitter to update your current changes."
|
|
|
|
|
|
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: views/b2s/html/footer.php:475
|
3520 |
#, php-format
|
3521 |
+
msgid "Please note: Your changes will have no effect on your social media posts on Twitter, if you have manually unchecked the Meta Tag options for Twitter in your <a target=\"_blank\" href=\"%s\">settings</a>"
|
|
|
|
|
|
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: views/b2s/html/footer.php:482
|
3525 |
msgid "You want to change the image, title and description for your post?"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: views/b2s/html/footer.php:521
|
3529 |
msgid ""
|
3530 |
+
"You are currently sharing this post as image post. Changes to title and description Meta Tag parameters will only be supported for link post formats. Please change your post format to link post to make individual changes to the title and description for your post preview."
|
|
|
|
|
|
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: views/b2s/html/footer.php:524
|
3534 |
#, php-format
|
3535 |
+
msgid "Your changes will have no effect on your social media posts on Facebook, if you have manually unchecked the Meta Tag options for Facebook in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
|
|
|
|
|
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: views/b2s/html/footer.php:527
|
3539 |
#, php-format
|
3540 |
+
msgid "Your changes will have no effect on your social media posts on Twitter, if you have manually unchecked the Meta Tag options for Twitter in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
|
|
|
|
|
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: views/b2s/html/header.php:40
|
3544 |
+
msgid "To use all features of Blog2Social, PHP version 5.5.3 or higher is required. Our support assists you as of PHP version 5.5.3. See also:"
|
|
|
|
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: views/b2s/html/header.php:41 views/b2s/html/header.php:48
|
3548 |
msgid "Blog2Social Troubleshooting-Tool"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: views/b2s/html/header.php:47
|
3552 |
+
msgid "WordPress uses heartbeats by default, Blog2Social as well. Please enable heartbeats for using Blog2Social! See also:"
|
|
|
|
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: views/b2s/html/header.php:58 views/prg/html/header.php:39
|
3556 |
msgid "The link you followed has expired. Please refresh your page."
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: views/b2s/html/header.php:65
|
3560 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: views/b2s/html/header.php:72
|
3564 |
msgid "Autoposter limit has been reached"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: views/b2s/html/header.php:72
|
3568 |
msgid "Your daily limit for posting automatically has been reached."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
#: views/b2s/html/header.php:79
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3572 |
msgid "You have deleted all meta data for posts and pages successfully."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: views/b2s/html/header.php:84
|
3576 |
msgid "The page and post meta data could not be removed."
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: views/b2s/html/header.php:90
|
3580 |
+
msgid "You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta tags from Yoast SEO."
|
|
|
|
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: views/b2s/html/header.php:96
|
3584 |
+
msgid "You currently have both Blog2Social Social Meta Tags and All in One SEO Pack plugins active. To make sure that your Social Meta Tags are set correctly, please deactivate All in One Seo Social Meta settings. If they are already deactivated, you can ignore this message."
|
|
|
|
|
|
|
|
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: views/b2s/html/header.php:102
|
3588 |
msgid ""
|
3589 |
+
"Blog2Social has detected another plugin that is setting Social Meta tags for your blog posts. To ensure that your Social Meta tags are set correctly for your social media posts shared with Blog2Social, please deactivate the Facebook Open Graph and Twitter Card Tags settings "
|
3590 |
+
"in your other plugins."
|
|
|
|
|
3591 |
msgstr ""
|
3592 |
|
3593 |
+
#: views/b2s/html/header.php:109
|
3594 |
msgid "This entry could not be removed. It's not yours!"
|
3595 |
msgstr ""
|
3596 |
|
3597 |
+
#: views/b2s/html/header.php:114
|
3598 |
msgid "This entry was removed successfully."
|
3599 |
msgstr ""
|
3600 |
|
3601 |
+
#: views/b2s/html/header.php:119
|
3602 |
msgid "This post was edited successfully."
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: views/b2s/html/header.php:128
|
3606 |
msgid "Post was scheduled successfully on your blog!"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: views/b2s/html/header.php:130
|
3610 |
msgid "Post is published successfully on your blog!"
|
3611 |
msgstr ""
|
3612 |
|
3613 |
+
#: views/b2s/html/header.php:142
|
3614 |
msgid "Saved as draft"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
+
#: views/b2s/html/header.php:148
|
3618 |
msgid "Could not save draft"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
+
#: views/b2s/html/header.php:156
|
3622 |
msgid "Your authorization was successful."
|
3623 |
msgstr ""
|
3624 |
|
3625 |
+
#: views/b2s/html/header.php:161
|
3626 |
msgid "Your profile was saved successful."
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: views/b2s/html/header.php:166
|
3630 |
msgid "Your profile could not be saved."
|
3631 |
msgstr ""
|
3632 |
|
3633 |
+
#: views/b2s/html/header.php:171
|
3634 |
msgid "Your authorization could not be removed."
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: views/b2s/html/header.php:176
|
3638 |
msgid "Your authorization has been removed successfully."
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: views/b2s/html/header.php:181
|
3642 |
msgid "Thank you! Your feedback has been received."
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: views/b2s/html/header.php:186
|
3646 |
msgid "Your feedback could not be delivered."
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: views/b2s/html/header.php:193 views/b2s/html/header.php:208
|
3650 |
msgid "Your settings were successfully saved."
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: views/b2s/html/header.php:198
|
3654 |
msgid "Your settings could not be saved."
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: views/b2s/html/header.php:203
|
3658 |
+
msgid "Your settings could not be saved, because you have auto-posting enabled but no social networks selected."
|
3659 |
+
msgstr ""
|
3660 |
+
|
3661 |
+
#: views/b2s/html/header.php:215
|
3662 |
+
msgid "No posts found. Please try again with different filter options."
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: views/b2s/html/header.php:220
|
3666 |
+
msgid "Your limit for your quota of posts in your queue has been reached. Please detele posts from your queue before you add more"
|
3667 |
+
msgstr ""
|
3668 |
+
|
3669 |
+
#: views/b2s/html/header.php:220
|
3670 |
+
msgid " or upgade your Blog2Social license to extend your quota."
|
3671 |
+
msgstr ""
|
3672 |
+
|
3673 |
+
#: views/b2s/html/header.php:231
|
3674 |
msgid "RATE IT!"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: views/b2s/html/header.php:232
|
3678 |
#, php-format
|
3679 |
+
msgid "Hi, we noticed you just shared your %s. blog post with Blog2Social - that's awesome! Could you please do us a favor and give it a 5-star rating on WordPress? Just to help us spread the word and boost our motivation."
|
|
|
|
|
|
|
3680 |
msgstr ""
|
3681 |
|
3682 |
+
#: views/b2s/html/header.php:236
|
3683 |
msgid "Ok, you deserve it"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: views/b2s/html/header.php:239
|
3687 |
msgid "Nope, maybe later"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: views/b2s/html/header.php:242
|
3691 |
msgid "I already did it"
|
3692 |
msgstr ""
|
3693 |
|
3694 |
+
#: views/b2s/html/header.php:256
|
3695 |
msgid "Start your free 30-day-Premium-trial"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: views/b2s/html/header.php:258
|
3699 |
msgid ""
|
3700 |
+
"Check out Blog2Social Premium with more awesome features for scheduling and sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-days for free. The trial is free of charge, without any obligations, no automatic subscription. Basic features of the Free "
|
3701 |
+
"Version are free forever."
|
|
|
|
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: views/b2s/html/header.php:262
|
3705 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: views/b2s/html/header.php:274
|
3709 |
msgid "Your free Blog2Social Premium trial version is activated for "
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: views/b2s/html/header.php:277
|
3713 |
msgid " Days"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: views/b2s/html/header.php:277
|
3717 |
msgid " today"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: views/b2s/html/header.php:281 views/b2s/html/header.php:300
|
3721 |
msgid ""
|
3722 |
+
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for "
|
3723 |
+
"sharing. Save multiple combinations of networks for different sharing purposes. Start from only $5.75 per month to benefit from PREMIUM features."
|
|
|
|
|
|
|
|
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: views/b2s/html/header.php:284
|
3727 |
msgid "Upgrade to PREMIUM"
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: views/b2s/html/header.php:285 views/b2s/html/header.php:304
|
3731 |
msgid "I need some more time to decide"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: views/b2s/html/header.php:296
|
3735 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: views/b2s/html/header.php:297
|
3739 |
msgid "We hope you liked Blog2Social Premium."
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: views/b2s/html/header.php:303
|
3743 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: views/b2s/html/header.php:305
|
3747 |
msgid "Did you miss something? Tell us!"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: views/b2s/html/header.php:320
|
3751 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: views/b2s/html/header.php:326
|
3755 |
+
msgid "The free trial can not be started. This blog has been already registered for the free trial."
|
|
|
|
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: views/b2s/html/header.php:329
|
3759 |
msgid "Social Media Auto-Posting"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: views/b2s/html/header.php:331
|
3763 |
msgid "Share on multiple accounts per network"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: views/b2s/html/header.php:332
|
3767 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: views/b2s/html/header.php:333
|
3771 |
msgid "Reporting with links to all published social media posts"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: views/b2s/html/header.php:340 views/prg/html/form.php:91 views/prg/html/form.php:100 views/prg/html/form.php:168 views/prg/html/form.php:177
|
|
|
|
|
3775 |
msgid "First Name"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: views/b2s/html/header.php:344 views/prg/html/form.php:92 views/prg/html/form.php:103 views/prg/html/form.php:169 views/prg/html/form.php:180
|
|
|
|
|
3779 |
msgid "Last Name"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: views/b2s/html/header.php:350
|
3783 |
#, php-format
|
3784 |
+
msgid "By creating an account, you agree to Blog2Social's <a target=\"_blank\" href=\"%s\">Conditions of Use</a>"
|
|
|
|
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: views/b2s/html/header.php:351
|
3788 |
#, php-format
|
3789 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
3790 |
msgstr ""
|
3791 |
|
3792 |
+
#: views/b2s/html/header.php:358
|
3793 |
msgid "No credit card required"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: views/b2s/html/header.php:362
|
3797 |
msgid "Get Started"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: views/b2s/html/header.php:388
|
3801 |
msgid "The license has been successfully activated."
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: views/b2s/html/header.php:404
|
3805 |
msgid "Your entered License Key is invalid. Please contact support!"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: views/b2s/html/header.php:420
|
3809 |
msgid "Your license key has reached the maximum number of users."
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: views/b2s/html/header.php:436
|
3813 |
msgid "Something went wrong on our side. Please contact support!"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: views/b2s/html/header.php:445
|
3817 |
msgid "OK"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: views/b2s/html/header.php:461
|
3821 |
msgid "We updated our Privacy Policy"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: views/b2s/html/header.php:475
|
3825 |
msgid "Blog2Social is a service of Adenion GmbH"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: views/b2s/html/header.php:476
|
3829 |
msgid "I agree to the Adenion Privacy Policy"
|
3830 |
msgstr ""
|
3831 |
|
3842 |
msgstr ""
|
3843 |
|
3844 |
#: views/b2s/html/sidebar.php:69
|
3845 |
+
msgid "Share Posts"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: views/b2s/html/sidebar.php:87
|
3849 |
msgid "Social Media Post"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: views/b2s/html/sidebar.php:91
|
3853 |
msgid "Create Post"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: views/b2s/html/sidebar.php:106
|
3857 |
msgid "Content Library"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: views/b2s/html/sidebar.php:110
|
3861 |
msgid "all Posts"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
+
#: views/b2s/html/sidebar.php:144
|
3865 |
msgid "Upgrade License"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: views/b2s/html/sidebar.php:149
|
3869 |
msgid "Plans & Prices"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: views/b2s/html/sidebar.php:166
|
3873 |
+
msgid "If you like Blog2Social, please give us a 5 star rating. If there is anything that does not work for you, please contact us!"
|
|
|
|
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: views/b2s/html/sidebar.php:180
|
3877 |
msgid "Blog2Social Blog News"
|
3878 |
msgstr ""
|
3879 |
|
3882 |
msgstr ""
|
3883 |
|
3884 |
#: views/b2s/partials/plugin-deactivate-modal.php:13
|
3885 |
+
msgid "Do you want Blog2Social to delete all your scheduled social media posts? Your scheduled posts will no longer be sent to your social networks."
|
|
|
|
|
3886 |
msgstr ""
|
3887 |
|
3888 |
#: views/b2s/partials/plugin-deactivate-modal.php:14
|
3989 |
msgid "Mr."
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: views/prg/html/form.php:107 views/prg/html/form.php:110 views/prg/html/form.php:184 views/prg/html/form.php:187
|
|
|
3993 |
msgid "Street"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: views/prg/html/form.php:108 views/prg/html/form.php:113 views/prg/html/form.php:185 views/prg/html/form.php:190
|
|
|
3997 |
msgid "Number"
|
3998 |
msgstr ""
|
3999 |
|
4000 |
+
#: views/prg/html/form.php:117 views/prg/html/form.php:120 views/prg/html/form.php:194 views/prg/html/form.php:197
|
|
|
4001 |
msgid "Zip Code"
|
4002 |
msgstr ""
|
4003 |
|
4004 |
+
#: views/prg/html/form.php:118 views/prg/html/form.php:123 views/prg/html/form.php:195 views/prg/html/form.php:200
|
|
|
4005 |
msgid "City"
|
4006 |
msgstr ""
|
4007 |
|
4009 |
msgid "Country"
|
4010 |
msgstr ""
|
4011 |
|
4012 |
+
#: views/prg/html/form.php:135 views/prg/html/form.php:137 views/prg/html/form.php:212 views/prg/html/form.php:214
|
|
|
4013 |
msgid "Phone"
|
4014 |
msgstr ""
|
4015 |
|
4016 |
+
#: views/prg/html/form.php:147 views/prg/html/form.php:149 views/prg/html/form.php:224 views/prg/html/form.php:226
|
|
|
4017 |
msgid "Website"
|
4018 |
msgstr ""
|
4019 |
|
4038 |
msgstr ""
|
4039 |
|
4040 |
#: views/prg/html/header.php:28
|
4041 |
+
msgid "Unfortunately, your request cannot be processed by Blog2Social. Please try again!"
|
|
|
|
|
4042 |
msgstr ""
|
4043 |
|
4044 |
#: views/prg/html/header.php:34
|
4047 |
|
4048 |
#: views/prg/html/header.php:53
|
4049 |
msgid ""
|
4050 |
+
"PR-Gateway offers a paid online distribution service for submitting press releases, articles and social media news to more than 250 news sites, special interest websites and social news sites. If your blog posts provide trade or industry information or expert articles (no "
|
4051 |
+
"advertising), you may submit them to PR-Gateway to turn them into valid online press releases or online articles and select a specific choice of websites and services to publish your post."
|
|
|
|
|
|
|
|
|
|
|
4052 |
msgstr ""
|
4053 |
|
4054 |
#: views/prg/html/header.php:54
|
4059 |
msgid "Logout"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: includes/B2S/Support/Check/System.php:45
|
4063 |
msgid "or higher"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
+
#: includes/B2S/Support/Check/System.php:66 includes/B2S/Support/Check/System.php:84
|
|
|
4067 |
msgid "resolve conflict"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
+
#: includes/B2S/Support/Check/System.php:91
|
4071 |
msgid "Plugin Warnings:"
|
4072 |
msgstr ""
|
4073 |
|
4076 |
msgstr ""
|
4077 |
|
4078 |
#. Description of the plugin
|
4079 |
+
msgid "Auto publish, schedule & share posts on social media: Facebook, Twitter, XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
|
|
|
|
4080 |
msgstr ""
|
4081 |
|
4082 |
#. URI of the plugin
|
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, sharethis, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post,
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
-
Tested up to: 5.
|
8 |
-
Stable tag: 6.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -18,7 +18,7 @@ Blog2Social automatically creates social media posts for your content and auto-p
|
|
18 |
|
19 |
_Compatible with WooCommerce, Gutenberg Editor, Hummingbird & Bitly._
|
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")).
|
@@ -62,7 +62,7 @@ All these features are included in Blog2Social free. If you want to take your so
|
|
62 |
Try Blog2Social Premium with [free 30-day-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Try Blog2Social Premium for free") (without any obligations, no automatic subscription).
|
63 |
|
64 |
|
65 |
-
|
66 |
|
67 |
**#1 Easy Social Media Scheduling** – Auto-Post and Auto-Schedule your posts with a pre-defined best time schedule for each social network or define your own best times.
|
68 |
|
@@ -104,9 +104,14 @@ Blog2Social automatically adds Open Graph and Twitter Card tags to your blog pos
|
|
104 |
Add **UTM parameters** to URLs to enable **tracking of your social media campaigns via Google Analytics**. You can also add **other URL parameters**, for example, for Adobe Analytics or IBM Cognos Analytics.
|
105 |
|
106 |
|
107 |
-
**#9
|
108 |
|
109 |
-
|
|
|
|
|
|
|
|
|
|
|
110 |
**Download Blog2Social and [start your free 30-day-Premium-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Start your free Blog2Social Premium Trial")**
|
111 |
|
112 |
|
@@ -213,6 +218,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
213 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
214 |
|
215 |
== Changelog ==
|
|
|
|
|
216 |
= 6.1.2 =
|
217 |
Usability Optimization
|
218 |
= 6.1.1 =
|
@@ -269,6 +276,8 @@ Usability Optimization
|
|
269 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
270 |
|
271 |
== Upgrade Notice ==
|
|
|
|
|
272 |
= 6.1.2 =
|
273 |
Usability Optimization
|
274 |
= 6.1.1 =
|
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, sharethis, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post, 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
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
+
Tested up to: 5.4
|
8 |
+
Stable tag: 6.2.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
18 |
|
19 |
_Compatible with WooCommerce, Gutenberg Editor, Hummingbird & Bitly._
|
20 |
|
21 |
+
* Version 6.2: Re-Share and Re-Schedule posts automatically, Sniply
|
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")).
|
62 |
Try Blog2Social Premium with [free 30-day-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Try Blog2Social Premium for free") (without any obligations, no automatic subscription).
|
63 |
|
64 |
|
65 |
+
10 REASONS FOR CHOOSING BLOG2SOCIAL PREMIUM
|
66 |
|
67 |
**#1 Easy Social Media Scheduling** – Auto-Post and Auto-Schedule your posts with a pre-defined best time schedule for each social network or define your own best times.
|
68 |
|
104 |
Add **UTM parameters** to URLs to enable **tracking of your social media campaigns via Google Analytics**. You can also add **other URL parameters**, for example, for Adobe Analytics or IBM Cognos Analytics.
|
105 |
|
106 |
|
107 |
+
**#9 Re-share and re-schedule old posts automatically** - Revive your posts
|
108 |
|
109 |
+
Keep your social media feed updated automatically with awesome content and save valuable time by reviving your evergreen content regularly. **Automate your resharing** process with Blog2Social, so you can use your time to create new content and interact with your community.
|
110 |
+
|
111 |
+
|
112 |
+
**#10 There is much more to discover** – Try Blog2Social to check out all the features
|
113 |
+
|
114 |
+
Use the **Bitly, Rebrandly or Sniply shortener** to track the performance of your links. Schedule **Retweets for Twitter.** Discover many more features:
|
115 |
**Download Blog2Social and [start your free 30-day-Premium-trial](https://www.blog2social.com/en/plugin/wordpress/premium-trial/ "Start your free Blog2Social Premium Trial")**
|
116 |
|
117 |
|
218 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
219 |
|
220 |
== Changelog ==
|
221 |
+
= 6.2.0 =
|
222 |
+
Usability Optimization, Snip.ly integration, Re-poster
|
223 |
= 6.1.2 =
|
224 |
Usability Optimization
|
225 |
= 6.1.1 =
|
276 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
277 |
|
278 |
== Upgrade Notice ==
|
279 |
+
= 6.2.0 =
|
280 |
+
Usability Optimization, Snip.ly integration, Re-poster
|
281 |
= 6.1.2 =
|
282 |
Usability Optimization
|
283 |
= 6.1.1 =
|
views/b2s/autopost.php
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
+
require_once B2S_PLUGIN_DIR . 'includes/B2S/AutoPost/Item.php';
|
4 |
+
require_once B2S_PLUGIN_DIR . 'includes/Options.php';
|
5 |
+
$autoPostItem = new B2S_AutoPost_Item();
|
6 |
+
?>
|
7 |
+
|
8 |
+
<div class="b2s-container">
|
9 |
+
<div class=" b2s-inbox col-md-12 del-padding-left">
|
10 |
+
<div class="col-md-9 del-padding-left del-padding-right">
|
11 |
+
<!--Header|Start - Include-->
|
12 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/header.php'); ?>
|
13 |
+
<!--Header|End-->
|
14 |
+
<div class="clearfix"></div>
|
15 |
+
<!--Content|Start-->
|
16 |
+
<div class="panel panel-group b2s-upload-image-no-permission" style="display:none;">
|
17 |
+
<div class="panel-body">
|
18 |
+
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('You need a higher user role to upload an image on this blog. Please contact your administrator.', 'blog2social'); ?>
|
19 |
+
</div>
|
20 |
+
</div>
|
21 |
+
<div class="panel panel-default">
|
22 |
+
<div class="panel-body">
|
23 |
+
<div class="col-md-12">
|
24 |
+
<div class="b2s-post"></div>
|
25 |
+
<div class="row b2s-loading-area width-100" style="display: none;">
|
26 |
+
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
27 |
+
<div class="text-center b2s-loader-text"><?php esc_html_e("save...", "blog2social"); ?></div>
|
28 |
+
</div>
|
29 |
+
<div class="row b2s-autopost-area">
|
30 |
+
<?php echo $autoPostItem->getAutoPostingSettingsHtml(); ?>
|
31 |
+
</div>
|
32 |
+
<input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
|
33 |
+
<?php
|
34 |
+
$noLegend = 1;
|
35 |
+
require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.php');
|
36 |
+
?>
|
37 |
+
</div>
|
38 |
+
</div>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/sidebar.php'); ?>
|
42 |
+
</div>
|
43 |
+
</div>
|
44 |
+
|
45 |
+
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
46 |
+
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
47 |
+
<input type="hidden" id="b2sShowSection" value="<?php echo (isset($_GET['show']) ? esc_attr($_GET['show']) : ''); ?>">
|
48 |
+
<input type="hidden" id="b2s_wp_media_headline" value="<?php esc_html_e('Select or upload an image from media gallery', 'blog2social') ?>">
|
49 |
+
<input type="hidden" id="b2s_wp_media_btn" value="<?php esc_html_e('Use image', 'blog2social') ?>">
|
50 |
+
<input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION ?>">
|
51 |
+
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
52 |
+
|
53 |
+
|
54 |
+
<div class="modal fade" id="b2sInfoTimeZoneModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoTimeZoneModal" aria-hidden="true" data-backdrop="false">
|
55 |
+
<div class="modal-dialog">
|
56 |
+
<div class="modal-content">
|
57 |
+
<div class="modal-header">
|
58 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoTimeZoneModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
59 |
+
<h4 class="modal-title"><?php esc_html_e('Personal Time Zone', 'blog2social') ?></h4>
|
60 |
+
</div>
|
61 |
+
<div class="modal-body">
|
62 |
+
<?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') ?>
|
63 |
+
</div>
|
64 |
+
</div>
|
65 |
+
</div>
|
66 |
+
</div>
|
67 |
+
|
68 |
+
<div class="modal fade" id="b2sTwitterInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sTwitterInfoModal" aria-hidden="true" data-backdrop="false">
|
69 |
+
<div class="modal-dialog">
|
70 |
+
<div class="modal-content">
|
71 |
+
<div class="modal-header">
|
72 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sTwitterInfoModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
73 |
+
<h4 class="modal-title"><?php esc_html_e('Select Twitter profile:', 'blog2social') ?></h4>
|
74 |
+
</div>
|
75 |
+
<div class="modal-body">
|
76 |
+
<?php esc_html_e('To comply with the Twitter TOS and to avoid duplicate posts, autoposts will be sent to your primary Twitter profile.', 'blog2social') ?> <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('network_tos_faq_032018') ?>"><?php esc_html_e('More information', 'blog2social') ?></a>
|
77 |
+
</div>
|
78 |
+
</div>
|
79 |
+
</div>
|
80 |
+
</div>
|
views/b2s/dashboard.php
CHANGED
@@ -14,7 +14,6 @@ $b2sGeneralOptions = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
14 |
<?php if (!B2S_System::isblockedArea('B2S_DASHBOARD_MODUL_NEWS', B2S_PLUGIN_ADMIN)) { ?>
|
15 |
<div class="panel panel-default">
|
16 |
<div class="panel-body">
|
17 |
-
<h4 class="b2s-dashboard-h4"><?php esc_html_e("What's New", "blog2social"); ?></h4>
|
18 |
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/widgets/content.php'); ?>
|
19 |
<div class="clearfix"></div>
|
20 |
</div>
|
14 |
<?php if (!B2S_System::isblockedArea('B2S_DASHBOARD_MODUL_NEWS', B2S_PLUGIN_ADMIN)) { ?>
|
15 |
<div class="panel panel-default">
|
16 |
<div class="panel-body">
|
|
|
17 |
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/widgets/content.php'); ?>
|
18 |
<div class="clearfix"></div>
|
19 |
</div>
|
views/b2s/html/footer.php
CHANGED
@@ -377,6 +377,46 @@
|
|
377 |
</div>
|
378 |
|
379 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
380 |
<?php } ?>
|
381 |
|
382 |
<div class="modal fade" id="b2s-info-meta-tag-modal" tabindex="-1" role="dialog" aria-labelledby="b2s-info-meta-tag-modal" aria-hidden="true" data-backdrop="false" style="z-index: 1070">
|
377 |
</div>
|
378 |
|
379 |
|
380 |
+
<div class="modal fade" id="b2sInfoRePosterModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoRePosterModal" aria-hidden="true" data-backdrop="false">
|
381 |
+
<div class="modal-dialog">
|
382 |
+
<div class="modal-content">
|
383 |
+
<div class="modal-header">
|
384 |
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
385 |
+
<h4 class="modal-title"><?php esc_html_e('Blog2Social: Re-Share Posts', 'blog2social') ?></h4>
|
386 |
+
</div>
|
387 |
+
<div class="modal-body">
|
388 |
+
<p><?php
|
389 |
+
echo esc_html__('Keep your social media feed updated automatically with your best content and save valuable time by reviving your evergreen content regularly. Automate your resharing process with Blog2Social, so you can use your time to create new content and interact with your community.', 'blog2social');
|
390 |
+
echo ' ' . sprintf(__('<a target="_blank" href="%s">More information</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('re_post')));
|
391 |
+
|
392 |
+
if (B2S_PLUGIN_USER_VERSION == 0) {
|
393 |
+
?>
|
394 |
+
<br>
|
395 |
+
<hr>
|
396 |
+
<h4><?php esc_html_e('You want to auto-post your blog post?', 'blog2social'); ?></h4>
|
397 |
+
<?php esc_html_e('With Blog2Social Premium you can:', 'blog2social') ?>
|
398 |
+
<br>
|
399 |
+
<br>
|
400 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Post on pages and groups', 'blog2social') ?><br>
|
401 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Share on multiple profiles, pages and groups', 'blog2social') ?><br>
|
402 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Auto-post and auto-schedule new and updated blog posts', 'blog2social') ?><br>
|
403 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule your posts at the best times on each network', 'blog2social') ?><br>
|
404 |
+
<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>
|
405 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule your post for one time, multiple times or recurrently', 'blog2social') ?><br>
|
406 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule and re-share old posts', 'blog2social') ?><br>
|
407 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Select link format or image format for your posts', 'blog2social') ?><br>
|
408 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Select individual images per post', 'blog2social') ?><br>
|
409 |
+
<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>
|
410 |
+
<br>
|
411 |
+
<a target="_blank" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>" class="btn btn-success center-block"><?php esc_html_e('Upgrade to SMART and above', 'blog2social') ?></a>
|
412 |
+
<br>
|
413 |
+
<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>
|
414 |
+
<?php } ?>
|
415 |
+
</div>
|
416 |
+
</div>
|
417 |
+
</div>
|
418 |
+
</div>
|
419 |
+
|
420 |
<?php } ?>
|
421 |
|
422 |
<div class="modal fade" id="b2s-info-meta-tag-modal" tabindex="-1" role="dialog" aria-labelledby="b2s-info-meta-tag-modal" aria-hidden="true" data-backdrop="false" style="z-index: 1070">
|
views/b2s/html/header.php
CHANGED
@@ -11,12 +11,10 @@ $showWebdaos = ($meta->is_webdados_active() && $b2sActive) ? 'block' : 'none';
|
|
11 |
$getPages = unserialize(B2S_PLUGIN_PAGE_TITLE);
|
12 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
13 |
$autoPostLimit = 'none';
|
14 |
-
$gmbAutoPostLimit = 'none';
|
15 |
$autoPostCon = $options->_getOption('auto_post_import_condition');
|
16 |
if ($autoPostCon !== false && is_array($autoPostCon) && isset($autoPostCon['count'])) {
|
17 |
$con = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
|
18 |
$autoPostLimit = ($autoPostCon['count'] == $con[B2S_PLUGIN_USER_VERSION]) ? 'block' : 'none';
|
19 |
-
$gmbAutoPostLimit = (isset($autoPostCon['gmb_limit']) && (int) $autoPostCon['gmb_limit'] == 1) ? (($autoPostLimit == 'block') ? 'none' : 'block') : 'none';
|
20 |
}
|
21 |
$b2sLastVersion = get_option('b2s_plugin_version');
|
22 |
$b2sPrivacyPolicy = get_option('B2S_PLUGIN_PRIVACY_POLICY_USER_ACCEPT_' . B2S_PLUGIN_BLOG_USER_ID);
|
@@ -74,11 +72,6 @@ if ($b2sPrivacyPolicy !== false) {
|
|
74 |
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Autoposter limit has been reached', 'blog2social') ?> <br> <?php esc_html_e('Your daily limit for posting automatically has been reached.', 'blog2social'); ?>
|
75 |
</div>
|
76 |
</div>
|
77 |
-
<div class="panel panel-group b2s-auto-posting" style="display: <?php echo $gmbAutoPostLimit; ?>;">
|
78 |
-
<div class="panel-body">
|
79 |
-
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('The Autoposter limit for Google My Business has been reached.', 'blog2social') ?> <br> <?php esc_html_e('Your daily limit of 10 posts per day for auto-posting on Google My Business has been reached.', 'blog2social'); ?>
|
80 |
-
</div>
|
81 |
-
</div>
|
82 |
|
83 |
<!--Info Meta Tags -->
|
84 |
<div class="panel panel-group b2s-clear-meta-tags b2s-clear-meta-tags-success" style="display:none;">
|
@@ -216,6 +209,18 @@ if ($b2sPrivacyPolicy !== false) {
|
|
216 |
</div>
|
217 |
</div>
|
218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
<!--Rating-->
|
220 |
<?php
|
221 |
if (!B2S_System::isblockedArea('B2S_MENU_MODUL_RATING', B2S_PLUGIN_ADMIN)) {
|
11 |
$getPages = unserialize(B2S_PLUGIN_PAGE_TITLE);
|
12 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
13 |
$autoPostLimit = 'none';
|
|
|
14 |
$autoPostCon = $options->_getOption('auto_post_import_condition');
|
15 |
if ($autoPostCon !== false && is_array($autoPostCon) && isset($autoPostCon['count'])) {
|
16 |
$con = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
|
17 |
$autoPostLimit = ($autoPostCon['count'] == $con[B2S_PLUGIN_USER_VERSION]) ? 'block' : 'none';
|
|
|
18 |
}
|
19 |
$b2sLastVersion = get_option('b2s_plugin_version');
|
20 |
$b2sPrivacyPolicy = get_option('B2S_PLUGIN_PRIVACY_POLICY_USER_ACCEPT_' . B2S_PLUGIN_BLOG_USER_ID);
|
72 |
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('Autoposter limit has been reached', 'blog2social') ?> <br> <?php esc_html_e('Your daily limit for posting automatically has been reached.', 'blog2social'); ?>
|
73 |
</div>
|
74 |
</div>
|
|
|
|
|
|
|
|
|
|
|
75 |
|
76 |
<!--Info Meta Tags -->
|
77 |
<div class="panel panel-group b2s-clear-meta-tags b2s-clear-meta-tags-success" style="display:none;">
|
209 |
</div>
|
210 |
</div>
|
211 |
|
212 |
+
<!-- Info Repost -->
|
213 |
+
<div class="panel panel-group b2s-left-border-danger b2s-re-post-no-content" style="display: none;">
|
214 |
+
<div class="panel-body">
|
215 |
+
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php esc_html_e('No posts found. Please try again with different filter options.', 'blog2social'); ?>
|
216 |
+
</div>
|
217 |
+
</div>
|
218 |
+
<div class="panel panel-group b2s-left-border-danger b2s-re-post-limit-error" style="display: none;">
|
219 |
+
<div class="panel-body">
|
220 |
+
<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 detele 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') : '.'); ?>
|
221 |
+
</div>
|
222 |
+
</div>
|
223 |
+
|
224 |
<!--Rating-->
|
225 |
<?php
|
226 |
if (!B2S_System::isblockedArea('B2S_MENU_MODUL_RATING', B2S_PLUGIN_ADMIN)) {
|
views/b2s/html/post.navbar.php
CHANGED
@@ -6,7 +6,7 @@ $isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
|
6 |
<div class="col-md-12 pull-left b2s-post-menu del-padding-left">
|
7 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-all" href="admin.php?page=blog2social-post"><?php esc_html_e('All Blog Posts', 'blog2social') ?></a>
|
8 |
<?php if ($getPage != "blog2social-curation" && $getPage != "blog2social-curation-draft") { ?>
|
9 |
-
<a class="btn btn-<?php echo ($getPage == 'blog2social-favorites') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-favorites" href="admin.php?page=blog2social-favorites"><?php esc_html_e('Favorites', 'blog2social')
|
10 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-draft-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft-post" href="admin.php?page=blog2social-draft-post"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
11 |
<?php } else { ?>
|
12 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-curation-draft') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft" href="admin.php?page=blog2social-curation-draft"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
@@ -15,6 +15,7 @@ $isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
|
15 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-sched') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-sched" href="admin.php?page=blog2social-sched"><?php esc_html_e('Scheduled Posts', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
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-<?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>
|
19 |
<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>
|
20 |
<?php } ?>
|
6 |
<div class="col-md-12 pull-left b2s-post-menu del-padding-left">
|
7 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-all" href="admin.php?page=blog2social-post"><?php esc_html_e('All Blog Posts', 'blog2social') ?></a>
|
8 |
<?php if ($getPage != "blog2social-curation" && $getPage != "blog2social-curation-draft") { ?>
|
9 |
+
<a class="btn btn-<?php echo ($getPage == 'blog2social-favorites') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-favorites" href="admin.php?page=blog2social-favorites"><?php esc_html_e('Favorites', 'blog2social') ?></a>
|
10 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-draft-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft-post" href="admin.php?page=blog2social-draft-post"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
11 |
<?php } else { ?>
|
12 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-curation-draft') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft" href="admin.php?page=blog2social-curation-draft"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
15 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-sched') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-sched" href="admin.php?page=blog2social-sched"><?php esc_html_e('Scheduled Posts', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
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 } ?>
|
views/b2s/html/sidebar.php
CHANGED
@@ -66,7 +66,13 @@ $customizeArea = B2S_System::customizeArea();
|
|
66 |
</div>
|
67 |
<ul>
|
68 |
<li class="b2s-list-margin-left-10">
|
69 |
-
<i class="glyphicon glyphicon-
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
</li>
|
71 |
</ul>
|
72 |
</div>
|
66 |
</div>
|
67 |
<ul>
|
68 |
<li class="b2s-list-margin-left-10">
|
69 |
+
<i class="glyphicon glyphicon-share-alt glyphicon-success"></i> <a href="admin.php?page=blog2social-post" class="b2s-sidebar-menu-item"><?php esc_html_e("Share Posts", "blog2social") ?></a>
|
70 |
+
</li>
|
71 |
+
<li class="b2s-list-margin-left-10">
|
72 |
+
<i class="glyphicon glyphicon-random glyphicon-success"></i> <a href="admin.php?page=blog2social-repost" class="b2s-sidebar-menu-item"><?php esc_html_e("Re-Share Posts", "blog2social") ?></a>
|
73 |
+
</li>
|
74 |
+
<li class="b2s-list-margin-left-10">
|
75 |
+
<i class="glyphicon glyphicon-play glyphicon-success"></i> <a href="admin.php?page=blog2social-autopost" class="b2s-sidebar-menu-item"><?php esc_html_e("Auto-Post", "blog2social") ?></a>
|
76 |
</li>
|
77 |
</ul>
|
78 |
</div>
|
views/b2s/network.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
require_once B2S_PLUGIN_DIR . 'includes/B2S/Network/Item.php';
|
|
|
4 |
$b2sSiteUrl = get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/');
|
5 |
$displayName = stripslashes(get_user_by('id', B2S_PLUGIN_BLOG_USER_ID)->display_name);
|
6 |
$displayName = ((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName);
|
@@ -37,6 +38,8 @@ $networkData = $networkItem->getData();
|
|
37 |
<button href="#" class="btn btn-danger btn-sm b2s-network-mandant-btn-delete" style="display:none;">
|
38 |
<span class="glyphicon glyphicon-trash"></span> <?php esc_html_e('Delete', 'blog2social') ?>
|
39 |
</button>
|
|
|
|
|
40 |
</div>
|
41 |
<div class="form-group b2s-network-time-manager-area pull-right hidden-xs">
|
42 |
<?php if (B2S_PLUGIN_USER_VERSION > 0) { ?>
|
1 |
<?php
|
2 |
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
require_once B2S_PLUGIN_DIR . 'includes/B2S/Network/Item.php';
|
4 |
+
require_once B2S_PLUGIN_DIR . 'includes/Tools.php';
|
5 |
$b2sSiteUrl = get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/');
|
6 |
$displayName = stripslashes(get_user_by('id', B2S_PLUGIN_BLOG_USER_ID)->display_name);
|
7 |
$displayName = ((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName);
|
38 |
<button href="#" class="btn btn-danger btn-sm b2s-network-mandant-btn-delete" style="display:none;">
|
39 |
<span class="glyphicon glyphicon-trash"></span> <?php esc_html_e('Delete', 'blog2social') ?>
|
40 |
</button>
|
41 |
+
|
42 |
+
<a target="_blank" href="<?php echo B2S_Tools::getSupportLink('network_mandant') ?>"><?php esc_html_e('Info', 'blog2social') ?></a>
|
43 |
</div>
|
44 |
<div class="form-group b2s-network-time-manager-area pull-right hidden-xs">
|
45 |
<?php if (B2S_PLUGIN_USER_VERSION > 0) { ?>
|
views/b2s/repost.php
ADDED
@@ -0,0 +1,174 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
+
require_once B2S_PLUGIN_DIR . 'includes/B2S/RePost/Item.php';
|
4 |
+
$rePostItem = new B2S_RePost_Item();
|
5 |
+
|
6 |
+
require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
7 |
+
require_once B2S_PLUGIN_DIR . 'includes/B2S/Settings/Item.php';
|
8 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
9 |
+
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
10 |
+
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
11 |
+
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
12 |
+
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
13 |
+
?>
|
14 |
+
|
15 |
+
<div class="b2s-container">
|
16 |
+
<div class=" b2s-inbox col-md-12 del-padding-left">
|
17 |
+
<div class="col-md-9 del-padding-left del-padding-right">
|
18 |
+
<!--Header|Start - Include-->
|
19 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/header.php'); ?>
|
20 |
+
<!--Header|End-->
|
21 |
+
<div class="clearfix"></div>
|
22 |
+
<!--Content|Start-->
|
23 |
+
<div class="panel panel-default">
|
24 |
+
<div class="panel-body">
|
25 |
+
<div class="col-md-12">
|
26 |
+
<div class="row b2s-loading-area width-100" style="display: none;">
|
27 |
+
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
28 |
+
<div class="text-center b2s-loader-text"><?php esc_html_e("Loading...", "blog2social"); ?></div>
|
29 |
+
</div>
|
30 |
+
</div>
|
31 |
+
<div class="col-md-12">
|
32 |
+
<div class="row b2s-repost-options-area">
|
33 |
+
<?php echo $rePostItem->getRePostOptionsHtml(); ?>
|
34 |
+
</div>
|
35 |
+
</div>
|
36 |
+
<div class="col-md-12">
|
37 |
+
<div class="row b2s-repost-queue-area">
|
38 |
+
<?php echo $rePostItem->getRePostQueueHtml(); ?>
|
39 |
+
</div>
|
40 |
+
</div>
|
41 |
+
<div class="col-md-12">
|
42 |
+
<?php
|
43 |
+
$noLegend = 1;
|
44 |
+
require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.php');
|
45 |
+
?>
|
46 |
+
</div>
|
47 |
+
</div>
|
48 |
+
</div>
|
49 |
+
</div>
|
50 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/sidebar.php'); ?>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
|
54 |
+
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
|
55 |
+
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
56 |
+
<input type="hidden" id="b2sJSTextAddPost" value="<?php echo esc_html_e("add post", "blog2social"); ?>">
|
57 |
+
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
58 |
+
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
59 |
+
<input type="hidden" id="user_version" name="user_version" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>">
|
60 |
+
<input type="hidden" id="b2sDefaultNoImage" value="<?php echo plugins_url('/assets/images/no-image.png', B2S_PLUGIN_FILE); ?>">
|
61 |
+
<input type="hidden" id="b2sPostId" value="">
|
62 |
+
<input type="hidden" id="b2sInsertImageType" value="0">
|
63 |
+
<input type="hidden" id="isOgMetaChecked" value="<?php echo (isset($metaSettings['og_active']) ? (int) $metaSettings['og_active'] : 0); ?>">
|
64 |
+
<input type="hidden" id="isCardMetaChecked" value="<?php echo (isset($metaSettings['card_active']) ? (int) $metaSettings['card_active'] : 0); ?>">
|
65 |
+
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
66 |
+
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
67 |
+
<input type="hidden" id="ogMetaNetworks" value="<?php echo implode(';', json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']); ?>">
|
68 |
+
<input type="hidden" id="b2sEmojiTranslation" value='<?php echo json_encode(B2S_Tools::getEmojiTranslationList()); ?>'>
|
69 |
+
|
70 |
+
<script>
|
71 |
+
var b2s_has_premium = <?= B2S_PLUGIN_USER_VERSION > 0 ? "true" : "false"; ?>;
|
72 |
+
var b2s_plugin_url = '<?= B2S_PLUGIN_URL; ?>';
|
73 |
+
var b2s_post_formats = <?= json_encode(array('post' => array(esc_html__('Link Post', 'blog2social'), esc_html__('Image Post', 'blog2social')), 'image' => array(esc_html__('Image with frame', 'blog2social'), esc_html__('Image cut out','blog2social')))); ?>;
|
74 |
+
var b2s_is_calendar = true;
|
75 |
+
</script>
|
76 |
+
|
77 |
+
<div class="modal fade b2s-delete-sched-modal" tabindex="-1" role="dialog" aria-labelledby="b2s-delete-sched-modal" aria-hidden="true" data-backdrop="false">
|
78 |
+
<div class="modal-dialog">
|
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 form 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>
|
86 |
+
<br>
|
87 |
+
(<?php esc_html_e('Number of entries', 'blog2social') ?>: <span id="b2s-delete-confirm-post-count"></span>)
|
88 |
+
<input type="hidden" value="" id="b2s-delete-confirm-post-id">
|
89 |
+
</div>
|
90 |
+
<div class="modal-footer">
|
91 |
+
<button class="btn btn-default" data-dismiss="modal"><?php esc_html_e('NO', 'blog2social') ?></button>
|
92 |
+
<button class="btn btn-danger b2s-sched-delete-confirm-btn"><?php esc_html_e('YES, delete', 'blog2social') ?></button>
|
93 |
+
<button class="btn btn-danger b2s-sched-delete-confirm-multi-btn" style="display:none;"><?php esc_html_e('YES, delete', 'blog2social') ?></button>
|
94 |
+
</div>
|
95 |
+
</div>
|
96 |
+
</div>
|
97 |
+
</div>
|
98 |
+
|
99 |
+
<div id="b2s-post-ship-item-post-format-modal" class="modal fade" role="dialog" aria-labelledby="b2s-post-ship-item-post-format-modal" aria-hidden="true" data-backdrop="false" style="z-index: 1070">
|
100 |
+
<div class="modal-dialog modal-lg">
|
101 |
+
<div class="modal-content">
|
102 |
+
<div class="modal-header">
|
103 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2s-post-ship-item-post-format-modal">×</button>
|
104 |
+
<h4 class="modal-title"><?php esc_html_e('Choose your', 'blog2social') ?> <span id="b2s-post-ship-item-post-format-network-title"></span> <?php esc_html_e('Post Format', 'blog2social') ?>
|
105 |
+
<?php if (B2S_PLUGIN_USER_VERSION >= 2) { ?>
|
106 |
+
<?php esc_html_e('for:', 'blog2social') ?> <span id="b2s-post-ship-item-post-format-network-display-name"></span>
|
107 |
+
<?php } ?>
|
108 |
+
</h4>
|
109 |
+
</div>
|
110 |
+
<div class="modal-body">
|
111 |
+
<div class="row">
|
112 |
+
<div class="col-xs-12">
|
113 |
+
<?php
|
114 |
+
$settingsItem = new B2S_Settings_Item();
|
115 |
+
echo $settingsItem->setNetworkSettingsHtml();
|
116 |
+
echo $settingsItem->getNetworkSettingsHtml();
|
117 |
+
?>
|
118 |
+
</div>
|
119 |
+
</div>
|
120 |
+
<div class="row">
|
121 |
+
<div class="col-xs-12">
|
122 |
+
<div class="text-center">
|
123 |
+
<br>
|
124 |
+
<div class="b2s-post-format-settings-info" data-network-id="1" style="display:none;">
|
125 |
+
<b><?php esc_html_e('Define the default settings for the custom post format for all of your Facebook accounts in the Blog2Social settings.', 'blog2social'); ?></b>
|
126 |
+
</div>
|
127 |
+
<div class="b2s-post-format-settings-info" data-network-id="2" style="display:none;">
|
128 |
+
<b><?php esc_html_e('Define the default settings for the custom post format for all of your Twitter accounts in the Blog2Social settings.', 'blog2social'); ?></b>
|
129 |
+
</div>
|
130 |
+
<div class="b2s-post-format-settings-info" data-network-id="3" style="display:none;">
|
131 |
+
<b><?php esc_html_e('Define the default settings for the custom post format for all of your LinkedIn accounts in the Blog2Social settings.', 'blog2social'); ?></b>
|
132 |
+
</div>
|
133 |
+
<div class="b2s-post-format-settings-info" data-network-id="12" style="display:none;">
|
134 |
+
<b><?php esc_html_e('Define the default settings for the custom post format for all of your Instagram accounts in the Blog2Social settings.', 'blog2social'); ?></b>
|
135 |
+
</div>
|
136 |
+
</div>
|
137 |
+
</div>
|
138 |
+
</div>
|
139 |
+
</div>
|
140 |
+
</div>
|
141 |
+
</div>
|
142 |
+
</div>
|
143 |
+
|
144 |
+
<div id="b2s-network-select-image" class="modal fade" role="dialog" aria-labelledby="b2s-network-select-image" aria-hidden="true" style="z-index: 1070">
|
145 |
+
<div class="modal-dialog modal-lg">
|
146 |
+
<div class="modal-content">
|
147 |
+
<div class="modal-header">
|
148 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2s-network-select-image">×</button>
|
149 |
+
<h4 class="modal-title"><?php esc_html_e('Select image for', 'blog2social') ?> <span class="b2s-selected-network-for-image-info"></span></h4>
|
150 |
+
</div>
|
151 |
+
<div class="modal-body">
|
152 |
+
<div class="row">
|
153 |
+
<div class="col-xs-12">
|
154 |
+
<div class="b2s-network-select-image-content"></div>
|
155 |
+
</div>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
+
</div>
|
161 |
+
|
162 |
+
<div class="modal fade" id="b2sTwitterInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sTwitterInfoModal" aria-hidden="true" data-backdrop="false">
|
163 |
+
<div class="modal-dialog">
|
164 |
+
<div class="modal-content">
|
165 |
+
<div class="modal-header">
|
166 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sTwitterInfoModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
167 |
+
<h4 class="modal-title"><?php esc_html_e('Select Twitter profile:', 'blog2social') ?></h4>
|
168 |
+
</div>
|
169 |
+
<div class="modal-body">
|
170 |
+
<?php esc_html_e('To comply with the Twitter TOS and to avoid duplicate posts, autoposts will be sent to your primary Twitter profile.', 'blog2social') ?> <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('network_tos_faq_032018') ?>"><?php esc_html_e('More information', 'blog2social') ?></a>
|
171 |
+
</div>
|
172 |
+
</div>
|
173 |
+
</div>
|
174 |
+
</div>
|
views/b2s/settings.php
CHANGED
@@ -32,7 +32,7 @@ $settingsItem = new B2S_Settings_Item();
|
|
32 |
<a href="#b2s-general" class="b2s-general" data-toggle="tab"><?php esc_html_e('General', 'blog2social') ?></a>
|
33 |
</li>
|
34 |
<li>
|
35 |
-
<a href="
|
36 |
</li>
|
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>
|
@@ -43,9 +43,6 @@ $settingsItem = new B2S_Settings_Item();
|
|
43 |
<div class="tab-pane active" id="b2s-general">
|
44 |
<?php echo $settingsItem->getGeneralSettingsHtml(); ?>
|
45 |
</div>
|
46 |
-
<div class="tab-pane" id="b2s-auto-posting">
|
47 |
-
<?php echo $settingsItem->getAutoPostingSettingsHtml(); ?>
|
48 |
-
</div>
|
49 |
<div class="tab-pane" id="b2s-social-meta-data">
|
50 |
<form class="b2sSaveSocialMetaTagsSettings" method="post" novalidate="novalidate">
|
51 |
<?php echo $settingsItem->getSocialMetaDataHtml(); ?>
|
@@ -148,23 +145,3 @@ $settingsItem = new B2S_Settings_Item();
|
|
148 |
</div>
|
149 |
</div>
|
150 |
</div>
|
151 |
-
|
152 |
-
<div class="modal fade" id="b2sTwitterInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sTwitterInfoModal" aria-hidden="true" data-backdrop="false">
|
153 |
-
<div class="modal-dialog">
|
154 |
-
<div class="modal-content">
|
155 |
-
<div class="modal-header">
|
156 |
-
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sTwitterInfoModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
157 |
-
<h4 class="modal-title"><?php esc_html_e('Select Twitter profile:', 'blog2social') ?></h4>
|
158 |
-
</div>
|
159 |
-
<div class="modal-body">
|
160 |
-
<?php esc_html_e('To comply with the Twitter TOS and to avoid duplicate posts, autoposts will be sent to your primary Twitter profile.', 'blog2social') ?> <a target="_blank" href="<?php echo B2S_Tools::getSupportLink('network_tos_faq_032018') ?>"><?php esc_html_e('More information', 'blog2social') ?></a>
|
161 |
-
</div>
|
162 |
-
</div>
|
163 |
-
</div>
|
164 |
-
</div>
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
32 |
<a href="#b2s-general" class="b2s-general" data-toggle="tab"><?php esc_html_e('General', 'blog2social') ?></a>
|
33 |
</li>
|
34 |
<li>
|
35 |
+
<a href="admin.php?page=blog2social-autopost" class="b2s-auto-post"><?php esc_html_e('Auto-Post', 'blog2social') ?></a>
|
36 |
</li>
|
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>
|
43 |
<div class="tab-pane active" id="b2s-general">
|
44 |
<?php echo $settingsItem->getGeneralSettingsHtml(); ?>
|
45 |
</div>
|
|
|
|
|
|
|
46 |
<div class="tab-pane" id="b2s-social-meta-data">
|
47 |
<form class="b2sSaveSocialMetaTagsSettings" method="post" novalidate="novalidate">
|
48 |
<?php echo $settingsItem->getSocialMetaDataHtml(); ?>
|
145 |
</div>
|
146 |
</div>
|
147 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|