Version Description
New Image Posts, Imgur, Animated Gifs and Emojis
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.0.0 |
Comparing to | |
See all releases |
Code changes from version 5.9.0 to 6.0.0
- assets/css/b2s/calendar.css +29 -6
- assets/css/b2s/curation.css +102 -2
- assets/css/b2s/network.css +5 -0
- assets/css/b2s/post.approve.css +10 -0
- assets/css/b2s/post.css +11 -4
- assets/css/b2s/post.draft.css +70 -0
- assets/css/b2s/post.notice.css +11 -0
- assets/css/b2s/post.publish.css +11 -0
- assets/css/b2s/post.sched.css +40 -2
- assets/css/b2s/ship.css +29 -6
- assets/css/general.css +17 -1
- assets/images/portale/21_flat.png +0 -0
- assets/js/b2s/calendar.js +1 -16
- assets/js/b2s/curation.js +334 -40
- assets/js/b2s/network.js +23 -13
- assets/js/b2s/post.js +46 -18
- assets/js/b2s/ship.js +163 -87
- assets/js/notice.js +0 -18
- assets/lib/emoji-button/emoji-button.min.js +4 -0
- assets/lib/wysiwyg/square.min.css +1 -0
- blog2social.php +2 -2
- includes/Ajax/Get.php +20 -2
- includes/Ajax/Post.php +133 -34
- includes/B2S/AutoPost.php +29 -3
- includes/B2S/Curation/Save.php +8 -2
- includes/B2S/Curation/View.php +7 -5
- includes/B2S/Hook/Filter.php +14 -0
- includes/B2S/Network/Item.php +16 -7
- includes/B2S/Post/Filter.php +1 -1
- includes/B2S/Post/Item.php +100 -49
- includes/B2S/QuickPost.php +3 -3
- includes/B2S/Ship/Image.php +5 -1
- includes/B2S/Ship/Item.php +123 -41
- includes/Loader.php +60 -32
- includes/Notice.php +13 -4
- includes/Tools.php +19 -0
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +803 -657
- languages/blog2social.pot +768 -627
- readme.txt +18 -8
- views/b2s/curation.draft.php +1 -0
- views/b2s/curation.php +126 -21
- views/b2s/html/post.navbar.php +6 -2
- views/b2s/html/sidebar.php +14 -10
- views/b2s/network.php +4 -0
- views/b2s/post.calendar.php +1 -0
- views/b2s/post.favorites.php +62 -0
- views/b2s/post.sched.php +1 -0
- views/b2s/ship.php +6 -2
assets/css/b2s/calendar.css
CHANGED
@@ -96,14 +96,13 @@ body .fc-time{
|
|
96 |
textarea.form-control {
|
97 |
height: auto;
|
98 |
}
|
99 |
-
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .reddit-textarea-input, .linkedin-textarea-input {
|
100 |
font-size: 14px;
|
101 |
font-weight: normal;
|
102 |
line-height: 1.125;
|
103 |
width: 100%;
|
104 |
border: medium none;
|
105 |
border-radius: 0;
|
106 |
-
margin-top: 10px;
|
107 |
margin-bottom: 10px;
|
108 |
font-family: helvetica,arial,sans-serif;
|
109 |
}
|
@@ -285,10 +284,6 @@ body .fc-day-grid-event .fc-content{
|
|
285 |
width: 32px;
|
286 |
}
|
287 |
|
288 |
-
.b2s-post-approve-info{
|
289 |
-
display: none;
|
290 |
-
}
|
291 |
-
|
292 |
#b2s-btn-select-blog-post, #b2s-btn-select-content-curation{
|
293 |
margin-top:10px;
|
294 |
}
|
@@ -323,3 +318,31 @@ body .fc-day-grid-event .fc-content{
|
|
323 |
from { transform: scale(1) rotate(0deg);}
|
324 |
to { transform: scale(1) rotate(360deg);}
|
325 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
textarea.form-control {
|
97 |
height: auto;
|
98 |
}
|
99 |
+
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .reddit-textarea-input, .linkedin-textarea-input, .b2s-post-item-details-item-message-input {
|
100 |
font-size: 14px;
|
101 |
font-weight: normal;
|
102 |
line-height: 1.125;
|
103 |
width: 100%;
|
104 |
border: medium none;
|
105 |
border-radius: 0;
|
|
|
106 |
margin-bottom: 10px;
|
107 |
font-family: helvetica,arial,sans-serif;
|
108 |
}
|
284 |
width: 32px;
|
285 |
}
|
286 |
|
|
|
|
|
|
|
|
|
287 |
#b2s-btn-select-blog-post, #b2s-btn-select-content-curation{
|
288 |
margin-top:10px;
|
289 |
}
|
318 |
from { transform: scale(1) rotate(0deg);}
|
319 |
to { transform: scale(1) rotate(360deg);}
|
320 |
}
|
321 |
+
|
322 |
+
.b2s-post-item-details-item-message-area {
|
323 |
+
display: inline-block;
|
324 |
+
position: relative;
|
325 |
+
min-width: 100%;
|
326 |
+
}
|
327 |
+
|
328 |
+
.emoji-picker__content .active {
|
329 |
+
background-color: #fff;
|
330 |
+
}
|
331 |
+
|
332 |
+
.emoji-picker__content {
|
333 |
+
height: 21.5rem;
|
334 |
+
}
|
335 |
+
|
336 |
+
.emoji-picker__preview {
|
337 |
+
display: none;
|
338 |
+
}
|
339 |
+
|
340 |
+
.emoji-picker {
|
341 |
+
height: auto;
|
342 |
+
z-index: 1060;
|
343 |
+
}
|
344 |
+
|
345 |
+
.emoji-picker__tab.active {
|
346 |
+
color: #79b333;
|
347 |
+
border-bottom: 3px solid #79b333;
|
348 |
+
}
|
assets/css/b2s/curation.css
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
margin: 25px 0 0;
|
22 |
}
|
23 |
|
24 |
-
#b2s-curation-input-url-help, .b2s-curation-result-area{
|
25 |
display: none;
|
26 |
}
|
27 |
|
@@ -32,7 +32,7 @@
|
|
32 |
.b2s-btn-change-url-preview{
|
33 |
cursor: pointer;
|
34 |
}
|
35 |
-
#b2s-curation-no-review-info, #b2s-curation-no-auth-info, .b2s-post-curation-ship-date-area, #b2s-curation-no-data-info, #b2s-curation-saved-draft-info{
|
36 |
display: none;
|
37 |
}
|
38 |
|
@@ -101,4 +101,104 @@
|
|
101 |
|
102 |
#b2s-btn-curation-draft {
|
103 |
margin-left: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
}
|
21 |
margin: 25px 0 0;
|
22 |
}
|
23 |
|
24 |
+
#b2s-curation-input-url-help, .b2s-curation-result-area, .b2s-curation-image-area{
|
25 |
display: none;
|
26 |
}
|
27 |
|
32 |
.b2s-btn-change-url-preview{
|
33 |
cursor: pointer;
|
34 |
}
|
35 |
+
#b2s-curation-no-review-info, #b2s-curation-no-auth-info, .b2s-post-curation-ship-date-area, #b2s-curation-no-data-info, #b2s-curation-saved-draft-info, .b2s-curation-post-list-area{
|
36 |
display: none;
|
37 |
}
|
38 |
|
101 |
|
102 |
#b2s-btn-curation-draft {
|
103 |
margin-left: 10px;
|
104 |
+
}
|
105 |
+
|
106 |
+
.b2s-curation-format-link {
|
107 |
+
border-top-right-radius: 0px !important;
|
108 |
+
border-bottom-right-radius: 0px !important;
|
109 |
+
}
|
110 |
+
|
111 |
+
.b2s-curation-format-image {
|
112 |
+
border-top-left-radius: 0px !important;
|
113 |
+
border-bottom-left-radius: 0px !important;
|
114 |
+
}
|
115 |
+
|
116 |
+
.b2s-image-remove-btn{
|
117 |
+
position: absolute;
|
118 |
+
top: -5px;
|
119 |
+
right: 0px;
|
120 |
+
font-weight: 700 !important;
|
121 |
+
}
|
122 |
+
|
123 |
+
.b2s-post-item-details-url-image {
|
124 |
+
cursor: pointer;
|
125 |
+
margin-right: 10px;
|
126 |
+
margin-bottom: 20px;
|
127 |
+
border: 1px dashed #bdbfc2;
|
128 |
+
box-shadow: none;
|
129 |
+
padding: 5px;
|
130 |
+
}
|
131 |
+
|
132 |
+
.b2s-curation-image-area {
|
133 |
+
margin-top: 20px;
|
134 |
+
}
|
135 |
+
|
136 |
+
.b2s-post-item-details-item-message-area {
|
137 |
+
display: inline-block;
|
138 |
+
position: relative;
|
139 |
+
min-width: 100%;
|
140 |
+
}
|
141 |
+
|
142 |
+
.emoji-picker__content .active {
|
143 |
+
background-color: #fff;
|
144 |
+
}
|
145 |
+
|
146 |
+
.emoji-picker__content {
|
147 |
+
height: 21.5rem;
|
148 |
+
}
|
149 |
+
|
150 |
+
.emoji-picker__preview {
|
151 |
+
display: none;
|
152 |
+
}
|
153 |
+
|
154 |
+
.emoji-picker {
|
155 |
+
height: auto;
|
156 |
+
z-index: 1060;
|
157 |
+
}
|
158 |
+
|
159 |
+
.emoji-picker__tab.active {
|
160 |
+
color: #79b333;
|
161 |
+
border-bottom: 3px solid #79b333;
|
162 |
+
}
|
163 |
+
|
164 |
+
.b2s-image-item{
|
165 |
+
background-color: #fff;
|
166 |
+
border: 1px solid #ddd;
|
167 |
+
display: block;
|
168 |
+
float: left;
|
169 |
+
height: 200px;
|
170 |
+
line-height: 1.42857;
|
171 |
+
margin-bottom: 15px;
|
172 |
+
margin-left: 15px;
|
173 |
+
margin-top: 15px;
|
174 |
+
overflow: hidden;
|
175 |
+
padding: 4px;
|
176 |
+
|
177 |
+
transition: border 0.2s ease-in-out 0s;
|
178 |
+
width: 185px;
|
179 |
+
}
|
180 |
+
.img-thumbnail{
|
181 |
+
display: block !important;
|
182 |
+
height: auto;
|
183 |
+
margin-left: auto;
|
184 |
+
margin-right: auto;
|
185 |
+
max-height: 100%;
|
186 |
+
}
|
187 |
+
|
188 |
+
.b2s-image-item-thumb{
|
189 |
+
height: 150px;
|
190 |
+
}
|
191 |
+
.b2s-image-item-thumb label{
|
192 |
+
display: inline;
|
193 |
+
}
|
194 |
+
.b2s-image-item-caption{
|
195 |
+
color: #333;
|
196 |
+
}
|
197 |
+
|
198 |
+
.b2s-image-change {
|
199 |
+
margin-right: 5px !important;
|
200 |
+
}
|
201 |
+
|
202 |
+
.b2s-curation-result-area {
|
203 |
+
margin-top: 20px;
|
204 |
}
|
assets/css/b2s/network.css
CHANGED
@@ -619,4 +619,9 @@ ul.b2s-network-item-auth-list li:last-child{
|
|
619 |
|
620 |
.b2s-edit-template-title {
|
621 |
display: inline;
|
|
|
|
|
|
|
|
|
|
|
622 |
}
|
619 |
|
620 |
.b2s-edit-template-title {
|
621 |
display: inline;
|
622 |
+
}
|
623 |
+
|
624 |
+
#b2sXingBusinessPageInfo {
|
625 |
+
margin: 10px 0px;
|
626 |
+
display: none;
|
627 |
}
|
assets/css/b2s/post.approve.css
CHANGED
@@ -303,3 +303,13 @@ textarea.form-control {
|
|
303 |
}
|
304 |
}
|
305 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
}
|
304 |
}
|
305 |
|
306 |
+
.b2sFavoriteStar {
|
307 |
+
font-size: 22px;
|
308 |
+
margin-top: 6px;
|
309 |
+
color: #ffb900;
|
310 |
+
cursor: pointer;
|
311 |
+
}
|
312 |
+
|
313 |
+
.b2sFavoriteStarLoading {
|
314 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
315 |
+
}
|
assets/css/b2s/post.css
CHANGED
@@ -35,10 +35,17 @@
|
|
35 |
width: 100% !important;
|
36 |
}
|
37 |
|
38 |
-
.b2s-post-approve-info{
|
39 |
-
display: none;
|
40 |
-
}
|
41 |
-
|
42 |
.loadDraftBtn {
|
43 |
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
35 |
width: 100% !important;
|
36 |
}
|
37 |
|
|
|
|
|
|
|
|
|
38 |
.loadDraftBtn {
|
39 |
margin-right: 5px;
|
40 |
+
}
|
41 |
+
|
42 |
+
.b2sFavoriteStar {
|
43 |
+
font-size: 22px;
|
44 |
+
margin-top: 6px;
|
45 |
+
color: #ffb900;
|
46 |
+
cursor: pointer;
|
47 |
+
}
|
48 |
+
|
49 |
+
.b2sFavoriteStarLoading {
|
50 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
51 |
}
|
assets/css/b2s/post.draft.css
CHANGED
@@ -1,3 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.deleteDraftBtn {
|
2 |
margin-right: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
}
|
1 |
+
.media {
|
2 |
+
width: 100%;
|
3 |
+
}
|
4 |
+
.form-inline {
|
5 |
+
width: 100%;
|
6 |
+
margin-bottom: 20px;
|
7 |
+
}
|
8 |
+
.form-inline .form-group {
|
9 |
+
margin-left: 2px;
|
10 |
+
}
|
11 |
+
.media-head {
|
12 |
+
width: 100% !important;
|
13 |
+
}
|
14 |
+
@media(max-width: 549px) {
|
15 |
+
.b2s-post-btn {
|
16 |
+
width: 100%;
|
17 |
+
}
|
18 |
+
.form-inline button, .form-inline a {
|
19 |
+
width: 100%;
|
20 |
+
margin-bottom: 10px;
|
21 |
+
}
|
22 |
+
}
|
23 |
+
@media(max-width: 767px) {
|
24 |
+
.form-inline {
|
25 |
+
display: none;
|
26 |
+
}
|
27 |
+
.filterHide {
|
28 |
+
display: none;
|
29 |
+
}
|
30 |
+
.form-inline button ,.form-inline a {
|
31 |
+
width: 49%;
|
32 |
+
margin-bottom: 10px;
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
+
.checkbox-item{
|
37 |
+
margin: 25px 5px 0 !important;
|
38 |
+
}
|
39 |
+
.checkbox-all-label{
|
40 |
+
padding-left:25px !important;
|
41 |
+
}
|
42 |
+
.checkbox-all{
|
43 |
+
margin-top: 2px !important;
|
44 |
+
}
|
45 |
+
|
46 |
+
|
47 |
+
.checkbox-all-label-btn{
|
48 |
+
padding-left:25px !important;
|
49 |
+
margin-left: -20px;
|
50 |
+
position: absolute;
|
51 |
+
}
|
52 |
+
.checkbox-all-btn{
|
53 |
+
color: #444 !important;
|
54 |
+
}
|
55 |
+
|
56 |
+
.b2s-loading-area{
|
57 |
+
width: 100% !important;
|
58 |
+
}
|
59 |
+
|
60 |
.deleteDraftBtn {
|
61 |
margin-right: 10px;
|
62 |
+
}
|
63 |
+
|
64 |
+
.b2sFavoriteStar {
|
65 |
+
font-size: 22px;
|
66 |
+
margin-top: 6px;
|
67 |
+
color: #ffb900;
|
68 |
+
cursor: pointer;
|
69 |
+
}
|
70 |
+
|
71 |
+
.b2sFavoriteStarLoading {
|
72 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
73 |
}
|
assets/css/b2s/post.notice.css
CHANGED
@@ -63,4 +63,15 @@
|
|
63 |
.checbox-item-empty{
|
64 |
padding: 15px;
|
65 |
float:left;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
63 |
.checbox-item-empty{
|
64 |
padding: 15px;
|
65 |
float:left;
|
66 |
+
}
|
67 |
+
|
68 |
+
.b2sFavoriteStar {
|
69 |
+
font-size: 22px;
|
70 |
+
margin-top: 6px;
|
71 |
+
color: #ffb900;
|
72 |
+
cursor: pointer;
|
73 |
+
}
|
74 |
+
|
75 |
+
.b2sFavoriteStarLoading {
|
76 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
77 |
}
|
assets/css/b2s/post.publish.css
CHANGED
@@ -63,4 +63,15 @@
|
|
63 |
.checbox-item-empty{
|
64 |
padding: 15px;
|
65 |
float:left;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
63 |
.checbox-item-empty{
|
64 |
padding: 15px;
|
65 |
float:left;
|
66 |
+
}
|
67 |
+
|
68 |
+
.b2sFavoriteStar {
|
69 |
+
font-size: 22px;
|
70 |
+
margin-top: 6px;
|
71 |
+
color: #ffb900;
|
72 |
+
cursor: pointer;
|
73 |
+
}
|
74 |
+
|
75 |
+
.b2sFavoriteStarLoading {
|
76 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
77 |
}
|
assets/css/b2s/post.sched.css
CHANGED
@@ -170,14 +170,13 @@
|
|
170 |
textarea.form-control {
|
171 |
height: auto;
|
172 |
}
|
173 |
-
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .reddit-textarea-input, .linkedin-textarea-input {
|
174 |
font-size: 14px;
|
175 |
font-weight: normal;
|
176 |
line-height: 1.125;
|
177 |
width: 100%;
|
178 |
border: medium none;
|
179 |
border-radius: 0;
|
180 |
-
margin-top: 10px;
|
181 |
margin-bottom: 10px;
|
182 |
font-family: helvetica,arial,sans-serif;
|
183 |
}
|
@@ -329,3 +328,42 @@ textarea.form-control {
|
|
329 |
from { transform: scale(1) rotate(0deg);}
|
330 |
to { transform: scale(1) rotate(360deg);}
|
331 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
textarea.form-control {
|
171 |
height: auto;
|
172 |
}
|
173 |
+
.fb-textarea-input, .tw-textarea-input, .xing-textarea-input, .reddit-textarea-input, .linkedin-textarea-input, .b2s-post-item-details-item-message-input {
|
174 |
font-size: 14px;
|
175 |
font-weight: normal;
|
176 |
line-height: 1.125;
|
177 |
width: 100%;
|
178 |
border: medium none;
|
179 |
border-radius: 0;
|
|
|
180 |
margin-bottom: 10px;
|
181 |
font-family: helvetica,arial,sans-serif;
|
182 |
}
|
328 |
from { transform: scale(1) rotate(0deg);}
|
329 |
to { transform: scale(1) rotate(360deg);}
|
330 |
}
|
331 |
+
|
332 |
+
.b2s-post-item-details-item-message-area {
|
333 |
+
display: inline-block;
|
334 |
+
position: relative;
|
335 |
+
min-width: 100%;
|
336 |
+
}
|
337 |
+
|
338 |
+
.emoji-picker__content .active {
|
339 |
+
background-color: #fff;
|
340 |
+
}
|
341 |
+
|
342 |
+
.emoji-picker__content {
|
343 |
+
height: 21.5rem;
|
344 |
+
}
|
345 |
+
|
346 |
+
.emoji-picker__preview {
|
347 |
+
display: none;
|
348 |
+
}
|
349 |
+
|
350 |
+
.emoji-picker {
|
351 |
+
height: auto;
|
352 |
+
z-index: 1060;
|
353 |
+
}
|
354 |
+
|
355 |
+
.emoji-picker__tab.active {
|
356 |
+
color: #79b333;
|
357 |
+
border-bottom: 3px solid #79b333;
|
358 |
+
}
|
359 |
+
|
360 |
+
.b2sFavoriteStar {
|
361 |
+
font-size: 22px;
|
362 |
+
margin-top: 6px;
|
363 |
+
color: #ffb900;
|
364 |
+
cursor: pointer;
|
365 |
+
}
|
366 |
+
|
367 |
+
.b2sFavoriteStarLoading {
|
368 |
+
animation: 1.5s ease-in-out 0s normal none infinite running sk-pulseScaleOut;
|
369 |
+
}
|
assets/css/b2s/ship.css
CHANGED
@@ -599,14 +599,13 @@ input[type="checkbox"], input[type="radio"] {
|
|
599 |
outline: 0 none;
|
600 |
}
|
601 |
|
602 |
-
.fb-textarea-input,.tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input, .reddit-textarea-input{
|
603 |
font-size: 14px;
|
604 |
font-weight: normal;
|
605 |
line-height: 1.125;
|
606 |
width: 100%;
|
607 |
border: medium none;
|
608 |
border-radius: 0;
|
609 |
-
margin-top: 10px;
|
610 |
margin-bottom: 10px;
|
611 |
font-family: helvetica,arial,sans-serif;
|
612 |
}
|
@@ -788,10 +787,6 @@ input[type="number"]{
|
|
788 |
border-color: #204d74 !important;
|
789 |
}
|
790 |
|
791 |
-
.b2s-post-approve-info{
|
792 |
-
display: none;
|
793 |
-
}
|
794 |
-
|
795 |
.b2s-sidebar-menu-item{
|
796 |
font-weight: 600 !important;
|
797 |
}
|
@@ -827,4 +822,32 @@ input[type="number"]{
|
|
827 |
|
828 |
#b2s-auth-network-6-location, #b2s-auth-network-6-board {
|
829 |
max-width: 100% !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
830 |
}
|
599 |
outline: 0 none;
|
600 |
}
|
601 |
|
602 |
+
.fb-textarea-input,.tw-textarea-input, .xing-textarea-input, .linkedin-textarea-input, .reddit-textarea-input, .b2s-post-item-details-item-message-input{
|
603 |
font-size: 14px;
|
604 |
font-weight: normal;
|
605 |
line-height: 1.125;
|
606 |
width: 100%;
|
607 |
border: medium none;
|
608 |
border-radius: 0;
|
|
|
609 |
margin-bottom: 10px;
|
610 |
font-family: helvetica,arial,sans-serif;
|
611 |
}
|
787 |
border-color: #204d74 !important;
|
788 |
}
|
789 |
|
|
|
|
|
|
|
|
|
790 |
.b2s-sidebar-menu-item{
|
791 |
font-weight: 600 !important;
|
792 |
}
|
822 |
|
823 |
#b2s-auth-network-6-location, #b2s-auth-network-6-board {
|
824 |
max-width: 100% !important;
|
825 |
+
}
|
826 |
+
|
827 |
+
.b2s-post-item-details-item-message-area {
|
828 |
+
display: inline-block;
|
829 |
+
position: relative;
|
830 |
+
min-width: 100%;
|
831 |
+
}
|
832 |
+
|
833 |
+
.emoji-picker__content .active {
|
834 |
+
background-color: #fff;
|
835 |
+
}
|
836 |
+
|
837 |
+
.emoji-picker__content {
|
838 |
+
height: 21.5rem;
|
839 |
+
}
|
840 |
+
|
841 |
+
.emoji-picker__preview {
|
842 |
+
display: none;
|
843 |
+
}
|
844 |
+
|
845 |
+
.emoji-picker {
|
846 |
+
height: auto;
|
847 |
+
z-index: 1060;
|
848 |
+
}
|
849 |
+
|
850 |
+
.emoji-picker__tab.active {
|
851 |
+
color: #79b333;
|
852 |
+
border-bottom: 3px solid #79b333;
|
853 |
}
|
assets/css/general.css
CHANGED
@@ -7605,4 +7605,20 @@ CSS CheckBOX
|
|
7605 |
|
7606 |
.b2s-free-link {
|
7607 |
font-size: 13px;
|
7608 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7605 |
|
7606 |
.b2s-free-link {
|
7607 |
font-size: 13px;
|
7608 |
+
}
|
7609 |
+
|
7610 |
+
.b2s-post-item-details-item-message-emoji-btn:active {
|
7611 |
+
box-shadow: none !important;
|
7612 |
+
opacity: 0.5;
|
7613 |
+
}
|
7614 |
+
|
7615 |
+
.b2s-post-item-details-item-message-emoji-btn {
|
7616 |
+
position: absolute;
|
7617 |
+
background-color: transparent;
|
7618 |
+
font-size: 2rem !important;
|
7619 |
+
color: #79b333;
|
7620 |
+
max-width: 0px;
|
7621 |
+
max-height: 0px;
|
7622 |
+
bottom: 50px;
|
7623 |
+
right: 40px;
|
7624 |
+
}
|
assets/images/portale/21_flat.png
ADDED
Binary file
|
assets/js/b2s/calendar.js
CHANGED
@@ -173,25 +173,10 @@ function showEditSchedCalendarPost(b2s_id, post_id, network_auth_id, network_typ
|
|
173 |
} else {
|
174 |
jQuery('.b2sChangeCardMeta[data-network-auth-id="' + network_auth_id + '"]').val("1");
|
175 |
}
|
176 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
177 |
-
if (network_id == 1 && network_type == 0) {
|
178 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", false);
|
179 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').show();
|
180 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + network_auth_id + '"]').show();
|
181 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + network_auth_id + '"]').hide();
|
182 |
-
}
|
183 |
} else {
|
184 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
185 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
186 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').hide();
|
187 |
-
|
188 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
189 |
-
if (network_id == 1 && network_type == 0) {
|
190 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
191 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').hide();
|
192 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + network_auth_id + '"]').hide();
|
193 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + network_auth_id + '"]').show();
|
194 |
-
}
|
195 |
}
|
196 |
|
197 |
//Content Curation
|
@@ -659,7 +644,7 @@ function checkSchedDateTime(dataNetworkAuthId) {
|
|
659 |
//utc current time
|
660 |
var now = new Date();
|
661 |
//offset between utc und user
|
662 |
-
|
663 |
//enter hour to user time
|
664 |
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
665 |
//calculate datetime in utc
|
173 |
} else {
|
174 |
jQuery('.b2sChangeCardMeta[data-network-auth-id="' + network_auth_id + '"]').val("1");
|
175 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
176 |
} else {
|
177 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
178 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
179 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').hide();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
}
|
181 |
|
182 |
//Content Curation
|
644 |
//utc current time
|
645 |
var now = new Date();
|
646 |
//offset between utc und user
|
647 |
+
var offset = (parseInt(now.getTimezoneOffset() / 60)) * (-1);
|
648 |
//enter hour to user time
|
649 |
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
650 |
//calculate datetime in utc
|
assets/js/b2s/curation.js
CHANGED
@@ -10,9 +10,25 @@ jQuery(window).on("load", function () {
|
|
10 |
var url_string = window.location.href;
|
11 |
var url_param = new URL(url_string);
|
12 |
var url = url_param.searchParams.get("url");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
if (typeof url != "undefined" && url != "" && url != null) {
|
14 |
jQuery('#b2s-curation-input-url').val(url);
|
15 |
jQuery('.b2s-btn-curation-continue').trigger('click');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
}
|
17 |
});
|
18 |
|
@@ -106,6 +122,7 @@ function scrapeDetails(url) {
|
|
106 |
jQuery('.b2s-curation-input-area').hide();
|
107 |
jQuery('.b2s-curation-settings-area').hide();
|
108 |
jQuery('.b2s-curation-preview-area').hide();
|
|
|
109 |
jQuery('.b2s-server-connection-fail').hide();
|
110 |
jQuery('#b2s-curation-no-auth-info').hide();
|
111 |
jQuery('#b2s-curation-no-review-info').hide();
|
@@ -129,6 +146,7 @@ function scrapeDetails(url) {
|
|
129 |
jQuery('.b2s-loading-area').hide();
|
130 |
jQuery('.b2s-curation-settings-area').hide();
|
131 |
jQuery('.b2s-curation-preview-area').hide();
|
|
|
132 |
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
133 |
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
134 |
return false;
|
@@ -192,6 +210,7 @@ function scrapeDetails(url) {
|
|
192 |
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
193 |
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
194 |
}
|
|
|
195 |
if (data.scrapeError == true) {
|
196 |
jQuery('#b2s-post-curation-preview-title').attr('type', 'text');
|
197 |
}
|
@@ -217,36 +236,49 @@ jQuery(document).on("keyup", "#b2s-post-curation-comment", function () {
|
|
217 |
});
|
218 |
|
219 |
jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
220 |
-
jQuery('#b2s-post-curation-action').val('b2s_curation_share');
|
221 |
jQuery('#b2s-curation-no-data-info').hide();
|
222 |
jQuery('#b2s-curation-no-auth-info').hide();
|
223 |
jQuery('#b2s-curation-saved-draft-info').hide();
|
224 |
-
|
225 |
var noContent = false;
|
226 |
-
if
|
227 |
-
jQuery('#b2s-post-curation-preview-title').
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
jQuery('#b2s-post-curation-comment').
|
232 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
}
|
234 |
if (noContent) {
|
235 |
return false;
|
236 |
}
|
237 |
-
|
238 |
-
jQuery('.b2s-curation-post-list
|
|
|
239 |
jQuery('.b2s-loading-area').show();
|
240 |
jQuery('.b2s-curation-settings-area').hide();
|
241 |
jQuery('.b2s-curation-preview-area').hide();
|
242 |
-
|
|
|
|
|
243 |
jQuery.ajax({
|
244 |
processData: false,
|
245 |
url: ajaxurl,
|
246 |
type: "POST",
|
247 |
dataType: "json",
|
248 |
cache: false,
|
249 |
-
data: jQuery("#b2s-curation-post-form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
250 |
error: function () {
|
251 |
jQuery('.b2s-server-connection-fail').show();
|
252 |
return false;
|
@@ -255,12 +287,16 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
255 |
if (data.result == true) {
|
256 |
jQuery('.b2s-loading-area').hide();
|
257 |
jQuery('.b2s-curation-post-list-area').show();
|
258 |
-
jQuery('.b2s-curation-post-list
|
259 |
} else {
|
260 |
jQuery('.b2s-loading-area').hide();
|
261 |
jQuery('.b2s-curation-post-list-area').hide();
|
262 |
jQuery('.b2s-curation-settings-area').show();
|
263 |
-
jQuery('
|
|
|
|
|
|
|
|
|
264 |
|
265 |
if (data.error == 'NO_AUTH') {
|
266 |
jQuery('#b2s-curation-no-auth-info').show();
|
@@ -349,28 +385,41 @@ jQuery(document).on('click', '#b2s-btn-curation-customize', function () {
|
|
349 |
jQuery('#b2s-curation-no-auth-info').hide();
|
350 |
jQuery('#b2s-curation-saved-draft-info').hide();
|
351 |
var noContent = false;
|
352 |
-
if
|
353 |
-
jQuery('#b2s-post-curation-preview-title').
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
jQuery('#b2s-post-curation-comment').
|
358 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
}
|
360 |
if (noContent) {
|
361 |
return false;
|
362 |
}
|
363 |
-
jQuery('
|
364 |
jQuery('.b2s-loading-area').show();
|
365 |
jQuery('.b2s-curation-settings-area').hide();
|
366 |
jQuery('.b2s-curation-preview-area').hide();
|
|
|
|
|
367 |
jQuery.ajax({
|
368 |
processData: false,
|
369 |
url: ajaxurl,
|
370 |
type: "POST",
|
371 |
dataType: "json",
|
372 |
cache: false,
|
373 |
-
data: jQuery("#b2s-curation-post-form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
374 |
error: function () {
|
375 |
jQuery('.b2s-server-connection-fail').show();
|
376 |
return false;
|
@@ -446,28 +495,41 @@ jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
|
446 |
jQuery('#b2s-curation-no-auth-info').hide();
|
447 |
jQuery('#b2s-curation-saved-draft-info').hide();
|
448 |
var noContent = false;
|
449 |
-
if
|
450 |
-
jQuery('#b2s-post-curation-preview-title').
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
jQuery('#b2s-post-curation-comment').
|
455 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
456 |
}
|
457 |
if (noContent) {
|
458 |
return false;
|
459 |
}
|
460 |
-
jQuery('
|
461 |
jQuery('.b2s-loading-area').show();
|
462 |
jQuery('.b2s-curation-settings-area').hide();
|
463 |
jQuery('.b2s-curation-preview-area').hide();
|
|
|
|
|
464 |
jQuery.ajax({
|
465 |
processData: false,
|
466 |
url: ajaxurl,
|
467 |
type: "POST",
|
468 |
dataType: "json",
|
469 |
cache: false,
|
470 |
-
data: jQuery("#b2s-curation-post-form").serialize() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
471 |
error: function () {
|
472 |
jQuery('.b2s-server-connection-fail').show();
|
473 |
return false;
|
@@ -477,27 +539,259 @@ jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
|
477 |
if (typeof data.postId != undefined) {
|
478 |
jQuery('#b2s-draft-id').val(data.postId);
|
479 |
}
|
480 |
-
jQuery('.b2s-loading-area').hide();
|
481 |
-
jQuery('.b2s-curation-settings-area').show();
|
482 |
-
jQuery('.b2s-curation-preview-area').show();
|
483 |
jQuery('#b2s-curation-saved-draft-info').show();
|
484 |
setTimeout(function () {
|
485 |
jQuery('#b2s-curation-saved-draft-info').fadeOut("slow");
|
486 |
}, 5000);
|
487 |
-
return false;
|
488 |
} else {
|
489 |
-
jQuery('.b2s-loading-area').hide();
|
490 |
jQuery('#b2s-curation-no-data-info').show();
|
491 |
-
jQuery('.b2s-curation-settings-area').show();
|
492 |
-
jQuery('.b2s-curation-preview-area').show();
|
493 |
if(data.error == 'nonce') {
|
494 |
jQuery('.b2s-nonce-check-fail').show();
|
495 |
}
|
496 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
497 |
|
498 |
}
|
499 |
});
|
500 |
return false;
|
501 |
});
|
502 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
503 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
var url_string = window.location.href;
|
11 |
var url_param = new URL(url_string);
|
12 |
var url = url_param.searchParams.get("url");
|
13 |
+
var comment = url_param.searchParams.get("comment");
|
14 |
+
var image_id = url_param.searchParams.get("image_id");
|
15 |
+
var image_url = url_param.searchParams.get("image_url");
|
16 |
+
var postId = url_param.searchParams.get("postId");
|
17 |
+
if (typeof postId != "undefined" && postId != "" && postId != null) {
|
18 |
+
jQuery('#b2s-draft-id').val(postId);
|
19 |
+
}
|
20 |
if (typeof url != "undefined" && url != "" && url != null) {
|
21 |
jQuery('#b2s-curation-input-url').val(url);
|
22 |
jQuery('.b2s-btn-curation-continue').trigger('click');
|
23 |
+
} else if(typeof comment != "undefined" && comment != "" && comment != null) {
|
24 |
+
jQuery('.b2s-curation-format-image').trigger('click');
|
25 |
+
jQuery('.b2s-post-item-details-item-message-input').val(comment);
|
26 |
+
if(typeof image_id != "undefined" && image_id != "" && image_id != null && typeof image_url != "undefined" && image_url != "" && image_url != null) {
|
27 |
+
jQuery('.b2s-post-item-details-url-image').attr('src', image_url);
|
28 |
+
jQuery('.b2s-image-url-hidden-field').val(image_url);
|
29 |
+
jQuery('.b2s-image-id-hidden-field').val(image_id);
|
30 |
+
jQuery('.b2s-image-remove-btn').show();
|
31 |
+
}
|
32 |
}
|
33 |
});
|
34 |
|
122 |
jQuery('.b2s-curation-input-area').hide();
|
123 |
jQuery('.b2s-curation-settings-area').hide();
|
124 |
jQuery('.b2s-curation-preview-area').hide();
|
125 |
+
jQuery('.b2s-curation-select').hide();
|
126 |
jQuery('.b2s-server-connection-fail').hide();
|
127 |
jQuery('#b2s-curation-no-auth-info').hide();
|
128 |
jQuery('#b2s-curation-no-review-info').hide();
|
146 |
jQuery('.b2s-loading-area').hide();
|
147 |
jQuery('.b2s-curation-settings-area').hide();
|
148 |
jQuery('.b2s-curation-preview-area').hide();
|
149 |
+
jQuery('.b2s-curation-preview-area').show();
|
150 |
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
151 |
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
152 |
return false;
|
210 |
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
211 |
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
212 |
}
|
213 |
+
jQuery('.b2s-curation-select').show();
|
214 |
if (data.scrapeError == true) {
|
215 |
jQuery('#b2s-post-curation-preview-title').attr('type', 'text');
|
216 |
}
|
236 |
});
|
237 |
|
238 |
jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
|
239 |
jQuery('#b2s-curation-no-data-info').hide();
|
240 |
jQuery('#b2s-curation-no-auth-info').hide();
|
241 |
jQuery('#b2s-curation-saved-draft-info').hide();
|
242 |
+
jQuery('.b2s-post-curation-action').val('b2s_curation_share');
|
243 |
var noContent = false;
|
244 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
245 |
+
if (jQuery('#b2s-post-curation-preview-title').val().length === 0) {
|
246 |
+
jQuery('#b2s-post-curation-preview-title').addClass('error');
|
247 |
+
noContent = true;
|
248 |
+
}
|
249 |
+
if (jQuery('#b2s-post-curation-comment').val().length === 0) {
|
250 |
+
jQuery('#b2s-post-curation-comment').addClass('error');
|
251 |
+
noContent = true;
|
252 |
+
}
|
253 |
+
} else {
|
254 |
+
if (jQuery('.b2s-image-url-hidden-field').val().length === 0) {
|
255 |
+
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
256 |
+
noContent = true;
|
257 |
+
}
|
258 |
+
if (jQuery('.b2s-post-item-details-item-message-input').val().length === 0) {
|
259 |
+
jQuery('.b2s-post-item-details-item-message-input').addClass('error');
|
260 |
+
noContent = true;
|
261 |
+
}
|
262 |
}
|
263 |
if (noContent) {
|
264 |
return false;
|
265 |
}
|
266 |
+
|
267 |
+
jQuery('.b2s-curation-post-list').html("");
|
268 |
+
jQuery('.b2s-curation-post-list-area').hide();
|
269 |
jQuery('.b2s-loading-area').show();
|
270 |
jQuery('.b2s-curation-settings-area').hide();
|
271 |
jQuery('.b2s-curation-preview-area').hide();
|
272 |
+
jQuery('.b2s-curation-image-area').hide();
|
273 |
+
jQuery('.b2s-curation-select').hide();
|
274 |
+
|
275 |
jQuery.ajax({
|
276 |
processData: false,
|
277 |
url: ajaxurl,
|
278 |
type: "POST",
|
279 |
dataType: "json",
|
280 |
cache: false,
|
281 |
+
data: jQuery("#b2s-curation-post-form").serialize() + '&postFormat='+jQuery('#b2s-curation-post-format').val() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
282 |
error: function () {
|
283 |
jQuery('.b2s-server-connection-fail').show();
|
284 |
return false;
|
287 |
if (data.result == true) {
|
288 |
jQuery('.b2s-loading-area').hide();
|
289 |
jQuery('.b2s-curation-post-list-area').show();
|
290 |
+
jQuery('.b2s-curation-post-list').html(data.content);
|
291 |
} else {
|
292 |
jQuery('.b2s-loading-area').hide();
|
293 |
jQuery('.b2s-curation-post-list-area').hide();
|
294 |
jQuery('.b2s-curation-settings-area').show();
|
295 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
296 |
+
jQuery('.b2s-curation-preview-area').show();
|
297 |
+
} else {
|
298 |
+
jQuery('.b2s-curation-image-area').show();
|
299 |
+
}
|
300 |
|
301 |
if (data.error == 'NO_AUTH') {
|
302 |
jQuery('#b2s-curation-no-auth-info').show();
|
385 |
jQuery('#b2s-curation-no-auth-info').hide();
|
386 |
jQuery('#b2s-curation-saved-draft-info').hide();
|
387 |
var noContent = false;
|
388 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
389 |
+
if (jQuery('#b2s-post-curation-preview-title').val().length === 0) {
|
390 |
+
jQuery('#b2s-post-curation-preview-title').addClass('error');
|
391 |
+
noContent = true;
|
392 |
+
}
|
393 |
+
if (jQuery('#b2s-post-curation-comment').val().length === 0) {
|
394 |
+
jQuery('#b2s-post-curation-comment').addClass('error');
|
395 |
+
noContent = true;
|
396 |
+
}
|
397 |
+
} else {
|
398 |
+
if (jQuery('.b2s-image-url-hidden-field').val().length === 0) {
|
399 |
+
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
400 |
+
noContent = true;
|
401 |
+
}
|
402 |
+
if (jQuery('.b2s-post-item-details-item-message-input').val().length === 0) {
|
403 |
+
jQuery('.b2s-post-item-details-item-message-input').addClass('error');
|
404 |
+
noContent = true;
|
405 |
+
}
|
406 |
}
|
407 |
if (noContent) {
|
408 |
return false;
|
409 |
}
|
410 |
+
jQuery('.b2s-post-curation-action').val('b2s_curation_customize');
|
411 |
jQuery('.b2s-loading-area').show();
|
412 |
jQuery('.b2s-curation-settings-area').hide();
|
413 |
jQuery('.b2s-curation-preview-area').hide();
|
414 |
+
jQuery('.b2s-curation-image-area').hide();
|
415 |
+
jQuery('.b2s-curation-select').hide();
|
416 |
jQuery.ajax({
|
417 |
processData: false,
|
418 |
url: ajaxurl,
|
419 |
type: "POST",
|
420 |
dataType: "json",
|
421 |
cache: false,
|
422 |
+
data: jQuery("#b2s-curation-post-form").serialize() + '&postFormat='+jQuery('#b2s-curation-post-format').val() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
423 |
error: function () {
|
424 |
jQuery('.b2s-server-connection-fail').show();
|
425 |
return false;
|
495 |
jQuery('#b2s-curation-no-auth-info').hide();
|
496 |
jQuery('#b2s-curation-saved-draft-info').hide();
|
497 |
var noContent = false;
|
498 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
499 |
+
if (jQuery('#b2s-post-curation-preview-title').val().length === 0) {
|
500 |
+
jQuery('#b2s-post-curation-preview-title').addClass('error');
|
501 |
+
noContent = true;
|
502 |
+
}
|
503 |
+
if (jQuery('#b2s-post-curation-comment').val().length === 0) {
|
504 |
+
jQuery('#b2s-post-curation-comment').addClass('error');
|
505 |
+
noContent = true;
|
506 |
+
}
|
507 |
+
} else {
|
508 |
+
if (jQuery('.b2s-image-url-hidden-field').val().length === 0) {
|
509 |
+
jQuery('.b2s-post-item-details-url-image').addClass('error');
|
510 |
+
noContent = true;
|
511 |
+
}
|
512 |
+
if (jQuery('.b2s-post-item-details-item-message-input').val().length === 0) {
|
513 |
+
jQuery('.b2s-post-item-details-item-message-input').addClass('error');
|
514 |
+
noContent = true;
|
515 |
+
}
|
516 |
}
|
517 |
if (noContent) {
|
518 |
return false;
|
519 |
}
|
520 |
+
jQuery('.b2s-post-curation-action').val('b2s_curation_draft');
|
521 |
jQuery('.b2s-loading-area').show();
|
522 |
jQuery('.b2s-curation-settings-area').hide();
|
523 |
jQuery('.b2s-curation-preview-area').hide();
|
524 |
+
jQuery('.b2s-curation-image-area').hide();
|
525 |
+
jQuery('.b2s-curation-select').hide();
|
526 |
jQuery.ajax({
|
527 |
processData: false,
|
528 |
url: ajaxurl,
|
529 |
type: "POST",
|
530 |
dataType: "json",
|
531 |
cache: false,
|
532 |
+
data: jQuery("#b2s-curation-post-form").serialize() + '&postFormat='+jQuery('#b2s-curation-post-format').val() + '&b2s_security_nonce=' + jQuery('#b2s_security_nonce').val(),
|
533 |
error: function () {
|
534 |
jQuery('.b2s-server-connection-fail').show();
|
535 |
return false;
|
539 |
if (typeof data.postId != undefined) {
|
540 |
jQuery('#b2s-draft-id').val(data.postId);
|
541 |
}
|
|
|
|
|
|
|
542 |
jQuery('#b2s-curation-saved-draft-info').show();
|
543 |
setTimeout(function () {
|
544 |
jQuery('#b2s-curation-saved-draft-info').fadeOut("slow");
|
545 |
}, 5000);
|
|
|
546 |
} else {
|
|
|
547 |
jQuery('#b2s-curation-no-data-info').show();
|
|
|
|
|
548 |
if(data.error == 'nonce') {
|
549 |
jQuery('.b2s-nonce-check-fail').show();
|
550 |
}
|
551 |
}
|
552 |
+
jQuery('.b2s-loading-area').hide();
|
553 |
+
jQuery('.b2s-curation-settings-area').show();
|
554 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
555 |
+
jQuery('.b2s-curation-preview-area').show();
|
556 |
+
} else {
|
557 |
+
jQuery('.b2s-curation-image-area').show();
|
558 |
+
}
|
559 |
+
jQuery('.b2s-curation-select').show();
|
560 |
|
561 |
}
|
562 |
});
|
563 |
return false;
|
564 |
});
|
565 |
|
566 |
+
jQuery(document).on('click', '.b2s-curation-format-link', function() {
|
567 |
+
if(jQuery(this).hasClass('btn-primary')){
|
568 |
+
return false;
|
569 |
+
}
|
570 |
+
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-image').val());
|
571 |
+
jQuery('#b2s-curation-post-format').val('0');
|
572 |
+
jQuery('.b2s-curation-format-link').removeClass('btn-light').addClass('btn-primary');
|
573 |
+
jQuery('.b2s-curation-format-image').removeClass('btn-primary').addClass('btn-light');
|
574 |
+
jQuery('.b2s-loading-area').hide();
|
575 |
+
jQuery('.b2s-curation-link-area').show();
|
576 |
+
jQuery('.b2s-curation-image-area').hide();
|
577 |
+
if(jQuery('.b2s-curation-input-area').is(':visible')){
|
578 |
+
jQuery('.b2s-curation-settings-area').hide();
|
579 |
+
} else {
|
580 |
+
jQuery('.b2s-curation-settings-area').show();
|
581 |
+
}
|
582 |
+
});
|
583 |
+
|
584 |
+
jQuery(document).on('click', '.b2s-curation-format-image', function() {
|
585 |
+
if(jQuery(this).hasClass('btn-primary')){
|
586 |
+
return false;
|
587 |
+
}
|
588 |
+
jQuery('#b2s-post-curation-comment-image').val(jQuery('#b2s-post-curation-comment').val());
|
589 |
+
jQuery('#b2s-curation-post-format').val('1');
|
590 |
+
jQuery('.b2s-loading-area').show();
|
591 |
+
jQuery('.b2s-curation-link-area').hide();
|
592 |
+
jQuery('.b2s-curation-image-area').hide();
|
593 |
+
jQuery('.b2s-curation-format-image').removeClass('btn-light').addClass('btn-primary');
|
594 |
+
jQuery('.b2s-curation-format-link').removeClass('btn-primary').addClass('btn-light');
|
595 |
+
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
596 |
+
jQuery.ajax({
|
597 |
+
url: ajaxurl,
|
598 |
+
type: "GET",
|
599 |
+
dataType: "json",
|
600 |
+
cache: false,
|
601 |
+
data: {
|
602 |
+
'action': 'b2s_get_curation_ship_details',
|
603 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
604 |
+
},
|
605 |
+
error: function () {
|
606 |
+
jQuery('.b2s-server-connection-fail').show();
|
607 |
+
return false;
|
608 |
+
},
|
609 |
+
success: function (data) {
|
610 |
+
if(jQuery('.b2s-curation-format-image').hasClass('btn-primary')) {
|
611 |
+
if (data.result == true) {
|
612 |
+
jQuery('.b2s-curation-settings-area').html(data.settings);
|
613 |
+
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
614 |
+
jQuery('.b2s-loading-area').hide();
|
615 |
+
jQuery('.b2s-curation-image-area').show();
|
616 |
+
jQuery('.b2s-curation-settings-area').show();
|
617 |
+
return false;
|
618 |
+
} else {
|
619 |
+
jQuery('.b2s-loading-area').hide();
|
620 |
+
if(data.error == 'nonce') {
|
621 |
+
jQuery('.b2s-nonce-check-fail').show();
|
622 |
+
}
|
623 |
+
if (data.error == "NO_AUTH") {
|
624 |
+
jQuery('.b2s-curation-image-area').show();
|
625 |
+
jQuery('.b2s-curation-settings-area').hide();
|
626 |
+
jQuery('#b2s-curation-no-auth-info').show();
|
627 |
+
jQuery('#b2s-curation-no-review-info').hide();
|
628 |
+
jQuery('#b2s-curation-no-data-info').hide();
|
629 |
+
}
|
630 |
+
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
631 |
+
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
632 |
+
}
|
633 |
+
}
|
634 |
+
}
|
635 |
+
});
|
636 |
+
} else {
|
637 |
+
jQuery('.b2s-loading-area').hide();
|
638 |
+
jQuery('.b2s-curation-image-area').show();
|
639 |
+
jQuery('.b2s-curation-settings-area').show();
|
640 |
+
}
|
641 |
+
return false;
|
642 |
+
});
|
643 |
+
|
644 |
+
var emojiTranslation = JSON.parse(jQuery('#b2sEmojiTranslation').val());
|
645 |
+
var picker = new EmojiButton({
|
646 |
+
position: 'auto',
|
647 |
+
autoHide: false,
|
648 |
+
i18n: {
|
649 |
+
search: emojiTranslation['search'],
|
650 |
+
categories: {
|
651 |
+
recents: emojiTranslation['recents'],
|
652 |
+
smileys: emojiTranslation['smileys'],
|
653 |
+
animals: emojiTranslation['animals'],
|
654 |
+
food: emojiTranslation['food'],
|
655 |
+
activities: emojiTranslation['activities'],
|
656 |
+
travel: emojiTranslation['travel'],
|
657 |
+
objects: emojiTranslation['objects'],
|
658 |
+
symbols: emojiTranslation['symbols'],
|
659 |
+
flags: emojiTranslation['flags']
|
660 |
+
},
|
661 |
+
notFound: emojiTranslation['notFound']
|
662 |
+
}
|
663 |
+
});
|
664 |
+
picker.on('emoji', function(emoji){
|
665 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
666 |
+
var text = jQuery('#b2s-post-curation-comment').val();
|
667 |
+
var start = jQuery('#b2s-post-curation-comment').attr('selectionStart');
|
668 |
+
var end = jQuery('#b2s-post-curation-comment').attr('selectionEnd');
|
669 |
+
} else {
|
670 |
+
var text = jQuery('#b2s-post-curation-comment-image').val();
|
671 |
+
var start = jQuery('#b2s-post-curation-comment-image').attr('selectionStart');
|
672 |
+
var end = jQuery('#b2s-post-curation-comment-image').attr('selectionEnd');
|
673 |
+
}
|
674 |
+
if(typeof start == 'undefined' || typeof end == 'undefined'){
|
675 |
+
start = text.length;
|
676 |
+
end = text.length;
|
677 |
+
}
|
678 |
+
var newText = text.slice(0, start) + emoji + text.slice(end);
|
679 |
+
jQuery('.b2s-post-item-details-item-message-input').val(newText);
|
680 |
+
jQuery('.b2s-post-item-details-item-message-input').focus();
|
681 |
+
jQuery('.b2s-post-item-details-item-message-input').prop("selectionStart", parseInt(start)+emoji.length);
|
682 |
+
jQuery('.b2s-post-item-details-item-message-input').prop("selectionEnd", parseInt(start)+emoji.length);
|
683 |
+
jQuery('.b2s-post-item-details-item-message-input').trigger('keyup');
|
684 |
+
});
|
685 |
+
|
686 |
+
jQuery(document).on('click', '.b2s-post-item-details-item-message-emoji-btn', function() {
|
687 |
+
if(picker.pickerVisible) {
|
688 |
+
picker.hidePicker();
|
689 |
+
} else {
|
690 |
+
currentEmojiNetworkAuthId = jQuery(this).attr('data-network-auth-id');
|
691 |
+
currentEmojiNetworkCount = jQuery(this).attr('data-network-count');
|
692 |
+
picker.showPicker(jQuery(this));
|
693 |
+
}
|
694 |
+
});
|
695 |
+
|
696 |
+
jQuery(document).on('mousedown mouseup keydown keyup', '.b2s-post-item-details-item-message-input', function () {
|
697 |
+
var tb = jQuery(this).get(0);
|
698 |
+
jQuery(this).attr('selectionStart', tb.selectionStart);
|
699 |
+
jQuery(this).attr('selectionEnd', tb.selectionEnd);
|
700 |
+
});
|
701 |
+
|
702 |
+
jQuery(document).on('click', '.b2s-post-item-details-url-image', function() {
|
703 |
+
jQuery('.b2s-select-image-modal-open').trigger('click');
|
704 |
+
});
|
705 |
|
706 |
+
jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
|
707 |
+
jQuery('#b2s-network-select-image').modal('show');
|
708 |
+
return false;
|
709 |
+
});
|
710 |
+
|
711 |
+
jQuery(document).on('click', '.b2s-upload-image', function () {
|
712 |
+
if (typeof wp !== 'undefined' && wp.media && wp.media.editor) {
|
713 |
+
jQuery('#b2s-network-select-image').modal('hide');
|
714 |
+
wpMedia = wp.media({
|
715 |
+
title: jQuery('#b2s_wp_media_headline').val(),
|
716 |
+
button: {
|
717 |
+
text: jQuery('#b2s_wp_media_btn').val(),
|
718 |
+
},
|
719 |
+
multiple: false,
|
720 |
+
library: {type: 'image'}
|
721 |
+
});
|
722 |
+
wpMedia.open();
|
723 |
+
wpMedia.on('select', function () {
|
724 |
+
var count = parseInt(jQuery('.b2s-choose-image-count').val());
|
725 |
+
count = count + 1;
|
726 |
+
jQuery('.b2s-choose-image-count').val(count);
|
727 |
+
var attachment = wpMedia.state().get('selection').first().toJSON();
|
728 |
+
var content = '<div class="b2s-image-item">' +
|
729 |
+
'<div class="b2s-image-item-thumb">' +
|
730 |
+
'<label for="b2s-image-count-' + count + '">' +
|
731 |
+
'<img class="img-thumbnail networkImage" alt="blogImage" src="' + attachment.url + '">' +
|
732 |
+
'</label>' +
|
733 |
+
'</div>' +
|
734 |
+
'<div class="b2s-image-item-caption text-center">' +
|
735 |
+
'<div class="b2s-image-item-caption-resolution clearfix small"></div>' +
|
736 |
+
'<input type="radio" value="' + attachment.url + '" data-src="' + attachment.url + '" data-id="' + attachment.id + '" class="checkNetworkImage" name="image_url" id="b2s-image-count-' + count + '">' +
|
737 |
+
'</div>' +
|
738 |
+
'</div>';
|
739 |
+
jQuery('.b2s-image-choose-area').html(jQuery('.b2s-image-choose-area').html() + content);
|
740 |
+
jQuery('.b2s-choose-image-no-image-info-text').hide();
|
741 |
+
jQuery('.b2s-choose-image-no-image-extra-btn').hide();
|
742 |
+
jQuery('.b2s-upload-image-invalid-extension').hide();
|
743 |
+
jQuery('input[name=image_url]:last').prop("checked", true);
|
744 |
+
jQuery('#b2s-network-select-image').modal('show');
|
745 |
+
});
|
746 |
+
wpMedia.on('close', function () {
|
747 |
+
jQuery('#b2s-network-select-image').modal('show');
|
748 |
+
});
|
749 |
+
} else {
|
750 |
+
jQuery('.b2s-upload-image-no-permission').show();
|
751 |
+
}
|
752 |
+
return false;
|
753 |
+
});
|
754 |
+
|
755 |
+
jQuery(document).on('click', '.b2s-image-change', function () {
|
756 |
+
if (jQuery('input[name=image_url]:checked').length > 0) {
|
757 |
+
jQuery('.b2s-post-item-details-url-image').attr('src', jQuery('input[name=image_url]:checked').val());
|
758 |
+
jQuery('.b2s-image-url-hidden-field').val(jQuery('input[name=image_url]:checked').val());
|
759 |
+
jQuery('.b2s-image-id-hidden-field').val(jQuery('input[name=image_url]:checked').data('id'));
|
760 |
+
jQuery('.b2s-image-remove-btn').show();
|
761 |
+
jQuery('.b2s-upload-image-invalid-extension').hide();
|
762 |
+
jQuery('.b2s-upload-image-no-permission').hide();
|
763 |
+
jQuery('.b2s-upload-image-free-version-info').hide();
|
764 |
+
jQuery('.b2s-post-item-details-url-image').removeClass('error');
|
765 |
+
}
|
766 |
+
jQuery('#b2s-network-select-image').modal('hide');
|
767 |
+
return false;
|
768 |
+
});
|
769 |
+
|
770 |
+
jQuery(document).on('click', '.b2s-image-remove-btn', function () {
|
771 |
+
var defaultImage = jQuery('#b2sDefaultNoImage').val();
|
772 |
+
//default
|
773 |
+
jQuery('.b2s-post-item-details-url-image').attr('src', defaultImage);
|
774 |
+
jQuery('.b2s-image-url-hidden-field').val("");
|
775 |
+
jQuery('.b2s-image-id-hidden-field').val("");
|
776 |
+
jQuery('.b2s-image-remove-btn').hide();
|
777 |
+
return false;
|
778 |
+
});
|
779 |
+
|
780 |
+
jQuery(document).on('keyup', '.b2s-post-item-details-item-message-input', function() {
|
781 |
+
jQuery(this).removeClass('error');
|
782 |
+
});
|
783 |
+
|
784 |
+
jQuery(document).on('click', '.b2s-curation-info-premium-btn', function () {
|
785 |
+
jQuery('#b2sInfoCCModal').modal('show');
|
786 |
+
});
|
787 |
+
|
788 |
+
jQuery(document).on('click', '.b2s-re-share-btn', function() {
|
789 |
+
jQuery('.b2s-curation-post-list-area').hide();
|
790 |
+
jQuery('.b2s-curation-settings-area').show();
|
791 |
+
jQuery('.b2s-curation-select').show();
|
792 |
+
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
793 |
+
jQuery('.b2s-curation-preview-area').show();
|
794 |
+
} else {
|
795 |
+
jQuery('.b2s-curation-image-area').show();
|
796 |
+
}
|
797 |
+
});
|
assets/js/b2s/network.js
CHANGED
@@ -15,6 +15,11 @@ jQuery(window).on("load", function () {
|
|
15 |
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
16 |
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length - 1);
|
17 |
});
|
|
|
|
|
|
|
|
|
|
|
18 |
});
|
19 |
|
20 |
|
@@ -250,11 +255,13 @@ jQuery(document).on('click', '.b2s-network-item-team-btn-manage', function () {
|
|
250 |
if (jQuery('#b2s-select-assign-user').html() == '') {
|
251 |
jQuery('#b2s-select-assign-user').attr('disabled', true);
|
252 |
jQuery('#b2s-assign-network-user-auth').attr('disabled', true);
|
|
|
253 |
jQuery('#b2s-assign-info').hide();
|
254 |
jQuery('#b2s-no-assign-user').show();
|
255 |
} else {
|
256 |
jQuery('#b2s-select-assign-user').removeAttr('disabled');
|
257 |
jQuery('#b2s-assign-network-user-auth').removeAttr('disabled');
|
|
|
258 |
jQuery('#b2s-no-assign-user').hide();
|
259 |
jQuery('#b2s-assign-info').show();
|
260 |
}
|
@@ -413,6 +420,8 @@ jQuery(document).on('click', '#b2s-assign-network-user-auth', function () {
|
|
413 |
'action': 'b2s_assign_network_user_auth',
|
414 |
'networkAuthId': authId,
|
415 |
'assignBlogUserId': assignBlogUserId,
|
|
|
|
|
416 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
417 |
},
|
418 |
error: function () {
|
@@ -431,6 +440,7 @@ jQuery(document).on('click', '#b2s-assign-network-user-auth', function () {
|
|
431 |
jQuery('#b2s-select-assign-user option[value="' + assignBlogUserId + '"]').remove();
|
432 |
if (jQuery('#b2s-select-assign-user').html() == '') {
|
433 |
jQuery('#b2s-select-assign-user').attr('disabled', true);
|
|
|
434 |
jQuery('#b2s-assign-info').hide();
|
435 |
jQuery('#b2s-no-assign-user').show();
|
436 |
}
|
@@ -1172,17 +1182,6 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
|
1172 |
if (jQuery('#b2sUserVersion').val() < 1 && jQuery('#b2s-edit-template-network-id').val() != 1) {
|
1173 |
return false;
|
1174 |
}
|
1175 |
-
var contentError = false;
|
1176 |
-
jQuery('.b2s-edit-template-post-content').each(function (i, obj) {
|
1177 |
-
jQuery(obj).removeClass('error');
|
1178 |
-
if (jQuery(obj).val() == "") {
|
1179 |
-
jQuery(obj).addClass('error');
|
1180 |
-
contentError = true;
|
1181 |
-
}
|
1182 |
-
});
|
1183 |
-
if (contentError) {
|
1184 |
-
return false;
|
1185 |
-
}
|
1186 |
|
1187 |
if (jQuery('#b2s-edit-template-network-id').val() == 12) {
|
1188 |
var matches = jQuery('.b2s-edit-template-post-content').val().match(/#/g);
|
@@ -1306,10 +1305,15 @@ jQuery(document).on('click', '.b2s-auth-network-6-login-btn', function () {
|
|
1306 |
'location': jQuery('#b2s-auth-network-6-location').val(),
|
1307 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1308 |
},
|
1309 |
-
error: function () {
|
1310 |
jQuery('.b2s-loading-area').hide();
|
1311 |
jQuery('.b2s-auth-network-6-login-area').show();
|
1312 |
jQuery('.b2s-auth-network-6-login-btn').show();
|
|
|
|
|
|
|
|
|
|
|
1313 |
return false;
|
1314 |
},
|
1315 |
success: function (data) {
|
@@ -1356,9 +1360,15 @@ jQuery(document).on('click', '.b2s-auth-network-6-confirm-btn', function () {
|
|
1356 |
'networkAuthId': jQuery('#b2s-auth-network-6-auth-id').val(),
|
1357 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1358 |
},
|
1359 |
-
error: function () {
|
1360 |
jQuery('.b2s-loading-area').hide();
|
1361 |
jQuery('.b2s-auth-network-6-login-area').show();
|
|
|
|
|
|
|
|
|
|
|
|
|
1362 |
return false;
|
1363 |
},
|
1364 |
success: function (data) {
|
15 |
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
16 |
jQuery('.b2s-network-auth-count-current[data-network-id="' + jQuery(this).attr("data-network-id") + '"').text(jQuery(this).children('li').length - 1);
|
17 |
});
|
18 |
+
|
19 |
+
if(jQuery('#b2sHasXingBusinessPage').length > 0) {
|
20 |
+
jQuery('#b2sXingBusinessPageInfo').show();
|
21 |
+
}
|
22 |
+
|
23 |
});
|
24 |
|
25 |
|
255 |
if (jQuery('#b2s-select-assign-user').html() == '') {
|
256 |
jQuery('#b2s-select-assign-user').attr('disabled', true);
|
257 |
jQuery('#b2s-assign-network-user-auth').attr('disabled', true);
|
258 |
+
jQuery('.b2s-network-assign-option').hide();
|
259 |
jQuery('#b2s-assign-info').hide();
|
260 |
jQuery('#b2s-no-assign-user').show();
|
261 |
} else {
|
262 |
jQuery('#b2s-select-assign-user').removeAttr('disabled');
|
263 |
jQuery('#b2s-assign-network-user-auth').removeAttr('disabled');
|
264 |
+
jQuery('.b2s-network-assign-option').show();
|
265 |
jQuery('#b2s-no-assign-user').hide();
|
266 |
jQuery('#b2s-assign-info').show();
|
267 |
}
|
420 |
'action': 'b2s_assign_network_user_auth',
|
421 |
'networkAuthId': authId,
|
422 |
'assignBlogUserId': assignBlogUserId,
|
423 |
+
'optionBestTimes': jQuery('#b2s-network-assign-option-best-times').is(':checked'),
|
424 |
+
'optionPostingTemplate': jQuery('#b2s-network-assign-option-posting-template').is(':checked'),
|
425 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
426 |
},
|
427 |
error: function () {
|
440 |
jQuery('#b2s-select-assign-user option[value="' + assignBlogUserId + '"]').remove();
|
441 |
if (jQuery('#b2s-select-assign-user').html() == '') {
|
442 |
jQuery('#b2s-select-assign-user').attr('disabled', true);
|
443 |
+
jQuery('.b2s-network-assign-option').hide();
|
444 |
jQuery('#b2s-assign-info').hide();
|
445 |
jQuery('#b2s-no-assign-user').show();
|
446 |
}
|
1182 |
if (jQuery('#b2sUserVersion').val() < 1 && jQuery('#b2s-edit-template-network-id').val() != 1) {
|
1183 |
return false;
|
1184 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1185 |
|
1186 |
if (jQuery('#b2s-edit-template-network-id').val() == 12) {
|
1187 |
var matches = jQuery('.b2s-edit-template-post-content').val().match(/#/g);
|
1305 |
'location': jQuery('#b2s-auth-network-6-location').val(),
|
1306 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1307 |
},
|
1308 |
+
error: function (jqXHR) {
|
1309 |
jQuery('.b2s-loading-area').hide();
|
1310 |
jQuery('.b2s-auth-network-6-login-area').show();
|
1311 |
jQuery('.b2s-auth-network-6-login-btn').show();
|
1312 |
+
if(jqXHR.status == 403) {
|
1313 |
+
jQuery('.b2s-auth-network-6-info[data-info="error_code_403"]').show();
|
1314 |
+
} else {
|
1315 |
+
jQuery('.b2s-auth-network-6-info[data-info="default"]').show();
|
1316 |
+
}
|
1317 |
return false;
|
1318 |
},
|
1319 |
success: function (data) {
|
1360 |
'networkAuthId': jQuery('#b2s-auth-network-6-auth-id').val(),
|
1361 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1362 |
},
|
1363 |
+
error: function (jqXHR) {
|
1364 |
jQuery('.b2s-loading-area').hide();
|
1365 |
jQuery('.b2s-auth-network-6-login-area').show();
|
1366 |
+
jQuery('.b2s-auth-network-6-confirm-btn').show();
|
1367 |
+
if(jqXHR.status == 403) {
|
1368 |
+
jQuery('.b2s-auth-network-6-info[data-info="error_code_403"]').show();
|
1369 |
+
} else {
|
1370 |
+
jQuery('.b2s-auth-network-6-info[data-info="default"]').show();
|
1371 |
+
}
|
1372 |
return false;
|
1373 |
},
|
1374 |
success: function (data) {
|
assets/js/b2s/post.js
CHANGED
@@ -669,27 +669,10 @@ function showEditSchedPost(b2s_id, post_id, network_auth_id, network_type, netwo
|
|
669 |
} else {
|
670 |
jQuery('.b2sChangeCardMeta[data-network-auth-id="' + network_auth_id + '"]').val("1");
|
671 |
}
|
672 |
-
|
673 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
674 |
-
if (network_id == 1 && network_type == 0) {
|
675 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", false);
|
676 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').show();
|
677 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + network_auth_id + '"]').show();
|
678 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + network_auth_id + '"]').hide();
|
679 |
-
}
|
680 |
-
|
681 |
} else {
|
682 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
683 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
684 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').hide();
|
685 |
-
|
686 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
687 |
-
if (network_id == 1 && network_type == 0) {
|
688 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
689 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + network_auth_id + '"]').hide();
|
690 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + network_auth_id + '"]').hide();
|
691 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + network_auth_id + '"]').show();
|
692 |
-
}
|
693 |
}
|
694 |
|
695 |
//Content Curation
|
@@ -895,7 +878,7 @@ function checkSchedDateTime() {
|
|
895 |
//utc current time
|
896 |
var now = new Date();
|
897 |
//offset between utc und user
|
898 |
-
|
899 |
//enter hour to user time
|
900 |
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
901 |
//calculate datetime in utc
|
@@ -976,4 +959,49 @@ jQuery(document).on('click', '.b2s-draft-delete-confirm-btn', function () {
|
|
976 |
return true;
|
977 |
}
|
978 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
979 |
});
|
669 |
} else {
|
670 |
jQuery('.b2sChangeCardMeta[data-network-auth-id="' + network_auth_id + '"]').val("1");
|
671 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
672 |
} else {
|
673 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
674 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + network_auth_id + '"]').prop("readonly", true);
|
675 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-id="' + network_id + '"]').hide();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
676 |
}
|
677 |
|
678 |
//Content Curation
|
878 |
//utc current time
|
879 |
var now = new Date();
|
880 |
//offset between utc und user
|
881 |
+
var offset = (parseInt(now.getTimezoneOffset() / 60)) * (-1);
|
882 |
//enter hour to user time
|
883 |
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
884 |
//calculate datetime in utc
|
959 |
return true;
|
960 |
}
|
961 |
});
|
962 |
+
});
|
963 |
+
|
964 |
+
jQuery(document).on('click', '.b2sFavoriteStar', function () {
|
965 |
+
jQuery(this).addClass('b2sFavoriteStarLoading');
|
966 |
+
var postId = jQuery(this).data('post-id');
|
967 |
+
var newStatus = (jQuery(this).data('is-favorite') == "1" ? 0 : 1);
|
968 |
+
jQuery.ajax({
|
969 |
+
url: ajaxurl,
|
970 |
+
type: "POST",
|
971 |
+
dataType: "json",
|
972 |
+
cache: false,
|
973 |
+
data: {
|
974 |
+
'action': 'b2s_change_favorite_status',
|
975 |
+
'postId': postId,
|
976 |
+
'setStatus': newStatus,
|
977 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
978 |
+
},
|
979 |
+
error: function () {
|
980 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').removeClass('b2sFavoriteStarLoading');
|
981 |
+
jQuery('.b2s-server-connection-fail').show();
|
982 |
+
return false;
|
983 |
+
},
|
984 |
+
success: function (data) {
|
985 |
+
if (data.result == true) {
|
986 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').data('is-favorite', newStatus);
|
987 |
+
if(newStatus == 1){
|
988 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').removeClass('glyphicon-star-empty');
|
989 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').addClass('glyphicon-star');
|
990 |
+
} else {
|
991 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').removeClass('glyphicon-star');
|
992 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').addClass('glyphicon-star-empty');
|
993 |
+
}
|
994 |
+
if(jQuery('#b2sType').val() == 'favorites') {
|
995 |
+
jQuery('.b2s-favorite-list-entry[data-post-id="'+postId+'"]').remove();
|
996 |
+
if(jQuery('.b2s-favorite-list-entry').length == 0) {
|
997 |
+
jQuery('.b2s-sort-result-item-area').html('<li class="list-group-item"><div class="media"><div class="media-body"></div>'+jQuery('#b2sNoFavoritesText').val()+'</div></li>');
|
998 |
+
jQuery('.b2s-sort-pagination-area').hide();
|
999 |
+
}
|
1000 |
+
}
|
1001 |
+
}
|
1002 |
+
jQuery('.b2sFavoriteStar[data-post-id="'+postId+'"]').removeClass('b2sFavoriteStarLoading');
|
1003 |
+
return true;
|
1004 |
+
}
|
1005 |
+
});
|
1006 |
+
|
1007 |
});
|
assets/js/b2s/ship.js
CHANGED
@@ -110,6 +110,26 @@ jQuery.sceditor.command.set(
|
|
110 |
jQuery('#b2sInsertImageType').val("1");
|
111 |
imageSize();
|
112 |
}, tooltip: "Image"});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
|
114 |
|
115 |
jQuery(document).on('click', '.b2s-toogle-calendar-btn', function () {
|
@@ -613,7 +633,7 @@ jQuery(document).on("click", ".b2s-user-network-settings-post-format", function
|
|
613 |
jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').html(postFormatText[postFormatType][postFormat]);
|
614 |
jQuery('.b2s-post-item-details-post-format[data-network-id="' + networkId + '"]').val(postFormat);
|
615 |
}
|
616 |
-
if (jQuery('.b2s-network-select-btn[data-network-auth-id="' + networkAuthId + '"]').attr('data-meta-type') == 'og') {
|
617 |
if (currentOGImage == '' && jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + networkAuthId + '"]').val() != '') {
|
618 |
currentOGImage = jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + networkAuthId + '"]').val();
|
619 |
if (postFormat == "0") {
|
@@ -693,41 +713,28 @@ jQuery(document).on("click", ".b2s-user-network-settings-post-format", function
|
|
693 |
}
|
694 |
}
|
695 |
|
696 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
697 |
-
if (networkId == 1 && networkType == 0) {
|
698 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", false);
|
699 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').show();
|
700 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + networkAuthId + '"]').show();
|
701 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').hide();
|
702 |
-
|
703 |
-
}
|
704 |
-
|
705 |
} else {
|
706 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
707 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
708 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + networkAuthId + '"]').hide();
|
709 |
-
|
710 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
711 |
-
if (networkId == 1 && networkType == 0) {
|
712 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
713 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').hide();
|
714 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + networkAuthId + '"]').hide();
|
715 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').show();
|
716 |
-
}
|
717 |
}
|
718 |
|
719 |
//Content Curation V5.0.0
|
720 |
if (postType == "ex") {
|
721 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
722 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
723 |
-
jQuery('.b2s-post-item-details-item-url-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
724 |
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + networkAuthId + '"]').attr("style", "display:none !important");
|
725 |
if (postFormat == '0') {
|
726 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').hide();
|
727 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').hide();
|
|
|
|
|
|
|
728 |
} else {
|
729 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').show();
|
730 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').show();
|
|
|
|
|
731 |
}
|
732 |
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() == 1) {
|
733 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').hide();
|
@@ -880,33 +887,21 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
880 |
jQuery('.b2s-post-item-details-post-format[data-network-id="' + networkId + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val());
|
881 |
}
|
882 |
|
883 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
884 |
-
if (networkId == 1 && networkType == 0) {
|
885 |
-
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + networkAuthId + '"]').val() == "1") {
|
886 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
887 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').hide();
|
888 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + networkAuthId + '"]').hide();
|
889 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').show();
|
890 |
-
} else {
|
891 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", false);
|
892 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').show();
|
893 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + networkAuthId + '"]').show();
|
894 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + networkAuthId + '"]').hide();
|
895 |
-
}
|
896 |
-
}
|
897 |
-
|
898 |
//Content Curation
|
899 |
-
if (jQuery('
|
900 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
901 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
902 |
-
jQuery('.b2s-post-item-details-item-url-input[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
903 |
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + networkAuthId + '"]').attr("style", "display:none !important");
|
904 |
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + networkAuthId + '"]').val() == 0) {
|
905 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').hide();
|
906 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').hide();
|
|
|
|
|
907 |
} else {
|
908 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').show();
|
909 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').show();
|
|
|
|
|
910 |
}
|
911 |
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() == 1) {
|
912 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').hide();
|
@@ -1139,21 +1134,6 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
1139 |
}
|
1140 |
|
1141 |
|
1142 |
-
//Facebook TOS 072018 - Instant Sharing - Image post without Text > set to readonly
|
1143 |
-
if (data.networkId == 1 && data.networkType == 0) {
|
1144 |
-
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + data.networkAuthId + '"]').val() == "1") {
|
1145 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
|
1146 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').hide();
|
1147 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + networkAuthId + '"]').hide();
|
1148 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + data.networkAuthId + '"]').show();
|
1149 |
-
} else {
|
1150 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", false);
|
1151 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + networkAuthId + '"]').show();
|
1152 |
-
jQuery('.b2s-post-item-info-area[data-network-auth-id="' + networkAuthId + '"]').show();
|
1153 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + data.networkAuthId + '"]').hide();
|
1154 |
-
}
|
1155 |
-
}
|
1156 |
-
|
1157 |
//Twitter TOS 032018 - protected multiple accounts with same content to same time
|
1158 |
//delete comment field one more
|
1159 |
if (data.networkId == 2) {
|
@@ -1173,10 +1153,9 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
1173 |
}
|
1174 |
|
1175 |
//Content Curation
|
1176 |
-
if (jQuery('
|
1177 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
|
1178 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
|
1179 |
-
jQuery('.b2s-post-item-details-item-url-input[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
|
1180 |
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + data.networkAuthId + '"]').attr("style", "display:none !important");
|
1181 |
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + data.networkAuthId + '"]').val() == 0) {
|
1182 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + data.networkAuthId + '"]').hide();
|
@@ -1189,6 +1168,12 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
1189 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + data.networkAuthId + '"][data-network-count="-1"]').hide();
|
1190 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + data.networkAuthId + '"][data-network-count="-1"]').hide();
|
1191 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1192 |
}
|
1193 |
|
1194 |
}
|
@@ -1318,6 +1303,10 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
1318 |
});
|
1319 |
}
|
1320 |
|
|
|
|
|
|
|
|
|
1321 |
jQuery.each(data.draftActions.tags, function (index, value) {
|
1322 |
if (index >= 1) {
|
1323 |
jQuery('.ad-tag-btn[data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
@@ -1618,13 +1607,6 @@ jQuery(document).on('click', '.b2s-re-share-btn', function () {
|
|
1618 |
}
|
1619 |
});
|
1620 |
|
1621 |
-
//Approve
|
1622 |
-
jQuery('.b2s-post-item-details-post-format').each(function () {
|
1623 |
-
if (jQuery(this).attr('data-network-id') == "1" && jQuery(this).attr('data-network-type') == '0' && jQuery(this).val() == "1") {
|
1624 |
-
jQuery('.b2s-post-approve-info[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"').show();
|
1625 |
-
}
|
1626 |
-
});
|
1627 |
-
|
1628 |
return false;
|
1629 |
});
|
1630 |
jQuery(document).on('click', '.b2s-post-item-details-release-input-add', function () {
|
@@ -1745,6 +1727,7 @@ jQuery(document).on('click', '.b2s-post-item-details-preview-url-reload', functi
|
|
1745 |
'postId': jQuery('#b2sPostId').val(),
|
1746 |
'defaultUrl': jQuery('#b2sDefault_url').val(),
|
1747 |
'url': url,
|
|
|
1748 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1749 |
},
|
1750 |
error: function () {
|
@@ -1789,7 +1772,7 @@ jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
|
|
1789 |
var authId = jQuery(this).attr('data-network-auth-id');
|
1790 |
var countId = jQuery(this).attr('data-network-count');
|
1791 |
var postFormat = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + authId + ']').val();
|
1792 |
-
var networkId = jQuery('.b2s-
|
1793 |
var isMetaChecked = false;
|
1794 |
var ogMetaNetworks = jQuery('#ogMetaNetworks').val().split(";");
|
1795 |
if (typeof networkId != 'undefined' && jQuery.inArray(networkId.toString(), ogMetaNetworks) != -1 && jQuery('#isOgMetaChecked').val() == "1") {
|
@@ -1969,7 +1952,7 @@ jQuery(document).on('click', '.b2s-image-change-this-network', function () {
|
|
1969 |
|
1970 |
//add check linkpost change meta tag image for this network
|
1971 |
var postFormat = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val();
|
1972 |
-
var networkId = jQuery('.b2s-
|
1973 |
if (typeof postFormat !== typeof undefined && postFormat !== false) {
|
1974 |
if (networkId != 12) { // ignore for instagram
|
1975 |
if (postFormat == "0") { //if linkpost
|
@@ -2385,7 +2368,6 @@ jQuery("#b2sNetworkSent").validate({
|
|
2385 |
jQuery('.b2s-post-item-details-edit-area[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').hide();
|
2386 |
jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').show();
|
2387 |
jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').html(content[i]['html']);
|
2388 |
-
jQuery('.b2s-post-approve-info').hide();
|
2389 |
jQuery('.b2s-content-info').hide();
|
2390 |
if (typeof content[i]['approve'] !== typeof undefined) {
|
2391 |
jQuery('.panel-group[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').addClass('b2s-border-color-warning');
|
@@ -2644,10 +2626,14 @@ function initSceditor(networkAuthId) {
|
|
2644 |
if (typeof sceditor !== 'undefined' && typeof sceditor.destroy == 'function') {
|
2645 |
sceditor.destroy();
|
2646 |
}
|
2647 |
-
|
|
|
|
|
|
|
|
|
2648 |
jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').sceditor({
|
2649 |
plugins: 'xhtml',
|
2650 |
-
toolbar:
|
2651 |
autoUpdate: true,
|
2652 |
emoticonsEnabled: false
|
2653 |
});
|
@@ -2824,14 +2810,7 @@ function releaseChoose(choose, dataNetworkAuthId, dataNetworkCount) {
|
|
2824 |
//since 4.8.0 customize content
|
2825 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2826 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').removeAttr('disabled');
|
2827 |
-
|
2828 |
-
//Facebook TOS
|
2829 |
-
if (jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').attr('readonly')) {
|
2830 |
-
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').hide();
|
2831 |
-
} else {
|
2832 |
-
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').show();
|
2833 |
-
}
|
2834 |
-
|
2835 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').show();
|
2836 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').show();
|
2837 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').show();
|
@@ -2871,7 +2850,7 @@ function releaseChoose(choose, dataNetworkAuthId, dataNetworkCount) {
|
|
2871 |
jQuery('.b2s-post-item-details-release-input-days' + selectorInput).prop('disabled');
|
2872 |
jQuery('.b2s-post-item-details-release-input-daySelect' + selectorInput).hide();
|
2873 |
jQuery('.b2s-post-item-details-release-input-add' + selectorInput).hide();
|
2874 |
-
jQuery('.
|
2875 |
jQuery('.b2s-post-item-details-release-save-settings' + selectorInput).prop('disabled', true);
|
2876 |
jQuery('.b2s-post-item-details-release-area-details-ul' + selectorInput).hide();
|
2877 |
jQuery('.b2s-post-item-details-release-save-settings-label' + selectorInput).hide();
|
@@ -2890,7 +2869,7 @@ function releaseChoose(choose, dataNetworkAuthId, dataNetworkCount) {
|
|
2890 |
//since 4.8.0 customize content
|
2891 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2892 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').prop('disabled', true);
|
2893 |
-
jQuery('.b2s-post-item-details-item-message-
|
2894 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').hide();
|
2895 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').hide();
|
2896 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').hide();
|
@@ -2963,13 +2942,6 @@ function releaseChoose(choose, dataNetworkAuthId, dataNetworkCount) {
|
|
2963 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2964 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').removeAttr('disabled');
|
2965 |
|
2966 |
-
//Facebook TOS
|
2967 |
-
if (jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').attr('readonly')) {
|
2968 |
-
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').hide();
|
2969 |
-
} else {
|
2970 |
-
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').show();
|
2971 |
-
}
|
2972 |
-
|
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();
|
@@ -3133,13 +3105,26 @@ function addTag(networkAuthId) {
|
|
3133 |
var selector = ".b2s-post-item-details-tag-input-elem[data-network-auth-id='" + networkAuthId + "']";
|
3134 |
jQuery(selector).last().after('<input class="form-control b2s-post-item-details-tag-input-elem" data-network-auth-id="' + networkAuthId + '" value="" name="b2s[' + networkAuthId + '][tags][]">');
|
3135 |
jQuery(".remove-tag-btn[data-network-auth-id='" + networkAuthId + "'").show();
|
|
|
|
|
|
|
|
|
|
|
|
|
3136 |
}
|
3137 |
|
3138 |
function removeTag(networkAuthId) {
|
3139 |
var selector = ".b2s-post-item-details-tag-input-elem[data-network-auth-id='" + networkAuthId + "']";
|
3140 |
jQuery(selector).last().remove();
|
3141 |
-
if (jQuery(selector).length === 1)
|
3142 |
jQuery(".remove-tag-btn[data-network-auth-id='" + networkAuthId + "'").hide();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3143 |
}
|
3144 |
|
3145 |
function networkLimitAll(networkAuthId, networkId, limit) {
|
@@ -3440,7 +3425,7 @@ function checkSchedDateTime(dataNetworkAuthId) {
|
|
3440 |
//utc current time
|
3441 |
var now = new Date();
|
3442 |
//offset between utc und user
|
3443 |
-
|
3444 |
//enter hour to user time
|
3445 |
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
3446 |
//calculate datetime in utc
|
@@ -3611,10 +3596,15 @@ jQuery(document).on('click', '.b2s-auth-network-6-login-btn', function () {
|
|
3611 |
'location': jQuery('#b2s-auth-network-6-location').val(),
|
3612 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3613 |
},
|
3614 |
-
error: function () {
|
3615 |
jQuery('.b2s-loading-area').hide();
|
3616 |
jQuery('.b2s-auth-network-6-login-area').show();
|
3617 |
jQuery('.b2s-auth-network-6-login-btn').show();
|
|
|
|
|
|
|
|
|
|
|
3618 |
return false;
|
3619 |
},
|
3620 |
success: function (data) {
|
@@ -3661,9 +3651,15 @@ jQuery(document).on('click', '.b2s-auth-network-6-confirm-btn', function () {
|
|
3661 |
'networkAuthId': jQuery('#b2s-auth-network-6-auth-id').val(),
|
3662 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3663 |
},
|
3664 |
-
error: function () {
|
3665 |
jQuery('.b2s-loading-area').hide();
|
3666 |
jQuery('.b2s-auth-network-6-login-area').show();
|
|
|
|
|
|
|
|
|
|
|
|
|
3667 |
return false;
|
3668 |
},
|
3669 |
success: function (data) {
|
@@ -3774,4 +3770,84 @@ function freeze_gif(i) {
|
|
3774 |
i.parentNode.replaceChild(c, i);
|
3775 |
}
|
3776 |
return false;
|
3777 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
jQuery('#b2sInsertImageType').val("1");
|
111 |
imageSize();
|
112 |
}, tooltip: "Image"});
|
113 |
+
jQuery.sceditor.command.set(
|
114 |
+
"custom-emoji", {
|
115 |
+
exec: function () {
|
116 |
+
var me = this;
|
117 |
+
if (pickerHTML.pickerVisible) {
|
118 |
+
pickerHTML.hidePicker();
|
119 |
+
} else {
|
120 |
+
pickerHTML.showPicker(jQuery(this.getContentAreaContainer()).parent('.sceditor-container').find('.sceditor-toolbar').find('.sceditor-button-custom-emoji'));
|
121 |
+
currentPickerHTMLContent = this;
|
122 |
+
}
|
123 |
+
},
|
124 |
+
txtExec: function () {
|
125 |
+
var me = this;
|
126 |
+
if (pickerHTML.pickerVisible) {
|
127 |
+
pickerHTML.hidePicker();
|
128 |
+
} else {
|
129 |
+
pickerHTML.showPicker(jQuery(this.getContentAreaContainer()).parent('.sceditor-container').find('.sceditor-toolbar').find('.sceditor-button-custom-emoji'));
|
130 |
+
currentPickerHTMLContent = this;
|
131 |
+
}
|
132 |
+
}, tooltip: "Emoji"});
|
133 |
|
134 |
|
135 |
jQuery(document).on('click', '.b2s-toogle-calendar-btn', function () {
|
633 |
jQuery('.b2s-post-ship-item-post-format-text[data-network-id="' + networkId + '"]').html(postFormatText[postFormatType][postFormat]);
|
634 |
jQuery('.b2s-post-item-details-post-format[data-network-id="' + networkId + '"]').val(postFormat);
|
635 |
}
|
636 |
+
if (jQuery('.b2s-network-select-btn[data-network-auth-id="' + networkAuthId + '"]').attr('data-meta-type') == 'og' && postType != "ex") {
|
637 |
if (currentOGImage == '' && jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + networkAuthId + '"]').val() != '') {
|
638 |
currentOGImage = jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + networkAuthId + '"]').val();
|
639 |
if (postFormat == "0") {
|
713 |
}
|
714 |
}
|
715 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
716 |
} else {
|
717 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
718 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
719 |
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + networkAuthId + '"]').hide();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
720 |
}
|
721 |
|
722 |
//Content Curation V5.0.0
|
723 |
if (postType == "ex") {
|
724 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
725 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
|
|
726 |
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + networkAuthId + '"]').attr("style", "display:none !important");
|
727 |
if (postFormat == '0') {
|
728 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').hide();
|
729 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').hide();
|
730 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').show();
|
731 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').show();
|
732 |
+
jQuery('.b2s-post-item-details-preview-url-reload[data-network-auth-id="' + networkAuthId + '"]').trigger("click");
|
733 |
} else {
|
734 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').show();
|
735 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').show();
|
736 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').hide();
|
737 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').hide();
|
738 |
}
|
739 |
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() == 1) {
|
740 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').hide();
|
887 |
jQuery('.b2s-post-item-details-post-format[data-network-id="' + networkId + '"]').val(jQuery('.b2sNetworkSettingsPostFormatCurrent[data-network-type="' + networkType + '"][data-network-id="' + networkId + '"]').val());
|
888 |
}
|
889 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
890 |
//Content Curation
|
891 |
+
if (jQuery('#b2sPostType').val() == 'ex') {
|
892 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
893 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').prop("readonly", true);
|
|
|
894 |
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + networkAuthId + '"]').attr("style", "display:none !important");
|
895 |
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + networkAuthId + '"]').val() == 0) {
|
896 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').hide();
|
897 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').hide();
|
898 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').show();
|
899 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').show();
|
900 |
} else {
|
901 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"]').show();
|
902 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').show();
|
903 |
+
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + networkAuthId + '"]').hide();
|
904 |
+
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + networkAuthId + '"]').hide();
|
905 |
}
|
906 |
if (jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() == 1) {
|
907 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').hide();
|
1134 |
}
|
1135 |
|
1136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1137 |
//Twitter TOS 032018 - protected multiple accounts with same content to same time
|
1138 |
//delete comment field one more
|
1139 |
if (data.networkId == 2) {
|
1153 |
}
|
1154 |
|
1155 |
//Content Curation
|
1156 |
+
if (jQuery('#b2sPostType').val() == 'ex') {
|
1157 |
jQuery('.b2s-post-item-details-preview-title[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
|
1158 |
jQuery('.b2s-post-item-details-preview-desc[data-network-auth-id="' + data.networkAuthId + '"]').prop("readonly", true);
|
|
|
1159 |
jQuery('.b2s-load-info-meta-tag-modal[data-network-auth-id="' + data.networkAuthId + '"]').attr("style", "display:none !important");
|
1160 |
if (jQuery('.b2s-post-item-details-post-format[data-network-auth-id="' + data.networkAuthId + '"]').val() == 0) {
|
1161 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + data.networkAuthId + '"]').hide();
|
1168 |
jQuery('.b2s-select-image-modal-open[data-network-auth-id="' + data.networkAuthId + '"][data-network-count="-1"]').hide();
|
1169 |
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + data.networkAuthId + '"][data-network-count="-1"]').hide();
|
1170 |
}
|
1171 |
+
|
1172 |
+
//CC Imagepost V6.0.0
|
1173 |
+
if (jQuery('#b2sExPostFormat').val() == 0 || jQuery('#b2sExPostFormat').val() == 1) {
|
1174 |
+
jQuery('.b2s-post-ship-item-post-format[data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
1175 |
+
jQuery('.b2s-user-network-settings-post-format[value="' + jQuery('#b2sExPostFormat').val() + '"][data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
1176 |
+
}
|
1177 |
}
|
1178 |
|
1179 |
}
|
1303 |
});
|
1304 |
}
|
1305 |
|
1306 |
+
while (jQuery('.remove-tag-btn[data-network-auth-id="' + data.networkAuthId + '"]').is(':visible')) {
|
1307 |
+
jQuery('.remove-tag-btn[data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
1308 |
+
}
|
1309 |
+
jQuery('.b2s-post-item-details-tag-input-elem[data-network-auth-id="' + data.networkAuthId + '"]').last().val('');
|
1310 |
jQuery.each(data.draftActions.tags, function (index, value) {
|
1311 |
if (index >= 1) {
|
1312 |
jQuery('.ad-tag-btn[data-network-auth-id="' + data.networkAuthId + '"]').trigger('click');
|
1607 |
}
|
1608 |
});
|
1609 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1610 |
return false;
|
1611 |
});
|
1612 |
jQuery(document).on('click', '.b2s-post-item-details-release-input-add', function () {
|
1727 |
'postId': jQuery('#b2sPostId').val(),
|
1728 |
'defaultUrl': jQuery('#b2sDefault_url').val(),
|
1729 |
'url': url,
|
1730 |
+
'postType': jQuery('#b2sPostType').val(),
|
1731 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
1732 |
},
|
1733 |
error: function () {
|
1772 |
var authId = jQuery(this).attr('data-network-auth-id');
|
1773 |
var countId = jQuery(this).attr('data-network-count');
|
1774 |
var postFormat = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + authId + ']').val();
|
1775 |
+
var networkId = jQuery('.b2s-network-select-btn[data-network-auth-id=' + authId + ']').attr("data-network-id");
|
1776 |
var isMetaChecked = false;
|
1777 |
var ogMetaNetworks = jQuery('#ogMetaNetworks').val().split(";");
|
1778 |
if (typeof networkId != 'undefined' && jQuery.inArray(networkId.toString(), ogMetaNetworks) != -1 && jQuery('#isOgMetaChecked').val() == "1") {
|
1952 |
|
1953 |
//add check linkpost change meta tag image for this network
|
1954 |
var postFormat = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val();
|
1955 |
+
var networkId = jQuery('.b2s-network-select-btn[data-network-auth-id=' + networkAuthId + ']').attr('data-network-id');
|
1956 |
if (typeof postFormat !== typeof undefined && postFormat !== false) {
|
1957 |
if (networkId != 12) { // ignore for instagram
|
1958 |
if (postFormat == "0") { //if linkpost
|
2368 |
jQuery('.b2s-post-item-details-edit-area[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').hide();
|
2369 |
jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').show();
|
2370 |
jQuery('.b2s-post-item-details-message-result[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').html(content[i]['html']);
|
|
|
2371 |
jQuery('.b2s-content-info').hide();
|
2372 |
if (typeof content[i]['approve'] !== typeof undefined) {
|
2373 |
jQuery('.panel-group[data-network-auth-id="' + content[i]['networkAuthId'] + '"]').addClass('b2s-border-color-warning');
|
2626 |
if (typeof sceditor !== 'undefined' && typeof sceditor.destroy == 'function') {
|
2627 |
sceditor.destroy();
|
2628 |
}
|
2629 |
+
if (jQuery('.b2s-post-item[data-network-auth-id="' + networkAuthId + '"]').data('network-id') == 14) {// Torial is only HTML Network that dose not support Emojis
|
2630 |
+
var toolbar = "h1,h2,bold,italic,link,unlink,custom-image|source";
|
2631 |
+
} else {
|
2632 |
+
var toolbar = "h1,h2,bold,italic,link,unlink,custom-image,custom-emoji|source";
|
2633 |
+
}
|
2634 |
jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').sceditor({
|
2635 |
plugins: 'xhtml',
|
2636 |
+
toolbar: toolbar,
|
2637 |
autoUpdate: true,
|
2638 |
emoticonsEnabled: false
|
2639 |
});
|
2810 |
//since 4.8.0 customize content
|
2811 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2812 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').removeAttr('disabled');
|
2813 |
+
jQuery('.b2s-post-item-details-item-message-area' + selectorInput + '[data-network-count="-1"]').show();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2814 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').show();
|
2815 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').show();
|
2816 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').show();
|
2850 |
jQuery('.b2s-post-item-details-release-input-days' + selectorInput).prop('disabled');
|
2851 |
jQuery('.b2s-post-item-details-release-input-daySelect' + selectorInput).hide();
|
2852 |
jQuery('.b2s-post-item-details-release-input-add' + selectorInput).hide();
|
2853 |
+
jQuery('.b2s-post-item-details-release-area-details-ul' + selectorInput).hide();
|
2854 |
jQuery('.b2s-post-item-details-release-save-settings' + selectorInput).prop('disabled', true);
|
2855 |
jQuery('.b2s-post-item-details-release-area-details-ul' + selectorInput).hide();
|
2856 |
jQuery('.b2s-post-item-details-release-save-settings-label' + selectorInput).hide();
|
2869 |
//since 4.8.0 customize content
|
2870 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2871 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').prop('disabled', true);
|
2872 |
+
jQuery('.b2s-post-item-details-item-message-area' + selectorInput + '[data-network-count="-1"]').hide();
|
2873 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').hide();
|
2874 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').hide();
|
2875 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').hide();
|
2942 |
if (jQuery('.b2s-post-item-details-release-input-date-select' + selectorInput).attr('data-network-customize-content') == "1") {
|
2943 |
jQuery('.b2s-post-item-details-item-message-input' + selectorInput + '[data-network-count="-1"]').removeAttr('disabled');
|
2944 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2945 |
jQuery('.b2s-post-item-details-url-image' + selectorInput + '[data-network-count="-1"]').show();
|
2946 |
jQuery('.b2s-select-image-modal-open' + selectorInput + '[data-network-count="-1"]').show();
|
2947 |
jQuery('.b2s-image-remove-btn' + selectorInput + '[data-network-count="-1"]').show();
|
3105 |
var selector = ".b2s-post-item-details-tag-input-elem[data-network-auth-id='" + networkAuthId + "']";
|
3106 |
jQuery(selector).last().after('<input class="form-control b2s-post-item-details-tag-input-elem" data-network-auth-id="' + networkAuthId + '" value="" name="b2s[' + networkAuthId + '][tags][]">');
|
3107 |
jQuery(".remove-tag-btn[data-network-auth-id='" + networkAuthId + "'").show();
|
3108 |
+
var limit = jQuery(".b2s-post-item-details-tag-limit[data-network-auth-id='" + networkAuthId + "']").val();
|
3109 |
+
if (typeof limit !== typeof undefined && limit !== false) {
|
3110 |
+
if (jQuery(selector).length >= limit) {
|
3111 |
+
jQuery(".ad-tag-btn[data-network-auth-id='" + networkAuthId + "'").hide();
|
3112 |
+
}
|
3113 |
+
}
|
3114 |
}
|
3115 |
|
3116 |
function removeTag(networkAuthId) {
|
3117 |
var selector = ".b2s-post-item-details-tag-input-elem[data-network-auth-id='" + networkAuthId + "']";
|
3118 |
jQuery(selector).last().remove();
|
3119 |
+
if (jQuery(selector).length === 1) {
|
3120 |
jQuery(".remove-tag-btn[data-network-auth-id='" + networkAuthId + "'").hide();
|
3121 |
+
}
|
3122 |
+
var limit = jQuery(".b2s-post-item-details-tag-limit[data-network-auth-id='" + networkAuthId + "']").val();
|
3123 |
+
if (typeof limit !== typeof undefined && limit !== false) {
|
3124 |
+
if (jQuery(selector).length < limit) {
|
3125 |
+
jQuery(".ad-tag-btn[data-network-auth-id='" + networkAuthId + "'").show();
|
3126 |
+
}
|
3127 |
+
}
|
3128 |
}
|
3129 |
|
3130 |
function networkLimitAll(networkAuthId, networkId, limit) {
|
3425 |
//utc current time
|
3426 |
var now = new Date();
|
3427 |
//offset between utc und user
|
3428 |
+
var offset = (parseInt(now.getTimezoneOffset() / 60)) * (-1);
|
3429 |
//enter hour to user time
|
3430 |
var hour = parseInt(minParts3[0]) + timeZone + offset;
|
3431 |
//calculate datetime in utc
|
3596 |
'location': jQuery('#b2s-auth-network-6-location').val(),
|
3597 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3598 |
},
|
3599 |
+
error: function (jqXHR) {
|
3600 |
jQuery('.b2s-loading-area').hide();
|
3601 |
jQuery('.b2s-auth-network-6-login-area').show();
|
3602 |
jQuery('.b2s-auth-network-6-login-btn').show();
|
3603 |
+
if (jqXHR.status == 403) {
|
3604 |
+
jQuery('.b2s-auth-network-6-info[data-info="error_code_403"]').show();
|
3605 |
+
} else {
|
3606 |
+
jQuery('.b2s-auth-network-6-info[data-info="default"]').show();
|
3607 |
+
}
|
3608 |
return false;
|
3609 |
},
|
3610 |
success: function (data) {
|
3651 |
'networkAuthId': jQuery('#b2s-auth-network-6-auth-id').val(),
|
3652 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
3653 |
},
|
3654 |
+
error: function (jqXHR) {
|
3655 |
jQuery('.b2s-loading-area').hide();
|
3656 |
jQuery('.b2s-auth-network-6-login-area').show();
|
3657 |
+
jQuery('.b2s-auth-network-6-confirm-btn').show();
|
3658 |
+
if (jqXHR.status == 403) {
|
3659 |
+
jQuery('.b2s-auth-network-6-info[data-info="error_code_403"]').show();
|
3660 |
+
} else {
|
3661 |
+
jQuery('.b2s-auth-network-6-info[data-info="default"]').show();
|
3662 |
+
}
|
3663 |
return false;
|
3664 |
},
|
3665 |
success: function (data) {
|
3770 |
i.parentNode.replaceChild(c, i);
|
3771 |
}
|
3772 |
return false;
|
3773 |
+
}
|
3774 |
+
|
3775 |
+
var currentEmojiNetworkAuthId = 0;
|
3776 |
+
var currentEmojiNetworkCount = -1;
|
3777 |
+
var emojiTranslation = JSON.parse(jQuery('#b2sEmojiTranslation').val());
|
3778 |
+
var picker = new EmojiButton({
|
3779 |
+
position: 'auto',
|
3780 |
+
autoHide: false,
|
3781 |
+
i18n: {
|
3782 |
+
search: emojiTranslation['search'],
|
3783 |
+
categories: {
|
3784 |
+
recents: emojiTranslation['recents'],
|
3785 |
+
smileys: emojiTranslation['smileys'],
|
3786 |
+
animals: emojiTranslation['animals'],
|
3787 |
+
food: emojiTranslation['food'],
|
3788 |
+
activities: emojiTranslation['activities'],
|
3789 |
+
travel: emojiTranslation['travel'],
|
3790 |
+
objects: emojiTranslation['objects'],
|
3791 |
+
symbols: emojiTranslation['symbols'],
|
3792 |
+
flags: emojiTranslation['flags']
|
3793 |
+
},
|
3794 |
+
notFound: emojiTranslation['notFound']
|
3795 |
+
}
|
3796 |
+
});
|
3797 |
+
picker.on('emoji', function (emoji) {
|
3798 |
+
if (currentEmojiNetworkAuthId > 0) {
|
3799 |
+
var text = jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').val();
|
3800 |
+
var start = jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').attr('selectionStart');
|
3801 |
+
var end = jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').attr('selectionEnd');
|
3802 |
+
if (typeof start == 'undefined' || typeof end == 'undefined') {
|
3803 |
+
start = text.length;
|
3804 |
+
end = text.length;
|
3805 |
+
}
|
3806 |
+
var newText = text.slice(0, start) + emoji + text.slice(end);
|
3807 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').val(newText);
|
3808 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').focus();
|
3809 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').prop("selectionStart", parseInt(start) + emoji.length);
|
3810 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').prop("selectionEnd", parseInt(start) + emoji.length);
|
3811 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-auth-id="' + currentEmojiNetworkAuthId + '"][data-network-count="' + currentEmojiNetworkCount + '"]').trigger('keyup');
|
3812 |
+
}
|
3813 |
+
});
|
3814 |
+
|
3815 |
+
jQuery(document).on('click', '.b2s-post-item-details-item-message-emoji-btn', function () {
|
3816 |
+
if (picker.pickerVisible) {
|
3817 |
+
picker.hidePicker();
|
3818 |
+
} else {
|
3819 |
+
currentEmojiNetworkAuthId = jQuery(this).attr('data-network-auth-id');
|
3820 |
+
currentEmojiNetworkCount = jQuery(this).attr('data-network-count');
|
3821 |
+
picker.showPicker(jQuery(this));
|
3822 |
+
}
|
3823 |
+
});
|
3824 |
+
|
3825 |
+
jQuery(document).on('mousedown mouseup keydown keyup', '.b2s-post-item-details-item-message-input', function () {
|
3826 |
+
var tb = jQuery(this).get(0);
|
3827 |
+
jQuery(this).attr('selectionStart', tb.selectionStart);
|
3828 |
+
jQuery(this).attr('selectionEnd', tb.selectionEnd);
|
3829 |
+
});
|
3830 |
+
|
3831 |
+
var pickerHTML = new EmojiButton({
|
3832 |
+
position: 'auto',
|
3833 |
+
autoHide: false,
|
3834 |
+
i18n: {
|
3835 |
+
search: emojiTranslation['search'],
|
3836 |
+
categories: {
|
3837 |
+
recents: emojiTranslation['recents'],
|
3838 |
+
smileys: emojiTranslation['smileys'],
|
3839 |
+
animals: emojiTranslation['animals'],
|
3840 |
+
food: emojiTranslation['food'],
|
3841 |
+
activities: emojiTranslation['activities'],
|
3842 |
+
travel: emojiTranslation['travel'],
|
3843 |
+
objects: emojiTranslation['objects'],
|
3844 |
+
symbols: emojiTranslation['symbols'],
|
3845 |
+
flags: emojiTranslation['flags']
|
3846 |
+
},
|
3847 |
+
notFound: emojiTranslation['notFound']
|
3848 |
+
}
|
3849 |
+
});
|
3850 |
+
var currentPickerHTMLContent;
|
3851 |
+
pickerHTML.on('emoji', function (emoji) {
|
3852 |
+
currentPickerHTMLContent.insert(emoji);
|
3853 |
+
});
|
assets/js/notice.js
DELETED
@@ -1,18 +0,0 @@
|
|
1 |
-
jQuery(document).on('click', '.b2s-hide-notice-area', function () {
|
2 |
-
var area = jQuery(this).attr('data-area-class');
|
3 |
-
jQuery('.'+area).hide();
|
4 |
-
jQuery.ajax({
|
5 |
-
url: ajaxurl,
|
6 |
-
type: "POST",
|
7 |
-
dataType: "json",
|
8 |
-
cache: false,
|
9 |
-
data: {
|
10 |
-
'action': 'b2s_notice_hide',
|
11 |
-
'b2s_deactivate_nonce': jQuery('#b2s_deactivate_nonce').val()
|
12 |
-
},
|
13 |
-
success: function (data) {
|
14 |
-
}
|
15 |
-
});
|
16 |
-
});
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
assets/lib/emoji-button/emoji-button.min.js
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* v3.14.1. More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
|
3 |
+
*/
|
4 |
+
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e=e||self).EmojiButton=n()}(this,function(){"use strict";function e(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}function n(e,n){for(var a=0;a<n.length;a++){var i=n[a];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function a(e,a,i){return a&&n(e.prototype,a),i&&n(e,i),e}function i(e,n,a){return n in e?Object.defineProperty(e,n,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[n]=a,e}function t(e,n){var a=Object.keys(e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);n&&(i=i.filter(function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable})),a.push.apply(a,i)}return a}function o(e){for(var n=1;n<arguments.length;n++){var a=null!=arguments[n]?arguments[n]:{};n%2?t(a,!0).forEach(function(n){i(e,n,a[n])}):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(a)):t(a).forEach(function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(a,n))})}return e}function r(e){return function(e){if(Array.isArray(e)){for(var n=0,a=new Array(e.length);n<e.length;n++)a[n]=e[n];return a}}(e)||function(e){if(Symbol.iterator in Object(e)||"[object Arguments]"===Object.prototype.toString.call(e))return Array.from(e)}(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance")}()}function F(){}!function(e,n){void 0===n&&(n={});var a=n.insertAt;if(e&&"undefined"!=typeof document){var i=document.head||document.getElementsByTagName("head")[0],t=document.createElement("style");t.type="text/css","top"===a&&i.firstChild?i.insertBefore(t,i.firstChild):i.appendChild(t),t.styleSheet?t.styleSheet.cssText=e:t.appendChild(document.createTextNode(e))}}('.emoji-picker {\n margin: 0 0.5em;\n border: 1px solid #999999;\n border-radius: 5px;\n box-shadow: 0px 0px 3px 1px #CCCCCC;\n background: #FFFFFF;\n width: 20.5rem;\n height: 27.5rem;\n font-family: Arial, Helvetica, sans-serif;\n}\n\n.emoji-picker__content {\n padding: 0.5em;\n height: 20.5rem;\n}\n\n.emoji-picker__preview {\n height: 2em;\n padding: 0.5em;\n border-top: 1px solid #999999;\n display: flex;\n flex-direction: row;\n align-items: center;\n}\n\n.emoji-picker__preview-emoji {\n font-size: 2em;\n margin-right: 0.25em;\n font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "Apple Color Emoji", "Twemoji Mozilla", "Noto Color Emoji", "EmojiOne Color", "Android Emoji";\n}\n\n.emoji-picker__preview-name {\n color: #666666;\n font-size: 0.85em;\n overflow-wrap: break-word;\n word-break: break-all;\n}\n\n.emoji-picker__tabs {\n margin: 0;\n padding: 0;\n display: flex;\n}\n\n.emoji-picker__tab {\n list-style: none;\n display: inline-block;\n padding: 0 0.5em;\n cursor: pointer;\n flex-grow: 1;\n text-align: center;\n}\n\n.emoji-picker__tab.active {\n border-bottom: 3px solid #4F81E5;\n color: #4F81E5;\n}\n\n.emoji-picker__tab-body {\n display: none;\n margin-top: 0.5em;\n}\n\n.emoji-picker__tab-body h2 {\n font-size: 0.75rem;\n text-transform: uppercase;\n color: #333333;\n margin: 0;\n}\n\n.emoji-picker__tab-body.active {\n display: block;\n}\n\n.emoji-picker__emojis {\n height: 17.5rem;\n overflow-y: scroll;\n display: flex;\n flex-wrap: wrap;\n align-content: flex-start;\n width: calc(1.3rem * 1.5 * 10);\n margin: auto;\n}\n\n.emoji-picker__emojis.search-results {\n height: 21rem;\n}\n\n.emoji-picker__emoji {\n background: transparent;\n border: none;\n border-radius: 5px;\n cursor: pointer;\n font-size: 1.3rem;\n width: 1.5em;\n height: 1.5em;\n padding: 0;\n margin: 0;\n font-family: "Segoe UI Emoji", "Segoe UI Symbol", "Segoe UI", "Apple Color Emoji", "Twemoji Mozilla", "Noto Color Emoji", "EmojiOne Color", "Android Emoji";\n}\n\n.emoji-picker__emoji:hover {\n background: #E8F4F9;\n}\n\n.emoji-picker__search-container {\n margin: 0.5em;\n position: relative;\n height: 2em;\n display: flex;\n}\n\n.emoji-picker__search-container input {\n box-sizing: border-box;\n width: 100%;\n border-radius: 5px;\n border: 1px solid #CCCCCC;\n padding-right: 2em;\n}\n\n.emoji-picker__search-icon {\n position: absolute;\n color: #CCCCCC;\n width: 1em;\n height: 1em;\n right: 0.75em;\n top: calc(50% - 0.5em);\n}\n\n.emoji-picker__search-not-found {\n color: #666666;\n text-align: center;\n margin-top: 2em;\n}\n\n.emoji-picker__search-not-found-icon {\n font-size: 3em;\n}\n\n.emoji-picker__search-not-found h2 {\n margin: 0.5em 0;\n font-size: 1em;\n}\n\n.emoji-picker__variant-overlay {\n background: rgba(0, 0, 0, 0.7);\n position: absolute;\n top: 0;\n left: 0;\n width: 20.5rem;\n height: 27.5rem;\n display: flex;\n flex-direction: column;\n justify-content: center;\n}\n\n.emoji-picker__variant-popup {\n background: #FFFFFF;\n margin: 0.5em;\n padding: 0.5em;\n text-align: center;\n}\n\n.emoji-picker__variant-popup-close-button {\n cursor: pointer;\n background: transparent;\n border: none;\n position: absolute;\n right: 1em;\n padding: 0;\n top: calc(50% - 0.5em);\n height: 1em;\n width: 1em;\n}'),F.prototype={on:function(e,n,a){var i=this.e||(this.e={});return(i[e]||(i[e]=[])).push({fn:n,ctx:a}),this},once:function(e,n,a){var i=this;function t(){i.off(e,t),n.apply(a,arguments)}return t._=n,this.on(e,t,a)},emit:function(e){for(var n=[].slice.call(arguments,1),a=((this.e||(this.e={}))[e]||[]).slice(),i=0,t=a.length;i<t;i++)a[i].fn.apply(a[i].ctx,n);return this},off:function(e,n){var a=this.e||(this.e={}),i=a[e],t=[];if(i&&n)for(var o=0,r=i.length;o<r;o++)i[o].fn!==n&&i[o].fn._!==n&&t.push(i[o]);return t.length?a[e]=t:delete a[e],this}};var c=F,l=F;c.TinyEmitter=l;for(var s="undefined"!=typeof window&&"undefined"!=typeof document,m=["Edge","Trident","Firefox"],f=0,g=0;g<m.length;g+=1)if(s&&navigator.userAgent.indexOf(m[g])>=0){f=1;break}var _=s&&window.Promise?function(e){var n=!1;return function(){n||(n=!0,window.Promise.resolve().then(function(){n=!1,e()}))}}:function(e){var n=!1;return function(){n||(n=!0,setTimeout(function(){n=!1,e()},f))}};function h(e){return e&&"[object Function]"==={}.toString.call(e)}function d(e,n){if(1!==e.nodeType)return[];var a=e.ownerDocument.defaultView.getComputedStyle(e,null);return n?a[n]:a}function u(e){return"HTML"===e.nodeName?e:e.parentNode||e.host}function p(e){if(!e)return document.body;switch(e.nodeName){case"HTML":case"BODY":return e.ownerDocument.body;case"#document":return e.body}var n=d(e),a=n.overflow,i=n.overflowX,t=n.overflowY;return/(auto|scroll|overlay)/.test(a+t+i)?e:p(u(e))}var k=s&&!(!window.MSInputMethodContext||!document.documentMode),w=s&&/MSIE 10/.test(navigator.userAgent);function b(e){return 11===e?k:10===e?w:k||w}function v(e){if(!e)return document.documentElement;for(var n=b(10)?document.body:null,a=e.offsetParent||null;a===n&&e.nextElementSibling;)a=(e=e.nextElementSibling).offsetParent;var i=a&&a.nodeName;return i&&"BODY"!==i&&"HTML"!==i?-1!==["TH","TD","TABLE"].indexOf(a.nodeName)&&"static"===d(a,"position")?v(a):a:e?e.ownerDocument.documentElement:document.documentElement}function y(e){return null!==e.parentNode?y(e.parentNode):e}function E(e,n){if(!(e&&e.nodeType&&n&&n.nodeType))return document.documentElement;var a=e.compareDocumentPosition(n)&Node.DOCUMENT_POSITION_FOLLOWING,i=a?e:n,t=a?n:e,o=document.createRange();o.setStart(i,0),o.setEnd(t,0);var r,F,c=o.commonAncestorContainer;if(e!==c&&n!==c||i.contains(t))return"BODY"===(F=(r=c).nodeName)||"HTML"!==F&&v(r.firstElementChild)!==r?v(c):c;var l=y(e);return l.host?E(l.host,n):E(e,y(n).host)}function C(e){var n="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",a=e.nodeName;if("BODY"===a||"HTML"===a){var i=e.ownerDocument.documentElement;return(e.ownerDocument.scrollingElement||i)[n]}return e[n]}function D(e,n){var a="x"===n?"Left":"Top",i="Left"===a?"Right":"Bottom";return parseFloat(e["border"+a+"Width"],10)+parseFloat(e["border"+i+"Width"],10)}function B(e,n,a,i){return Math.max(n["offset"+e],n["scroll"+e],a["client"+e],a["offset"+e],a["scroll"+e],b(10)?parseInt(a["offset"+e])+parseInt(i["margin"+("Height"===e?"Top":"Left")])+parseInt(i["margin"+("Height"===e?"Bottom":"Right")]):0)}function x(e){var n=e.body,a=e.documentElement,i=b(10)&&getComputedStyle(a);return{height:B("Height",n,a,i),width:B("Width",n,a,i)}}var j=function(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")},O=function(){function e(e,n){for(var a=0;a<n.length;a++){var i=n[a];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(n,a,i){return a&&e(n.prototype,a),i&&e(n,i),n}}(),z=function(e,n,a){return n in e?Object.defineProperty(e,n,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[n]=a,e},M=Object.assign||function(e){for(var n=1;n<arguments.length;n++){var a=arguments[n];for(var i in a)Object.prototype.hasOwnProperty.call(a,i)&&(e[i]=a[i])}return e};function L(e){return M({},e,{right:e.left+e.width,bottom:e.top+e.height})}function T(e){var n={};try{if(b(10)){n=e.getBoundingClientRect();var a=C(e,"top"),i=C(e,"left");n.top+=a,n.left+=i,n.bottom+=a,n.right+=i}else n=e.getBoundingClientRect()}catch(e){}var t={left:n.left,top:n.top,width:n.right-n.left,height:n.bottom-n.top},o="HTML"===e.nodeName?x(e.ownerDocument):{},r=o.width||e.clientWidth||t.right-t.left,F=o.height||e.clientHeight||t.bottom-t.top,c=e.offsetWidth-r,l=e.offsetHeight-F;if(c||l){var s=d(e);c-=D(s,"x"),l-=D(s,"y"),t.width-=c,t.height-=l}return L(t)}function N(e,n){var a=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=b(10),t="HTML"===n.nodeName,o=T(e),r=T(n),F=p(e),c=d(n),l=parseFloat(c.borderTopWidth,10),s=parseFloat(c.borderLeftWidth,10);a&&t&&(r.top=Math.max(r.top,0),r.left=Math.max(r.left,0));var m=L({top:o.top-r.top-l,left:o.left-r.left-s,width:o.width,height:o.height});if(m.marginTop=0,m.marginLeft=0,!i&&t){var f=parseFloat(c.marginTop,10),g=parseFloat(c.marginLeft,10);m.top-=l-f,m.bottom-=l-f,m.left-=s-g,m.right-=s-g,m.marginTop=f,m.marginLeft=g}return(i&&!a?n.contains(F):n===F&&"BODY"!==F.nodeName)&&(m=function(e,n){var a=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=C(n,"top"),t=C(n,"left"),o=a?-1:1;return e.top+=i*o,e.bottom+=i*o,e.left+=t*o,e.right+=t*o,e}(m,n)),m}function P(e){if(!e||!e.parentElement||b())return document.documentElement;for(var n=e.parentElement;n&&"none"===d(n,"transform");)n=n.parentElement;return n||document.documentElement}function S(e,n,a,i){var t=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o={top:0,left:0},r=t?P(e):E(e,n);if("viewport"===i)o=function(e){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=e.ownerDocument.documentElement,i=N(e,a),t=Math.max(a.clientWidth,window.innerWidth||0),o=Math.max(a.clientHeight,window.innerHeight||0),r=n?0:C(a),F=n?0:C(a,"left");return L({top:r-i.top+i.marginTop,left:F-i.left+i.marginLeft,width:t,height:o})}(r,t);else{var F=void 0;"scrollParent"===i?"BODY"===(F=p(u(n))).nodeName&&(F=e.ownerDocument.documentElement):F="window"===i?e.ownerDocument.documentElement:i;var c=N(F,r,t);if("HTML"!==F.nodeName||function e(n){var a=n.nodeName;if("BODY"===a||"HTML"===a)return!1;if("fixed"===d(n,"position"))return!0;var i=u(n);return!!i&&e(i)}(r))o=c;else{var l=x(e.ownerDocument),s=l.height,m=l.width;o.top+=c.top-c.marginTop,o.bottom=s+c.top,o.left+=c.left-c.marginLeft,o.right=m+c.left}}var f="number"==typeof(a=a||0);return o.left+=f?a:a.left||0,o.top+=f?a:a.top||0,o.right-=f?a:a.right||0,o.bottom-=f?a:a.bottom||0,o}function A(e,n,a,i,t){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===e.indexOf("auto"))return e;var r=S(a,i,o,t),F={top:{width:r.width,height:n.top-r.top},right:{width:r.right-n.right,height:r.height},bottom:{width:r.width,height:r.bottom-n.bottom},left:{width:n.left-r.left,height:r.height}},c=Object.keys(F).map(function(e){return M({key:e},F[e],{area:(n=F[e],n.width*n.height)});var n}).sort(function(e,n){return n.area-e.area}),l=c.filter(function(e){var n=e.width,i=e.height;return n>=a.clientWidth&&i>=a.clientHeight}),s=l.length>0?l[0].key:c[0].key,m=e.split("-")[1];return s+(m?"-"+m:"")}function H(e,n,a){var i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return N(a,i?P(n):E(n,a),i)}function I(e){var n=e.ownerDocument.defaultView.getComputedStyle(e),a=parseFloat(n.marginTop||0)+parseFloat(n.marginBottom||0),i=parseFloat(n.marginLeft||0)+parseFloat(n.marginRight||0);return{width:e.offsetWidth+i,height:e.offsetHeight+a}}function W(e){var n={left:"right",right:"left",bottom:"top",top:"bottom"};return e.replace(/left|right|bottom|top/g,function(e){return n[e]})}function V(e,n,a){a=a.split("-")[0];var i=I(e),t={width:i.width,height:i.height},o=-1!==["right","left"].indexOf(a),r=o?"top":"left",F=o?"left":"top",c=o?"height":"width",l=o?"width":"height";return t[r]=n[r]+n[c]/2-i[c]/2,t[F]=a===F?n[F]-i[l]:n[W(F)],t}function q(e,n){return Array.prototype.find?e.find(n):e.filter(n)[0]}function R(e,n,a){return(void 0===a?e:e.slice(0,function(e,n,a){if(Array.prototype.findIndex)return e.findIndex(function(e){return e[n]===a});var i=q(e,function(e){return e[n]===a});return e.indexOf(i)}(e,"name",a))).forEach(function(e){e.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var a=e.function||e.fn;e.enabled&&h(a)&&(n.offsets.popper=L(n.offsets.popper),n.offsets.reference=L(n.offsets.reference),n=a(n,e))}),n}function U(e,n){return e.some(function(e){var a=e.name;return e.enabled&&a===n})}function Y(e){for(var n=[!1,"ms","Webkit","Moz","O"],a=e.charAt(0).toUpperCase()+e.slice(1),i=0;i<n.length;i++){var t=n[i],o=t?""+t+a:e;if(void 0!==document.body.style[o])return o}return null}function K(e){var n=e.ownerDocument;return n?n.defaultView:window}function X(e,n,a,i){a.updateBound=i,K(e).addEventListener("resize",a.updateBound,{passive:!0});var t=p(e);return function e(n,a,i,t){var o="BODY"===n.nodeName,r=o?n.ownerDocument.defaultView:n;r.addEventListener(a,i,{passive:!0}),o||e(p(r.parentNode),a,i,t),t.push(r)}(t,"scroll",a.updateBound,a.scrollParents),a.scrollElement=t,a.eventsEnabled=!0,a}function G(){var e,n;this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=(e=this.reference,n=this.state,K(e).removeEventListener("resize",n.updateBound),n.scrollParents.forEach(function(e){e.removeEventListener("scroll",n.updateBound)}),n.updateBound=null,n.scrollParents=[],n.scrollElement=null,n.eventsEnabled=!1,n))}function J(e){return""!==e&&!isNaN(parseFloat(e))&&isFinite(e)}function Q(e,n){Object.keys(n).forEach(function(a){var i="";-1!==["width","height","top","right","bottom","left"].indexOf(a)&&J(n[a])&&(i="px"),e.style[a]=n[a]+i})}var Z=s&&/Firefox/i.test(navigator.userAgent);function $(e,n,a){var i=q(e,function(e){return e.name===n}),t=!!i&&e.some(function(e){return e.name===a&&e.enabled&&e.order<i.order});if(!t){var o="`"+n+"`",r="`"+a+"`";console.warn(r+" modifier is required by "+o+" modifier in order to work, be sure to include it before "+o+"!")}return t}var ee=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],ne=ee.slice(3);function ae(e){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=ne.indexOf(e),i=ne.slice(a+1).concat(ne.slice(0,a));return n?i.reverse():i}var ie={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function te(e,n,a,i){var t=[0,0],o=-1!==["right","left"].indexOf(i),r=e.split(/(\+|\-)/).map(function(e){return e.trim()}),F=r.indexOf(q(r,function(e){return-1!==e.search(/,|\s/)}));r[F]&&-1===r[F].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var c=/\s*,\s*|\s+/,l=-1!==F?[r.slice(0,F).concat([r[F].split(c)[0]]),[r[F].split(c)[1]].concat(r.slice(F+1))]:[r];return(l=l.map(function(e,i){var t=(1===i?!o:o)?"height":"width",r=!1;return e.reduce(function(e,n){return""===e[e.length-1]&&-1!==["+","-"].indexOf(n)?(e[e.length-1]=n,r=!0,e):r?(e[e.length-1]+=n,r=!1,e):e.concat(n)},[]).map(function(e){return function(e,n,a,i){var t=e.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),o=+t[1],r=t[2];if(!o)return e;if(0===r.indexOf("%")){var F=void 0;switch(r){case"%p":F=a;break;case"%":case"%r":default:F=i}return L(F)[n]/100*o}if("vh"===r||"vw"===r)return("vh"===r?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o;return o}(e,t,n,a)})})).forEach(function(e,n){e.forEach(function(a,i){J(a)&&(t[n]+=a*("-"===e[i-1]?-1:1))})}),t}var oe={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(e){var n=e.placement,a=n.split("-")[0],i=n.split("-")[1];if(i){var t=e.offsets,o=t.reference,r=t.popper,F=-1!==["bottom","top"].indexOf(a),c=F?"left":"top",l=F?"width":"height",s={start:z({},c,o[c]),end:z({},c,o[c]+o[l]-r[l])};e.offsets.popper=M({},r,s[i])}return e}},offset:{order:200,enabled:!0,fn:function(e,n){var a=n.offset,i=e.placement,t=e.offsets,o=t.popper,r=t.reference,F=i.split("-")[0],c=void 0;return c=J(+a)?[+a,0]:te(a,o,r,F),"left"===F?(o.top+=c[0],o.left-=c[1]):"right"===F?(o.top+=c[0],o.left+=c[1]):"top"===F?(o.left+=c[0],o.top-=c[1]):"bottom"===F&&(o.left+=c[0],o.top+=c[1]),e.popper=o,e},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(e,n){var a=n.boundariesElement||v(e.instance.popper);e.instance.reference===a&&(a=v(a));var i=Y("transform"),t=e.instance.popper.style,o=t.top,r=t.left,F=t[i];t.top="",t.left="",t[i]="";var c=S(e.instance.popper,e.instance.reference,n.padding,a,e.positionFixed);t.top=o,t.left=r,t[i]=F,n.boundaries=c;var l=n.priority,s=e.offsets.popper,m={primary:function(e){var a=s[e];return s[e]<c[e]&&!n.escapeWithReference&&(a=Math.max(s[e],c[e])),z({},e,a)},secondary:function(e){var a="right"===e?"left":"top",i=s[a];return s[e]>c[e]&&!n.escapeWithReference&&(i=Math.min(s[a],c[e]-("right"===e?s.width:s.height))),z({},a,i)}};return l.forEach(function(e){var n=-1!==["left","top"].indexOf(e)?"primary":"secondary";s=M({},s,m[n](e))}),e.offsets.popper=s,e},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(e){var n=e.offsets,a=n.popper,i=n.reference,t=e.placement.split("-")[0],o=Math.floor,r=-1!==["top","bottom"].indexOf(t),F=r?"right":"bottom",c=r?"left":"top",l=r?"width":"height";return a[F]<o(i[c])&&(e.offsets.popper[c]=o(i[c])-a[l]),a[c]>o(i[F])&&(e.offsets.popper[c]=o(i[F])),e}},arrow:{order:500,enabled:!0,fn:function(e,n){var a;if(!$(e.instance.modifiers,"arrow","keepTogether"))return e;var i=n.element;if("string"==typeof i){if(!(i=e.instance.popper.querySelector(i)))return e}else if(!e.instance.popper.contains(i))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),e;var t=e.placement.split("-")[0],o=e.offsets,r=o.popper,F=o.reference,c=-1!==["left","right"].indexOf(t),l=c?"height":"width",s=c?"Top":"Left",m=s.toLowerCase(),f=c?"left":"top",g=c?"bottom":"right",_=I(i)[l];F[g]-_<r[m]&&(e.offsets.popper[m]-=r[m]-(F[g]-_)),F[m]+_>r[g]&&(e.offsets.popper[m]+=F[m]+_-r[g]),e.offsets.popper=L(e.offsets.popper);var h=F[m]+F[l]/2-_/2,u=d(e.instance.popper),p=parseFloat(u["margin"+s],10),k=parseFloat(u["border"+s+"Width"],10),w=h-e.offsets.popper[m]-p-k;return w=Math.max(Math.min(r[l]-_,w),0),e.arrowElement=i,e.offsets.arrow=(z(a={},m,Math.round(w)),z(a,f,""),a),e},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(e,n){if(U(e.instance.modifiers,"inner"))return e;if(e.flipped&&e.placement===e.originalPlacement)return e;var a=S(e.instance.popper,e.instance.reference,n.padding,n.boundariesElement,e.positionFixed),i=e.placement.split("-")[0],t=W(i),o=e.placement.split("-")[1]||"",r=[];switch(n.behavior){case ie.FLIP:r=[i,t];break;case ie.CLOCKWISE:r=ae(i);break;case ie.COUNTERCLOCKWISE:r=ae(i,!0);break;default:r=n.behavior}return r.forEach(function(F,c){if(i!==F||r.length===c+1)return e;i=e.placement.split("-")[0],t=W(i);var l=e.offsets.popper,s=e.offsets.reference,m=Math.floor,f="left"===i&&m(l.right)>m(s.left)||"right"===i&&m(l.left)<m(s.right)||"top"===i&&m(l.bottom)>m(s.top)||"bottom"===i&&m(l.top)<m(s.bottom),g=m(l.left)<m(a.left),_=m(l.right)>m(a.right),h=m(l.top)<m(a.top),d=m(l.bottom)>m(a.bottom),u="left"===i&&g||"right"===i&&_||"top"===i&&h||"bottom"===i&&d,p=-1!==["top","bottom"].indexOf(i),k=!!n.flipVariations&&(p&&"start"===o&&g||p&&"end"===o&&_||!p&&"start"===o&&h||!p&&"end"===o&&d),w=!!n.flipVariationsByContent&&(p&&"start"===o&&_||p&&"end"===o&&g||!p&&"start"===o&&d||!p&&"end"===o&&h),b=k||w;(f||u||b)&&(e.flipped=!0,(f||u)&&(i=r[c+1]),b&&(o=function(e){return"end"===e?"start":"start"===e?"end":e}(o)),e.placement=i+(o?"-"+o:""),e.offsets.popper=M({},e.offsets.popper,V(e.instance.popper,e.offsets.reference,e.placement)),e=R(e.instance.modifiers,e,"flip"))}),e},behavior:"flip",padding:5,boundariesElement:"viewport",flipVariations:!1,flipVariationsByContent:!1},inner:{order:700,enabled:!1,fn:function(e){var n=e.placement,a=n.split("-")[0],i=e.offsets,t=i.popper,o=i.reference,r=-1!==["left","right"].indexOf(a),F=-1===["top","left"].indexOf(a);return t[r?"left":"top"]=o[a]-(F?t[r?"width":"height"]:0),e.placement=W(n),e.offsets.popper=L(t),e}},hide:{order:800,enabled:!0,fn:function(e){if(!$(e.instance.modifiers,"hide","preventOverflow"))return e;var n=e.offsets.reference,a=q(e.instance.modifiers,function(e){return"preventOverflow"===e.name}).boundaries;if(n.bottom<a.top||n.left>a.right||n.top>a.bottom||n.right<a.left){if(!0===e.hide)return e;e.hide=!0,e.attributes["x-out-of-boundaries"]=""}else{if(!1===e.hide)return e;e.hide=!1,e.attributes["x-out-of-boundaries"]=!1}return e}},computeStyle:{order:850,enabled:!0,fn:function(e,n){var a=n.x,i=n.y,t=e.offsets.popper,o=q(e.instance.modifiers,function(e){return"applyStyle"===e.name}).gpuAcceleration;void 0!==o&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var r=void 0!==o?o:n.gpuAcceleration,F=v(e.instance.popper),c=T(F),l={position:t.position},s=function(e,n){var a=e.offsets,i=a.popper,t=a.reference,o=Math.round,r=Math.floor,F=function(e){return e},c=o(t.width),l=o(i.width),s=-1!==["left","right"].indexOf(e.placement),m=-1!==e.placement.indexOf("-"),f=n?s||m||c%2==l%2?o:r:F,g=n?o:F;return{left:f(c%2==1&&l%2==1&&!m&&n?i.left-1:i.left),top:g(i.top),bottom:g(i.bottom),right:f(i.right)}}(e,window.devicePixelRatio<2||!Z),m="bottom"===a?"top":"bottom",f="right"===i?"left":"right",g=Y("transform"),_=void 0,h=void 0;if(h="bottom"===m?"HTML"===F.nodeName?-F.clientHeight+s.bottom:-c.height+s.bottom:s.top,_="right"===f?"HTML"===F.nodeName?-F.clientWidth+s.right:-c.width+s.right:s.left,r&&g)l[g]="translate3d("+_+"px, "+h+"px, 0)",l[m]=0,l[f]=0,l.willChange="transform";else{var d="bottom"===m?-1:1,u="right"===f?-1:1;l[m]=h*d,l[f]=_*u,l.willChange=m+", "+f}var p={"x-placement":e.placement};return e.attributes=M({},p,e.attributes),e.styles=M({},l,e.styles),e.arrowStyles=M({},e.offsets.arrow,e.arrowStyles),e},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(e){var n,a;return Q(e.instance.popper,e.styles),n=e.instance.popper,a=e.attributes,Object.keys(a).forEach(function(e){!1!==a[e]?n.setAttribute(e,a[e]):n.removeAttribute(e)}),e.arrowElement&&Object.keys(e.arrowStyles).length&&Q(e.arrowElement,e.arrowStyles),e},onLoad:function(e,n,a,i,t){var o=H(t,n,e,a.positionFixed),r=A(a.placement,o,n,e,a.modifiers.flip.boundariesElement,a.modifiers.flip.padding);return n.setAttribute("x-placement",r),Q(n,{position:a.positionFixed?"fixed":"absolute"}),a},gpuAcceleration:void 0}}},re=function(){function e(n,a){var i=this,t=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};j(this,e),this.scheduleUpdate=function(){return requestAnimationFrame(i.update)},this.update=_(this.update.bind(this)),this.options=M({},e.Defaults,t),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=n&&n.jquery?n[0]:n,this.popper=a&&a.jquery?a[0]:a,this.options.modifiers={},Object.keys(M({},e.Defaults.modifiers,t.modifiers)).forEach(function(n){i.options.modifiers[n]=M({},e.Defaults.modifiers[n]||{},t.modifiers?t.modifiers[n]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(e){return M({name:e},i.options.modifiers[e])}).sort(function(e,n){return e.order-n.order}),this.modifiers.forEach(function(e){e.enabled&&h(e.onLoad)&&e.onLoad(i.reference,i.popper,i.options,e,i.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}return O(e,[{key:"update",value:function(){return function(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=H(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=A(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=V(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",e=R(this.modifiers,e),this.state.isCreated?this.options.onUpdate(e):(this.state.isCreated=!0,this.options.onCreate(e))}}.call(this)}},{key:"destroy",value:function(){return function(){return this.state.isDestroyed=!0,U(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[Y("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}.call(this)}},{key:"enableEventListeners",value:function(){return function(){this.state.eventsEnabled||(this.state=X(this.reference,this.options,this.state,this.scheduleUpdate))}.call(this)}},{key:"disableEventListeners",value:function(){return G.call(this)}}]),e}();re.Utils=("undefined"!=typeof window?window:global).PopperUtils,re.placements=ee,re.Defaults=oe;var Fe=["animals","smileys","skinTones","travel","flags","objects","activities","symbols","food"],ce=[{n:["monkey_face"],e:"🐵",c:0},{n:["grinning"],e:"😀",c:1},{n:["skin-tone-2"],e:"🏻",c:2},{n:["earth_africa"],e:"🌍",c:3},{n:["checkered_flag"],e:"🏁",c:4},{n:["mute"],e:"🔇",c:5},{n:["jack_o_lantern"],e:"🎃",c:6},{n:["atm"],e:"🏧",c:7},{n:["grapes"],e:"🍇",c:8},{n:["earth_americas"],e:"🌎",c:3},{n:["grin"],e:"😁",c:1},{n:["melon"],e:"🍈",c:8},{n:["triangular_flag_on_post"],e:"🚩",c:4},{n:["monkey"],e:"🐒",c:0},{n:["christmas_tree"],e:"🎄",c:6},{n:["skin-tone-3"],e:"🏼",c:2},{n:["put_litter_in_its_place"],e:"🚮",c:7},{n:["speaker"],e:"🔈",c:5},{n:["earth_asia"],e:"🌏",c:3},{n:["crossed_flags"],e:"🎌",c:4},{n:["joy"],e:"😂",c:1},{n:["sound"],e:"🔉",c:5},{n:["watermelon"],e:"🍉",c:8},{n:["gorilla"],e:"🦍",c:0},{n:["fireworks"],e:"🎆",c:6},{n:["potable_water"],e:"🚰",c:7},{n:["skin-tone-4"],e:"🏽",c:2},{n:["wheelchair"],e:"♿",c:7},{n:["rolling_on_the_floor_laughing"],e:"🤣",c:1},{n:["loud_sound"],e:"🔊",c:5},{n:["waving_black_flag"],e:"🏴",c:4},{n:["tangerine"],e:"🍊",c:8},{n:["dog"],e:"🐶",c:0},{n:["sparkler"],e:"🎇",c:6},{n:["skin-tone-5"],e:"🏾",c:2},{n:["globe_with_meridians"],e:"🌐",c:3},{n:["skin-tone-6"],e:"🏿",c:2},{n:["smiley"],e:"😃",c:1},{n:["loudspeaker"],e:"📢",c:5},{n:["sparkles"],e:"✨",c:6},{n:["dog2"],e:"🐕",c:0},{n:["waving_white_flag"],e:"🏳️",c:4},{n:["world_map"],e:"🗺️",c:3},{n:["lemon"],e:"🍋",c:8},{n:["mens"],e:"🚹",c:7},{n:["womens"],e:"🚺",c:7},{n:["rainbow-flag"],e:"🏳️🌈",c:4},{n:["smile"],e:"😄",c:1},{n:["banana"],e:"🍌",c:8},{n:["mega"],e:"📣",c:5},{n:["japan"],e:"🗾",c:3},{n:["poodle"],e:"🐩",c:0},{n:["balloon"],e:"🎈",c:6},{n:["flag-ac"],e:"🇦🇨",c:4},{n:["sweat_smile"],e:"😅",c:1},{n:["pineapple"],e:"🍍",c:8},{n:["restroom"],e:"🚻",c:7},{n:["postal_horn"],e:"📯",c:5},{n:["wolf"],e:"🐺",c:0},{n:["tada"],e:"🎉",c:6},{n:["snow_capped_mountain"],e:"🏔️",c:3},{n:["laughing","satisfied"],e:"😆",c:1},{n:["apple"],e:"🍎",c:8},{n:["flag-ad"],e:"🇦🇩",c:4},{n:["fox_face"],e:"🦊",c:0},{n:["confetti_ball"],e:"🎊",c:6},{n:["bell"],e:"🔔",c:5},{n:["mountain"],e:"⛰️",c:3},{n:["baby_symbol"],e:"🚼",c:7},{n:["wc"],e:"🚾",c:7},{n:["wink"],e:"😉",c:1},{n:["no_bell"],e:"🔕",c:5},{n:["green_apple"],e:"🍏",c:8},{n:["tanabata_tree"],e:"🎋",c:6},{n:["flag-ae"],e:"🇦🇪",c:4},{n:["volcano"],e:"🌋",c:3},{n:["cat"],e:"🐱",c:0},{n:["flag-af"],e:"🇦🇫",c:4},{n:["musical_score"],e:"🎼",c:5},{n:["blush"],e:"😊",c:1},{n:["pear"],e:"🍐",c:8},{n:["bamboo"],e:"🎍",c:6},{n:["passport_control"],e:"🛂",c:7},{n:["mount_fuji"],e:"🗻",c:3},{n:["cat2"],e:"🐈",c:0},{n:["musical_note"],e:"🎵",c:5},{n:["dolls"],e:"🎎",c:6},{n:["lion_face"],e:"🦁",c:0},{n:["camping"],e:"🏕️",c:3},{n:["flag-ag"],e:"🇦🇬",c:4},{n:["customs"],e:"🛃",c:7},{n:["yum"],e:"😋",c:1},{n:["peach"],e:"🍑",c:8},{n:["tiger"],e:"🐯",c:0},{n:["notes"],e:"🎶",c:5},{n:["flags"],e:"🎏",c:6},{n:["beach_with_umbrella"],e:"🏖️",c:3},{n:["cherries"],e:"🍒",c:8},{n:["flag-ai"],e:"🇦🇮",c:4},{n:["baggage_claim"],e:"🛄",c:7},{n:["sunglasses"],e:"😎",c:1},{n:["left_luggage"],e:"🛅",c:7},{n:["wind_chime"],e:"🎐",c:6},{n:["strawberry"],e:"🍓",c:8},{n:["desert"],e:"🏜️",c:3},{n:["studio_microphone"],e:"🎙️",c:5},{n:["flag-al"],e:"🇦🇱",c:4},{n:["tiger2"],e:"🐅",c:0},{n:["heart_eyes"],e:"😍",c:1},{n:["desert_island"],e:"🏝️",c:3},{n:["kiwifruit"],e:"🥝",c:8},{n:["rice_scene"],e:"🎑",c:6},{n:["kissing_heart"],e:"😘",c:1},{n:["warning"],e:"⚠️",c:7},{n:["flag-am"],e:"🇦🇲",c:4},{n:["leopard"],e:"🐆",c:0},{n:["level_slider"],e:"🎚️",c:5},{n:["horse"],e:"🐴",c:0},{n:["children_crossing"],e:"🚸",c:7},{n:["ribbon"],e:"🎀",c:6},{n:["national_park"],e:"🏞️",c:3},{n:["control_knobs"],e:"🎛️",c:5},{n:["kissing"],e:"😗",c:1},{n:["tomato"],e:"🍅",c:8},{n:["flag-ao"],e:"🇦🇴",c:4},{n:["stadium"],e:"🏟️",c:3},{n:["flag-aq"],e:"🇦🇶",c:4},{n:["gift"],e:"🎁",c:6},{n:["no_entry"],e:"⛔",c:7},{n:["kissing_smiling_eyes"],e:"😙",c:1},{n:["coconut"],e:"🥥",c:8},{n:["racehorse"],e:"🐎",c:0},{n:["microphone"],e:"🎤",c:5},{n:["classical_building"],e:"🏛️",c:3},{n:["no_entry_sign"],e:"🚫",c:7},{n:["reminder_ribbon"],e:"🎗️",c:6},{n:["kissing_closed_eyes"],e:"😚",c:1},{n:["unicorn_face"],e:"🦄",c:0},{n:["flag-ar"],e:"🇦🇷",c:4},{n:["headphones"],e:"🎧",c:5},{n:["avocado"],e:"🥑",c:8},{n:["relaxed"],e:"☺️",c:1},{n:["zebra_face"],e:"🦓",c:0},{n:["eggplant"],e:"🍆",c:8},{n:["radio"],e:"📻",c:5},{n:["building_construction"],e:"🏗️",c:3},{n:["flag-as"],e:"🇦🇸",c:4},{n:["admission_tickets"],e:"🎟️",c:6},{n:["no_bicycles"],e:"🚳",c:7},{n:["no_smoking"],e:"🚭",c:7},{n:["slightly_smiling_face"],e:"🙂",c:1},{n:["flag-at"],e:"🇦🇹",c:4},{n:["ticket"],e:"🎫",c:6},{n:["saxophone"],e:"🎷",c:5},{n:["deer"],e:"🦌",c:0},{n:["house_buildings"],e:"🏘️",c:3},{n:["potato"],e:"🥔",c:8},{n:["guitar"],e:"🎸",c:5},{n:["carrot"],e:"🥕",c:8},{n:["cityscape"],e:"🏙️",c:3},{n:["flag-au"],e:"🇦🇺",c:4},{n:["do_not_litter"],e:"🚯",c:7},{n:["hugging_face"],e:"🤗",c:1},{n:["cow"],e:"🐮",c:0},{n:["medal"],e:"🎖️",c:6},{n:["musical_keyboard"],e:"🎹",c:5},{n:["corn"],e:"🌽",c:8},{n:["derelict_house_building"],e:"🏚️",c:3},{n:["non-potable_water"],e:"🚱",c:7},{n:["trophy"],e:"🏆",c:6},{n:["flag-aw"],e:"🇦🇼",c:4},{n:["star-struck","grinning_face_with_star_eyes"],e:"🤩",c:1},{n:["ox"],e:"🐂",c:0},{n:["trumpet"],e:"🎺",c:5},{n:["hot_pepper"],e:"🌶️",c:8},{n:["sports_medal"],e:"🏅",c:6},{n:["flag-ax"],e:"🇦🇽",c:4},{n:["water_buffalo"],e:"🐃",c:0},{n:["no_pedestrians"],e:"🚷",c:7},{n:["thinking_face"],e:"🤔",c:1},{n:["house"],e:"🏠",c:3},{n:["no_mobile_phones"],e:"📵",c:7},{n:["flag-az"],e:"🇦🇿",c:4},{n:["first_place_medal"],e:"🥇",c:6},{n:["house_with_garden"],e:"🏡",c:3},{n:["violin"],e:"🎻",c:5},{n:["face_with_raised_eyebrow","face_with_one_eyebrow_raised"],e:"🤨",c:1},{n:["cucumber"],e:"🥒",c:8},{n:["cow2"],e:"🐄",c:0},{n:["flag-ba"],e:"🇧🇦",c:4},{n:["pig"],e:"🐷",c:0},{n:["drum_with_drumsticks"],e:"🥁",c:5},{n:["underage"],e:"🔞",c:7},{n:["broccoli"],e:"🥦",c:8},{n:["office"],e:"🏢",c:3},{n:["second_place_medal"],e:"🥈",c:6},{n:["neutral_face"],e:"😐",c:1},{n:["third_place_medal"],e:"🥉",c:6},{n:["mushroom"],e:"🍄",c:8},{n:["flag-bb"],e:"🇧🇧",c:4},{n:["radioactive_sign"],e:"☢️",c:7},{n:["pig2"],e:"🐖",c:0},{n:["expressionless"],e:"😑",c:1},{n:["iphone"],e:"📱",c:5},{n:["post_office"],e:"🏣",c:3},{n:["european_post_office"],e:"🏤",c:3},{n:["soccer"],e:"⚽",c:6},{n:["boar"],e:"🐗",c:0},{n:["peanuts"],e:"🥜",c:8},{n:["calling"],e:"📲",c:5},{n:["biohazard_sign"],e:"☣️",c:7},{n:["flag-bd"],e:"🇧🇩",c:4},{n:["no_mouth"],e:"😶",c:1},{n:["face_with_rolling_eyes"],e:"🙄",c:1},{n:["phone","telephone"],e:"☎️",c:5},{n:["pig_nose"],e:"🐽",c:0},{n:["chestnut"],e:"🌰",c:8},{n:["arrow_up"],e:"⬆️",c:7},{n:["hospital"],e:"🏥",c:3},{n:["flag-be"],e:"🇧🇪",c:4},{n:["baseball"],e:"⚾",c:6},{n:["smirk"],e:"😏",c:1},{n:["arrow_upper_right"],e:"↗️",c:7},{n:["flag-bf"],e:"🇧🇫",c:4},{n:["basketball"],e:"🏀",c:6},{n:["ram"],e:"🐏",c:0},{n:["bank"],e:"🏦",c:3},{n:["bread"],e:"🍞",c:8},{n:["telephone_receiver"],e:"📞",c:5},{n:["croissant"],e:"🥐",c:8},{n:["pager"],e:"📟",c:5},{n:["sheep"],e:"🐑",c:0},{n:["arrow_right"],e:"➡️",c:7},{n:["persevere"],e:"😣",c:1},{n:["flag-bg"],e:"🇧🇬",c:4},{n:["volleyball"],e:"🏐",c:6},{n:["hotel"],e:"🏨",c:3},{n:["arrow_lower_right"],e:"↘️",c:7},{n:["goat"],e:"🐐",c:0},{n:["flag-bh"],e:"🇧🇭",c:4},{n:["love_hotel"],e:"🏩",c:3},{n:["disappointed_relieved"],e:"😥",c:1},{n:["baguette_bread"],e:"🥖",c:8},{n:["football"],e:"🏈",c:6},{n:["fax"],e:"📠",c:5},{n:["convenience_store"],e:"🏪",c:3},{n:["dromedary_camel"],e:"🐪",c:0},{n:["arrow_down"],e:"⬇️",c:7},{n:["battery"],e:"🔋",c:5},{n:["rugby_football"],e:"🏉",c:6},{n:["pretzel"],e:"🥨",c:8},{n:["open_mouth"],e:"😮",c:1},{n:["flag-bi"],e:"🇧🇮",c:4},{n:["flag-bj"],e:"🇧🇯",c:4},{n:["pancakes"],e:"🥞",c:8},{n:["school"],e:"🏫",c:3},{n:["tennis"],e:"🎾",c:6},{n:["zipper_mouth_face"],e:"🤐",c:1},{n:["camel"],e:"🐫",c:0},{n:["arrow_lower_left"],e:"↙️",c:7},{n:["electric_plug"],e:"🔌",c:5},{n:["cheese_wedge"],e:"🧀",c:8},{n:["hushed"],e:"😯",c:1},{n:["computer"],e:"💻",c:5},{n:["giraffe_face"],e:"🦒",c:0},{n:["8ball"],e:"🎱",c:6},{n:["flag-bl"],e:"🇧🇱",c:4},{n:["arrow_left"],e:"⬅️",c:7},{n:["department_store"],e:"🏬",c:3},{n:["meat_on_bone"],e:"🍖",c:8},{n:["arrow_upper_left"],e:"↖️",c:7},{n:["flag-bm"],e:"🇧🇲",c:4},{n:["sleepy"],e:"😪",c:1},{n:["bowling"],e:"🎳",c:6},{n:["factory"],e:"🏭",c:3},{n:["desktop_computer"],e:"🖥️",c:5},{n:["elephant"],e:"🐘",c:0},{n:["rhinoceros"],e:"🦏",c:0},{n:["arrow_up_down"],e:"↕️",c:7},{n:["cricket_bat_and_ball"],e:"🏏",c:6},{n:["printer"],e:"🖨️",c:5},{n:["poultry_leg"],e:"🍗",c:8},{n:["tired_face"],e:"😫",c:1},{n:["japanese_castle"],e:"🏯",c:3},{n:["flag-bn"],e:"🇧🇳",c:4},{n:["field_hockey_stick_and_ball"],e:"🏑",c:6},{n:["sleeping"],e:"😴",c:1},{n:["left_right_arrow"],e:"↔️",c:7},{n:["keyboard"],e:"⌨️",c:5},{n:["european_castle"],e:"🏰",c:3},{n:["mouse"],e:"🐭",c:0},{n:["flag-bo"],e:"🇧🇴",c:4},{n:["cut_of_meat"],e:"🥩",c:8},{n:["ice_hockey_stick_and_puck"],e:"🏒",c:6},{n:["mouse2"],e:"🐁",c:0},{n:["three_button_mouse"],e:"🖱️",c:5},{n:["leftwards_arrow_with_hook"],e:"↩️",c:7},{n:["bacon"],e:"🥓",c:8},{n:["relieved"],e:"😌",c:1},{n:["flag-bq"],e:"🇧🇶",c:4},{n:["wedding"],e:"💒",c:3},{n:["tokyo_tower"],e:"🗼",c:3},{n:["arrow_right_hook"],e:"↪️",c:7},{n:["hamburger"],e:"🍔",c:8},{n:["stuck_out_tongue"],e:"😛",c:1},{n:["trackball"],e:"🖲️",c:5},{n:["flag-br"],e:"🇧🇷",c:4},{n:["rat"],e:"🐀",c:0},{n:["table_tennis_paddle_and_ball"],e:"🏓",c:6},{n:["minidisc"],e:"💽",c:5},{n:["stuck_out_tongue_winking_eye"],e:"😜",c:1},{n:["fries"],e:"🍟",c:8},{n:["badminton_racquet_and_shuttlecock"],e:"🏸",c:6},{n:["statue_of_liberty"],e:"🗽",c:3},{n:["flag-bs"],e:"🇧🇸",c:4},{n:["arrow_heading_up"],e:"⤴️",c:7},{n:["hamster"],e:"🐹",c:0},{n:["stuck_out_tongue_closed_eyes"],e:"😝",c:1},{n:["pizza"],e:"🍕",c:8},{n:["boxing_glove"],e:"🥊",c:6},{n:["floppy_disk"],e:"💾",c:5},{n:["arrow_heading_down"],e:"⤵️",c:7},{n:["flag-bt"],e:"🇧🇹",c:4},{n:["rabbit"],e:"🐰",c:0},{n:["church"],e:"⛪",c:3},{n:["drooling_face"],e:"🤤",c:1},{n:["flag-bv"],e:"🇧🇻",c:4},{n:["mosque"],e:"🕌",c:3},{n:["rabbit2"],e:"🐇",c:0},{n:["hotdog"],e:"🌭",c:8},{n:["martial_arts_uniform"],e:"🥋",c:6},{n:["arrows_clockwise"],e:"🔃",c:7},{n:["cd"],e:"💿",c:5},{n:["arrows_counterclockwise"],e:"🔄",c:7},{n:["sandwich"],e:"🥪",c:8},{n:["chipmunk"],e:"🐿️",c:0},{n:["synagogue"],e:"🕍",c:3},{n:["unamused"],e:"😒",c:1},{n:["goal_net"],e:"🥅",c:6},{n:["flag-bw"],e:"🇧🇼",c:4},{n:["dvd"],e:"📀",c:5},{n:["hedgehog"],e:"🦔",c:0},{n:["dart"],e:"🎯",c:6},{n:["taco"],e:"🌮",c:8},{n:["back"],e:"🔙",c:7},{n:["flag-by"],e:"🇧🇾",c:4},{n:["shinto_shrine"],e:"⛩️",c:3},{n:["movie_camera"],e:"🎥",c:5},{n:["sweat"],e:"😓",c:1},{n:["burrito"],e:"🌯",c:8},{n:["flag-bz"],e:"🇧🇿",c:4},{n:["pensive"],e:"😔",c:1},{n:["kaaba"],e:"🕋",c:3},{n:["film_frames"],e:"🎞️",c:5},{n:["bat"],e:"🦇",c:0},{n:["golf"],e:"⛳",c:6},{n:["end"],e:"🔚",c:7},{n:["film_projector"],e:"📽️",c:5},{n:["bear"],e:"🐻",c:0},{n:["ice_skate"],e:"⛸️",c:6},{n:["fountain"],e:"⛲",c:3},{n:["confused"],e:"😕",c:1},{n:["flag-ca"],e:"🇨🇦",c:4},{n:["on"],e:"🔛",c:7},{n:["stuffed_flatbread"],e:"🥙",c:8},{n:["soon"],e:"🔜",c:7},{n:["upside_down_face"],e:"🙃",c:1},{n:["fishing_pole_and_fish"],e:"🎣",c:6},{n:["tent"],e:"⛺",c:3},{n:["clapper"],e:"🎬",c:5},{n:["egg"],e:"🥚",c:8},{n:["flag-cc"],e:"🇨🇨",c:4},{n:["koala"],e:"🐨",c:0},{n:["foggy"],e:"🌁",c:3},{n:["tv"],e:"📺",c:5},{n:["panda_face"],e:"🐼",c:0},{n:["fried_egg","cooking"],e:"🍳",c:8},{n:["top"],e:"🔝",c:7},{n:["flag-cd"],e:"🇨🇩",c:4},{n:["money_mouth_face"],e:"🤑",c:1},{n:["running_shirt_with_sash"],e:"🎽",c:6},{n:["astonished"],e:"😲",c:1},{n:["feet","paw_prints"],e:"🐾",c:0},{n:["camera"],e:"📷",c:5},{n:["flag-cf"],e:"🇨🇫",c:4},{n:["place_of_worship"],e:"🛐",c:7},{n:["night_with_stars"],e:"🌃",c:3},{n:["ski"],e:"🎿",c:6},{n:["shallow_pan_of_food"],e:"🥘",c:8},{n:["camera_with_flash"],e:"📸",c:5},{n:["sunrise_over_mountains"],e:"🌄",c:3},{n:["turkey"],e:"🦃",c:0},{n:["white_frowning_face"],e:"☹️",c:1},{n:["flag-cg"],e:"🇨🇬",c:4},{n:["stew"],e:"🍲",c:8},{n:["sled"],e:"🛷",c:6},{n:["atom_symbol"],e:"⚛️",c:7},{n:["curling_stone"],e:"🥌",c:6},{n:["slightly_frowning_face"],e:"🙁",c:1},{n:["sunrise"],e:"🌅",c:3},{n:["om_symbol"],e:"🕉️",c:7},{n:["chicken"],e:"🐔",c:0},{n:["bowl_with_spoon"],e:"🥣",c:8},{n:["flag-ch"],e:"🇨🇭",c:4},{n:["video_camera"],e:"📹",c:5},{n:["video_game"],e:"🎮",c:6},{n:["rooster"],e:"🐓",c:0},{n:["vhs"],e:"📼",c:5},{n:["city_sunset"],e:"🌆",c:3},{n:["confounded"],e:"😖",c:1},{n:["green_salad"],e:"🥗",c:8},{n:["star_of_david"],e:"✡️",c:7},{n:["flag-ci"],e:"🇨🇮",c:4},{n:["popcorn"],e:"🍿",c:8},{n:["city_sunrise"],e:"🌇",c:3},{n:["disappointed"],e:"😞",c:1},{n:["mag"],e:"🔍",c:5},{n:["hatching_chick"],e:"🐣",c:0},{n:["joystick"],e:"🕹️",c:6},{n:["wheel_of_dharma"],e:"☸️",c:7},{n:["flag-ck"],e:"🇨🇰",c:4},{n:["canned_food"],e:"🥫",c:8},{n:["worried"],e:"😟",c:1},{n:["baby_chick"],e:"🐤",c:0},{n:["flag-cl"],e:"🇨🇱",c:4},{n:["game_die"],e:"🎲",c:6},{n:["mag_right"],e:"🔎",c:5},{n:["yin_yang"],e:"☯️",c:7},{n:["bridge_at_night"],e:"🌉",c:3},{n:["spades"],e:"♠️",c:6},{n:["hatched_chick"],e:"🐥",c:0},{n:["flag-cm"],e:"🇨🇲",c:4},{n:["latin_cross"],e:"✝️",c:7},{n:["triumph"],e:"😤",c:1},{n:["hotsprings"],e:"♨️",c:3},{n:["bento"],e:"🍱",c:8},{n:["microscope"],e:"🔬",c:5},{n:["cry"],e:"😢",c:1},{n:["bird"],e:"🐦",c:0},{n:["cn","flag-cn"],e:"🇨🇳",c:4},{n:["telescope"],e:"🔭",c:5},{n:["rice_cracker"],e:"🍘",c:8},{n:["hearts"],e:"♥️",c:6},{n:["orthodox_cross"],e:"☦️",c:7},{n:["milky_way"],e:"🌌",c:3},{n:["rice_ball"],e:"🍙",c:8},{n:["satellite_antenna"],e:"📡",c:5},{n:["flag-co"],e:"🇨🇴",c:4},{n:["carousel_horse"],e:"🎠",c:3},{n:["sob"],e:"😭",c:1},{n:["diamonds"],e:"♦️",c:6},{n:["star_and_crescent"],e:"☪️",c:7},{n:["penguin"],e:"🐧",c:0},{n:["dove_of_peace"],e:"🕊️",c:0},{n:["flag-cp"],e:"🇨🇵",c:4},{n:["ferris_wheel"],e:"🎡",c:3},{n:["clubs"],e:"♣️",c:6},{n:["peace_symbol"],e:"☮️",c:7},{n:["candle"],e:"🕯️",c:5},{n:["frowning"],e:"😦",c:1},{n:["rice"],e:"🍚",c:8},{n:["flag-cr"],e:"🇨🇷",c:4},{n:["roller_coaster"],e:"🎢",c:3},{n:["menorah_with_nine_branches"],e:"🕎",c:7},{n:["black_joker"],e:"🃏",c:6},{n:["eagle"],e:"🦅",c:0},{n:["curry"],e:"🍛",c:8},{n:["bulb"],e:"💡",c:5},{n:["anguished"],e:"😧",c:1},{n:["flag-cu"],e:"🇨🇺",c:4},{n:["barber"],e:"💈",c:3},{n:["duck"],e:"🦆",c:0},{n:["six_pointed_star"],e:"🔯",c:7},{n:["ramen"],e:"🍜",c:8},{n:["flashlight"],e:"🔦",c:5},{n:["mahjong"],e:"🀄",c:6},{n:["fearful"],e:"😨",c:1},{n:["aries"],e:"♈",c:7},{n:["spaghetti"],e:"🍝",c:8},{n:["circus_tent"],e:"🎪",c:3},{n:["izakaya_lantern","lantern"],e:"🏮",c:5},{n:["flag-cv"],e:"🇨🇻",c:4},{n:["weary"],e:"😩",c:1},{n:["flower_playing_cards"],e:"🎴",c:6},{n:["owl"],e:"🦉",c:0},{n:["performing_arts"],e:"🎭",c:3},{n:["frog"],e:"🐸",c:0},{n:["flag-cw"],e:"🇨🇼",c:4},{n:["notebook_with_decorative_cover"],e:"📔",c:5},{n:["exploding_head","shocked_face_with_exploding_head"],e:"🤯",c:1},{n:["taurus"],e:"♉",c:7},{n:["sweet_potato"],e:"🍠",c:8},{n:["closed_book"],e:"📕",c:5},{n:["gemini"],e:"♊",c:7},{n:["frame_with_picture"],e:"🖼️",c:3},{n:["flag-cx"],e:"🇨🇽",c:4},{n:["grimacing"],e:"😬",c:1},{n:["crocodile"],e:"🐊",c:0},{n:["oden"],e:"🍢",c:8},{n:["flag-cy"],e:"🇨🇾",c:4},{n:["book","open_book"],e:"📖",c:5},{n:["turtle"],e:"🐢",c:0},{n:["art"],e:"🎨",c:3},{n:["sushi"],e:"🍣",c:8},{n:["cold_sweat"],e:"😰",c:1},{n:["cancer"],e:"♋",c:7},{n:["fried_shrimp"],e:"🍤",c:8},{n:["slot_machine"],e:"🎰",c:3},{n:["scream"],e:"😱",c:1},{n:["green_book"],e:"📗",c:5},{n:["leo"],e:"♌",c:7},{n:["flag-cz"],e:"🇨🇿",c:4},{n:["lizard"],e:"🦎",c:0},{n:["virgo"],e:"♍",c:7},{n:["steam_locomotive"],e:"🚂",c:3},{n:["de","flag-de"],e:"🇩🇪",c:4},{n:["flushed"],e:"😳",c:1},{n:["blue_book"],e:"📘",c:5},{n:["snake"],e:"🐍",c:0},{n:["fish_cake"],e:"🍥",c:8},{n:["railway_car"],e:"🚃",c:3},{n:["dango"],e:"🍡",c:8},{n:["orange_book"],e:"📙",c:5},{n:["libra"],e:"♎",c:7},{n:["dragon_face"],e:"🐲",c:0},{n:["flag-dg"],e:"🇩🇬",c:4},{n:["zany_face","grinning_face_with_one_large_and_one_small_eye"],e:"🤪",c:1},{n:["books"],e:"📚",c:5},{n:["dragon"],e:"🐉",c:0},{n:["flag-dj"],e:"🇩🇯",c:4},{n:["dumpling"],e:"🥟",c:8},{n:["dizzy_face"],e:"😵",c:1},{n:["scorpius"],e:"♏",c:7},{n:["bullettrain_side"],e:"🚄",c:3},{n:["bullettrain_front"],e:"🚅",c:3},{n:["notebook"],e:"📓",c:5},{n:["fortune_cookie"],e:"🥠",c:8},{n:["sagittarius"],e:"♐",c:7},{n:["sauropod"],e:"🦕",c:0},{n:["flag-dk"],e:"🇩🇰",c:4},{n:["rage"],e:"😡",c:1},{n:["ledger"],e:"📒",c:5},{n:["angry"],e:"😠",c:1},{n:["t-rex"],e:"🦖",c:0},{n:["capricorn"],e:"♑",c:7},{n:["takeout_box"],e:"🥡",c:8},{n:["flag-dm"],e:"🇩🇲",c:4},{n:["train2"],e:"🚆",c:3},{n:["page_with_curl"],e:"📃",c:5},{n:["whale"],e:"🐳",c:0},{n:["face_with_symbols_on_mouth","serious_face_with_symbols_covering_mouth"],e:"🤬",c:1},{n:["flag-do"],e:"🇩🇴",c:4},{n:["metro"],e:"🚇",c:3},{n:["icecream"],e:"🍦",c:8},{n:["aquarius"],e:"♒",c:7},{n:["flag-dz"],e:"🇩🇿",c:4},{n:["whale2"],e:"🐋",c:0},{n:["mask"],e:"😷",c:1},{n:["scroll"],e:"📜",c:5},{n:["shaved_ice"],e:"🍧",c:8},{n:["pisces"],e:"♓",c:7},{n:["light_rail"],e:"🚈",c:3},{n:["dolphin","flipper"],e:"🐬",c:0},{n:["face_with_thermometer"],e:"🤒",c:1},{n:["flag-ea"],e:"🇪🇦",c:4},{n:["ophiuchus"],e:"⛎",c:7},{n:["station"],e:"🚉",c:3},{n:["ice_cream"],e:"🍨",c:8},{n:["page_facing_up"],e:"📄",c:5},{n:["doughnut"],e:"🍩",c:8},{n:["face_with_head_bandage"],e:"🤕",c:1},{n:["fish"],e:"🐟",c:0},{n:["newspaper"],e:"📰",c:5},{n:["tram"],e:"🚊",c:3},{n:["flag-ec"],e:"🇪🇨",c:4},{n:["twisted_rightwards_arrows"],e:"🔀",c:7},{n:["flag-ee"],e:"🇪🇪",c:4},{n:["cookie"],e:"🍪",c:8},{n:["monorail"],e:"🚝",c:3},{n:["tropical_fish"],e:"🐠",c:0},{n:["rolled_up_newspaper"],e:"🗞️",c:5},{n:["nauseated_face"],e:"🤢",c:1},{n:["repeat"],e:"🔁",c:7},{n:["bookmark_tabs"],e:"📑",c:5},{n:["repeat_one"],e:"🔂",c:7},{n:["flag-eg"],e:"🇪🇬",c:4},{n:["mountain_railway"],e:"🚞",c:3},{n:["birthday"],e:"🎂",c:8},{n:["blowfish"],e:"🐡",c:0},{n:["face_vomiting","face_with_open_mouth_vomiting"],e:"🤮",c:1},{n:["arrow_forward"],e:"▶️",c:7},{n:["bookmark"],e:"🔖",c:5},{n:["flag-eh"],e:"🇪🇭",c:4},{n:["shark"],e:"🦈",c:0},{n:["train"],e:"🚋",c:3},{n:["sneezing_face"],e:"🤧",c:1},{n:["cake"],e:"🍰",c:8},{n:["bus"],e:"🚌",c:3},{n:["pie"],e:"🥧",c:8},{n:["innocent"],e:"😇",c:1},{n:["fast_forward"],e:"⏩",c:7},{n:["label"],e:"🏷️",c:5},{n:["octopus"],e:"🐙",c:0},{n:["flag-er"],e:"🇪🇷",c:4},{n:["black_right_pointing_double_triangle_with_vertical_bar"],e:"⏭️",c:7},{n:["chocolate_bar"],e:"🍫",c:8},{n:["oncoming_bus"],e:"🚍",c:3},{n:["shell"],e:"🐚",c:0},{n:["face_with_cowboy_hat"],e:"🤠",c:1},{n:["moneybag"],e:"💰",c:5},{n:["es","flag-es"],e:"🇪🇸",c:4},{n:["crab"],e:"🦀",c:0},{n:["yen"],e:"💴",c:5},{n:["flag-et"],e:"🇪🇹",c:4},{n:["clown_face"],e:"🤡",c:1},{n:["black_right_pointing_triangle_with_double_vertical_bar"],e:"⏯️",c:7},{n:["trolleybus"],e:"🚎",c:3},{n:["candy"],e:"🍬",c:8},{n:["lying_face"],e:"🤥",c:1},{n:["arrow_backward"],e:"◀️",c:7},{n:["dollar"],e:"💵",c:5},{n:["shrimp"],e:"🦐",c:0},{n:["minibus"],e:"🚐",c:3},{n:["flag-eu"],e:"🇪🇺",c:4},{n:["lollipop"],e:"🍭",c:8},{n:["squid"],e:"🦑",c:0},{n:["euro"],e:"💶",c:5},{n:["flag-fi"],e:"🇫🇮",c:4},{n:["ambulance"],e:"🚑",c:3},{n:["custard"],e:"🍮",c:8},{n:["shushing_face","face_with_finger_covering_closed_lips"],e:"🤫",c:1},{n:["rewind"],e:"⏪",c:7},{n:["black_left_pointing_double_triangle_with_vertical_bar"],e:"⏮️",c:7},{n:["face_with_hand_over_mouth","smiling_face_with_smiling_eyes_and_hand_covering_mouth"],e:"🤭",c:1},{n:["flag-fj"],e:"🇫🇯",c:4},{n:["honey_pot"],e:"🍯",c:8},{n:["snail"],e:"🐌",c:0},{n:["pound"],e:"💷",c:5},{n:["fire_engine"],e:"🚒",c:3},{n:["baby_bottle"],e:"🍼",c:8},{n:["flag-fk"],e:"🇫🇰",c:4},{n:["butterfly"],e:"🦋",c:0},{n:["money_with_wings"],e:"💸",c:5},{n:["face_with_monocle"],e:"🧐",c:1},{n:["police_car"],e:"🚓",c:3},{n:["arrow_up_small"],e:"🔼",c:7},{n:["flag-fm"],e:"🇫🇲",c:4},{n:["glass_of_milk"],e:"🥛",c:8},{n:["credit_card"],e:"💳",c:5},{n:["oncoming_police_car"],e:"🚔",c:3},{n:["bug"],e:"🐛",c:0},{n:["nerd_face"],e:"🤓",c:1},{n:["arrow_double_up"],e:"⏫",c:7},{n:["chart"],e:"💹",c:5},{n:["flag-fo"],e:"🇫🇴",c:4},{n:["ant"],e:"🐜",c:0},{n:["arrow_down_small"],e:"🔽",c:7},{n:["smiling_imp"],e:"😈",c:1},{n:["taxi"],e:"🚕",c:3},{n:["coffee"],e:"☕",c:8},{n:["fr","flag-fr"],e:"🇫🇷",c:4},{n:["oncoming_taxi"],e:"🚖",c:3},{n:["arrow_double_down"],e:"⏬",c:7},{n:["imp"],e:"👿",c:1},{n:["currency_exchange"],e:"💱",c:5},{n:["tea"],e:"🍵",c:8},{n:["bee","honeybee"],e:"🐝",c:0},{n:["heavy_dollar_sign"],e:"💲",c:5},{n:["car","red_car"],e:"🚗",c:3},{n:["sake"],e:"🍶",c:8},{n:["flag-ga"],e:"🇬🇦",c:4},{n:["beetle"],e:"🐞",c:0},{n:["japanese_ogre"],e:"👹",c:1},{n:["double_vertical_bar"],e:"⏸️",c:7},{n:["champagne"],e:"🍾",c:8},{n:["japanese_goblin"],e:"👺",c:1},{n:["black_square_for_stop"],e:"⏹️",c:7},{n:["oncoming_automobile"],e:"🚘",c:3},{n:["email","envelope"],e:"✉️",c:5},{n:["cricket"],e:"🦗",c:0},{n:["gb","uk","flag-gb"],e:"🇬🇧",c:4},{n:["black_circle_for_record"],e:"⏺️",c:7},{n:["flag-gd"],e:"🇬🇩",c:4},{n:["spider"],e:"🕷️",c:0},{n:["blue_car"],e:"🚙",c:3},{n:["skull"],e:"💀",c:1},{n:["e-mail"],e:"📧",c:5},{n:["wine_glass"],e:"🍷",c:8},{n:["spider_web"],e:"🕸️",c:0},{n:["cocktail"],e:"🍸",c:8},{n:["skull_and_crossbones"],e:"☠️",c:1},{n:["flag-ge"],e:"🇬🇪",c:4},{n:["eject"],e:"⏏️",c:7},{n:["truck"],e:"🚚",c:3},{n:["incoming_envelope"],e:"📨",c:5},{n:["tropical_drink"],e:"🍹",c:8},{n:["scorpion"],e:"🦂",c:0},{n:["cinema"],e:"🎦",c:7},{n:["articulated_lorry"],e:"🚛",c:3},{n:["envelope_with_arrow"],e:"📩",c:5},{n:["ghost"],e:"👻",c:1},{n:["flag-gf"],e:"🇬🇫",c:4},{n:["bouquet"],e:"💐",c:0},{n:["tractor"],e:"🚜",c:3},{n:["beer"],e:"🍺",c:8},{n:["outbox_tray"],e:"📤",c:5},{n:["low_brightness"],e:"🔅",c:7},{n:["alien"],e:"👽",c:1},{n:["flag-gg"],e:"🇬🇬",c:4},{n:["cherry_blossom"],e:"🌸",c:0},{n:["inbox_tray"],e:"📥",c:5},{n:["flag-gh"],e:"🇬🇭",c:4},{n:["bike"],e:"🚲",c:3},{n:["space_invader"],e:"👾",c:1},{n:["beers"],e:"🍻",c:8},{n:["high_brightness"],e:"🔆",c:7},{n:["package"],e:"📦",c:5},{n:["scooter"],e:"🛴",c:3},{n:["white_flower"],e:"💮",c:0},{n:["clinking_glasses"],e:"🥂",c:8},{n:["robot_face"],e:"🤖",c:1},{n:["signal_strength"],e:"📶",c:7},{n:["flag-gi"],e:"🇬🇮",c:4},{n:["flag-gl"],e:"🇬🇱",c:4},{n:["motor_scooter"],e:"🛵",c:3},{n:["mailbox"],e:"📫",c:5},{n:["vibration_mode"],e:"📳",c:7},{n:["hankey","poop","shit"],e:"💩",c:1},{n:["rosette"],e:"🏵️",c:0},{n:["tumbler_glass"],e:"🥃",c:8},{n:["cup_with_straw"],e:"🥤",c:8},{n:["flag-gm"],e:"🇬🇲",c:4},{n:["mailbox_closed"],e:"📪",c:5},{n:["mobile_phone_off"],e:"📴",c:7},{n:["busstop"],e:"🚏",c:3},{n:["smiley_cat"],e:"😺",c:1},{n:["rose"],e:"🌹",c:0},{n:["motorway"],e:"🛣️",c:3},{n:["smile_cat"],e:"😸",c:1},{n:["flag-gn"],e:"🇬🇳",c:4},{n:["wilted_flower"],e:"🥀",c:0},{n:["mailbox_with_mail"],e:"📬",c:5},{n:["chopsticks"],e:"🥢",c:8},{n:["female_sign"],e:"♀️",c:7},{n:["mailbox_with_no_mail"],e:"📭",c:5},{n:["knife_fork_plate"],e:"🍽️",c:8},{n:["hibiscus"],e:"🌺",c:0},{n:["flag-gp"],e:"🇬🇵",c:4},{n:["railway_track"],e:"🛤️",c:3},{n:["male_sign"],e:"♂️",c:7},{n:["joy_cat"],e:"😹",c:1},{n:["fuelpump"],e:"⛽",c:3},{n:["sunflower"],e:"🌻",c:0},{n:["postbox"],e:"📮",c:5},{n:["flag-gq"],e:"🇬🇶",c:4},{n:["heart_eyes_cat"],e:"😻",c:1},{n:["fork_and_knife"],e:"🍴",c:8},{n:["medical_symbol","staff_of_aesculapius"],e:"⚕️",c:7},{n:["recycle"],e:"♻️",c:7},{n:["spoon"],e:"🥄",c:8},{n:["blossom"],e:"🌼",c:0},{n:["rotating_light"],e:"🚨",c:3},{n:["smirk_cat"],e:"😼",c:1},{n:["ballot_box_with_ballot"],e:"🗳️",c:5},{n:["flag-gr"],e:"🇬🇷",c:4},{n:["kissing_cat"],e:"😽",c:1},{n:["pencil2"],e:"✏️",c:5},{n:["traffic_light"],e:"🚥",c:3},{n:["fleur_de_lis"],e:"⚜️",c:7},{n:["tulip"],e:"🌷",c:0},{n:["hocho","knife"],e:"🔪",c:8},{n:["flag-gs"],e:"🇬🇸",c:4},{n:["seedling"],e:"🌱",c:0},{n:["amphora"],e:"🏺",c:8},{n:["scream_cat"],e:"🙀",c:1},{n:["vertical_traffic_light"],e:"🚦",c:3},{n:["black_nib"],e:"✒️",c:5},{n:["flag-gt"],e:"🇬🇹",c:4},{n:["trident"],e:"🔱",c:7},{n:["flag-gu"],e:"🇬🇺",c:4},{n:["name_badge"],e:"📛",c:7},{n:["construction"],e:"🚧",c:3},{n:["lower_left_fountain_pen"],e:"🖋️",c:5},{n:["evergreen_tree"],e:"🌲",c:0},{n:["crying_cat_face"],e:"😿",c:1},{n:["flag-gw"],e:"🇬🇼",c:4},{n:["lower_left_ballpoint_pen"],e:"🖊️",c:5},{n:["pouting_cat"],e:"😾",c:1},{n:["deciduous_tree"],e:"🌳",c:0},{n:["octagonal_sign"],e:"🛑",c:3},{n:["beginner"],e:"🔰",c:7},{n:["flag-gy"],e:"🇬🇾",c:4},{n:["lower_left_paintbrush"],e:"🖌️",c:5},{n:["o"],e:"⭕",c:7},{n:["palm_tree"],e:"🌴",c:0},{n:["anchor"],e:"⚓",c:3},{n:["see_no_evil"],e:"🙈",c:1},{n:["boat","sailboat"],e:"⛵",c:3},{n:["white_check_mark"],e:"✅",c:7},{n:["flag-hk"],e:"🇭🇰",c:4},{n:["lower_left_crayon"],e:"🖍️",c:5},{n:["hear_no_evil"],e:"🙉",c:1},{n:["cactus"],e:"🌵",c:0},{n:["ear_of_rice"],e:"🌾",c:0},{n:["speak_no_evil"],e:"🙊",c:1},{n:["flag-hm"],e:"🇭🇲",c:4},{n:["ballot_box_with_check"],e:"☑️",c:7},{n:["canoe"],e:"🛶",c:3},{n:["memo","pencil"],e:"📝",c:5},{n:["herb"],e:"🌿",c:0},{n:["flag-hn"],e:"🇭🇳",c:4},{n:["heavy_check_mark"],e:"✔️",c:7},{n:["briefcase"],e:"💼",c:5},{n:["speedboat"],e:"🚤",c:3},{n:["baby"],e:"👶",c:1,v:{"1F3FB":{k:"baby-1F3FB",n:"baby",e:"👶🏻"},"1F3FC":{k:"baby-1F3FC",n:"baby",e:"👶🏼"},"1F3FD":{k:"baby-1F3FD",n:"baby",e:"👶🏽"},"1F3FE":{k:"baby-1F3FE",n:"baby",e:"👶🏾"},"1F3FF":{k:"baby-1F3FF",n:"baby",e:"👶🏿"}}},{n:["heavy_multiplication_x"],e:"✖️",c:7},{n:["child"],e:"🧒",c:1,v:{"1F3FB":{k:"child-1F3FB",n:"child",e:"🧒🏻"},"1F3FC":{k:"child-1F3FC",n:"child",e:"🧒🏼"},"1F3FD":{k:"child-1F3FD",n:"child",e:"🧒🏽"},"1F3FE":{k:"child-1F3FE",n:"child",e:"🧒🏾"},"1F3FF":{k:"child-1F3FF",n:"child",e:"🧒🏿"}}},{n:["shamrock"],e:"☘️",c:0},{n:["passenger_ship"],e:"🛳️",c:3},{n:["flag-hr"],e:"🇭🇷",c:4},{n:["file_folder"],e:"📁",c:5},{n:["x"],e:"❌",c:7},{n:["four_leaf_clover"],e:"🍀",c:0},{n:["open_file_folder"],e:"📂",c:5},{n:["boy"],e:"👦",c:1,v:{"1F3FB":{k:"boy-1F3FB",n:"boy",e:"👦🏻"},"1F3FC":{k:"boy-1F3FC",n:"boy",e:"👦🏼"},"1F3FD":{k:"boy-1F3FD",n:"boy",e:"👦🏽"},"1F3FE":{k:"boy-1F3FE",n:"boy",e:"👦🏾"},"1F3FF":{k:"boy-1F3FF",n:"boy",e:"👦🏿"}}},{n:["ferry"],e:"⛴️",c:3},{n:["flag-ht"],e:"🇭🇹",c:4},{n:["girl"],e:"👧",c:1,v:{"1F3FB":{k:"girl-1F3FB",n:"girl",e:"👧🏻"},"1F3FC":{k:"girl-1F3FC",n:"girl",e:"👧🏼"},"1F3FD":{k:"girl-1F3FD",n:"girl",e:"👧🏽"},"1F3FE":{k:"girl-1F3FE",n:"girl",e:"👧🏾"},"1F3FF":{k:"girl-1F3FF",n:"girl",e:"👧🏿"}}},{n:["negative_squared_cross_mark"],e:"❎",c:7},{n:["flag-hu"],e:"🇭🇺",c:4},{n:["card_index_dividers"],e:"🗂️",c:5},{n:["maple_leaf"],e:"🍁",c:0},{n:["motor_boat"],e:"🛥️",c:3},{n:["flag-ic"],e:"🇮🇨",c:4},{n:["fallen_leaf"],e:"🍂",c:0},{n:["adult"],e:"🧑",c:1,v:{"1F3FB":{k:"adult-1F3FB",n:"adult",e:"🧑🏻"},"1F3FC":{k:"adult-1F3FC",n:"adult",e:"🧑🏼"},"1F3FD":{k:"adult-1F3FD",n:"adult",e:"🧑🏽"},"1F3FE":{k:"adult-1F3FE",n:"adult",e:"🧑🏾"},"1F3FF":{k:"adult-1F3FF",n:"adult",e:"🧑🏿"}}},{n:["ship"],e:"🚢",c:3},{n:["heavy_plus_sign"],e:"➕",c:7},{n:["date"],e:"📅",c:5},{n:["man"],e:"👨",c:1,v:{"1F3FB":{k:"man-1F3FB",n:"man",e:"👨🏻"},"1F3FC":{k:"man-1F3FC",n:"man",e:"👨🏼"},"1F3FD":{k:"man-1F3FD",n:"man",e:"👨🏽"},"1F3FE":{k:"man-1F3FE",n:"man",e:"👨🏾"},"1F3FF":{k:"man-1F3FF",n:"man",e:"👨🏿"}}},{n:["flag-id"],e:"🇮🇩",c:4},{n:["leaves"],e:"🍃",c:0},{n:["heavy_minus_sign"],e:"➖",c:7},{n:["calendar"],e:"📆",c:5},{n:["airplane"],e:"✈️",c:3},{n:["spiral_note_pad"],e:"🗒️",c:5},{n:["heavy_division_sign"],e:"➗",c:7},{n:["small_airplane"],e:"🛩️",c:3},{n:["woman"],e:"👩",c:1,v:{"1F3FB":{k:"woman-1F3FB",n:"woman",e:"👩🏻"},"1F3FC":{k:"woman-1F3FC",n:"woman",e:"👩🏼"},"1F3FD":{k:"woman-1F3FD",n:"woman",e:"👩🏽"},"1F3FE":{k:"woman-1F3FE",n:"woman",e:"👩🏾"},"1F3FF":{k:"woman-1F3FF",n:"woman",e:"👩🏿"}}},{n:["flag-ie"],e:"🇮🇪",c:4},{n:["curly_loop"],e:"➰",c:7},{n:["flag-il"],e:"🇮🇱",c:4},{n:["airplane_departure"],e:"🛫",c:3},{n:["spiral_calendar_pad"],e:"🗓️",c:5},{n:["older_adult"],e:"🧓",c:1,v:{"1F3FB":{k:"older_adult-1F3FB",n:"older_adult",e:"🧓🏻"},"1F3FC":{k:"older_adult-1F3FC",n:"older_adult",e:"🧓🏼"},"1F3FD":{k:"older_adult-1F3FD",n:"older_adult",e:"🧓🏽"},"1F3FE":{k:"older_adult-1F3FE",n:"older_adult",e:"🧓🏾"},"1F3FF":{k:"older_adult-1F3FF",n:"older_adult",e:"🧓🏿"}}},{n:["airplane_arriving"],e:"🛬",c:3},{n:["card_index"],e:"📇",c:5},{n:["loop"],e:"➿",c:7},{n:["older_man"],e:"👴",c:1,v:{"1F3FB":{k:"older_man-1F3FB",n:"older_man",e:"👴🏻"},"1F3FC":{k:"older_man-1F3FC",n:"older_man",e:"👴🏼"},"1F3FD":{k:"older_man-1F3FD",n:"older_man",e:"👴🏽"},"1F3FE":{k:"older_man-1F3FE",n:"older_man",e:"👴🏾"},"1F3FF":{k:"older_man-1F3FF",n:"older_man",e:"👴🏿"}}},{n:["flag-im"],e:"🇮🇲",c:4},{n:["flag-in"],e:"🇮🇳",c:4},{n:["chart_with_upwards_trend"],e:"📈",c:5},{n:["part_alternation_mark"],e:"〽️",c:7},{n:["seat"],e:"💺",c:3},{n:["older_woman"],e:"👵",c:1,v:{"1F3FB":{k:"older_woman-1F3FB",n:"older_woman",e:"👵🏻"},"1F3FC":{k:"older_woman-1F3FC",n:"older_woman",e:"👵🏼"},"1F3FD":{k:"older_woman-1F3FD",n:"older_woman",e:"👵🏽"},"1F3FE":{k:"older_woman-1F3FE",n:"older_woman",e:"👵🏾"},"1F3FF":{k:"older_woman-1F3FF",n:"older_woman",e:"👵🏿"}}},{n:["eight_spoked_asterisk"],e:"✳️",c:7},{n:["chart_with_downwards_trend"],e:"📉",c:5},{n:["flag-io"],e:"🇮🇴",c:4},{n:["male-doctor"],e:"👨⚕️",c:1,v:{"1F3FB":{k:"male-doctor-1F3FB",n:"male-doctor",e:"👨🏻⚕️"},"1F3FC":{k:"male-doctor-1F3FC",n:"male-doctor",e:"👨🏼⚕️"},"1F3FD":{k:"male-doctor-1F3FD",n:"male-doctor",e:"👨🏽⚕️"},"1F3FE":{k:"male-doctor-1F3FE",n:"male-doctor",e:"👨🏾⚕️"},"1F3FF":{k:"male-doctor-1F3FF",n:"male-doctor",e:"👨🏿⚕️"}}},{n:["helicopter"],e:"🚁",c:3},{n:["female-doctor"],e:"👩⚕️",c:1,v:{"1F3FB":{k:"female-doctor-1F3FB",n:"female-doctor",e:"👩🏻⚕️"},"1F3FC":{k:"female-doctor-1F3FC",n:"female-doctor",e:"👩🏼⚕️"},"1F3FD":{k:"female-doctor-1F3FD",n:"female-doctor",e:"👩🏽⚕️"},"1F3FE":{k:"female-doctor-1F3FE",n:"female-doctor",e:"👩🏾⚕️"},"1F3FF":{k:"female-doctor-1F3FF",n:"female-doctor",e:"👩🏿⚕️"}}},{n:["suspension_railway"],e:"🚟",c:3},{n:["bar_chart"],e:"📊",c:5},{n:["flag-iq"],e:"🇮🇶",c:4},{n:["eight_pointed_black_star"],e:"✴️",c:7},{n:["mountain_cableway"],e:"🚠",c:3},{n:["male-student"],e:"👨🎓",c:1,v:{"1F3FB":{k:"male-student-1F3FB",n:"male-student",e:"👨🏻🎓"},"1F3FC":{k:"male-student-1F3FC",n:"male-student",e:"👨🏼🎓"},"1F3FD":{k:"male-student-1F3FD",n:"male-student",e:"👨🏽🎓"},"1F3FE":{k:"male-student-1F3FE",n:"male-student",e:"👨🏾🎓"},"1F3FF":{k:"male-student-1F3FF",n:"male-student",e:"👨🏿🎓"}}},{n:["clipboard"],e:"📋",c:5},{n:["flag-ir"],e:"🇮🇷",c:4},{n:["sparkle"],e:"❇️",c:7},{n:["female-student"],e:"👩🎓",c:1,v:{"1F3FB":{k:"female-student-1F3FB",n:"female-student",e:"👩🏻🎓"},"1F3FC":{k:"female-student-1F3FC",n:"female-student",e:"👩🏼🎓"},"1F3FD":{k:"female-student-1F3FD",n:"female-student",e:"👩🏽🎓"},"1F3FE":{k:"female-student-1F3FE",n:"female-student",e:"👩🏾🎓"},"1F3FF":{k:"female-student-1F3FF",n:"female-student",e:"👩🏿🎓"}}},{n:["pushpin"],e:"📌",c:5},{n:["aerial_tramway"],e:"🚡",c:3},{n:["flag-is"],e:"🇮🇸",c:4},{n:["bangbang"],e:"‼️",c:7},{n:["interrobang"],e:"⁉️",c:7},{n:["satellite"],e:"🛰️",c:3},{n:["it","flag-it"],e:"🇮🇹",c:4},{n:["male-teacher"],e:"👨🏫",c:1,v:{"1F3FB":{k:"male-teacher-1F3FB",n:"male-teacher",e:"👨🏻🏫"},"1F3FC":{k:"male-teacher-1F3FC",n:"male-teacher",e:"👨🏼🏫"},"1F3FD":{k:"male-teacher-1F3FD",n:"male-teacher",e:"👨🏽🏫"},"1F3FE":{k:"male-teacher-1F3FE",n:"male-teacher",e:"👨🏾🏫"},"1F3FF":{k:"male-teacher-1F3FF",n:"male-teacher",e:"👨🏿🏫"}}},{n:["round_pushpin"],e:"📍",c:5},{n:["flag-je"],e:"🇯🇪",c:4},{n:["question"],e:"❓",c:7},{n:["rocket"],e:"🚀",c:3},{n:["female-teacher"],e:"👩🏫",c:1,v:{"1F3FB":{k:"female-teacher-1F3FB",n:"female-teacher",e:"👩🏻🏫"},"1F3FC":{k:"female-teacher-1F3FC",n:"female-teacher",e:"👩🏼🏫"},"1F3FD":{k:"female-teacher-1F3FD",n:"female-teacher",e:"👩🏽🏫"},"1F3FE":{k:"female-teacher-1F3FE",n:"female-teacher",e:"👩🏾🏫"},"1F3FF":{k:"female-teacher-1F3FF",n:"female-teacher",e:"👩🏿🏫"}}},{n:["paperclip"],e:"📎",c:5},{n:["linked_paperclips"],e:"🖇️",c:5},{n:["flying_saucer"],e:"🛸",c:3},{n:["male-judge"],e:"👨⚖️",c:1,v:{"1F3FB":{k:"male-judge-1F3FB",n:"male-judge",e:"👨🏻⚖️"},"1F3FC":{k:"male-judge-1F3FC",n:"male-judge",e:"👨🏼⚖️"},"1F3FD":{k:"male-judge-1F3FD",n:"male-judge",e:"👨🏽⚖️"},"1F3FE":{k:"male-judge-1F3FE",n:"male-judge",e:"👨🏾⚖️"},"1F3FF":{k:"male-judge-1F3FF",n:"male-judge",e:"👨🏿⚖️"}}},{n:["grey_question"],e:"❔",c:7},{n:["flag-jm"],e:"🇯🇲",c:4},{n:["bellhop_bell"],e:"🛎️",c:3},{n:["straight_ruler"],e:"📏",c:5},{n:["flag-jo"],e:"🇯🇴",c:4},{n:["female-judge"],e:"👩⚖️",c:1,v:{"1F3FB":{k:"female-judge-1F3FB",n:"female-judge",e:"👩🏻⚖️"},"1F3FC":{k:"female-judge-1F3FC",n:"female-judge",e:"👩🏼⚖️"},"1F3FD":{k:"female-judge-1F3FD",n:"female-judge",e:"👩🏽⚖️"},"1F3FE":{k:"female-judge-1F3FE",n:"female-judge",e:"👩🏾⚖️"},"1F3FF":{k:"female-judge-1F3FF",n:"female-judge",e:"👩🏿⚖️"}}},{n:["grey_exclamation"],e:"❕",c:7},{n:["door"],e:"🚪",c:3},{n:["male-farmer"],e:"👨🌾",c:1,v:{"1F3FB":{k:"male-farmer-1F3FB",n:"male-farmer",e:"👨🏻🌾"},"1F3FC":{k:"male-farmer-1F3FC",n:"male-farmer",e:"👨🏼🌾"},"1F3FD":{k:"male-farmer-1F3FD",n:"male-farmer",e:"👨🏽🌾"},"1F3FE":{k:"male-farmer-1F3FE",n:"male-farmer",e:"👨🏾🌾"},"1F3FF":{k:"male-farmer-1F3FF",n:"male-farmer",e:"👨🏿🌾"}}},{n:["jp","flag-jp"],e:"🇯🇵",c:4},{n:["triangular_ruler"],e:"📐",c:5},{n:["exclamation","heavy_exclamation_mark"],e:"❗",c:7},{n:["bed"],e:"🛏️",c:3},{n:["female-farmer"],e:"👩🌾",c:1,v:{"1F3FB":{k:"female-farmer-1F3FB",n:"female-farmer",e:"👩🏻🌾"},"1F3FC":{k:"female-farmer-1F3FC",n:"female-farmer",e:"👩🏼🌾"},"1F3FD":{k:"female-farmer-1F3FD",n:"female-farmer",e:"👩🏽🌾"},"1F3FE":{k:"female-farmer-1F3FE",n:"female-farmer",e:"👩🏾🌾"},"1F3FF":{k:"female-farmer-1F3FF",n:"female-farmer",e:"👩🏿🌾"}}},{n:["scissors"],e:"✂️",c:5},{n:["wavy_dash"],e:"〰️",c:7},{n:["flag-ke"],e:"🇰🇪",c:4},{n:["flag-kg"],e:"🇰🇬",c:4},{n:["couch_and_lamp"],e:"🛋️",c:3},{n:["male-cook"],e:"👨🍳",c:1,v:{"1F3FB":{k:"male-cook-1F3FB",n:"male-cook",e:"👨🏻🍳"},"1F3FC":{k:"male-cook-1F3FC",n:"male-cook",e:"👨🏼🍳"},"1F3FD":{k:"male-cook-1F3FD",n:"male-cook",e:"👨🏽🍳"},"1F3FE":{k:"male-cook-1F3FE",n:"male-cook",e:"👨🏾🍳"},"1F3FF":{k:"male-cook-1F3FF",n:"male-cook",e:"👨🏿🍳"}}},{n:["card_file_box"],e:"🗃️",c:5},{n:["copyright"],e:"©️",c:7},{n:["file_cabinet"],e:"🗄️",c:5},{n:["registered"],e:"®️",c:7},{n:["flag-kh"],e:"🇰🇭",c:4},{n:["female-cook"],e:"👩🍳",c:1,v:{"1F3FB":{k:"female-cook-1F3FB",n:"female-cook",e:"👩🏻🍳"},"1F3FC":{k:"female-cook-1F3FC",n:"female-cook",e:"👩🏼🍳"},"1F3FD":{k:"female-cook-1F3FD",n:"female-cook",e:"👩🏽🍳"},"1F3FE":{k:"female-cook-1F3FE",n:"female-cook",e:"👩🏾🍳"},"1F3FF":{k:"female-cook-1F3FF",n:"female-cook",e:"👩🏿🍳"}}},{n:["toilet"],e:"🚽",c:3},{n:["wastebasket"],e:"🗑️",c:5},{n:["flag-ki"],e:"🇰🇮",c:4},{n:["shower"],e:"🚿",c:3},{n:["male-mechanic"],e:"👨🔧",c:1,v:{"1F3FB":{k:"male-mechanic-1F3FB",n:"male-mechanic",e:"👨🏻🔧"},"1F3FC":{k:"male-mechanic-1F3FC",n:"male-mechanic",e:"👨🏼🔧"},"1F3FD":{k:"male-mechanic-1F3FD",n:"male-mechanic",e:"👨🏽🔧"},"1F3FE":{k:"male-mechanic-1F3FE",n:"male-mechanic",e:"👨🏾🔧"},"1F3FF":{k:"male-mechanic-1F3FF",n:"male-mechanic",e:"👨🏿🔧"}}},{n:["tm"],e:"™️",c:7},{n:["hash"],e:"#️⃣",c:7},{n:["flag-km"],e:"🇰🇲",c:4},{n:["bathtub"],e:"🛁",c:3},{n:["female-mechanic"],e:"👩🔧",c:1,v:{"1F3FB":{k:"female-mechanic-1F3FB",n:"female-mechanic",e:"👩🏻🔧"},"1F3FC":{k:"female-mechanic-1F3FC",n:"female-mechanic",e:"👩🏼🔧"},"1F3FD":{k:"female-mechanic-1F3FD",n:"female-mechanic",e:"👩🏽🔧"},"1F3FE":{k:"female-mechanic-1F3FE",n:"female-mechanic",e:"👩🏾🔧"},"1F3FF":{k:"female-mechanic-1F3FF",n:"female-mechanic",e:"👩🏿🔧"}}},{n:["lock"],e:"🔒",c:5},{n:["male-factory-worker"],e:"👨🏭",c:1,v:{"1F3FB":{k:"male-factory-worker-1F3FB",n:"male-factory-worker",e:"👨🏻🏭"},"1F3FC":{k:"male-factory-worker-1F3FC",n:"male-factory-worker",e:"👨🏼🏭"},"1F3FD":{k:"male-factory-worker-1F3FD",n:"male-factory-worker",e:"👨🏽🏭"},"1F3FE":{k:"male-factory-worker-1F3FE",n:"male-factory-worker",e:"👨🏾🏭"},"1F3FF":{k:"male-factory-worker-1F3FF",n:"male-factory-worker",e:"👨🏿🏭"}}},{n:["flag-kn"],e:"🇰🇳",c:4},{n:["hourglass"],e:"⌛",c:3},{n:["keycap_star"],e:"*️⃣",c:7},{n:["unlock"],e:"🔓",c:5},{n:["flag-kp"],e:"🇰🇵",c:4},{n:["female-factory-worker"],e:"👩🏭",c:1,v:{"1F3FB":{k:"female-factory-worker-1F3FB",n:"female-factory-worker",e:"👩🏻🏭"},"1F3FC":{k:"female-factory-worker-1F3FC",n:"female-factory-worker",e:"👩🏼🏭"},"1F3FD":{k:"female-factory-worker-1F3FD",n:"female-factory-worker",e:"👩🏽🏭"},"1F3FE":{k:"female-factory-worker-1F3FE",n:"female-factory-worker",e:"👩🏾🏭"},"1F3FF":{k:"female-factory-worker-1F3FF",n:"female-factory-worker",e:"👩🏿🏭"}}},{n:["zero"],e:"0️⃣",c:7},{n:["lock_with_ink_pen"],e:"🔏",c:5},{n:["hourglass_flowing_sand"],e:"⏳",c:3},{n:["one"],e:"1️⃣",c:7},{n:["kr","flag-kr"],e:"🇰🇷",c:4},{n:["watch"],e:"⌚",c:3},{n:["male-office-worker"],e:"👨💼",c:1,v:{"1F3FB":{k:"male-office-worker-1F3FB",n:"male-office-worker",e:"👨🏻💼"},"1F3FC":{k:"male-office-worker-1F3FC",n:"male-office-worker",e:"👨🏼💼"},"1F3FD":{k:"male-office-worker-1F3FD",n:"male-office-worker",e:"👨🏽💼"},"1F3FE":{k:"male-office-worker-1F3FE",n:"male-office-worker",e:"👨🏾💼"},"1F3FF":{k:"male-office-worker-1F3FF",n:"male-office-worker",e:"👨🏿💼"}}},{n:["closed_lock_with_key"],e:"🔐",c:5},{n:["female-office-worker"],e:"👩💼",c:1,v:{"1F3FB":{k:"female-office-worker-1F3FB",n:"female-office-worker",e:"👩🏻💼"},"1F3FC":{k:"female-office-worker-1F3FC",n:"female-office-worker",e:"👩🏼💼"},"1F3FD":{k:"female-office-worker-1F3FD",n:"female-office-worker",e:"👩🏽💼"},"1F3FE":{k:"female-office-worker-1F3FE",n:"female-office-worker",e:"👩🏾💼"},"1F3FF":{k:"female-office-worker-1F3FF",n:"female-office-worker",e:"👩🏿💼"}}},{n:["two"],e:"2️⃣",c:7},{n:["alarm_clock"],e:"⏰",c:3},{n:["key"],e:"🔑",c:5},{n:["flag-kw"],e:"🇰🇼",c:4},{n:["stopwatch"],e:"⏱️",c:3},{n:["male-scientist"],e:"👨🔬",c:1,v:{"1F3FB":{k:"male-scientist-1F3FB",n:"male-scientist",e:"👨🏻🔬"},"1F3FC":{k:"male-scientist-1F3FC",n:"male-scientist",e:"👨🏼🔬"},"1F3FD":{k:"male-scientist-1F3FD",n:"male-scientist",e:"👨🏽🔬"},"1F3FE":{k:"male-scientist-1F3FE",n:"male-scientist",e:"👨🏾🔬"},"1F3FF":{k:"male-scientist-1F3FF",n:"male-scientist",e:"👨🏿🔬"}}},{n:["three"],e:"3️⃣",c:7},{n:["flag-ky"],e:"🇰🇾",c:4},{n:["old_key"],e:"🗝️",c:5},{n:["flag-kz"],e:"🇰🇿",c:4},{n:["hammer"],e:"🔨",c:5},{n:["female-scientist"],e:"👩🔬",c:1,v:{"1F3FB":{k:"female-scientist-1F3FB",n:"female-scientist",e:"👩🏻🔬"},"1F3FC":{k:"female-scientist-1F3FC",n:"female-scientist",e:"👩🏼🔬"},"1F3FD":{k:"female-scientist-1F3FD",n:"female-scientist",e:"👩🏽🔬"},"1F3FE":{k:"female-scientist-1F3FE",n:"female-scientist",e:"👩🏾🔬"},"1F3FF":{k:"female-scientist-1F3FF",n:"female-scientist",e:"👩🏿🔬"}}},{n:["timer_clock"],e:"⏲️",c:3},{n:["four"],e:"4️⃣",c:7},{n:["male-technologist"],e:"👨💻",c:1,v:{"1F3FB":{k:"male-technologist-1F3FB",n:"male-technologist",e:"👨🏻💻"},"1F3FC":{k:"male-technologist-1F3FC",n:"male-technologist",e:"👨🏼💻"},"1F3FD":{k:"male-technologist-1F3FD",n:"male-technologist",e:"👨🏽💻"},"1F3FE":{k:"male-technologist-1F3FE",n:"male-technologist",e:"👨🏾💻"},"1F3FF":{k:"male-technologist-1F3FF",n:"male-technologist",e:"👨🏿💻"}}},{n:["mantelpiece_clock"],e:"🕰️",c:3},{n:["five"],e:"5️⃣",c:7},{n:["flag-la"],e:"🇱🇦",c:4},{n:["pick"],e:"⛏️",c:5},{n:["flag-lb"],e:"🇱🇧",c:4},{n:["clock12"],e:"🕛",c:3},{n:["hammer_and_pick"],e:"⚒️",c:5},{n:["six"],e:"6️⃣",c:7},{n:["female-technologist"],e:"👩💻",c:1,v:{"1F3FB":{k:"female-technologist-1F3FB",n:"female-technologist",e:"👩🏻💻"},"1F3FC":{k:"female-technologist-1F3FC",n:"female-technologist",e:"👩🏼💻"},"1F3FD":{k:"female-technologist-1F3FD",n:"female-technologist",e:"👩🏽💻"},"1F3FE":{k:"female-technologist-1F3FE",n:"female-technologist",e:"👩🏾💻"},"1F3FF":{k:"female-technologist-1F3FF",n:"female-technologist",e:"👩🏿💻"}}},{n:["hammer_and_wrench"],e:"🛠️",c:5},{n:["flag-lc"],e:"🇱🇨",c:4},{n:["clock1230"],e:"🕧",c:3},{n:["seven"],e:"7️⃣",c:7},{n:["male-singer"],e:"👨🎤",c:1,v:{"1F3FB":{k:"male-singer-1F3FB",n:"male-singer",e:"👨🏻🎤"},"1F3FC":{k:"male-singer-1F3FC",n:"male-singer",e:"👨🏼🎤"},"1F3FD":{k:"male-singer-1F3FD",n:"male-singer",e:"👨🏽🎤"},"1F3FE":{k:"male-singer-1F3FE",n:"male-singer",e:"👨🏾🎤"},"1F3FF":{k:"male-singer-1F3FF",n:"male-singer",e:"👨🏿🎤"}}},{n:["eight"],e:"8️⃣",c:7},{n:["flag-li"],e:"🇱🇮",c:4},{n:["dagger_knife"],e:"🗡️",c:5},{n:["clock1"],e:"🕐",c:3},{n:["female-singer"],e:"👩🎤",c:1,v:{"1F3FB":{k:"female-singer-1F3FB",n:"female-singer",e:"👩🏻🎤"},"1F3FC":{k:"female-singer-1F3FC",n:"female-singer",e:"👩🏼🎤"},"1F3FD":{k:"female-singer-1F3FD",n:"female-singer",e:"👩🏽🎤"},"1F3FE":{k:"female-singer-1F3FE",n:"female-singer",e:"👩🏾🎤"},"1F3FF":{k:"female-singer-1F3FF",n:"female-singer",e:"👩🏿🎤"}}},{n:["male-artist"],e:"👨🎨",c:1,v:{"1F3FB":{k:"male-artist-1F3FB",n:"male-artist",e:"👨🏻🎨"},"1F3FC":{k:"male-artist-1F3FC",n:"male-artist",e:"👨🏼🎨"},"1F3FD":{k:"male-artist-1F3FD",n:"male-artist",e:"👨🏽🎨"},"1F3FE":{k:"male-artist-1F3FE",n:"male-artist",e:"👨🏾🎨"},"1F3FF":{k:"male-artist-1F3FF",n:"male-artist",e:"👨🏿🎨"}}},{n:["crossed_swords"],e:"⚔️",c:5},{n:["nine"],e:"9️⃣",c:7},{n:["flag-lk"],e:"🇱🇰",c:4},{n:["clock130"],e:"🕜",c:3},{n:["clock2"],e:"🕑",c:3},{n:["gun"],e:"🔫",c:5},{n:["keycap_ten"],e:"🔟",c:7},{n:["female-artist"],e:"👩🎨",c:1,v:{"1F3FB":{k:"female-artist-1F3FB",n:"female-artist",e:"👩🏻🎨"},"1F3FC":{k:"female-artist-1F3FC",n:"female-artist",e:"👩🏼🎨"},"1F3FD":{k:"female-artist-1F3FD",n:"female-artist",e:"👩🏽🎨"},"1F3FE":{k:"female-artist-1F3FE",n:"female-artist",e:"👩🏾🎨"},"1F3FF":{k:"female-artist-1F3FF",n:"female-artist",e:"👩🏿🎨"}}},{n:["flag-lr"],e:"🇱🇷",c:4},{n:["clock230"],e:"🕝",c:3},{n:["100"],e:"💯",c:7},{n:["bow_and_arrow"],e:"🏹",c:5},{n:["male-pilot"],e:"👨✈️",c:1,v:{"1F3FB":{k:"male-pilot-1F3FB",n:"male-pilot",e:"👨🏻✈️"},"1F3FC":{k:"male-pilot-1F3FC",n:"male-pilot",e:"👨🏼✈️"},"1F3FD":{k:"male-pilot-1F3FD",n:"male-pilot",e:"👨🏽✈️"},"1F3FE":{k:"male-pilot-1F3FE",n:"male-pilot",e:"👨🏾✈️"},"1F3FF":{k:"male-pilot-1F3FF",n:"male-pilot",e:"👨🏿✈️"}}},{n:["flag-ls"],e:"🇱🇸",c:4},{n:["flag-lt"],e:"🇱🇹",c:4},{n:["capital_abcd"],e:"🔠",c:7},{n:["female-pilot"],e:"👩✈️",c:1,v:{"1F3FB":{k:"female-pilot-1F3FB",n:"female-pilot",e:"👩🏻✈️"},"1F3FC":{k:"female-pilot-1F3FC",n:"female-pilot",e:"👩🏼✈️"},"1F3FD":{k:"female-pilot-1F3FD",n:"female-pilot",e:"👩🏽✈️"},"1F3FE":{k:"female-pilot-1F3FE",n:"female-pilot",e:"👩🏾✈️"},"1F3FF":{k:"female-pilot-1F3FF",n:"female-pilot",e:"👩🏿✈️"}}},{n:["clock3"],e:"🕒",c:3},{n:["shield"],e:"🛡️",c:5},{n:["male-astronaut"],e:"👨🚀",c:1,v:{"1F3FB":{k:"male-astronaut-1F3FB",n:"male-astronaut",e:"👨🏻🚀"},"1F3FC":{k:"male-astronaut-1F3FC",n:"male-astronaut",e:"👨🏼🚀"},"1F3FD":{k:"male-astronaut-1F3FD",n:"male-astronaut",e:"👨🏽🚀"},"1F3FE":{k:"male-astronaut-1F3FE",n:"male-astronaut",e:"👨🏾🚀"},"1F3FF":{k:"male-astronaut-1F3FF",n:"male-astronaut",e:"👨🏿🚀"}}},{n:["abcd"],e:"🔡",c:7},{n:["clock330"],e:"🕞",c:3},{n:["flag-lu"],e:"🇱🇺",c:4},{n:["wrench"],e:"🔧",c:5},{n:["nut_and_bolt"],e:"🔩",c:5},{n:["1234"],e:"🔢",c:7},{n:["clock4"],e:"🕓",c:3},{n:["female-astronaut"],e:"👩🚀",c:1,v:{"1F3FB":{k:"female-astronaut-1F3FB",n:"female-astronaut",e:"👩🏻🚀"},"1F3FC":{k:"female-astronaut-1F3FC",n:"female-astronaut",e:"👩🏼🚀"},"1F3FD":{k:"female-astronaut-1F3FD",n:"female-astronaut",e:"👩🏽🚀"},"1F3FE":{k:"female-astronaut-1F3FE",n:"female-astronaut",e:"👩🏾🚀"},"1F3FF":{k:"female-astronaut-1F3FF",n:"female-astronaut",e:"👩🏿🚀"}}},{n:["flag-lv"],e:"🇱🇻",c:4},{n:["gear"],e:"⚙️",c:5},{n:["male-firefighter"],e:"👨🚒",c:1,v:{"1F3FB":{k:"male-firefighter-1F3FB",n:"male-firefighter",e:"👨🏻🚒"},"1F3FC":{k:"male-firefighter-1F3FC",n:"male-firefighter",e:"👨🏼🚒"},"1F3FD":{k:"male-firefighter-1F3FD",n:"male-firefighter",e:"👨🏽🚒"},"1F3FE":{k:"male-firefighter-1F3FE",n:"male-firefighter",e:"👨🏾🚒"},"1F3FF":{k:"male-firefighter-1F3FF",n:"male-firefighter",e:"👨🏿🚒"}}},{n:["flag-ly"],e:"🇱🇾",c:4},{n:["symbols"],e:"🔣",c:7},{n:["clock430"],e:"🕟",c:3},{n:["flag-ma"],e:"🇲🇦",c:4},{n:["compression"],e:"🗜️",c:5},{n:["female-firefighter"],e:"👩🚒",c:1,v:{"1F3FB":{k:"female-firefighter-1F3FB",n:"female-firefighter",e:"👩🏻🚒"},"1F3FC":{k:"female-firefighter-1F3FC",n:"female-firefighter",e:"👩🏼🚒"},"1F3FD":{k:"female-firefighter-1F3FD",n:"female-firefighter",e:"👩🏽🚒"},"1F3FE":{k:"female-firefighter-1F3FE",n:"female-firefighter",e:"👩🏾🚒"},"1F3FF":{k:"female-firefighter-1F3FF",n:"female-firefighter",e:"👩🏿🚒"}}},{n:["abc"],e:"🔤",c:7},{n:["clock5"],e:"🕔",c:3},{n:["clock530"],e:"🕠",c:3},{n:["a"],e:"🅰️",c:7},{n:["alembic"],e:"⚗️",c:5},{n:["flag-mc"],e:"🇲🇨",c:4},{n:["cop"],e:"👮",c:1,v:{"1F3FB":{k:"cop-1F3FB",n:"cop",e:"👮🏻"},"1F3FC":{k:"cop-1F3FC",n:"cop",e:"👮🏼"},"1F3FD":{k:"cop-1F3FD",n:"cop",e:"👮🏽"},"1F3FE":{k:"cop-1F3FE",n:"cop",e:"👮🏾"},"1F3FF":{k:"cop-1F3FF",n:"cop",e:"👮🏿"}}},{n:["scales"],e:"⚖️",c:5},{n:["clock6"],e:"🕕",c:3},{n:["flag-md"],e:"🇲🇩",c:4},{n:["ab"],e:"🆎",c:7},{n:["male-police-officer"],e:"👮♂️",c:1,v:{"1F3FB":{k:"male-police-officer-1F3FB",n:"male-police-officer",e:"👮🏻♂️"},"1F3FC":{k:"male-police-officer-1F3FC",n:"male-police-officer",e:"👮🏼♂️"},"1F3FD":{k:"male-police-officer-1F3FD",n:"male-police-officer",e:"👮🏽♂️"},"1F3FE":{k:"male-police-officer-1F3FE",n:"male-police-officer",e:"👮🏾♂️"},"1F3FF":{k:"male-police-officer-1F3FF",n:"male-police-officer",e:"👮🏿♂️"}}},{n:["link"],e:"🔗",c:5},{n:["flag-me"],e:"🇲🇪",c:4},{n:["clock630"],e:"🕡",c:3},{n:["b"],e:"🅱️",c:7},{n:["female-police-officer"],e:"👮♀️",c:1,v:{"1F3FB":{k:"female-police-officer-1F3FB",n:"female-police-officer",e:"👮🏻♀️"},"1F3FC":{k:"female-police-officer-1F3FC",n:"female-police-officer",e:"👮🏼♀️"},"1F3FD":{k:"female-police-officer-1F3FD",n:"female-police-officer",e:"👮🏽♀️"},"1F3FE":{k:"female-police-officer-1F3FE",n:"female-police-officer",e:"👮🏾♀️"},"1F3FF":{k:"female-police-officer-1F3FF",n:"female-police-officer",e:"👮🏿♀️"}}},{n:["clock7"],e:"🕖",c:3},{n:["cl"],e:"🆑",c:7},{n:["sleuth_or_spy"],e:"🕵️",c:1,v:{"1F3FB":{k:"sleuth_or_spy-1F3FB",n:"sleuth_or_spy",e:"🕵🏻"},"1F3FC":{k:"sleuth_or_spy-1F3FC",n:"sleuth_or_spy",e:"🕵🏼"},"1F3FD":{k:"sleuth_or_spy-1F3FD",n:"sleuth_or_spy",e:"🕵🏽"},"1F3FE":{k:"sleuth_or_spy-1F3FE",n:"sleuth_or_spy",e:"🕵🏾"},"1F3FF":{k:"sleuth_or_spy-1F3FF",n:"sleuth_or_spy",e:"🕵🏿"}}},{n:["flag-mf"],e:"🇲🇫",c:4},{n:["chains"],e:"⛓️",c:5},{n:["syringe"],e:"💉",c:5},{n:["male-detective"],e:"🕵️♂️",c:1,v:{"1F3FB":{k:"male-detective-1F3FB",n:"male-detective",e:"🕵🏻♂️"},"1F3FC":{k:"male-detective-1F3FC",n:"male-detective",e:"🕵🏼♂️"},"1F3FD":{k:"male-detective-1F3FD",n:"male-detective",e:"🕵🏽♂️"},"1F3FE":{k:"male-detective-1F3FE",n:"male-detective",e:"🕵🏾♂️"},"1F3FF":{k:"male-detective-1F3FF",n:"male-detective",e:"🕵🏿♂️"}}},{n:["cool"],e:"🆒",c:7},{n:["clock730"],e:"🕢",c:3},{n:["flag-mg"],e:"🇲🇬",c:4},{n:["free"],e:"🆓",c:7},{n:["flag-mh"],e:"🇲🇭",c:4},{n:["clock8"],e:"🕗",c:3},{n:["pill"],e:"💊",c:5},{n:["female-detective"],e:"🕵️♀️",c:1,v:{"1F3FB":{k:"female-detective-1F3FB",n:"female-detective",e:"🕵🏻♀️"},"1F3FC":{k:"female-detective-1F3FC",n:"female-detective",e:"🕵🏼♀️"},"1F3FD":{k:"female-detective-1F3FD",n:"female-detective",e:"🕵🏽♀️"},"1F3FE":{k:"female-detective-1F3FE",n:"female-detective",e:"🕵🏾♀️"},"1F3FF":{k:"female-detective-1F3FF",n:"female-detective",e:"🕵🏿♀️"}}},{n:["clock830"],e:"🕣",c:3},{n:["guardsman"],e:"💂",c:1,v:{"1F3FB":{k:"guardsman-1F3FB",n:"guardsman",e:"💂🏻"},"1F3FC":{k:"guardsman-1F3FC",n:"guardsman",e:"💂🏼"},"1F3FD":{k:"guardsman-1F3FD",n:"guardsman",e:"💂🏽"},"1F3FE":{k:"guardsman-1F3FE",n:"guardsman",e:"💂🏾"},"1F3FF":{k:"guardsman-1F3FF",n:"guardsman",e:"💂🏿"}}},{n:["information_source"],e:"ℹ️",c:7},{n:["flag-mk"],e:"🇲🇰",c:4},{n:["smoking"],e:"🚬",c:5},{n:["id"],e:"🆔",c:7},{n:["clock9"],e:"🕘",c:3},{n:["flag-ml"],e:"🇲🇱",c:4},{n:["coffin"],e:"⚰️",c:5},{n:["male-guard"],e:"💂♂️",c:1,v:{"1F3FB":{k:"male-guard-1F3FB",n:"male-guard",e:"💂🏻♂️"},"1F3FC":{k:"male-guard-1F3FC",n:"male-guard",e:"💂🏼♂️"},"1F3FD":{k:"male-guard-1F3FD",n:"male-guard",e:"💂🏽♂️"},"1F3FE":{k:"male-guard-1F3FE",n:"male-guard",e:"💂🏾♂️"},"1F3FF":{k:"male-guard-1F3FF",n:"male-guard",e:"💂🏿♂️"}}},{n:["m"],e:"Ⓜ️",c:7},{n:["funeral_urn"],e:"⚱️",c:5},{n:["female-guard"],e:"💂♀️",c:1,v:{"1F3FB":{k:"female-guard-1F3FB",n:"female-guard",e:"💂🏻♀️"},"1F3FC":{k:"female-guard-1F3FC",n:"female-guard",e:"💂🏼♀️"},"1F3FD":{k:"female-guard-1F3FD",n:"female-guard",e:"💂🏽♀️"},"1F3FE":{k:"female-guard-1F3FE",n:"female-guard",e:"💂🏾♀️"},"1F3FF":{k:"female-guard-1F3FF",n:"female-guard",e:"💂🏿♀️"}}},{n:["flag-mm"],e:"🇲🇲",c:4},{n:["clock930"],e:"🕤",c:3},{n:["moyai"],e:"🗿",c:5},{n:["new"],e:"🆕",c:7},{n:["flag-mn"],e:"🇲🇳",c:4},{n:["construction_worker"],e:"👷",c:1,v:{"1F3FB":{k:"construction_worker-1F3FB",n:"construction_worker",e:"👷🏻"},"1F3FC":{k:"construction_worker-1F3FC",n:"construction_worker",e:"👷🏼"},"1F3FD":{k:"construction_worker-1F3FD",n:"construction_worker",e:"👷🏽"},"1F3FE":{k:"construction_worker-1F3FE",n:"construction_worker",e:"👷🏾"},"1F3FF":{k:"construction_worker-1F3FF",n:"construction_worker",e:"👷🏿"}}},{n:["clock10"],e:"🕙",c:3},{n:["clock1030"],e:"🕥",c:3},{n:["ng"],e:"🆖",c:7},{n:["male-construction-worker"],e:"👷♂️",c:1,v:{"1F3FB":{k:"male-construction-worker-1F3FB",n:"male-construction-worker",e:"👷🏻♂️"},"1F3FC":{k:"male-construction-worker-1F3FC",n:"male-construction-worker",e:"👷🏼♂️"},"1F3FD":{k:"male-construction-worker-1F3FD",n:"male-construction-worker",e:"👷🏽♂️"},"1F3FE":{k:"male-construction-worker-1F3FE",n:"male-construction-worker",e:"👷🏾♂️"},"1F3FF":{k:"male-construction-worker-1F3FF",n:"male-construction-worker",e:"👷🏿♂️"}}},{n:["flag-mo"],e:"🇲🇴",c:4},{n:["oil_drum"],e:"🛢️",c:5},{n:["o2"],e:"🅾️",c:7},{n:["female-construction-worker"],e:"👷♀️",c:1,v:{"1F3FB":{k:"female-construction-worker-1F3FB",n:"female-construction-worker",e:"👷🏻♀️"},"1F3FC":{k:"female-construction-worker-1F3FC",n:"female-construction-worker",e:"👷🏼♀️"},"1F3FD":{k:"female-construction-worker-1F3FD",n:"female-construction-worker",e:"👷🏽♀️"},"1F3FE":{k:"female-construction-worker-1F3FE",n:"female-construction-worker",e:"👷🏾♀️"},"1F3FF":{k:"female-construction-worker-1F3FF",n:"female-construction-worker",e:"👷🏿♀️"}}},{n:["clock11"],e:"🕚",c:3},{n:["crystal_ball"],e:"🔮",c:5},{n:["flag-mp"],e:"🇲🇵",c:4},{n:["flag-mq"],e:"🇲🇶",c:4},{n:["prince"],e:"🤴",c:1,v:{"1F3FB":{k:"prince-1F3FB",n:"prince",e:"🤴🏻"},"1F3FC":{k:"prince-1F3FC",n:"prince",e:"🤴🏼"},"1F3FD":{k:"prince-1F3FD",n:"prince",e:"🤴🏽"},"1F3FE":{k:"prince-1F3FE",n:"prince",e:"🤴🏾"},"1F3FF":{k:"prince-1F3FF",n:"prince",e:"🤴🏿"}}},{n:["ok"],e:"🆗",c:7},{n:["clock1130"],e:"🕦",c:3},{n:["shopping_trolley"],e:"🛒",c:5},{n:["flag-mr"],e:"🇲🇷",c:4},{n:["princess"],e:"👸",c:1,v:{"1F3FB":{k:"princess-1F3FB",n:"princess",e:"👸🏻"},"1F3FC":{k:"princess-1F3FC",n:"princess",e:"👸🏼"},"1F3FD":{k:"princess-1F3FD",n:"princess",e:"👸🏽"},"1F3FE":{k:"princess-1F3FE",n:"princess",e:"👸🏾"},"1F3FF":{k:"princess-1F3FF",n:"princess",e:"👸🏿"}}},{n:["new_moon"],e:"🌑",c:3},{n:["parking"],e:"🅿️",c:7},{n:["sos"],e:"🆘",c:7},{n:["man_with_turban"],e:"👳",c:1,v:{"1F3FB":{k:"man_with_turban-1F3FB",n:"man_with_turban",e:"👳🏻"},"1F3FC":{k:"man_with_turban-1F3FC",n:"man_with_turban",e:"👳🏼"},"1F3FD":{k:"man_with_turban-1F3FD",n:"man_with_turban",e:"👳🏽"},"1F3FE":{k:"man_with_turban-1F3FE",n:"man_with_turban",e:"👳🏾"},"1F3FF":{k:"man_with_turban-1F3FF",n:"man_with_turban",e:"👳🏿"}}},{n:["flag-ms"],e:"🇲🇸",c:4},{n:["waxing_crescent_moon"],e:"🌒",c:3},{n:["up"],e:"🆙",c:7},{n:["first_quarter_moon"],e:"🌓",c:3},{n:["flag-mt"],e:"🇲🇹",c:4},{n:["man-wearing-turban"],e:"👳♂️",c:1,v:{"1F3FB":{k:"man-wearing-turban-1F3FB",n:"man-wearing-turban",e:"👳🏻♂️"},"1F3FC":{k:"man-wearing-turban-1F3FC",n:"man-wearing-turban",e:"👳🏼♂️"},"1F3FD":{k:"man-wearing-turban-1F3FD",n:"man-wearing-turban",e:"👳🏽♂️"},"1F3FE":{k:"man-wearing-turban-1F3FE",n:"man-wearing-turban",e:"👳🏾♂️"},"1F3FF":{k:"man-wearing-turban-1F3FF",n:"man-wearing-turban",e:"👳🏿♂️"}}},{n:["moon","waxing_gibbous_moon"],e:"🌔",c:3},{n:["woman-wearing-turban"],e:"👳♀️",c:1,v:{"1F3FB":{k:"woman-wearing-turban-1F3FB",n:"woman-wearing-turban",e:"👳🏻♀️"},"1F3FC":{k:"woman-wearing-turban-1F3FC",n:"woman-wearing-turban",e:"👳🏼♀️"},"1F3FD":{k:"woman-wearing-turban-1F3FD",n:"woman-wearing-turban",e:"👳🏽♀️"},"1F3FE":{k:"woman-wearing-turban-1F3FE",n:"woman-wearing-turban",e:"👳🏾♀️"},"1F3FF":{k:"woman-wearing-turban-1F3FF",n:"woman-wearing-turban",e:"👳🏿♀️"}}},{n:["vs"],e:"🆚",c:7},{n:["flag-mu"],e:"🇲🇺",c:4},{n:["man_with_gua_pi_mao"],e:"👲",c:1,v:{"1F3FB":{k:"man_with_gua_pi_mao-1F3FB",n:"man_with_gua_pi_mao",e:"👲🏻"},"1F3FC":{k:"man_with_gua_pi_mao-1F3FC",n:"man_with_gua_pi_mao",e:"👲🏼"},"1F3FD":{k:"man_with_gua_pi_mao-1F3FD",n:"man_with_gua_pi_mao",e:"👲🏽"},"1F3FE":{k:"man_with_gua_pi_mao-1F3FE",n:"man_with_gua_pi_mao",e:"👲🏾"},"1F3FF":{k:"man_with_gua_pi_mao-1F3FF",n:"man_with_gua_pi_mao",e:"👲🏿"}}},{n:["koko"],e:"🈁",c:7},{n:["full_moon"],e:"🌕",c:3},{n:["flag-mv"],e:"🇲🇻",c:4},{n:["person_with_headscarf"],e:"🧕",c:1,v:{"1F3FB":{k:"person_with_headscarf-1F3FB",n:"person_with_headscarf",e:"🧕🏻"},"1F3FC":{k:"person_with_headscarf-1F3FC",n:"person_with_headscarf",e:"🧕🏼"},"1F3FD":{k:"person_with_headscarf-1F3FD",n:"person_with_headscarf",e:"🧕🏽"},"1F3FE":{k:"person_with_headscarf-1F3FE",n:"person_with_headscarf",e:"🧕🏾"},"1F3FF":{k:"person_with_headscarf-1F3FF",n:"person_with_headscarf",e:"🧕🏿"}}},{n:["waning_gibbous_moon"],e:"🌖",c:3},{n:["sa"],e:"🈂️",c:7},{n:["flag-mw"],e:"🇲🇼",c:4},{n:["last_quarter_moon"],e:"🌗",c:3},{n:["u6708"],e:"🈷️",c:7},{n:["bearded_person"],e:"🧔",c:1,v:{"1F3FB":{k:"bearded_person-1F3FB",n:"bearded_person",e:"🧔🏻"},"1F3FC":{k:"bearded_person-1F3FC",n:"bearded_person",e:"🧔🏼"},"1F3FD":{k:"bearded_person-1F3FD",n:"bearded_person",e:"🧔🏽"},"1F3FE":{k:"bearded_person-1F3FE",n:"bearded_person",e:"🧔🏾"},"1F3FF":{k:"bearded_person-1F3FF",n:"bearded_person",e:"🧔🏿"}}},{n:["flag-mx"],e:"🇲🇽",c:4},{n:["u6709"],e:"🈶",c:7},{n:["person_with_blond_hair"],e:"👱",c:1,v:{"1F3FB":{k:"person_with_blond_hair-1F3FB",n:"person_with_blond_hair",e:"👱🏻"},"1F3FC":{k:"person_with_blond_hair-1F3FC",n:"person_with_blond_hair",e:"👱🏼"},"1F3FD":{k:"person_with_blond_hair-1F3FD",n:"person_with_blond_hair",e:"👱🏽"},"1F3FE":{k:"person_with_blond_hair-1F3FE",n:"person_with_blond_hair",e:"👱🏾"},"1F3FF":{k:"person_with_blond_hair-1F3FF",n:"person_with_blond_hair",e:"👱🏿"}}},{n:["waning_crescent_moon"],e:"🌘",c:3},{n:["flag-my"],e:"🇲🇾",c:4},{n:["u6307"],e:"🈯",c:7},{n:["blond-haired-man"],e:"👱♂️",c:1,v:{"1F3FB":{k:"blond-haired-man-1F3FB",n:"blond-haired-man",e:"👱🏻♂️"},"1F3FC":{k:"blond-haired-man-1F3FC",n:"blond-haired-man",e:"👱🏼♂️"},"1F3FD":{k:"blond-haired-man-1F3FD",n:"blond-haired-man",e:"👱🏽♂️"},"1F3FE":{k:"blond-haired-man-1F3FE",n:"blond-haired-man",e:"👱🏾♂️"},"1F3FF":{k:"blond-haired-man-1F3FF",n:"blond-haired-man",e:"👱🏿♂️"}}},{n:["crescent_moon"],e:"🌙",c:3},{n:["flag-mz"],e:"🇲🇿",c:4},{n:["new_moon_with_face"],e:"🌚",c:3},{n:["flag-na"],e:"🇳🇦",c:4},{n:["blond-haired-woman"],e:"👱♀️",c:1,v:{"1F3FB":{k:"blond-haired-woman-1F3FB",n:"blond-haired-woman",e:"👱🏻♀️"},"1F3FC":{k:"blond-haired-woman-1F3FC",n:"blond-haired-woman",e:"👱🏼♀️"},"1F3FD":{k:"blond-haired-woman-1F3FD",n:"blond-haired-woman",e:"👱🏽♀️"},"1F3FE":{k:"blond-haired-woman-1F3FE",n:"blond-haired-woman",e:"👱🏾♀️"},"1F3FF":{k:"blond-haired-woman-1F3FF",n:"blond-haired-woman",e:"👱🏿♀️"}}},{n:["ideograph_advantage"],e:"🉐",c:7},{n:["first_quarter_moon_with_face"],e:"🌛",c:3},{n:["man_in_tuxedo"],e:"🤵",c:1,v:{"1F3FB":{k:"man_in_tuxedo-1F3FB",n:"man_in_tuxedo",e:"🤵🏻"},"1F3FC":{k:"man_in_tuxedo-1F3FC",n:"man_in_tuxedo",e:"🤵🏼"},"1F3FD":{k:"man_in_tuxedo-1F3FD",n:"man_in_tuxedo",e:"🤵🏽"},"1F3FE":{k:"man_in_tuxedo-1F3FE",n:"man_in_tuxedo",e:"🤵🏾"},"1F3FF":{k:"man_in_tuxedo-1F3FF",n:"man_in_tuxedo",e:"🤵🏿"}}},{n:["flag-nc"],e:"🇳🇨",c:4},{n:["u5272"],e:"🈹",c:7},{n:["flag-ne"],e:"🇳🇪",c:4},{n:["last_quarter_moon_with_face"],e:"🌜",c:3},{n:["u7121"],e:"🈚",c:7},{n:["bride_with_veil"],e:"👰",c:1,v:{"1F3FB":{k:"bride_with_veil-1F3FB",n:"bride_with_veil",e:"👰🏻"},"1F3FC":{k:"bride_with_veil-1F3FC",n:"bride_with_veil",e:"👰🏼"},"1F3FD":{k:"bride_with_veil-1F3FD",n:"bride_with_veil",e:"👰🏽"},"1F3FE":{k:"bride_with_veil-1F3FE",n:"bride_with_veil",e:"👰🏾"},"1F3FF":{k:"bride_with_veil-1F3FF",n:"bride_with_veil",e:"👰🏿"}}},{n:["u7981"],e:"🈲",c:7},{n:["pregnant_woman"],e:"🤰",c:1,v:{"1F3FB":{k:"pregnant_woman-1F3FB",n:"pregnant_woman",e:"🤰🏻"},"1F3FC":{k:"pregnant_woman-1F3FC",n:"pregnant_woman",e:"🤰🏼"},"1F3FD":{k:"pregnant_woman-1F3FD",n:"pregnant_woman",e:"🤰🏽"},"1F3FE":{k:"pregnant_woman-1F3FE",n:"pregnant_woman",e:"🤰🏾"},"1F3FF":{k:"pregnant_woman-1F3FF",n:"pregnant_woman",e:"🤰🏿"}}},{n:["thermometer"],e:"🌡️",c:3},{n:["flag-nf"],e:"🇳🇫",c:4},{n:["sunny"],e:"☀️",c:3},{n:["accept"],e:"🉑",c:7},{n:["flag-ng"],e:"🇳🇬",c:4},{n:["breast-feeding"],e:"🤱",c:1,v:{"1F3FB":{k:"breast-feeding-1F3FB",n:"breast-feeding",e:"🤱🏻"},"1F3FC":{k:"breast-feeding-1F3FC",n:"breast-feeding",e:"🤱🏼"},"1F3FD":{k:"breast-feeding-1F3FD",n:"breast-feeding",e:"🤱🏽"},"1F3FE":{k:"breast-feeding-1F3FE",n:"breast-feeding",e:"🤱🏾"},"1F3FF":{k:"breast-feeding-1F3FF",n:"breast-feeding",e:"🤱🏿"}}},{n:["full_moon_with_face"],e:"🌝",c:3},{n:["flag-ni"],e:"🇳🇮",c:4},{n:["u7533"],e:"🈸",c:7},{n:["angel"],e:"👼",c:1,v:{"1F3FB":{k:"angel-1F3FB",n:"angel",e:"👼🏻"},"1F3FC":{k:"angel-1F3FC",n:"angel",e:"👼🏼"},"1F3FD":{k:"angel-1F3FD",n:"angel",e:"👼🏽"},"1F3FE":{k:"angel-1F3FE",n:"angel",e:"👼🏾"},"1F3FF":{k:"angel-1F3FF",n:"angel",e:"👼🏿"}}},{n:["sun_with_face"],e:"🌞",c:3},{n:["santa"],e:"🎅",c:1,v:{"1F3FB":{k:"santa-1F3FB",n:"santa",e:"🎅🏻"},"1F3FC":{k:"santa-1F3FC",n:"santa",e:"🎅🏼"},"1F3FD":{k:"santa-1F3FD",n:"santa",e:"🎅🏽"},"1F3FE":{k:"santa-1F3FE",n:"santa",e:"🎅🏾"},"1F3FF":{k:"santa-1F3FF",n:"santa",e:"🎅🏿"}}},{n:["u5408"],e:"🈴",c:7},{n:["flag-nl"],e:"🇳🇱",c:4},{n:["mrs_claus","mother_christmas"],e:"🤶",c:1,v:{"1F3FB":{k:"mrs_claus-1F3FB",n:"mrs_claus",e:"🤶🏻"},"1F3FC":{k:"mrs_claus-1F3FC",n:"mrs_claus",e:"🤶🏼"},"1F3FD":{k:"mrs_claus-1F3FD",n:"mrs_claus",e:"🤶🏽"},"1F3FE":{k:"mrs_claus-1F3FE",n:"mrs_claus",e:"🤶🏾"},"1F3FF":{k:"mrs_claus-1F3FF",n:"mrs_claus",e:"🤶🏿"}}},{n:["u7a7a"],e:"🈳",c:7},{n:["star"],e:"⭐",c:3},{n:["flag-no"],e:"🇳🇴",c:4},{n:["mage"],e:"🧙",c:1,v:{"1F3FB":{k:"mage-1F3FB",n:"mage",e:"🧙🏻"},"1F3FC":{k:"mage-1F3FC",n:"mage",e:"🧙🏼"},"1F3FD":{k:"mage-1F3FD",n:"mage",e:"🧙🏽"},"1F3FE":{k:"mage-1F3FE",n:"mage",e:"🧙🏾"},"1F3FF":{k:"mage-1F3FF",n:"mage",e:"🧙🏿"}}},{n:["star2"],e:"🌟",c:3},{n:["flag-np"],e:"🇳🇵",c:4},{n:["congratulations"],e:"㊗️",c:7},{n:["flag-nr"],e:"🇳🇷",c:4},{n:["stars"],e:"🌠",c:3},{n:["female_mage"],e:"🧙♀️",c:1,v:{"1F3FB":{k:"female_mage-1F3FB",n:"female_mage",e:"🧙🏻♀️"},"1F3FC":{k:"female_mage-1F3FC",n:"female_mage",e:"🧙🏼♀️"},"1F3FD":{k:"female_mage-1F3FD",n:"female_mage",e:"🧙🏽♀️"},"1F3FE":{k:"female_mage-1F3FE",n:"female_mage",e:"🧙🏾♀️"},"1F3FF":{k:"female_mage-1F3FF",n:"female_mage",e:"🧙🏿♀️"}}},{n:["secret"],e:"㊙️",c:7},{n:["flag-nu"],e:"🇳🇺",c:4},{n:["u55b6"],e:"🈺",c:7},{n:["male_mage"],e:"🧙♂️",c:1,v:{"1F3FB":{k:"male_mage-1F3FB",n:"male_mage",e:"🧙🏻♂️"},"1F3FC":{k:"male_mage-1F3FC",n:"male_mage",e:"🧙🏼♂️"},"1F3FD":{k:"male_mage-1F3FD",n:"male_mage",e:"🧙🏽♂️"},"1F3FE":{k:"male_mage-1F3FE",n:"male_mage",e:"🧙🏾♂️"},"1F3FF":{k:"male_mage-1F3FF",n:"male_mage",e:"🧙🏿♂️"}}},{n:["cloud"],e:"☁️",c:3},{n:["flag-nz"],e:"🇳🇿",c:4},{n:["partly_sunny"],e:"⛅",c:3},{n:["fairy"],e:"🧚",c:1,v:{"1F3FB":{k:"fairy-1F3FB",n:"fairy",e:"🧚🏻"},"1F3FC":{k:"fairy-1F3FC",n:"fairy",e:"🧚🏼"},"1F3FD":{k:"fairy-1F3FD",n:"fairy",e:"🧚🏽"},"1F3FE":{k:"fairy-1F3FE",n:"fairy",e:"🧚🏾"},"1F3FF":{k:"fairy-1F3FF",n:"fairy",e:"🧚🏿"}}},{n:["u6e80"],e:"🈵",c:7},{n:["black_small_square"],e:"▪️",c:7},{n:["thunder_cloud_and_rain"],e:"⛈️",c:3},{n:["female_fairy"],e:"🧚♀️",c:1,v:{"1F3FB":{k:"female_fairy-1F3FB",n:"female_fairy",e:"🧚🏻♀️"},"1F3FC":{k:"female_fairy-1F3FC",n:"female_fairy",e:"🧚🏼♀️"},"1F3FD":{k:"female_fairy-1F3FD",n:"female_fairy",e:"🧚🏽♀️"},"1F3FE":{k:"female_fairy-1F3FE",n:"female_fairy",e:"🧚🏾♀️"},"1F3FF":{k:"female_fairy-1F3FF",n:"female_fairy",e:"🧚🏿♀️"}}},{n:["flag-om"],e:"🇴🇲",c:4},{n:["white_small_square"],e:"▫️",c:7},{n:["flag-pa"],e:"🇵🇦",c:4},{n:["mostly_sunny","sun_small_cloud"],e:"🌤️",c:3},{n:["male_fairy"],e:"🧚♂️",c:1,v:{"1F3FB":{k:"male_fairy-1F3FB",n:"male_fairy",e:"🧚🏻♂️"},"1F3FC":{k:"male_fairy-1F3FC",n:"male_fairy",e:"🧚🏼♂️"},"1F3FD":{k:"male_fairy-1F3FD",n:"male_fairy",e:"🧚🏽♂️"},"1F3FE":{k:"male_fairy-1F3FE",n:"male_fairy",e:"🧚🏾♂️"},"1F3FF":{k:"male_fairy-1F3FF",n:"male_fairy",e:"🧚🏿♂️"}}},{n:["barely_sunny","sun_behind_cloud"],e:"🌥️",c:3},{n:["white_medium_square"],e:"◻️",c:7},{n:["flag-pe"],e:"🇵🇪",c:4},{n:["vampire"],e:"🧛",c:1,v:{"1F3FB":{k:"vampire-1F3FB",n:"vampire",e:"🧛🏻"},"1F3FC":{k:"vampire-1F3FC",n:"vampire",e:"🧛🏼"},"1F3FD":{k:"vampire-1F3FD",n:"vampire",e:"🧛🏽"},"1F3FE":{k:"vampire-1F3FE",n:"vampire",e:"🧛🏾"},"1F3FF":{k:"vampire-1F3FF",n:"vampire",e:"🧛🏿"}}},{n:["female_vampire"],e:"🧛♀️",c:1,v:{"1F3FB":{k:"female_vampire-1F3FB",n:"female_vampire",e:"🧛🏻♀️"},"1F3FC":{k:"female_vampire-1F3FC",n:"female_vampire",e:"🧛🏼♀️"},"1F3FD":{k:"female_vampire-1F3FD",n:"female_vampire",e:"🧛🏽♀️"},"1F3FE":{k:"female_vampire-1F3FE",n:"female_vampire",e:"🧛🏾♀️"},"1F3FF":{k:"female_vampire-1F3FF",n:"female_vampire",e:"🧛🏿♀️"}}},{n:["partly_sunny_rain","sun_behind_rain_cloud"],e:"🌦️",c:3},{n:["flag-pf"],e:"🇵🇫",c:4},{n:["black_medium_square"],e:"◼️",c:7},{n:["white_medium_small_square"],e:"◽",c:7},{n:["rain_cloud"],e:"🌧️",c:3},{n:["flag-pg"],e:"🇵🇬",c:4},{n:["male_vampire"],e:"🧛♂️",c:1,v:{"1F3FB":{k:"male_vampire-1F3FB",n:"male_vampire",e:"🧛🏻♂️"},"1F3FC":{k:"male_vampire-1F3FC",n:"male_vampire",e:"🧛🏼♂️"},"1F3FD":{k:"male_vampire-1F3FD",n:"male_vampire",e:"🧛🏽♂️"},"1F3FE":{k:"male_vampire-1F3FE",n:"male_vampire",e:"🧛🏾♂️"},"1F3FF":{k:"male_vampire-1F3FF",n:"male_vampire",e:"🧛🏿♂️"}}},{n:["flag-ph"],e:"🇵🇭",c:4},{n:["merperson"],e:"🧜",c:1,v:{"1F3FB":{k:"merperson-1F3FB",n:"merperson",e:"🧜🏻"},"1F3FC":{k:"merperson-1F3FC",n:"merperson",e:"🧜🏼"},"1F3FD":{k:"merperson-1F3FD",n:"merperson",e:"🧜🏽"},"1F3FE":{k:"merperson-1F3FE",n:"merperson",e:"🧜🏾"},"1F3FF":{k:"merperson-1F3FF",n:"merperson",e:"🧜🏿"}}},{n:["black_medium_small_square"],e:"◾",c:7},{n:["snow_cloud"],e:"🌨️",c:3},{n:["lightning","lightning_cloud"],e:"🌩️",c:3},{n:["black_large_square"],e:"⬛",c:7},{n:["mermaid"],e:"🧜♀️",c:1,v:{"1F3FB":{k:"mermaid-1F3FB",n:"mermaid",e:"🧜🏻♀️"},"1F3FC":{k:"mermaid-1F3FC",n:"mermaid",e:"🧜🏼♀️"},"1F3FD":{k:"mermaid-1F3FD",n:"mermaid",e:"🧜🏽♀️"},"1F3FE":{k:"mermaid-1F3FE",n:"mermaid",e:"🧜🏾♀️"},"1F3FF":{k:"mermaid-1F3FF",n:"mermaid",e:"🧜🏿♀️"}}},{n:["flag-pk"],e:"🇵🇰",c:4},{n:["merman"],e:"🧜♂️",c:1,v:{"1F3FB":{k:"merman-1F3FB",n:"merman",e:"🧜🏻♂️"},"1F3FC":{k:"merman-1F3FC",n:"merman",e:"🧜🏼♂️"},"1F3FD":{k:"merman-1F3FD",n:"merman",e:"🧜🏽♂️"},"1F3FE":{k:"merman-1F3FE",n:"merman",e:"🧜🏾♂️"},"1F3FF":{k:"merman-1F3FF",n:"merman",e:"🧜🏿♂️"}}},{n:["white_large_square"],e:"⬜",c:7},{n:["tornado","tornado_cloud"],e:"🌪️",c:3},{n:["flag-pl"],e:"🇵🇱",c:4},{n:["elf"],e:"🧝",c:1,v:{"1F3FB":{k:"elf-1F3FB",n:"elf",e:"🧝🏻"},"1F3FC":{k:"elf-1F3FC",n:"elf",e:"🧝🏼"},"1F3FD":{k:"elf-1F3FD",n:"elf",e:"🧝🏽"},"1F3FE":{k:"elf-1F3FE",n:"elf",e:"🧝🏾"},"1F3FF":{k:"elf-1F3FF",n:"elf",e:"🧝🏿"}}},{n:["fog"],e:"🌫️",c:3},{n:["large_orange_diamond"],e:"🔶",c:7},{n:["flag-pm"],e:"🇵🇲",c:4},{n:["flag-pn"],e:"🇵🇳",c:4},{n:["wind_blowing_face"],e:"🌬️",c:3},{n:["female_elf"],e:"🧝♀️",c:1,v:{"1F3FB":{k:"female_elf-1F3FB",n:"female_elf",e:"🧝🏻♀️"},"1F3FC":{k:"female_elf-1F3FC",n:"female_elf",e:"🧝🏼♀️"},"1F3FD":{k:"female_elf-1F3FD",n:"female_elf",e:"🧝🏽♀️"},"1F3FE":{k:"female_elf-1F3FE",n:"female_elf",e:"🧝🏾♀️"},"1F3FF":{k:"female_elf-1F3FF",n:"female_elf",e:"🧝🏿♀️"}}},{n:["large_blue_diamond"],e:"🔷",c:7},{n:["male_elf"],e:"🧝♂️",c:1,v:{"1F3FB":{k:"male_elf-1F3FB",n:"male_elf",e:"🧝🏻♂️"},"1F3FC":{k:"male_elf-1F3FC",n:"male_elf",e:"🧝🏼♂️"},"1F3FD":{k:"male_elf-1F3FD",n:"male_elf",e:"🧝🏽♂️"},"1F3FE":{k:"male_elf-1F3FE",n:"male_elf",e:"🧝🏾♂️"},"1F3FF":{k:"male_elf-1F3FF",n:"male_elf",e:"🧝🏿♂️"}}},{n:["small_orange_diamond"],e:"🔸",c:7},{n:["flag-pr"],e:"🇵🇷",c:4},{n:["cyclone"],e:"🌀",c:3},{n:["rainbow"],e:"🌈",c:3},{n:["small_blue_diamond"],e:"🔹",c:7},{n:["genie"],e:"🧞",c:1},{n:["flag-ps"],e:"🇵🇸",c:4},{n:["small_red_triangle"],e:"🔺",c:7},{n:["closed_umbrella"],e:"🌂",c:3},{n:["female_genie"],e:"🧞♀️",c:1},{n:["flag-pt"],e:"🇵🇹",c:4},{n:["flag-pw"],e:"🇵🇼",c:4},{n:["small_red_triangle_down"],e:"🔻",c:7},{n:["umbrella"],e:"☂️",c:3},{n:["male_genie"],e:"🧞♂️",c:1},{n:["zombie"],e:"🧟",c:1},{n:["flag-py"],e:"🇵🇾",c:4},{n:["diamond_shape_with_a_dot_inside"],e:"💠",c:7},{n:["umbrella_with_rain_drops"],e:"☔",c:3},{n:["radio_button"],e:"🔘",c:7},{n:["female_zombie"],e:"🧟♀️",c:1},{n:["flag-qa"],e:"🇶🇦",c:4},{n:["umbrella_on_ground"],e:"⛱️",c:3},{n:["black_square_button"],e:"🔲",c:7},{n:["zap"],e:"⚡",c:3},{n:["male_zombie"],e:"🧟♂️",c:1},{n:["flag-re"],e:"🇷🇪",c:4},{n:["flag-ro"],e:"🇷🇴",c:4},{n:["snowflake"],e:"❄️",c:3},{n:["white_square_button"],e:"🔳",c:7},{n:["person_frowning"],e:"🙍",c:1,v:{"1F3FB":{k:"person_frowning-1F3FB",n:"person_frowning",e:"🙍🏻"},"1F3FC":{k:"person_frowning-1F3FC",n:"person_frowning",e:"🙍🏼"},"1F3FD":{k:"person_frowning-1F3FD",n:"person_frowning",e:"🙍🏽"},"1F3FE":{k:"person_frowning-1F3FE",n:"person_frowning",e:"🙍🏾"},"1F3FF":{k:"person_frowning-1F3FF",n:"person_frowning",e:"🙍🏿"}}},{n:["flag-rs"],e:"🇷🇸",c:4},{n:["man-frowning"],e:"🙍♂️",c:1,v:{"1F3FB":{k:"man-frowning-1F3FB",n:"man-frowning",e:"🙍🏻♂️"},"1F3FC":{k:"man-frowning-1F3FC",n:"man-frowning",e:"🙍🏼♂️"},"1F3FD":{k:"man-frowning-1F3FD",n:"man-frowning",e:"🙍🏽♂️"},"1F3FE":{k:"man-frowning-1F3FE",n:"man-frowning",e:"🙍🏾♂️"},"1F3FF":{k:"man-frowning-1F3FF",n:"man-frowning",e:"🙍🏿♂️"}}},{n:["white_circle"],e:"⚪",c:7},{n:["snowman"],e:"☃️",c:3},{n:["snowman_without_snow"],e:"⛄",c:3},{n:["ru","flag-ru"],e:"🇷🇺",c:4},{n:["black_circle"],e:"⚫",c:7},{n:["woman-frowning"],e:"🙍♀️",c:1,v:{"1F3FB":{k:"woman-frowning-1F3FB",n:"woman-frowning",e:"🙍🏻♀️"},"1F3FC":{k:"woman-frowning-1F3FC",n:"woman-frowning",e:"🙍🏼♀️"},"1F3FD":{k:"woman-frowning-1F3FD",n:"woman-frowning",e:"🙍🏽♀️"},"1F3FE":{k:"woman-frowning-1F3FE",n:"woman-frowning",e:"🙍🏾♀️"},"1F3FF":{k:"woman-frowning-1F3FF",n:"woman-frowning",e:"🙍🏿♀️"}}},{n:["flag-rw"],e:"🇷🇼",c:4},{n:["comet"],e:"☄️",c:3},{n:["person_with_pouting_face"],e:"🙎",c:1,v:{"1F3FB":{k:"person_with_pouting_face-1F3FB",n:"person_with_pouting_face",e:"🙎🏻"},"1F3FC":{k:"person_with_pouting_face-1F3FC",n:"person_with_pouting_face",e:"🙎🏼"},"1F3FD":{k:"person_with_pouting_face-1F3FD",n:"person_with_pouting_face",e:"🙎🏽"},"1F3FE":{k:"person_with_pouting_face-1F3FE",n:"person_with_pouting_face",e:"🙎🏾"},"1F3FF":{k:"person_with_pouting_face-1F3FF",n:"person_with_pouting_face",e:"🙎🏿"}}},{n:["red_circle"],e:"🔴",c:7},{n:["large_blue_circle"],e:"🔵",c:7},{n:["man-pouting"],e:"🙎♂️",c:1,v:{"1F3FB":{k:"man-pouting-1F3FB",n:"man-pouting",e:"🙎🏻♂️"},"1F3FC":{k:"man-pouting-1F3FC",n:"man-pouting",e:"🙎🏼♂️"},"1F3FD":{k:"man-pouting-1F3FD",n:"man-pouting",e:"🙎🏽♂️"},"1F3FE":{k:"man-pouting-1F3FE",n:"man-pouting",e:"🙎🏾♂️"},"1F3FF":{k:"man-pouting-1F3FF",n:"man-pouting",e:"🙎🏿♂️"}}},{n:["flag-sa"],e:"🇸🇦",c:4},{n:["fire"],e:"🔥",c:3},{n:["woman-pouting"],e:"🙎♀️",c:1,v:{"1F3FB":{k:"woman-pouting-1F3FB",n:"woman-pouting",e:"🙎🏻♀️"},"1F3FC":{k:"woman-pouting-1F3FC",n:"woman-pouting",e:"🙎🏼♀️"},"1F3FD":{k:"woman-pouting-1F3FD",n:"woman-pouting",e:"🙎🏽♀️"},"1F3FE":{k:"woman-pouting-1F3FE",n:"woman-pouting",e:"🙎🏾♀️"},"1F3FF":{k:"woman-pouting-1F3FF",n:"woman-pouting",e:"🙎🏿♀️"}}},{n:["flag-sb"],e:"🇸🇧",c:4},{n:["droplet"],e:"💧",c:3},{n:["no_good"],e:"🙅",c:1,v:{"1F3FB":{k:"no_good-1F3FB",n:"no_good",e:"🙅🏻"},"1F3FC":{k:"no_good-1F3FC",n:"no_good",e:"🙅🏼"},"1F3FD":{k:"no_good-1F3FD",n:"no_good",e:"🙅🏽"},"1F3FE":{k:"no_good-1F3FE",n:"no_good",e:"🙅🏾"},"1F3FF":{k:"no_good-1F3FF",n:"no_good",e:"🙅🏿"}}},{n:["flag-sc"],e:"🇸🇨",c:4},{n:["ocean"],e:"🌊",c:3},{n:["man-gesturing-no"],e:"🙅♂️",c:1,v:{"1F3FB":{k:"man-gesturing-no-1F3FB",n:"man-gesturing-no",e:"🙅🏻♂️"},"1F3FC":{k:"man-gesturing-no-1F3FC",n:"man-gesturing-no",e:"🙅🏼♂️"},"1F3FD":{k:"man-gesturing-no-1F3FD",n:"man-gesturing-no",e:"🙅🏽♂️"},"1F3FE":{k:"man-gesturing-no-1F3FE",n:"man-gesturing-no",e:"🙅🏾♂️"},"1F3FF":{k:"man-gesturing-no-1F3FF",n:"man-gesturing-no",e:"🙅🏿♂️"}}},{n:["flag-sd"],e:"🇸🇩",c:4},{n:["woman-gesturing-no"],e:"🙅♀️",c:1,v:{"1F3FB":{k:"woman-gesturing-no-1F3FB",n:"woman-gesturing-no",e:"🙅🏻♀️"},"1F3FC":{k:"woman-gesturing-no-1F3FC",n:"woman-gesturing-no",e:"🙅🏼♀️"},"1F3FD":{k:"woman-gesturing-no-1F3FD",n:"woman-gesturing-no",e:"🙅🏽♀️"},"1F3FE":{k:"woman-gesturing-no-1F3FE",n:"woman-gesturing-no",e:"🙅🏾♀️"},"1F3FF":{k:"woman-gesturing-no-1F3FF",n:"woman-gesturing-no",e:"🙅🏿♀️"}}},{n:["flag-se"],e:"🇸🇪",c:4},{n:["flag-sg"],e:"🇸🇬",c:4},{n:["ok_woman"],e:"🙆",c:1,v:{"1F3FB":{k:"ok_woman-1F3FB",n:"ok_woman",e:"🙆🏻"},"1F3FC":{k:"ok_woman-1F3FC",n:"ok_woman",e:"🙆🏼"},"1F3FD":{k:"ok_woman-1F3FD",n:"ok_woman",e:"🙆🏽"},"1F3FE":{k:"ok_woman-1F3FE",n:"ok_woman",e:"🙆🏾"},"1F3FF":{k:"ok_woman-1F3FF",n:"ok_woman",e:"🙆🏿"}}},{n:["flag-sh"],e:"🇸🇭",c:4},{n:["man-gesturing-ok"],e:"🙆♂️",c:1,v:{"1F3FB":{k:"man-gesturing-ok-1F3FB",n:"man-gesturing-ok",e:"🙆🏻♂️"},"1F3FC":{k:"man-gesturing-ok-1F3FC",n:"man-gesturing-ok",e:"🙆🏼♂️"},"1F3FD":{k:"man-gesturing-ok-1F3FD",n:"man-gesturing-ok",e:"🙆🏽♂️"},"1F3FE":{k:"man-gesturing-ok-1F3FE",n:"man-gesturing-ok",e:"🙆🏾♂️"},"1F3FF":{k:"man-gesturing-ok-1F3FF",n:"man-gesturing-ok",e:"🙆🏿♂️"}}},{n:["flag-si"],e:"🇸🇮",c:4},{n:["woman-gesturing-ok"],e:"🙆♀️",c:1,v:{"1F3FB":{k:"woman-gesturing-ok-1F3FB",n:"woman-gesturing-ok",e:"🙆🏻♀️"},"1F3FC":{k:"woman-gesturing-ok-1F3FC",n:"woman-gesturing-ok",e:"🙆🏼♀️"},"1F3FD":{k:"woman-gesturing-ok-1F3FD",n:"woman-gesturing-ok",e:"🙆🏽♀️"},"1F3FE":{k:"woman-gesturing-ok-1F3FE",n:"woman-gesturing-ok",e:"🙆🏾♀️"},"1F3FF":{k:"woman-gesturing-ok-1F3FF",n:"woman-gesturing-ok",e:"🙆🏿♀️"}}},{n:["information_desk_person"],e:"💁",c:1,v:{"1F3FB":{k:"information_desk_person-1F3FB",n:"information_desk_person",e:"💁🏻"},"1F3FC":{k:"information_desk_person-1F3FC",n:"information_desk_person",e:"💁🏼"},"1F3FD":{k:"information_desk_person-1F3FD",n:"information_desk_person",e:"💁🏽"},"1F3FE":{k:"information_desk_person-1F3FE",n:"information_desk_person",e:"💁🏾"},"1F3FF":{k:"information_desk_person-1F3FF",n:"information_desk_person",e:"💁🏿"}}},{n:["flag-sj"],e:"🇸🇯",c:4},{n:["man-tipping-hand"],e:"💁♂️",c:1,v:{"1F3FB":{k:"man-tipping-hand-1F3FB",n:"man-tipping-hand",e:"💁🏻♂️"},"1F3FC":{k:"man-tipping-hand-1F3FC",n:"man-tipping-hand",e:"💁🏼♂️"},"1F3FD":{k:"man-tipping-hand-1F3FD",n:"man-tipping-hand",e:"💁🏽♂️"},"1F3FE":{k:"man-tipping-hand-1F3FE",n:"man-tipping-hand",e:"💁🏾♂️"},"1F3FF":{k:"man-tipping-hand-1F3FF",n:"man-tipping-hand",e:"💁🏿♂️"}}},{n:["flag-sk"],e:"🇸🇰",c:4},{n:["flag-sl"],e:"🇸🇱",c:4},{n:["woman-tipping-hand"],e:"💁♀️",c:1,v:{"1F3FB":{k:"woman-tipping-hand-1F3FB",n:"woman-tipping-hand",e:"💁🏻♀️"},"1F3FC":{k:"woman-tipping-hand-1F3FC",n:"woman-tipping-hand",e:"💁🏼♀️"},"1F3FD":{k:"woman-tipping-hand-1F3FD",n:"woman-tipping-hand",e:"💁🏽♀️"},"1F3FE":{k:"woman-tipping-hand-1F3FE",n:"woman-tipping-hand",e:"💁🏾♀️"},"1F3FF":{k:"woman-tipping-hand-1F3FF",n:"woman-tipping-hand",e:"💁🏿♀️"}}},{n:["flag-sm"],e:"🇸🇲",c:4},{n:["raising_hand"],e:"🙋",c:1,v:{"1F3FB":{k:"raising_hand-1F3FB",n:"raising_hand",e:"🙋🏻"},"1F3FC":{k:"raising_hand-1F3FC",n:"raising_hand",e:"🙋🏼"},"1F3FD":{k:"raising_hand-1F3FD",n:"raising_hand",e:"🙋🏽"},"1F3FE":{k:"raising_hand-1F3FE",n:"raising_hand",e:"🙋🏾"},"1F3FF":{k:"raising_hand-1F3FF",n:"raising_hand",e:"🙋🏿"}}},{n:["flag-sn"],e:"🇸🇳",c:4},{n:["man-raising-hand"],e:"🙋♂️",c:1,v:{"1F3FB":{k:"man-raising-hand-1F3FB",n:"man-raising-hand",e:"🙋🏻♂️"},"1F3FC":{k:"man-raising-hand-1F3FC",n:"man-raising-hand",e:"🙋🏼♂️"},"1F3FD":{k:"man-raising-hand-1F3FD",n:"man-raising-hand",e:"🙋🏽♂️"},"1F3FE":{k:"man-raising-hand-1F3FE",n:"man-raising-hand",e:"🙋🏾♂️"},"1F3FF":{k:"man-raising-hand-1F3FF",n:"man-raising-hand",e:"🙋🏿♂️"}}},{n:["flag-so"],e:"🇸🇴",c:4},{n:["woman-raising-hand"],e:"🙋♀️",c:1,v:{"1F3FB":{k:"woman-raising-hand-1F3FB",n:"woman-raising-hand",e:"🙋🏻♀️"},"1F3FC":{k:"woman-raising-hand-1F3FC",n:"woman-raising-hand",e:"🙋🏼♀️"},"1F3FD":{k:"woman-raising-hand-1F3FD",n:"woman-raising-hand",e:"🙋🏽♀️"},"1F3FE":{k:"woman-raising-hand-1F3FE",n:"woman-raising-hand",e:"🙋🏾♀️"},"1F3FF":{k:"woman-raising-hand-1F3FF",n:"woman-raising-hand",e:"🙋🏿♀️"}}},{n:["flag-sr"],e:"🇸🇷",c:4},{n:["bow"],e:"🙇",c:1,v:{"1F3FB":{k:"bow-1F3FB",n:"bow",e:"🙇🏻"},"1F3FC":{k:"bow-1F3FC",n:"bow",e:"🙇🏼"},"1F3FD":{k:"bow-1F3FD",n:"bow",e:"🙇🏽"},"1F3FE":{k:"bow-1F3FE",n:"bow",e:"🙇🏾"},"1F3FF":{k:"bow-1F3FF",n:"bow",e:"🙇🏿"}}},{n:["man-bowing"],e:"🙇♂️",c:1,v:{"1F3FB":{k:"man-bowing-1F3FB",n:"man-bowing",e:"🙇🏻♂️"},"1F3FC":{k:"man-bowing-1F3FC",n:"man-bowing",e:"🙇🏼♂️"},"1F3FD":{k:"man-bowing-1F3FD",n:"man-bowing",e:"🙇🏽♂️"},"1F3FE":{k:"man-bowing-1F3FE",n:"man-bowing",e:"🙇🏾♂️"},"1F3FF":{k:"man-bowing-1F3FF",n:"man-bowing",e:"🙇🏿♂️"}}},{n:["flag-ss"],e:"🇸🇸",c:4},{n:["woman-bowing"],e:"🙇♀️",c:1,v:{"1F3FB":{k:"woman-bowing-1F3FB",n:"woman-bowing",e:"🙇🏻♀️"},"1F3FC":{k:"woman-bowing-1F3FC",n:"woman-bowing",e:"🙇🏼♀️"},"1F3FD":{k:"woman-bowing-1F3FD",n:"woman-bowing",e:"🙇🏽♀️"},"1F3FE":{k:"woman-bowing-1F3FE",n:"woman-bowing",e:"🙇🏾♀️"},"1F3FF":{k:"woman-bowing-1F3FF",n:"woman-bowing",e:"🙇🏿♀️"}}},{n:["flag-st"],e:"🇸🇹",c:4},{n:["face_palm"],e:"🤦",c:1,v:{"1F3FB":{k:"face_palm-1F3FB",n:"face_palm",e:"🤦🏻"},"1F3FC":{k:"face_palm-1F3FC",n:"face_palm",e:"🤦🏼"},"1F3FD":{k:"face_palm-1F3FD",n:"face_palm",e:"🤦🏽"},"1F3FE":{k:"face_palm-1F3FE",n:"face_palm",e:"🤦🏾"},"1F3FF":{k:"face_palm-1F3FF",n:"face_palm",e:"🤦🏿"}}},{n:["flag-sv"],e:"🇸🇻",c:4},{n:["man-facepalming"],e:"🤦♂️",c:1,v:{"1F3FB":{k:"man-facepalming-1F3FB",n:"man-facepalming",e:"🤦🏻♂️"},"1F3FC":{k:"man-facepalming-1F3FC",n:"man-facepalming",e:"🤦🏼♂️"},"1F3FD":{k:"man-facepalming-1F3FD",n:"man-facepalming",e:"🤦🏽♂️"},"1F3FE":{k:"man-facepalming-1F3FE",n:"man-facepalming",e:"🤦🏾♂️"},"1F3FF":{k:"man-facepalming-1F3FF",n:"man-facepalming",e:"🤦🏿♂️"}}},{n:["flag-sx"],e:"🇸🇽",c:4},{n:["flag-sy"],e:"🇸🇾",c:4},{n:["woman-facepalming"],e:"🤦♀️",c:1,v:{"1F3FB":{k:"woman-facepalming-1F3FB",n:"woman-facepalming",e:"🤦🏻♀️"},"1F3FC":{k:"woman-facepalming-1F3FC",n:"woman-facepalming",e:"🤦🏼♀️"},"1F3FD":{k:"woman-facepalming-1F3FD",n:"woman-facepalming",e:"🤦🏽♀️"},"1F3FE":{k:"woman-facepalming-1F3FE",n:"woman-facepalming",e:"🤦🏾♀️"},"1F3FF":{k:"woman-facepalming-1F3FF",n:"woman-facepalming",e:"🤦🏿♀️"}}},{n:["shrug"],e:"🤷",c:1,v:{"1F3FB":{k:"shrug-1F3FB",n:"shrug",e:"🤷🏻"},"1F3FC":{k:"shrug-1F3FC",n:"shrug",e:"🤷🏼"},"1F3FD":{k:"shrug-1F3FD",n:"shrug",e:"🤷🏽"},"1F3FE":{k:"shrug-1F3FE",n:"shrug",e:"🤷🏾"},"1F3FF":{k:"shrug-1F3FF",n:"shrug",e:"🤷🏿"}}},{n:["flag-sz"],e:"🇸🇿",c:4},{n:["flag-ta"],e:"🇹🇦",c:4},{n:["man-shrugging"],e:"🤷♂️",c:1,v:{"1F3FB":{k:"man-shrugging-1F3FB",n:"man-shrugging",e:"🤷🏻♂️"},"1F3FC":{k:"man-shrugging-1F3FC",n:"man-shrugging",e:"🤷🏼♂️"},"1F3FD":{k:"man-shrugging-1F3FD",n:"man-shrugging",e:"🤷🏽♂️"},"1F3FE":{k:"man-shrugging-1F3FE",n:"man-shrugging",e:"🤷🏾♂️"},"1F3FF":{k:"man-shrugging-1F3FF",n:"man-shrugging",e:"🤷🏿♂️"}}},{n:["woman-shrugging"],e:"🤷♀️",c:1,v:{"1F3FB":{k:"woman-shrugging-1F3FB",n:"woman-shrugging",e:"🤷🏻♀️"},"1F3FC":{k:"woman-shrugging-1F3FC",n:"woman-shrugging",e:"🤷🏼♀️"},"1F3FD":{k:"woman-shrugging-1F3FD",n:"woman-shrugging",e:"🤷🏽♀️"},"1F3FE":{k:"woman-shrugging-1F3FE",n:"woman-shrugging",e:"🤷🏾♀️"},"1F3FF":{k:"woman-shrugging-1F3FF",n:"woman-shrugging",e:"🤷🏿♀️"}}},{n:["flag-tc"],e:"🇹🇨",c:4},{n:["massage"],e:"💆",c:1,v:{"1F3FB":{k:"massage-1F3FB",n:"massage",e:"💆🏻"},"1F3FC":{k:"massage-1F3FC",n:"massage",e:"💆🏼"},"1F3FD":{k:"massage-1F3FD",n:"massage",e:"💆🏽"},"1F3FE":{k:"massage-1F3FE",n:"massage",e:"💆🏾"},"1F3FF":{k:"massage-1F3FF",n:"massage",e:"💆🏿"}}},{n:["flag-td"],e:"🇹🇩",c:4},{n:["man-getting-massage"],e:"💆♂️",c:1,v:{"1F3FB":{k:"man-getting-massage-1F3FB",n:"man-getting-massage",e:"💆🏻♂️"},"1F3FC":{k:"man-getting-massage-1F3FC",n:"man-getting-massage",e:"💆🏼♂️"},"1F3FD":{k:"man-getting-massage-1F3FD",n:"man-getting-massage",e:"💆🏽♂️"},"1F3FE":{k:"man-getting-massage-1F3FE",n:"man-getting-massage",e:"💆🏾♂️"},"1F3FF":{k:"man-getting-massage-1F3FF",n:"man-getting-massage",e:"💆🏿♂️"}}},{n:["flag-tf"],e:"🇹🇫",c:4},{n:["woman-getting-massage"],e:"💆♀️",c:1,v:{"1F3FB":{k:"woman-getting-massage-1F3FB",n:"woman-getting-massage",e:"💆🏻♀️"},"1F3FC":{k:"woman-getting-massage-1F3FC",n:"woman-getting-massage",e:"💆🏼♀️"},"1F3FD":{k:"woman-getting-massage-1F3FD",n:"woman-getting-massage",e:"💆🏽♀️"},"1F3FE":{k:"woman-getting-massage-1F3FE",n:"woman-getting-massage",e:"💆🏾♀️"},"1F3FF":{k:"woman-getting-massage-1F3FF",n:"woman-getting-massage",e:"💆🏿♀️"}}},{n:["flag-tg"],e:"🇹🇬",c:4},{n:["haircut"],e:"💇",c:1,v:{"1F3FB":{k:"haircut-1F3FB",n:"haircut",e:"💇🏻"},"1F3FC":{k:"haircut-1F3FC",n:"haircut",e:"💇🏼"},"1F3FD":{k:"haircut-1F3FD",n:"haircut",e:"💇🏽"},"1F3FE":{k:"haircut-1F3FE",n:"haircut",e:"💇🏾"},"1F3FF":{k:"haircut-1F3FF",n:"haircut",e:"💇🏿"}}},{n:["flag-th"],e:"🇹🇭",c:4},{n:["man-getting-haircut"],e:"💇♂️",c:1,v:{"1F3FB":{k:"man-getting-haircut-1F3FB",n:"man-getting-haircut",e:"💇🏻♂️"},"1F3FC":{k:"man-getting-haircut-1F3FC",n:"man-getting-haircut",e:"💇🏼♂️"},"1F3FD":{k:"man-getting-haircut-1F3FD",n:"man-getting-haircut",e:"💇🏽♂️"},"1F3FE":{k:"man-getting-haircut-1F3FE",n:"man-getting-haircut",e:"💇🏾♂️"},"1F3FF":{k:"man-getting-haircut-1F3FF",n:"man-getting-haircut",e:"💇🏿♂️"}}},{n:["flag-tj"],e:"🇹🇯",c:4},{n:["flag-tk"],e:"🇹🇰",c:4},{n:["woman-getting-haircut"],e:"💇♀️",c:1,v:{"1F3FB":{k:"woman-getting-haircut-1F3FB",n:"woman-getting-haircut",e:"💇🏻♀️"},"1F3FC":{k:"woman-getting-haircut-1F3FC",n:"woman-getting-haircut",e:"💇🏼♀️"},"1F3FD":{k:"woman-getting-haircut-1F3FD",n:"woman-getting-haircut",e:"💇🏽♀️"},"1F3FE":{k:"woman-getting-haircut-1F3FE",n:"woman-getting-haircut",e:"💇🏾♀️"},"1F3FF":{k:"woman-getting-haircut-1F3FF",n:"woman-getting-haircut",e:"💇🏿♀️"}}},{n:["walking"],e:"🚶",c:1,v:{"1F3FB":{k:"walking-1F3FB",n:"walking",e:"🚶🏻"},"1F3FC":{k:"walking-1F3FC",n:"walking",e:"🚶🏼"},"1F3FD":{k:"walking-1F3FD",n:"walking",e:"🚶🏽"},"1F3FE":{k:"walking-1F3FE",n:"walking",e:"🚶🏾"},"1F3FF":{k:"walking-1F3FF",n:"walking",e:"🚶🏿"}}},{n:["flag-tl"],e:"🇹🇱",c:4},{n:["man-walking"],e:"🚶♂️",c:1,v:{"1F3FB":{k:"man-walking-1F3FB",n:"man-walking",e:"🚶🏻♂️"},"1F3FC":{k:"man-walking-1F3FC",n:"man-walking",e:"🚶🏼♂️"},"1F3FD":{k:"man-walking-1F3FD",n:"man-walking",e:"🚶🏽♂️"},"1F3FE":{k:"man-walking-1F3FE",n:"man-walking",e:"🚶🏾♂️"},"1F3FF":{k:"man-walking-1F3FF",n:"man-walking",e:"🚶🏿♂️"}}},{n:["flag-tm"],e:"🇹🇲",c:4},{n:["woman-walking"],e:"🚶♀️",c:1,v:{"1F3FB":{k:"woman-walking-1F3FB",n:"woman-walking",e:"🚶🏻♀️"},"1F3FC":{k:"woman-walking-1F3FC",n:"woman-walking",e:"🚶🏼♀️"},"1F3FD":{k:"woman-walking-1F3FD",n:"woman-walking",e:"🚶🏽♀️"},"1F3FE":{k:"woman-walking-1F3FE",n:"woman-walking",e:"🚶🏾♀️"},"1F3FF":{k:"woman-walking-1F3FF",n:"woman-walking",e:"🚶🏿♀️"}}},{n:["flag-tn"],e:"🇹🇳",c:4},{n:["runner","running"],e:"🏃",c:1,v:{"1F3FB":{k:"runner-1F3FB",n:"runner",e:"🏃🏻"},"1F3FC":{k:"runner-1F3FC",n:"runner",e:"🏃🏼"},"1F3FD":{k:"runner-1F3FD",n:"runner",e:"🏃🏽"},"1F3FE":{k:"runner-1F3FE",n:"runner",e:"🏃🏾"},"1F3FF":{k:"runner-1F3FF",n:"runner",e:"🏃🏿"}}},{n:["flag-to"],e:"🇹🇴",c:4},{n:["man-running"],e:"🏃♂️",c:1,v:{"1F3FB":{k:"man-running-1F3FB",n:"man-running",e:"🏃🏻♂️"},"1F3FC":{k:"man-running-1F3FC",n:"man-running",e:"🏃🏼♂️"},"1F3FD":{k:"man-running-1F3FD",n:"man-running",e:"🏃🏽♂️"},"1F3FE":{k:"man-running-1F3FE",n:"man-running",e:"🏃🏾♂️"},"1F3FF":{k:"man-running-1F3FF",n:"man-running",e:"🏃🏿♂️"}}},{n:["flag-tr"],e:"🇹🇷",c:4},{n:["flag-tt"],e:"🇹🇹",c:4},{n:["woman-running"],e:"🏃♀️",c:1,v:{"1F3FB":{k:"woman-running-1F3FB",n:"woman-running",e:"🏃🏻♀️"},"1F3FC":{k:"woman-running-1F3FC",n:"woman-running",e:"🏃🏼♀️"},"1F3FD":{k:"woman-running-1F3FD",n:"woman-running",e:"🏃🏽♀️"},"1F3FE":{k:"woman-running-1F3FE",n:"woman-running",e:"🏃🏾♀️"},"1F3FF":{k:"woman-running-1F3FF",n:"woman-running",e:"🏃🏿♀️"}}},{n:["flag-tv"],e:"🇹🇻",c:4},{n:["dancer"],e:"💃",c:1,v:{"1F3FB":{k:"dancer-1F3FB",n:"dancer",e:"💃🏻"},"1F3FC":{k:"dancer-1F3FC",n:"dancer",e:"💃🏼"},"1F3FD":{k:"dancer-1F3FD",n:"dancer",e:"💃🏽"},"1F3FE":{k:"dancer-1F3FE",n:"dancer",e:"💃🏾"},"1F3FF":{k:"dancer-1F3FF",n:"dancer",e:"💃🏿"}}},{n:["flag-tw"],e:"🇹🇼",c:4},{n:["man_dancing"],e:"🕺",c:1,v:{"1F3FB":{k:"man_dancing-1F3FB",n:"man_dancing",e:"🕺🏻"},"1F3FC":{k:"man_dancing-1F3FC",n:"man_dancing",e:"🕺🏼"},"1F3FD":{k:"man_dancing-1F3FD",n:"man_dancing",e:"🕺🏽"},"1F3FE":{k:"man_dancing-1F3FE",n:"man_dancing",e:"🕺🏾"},"1F3FF":{k:"man_dancing-1F3FF",n:"man_dancing",e:"🕺🏿"}}},{n:["dancers"],e:"👯",c:1},{n:["flag-tz"],e:"🇹🇿",c:4},{n:["flag-ua"],e:"🇺🇦",c:4},{n:["man-with-bunny-ears-partying"],e:"👯♂️",c:1},{n:["woman-with-bunny-ears-partying"],e:"👯♀️",c:1},{n:["flag-ug"],e:"🇺🇬",c:4},{n:["flag-um"],e:"🇺🇲",c:4},{n:["person_in_steamy_room"],e:"🧖",c:1,v:{"1F3FB":{k:"person_in_steamy_room-1F3FB",n:"person_in_steamy_room",e:"🧖🏻"},"1F3FC":{k:"person_in_steamy_room-1F3FC",n:"person_in_steamy_room",e:"🧖🏼"},"1F3FD":{k:"person_in_steamy_room-1F3FD",n:"person_in_steamy_room",e:"🧖🏽"},"1F3FE":{k:"person_in_steamy_room-1F3FE",n:"person_in_steamy_room",e:"🧖🏾"},"1F3FF":{k:"person_in_steamy_room-1F3FF",n:"person_in_steamy_room",e:"🧖🏿"}}},{n:["woman_in_steamy_room"],e:"🧖♀️",c:1,v:{"1F3FB":{k:"woman_in_steamy_room-1F3FB",n:"woman_in_steamy_room",e:"🧖🏻♀️"},"1F3FC":{k:"woman_in_steamy_room-1F3FC",n:"woman_in_steamy_room",e:"🧖🏼♀️"},"1F3FD":{k:"woman_in_steamy_room-1F3FD",n:"woman_in_steamy_room",e:"🧖🏽♀️"},"1F3FE":{k:"woman_in_steamy_room-1F3FE",n:"woman_in_steamy_room",e:"🧖🏾♀️"},"1F3FF":{k:"woman_in_steamy_room-1F3FF",n:"woman_in_steamy_room",e:"🧖🏿♀️"}}},{n:["flag-un"],e:"🇺🇳",c:4},{n:["us","flag-us"],e:"🇺🇸",c:4},{n:["man_in_steamy_room"],e:"🧖♂️",c:1,v:{"1F3FB":{k:"man_in_steamy_room-1F3FB",n:"man_in_steamy_room",e:"🧖🏻♂️"},"1F3FC":{k:"man_in_steamy_room-1F3FC",n:"man_in_steamy_room",e:"🧖🏼♂️"},"1F3FD":{k:"man_in_steamy_room-1F3FD",n:"man_in_steamy_room",e:"🧖🏽♂️"},"1F3FE":{k:"man_in_steamy_room-1F3FE",n:"man_in_steamy_room",e:"🧖🏾♂️"},"1F3FF":{k:"man_in_steamy_room-1F3FF",n:"man_in_steamy_room",e:"🧖🏿♂️"}}},{n:["person_climbing"],e:"🧗",c:1,v:{"1F3FB":{k:"person_climbing-1F3FB",n:"person_climbing",e:"🧗🏻"},"1F3FC":{k:"person_climbing-1F3FC",n:"person_climbing",e:"🧗🏼"},"1F3FD":{k:"person_climbing-1F3FD",n:"person_climbing",e:"🧗🏽"},"1F3FE":{k:"person_climbing-1F3FE",n:"person_climbing",e:"🧗🏾"},"1F3FF":{k:"person_climbing-1F3FF",n:"person_climbing",e:"🧗🏿"}}},{n:["flag-uy"],e:"🇺🇾",c:4},{n:["woman_climbing"],e:"🧗♀️",c:1,v:{"1F3FB":{k:"woman_climbing-1F3FB",n:"woman_climbing",e:"🧗🏻♀️"},"1F3FC":{k:"woman_climbing-1F3FC",n:"woman_climbing",e:"🧗🏼♀️"},"1F3FD":{k:"woman_climbing-1F3FD",n:"woman_climbing",e:"🧗🏽♀️"},"1F3FE":{k:"woman_climbing-1F3FE",n:"woman_climbing",e:"🧗🏾♀️"},"1F3FF":{k:"woman_climbing-1F3FF",n:"woman_climbing",e:"🧗🏿♀️"}}},{n:["flag-uz"],e:"🇺🇿",c:4},{n:["man_climbing"],e:"🧗♂️",c:1,v:{"1F3FB":{k:"man_climbing-1F3FB",n:"man_climbing",e:"🧗🏻♂️"},"1F3FC":{k:"man_climbing-1F3FC",n:"man_climbing",e:"🧗🏼♂️"},"1F3FD":{k:"man_climbing-1F3FD",n:"man_climbing",e:"🧗🏽♂️"},"1F3FE":{k:"man_climbing-1F3FE",n:"man_climbing",e:"🧗🏾♂️"},"1F3FF":{k:"man_climbing-1F3FF",n:"man_climbing",e:"🧗🏿♂️"}}},{n:["flag-va"],e:"🇻🇦",c:4},{n:["person_in_lotus_position"],e:"🧘",c:1,v:{"1F3FB":{k:"person_in_lotus_position-1F3FB",n:"person_in_lotus_position",e:"🧘🏻"},"1F3FC":{k:"person_in_lotus_position-1F3FC",n:"person_in_lotus_position",e:"🧘🏼"},"1F3FD":{k:"person_in_lotus_position-1F3FD",n:"person_in_lotus_position",e:"🧘🏽"},"1F3FE":{k:"person_in_lotus_position-1F3FE",n:"person_in_lotus_position",e:"🧘🏾"},"1F3FF":{k:"person_in_lotus_position-1F3FF",n:"person_in_lotus_position",e:"🧘🏿"}}},{n:["flag-vc"],e:"🇻🇨",c:4},{n:["flag-ve"],e:"🇻🇪",c:4},{n:["woman_in_lotus_position"],e:"🧘♀️",c:1,v:{"1F3FB":{k:"woman_in_lotus_position-1F3FB",n:"woman_in_lotus_position",e:"🧘🏻♀️"},"1F3FC":{k:"woman_in_lotus_position-1F3FC",n:"woman_in_lotus_position",e:"🧘🏼♀️"},"1F3FD":{k:"woman_in_lotus_position-1F3FD",n:"woman_in_lotus_position",e:"🧘🏽♀️"},"1F3FE":{k:"woman_in_lotus_position-1F3FE",n:"woman_in_lotus_position",e:"🧘🏾♀️"},"1F3FF":{k:"woman_in_lotus_position-1F3FF",n:"woman_in_lotus_position",e:"🧘🏿♀️"}}},{n:["man_in_lotus_position"],e:"🧘♂️",c:1,v:{"1F3FB":{k:"man_in_lotus_position-1F3FB",n:"man_in_lotus_position",e:"🧘🏻♂️"},"1F3FC":{k:"man_in_lotus_position-1F3FC",n:"man_in_lotus_position",e:"🧘🏼♂️"},"1F3FD":{k:"man_in_lotus_position-1F3FD",n:"man_in_lotus_position",e:"🧘🏽♂️"},"1F3FE":{k:"man_in_lotus_position-1F3FE",n:"man_in_lotus_position",e:"🧘🏾♂️"},"1F3FF":{k:"man_in_lotus_position-1F3FF",n:"man_in_lotus_position",e:"🧘🏿♂️"}}},{n:["flag-vg"],e:"🇻🇬",c:4},{n:["flag-vi"],e:"🇻🇮",c:4},{n:["bath"],e:"🛀",c:1,v:{"1F3FB":{k:"bath-1F3FB",n:"bath",e:"🛀🏻"},"1F3FC":{k:"bath-1F3FC",n:"bath",e:"🛀🏼"},"1F3FD":{k:"bath-1F3FD",n:"bath",e:"🛀🏽"},"1F3FE":{k:"bath-1F3FE",n:"bath",e:"🛀🏾"},"1F3FF":{k:"bath-1F3FF",n:"bath",e:"🛀🏿"}}},{n:["sleeping_accommodation"],e:"🛌",c:1,v:{"1F3FB":{k:"sleeping_accommodation-1F3FB",n:"sleeping_accommodation",e:"🛌🏻"},"1F3FC":{k:"sleeping_accommodation-1F3FC",n:"sleeping_accommodation",e:"🛌🏼"},"1F3FD":{k:"sleeping_accommodation-1F3FD",n:"sleeping_accommodation",e:"🛌🏽"},"1F3FE":{k:"sleeping_accommodation-1F3FE",n:"sleeping_accommodation",e:"🛌🏾"},"1F3FF":{k:"sleeping_accommodation-1F3FF",n:"sleeping_accommodation",e:"🛌🏿"}}},{n:["flag-vn"],e:"🇻🇳",c:4},{n:["man_in_business_suit_levitating"],e:"🕴️",c:1,v:{"1F3FB":{k:"man_in_business_suit_levitating-1F3FB",n:"man_in_business_suit_levitating",e:"🕴🏻"},"1F3FC":{k:"man_in_business_suit_levitating-1F3FC",n:"man_in_business_suit_levitating",e:"🕴🏼"},"1F3FD":{k:"man_in_business_suit_levitating-1F3FD",n:"man_in_business_suit_levitating",e:"🕴🏽"},"1F3FE":{k:"man_in_business_suit_levitating-1F3FE",n:"man_in_business_suit_levitating",e:"🕴🏾"},"1F3FF":{k:"man_in_business_suit_levitating-1F3FF",n:"man_in_business_suit_levitating",e:"🕴🏿"}}},{n:["flag-vu"],e:"🇻🇺",c:4},{n:["flag-wf"],e:"🇼🇫",c:4},{n:["speaking_head_in_silhouette"],e:"🗣️",c:1},{n:["bust_in_silhouette"],e:"👤",c:1},{n:["flag-ws"],e:"🇼🇸",c:4},{n:["busts_in_silhouette"],e:"👥",c:1},{n:["flag-xk"],e:"🇽🇰",c:4},{n:["fencer"],e:"🤺",c:1},{n:["flag-ye"],e:"🇾🇪",c:4},{n:["flag-yt"],e:"🇾🇹",c:4},{n:["horse_racing"],e:"🏇",c:1,v:{"1F3FB":{k:"horse_racing-1F3FB",n:"horse_racing",e:"🏇🏻"},"1F3FC":{k:"horse_racing-1F3FC",n:"horse_racing",e:"🏇🏼"},"1F3FD":{k:"horse_racing-1F3FD",n:"horse_racing",e:"🏇🏽"},"1F3FE":{k:"horse_racing-1F3FE",n:"horse_racing",e:"🏇🏾"},"1F3FF":{k:"horse_racing-1F3FF",n:"horse_racing",e:"🏇🏿"}}},{n:["flag-za"],e:"🇿🇦",c:4},{n:["skier"],e:"⛷️",c:1},{n:["flag-zm"],e:"🇿🇲",c:4},{n:["snowboarder"],e:"🏂",c:1,v:{"1F3FB":{k:"snowboarder-1F3FB",n:"snowboarder",e:"🏂🏻"},"1F3FC":{k:"snowboarder-1F3FC",n:"snowboarder",e:"🏂🏼"},"1F3FD":{k:"snowboarder-1F3FD",n:"snowboarder",e:"🏂🏽"},"1F3FE":{k:"snowboarder-1F3FE",n:"snowboarder",e:"🏂🏾"},"1F3FF":{k:"snowboarder-1F3FF",n:"snowboarder",e:"🏂🏿"}}},{n:["golfer"],e:"🏌️",c:1,v:{"1F3FB":{k:"golfer-1F3FB",n:"golfer",e:"🏌🏻"},"1F3FC":{k:"golfer-1F3FC",n:"golfer",e:"🏌🏼"},"1F3FD":{k:"golfer-1F3FD",n:"golfer",e:"🏌🏽"},"1F3FE":{k:"golfer-1F3FE",n:"golfer",e:"🏌🏾"},"1F3FF":{k:"golfer-1F3FF",n:"golfer",e:"🏌🏿"}}},{n:["flag-zw"],e:"🇿🇼",c:4},{n:["man-golfing"],e:"🏌️♂️",c:1,v:{"1F3FB":{k:"man-golfing-1F3FB",n:"man-golfing",e:"🏌🏻♂️"},"1F3FC":{k:"man-golfing-1F3FC",n:"man-golfing",e:"🏌🏼♂️"},"1F3FD":{k:"man-golfing-1F3FD",n:"man-golfing",e:"🏌🏽♂️"},"1F3FE":{k:"man-golfing-1F3FE",n:"man-golfing",e:"🏌🏾♂️"},"1F3FF":{k:"man-golfing-1F3FF",n:"man-golfing",e:"🏌🏿♂️"}}},{n:["flag-england"],e:"🏴",c:4},{n:["woman-golfing"],e:"🏌️♀️",c:1,v:{"1F3FB":{k:"woman-golfing-1F3FB",n:"woman-golfing",e:"🏌🏻♀️"},"1F3FC":{k:"woman-golfing-1F3FC",n:"woman-golfing",e:"🏌🏼♀️"},"1F3FD":{k:"woman-golfing-1F3FD",n:"woman-golfing",e:"🏌🏽♀️"},"1F3FE":{k:"woman-golfing-1F3FE",n:"woman-golfing",e:"🏌🏾♀️"},"1F3FF":{k:"woman-golfing-1F3FF",n:"woman-golfing",e:"🏌🏿♀️"}}},{n:["flag-scotland"],e:"🏴",c:4},{n:["flag-wales"],e:"🏴",c:4},{n:["surfer"],e:"🏄",c:1,v:{"1F3FB":{k:"surfer-1F3FB",n:"surfer",e:"🏄🏻"},"1F3FC":{k:"surfer-1F3FC",n:"surfer",e:"🏄🏼"},"1F3FD":{k:"surfer-1F3FD",n:"surfer",e:"🏄🏽"},"1F3FE":{k:"surfer-1F3FE",n:"surfer",e:"🏄🏾"},"1F3FF":{k:"surfer-1F3FF",n:"surfer",e:"🏄🏿"}}},{n:["man-surfing"],e:"🏄♂️",c:1,v:{"1F3FB":{k:"man-surfing-1F3FB",n:"man-surfing",e:"🏄🏻♂️"},"1F3FC":{k:"man-surfing-1F3FC",n:"man-surfing",e:"🏄🏼♂️"},"1F3FD":{k:"man-surfing-1F3FD",n:"man-surfing",e:"🏄🏽♂️"},"1F3FE":{k:"man-surfing-1F3FE",n:"man-surfing",e:"🏄🏾♂️"},"1F3FF":{k:"man-surfing-1F3FF",n:"man-surfing",e:"🏄🏿♂️"}}},{n:["woman-surfing"],e:"🏄♀️",c:1,v:{"1F3FB":{k:"woman-surfing-1F3FB",n:"woman-surfing",e:"🏄🏻♀️"},"1F3FC":{k:"woman-surfing-1F3FC",n:"woman-surfing",e:"🏄🏼♀️"},"1F3FD":{k:"woman-surfing-1F3FD",n:"woman-surfing",e:"🏄🏽♀️"},"1F3FE":{k:"woman-surfing-1F3FE",n:"woman-surfing",e:"🏄🏾♀️"},"1F3FF":{k:"woman-surfing-1F3FF",n:"woman-surfing",e:"🏄🏿♀️"}}},{n:["rowboat"],e:"🚣",c:1,v:{"1F3FB":{k:"rowboat-1F3FB",n:"rowboat",e:"🚣🏻"},"1F3FC":{k:"rowboat-1F3FC",n:"rowboat",e:"🚣🏼"},"1F3FD":{k:"rowboat-1F3FD",n:"rowboat",e:"🚣🏽"},"1F3FE":{k:"rowboat-1F3FE",n:"rowboat",e:"🚣🏾"},"1F3FF":{k:"rowboat-1F3FF",n:"rowboat",e:"🚣🏿"}}},{n:["man-rowing-boat"],e:"🚣♂️",c:1,v:{"1F3FB":{k:"man-rowing-boat-1F3FB",n:"man-rowing-boat",e:"🚣🏻♂️"},"1F3FC":{k:"man-rowing-boat-1F3FC",n:"man-rowing-boat",e:"🚣🏼♂️"},"1F3FD":{k:"man-rowing-boat-1F3FD",n:"man-rowing-boat",e:"🚣🏽♂️"},"1F3FE":{k:"man-rowing-boat-1F3FE",n:"man-rowing-boat",e:"🚣🏾♂️"},"1F3FF":{k:"man-rowing-boat-1F3FF",n:"man-rowing-boat",e:"🚣🏿♂️"}}},{n:["woman-rowing-boat"],e:"🚣♀️",c:1,v:{"1F3FB":{k:"woman-rowing-boat-1F3FB",n:"woman-rowing-boat",e:"🚣🏻♀️"},"1F3FC":{k:"woman-rowing-boat-1F3FC",n:"woman-rowing-boat",e:"🚣🏼♀️"},"1F3FD":{k:"woman-rowing-boat-1F3FD",n:"woman-rowing-boat",e:"🚣🏽♀️"},"1F3FE":{k:"woman-rowing-boat-1F3FE",n:"woman-rowing-boat",e:"🚣🏾♀️"},"1F3FF":{k:"woman-rowing-boat-1F3FF",n:"woman-rowing-boat",e:"🚣🏿♀️"}}},{n:["swimmer"],e:"🏊",c:1,v:{"1F3FB":{k:"swimmer-1F3FB",n:"swimmer",e:"🏊🏻"},"1F3FC":{k:"swimmer-1F3FC",n:"swimmer",e:"🏊🏼"},"1F3FD":{k:"swimmer-1F3FD",n:"swimmer",e:"🏊🏽"},"1F3FE":{k:"swimmer-1F3FE",n:"swimmer",e:"🏊🏾"},"1F3FF":{k:"swimmer-1F3FF",n:"swimmer",e:"🏊🏿"}}},{n:["man-swimming"],e:"🏊♂️",c:1,v:{"1F3FB":{k:"man-swimming-1F3FB",n:"man-swimming",e:"🏊🏻♂️"},"1F3FC":{k:"man-swimming-1F3FC",n:"man-swimming",e:"🏊🏼♂️"},"1F3FD":{k:"man-swimming-1F3FD",n:"man-swimming",e:"🏊🏽♂️"},"1F3FE":{k:"man-swimming-1F3FE",n:"man-swimming",e:"🏊🏾♂️"},"1F3FF":{k:"man-swimming-1F3FF",n:"man-swimming",e:"🏊🏿♂️"}}},{n:["woman-swimming"],e:"🏊♀️",c:1,v:{"1F3FB":{k:"woman-swimming-1F3FB",n:"woman-swimming",e:"🏊🏻♀️"},"1F3FC":{k:"woman-swimming-1F3FC",n:"woman-swimming",e:"🏊🏼♀️"},"1F3FD":{k:"woman-swimming-1F3FD",n:"woman-swimming",e:"🏊🏽♀️"},"1F3FE":{k:"woman-swimming-1F3FE",n:"woman-swimming",e:"🏊🏾♀️"},"1F3FF":{k:"woman-swimming-1F3FF",n:"woman-swimming",e:"🏊🏿♀️"}}},{n:["person_with_ball"],e:"⛹️",c:1,v:{"1F3FB":{k:"person_with_ball-1F3FB",n:"person_with_ball",e:"⛹🏻"},"1F3FC":{k:"person_with_ball-1F3FC",n:"person_with_ball",e:"⛹🏼"},"1F3FD":{k:"person_with_ball-1F3FD",n:"person_with_ball",e:"⛹🏽"},"1F3FE":{k:"person_with_ball-1F3FE",n:"person_with_ball",e:"⛹🏾"},"1F3FF":{k:"person_with_ball-1F3FF",n:"person_with_ball",e:"⛹🏿"}}},{n:["man-bouncing-ball"],e:"⛹️♂️",c:1,v:{"1F3FB":{k:"man-bouncing-ball-1F3FB",n:"man-bouncing-ball",e:"⛹🏻♂️"},"1F3FC":{k:"man-bouncing-ball-1F3FC",n:"man-bouncing-ball",e:"⛹🏼♂️"},"1F3FD":{k:"man-bouncing-ball-1F3FD",n:"man-bouncing-ball",e:"⛹🏽♂️"},"1F3FE":{k:"man-bouncing-ball-1F3FE",n:"man-bouncing-ball",e:"⛹🏾♂️"},"1F3FF":{k:"man-bouncing-ball-1F3FF",n:"man-bouncing-ball",e:"⛹🏿♂️"}}},{n:["woman-bouncing-ball"],e:"⛹️♀️",c:1,v:{"1F3FB":{k:"woman-bouncing-ball-1F3FB",n:"woman-bouncing-ball",e:"⛹🏻♀️"},"1F3FC":{k:"woman-bouncing-ball-1F3FC",n:"woman-bouncing-ball",e:"⛹🏼♀️"},"1F3FD":{k:"woman-bouncing-ball-1F3FD",n:"woman-bouncing-ball",e:"⛹🏽♀️"},"1F3FE":{k:"woman-bouncing-ball-1F3FE",n:"woman-bouncing-ball",e:"⛹🏾♀️"},"1F3FF":{k:"woman-bouncing-ball-1F3FF",n:"woman-bouncing-ball",e:"⛹🏿♀️"}}},{n:["weight_lifter"],e:"🏋️",c:1,v:{"1F3FB":{k:"weight_lifter-1F3FB",n:"weight_lifter",e:"🏋🏻"},"1F3FC":{k:"weight_lifter-1F3FC",n:"weight_lifter",e:"🏋🏼"},"1F3FD":{k:"weight_lifter-1F3FD",n:"weight_lifter",e:"🏋🏽"},"1F3FE":{k:"weight_lifter-1F3FE",n:"weight_lifter",e:"🏋🏾"},"1F3FF":{k:"weight_lifter-1F3FF",n:"weight_lifter",e:"🏋🏿"}}},{n:["man-lifting-weights"],e:"🏋️♂️",c:1,v:{"1F3FB":{k:"man-lifting-weights-1F3FB",n:"man-lifting-weights",e:"🏋🏻♂️"},"1F3FC":{k:"man-lifting-weights-1F3FC",n:"man-lifting-weights",e:"🏋🏼♂️"},"1F3FD":{k:"man-lifting-weights-1F3FD",n:"man-lifting-weights",e:"🏋🏽♂️"},"1F3FE":{k:"man-lifting-weights-1F3FE",n:"man-lifting-weights",e:"🏋🏾♂️"},"1F3FF":{k:"man-lifting-weights-1F3FF",n:"man-lifting-weights",e:"🏋🏿♂️"}}},{n:["woman-lifting-weights"],e:"🏋️♀️",c:1,v:{"1F3FB":{k:"woman-lifting-weights-1F3FB",n:"woman-lifting-weights",e:"🏋🏻♀️"},"1F3FC":{k:"woman-lifting-weights-1F3FC",n:"woman-lifting-weights",e:"🏋🏼♀️"},"1F3FD":{k:"woman-lifting-weights-1F3FD",n:"woman-lifting-weights",e:"🏋🏽♀️"},"1F3FE":{k:"woman-lifting-weights-1F3FE",n:"woman-lifting-weights",e:"🏋🏾♀️"},"1F3FF":{k:"woman-lifting-weights-1F3FF",n:"woman-lifting-weights",e:"🏋🏿♀️"}}},{n:["bicyclist"],e:"🚴",c:1,v:{"1F3FB":{k:"bicyclist-1F3FB",n:"bicyclist",e:"🚴🏻"},"1F3FC":{k:"bicyclist-1F3FC",n:"bicyclist",e:"🚴🏼"},"1F3FD":{k:"bicyclist-1F3FD",n:"bicyclist",e:"🚴🏽"},"1F3FE":{k:"bicyclist-1F3FE",n:"bicyclist",e:"🚴🏾"},"1F3FF":{k:"bicyclist-1F3FF",n:"bicyclist",e:"🚴🏿"}}},{n:["man-biking"],e:"🚴♂️",c:1,v:{"1F3FB":{k:"man-biking-1F3FB",n:"man-biking",e:"🚴🏻♂️"},"1F3FC":{k:"man-biking-1F3FC",n:"man-biking",e:"🚴🏼♂️"},"1F3FD":{k:"man-biking-1F3FD",n:"man-biking",e:"🚴🏽♂️"},"1F3FE":{k:"man-biking-1F3FE",n:"man-biking",e:"🚴🏾♂️"},"1F3FF":{k:"man-biking-1F3FF",n:"man-biking",e:"🚴🏿♂️"}}},{n:["woman-biking"],e:"🚴♀️",c:1,v:{"1F3FB":{k:"woman-biking-1F3FB",n:"woman-biking",e:"🚴🏻♀️"},"1F3FC":{k:"woman-biking-1F3FC",n:"woman-biking",e:"🚴🏼♀️"},"1F3FD":{k:"woman-biking-1F3FD",n:"woman-biking",e:"🚴🏽♀️"},"1F3FE":{k:"woman-biking-1F3FE",n:"woman-biking",e:"🚴🏾♀️"},"1F3FF":{k:"woman-biking-1F3FF",n:"woman-biking",e:"🚴🏿♀️"}}},{n:["mountain_bicyclist"],e:"🚵",c:1,v:{"1F3FB":{k:"mountain_bicyclist-1F3FB",n:"mountain_bicyclist",e:"🚵🏻"},"1F3FC":{k:"mountain_bicyclist-1F3FC",n:"mountain_bicyclist",e:"🚵🏼"},"1F3FD":{k:"mountain_bicyclist-1F3FD",n:"mountain_bicyclist",e:"🚵🏽"},"1F3FE":{k:"mountain_bicyclist-1F3FE",n:"mountain_bicyclist",e:"🚵🏾"},"1F3FF":{k:"mountain_bicyclist-1F3FF",n:"mountain_bicyclist",e:"🚵🏿"}}},{n:["man-mountain-biking"],e:"🚵♂️",c:1,v:{"1F3FB":{k:"man-mountain-biking-1F3FB",n:"man-mountain-biking",e:"🚵🏻♂️"},"1F3FC":{k:"man-mountain-biking-1F3FC",n:"man-mountain-biking",e:"🚵🏼♂️"},"1F3FD":{k:"man-mountain-biking-1F3FD",n:"man-mountain-biking",e:"🚵🏽♂️"},"1F3FE":{k:"man-mountain-biking-1F3FE",n:"man-mountain-biking",e:"🚵🏾♂️"},"1F3FF":{k:"man-mountain-biking-1F3FF",n:"man-mountain-biking",e:"🚵🏿♂️"}}},{n:["woman-mountain-biking"],e:"🚵♀️",c:1,v:{"1F3FB":{k:"woman-mountain-biking-1F3FB",n:"woman-mountain-biking",e:"🚵🏻♀️"},"1F3FC":{k:"woman-mountain-biking-1F3FC",n:"woman-mountain-biking",e:"🚵🏼♀️"},"1F3FD":{k:"woman-mountain-biking-1F3FD",n:"woman-mountain-biking",e:"🚵🏽♀️"},"1F3FE":{k:"woman-mountain-biking-1F3FE",n:"woman-mountain-biking",e:"🚵🏾♀️"},"1F3FF":{k:"woman-mountain-biking-1F3FF",n:"woman-mountain-biking",e:"🚵🏿♀️"}}},{n:["racing_car"],e:"🏎️",c:1},{n:["racing_motorcycle"],e:"🏍️",c:1},{n:["person_doing_cartwheel"],e:"🤸",c:1,v:{"1F3FB":{k:"person_doing_cartwheel-1F3FB",n:"person_doing_cartwheel",e:"🤸🏻"},"1F3FC":{k:"person_doing_cartwheel-1F3FC",n:"person_doing_cartwheel",e:"🤸🏼"},"1F3FD":{k:"person_doing_cartwheel-1F3FD",n:"person_doing_cartwheel",e:"🤸🏽"},"1F3FE":{k:"person_doing_cartwheel-1F3FE",n:"person_doing_cartwheel",e:"🤸🏾"},"1F3FF":{k:"person_doing_cartwheel-1F3FF",n:"person_doing_cartwheel",e:"🤸🏿"}}},{n:["man-cartwheeling"],e:"🤸♂️",c:1,v:{"1F3FB":{k:"man-cartwheeling-1F3FB",n:"man-cartwheeling",e:"🤸🏻♂️"},"1F3FC":{k:"man-cartwheeling-1F3FC",n:"man-cartwheeling",e:"🤸🏼♂️"},"1F3FD":{k:"man-cartwheeling-1F3FD",n:"man-cartwheeling",e:"🤸🏽♂️"},"1F3FE":{k:"man-cartwheeling-1F3FE",n:"man-cartwheeling",e:"🤸🏾♂️"},"1F3FF":{k:"man-cartwheeling-1F3FF",n:"man-cartwheeling",e:"🤸🏿♂️"}}},{n:["woman-cartwheeling"],e:"🤸♀️",c:1,v:{"1F3FB":{k:"woman-cartwheeling-1F3FB",n:"woman-cartwheeling",e:"🤸🏻♀️"},"1F3FC":{k:"woman-cartwheeling-1F3FC",n:"woman-cartwheeling",e:"🤸🏼♀️"},"1F3FD":{k:"woman-cartwheeling-1F3FD",n:"woman-cartwheeling",e:"🤸🏽♀️"},"1F3FE":{k:"woman-cartwheeling-1F3FE",n:"woman-cartwheeling",e:"🤸🏾♀️"},"1F3FF":{k:"woman-cartwheeling-1F3FF",n:"woman-cartwheeling",e:"🤸🏿♀️"}}},{n:["wrestlers"],e:"🤼",c:1},{n:["man-wrestling"],e:"🤼♂️",c:1},{n:["woman-wrestling"],e:"🤼♀️",c:1},{n:["water_polo"],e:"🤽",c:1,v:{"1F3FB":{k:"water_polo-1F3FB",n:"water_polo",e:"🤽🏻"},"1F3FC":{k:"water_polo-1F3FC",n:"water_polo",e:"🤽🏼"},"1F3FD":{k:"water_polo-1F3FD",n:"water_polo",e:"🤽🏽"},"1F3FE":{k:"water_polo-1F3FE",n:"water_polo",e:"🤽🏾"},"1F3FF":{k:"water_polo-1F3FF",n:"water_polo",e:"🤽🏿"}}},{n:["man-playing-water-polo"],e:"🤽♂️",c:1,v:{"1F3FB":{k:"man-playing-water-polo-1F3FB",n:"man-playing-water-polo",e:"🤽🏻♂️"},"1F3FC":{k:"man-playing-water-polo-1F3FC",n:"man-playing-water-polo",e:"🤽🏼♂️"},"1F3FD":{k:"man-playing-water-polo-1F3FD",n:"man-playing-water-polo",e:"🤽🏽♂️"},"1F3FE":{k:"man-playing-water-polo-1F3FE",n:"man-playing-water-polo",e:"🤽🏾♂️"},"1F3FF":{k:"man-playing-water-polo-1F3FF",n:"man-playing-water-polo",e:"🤽🏿♂️"}}},{n:["woman-playing-water-polo"],e:"🤽♀️",c:1,v:{"1F3FB":{k:"woman-playing-water-polo-1F3FB",n:"woman-playing-water-polo",e:"🤽🏻♀️"},"1F3FC":{k:"woman-playing-water-polo-1F3FC",n:"woman-playing-water-polo",e:"🤽🏼♀️"},"1F3FD":{k:"woman-playing-water-polo-1F3FD",n:"woman-playing-water-polo",e:"🤽🏽♀️"},"1F3FE":{k:"woman-playing-water-polo-1F3FE",n:"woman-playing-water-polo",e:"🤽🏾♀️"},"1F3FF":{k:"woman-playing-water-polo-1F3FF",n:"woman-playing-water-polo",e:"🤽🏿♀️"}}},{n:["handball"],e:"🤾",c:1,v:{"1F3FB":{k:"handball-1F3FB",n:"handball",e:"🤾🏻"},"1F3FC":{k:"handball-1F3FC",n:"handball",e:"🤾🏼"},"1F3FD":{k:"handball-1F3FD",n:"handball",e:"🤾🏽"},"1F3FE":{k:"handball-1F3FE",n:"handball",e:"🤾🏾"},"1F3FF":{k:"handball-1F3FF",n:"handball",e:"🤾🏿"}}},{n:["man-playing-handball"],e:"🤾♂️",c:1,v:{"1F3FB":{k:"man-playing-handball-1F3FB",n:"man-playing-handball",e:"🤾🏻♂️"},"1F3FC":{k:"man-playing-handball-1F3FC",n:"man-playing-handball",e:"🤾🏼♂️"},"1F3FD":{k:"man-playing-handball-1F3FD",n:"man-playing-handball",e:"🤾🏽♂️"},"1F3FE":{k:"man-playing-handball-1F3FE",n:"man-playing-handball",e:"🤾🏾♂️"},"1F3FF":{k:"man-playing-handball-1F3FF",n:"man-playing-handball",e:"🤾🏿♂️"}}},{n:["woman-playing-handball"],e:"🤾♀️",c:1,v:{"1F3FB":{k:"woman-playing-handball-1F3FB",n:"woman-playing-handball",e:"🤾🏻♀️"},"1F3FC":{k:"woman-playing-handball-1F3FC",n:"woman-playing-handball",e:"🤾🏼♀️"},"1F3FD":{k:"woman-playing-handball-1F3FD",n:"woman-playing-handball",e:"🤾🏽♀️"},"1F3FE":{k:"woman-playing-handball-1F3FE",n:"woman-playing-handball",e:"🤾🏾♀️"},"1F3FF":{k:"woman-playing-handball-1F3FF",n:"woman-playing-handball",e:"🤾🏿♀️"}}},{n:["juggling"],e:"🤹",c:1,v:{"1F3FB":{k:"juggling-1F3FB",n:"juggling",e:"🤹🏻"},"1F3FC":{k:"juggling-1F3FC",n:"juggling",e:"🤹🏼"},"1F3FD":{k:"juggling-1F3FD",n:"juggling",e:"🤹🏽"},"1F3FE":{k:"juggling-1F3FE",n:"juggling",e:"🤹🏾"},"1F3FF":{k:"juggling-1F3FF",n:"juggling",e:"🤹🏿"}}},{n:["man-juggling"],e:"🤹♂️",c:1,v:{"1F3FB":{k:"man-juggling-1F3FB",n:"man-juggling",e:"🤹🏻♂️"},"1F3FC":{k:"man-juggling-1F3FC",n:"man-juggling",e:"🤹🏼♂️"},"1F3FD":{k:"man-juggling-1F3FD",n:"man-juggling",e:"🤹🏽♂️"},"1F3FE":{k:"man-juggling-1F3FE",n:"man-juggling",e:"🤹🏾♂️"},"1F3FF":{k:"man-juggling-1F3FF",n:"man-juggling",e:"🤹🏿♂️"}}},{n:["woman-juggling"],e:"🤹♀️",c:1,v:{"1F3FB":{k:"woman-juggling-1F3FB",n:"woman-juggling",e:"🤹🏻♀️"},"1F3FC":{k:"woman-juggling-1F3FC",n:"woman-juggling",e:"🤹🏼♀️"},"1F3FD":{k:"woman-juggling-1F3FD",n:"woman-juggling",e:"🤹🏽♀️"},"1F3FE":{k:"woman-juggling-1F3FE",n:"woman-juggling",e:"🤹🏾♀️"},"1F3FF":{k:"woman-juggling-1F3FF",n:"woman-juggling",e:"🤹🏿♀️"}}},{n:["couple","man_and_woman_holding_hands"],e:"👫",c:1},{n:["two_men_holding_hands"],e:"👬",c:1},{n:["two_women_holding_hands"],e:"👭",c:1},{n:["couplekiss"],e:"💏",c:1},{n:["woman-kiss-man"],e:"👩❤️💋👨",c:1},{n:["man-kiss-man"],e:"👨❤️💋👨",c:1},{n:["woman-kiss-woman"],e:"👩❤️💋👩",c:1},{n:["couple_with_heart"],e:"💑",c:1},{n:["woman-heart-man"],e:"👩❤️👨",c:1},{n:["man-heart-man"],e:"👨❤️👨",c:1},{n:["woman-heart-woman"],e:"👩❤️👩",c:1},{n:["family","man-woman-boy"],e:"👪",c:1},{n:["man-woman-boy","family"],e:"👨👩👦",c:1},{n:["man-woman-girl"],e:"👨👩👧",c:1},{n:["man-woman-girl-boy"],e:"👨👩👧👦",c:1},{n:["man-woman-boy-boy"],e:"👨👩👦👦",c:1},{n:["man-woman-girl-girl"],e:"👨👩👧👧",c:1},{n:["man-man-boy"],e:"👨👨👦",c:1},{n:["man-man-girl"],e:"👨👨👧",c:1},{n:["man-man-girl-boy"],e:"👨👨👧👦",c:1},{n:["man-man-boy-boy"],e:"👨👨👦👦",c:1},{n:["man-man-girl-girl"],e:"👨👨👧👧",c:1},{n:["woman-woman-boy"],e:"👩👩👦",c:1},{n:["woman-woman-girl"],e:"👩👩👧",c:1},{n:["woman-woman-girl-boy"],e:"👩👩👧👦",c:1},{n:["woman-woman-boy-boy"],e:"👩👩👦👦",c:1},{n:["woman-woman-girl-girl"],e:"👩👩👧👧",c:1},{n:["man-boy"],e:"👨👦",c:1},{n:["man-boy-boy"],e:"👨👦👦",c:1},{n:["man-girl"],e:"👨👧",c:1},{n:["man-girl-boy"],e:"👨👧👦",c:1},{n:["man-girl-girl"],e:"👨👧👧",c:1},{n:["woman-boy"],e:"👩👦",c:1},{n:["woman-boy-boy"],e:"👩👦👦",c:1},{n:["woman-girl"],e:"👩👧",c:1},{n:["woman-girl-boy"],e:"👩👧👦",c:1},{n:["woman-girl-girl"],e:"👩👧👧",c:1},{n:["selfie"],e:"🤳",c:1,v:{"1F3FB":{k:"selfie-1F3FB",n:"selfie",e:"🤳🏻"},"1F3FC":{k:"selfie-1F3FC",n:"selfie",e:"🤳🏼"},"1F3FD":{k:"selfie-1F3FD",n:"selfie",e:"🤳🏽"},"1F3FE":{k:"selfie-1F3FE",n:"selfie",e:"🤳🏾"},"1F3FF":{k:"selfie-1F3FF",n:"selfie",e:"🤳🏿"}}},{n:["muscle"],e:"💪",c:1,v:{"1F3FB":{k:"muscle-1F3FB",n:"muscle",e:"💪🏻"},"1F3FC":{k:"muscle-1F3FC",n:"muscle",e:"💪🏼"},"1F3FD":{k:"muscle-1F3FD",n:"muscle",e:"💪🏽"},"1F3FE":{k:"muscle-1F3FE",n:"muscle",e:"💪🏾"},"1F3FF":{k:"muscle-1F3FF",n:"muscle",e:"💪🏿"}}},{n:["point_left"],e:"👈",c:1,v:{"1F3FB":{k:"point_left-1F3FB",n:"point_left",e:"👈🏻"},"1F3FC":{k:"point_left-1F3FC",n:"point_left",e:"👈🏼"},"1F3FD":{k:"point_left-1F3FD",n:"point_left",e:"👈🏽"},"1F3FE":{k:"point_left-1F3FE",n:"point_left",e:"👈🏾"},"1F3FF":{k:"point_left-1F3FF",n:"point_left",e:"👈🏿"}}},{n:["point_right"],e:"👉",c:1,v:{"1F3FB":{k:"point_right-1F3FB",n:"point_right",e:"👉🏻"},"1F3FC":{k:"point_right-1F3FC",n:"point_right",e:"👉🏼"},"1F3FD":{k:"point_right-1F3FD",n:"point_right",e:"👉🏽"},"1F3FE":{k:"point_right-1F3FE",n:"point_right",e:"👉🏾"},"1F3FF":{k:"point_right-1F3FF",n:"point_right",e:"👉🏿"}}},{n:["point_up"],e:"☝️",c:1,v:{"1F3FB":{k:"point_up-1F3FB",n:"point_up",e:"☝🏻"},"1F3FC":{k:"point_up-1F3FC",n:"point_up",e:"☝🏼"},"1F3FD":{k:"point_up-1F3FD",n:"point_up",e:"☝🏽"},"1F3FE":{k:"point_up-1F3FE",n:"point_up",e:"☝🏾"},"1F3FF":{k:"point_up-1F3FF",n:"point_up",e:"☝🏿"}}},{n:["point_up_2"],e:"👆",c:1,v:{"1F3FB":{k:"point_up_2-1F3FB",n:"point_up_2",e:"👆🏻"},"1F3FC":{k:"point_up_2-1F3FC",n:"point_up_2",e:"👆🏼"},"1F3FD":{k:"point_up_2-1F3FD",n:"point_up_2",e:"👆🏽"},"1F3FE":{k:"point_up_2-1F3FE",n:"point_up_2",e:"👆🏾"},"1F3FF":{k:"point_up_2-1F3FF",n:"point_up_2",e:"👆🏿"}}},{n:["middle_finger","reversed_hand_with_middle_finger_extended"],e:"🖕",c:1,v:{"1F3FB":{k:"middle_finger-1F3FB",n:"middle_finger",e:"🖕🏻"},"1F3FC":{k:"middle_finger-1F3FC",n:"middle_finger",e:"🖕🏼"},"1F3FD":{k:"middle_finger-1F3FD",n:"middle_finger",e:"🖕🏽"},"1F3FE":{k:"middle_finger-1F3FE",n:"middle_finger",e:"🖕🏾"},"1F3FF":{k:"middle_finger-1F3FF",n:"middle_finger",e:"🖕🏿"}}},{n:["point_down"],e:"👇",c:1,v:{"1F3FB":{k:"point_down-1F3FB",n:"point_down",e:"👇🏻"},"1F3FC":{k:"point_down-1F3FC",n:"point_down",e:"👇🏼"},"1F3FD":{k:"point_down-1F3FD",n:"point_down",e:"👇🏽"},"1F3FE":{k:"point_down-1F3FE",n:"point_down",e:"👇🏾"},"1F3FF":{k:"point_down-1F3FF",n:"point_down",e:"👇🏿"}}},{n:["v"],e:"✌️",c:1,v:{"1F3FB":{k:"v-1F3FB",n:"v",e:"✌🏻"},"1F3FC":{k:"v-1F3FC",n:"v",e:"✌🏼"},"1F3FD":{k:"v-1F3FD",n:"v",e:"✌🏽"},"1F3FE":{k:"v-1F3FE",n:"v",e:"✌🏾"},"1F3FF":{k:"v-1F3FF",n:"v",e:"✌🏿"}}},{n:["crossed_fingers","hand_with_index_and_middle_fingers_crossed"],e:"🤞",c:1,v:{"1F3FB":{k:"crossed_fingers-1F3FB",n:"crossed_fingers",e:"🤞🏻"},"1F3FC":{k:"crossed_fingers-1F3FC",n:"crossed_fingers",e:"🤞🏼"},"1F3FD":{k:"crossed_fingers-1F3FD",n:"crossed_fingers",e:"🤞🏽"},"1F3FE":{k:"crossed_fingers-1F3FE",n:"crossed_fingers",e:"🤞🏾"},"1F3FF":{k:"crossed_fingers-1F3FF",n:"crossed_fingers",e:"🤞🏿"}}},{n:["spock-hand"],e:"🖖",c:1,v:{"1F3FB":{k:"spock-hand-1F3FB",n:"spock-hand",e:"🖖🏻"},"1F3FC":{k:"spock-hand-1F3FC",n:"spock-hand",e:"🖖🏼"},"1F3FD":{k:"spock-hand-1F3FD",n:"spock-hand",e:"🖖🏽"},"1F3FE":{k:"spock-hand-1F3FE",n:"spock-hand",e:"🖖🏾"},"1F3FF":{k:"spock-hand-1F3FF",n:"spock-hand",e:"🖖🏿"}}},{n:["the_horns","sign_of_the_horns"],e:"🤘",c:1,v:{"1F3FB":{k:"the_horns-1F3FB",n:"the_horns",e:"🤘🏻"},"1F3FC":{k:"the_horns-1F3FC",n:"the_horns",e:"🤘🏼"},"1F3FD":{k:"the_horns-1F3FD",n:"the_horns",e:"🤘🏽"},"1F3FE":{k:"the_horns-1F3FE",n:"the_horns",e:"🤘🏾"},"1F3FF":{k:"the_horns-1F3FF",n:"the_horns",e:"🤘🏿"}}},{n:["call_me_hand"],e:"🤙",c:1,v:{"1F3FB":{k:"call_me_hand-1F3FB",n:"call_me_hand",e:"🤙🏻"},"1F3FC":{k:"call_me_hand-1F3FC",n:"call_me_hand",e:"🤙🏼"},"1F3FD":{k:"call_me_hand-1F3FD",n:"call_me_hand",e:"🤙🏽"},"1F3FE":{k:"call_me_hand-1F3FE",n:"call_me_hand",e:"🤙🏾"},"1F3FF":{k:"call_me_hand-1F3FF",n:"call_me_hand",e:"🤙🏿"}}},{n:["raised_hand_with_fingers_splayed"],e:"🖐️",c:1,v:{"1F3FB":{k:"raised_hand_with_fingers_splayed-1F3FB",n:"raised_hand_with_fingers_splayed",e:"🖐🏻"},"1F3FC":{k:"raised_hand_with_fingers_splayed-1F3FC",n:"raised_hand_with_fingers_splayed",e:"🖐🏼"},"1F3FD":{k:"raised_hand_with_fingers_splayed-1F3FD",n:"raised_hand_with_fingers_splayed",e:"🖐🏽"},"1F3FE":{k:"raised_hand_with_fingers_splayed-1F3FE",n:"raised_hand_with_fingers_splayed",e:"🖐🏾"},"1F3FF":{k:"raised_hand_with_fingers_splayed-1F3FF",n:"raised_hand_with_fingers_splayed",e:"🖐🏿"}}},{n:["hand","raised_hand"],e:"✋",c:1,v:{"1F3FB":{k:"hand-1F3FB",n:"hand",e:"✋🏻"},"1F3FC":{k:"hand-1F3FC",n:"hand",e:"✋🏼"},"1F3FD":{k:"hand-1F3FD",n:"hand",e:"✋🏽"},"1F3FE":{k:"hand-1F3FE",n:"hand",e:"✋🏾"},"1F3FF":{k:"hand-1F3FF",n:"hand",e:"✋🏿"}}},{n:["ok_hand"],e:"👌",c:1,v:{"1F3FB":{k:"ok_hand-1F3FB",n:"ok_hand",e:"👌🏻"},"1F3FC":{k:"ok_hand-1F3FC",n:"ok_hand",e:"👌🏼"},"1F3FD":{k:"ok_hand-1F3FD",n:"ok_hand",e:"👌🏽"},"1F3FE":{k:"ok_hand-1F3FE",n:"ok_hand",e:"👌🏾"},"1F3FF":{k:"ok_hand-1F3FF",n:"ok_hand",e:"👌🏿"}}},{n:["+1","thumbsup"],e:"👍",c:1,v:{"1F3FB":{k:"+1-1F3FB",n:"+1",e:"👍🏻"},"1F3FC":{k:"+1-1F3FC",n:"+1",e:"👍🏼"},"1F3FD":{k:"+1-1F3FD",n:"+1",e:"👍🏽"},"1F3FE":{k:"+1-1F3FE",n:"+1",e:"👍🏾"},"1F3FF":{k:"+1-1F3FF",n:"+1",e:"👍🏿"}}},{n:["-1","thumbsdown"],e:"👎",c:1,v:{"1F3FB":{k:"-1-1F3FB",n:"-1",e:"👎🏻"},"1F3FC":{k:"-1-1F3FC",n:"-1",e:"👎🏼"},"1F3FD":{k:"-1-1F3FD",n:"-1",e:"👎🏽"},"1F3FE":{k:"-1-1F3FE",n:"-1",e:"👎🏾"},"1F3FF":{k:"-1-1F3FF",n:"-1",e:"👎🏿"}}},{n:["fist"],e:"✊",c:1,v:{"1F3FB":{k:"fist-1F3FB",n:"fist",e:"✊🏻"},"1F3FC":{k:"fist-1F3FC",n:"fist",e:"✊🏼"},"1F3FD":{k:"fist-1F3FD",n:"fist",e:"✊🏽"},"1F3FE":{k:"fist-1F3FE",n:"fist",e:"✊🏾"},"1F3FF":{k:"fist-1F3FF",n:"fist",e:"✊🏿"}}},{n:["facepunch","punch"],e:"👊",c:1,v:{"1F3FB":{k:"facepunch-1F3FB",n:"facepunch",e:"👊🏻"},"1F3FC":{k:"facepunch-1F3FC",n:"facepunch",e:"👊🏼"},"1F3FD":{k:"facepunch-1F3FD",n:"facepunch",e:"👊🏽"},"1F3FE":{k:"facepunch-1F3FE",n:"facepunch",e:"👊🏾"},"1F3FF":{k:"facepunch-1F3FF",n:"facepunch",e:"👊🏿"}}},{n:["left-facing_fist"],e:"🤛",c:1,v:{"1F3FB":{k:"left-facing_fist-1F3FB",n:"left-facing_fist",e:"🤛🏻"},"1F3FC":{k:"left-facing_fist-1F3FC",n:"left-facing_fist",e:"🤛🏼"},"1F3FD":{k:"left-facing_fist-1F3FD",n:"left-facing_fist",e:"🤛🏽"},"1F3FE":{k:"left-facing_fist-1F3FE",n:"left-facing_fist",e:"🤛🏾"},"1F3FF":{k:"left-facing_fist-1F3FF",n:"left-facing_fist",e:"🤛🏿"}}},{n:["right-facing_fist"],e:"🤜",c:1,v:{"1F3FB":{k:"right-facing_fist-1F3FB",n:"right-facing_fist",e:"🤜🏻"},"1F3FC":{k:"right-facing_fist-1F3FC",n:"right-facing_fist",e:"🤜🏼"},"1F3FD":{k:"right-facing_fist-1F3FD",n:"right-facing_fist",e:"🤜🏽"},"1F3FE":{k:"right-facing_fist-1F3FE",n:"right-facing_fist",e:"🤜🏾"},"1F3FF":{k:"right-facing_fist-1F3FF",n:"right-facing_fist",e:"🤜🏿"}}},{n:["raised_back_of_hand"],e:"🤚",c:1,v:{"1F3FB":{k:"raised_back_of_hand-1F3FB",n:"raised_back_of_hand",e:"🤚🏻"},"1F3FC":{k:"raised_back_of_hand-1F3FC",n:"raised_back_of_hand",e:"🤚🏼"},"1F3FD":{k:"raised_back_of_hand-1F3FD",n:"raised_back_of_hand",e:"🤚🏽"},"1F3FE":{k:"raised_back_of_hand-1F3FE",n:"raised_back_of_hand",e:"🤚🏾"},"1F3FF":{k:"raised_back_of_hand-1F3FF",n:"raised_back_of_hand",e:"🤚🏿"}}},{n:["wave"],e:"👋",c:1,v:{"1F3FB":{k:"wave-1F3FB",n:"wave",e:"👋🏻"},"1F3FC":{k:"wave-1F3FC",n:"wave",e:"👋🏼"},"1F3FD":{k:"wave-1F3FD",n:"wave",e:"👋🏽"},"1F3FE":{k:"wave-1F3FE",n:"wave",e:"👋🏾"},"1F3FF":{k:"wave-1F3FF",n:"wave",e:"👋🏿"}}},{n:["i_love_you_hand_sign"],e:"🤟",c:1,v:{"1F3FB":{k:"i_love_you_hand_sign-1F3FB",n:"i_love_you_hand_sign",e:"🤟🏻"},"1F3FC":{k:"i_love_you_hand_sign-1F3FC",n:"i_love_you_hand_sign",e:"🤟🏼"},"1F3FD":{k:"i_love_you_hand_sign-1F3FD",n:"i_love_you_hand_sign",e:"🤟🏽"},"1F3FE":{k:"i_love_you_hand_sign-1F3FE",n:"i_love_you_hand_sign",e:"🤟🏾"},"1F3FF":{k:"i_love_you_hand_sign-1F3FF",n:"i_love_you_hand_sign",e:"🤟🏿"}}},{n:["writing_hand"],e:"✍️",c:1,v:{"1F3FB":{k:"writing_hand-1F3FB",n:"writing_hand",e:"✍🏻"},"1F3FC":{k:"writing_hand-1F3FC",n:"writing_hand",e:"✍🏼"},"1F3FD":{k:"writing_hand-1F3FD",n:"writing_hand",e:"✍🏽"},"1F3FE":{k:"writing_hand-1F3FE",n:"writing_hand",e:"✍🏾"},"1F3FF":{k:"writing_hand-1F3FF",n:"writing_hand",e:"✍🏿"}}},{n:["clap"],e:"👏",c:1,v:{"1F3FB":{k:"clap-1F3FB",n:"clap",e:"👏🏻"},"1F3FC":{k:"clap-1F3FC",n:"clap",e:"👏🏼"},"1F3FD":{k:"clap-1F3FD",n:"clap",e:"👏🏽"},"1F3FE":{k:"clap-1F3FE",n:"clap",e:"👏🏾"},"1F3FF":{k:"clap-1F3FF",n:"clap",e:"👏🏿"}}},{n:["open_hands"],e:"👐",c:1,v:{"1F3FB":{k:"open_hands-1F3FB",n:"open_hands",e:"👐🏻"},"1F3FC":{k:"open_hands-1F3FC",n:"open_hands",e:"👐🏼"},"1F3FD":{k:"open_hands-1F3FD",n:"open_hands",e:"👐🏽"},"1F3FE":{k:"open_hands-1F3FE",n:"open_hands",e:"👐🏾"},"1F3FF":{k:"open_hands-1F3FF",n:"open_hands",e:"👐🏿"}}},{n:["raised_hands"],e:"🙌",c:1,v:{"1F3FB":{k:"raised_hands-1F3FB",n:"raised_hands",e:"🙌🏻"},"1F3FC":{k:"raised_hands-1F3FC",n:"raised_hands",e:"🙌🏼"},"1F3FD":{k:"raised_hands-1F3FD",n:"raised_hands",e:"🙌🏽"},"1F3FE":{k:"raised_hands-1F3FE",n:"raised_hands",e:"🙌🏾"},"1F3FF":{k:"raised_hands-1F3FF",n:"raised_hands",e:"🙌🏿"}}},{n:["palms_up_together"],e:"🤲",c:1,v:{"1F3FB":{k:"palms_up_together-1F3FB",n:"palms_up_together",e:"🤲🏻"},"1F3FC":{k:"palms_up_together-1F3FC",n:"palms_up_together",e:"🤲🏼"},"1F3FD":{k:"palms_up_together-1F3FD",n:"palms_up_together",e:"🤲🏽"},"1F3FE":{k:"palms_up_together-1F3FE",n:"palms_up_together",e:"🤲🏾"},"1F3FF":{k:"palms_up_together-1F3FF",n:"palms_up_together",e:"🤲🏿"}}},{n:["pray"],e:"🙏",c:1,v:{"1F3FB":{k:"pray-1F3FB",n:"pray",e:"🙏🏻"},"1F3FC":{k:"pray-1F3FC",n:"pray",e:"🙏🏼"},"1F3FD":{k:"pray-1F3FD",n:"pray",e:"🙏🏽"},"1F3FE":{k:"pray-1F3FE",n:"pray",e:"🙏🏾"},"1F3FF":{k:"pray-1F3FF",n:"pray",e:"🙏🏿"}}},{n:["handshake"],e:"🤝",c:1},{n:["nail_care"],e:"💅",c:1,v:{"1F3FB":{k:"nail_care-1F3FB",n:"nail_care",e:"💅🏻"},"1F3FC":{k:"nail_care-1F3FC",n:"nail_care",e:"💅🏼"},"1F3FD":{k:"nail_care-1F3FD",n:"nail_care",e:"💅🏽"},"1F3FE":{k:"nail_care-1F3FE",n:"nail_care",e:"💅🏾"},"1F3FF":{k:"nail_care-1F3FF",n:"nail_care",e:"💅🏿"}}},{n:["ear"],e:"👂",c:1,v:{"1F3FB":{k:"ear-1F3FB",n:"ear",e:"👂🏻"},"1F3FC":{k:"ear-1F3FC",n:"ear",e:"👂🏼"},"1F3FD":{k:"ear-1F3FD",n:"ear",e:"👂🏽"},"1F3FE":{k:"ear-1F3FE",n:"ear",e:"👂🏾"},"1F3FF":{k:"ear-1F3FF",n:"ear",e:"👂🏿"}}},{n:["nose"],e:"👃",c:1,v:{"1F3FB":{k:"nose-1F3FB",n:"nose",e:"👃🏻"},"1F3FC":{k:"nose-1F3FC",n:"nose",e:"👃🏼"},"1F3FD":{k:"nose-1F3FD",n:"nose",e:"👃🏽"},"1F3FE":{k:"nose-1F3FE",n:"nose",e:"👃🏾"},"1F3FF":{k:"nose-1F3FF",n:"nose",e:"👃🏿"}}},{n:["footprints"],e:"👣",c:1},{n:["eyes"],e:"👀",c:1},{n:["eye"],e:"👁️",c:1},{n:["eye-in-speech-bubble"],e:"👁️🗨️",c:1},{n:["brain"],e:"🧠",c:1},{n:["tongue"],e:"👅",c:1},{n:["lips"],e:"👄",c:1},{n:["kiss"],e:"💋",c:1},{n:["cupid"],e:"💘",c:1},{n:["heart"],e:"❤️",c:1},{n:["heartbeat"],e:"💓",c:1},{n:["broken_heart"],e:"💔",c:1},{n:["two_hearts"],e:"💕",c:1},{n:["sparkling_heart"],e:"💖",c:1},{n:["heartpulse"],e:"💗",c:1},{n:["blue_heart"],e:"💙",c:1},{n:["green_heart"],e:"💚",c:1},{n:["yellow_heart"],e:"💛",c:1},{n:["orange_heart"],e:"🧡",c:1},{n:["purple_heart"],e:"💜",c:1},{n:["black_heart"],e:"🖤",c:1},{n:["gift_heart"],e:"💝",c:1},{n:["revolving_hearts"],e:"💞",c:1},{n:["heart_decoration"],e:"💟",c:1},{n:["heavy_heart_exclamation_mark_ornament"],e:"❣️",c:1},{n:["love_letter"],e:"💌",c:1},{n:["zzz"],e:"💤",c:1},{n:["anger"],e:"💢",c:1},{n:["bomb"],e:"💣",c:1},{n:["boom","collision"],e:"💥",c:1},{n:["sweat_drops"],e:"💦",c:1},{n:["dash"],e:"💨",c:1},{n:["dizzy"],e:"💫",c:1},{n:["speech_balloon"],e:"💬",c:1},{n:["left_speech_bubble"],e:"🗨️",c:1},{n:["right_anger_bubble"],e:"🗯️",c:1},{n:["thought_balloon"],e:"💭",c:1},{n:["hole"],e:"🕳️",c:1},{n:["eyeglasses"],e:"👓",c:1},{n:["dark_sunglasses"],e:"🕶️",c:1},{n:["necktie"],e:"👔",c:1},{n:["shirt","tshirt"],e:"👕",c:1},{n:["jeans"],e:"👖",c:1},{n:["scarf"],e:"🧣",c:1},{n:["gloves"],e:"🧤",c:1},{n:["coat"],e:"🧥",c:1},{n:["socks"],e:"🧦",c:1},{n:["dress"],e:"👗",c:1},{n:["kimono"],e:"👘",c:1},{n:["bikini"],e:"👙",c:1},{n:["womans_clothes"],e:"👚",c:1},{n:["purse"],e:"👛",c:1},{n:["handbag"],e:"👜",c:1},{n:["pouch"],e:"👝",c:1},{n:["shopping_bags"],e:"🛍️",c:1},{n:["school_satchel"],e:"🎒",c:1},{n:["mans_shoe","shoe"],e:"👞",c:1},{n:["athletic_shoe"],e:"👟",c:1},{n:["high_heel"],e:"👠",c:1},{n:["sandal"],e:"👡",c:1},{n:["boot"],e:"👢",c:1},{n:["crown"],e:"👑",c:1},{n:["womans_hat"],e:"👒",c:1},{n:["tophat"],e:"🎩",c:1},{n:["mortar_board"],e:"🎓",c:1},{n:["billed_cap"],e:"🧢",c:1},{n:["helmet_with_white_cross"],e:"⛑️",c:1},{n:["prayer_beads"],e:"📿",c:1},{n:["lipstick"],e:"💄",c:1},{n:["ring"],e:"💍",c:1},{n:["gem"],e:"💎",c:1}];function le(e,n){var a=document.createElement(e);return n&&(a.className=n),a}function se(e){for(;e.firstChild;)e.removeChild(e.firstChild)}function me(e){return"string"==typeof e.n?e.n:e.n[0]}var fe=function(){function n(a){e(this,n),this.events=a}return a(n,[{key:"render",value:function(){var e=this,n=le("div","emoji-picker__preview");return this.emoji=le("div","emoji-picker__preview-emoji"),n.appendChild(this.emoji),this.name=le("div","emoji-picker__preview-name"),n.appendChild(this.name),this.events.on("showPreview",function(n){return e.showPreview(n)}),this.events.on("hidePreview",function(){return e.hidePreview()}),n}},{key:"showPreview",value:function(e){this.emoji.innerHTML=e.e,this.name.innerHTML=me(e)}},{key:"hidePreview",value:function(){this.emoji.innerHTML="",this.name.innerHTML=""}}]),n}();function ge(e,n){for(var a=0;a<n.length;a++){var i=n[a];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}function _e(e,n,a){return n in e?Object.defineProperty(e,n,{value:a,enumerable:!0,configurable:!0,writable:!0}):e[n]=a,e}function he(e){for(var n=1;n<arguments.length;n++){var a=null!=arguments[n]?arguments[n]:{},i=Object.keys(a);"function"==typeof Object.getOwnPropertySymbols&&(i=i.concat(Object.getOwnPropertySymbols(a).filter(function(e){return Object.getOwnPropertyDescriptor(a,e).enumerable}))),i.forEach(function(n){_e(e,n,a[n])})}return e}function de(e,n){return function(e){if(Array.isArray(e))return e}(e)||function(e,n){var a=[],i=!0,t=!1,o=void 0;try{for(var r,F=e[Symbol.iterator]();!(i=(r=F.next()).done)&&(a.push(r.value),!n||a.length!==n);i=!0);}catch(e){t=!0,o=e}finally{try{i||null==F.return||F.return()}finally{if(t)throw o}}return a}(e,n)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")}()}var ue=function(){},pe={},ke={},we={mark:ue,measure:ue};try{"undefined"!=typeof window&&(pe=window),"undefined"!=typeof document&&(ke=document),"undefined"!=typeof MutationObserver&&MutationObserver,"undefined"!=typeof performance&&(we=performance)}catch(e){}var be=(pe.navigator||{}).userAgent,ve=void 0===be?"":be,ye=pe,Ee=ke,Ce=we,De=(ye.document,!!Ee.documentElement&&!!Ee.head&&"function"==typeof Ee.addEventListener&&"function"==typeof Ee.createElement),Be=(~ve.indexOf("MSIE")||ve.indexOf("Trident/"),"fa"),xe="svg-inline--fa",je="data-fa-i2svg",Oe=(function(){try{process.env.NODE_ENV}catch(e){return!1}}(),{GROUP:"group",SWAP_OPACITY:"swap-opacity",PRIMARY:"primary",SECONDARY:"secondary"}),ze=ye.FontAwesomeConfig||{};if(Ee&&"function"==typeof Ee.querySelector){[["data-family-prefix","familyPrefix"],["data-replacement-class","replacementClass"],["data-auto-replace-svg","autoReplaceSvg"],["data-auto-add-css","autoAddCss"],["data-auto-a11y","autoA11y"],["data-search-pseudo-elements","searchPseudoElements"],["data-observe-mutations","observeMutations"],["data-mutate-approach","mutateApproach"],["data-keep-original-source","keepOriginalSource"],["data-measure-performance","measurePerformance"],["data-show-missing-icons","showMissingIcons"]].forEach(function(e){var n=de(e,2),a=n[0],i=n[1],t=function(e){return""===e||"false"!==e&&("true"===e||e)}(function(e){var n=Ee.querySelector("script["+e+"]");if(n)return n.getAttribute(e)}(a));null!=t&&(ze[i]=t)})}var Me=he({},{familyPrefix:Be,replacementClass:xe,autoReplaceSvg:!0,autoAddCss:!0,autoA11y:!0,searchPseudoElements:!1,observeMutations:!0,mutateApproach:"async",keepOriginalSource:!0,measurePerformance:!1,showMissingIcons:!0},ze);Me.autoReplaceSvg||(Me.observeMutations=!1);var Le=he({},Me);ye.FontAwesomeConfig=Le;var Te=ye||{};Te.___FONT_AWESOME___||(Te.___FONT_AWESOME___={}),Te.___FONT_AWESOME___.styles||(Te.___FONT_AWESOME___.styles={}),Te.___FONT_AWESOME___.hooks||(Te.___FONT_AWESOME___.hooks={}),Te.___FONT_AWESOME___.shims||(Te.___FONT_AWESOME___.shims=[]);var Ne=Te.___FONT_AWESOME___,Pe=[];De&&((Ee.documentElement.doScroll?/^loaded|^c/:/^loaded|^i|^c/).test(Ee.readyState)||Ee.addEventListener("DOMContentLoaded",function e(){Ee.removeEventListener("DOMContentLoaded",e),1,Pe.map(function(e){return e()})}));"undefined"!=typeof global&&void 0!==global.process&&global.process.emit;var Se={size:16,x:0,y:0,rotate:0,flipX:!1,flipY:!1};var Ae="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";function He(){for(var e=12,n="";e-- >0;)n+=Ae[62*Math.random()|0];return n}function Ie(e){return"".concat(e).replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<").replace(/>/g,">")}function We(e){return Object.keys(e||{}).reduce(function(n,a){return n+"".concat(a,": ").concat(e[a],";")},"")}function Ve(e){return e.size!==Se.size||e.x!==Se.x||e.y!==Se.y||e.rotate!==Se.rotate||e.flipX||e.flipY}function qe(e){var n=e.transform,a=e.containerWidth,i=e.iconWidth,t={transform:"translate(".concat(a/2," 256)")},o="translate(".concat(32*n.x,", ").concat(32*n.y,") "),r="scale(".concat(n.size/16*(n.flipX?-1:1),", ").concat(n.size/16*(n.flipY?-1:1),") "),F="rotate(".concat(n.rotate," 0 0)");return{outer:t,inner:{transform:"".concat(o," ").concat(r," ").concat(F)},path:{transform:"translate(".concat(i/2*-1," -256)")}}}var Re={x:0,y:0,width:"100%",height:"100%"};function Ue(e){var n=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];return e.attributes&&(e.attributes.fill||n)&&(e.attributes.fill="black"),e}function Ye(e){var n=e.icons,a=n.main,i=n.mask,t=e.prefix,o=e.iconName,r=e.transform,F=e.symbol,c=e.title,l=e.extra,s=e.watchable,m=void 0!==s&&s,f=i.found?i:a,g=f.width,_=f.height,h="fa-w-".concat(Math.ceil(g/_*16)),d=[Le.replacementClass,o?"".concat(Le.familyPrefix,"-").concat(o):"",h].filter(function(e){return-1===l.classes.indexOf(e)}).concat(l.classes).join(" "),u={children:[],attributes:he({},l.attributes,{"data-prefix":t,"data-icon":o,class:d,role:l.attributes.role||"img",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 ".concat(g," ").concat(_)})};m&&(u.attributes[je]=""),c&&u.children.push({tag:"title",attributes:{id:u.attributes["aria-labelledby"]||"title-".concat(He())},children:[c]});var p=he({},u,{prefix:t,iconName:o,main:a,mask:i,transform:r,symbol:F,styles:l.styles}),k=i.found&&a.found?function(e){var n,a=e.children,i=e.attributes,t=e.main,o=e.mask,r=e.transform,F=t.width,c=t.icon,l=o.width,s=o.icon,m=qe({transform:r,containerWidth:l,iconWidth:F}),f={tag:"rect",attributes:he({},Re,{fill:"white"})},g=c.children?{children:c.children.map(Ue)}:{},_={tag:"g",attributes:he({},m.inner),children:[Ue(he({tag:c.tag,attributes:he({},c.attributes,m.path)},g))]},h={tag:"g",attributes:he({},m.outer),children:[_]},d="mask-".concat(He()),u="clip-".concat(He()),p={tag:"mask",attributes:he({},Re,{id:d,maskUnits:"userSpaceOnUse",maskContentUnits:"userSpaceOnUse"}),children:[f,h]},k={tag:"defs",children:[{tag:"clipPath",attributes:{id:u},children:(n=s,"g"===n.tag?n.children:[n])},p]};return a.push(k,{tag:"rect",attributes:he({fill:"currentColor","clip-path":"url(#".concat(u,")"),mask:"url(#".concat(d,")")},Re)}),{children:a,attributes:i}}(p):function(e){var n=e.children,a=e.attributes,i=e.main,t=e.transform,o=We(e.styles);if(o.length>0&&(a.style=o),Ve(t)){var r=qe({transform:t,containerWidth:i.width,iconWidth:i.width});n.push({tag:"g",attributes:he({},r.outer),children:[{tag:"g",attributes:he({},r.inner),children:[{tag:i.icon.tag,children:i.icon.children,attributes:he({},i.icon.attributes,r.path)}]}]})}else n.push(i.icon);return{children:n,attributes:a}}(p),w=k.children,b=k.attributes;return p.children=w,p.attributes=b,F?function(e){var n=e.prefix,a=e.iconName,i=e.children,t=e.attributes,o=e.symbol;return[{tag:"svg",attributes:{style:"display: none;"},children:[{tag:"symbol",attributes:he({},t,{id:!0===o?"".concat(n,"-").concat(Le.familyPrefix,"-").concat(a):o}),children:i}]}]}(p):function(e){var n=e.children,a=e.main,i=e.mask,t=e.attributes,o=e.styles,r=e.transform;if(Ve(r)&&a.found&&!i.found){var F={x:a.width/a.height/2,y:.5};t.style=We(he({},o,{"transform-origin":"".concat(F.x+r.x/16,"em ").concat(F.y+r.y/16,"em")}))}return[{tag:"svg",attributes:t,children:n}]}(p)}var Ke=function(){},Xe=(Le.measurePerformance&&Ce&&Ce.mark&&Ce.measure,function(e,n,a,i){var t,o,r,F=Object.keys(e),c=F.length,l=void 0!==i?function(e,n){return function(a,i,t,o){return e.call(n,a,i,t,o)}}(n,i):n;for(void 0===a?(t=1,r=e[F[0]]):(t=0,r=a);t<c;t++)r=l(r,e[o=F[t]],o,e);return r});var Ge=Ne.styles,Je=Ne.shims,Qe=function(){var e=function(e){return Xe(Ge,function(n,a,i){return n[i]=Xe(a,e,{}),n},{})};e(function(e,n,a){return n[3]&&(e[n[3]]=a),e}),e(function(e,n,a){var i=n[2];return e[a]=a,i.forEach(function(n){e[n]=a}),e});var n="far"in Ge;Xe(Je,function(e,a){var i=a[0],t=a[1],o=a[2];return"far"!==t||n||(t="fas"),e[i]={prefix:t,iconName:o},e},{})};Qe();Ne.styles;function Ze(e,n,a){if(e&&e[n]&&e[n][a])return{prefix:n,iconName:a,icon:e[n][a]}}function $e(e){var n=e.tag,a=e.attributes,i=void 0===a?{}:a,t=e.children,o=void 0===t?[]:t;return"string"==typeof e?Ie(e):"<".concat(n," ").concat(function(e){return Object.keys(e||{}).reduce(function(n,a){return n+"".concat(a,'="').concat(Ie(e[a]),'" ')},"").trim()}(i),">").concat(o.map($e).join(""),"</").concat(n,">")}function en(e){this.name="MissingIcon",this.message=e||"Icon unavailable",this.stack=(new Error).stack}en.prototype=Object.create(Error.prototype),en.prototype.constructor=en;var nn={fill:"currentColor"},an={attributeType:"XML",repeatCount:"indefinite",dur:"2s"},tn=(he({},nn,{d:"M156.5,447.7l-12.6,29.5c-18.7-9.5-35.9-21.2-51.5-34.9l22.7-22.7C127.6,430.5,141.5,440,156.5,447.7z M40.6,272H8.5 c1.4,21.2,5.4,41.7,11.7,61.1L50,321.2C45.1,305.5,41.8,289,40.6,272z M40.6,240c1.4-18.8,5.2-37,11.1-54.1l-29.5-12.6 C14.7,194.3,10,216.7,8.5,240H40.6z M64.3,156.5c7.8-14.9,17.2-28.8,28.1-41.5L69.7,92.3c-13.7,15.6-25.5,32.8-34.9,51.5 L64.3,156.5z M397,419.6c-13.9,12-29.4,22.3-46.1,30.4l11.9,29.8c20.7-9.9,39.8-22.6,56.9-37.6L397,419.6z M115,92.4 c13.9-12,29.4-22.3,46.1-30.4l-11.9-29.8c-20.7,9.9-39.8,22.6-56.8,37.6L115,92.4z M447.7,355.5c-7.8,14.9-17.2,28.8-28.1,41.5 l22.7,22.7c13.7-15.6,25.5-32.9,34.9-51.5L447.7,355.5z M471.4,272c-1.4,18.8-5.2,37-11.1,54.1l29.5,12.6 c7.5-21.1,12.2-43.5,13.6-66.8H471.4z M321.2,462c-15.7,5-32.2,8.2-49.2,9.4v32.1c21.2-1.4,41.7-5.4,61.1-11.7L321.2,462z M240,471.4c-18.8-1.4-37-5.2-54.1-11.1l-12.6,29.5c21.1,7.5,43.5,12.2,66.8,13.6V471.4z M462,190.8c5,15.7,8.2,32.2,9.4,49.2h32.1 c-1.4-21.2-5.4-41.7-11.7-61.1L462,190.8z M92.4,397c-12-13.9-22.3-29.4-30.4-46.1l-29.8,11.9c9.9,20.7,22.6,39.8,37.6,56.9 L92.4,397z M272,40.6c18.8,1.4,36.9,5.2,54.1,11.1l12.6-29.5C317.7,14.7,295.3,10,272,8.5V40.6z M190.8,50 c15.7-5,32.2-8.2,49.2-9.4V8.5c-21.2,1.4-41.7,5.4-61.1,11.7L190.8,50z M442.3,92.3L419.6,115c12,13.9,22.3,29.4,30.5,46.1 l29.8-11.9C470,128.5,457.3,109.4,442.3,92.3z M397,92.4l22.7-22.7c-15.6-13.7-32.8-25.5-51.5-34.9l-12.6,29.5 C370.4,72.1,384.4,81.5,397,92.4z"}),he({},an,{attributeName:"opacity"}));he({},nn,{cx:"256",cy:"364",r:"28"}),he({},an,{attributeName:"r",values:"28;14;28;28;14;28;"}),he({},tn,{values:"1;0;1;1;0;1;"}),he({},nn,{opacity:"1",d:"M263.7,312h-16c-6.6,0-12-5.4-12-12c0-71,77.4-63.9,77.4-107.8c0-20-17.8-40.2-57.4-40.2c-29.1,0-44.3,9.6-59.2,28.7 c-3.9,5-11.1,6-16.2,2.4l-13.1-9.2c-5.6-3.9-6.9-11.8-2.6-17.2c21.2-27.2,46.4-44.7,91.2-44.7c52.3,0,97.4,29.8,97.4,80.2 c0,67.6-77.4,63.5-77.4,107.8C275.7,306.6,270.3,312,263.7,312z"}),he({},tn,{values:"1;0;0;0;0;1;"}),he({},nn,{opacity:"0",d:"M232.5,134.5l7,168c0.3,6.4,5.6,11.5,12,11.5h9c6.4,0,11.7-5.1,12-11.5l7-168c0.3-6.8-5.2-12.5-12-12.5h-23 C237.7,122,232.2,127.7,232.5,134.5z"}),he({},tn,{values:"0;0;1;1;0;0;"}),Ne.styles;function on(e){var n=e[0],a=e[1],i=de(e.slice(4),1)[0];return{found:!0,width:n,height:a,icon:Array.isArray(i)?{tag:"g",attributes:{class:"".concat(Le.familyPrefix,"-").concat(Oe.GROUP)},children:[{tag:"path",attributes:{class:"".concat(Le.familyPrefix,"-").concat(Oe.SECONDARY),fill:"currentColor",d:i[0]}},{tag:"path",attributes:{class:"".concat(Le.familyPrefix,"-").concat(Oe.PRIMARY),fill:"currentColor",d:i[1]}}]}:{tag:"path",attributes:{fill:"currentColor",d:i}}}}Ne.styles;var rn='svg:not(:root).svg-inline--fa {\n overflow: visible;\n}\n\n.svg-inline--fa {\n display: inline-block;\n font-size: inherit;\n height: 1em;\n overflow: visible;\n vertical-align: -0.125em;\n}\n.svg-inline--fa.fa-lg {\n vertical-align: -0.225em;\n}\n.svg-inline--fa.fa-w-1 {\n width: 0.0625em;\n}\n.svg-inline--fa.fa-w-2 {\n width: 0.125em;\n}\n.svg-inline--fa.fa-w-3 {\n width: 0.1875em;\n}\n.svg-inline--fa.fa-w-4 {\n width: 0.25em;\n}\n.svg-inline--fa.fa-w-5 {\n width: 0.3125em;\n}\n.svg-inline--fa.fa-w-6 {\n width: 0.375em;\n}\n.svg-inline--fa.fa-w-7 {\n width: 0.4375em;\n}\n.svg-inline--fa.fa-w-8 {\n width: 0.5em;\n}\n.svg-inline--fa.fa-w-9 {\n width: 0.5625em;\n}\n.svg-inline--fa.fa-w-10 {\n width: 0.625em;\n}\n.svg-inline--fa.fa-w-11 {\n width: 0.6875em;\n}\n.svg-inline--fa.fa-w-12 {\n width: 0.75em;\n}\n.svg-inline--fa.fa-w-13 {\n width: 0.8125em;\n}\n.svg-inline--fa.fa-w-14 {\n width: 0.875em;\n}\n.svg-inline--fa.fa-w-15 {\n width: 0.9375em;\n}\n.svg-inline--fa.fa-w-16 {\n width: 1em;\n}\n.svg-inline--fa.fa-w-17 {\n width: 1.0625em;\n}\n.svg-inline--fa.fa-w-18 {\n width: 1.125em;\n}\n.svg-inline--fa.fa-w-19 {\n width: 1.1875em;\n}\n.svg-inline--fa.fa-w-20 {\n width: 1.25em;\n}\n.svg-inline--fa.fa-pull-left {\n margin-right: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-pull-right {\n margin-left: 0.3em;\n width: auto;\n}\n.svg-inline--fa.fa-border {\n height: 1.5em;\n}\n.svg-inline--fa.fa-li {\n width: 2em;\n}\n.svg-inline--fa.fa-fw {\n width: 1.25em;\n}\n\n.fa-layers svg.svg-inline--fa {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.fa-layers {\n display: inline-block;\n height: 1em;\n position: relative;\n text-align: center;\n vertical-align: -0.125em;\n width: 1em;\n}\n.fa-layers svg.svg-inline--fa {\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter, .fa-layers-text {\n display: inline-block;\n position: absolute;\n text-align: center;\n}\n\n.fa-layers-text {\n left: 50%;\n top: 50%;\n -webkit-transform: translate(-50%, -50%);\n transform: translate(-50%, -50%);\n -webkit-transform-origin: center center;\n transform-origin: center center;\n}\n\n.fa-layers-counter {\n background-color: #ff253a;\n border-radius: 1em;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n color: #fff;\n height: 1.5em;\n line-height: 1;\n max-width: 5em;\n min-width: 1.5em;\n overflow: hidden;\n padding: 0.25em;\n right: 0;\n text-overflow: ellipsis;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-bottom-right {\n bottom: 0;\n right: 0;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom right;\n transform-origin: bottom right;\n}\n\n.fa-layers-bottom-left {\n bottom: 0;\n left: 0;\n right: auto;\n top: auto;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: bottom left;\n transform-origin: bottom left;\n}\n\n.fa-layers-top-right {\n right: 0;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top right;\n transform-origin: top right;\n}\n\n.fa-layers-top-left {\n left: 0;\n right: auto;\n top: 0;\n -webkit-transform: scale(0.25);\n transform: scale(0.25);\n -webkit-transform-origin: top left;\n transform-origin: top left;\n}\n\n.fa-lg {\n font-size: 1.3333333333em;\n line-height: 0.75em;\n vertical-align: -0.0667em;\n}\n\n.fa-xs {\n font-size: 0.75em;\n}\n\n.fa-sm {\n font-size: 0.875em;\n}\n\n.fa-1x {\n font-size: 1em;\n}\n\n.fa-2x {\n font-size: 2em;\n}\n\n.fa-3x {\n font-size: 3em;\n}\n\n.fa-4x {\n font-size: 4em;\n}\n\n.fa-5x {\n font-size: 5em;\n}\n\n.fa-6x {\n font-size: 6em;\n}\n\n.fa-7x {\n font-size: 7em;\n}\n\n.fa-8x {\n font-size: 8em;\n}\n\n.fa-9x {\n font-size: 9em;\n}\n\n.fa-10x {\n font-size: 10em;\n}\n\n.fa-fw {\n text-align: center;\n width: 1.25em;\n}\n\n.fa-ul {\n list-style-type: none;\n margin-left: 2.5em;\n padding-left: 0;\n}\n.fa-ul > li {\n position: relative;\n}\n\n.fa-li {\n left: -2em;\n position: absolute;\n text-align: center;\n width: 2em;\n line-height: inherit;\n}\n\n.fa-border {\n border: solid 0.08em #eee;\n border-radius: 0.1em;\n padding: 0.2em 0.25em 0.15em;\n}\n\n.fa-pull-left {\n float: left;\n}\n\n.fa-pull-right {\n float: right;\n}\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n margin-right: 0.3em;\n}\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n margin-left: 0.3em;\n}\n\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n.fa-rotate-90 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";\n -webkit-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n\n.fa-rotate-180 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n\n.fa-rotate-270 {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";\n -webkit-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n\n.fa-flip-horizontal {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";\n -webkit-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n\n.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";\n -webkit-transform: scale(-1, -1);\n transform: scale(-1, -1);\n}\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n -webkit-filter: none;\n filter: none;\n}\n\n.fa-stack {\n display: inline-block;\n height: 2em;\n position: relative;\n width: 2.5em;\n}\n\n.fa-stack-1x,\n.fa-stack-2x {\n bottom: 0;\n left: 0;\n margin: auto;\n position: absolute;\n right: 0;\n top: 0;\n}\n\n.svg-inline--fa.fa-stack-1x {\n height: 1em;\n width: 1.25em;\n}\n.svg-inline--fa.fa-stack-2x {\n height: 2em;\n width: 2.5em;\n}\n\n.fa-inverse {\n color: #fff;\n}\n\n.sr-only {\n border: 0;\n clip: rect(0, 0, 0, 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n}\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n clip: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n position: static;\n width: auto;\n}\n\n.svg-inline--fa .fa-primary {\n fill: var(--fa-primary-color, currentColor);\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa .fa-secondary {\n fill: var(--fa-secondary-color, currentColor);\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n opacity: 0.4;\n opacity: var(--fa-secondary-opacity, 0.4);\n}\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n opacity: 1;\n opacity: var(--fa-primary-opacity, 1);\n}\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n fill: black;\n}\n\n.fad.fa-inverse {\n color: #fff;\n}';function Fn(){Le.autoAddCss&&!mn&&(!function(e){if(e&&De){var n=Ee.createElement("style");n.setAttribute("type","text/css"),n.innerHTML=e;for(var a=Ee.head.childNodes,i=null,t=a.length-1;t>-1;t--){var o=a[t],r=(o.tagName||"").toUpperCase();["STYLE","LINK"].indexOf(r)>-1&&(i=o)}Ee.head.insertBefore(n,i)}}(function(){var e=Be,n=xe,a=Le.familyPrefix,i=Le.replacementClass,t=rn;if(a!==e||i!==n){var o=new RegExp("\\.".concat(e,"\\-"),"g"),r=new RegExp("\\--".concat(e,"\\-"),"g"),F=new RegExp("\\.".concat(n),"g");t=t.replace(o,".".concat(a,"-")).replace(r,"--".concat(a,"-")).replace(F,".".concat(i))}return t}()),mn=!0)}function cn(e){var n=e.prefix,a=void 0===n?"fa":n,i=e.iconName;if(i)return Ze(sn.definitions,a,i)||Ze(Ne.styles,a,i)}var ln,sn=new(function(){function e(){!function(e,n){if(!(e instanceof n))throw new TypeError("Cannot call a class as a function")}(this,e),this.definitions={}}var n,a,i;return n=e,(a=[{key:"add",value:function(){for(var e=this,n=arguments.length,a=new Array(n),i=0;i<n;i++)a[i]=arguments[i];var t=a.reduce(this._pullDefinitions,{});Object.keys(t).forEach(function(n){e.definitions[n]=he({},e.definitions[n]||{},t[n]),function e(n,a){var i=(arguments.length>2&&void 0!==arguments[2]?arguments[2]:{}).skipHooks,t=void 0!==i&&i,o=Object.keys(a).reduce(function(e,n){var i=a[n];return i.icon?e[i.iconName]=i.icon:e[n]=i,e},{});"function"!=typeof Ne.hooks.addPack||t?Ne.styles[n]=he({},Ne.styles[n]||{},o):Ne.hooks.addPack(n,o),"fas"===n&&e("fa",a)}(n,t[n]),Qe()})}},{key:"reset",value:function(){this.definitions={}}},{key:"_pullDefinitions",value:function(e,n){var a=n.prefix&&n.iconName&&n.icon?{0:n}:n;return Object.keys(a).map(function(n){var i=a[n],t=i.prefix,o=i.iconName,r=i.icon;e[t]||(e[t]={}),e[t][o]=r}),e}}])&&ge(n.prototype,a),i&&ge(n,i),e}()),mn=!1,fn=(ln=function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=n.transform,i=void 0===a?Se:a,t=n.symbol,o=void 0!==t&&t,r=n.mask,F=void 0===r?null:r,c=n.title,l=void 0===c?null:c,s=n.classes,m=void 0===s?[]:s,f=n.attributes,g=void 0===f?{}:f,_=n.styles,h=void 0===_?{}:_;if(e){var d,u,p=e.prefix,k=e.iconName,w=e.icon;return d=he({type:"icon"},e),u=function(){return Fn(),Le.autoA11y&&(l?g["aria-labelledby"]="".concat(Le.replacementClass,"-title-").concat(He()):(g["aria-hidden"]="true",g.focusable="false")),Ye({icons:{main:on(w),mask:F?on(F.icon):{found:!1,width:null,height:null,icon:{}}},prefix:p,iconName:k,transform:he({},Se,i),symbol:o,title:l,extra:{attributes:g,styles:h,classes:m}})},Object.defineProperty(d,"abstract",{get:u}),Object.defineProperty(d,"html",{get:function(){return d.abstract.map(function(e){return $e(e)})}}),Object.defineProperty(d,"node",{get:function(){if(De){var e=Ee.createElement("div");return e.innerHTML=d.html,e.children}}}),d}},function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=(e||{}).icon?e:cn(e||{}),i=n.mask;return i&&(i=(i||{}).icon?i:cn(i||{})),ln(a,he({},n,{mask:i}))});sn.add({prefix:"far",iconName:"building",icon:[448,512,[],"f1ad","M128 148v-40c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v40c0 6.6-5.4 12-12 12h-40c-6.6 0-12-5.4-12-12zm140 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-128 96h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm128 0h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm-76 84v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12h40c6.6 0 12-5.4 12-12zm76 12h40c6.6 0 12-5.4 12-12v-40c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v40c0 6.6 5.4 12 12 12zm180 124v36H0v-36c0-6.6 5.4-12 12-12h19.5V24c0-13.3 10.7-24 24-24h337c13.3 0 24 10.7 24 24v440H436c6.6 0 12 5.4 12 12zM79.5 463H192v-67c0-6.6 5.4-12 12-12h40c6.6 0 12 5.4 12 12v67h112.5V49L80 48l-.5 415z"]},{prefix:"fas",iconName:"cat",icon:[512,512,[],"f6be","M290.59 192c-20.18 0-106.82 1.98-162.59 85.95V192c0-52.94-43.06-96-96-96-17.67 0-32 14.33-32 32s14.33 32 32 32c17.64 0 32 14.36 32 32v256c0 35.3 28.7 64 64 64h176c8.84 0 16-7.16 16-16v-16c0-17.67-14.33-32-32-32h-32l128-96v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V289.86c-10.29 2.67-20.89 4.54-32 4.54-61.81 0-113.52-44.05-125.41-102.4zM448 96h-64l-64-64v134.4c0 53.02 42.98 96 96 96s96-42.98 96-96V32l-64 64zm-72 80c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16zm80 0c-8.84 0-16-7.16-16-16s7.16-16 16-16 16 7.16 16 16-7.16 16-16 16z"]},{prefix:"fas",iconName:"coffee",icon:[640,512,[],"f0f4","M192 384h192c53 0 96-43 96-96h32c70.6 0 128-57.4 128-128S582.6 32 512 32H120c-13.3 0-24 10.7-24 24v232c0 53 43 96 96 96zM512 96c35.3 0 64 28.7 64 64s-28.7 64-64 64h-32V96h32zm47.7 384H48.3c-47.6 0-61-64-36-64h583.3c25 0 11.8 64-35.9 64z"]},{prefix:"far",iconName:"flag",icon:[512,512,[],"f024","M336.174 80c-49.132 0-93.305-32-161.913-32-31.301 0-58.303 6.482-80.721 15.168a48.04 48.04 0 0 0 2.142-20.727C93.067 19.575 74.167 1.594 51.201.104 23.242-1.71 0 20.431 0 48c0 17.764 9.657 33.262 24 41.562V496c0 8.837 7.163 16 16 16h16c8.837 0 16-7.163 16-16v-83.443C109.869 395.28 143.259 384 199.826 384c49.132 0 93.305 32 161.913 32 58.479 0 101.972-22.617 128.548-39.981C503.846 367.161 512 352.051 512 335.855V95.937c0-34.459-35.264-57.768-66.904-44.117C409.193 67.309 371.641 80 336.174 80zM464 336c-21.783 15.412-60.824 32-102.261 32-59.945 0-102.002-32-161.913-32-43.361 0-96.379 9.403-127.826 24V128c21.784-15.412 60.824-32 102.261-32 59.945 0 102.002 32 161.913 32 43.271 0 96.32-17.366 127.826-32v240z"]},{prefix:"far",iconName:"frown",icon:[496,512,[],"f119","M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160-64c-17.7 0-32 14.3-32 32s14.3 32 32 32 32-14.3 32-32-14.3-32-32-32zm-80 128c-40.2 0-78 17.7-103.8 48.6-8.5 10.2-7.1 25.3 3.1 33.8 10.2 8.4 25.3 7.1 33.8-3.1 16.6-19.9 41-31.4 66.9-31.4s50.3 11.4 66.9 31.4c8.1 9.7 23.1 11.9 33.8 3.1 10.2-8.5 11.5-23.6 3.1-33.8C326 321.7 288.2 304 248 304z"]},{prefix:"fas",iconName:"futbol",icon:[512,512,[],"f1e3","M504 256c0 136.967-111.033 248-248 248S8 392.967 8 256 119.033 8 256 8s248 111.033 248 248zm-48 0l-.003-.282-26.064 22.741-62.679-58.5 16.454-84.355 34.303 3.072c-24.889-34.216-60.004-60.089-100.709-73.141l13.651 31.939L256 139l-74.953-41.525 13.651-31.939c-40.631 13.028-75.78 38.87-100.709 73.141l34.565-3.073 16.192 84.355-62.678 58.5-26.064-22.741-.003.282c0 43.015 13.497 83.952 38.472 117.991l7.704-33.897 85.138 10.447 36.301 77.826-29.902 17.786c40.202 13.122 84.29 13.148 124.572 0l-29.902-17.786 36.301-77.826 85.138-10.447 7.704 33.897C442.503 339.952 456 299.015 456 256zm-248.102 69.571l-29.894-91.312L256 177.732l77.996 56.527-29.622 91.312h-96.476z"]},{prefix:"fas",iconName:"history",icon:[512,512,[],"f1da","M504 255.531c.253 136.64-111.18 248.372-247.82 248.468-59.015.042-113.223-20.53-155.822-54.911-11.077-8.94-11.905-25.541-1.839-35.607l11.267-11.267c8.609-8.609 22.353-9.551 31.891-1.984C173.062 425.135 212.781 440 256 440c101.705 0 184-82.311 184-184 0-101.705-82.311-184-184-184-48.814 0-93.149 18.969-126.068 49.932l50.754 50.754c10.08 10.08 2.941 27.314-11.313 27.314H24c-8.837 0-16-7.163-16-16V38.627c0-14.254 17.234-21.393 27.314-11.314l49.372 49.372C129.209 34.136 189.552 8 256 8c136.81 0 247.747 110.78 248 247.531zm-180.912 78.784l9.823-12.63c8.138-10.463 6.253-25.542-4.21-33.679L288 256.349V152c0-13.255-10.745-24-24-24h-16c-13.255 0-24 10.745-24 24v135.651l65.409 50.874c10.463 8.137 25.541 6.253 33.679-4.21z"]},{prefix:"far",iconName:"lightbulb",icon:[352,512,[],"f0eb","M176 80c-52.94 0-96 43.06-96 96 0 8.84 7.16 16 16 16s16-7.16 16-16c0-35.3 28.72-64 64-64 8.84 0 16-7.16 16-16s-7.16-16-16-16zM96.06 459.17c0 3.15.93 6.22 2.68 8.84l24.51 36.84c2.97 4.46 7.97 7.14 13.32 7.14h78.85c5.36 0 10.36-2.68 13.32-7.14l24.51-36.84c1.74-2.62 2.67-5.7 2.68-8.84l.05-43.18H96.02l.04 43.18zM176 0C73.72 0 0 82.97 0 176c0 44.37 16.45 84.85 43.56 115.78 16.64 18.99 42.74 58.8 52.42 92.16v.06h48v-.12c-.01-4.77-.72-9.51-2.15-14.07-5.59-17.81-22.82-64.77-62.17-109.67-20.54-23.43-31.52-53.15-31.61-84.14-.2-73.64 59.67-128 127.95-128 70.58 0 128 57.42 128 128 0 30.97-11.24 60.85-31.65 84.14-39.11 44.61-56.42 91.47-62.1 109.46a47.507 47.507 0 0 0-2.22 14.3v.1h48v-.05c9.68-33.37 35.78-73.18 52.42-92.16C335.55 260.85 352 220.37 352 176 352 78.8 273.2 0 176 0z"]},{prefix:"fas",iconName:"music",icon:[512,512,[],"f001","M511.99 32.01c0-21.71-21.1-37.01-41.6-30.51L150.4 96c-13.3 4.2-22.4 16.5-22.4 30.5v261.42c-10.05-2.38-20.72-3.92-32-3.92-53.02 0-96 28.65-96 64s42.98 64 96 64 96-28.65 96-64V214.31l256-75.02v184.63c-10.05-2.38-20.72-3.92-32-3.92-53.02 0-96 28.65-96 64s42.98 64 96 64 96-28.65 96-64l-.01-351.99z"]},{prefix:"fas",iconName:"search",icon:[512,512,[],"f002","M505 442.7L405.3 343c-4.5-4.5-10.6-7-17-7H372c27.6-35.3 44-79.7 44-128C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c48.3 0 92.7-16.4 128-44v16.3c0 6.4 2.5 12.5 7 17l99.7 99.7c9.4 9.4 24.6 9.4 33.9 0l28.3-28.3c9.4-9.4 9.4-24.6.1-34zM208 336c-70.7 0-128-57.2-128-128 0-70.7 57.2-128 128-128 70.7 0 128 57.2 128 128 0 70.7-57.2 128-128 128z"]},{prefix:"far",iconName:"smile",icon:[496,512,[],"f118","M248 8C111 8 0 119 0 256s111 248 248 248 248-111 248-248S385 8 248 8zm0 448c-110.3 0-200-89.7-200-200S137.7 56 248 56s200 89.7 200 200-89.7 200-200 200zm-80-216c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32-32 14.3-32 32 14.3 32 32 32zm4 72.6c-20.8 25-51.5 39.4-84 39.4s-63.2-14.3-84-39.4c-8.5-10.2-23.7-11.5-33.8-3.1-10.2 8.5-11.5 23.6-3.1 33.8 30 36 74.1 56.6 120.9 56.6s90.9-20.6 120.9-56.6c8.5-10.2 7.1-25.3-3.1-33.8-10.1-8.4-25.3-7.1-33.8 3.1z"]},{prefix:"fas",iconName:"times",icon:[352,512,[],"f00d","M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"]});var gn=fn({prefix:"far",iconName:"building"}).html,_n=fn({prefix:"fas",iconName:"cat"}).html,hn=fn({prefix:"fas",iconName:"coffee"}).html,dn=fn({prefix:"far",iconName:"flag"}).html,un=fn({prefix:"fas",iconName:"futbol"}).html,pn=fn({prefix:"far",iconName:"frown"}).html,kn=fn({prefix:"fas",iconName:"history"}).html,wn=fn({prefix:"far",iconName:"lightbulb"}).html,bn=fn({prefix:"fas",iconName:"music"}).html,vn=fn({prefix:"fas",iconName:"search"}).html,yn=fn({prefix:"far",iconName:"smile"}).html,En=fn({prefix:"fas",iconName:"times"}).html,Cn="emojiPicker.recent";function Dn(){return JSON.parse(localStorage.getItem(Cn))||[]}var Bn=function(){function n(a,i,t,o){e(this,n),this.emoji=a,this.showVariants=i,this.showPreview=t,this.events=o}return a(n,[{key:"render",value:function(){var e=this,n=le("button","emoji-picker__emoji");return n.innerHTML=this.emoji.e,n.addEventListener("click",function(){return e.onEmojiClick()}),n.addEventListener("mouseover",function(){return e.onEmojiHover()}),n.addEventListener("mouseout",function(){return e.onEmojiLeave()}),n}},{key:"onEmojiClick",value:function(){var e,n,a;this.emoji.v&&this.showVariants||(e=this.emoji,n=Dn(),a={e:e.e,n:me(e),k:e.k||me(e)},localStorage.setItem(Cn,JSON.stringify([a].concat(r(n.filter(function(e){return e.k!==a.k}))).slice(0,50)))),this.events.emit("emoji",{emoji:this.emoji,showVariants:this.showVariants})}},{key:"onEmojiHover",value:function(){this.showPreview&&this.events.emit("showPreview",this.emoji)}},{key:"onEmojiLeave",value:function(){this.showPreview&&this.events.emit("hidePreview")}}]),n}(),xn=function(){function n(a,i,t){e(this,n),this.emojis=a,this.showVariants=i,this.events=t}return a(n,[{key:"render",value:function(){var e=this,n=le("div","emoji-picker__emojis");return this.emojis.forEach(function(a){return n.appendChild(new Bn(a,e.showVariants,!0,e.events).render())}),n}}]),n}(),jn=function(){function n(a,i,t){e(this,n),this.events=a,this.i18n=i,this.emojiData=t}return a(n,[{key:"render",value:function(){var e=this;this.searchContainer=le("div","emoji-picker__search-container"),this.searchField=le("input","emoji-picker__search"),this.searchField.placeholder=this.i18n.search,this.searchContainer.appendChild(this.searchField);var n=le("span","emoji-picker__search-icon");return n.innerHTML=vn,this.searchContainer.appendChild(n),setTimeout(function(){return e.searchField.focus()}),this.searchField.addEventListener("keydown",function(n){return e.onKeyDown(n)}),this.searchField.addEventListener("keyup",function(){return e.onKeyUp()}),this.searchContainer}},{key:"onKeyDown",value:function(e){"Escape"===e.key&&""!==this.searchField.value&&(e.stopPropagation(),this.searchField.value="",this.events.emit("showTabs"))}},{key:"onKeyUp",value:function(){var e=this;if(this.searchField.value){this.events.emit("hideTabs");var n=this.emojiData.filter(function(n){return n.n.filter(function(n){return n.toLowerCase().indexOf(e.searchField.value.toLowerCase())>=0}).length});this.events.emit("hidePreview"),n.length?this.events.emit("showSearchResults",new xn(n,!0,this.events).render()):this.events.emit("showSearchResults",new On(this.i18n.notFound).render())}else this.events.emit("showTabs")}}]),n}(),On=function(){function n(a){e(this,n),this.message=a}return a(n,[{key:"render",value:function(){var e=le("div","emoji-picker__search-not-found"),n=le("div","emoji-picker__search-not-found-icon");n.innerHTML=pn,e.appendChild(n);var a=le("h2");return a.innerHTML=this.message,e.appendChild(a),e}}]),n}(),zn={search:"Search",categories:{recents:"Recently Used",smileys:"Smileys & People",animals:"Animals & Nature",food:"Food & Drink",activities:"Activities",travel:"Travel & Places",objects:"Objects",symbols:"Symbols",flags:"Flags"},notFound:"No emojis found"},Mn={};ce.forEach(function(e){var n=Mn[Fe[e.c]];n||(n=Mn[Fe[e.c]]=[]),n.push(e)});var Ln={smileys:yn,animals:_n,food:hn,activities:un,travel:gn,objects:wn,symbols:bn,flags:dn},Tn=function(){function n(a,i){e(this,n),this.events=a,this.i18n=i,this.activeTab=1,this.setActiveTab=this.setActiveTab.bind(this)}return a(n,[{key:"setActiveTab",value:function(e){this.activeTab>=0&&(this.tabBodies[this.activeTab].setActive(!1),this.tabs[this.activeTab].setActive(!1)),this.activeTab=e,this.tabBodies[this.activeTab].setActive(!0),this.tabs[this.activeTab].setActive(!0)}},{key:"render",value:function(){var e=le("div","emoji-picker__tabs-container");return e.appendChild(this.createTabs()),e.appendChild(this.createTabBodies()),this.setActiveTab(1),e}},{key:"createTabs",value:function(){var e=this;this.tabsList=le("ul","emoji-picker__tabs"),this.tabs=Object.keys(Ln).map(function(n,a){return new Nn(Ln[n],a+1,e.setActiveTab)});var n=new Nn(kn,0,this.setActiveTab);return this.tabs.splice(0,0,n),this.tabs.forEach(function(n){return e.tabsList.appendChild(n.render())}),this.tabsList}},{key:"createTabBodies",value:function(){var e=this;this.tabBodyContainer=le("div"),this.tabBodies=Object.keys(Ln).map(function(n,a){return new Pn(e.i18n.categories[n]||zn.categories[n],new xn(Mn[n],!0,e.events).render(),a+1)});var n=new Pn(this.i18n.categories.recents||zn.categories.recents,new xn(Dn(),!1,this.events).render(),0);return this.tabBodies.splice(0,0,n),this.events.on("emoji",function(){var n=new Pn(e.i18n.categories.recents||zn.categories.recents,new xn(Dn(),!1,e.events).render(),0);setTimeout(function(){e.tabBodyContainer.replaceChild(n.render(),e.tabBodyContainer.firstChild),e.tabBodies[0]=n,0===e.activeTab&&e.setActiveTab(0)})}),this.tabBodies.forEach(function(n){return e.tabBodyContainer.appendChild(n.render())}),this.tabBodyContainer}}]),n}(),Nn=function(){function n(a,i,t){e(this,n),this.icon=a,this.index=i,this.setActiveTab=t}return a(n,[{key:"render",value:function(){var e=this;return this.tab=le("li","emoji-picker__tab"),this.tab.innerHTML=this.icon,this.tab.addEventListener("click",function(){return e.setActiveTab(e.index)}),this.tab}},{key:"setActive",value:function(e){e?this.tab.classList.add("active"):this.tab.classList.remove("active")}}]),n}(),Pn=function(){function n(a,i,t){e(this,n),this.category=a,this.content=i,this.index=t}return a(n,[{key:"render",value:function(){this.container=le("div","emoji-picker__tab-body");var e=le("h2");return e.innerHTML=this.category,this.container.appendChild(e),this.container.appendChild(this.content),this.container}},{key:"setActive",value:function(e){e?this.container.classList.add("active"):this.container.classList.remove("active")}}]),n}(),Sn=function(){function n(a,i){e(this,n),this.events=a,this.emoji=i}return a(n,[{key:"render",value:function(){var e=this,n=le("div","emoji-picker__variant-popup"),a=le("div","emoji-picker__variant-overlay");a.addEventListener("click",function(a){a.stopPropagation(),n.contains(a.target)||e.events.emit("hideVariantPopup")}),n.appendChild(new Bn(this.emoji,!1,!1,this.events).render()),Object.keys(this.emoji.v).forEach(function(a){n.appendChild(new Bn(e.emoji.v[a],!1,!1,e.events).render())});var i=le("button","emoji-picker__variant-popup-close-button");return i.innerHTML=En,i.addEventListener("click",function(n){n.stopPropagation(),e.events.emit("hideVariantPopup")}),n.appendChild(i),a.appendChild(n),a}}]),n}(),An={position:"right-start",autoHide:!0};return function(){function n(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e(this,n),this.pickerVisible=!1,this.options=o({},An,{},a),this.options.rootElement||(this.options.rootElement=document.body),this.i18n=o({},zn,{},a.i18n),this.onDocumentClick=this.onDocumentClick.bind(this),this.onDocumentKeydown=this.onDocumentKeydown.bind(this),this.events=new c,this.publicEvents=new c}return a(n,[{key:"on",value:function(e,n){this.publicEvents.on(e,n)}},{key:"off",value:function(e,n){this.publicEvents.off(e,n)}},{key:"buildPicker",value:function(){var e=this;this.pickerEl=le("div","emoji-picker");var n=le("div","emoji-picker__content"),a=new jn(this.events,this.i18n,ce).render();this.pickerEl.appendChild(a),this.pickerEl.appendChild(n);var i,t=new Tn(this.events,this.i18n).render();n.appendChild(t),this.events.on("hideTabs",function(){n.contains(t)&&n.removeChild(t)}),this.events.on("showTabs",function(){n.contains(t)||(se(n),n.appendChild(t))}),this.events.on("showSearchResults",function(e){se(n),e.classList.add("search-results"),n.appendChild(e)}),this.pickerEl.appendChild(new fe(this.events).render()),this.events.on("emoji",function(n){var a=n.emoji,t=n.showVariants;a.v&&t?(i=new Sn(e.events,a).render(),e.pickerEl.appendChild(i)):(i&&i.parentNode===e.pickerEl&&e.pickerEl.removeChild(i),e.publicEvents.emit("emoji",a.e),e.options.autoHide&&e.hidePicker())}),this.events.on("hideVariantPopup",function(){e.pickerEl.removeChild(i),i=null}),this.options.rootElement.appendChild(this.pickerEl),setTimeout(function(){document.addEventListener("click",e.onDocumentClick),document.addEventListener("keydown",e.onDocumentKeydown)})}},{key:"onDocumentClick",value:function(e){this.pickerEl.contains(e.target)||this.hidePicker()}},{key:"hidePicker",value:function(){this.pickerVisible=!1,this.events.off("emoji"),this.events.off("hideVariantPopup"),this.options.rootElement.removeChild(this.pickerEl),this.popper.destroy(),document.removeEventListener("click",this.onDocumentClick),document.removeEventListener("keydown",this.onDocumentKeydown)}},{key:"showPicker",value:function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.pickerVisible=!0,this.buildPicker(),this.popper=new re(e,this.pickerEl,{placement:n.position||this.options.position})}},{key:"onDocumentKeydown",value:function(e){"Escape"===e.key&&this.hidePicker()}}]),n}()});
|
assets/lib/wysiwyg/square.min.css
CHANGED
@@ -111,3 +111,4 @@ div.sceditor-group:first-child{border-left:0}
|
|
111 |
.sceditor-button-h1 div { background: url('h1-button.png'); }
|
112 |
.sceditor-button-h2 div { background: url('h2-button.png'); }
|
113 |
.sceditor-button-custom-image div { background-position:0 -416px }
|
|
111 |
.sceditor-button-h1 div { background: url('h1-button.png'); }
|
112 |
.sceditor-button-h2 div { background: url('h2-button.png'); }
|
113 |
.sceditor-button-custom-image div { background-position:0 -416px }
|
114 |
+
.sceditor-button-custom-emoji div { background-position:0 -480px }
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version:
|
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.0.0
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '600');
|
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
@@ -39,6 +39,7 @@ class Ajax_Get {
|
|
39 |
add_action('wp_ajax_b2s_get_select_mandant_user', array($this, 'getSelectMandantUser'));
|
40 |
add_action('wp_ajax_b2s_get_edit_template', array($this, 'getEditTemplateForm'));
|
41 |
add_action('wp_ajax_b2s_check_draft_exists', array($this, 'checkDraftExists'));
|
|
|
42 |
}
|
43 |
|
44 |
public function getBlogPostStatus() {
|
@@ -106,7 +107,7 @@ class Ajax_Get {
|
|
106 |
$b2sSelectSchedDate = isset($_POST['b2sSchedDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['b2sSchedDate'])) ? trim($_POST['b2sSchedDate']) : "") : "";
|
107 |
$b2sUserLang = isset($_POST['b2sUserLang']) ? trim(sanitize_text_field($_POST['b2sUserLang'])) : strtolower(substr(B2S_LANGUAGE, 0, 2));
|
108 |
$b2sResultsPerPage = (isset($_POST['b2sPostsPerPage']) && (int) $_POST['b2sPostsPerPage'] > 0) ? (int) $_POST['b2sPostsPerPage'] : B2S_PLUGIN_POSTPERPAGE;
|
109 |
-
if (!empty($b2sType) && in_array($b2sType, array('all', 'sched', 'publish', 'notice', 'approve', 'draft', 'draft-post'))) {
|
110 |
$postItem = new B2S_Post_Item($b2sType, $b2sSortPostTitle, $b2sSortPostAuthor, $b2sSortPostStatus, $b2sSortPostShareStatus, $b2sSortPostPublishDate, $b2sSortPostSchedDate, $b2sShowByDate, $b2sShowByNetwork, $b2sUserAuthId, $b2sPostBlogId, $b2sPagination, $b2sSortPostCat, $b2sSortPostType, $b2sUserLang, $b2sResultsPerPage);
|
111 |
$result = array('result' => true, 'content' => $postItem->getItemHtml($b2sSelectSchedDate), 'schedDates' => json_encode($postItem->getCalendarSchedDate()));
|
112 |
if ($b2sShowPagination) {
|
@@ -454,7 +455,7 @@ class Ajax_Get {
|
|
454 |
public function getShipItemReloadUrl() {
|
455 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
456 |
if (isset($_POST['networkId']) && (int) $_POST['networkId'] > 0 && isset($_POST['networkAuthId']) && (int) $_POST['networkAuthId'] > 0 && isset($_POST['url']) && !empty($_POST['url'])) {
|
457 |
-
if (isset($_POST['postId']) && (int) $_POST['postId'] > 0 && isset($_POST['defaultUrl']) && $_POST['defaultUrl'] == $_POST['url']) {
|
458 |
$postData = get_post((int) $_POST['postId']);
|
459 |
if ($postData->post_status != 'publish') {
|
460 |
$postUrl = (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid);
|
@@ -715,5 +716,22 @@ class Ajax_Get {
|
|
715 |
wp_die();
|
716 |
}
|
717 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
718 |
|
719 |
}
|
39 |
add_action('wp_ajax_b2s_get_select_mandant_user', array($this, 'getSelectMandantUser'));
|
40 |
add_action('wp_ajax_b2s_get_edit_template', array($this, 'getEditTemplateForm'));
|
41 |
add_action('wp_ajax_b2s_check_draft_exists', array($this, 'checkDraftExists'));
|
42 |
+
add_action('wp_ajax_b2s_get_curation_ship_details', array($this, 'getCurationShipDetails'));
|
43 |
}
|
44 |
|
45 |
public function getBlogPostStatus() {
|
107 |
$b2sSelectSchedDate = isset($_POST['b2sSchedDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['b2sSchedDate'])) ? trim($_POST['b2sSchedDate']) : "") : "";
|
108 |
$b2sUserLang = isset($_POST['b2sUserLang']) ? trim(sanitize_text_field($_POST['b2sUserLang'])) : strtolower(substr(B2S_LANGUAGE, 0, 2));
|
109 |
$b2sResultsPerPage = (isset($_POST['b2sPostsPerPage']) && (int) $_POST['b2sPostsPerPage'] > 0) ? (int) $_POST['b2sPostsPerPage'] : B2S_PLUGIN_POSTPERPAGE;
|
110 |
+
if (!empty($b2sType) && in_array($b2sType, array('all', 'sched', 'publish', 'notice', 'approve', 'draft', 'draft-post', 'favorites'))) {
|
111 |
$postItem = new B2S_Post_Item($b2sType, $b2sSortPostTitle, $b2sSortPostAuthor, $b2sSortPostStatus, $b2sSortPostShareStatus, $b2sSortPostPublishDate, $b2sSortPostSchedDate, $b2sShowByDate, $b2sShowByNetwork, $b2sUserAuthId, $b2sPostBlogId, $b2sPagination, $b2sSortPostCat, $b2sSortPostType, $b2sUserLang, $b2sResultsPerPage);
|
112 |
$result = array('result' => true, 'content' => $postItem->getItemHtml($b2sSelectSchedDate), 'schedDates' => json_encode($postItem->getCalendarSchedDate()));
|
113 |
if ($b2sShowPagination) {
|
455 |
public function getShipItemReloadUrl() {
|
456 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
457 |
if (isset($_POST['networkId']) && (int) $_POST['networkId'] > 0 && isset($_POST['networkAuthId']) && (int) $_POST['networkAuthId'] > 0 && isset($_POST['url']) && !empty($_POST['url'])) {
|
458 |
+
if (isset($_POST['postId']) && (int) $_POST['postId'] > 0 && isset($_POST['defaultUrl']) && $_POST['defaultUrl'] == $_POST['url'] && (!isset($_POST['postType']) || $_POST['postType'] != 'ex')) {
|
459 |
$postData = get_post((int) $_POST['postId']);
|
460 |
if ($postData->post_status != 'publish') {
|
461 |
$postUrl = (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid);
|
716 |
wp_die();
|
717 |
}
|
718 |
}
|
719 |
+
|
720 |
+
public function getCurationShipDetails() {
|
721 |
+
if (isset($_GET['b2s_security_nonce']) && (int) wp_verify_nonce($_GET['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
722 |
+
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/View.php');
|
723 |
+
$curation = new B2S_Curation_View();
|
724 |
+
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getProfileUserAuth', 'token' => B2S_PLUGIN_TOKEN)));
|
725 |
+
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)) {
|
726 |
+
echo json_encode(array('result' => true, 'settings' => $curation->getShippingDetails($result->data->mandant, $result->data->auth)));
|
727 |
+
wp_die();
|
728 |
+
}
|
729 |
+
echo json_encode(array('result' => false, 'preview' => $preview, 'scrapeError' => $scrapeError, 'error' => 'NO_AUTH'));
|
730 |
+
wp_die();
|
731 |
+
} else {
|
732 |
+
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
733 |
+
wp_die();
|
734 |
+
}
|
735 |
+
}
|
736 |
|
737 |
}
|
includes/Ajax/Post.php
CHANGED
@@ -33,7 +33,6 @@ class Ajax_Post {
|
|
33 |
add_action('wp_ajax_b2s_prg_login', array($this, 'prgLogin'));
|
34 |
add_action('wp_ajax_b2s_prg_logout', array($this, 'prgLogout'));
|
35 |
add_action('wp_ajax_b2s_prg_ship', array($this, 'prgShip'));
|
36 |
-
add_action('wp_ajax_b2s_notice_hide', array($this, 'noticeHide'));
|
37 |
add_action('wp_ajax_b2s_ship_navbar_save_settings', array($this, 'b2sShipNavbarSaveSettings'));
|
38 |
add_action('wp_ajax_b2s_post_mail_update', array($this, 'b2sPostMailUpdate'));
|
39 |
add_action('wp_ajax_b2s_calendar_move_post', array($this, 'b2sCalendarMovePost'));
|
@@ -57,15 +56,31 @@ class Ajax_Post {
|
|
57 |
add_action('wp_ajax_b2s_delete_user_draft', array($this, 'deleteDraft'));
|
58 |
add_action('wp_ajax_b2s_auth_network_login', array($this, 'authNetworkLogin'));
|
59 |
add_action('wp_ajax_b2s_auth_network_confirm', array($this, 'authNetworkConfirm'));
|
|
|
60 |
}
|
61 |
|
62 |
public function curationDraft() {
|
63 |
//save as blog post
|
64 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) { //0-12hours lifetime
|
65 |
-
if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
67 |
if (isset($_POST['b2s-draft-id']) && !empty($_POST['b2s-draft-id']) && (int) $_POST['b2s-draft-id'] > 0) {
|
68 |
-
$data = array('ID' => (int) $_POST['b2s-draft-id']
|
69 |
$curation = new B2S_Curation_Save($data);
|
70 |
$source = (get_post_meta((int) $_POST['b2s-draft-id'], "b2s_source", true));
|
71 |
$postId = $curation->updateContent($source);
|
@@ -74,7 +89,6 @@ class Ajax_Post {
|
|
74 |
wp_die();
|
75 |
}
|
76 |
} else {
|
77 |
-
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
78 |
$curation = new B2S_Curation_Save($data);
|
79 |
$postId = $curation->insertContent();
|
80 |
if ($postId !== false) {
|
@@ -94,9 +108,23 @@ class Ajax_Post {
|
|
94 |
public function curationShare() {
|
95 |
//save as blog post
|
96 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
97 |
-
if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
99 |
-
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
100 |
$curation = new B2S_Curation_Save($data);
|
101 |
$postId = (isset($_POST['b2s-draft-id']) && (int) $_POST['b2s-draft-id'] > 0) ? (int) $_POST['b2s-draft-id'] : $curation->insertContent();
|
102 |
if ($postId !== false) {
|
@@ -108,12 +136,13 @@ class Ajax_Post {
|
|
108 |
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
109 |
$notAllowNetwork = array(4, 11, 14, 16, 18);
|
110 |
$tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
111 |
-
$allowNetworkOnlyImage = array(6, 7, 12);
|
|
|
112 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
113 |
$selectedTwitterProfile = (isset($_POST['twitter_select']) && !empty($_POST['twitter_select'])) ? (int) $_POST['twitter_select'] : '';
|
114 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/QuickPost.php');
|
115 |
-
$quickPost = new B2S_QuickPost($
|
116 |
-
$defaultShareData = array('default_titel' => sanitize_text_field($
|
117 |
'image_url' => (!empty($_POST['image_url'])) ? esc_url(trim(urldecode($_POST['image_url']))) : '',
|
118 |
'lang' => trim(strtolower(substr(B2S_LANGUAGE, 0, 2))),
|
119 |
'board' => '',
|
@@ -121,7 +150,7 @@ class Ajax_Post {
|
|
121 |
'post_id' => $postId,
|
122 |
'blog_user_id' => B2S_PLUGIN_BLOG_USER_ID,
|
123 |
'tags' => array(),
|
124 |
-
'url' => esc_url($_POST['url']),
|
125 |
'no_cache' => 0,
|
126 |
'token' => B2S_PLUGIN_TOKEN,
|
127 |
'user_timezone' => (isset($_POST['b2s_user_timezone']) ? (int) $_POST['b2s_user_timezone'] : 0 ),
|
@@ -134,9 +163,16 @@ class Ajax_Post {
|
|
134 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
135 |
if ((int) $value->networkId != 2 || ((int) $value->networkId == 2 && (empty($selectedTwitterProfile) || ((int) $selectedTwitterProfile == (int) $value->networkAuthId)))) {
|
136 |
//Filter: image network
|
137 |
-
if
|
138 |
-
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
}
|
141 |
//Filter: Blog network
|
142 |
if (in_array($value->networkId, $notAllowNetwork)) {
|
@@ -182,7 +218,7 @@ class Ajax_Post {
|
|
182 |
}
|
183 |
}
|
184 |
}
|
185 |
-
$shareData = $quickPost->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType);
|
186 |
if ($shareData !== false) {
|
187 |
$shareData['network_id'] = $value->networkId;
|
188 |
$shareData['network_type'] = $value->networkType;
|
@@ -241,12 +277,31 @@ class Ajax_Post {
|
|
241 |
wp_die();
|
242 |
}
|
243 |
}
|
244 |
-
|
245 |
public function curationCustomize() {
|
246 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
247 |
-
if
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
249 |
-
$data = array('ID' => ((isset($_POST['b2s-draft-id']) && (int) $_POST['b2s-draft-id'] > 0) ? (int) $_POST['b2s-draft-id'] : 0), 'title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
250 |
$curation = new B2S_Curation_Save($data);
|
251 |
if (isset($data['ID']) && (int) $data['ID'] > 0) {
|
252 |
$postId = $curation->updateContent();
|
@@ -264,8 +319,11 @@ class Ajax_Post {
|
|
264 |
if (isset($_POST['profile_select']) && (int) $_POST['profile_select'] > 0) {
|
265 |
$redirect_url .= '&profile=' . $_POST['profile_select'];
|
266 |
}
|
267 |
-
if (isset($
|
268 |
-
$redirect_url .= '&img=' . base64_encode($
|
|
|
|
|
|
|
269 |
}
|
270 |
echo json_encode(array('result' => true, 'redirect' => $redirect_url));
|
271 |
wp_die();
|
@@ -1083,18 +1141,6 @@ class Ajax_Post {
|
|
1083 |
}
|
1084 |
}
|
1085 |
|
1086 |
-
public function noticeHide() {
|
1087 |
-
if (isset($_POST['b2s_deactivate_nonce']) && (int) wp_verify_nonce($_POST['b2s_deactivate_nonce'], 'b2s_deactivate_nonce') === 1) {
|
1088 |
-
global $wpdb;
|
1089 |
-
$wpdb->update($wpdb->prefix . 'b2s_user', array('feature' => 1), array('blog_user_id' => B2S_PLUGIN_BLOG_USER_ID), array('%d'), array('%d'));
|
1090 |
-
echo json_encode(array('result' => true));
|
1091 |
-
wp_die();
|
1092 |
-
} else {
|
1093 |
-
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
1094 |
-
wp_die();
|
1095 |
-
}
|
1096 |
-
}
|
1097 |
-
|
1098 |
public function b2sShipNavbarSaveSettings() {
|
1099 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
1100 |
if (isset($_POST['mandantId'])) {
|
@@ -1573,6 +1619,35 @@ class Ajax_Post {
|
|
1573 |
$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'));
|
1574 |
|
1575 |
$options = new B2S_Options((int) B2S_PLUGIN_BLOG_USER_ID);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1576 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
1577 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
1578 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
@@ -1623,7 +1698,7 @@ class Ajax_Post {
|
|
1623 |
$excerpt_range_max = ((int) $limit != 0 && (int) $data['excerpt_range_max'] > (int) $limit) ? (int) $limit : (int) $data['excerpt_range_max'];
|
1624 |
$new_template[$type] = array(
|
1625 |
'format' => (isset($data['format'])) ? $data['format'] : false,
|
1626 |
-
'content' => (isset($data['content'])
|
1627 |
'short_text' => array(
|
1628 |
'active' => 0,
|
1629 |
'range_min' => (($range_max >= (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_max']) ? (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_min'] : ($range_max / 2)),
|
@@ -1743,7 +1818,7 @@ class Ajax_Post {
|
|
1743 |
foreach ($getBoards['data'] as $k => $v) {
|
1744 |
$html .= '<option value="' . esc_attr($v['board_id']) . '">' . esc_html($v['name']) . '</option>';
|
1745 |
}
|
1746 |
-
echo json_encode(array('result' => true, 'boards' => $html, 'identData' => $authorize['identData']));
|
1747 |
wp_die();
|
1748 |
}
|
1749 |
if (isset($getBoards['error']) && (int) $getBoards['error'] == 3) {
|
@@ -1779,7 +1854,7 @@ class Ajax_Post {
|
|
1779 |
openssl_public_encrypt(sanitize_text_field($_POST['username']), $username, $getPublicKey);
|
1780 |
openssl_public_encrypt(sanitize_text_field($_POST['password']), $password, $getPublicKey);
|
1781 |
openssl_public_encrypt(sanitize_text_field($_POST['boardId']), $boardId, $getPublicKey);
|
1782 |
-
$data = array('username' => base64_encode($username), 'password' => base64_encode($password), 'boardId' => base64_encode($boardId), 'identData' => sanitize_text_field($_POST['identData']));
|
1783 |
$postData = array('action' => 'authorizeNetwork', 'token' => B2S_PLUGIN_TOKEN, 'networkId' => 6, 'networkType' => 'profile', 'mandantId' => sanitize_text_field($mandantId), 'version' => B2S_PLUGIN_VERSION, 'data' => $data);
|
1784 |
if (isset($_POST['networkAuthId']) && (int) $_POST['networkAuthId'] > 0) {
|
1785 |
$postData = array_merge($postData, array('networkAuthId' => sanitize_text_field($_POST['networkAuthId'])));
|
@@ -1805,5 +1880,29 @@ class Ajax_Post {
|
|
1805 |
wp_die();
|
1806 |
}
|
1807 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1808 |
|
1809 |
}
|
33 |
add_action('wp_ajax_b2s_prg_login', array($this, 'prgLogin'));
|
34 |
add_action('wp_ajax_b2s_prg_logout', array($this, 'prgLogout'));
|
35 |
add_action('wp_ajax_b2s_prg_ship', array($this, 'prgShip'));
|
|
|
36 |
add_action('wp_ajax_b2s_ship_navbar_save_settings', array($this, 'b2sShipNavbarSaveSettings'));
|
37 |
add_action('wp_ajax_b2s_post_mail_update', array($this, 'b2sPostMailUpdate'));
|
38 |
add_action('wp_ajax_b2s_calendar_move_post', array($this, 'b2sCalendarMovePost'));
|
56 |
add_action('wp_ajax_b2s_delete_user_draft', array($this, 'deleteDraft'));
|
57 |
add_action('wp_ajax_b2s_auth_network_login', array($this, 'authNetworkLogin'));
|
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 |
}
|
61 |
|
62 |
public function curationDraft() {
|
63 |
//save as blog post
|
64 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) { //0-12hours lifetime
|
65 |
+
if(isset($_POST['postFormat'])){
|
66 |
+
if((int) $_POST['postFormat'] > 0) { //Imagepost
|
67 |
+
if (isset($_POST['image_id']) && !empty($_POST['image_id']) && isset($_POST['comment_image']) && !empty($_POST['comment_image'])) {
|
68 |
+
$data = array('title' => sanitize_text_field($_POST['comment_image']), 'content' => $_POST['comment_image'], 'image_id' => $_POST['image_id'], 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
69 |
+
} else {
|
70 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
71 |
+
wp_die();
|
72 |
+
}
|
73 |
+
} else { //Linkpost
|
74 |
+
if (isset($_POST['title']) && !empty($_POST['title']) && isset($_POST['comment']) && !empty($_POST['comment']) && isset($_POST['url']) && !empty($_POST['url'])) {
|
75 |
+
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
76 |
+
} else {
|
77 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
78 |
+
wp_die();
|
79 |
+
}
|
80 |
+
}
|
81 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
82 |
if (isset($_POST['b2s-draft-id']) && !empty($_POST['b2s-draft-id']) && (int) $_POST['b2s-draft-id'] > 0) {
|
83 |
+
$data = array_merge($data, array('ID' => (int) $_POST['b2s-draft-id']));
|
84 |
$curation = new B2S_Curation_Save($data);
|
85 |
$source = (get_post_meta((int) $_POST['b2s-draft-id'], "b2s_source", true));
|
86 |
$postId = $curation->updateContent($source);
|
89 |
wp_die();
|
90 |
}
|
91 |
} else {
|
|
|
92 |
$curation = new B2S_Curation_Save($data);
|
93 |
$postId = $curation->insertContent();
|
94 |
if ($postId !== false) {
|
108 |
public function curationShare() {
|
109 |
//save as blog post
|
110 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
111 |
+
if(isset($_POST['postFormat'])){
|
112 |
+
if((int) $_POST['postFormat'] > 0) { //Imagepost
|
113 |
+
if (isset($_POST['image_id']) && !empty($_POST['image_id']) && isset($_POST['comment_image']) && !empty($_POST['comment_image'])) {
|
114 |
+
$data = array('title' => sanitize_text_field($_POST['comment_image']), 'content' => $_POST['comment_image'], 'image_id' => $_POST['image_id'], 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
115 |
+
} else {
|
116 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
117 |
+
wp_die();
|
118 |
+
}
|
119 |
+
} else { //Linkpost
|
120 |
+
if (isset($_POST['title']) && !empty($_POST['title']) && isset($_POST['comment']) && !empty($_POST['comment']) && isset($_POST['url']) && !empty($_POST['url'])) {
|
121 |
+
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
122 |
+
} else {
|
123 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
124 |
+
wp_die();
|
125 |
+
}
|
126 |
+
}
|
127 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
|
|
128 |
$curation = new B2S_Curation_Save($data);
|
129 |
$postId = (isset($_POST['b2s-draft-id']) && (int) $_POST['b2s-draft-id'] > 0) ? (int) $_POST['b2s-draft-id'] : $curation->insertContent();
|
130 |
if ($postId !== false) {
|
136 |
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
137 |
$notAllowNetwork = array(4, 11, 14, 16, 18);
|
138 |
$tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
139 |
+
$allowNetworkOnlyImage = array(6, 7, 12, 21);
|
140 |
+
$allowNetworkOnlyLink = array(9, 15);
|
141 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
142 |
$selectedTwitterProfile = (isset($_POST['twitter_select']) && !empty($_POST['twitter_select'])) ? (int) $_POST['twitter_select'] : '';
|
143 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/QuickPost.php');
|
144 |
+
$quickPost = new B2S_QuickPost($data['content'], $data['title']);
|
145 |
+
$defaultShareData = array('default_titel' => sanitize_text_field($data['title']),
|
146 |
'image_url' => (!empty($_POST['image_url'])) ? esc_url(trim(urldecode($_POST['image_url']))) : '',
|
147 |
'lang' => trim(strtolower(substr(B2S_LANGUAGE, 0, 2))),
|
148 |
'board' => '',
|
150 |
'post_id' => $postId,
|
151 |
'blog_user_id' => B2S_PLUGIN_BLOG_USER_ID,
|
152 |
'tags' => array(),
|
153 |
+
'url' => ((isset($_POST['url']) && !empty($_POST['url'])) ? esc_url($_POST['url']) : ''),
|
154 |
'no_cache' => 0,
|
155 |
'token' => B2S_PLUGIN_TOKEN,
|
156 |
'user_timezone' => (isset($_POST['b2s_user_timezone']) ? (int) $_POST['b2s_user_timezone'] : 0 ),
|
163 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
164 |
if ((int) $value->networkId != 2 || ((int) $value->networkId == 2 && (empty($selectedTwitterProfile) || ((int) $selectedTwitterProfile == (int) $value->networkAuthId)))) {
|
165 |
//Filter: image network
|
166 |
+
if((int) $_POST['postFormat'] == 0) {
|
167 |
+
if (in_array($value->networkId, $allowNetworkOnlyImage)) {
|
168 |
+
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'IMAGE_FOR_CURATION')));
|
169 |
+
continue;
|
170 |
+
}
|
171 |
+
} else {
|
172 |
+
if (in_array($value->networkId, $allowNetworkOnlyLink)) {
|
173 |
+
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'LINK_FOR_CURATION')));
|
174 |
+
continue;
|
175 |
+
}
|
176 |
}
|
177 |
//Filter: Blog network
|
178 |
if (in_array($value->networkId, $notAllowNetwork)) {
|
218 |
}
|
219 |
}
|
220 |
}
|
221 |
+
$shareData = $quickPost->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType, $_POST['postFormat']);
|
222 |
if ($shareData !== false) {
|
223 |
$shareData['network_id'] = $value->networkId;
|
224 |
$shareData['network_type'] = $value->networkType;
|
277 |
wp_die();
|
278 |
}
|
279 |
}
|
280 |
+
|
281 |
public function curationCustomize() {
|
282 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
283 |
+
if(isset($_POST['postFormat'])){
|
284 |
+
if((int) $_POST['postFormat'] > 0) { //Imagepost
|
285 |
+
if (isset($_POST['image_id']) && !empty($_POST['image_id']) && isset($_POST['comment_image']) && !empty($_POST['comment_image'])) {
|
286 |
+
$data = array('title' => sanitize_text_field($_POST['comment_image']), 'content' => $_POST['comment_image'], 'image_id' => $_POST['image_id'], 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
287 |
+
$imgUrl = (isset($_POST['image_url']) && !empty($_POST['image_url'])) ? $_POST['image_url'] : '';
|
288 |
+
} else {
|
289 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
290 |
+
wp_die();
|
291 |
+
}
|
292 |
+
} else { //Linkpost
|
293 |
+
if (isset($_POST['title']) && !empty($_POST['title']) && isset($_POST['comment']) && !empty($_POST['comment']) && isset($_POST['url']) && !empty($_POST['url'])) {
|
294 |
+
$data = array('title' => sanitize_text_field($_POST['title']), 'url' => esc_url($_POST['url']), 'content' => (isset($_POST['comment']) ? sanitize_textarea_field($_POST['comment']) : ''), 'author_id' => B2S_PLUGIN_BLOG_USER_ID);
|
295 |
+
$imgUrl = (isset($_POST['link_image_url']) && !empty($_POST['link_image_url'])) ? $_POST['link_image_url'] : '';
|
296 |
+
} else {
|
297 |
+
echo json_encode(array('result' => false, 'error' => 'NO_DATA'));
|
298 |
+
wp_die();
|
299 |
+
}
|
300 |
+
}
|
301 |
+
if (isset($_POST['b2s-draft-id']) && !empty($_POST['b2s-draft-id']) && (int) $_POST['b2s-draft-id'] > 0) {
|
302 |
+
$data = array_merge($data, array('ID' => (int) $_POST['b2s-draft-id']));
|
303 |
+
}
|
304 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Curation/Save.php');
|
|
|
305 |
$curation = new B2S_Curation_Save($data);
|
306 |
if (isset($data['ID']) && (int) $data['ID'] > 0) {
|
307 |
$postId = $curation->updateContent();
|
319 |
if (isset($_POST['profile_select']) && (int) $_POST['profile_select'] > 0) {
|
320 |
$redirect_url .= '&profile=' . $_POST['profile_select'];
|
321 |
}
|
322 |
+
if (isset($imgUrl) && !empty($imgUrl)) {
|
323 |
+
$redirect_url .= '&img=' . base64_encode($imgUrl);
|
324 |
+
}
|
325 |
+
if (isset($_POST['postFormat'])) {
|
326 |
+
$redirect_url .= '&postFormat=' . $_POST['postFormat'];
|
327 |
}
|
328 |
echo json_encode(array('result' => true, 'redirect' => $redirect_url));
|
329 |
wp_die();
|
1141 |
}
|
1142 |
}
|
1143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1144 |
public function b2sShipNavbarSaveSettings() {
|
1145 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
1146 |
if (isset($_POST['mandantId'])) {
|
1619 |
$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'));
|
1620 |
|
1621 |
$options = new B2S_Options((int) B2S_PLUGIN_BLOG_USER_ID);
|
1622 |
+
if(isset($_POST['optionBestTimes']) && $_POST['optionBestTimes'] == true) {
|
1623 |
+
$userSchedData = $options->_getOption('auth_sched_time');
|
1624 |
+
if(isset($userSchedData['delay_day'][$_POST['networkAuthId']]) && isset($userSchedData['time'][$_POST['networkAuthId']])) {
|
1625 |
+
$assignUserOptions = new B2S_Options((int) $_POST['assignBlogUserId']);
|
1626 |
+
$assignUserSchedData = $assignUserOptions->_getOption('auth_sched_time');
|
1627 |
+
if($assignUserSchedData != false && isset($assignUserSchedData['delay_day']) && isset($assignUserSchedData['time'])) {
|
1628 |
+
$assignUserSchedData['delay_day'][$assignUserAuth['assign_network_auth_id']] = $userSchedData['delay_day'][$_POST['networkAuthId']];
|
1629 |
+
$assignUserSchedData['time'][$assignUserAuth['assign_network_auth_id']] = $userSchedData['time'][$_POST['networkAuthId']];
|
1630 |
+
} else {
|
1631 |
+
$assignUserSchedData = array(
|
1632 |
+
'delay_day' => array($assignUserAuth['assign_network_auth_id'] => $userSchedData['delay_day'][$_POST['networkAuthId']]),
|
1633 |
+
'time' => array($assignUserAuth['assign_network_auth_id'] => $userSchedData['time'][$_POST['networkAuthId']])
|
1634 |
+
);
|
1635 |
+
}
|
1636 |
+
$assignUserOptions->_setOption('auth_sched_time', $assignUserSchedData);
|
1637 |
+
}
|
1638 |
+
}
|
1639 |
+
|
1640 |
+
if(isset($_POST['optionPostingTemplate']) && $_POST['optionPostingTemplate'] == true) {
|
1641 |
+
$userTemplateData = $options->_getOption('post_template');
|
1642 |
+
if(isset($userTemplateData[$assignUserAuth['assign_network_id']][$assignUserAuth['assign_network_type']])) {
|
1643 |
+
$assignUserOptions = new B2S_Options((int) $_POST['assignBlogUserId']);
|
1644 |
+
$assignUserTemplateData = $assignUserOptions->_getOption('post_template');
|
1645 |
+
$assignUserTemplateData[$assignUserAuth['assign_network_id']][$assignUserAuth['assign_network_type']] = $userTemplateData[$assignUserAuth['assign_network_id']][$assignUserAuth['assign_network_type']];
|
1646 |
+
$assignUserOptions->_setOption('post_template', $assignUserTemplateData);
|
1647 |
+
}
|
1648 |
+
}
|
1649 |
+
|
1650 |
+
|
1651 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
1652 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
1653 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
1698 |
$excerpt_range_max = ((int) $limit != 0 && (int) $data['excerpt_range_max'] > (int) $limit) ? (int) $limit : (int) $data['excerpt_range_max'];
|
1699 |
$new_template[$type] = array(
|
1700 |
'format' => (isset($data['format'])) ? $data['format'] : false,
|
1701 |
+
'content' => (isset($data['content'])) ? sanitize_textarea_field($data['content']) : unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['content'],
|
1702 |
'short_text' => array(
|
1703 |
'active' => 0,
|
1704 |
'range_min' => (($range_max >= (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_max']) ? (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_min'] : ($range_max / 2)),
|
1818 |
foreach ($getBoards['data'] as $k => $v) {
|
1819 |
$html .= '<option value="' . esc_attr($v['board_id']) . '">' . esc_html($v['name']) . '</option>';
|
1820 |
}
|
1821 |
+
echo json_encode(array('result' => true, 'boards' => $html, 'identData' => base64_encode($authorize['identData'])));
|
1822 |
wp_die();
|
1823 |
}
|
1824 |
if (isset($getBoards['error']) && (int) $getBoards['error'] == 3) {
|
1854 |
openssl_public_encrypt(sanitize_text_field($_POST['username']), $username, $getPublicKey);
|
1855 |
openssl_public_encrypt(sanitize_text_field($_POST['password']), $password, $getPublicKey);
|
1856 |
openssl_public_encrypt(sanitize_text_field($_POST['boardId']), $boardId, $getPublicKey);
|
1857 |
+
$data = array('username' => base64_encode($username), 'password' => base64_encode($password), 'boardId' => base64_encode($boardId), 'identData' => sanitize_text_field(base64_decode($_POST['identData'])));
|
1858 |
$postData = array('action' => 'authorizeNetwork', 'token' => B2S_PLUGIN_TOKEN, 'networkId' => 6, 'networkType' => 'profile', 'mandantId' => sanitize_text_field($mandantId), 'version' => B2S_PLUGIN_VERSION, 'data' => $data);
|
1859 |
if (isset($_POST['networkAuthId']) && (int) $_POST['networkAuthId'] > 0) {
|
1860 |
$postData = array_merge($postData, array('networkAuthId' => sanitize_text_field($_POST['networkAuthId'])));
|
1880 |
wp_die();
|
1881 |
}
|
1882 |
}
|
1883 |
+
|
1884 |
+
public function changeFavoriteStatus() {
|
1885 |
+
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') === 1) {
|
1886 |
+
if(isset($_POST['postId']) && (int) $_POST['postId'] > 0 && isset($_POST['setStatus']) && (int) $_POST['setStatus'] >= 0) {
|
1887 |
+
global $wpdb;
|
1888 |
+
if((int) $_POST['setStatus'] == 1) {
|
1889 |
+
$sqlCheckFavorite = $wpdb->prepare("SELECT `id` FROM `{$wpdb->prefix}b2s_posts_favorites` WHERE `blog_user_id` = %d AND `post_id` = %d", B2S_PLUGIN_BLOG_USER_ID, (int) $_POST['postId']);
|
1890 |
+
$favoriteEntry = $wpdb->get_var($sqlCheckFavorite);
|
1891 |
+
if ($favoriteEntry == NULL) {
|
1892 |
+
$wpdb->insert($wpdb->prefix . 'b2s_posts_favorites', array('blog_user_id' => B2S_PLUGIN_BLOG_USER_ID, 'post_id' => (int) $_POST['postId'], 'save_date' => gmdate('Y-m-d H:i:s')));
|
1893 |
+
}
|
1894 |
+
} else {
|
1895 |
+
$wpdb->delete($wpdb->prefix . 'b2s_posts_favorites', array('blog_user_id' => B2S_PLUGIN_BLOG_USER_ID, 'post_id' => (int) $_POST['postId']), array('%d', '%d'));
|
1896 |
+
}
|
1897 |
+
echo json_encode(array('result' => true));
|
1898 |
+
wp_die();
|
1899 |
+
}
|
1900 |
+
echo json_encode(array('result' => false));
|
1901 |
+
wp_die();
|
1902 |
+
} else {
|
1903 |
+
echo json_encode(array('result' => false, 'error' => 'nonce'));
|
1904 |
+
wp_die();
|
1905 |
+
}
|
1906 |
+
}
|
1907 |
|
1908 |
}
|
includes/B2S/AutoPost.php
CHANGED
@@ -33,8 +33,8 @@ class B2S_AutoPost {
|
|
33 |
$this->keywords = $keywords;
|
34 |
$this->optionPostFormat = $optionPostFormat;
|
35 |
$this->allowHashTag = $allowHashTag;
|
36 |
-
$this->setPreFillText = array(0 => array(6 => 300, 8 => 239, 9 => 200, 10 => 442, 16 => 250, 17 => 442, 18 => 800), 1 => array(8 => 1200, 10 => 442, 17 => 442, 19 => 239), 2 => array(8 => 239, 10 => 442, 17 => 442, 19 => 239), 20 => 300);
|
37 |
-
$this->setPreFillTextLimit = array(0 => array(6 => 400, 8 => 400, 9 => 200, 10 => 500, 18 => 1000, 20 => 400, 16 => false), 1 => array(8 => 1200, 10 => 500, 19 => 400), 2 => array(8 => 400, 10 => 500, 19 => 9000));
|
38 |
}
|
39 |
|
40 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
@@ -90,6 +90,15 @@ class B2S_AutoPost {
|
|
90 |
$hashtags = $this->getHashTagsString($add, (($networkId == 12) ? 30-$hashtagcount : -1));
|
91 |
$postData['content'] .= " " . $hashtags;
|
92 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
}
|
94 |
|
95 |
if ($networkId == 4) {
|
@@ -162,7 +171,24 @@ class B2S_AutoPost {
|
|
162 |
|
163 |
if ($networkId == 13 || $networkId == 15) {
|
164 |
$postData['content'] = strip_tags($this->title);
|
165 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
return $postData;
|
167 |
}
|
168 |
return false;
|
33 |
$this->keywords = $keywords;
|
34 |
$this->optionPostFormat = $optionPostFormat;
|
35 |
$this->allowHashTag = $allowHashTag;
|
36 |
+
$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);
|
37 |
+
$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));
|
38 |
}
|
39 |
|
40 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
90 |
$hashtags = $this->getHashTagsString($add, (($networkId == 12) ? 30-$hashtagcount : -1));
|
91 |
$postData['content'] .= " " . $hashtags;
|
92 |
}
|
93 |
+
|
94 |
+
$authorId = get_post_field('post_author', $this->postId);
|
95 |
+
if (isset($authorId) && !empty($authorId) && (int) $authorId > 0) {
|
96 |
+
$hook_filter = new B2S_Hook_Filter();
|
97 |
+
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $authorId);
|
98 |
+
$postData['content'] = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $postData['content']));
|
99 |
+
} else {
|
100 |
+
$postData['content'] = preg_replace("/\{AUTHOR\}/", "", $postData['content']);
|
101 |
+
}
|
102 |
}
|
103 |
|
104 |
if ($networkId == 4) {
|
171 |
|
172 |
if ($networkId == 13 || $networkId == 15) {
|
173 |
$postData['content'] = strip_tags($this->title);
|
174 |
+
}
|
175 |
+
|
176 |
+
if ($networkId == 21) {
|
177 |
+
if ($this->imageUrl !== false) {
|
178 |
+
$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;
|
179 |
+
$postData['custom_title'] = strip_tags($this->title);
|
180 |
+
if ($this->allowHashTag) {
|
181 |
+
if (is_array($this->keywords) && !empty($this->keywords)) {
|
182 |
+
foreach ($this->keywords as $tag) {
|
183 |
+
$postData['tags'][] = str_replace(" ", "", $tag->name);
|
184 |
+
}
|
185 |
+
}
|
186 |
+
}
|
187 |
+
} else {
|
188 |
+
return false;
|
189 |
+
}
|
190 |
+
}
|
191 |
+
|
192 |
return $postData;
|
193 |
}
|
194 |
return false;
|
includes/B2S/Curation/Save.php
CHANGED
@@ -12,13 +12,16 @@ class B2S_Curation_Save {
|
|
12 |
$post = array(
|
13 |
'post_title' => sanitize_text_field($this->data['title']),
|
14 |
'post_content' => $this->data['content'],
|
15 |
-
'guid' => esc_url($this->data['url']),
|
16 |
'post_status' => 'private',
|
17 |
'post_author' => $this->data['author_id'],
|
18 |
'post_type' => 'b2s_ex_post',
|
19 |
'post_category' => array(0)
|
20 |
);
|
21 |
$res = wp_insert_post($post, true);
|
|
|
|
|
|
|
22 |
return ($res > 0) ? (int) $res : false;
|
23 |
}
|
24 |
|
@@ -39,9 +42,12 @@ class B2S_Curation_Save {
|
|
39 |
'ID' => $this->data['ID'],
|
40 |
'post_title' => sanitize_text_field($this->data['title']),
|
41 |
'post_content' => $this->data['content'],
|
42 |
-
'guid' => esc_url($this->data['url'])
|
43 |
);
|
44 |
$res = wp_update_post($post, true);
|
|
|
|
|
|
|
45 |
}
|
46 |
return ($res > 0) ? (int) $res : false;
|
47 |
}
|
12 |
$post = array(
|
13 |
'post_title' => sanitize_text_field($this->data['title']),
|
14 |
'post_content' => $this->data['content'],
|
15 |
+
'guid' => ((isset($this->data['url']) && !empty($this->data['url'])) ? esc_url($this->data['url']) : ''),
|
16 |
'post_status' => 'private',
|
17 |
'post_author' => $this->data['author_id'],
|
18 |
'post_type' => 'b2s_ex_post',
|
19 |
'post_category' => array(0)
|
20 |
);
|
21 |
$res = wp_insert_post($post, true);
|
22 |
+
if((int) $res > 0 && isset($this->data['image_id']) && (int) $this->data['image_id'] > 0) {
|
23 |
+
set_post_thumbnail($res, $this->data['image_id']);
|
24 |
+
}
|
25 |
return ($res > 0) ? (int) $res : false;
|
26 |
}
|
27 |
|
42 |
'ID' => $this->data['ID'],
|
43 |
'post_title' => sanitize_text_field($this->data['title']),
|
44 |
'post_content' => $this->data['content'],
|
45 |
+
'guid' => ((isset($this->data['url']) && !empty($this->data['url'])) ? esc_url($this->data['url']) : '')
|
46 |
);
|
47 |
$res = wp_update_post($post, true);
|
48 |
+
if((int) $res > 0 && isset($this->data['image_id']) && (int) $this->data['image_id'] > 0) {
|
49 |
+
set_post_thumbnail($res, $this->data['image_id']);
|
50 |
+
}
|
51 |
}
|
52 |
return ($res > 0) ? (int) $res : false;
|
53 |
}
|
includes/B2S/Curation/View.php
CHANGED
@@ -19,15 +19,18 @@ class B2S_Curation_View {
|
|
19 |
|
20 |
$html = '';
|
21 |
$html .='<div class="row">';
|
22 |
-
$html .='<
|
|
|
|
|
|
|
23 |
$html .='</div>';
|
24 |
$html .='</br>';
|
25 |
$html .='<div class="row">';
|
26 |
$html .='<div class="panel panel-default">';
|
27 |
$html .='<div class="panel-body">';
|
28 |
$html .='<div class="col-xs-12 col-sm-5 col-lg-3">';
|
29 |
-
$html .='<img src="' . esc_url($image) . '" class="
|
30 |
-
$html .='<input type="hidden" id="b2s-post-curation-image-url" name="
|
31 |
$html .='<div class="clearfix"></div>';
|
32 |
$html .='</div>';
|
33 |
$html .='<div class="col-xs-12 b2s-post-original-area col-sm-7 col-lg-9">';
|
@@ -100,12 +103,11 @@ class B2S_Curation_View {
|
|
100 |
$content .='</div>';
|
101 |
$content .= '<br>';
|
102 |
$content .='<hr>';
|
103 |
-
$content .='<input type="hidden"
|
104 |
$content .='<div class="row">';
|
105 |
$content .='<div class="col-xs-12 col-sm-6 col-lg-6">';
|
106 |
$content .= '<button class="btn btn-primary pull-left" type="submit" id="b2s-btn-curation-customize">' . esc_html__('Customize & Schedule', 'blog2social') . '</button>';
|
107 |
$content .= '<button class="btn btn-primary pull-left" type="submit" id="b2s-btn-curation-draft">' . esc_html__('Save as Draft', 'blog2social') . '</button>';
|
108 |
-
$content .= '<input type="hidden" id="b2s-draft-id" value="" name="b2s-draft-id">';
|
109 |
$content .='</div>';
|
110 |
$content .='<div class="col-xs-12 col-sm-6 col-lg-6">';
|
111 |
$content .= '<button class="btn btn-success pull-right" type="submit" id="b2s-btn-curation-share">' . esc_html__('Share', 'blog2social') . '</button>';
|
19 |
|
20 |
$html = '';
|
21 |
$html .='<div class="row">';
|
22 |
+
$html .='<div class="b2s-post-item-details-item-message-area">';
|
23 |
+
$html .='<textarea class="form-control col-xs-12 b2s-post-item-details-item-message-input" placeholder="' . esc_attr__('Write something...', 'blog2social') . '" id="b2s-post-curation-comment" name="comment">'.esc_html($desc).'</textarea>';
|
24 |
+
$html .='<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn">☺</button>';
|
25 |
+
$html .='</div>';
|
26 |
$html .='</div>';
|
27 |
$html .='</br>';
|
28 |
$html .='<div class="row">';
|
29 |
$html .='<div class="panel panel-default">';
|
30 |
$html .='<div class="panel-body">';
|
31 |
$html .='<div class="col-xs-12 col-sm-5 col-lg-3">';
|
32 |
+
$html .='<img src="' . esc_url($image) . '" class="center-block img-responsive" style="display: block;">';
|
33 |
+
$html .='<input type="hidden" id="b2s-post-curation-image-url" name="link_image_url" value="' . ($externalImage ? esc_url($image) : "") . '">';
|
34 |
$html .='<div class="clearfix"></div>';
|
35 |
$html .='</div>';
|
36 |
$html .='<div class="col-xs-12 b2s-post-original-area col-sm-7 col-lg-9">';
|
103 |
$content .='</div>';
|
104 |
$content .= '<br>';
|
105 |
$content .='<hr>';
|
106 |
+
$content .='<input type="hidden" class="b2s-post-curation-action" name="action" value="">';
|
107 |
$content .='<div class="row">';
|
108 |
$content .='<div class="col-xs-12 col-sm-6 col-lg-6">';
|
109 |
$content .= '<button class="btn btn-primary pull-left" type="submit" id="b2s-btn-curation-customize">' . esc_html__('Customize & Schedule', 'blog2social') . '</button>';
|
110 |
$content .= '<button class="btn btn-primary pull-left" type="submit" id="b2s-btn-curation-draft">' . esc_html__('Save as Draft', 'blog2social') . '</button>';
|
|
|
111 |
$content .='</div>';
|
112 |
$content .='<div class="col-xs-12 col-sm-6 col-lg-6">';
|
113 |
$content .= '<button class="btn btn-success pull-right" type="submit" id="b2s-btn-curation-share">' . esc_html__('Share', 'blog2social') . '</button>';
|
includes/B2S/Hook/Filter.php
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class B2S_Hook_Filter{
|
4 |
+
|
5 |
+
function get_wp_user_post_author_display_name($wp_post_author_id = 0) {
|
6 |
+
$user_data = get_userdata($wp_post_author_id);
|
7 |
+
if($user_data != false && !empty($user_data->display_name)) {
|
8 |
+
$wp_display_name = apply_filters('b2s_filter_wp_user_post_author_display_name', $user_data->display_name, $wp_post_author_id);
|
9 |
+
return $wp_display_name;
|
10 |
+
}
|
11 |
+
return '';
|
12 |
+
}
|
13 |
+
|
14 |
+
}
|
includes/B2S/Network/Item.php
CHANGED
@@ -129,7 +129,7 @@ class B2S_Network_Item {
|
|
129 |
if ($networkId == 18) {
|
130 |
$html .=' <a class="b2s-info-btn b2sInfoNetwork18Btn" href="#">Info</a>';
|
131 |
}
|
132 |
-
}
|
133 |
if (isset($this->bestTimeInfo[$networkId]) && !empty($this->bestTimeInfo[$networkId]) && is_array($this->bestTimeInfo[$networkId]) && $networkId != 8) {
|
134 |
$time = '';
|
135 |
$slug = ($this->lang == 'de') ? __('Uhr', 'blog2social') : '';
|
@@ -158,12 +158,16 @@ class B2S_Network_Item {
|
|
158 |
$html .= (B2S_PLUGIN_USER_VERSION > 1) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . esc_html($name) . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled b2sProFeatureModalBtn" data-title="' . esc_attr__('You want to connect a social media group?', 'blog2social') . '" data-type="auth-network">+ ' . esc_html($name) . ' <span class="label label-success">' . esc_html__("PRO", "blog2social") . '</span></a>';
|
159 |
}
|
160 |
if (array_key_exists($networkId, unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT))) {
|
161 |
-
$html .= (B2S_PLUGIN_USER_VERSION >= 1) ? '<button onclick="return false;" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-edit-template-btn" data-network-id="' . esc_attr($networkId) . '"><i class="glyphicon glyphicon-pencil"></i> ' . esc_html__('Edit Post
|
162 |
}
|
163 |
|
164 |
$html .= '</span></h4>';
|
165 |
-
|
166 |
-
|
|
|
|
|
|
|
|
|
167 |
$html .= '<div class="clearfix"></div>';
|
168 |
$html .= '<ul class="b2s-network-item-auth-list" data-network-mandant-id="' . esc_attr($mandantId) . '" data-network-id="' . esc_attr($networkId) . '" ' . (($showAllAuths) ? 'data-network-count="true"' : '') . '>';
|
169 |
|
@@ -184,7 +188,7 @@ class B2S_Network_Item {
|
|
184 |
} else {
|
185 |
$html .= $this->getAuthItemHtml($networkData, $mandantId, "", $networkId, $b2sAuthUrl, $containerMandantId, $sprache);
|
186 |
}
|
187 |
-
|
188 |
$html .= '</ul>';
|
189 |
$html .= '</div>';
|
190 |
$html .= '</div>';
|
@@ -282,7 +286,11 @@ class B2S_Network_Item {
|
|
282 |
$html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
|
283 |
}
|
284 |
$html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . ($networkId == 19 && isset($this->networkKindName[$v['networkKind']]) ? $this->networkKindName[$v['networkKind']] . '-' : '') . esc_html__('Page', 'blog2social') . (($networkId == 19 && (int) $v['networkKind'] == 0) ? ' <span class="hidden-xs">(' . esc_html__('Employer Branding', 'blog2social') . ')</span>' : '') . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
|
285 |
-
|
|
|
|
|
|
|
|
|
286 |
if (!empty($mandantName)) {
|
287 |
$html .='<span class="b2s-network-mandant-name">(' . esc_html($mandantName) . ')</span> ';
|
288 |
}
|
@@ -522,7 +530,7 @@ class B2S_Network_Item {
|
|
522 |
$html .= '<div class="row">';
|
523 |
$html .= '<div class="col-sm-12">';
|
524 |
$html .= '<div class="alert alert-info">';
|
525 |
-
$html .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('Upgrade to Blog2Social Smart
|
526 |
$html .= ' <a target="_blank" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '" class="b2s-bold b2s-text-underline">' . esc_html__('Upgrade to Blog2Social Smart', 'blog2social') . '</a>';
|
527 |
$html .= '</div>';
|
528 |
$html .= '</div>';
|
@@ -629,6 +637,7 @@ class B2S_Network_Item {
|
|
629 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-excerpt b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{EXCERPT}</button>'
|
630 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-content b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{CONTENT}</button>'
|
631 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-keywords b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{KEYWORDS}</button>'
|
|
|
632 |
. '<button type="button" class="btn btn-primary btn-xs b2s-edit-template-content-clear-btn pull-right" data-network-type="' . esc_attr($networkType) . '">' . esc_html__('clear', 'blog2social') . '</button>'
|
633 |
. '</div>';
|
634 |
$content .= '<textarea class="b2s-edit-template-post-content" style="width: 100%;" data-network-type="' . esc_attr($networkType) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>' . esc_html($schema[$networkType]['content']) . '</textarea>';
|
129 |
if ($networkId == 18) {
|
130 |
$html .=' <a class="b2s-info-btn b2sInfoNetwork18Btn" href="#">Info</a>';
|
131 |
}
|
132 |
+
}
|
133 |
if (isset($this->bestTimeInfo[$networkId]) && !empty($this->bestTimeInfo[$networkId]) && is_array($this->bestTimeInfo[$networkId]) && $networkId != 8) {
|
134 |
$time = '';
|
135 |
$slug = ($this->lang == 'de') ? __('Uhr', 'blog2social') : '';
|
158 |
$html .= (B2S_PLUGIN_USER_VERSION > 1) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . esc_html($name) . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled b2sProFeatureModalBtn" data-title="' . esc_attr__('You want to connect a social media group?', 'blog2social') . '" data-type="auth-network">+ ' . esc_html($name) . ' <span class="label label-success">' . esc_html__("PRO", "blog2social") . '</span></a>';
|
159 |
}
|
160 |
if (array_key_exists($networkId, unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT))) {
|
161 |
+
$html .= (B2S_PLUGIN_USER_VERSION >= 1) ? '<button onclick="return false;" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-edit-template-btn" data-network-id="' . esc_attr($networkId) . '"><i class="glyphicon glyphicon-pencil"></i> ' . esc_html__('Edit Post Template', 'blog2social') . '</button>' : '<button onclick="return false;" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-edit-template-btn b2s-btn-disabled" data-network-id="' . esc_attr($networkId) . '"><i class="glyphicon glyphicon-pencil"></i> ' . esc_html__('Edit Post Template', 'blog2social') . ' <span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span></button>';
|
162 |
}
|
163 |
|
164 |
$html .= '</span></h4>';
|
165 |
+
|
166 |
+
|
167 |
+
if($networkId == 19) {
|
168 |
+
$html .= '<div class="clearfix"></div>';
|
169 |
+
$html .= '<div id="b2sXingBusinessPageInfo" class="alert alert-warning">'. sprintf(__('Business Pages will be closed by XING on december 31, 2019. Please use XING Employer Branding Pages instead. <a target="_blank" href="%s">More information.</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('xing_business'))).'</div>';
|
170 |
+
}
|
171 |
$html .= '<div class="clearfix"></div>';
|
172 |
$html .= '<ul class="b2s-network-item-auth-list" data-network-mandant-id="' . esc_attr($mandantId) . '" data-network-id="' . esc_attr($networkId) . '" ' . (($showAllAuths) ? 'data-network-count="true"' : '') . '>';
|
173 |
|
188 |
} else {
|
189 |
$html .= $this->getAuthItemHtml($networkData, $mandantId, "", $networkId, $b2sAuthUrl, $containerMandantId, $sprache);
|
190 |
}
|
191 |
+
|
192 |
$html .= '</ul>';
|
193 |
$html .= '</div>';
|
194 |
$html .= '</div>';
|
286 |
$html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
|
287 |
}
|
288 |
$html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . ($networkId == 19 && isset($this->networkKindName[$v['networkKind']]) ? $this->networkKindName[$v['networkKind']] . '-' : '') . esc_html__('Page', 'blog2social') . (($networkId == 19 && (int) $v['networkKind'] == 0) ? ' <span class="hidden-xs">(' . esc_html__('Employer Branding', 'blog2social') . ')</span>' : '') . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
|
289 |
+
|
290 |
+
if($networkId == 19 && (int) $v['networkKind'] == 1) {// Xing Business Pages Info
|
291 |
+
$html .= '<input type="hidden" value="1" id="b2sHasXingBusinessPage">';
|
292 |
+
}
|
293 |
+
|
294 |
if (!empty($mandantName)) {
|
295 |
$html .='<span class="b2s-network-mandant-name">(' . esc_html($mandantName) . ')</span> ';
|
296 |
}
|
530 |
$html .= '<div class="row">';
|
531 |
$html .= '<div class="col-sm-12">';
|
532 |
$html .= '<div class="alert alert-info">';
|
533 |
+
$html .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('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” 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.', 'blog2social');
|
534 |
$html .= ' <a target="_blank" href="' . esc_url(B2S_Tools::getSupportLink('affiliate')) . '" class="b2s-bold b2s-text-underline">' . esc_html__('Upgrade to Blog2Social Smart', 'blog2social') . '</a>';
|
535 |
$html .= '</div>';
|
536 |
$html .= '</div>';
|
637 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-excerpt b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{EXCERPT}</button>'
|
638 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-content b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{CONTENT}</button>'
|
639 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-keywords b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{KEYWORDS}</button>'
|
640 |
+
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-author b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{AUTHOR}</button>'
|
641 |
. '<button type="button" class="btn btn-primary btn-xs b2s-edit-template-content-clear-btn pull-right" data-network-type="' . esc_attr($networkType) . '">' . esc_html__('clear', 'blog2social') . '</button>'
|
642 |
. '</div>';
|
643 |
$content .= '<textarea class="b2s-edit-template-post-content" style="width: 100%;" data-network-type="' . esc_attr($networkType) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>' . esc_html($schema[$networkType]['content']) . '</textarea>';
|
includes/B2S/Post/Filter.php
CHANGED
@@ -152,7 +152,7 @@ class B2S_Post_Filter {
|
|
152 |
$this->postFilter .= $this->getPostCatHtml();
|
153 |
$this->postFilter .= $this->getPostTypeHtml();
|
154 |
|
155 |
-
if ($this->type == 'all' || $this->type == 'draft-post') {
|
156 |
$this->postFilter .= $this->getPostStatusHtml();
|
157 |
$this->postFilter .= $this->getPostShareStatusHtml();
|
158 |
}
|
152 |
$this->postFilter .= $this->getPostCatHtml();
|
153 |
$this->postFilter .= $this->getPostTypeHtml();
|
154 |
|
155 |
+
if ($this->type == 'all' || $this->type == 'draft-post' || $this->type == 'favorites') {
|
156 |
$this->postFilter .= $this->getPostStatusHtml();
|
157 |
$this->postFilter .= $this->getPostShareStatusHtml();
|
158 |
}
|
includes/B2S/Post/Item.php
CHANGED
@@ -34,14 +34,14 @@ class B2S_Post_Item {
|
|
34 |
$this->searchPublishDate = $publishDate;
|
35 |
$this->searchSchedDate = $schedDate;
|
36 |
$this->searchShowByDate = $showByDate;
|
37 |
-
$this->searchShowByNetwork = (int)$showByNetwork;
|
38 |
-
$this->searchUserAuthId = (int)$userAuthId;
|
39 |
-
$this->searchBlogPostId = (int)$blogPostId;
|
40 |
-
$this->currentPage = (int)$currentPage;
|
41 |
-
$this->searchPostCat = (int)$postCat;
|
42 |
$this->searchPostType = $postType;
|
43 |
$this->userLang = $userLang; //Plugin: qTranslate
|
44 |
-
$this->results_per_page = (int)$results_per_page;
|
45 |
}
|
46 |
|
47 |
protected function getData() {
|
@@ -125,9 +125,10 @@ class B2S_Post_Item {
|
|
125 |
$addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND a.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
|
126 |
|
127 |
if ($this->type == 'all') {
|
128 |
-
$sqlPosts = "SELECT DISTINCT posts.`ID`, posts.`post_author`, posts.`post_date`, posts.`post_type`, posts.`post_status`, posts.`post_title`, b2s_drafts.blog_user_id as draft_blog_user_id
|
129 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2 $leftJoin3
|
130 |
-
LEFT JOIN ( SELECT post_id, blog_user_id FROM {$wpdb->prefix}b2s_posts_drafts WHERE blog_user_id = ".B2S_PLUGIN_BLOG_USER_ID." ) as b2s_drafts ON posts.ID = b2s_drafts.post_id
|
|
|
131 |
WHERE $addSearchType $addSearchAuthorId $addSearchPostTitle $addNotAdmin
|
132 |
AND $postTypes $leftJoinWhere
|
133 |
ORDER BY `" . $order . "` " . $sortType . "
|
@@ -143,7 +144,7 @@ class B2S_Post_Item {
|
|
143 |
|
144 |
if ($this->type == 'publish' || $this->type == 'notice' || $this->type == 'sched' || $this->type == 'approve') {
|
145 |
//ExistsTable
|
146 |
-
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts'") == $wpdb->prefix.'b2s_posts') {
|
147 |
if ($this->type == 'approve') {
|
148 |
$addWhere = "";
|
149 |
$where = " a.`hide` = 0 AND a.`post_for_approve` = 1 AND (a.`publish_date` != '0000-00-00 00:00:00' OR a.`sched_date_utc` <= '" . gmdate('Y-m-d H:i:s') . "') $addNotAdminPosts GROUP BY a.`post_id` ORDER BY a.`sched_date` " . $sortType;
|
@@ -161,14 +162,14 @@ class B2S_Post_Item {
|
|
161 |
$select = ($this->type == 'publish' || $this->type == 'notice') ? 'filter.`blog_user_id`, filter.max_publish_date' : 'filter.`blog_user_id`, filter.`sched_date`';
|
162 |
$selectInnerJoin = ($this->type == 'publish' || $this->type == 'notice') ? 'MAX(a.`publish_date`) as max_publish_date' : '`sched_date`';
|
163 |
}
|
164 |
-
$addInnerJoinLeftJoin = ((int) $this->searchUserAuthId != 0) ? ' LEFT JOIN '
|
165 |
$addInnnerJoinLeftJoinWhere = ((int) $this->searchUserAuthId != 0) ? ' b.`network_auth_id` =' . $this->searchUserAuthId . ' AND ' : '';
|
166 |
|
167 |
-
$addInnerJoinLeftJoinNetwork = ((int) $this->searchShowByNetwork != 0 && empty($addInnerJoinLeftJoin)) ? ' LEFT JOIN '
|
168 |
$addInnnerJoinLeftJoinWhereNetwork = ((int) $this->searchShowByNetwork != 0) ? ' b.`network_id` =' . $this->searchShowByNetwork . ' AND ' : '';
|
169 |
|
170 |
|
171 |
-
$sqlPosts = "SELECT posts.`ID`, posts.`post_author`,posts.`post_type`,posts.`post_title`, " . $select . ", filter.`id`
|
172 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
173 |
INNER JOIN(
|
174 |
SELECT a.`id`,$selectInnerJoin, a.`blog_user_id`, a.`post_id`
|
@@ -224,10 +225,11 @@ class B2S_Post_Item {
|
|
224 |
}
|
225 |
|
226 |
if ($this->type == 'draft') {
|
227 |
-
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts'") == $wpdb->prefix.'b2s_posts') {
|
228 |
-
$sqlPosts = "SELECT posts.`ID`, posts.`post_author`, posts.`post_date`, posts.`post_type`, posts.`post_status`, posts.`post_title`, posts.`post_content`, posts.`guid
|
229 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
230 |
LEFT JOIN {$wpdb->prefix}b2s_posts ON posts.ID = {$wpdb->prefix}b2s_posts.post_id
|
|
|
231 |
WHERE (posts.`post_type` LIKE '%b2s_ex_post%')
|
232 |
AND {$wpdb->prefix}b2s_posts.post_id IS NULL AND (posts.`post_status` = 'private' OR posts.`post_status` = 'draft')
|
233 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
@@ -246,10 +248,10 @@ class B2S_Post_Item {
|
|
246 |
}
|
247 |
|
248 |
if ($this->type == 'draft-post') {
|
249 |
-
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts_drafts'") == $wpdb->prefix.'b2s_posts_drafts') {
|
250 |
$sqlPosts = "SELECT {$wpdb->prefix}b2s_posts_drafts.`ID` AS draft_id, posts.`ID`, {$wpdb->prefix}b2s_posts_drafts.`post_id`, {$wpdb->prefix}b2s_posts_drafts.`last_save_date`, {$wpdb->prefix}b2s_posts_drafts.`data`, posts.post_author, posts.post_type, posts.post_title
|
251 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_drafts ON {$wpdb->prefix}b2s_posts_drafts.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
252 |
-
|
253 |
AND $postTypes
|
254 |
AND $addSearchType
|
255 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
@@ -266,6 +268,28 @@ class B2S_Post_Item {
|
|
266 |
$this->postTotal = $wpdb->get_var($sqlPostsTotal);
|
267 |
}
|
268 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
}
|
270 |
|
271 |
public function getItemHtml($selectSchedDate = "") {
|
@@ -273,10 +297,12 @@ class B2S_Post_Item {
|
|
273 |
$postStatus = array('publish' => __('published', 'blog2social'), 'pending' => __('draft', 'blog2social'), 'future' => __('scheduled', 'blog2social'));
|
274 |
|
275 |
if (empty($this->postData)) {
|
276 |
-
if ($this->type
|
277 |
-
$text =
|
278 |
-
}
|
279 |
-
$text =
|
|
|
|
|
280 |
}
|
281 |
return '<li class="list-group-item"><div class="media"><div class="media-body"></div>' . esc_html($text) . '</div></li>';
|
282 |
}
|
@@ -308,18 +334,21 @@ class B2S_Post_Item {
|
|
308 |
|
309 |
$this->postItem .= '<li class="list-group-item">
|
310 |
<div class="media">
|
|
|
|
|
|
|
|
|
311 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
312 |
<div class="media-body">
|
313 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>
|
314 |
<span class="pull-right b2s-publish-btn">
|
315 |
<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . (!empty($selectSchedDate) ? '&schedDate=' . $selectSchedDate : '') . '">' . esc_html__('Share on Social Media', 'blog2social') . '</a>
|
316 |
-
</span>'.
|
317 |
-
|
318 |
-
|
319 |
<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>
|
320 |
-
</span>'
|
321 |
-
|
322 |
-
.'<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>
|
323 |
</div>
|
324 |
</div>
|
325 |
</li>';
|
@@ -339,7 +368,7 @@ class B2S_Post_Item {
|
|
339 |
<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>
|
340 |
<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>
|
341 |
</span>
|
342 |
-
<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($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>
|
343 |
</div>
|
344 |
<div class="pull-left">
|
345 |
<div class="b2s-post-publish-area" data-post-id="' . esc_attr($var->ID) . '"></div>
|
@@ -356,14 +385,14 @@ class B2S_Post_Item {
|
|
356 |
|
357 |
$this->postItem .= '<li class="list-group-item">
|
358 |
<div class="media">
|
359 |
-
|
360 |
<div class="media-body">
|
361 |
<div class="pull-left media-head">
|
362 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>' . $curated . '
|
363 |
<span class="pull-right">
|
364 |
<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>
|
365 |
</span>
|
366 |
-
<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($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>
|
367 |
</div>
|
368 |
<div class="pull-left">
|
369 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
@@ -378,7 +407,7 @@ class B2S_Post_Item {
|
|
378 |
$countApprove = $this->getPostCount($var->ID);
|
379 |
$this->postItem .= '<li class="list-group-item">
|
380 |
<div class="media">
|
381 |
-
|
382 |
<div class="media-body">
|
383 |
<div class="pull-left media-head">
|
384 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>
|
@@ -407,9 +436,13 @@ class B2S_Post_Item {
|
|
407 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
408 |
<div class="media-body">
|
409 |
<strong><a target="_blank" href="' . esc_url($url) . '">' . esc_html($postTitle) . '</a></strong>' . $browser . '
|
410 |
-
<span class="pull-right padding-left-5 b2s-publish-btn">
|
411 |
-
|
412 |
-
|
|
|
|
|
|
|
|
|
413 |
<span class="pull-right">
|
414 |
<button class="btn btn-default btn-sm deleteCcDraftBtn" data-blog-post-id="' . esc_attr($var->ID) . '"><span class="glyphicon glyphicon glyphicon-trash "></span> ' . esc_html__('delete', 'blog2social') . '</button>
|
415 |
</span>
|
@@ -438,6 +471,24 @@ class B2S_Post_Item {
|
|
438 |
</div>
|
439 |
</li>';
|
440 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
441 |
}
|
442 |
|
443 |
return html_entity_decode($this->postItem, ENT_COMPAT, 'UTF-8');
|
@@ -447,9 +498,9 @@ class B2S_Post_Item {
|
|
447 |
if ($post_id > 0) {
|
448 |
global $wpdb;
|
449 |
$addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
|
450 |
-
$addLeftJoin = ((int) $this->searchUserAuthId != 0) ? ' LEFT JOIN '
|
451 |
$addLeftJoinWhere = ((int) $this->searchUserAuthId != 0) ? ' details.`network_auth_id` =' . $this->searchUserAuthId . ' AND ' : '';
|
452 |
-
$addLeftJoinNetwork = ((int) $this->searchShowByNetwork != 0 && empty($addLeftJoin)) ? ' LEFT JOIN '
|
453 |
$addLeftJoinWhereNetwork = ((int) $this->searchShowByNetwork != 0) ? ' details.`network_id` =' . $this->searchShowByNetwork . ' AND ' : '';
|
454 |
|
455 |
if ($this->type == 'approve') {
|
@@ -539,7 +590,7 @@ class B2S_Post_Item {
|
|
539 |
global $wpdb;
|
540 |
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (' AND blog_user_id =' . B2S_PLUGIN_BLOG_USER_ID) : '';
|
541 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
542 |
-
$addWhere = ($type == 'notice') ? ' AND `'
|
543 |
$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) $addWhere $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
544 |
$result = $wpdb->get_results($sqlData);
|
545 |
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'));
|
@@ -548,7 +599,7 @@ class B2S_Post_Item {
|
|
548 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
549 |
$networkErrorCode = unserialize(B2S_PLUGIN_NETWORK_ERROR);
|
550 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
551 |
-
$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>';
|
552 |
foreach ($result as $var) {
|
553 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
554 |
$publishLink = (!empty($var->publish_link)) ? '<a target="_blank" href="' . esc_url($var->publish_link) . '">' . esc_html__('show', 'blog2social') . '</a> | ' : '';
|
@@ -570,9 +621,9 @@ class B2S_Post_Item {
|
|
570 |
<div class="media">';
|
571 |
|
572 |
if (!empty($publishDate)) {
|
573 |
-
$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">';
|
574 |
} else {
|
575 |
-
$content .='<div class="checbox-item-empty"></div>';
|
576 |
}
|
577 |
|
578 |
if (!empty($var->publish_link)) {
|
@@ -582,7 +633,7 @@ class B2S_Post_Item {
|
|
582 |
}
|
583 |
$content .= '<div class="media-body">
|
584 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong> ' . $error . '
|
585 |
-
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : ''
|
586 |
<p class="info">' . $publishLink;
|
587 |
|
588 |
$content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-publish-area-drop-btn" data-post-id="' . esc_attr($var->id) . '">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
@@ -597,7 +648,7 @@ class B2S_Post_Item {
|
|
597 |
</div>
|
598 |
</li>';
|
599 |
}
|
600 |
-
$content .='<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
|
601 |
$content .= B2S_PLUGIN_USER_VERSION > 0 ? '<a class="checkbox-post-publish-all-btn" data-blog-post-id="' . esc_attr($post_id) . '" href="#">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
602 |
$content .= esc_html__('delete from reporting', 'blog2social') . '</a></label></li>';
|
603 |
$content .= '</ul></div></div>';
|
@@ -618,18 +669,18 @@ class B2S_Post_Item {
|
|
618 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
619 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
620 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
621 |
-
$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>';
|
622 |
foreach ($result as $var) {
|
623 |
$approveDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2));
|
624 |
$approveText = __('is waiting to shared by %s', 'blog2social');
|
625 |
$userInfo = get_user_meta($var->blog_user_id);
|
626 |
$content .= ' <li class="list-group-item b2s-post-approve-area-li" data-post-id="' . esc_attr($var->id) . '">
|
627 |
<div class="media">';
|
628 |
-
$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">';
|
629 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">';
|
630 |
$content .= '<div class="media-body">
|
631 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong>
|
632 |
-
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : ''
|
633 |
<p class="info">';
|
634 |
|
635 |
$data = array(
|
@@ -658,7 +709,7 @@ class B2S_Post_Item {
|
|
658 |
</div>
|
659 |
</li>';
|
660 |
}
|
661 |
-
$content .='<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
|
662 |
$content .= B2S_PLUGIN_USER_VERSION > 0 ? '<a class="checkbox-post-approve-all-btn" data-blog-post-id="' . esc_attr($post_id) . '" href="#">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_html__('You want to delete your Social Media post?', 'blog2social') . '">';
|
663 |
$content .= esc_html__('delete', 'blog2social') . '</a></label></li>';
|
664 |
$content .= '</ul></div></div>';
|
@@ -671,7 +722,7 @@ class B2S_Post_Item {
|
|
671 |
public function getSchedPostDataHtml($post_id = 0, $showByDate = '', $showByNetwork = 0, $userAuthId = 0) {
|
672 |
if ($post_id > 0) {
|
673 |
global $wpdb;
|
674 |
-
$addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `'
|
675 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
676 |
$addSearchShowByNetwork = ((int) $showByNetwork > 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_id` = '" . $showByNetwork . "' " : '';
|
677 |
$addSearchUserAuthId = ($userAuthId != 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
|
@@ -683,21 +734,21 @@ class B2S_Post_Item {
|
|
683 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
684 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
685 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
686 |
-
$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>';
|
687 |
$blogPostDate = strtotime(get_the_date('Y-m-d H:i:s', $post_id)) . '000';
|
688 |
foreach ($result as $var) {
|
689 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
690 |
$userInfo = get_user_meta($var->blog_user_id);
|
691 |
$content .= '<li class="list-group-item b2s-post-sched-area-li" data-post-id="' . esc_attr($var->id) . '">
|
692 |
<div class="media">';
|
693 |
-
$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">';
|
694 |
|
695 |
$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) : '';
|
696 |
$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> | ') : '';
|
697 |
|
698 |
$schedInProcess = ($var->sched_date_utc <= gmdate('Y-m-d H:i:s')) ? ' <span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' . esc_html__('is processed by the network', 'blog2social') : '';
|
699 |
|
700 |
-
$content .='<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
701 |
<div class="media-body">
|
702 |
<strong>' . esc_html($networkName[$var->network_id]) . $schedInProcess . '</strong>
|
703 |
<p class="info">' . esc_html($networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' )) . ' | ' . sprintf(esc_html__('scheduled by %s', 'blog2social'), ' <a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' <span class="b2s-post-sched-area-sched-time" data-post-id="' . esc_attr($var->id) . '">' . $lastEdit . esc_html(B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2))) . '</span> ' . $specialPosting . '</p>
|
34 |
$this->searchPublishDate = $publishDate;
|
35 |
$this->searchSchedDate = $schedDate;
|
36 |
$this->searchShowByDate = $showByDate;
|
37 |
+
$this->searchShowByNetwork = (int) $showByNetwork;
|
38 |
+
$this->searchUserAuthId = (int) $userAuthId;
|
39 |
+
$this->searchBlogPostId = (int) $blogPostId;
|
40 |
+
$this->currentPage = (int) $currentPage;
|
41 |
+
$this->searchPostCat = (int) $postCat;
|
42 |
$this->searchPostType = $postType;
|
43 |
$this->userLang = $userLang; //Plugin: qTranslate
|
44 |
+
$this->results_per_page = (int) $results_per_page;
|
45 |
}
|
46 |
|
47 |
protected function getData() {
|
125 |
$addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND a.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
|
126 |
|
127 |
if ($this->type == 'all') {
|
128 |
+
$sqlPosts = "SELECT DISTINCT posts.`ID`, posts.`post_author`, posts.`post_date`, posts.`post_type`, posts.`post_status`, posts.`post_title`, b2s_drafts.blog_user_id as draft_blog_user_id, b2s_favorites.blog_user_id as favorites_blog_user_id
|
129 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2 $leftJoin3
|
130 |
+
LEFT JOIN ( SELECT post_id, blog_user_id FROM {$wpdb->prefix}b2s_posts_drafts WHERE blog_user_id = " . B2S_PLUGIN_BLOG_USER_ID . " ) as b2s_drafts ON posts.ID = b2s_drafts.post_id
|
131 |
+
LEFT JOIN ( SELECT post_id, blog_user_id FROM {$wpdb->prefix}b2s_posts_favorites WHERE blog_user_id = " . B2S_PLUGIN_BLOG_USER_ID . " ) as b2s_favorites ON posts.ID = b2s_favorites.post_id
|
132 |
WHERE $addSearchType $addSearchAuthorId $addSearchPostTitle $addNotAdmin
|
133 |
AND $postTypes $leftJoinWhere
|
134 |
ORDER BY `" . $order . "` " . $sortType . "
|
144 |
|
145 |
if ($this->type == 'publish' || $this->type == 'notice' || $this->type == 'sched' || $this->type == 'approve') {
|
146 |
//ExistsTable
|
147 |
+
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts'") == $wpdb->prefix . 'b2s_posts') {
|
148 |
if ($this->type == 'approve') {
|
149 |
$addWhere = "";
|
150 |
$where = " a.`hide` = 0 AND a.`post_for_approve` = 1 AND (a.`publish_date` != '0000-00-00 00:00:00' OR a.`sched_date_utc` <= '" . gmdate('Y-m-d H:i:s') . "') $addNotAdminPosts GROUP BY a.`post_id` ORDER BY a.`sched_date` " . $sortType;
|
162 |
$select = ($this->type == 'publish' || $this->type == 'notice') ? 'filter.`blog_user_id`, filter.max_publish_date' : 'filter.`blog_user_id`, filter.`sched_date`';
|
163 |
$selectInnerJoin = ($this->type == 'publish' || $this->type == 'notice') ? 'MAX(a.`publish_date`) as max_publish_date' : '`sched_date`';
|
164 |
}
|
165 |
+
$addInnerJoinLeftJoin = ((int) $this->searchUserAuthId != 0) ? ' LEFT JOIN ' . $wpdb->prefix . 'b2s_posts_network_details b ON b.`id` = a.`network_details_id` ' : '';
|
166 |
$addInnnerJoinLeftJoinWhere = ((int) $this->searchUserAuthId != 0) ? ' b.`network_auth_id` =' . $this->searchUserAuthId . ' AND ' : '';
|
167 |
|
168 |
+
$addInnerJoinLeftJoinNetwork = ((int) $this->searchShowByNetwork != 0 && empty($addInnerJoinLeftJoin)) ? ' LEFT JOIN ' . $wpdb->prefix . 'b2s_posts_network_details b ON b.`id` = a.`network_details_id` ' : '';
|
169 |
$addInnnerJoinLeftJoinWhereNetwork = ((int) $this->searchShowByNetwork != 0) ? ' b.`network_id` =' . $this->searchShowByNetwork . ' AND ' : '';
|
170 |
|
171 |
|
172 |
+
$sqlPosts = "SELECT posts.`ID`, posts.`post_author`,posts.`post_type`,posts.`post_title`, " . $select . ", filter.`id`
|
173 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
174 |
INNER JOIN(
|
175 |
SELECT a.`id`,$selectInnerJoin, a.`blog_user_id`, a.`post_id`
|
225 |
}
|
226 |
|
227 |
if ($this->type == 'draft') {
|
228 |
+
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts'") == $wpdb->prefix . 'b2s_posts') {
|
229 |
+
$sqlPosts = "SELECT posts.`ID`, posts.`post_author`, posts.`post_date`, posts.`post_type`, posts.`post_status`, posts.`post_title`, posts.`post_content`, posts.`guid`, postmeta.meta_value
|
230 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
231 |
LEFT JOIN {$wpdb->prefix}b2s_posts ON posts.ID = {$wpdb->prefix}b2s_posts.post_id
|
232 |
+
LEFT JOIN (SELECT * FROM {$wpdb->prefix}postmeta WHERE meta_key = '_thumbnail_id') AS postmeta ON posts.ID = postmeta.post_id
|
233 |
WHERE (posts.`post_type` LIKE '%b2s_ex_post%')
|
234 |
AND {$wpdb->prefix}b2s_posts.post_id IS NULL AND (posts.`post_status` = 'private' OR posts.`post_status` = 'draft')
|
235 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
248 |
}
|
249 |
|
250 |
if ($this->type == 'draft-post') {
|
251 |
+
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts_drafts'") == $wpdb->prefix . 'b2s_posts_drafts') {
|
252 |
$sqlPosts = "SELECT {$wpdb->prefix}b2s_posts_drafts.`ID` AS draft_id, posts.`ID`, {$wpdb->prefix}b2s_posts_drafts.`post_id`, {$wpdb->prefix}b2s_posts_drafts.`last_save_date`, {$wpdb->prefix}b2s_posts_drafts.`data`, posts.post_author, posts.post_type, posts.post_title
|
253 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_drafts ON {$wpdb->prefix}b2s_posts_drafts.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
254 |
+
WHERE {$wpdb->prefix}b2s_posts_drafts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
255 |
AND $postTypes
|
256 |
AND $addSearchType
|
257 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
268 |
$this->postTotal = $wpdb->get_var($sqlPostsTotal);
|
269 |
}
|
270 |
}
|
271 |
+
|
272 |
+
if ($this->type == 'favorites') {
|
273 |
+
if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}b2s_posts_favorites'") == $wpdb->prefix . 'b2s_posts_favorites') {
|
274 |
+
$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
|
275 |
+
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_favorites ON {$wpdb->prefix}b2s_posts_favorites.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
276 |
+
WHERE {$wpdb->prefix}b2s_posts_favorites.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
277 |
+
AND $postTypes
|
278 |
+
AND $addSearchType
|
279 |
+
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
280 |
+
ORDER BY `" . $order . "` " . $sortType . "
|
281 |
+
LIMIT " . (($this->currentPage - 1) * $this->results_per_page) . "," . $this->results_per_page;
|
282 |
+
$this->postData = $wpdb->get_results($sqlPosts);
|
283 |
+
|
284 |
+
$sqlPostsTotal = "SELECT COUNT(*)
|
285 |
+
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_favorites ON {$wpdb->prefix}b2s_posts_favorites.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3
|
286 |
+
WHERE {$wpdb->prefix}b2s_posts_favorites.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID . "
|
287 |
+
AND $postTypes
|
288 |
+
AND $addSearchType
|
289 |
+
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere";
|
290 |
+
$this->postTotal = $wpdb->get_var($sqlPostsTotal);
|
291 |
+
}
|
292 |
+
}
|
293 |
}
|
294 |
|
295 |
public function getItemHtml($selectSchedDate = "") {
|
297 |
$postStatus = array('publish' => __('published', 'blog2social'), 'pending' => __('draft', 'blog2social'), 'future' => __('scheduled', 'blog2social'));
|
298 |
|
299 |
if (empty($this->postData)) {
|
300 |
+
if ($this->type == 'draft-post') {
|
301 |
+
$text = esc_html__('You have not saved any drafts.', 'blog2social');
|
302 |
+
} elseif ($this->type == 'favorites') {
|
303 |
+
$text = esc_html__('You have not saved any favorites.', 'blog2social');
|
304 |
+
} else {
|
305 |
+
$text = esc_html__('You have not published or scheduled any posts.', 'blog2social');
|
306 |
}
|
307 |
return '<li class="list-group-item"><div class="media"><div class="media-body"></div>' . esc_html($text) . '</div></li>';
|
308 |
}
|
334 |
|
335 |
$this->postItem .= '<li class="list-group-item">
|
336 |
<div class="media">
|
337 |
+
' . ((isset($var->favorites_blog_user_id) && $var->favorites_blog_user_id != NULL && $var->favorites_blog_user_id == B2S_PLUGIN_BLOG_USER_ID) ?
|
338 |
+
'<i class="glyphicon glyphicon-star pull-left b2sFavoriteStar" data-post-id="' . $var->ID . '" data-is-favorite="1"></i>' :
|
339 |
+
'<i class="glyphicon glyphicon-star-empty pull-left b2sFavoriteStar" data-post-id="' . $var->ID . '" data-is-favorite="0"></i>'
|
340 |
+
) . '
|
341 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
342 |
<div class="media-body">
|
343 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>
|
344 |
<span class="pull-right b2s-publish-btn">
|
345 |
<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . (!empty($selectSchedDate) ? '&schedDate=' . $selectSchedDate : '') . '">' . esc_html__('Share on Social Media', 'blog2social') . '</a>
|
346 |
+
</span>' .
|
347 |
+
((isset($var->draft_blog_user_id) && $var->draft_blog_user_id != NULL && $var->draft_blog_user_id == B2S_PLUGIN_BLOG_USER_ID) ?
|
348 |
+
'<span class="pull-right b2s-publish-btn">
|
349 |
<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>
|
350 |
+
</span>' : '')
|
351 |
+
. '<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>
|
|
|
352 |
</div>
|
353 |
</div>
|
354 |
</li>';
|
368 |
<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>
|
369 |
<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>
|
370 |
</span>
|
371 |
+
<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($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($lastPublish, substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
372 |
</div>
|
373 |
<div class="pull-left">
|
374 |
<div class="b2s-post-publish-area" data-post-id="' . esc_attr($var->ID) . '"></div>
|
385 |
|
386 |
$this->postItem .= '<li class="list-group-item">
|
387 |
<div class="media">
|
388 |
+
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
389 |
<div class="media-body">
|
390 |
<div class="pull-left media-head">
|
391 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>' . $curated . '
|
392 |
<span class="pull-right">
|
393 |
<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>
|
394 |
</span>
|
395 |
+
<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($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html(B2S_Util::getCustomDateFormat($nextSched, substr(B2S_LANGUAGE, 0, 2))) . '</p>
|
396 |
</div>
|
397 |
<div class="pull-left">
|
398 |
<div class="b2s-post-sched-area" data-post-id="' . $var->ID . '"></div>
|
407 |
$countApprove = $this->getPostCount($var->ID);
|
408 |
$this->postItem .= '<li class="list-group-item">
|
409 |
<div class="media">
|
410 |
+
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
411 |
<div class="media-body">
|
412 |
<div class="pull-left media-head">
|
413 |
<strong><a target="_blank" href="' . esc_url(get_permalink($var->ID)) . '">' . esc_html($postTitle) . '</a></strong>
|
436 |
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
437 |
<div class="media-body">
|
438 |
<strong><a target="_blank" href="' . esc_url($url) . '">' . esc_html($postTitle) . '</a></strong>' . $browser . '
|
439 |
+
<span class="pull-right padding-left-5 b2s-publish-btn">'.
|
440 |
+
((stripos($url, '/b2s_ex_post/') != false) ?
|
441 |
+
'<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-curation&postId=' . $var->ID . '&comment=' . urlencode($var->post_content) .(((int) $var->meta_value > 0) ? '&image_id='. urlencode($var->meta_value).'&image_url='. urlencode(wp_get_attachment_url($var->meta_value)) : ''). '">' . esc_html__('Share on Social Media', 'blog2social') . '</a>'
|
442 |
+
:
|
443 |
+
'<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-curation&postId=' . $var->ID . '&url=' . urlencode($url) . '&title=' . urlencode($var->post_title) . '&comment=' . urlencode($var->post_content) . '">' . esc_html__('Share on Social Media', 'blog2social') . '</a>'
|
444 |
+
)
|
445 |
+
.'</span>
|
446 |
<span class="pull-right">
|
447 |
<button class="btn btn-default btn-sm deleteCcDraftBtn" data-blog-post-id="' . esc_attr($var->ID) . '"><span class="glyphicon glyphicon glyphicon-trash "></span> ' . esc_html__('delete', 'blog2social') . '</button>
|
448 |
</span>
|
471 |
</div>
|
472 |
</li>';
|
473 |
}
|
474 |
+
|
475 |
+
if ($this->type == 'favorites') {
|
476 |
+
$userInfo = get_user_meta($var->post_author);
|
477 |
+
|
478 |
+
$this->postItem .= '<li class="list-group-item b2s-favorite-list-entry" data-post-id="' . esc_attr($var->ID) . '">
|
479 |
+
<div class="media">
|
480 |
+
<i class="glyphicon glyphicon-star pull-left b2sFavoriteStar" data-post-id="' . $var->ID . '" data-is-favorite="1"></i>
|
481 |
+
<img class="post-img-10 pull-left hidden-xs" src="' . plugins_url('/assets/images/b2s/' . $postType . '-icon.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
482 |
+
<div class="media-body">
|
483 |
+
<strong><a target="_blank" href="' . esc_url(get_permalink($var->post_id)) . '">' . esc_html($postTitle) . '</a></strong>
|
484 |
+
<span class="pull-right b2s-publish-btn">
|
485 |
+
<a class="btn btn-primary btn-sm publishPostBtn" href="admin.php?page=blog2social-ship&postId=' . $var->ID . '&type=draft">' . esc_html__('Share on Social Media', 'blog2social') . '</a>
|
486 |
+
</span>
|
487 |
+
<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></p>
|
488 |
+
</div>
|
489 |
+
</div>
|
490 |
+
</li>';
|
491 |
+
}
|
492 |
}
|
493 |
|
494 |
return html_entity_decode($this->postItem, ENT_COMPAT, 'UTF-8');
|
498 |
if ($post_id > 0) {
|
499 |
global $wpdb;
|
500 |
$addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND posts.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
|
501 |
+
$addLeftJoin = ((int) $this->searchUserAuthId != 0) ? ' LEFT JOIN ' . $wpdb->prefix . 'b2s_posts_network_details details ON details.`id` = posts.`network_details_id` ' : '';
|
502 |
$addLeftJoinWhere = ((int) $this->searchUserAuthId != 0) ? ' details.`network_auth_id` =' . $this->searchUserAuthId . ' AND ' : '';
|
503 |
+
$addLeftJoinNetwork = ((int) $this->searchShowByNetwork != 0 && empty($addLeftJoin)) ? ' LEFT JOIN ' . $wpdb->prefix . 'b2s_posts_network_details details ON details.`id` = posts.`network_details_id` ' : '';
|
504 |
$addLeftJoinWhereNetwork = ((int) $this->searchShowByNetwork != 0) ? ' details.`network_id` =' . $this->searchShowByNetwork . ' AND ' : '';
|
505 |
|
506 |
if ($this->type == 'approve') {
|
590 |
global $wpdb;
|
591 |
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (' AND blog_user_id =' . B2S_PLUGIN_BLOG_USER_ID) : '';
|
592 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
593 |
+
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
594 |
$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) $addWhere $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
595 |
$result = $wpdb->get_results($sqlData);
|
596 |
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'));
|
599 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
600 |
$networkErrorCode = unserialize(B2S_PLUGIN_NETWORK_ERROR);
|
601 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
602 |
+
$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>';
|
603 |
foreach ($result as $var) {
|
604 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
605 |
$publishLink = (!empty($var->publish_link)) ? '<a target="_blank" href="' . esc_url($var->publish_link) . '">' . esc_html__('show', 'blog2social') . '</a> | ' : '';
|
621 |
<div class="media">';
|
622 |
|
623 |
if (!empty($publishDate)) {
|
624 |
+
$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">';
|
625 |
} else {
|
626 |
+
$content .= '<div class="checbox-item-empty"></div>';
|
627 |
}
|
628 |
|
629 |
if (!empty($var->publish_link)) {
|
633 |
}
|
634 |
$content .= '<div class="media-body">
|
635 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong> ' . $error . '
|
636 |
+
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')) . ' | ' . sprintf(esc_html($publishText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html($publishDate) . $specialPosting . '</p>
|
637 |
<p class="info">' . $publishLink;
|
638 |
|
639 |
$content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-publish-area-drop-btn" data-post-id="' . esc_attr($var->id) . '">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
648 |
</div>
|
649 |
</li>';
|
650 |
}
|
651 |
+
$content .= '<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
|
652 |
$content .= B2S_PLUGIN_USER_VERSION > 0 ? '<a class="checkbox-post-publish-all-btn" data-blog-post-id="' . esc_attr($post_id) . '" href="#">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
653 |
$content .= esc_html__('delete from reporting', 'blog2social') . '</a></label></li>';
|
654 |
$content .= '</ul></div></div>';
|
669 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
670 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
671 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
672 |
+
$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>';
|
673 |
foreach ($result as $var) {
|
674 |
$approveDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2));
|
675 |
$approveText = __('is waiting to shared by %s', 'blog2social');
|
676 |
$userInfo = get_user_meta($var->blog_user_id);
|
677 |
$content .= ' <li class="list-group-item b2s-post-approve-area-li" data-post-id="' . esc_attr($var->id) . '">
|
678 |
<div class="media">';
|
679 |
+
$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">';
|
680 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">';
|
681 |
$content .= '<div class="media-body">
|
682 |
<strong>' . esc_html($networkName[$var->network_id]) . '</strong>
|
683 |
+
<p class="info">' . esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')) . ' | ' . sprintf(esc_html($approveText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' ' . esc_html($approveDate) . '</p>
|
684 |
<p class="info">';
|
685 |
|
686 |
$data = array(
|
709 |
</div>
|
710 |
</li>';
|
711 |
}
|
712 |
+
$content .= '<li class="list-group-item"><label class="checkbox-inline checkbox-all-label-btn"><span class="glyphicon glyphicon glyphicon-trash "></span> ';
|
713 |
$content .= B2S_PLUGIN_USER_VERSION > 0 ? '<a class="checkbox-post-approve-all-btn" data-blog-post-id="' . esc_attr($post_id) . '" href="#">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_html__('You want to delete your Social Media post?', 'blog2social') . '">';
|
714 |
$content .= esc_html__('delete', 'blog2social') . '</a></label></li>';
|
715 |
$content .= '</ul></div></div>';
|
722 |
public function getSchedPostDataHtml($post_id = 0, $showByDate = '', $showByNetwork = 0, $userAuthId = 0) {
|
723 |
if ($post_id > 0) {
|
724 |
global $wpdb;
|
725 |
+
$addNotAdminPosts = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(' AND `' . $wpdb->prefix . 'b2s_posts`.`blog_user_id` = %d', B2S_PLUGIN_BLOG_USER_ID) : '';
|
726 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
727 |
$addSearchShowByNetwork = ((int) $showByNetwork > 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_id` = '" . $showByNetwork . "' " : '';
|
728 |
$addSearchUserAuthId = ($userAuthId != 0) ? " AND `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id` =" . $userAuthId . " " : '';
|
734 |
$networkType = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
735 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
736 |
$content = '<div class="row"><div class="col-md-12"><ul class="list-group">';
|
737 |
+
$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>';
|
738 |
$blogPostDate = strtotime(get_the_date('Y-m-d H:i:s', $post_id)) . '000';
|
739 |
foreach ($result as $var) {
|
740 |
$specialPosting = (isset($var->sched_type) && isset($specialPostingData[$var->sched_type])) ? ' - <strong>' . esc_html($specialPostingData[$var->sched_type]) . '</strong>' : '';
|
741 |
$userInfo = get_user_meta($var->blog_user_id);
|
742 |
$content .= '<li class="list-group-item b2s-post-sched-area-li" data-post-id="' . esc_attr($var->id) . '">
|
743 |
<div class="media">';
|
744 |
+
$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">';
|
745 |
|
746 |
$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) : '';
|
747 |
$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> | ') : '';
|
748 |
|
749 |
$schedInProcess = ($var->sched_date_utc <= gmdate('Y-m-d H:i:s')) ? ' <span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' . esc_html__('is processed by the network', 'blog2social') : '';
|
750 |
|
751 |
+
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">
|
752 |
<div class="media-body">
|
753 |
<strong>' . esc_html($networkName[$var->network_id]) . $schedInProcess . '</strong>
|
754 |
<p class="info">' . esc_html($networkType[$var->network_type] . (!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '' )) . ' | ' . sprintf(esc_html__('scheduled by %s', 'blog2social'), ' <a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((isset($userInfo['nickname'][0]) ? $userInfo['nickname'][0] : '-')) . '</a>') . ' <span class="b2s-post-sched-area-sched-time" data-post-id="' . esc_attr($var->id) . '">' . $lastEdit . esc_html(B2S_Util::getCustomDateFormat($var->sched_date, substr(B2S_LANGUAGE, 0, 2))) . '</span> ' . $specialPosting . '</p>
|
includes/B2S/QuickPost.php
CHANGED
@@ -12,12 +12,12 @@ class B2S_QuickPost {
|
|
12 |
$this->title = sanitize_text_field($title);
|
13 |
}
|
14 |
|
15 |
-
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
16 |
if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
|
17 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
18 |
//PostFormat
|
19 |
-
if (in_array($networkId, array(1, 2, 3, 12))) {
|
20 |
-
$postData['post_format'] =
|
21 |
}
|
22 |
//Content
|
23 |
$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;
|
12 |
$this->title = sanitize_text_field($title);
|
13 |
}
|
14 |
|
15 |
+
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $postFormat = 0) {
|
16 |
if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
|
17 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
18 |
//PostFormat
|
19 |
+
if (in_array($networkId, array(1, 2, 3, 12, 19))) {
|
20 |
+
$postData['post_format'] = $postFormat;
|
21 |
}
|
22 |
//Content
|
23 |
$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;
|
includes/B2S/Ship/Image.php
CHANGED
@@ -66,7 +66,11 @@ class B2S_Ship_Image {
|
|
66 |
$content .= '<div class="col-xs-12 del-padding-left del-padding-right">';
|
67 |
|
68 |
if ($this->viewMode != 'modal') {
|
69 |
-
|
|
|
|
|
|
|
|
|
70 |
}
|
71 |
|
72 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
66 |
$content .= '<div class="col-xs-12 del-padding-left del-padding-right">';
|
67 |
|
68 |
if ($this->viewMode != 'modal') {
|
69 |
+
if($this->viewMode != 'curation'){
|
70 |
+
$content .= ' <button class="btn btn-primary b2s-image-change-all-network b2s-image-change-btn-area" data-network-id="" data-post-id="' . esc_attr($postId) . '">' . esc_html__('Apply image for all posts', 'blog2social') . '</button>';
|
71 |
+
} else {
|
72 |
+
$content .= ' <button class="btn btn-primary b2s-image-change b2s-image-change-btn-area">' . esc_html__('Apply image', 'blog2social') . '</button>';
|
73 |
+
}
|
74 |
}
|
75 |
|
76 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
includes/B2S/Ship/Item.php
CHANGED
@@ -2,47 +2,48 @@
|
|
2 |
|
3 |
class B2S_Ship_Item {
|
4 |
|
5 |
-
private $allowTitleProfile = array(7, 9, 13, 15, 16);
|
6 |
private $allowTitlePage = array();
|
7 |
private $allowTitleGroup = array();
|
8 |
private $setPostFormat = array(1, 2, 3, 12, 19);
|
9 |
private $isCommentProfile = array(1, 3, 8, 10, 17, 19);
|
10 |
private $isCommentPage = array(1);
|
11 |
private $isCommentGroup = array(1);
|
12 |
-
private $allowTag = array(4, 9, 11, 16);
|
|
|
13 |
private $allowHtml = array(4, 11, 14);
|
14 |
-
private $showTitleProfile = array(4, 9, 11, 14, 16);
|
15 |
private $showTitlePage = array(8, 19 => array(1)); //Xing Business Page
|
16 |
private $showTitleGroup = array(8, 11, 19);
|
17 |
-
private $onlyImage = array(6, 7, 12, 20);
|
18 |
private $allowNoImageProfile = array(5, 9);
|
19 |
private $allowNoCustomImageProfile = array(8);
|
20 |
private $allowNoCustomImagePage = array();
|
21 |
-
private $allowNoEmoji = array(9, 13, 14, 15, 16, 18);
|
22 |
private $allowNoImagePage = array(8);
|
23 |
-
private $allowEditUrl = array(1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20);
|
24 |
private $showBoards = array(6, 20);
|
25 |
private $showRelay = array(2);
|
26 |
private $showBoardsGroup = array(10);
|
27 |
private $showGroups = array(8, 15, 19);
|
28 |
private $changeDisplayName = array(8);
|
29 |
-
private $setShortTextProfile = array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200, 16 => 250, 17 => 442, 18 => 800, 19 => 239, 20 => 300);
|
30 |
-
private $setShortTextProfileLimit = array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200, 18 => 1000, 19 => 400, 20 => 400);
|
31 |
private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 400, 10 => 442, 17 => 442, 19 => 239);
|
32 |
private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 400, 10 => 500, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
|
33 |
private $limitCharacterTitlePage = array(19 => array(1 => 150)); //XING Business Page selected over networkKind
|
34 |
private $setShortTextGroup = array(1 => 239, 8 => 239, 10 => 442, 17 => 442, 19 => 239);
|
35 |
private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
|
36 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17, 20);
|
37 |
-
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 15 => 300, 12 => 2000, 18 => 1500, 19 => 420, 20 => 500);
|
38 |
-
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 17, 18, 20);
|
39 |
private $showImageAreaPage = array(10, 17);
|
40 |
private $showImageAreaGroup = array(8, 10, 17);
|
41 |
private $showMarketplace = array(19);
|
42 |
private $limitCharacterPage = array(3 => 1300, 8 => 1200, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
|
43 |
private $requiredUrl = array(1, 3, 8, 9, 10, 19);
|
44 |
-
private $getText = array(1, 7, 10, 12, 16, 17, 18);
|
45 |
-
private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18, 19, 20);
|
46 |
private $maxWeekTimeSelect = 52;
|
47 |
private $networkTosProfile = array(2);
|
48 |
private $networkTosGroup = array(8, 19);
|
@@ -78,7 +79,7 @@ class B2S_Ship_Item {
|
|
78 |
$this->postStatus = $this->postData->post_status;
|
79 |
$this->websiteName = get_option('blogname');
|
80 |
$this->b2sPostType = (!empty($b2sPostType) ? $b2sPostType : ( (isset($this->postData->post_type) && $this->postData->post_type == 'b2s_ex_post') ? 'ex' : ''));
|
81 |
-
$this->postUrl = ($this->b2sPostType == 'ex') ? $this->postData->guid : (get_permalink($this->postData->ID) !== false ? get_permalink($this->postData->ID) : $this->postData->guid);
|
82 |
$this->userLang = $userLang;
|
83 |
$this->selSchedDate = $selSchedDate;
|
84 |
$this->setRelayCount = $relayCount;
|
@@ -89,7 +90,7 @@ class B2S_Ship_Item {
|
|
89 |
}
|
90 |
|
91 |
public function getItemHtml($data, $show_time = true, $draftData = array()) {
|
92 |
-
|
93 |
$isDraft = (empty($draftData)) ? false : true;
|
94 |
|
95 |
$this->viewMode = (isset($data->view) && !empty($data->view)) ? $data->view : null; //normal or modal(Kalendar)
|
@@ -183,7 +184,7 @@ class B2S_Ship_Item {
|
|
183 |
|
184 |
$countCharacter = 0;
|
185 |
if ($limit !== false) {
|
186 |
-
$infoCharacterCount = ($data->networkId != 2 && $data->networkId != 3 && $data->networkId != 19) ? ' (' . esc_html__('Text only', 'blog2social') . ')' : '';
|
187 |
$textareaLimitInfo .= '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . (int) esc_html($countCharacter) . '</span>/' . esc_html($limitValue) . ' ' . esc_html__('characters', 'blog2social') . $infoCharacterCount . '</span>';
|
188 |
$textareaOnKeyUp = 'onkeyup="networkLimitAll(\'' . esc_attr($data->networkAuthId) . '\',\'' . esc_attr($data->networkId) . '\',\'' . esc_attr($limitValue) . '\');"';
|
189 |
} else {
|
@@ -202,7 +203,7 @@ class B2S_Ship_Item {
|
|
202 |
$infoImage .= (in_array($data->networkId, $this->allowNoEmoji)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support emojis', 'blog2social') . '!' : '';
|
203 |
$infoImage .= (in_array($data->networkId, $this->allowNoCustomImagePage)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network defines image by link', 'blog2social') . '!' : '';
|
204 |
$infoImage .= (in_array($data->networkId, json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true))) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support GIFs', 'blog2social') . '!' : '';
|
205 |
-
|
206 |
//ShortText
|
207 |
if ($isDraft && isset($draftData['content'])) {
|
208 |
$message = $draftData['content'];
|
@@ -311,12 +312,12 @@ class B2S_Ship_Item {
|
|
311 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
312 |
$content .= '<input type="hidden" class="b2s-post-item-details-post-format form-control" name="b2s[' . esc_attr($data->networkAuthId) . '][post_format]" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" data-network-id="' . esc_attr($data->networkId) . '" data-network-type="' . esc_attr($data->networkType) . '" value="0" />';
|
313 |
} else {
|
314 |
-
if($this->viewMode != 'modal') {
|
315 |
$content .= '<span class="label label-success"><a target="_blank" class="btn-label-premium b2s-btn-trigger-post-ship-item-post-format" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" href="#">SMART</a></span>';
|
316 |
}
|
317 |
}
|
318 |
}
|
319 |
-
if($data->networkId == 15) {
|
320 |
$content .= '<input type="hidden" class="b2s-post-item-details-post-format form-control" name="b2s[' . esc_attr($data->networkAuthId) . '][post_format]" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" data-network-id="' . esc_attr($data->networkId) . '" data-network-type="' . esc_attr($data->networkType) . '" value="0" />';
|
321 |
}
|
322 |
$content .='<span class="b2s-post-tool-area" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
|
@@ -329,11 +330,6 @@ class B2S_Ship_Item {
|
|
329 |
|
330 |
$content .= '</p>';
|
331 |
|
332 |
-
//TOS Facebook 072018
|
333 |
-
if (((int) $data->networkId == 1 && (int) $data->networkType == 0) && isset($data->instantSharing) && (int) $data->instantSharing == 1) {
|
334 |
-
$content .='<div class="b2s-post-approve-info" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert alert-warning">' . esc_html__('You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post.', 'blog2social') . '</div></div>';
|
335 |
-
}
|
336 |
-
|
337 |
//TOS Twitter 030218
|
338 |
if ($data->networkType == 0 && in_array($data->networkId, $this->networkTosProfile)) {
|
339 |
$content .='<div class="b2s-unique-content" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-warning">' . esc_html__('Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account.', 'blog2social') . '<br><strong>' . esc_html__('Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong> <a href="' . esc_url(B2S_Tools::getSupportLink('network_tos_blog_032018')) . '" target="_blank">' . esc_html__('Learn more about this', 'blog2social') . '</a></div></div>';
|
@@ -342,7 +338,7 @@ class B2S_Ship_Item {
|
|
342 |
if ($data->networkType == 2 && in_array($data->networkId, $this->networkTosGroup)) {
|
343 |
$content .='<div class="b2s-content-info" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert alert-warning">' . esc_html__('Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups.', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('network_tos_blog_082018')) . '" target="_blank">' . esc_html__('Read more', 'blog2social') . '</a></div></div>';
|
344 |
}
|
345 |
-
|
346 |
if ($data->networkId == 12) {
|
347 |
$content .='<div class="b2s-content-info" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" style="display:none;"><div class="clearfix"></div><div class="alert alert-warning">' . esc_html__('Instagram supports up to 30 hashtags. Please reduce the number of hashtags in your post.', 'blog2social') . '</div></div>';
|
348 |
$content .='<div class="b2s-unique-content" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-warning" style="margin-bottom:10px !important;">' . esc_html__('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.', 'blog2social') . '<br><strong>' . esc_html__('Violating these rules can result in suspending your account. Always vary your content with different images, comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong></div></div>';
|
@@ -354,7 +350,7 @@ class B2S_Ship_Item {
|
|
354 |
$content .= (in_array($data->networkId, $this->showMarketplace) && $data->networkType == 2) ? $this->getMarketplaceAreaHtml($data->networkAuthId, $data->networkId, $data->networkType, $data->networkKind) : '';
|
355 |
$content .= ((in_array($data->networkId, $this->showTitleProfile) && $data->networkType == 0) || (((in_array($data->networkId, $this->showTitlePage) && isset($this->showTitlePage[$data->networkId]) && !is_array($this->showTitlePage[$data->networkId]) ) || (isset($this->showTitlePage[$data->networkId]) && is_array($this->showTitlePage[$data->networkId]) && in_array($data->networkKind, $this->showTitlePage[$data->networkId]))) && $data->networkType == 1) || (in_array($data->networkId, $this->showTitleGroup) && $data->networkType == 2)) ? $this->getTitleHtml($data->networkId, $data->networkAuthId, $data->networkKind, $data->networkType, $this->postData->post_title) : '';
|
356 |
$content .= $this->getCustomEditArea($data->networkId, $data->networkAuthId, $data->networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, isset($data->image_url) ? $data->image_url : null);
|
357 |
-
$content .= (in_array($data->networkId, $this->allowTag) && $data->networkType == 0) ? $this->getTagsHtml($data->networkAuthId, (($allowUserHashTag === false || $allowUserHashTag == 1) ? true : false)) : '';
|
358 |
|
359 |
//Calendar
|
360 |
if (!(isset($this->viewMode) && $this->viewMode == 'modal')) {
|
@@ -421,7 +417,12 @@ class B2S_Ship_Item {
|
|
421 |
|
422 |
|
423 |
if ($networkId == 1) {
|
424 |
-
$edit = '<
|
|
|
|
|
|
|
|
|
|
|
425 |
$edit .= '<div class="row">';
|
426 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
427 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
@@ -445,7 +446,12 @@ class B2S_Ship_Item {
|
|
445 |
}
|
446 |
|
447 |
if ($networkId == 2) {
|
448 |
-
$edit = '<
|
|
|
|
|
|
|
|
|
|
|
449 |
$edit .= '<div class="row">';
|
450 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
451 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
@@ -469,7 +475,12 @@ class B2S_Ship_Item {
|
|
469 |
}
|
470 |
|
471 |
if ($networkId == 3) {
|
472 |
-
$edit = '<
|
|
|
|
|
|
|
|
|
|
|
473 |
$edit .= '<div class="row">';
|
474 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '" >';
|
475 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
@@ -493,7 +504,12 @@ class B2S_Ship_Item {
|
|
493 |
}
|
494 |
|
495 |
if (($networkId == 8 || $networkId == 19)) {
|
496 |
-
$edit = '<
|
|
|
|
|
|
|
|
|
|
|
497 |
$edit .= '<div class="row">';
|
498 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
499 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
@@ -516,7 +532,12 @@ class B2S_Ship_Item {
|
|
516 |
$edit .= '</div>';
|
517 |
}
|
518 |
if (($networkId == 15)) {
|
519 |
-
$edit = '<
|
|
|
|
|
|
|
|
|
|
|
520 |
$edit .= '<div class="row">';
|
521 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
522 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
@@ -539,7 +560,12 @@ class B2S_Ship_Item {
|
|
539 |
$edit .= '</div>';
|
540 |
}
|
541 |
} else {
|
542 |
-
$edit = '<
|
|
|
|
|
|
|
|
|
|
|
543 |
|
544 |
//EDIT Function - Calendar
|
545 |
$meta = $this->hook_meta(array());
|
@@ -565,7 +591,12 @@ class B2S_Ship_Item {
|
|
565 |
$edit .= '</div>';
|
566 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
567 |
$edit .= $infoArea;
|
|
|
568 |
$edit .= '<textarea disabled="disabled" class="form-control fb-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_attr($message) . '</textarea>';
|
|
|
|
|
|
|
|
|
569 |
$edit .= '</div>';
|
570 |
$edit .= '</div>';
|
571 |
}
|
@@ -583,7 +614,12 @@ class B2S_Ship_Item {
|
|
583 |
$edit .= '</div>';
|
584 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
585 |
$edit .= $infoArea;
|
|
|
586 |
$edit .= '<textarea disabled="disabled" class="form-control tw-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" unique="currency" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '></textarea>';
|
|
|
|
|
|
|
|
|
587 |
$edit .= '</div>';
|
588 |
$edit .= '</div>';
|
589 |
}
|
@@ -599,7 +635,12 @@ class B2S_Ship_Item {
|
|
599 |
$edit .= '</div>';
|
600 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
601 |
$edit .= $infoArea;
|
|
|
602 |
$edit .= '<textarea disabled="disabled" class="form-control linkedin-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
|
|
|
|
|
|
|
|
603 |
$edit .= '</div>';
|
604 |
$edit .= '</div>';
|
605 |
}
|
@@ -615,11 +656,16 @@ class B2S_Ship_Item {
|
|
615 |
$edit .= '</div>';
|
616 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
617 |
$edit .= $infoArea;
|
|
|
618 |
$edit .= '<textarea disabled="disabled" class="form-control xing-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_html__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
|
|
|
|
|
|
|
|
619 |
$edit .= '</div>';
|
620 |
$edit .= '</div>';
|
621 |
}
|
622 |
-
|
623 |
if ($networkId == 15) {
|
624 |
$edit = '<div class="row"><br>';
|
625 |
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
@@ -631,7 +677,12 @@ class B2S_Ship_Item {
|
|
631 |
$edit .= '</div>';
|
632 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
633 |
$edit .= $infoArea;
|
|
|
634 |
$edit .= '<textarea disabled="disabled" class="form-control reddit-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_html__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
|
|
|
|
|
|
|
|
635 |
$edit .= '</div>';
|
636 |
$edit .= '</div>';
|
637 |
}
|
@@ -643,16 +694,26 @@ class B2S_Ship_Item {
|
|
643 |
$edit .= '<img src="' . esc_url($this->defaultImage) . '" class="b2s-post-item-details-url-image center-block img-responsive b2s-image-border" data-network-id="' . esc_attr($networkId) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-image-change="1" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
644 |
$edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="' . esc_attr($schedCount) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr(($imageUrl ? $imageUrl : "")) . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_image_url][' . esc_attr($schedCount) . ']">';
|
645 |
$edit .= '<div class="clearfix"></div>';
|
646 |
-
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" '.((in_array($networkId, json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og'])) ? 'data-meta-type="og"' : '').' data-network-id="' . esc_attr($networkId) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-post-id="' . esc_attr($this->postId) . '" data-image-url="' . esc_attr($imageUrl) . '">' . esc_html__('Change image', 'blog2social') . '</button>';
|
647 |
$edit .= '</div>';
|
648 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
649 |
$edit .= $infoArea;
|
650 |
-
$edit .= '<
|
|
|
|
|
|
|
|
|
|
|
651 |
$edit .= '</div>';
|
652 |
} else {
|
653 |
$edit .= '<div class="col-xs-12">';
|
654 |
$edit .= $infoArea;
|
655 |
-
$edit .= '<
|
|
|
|
|
|
|
|
|
|
|
656 |
$edit .= '</div>';
|
657 |
}
|
658 |
$edit .= '</div>';
|
@@ -677,13 +738,13 @@ class B2S_Ship_Item {
|
|
677 |
$url .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr((($imageUrl != null) ? $imageUrl : "")) . '" name="b2s[' . esc_attr($networkAuthId) . '][image_url]">';
|
678 |
$url .= '</div>';
|
679 |
$url .= '<div class="clearfix"></div>';
|
680 |
-
$url .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" data-network-count="-1" '.((in_array($networkId, json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og'])) ? 'data-meta-type="og"' : '').' data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-post-id="' . esc_attr($this->postId) . '" data-image-url="' . esc_attr($imageUrl) . '">' . esc_html__('Change image', 'blog2social') . '</button></div>';
|
681 |
$url .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12"' : 'col-xs-12 col-sm-7 col-lg-9 b2s-post-original-area" data-network-auth-id="' . esc_attr($networkAuthId) . '"') . '>';
|
682 |
}
|
683 |
|
684 |
$url .= (!$hideInfo) ? '<div class="b2s-post-item-details-url-title hidden-xs">Link ' . $isRequiredText . '</div>' : '';
|
685 |
|
686 |
-
if ($refeshBtn && trim(strtolower($this->postStatus)) == 'publish') {
|
687 |
$url .= '<div class="input-group"><input class="form-control ' . esc_attr($class) . ' b2s-post-item-details-item-url-input ' . $isRequiredClass . ' complete_network_url" dir="ltr" name="b2s[' . esc_attr($networkAuthId) . '][url]" ' . $urlLimit . ' placeholder="' . esc_attr__('Link', 'blog2social') . '" data-network-count="-1" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="' . esc_attr($networkType) . '" value="' . esc_attr($this->postUrl) . '" name="b2s[' . esc_attr($networkAuthId) . '][url]"/><span class="input-group-addon"><span class="glyphicon glyphicon-refresh b2s-post-item-details-preview-url-reload" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-network-id="' . esc_attr($networkId) . '" aria-hidden="true"></span></span></div>';
|
688 |
} else {
|
689 |
$url .= '<input class="form-control ' . esc_attr($class) . ' b2s-post-item-details-item-url-input ' . $isRequiredClass . ' complete_network_url" dir="ltr" name="b2s[' . esc_attr($networkAuthId) . '][url]" ' . $urlLimit . ' placeholder="' . esc_attr__('Link', 'blog2social') . '" data-network-count="-1" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="' . esc_attr($networkType) . '" value="' . esc_attr($this->postUrl) . '" name="b2s[' . esc_attr($networkAuthId) . '][url]"/>';
|
@@ -773,25 +834,38 @@ class B2S_Ship_Item {
|
|
773 |
return '<input type="text" name="b2s[' . esc_attr($networkdAutId) . '][custom_title]" class="form-control b2s-post-item-details-item-title-input" data-network-auth-id="' . esc_attr($networkdAutId) . '" placeholder="' . esc_attr__('The Headline...', 'blog2social') . '" required="required" maxlength="' . esc_attr($maxLength) . '" value="' . esc_attr($title) . '" />';
|
774 |
}
|
775 |
|
776 |
-
private function getTagsHtml($networkAuthId, $allowTags = true) {
|
777 |
$tags = '<div class="b2s-post-item-details-tag-area">';
|
778 |
-
$
|
|
|
|
|
|
|
|
|
|
|
779 |
$tags .= '<div class="b2s-post-item-details-tag-input form-inline">';
|
780 |
$posttags = get_the_tags($this->postId);
|
781 |
$countTags = 0;
|
|
|
782 |
if ($posttags && $allowTags) {
|
783 |
foreach ($posttags as $tag) {
|
784 |
$name = str_replace(" ", "", $tag->name);
|
785 |
$countTags += 1;
|
|
|
|
|
|
|
|
|
786 |
$tags .= '<input class="form-control b2s-post-item-details-tag-input-elem" name="b2s[' . esc_attr($networkAuthId) . '][tags][]" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr($name) . '">';
|
787 |
}
|
788 |
} else {
|
789 |
$tags .= '<input class="form-control b2s-post-item-details-tag-input-elem" name="b2s[' . esc_attr($networkAuthId) . '][tags][]" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="">';
|
790 |
}
|
|
|
|
|
791 |
$showRemoveTagBtn = ($countTags >= 2) ? '' : 'display:none;';
|
|
|
792 |
$tags .= '<div class="form-control b2s-post-item-details-tag-add-div">';
|
793 |
$tags .= '<span class="remove-tag-btn glyphicon glyphicon-minus" data-network-auth-id="' . esc_attr($networkAuthId) . '" style="' . $showRemoveTagBtn . '" onclick="removeTag(\'' . esc_attr($networkAuthId) . '\');" ></span>';
|
794 |
-
$tags .= '<span class="ad-tag-btn glyphicon glyphicon-plus" data-network-auth-id="' . esc_attr($networkAuthId) . '" onclick="addTag(\'' . esc_attr($networkAuthId) . '\');" ></span>';
|
795 |
$tags .= '</div>';
|
796 |
$tags .= '</div>';
|
797 |
$tags .= '</div>';
|
@@ -1069,7 +1143,7 @@ class B2S_Ship_Item {
|
|
1069 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1070 |
$appendFirst = false;
|
1071 |
}
|
1072 |
-
$message = preg_replace(array("/\{TITLE\}/", "/\{EXCERPT\}/", "/\{KEYWORDS\}/"), "", $message);
|
1073 |
if ($appendFirst) {
|
1074 |
$message = $preContent . ' ' . $message;
|
1075 |
}
|
@@ -1105,6 +1179,14 @@ class B2S_Ship_Item {
|
|
1105 |
$hashtags = $this->getHashTagsString($add);
|
1106 |
$message .= " " . $hashtags;
|
1107 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1108 |
}
|
1109 |
return $message;
|
1110 |
}
|
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);
|
9 |
private $isCommentProfile = array(1, 3, 8, 10, 17, 19);
|
10 |
private $isCommentPage = array(1);
|
11 |
private $isCommentGroup = array(1);
|
12 |
+
private $allowTag = array(4, 9, 11, 16, 21);
|
13 |
+
private $limitTag = array(21 => 5);
|
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);
|
19 |
private $allowNoImageProfile = array(5, 9);
|
20 |
private $allowNoCustomImageProfile = array(8);
|
21 |
private $allowNoCustomImagePage = array();
|
22 |
+
private $allowNoEmoji = array(9, 13, 14, 15, 16, 18, 21);
|
23 |
private $allowNoImagePage = array(8);
|
24 |
+
private $allowEditUrl = array(1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21);
|
25 |
private $showBoards = array(6, 20);
|
26 |
private $showRelay = array(2);
|
27 |
private $showBoardsGroup = array(10);
|
28 |
private $showGroups = array(8, 15, 19);
|
29 |
private $changeDisplayName = array(8);
|
30 |
+
private $setShortTextProfile = array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200, 16 => 250, 17 => 442, 18 => 800, 19 => 239, 20 => 300, 21 => 500);
|
31 |
+
private $setShortTextProfileLimit = array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200, 18 => 1000, 19 => 400, 20 => 400, 21 => 600);
|
32 |
private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 400, 10 => 442, 17 => 442, 19 => 239);
|
33 |
private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 400, 10 => 500, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
|
34 |
private $limitCharacterTitlePage = array(19 => array(1 => 150)); //XING Business Page selected over networkKind
|
35 |
private $setShortTextGroup = array(1 => 239, 8 => 239, 10 => 442, 17 => 442, 19 => 239);
|
36 |
private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
|
37 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17, 20);
|
38 |
+
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 15 => 300, 12 => 2000, 18 => 1500, 19 => 420, 20 => 500, 21 => 65535);
|
39 |
+
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 17, 18, 20, 21);
|
40 |
private $showImageAreaPage = array(10, 17);
|
41 |
private $showImageAreaGroup = array(8, 10, 17);
|
42 |
private $showMarketplace = array(19);
|
43 |
private $limitCharacterPage = array(3 => 1300, 8 => 1200, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
|
44 |
private $requiredUrl = array(1, 3, 8, 9, 10, 19);
|
45 |
+
private $getText = array(1, 7, 10, 12, 16, 17, 18, 21);
|
46 |
+
private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18, 19, 20, 21);
|
47 |
private $maxWeekTimeSelect = 52;
|
48 |
private $networkTosProfile = array(2);
|
49 |
private $networkTosGroup = array(8, 19);
|
79 |
$this->postStatus = $this->postData->post_status;
|
80 |
$this->websiteName = get_option('blogname');
|
81 |
$this->b2sPostType = (!empty($b2sPostType) ? $b2sPostType : ( (isset($this->postData->post_type) && $this->postData->post_type == 'b2s_ex_post') ? 'ex' : ''));
|
82 |
+
$this->postUrl = ($this->b2sPostType == 'ex') ? ((stripos($this->postData->guid, 'b2s_ex_post') != false) ? '' : $this->postData->guid) : (get_permalink($this->postData->ID) !== false ? get_permalink($this->postData->ID) : $this->postData->guid);
|
83 |
$this->userLang = $userLang;
|
84 |
$this->selSchedDate = $selSchedDate;
|
85 |
$this->setRelayCount = $relayCount;
|
90 |
}
|
91 |
|
92 |
public function getItemHtml($data, $show_time = true, $draftData = array()) {
|
93 |
+
|
94 |
$isDraft = (empty($draftData)) ? false : true;
|
95 |
|
96 |
$this->viewMode = (isset($data->view) && !empty($data->view)) ? $data->view : null; //normal or modal(Kalendar)
|
184 |
|
185 |
$countCharacter = 0;
|
186 |
if ($limit !== false) {
|
187 |
+
$infoCharacterCount = ($data->networkId != 2 && $data->networkId != 3 && $data->networkId != 19 && $data->networkId != 21) ? ' (' . esc_html__('Text only', 'blog2social') . ')' : '';
|
188 |
$textareaLimitInfo .= '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . (int) esc_html($countCharacter) . '</span>/' . esc_html($limitValue) . ' ' . esc_html__('characters', 'blog2social') . $infoCharacterCount . '</span>';
|
189 |
$textareaOnKeyUp = 'onkeyup="networkLimitAll(\'' . esc_attr($data->networkAuthId) . '\',\'' . esc_attr($data->networkId) . '\',\'' . esc_attr($limitValue) . '\');"';
|
190 |
} else {
|
203 |
$infoImage .= (in_array($data->networkId, $this->allowNoEmoji)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support emojis', 'blog2social') . '!' : '';
|
204 |
$infoImage .= (in_array($data->networkId, $this->allowNoCustomImagePage)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network defines image by link', 'blog2social') . '!' : '';
|
205 |
$infoImage .= (in_array($data->networkId, json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true))) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support GIFs', 'blog2social') . '!' : '';
|
206 |
+
|
207 |
//ShortText
|
208 |
if ($isDraft && isset($draftData['content'])) {
|
209 |
$message = $draftData['content'];
|
312 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
313 |
$content .= '<input type="hidden" class="b2s-post-item-details-post-format form-control" name="b2s[' . esc_attr($data->networkAuthId) . '][post_format]" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" data-network-id="' . esc_attr($data->networkId) . '" data-network-type="' . esc_attr($data->networkType) . '" value="0" />';
|
314 |
} else {
|
315 |
+
if ($this->viewMode != 'modal') {
|
316 |
$content .= '<span class="label label-success"><a target="_blank" class="btn-label-premium b2s-btn-trigger-post-ship-item-post-format" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" href="#">SMART</a></span>';
|
317 |
}
|
318 |
}
|
319 |
}
|
320 |
+
if ($data->networkId == 15) {
|
321 |
$content .= '<input type="hidden" class="b2s-post-item-details-post-format form-control" name="b2s[' . esc_attr($data->networkAuthId) . '][post_format]" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" data-network-id="' . esc_attr($data->networkId) . '" data-network-type="' . esc_attr($data->networkType) . '" value="0" />';
|
322 |
}
|
323 |
$content .='<span class="b2s-post-tool-area" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
|
330 |
|
331 |
$content .= '</p>';
|
332 |
|
|
|
|
|
|
|
|
|
|
|
333 |
//TOS Twitter 030218
|
334 |
if ($data->networkType == 0 && in_array($data->networkId, $this->networkTosProfile)) {
|
335 |
$content .='<div class="b2s-unique-content" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-warning">' . esc_html__('Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account.', 'blog2social') . '<br><strong>' . esc_html__('Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong> <a href="' . esc_url(B2S_Tools::getSupportLink('network_tos_blog_032018')) . '" target="_blank">' . esc_html__('Learn more about this', 'blog2social') . '</a></div></div>';
|
338 |
if ($data->networkType == 2 && in_array($data->networkId, $this->networkTosGroup)) {
|
339 |
$content .='<div class="b2s-content-info" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert alert-warning">' . esc_html__('Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups.', 'blog2social') . ' <a href="' . esc_url(B2S_Tools::getSupportLink('network_tos_blog_082018')) . '" target="_blank">' . esc_html__('Read more', 'blog2social') . '</a></div></div>';
|
340 |
}
|
341 |
+
|
342 |
if ($data->networkId == 12) {
|
343 |
$content .='<div class="b2s-content-info" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '" style="display:none;"><div class="clearfix"></div><div class="alert alert-warning">' . esc_html__('Instagram supports up to 30 hashtags. Please reduce the number of hashtags in your post.', 'blog2social') . '</div></div>';
|
344 |
$content .='<div class="b2s-unique-content" data-network-id="' . esc_attr($data->networkId) . '" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"><div class="clearfix"></div><div class="alert b2s-unique-content-alert alert-warning" style="margin-bottom:10px !important;">' . esc_html__('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.', 'blog2social') . '<br><strong>' . esc_html__('Violating these rules can result in suspending your account. Always vary your content with different images, comments, hashtags or handles to prevent duplicate posts.', 'blog2social') . '</strong></div></div>';
|
350 |
$content .= (in_array($data->networkId, $this->showMarketplace) && $data->networkType == 2) ? $this->getMarketplaceAreaHtml($data->networkAuthId, $data->networkId, $data->networkType, $data->networkKind) : '';
|
351 |
$content .= ((in_array($data->networkId, $this->showTitleProfile) && $data->networkType == 0) || (((in_array($data->networkId, $this->showTitlePage) && isset($this->showTitlePage[$data->networkId]) && !is_array($this->showTitlePage[$data->networkId]) ) || (isset($this->showTitlePage[$data->networkId]) && is_array($this->showTitlePage[$data->networkId]) && in_array($data->networkKind, $this->showTitlePage[$data->networkId]))) && $data->networkType == 1) || (in_array($data->networkId, $this->showTitleGroup) && $data->networkType == 2)) ? $this->getTitleHtml($data->networkId, $data->networkAuthId, $data->networkKind, $data->networkType, $this->postData->post_title) : '';
|
352 |
$content .= $this->getCustomEditArea($data->networkId, $data->networkAuthId, $data->networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, isset($data->image_url) ? $data->image_url : null);
|
353 |
+
$content .= (in_array($data->networkId, $this->allowTag) && $data->networkType == 0) ? $this->getTagsHtml($data->networkId, $data->networkAuthId, (($allowUserHashTag === false || $allowUserHashTag == 1) ? true : false)) : '';
|
354 |
|
355 |
//Calendar
|
356 |
if (!(isset($this->viewMode) && $this->viewMode == 'modal')) {
|
417 |
|
418 |
|
419 |
if ($networkId == 1) {
|
420 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
421 |
+
$edit .= '<textarea class="form-control fb-textarea-input b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
422 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
423 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
424 |
+
}
|
425 |
+
$edit .= '</div>';
|
426 |
$edit .= '<div class="row">';
|
427 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
428 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
446 |
}
|
447 |
|
448 |
if ($networkId == 2) {
|
449 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
450 |
+
$edit .= '<textarea class="form-control tw-textarea-input b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" unique="currency" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
451 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
452 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
453 |
+
}
|
454 |
+
$edit .= '</div>';
|
455 |
$edit .= '<div class="row">';
|
456 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
457 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
475 |
}
|
476 |
|
477 |
if ($networkId == 3) {
|
478 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
479 |
+
$edit .= '<textarea class="form-control linkedin-textarea-input b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
480 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
481 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
482 |
+
}
|
483 |
+
$edit .= '</div>';
|
484 |
$edit .= '<div class="row">';
|
485 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '" >';
|
486 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
504 |
}
|
505 |
|
506 |
if (($networkId == 8 || $networkId == 19)) {
|
507 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
508 |
+
$edit .= '<textarea class="form-control xing-textarea-input b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
509 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
510 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
511 |
+
}
|
512 |
+
$edit .= '</div>';
|
513 |
$edit .= '<div class="row">';
|
514 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
515 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
532 |
$edit .= '</div>';
|
533 |
}
|
534 |
if (($networkId == 15)) {
|
535 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
536 |
+
$edit .= '<textarea class="form-control reddit-textarea-input b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
537 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
538 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
539 |
+
}
|
540 |
+
$edit .= '</div>';
|
541 |
$edit .= '<div class="row">';
|
542 |
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
543 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
560 |
$edit .= '</div>';
|
561 |
}
|
562 |
} else {
|
563 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
564 |
+
$edit .= '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . ' ' . (($networkId == 12) ? 'unique="currency"' : '') . '>' . esc_html($message) . '</textarea>';
|
565 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
566 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
567 |
+
}
|
568 |
+
$edit .= '</div>';
|
569 |
|
570 |
//EDIT Function - Calendar
|
571 |
$meta = $this->hook_meta(array());
|
591 |
$edit .= '</div>';
|
592 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
593 |
$edit .= $infoArea;
|
594 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
595 |
$edit .= '<textarea disabled="disabled" class="form-control fb-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_attr($message) . '</textarea>';
|
596 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
597 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
598 |
+
}
|
599 |
+
$edit .= '</div>';
|
600 |
$edit .= '</div>';
|
601 |
$edit .= '</div>';
|
602 |
}
|
614 |
$edit .= '</div>';
|
615 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
616 |
$edit .= $infoArea;
|
617 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
618 |
$edit .= '<textarea disabled="disabled" class="form-control tw-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" unique="currency" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '></textarea>';
|
619 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
620 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
621 |
+
}
|
622 |
+
$edit .= '</div>';
|
623 |
$edit .= '</div>';
|
624 |
$edit .= '</div>';
|
625 |
}
|
635 |
$edit .= '</div>';
|
636 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
637 |
$edit .= $infoArea;
|
638 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
639 |
$edit .= '<textarea disabled="disabled" class="form-control linkedin-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
640 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
641 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
642 |
+
}
|
643 |
+
$edit .= '</div>';
|
644 |
$edit .= '</div>';
|
645 |
$edit .= '</div>';
|
646 |
}
|
656 |
$edit .= '</div>';
|
657 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
658 |
$edit .= $infoArea;
|
659 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
660 |
$edit .= '<textarea disabled="disabled" class="form-control xing-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_html__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
661 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
662 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
663 |
+
}
|
664 |
+
$edit .= '</div>';
|
665 |
$edit .= '</div>';
|
666 |
$edit .= '</div>';
|
667 |
}
|
668 |
+
|
669 |
if ($networkId == 15) {
|
670 |
$edit = '<div class="row"><br>';
|
671 |
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
677 |
$edit .= '</div>';
|
678 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
679 |
$edit .= $infoArea;
|
680 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
681 |
$edit .= '<textarea disabled="disabled" class="form-control reddit-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_html__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
682 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
683 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
684 |
+
}
|
685 |
+
$edit .= '</div>';
|
686 |
$edit .= '</div>';
|
687 |
$edit .= '</div>';
|
688 |
}
|
694 |
$edit .= '<img src="' . esc_url($this->defaultImage) . '" class="b2s-post-item-details-url-image center-block img-responsive b2s-image-border" data-network-id="' . esc_attr($networkId) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-image-change="1" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
695 |
$edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="' . esc_attr($schedCount) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr(($imageUrl ? $imageUrl : "")) . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_image_url][' . esc_attr($schedCount) . ']">';
|
696 |
$edit .= '<div class="clearfix"></div>';
|
697 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" ' . ((in_array($networkId, json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og'])) ? 'data-meta-type="og"' : '') . ' data-network-id="' . esc_attr($networkId) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-post-id="' . esc_attr($this->postId) . '" data-image-url="' . esc_attr($imageUrl) . '">' . esc_html__('Change image', 'blog2social') . '</button>';
|
698 |
$edit .= '</div>';
|
699 |
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
700 |
$edit .= $infoArea;
|
701 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
702 |
+
$edit .= '<textarea disabled="disabled" class="form-control b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-id="' . esc_attr($networkId) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . ' ' . (($networkId == 12) ? 'unique="currency"' : '') . '>' . esc_html($message) . '</textarea>';
|
703 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
704 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
705 |
+
}
|
706 |
+
$edit .= '</div>';
|
707 |
$edit .= '</div>';
|
708 |
} else {
|
709 |
$edit .= '<div class="col-xs-12">';
|
710 |
$edit .= $infoArea;
|
711 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
712 |
+
$edit .= '<textarea disabled="disabled" class="form-control b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . '] ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . ' ' . (($networkId == 12) ? 'unique="currency"' : '') . '>' . esc_html($message) . '</textarea>';
|
713 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
714 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">☺</button>';
|
715 |
+
}
|
716 |
+
$edit .= '</div>';
|
717 |
$edit .= '</div>';
|
718 |
}
|
719 |
$edit .= '</div>';
|
738 |
$url .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr((($imageUrl != null) ? $imageUrl : "")) . '" name="b2s[' . esc_attr($networkAuthId) . '][image_url]">';
|
739 |
$url .= '</div>';
|
740 |
$url .= '<div class="clearfix"></div>';
|
741 |
+
$url .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" data-network-count="-1" ' . ((in_array($networkId, json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og'])) ? 'data-meta-type="og"' : '') . ' data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-post-id="' . esc_attr($this->postId) . '" data-image-url="' . esc_attr($imageUrl) . '">' . esc_html__('Change image', 'blog2social') . '</button></div>';
|
742 |
$url .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12"' : 'col-xs-12 col-sm-7 col-lg-9 b2s-post-original-area" data-network-auth-id="' . esc_attr($networkAuthId) . '"') . '>';
|
743 |
}
|
744 |
|
745 |
$url .= (!$hideInfo) ? '<div class="b2s-post-item-details-url-title hidden-xs">Link ' . $isRequiredText . '</div>' : '';
|
746 |
|
747 |
+
if ($refeshBtn && (trim(strtolower($this->postStatus)) == 'publish' || $this->b2sPostType == 'ex')) {
|
748 |
$url .= '<div class="input-group"><input class="form-control ' . esc_attr($class) . ' b2s-post-item-details-item-url-input ' . $isRequiredClass . ' complete_network_url" dir="ltr" name="b2s[' . esc_attr($networkAuthId) . '][url]" ' . $urlLimit . ' placeholder="' . esc_attr__('Link', 'blog2social') . '" data-network-count="-1" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="' . esc_attr($networkType) . '" value="' . esc_attr($this->postUrl) . '" name="b2s[' . esc_attr($networkAuthId) . '][url]"/><span class="input-group-addon"><span class="glyphicon glyphicon-refresh b2s-post-item-details-preview-url-reload" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-network-id="' . esc_attr($networkId) . '" aria-hidden="true"></span></span></div>';
|
749 |
} else {
|
750 |
$url .= '<input class="form-control ' . esc_attr($class) . ' b2s-post-item-details-item-url-input ' . $isRequiredClass . ' complete_network_url" dir="ltr" name="b2s[' . esc_attr($networkAuthId) . '][url]" ' . $urlLimit . ' placeholder="' . esc_attr__('Link', 'blog2social') . '" data-network-count="-1" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="' . esc_attr($networkType) . '" value="' . esc_attr($this->postUrl) . '" name="b2s[' . esc_attr($networkAuthId) . '][url]"/>';
|
834 |
return '<input type="text" name="b2s[' . esc_attr($networkdAutId) . '][custom_title]" class="form-control b2s-post-item-details-item-title-input" data-network-auth-id="' . esc_attr($networkdAutId) . '" placeholder="' . esc_attr__('The Headline...', 'blog2social') . '" required="required" maxlength="' . esc_attr($maxLength) . '" value="' . esc_attr($title) . '" />';
|
835 |
}
|
836 |
|
837 |
+
private function getTagsHtml($networkId, $networkAuthId, $allowTags = true) {
|
838 |
$tags = '<div class="b2s-post-item-details-tag-area">';
|
839 |
+
$info = '';
|
840 |
+
if (isset($this->limitTag[$networkId])) {
|
841 |
+
$tags .= '<input type="hidden" data-network-auth-id="' . esc_attr($networkAuthId) . '" class="b2s-post-item-details-tag-limit" value="' . (int) $this->limitTag[$networkId] . '" />';
|
842 |
+
$info = '('.sprintf(esc_html__('max. %s Tags', 'blog2social'),$this->limitTag[$networkId]).')';
|
843 |
+
}
|
844 |
+
$tags .= '<div class="b2s-post-item-details-tag-title"> ' . esc_html__('Hashtags', 'blog2social') .' '. $info.' </div>';
|
845 |
$tags .= '<div class="b2s-post-item-details-tag-input form-inline">';
|
846 |
$posttags = get_the_tags($this->postId);
|
847 |
$countTags = 0;
|
848 |
+
$limit = false;
|
849 |
if ($posttags && $allowTags) {
|
850 |
foreach ($posttags as $tag) {
|
851 |
$name = str_replace(" ", "", $tag->name);
|
852 |
$countTags += 1;
|
853 |
+
if (isset($this->limitTag[$networkId]) && $countTags > $this->limitTag[$networkId]) {
|
854 |
+
$limit = true;
|
855 |
+
continue;
|
856 |
+
}
|
857 |
$tags .= '<input class="form-control b2s-post-item-details-tag-input-elem" name="b2s[' . esc_attr($networkAuthId) . '][tags][]" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr($name) . '">';
|
858 |
}
|
859 |
} else {
|
860 |
$tags .= '<input class="form-control b2s-post-item-details-tag-input-elem" name="b2s[' . esc_attr($networkAuthId) . '][tags][]" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="">';
|
861 |
}
|
862 |
+
|
863 |
+
|
864 |
$showRemoveTagBtn = ($countTags >= 2) ? '' : 'display:none;';
|
865 |
+
$showAddTagBtn = ($limit) ? 'display:none;' : '';
|
866 |
$tags .= '<div class="form-control b2s-post-item-details-tag-add-div">';
|
867 |
$tags .= '<span class="remove-tag-btn glyphicon glyphicon-minus" data-network-auth-id="' . esc_attr($networkAuthId) . '" style="' . $showRemoveTagBtn . '" onclick="removeTag(\'' . esc_attr($networkAuthId) . '\');" ></span>';
|
868 |
+
$tags .= '<span class="ad-tag-btn glyphicon glyphicon-plus" data-network-auth-id="' . esc_attr($networkAuthId) . '" style="' . $showAddTagBtn . '" onclick="addTag(\'' . esc_attr($networkAuthId) . '\');" ></span>';
|
869 |
$tags .= '</div>';
|
870 |
$tags .= '</div>';
|
871 |
$tags .= '</div>';
|
1143 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1144 |
$appendFirst = false;
|
1145 |
}
|
1146 |
+
$message = preg_replace(array("/\{TITLE\}/", "/\{EXCERPT\}/", "/\{KEYWORDS\}/", "/\{AUTHOR\}/"), "", $message);
|
1147 |
if ($appendFirst) {
|
1148 |
$message = $preContent . ' ' . $message;
|
1149 |
}
|
1179 |
$hashtags = $this->getHashTagsString($add);
|
1180 |
$message .= " " . $hashtags;
|
1181 |
}
|
1182 |
+
|
1183 |
+
if (isset($this->postData->post_author) && (int) $this->postData->post_author > 0) {
|
1184 |
+
$hook_filter = new B2S_Hook_Filter();
|
1185 |
+
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $this->postData->post_author);
|
1186 |
+
$message = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $message));
|
1187 |
+
} else {
|
1188 |
+
$message = preg_replace("/\{AUTHOR\}/", "", $message);
|
1189 |
+
}
|
1190 |
}
|
1191 |
return $message;
|
1192 |
}
|
includes/Loader.php
CHANGED
@@ -23,6 +23,7 @@ class B2S_Loader {
|
|
23 |
|
24 |
$this->b2s_register_custom_post_type();
|
25 |
|
|
|
26 |
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
27 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/AutoPost.php');
|
28 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Rating.php');
|
@@ -34,16 +35,16 @@ class B2S_Loader {
|
|
34 |
|
35 |
define('B2S_PLUGIN_POSTPERPAGE', '15');
|
36 |
define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'Smart', 2 => 'Pro', 3 => 'Business', 4 => 'Premium')));
|
37 |
-
define('B2S_PLUGIN_NETWORK', serialize(array(1 => 'Facebook', 2 => 'Twitter', 3 => 'Linkedin', 4 => 'Tumblr', 5 => 'Storify', 6 => 'Pinterest', 7 => 'Flickr', 8 => 'Xing', 9 => 'Diigo', 10 => 'Google+', 11 => 'Medium', 12 => 'Instagram', 13 => 'Delicious', 14 => 'Torial', 15 => 'Reddit', 16 => 'Bloglovin', 17 => 'VKontakte', 18 => 'Google My Business', 19 => 'Xing', 20 => 'Pinterest')));
|
38 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES', serialize(array(1 => array(18, 22), 2 => array(8, 10), 3 => array(8, 10), 4 => array(16, 22), 5 => array(), 6 => array(19, 22), 7 => array(7, 9), 8 => array(7, 10), 9 => array(16, 19), 10 => array(7, 10), 11 => array(16, 19), 12 => array(19, 22), 13 => array(11, 13), 14 => array(18, 22), 15 => array(8, 11), 16 => array(16, 19), 17 => array(19, 23), 18 => array(17, 18), 19 => array(7, 10))));
|
39 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO', serialize(array(1 => array(0 => array(13, 16), 1 => array(18, 22)), 2 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 3 => array(0 => array(8, 10), 1 => array(16, 18)), 4 => array(), 5 => array(), 6 => array(0 => array(12, 14), 1 => array(19, 22)), 7 => array(0 => array(7, 9), 1 => array(17, 19)), 8 => array(0 => array(7, 10), 1 => array(17, 18)), 9 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 10 => array(0 => array(7, 10), 1 => array(14, 15)), 11 => array(), 12 => array(0 => array(12, 14), 1 => array(19, 22)), 13 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 14 => array(), 15 => array(0 => array(8, 11)), 16 => array(0 => array(16, 19)), 17 => array(0 => array(19, 23)), 18 => array(0 => array(17, 18)), 19 => array(0 => array(7, 10), 1 => array(17, 18)), 20 => array(0 => array(12, 14), 1 => array(19, 22)))));
|
40 |
-
define('B2S_PLUGIN_NETWORK_ALLOW_PROFILE', serialize(array(1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20)));
|
41 |
define('B2S_PLUGIN_NETWORK_ALLOW_PAGE', serialize(array(1, 3, 10, 17, 19)));
|
42 |
define('B2S_PLUGIN_NETWORK_ALLOW_GROUP', serialize(array(1, 10, 11, 17, 19)));
|
43 |
define('B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT', serialize(array(19 => array(2 => 3)))); //2=group
|
44 |
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')))));
|
45 |
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
46 |
-
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20)));
|
47 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
48 |
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),
|
49 |
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT}', 'format' => 0),
|
@@ -71,7 +72,7 @@ class B2S_Loader {
|
|
71 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_OPENSSL', true);
|
72 |
define('B2S_PLUGIN_PAGE_SLUG', serialize(array('blog2social', 'blog2social-post', 'blog2social-calendar', 'blog2social-curation', 'blog2social-network', 'blog2social-settings', 'prg-post', 'blog2social-support', 'blog2social-premium', 'blog2social-sched', 'blog2social-approve', 'blog2social-publish', 'blog2social-notice', 'blog2social-ship', 'blog2social-curation-draft', 'blog2social-draft-post', 'prg-login', 'prg-ship')));
|
73 |
define('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF', json_encode(array(16, 18)));
|
74 |
-
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))));
|
75 |
define('B2S_PLUGIN_NETWORK_META_TAGS', json_encode(array('og' => array(1, 3, 15, 19), 'twitter' => array(2))));
|
76 |
|
77 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
@@ -110,6 +111,7 @@ class B2S_Loader {
|
|
110 |
add_action('admin_menu', array($this, 'createMenu'));
|
111 |
add_action('admin_bar_menu', array($this, 'createToolbarMenu'), 94);
|
112 |
add_action('admin_notices', array('B2S_Notice', 'getProVersionNotice'));
|
|
|
113 |
add_action('admin_notices', array($this, 'b2s_save_post_alert_meta_box'));
|
114 |
add_action('add_meta_boxes', array($this, 'b2s_load_post_box'));
|
115 |
add_action('save_post', array($this, 'b2s_save_post_box'), 1, 3);
|
@@ -194,12 +196,12 @@ class B2S_Loader {
|
|
194 |
//Insert Posts via wordpress.com (mobile app) & jetpack
|
195 |
//https://developer.jetpack.com/hooks/rest_api_inserted_post/
|
196 |
//NOTICE: jetpack call transition_post_status hook
|
197 |
-
/*public function b2s_auto_post_import_rest_api_jetpack($post_id, $insert, $new) {
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
|
204 |
public function b2s_auto_post_import($new_status, $old_status, $post) {
|
205 |
//is first publish
|
@@ -297,7 +299,7 @@ class B2S_Loader {
|
|
297 |
|
298 |
$defaultBlogPostData = array('post_id' => (int) $post->ID, 'blog_user_id' => (int) $post->post_author, 'user_timezone' => $userTimeZoneOffset, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
299 |
|
300 |
-
$autoShare = new B2S_AutoPost((int) $post->ID, $defaultBlogPostData, $current_user_date, false, $title, $content, $excerpt, $url, $image_url, $keywords, trim(strtolower(substr(B2S_LANGUAGE, 0, 2))), $optionPostFormat, $allowHashTag
|
301 |
|
302 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
303 |
$networkTos = true;
|
@@ -505,12 +507,7 @@ class B2S_Loader {
|
|
505 |
//allow for User Post Date (Schedule)
|
506 |
if (!empty($post_date) && $current_user_date <= $post_date) {
|
507 |
$sched_type = 2;
|
508 |
-
|
509 |
-
if (date('i', strtotime($post_date)) <= 30) {
|
510 |
-
$sched_date = date('Y-m-d H:30:00', strtotime($post_date));
|
511 |
-
} else {
|
512 |
-
$sched_date = date('Y-m-d H:00:00', strtotime('+1 hours', strtotime($post_date)));
|
513 |
-
}
|
514 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($sched_date, $user_timezone * (-1))));
|
515 |
}
|
516 |
|
@@ -762,10 +759,10 @@ class B2S_Loader {
|
|
762 |
}
|
763 |
|
764 |
public function defineText() {
|
765 |
-
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__('
|
766 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
767 |
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company', 'blog2social'), esc_html__('Business', 'blog2social'))));
|
768 |
-
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' =>
|
769 |
'TOKEN' => esc_html__('Your authorization has expired. Please reconnect your account in the Blog2Social network settings.', 'blog2social'),
|
770 |
'CONTENT' => esc_html__('The network has marked the post as spam or abusive.', 'blog2social'),
|
771 |
'RIGHT' => esc_html__('We don\'t have the permission to publish your post. Please check your authorization.', 'blog2social'),
|
@@ -781,7 +778,8 @@ class B2S_Loader {
|
|
781 |
'BLOGPOST_NOT_PUBLISHED' => esc_html__('Your blog post was not available for the network at the time of publication.', 'blog2social'),
|
782 |
'EXISTS_RELAY' => esc_html__('You have already retweeted this post.', 'blog2social'),
|
783 |
'DEPRECATED_NETWORK_8' => esc_html__('This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts.', 'blog2social'),
|
784 |
-
'IMAGE_FOR_CURATION' => esc_html__('
|
|
|
785 |
'IMAGE_NETWORK' => esc_html__('Your post could not be posted, because your image can not be processed by the network.', 'blog2social'),
|
786 |
'TEXT_NOT_PUBLISHED_12' => sprintf(__('Instagram published your post without text. Please see <a target="_blank" href="%s">FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('instagram_without_text'))),
|
787 |
'GROUP_CONTENT' => esc_html__('Your group can not be found by the network.', 'blog2social'))));
|
@@ -841,9 +839,9 @@ class B2S_Loader {
|
|
841 |
add_menu_page('Blog2Social', 'Blog2Social', 'blog2social_access', 'blog2social', null, plugins_url('/assets/images/b2s_icon.png', B2S_PLUGIN_FILE));
|
842 |
//$parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function
|
843 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Dashboard', 'blog2social'), esc_html__('Dashboard', 'blog2social'), 'blog2social_access', 'blog2social', array($this, 'b2sstart'));
|
844 |
-
$subPages[] = add_submenu_page('blog2social', esc_html__('
|
|
|
845 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Calendar', 'blog2social'), esc_html__('Calendar', 'blog2social'), 'blog2social_access', 'blog2social-calendar', array($this, 'b2sPostCalendar'));
|
846 |
-
$subPages[] = add_submenu_page('blog2social', esc_html__('Content Curation', 'blog2social'), esc_html__('Content Curation', 'blog2social'), 'blog2social_access', 'blog2social-curation', array($this, 'b2sContentCuration'));
|
847 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Networks', 'blog2social'), esc_html__('Networks', 'blog2social'), 'blog2social_access', 'blog2social-network', array($this, 'b2sNetwork'));
|
848 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Settings', 'blog2social'), esc_html__('Settings', 'blog2social'), 'blog2social_access', 'blog2social-settings', array($this, 'b2sSettings'));
|
849 |
if (!B2S_System::isblockedArea('B2S_MENU_ITEM_WP_PR_SERVICE', B2S_PLUGIN_ADMIN)) {
|
@@ -854,6 +852,7 @@ class B2S_Loader {
|
|
854 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Premium', 'blog2social'), '<span class="dashicons dashicons-star-filled"></span> ' . esc_html__('PREMIUM', 'blog2social'), 'blog2social_access', 'blog2social-premium', array($this, 'b2sPremium'));
|
855 |
}
|
856 |
$subPages[] = add_submenu_page(null, 'B2S Post Draft', 'B2S Post Draft', 'blog2social_access', 'blog2social-draft-post', array($this, 'b2sPostDraft'));
|
|
|
857 |
$subPages[] = add_submenu_page(null, 'B2S Post Sched', 'B2S Post Sched', 'blog2social_access', 'blog2social-sched', array($this, 'b2sPostSched'));
|
858 |
$subPages[] = add_submenu_page(null, 'B2S Post Approve', 'B2S Post Approve', 'blog2social_access', 'blog2social-approve', array($this, 'b2sPostApprove'));
|
859 |
$subPages[] = add_submenu_page(null, 'B2S Post Publish', 'B2S Post Publish', 'blog2social_access', 'blog2social-publish', array($this, 'b2sPostPublish'));
|
@@ -889,23 +888,22 @@ class B2S_Loader {
|
|
889 |
|
890 |
$wp_admin_bar->add_node(array(
|
891 |
'id' => 'blog2social-post',
|
892 |
-
'title' => esc_html__('
|
893 |
'href' => $seo_url . 'blog2social-post',
|
894 |
'parent' => 'blog2social'
|
895 |
));
|
896 |
|
897 |
$wp_admin_bar->add_node(array(
|
898 |
-
'id' => 'blog2social-
|
899 |
-
'title' => esc_html__('
|
900 |
-
'href' => $seo_url . 'blog2social-
|
901 |
'parent' => 'blog2social'
|
902 |
));
|
903 |
|
904 |
-
|
905 |
$wp_admin_bar->add_node(array(
|
906 |
-
'id' => 'blog2social-
|
907 |
-
'title' => esc_html__('
|
908 |
-
'href' => $seo_url . 'blog2social-
|
909 |
'parent' => 'blog2social'
|
910 |
));
|
911 |
|
@@ -993,11 +991,16 @@ class B2S_Loader {
|
|
993 |
if (B2S_Tools::showNotice() == false) {
|
994 |
wp_enqueue_script('B2SVALIDATEJS');
|
995 |
wp_enqueue_style('B2SCURATIONCSS');
|
|
|
996 |
wp_enqueue_script('B2SCURATIONJS');
|
997 |
wp_enqueue_style('B2SAIRDATEPICKERCSS');
|
998 |
wp_enqueue_script('B2SAIRDATEPICKERJS');
|
999 |
wp_enqueue_script('B2SAIRDATEPICKERDEJS');
|
1000 |
wp_enqueue_script('B2SAIRDATEPICKERENJS');
|
|
|
|
|
|
|
|
|
1001 |
require_once( B2S_PLUGIN_DIR . 'views/b2s/curation.php');
|
1002 |
} else {
|
1003 |
require_once( B2S_PLUGIN_DIR . 'views/notice.php');
|
@@ -1056,6 +1059,7 @@ class B2S_Loader {
|
|
1056 |
wp_enqueue_style('B2STIMEPICKERCSS');
|
1057 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1058 |
wp_enqueue_script('B2SWYSIWYGJS');
|
|
|
1059 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1060 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
1061 |
} else {
|
@@ -1135,6 +1139,7 @@ class B2S_Loader {
|
|
1135 |
wp_enqueue_script('B2SPOSTJS');
|
1136 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1137 |
wp_enqueue_script('B2SWYSIWYGJS');
|
|
|
1138 |
wp_enqueue_script('B2SSHIPJS');
|
1139 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1140 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
@@ -1175,6 +1180,18 @@ class B2S_Loader {
|
|
1175 |
}
|
1176 |
}
|
1177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1178 |
//PageFunktion
|
1179 |
public function b2sPostCalendar() {
|
1180 |
if (B2S_Tools::showNotice() == false) {
|
@@ -1194,6 +1211,7 @@ class B2S_Loader {
|
|
1194 |
wp_enqueue_script('B2SFULLCALENDARLOCALEJS');
|
1195 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1196 |
wp_enqueue_script('B2SWYSIWYGJS');
|
|
|
1197 |
wp_enqueue_script('B2SSHIPJS');
|
1198 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1199 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
@@ -1339,7 +1357,6 @@ class B2S_Loader {
|
|
1339 |
wp_register_script('B2SCHARTJS', plugins_url('assets/lib/chartjs/Chart.bundle.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1340 |
wp_register_script('B2SMOMENT', plugins_url('assets/lib/moment/moment-with-locales.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1341 |
wp_register_script('B2STIMEPICKERJS', plugins_url('assets/lib/timepicker/timepicker.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1342 |
-
wp_register_script('B2SNOTICEJS', plugins_url('assets/js/notice.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1343 |
wp_register_script('PRGPOSTJS', plugins_url('assets/js/prg/post.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1344 |
wp_register_script('PRGGENERALJS', plugins_url('assets/js/prg/general.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1345 |
wp_register_script('B2SWYSIWYGJS', plugins_url('assets/lib/wysiwyg/jquery.sceditor.xhtml.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
@@ -1357,12 +1374,13 @@ class B2S_Loader {
|
|
1357 |
wp_register_script('B2SPLUGINDEACTIVATEJS', plugins_url('assets/js/b2s/wp/plugin-deactivate.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1358 |
wp_register_script('B2SCURATIONDRAFTJS', plugins_url('assets/js/b2s/curation.draft.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1359 |
wp_register_script('B2SPREMIUMJS', plugins_url('assets/js/b2s/premium.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
|
|
1360 |
}
|
1361 |
|
1362 |
public function initCaps() {
|
1363 |
global $wp_roles;
|
1364 |
if (!class_exists('WP_Roles')) {
|
1365 |
-
wp_die(esc_html__('Blog2Social needs Wordpress Version 4.
|
1366 |
}
|
1367 |
if (!isset($wp_roles)) {
|
1368 |
$wp_roles = new WP_Roles(); // @codingStandardsIgnoreLine
|
@@ -1579,6 +1597,15 @@ class B2S_Loader {
|
|
1579 |
) DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci AUTO_INCREMENT=1;";
|
1580 |
$wpdb->query($sqlCreateDrafts);
|
1581 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1582 |
|
1583 |
/*
|
1584 |
* SET SAFETY AUTO-INCREMENT
|
@@ -1591,6 +1618,7 @@ class B2S_Loader {
|
|
1591 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_contact` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1592 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_network_settings` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1593 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_posts_drafts` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
|
|
1594 |
|
1595 |
$b2sCheckAfter = $b2sSystem->check('after');
|
1596 |
if (is_array($b2sCheckAfter)) {
|
23 |
|
24 |
$this->b2s_register_custom_post_type();
|
25 |
|
26 |
+
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Hook/Filter.php');
|
27 |
require_once(B2S_PLUGIN_DIR . 'includes/Options.php');
|
28 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/AutoPost.php');
|
29 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Rating.php');
|
35 |
|
36 |
define('B2S_PLUGIN_POSTPERPAGE', '15');
|
37 |
define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'Smart', 2 => 'Pro', 3 => 'Business', 4 => 'Premium')));
|
38 |
+
define('B2S_PLUGIN_NETWORK', serialize(array(1 => 'Facebook', 2 => 'Twitter', 3 => 'Linkedin', 4 => 'Tumblr', 5 => 'Storify', 6 => 'Pinterest', 7 => 'Flickr', 8 => 'Xing', 9 => 'Diigo', 10 => 'Google+', 11 => 'Medium', 12 => 'Instagram', 13 => 'Delicious', 14 => 'Torial', 15 => 'Reddit', 16 => 'Bloglovin', 17 => 'VKontakte', 18 => 'Google My Business', 19 => 'Xing', 20 => 'Pinterest', 21 => 'Imgur')));
|
39 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES', serialize(array(1 => array(18, 22), 2 => array(8, 10), 3 => array(8, 10), 4 => array(16, 22), 5 => array(), 6 => array(19, 22), 7 => array(7, 9), 8 => array(7, 10), 9 => array(16, 19), 10 => array(7, 10), 11 => array(16, 19), 12 => array(19, 22), 13 => array(11, 13), 14 => array(18, 22), 15 => array(8, 11), 16 => array(16, 19), 17 => array(19, 23), 18 => array(17, 18), 19 => array(7, 10))));
|
40 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO', serialize(array(1 => array(0 => array(13, 16), 1 => array(18, 22)), 2 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 3 => array(0 => array(8, 10), 1 => array(16, 18)), 4 => array(), 5 => array(), 6 => array(0 => array(12, 14), 1 => array(19, 22)), 7 => array(0 => array(7, 9), 1 => array(17, 19)), 8 => array(0 => array(7, 10), 1 => array(17, 18)), 9 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 10 => array(0 => array(7, 10), 1 => array(14, 15)), 11 => array(), 12 => array(0 => array(12, 14), 1 => array(19, 22)), 13 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 14 => array(), 15 => array(0 => array(8, 11)), 16 => array(0 => array(16, 19)), 17 => array(0 => array(19, 23)), 18 => array(0 => array(17, 18)), 19 => array(0 => array(7, 10), 1 => array(17, 18)), 20 => array(0 => array(12, 14), 1 => array(19, 22)))));
|
41 |
+
define('B2S_PLUGIN_NETWORK_ALLOW_PROFILE', serialize(array(1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21)));
|
42 |
define('B2S_PLUGIN_NETWORK_ALLOW_PAGE', serialize(array(1, 3, 10, 17, 19)));
|
43 |
define('B2S_PLUGIN_NETWORK_ALLOW_GROUP', serialize(array(1, 10, 11, 17, 19)));
|
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),
|
50 |
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT}', 'format' => 0),
|
72 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_OPENSSL', true);
|
73 |
define('B2S_PLUGIN_PAGE_SLUG', serialize(array('blog2social', 'blog2social-post', 'blog2social-calendar', 'blog2social-curation', 'blog2social-network', 'blog2social-settings', 'prg-post', 'blog2social-support', 'blog2social-premium', 'blog2social-sched', 'blog2social-approve', 'blog2social-publish', 'blog2social-notice', 'blog2social-ship', 'blog2social-curation-draft', 'blog2social-draft-post', 'prg-login', 'prg-ship')));
|
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), 'twitter' => array(2))));
|
77 |
|
78 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
111 |
add_action('admin_menu', array($this, 'createMenu'));
|
112 |
add_action('admin_bar_menu', array($this, 'createToolbarMenu'), 94);
|
113 |
add_action('admin_notices', array('B2S_Notice', 'getProVersionNotice'));
|
114 |
+
add_action('wp_loaded', array('B2S_Notice', 'hideProVersionNotice'));
|
115 |
add_action('admin_notices', array($this, 'b2s_save_post_alert_meta_box'));
|
116 |
add_action('add_meta_boxes', array($this, 'b2s_load_post_box'));
|
117 |
add_action('save_post', array($this, 'b2s_save_post_box'), 1, 3);
|
196 |
//Insert Posts via wordpress.com (mobile app) & jetpack
|
197 |
//https://developer.jetpack.com/hooks/rest_api_inserted_post/
|
198 |
//NOTICE: jetpack call transition_post_status hook
|
199 |
+
/* public function b2s_auto_post_import_rest_api_jetpack($post_id, $insert, $new) {
|
200 |
+
if ((int) $post_id > 0 && is_array($insert) && isset($insert['post_status']) && $insert['post_status'] == 'publish') {
|
201 |
+
$post = get_post((int) $post_id);
|
202 |
+
$this->b2s_auto_post_import($insert['post_status'], 'draft', $post);
|
203 |
+
}
|
204 |
+
} */
|
205 |
|
206 |
public function b2s_auto_post_import($new_status, $old_status, $post) {
|
207 |
//is first publish
|
299 |
|
300 |
$defaultBlogPostData = array('post_id' => (int) $post->ID, 'blog_user_id' => (int) $post->post_author, 'user_timezone' => $userTimeZoneOffset, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
301 |
|
302 |
+
$autoShare = new B2S_AutoPost((int) $post->ID, $defaultBlogPostData, $current_user_date, false, $title, $content, $excerpt, $url, $image_url, $keywords, trim(strtolower(substr(B2S_LANGUAGE, 0, 2))), $optionPostFormat, $allowHashTag, $userVersion);
|
303 |
|
304 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
305 |
$networkTos = true;
|
507 |
//allow for User Post Date (Schedule)
|
508 |
if (!empty($post_date) && $current_user_date <= $post_date) {
|
509 |
$sched_type = 2;
|
510 |
+
$sched_date = date('Y-m-d H:i:59', strtotime($post_date));
|
|
|
|
|
|
|
|
|
|
|
511 |
$sched_date_utc = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($sched_date, $user_timezone * (-1))));
|
512 |
}
|
513 |
|
759 |
}
|
760 |
|
761 |
public function defineText() {
|
762 |
+
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'))));
|
763 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
764 |
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company', 'blog2social'), esc_html__('Business', 'blog2social'))));
|
765 |
+
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'))),
|
766 |
'TOKEN' => esc_html__('Your authorization has expired. Please reconnect your account in the Blog2Social network settings.', 'blog2social'),
|
767 |
'CONTENT' => esc_html__('The network has marked the post as spam or abusive.', 'blog2social'),
|
768 |
'RIGHT' => esc_html__('We don\'t have the permission to publish your post. Please check your authorization.', 'blog2social'),
|
778 |
'BLOGPOST_NOT_PUBLISHED' => esc_html__('Your blog post was not available for the network at the time of publication.', 'blog2social'),
|
779 |
'EXISTS_RELAY' => esc_html__('You have already retweeted this post.', 'blog2social'),
|
780 |
'DEPRECATED_NETWORK_8' => esc_html__('This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts.', 'blog2social'),
|
781 |
+
'IMAGE_FOR_CURATION' => esc_html__('The network requires a image.', 'blog2social'), // special for content curation V.5.0.0
|
782 |
+
'LINK_FOR_CURATION' => esc_html__('To share social media posts on Reddit or Diigo, a link is required.', 'blog2social'), // special for content curation V.6.0.0
|
783 |
'IMAGE_NETWORK' => esc_html__('Your post could not be posted, because your image can not be processed by the network.', 'blog2social'),
|
784 |
'TEXT_NOT_PUBLISHED_12' => sprintf(__('Instagram published your post without text. Please see <a target="_blank" href="%s">FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('instagram_without_text'))),
|
785 |
'GROUP_CONTENT' => esc_html__('Your group can not be found by the network.', 'blog2social'))));
|
839 |
add_menu_page('Blog2Social', 'Blog2Social', 'blog2social_access', 'blog2social', null, plugins_url('/assets/images/b2s_icon.png', B2S_PLUGIN_FILE));
|
840 |
//$parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function
|
841 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Dashboard', 'blog2social'), esc_html__('Dashboard', 'blog2social'), 'blog2social_access', 'blog2social', array($this, 'b2sstart'));
|
842 |
+
$subPages[] = add_submenu_page('blog2social', esc_html__('Share Website & Blog Content', 'blog2social'), esc_html__('Site & Blog Content', 'blog2social'), 'blog2social_access', 'blog2social-post', array($this, 'b2sPost'));
|
843 |
+
$subPages[] = add_submenu_page('blog2social', esc_html__('Create Social Media Posts', 'blog2social'), esc_html__('Social Media Posts', 'blog2social'), 'blog2social_access', 'blog2social-curation', array($this, 'b2sContentCuration'));
|
844 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Calendar', 'blog2social'), esc_html__('Calendar', 'blog2social'), 'blog2social_access', 'blog2social-calendar', array($this, 'b2sPostCalendar'));
|
|
|
845 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Networks', 'blog2social'), esc_html__('Networks', 'blog2social'), 'blog2social_access', 'blog2social-network', array($this, 'b2sNetwork'));
|
846 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Settings', 'blog2social'), esc_html__('Settings', 'blog2social'), 'blog2social_access', 'blog2social-settings', array($this, 'b2sSettings'));
|
847 |
if (!B2S_System::isblockedArea('B2S_MENU_ITEM_WP_PR_SERVICE', B2S_PLUGIN_ADMIN)) {
|
852 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Premium', 'blog2social'), '<span class="dashicons dashicons-star-filled"></span> ' . esc_html__('PREMIUM', 'blog2social'), 'blog2social_access', 'blog2social-premium', array($this, 'b2sPremium'));
|
853 |
}
|
854 |
$subPages[] = add_submenu_page(null, 'B2S Post Draft', 'B2S Post Draft', 'blog2social_access', 'blog2social-draft-post', array($this, 'b2sPostDraft'));
|
855 |
+
$subPages[] = add_submenu_page(null, 'B2S Post Favorites', 'B2S Post Favorites', 'blog2social_access', 'blog2social-favorites', array($this, 'b2sPostFavorites'));
|
856 |
$subPages[] = add_submenu_page(null, 'B2S Post Sched', 'B2S Post Sched', 'blog2social_access', 'blog2social-sched', array($this, 'b2sPostSched'));
|
857 |
$subPages[] = add_submenu_page(null, 'B2S Post Approve', 'B2S Post Approve', 'blog2social_access', 'blog2social-approve', array($this, 'b2sPostApprove'));
|
858 |
$subPages[] = add_submenu_page(null, 'B2S Post Publish', 'B2S Post Publish', 'blog2social_access', 'blog2social-publish', array($this, 'b2sPostPublish'));
|
888 |
|
889 |
$wp_admin_bar->add_node(array(
|
890 |
'id' => 'blog2social-post',
|
891 |
+
'title' => esc_html__('Site & Blog Content', 'blog2social'),
|
892 |
'href' => $seo_url . 'blog2social-post',
|
893 |
'parent' => 'blog2social'
|
894 |
));
|
895 |
|
896 |
$wp_admin_bar->add_node(array(
|
897 |
+
'id' => 'blog2social-curation',
|
898 |
+
'title' => esc_html__('Social Media Posts', 'blog2social'),
|
899 |
+
'href' => $seo_url . 'blog2social-curation',
|
900 |
'parent' => 'blog2social'
|
901 |
));
|
902 |
|
|
|
903 |
$wp_admin_bar->add_node(array(
|
904 |
+
'id' => 'blog2social-calendar',
|
905 |
+
'title' => esc_html__('Calendar', 'blog2social'),
|
906 |
+
'href' => $seo_url . 'blog2social-calendar',
|
907 |
'parent' => 'blog2social'
|
908 |
));
|
909 |
|
991 |
if (B2S_Tools::showNotice() == false) {
|
992 |
wp_enqueue_script('B2SVALIDATEJS');
|
993 |
wp_enqueue_style('B2SCURATIONCSS');
|
994 |
+
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
995 |
wp_enqueue_script('B2SCURATIONJS');
|
996 |
wp_enqueue_style('B2SAIRDATEPICKERCSS');
|
997 |
wp_enqueue_script('B2SAIRDATEPICKERJS');
|
998 |
wp_enqueue_script('B2SAIRDATEPICKERDEJS');
|
999 |
wp_enqueue_script('B2SAIRDATEPICKERENJS');
|
1000 |
+
if (current_user_can('upload_files')) {
|
1001 |
+
//Capability by Super Admin ,Administrator ,Editor ,Author
|
1002 |
+
wp_enqueue_media();
|
1003 |
+
}
|
1004 |
require_once( B2S_PLUGIN_DIR . 'views/b2s/curation.php');
|
1005 |
} else {
|
1006 |
require_once( B2S_PLUGIN_DIR . 'views/notice.php');
|
1059 |
wp_enqueue_style('B2STIMEPICKERCSS');
|
1060 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1061 |
wp_enqueue_script('B2SWYSIWYGJS');
|
1062 |
+
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
1063 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1064 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
1065 |
} else {
|
1139 |
wp_enqueue_script('B2SPOSTJS');
|
1140 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1141 |
wp_enqueue_script('B2SWYSIWYGJS');
|
1142 |
+
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
1143 |
wp_enqueue_script('B2SSHIPJS');
|
1144 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1145 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
1180 |
}
|
1181 |
}
|
1182 |
|
1183 |
+
//PageFunktion
|
1184 |
+
public function b2sPostFavorites() {
|
1185 |
+
if (B2S_Tools::showNotice() == false) {
|
1186 |
+
wp_enqueue_script('B2SVALIDATEJS');
|
1187 |
+
wp_enqueue_style('B2SPOSTCSS');
|
1188 |
+
wp_enqueue_script('B2SPOSTJS');
|
1189 |
+
require_once( B2S_PLUGIN_DIR . 'views/b2s/post.favorites.php');
|
1190 |
+
} else {
|
1191 |
+
require_once( B2S_PLUGIN_DIR . 'views/notice.php');
|
1192 |
+
}
|
1193 |
+
}
|
1194 |
+
|
1195 |
//PageFunktion
|
1196 |
public function b2sPostCalendar() {
|
1197 |
if (B2S_Tools::showNotice() == false) {
|
1211 |
wp_enqueue_script('B2SFULLCALENDARLOCALEJS');
|
1212 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1213 |
wp_enqueue_script('B2SWYSIWYGJS');
|
1214 |
+
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
1215 |
wp_enqueue_script('B2SSHIPJS');
|
1216 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1217 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
1357 |
wp_register_script('B2SCHARTJS', plugins_url('assets/lib/chartjs/Chart.bundle.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1358 |
wp_register_script('B2SMOMENT', plugins_url('assets/lib/moment/moment-with-locales.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1359 |
wp_register_script('B2STIMEPICKERJS', plugins_url('assets/lib/timepicker/timepicker.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
|
|
1360 |
wp_register_script('PRGPOSTJS', plugins_url('assets/js/prg/post.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1361 |
wp_register_script('PRGGENERALJS', plugins_url('assets/js/prg/general.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1362 |
wp_register_script('B2SWYSIWYGJS', plugins_url('assets/lib/wysiwyg/jquery.sceditor.xhtml.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1374 |
wp_register_script('B2SPLUGINDEACTIVATEJS', plugins_url('assets/js/b2s/wp/plugin-deactivate.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1375 |
wp_register_script('B2SCURATIONDRAFTJS', plugins_url('assets/js/b2s/curation.draft.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1376 |
wp_register_script('B2SPREMIUMJS', plugins_url('assets/js/b2s/premium.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1377 |
+
wp_register_script('B2SEMOJIBUTTONJS', plugins_url('assets/lib/emoji-button/emoji-button.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1378 |
}
|
1379 |
|
1380 |
public function initCaps() {
|
1381 |
global $wp_roles;
|
1382 |
if (!class_exists('WP_Roles')) {
|
1383 |
+
wp_die(esc_html__('Blog2Social needs Wordpress Version 4.7.0 or higher.', 'blog2social') . ' ' . sprintf(__('<a href="%s" target="_blank">Please find more Information and help in our FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('system'))) . ' ' . esc_html__('or', 'blog2social') . ' <a href="' . esc_url(admin_url("/plugins.php", "http")) . '/">' . esc_html__('back to install plugins', 'blog2social') . '</a>');
|
1384 |
}
|
1385 |
if (!isset($wp_roles)) {
|
1386 |
$wp_roles = new WP_Roles(); // @codingStandardsIgnoreLine
|
1597 |
) DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci AUTO_INCREMENT=1;";
|
1598 |
$wpdb->query($sqlCreateDrafts);
|
1599 |
|
1600 |
+
$sqlCreateFavorites = "CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}b2s_posts_favorites` (
|
1601 |
+
`id` int(11) NOT NULL AUTO_INCREMENT,
|
1602 |
+
`blog_user_id` int(11) NOT NULL,
|
1603 |
+
`post_id` int(11) NOT NULL,
|
1604 |
+
`save_date` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00',
|
1605 |
+
PRIMARY KEY (`id`),
|
1606 |
+
INDEX `blog_user_id` (`blog_user_id`), INDEX `post_id` (`post_id`)
|
1607 |
+
) DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_unicode_ci AUTO_INCREMENT=1;";
|
1608 |
+
$wpdb->query($sqlCreateFavorites);
|
1609 |
|
1610 |
/*
|
1611 |
* SET SAFETY AUTO-INCREMENT
|
1618 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_contact` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1619 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_user_network_settings` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1620 |
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_posts_drafts` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1621 |
+
$wpdb->query("ALTER TABLE `{$wpdb->prefix}b2s_posts_favorites` CHANGE `id` `id` INT(11) NOT NULL AUTO_INCREMENT;");
|
1622 |
|
1623 |
$b2sCheckAfter = $b2sSystem->check('after');
|
1624 |
if (is_array($b2sCheckAfter)) {
|
includes/Notice.php
CHANGED
@@ -3,7 +3,6 @@
|
|
3 |
class B2S_Notice {
|
4 |
|
5 |
public static function getProVersionNotice() {
|
6 |
-
|
7 |
if (defined("B2S_PLUGIN_TOKEN")) {
|
8 |
global $hook_suffix;
|
9 |
if (in_array($hook_suffix, array('index.php', 'plugins.php'))) {
|
@@ -14,12 +13,11 @@ class B2S_Notice {
|
|
14 |
$wpdb->update('b2s_user', array('register_date' => date('Y-m-d H:i:s')), array('blog_user_id' => B2S_PLUGIN_BLOG_USER_ID), array('%s'), array('%d'));
|
15 |
} else if ($userResult->feature == 0 && strtotime($userResult->register_date) < strtotime('-6 days')) {
|
16 |
wp_enqueue_style('B2SNOTICECSS');
|
17 |
-
wp_enqueue_script('B2SNOTICEJS');
|
18 |
echo '<div class="updated b2s-notice-rate">
|
19 |
<strong>' . esc_html__("Rate it!", "blog2social") . '</strong>
|
20 |
<p>' . esc_html__("If you like Blog2Social, please give us a 5 star rating. I there is anything that does not work for you, please contact us!!", "blog2social") . '
|
21 |
<b><a href="https://wordpress.org/support/plugin/blog2social/reviews/" target="_bank">' . esc_html__('RATE BLOG2SOCIAL', 'blog2social') . '</a></b>
|
22 |
-
<small><a href="
|
23 |
</p>
|
24 |
</div>';
|
25 |
}
|
@@ -27,7 +25,18 @@ class B2S_Notice {
|
|
27 |
}
|
28 |
}
|
29 |
}
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
public static function getBlogEntries($lang = 'en') {
|
32 |
return json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getBlogEntries', 'lang' => $lang, 'token' => B2S_PLUGIN_TOKEN)));
|
33 |
}
|
3 |
class B2S_Notice {
|
4 |
|
5 |
public static function getProVersionNotice() {
|
|
|
6 |
if (defined("B2S_PLUGIN_TOKEN")) {
|
7 |
global $hook_suffix;
|
8 |
if (in_array($hook_suffix, array('index.php', 'plugins.php'))) {
|
13 |
$wpdb->update('b2s_user', array('register_date' => date('Y-m-d H:i:s')), array('blog_user_id' => B2S_PLUGIN_BLOG_USER_ID), array('%s'), array('%d'));
|
14 |
} else if ($userResult->feature == 0 && strtotime($userResult->register_date) < strtotime('-6 days')) {
|
15 |
wp_enqueue_style('B2SNOTICECSS');
|
|
|
16 |
echo '<div class="updated b2s-notice-rate">
|
17 |
<strong>' . esc_html__("Rate it!", "blog2social") . '</strong>
|
18 |
<p>' . esc_html__("If you like Blog2Social, please give us a 5 star rating. I there is anything that does not work for you, please contact us!!", "blog2social") . '
|
19 |
<b><a href="https://wordpress.org/support/plugin/blog2social/reviews/" target="_bank">' . esc_html__('RATE BLOG2SOCIAL', 'blog2social') . '</a></b>
|
20 |
+
<small><a href="'.esc_url(wp_nonce_url(add_query_arg('b2s_action', 'hide_notice'), 'b2s_notice_nonce', 'b2s_notice_nonce')).'">(' . esc_html__('hide', 'blog2social') . ')</a></small>
|
21 |
</p>
|
22 |
</div>';
|
23 |
}
|
25 |
}
|
26 |
}
|
27 |
}
|
28 |
+
|
29 |
+
public static function hideProVersionNotice() {
|
30 |
+
if(isset($_GET['b2s_action']) && $_GET['b2s_action'] == 'hide_notice'){
|
31 |
+
if (isset($_GET['b2s_notice_nonce']) && wp_verify_nonce(sanitize_key(wp_unslash($_GET['b2s_notice_nonce'])), 'b2s_notice_nonce')) {
|
32 |
+
global $wpdb;
|
33 |
+
$wpdb->update($wpdb->prefix . 'b2s_user', array('feature' => 1), array('blog_user_id' => B2S_PLUGIN_BLOG_USER_ID), array('%d'), array('%d'));
|
34 |
+
} else {
|
35 |
+
wp_die(esc_html__('Could not hide notice. Please refresh the page and retry.', 'blog2social'));
|
36 |
+
}
|
37 |
+
}
|
38 |
+
}
|
39 |
+
|
40 |
public static function getBlogEntries($lang = 'en') {
|
41 |
return json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getBlogEntries', 'lang' => $lang, 'token' => B2S_PLUGIN_TOKEN)));
|
42 |
}
|
includes/Tools.php
CHANGED
@@ -214,6 +214,9 @@ class B2S_Tools {
|
|
214 |
if($type == 'facebook_instant_sharing'){
|
215 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=135&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=136&artlang=de';
|
216 |
}
|
|
|
|
|
|
|
217 |
}
|
218 |
|
219 |
public static function getAffiliateId() {
|
@@ -317,5 +320,21 @@ class B2S_Tools {
|
|
317 |
return $countryList;
|
318 |
}
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
|
321 |
}
|
214 |
if($type == 'facebook_instant_sharing'){
|
215 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=135&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=136&artlang=de';
|
216 |
}
|
217 |
+
if($type == 'xing_business'){
|
218 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=146&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=11&id=122&artlang=de';
|
219 |
+
}
|
220 |
}
|
221 |
|
222 |
public static function getAffiliateId() {
|
320 |
return $countryList;
|
321 |
}
|
322 |
|
323 |
+
public static function getEmojiTranslationList() {
|
324 |
+
return array(
|
325 |
+
'search' => esc_html__('Search', 'blog2social'),
|
326 |
+
'recents' => esc_html__('Recently Used', 'blog2social'),
|
327 |
+
'smileys' => esc_html__('Smileys & People', 'blog2social'),
|
328 |
+
'animals' => esc_html__('Animals & Nature', 'blog2social'),
|
329 |
+
'food' => esc_html__('Food & Drink', 'blog2social'),
|
330 |
+
'activities' => esc_html__('Activities', 'blog2social'),
|
331 |
+
'travel' => esc_html__('Travel & Places', 'blog2social'),
|
332 |
+
'objects' => esc_html__('Objects', 'blog2social'),
|
333 |
+
'symbols' => esc_html__('Symbols', 'blog2social'),
|
334 |
+
'flags' => esc_html__('Flags', 'blog2social'),
|
335 |
+
'notFound' => esc_html__('No emojis found', 'blog2social')
|
336 |
+
);
|
337 |
+
}
|
338 |
+
|
339 |
|
340 |
}
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2019-11-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,49 +12,49 @@ msgstr ""
|
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
-
"POT-Creation-Date: 2019-11-
|
16 |
"Last-Translator: marius <wolf.12345@gmx.de>\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
-
"X-Loco-Version: 2.3.0; wp-5.3
|
19 |
|
20 |
-
#: includes/Loader.php:
|
21 |
msgid "Modify pin board"
|
22 |
msgstr "Pin-Board bearbeiten"
|
23 |
|
24 |
-
#: includes/Loader.php:
|
25 |
msgid "Edit group settings"
|
26 |
msgstr "Gruppeneinstellungen bearbeiten"
|
27 |
|
28 |
-
#: includes/Loader.php:
|
29 |
msgid "Modify subreddit"
|
30 |
msgstr "Modify subreddit"
|
31 |
|
32 |
-
#: includes/Loader.php:
|
33 |
msgid "Modify forum"
|
34 |
msgstr "Modify forum"
|
35 |
|
36 |
-
#: includes/Loader.php:
|
37 |
msgid "Auto-Post on Social Media"
|
38 |
msgstr "Automatisch auf Social Media teilen"
|
39 |
|
40 |
-
#: includes/Loader.php:
|
41 |
msgid "Social Media Content Calendar"
|
42 |
msgstr "Social Media Kalender"
|
43 |
|
44 |
-
#: includes/Loader.php:
|
45 |
msgid "This post will be shared into your social media from"
|
46 |
msgstr ""
|
47 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
48 |
|
49 |
-
#: includes/Loader.php:
|
50 |
msgid "show details"
|
51 |
msgstr "siehe Details"
|
52 |
|
53 |
-
#: includes/Loader.php:
|
54 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
55 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
56 |
|
57 |
-
#: includes/Loader.php:
|
58 |
msgid ""
|
59 |
"Please, make sure that your post are publish on this blog on this moment. "
|
60 |
"Then you can auto post your post with Blog2social."
|
@@ -62,7 +62,7 @@ msgstr ""
|
|
62 |
"Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
|
63 |
" Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
64 |
|
65 |
-
#: includes/Loader.php:
|
66 |
msgid ""
|
67 |
"There are no social network accounts assigned to your selected network "
|
68 |
"collection. Please assign at least one social network account or select "
|
@@ -72,73 +72,84 @@ msgstr ""
|
|
72 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
73 |
"eine andere Netzwerkgruppierung aus. "
|
74 |
|
75 |
-
#: includes/Loader.php:
|
76 |
#: views/b2s/html/sidebar.ship.php:44
|
77 |
msgid "Upgrade to Premium"
|
78 |
msgstr "Premium freischalten"
|
79 |
|
80 |
-
#: includes/Loader.php:
|
81 |
msgid "Notifications"
|
82 |
msgstr "Benachrichtigungen"
|
83 |
|
84 |
-
#: includes/Loader.php:
|
85 |
-
#: views/b2s/html/sidebar.php:
|
86 |
msgid "Shared Posts"
|
87 |
msgstr "geteilte Beiträge"
|
88 |
|
89 |
-
#: includes/Loader.php:
|
90 |
-
#: views/b2s/html/sidebar.php:
|
91 |
msgid "Instant Sharing"
|
92 |
msgstr "Instant Sharing"
|
93 |
|
94 |
-
#: includes/Loader.php:
|
95 |
-
#: views/b2s/html/
|
|
|
96 |
msgid "Drafts"
|
97 |
msgstr "Entwürfe"
|
98 |
|
99 |
-
#: includes/Loader.php:
|
100 |
-
#: views/b2s/html/sidebar.php:
|
101 |
msgid "Scheduled Posts"
|
102 |
msgstr "geplante Beiträge"
|
103 |
|
104 |
-
#: includes/Loader.php:
|
105 |
-
msgid "
|
106 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
107 |
|
108 |
-
#: includes/Loader.php:
|
109 |
#: includes/B2S/Network/Item.php:150 includes/B2S/Network/Item.php:150
|
110 |
-
#: includes/B2S/Network/Item.php:
|
111 |
#: includes/B2S/Settings/Item.php:245 includes/B2S/Ship/Portale.php:39
|
112 |
#: includes/B2S/Ship/Portale.php:41 includes/B2S/Ship/Portale.php:41
|
113 |
msgid "Profile"
|
114 |
msgstr "Profil"
|
115 |
|
116 |
-
#: includes/Loader.php:
|
117 |
-
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:
|
118 |
-
#: includes/B2S/Network/Item.php:
|
119 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
120 |
msgid "Page"
|
121 |
msgstr "Seite"
|
122 |
|
123 |
-
#: includes/Loader.php:
|
124 |
-
#: includes/B2S/Network/Item.php:
|
125 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
126 |
msgid "Group"
|
127 |
msgstr "Gruppe"
|
128 |
|
129 |
-
#: includes/Loader.php:
|
130 |
msgid "Company"
|
131 |
msgstr "Unternehmen"
|
132 |
|
133 |
-
#: includes/Loader.php:
|
134 |
msgid "Business"
|
135 |
msgstr "Business"
|
136 |
|
137 |
-
#: includes/Loader.php:
|
138 |
-
|
139 |
-
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
-
#: includes/Loader.php:
|
142 |
msgid ""
|
143 |
"Your authorization has expired. Please reconnect your account in the "
|
144 |
"Blog2Social network settings."
|
@@ -146,11 +157,11 @@ msgstr ""
|
|
146 |
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
147 |
"Blog2Social Netzwerkeinstellungen erneut."
|
148 |
|
149 |
-
#: includes/Loader.php:
|
150 |
msgid "The network has marked the post as spam or abusive."
|
151 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
152 |
|
153 |
-
#: includes/Loader.php:
|
154 |
msgid ""
|
155 |
"We don't have the permission to publish your post. Please check your "
|
156 |
"authorization."
|
@@ -158,7 +169,7 @@ msgstr ""
|
|
158 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
159 |
"überprüfe deine Autorisierung."
|
160 |
|
161 |
-
#: includes/Loader.php:
|
162 |
#, php-format
|
163 |
msgid ""
|
164 |
"Your authorization is interrupted. Please check your authorization. Please "
|
@@ -167,11 +178,11 @@ msgstr ""
|
|
167 |
"Deine Autorisierung ist unterbrochen. Bitte überprüfe Deine Verbindung. "
|
168 |
"Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
169 |
|
170 |
-
#: includes/Loader.php:
|
171 |
msgid "Your daily limit has been reached."
|
172 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
173 |
|
174 |
-
#: includes/Loader.php:
|
175 |
msgid ""
|
176 |
"Your post could not be posted, because your image is not available or the "
|
177 |
"image source does not allow to publish"
|
@@ -179,7 +190,7 @@ msgstr ""
|
|
179 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
180 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
181 |
|
182 |
-
#: includes/Loader.php:
|
183 |
#, php-format
|
184 |
msgid ""
|
185 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
@@ -188,7 +199,7 @@ msgstr ""
|
|
188 |
"Das Netzwerk hat Dein Konto gesperrt. Siehe <a target=\"_blank\" href=\"%s\">"
|
189 |
"FAQ</a>"
|
190 |
|
191 |
-
#: includes/Loader.php:
|
192 |
#, php-format
|
193 |
msgid ""
|
194 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
@@ -197,14 +208,14 @@ msgstr ""
|
|
197 |
"Die Anzahl der Bilder ist erreicht. Siehe <a target=\"_blank\" href=\"%s\">"
|
198 |
"FAQ</a>"
|
199 |
|
200 |
-
#: includes/Loader.php:
|
201 |
msgid ""
|
202 |
"Your daily limit for this network has been reached. Please try again later."
|
203 |
msgstr ""
|
204 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
205 |
"versuche es später noch einmal."
|
206 |
|
207 |
-
#: includes/Loader.php:
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"The network can not publish special characters such as Emoji. Please see <a "
|
@@ -213,26 +224,26 @@ msgstr ""
|
|
213 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Siehe <a "
|
214 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
215 |
|
216 |
-
#: includes/Loader.php:
|
217 |
msgid "Your post is a duplicate."
|
218 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
219 |
|
220 |
-
#: includes/Loader.php:
|
221 |
msgid "The network requires a public url."
|
222 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
223 |
|
224 |
-
#: includes/Loader.php:
|
225 |
msgid ""
|
226 |
"Your blog post was not available for the network at the time of publication."
|
227 |
msgstr ""
|
228 |
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
229 |
"nicht verfügbar."
|
230 |
|
231 |
-
#: includes/Loader.php:
|
232 |
msgid "You have already retweeted this post."
|
233 |
msgstr "Du hast diesen Post bereits retweetet."
|
234 |
|
235 |
-
#: includes/Loader.php:
|
236 |
msgid ""
|
237 |
"This XING API is no longer supported by XING. Please connect your XING "
|
238 |
"accounts with the new XING interface to reschedule your posts."
|
@@ -241,16 +252,17 @@ msgstr ""
|
|
241 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
242 |
"zu planen."
|
243 |
|
244 |
-
#: includes/Loader.php:
|
245 |
-
msgid ""
|
246 |
-
"
|
247 |
-
|
|
|
|
|
248 |
msgstr ""
|
249 |
-
"
|
250 |
-
"
|
251 |
-
"werden. "
|
252 |
|
253 |
-
#: includes/Loader.php:
|
254 |
msgid ""
|
255 |
"Your post could not be posted, because your image can not be processed by "
|
256 |
"the network."
|
@@ -258,7 +270,7 @@ msgstr ""
|
|
258 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
259 |
"Netzwerk verarbeitet werden kann"
|
260 |
|
261 |
-
#: includes/Loader.php:
|
262 |
#, php-format
|
263 |
msgid ""
|
264 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
@@ -267,64 +279,71 @@ msgstr ""
|
|
267 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Siehe <a "
|
268 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
269 |
|
270 |
-
#: includes/Loader.php:
|
271 |
msgid "Your group can not be found by the network."
|
272 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
273 |
|
274 |
-
#: includes/Loader.php:
|
275 |
msgid "Dashboard"
|
276 |
msgstr "Dashboard"
|
277 |
|
278 |
-
#: includes/Loader.php:
|
279 |
-
msgid "
|
280 |
-
msgstr "
|
281 |
|
282 |
-
#: includes/Loader.php:
|
283 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
284 |
msgid "Calendar"
|
285 |
msgstr "Kalender"
|
286 |
|
287 |
-
#: includes/Loader.php:
|
288 |
-
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:81
|
289 |
-
msgid "Content Curation"
|
290 |
-
msgstr "Content Curation"
|
291 |
-
|
292 |
-
#: includes/Loader.php:847 includes/Loader.php:914
|
293 |
msgid "Networks"
|
294 |
msgstr "Netzwerke"
|
295 |
|
296 |
-
#: includes/Loader.php:
|
297 |
-
#: views/b2s/html/sidebar.php:
|
298 |
msgid "Settings"
|
299 |
msgstr "Einstellungen"
|
300 |
|
301 |
-
#: includes/Loader.php:
|
302 |
msgid "PR-Service"
|
303 |
msgstr "PR-Service"
|
304 |
|
305 |
-
#: includes/Loader.php:
|
306 |
-
#: views/b2s/html/sidebar.php:
|
307 |
msgid "Help & Support"
|
308 |
msgstr "Hilfe & Support"
|
309 |
|
310 |
-
#: includes/Loader.php:
|
311 |
msgid "Premium"
|
312 |
msgstr "Premium"
|
313 |
|
314 |
-
#: includes/Loader.php:
|
315 |
msgid "PREMIUM"
|
316 |
msgstr "PREMIUM"
|
317 |
|
318 |
-
#: includes/Loader.php:
|
319 |
#: views/b2s/html/sidebar.ship.php:24
|
320 |
msgid "Blog2Social"
|
321 |
msgstr "Blog2Social"
|
322 |
|
323 |
-
#: includes/Loader.php:
|
324 |
-
msgid "Blog2Social needs Wordpress Version 4.
|
325 |
-
msgstr "Blog2Social benötigt WordPress Version 4.
|
326 |
|
327 |
-
#: includes/Loader.php:
|
328 |
#: includes/System.php:84
|
329 |
#, php-format
|
330 |
msgid ""
|
@@ -334,19 +353,19 @@ msgstr ""
|
|
334 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
335 |
"in unserem FAQs.</a>"
|
336 |
|
337 |
-
#: includes/Loader.php:
|
338 |
msgid "or"
|
339 |
msgstr "oder"
|
340 |
|
341 |
-
#: includes/Loader.php:
|
342 |
msgid "back to install plugins"
|
343 |
msgstr "zurück zur Pluginübersicht"
|
344 |
|
345 |
-
#: includes/Notice.php:
|
346 |
msgid "Rate it!"
|
347 |
msgstr "Bewerte uns!"
|
348 |
|
349 |
-
#: includes/Notice.php:
|
350 |
msgid ""
|
351 |
"If you like Blog2Social, please give us a 5 star rating. I there is anything "
|
352 |
"that does not work for you, please contact us!!"
|
@@ -354,14 +373,20 @@ msgstr ""
|
|
354 |
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
355 |
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
356 |
|
357 |
-
#: includes/Notice.php:
|
358 |
msgid "RATE BLOG2SOCIAL"
|
359 |
msgstr "Blog2Social jetzt bewerten"
|
360 |
|
361 |
-
#: includes/Notice.php:
|
362 |
msgid "hide"
|
363 |
msgstr "ausblenden"
|
364 |
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
#: includes/System.php:69
|
366 |
msgid ""
|
367 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
@@ -392,159 +417,203 @@ msgstr ""
|
|
392 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
393 |
"zu tun."
|
394 |
|
395 |
-
#: includes/Tools.php:
|
396 |
#: views/b2s/html/sidebar.ship.php:29
|
397 |
msgid "License"
|
398 |
msgstr "Lizenz"
|
399 |
|
400 |
-
#: includes/Tools.php:
|
401 |
msgid "Greece"
|
402 |
msgstr "Griechenland"
|
403 |
|
404 |
-
#: includes/Tools.php:
|
405 |
msgid "India"
|
406 |
msgstr "Indien"
|
407 |
|
408 |
-
#: includes/Tools.php:
|
409 |
msgid "United States of America"
|
410 |
msgstr "Vereinigte Staaten von Amerika"
|
411 |
|
412 |
-
#: includes/Tools.php:
|
413 |
msgid "Ireland"
|
414 |
msgstr "Irland"
|
415 |
|
416 |
-
#: includes/Tools.php:
|
417 |
msgid "Italy"
|
418 |
msgstr "Italien"
|
419 |
|
420 |
-
#: includes/Tools.php:
|
421 |
msgid "Switzerland"
|
422 |
msgstr "Schweiz"
|
423 |
|
424 |
-
#: includes/Tools.php:
|
425 |
msgid "Czechoslovakia"
|
426 |
msgstr "Tschechoslowakei"
|
427 |
|
428 |
-
#: includes/Tools.php:
|
429 |
msgid "Indonesia"
|
430 |
msgstr "Indonesien"
|
431 |
|
432 |
-
#: includes/Tools.php:
|
433 |
msgid "Spain"
|
434 |
msgstr "Spanien"
|
435 |
|
436 |
-
#: includes/Tools.php:
|
437 |
msgid "Canada"
|
438 |
msgstr "Kanada"
|
439 |
|
440 |
-
#: includes/Tools.php:
|
441 |
msgid "Great Britain"
|
442 |
msgstr "Großbritannien"
|
443 |
|
444 |
-
#: includes/Tools.php:
|
445 |
msgid "Russia"
|
446 |
msgstr "Russland"
|
447 |
|
448 |
-
#: includes/Tools.php:
|
449 |
msgid "Netherlands"
|
450 |
msgstr "Niederlande"
|
451 |
|
452 |
-
#: includes/Tools.php:
|
453 |
msgid "Portugal"
|
454 |
msgstr "Portugal"
|
455 |
|
456 |
-
#: includes/Tools.php:
|
457 |
msgid "Norway"
|
458 |
msgstr "Norwegen"
|
459 |
|
460 |
-
#: includes/Tools.php:
|
461 |
msgid "Turkey"
|
462 |
msgstr "Türkei"
|
463 |
|
464 |
-
#: includes/Tools.php:
|
465 |
msgid "Australia"
|
466 |
msgstr "Australien"
|
467 |
|
468 |
-
#: includes/Tools.php:
|
469 |
msgid "Austria"
|
470 |
msgstr "Österreich"
|
471 |
|
472 |
-
#: includes/Tools.php:
|
473 |
msgid "Poland"
|
474 |
msgstr "Polen"
|
475 |
|
476 |
-
#: includes/Tools.php:
|
477 |
msgid "France"
|
478 |
msgstr "Frankreich"
|
479 |
|
480 |
-
#: includes/Tools.php:
|
481 |
msgid "Romania"
|
482 |
msgstr "Rumänien"
|
483 |
|
484 |
-
#: includes/Tools.php:
|
485 |
msgid "Germany"
|
486 |
msgstr "Deutschland"
|
487 |
|
488 |
-
#: includes/Tools.php:
|
489 |
msgid "Denmark"
|
490 |
msgstr "Dänemark"
|
491 |
|
492 |
-
#: includes/Tools.php:
|
493 |
msgid "New Zealand"
|
494 |
msgstr "Neuseeland"
|
495 |
|
496 |
-
#: includes/Tools.php:
|
497 |
msgid "Finland"
|
498 |
msgstr "Finnland"
|
499 |
|
500 |
-
#: includes/Tools.php:
|
501 |
msgid "Hungary"
|
502 |
msgstr "Ungarn"
|
503 |
|
504 |
-
#: includes/Tools.php:
|
505 |
msgid "Japan"
|
506 |
msgstr "Japan"
|
507 |
|
508 |
-
#: includes/Tools.php:
|
509 |
msgid "Argentina"
|
510 |
msgstr "Argentinien"
|
511 |
|
512 |
-
#: includes/Tools.php:
|
513 |
msgid "Korea"
|
514 |
msgstr "Korea"
|
515 |
|
516 |
-
#: includes/Tools.php:
|
517 |
msgid "Sweden"
|
518 |
msgstr "Schweden"
|
519 |
|
520 |
-
#: includes/Tools.php:
|
521 |
msgid "Mexico"
|
522 |
msgstr "Mexiko"
|
523 |
|
524 |
-
#: includes/Tools.php:
|
525 |
msgid "Slovakia"
|
526 |
msgstr "Slowakei"
|
527 |
|
528 |
-
#: includes/Tools.php:
|
529 |
msgid "Chile"
|
530 |
msgstr "Chile"
|
531 |
|
532 |
-
#: includes/Tools.php:
|
533 |
msgid "Colombia"
|
534 |
msgstr "Kolumbien"
|
535 |
|
536 |
-
#: includes/Tools.php:
|
537 |
msgid "South Africa"
|
538 |
msgstr "Südafrika"
|
539 |
|
540 |
-
#: includes/Tools.php:
|
541 |
msgid "Philippines"
|
542 |
msgstr "Philippinen"
|
543 |
|
544 |
-
#: includes/Tools.php:
|
545 |
msgid "is determined automatically"
|
546 |
msgstr "wird automatisch ermittelt"
|
547 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
#: views/notice.php:12
|
549 |
msgid "Connection is broken..."
|
550 |
msgstr "Vebindung ist unterbrochen..."
|
@@ -588,18 +657,18 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
|
588 |
msgid "Please contact our support!"
|
589 |
msgstr "Bitte kontaktiere unseren Support!"
|
590 |
|
591 |
-
#: includes/Ajax/Post.php:
|
592 |
-
#: includes/B2S/Network/Item.php:
|
593 |
-
#: includes/B2S/Network/Item.php:
|
594 |
-
#: includes/B2S/Network/Item.php:
|
595 |
msgid "Unknown username"
|
596 |
msgstr "unbekannter Blog-Nutzer"
|
597 |
|
598 |
-
#: includes/Ajax/Post.php:
|
599 |
-
#: includes/B2S/Post/Item.php:
|
600 |
-
#: includes/B2S/Post/Item.php:
|
601 |
-
#: includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:
|
602 |
-
#: includes/B2S/Ship/Item.php:
|
603 |
msgid "delete"
|
604 |
msgstr "löschen"
|
605 |
|
@@ -611,7 +680,7 @@ msgstr "Siehe FAQ"
|
|
611 |
msgid "last auto-post:"
|
612 |
msgstr "letzter Auto-Post:"
|
613 |
|
614 |
-
#: includes/B2S/PostBox.php:76 views/b2s/ship.php:
|
615 |
#: views/b2s/html/header.php:55
|
616 |
msgid "The connection to the server failed. Try again!"
|
617 |
msgstr ""
|
@@ -640,7 +709,7 @@ msgstr ""
|
|
640 |
msgid "Network settings"
|
641 |
msgstr "Netzwerkeinstellungen"
|
642 |
|
643 |
-
#: includes/B2S/PostBox.php:81 views/b2s/ship.php:
|
644 |
msgid ""
|
645 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
646 |
"Networks do not allow postings from local installations."
|
@@ -653,8 +722,8 @@ msgid "Custom Sharing & Scheduling"
|
|
653 |
msgstr "Anpassen & Planen"
|
654 |
|
655 |
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101
|
656 |
-
#: views/b2s/ship.php:
|
657 |
-
#: includes/B2S/Network/Item.php:
|
658 |
msgid "Info"
|
659 |
msgstr "Info"
|
660 |
|
@@ -685,26 +754,28 @@ msgstr "Social Media Auto-Posting"
|
|
685 |
msgid "enable Auto-Posting"
|
686 |
msgstr "Auto-Posting aktivieren"
|
687 |
|
688 |
-
#: includes/B2S/PostBox.php:108 views/b2s/
|
689 |
-
#:
|
690 |
-
#: includes/B2S/
|
691 |
-
#: includes/B2S/Network/Item.php:
|
692 |
-
#: includes/B2S/
|
693 |
-
#: includes/B2S/
|
694 |
-
#:
|
|
|
695 |
#: views/b2s/widgets/posts.php:18
|
696 |
msgid "SMART"
|
697 |
msgstr "SMART"
|
698 |
|
699 |
-
#: includes/B2S/PostBox.php:115 views/b2s/curation.draft.php:
|
700 |
#: views/b2s/network.php:58 views/b2s/network.php:146 views/b2s/network.php:222
|
701 |
-
#: views/b2s/network.php:
|
702 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
703 |
-
#: views/b2s/post.calendar.php:
|
704 |
-
#: views/b2s/post.
|
705 |
-
#: views/b2s/post.
|
706 |
-
#: views/b2s/
|
707 |
-
#: views/b2s/
|
|
|
708 |
msgid "Loading..."
|
709 |
msgstr "Wird geladen..."
|
710 |
|
@@ -758,114 +829,121 @@ msgstr ""
|
|
758 |
msgid "You want to auto-post your blog post?"
|
759 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
760 |
|
761 |
-
#: includes/B2S/PostBox.php:145 views/b2s/curation.php:
|
762 |
-
#: views/b2s/
|
763 |
-
#: views/b2s/ship.php:
|
764 |
-
#: views/b2s/html/footer.php:
|
765 |
-
#: views/b2s/html/footer.php:
|
766 |
-
#: views/b2s/html/footer.php:
|
|
|
767 |
msgid "With Blog2Social Premium you can:"
|
768 |
msgstr "Mit Blog2Social kannst Du:"
|
769 |
|
770 |
-
#: includes/B2S/PostBox.php:148 views/b2s/curation.php:
|
771 |
-
#: views/b2s/
|
772 |
-
#: views/b2s/ship.php:
|
773 |
-
#: views/b2s/html/footer.php:
|
774 |
-
#: views/b2s/html/footer.php:
|
775 |
-
#: views/b2s/html/footer.php:
|
776 |
-
#: views/b2s/html/header.php:325
|
777 |
msgid "Post on pages and groups"
|
778 |
msgstr "Poste auf Seiten und in Gruppen"
|
779 |
|
780 |
-
#: includes/B2S/PostBox.php:149 views/b2s/curation.php:
|
781 |
-
#: views/b2s/
|
782 |
-
#: views/b2s/ship.php:
|
783 |
-
#: views/b2s/html/footer.php:
|
784 |
-
#: views/b2s/html/footer.php:
|
785 |
-
#: views/b2s/html/footer.php:
|
|
|
786 |
msgid "Share on multiple profiles, pages and groups"
|
787 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
788 |
|
789 |
-
#: includes/B2S/PostBox.php:150 views/b2s/curation.php:
|
790 |
-
#: views/b2s/
|
791 |
-
#: views/b2s/ship.php:
|
792 |
-
#: views/b2s/html/footer.php:
|
793 |
-
#: views/b2s/html/footer.php:
|
794 |
-
#: views/b2s/html/footer.php:
|
795 |
-
#: views/b2s/html/footer.php:448
|
796 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
797 |
msgstr ""
|
798 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
799 |
"Aktualisierung posten und zeitversetzt planen"
|
800 |
|
801 |
-
#: includes/B2S/PostBox.php:151 views/b2s/curation.php:
|
802 |
-
#: views/b2s/
|
803 |
-
#: views/b2s/ship.php:
|
804 |
-
#: views/b2s/html/footer.php:
|
805 |
-
#: views/b2s/html/footer.php:
|
806 |
-
#: views/b2s/html/footer.php:
|
|
|
807 |
msgid "Schedule your posts at the best times on each network"
|
808 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
809 |
|
810 |
-
#: includes/B2S/PostBox.php:152 views/b2s/curation.php:
|
811 |
-
#: views/b2s/
|
812 |
-
#: views/b2s/ship.php:
|
813 |
-
#: views/b2s/html/footer.php:
|
814 |
-
#: views/b2s/html/footer.php:
|
815 |
-
#: views/b2s/html/footer.php:
|
|
|
816 |
msgid ""
|
817 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
818 |
"social media posts"
|
819 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
820 |
|
821 |
-
#: includes/B2S/PostBox.php:153 views/b2s/curation.php:
|
822 |
-
#: views/b2s/
|
823 |
-
#: views/b2s/ship.php:
|
824 |
-
#: views/b2s/html/footer.php:
|
825 |
-
#: views/b2s/html/footer.php:
|
826 |
-
#: views/b2s/html/footer.php:
|
|
|
827 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
828 |
msgstr ""
|
829 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
830 |
"oder nach einem regelmäßigen Muster"
|
831 |
|
832 |
-
#: includes/B2S/PostBox.php:154 views/b2s/curation.php:
|
833 |
-
#: views/b2s/
|
834 |
-
#: views/b2s/ship.php:
|
835 |
-
#: views/b2s/html/footer.php:
|
836 |
-
#: views/b2s/html/footer.php:
|
837 |
-
#: views/b2s/html/footer.php:
|
|
|
838 |
msgid "Schedule and re-share old posts"
|
839 |
msgstr "Plane und teile alte Beiträge"
|
840 |
|
841 |
-
#: includes/B2S/PostBox.php:155 views/b2s/curation.php:
|
842 |
-
#: views/b2s/
|
843 |
-
#: views/b2s/ship.php:
|
844 |
-
#: views/b2s/html/footer.php:
|
845 |
-
#: views/b2s/html/footer.php:
|
846 |
-
#: views/b2s/html/footer.php:
|
847 |
-
#: views/b2s/html/footer.php:453
|
848 |
msgid "Select link format or image format for your posts"
|
849 |
msgstr ""
|
850 |
"Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
851 |
|
852 |
-
#: includes/B2S/PostBox.php:156 views/b2s/curation.php:
|
853 |
-
#: views/b2s/
|
854 |
-
#: views/b2s/ship.php:
|
855 |
-
#: views/b2s/html/footer.php:
|
856 |
-
#: views/b2s/html/footer.php:
|
857 |
-
#: views/b2s/html/footer.php:
|
858 |
-
#: views/b2s/html/footer.php:454
|
859 |
msgid "Select individual images per post"
|
860 |
msgstr ""
|
861 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
862 |
|
863 |
-
#: includes/B2S/PostBox.php:157 views/b2s/curation.php:
|
864 |
-
#: views/b2s/
|
865 |
-
#: views/b2s/ship.php:
|
866 |
-
#: views/b2s/html/footer.php:
|
867 |
-
#: views/b2s/html/footer.php:
|
868 |
-
#: views/b2s/html/footer.php:
|
|
|
869 |
msgid ""
|
870 |
"Reporting & calendar: keep track of your published and scheduled social "
|
871 |
"media posts"
|
@@ -873,22 +951,24 @@ msgstr ""
|
|
873 |
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
874 |
"Media Beiträge"
|
875 |
|
876 |
-
#: includes/B2S/PostBox.php:159 views/b2s/curation.php:
|
877 |
-
#: views/b2s/
|
878 |
-
#: views/b2s/ship.php:
|
879 |
-
#: views/b2s/html/footer.php:
|
880 |
-
#: views/b2s/html/footer.php:
|
881 |
-
#: views/b2s/html/footer.php:
|
|
|
882 |
msgid "Upgrade to SMART and above"
|
883 |
msgstr "Upgrade auf SMART und höher"
|
884 |
|
885 |
-
#: includes/B2S/PostBox.php:161 views/b2s/curation.php:
|
886 |
-
#: views/b2s/
|
887 |
-
#: views/b2s/ship.php:
|
888 |
-
#: views/b2s/html/footer.php:
|
889 |
-
#: views/b2s/html/footer.php:
|
890 |
-
#: views/b2s/html/footer.php:
|
891 |
-
#: views/b2s/html/footer.php:
|
|
|
892 |
#, php-format
|
893 |
msgid ""
|
894 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
@@ -898,11 +978,11 @@ msgstr ""
|
|
898 |
"Testversion von Blog2Social Premium</a> (keine Zahlungsinformationen "
|
899 |
"erforderlich)"
|
900 |
|
901 |
-
#: includes/B2S/PostBox.php:174 includes/B2S/Curation/View.php:
|
902 |
msgid "Select network collection:"
|
903 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
904 |
|
905 |
-
#: includes/B2S/PostBox.php:185 includes/B2S/Curation/View.php:
|
906 |
msgid "Select Twitter profile:"
|
907 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
908 |
|
@@ -914,7 +994,7 @@ msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
|
914 |
msgid "immediately after publishing"
|
915 |
msgstr "sofort nach Veröffentlichung"
|
916 |
|
917 |
-
#: includes/B2S/PostBox.php:220 includes/B2S/Curation/View.php:
|
918 |
msgid "at scheduled times"
|
919 |
msgstr "zu geplanten Zeiten"
|
920 |
|
@@ -934,7 +1014,7 @@ msgstr "Upgrade auf PRO"
|
|
934 |
msgid "Select date:"
|
935 |
msgstr "Datum auswählen:"
|
936 |
|
937 |
-
#: includes/B2S/PostBox.php:231 includes/B2S/Ship/Item.php:
|
938 |
msgid "show calendar"
|
939 |
msgstr "Planungskalender anzeigen"
|
940 |
|
@@ -969,24 +1049,24 @@ msgstr ""
|
|
969 |
msgid "Get the Blog2Social Browser Extension"
|
970 |
msgstr "Blog2Social Browser Erweiterung"
|
971 |
|
972 |
-
#: views/b2s/curation.draft.php:
|
973 |
msgid "Delete Draft"
|
974 |
msgstr "Entwurf löschen"
|
975 |
|
976 |
-
#: views/b2s/curation.draft.php:
|
977 |
msgid "Are you sure you want to delete this draft?"
|
978 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
979 |
|
980 |
-
#: views/b2s/curation.draft.php:
|
981 |
#: views/b2s/network.php:106 views/b2s/post.approve.php:91
|
982 |
#: views/b2s/post.approve.php:108 views/b2s/post.draft.php:80
|
983 |
#: views/b2s/post.notice.php:78 views/b2s/post.publish.php:78
|
984 |
-
#: views/b2s/post.sched.php:92 views/b2s/ship.php:
|
985 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
986 |
msgid "NO"
|
987 |
msgstr "NEIN"
|
988 |
|
989 |
-
#: views/b2s/curation.draft.php:
|
990 |
#: views/b2s/network.php:170 views/b2s/post.approve.php:92
|
991 |
#: views/b2s/post.draft.php:81 views/b2s/post.notice.php:79
|
992 |
#: views/b2s/post.publish.php:79 views/b2s/post.sched.php:93
|
@@ -994,11 +1074,11 @@ msgstr "NEIN"
|
|
994 |
msgid "YES, delete"
|
995 |
msgstr "Ja, löschen"
|
996 |
|
997 |
-
#: views/b2s/curation.php:
|
998 |
msgid "No link preview available. Please check your link."
|
999 |
msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
|
1000 |
|
1001 |
-
#: views/b2s/curation.php:
|
1002 |
msgid ""
|
1003 |
"No connected networks. Please make sure to connect at least one social media "
|
1004 |
"account."
|
@@ -1007,69 +1087,109 @@ msgstr ""
|
|
1007 |
"mindestens einen Social Media Account in Blog2Social unter Netzwerke "
|
1008 |
"verbunden hast."
|
1009 |
|
1010 |
-
#: views/b2s/curation.php:
|
1011 |
msgid "Invalid data. Please check your data."
|
1012 |
msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
1013 |
|
1014 |
-
#: views/b2s/curation.php:
|
1015 |
msgid "Saved as draft."
|
1016 |
msgstr "Als Entwurf gespeichert."
|
1017 |
|
1018 |
-
#: views/b2s/curation.php:45
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1019 |
msgid "Enter a link you want share on your social media channels"
|
1020 |
msgstr ""
|
1021 |
"Füge einen Link ein, den Du auf Deinen Social Media Kanälen teilen möchtest"
|
1022 |
|
1023 |
-
#: views/b2s/curation.php:
|
1024 |
msgid "Please enter a valid link"
|
1025 |
msgstr "Bitte gib einen gültigen Link ein"
|
1026 |
|
1027 |
-
#: views/b2s/curation.php:
|
1028 |
msgid "Enter link"
|
1029 |
msgstr "Link eingeben"
|
1030 |
|
1031 |
-
#: views/b2s/curation.php:
|
1032 |
msgid "continue"
|
1033 |
msgstr "weiter"
|
1034 |
|
1035 |
-
#: views/b2s/curation.php:
|
1036 |
-
|
1037 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1038 |
|
1039 |
-
#: views/b2s/curation.php:
|
1040 |
-
|
1041 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1042 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1043 |
msgid "published"
|
1044 |
msgstr "veröffentlicht"
|
1045 |
|
1046 |
-
#: views/b2s/curation.php:
|
1047 |
-
#: views/b2s/ship.php:
|
1048 |
msgid "Do you want to mark this post as published ?"
|
1049 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1050 |
|
1051 |
-
#: views/b2s/curation.php:
|
1052 |
-
#: views/b2s/ship.php:
|
1053 |
msgid "YES"
|
1054 |
msgstr "JA"
|
1055 |
|
1056 |
-
#: views/b2s/curation.php:
|
1057 |
-
#: views/b2s/ship.php:
|
1058 |
msgid "Need to schedule your posts?"
|
1059 |
msgstr "Du möchtest Deine Beiträge planen?"
|
1060 |
|
1061 |
-
#: views/b2s/curation.php:
|
1062 |
-
#: views/b2s/ship.php:
|
1063 |
msgid "Blog2Social Premium covers everything you need."
|
1064 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1065 |
|
1066 |
-
#: views/b2s/curation.php:
|
1067 |
-
#: views/b2s/ship.php:
|
1068 |
msgid "Schedule for specific dates"
|
1069 |
msgstr "Für bestimmte Termine planen"
|
1070 |
|
1071 |
-
#: views/b2s/curation.php:
|
1072 |
-
#: views/b2s/ship.php:
|
1073 |
msgid ""
|
1074 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
1075 |
"desired date and you are ready to go!"
|
@@ -1077,13 +1197,13 @@ msgstr ""
|
|
1077 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
1078 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
1079 |
|
1080 |
-
#: views/b2s/curation.php:
|
1081 |
-
#: views/b2s/ship.php:
|
1082 |
msgid "Schedule post recurrently"
|
1083 |
msgstr "Beitrag mehrfach planen"
|
1084 |
|
1085 |
-
#: views/b2s/curation.php:
|
1086 |
-
#: views/b2s/ship.php:
|
1087 |
msgid ""
|
1088 |
"You have evergreen content you want to re-share from time to time in your "
|
1089 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
@@ -1093,13 +1213,13 @@ msgstr ""
|
|
1093 |
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
1094 |
"wiederkehrenden Rhythmus"
|
1095 |
|
1096 |
-
#: views/b2s/curation.php:
|
1097 |
-
#: views/b2s/ship.php:
|
1098 |
msgid "Best Time Scheduler"
|
1099 |
msgstr "Beste Zeiten Manager"
|
1100 |
|
1101 |
-
#: views/b2s/curation.php:
|
1102 |
-
#: views/b2s/ship.php:
|
1103 |
msgid ""
|
1104 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
1105 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -1112,6 +1232,24 @@ msgstr ""
|
|
1112 |
"Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
|
1113 |
"Deiner Posts."
|
1114 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1115 |
#: views/b2s/dashboard.php:17
|
1116 |
msgid "What's New"
|
1117 |
msgstr "Das ist neu"
|
@@ -1133,9 +1271,9 @@ msgid "Follow us"
|
|
1133 |
msgstr "Folge uns"
|
1134 |
|
1135 |
#: views/b2s/network.php:24 views/b2s/network.php:25
|
1136 |
-
#: views/b2s/post.calendar.php:
|
1137 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1138 |
-
#: views/b2s/html/post.navbar.php:
|
1139 |
msgid "filter"
|
1140 |
msgstr "Filter"
|
1141 |
|
@@ -1149,7 +1287,7 @@ msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
|
1149 |
|
1150 |
#: views/b2s/network.php:34 includes/B2S/Network/Item.php:150
|
1151 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:158
|
1152 |
-
#: includes/B2S/Ship/Image.php:
|
1153 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:41
|
1154 |
msgid "PRO"
|
1155 |
msgstr "PRO"
|
@@ -1158,14 +1296,14 @@ msgstr "PRO"
|
|
1158 |
msgid "Delete"
|
1159 |
msgstr "Löschen"
|
1160 |
|
1161 |
-
#: views/b2s/network.php:45 views/b2s/ship.php:
|
1162 |
#: views/b2s/html/footer.php:207
|
1163 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1164 |
msgstr ""
|
1165 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
1166 |
"Manager benutzen?"
|
1167 |
|
1168 |
-
#: views/b2s/network.php:46 views/b2s/ship.php:
|
1169 |
msgid "Load Best Times"
|
1170 |
msgstr "Lade beste Zeiten"
|
1171 |
|
@@ -1209,8 +1347,8 @@ msgstr ""
|
|
1209 |
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
1210 |
"Business Brancheneinträgen zu erweitern."
|
1211 |
|
1212 |
-
#: views/b2s/network.php:127 views/b2s/premium.php:36 views/b2s/ship.php:
|
1213 |
-
#: includes/B2S/Ship/Item.php:
|
1214 |
msgid "Learn more"
|
1215 |
msgstr "Mehr erfahren"
|
1216 |
|
@@ -1283,7 +1421,7 @@ msgstr "modify"
|
|
1283 |
msgid "Advanced Connection Preferences"
|
1284 |
msgstr "Erweiterte Verbindungseinstellungen"
|
1285 |
|
1286 |
-
#: views/b2s/network.php:229 views/b2s/network.php:
|
1287 |
msgid "Move the connection to another network collection."
|
1288 |
msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
1289 |
|
@@ -1292,7 +1430,7 @@ msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
|
1292 |
msgid "An error occured. Please contact our support."
|
1293 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
1294 |
|
1295 |
-
#: views/b2s/network.php:241 views/b2s/network.php:
|
1296 |
msgid "move"
|
1297 |
msgstr "verschieben"
|
1298 |
|
@@ -1300,7 +1438,7 @@ msgstr "verschieben"
|
|
1300 |
msgid "You need at least one network collection"
|
1301 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
1302 |
|
1303 |
-
#: views/b2s/network.php:258 views/b2s/network.php:
|
1304 |
msgid "Assign the connection to other blog users"
|
1305 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
1306 |
|
@@ -1339,11 +1477,19 @@ msgstr ""
|
|
1339 |
"Es sind keine weiteren Benutzer vorhanden, denen die Verbindung zugewiesen "
|
1340 |
"werden kann."
|
1341 |
|
1342 |
-
#: views/b2s/network.php:293 views/b2s/network.php:
|
1343 |
msgid "assign"
|
1344 |
msgstr "zuweisen"
|
1345 |
|
1346 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1347 |
msgid ""
|
1348 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
1349 |
"network collection and assign your social media connections to other blog "
|
@@ -1360,28 +1506,29 @@ msgstr ""
|
|
1360 |
"auf Deinem Social-Media-Profil, Deiner Seite oder Gruppe zu veröffentlichen "
|
1361 |
"oder vorzuplanen."
|
1362 |
|
1363 |
-
#: views/b2s/network.php:
|
1364 |
msgid "Upgrade to Blog2Social Business"
|
1365 |
msgstr "Upgrade auf Blog2Social Business"
|
1366 |
|
1367 |
-
#: views/b2s/network.php:
|
1368 |
msgid "My Profile"
|
1369 |
msgstr "Mein Profil"
|
1370 |
|
1371 |
-
#: views/b2s/network.php:
|
|
|
1372 |
msgid "Edit Post Template"
|
1373 |
msgstr "Beitragsvorlage bearbeiten"
|
1374 |
|
1375 |
-
#: views/b2s/network.php:
|
1376 |
#: includes/B2S/Settings/Item.php:292
|
1377 |
msgid "save"
|
1378 |
msgstr "speichern"
|
1379 |
|
1380 |
-
#: views/b2s/network.php:
|
1381 |
msgid "Instant Caching for Facebook Link Posts"
|
1382 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
1383 |
|
1384 |
-
#: views/b2s/network.php:
|
1385 |
msgid ""
|
1386 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
1387 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -1394,12 +1541,12 @@ msgstr ""
|
|
1394 |
"sicherzustellen, dass Facebook immer die aktuellen Meta Daten Deines "
|
1395 |
"Blogbeitrags zieht."
|
1396 |
|
1397 |
-
#: views/b2s/network.php:
|
1398 |
msgid "Choose your Post Format"
|
1399 |
msgstr "Wähle Dein Postformat "
|
1400 |
|
1401 |
-
#: views/b2s/network.php:
|
1402 |
-
#: views/b2s/network.php:
|
1403 |
msgid ""
|
1404 |
"Decide in which post format you want to post your content: Link post or "
|
1405 |
"image post."
|
@@ -1407,7 +1554,7 @@ msgstr ""
|
|
1407 |
"Entscheide, in welchem Format Du Deine Inhalte veröffentlichen möchtest: "
|
1408 |
"Link-Beitrag oder Bild-Beitrag."
|
1409 |
|
1410 |
-
#: views/b2s/network.php:
|
1411 |
msgid ""
|
1412 |
"Decide in wich form you want to post your Content. Either as image with "
|
1413 |
"frame, or as image cut out."
|
@@ -1415,11 +1562,11 @@ msgstr ""
|
|
1415 |
" Entscheide, in welcher Form Du Deine Inhalte veröffentlichen möchtest. "
|
1416 |
"Entweder als Bild mit Rahmen oder als Bildausschnitt."
|
1417 |
|
1418 |
-
#: views/b2s/network.php:
|
1419 |
msgid "Post Content"
|
1420 |
msgstr "Post-Inhalt"
|
1421 |
|
1422 |
-
#: views/b2s/network.php:
|
1423 |
msgid ""
|
1424 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1425 |
"textarea and customize them as you like."
|
@@ -1427,33 +1574,37 @@ msgstr ""
|
|
1427 |
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
1428 |
"das Textfeld und passe sie nach Deinen Wünschen an."
|
1429 |
|
1430 |
-
#: views/b2s/network.php:
|
1431 |
msgid "Legend"
|
1432 |
msgstr "Legende"
|
1433 |
|
1434 |
-
#: views/b2s/network.php:
|
1435 |
msgid "The title of your post"
|
1436 |
msgstr "Der Titel deines Beitrags."
|
1437 |
|
1438 |
-
#: views/b2s/network.php:
|
1439 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1440 |
msgstr ""
|
1441 |
" Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü deines "
|
1442 |
"Beitrags festgelegt)."
|
1443 |
|
1444 |
-
#: views/b2s/network.php:
|
1445 |
msgid "The content of your post"
|
1446 |
msgstr "Der Inhalt Deines Beitrags."
|
1447 |
|
1448 |
-
#: views/b2s/network.php:
|
1449 |
msgid "The tags you have set in your post."
|
1450 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
1451 |
|
1452 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
1453 |
msgid "Character limit"
|
1454 |
msgstr "Zeichenbegrenzung"
|
1455 |
|
1456 |
-
#: views/b2s/network.php:
|
1457 |
msgid ""
|
1458 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1459 |
"individually. Your text will be shortened after the last comma, period, or "
|
@@ -1463,7 +1614,7 @@ msgstr ""
|
|
1463 |
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1464 |
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1465 |
|
1466 |
-
#: views/b2s/network.php:
|
1467 |
msgid ""
|
1468 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
1469 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
@@ -1473,7 +1624,7 @@ msgstr ""
|
|
1473 |
"einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü "
|
1474 |
"(Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. "
|
1475 |
|
1476 |
-
#: views/b2s/network.php:
|
1477 |
msgid ""
|
1478 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
1479 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
@@ -1487,11 +1638,11 @@ msgstr ""
|
|
1487 |
"und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
|
1488 |
"des jeweiligen Social Networks berücksichtigt."
|
1489 |
|
1490 |
-
#: views/b2s/network.php:
|
1491 |
msgid "Connect with Pinterest"
|
1492 |
msgstr "Mit Pinterest verbinden"
|
1493 |
|
1494 |
-
#: views/b2s/network.php:
|
1495 |
msgid ""
|
1496 |
"Please make sure to use your original Pinterest login data (email and "
|
1497 |
"password). Social Login via Facebook or Google login data will not work here."
|
@@ -1503,12 +1654,12 @@ msgstr ""
|
|
1503 |
"dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
|
1504 |
"stabile Verbindung zu Blog2Social sicherzustellen."
|
1505 |
|
1506 |
-
#: views/b2s/network.php:
|
1507 |
msgid "An error occurred! Please try again."
|
1508 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
1509 |
|
1510 |
-
#: views/b2s/network.php:
|
1511 |
-
#: views/b2s/ship.php:
|
1512 |
#, php-format
|
1513 |
msgid ""
|
1514 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
@@ -1517,11 +1668,11 @@ msgstr ""
|
|
1517 |
"Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
|
1518 |
"href=\"%s\">Upgrade auf Blog2Social Premium</a>"
|
1519 |
|
1520 |
-
#: views/b2s/network.php:
|
1521 |
msgid "Invalid Data! Please try again."
|
1522 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
1523 |
|
1524 |
-
#: views/b2s/network.php:
|
1525 |
msgid ""
|
1526 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
1527 |
"up at least one pinboard to pin on your Pinterest account!"
|
@@ -1529,7 +1680,7 @@ msgstr ""
|
|
1529 |
"Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
|
1530 |
"richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
|
1531 |
|
1532 |
-
#: views/b2s/network.php:
|
1533 |
#, php-format
|
1534 |
msgid ""
|
1535 |
"Login failed. Please check your login data for typos and please check your "
|
@@ -1541,16 +1692,24 @@ msgstr ""
|
|
1541 |
"Authentifizierung für dieses Konto deaktiviert ist: <a target=\"_blank\" "
|
1542 |
"href=\"%s\">%s</a>"
|
1543 |
|
1544 |
-
#: views/b2s/network.php:
|
1545 |
msgid "Pinterest has rejected the connection to your blog"
|
1546 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
1547 |
|
1548 |
-
#: views/b2s/network.php:
|
1549 |
msgid "Please select your currect server location and connect again"
|
1550 |
msgstr ""
|
1551 |
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut"
|
1552 |
|
1553 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1554 |
msgid ""
|
1555 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
1556 |
"on your profile."
|
@@ -1558,30 +1717,30 @@ msgstr ""
|
|
1558 |
"Anmeldung erfolgreich. Bitte bestätige, dass Blog2Social auf Deinem Profil "
|
1559 |
"veröffentlichen darf."
|
1560 |
|
1561 |
-
#: views/b2s/network.php:
|
1562 |
#: views/b2s/html/header.php:331 views/prg/html/form.php:141
|
1563 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1564 |
#: views/prg/html/form.php:220
|
1565 |
msgid "E-Mail"
|
1566 |
msgstr "E-Mail"
|
1567 |
|
1568 |
-
#: views/b2s/network.php:
|
1569 |
msgid "Password"
|
1570 |
msgstr "Passwort"
|
1571 |
|
1572 |
-
#: views/b2s/network.php:
|
1573 |
msgid "Server-Location"
|
1574 |
msgstr "Serverstandort"
|
1575 |
|
1576 |
-
#: views/b2s/network.php:
|
1577 |
msgid "Select Pinboard"
|
1578 |
msgstr "Pinnwand auswählen"
|
1579 |
|
1580 |
-
#: views/b2s/network.php:
|
1581 |
msgid "authorize"
|
1582 |
msgstr "autorisieren"
|
1583 |
|
1584 |
-
#: views/b2s/network.php:
|
1585 |
msgid "confirm"
|
1586 |
msgstr "bestätigen"
|
1587 |
|
@@ -1607,31 +1766,20 @@ msgstr "Sortiere nach Netzwerk"
|
|
1607 |
msgid "show all"
|
1608 |
msgstr "alles anzeigen"
|
1609 |
|
1610 |
-
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:
|
1611 |
-
#: includes/B2S/Post/Filter.php:50 includes/B2S/Post/Item.php:
|
1612 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1613 |
msgid "scheduled"
|
1614 |
msgstr "geplant"
|
1615 |
|
1616 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:
|
1617 |
-
#: includes/B2S/
|
1618 |
-
#: views/b2s/html/footer.php:111
|
1619 |
-
msgid "Link Post"
|
1620 |
-
msgstr "Link-Beitrag"
|
1621 |
-
|
1622 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:181
|
1623 |
-
#: includes/B2S/Settings/Item.php:408 includes/B2S/Settings/Item.php:427
|
1624 |
-
msgid "Image Post"
|
1625 |
-
msgstr "Bild-Beitrag"
|
1626 |
-
|
1627 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:181
|
1628 |
-
#: includes/B2S/Network/Item.php:599 includes/B2S/Network/Item.php:602
|
1629 |
#: includes/B2S/Settings/Item.php:394 views/b2s/html/footer.php:128
|
1630 |
msgid "Image with frame"
|
1631 |
msgstr "Bild mit Rahmen"
|
1632 |
|
1633 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:
|
1634 |
-
#: includes/B2S/Network/Item.php:
|
1635 |
#: includes/B2S/Settings/Item.php:408 views/b2s/html/footer.php:133
|
1636 |
msgid "Image cut out"
|
1637 |
msgstr "Bild zuschneiden"
|
@@ -1640,23 +1788,23 @@ msgstr "Bild zuschneiden"
|
|
1640 |
msgid "add post"
|
1641 |
msgstr "Beitrag hinzufügen"
|
1642 |
|
1643 |
-
#: views/b2s/post.calendar.php:
|
1644 |
-
#: views/b2s/ship.php:
|
1645 |
msgid "Choose your"
|
1646 |
msgstr "Wähle Deinen"
|
1647 |
|
1648 |
-
#: views/b2s/post.calendar.php:
|
1649 |
-
#: views/b2s/ship.php:
|
1650 |
msgid "Post Format"
|
1651 |
msgstr "Postformat"
|
1652 |
|
1653 |
-
#: views/b2s/post.calendar.php:
|
1654 |
-
#: views/b2s/ship.php:
|
1655 |
msgid "for:"
|
1656 |
msgstr "für:"
|
1657 |
|
1658 |
-
#: views/b2s/post.calendar.php:
|
1659 |
-
#: views/b2s/ship.php:
|
1660 |
msgid ""
|
1661 |
"Define the default settings for the custom post format for all of your "
|
1662 |
"Facebook accounts in the Blog2Social settings."
|
@@ -1664,8 +1812,8 @@ msgstr ""
|
|
1664 |
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1665 |
"den Blog2Social Einstellungen."
|
1666 |
|
1667 |
-
#: views/b2s/post.calendar.php:
|
1668 |
-
#: views/b2s/ship.php:
|
1669 |
msgid ""
|
1670 |
"Define the default settings for the custom post format for all of your "
|
1671 |
"Twitter accounts in the Blog2Social settings."
|
@@ -1673,8 +1821,8 @@ msgstr ""
|
|
1673 |
"Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
|
1674 |
"unter den Blog2Social Einstellungen."
|
1675 |
|
1676 |
-
#: views/b2s/post.calendar.php:
|
1677 |
-
#: views/b2s/ship.php:
|
1678 |
msgid ""
|
1679 |
"Define the default settings for the custom post format for all of your "
|
1680 |
"LinkedIn accounts in the Blog2Social settings."
|
@@ -1682,8 +1830,8 @@ msgstr ""
|
|
1682 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1683 |
"unter den Blog2Social Einstellungen."
|
1684 |
|
1685 |
-
#: views/b2s/post.calendar.php:
|
1686 |
-
#: views/b2s/ship.php:
|
1687 |
msgid ""
|
1688 |
"Define the default settings for the custom post format for all of your "
|
1689 |
"Instagram accounts in the Blog2Social settings."
|
@@ -1691,28 +1839,28 @@ msgstr ""
|
|
1691 |
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1692 |
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1693 |
|
1694 |
-
#: views/b2s/post.calendar.php:
|
1695 |
-
#: views/b2s/ship.php:
|
1696 |
msgid "Select image for"
|
1697 |
msgstr "Wähle Bild aus für"
|
1698 |
|
1699 |
-
#: views/b2s/post.calendar.php:
|
1700 |
msgid "What would you like to share?"
|
1701 |
msgstr "Was möchtest Du teilen?"
|
1702 |
|
1703 |
-
#: views/b2s/post.calendar.php:
|
1704 |
msgid "Share content from your blog"
|
1705 |
msgstr "Teile Deine Blogbeiträge"
|
1706 |
|
1707 |
-
#: views/b2s/post.calendar.php:
|
1708 |
msgid "select"
|
1709 |
msgstr "auswählen"
|
1710 |
|
1711 |
-
#: views/b2s/post.calendar.php:
|
1712 |
msgid "Share content from other sources"
|
1713 |
msgstr "Teile Beiträge aus beliebigen Quellen"
|
1714 |
|
1715 |
-
#: views/b2s/post.calendar.php:
|
1716 |
msgid "Select a post"
|
1717 |
msgstr "Wähle einen Beitrag aus"
|
1718 |
|
@@ -1724,6 +1872,10 @@ msgstr "Entwurf löschen"
|
|
1724 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1725 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1726 |
|
|
|
|
|
|
|
|
|
1727 |
#: views/b2s/post.notice.php:69 views/b2s/post.publish.php:69
|
1728 |
#: views/b2s/widgets/posts.php:58
|
1729 |
msgid "Delete entries from the reporting"
|
@@ -1850,7 +2002,7 @@ msgstr ""
|
|
1850 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
1851 |
|
1852 |
#: views/b2s/premium.php:109 views/b2s/settings.php:35
|
1853 |
-
#: includes/B2S/Post/Item.php:
|
1854 |
msgid "Auto-Posting"
|
1855 |
msgstr "Auto-Posting"
|
1856 |
|
@@ -1967,11 +2119,11 @@ msgstr "Allgemein"
|
|
1967 |
msgid "Social Meta Data"
|
1968 |
msgstr "Social Meta Angaben"
|
1969 |
|
1970 |
-
#: views/b2s/settings.php:76 includes/B2S/Ship/Image.php:
|
1971 |
msgid "Select or upload an image from media gallery"
|
1972 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
1973 |
|
1974 |
-
#: views/b2s/settings.php:77 includes/B2S/Ship/Image.php:
|
1975 |
msgid "Use image"
|
1976 |
msgstr "Bild verwenden"
|
1977 |
|
@@ -2047,115 +2199,111 @@ msgstr ""
|
|
2047 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
2048 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
2049 |
|
2050 |
-
#: views/b2s/ship.php:
|
2051 |
-
#: includes/B2S/Post/Item.php:
|
2052 |
msgid "draft"
|
2053 |
msgstr "Entwurf"
|
2054 |
|
2055 |
-
#: views/b2s/ship.php:
|
2056 |
msgid "Social Media Scheduling & Sharing"
|
2057 |
msgstr "Beitrag auf Social Media planen und teilen"
|
2058 |
|
2059 |
-
#: views/b2s/ship.php:
|
2060 |
-
#: includes/B2S/Curation/View.php:
|
2061 |
#: includes/B2S/Settings/Item.php:349 views/prg/html/form.php:26
|
2062 |
#: views/prg/html/form.php:28
|
2063 |
msgid "Title"
|
2064 |
msgstr "Titel"
|
2065 |
|
2066 |
-
#: views/b2s/ship.php:
|
2067 |
msgid "on blog"
|
2068 |
msgstr "auf dem Blog"
|
2069 |
|
2070 |
-
#: views/b2s/ship.php:
|
2071 |
msgid "scroll to bottom"
|
2072 |
msgstr "zum Seitenende"
|
2073 |
|
2074 |
-
#: views/b2s/ship.php:
|
2075 |
msgid "You want to load your time settings?"
|
2076 |
msgstr "Du möchtest Deine Zeiten laden?"
|
2077 |
|
2078 |
-
#: views/b2s/ship.php:
|
2079 |
msgid "Load My Times Settings"
|
2080 |
msgstr "Meine Zeit-Einstellungen laden"
|
2081 |
|
2082 |
-
#: views/b2s/ship.php:
|
2083 |
msgid "Social Accounts"
|
2084 |
msgstr "Social Media Konten"
|
2085 |
|
2086 |
-
#: views/b2s/ship.php:
|
2087 |
msgid "Add more..."
|
2088 |
msgstr "mehr hinzufügen"
|
2089 |
|
2090 |
-
#: views/b2s/ship.php:
|
2091 |
msgid "Profiles | Pages | Groups"
|
2092 |
msgstr "Profile | Seiten | Gruppen"
|
2093 |
|
2094 |
-
#: views/b2s/ship.php:
|
2095 |
msgid "Save network collection"
|
2096 |
msgstr "Netzwerk-Gruppierung speichern"
|
2097 |
|
2098 |
-
#: views/b2s/ship.php:
|
2099 |
msgid "network connected"
|
2100 |
msgstr "Netzwerk verbunden"
|
2101 |
|
2102 |
-
#: views/b2s/ship.php:
|
2103 |
msgid "requires image"
|
2104 |
msgstr "Bild benötigt"
|
2105 |
|
2106 |
-
#: views/b2s/ship.php:
|
2107 |
msgid "refresh authorization"
|
2108 |
msgstr "Autorisierung aktualisieren"
|
2109 |
|
2110 |
-
#: views/b2s/ship.php:
|
2111 |
msgid "change website address"
|
2112 |
msgstr "Webseiten-Adresse ändern"
|
2113 |
|
2114 |
-
#: views/b2s/ship.php:
|
2115 |
msgid "First, connect or select network before posting"
|
2116 |
msgstr ""
|
2117 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2118 |
"Du den Beitrag teilst!"
|
2119 |
|
2120 |
-
#: views/b2s/ship.php:
|
2121 |
msgid "connect"
|
2122 |
msgstr "Jetzt mit Netzwerken verbinden"
|
2123 |
|
2124 |
-
#: views/b2s/ship.php:
|
2125 |
msgid "scroll to top"
|
2126 |
msgstr "zum Seitenanfang"
|
2127 |
|
2128 |
-
#: views/b2s/ship.php:
|
2129 |
-
#: includes/B2S/Curation/View.php:
|
2130 |
msgid "Share"
|
2131 |
msgstr "Teilen"
|
2132 |
|
2133 |
-
#: views/b2s/ship.php:
|
2134 |
-
#: includes/B2S/Curation/View.php:
|
2135 |
msgid "Save as Draft"
|
2136 |
msgstr "als Entwurf speichern"
|
2137 |
|
2138 |
-
#: views/b2s/ship.php:
|
2139 |
msgid "Time zone"
|
2140 |
msgstr "Zeitzone"
|
2141 |
|
2142 |
-
#: views/b2s/ship.php:
|
2143 |
-
msgid "Re-share this post"
|
2144 |
-
msgstr "Diesen Beitrag nochmal teilen"
|
2145 |
-
|
2146 |
-
#: views/b2s/ship.php:262
|
2147 |
msgid "Share new post on Social Media"
|
2148 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
2149 |
|
2150 |
-
#: views/b2s/ship.php:
|
2151 |
msgid "Connect for"
|
2152 |
msgstr "Netzwerke verbinden für"
|
2153 |
|
2154 |
-
#: views/b2s/ship.php:
|
2155 |
msgid "Re-share this Post"
|
2156 |
msgstr "Diesen Beitrag nochmal teilen"
|
2157 |
|
2158 |
-
#: views/b2s/ship.php:
|
2159 |
msgid ""
|
2160 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
2161 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -2181,15 +2329,15 @@ msgstr ""
|
|
2181 |
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
2182 |
"kannst. "
|
2183 |
|
2184 |
-
#: views/b2s/ship.php:
|
2185 |
msgid "You want re-share your blog post?"
|
2186 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
2187 |
|
2188 |
-
#: views/b2s/ship.php:
|
2189 |
msgid "Save Network Settings"
|
2190 |
msgstr "Netzwerkeinstellungen speichern"
|
2191 |
|
2192 |
-
#: views/b2s/ship.php:
|
2193 |
msgid ""
|
2194 |
"You can save your current network settings as \"Standard\" network settings "
|
2195 |
"for any future sharing activities or as a \"Profile\" to choose from "
|
@@ -2221,32 +2369,32 @@ msgstr ""
|
|
2221 |
"zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
|
2222 |
"variieren kannst. "
|
2223 |
|
2224 |
-
#: views/b2s/ship.php:
|
2225 |
msgid "Your blog post is not yet published on your Wordpress!"
|
2226 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
2227 |
|
2228 |
-
#: views/b2s/ship.php:
|
2229 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
2230 |
msgstr ""
|
2231 |
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
2232 |
|
2233 |
-
#: views/b2s/ship.php:
|
2234 |
msgid "Schedule your post"
|
2235 |
msgstr "Beitrag planen"
|
2236 |
|
2237 |
-
#: views/b2s/ship.php:
|
2238 |
msgid "Ignore & share"
|
2239 |
msgstr "Ignorieren & teilen"
|
2240 |
|
2241 |
-
#: views/b2s/ship.php:
|
2242 |
msgid "Important infomations about XING groups"
|
2243 |
msgstr "Wichtige Information zu XING-Gruppen"
|
2244 |
|
2245 |
-
#: views/b2s/ship.php:
|
2246 |
msgid "Overwrite Draft"
|
2247 |
msgstr "Entwurf überschreiben"
|
2248 |
|
2249 |
-
#: views/b2s/ship.php:
|
2250 |
msgid ""
|
2251 |
"There is already a saved draft for this WordPress post or page. If you save "
|
2252 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
@@ -2257,15 +2405,15 @@ msgstr ""
|
|
2257 |
"damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
|
2258 |
"möchtest?"
|
2259 |
|
2260 |
-
#: views/b2s/ship.php:
|
2261 |
msgid "add Schedule"
|
2262 |
msgstr "Zeitplan hinzufügen"
|
2263 |
|
2264 |
-
#: views/b2s/ship.php:
|
2265 |
msgid "Give me more information"
|
2266 |
msgstr "Erhalte mehr Infomationen"
|
2267 |
|
2268 |
-
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:
|
2269 |
#: includes/B2S/Ship/Save.php:438
|
2270 |
msgid "FAQ"
|
2271 |
msgstr "FAQ"
|
@@ -2274,11 +2422,6 @@ msgstr "FAQ"
|
|
2274 |
msgid "Troubleshooting-Tool"
|
2275 |
msgstr "Problemanalyse-Tool"
|
2276 |
|
2277 |
-
#: views/b2s/support.php:19 views/b2s/support.php:22
|
2278 |
-
#: views/b2s/html/post.navbar.php:9
|
2279 |
-
msgid "NEW"
|
2280 |
-
msgstr "Neu"
|
2281 |
-
|
2282 |
#: views/b2s/support.php:22
|
2283 |
msgid "Sharing-Debugger"
|
2284 |
msgstr "Sharing-Debugger"
|
@@ -2508,25 +2651,21 @@ msgstr ""
|
|
2508 |
msgid "Yes, I accept"
|
2509 |
msgstr "Ja,einverstanden"
|
2510 |
|
2511 |
-
#: includes/B2S/Curation/View.php:
|
2512 |
-
msgid "Write something..."
|
2513 |
-
msgstr "Schreibe etwas..."
|
2514 |
-
|
2515 |
-
#: includes/B2S/Curation/View.php:59
|
2516 |
msgid "Share your post"
|
2517 |
msgstr "Teile Deinen Post"
|
2518 |
|
2519 |
-
#: includes/B2S/Curation/View.php:
|
2520 |
msgid "immediately"
|
2521 |
msgstr "sofort"
|
2522 |
|
2523 |
-
#: includes/B2S/Curation/View.php:
|
2524 |
-
#: includes/B2S/Ship/Item.php:
|
2525 |
#: views/b2s/partials/post-edit-modal.php:65
|
2526 |
msgid "Date"
|
2527 |
msgstr "Startdatum"
|
2528 |
|
2529 |
-
#: includes/B2S/Curation/View.php:
|
2530 |
msgid "Customize & Schedule"
|
2531 |
msgstr "Anpassen & Planen"
|
2532 |
|
@@ -2538,7 +2677,7 @@ msgstr "Standard"
|
|
2538 |
msgid "Show all"
|
2539 |
msgstr "alle anzeigen"
|
2540 |
|
2541 |
-
#: includes/B2S/Network/Item.php:62 includes/B2S/Network/Item.php:
|
2542 |
msgid "My profile"
|
2543 |
msgstr "Mein Profil"
|
2544 |
|
@@ -2558,7 +2697,7 @@ msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
|
2558 |
msgid "You want to connect a network page?"
|
2559 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
2560 |
|
2561 |
-
#: includes/B2S/Network/Item.php:157 includes/B2S/Network/Item.php:
|
2562 |
#: includes/B2S/Ship/Portale.php:31
|
2563 |
msgid "Publication"
|
2564 |
msgstr "Publication"
|
@@ -2567,110 +2706,120 @@ msgstr "Publication"
|
|
2567 |
msgid "You want to connect a social media group?"
|
2568 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
2569 |
|
2570 |
-
#: includes/B2S/Network/Item.php:
|
2571 |
-
|
2572 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2573 |
|
2574 |
-
#: includes/B2S/Network/Item.php:
|
2575 |
msgid "Connections"
|
2576 |
msgstr "Verbindungen"
|
2577 |
|
2578 |
-
#: includes/B2S/Network/Item.php:
|
2579 |
msgid "Best Time Manager"
|
2580 |
msgstr "Best Time Manager"
|
2581 |
|
2582 |
-
#: includes/B2S/Network/Item.php:
|
2583 |
-
#: includes/B2S/Network/Item.php:
|
2584 |
msgid "To reactivate this connection,"
|
2585 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
2586 |
|
2587 |
-
#: includes/B2S/Network/Item.php:
|
2588 |
-
#: includes/B2S/Network/Item.php:
|
2589 |
msgid "please upgrade"
|
2590 |
msgstr "Bitte upgraden"
|
2591 |
|
2592 |
-
#: includes/B2S/Network/Item.php:
|
2593 |
-
#: includes/B2S/Network/Item.php:
|
2594 |
msgid "Authorization is interrupted since"
|
2595 |
msgstr "Autorisierung ist unterbrochen seit"
|
2596 |
|
2597 |
-
#: includes/B2S/Network/Item.php:
|
2598 |
-
#: includes/B2S/Network/Item.php:
|
2599 |
msgid "Assigned by"
|
2600 |
msgstr "Zugewiesen von"
|
2601 |
|
2602 |
-
#: includes/B2S/Network/Item.php:
|
2603 |
-
#: includes/B2S/Network/Item.php:
|
2604 |
msgid "Days"
|
2605 |
msgstr "Tage"
|
2606 |
|
2607 |
-
#: includes/B2S/Network/Item.php:
|
2608 |
msgid "Employer Branding"
|
2609 |
msgstr "Employer Branding"
|
2610 |
|
2611 |
-
#: includes/B2S/Network/Item.php:
|
2612 |
msgid "Connection currently assigned to"
|
2613 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
2614 |
|
2615 |
-
#: includes/B2S/Network/Item.php:
|
2616 |
msgid "Successfully saved"
|
2617 |
msgstr "Erfolgreich gespeichert"
|
2618 |
|
2619 |
-
#: includes/B2S/Network/Item.php:
|
2620 |
msgid "Failed to save"
|
2621 |
msgstr "Speichern fehlgeschlagen"
|
2622 |
|
2623 |
-
#: includes/B2S/Network/Item.php:
|
2624 |
msgid "Failed to load the default template"
|
2625 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
2626 |
|
2627 |
-
#: includes/B2S/Network/Item.php:
|
2628 |
-
msgid ""
|
2629 |
-
"Upgrade to Blog2Social Smart
|
2630 |
-
"
|
2631 |
-
"
|
2632 |
-
"
|
2633 |
-
"
|
2634 |
-
"
|
2635 |
-
|
2636 |
-
|
2637 |
-
"
|
2638 |
-
"
|
2639 |
-
"
|
2640 |
-
"
|
2641 |
-
"
|
2642 |
-
"
|
2643 |
-
|
2644 |
-
|
|
|
|
|
|
|
2645 |
msgid "Upgrade to Blog2Social Smart"
|
2646 |
msgstr "Upgrade auf Blog2Social Smart"
|
2647 |
|
2648 |
-
#: includes/B2S/Network/Item.php:
|
2649 |
msgid "Activate Instant Caching"
|
2650 |
msgstr "Instant Caching aktivieren"
|
2651 |
|
2652 |
-
#: includes/B2S/Network/Item.php:
|
2653 |
msgid "Format"
|
2654 |
msgstr "Format"
|
2655 |
|
2656 |
-
#: includes/B2S/Network/Item.php:
|
2657 |
msgid "Load default settings"
|
2658 |
msgstr "Lade Standardeinstellungen"
|
2659 |
|
2660 |
-
#: includes/B2S/Network/Item.php:
|
2661 |
-
#: includes/B2S/Ship/Item.php:
|
2662 |
msgid "Link"
|
2663 |
msgstr "Link"
|
2664 |
|
2665 |
-
#: includes/B2S/Network/Item.php:
|
2666 |
msgid "Image"
|
2667 |
msgstr "Bild"
|
2668 |
|
2669 |
-
#: includes/B2S/Network/Item.php:
|
2670 |
msgid "Content"
|
2671 |
msgstr "Inhalt"
|
2672 |
|
2673 |
-
#: includes/B2S/Network/Item.php:
|
2674 |
msgid ""
|
2675 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2676 |
"in your post."
|
@@ -2678,34 +2827,34 @@ msgstr ""
|
|
2678 |
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
2679 |
"Hashtags in Deinem Beitrag."
|
2680 |
|
2681 |
-
#: includes/B2S/Network/Item.php:
|
2682 |
msgid "clear"
|
2683 |
msgstr "löschen"
|
2684 |
|
2685 |
-
#: includes/B2S/Network/Item.php:
|
2686 |
msgid "The link will be added automatically at the end of the post."
|
2687 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
2688 |
|
2689 |
-
#: includes/B2S/Network/Item.php:
|
2690 |
msgid "Network limit"
|
2691 |
msgstr "Netzwerkbegrenzung"
|
2692 |
|
2693 |
-
#: includes/B2S/Network/Item.php:
|
2694 |
-
#: includes/B2S/Network/Item.php:
|
2695 |
-
#: includes/B2S/Ship/Item.php:
|
2696 |
-
#: includes/B2S/Ship/Item.php:
|
2697 |
-
#: includes/B2S/Ship/Item.php:
|
2698 |
-
#: includes/B2S/Ship/Item.php:
|
2699 |
msgid "characters"
|
2700 |
msgstr "Zeichen"
|
2701 |
|
2702 |
-
#: includes/B2S/Network/Item.php:
|
2703 |
msgid "recommended length"
|
2704 |
msgstr "Empfohlene Länge"
|
2705 |
|
2706 |
-
#: includes/B2S/Network/Item.php:
|
2707 |
-
#: includes/B2S/Network/Item.php:
|
2708 |
-
#: includes/B2S/Network/Item.php:
|
2709 |
msgid "Preview"
|
2710 |
msgstr "Vorschau"
|
2711 |
|
@@ -2769,156 +2918,158 @@ msgstr "ausgewähltes Datum"
|
|
2769 |
msgid "scheduled post(s)"
|
2770 |
msgstr "geplante Beiträge"
|
2771 |
|
2772 |
-
#: includes/B2S/Post/Item.php:
|
2773 |
-
msgid "You have
|
2774 |
-
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
2775 |
-
|
2776 |
-
#: includes/B2S/Post/Item.php:279
|
2777 |
-
msgid "You have no drafts saved."
|
2778 |
msgstr "Du hast keine Entwürfe gespeichert."
|
2779 |
|
2780 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
2781 |
msgid "curated post"
|
2782 |
msgstr "kuratierter Beitrag"
|
2783 |
|
2784 |
-
#: includes/B2S/Post/Item.php:
|
2785 |
msgid "last shared on social media"
|
2786 |
msgstr "zuletzt auf Social Media geteilt"
|
2787 |
|
2788 |
-
#: includes/B2S/Post/Item.php:
|
2789 |
-
#: includes/B2S/Post/Item.php:
|
|
|
2790 |
msgid "Share on Social Media"
|
2791 |
msgstr "auf Social Media teilen"
|
2792 |
|
2793 |
-
#: includes/B2S/Post/Item.php:
|
2794 |
msgid "load Draft"
|
2795 |
msgstr "Entwurf aufrufen"
|
2796 |
|
2797 |
-
#: includes/B2S/Post/Item.php:
|
2798 |
-
#: includes/B2S/Post/Item.php:
|
|
|
2799 |
msgid "Author"
|
2800 |
msgstr "Autor"
|
2801 |
|
2802 |
-
#: includes/B2S/Post/Item.php:
|
2803 |
-
#: includes/B2S/Post/Item.php:
|
2804 |
msgid "Details"
|
2805 |
msgstr "Details"
|
2806 |
|
2807 |
-
#: includes/B2S/Post/Item.php:
|
2808 |
msgid "shared social media posts"
|
2809 |
msgstr "geteilte Beiträge"
|
2810 |
|
2811 |
-
#: includes/B2S/Post/Item.php:
|
2812 |
#, php-format
|
2813 |
msgid "latest share by %s"
|
2814 |
msgstr "zuletzt von %s geteilt"
|
2815 |
|
2816 |
-
#: includes/B2S/Post/Item.php:
|
2817 |
msgid "scheduled social media posts"
|
2818 |
msgstr "geplante Beiträge"
|
2819 |
|
2820 |
-
#: includes/B2S/Post/Item.php:
|
2821 |
#, php-format
|
2822 |
msgid "next share by %s"
|
2823 |
msgstr "wird als nächstes von %s geteilt"
|
2824 |
|
2825 |
-
#: includes/B2S/Post/Item.php:
|
2826 |
msgid "social media posts ready to be shared"
|
2827 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
2828 |
|
2829 |
-
#: includes/B2S/Post/Item.php:
|
2830 |
msgid "via Browser-Extension"
|
2831 |
msgstr "via Browser-Extension"
|
2832 |
|
2833 |
-
#: includes/B2S/Post/Item.php:
|
2834 |
msgid "saved"
|
2835 |
msgstr "gespeichert"
|
2836 |
|
2837 |
-
#: includes/B2S/Post/Item.php:
|
2838 |
msgid "last saved"
|
2839 |
msgstr "zuletzt gespeichert:"
|
2840 |
|
2841 |
-
#: includes/B2S/Post/Item.php:
|
2842 |
#: includes/B2S/Ship/Save.php:427
|
2843 |
msgid "Retweet"
|
2844 |
msgstr "Retweet"
|
2845 |
|
2846 |
-
#: includes/B2S/Post/Item.php:
|
2847 |
-
#: includes/B2S/Post/Item.php:
|
2848 |
msgid "select all"
|
2849 |
msgstr "alle auswählen"
|
2850 |
|
2851 |
-
#: includes/B2S/Post/Item.php:
|
2852 |
msgid "show"
|
2853 |
msgstr "ansehen"
|
2854 |
|
2855 |
-
#: includes/B2S/Post/Item.php:
|
2856 |
msgid "Please see"
|
2857 |
msgstr "siehe"
|
2858 |
|
2859 |
-
#: includes/B2S/Post/Item.php:
|
2860 |
#, php-format
|
2861 |
msgid "sharing in progress by %s"
|
2862 |
msgstr "wird gerade von %s geteilt"
|
2863 |
|
2864 |
-
#: includes/B2S/Post/Item.php:
|
2865 |
#, php-format
|
2866 |
msgid "shared by %s"
|
2867 |
msgstr "von %s geteilt"
|
2868 |
|
2869 |
-
#: includes/B2S/Post/Item.php:
|
2870 |
msgid "You want to delete a publish post entry?"
|
2871 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
2872 |
|
2873 |
-
#: includes/B2S/Post/Item.php:
|
2874 |
msgid "delete from reporting"
|
2875 |
msgstr "aus Reporting löschen"
|
2876 |
|
2877 |
-
#: includes/B2S/Post/Item.php:
|
2878 |
msgid "re-share"
|
2879 |
msgstr "erneut teilen"
|
2880 |
|
2881 |
-
#: includes/B2S/Post/Item.php:
|
2882 |
#, php-format
|
2883 |
msgid "is waiting to shared by %s"
|
2884 |
msgstr "wartet darauf von %s geteilt zu werden"
|
2885 |
|
2886 |
-
#: includes/B2S/Post/Item.php:
|
2887 |
msgid "share"
|
2888 |
msgstr "teilen"
|
2889 |
|
2890 |
-
#: includes/B2S/Post/Item.php:
|
2891 |
msgid "You want to delete your Social Media post?"
|
2892 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
2893 |
|
2894 |
-
#: includes/B2S/Post/Item.php:
|
2895 |
#, php-format
|
2896 |
msgid "last modified by %s"
|
2897 |
msgstr "zuletzt von %s bearbeitet"
|
2898 |
|
2899 |
-
#: includes/B2S/Post/Item.php:
|
2900 |
msgid "is processed by the network"
|
2901 |
msgstr "wird vom Netzwerk verarbeitet"
|
2902 |
|
2903 |
-
#: includes/B2S/Post/Item.php:
|
2904 |
#, php-format
|
2905 |
msgid "scheduled by %s"
|
2906 |
msgstr "von %s vorgeplant "
|
2907 |
|
2908 |
-
#: includes/B2S/Post/Item.php:
|
2909 |
msgid "You want to edit your scheduled post?"
|
2910 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
2911 |
|
2912 |
-
#: includes/B2S/Post/Item.php:
|
2913 |
msgid "edit"
|
2914 |
msgstr "edit"
|
2915 |
|
2916 |
-
#: includes/B2S/Post/Item.php:
|
2917 |
msgid "delete scheduling"
|
2918 |
msgstr "Planung löschen"
|
2919 |
|
2920 |
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82
|
2921 |
-
#: includes/B2S/Ship/Item.php:
|
2922 |
msgid "Account"
|
2923 |
msgstr "Konto"
|
2924 |
|
@@ -2946,7 +3097,7 @@ msgstr "Shortcodes"
|
|
2946 |
msgid "allow shortcodes in my post"
|
2947 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
2948 |
|
2949 |
-
#: includes/B2S/Settings/Item.php:88 includes/B2S/Ship/Item.php:
|
2950 |
msgid "Hashtags"
|
2951 |
msgstr "Hashtags"
|
2952 |
|
@@ -3162,7 +3313,7 @@ msgid "Image URL"
|
|
3162 |
msgstr "Bild Url"
|
3163 |
|
3164 |
#: includes/B2S/Settings/Item.php:332 includes/B2S/Settings/Item.php:353
|
3165 |
-
#: includes/B2S/Ship/Image.php:
|
3166 |
msgid "Image upload / Media Gallery"
|
3167 |
msgstr "Bild hochladen / Mediathek"
|
3168 |
|
@@ -3338,77 +3489,72 @@ msgstr ""
|
|
3338 |
msgid "No images are included in your post."
|
3339 |
msgstr "In dem Beitrag sind keine Bilder hinterlegt"
|
3340 |
|
3341 |
-
#: includes/B2S/Ship/Image.php:
|
3342 |
msgid "Apply image for all posts"
|
3343 |
msgstr "Bild für alle Posts übernehmen"
|
3344 |
|
3345 |
-
#: includes/B2S/Ship/Image.php:
|
|
|
|
|
|
|
|
|
3346 |
msgid "Apply image for this post"
|
3347 |
msgstr "Bild für diesen Post übernehmen"
|
3348 |
|
3349 |
-
#: includes/B2S/Ship/Image.php:
|
3350 |
msgid "Apply image for all og-meta networks"
|
3351 |
msgstr "Bild für alle og-meta-Netzwerke anwenden"
|
3352 |
|
3353 |
-
#: includes/B2S/Ship/Item.php:
|
3354 |
msgid "Network does not support image for profiles"
|
3355 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
3356 |
|
3357 |
-
#: includes/B2S/Ship/Item.php:
|
3358 |
msgid "Network defines image by link"
|
3359 |
msgstr "Netzwerk wählt selber das Bild aus"
|
3360 |
|
3361 |
-
#: includes/B2S/Ship/Item.php:
|
3362 |
msgid "Supported HTML tags"
|
3363 |
msgstr "Erlaubte HTML-Elemente"
|
3364 |
|
3365 |
-
#: includes/B2S/Ship/Item.php:
|
3366 |
msgid "Network does not support emojis"
|
3367 |
msgstr "Netzwerk unterstützt keine Emojis"
|
3368 |
|
3369 |
-
#: includes/B2S/Ship/Item.php:
|
3370 |
msgid "Network does not support GIFs"
|
3371 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
3372 |
|
3373 |
-
#: includes/B2S/Ship/Item.php:
|
3374 |
msgid "Text only"
|
3375 |
msgstr "nur Text"
|
3376 |
|
3377 |
-
#: includes/B2S/Ship/Item.php:
|
3378 |
msgid "Network does not support image for pages"
|
3379 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
3380 |
|
3381 |
-
#: includes/B2S/Ship/Item.php:
|
3382 |
msgid "Connection expires on 31 March 2019"
|
3383 |
msgstr "Die Verbindung endet am 31. März 2019."
|
3384 |
|
3385 |
-
#: includes/B2S/Ship/Item.php:
|
3386 |
msgid "Connection expires on 2 April 2019"
|
3387 |
msgstr "Die Verbindung endet am 2. April 2019."
|
3388 |
|
3389 |
-
#: includes/B2S/Ship/Item.php:
|
3390 |
msgid "post format"
|
3391 |
msgstr "Postformat"
|
3392 |
|
3393 |
-
#: includes/B2S/Ship/Item.php:
|
3394 |
msgid "Insert full-text"
|
3395 |
msgstr "ganzen Text einfügen"
|
3396 |
|
3397 |
-
#: includes/B2S/Ship/Item.php:
|
3398 |
msgid "Delete text"
|
3399 |
msgstr "Text löschen"
|
3400 |
|
3401 |
-
#: includes/B2S/Ship/Item.php:
|
3402 |
-
|
3403 |
-
"You can customize your post with individual comments, @-handles, emojis, and "
|
3404 |
-
"more in the Instant Sharing window, after planning your post."
|
3405 |
-
msgstr ""
|
3406 |
-
"Du kannst Deinen Post mit individuellen Kommentaren, @-Handles, Emojis und "
|
3407 |
-
"mehr im Fenster \"Instant Sharing\" anpassen, nachdem Du Deinen Post geplant "
|
3408 |
-
"hast."
|
3409 |
-
|
3410 |
-
#: includes/B2S/Ship/Item.php:339 includes/B2S/Ship/Item.php:576
|
3411 |
-
#: includes/B2S/Ship/Item.php:875
|
3412 |
msgid ""
|
3413 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3414 |
"allowed to post identical or substantially similar content to multiple "
|
@@ -3419,8 +3565,8 @@ msgstr ""
|
|
3419 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3420 |
"mehreren Accounts zu posten."
|
3421 |
|
3422 |
-
#: includes/B2S/Ship/Item.php:
|
3423 |
-
#: includes/B2S/Ship/Item.php:
|
3424 |
msgid ""
|
3425 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3426 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -3430,12 +3576,12 @@ msgstr ""
|
|
3430 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
3431 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
3432 |
|
3433 |
-
#: includes/B2S/Ship/Item.php:
|
3434 |
-
#: includes/B2S/Ship/Item.php:
|
3435 |
msgid "Learn more about this"
|
3436 |
msgstr "Erfahre mehr darüber"
|
3437 |
|
3438 |
-
#: includes/B2S/Ship/Item.php:
|
3439 |
msgid ""
|
3440 |
"Please note: XING allows identical posts to be published only once within a "
|
3441 |
"group and no more than three times across different groups."
|
@@ -3444,11 +3590,11 @@ msgstr ""
|
|
3444 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
3445 |
"Gruppen."
|
3446 |
|
3447 |
-
#: includes/B2S/Ship/Item.php:
|
3448 |
msgid "Read more"
|
3449 |
msgstr "Weiterlesen"
|
3450 |
|
3451 |
-
#: includes/B2S/Ship/Item.php:
|
3452 |
msgid ""
|
3453 |
"Please keep in mind that users are not allowed to post identical or "
|
3454 |
"substantially similar content to multiple accounts or multiple duplicate "
|
@@ -3458,7 +3604,7 @@ msgstr ""
|
|
3458 |
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
3459 |
"Updates in einem Konto zu veröffentlichen."
|
3460 |
|
3461 |
-
#: includes/B2S/Ship/Item.php:
|
3462 |
msgid ""
|
3463 |
"Violating these rules can result in suspending your account. Always vary "
|
3464 |
"your content with different images, comments, hashtags or handles to prevent "
|
@@ -3468,106 +3614,102 @@ msgstr ""
|
|
3468 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
3469 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
3470 |
|
3471 |
-
#: includes/B2S/Ship/Item.php:
|
3472 |
msgid "hide calendar"
|
3473 |
msgstr "Planungskalender verbergen"
|
3474 |
|
3475 |
-
#: includes/B2S/Ship/Item.php:
|
3476 |
-
#: includes/B2S/Ship/Item.php:
|
3477 |
-
#: includes/B2S/Ship/Item.php:
|
3478 |
-
#: includes/B2S/Ship/Item.php:
|
3479 |
-
#: includes/B2S/Ship/Item.php:
|
3480 |
-
#: includes/B2S/Ship/Item.php:
|
3481 |
-
#: includes/B2S/Ship/Item.php:
|
3482 |
msgid "Write something about your post..."
|
3483 |
msgstr "Schreibe etwas..."
|
3484 |
|
3485 |
-
#: includes/B2S/Ship/Item.php:
|
3486 |
-
#: includes/B2S/Ship/Item.php:
|
3487 |
-
#: includes/B2S/Ship/Item.php:526 includes/B2S/Ship/Item.php:564
|
3488 |
-
#: includes/B2S/Ship/Item.php:582 includes/B2S/Ship/Item.php:598
|
3489 |
-
#: includes/B2S/Ship/Item.php:614 includes/B2S/Ship/Item.php:630
|
3490 |
-
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:680
|
3491 |
-
msgid "Change image"
|
3492 |
-
msgstr "Bild ändern"
|
3493 |
-
|
3494 |
-
#: includes/B2S/Ship/Item.php:435 includes/B2S/Ship/Item.php:483
|
3495 |
-
#: includes/B2S/Ship/Item.php:507 includes/B2S/Ship/Item.php:530
|
3496 |
msgid ""
|
3497 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3498 |
"network"
|
3499 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
3500 |
|
3501 |
-
#: includes/B2S/Ship/Item.php:
|
3502 |
-
#: includes/B2S/Ship/Item.php:
|
3503 |
-
#: includes/B2S/Ship/Item.php:
|
3504 |
msgid ""
|
3505 |
"You want to change your link image, link title and link description for this "
|
3506 |
"network? Click here."
|
3507 |
msgstr ""
|
3508 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
3509 |
|
3510 |
-
#: includes/B2S/Ship/Item.php:
|
3511 |
-
#: includes/B2S/Ship/Item.php:
|
3512 |
msgid "OG Meta title"
|
3513 |
msgstr "OG Titel"
|
3514 |
|
3515 |
-
#: includes/B2S/Ship/Item.php:
|
3516 |
-
#: includes/B2S/Ship/Item.php:
|
3517 |
msgid "OG Meta description"
|
3518 |
msgstr "OG Beschreibung"
|
3519 |
|
3520 |
-
#: includes/B2S/Ship/Item.php:
|
3521 |
msgid ""
|
3522 |
"Info: Change Card Meta tags image, title and description for this network"
|
3523 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
3524 |
|
3525 |
-
#: includes/B2S/Ship/Item.php:
|
3526 |
msgid "Card Meta title"
|
3527 |
msgstr "Card Titel"
|
3528 |
|
3529 |
-
#: includes/B2S/Ship/Item.php:
|
3530 |
msgid "Card Meta description"
|
3531 |
msgstr "Card Beschreibung"
|
3532 |
|
3533 |
-
#: includes/B2S/Ship/Item.php:
|
3534 |
msgid "required"
|
3535 |
msgstr "erforderlich"
|
3536 |
|
3537 |
-
#: includes/B2S/Ship/Item.php:
|
3538 |
msgid "Jobs & Projects"
|
3539 |
msgstr "Stellenangebote & Projekte"
|
3540 |
|
3541 |
-
#: includes/B2S/Ship/Item.php:
|
3542 |
msgid "Events"
|
3543 |
msgstr "Events"
|
3544 |
|
3545 |
-
#: includes/B2S/Ship/Item.php:
|
3546 |
msgid "Classified Ads"
|
3547 |
msgstr "Kleinanzeigen"
|
3548 |
|
3549 |
-
#: includes/B2S/Ship/Item.php:
|
3550 |
msgid "Offer"
|
3551 |
msgstr "Angebot"
|
3552 |
|
3553 |
-
#: includes/B2S/Ship/Item.php:
|
3554 |
msgid "Request"
|
3555 |
msgstr "Anfrage"
|
3556 |
|
3557 |
-
#: includes/B2S/Ship/Item.php:
|
3558 |
msgid "The Headline..."
|
3559 |
msgstr "Die Überschrift..."
|
3560 |
|
3561 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
|
|
|
|
|
|
|
|
3562 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3563 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
3564 |
|
3565 |
-
#: includes/B2S/Ship/Item.php:
|
3566 |
msgid "Delay"
|
3567 |
msgstr "Verzögerung"
|
3568 |
|
3569 |
-
#: includes/B2S/Ship/Item.php:
|
3570 |
-
#: includes/B2S/Ship/Item.php:
|
3571 |
#: views/b2s/partials/post-edit-modal.php:77
|
3572 |
#: views/b2s/partials/post-edit-modal.php:78
|
3573 |
#: views/b2s/partials/post-edit-modal.php:79
|
@@ -3575,19 +3717,19 @@ msgstr "Verzögerung"
|
|
3575 |
msgid "min"
|
3576 |
msgstr "min"
|
3577 |
|
3578 |
-
#: includes/B2S/Ship/Item.php:
|
3579 |
msgid "Add Retweet"
|
3580 |
msgstr "Retweet hinzufügen"
|
3581 |
|
3582 |
-
#: includes/B2S/Ship/Item.php:
|
3583 |
msgid "Share Now"
|
3584 |
msgstr "Sofort teilen"
|
3585 |
|
3586 |
-
#: includes/B2S/Ship/Item.php:
|
3587 |
msgid "Schedule Recurrent Post"
|
3588 |
msgstr "regelmäßig Planen"
|
3589 |
|
3590 |
-
#: includes/B2S/Ship/Item.php:
|
3591 |
msgid ""
|
3592 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3593 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3602,7 +3744,7 @@ msgstr ""
|
|
3602 |
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
3603 |
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
3604 |
|
3605 |
-
#: includes/B2S/Ship/Item.php:
|
3606 |
msgid ""
|
3607 |
"Please note: Google will shut down Google+ for all private accounts "
|
3608 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3614,116 +3756,116 @@ msgstr ""
|
|
3614 |
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
3615 |
"andere Inhalte herunterladen kannst:"
|
3616 |
|
3617 |
-
#: includes/B2S/Ship/Item.php:
|
3618 |
msgid "Repeats"
|
3619 |
msgstr "Wiederholen"
|
3620 |
|
3621 |
-
#: includes/B2S/Ship/Item.php:
|
3622 |
msgid "Duration"
|
3623 |
msgstr "Dauer"
|
3624 |
|
3625 |
-
#: includes/B2S/Ship/Item.php:
|
3626 |
msgid "Number of repeats"
|
3627 |
msgstr "Anzahl der Wiederholungen"
|
3628 |
|
3629 |
-
#: includes/B2S/Ship/Item.php:
|
3630 |
msgid "Day of month"
|
3631 |
msgstr "Tag im Monat"
|
3632 |
|
3633 |
-
#: includes/B2S/Ship/Item.php:
|
3634 |
msgid "Repeats every (days)"
|
3635 |
msgstr "Wiederholt sich alle X Tage"
|
3636 |
|
3637 |
-
#: includes/B2S/Ship/Item.php:
|
3638 |
msgid "Start date"
|
3639 |
msgstr "Startdatum"
|
3640 |
|
3641 |
-
#: includes/B2S/Ship/Item.php:
|
3642 |
msgid "Time to publish"
|
3643 |
msgstr "Veröffentlichungszeitpunkt"
|
3644 |
|
3645 |
-
#: includes/B2S/Ship/Item.php:
|
3646 |
msgid "weekly"
|
3647 |
msgstr "wöchentlich"
|
3648 |
|
3649 |
-
#: includes/B2S/Ship/Item.php:
|
3650 |
msgid "monthly"
|
3651 |
msgstr "monatlich"
|
3652 |
|
3653 |
-
#: includes/B2S/Ship/Item.php:
|
3654 |
msgid "own period"
|
3655 |
msgstr "Eigener Zeitraum"
|
3656 |
|
3657 |
-
#: includes/B2S/Ship/Item.php:
|
3658 |
msgid "Week"
|
3659 |
msgstr "Woche"
|
3660 |
|
3661 |
-
#: includes/B2S/Ship/Item.php:
|
3662 |
msgid "Weeks"
|
3663 |
msgstr "Wochen"
|
3664 |
|
3665 |
-
#: includes/B2S/Ship/Item.php:
|
3666 |
msgid "Month"
|
3667 |
msgstr "Monat"
|
3668 |
|
3669 |
-
#: includes/B2S/Ship/Item.php:
|
3670 |
msgid "Months"
|
3671 |
msgstr "Monate"
|
3672 |
|
3673 |
-
#: includes/B2S/Ship/Item.php:
|
3674 |
msgid "End Of Month"
|
3675 |
msgstr "Monatsende"
|
3676 |
|
3677 |
-
#: includes/B2S/Ship/Item.php:
|
3678 |
msgid "Timespan"
|
3679 |
msgstr "Zeitspanne"
|
3680 |
|
3681 |
-
#: includes/B2S/Ship/Item.php:
|
3682 |
#: views/b2s/partials/post-edit-modal.php:66
|
3683 |
msgid "Time"
|
3684 |
msgstr "Mal"
|
3685 |
|
3686 |
-
#: includes/B2S/Ship/Item.php:
|
3687 |
msgid "Mon"
|
3688 |
msgstr "Mo"
|
3689 |
|
3690 |
-
#: includes/B2S/Ship/Item.php:
|
3691 |
msgid "Tue"
|
3692 |
msgstr "Di"
|
3693 |
|
3694 |
-
#: includes/B2S/Ship/Item.php:
|
3695 |
msgid "Wed"
|
3696 |
msgstr "Mi"
|
3697 |
|
3698 |
-
#: includes/B2S/Ship/Item.php:
|
3699 |
msgid "Thu"
|
3700 |
msgstr "Do"
|
3701 |
|
3702 |
-
#: includes/B2S/Ship/Item.php:
|
3703 |
msgid "Fri"
|
3704 |
msgstr "Fr"
|
3705 |
|
3706 |
-
#: includes/B2S/Ship/Item.php:
|
3707 |
msgid "Sat"
|
3708 |
msgstr "Sa"
|
3709 |
|
3710 |
-
#: includes/B2S/Ship/Item.php:
|
3711 |
msgid "Sun"
|
3712 |
msgstr "So"
|
3713 |
|
3714 |
-
#: includes/B2S/Ship/Item.php:
|
3715 |
msgid "add another post"
|
3716 |
msgstr "einen weiteren Post anlegen"
|
3717 |
|
3718 |
-
#: includes/B2S/Ship/Item.php:
|
3719 |
msgid "Copy from original"
|
3720 |
msgstr "Originaltext kopieren"
|
3721 |
|
3722 |
-
#: includes/B2S/Ship/Item.php:
|
3723 |
msgid "Apply Settings To All Networks"
|
3724 |
msgstr "Planung für alle Netzwerke übernehmen"
|
3725 |
|
3726 |
-
#: includes/B2S/Ship/Item.php:
|
3727 |
msgid "Save as best time for this network"
|
3728 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
3729 |
|
@@ -4750,12 +4892,16 @@ msgid "Version"
|
|
4750 |
msgstr "Version"
|
4751 |
|
4752 |
#: views/b2s/html/sidebar.php:65
|
4753 |
-
msgid "Blog Content"
|
4754 |
-
msgstr "Blog Content"
|
4755 |
|
4756 |
#: views/b2s/html/sidebar.php:69
|
4757 |
-
msgid "Share
|
4758 |
-
msgstr "
|
|
|
|
|
|
|
|
|
4759 |
|
4760 |
#: views/b2s/html/sidebar.php:85
|
4761 |
msgid "Create Post"
|
@@ -4769,15 +4915,15 @@ msgstr "Content-Bibliothek"
|
|
4769 |
msgid "all Posts"
|
4770 |
msgstr "Alle Beiträge"
|
4771 |
|
4772 |
-
#: views/b2s/html/sidebar.php:
|
4773 |
msgid "Upgrade License"
|
4774 |
msgstr "Lizenz upgraden"
|
4775 |
|
4776 |
-
#: views/b2s/html/sidebar.php:
|
4777 |
msgid "Plans & Prices"
|
4778 |
msgstr "Tarife & Preise"
|
4779 |
|
4780 |
-
#: views/b2s/html/sidebar.php:
|
4781 |
msgid ""
|
4782 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4783 |
"anything that does not work for you, please contact us!"
|
@@ -4785,7 +4931,7 @@ msgstr ""
|
|
4785 |
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
4786 |
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
4787 |
|
4788 |
-
#: views/b2s/html/sidebar.php:
|
4789 |
msgid "Blog2Social Blog News"
|
4790 |
msgstr "Blog2Social Blog News"
|
4791 |
|
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: 2019-11-27 11:36+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
+
"POT-Creation-Date: 2019-11-27 11:35+0000\n"
|
16 |
"Last-Translator: marius <wolf.12345@gmx.de>\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
+
"X-Loco-Version: 2.3.0; wp-5.3"
|
19 |
|
20 |
+
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
22 |
msgstr "Pin-Board bearbeiten"
|
23 |
|
24 |
+
#: includes/Loader.php:45
|
25 |
msgid "Edit group settings"
|
26 |
msgstr "Gruppeneinstellungen bearbeiten"
|
27 |
|
28 |
+
#: includes/Loader.php:45
|
29 |
msgid "Modify subreddit"
|
30 |
msgstr "Modify subreddit"
|
31 |
|
32 |
+
#: includes/Loader.php:45
|
33 |
msgid "Modify forum"
|
34 |
msgstr "Modify forum"
|
35 |
|
36 |
+
#: includes/Loader.php:388
|
37 |
msgid "Auto-Post on Social Media"
|
38 |
msgstr "Automatisch auf Social Media teilen"
|
39 |
|
40 |
+
#: includes/Loader.php:389
|
41 |
msgid "Social Media Content Calendar"
|
42 |
msgstr "Social Media Kalender"
|
43 |
|
44 |
+
#: includes/Loader.php:689
|
45 |
msgid "This post will be shared into your social media from"
|
46 |
msgstr ""
|
47 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
48 |
|
49 |
+
#: includes/Loader.php:689 includes/Loader.php:691
|
50 |
msgid "show details"
|
51 |
msgstr "siehe Details"
|
52 |
|
53 |
+
#: includes/Loader.php:691
|
54 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
55 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
56 |
|
57 |
+
#: includes/Loader.php:695
|
58 |
msgid ""
|
59 |
"Please, make sure that your post are publish on this blog on this moment. "
|
60 |
"Then you can auto post your post with Blog2social."
|
62 |
"Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
|
63 |
" Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
64 |
|
65 |
+
#: includes/Loader.php:698 includes/B2S/PostBox.php:79
|
66 |
msgid ""
|
67 |
"There are no social network accounts assigned to your selected network "
|
68 |
"collection. Please assign at least one social network account or select "
|
72 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
73 |
"eine andere Netzwerkgruppierung aus. "
|
74 |
|
75 |
+
#: includes/Loader.php:710 views/b2s/html/sidebar.php:45
|
76 |
#: views/b2s/html/sidebar.ship.php:44
|
77 |
msgid "Upgrade to Premium"
|
78 |
msgstr "Premium freischalten"
|
79 |
|
80 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:18
|
81 |
msgid "Notifications"
|
82 |
msgstr "Benachrichtigungen"
|
83 |
|
84 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:17
|
85 |
+
#: views/b2s/html/sidebar.php:119
|
86 |
msgid "Shared Posts"
|
87 |
msgstr "geteilte Beiträge"
|
88 |
|
89 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:14
|
90 |
+
#: views/b2s/html/sidebar.php:113
|
91 |
msgid "Instant Sharing"
|
92 |
msgstr "Instant Sharing"
|
93 |
|
94 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:10
|
95 |
+
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:88
|
96 |
+
#: views/b2s/html/sidebar.php:110
|
97 |
msgid "Drafts"
|
98 |
msgstr "Entwürfe"
|
99 |
|
100 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:15
|
101 |
+
#: views/b2s/html/sidebar.php:116 views/b2s/widgets/posts.php:18
|
102 |
msgid "Scheduled Posts"
|
103 |
msgstr "geplante Beiträge"
|
104 |
|
105 |
+
#: includes/Loader.php:762
|
106 |
+
msgid "Social Media Post Drafts"
|
107 |
+
msgstr "Social Media Posts Entwürfe"
|
108 |
+
|
109 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:9
|
110 |
+
#: views/b2s/html/sidebar.php:107
|
111 |
+
msgid "Favorites"
|
112 |
+
msgstr "Favoriten"
|
113 |
|
114 |
+
#: includes/Loader.php:763 includes/B2S/Network/Item.php:148
|
115 |
#: includes/B2S/Network/Item.php:150 includes/B2S/Network/Item.php:150
|
116 |
+
#: includes/B2S/Network/Item.php:223 includes/B2S/Network/Item.php:544
|
117 |
#: includes/B2S/Settings/Item.php:245 includes/B2S/Ship/Portale.php:39
|
118 |
#: includes/B2S/Ship/Portale.php:41 includes/B2S/Ship/Portale.php:41
|
119 |
msgid "Profile"
|
120 |
msgstr "Profil"
|
121 |
|
122 |
+
#: includes/Loader.php:763 includes/B2S/Network/Item.php:154
|
123 |
+
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:288
|
124 |
+
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:245
|
125 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
126 |
msgid "Page"
|
127 |
msgstr "Seite"
|
128 |
|
129 |
+
#: includes/Loader.php:763 includes/B2S/Network/Item.php:157
|
130 |
+
#: includes/B2S/Network/Item.php:355 includes/B2S/Network/Item.php:549
|
131 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
132 |
msgid "Group"
|
133 |
msgstr "Gruppe"
|
134 |
|
135 |
+
#: includes/Loader.php:764 views/prg/html/form.php:74
|
136 |
msgid "Company"
|
137 |
msgstr "Unternehmen"
|
138 |
|
139 |
+
#: includes/Loader.php:764
|
140 |
msgid "Business"
|
141 |
msgstr "Business"
|
142 |
|
143 |
+
#: includes/Loader.php:765
|
144 |
+
#, php-format
|
145 |
+
msgid ""
|
146 |
+
"The network could not publish your post. Please see <a target=\"_blank\" "
|
147 |
+
"href=\"%s\">FAQ</a>"
|
148 |
+
msgstr ""
|
149 |
+
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Siehe <a "
|
150 |
+
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
151 |
|
152 |
+
#: includes/Loader.php:766
|
153 |
msgid ""
|
154 |
"Your authorization has expired. Please reconnect your account in the "
|
155 |
"Blog2Social network settings."
|
157 |
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
158 |
"Blog2Social Netzwerkeinstellungen erneut."
|
159 |
|
160 |
+
#: includes/Loader.php:767
|
161 |
msgid "The network has marked the post as spam or abusive."
|
162 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
163 |
|
164 |
+
#: includes/Loader.php:768
|
165 |
msgid ""
|
166 |
"We don't have the permission to publish your post. Please check your "
|
167 |
"authorization."
|
169 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
170 |
"überprüfe deine Autorisierung."
|
171 |
|
172 |
+
#: includes/Loader.php:769
|
173 |
#, php-format
|
174 |
msgid ""
|
175 |
"Your authorization is interrupted. Please check your authorization. Please "
|
178 |
"Deine Autorisierung ist unterbrochen. Bitte überprüfe Deine Verbindung. "
|
179 |
"Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
180 |
|
181 |
+
#: includes/Loader.php:770
|
182 |
msgid "Your daily limit has been reached."
|
183 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
184 |
|
185 |
+
#: includes/Loader.php:771
|
186 |
msgid ""
|
187 |
"Your post could not be posted, because your image is not available or the "
|
188 |
"image source does not allow to publish"
|
190 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
191 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
192 |
|
193 |
+
#: includes/Loader.php:772
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
199 |
"Das Netzwerk hat Dein Konto gesperrt. Siehe <a target=\"_blank\" href=\"%s\">"
|
200 |
"FAQ</a>"
|
201 |
|
202 |
+
#: includes/Loader.php:773
|
203 |
#, php-format
|
204 |
msgid ""
|
205 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
208 |
"Die Anzahl der Bilder ist erreicht. Siehe <a target=\"_blank\" href=\"%s\">"
|
209 |
"FAQ</a>"
|
210 |
|
211 |
+
#: includes/Loader.php:774
|
212 |
msgid ""
|
213 |
"Your daily limit for this network has been reached. Please try again later."
|
214 |
msgstr ""
|
215 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
216 |
"versuche es später noch einmal."
|
217 |
|
218 |
+
#: includes/Loader.php:775
|
219 |
#, php-format
|
220 |
msgid ""
|
221 |
"The network can not publish special characters such as Emoji. Please see <a "
|
224 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Siehe <a "
|
225 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
226 |
|
227 |
+
#: includes/Loader.php:776
|
228 |
msgid "Your post is a duplicate."
|
229 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
230 |
|
231 |
+
#: includes/Loader.php:777
|
232 |
msgid "The network requires a public url."
|
233 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
234 |
|
235 |
+
#: includes/Loader.php:778
|
236 |
msgid ""
|
237 |
"Your blog post was not available for the network at the time of publication."
|
238 |
msgstr ""
|
239 |
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
240 |
"nicht verfügbar."
|
241 |
|
242 |
+
#: includes/Loader.php:779
|
243 |
msgid "You have already retweeted this post."
|
244 |
msgstr "Du hast diesen Post bereits retweetet."
|
245 |
|
246 |
+
#: includes/Loader.php:780
|
247 |
msgid ""
|
248 |
"This XING API is no longer supported by XING. Please connect your XING "
|
249 |
"accounts with the new XING interface to reschedule your posts."
|
252 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
253 |
"zu planen."
|
254 |
|
255 |
+
#: includes/Loader.php:781
|
256 |
+
msgid "The network requires a image."
|
257 |
+
msgstr "Das Netzwerk benötigt ein Bild."
|
258 |
+
|
259 |
+
#: includes/Loader.php:782
|
260 |
+
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
261 |
msgstr ""
|
262 |
+
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
263 |
+
"erforderlich."
|
|
|
264 |
|
265 |
+
#: includes/Loader.php:783
|
266 |
msgid ""
|
267 |
"Your post could not be posted, because your image can not be processed by "
|
268 |
"the network."
|
270 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
271 |
"Netzwerk verarbeitet werden kann"
|
272 |
|
273 |
+
#: includes/Loader.php:784
|
274 |
#, php-format
|
275 |
msgid ""
|
276 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
279 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Siehe <a "
|
280 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
281 |
|
282 |
+
#: includes/Loader.php:785
|
283 |
msgid "Your group can not be found by the network."
|
284 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
285 |
|
286 |
+
#: includes/Loader.php:841 includes/Loader.php:884
|
287 |
msgid "Dashboard"
|
288 |
msgstr "Dashboard"
|
289 |
|
290 |
+
#: includes/Loader.php:842
|
291 |
+
msgid "Share Website & Blog Content"
|
292 |
+
msgstr "Webseiten- & Blog Content teilen"
|
293 |
|
294 |
+
#: includes/Loader.php:842 includes/Loader.php:891
|
295 |
+
msgid "Site & Blog Content"
|
296 |
+
msgstr "Seiten & Blog Content"
|
297 |
+
|
298 |
+
#: includes/Loader.php:843
|
299 |
+
msgid "Create Social Media Posts"
|
300 |
+
msgstr "Erstelle Social Media Posts"
|
301 |
+
|
302 |
+
#: includes/Loader.php:843 includes/Loader.php:898
|
303 |
+
msgid "Social Media Posts"
|
304 |
+
msgstr "Social Media Posts"
|
305 |
+
|
306 |
+
#: includes/Loader.php:844 includes/Loader.php:905 views/b2s/dashboard.php:31
|
307 |
+
#: views/b2s/html/post.navbar.php:19 views/b2s/html/sidebar.php:122
|
308 |
msgid "Calendar"
|
309 |
msgstr "Kalender"
|
310 |
|
311 |
+
#: includes/Loader.php:845 includes/Loader.php:912
|
|
|
|
|
|
|
|
|
|
|
312 |
msgid "Networks"
|
313 |
msgstr "Netzwerke"
|
314 |
|
315 |
+
#: includes/Loader.php:846 includes/Loader.php:918
|
316 |
+
#: views/b2s/html/sidebar.php:131
|
317 |
msgid "Settings"
|
318 |
msgstr "Einstellungen"
|
319 |
|
320 |
+
#: includes/Loader.php:848 includes/Loader.php:926
|
321 |
msgid "PR-Service"
|
322 |
msgstr "PR-Service"
|
323 |
|
324 |
+
#: includes/Loader.php:850 includes/Loader.php:934 views/b2s/html/header.php:35
|
325 |
+
#: views/b2s/html/sidebar.php:134 views/b2s/html/sidebar.ship.php:66
|
326 |
msgid "Help & Support"
|
327 |
msgstr "Hilfe & Support"
|
328 |
|
329 |
+
#: includes/Loader.php:852
|
330 |
msgid "Premium"
|
331 |
msgstr "Premium"
|
332 |
|
333 |
+
#: includes/Loader.php:852 includes/Loader.php:942
|
334 |
msgid "PREMIUM"
|
335 |
msgstr "PREMIUM"
|
336 |
|
337 |
+
#: includes/Loader.php:875 views/b2s/html/sidebar.php:25
|
338 |
#: views/b2s/html/sidebar.ship.php:24
|
339 |
msgid "Blog2Social"
|
340 |
msgstr "Blog2Social"
|
341 |
|
342 |
+
#: includes/Loader.php:1383
|
343 |
+
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
344 |
+
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
345 |
|
346 |
+
#: includes/Loader.php:1383 includes/System.php:72 includes/System.php:78
|
347 |
#: includes/System.php:84
|
348 |
#, php-format
|
349 |
msgid ""
|
353 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
354 |
"in unserem FAQs.</a>"
|
355 |
|
356 |
+
#: includes/Loader.php:1383 includes/Loader.php:1404 includes/Loader.php:1626
|
357 |
msgid "or"
|
358 |
msgstr "oder"
|
359 |
|
360 |
+
#: includes/Loader.php:1383 includes/Loader.php:1404 includes/Loader.php:1626
|
361 |
msgid "back to install plugins"
|
362 |
msgstr "zurück zur Pluginübersicht"
|
363 |
|
364 |
+
#: includes/Notice.php:17 views/b2s/html/sidebar.php:158
|
365 |
msgid "Rate it!"
|
366 |
msgstr "Bewerte uns!"
|
367 |
|
368 |
+
#: includes/Notice.php:18
|
369 |
msgid ""
|
370 |
"If you like Blog2Social, please give us a 5 star rating. I there is anything "
|
371 |
"that does not work for you, please contact us!!"
|
373 |
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
374 |
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
375 |
|
376 |
+
#: includes/Notice.php:19 views/b2s/html/sidebar.php:161
|
377 |
msgid "RATE BLOG2SOCIAL"
|
378 |
msgstr "Blog2Social jetzt bewerten"
|
379 |
|
380 |
+
#: includes/Notice.php:20
|
381 |
msgid "hide"
|
382 |
msgstr "ausblenden"
|
383 |
|
384 |
+
#: includes/Notice.php:35
|
385 |
+
msgid "Could not hide notice. Please refresh the page and retry."
|
386 |
+
msgstr ""
|
387 |
+
"Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite "
|
388 |
+
"und versuche es erneut. "
|
389 |
+
|
390 |
#: includes/System.php:69
|
391 |
msgid ""
|
392 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
417 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
418 |
"zu tun."
|
419 |
|
420 |
+
#: includes/Tools.php:265 views/b2s/html/sidebar.php:30
|
421 |
#: views/b2s/html/sidebar.ship.php:29
|
422 |
msgid "License"
|
423 |
msgstr "Lizenz"
|
424 |
|
425 |
+
#: includes/Tools.php:279
|
426 |
msgid "Greece"
|
427 |
msgstr "Griechenland"
|
428 |
|
429 |
+
#: includes/Tools.php:280
|
430 |
msgid "India"
|
431 |
msgstr "Indien"
|
432 |
|
433 |
+
#: includes/Tools.php:281
|
434 |
msgid "United States of America"
|
435 |
msgstr "Vereinigte Staaten von Amerika"
|
436 |
|
437 |
+
#: includes/Tools.php:282
|
438 |
msgid "Ireland"
|
439 |
msgstr "Irland"
|
440 |
|
441 |
+
#: includes/Tools.php:283
|
442 |
msgid "Italy"
|
443 |
msgstr "Italien"
|
444 |
|
445 |
+
#: includes/Tools.php:284
|
446 |
msgid "Switzerland"
|
447 |
msgstr "Schweiz"
|
448 |
|
449 |
+
#: includes/Tools.php:285
|
450 |
msgid "Czechoslovakia"
|
451 |
msgstr "Tschechoslowakei"
|
452 |
|
453 |
+
#: includes/Tools.php:286
|
454 |
msgid "Indonesia"
|
455 |
msgstr "Indonesien"
|
456 |
|
457 |
+
#: includes/Tools.php:287
|
458 |
msgid "Spain"
|
459 |
msgstr "Spanien"
|
460 |
|
461 |
+
#: includes/Tools.php:288
|
462 |
msgid "Canada"
|
463 |
msgstr "Kanada"
|
464 |
|
465 |
+
#: includes/Tools.php:289
|
466 |
msgid "Great Britain"
|
467 |
msgstr "Großbritannien"
|
468 |
|
469 |
+
#: includes/Tools.php:290
|
470 |
msgid "Russia"
|
471 |
msgstr "Russland"
|
472 |
|
473 |
+
#: includes/Tools.php:291
|
474 |
msgid "Netherlands"
|
475 |
msgstr "Niederlande"
|
476 |
|
477 |
+
#: includes/Tools.php:292 includes/Tools.php:306
|
478 |
msgid "Portugal"
|
479 |
msgstr "Portugal"
|
480 |
|
481 |
+
#: includes/Tools.php:293
|
482 |
msgid "Norway"
|
483 |
msgstr "Norwegen"
|
484 |
|
485 |
+
#: includes/Tools.php:294
|
486 |
msgid "Turkey"
|
487 |
msgstr "Türkei"
|
488 |
|
489 |
+
#: includes/Tools.php:295
|
490 |
msgid "Australia"
|
491 |
msgstr "Australien"
|
492 |
|
493 |
+
#: includes/Tools.php:296
|
494 |
msgid "Austria"
|
495 |
msgstr "Österreich"
|
496 |
|
497 |
+
#: includes/Tools.php:297
|
498 |
msgid "Poland"
|
499 |
msgstr "Polen"
|
500 |
|
501 |
+
#: includes/Tools.php:298
|
502 |
msgid "France"
|
503 |
msgstr "Frankreich"
|
504 |
|
505 |
+
#: includes/Tools.php:299
|
506 |
msgid "Romania"
|
507 |
msgstr "Rumänien"
|
508 |
|
509 |
+
#: includes/Tools.php:300
|
510 |
msgid "Germany"
|
511 |
msgstr "Deutschland"
|
512 |
|
513 |
+
#: includes/Tools.php:301
|
514 |
msgid "Denmark"
|
515 |
msgstr "Dänemark"
|
516 |
|
517 |
+
#: includes/Tools.php:302
|
518 |
msgid "New Zealand"
|
519 |
msgstr "Neuseeland"
|
520 |
|
521 |
+
#: includes/Tools.php:303
|
522 |
msgid "Finland"
|
523 |
msgstr "Finnland"
|
524 |
|
525 |
+
#: includes/Tools.php:304
|
526 |
msgid "Hungary"
|
527 |
msgstr "Ungarn"
|
528 |
|
529 |
+
#: includes/Tools.php:305
|
530 |
msgid "Japan"
|
531 |
msgstr "Japan"
|
532 |
|
533 |
+
#: includes/Tools.php:307
|
534 |
msgid "Argentina"
|
535 |
msgstr "Argentinien"
|
536 |
|
537 |
+
#: includes/Tools.php:308
|
538 |
msgid "Korea"
|
539 |
msgstr "Korea"
|
540 |
|
541 |
+
#: includes/Tools.php:309
|
542 |
msgid "Sweden"
|
543 |
msgstr "Schweden"
|
544 |
|
545 |
+
#: includes/Tools.php:310
|
546 |
msgid "Mexico"
|
547 |
msgstr "Mexiko"
|
548 |
|
549 |
+
#: includes/Tools.php:311
|
550 |
msgid "Slovakia"
|
551 |
msgstr "Slowakei"
|
552 |
|
553 |
+
#: includes/Tools.php:312
|
554 |
msgid "Chile"
|
555 |
msgstr "Chile"
|
556 |
|
557 |
+
#: includes/Tools.php:313
|
558 |
msgid "Colombia"
|
559 |
msgstr "Kolumbien"
|
560 |
|
561 |
+
#: includes/Tools.php:314
|
562 |
msgid "South Africa"
|
563 |
msgstr "Südafrika"
|
564 |
|
565 |
+
#: includes/Tools.php:315
|
566 |
msgid "Philippines"
|
567 |
msgstr "Philippinen"
|
568 |
|
569 |
+
#: includes/Tools.php:318
|
570 |
msgid "is determined automatically"
|
571 |
msgstr "wird automatisch ermittelt"
|
572 |
|
573 |
+
#: includes/Tools.php:325
|
574 |
+
msgid "Search"
|
575 |
+
msgstr "Suche"
|
576 |
+
|
577 |
+
#: includes/Tools.php:326
|
578 |
+
msgid "Recently Used"
|
579 |
+
msgstr "Zuletzt verwendet"
|
580 |
+
|
581 |
+
#: includes/Tools.php:327
|
582 |
+
msgid "Smileys & People"
|
583 |
+
msgstr "Smileys & Personen"
|
584 |
+
|
585 |
+
#: includes/Tools.php:328
|
586 |
+
msgid "Animals & Nature"
|
587 |
+
msgstr "Tiere & Natur"
|
588 |
+
|
589 |
+
#: includes/Tools.php:329
|
590 |
+
msgid "Food & Drink"
|
591 |
+
msgstr "Essen & Trinken"
|
592 |
+
|
593 |
+
#: includes/Tools.php:330
|
594 |
+
msgid "Activities"
|
595 |
+
msgstr "Aktivitäten"
|
596 |
+
|
597 |
+
#: includes/Tools.php:331
|
598 |
+
msgid "Travel & Places"
|
599 |
+
msgstr "Reisen & Orte"
|
600 |
+
|
601 |
+
#: includes/Tools.php:332
|
602 |
+
msgid "Objects"
|
603 |
+
msgstr "Objekte"
|
604 |
+
|
605 |
+
#: includes/Tools.php:333
|
606 |
+
msgid "Symbols"
|
607 |
+
msgstr "Symbole"
|
608 |
+
|
609 |
+
#: includes/Tools.php:334
|
610 |
+
msgid "Flags"
|
611 |
+
msgstr "Flaggen"
|
612 |
+
|
613 |
+
#: includes/Tools.php:335
|
614 |
+
msgid "No emojis found"
|
615 |
+
msgstr "Keine Ergebnisse"
|
616 |
+
|
617 |
#: views/notice.php:12
|
618 |
msgid "Connection is broken..."
|
619 |
msgstr "Vebindung ist unterbrochen..."
|
657 |
msgid "Please contact our support!"
|
658 |
msgstr "Bitte kontaktiere unseren Support!"
|
659 |
|
660 |
+
#: includes/Ajax/Post.php:1655 views/b2s/network.php:6
|
661 |
+
#: includes/B2S/Network/Item.php:221 includes/B2S/Network/Item.php:286
|
662 |
+
#: includes/B2S/Network/Item.php:353 includes/B2S/Network/Item.php:479
|
663 |
+
#: includes/B2S/Network/Item.php:495
|
664 |
msgid "Unknown username"
|
665 |
msgstr "unbekannter Blog-Nutzer"
|
666 |
|
667 |
+
#: includes/Ajax/Post.php:1656 includes/B2S/Network/Item.php:480
|
668 |
+
#: includes/B2S/Post/Item.php:447 includes/B2S/Post/Item.php:467
|
669 |
+
#: includes/B2S/Post/Item.php:714 includes/B2S/Post/Item.php:763
|
670 |
+
#: includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:916
|
671 |
+
#: includes/B2S/Ship/Item.php:1066
|
672 |
msgid "delete"
|
673 |
msgstr "löschen"
|
674 |
|
680 |
msgid "last auto-post:"
|
681 |
msgstr "letzter Auto-Post:"
|
682 |
|
683 |
+
#: includes/B2S/PostBox.php:76 views/b2s/ship.php:660
|
684 |
#: views/b2s/html/header.php:55
|
685 |
msgid "The connection to the server failed. Try again!"
|
686 |
msgstr ""
|
709 |
msgid "Network settings"
|
710 |
msgstr "Netzwerkeinstellungen"
|
711 |
|
712 |
+
#: includes/B2S/PostBox.php:81 views/b2s/ship.php:198
|
713 |
msgid ""
|
714 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
715 |
"Networks do not allow postings from local installations."
|
722 |
msgstr "Anpassen & Planen"
|
723 |
|
724 |
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101
|
725 |
+
#: views/b2s/ship.php:76 views/b2s/ship.php:166 views/b2s/ship.php:258
|
726 |
+
#: includes/B2S/Network/Item.php:177 includes/B2S/Ship/Item.php:880
|
727 |
msgid "Info"
|
728 |
msgstr "Info"
|
729 |
|
754 |
msgid "enable Auto-Posting"
|
755 |
msgstr "Auto-Posting aktivieren"
|
756 |
|
757 |
+
#: includes/B2S/PostBox.php:108 views/b2s/curation.php:49
|
758 |
+
#: views/b2s/network.php:349 views/b2s/ship.php:23
|
759 |
+
#: includes/B2S/Curation/View.php:56 includes/B2S/Network/Item.php:161
|
760 |
+
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:326
|
761 |
+
#: includes/B2S/Network/Item.php:388 includes/B2S/Settings/Item.php:104
|
762 |
+
#: includes/B2S/Settings/Item.php:318 includes/B2S/Ship/Image.php:80
|
763 |
+
#: includes/B2S/Ship/Item.php:939 views/b2s/html/post.navbar.php:15
|
764 |
+
#: views/b2s/html/post.navbar.php:19 views/b2s/partials/post-edit-modal.php:9
|
765 |
#: views/b2s/widgets/posts.php:18
|
766 |
msgid "SMART"
|
767 |
msgstr "SMART"
|
768 |
|
769 |
+
#: includes/B2S/PostBox.php:115 views/b2s/curation.draft.php:47
|
770 |
#: views/b2s/network.php:58 views/b2s/network.php:146 views/b2s/network.php:222
|
771 |
+
#: views/b2s/network.php:355 views/b2s/network.php:458
|
772 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
773 |
+
#: views/b2s/post.calendar.php:243 views/b2s/post.draft.php:42
|
774 |
+
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:45
|
775 |
+
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
776 |
+
#: views/b2s/post.sched.php:59 views/b2s/ship.php:188 views/b2s/ship.php:570
|
777 |
+
#: views/b2s/ship.php:658 views/b2s/support.php:204
|
778 |
+
#: views/prg/html/header.php:86
|
779 |
msgid "Loading..."
|
780 |
msgstr "Wird geladen..."
|
781 |
|
829 |
msgid "You want to auto-post your blog post?"
|
830 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
831 |
|
832 |
+
#: includes/B2S/PostBox.php:145 views/b2s/curation.php:171
|
833 |
+
#: views/b2s/curation.php:210 views/b2s/post.calendar.php:281
|
834 |
+
#: views/b2s/ship.php:309 views/b2s/ship.php:369 views/b2s/ship.php:415
|
835 |
+
#: views/b2s/html/footer.php:26 views/b2s/html/footer.php:144
|
836 |
+
#: views/b2s/html/footer.php:208 views/b2s/html/footer.php:248
|
837 |
+
#: views/b2s/html/footer.php:317 views/b2s/html/footer.php:356
|
838 |
+
#: views/b2s/html/footer.php:443
|
839 |
msgid "With Blog2Social Premium you can:"
|
840 |
msgstr "Mit Blog2Social kannst Du:"
|
841 |
|
842 |
+
#: includes/B2S/PostBox.php:148 views/b2s/curation.php:174
|
843 |
+
#: views/b2s/curation.php:213 views/b2s/post.calendar.php:284
|
844 |
+
#: views/b2s/ship.php:312 views/b2s/ship.php:372 views/b2s/ship.php:418
|
845 |
+
#: views/b2s/html/footer.php:29 views/b2s/html/footer.php:147
|
846 |
+
#: views/b2s/html/footer.php:211 views/b2s/html/footer.php:251
|
847 |
+
#: views/b2s/html/footer.php:320 views/b2s/html/footer.php:359
|
848 |
+
#: views/b2s/html/footer.php:446 views/b2s/html/header.php:325
|
849 |
msgid "Post on pages and groups"
|
850 |
msgstr "Poste auf Seiten und in Gruppen"
|
851 |
|
852 |
+
#: includes/B2S/PostBox.php:149 views/b2s/curation.php:175
|
853 |
+
#: views/b2s/curation.php:214 views/b2s/post.calendar.php:285
|
854 |
+
#: views/b2s/ship.php:313 views/b2s/ship.php:373 views/b2s/ship.php:419
|
855 |
+
#: views/b2s/html/footer.php:30 views/b2s/html/footer.php:148
|
856 |
+
#: views/b2s/html/footer.php:212 views/b2s/html/footer.php:252
|
857 |
+
#: views/b2s/html/footer.php:321 views/b2s/html/footer.php:360
|
858 |
+
#: views/b2s/html/footer.php:447
|
859 |
msgid "Share on multiple profiles, pages and groups"
|
860 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
861 |
|
862 |
+
#: includes/B2S/PostBox.php:150 views/b2s/curation.php:176
|
863 |
+
#: views/b2s/curation.php:215 views/b2s/post.calendar.php:286
|
864 |
+
#: views/b2s/ship.php:314 views/b2s/ship.php:374 views/b2s/ship.php:420
|
865 |
+
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:65
|
866 |
+
#: views/b2s/html/footer.php:149 views/b2s/html/footer.php:213
|
867 |
+
#: views/b2s/html/footer.php:253 views/b2s/html/footer.php:322
|
868 |
+
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:448
|
869 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
870 |
msgstr ""
|
871 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
872 |
"Aktualisierung posten und zeitversetzt planen"
|
873 |
|
874 |
+
#: includes/B2S/PostBox.php:151 views/b2s/curation.php:177
|
875 |
+
#: views/b2s/curation.php:216 views/b2s/post.calendar.php:287
|
876 |
+
#: views/b2s/ship.php:315 views/b2s/ship.php:375 views/b2s/ship.php:421
|
877 |
+
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:150
|
878 |
+
#: views/b2s/html/footer.php:214 views/b2s/html/footer.php:254
|
879 |
+
#: views/b2s/html/footer.php:323 views/b2s/html/footer.php:362
|
880 |
+
#: views/b2s/html/footer.php:449
|
881 |
msgid "Schedule your posts at the best times on each network"
|
882 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
883 |
|
884 |
+
#: includes/B2S/PostBox.php:152 views/b2s/curation.php:178
|
885 |
+
#: views/b2s/curation.php:217 views/b2s/post.calendar.php:288
|
886 |
+
#: views/b2s/ship.php:316 views/b2s/ship.php:376 views/b2s/ship.php:422
|
887 |
+
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:151
|
888 |
+
#: views/b2s/html/footer.php:215 views/b2s/html/footer.php:255
|
889 |
+
#: views/b2s/html/footer.php:324 views/b2s/html/footer.php:363
|
890 |
+
#: views/b2s/html/footer.php:450
|
891 |
msgid ""
|
892 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
893 |
"social media posts"
|
894 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
895 |
|
896 |
+
#: includes/B2S/PostBox.php:153 views/b2s/curation.php:179
|
897 |
+
#: views/b2s/curation.php:218 views/b2s/post.calendar.php:289
|
898 |
+
#: views/b2s/ship.php:317 views/b2s/ship.php:377 views/b2s/ship.php:423
|
899 |
+
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:152
|
900 |
+
#: views/b2s/html/footer.php:216 views/b2s/html/footer.php:256
|
901 |
+
#: views/b2s/html/footer.php:325 views/b2s/html/footer.php:364
|
902 |
+
#: views/b2s/html/footer.php:451
|
903 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
904 |
msgstr ""
|
905 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
906 |
"oder nach einem regelmäßigen Muster"
|
907 |
|
908 |
+
#: includes/B2S/PostBox.php:154 views/b2s/curation.php:180
|
909 |
+
#: views/b2s/curation.php:219 views/b2s/post.calendar.php:290
|
910 |
+
#: views/b2s/ship.php:318 views/b2s/ship.php:378 views/b2s/ship.php:424
|
911 |
+
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:153
|
912 |
+
#: views/b2s/html/footer.php:217 views/b2s/html/footer.php:257
|
913 |
+
#: views/b2s/html/footer.php:326 views/b2s/html/footer.php:365
|
914 |
+
#: views/b2s/html/footer.php:452
|
915 |
msgid "Schedule and re-share old posts"
|
916 |
msgstr "Plane und teile alte Beiträge"
|
917 |
|
918 |
+
#: includes/B2S/PostBox.php:155 views/b2s/curation.php:181
|
919 |
+
#: views/b2s/curation.php:220 views/b2s/post.calendar.php:291
|
920 |
+
#: views/b2s/ship.php:319 views/b2s/ship.php:379 views/b2s/ship.php:425
|
921 |
+
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:67
|
922 |
+
#: views/b2s/html/footer.php:154 views/b2s/html/footer.php:218
|
923 |
+
#: views/b2s/html/footer.php:258 views/b2s/html/footer.php:327
|
924 |
+
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:453
|
925 |
msgid "Select link format or image format for your posts"
|
926 |
msgstr ""
|
927 |
"Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
928 |
|
929 |
+
#: includes/B2S/PostBox.php:156 views/b2s/curation.php:182
|
930 |
+
#: views/b2s/curation.php:221 views/b2s/post.calendar.php:292
|
931 |
+
#: views/b2s/ship.php:320 views/b2s/ship.php:380 views/b2s/ship.php:426
|
932 |
+
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:68
|
933 |
+
#: views/b2s/html/footer.php:155 views/b2s/html/footer.php:219
|
934 |
+
#: views/b2s/html/footer.php:259 views/b2s/html/footer.php:328
|
935 |
+
#: views/b2s/html/footer.php:367 views/b2s/html/footer.php:454
|
936 |
msgid "Select individual images per post"
|
937 |
msgstr ""
|
938 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
939 |
|
940 |
+
#: includes/B2S/PostBox.php:157 views/b2s/curation.php:183
|
941 |
+
#: views/b2s/curation.php:222 views/b2s/post.calendar.php:293
|
942 |
+
#: views/b2s/ship.php:321 views/b2s/ship.php:381 views/b2s/ship.php:427
|
943 |
+
#: views/b2s/html/footer.php:38 views/b2s/html/footer.php:156
|
944 |
+
#: views/b2s/html/footer.php:220 views/b2s/html/footer.php:260
|
945 |
+
#: views/b2s/html/footer.php:329 views/b2s/html/footer.php:368
|
946 |
+
#: views/b2s/html/footer.php:455
|
947 |
msgid ""
|
948 |
"Reporting & calendar: keep track of your published and scheduled social "
|
949 |
"media posts"
|
951 |
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
952 |
"Media Beiträge"
|
953 |
|
954 |
+
#: includes/B2S/PostBox.php:159 views/b2s/curation.php:185
|
955 |
+
#: views/b2s/curation.php:224 views/b2s/post.calendar.php:295
|
956 |
+
#: views/b2s/ship.php:323 views/b2s/ship.php:383 views/b2s/ship.php:429
|
957 |
+
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:158
|
958 |
+
#: views/b2s/html/footer.php:222 views/b2s/html/footer.php:262
|
959 |
+
#: views/b2s/html/footer.php:331 views/b2s/html/footer.php:370
|
960 |
+
#: views/b2s/html/footer.php:457
|
961 |
msgid "Upgrade to SMART and above"
|
962 |
msgstr "Upgrade auf SMART und höher"
|
963 |
|
964 |
+
#: includes/B2S/PostBox.php:161 views/b2s/curation.php:187
|
965 |
+
#: views/b2s/curation.php:226 views/b2s/post.calendar.php:297
|
966 |
+
#: views/b2s/ship.php:325 views/b2s/ship.php:385 views/b2s/ship.php:431
|
967 |
+
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:73
|
968 |
+
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:160
|
969 |
+
#: views/b2s/html/footer.php:224 views/b2s/html/footer.php:264
|
970 |
+
#: views/b2s/html/footer.php:333 views/b2s/html/footer.php:372
|
971 |
+
#: views/b2s/html/footer.php:460
|
972 |
#, php-format
|
973 |
msgid ""
|
974 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
978 |
"Testversion von Blog2Social Premium</a> (keine Zahlungsinformationen "
|
979 |
"erforderlich)"
|
980 |
|
981 |
+
#: includes/B2S/PostBox.php:174 includes/B2S/Curation/View.php:73
|
982 |
msgid "Select network collection:"
|
983 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
984 |
|
985 |
+
#: includes/B2S/PostBox.php:185 includes/B2S/Curation/View.php:97
|
986 |
msgid "Select Twitter profile:"
|
987 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
988 |
|
994 |
msgid "immediately after publishing"
|
995 |
msgstr "sofort nach Veröffentlichung"
|
996 |
|
997 |
+
#: includes/B2S/PostBox.php:220 includes/B2S/Curation/View.php:65
|
998 |
msgid "at scheduled times"
|
999 |
msgstr "zu geplanten Zeiten"
|
1000 |
|
1014 |
msgid "Select date:"
|
1015 |
msgstr "Datum auswählen:"
|
1016 |
|
1017 |
+
#: includes/B2S/PostBox.php:231 includes/B2S/Ship/Item.php:364
|
1018 |
msgid "show calendar"
|
1019 |
msgstr "Planungskalender anzeigen"
|
1020 |
|
1049 |
msgid "Get the Blog2Social Browser Extension"
|
1050 |
msgstr "Blog2Social Browser Erweiterung"
|
1051 |
|
1052 |
+
#: views/b2s/curation.draft.php:76
|
1053 |
msgid "Delete Draft"
|
1054 |
msgstr "Entwurf löschen"
|
1055 |
|
1056 |
+
#: views/b2s/curation.draft.php:79
|
1057 |
msgid "Are you sure you want to delete this draft?"
|
1058 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1059 |
|
1060 |
+
#: views/b2s/curation.draft.php:83 views/b2s/curation.php:141
|
1061 |
#: views/b2s/network.php:106 views/b2s/post.approve.php:91
|
1062 |
#: views/b2s/post.approve.php:108 views/b2s/post.draft.php:80
|
1063 |
#: views/b2s/post.notice.php:78 views/b2s/post.publish.php:78
|
1064 |
+
#: views/b2s/post.sched.php:92 views/b2s/ship.php:474 views/b2s/ship.php:553
|
1065 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
1066 |
msgid "NO"
|
1067 |
msgstr "NEIN"
|
1068 |
|
1069 |
+
#: views/b2s/curation.draft.php:84 views/b2s/network.php:107
|
1070 |
#: views/b2s/network.php:170 views/b2s/post.approve.php:92
|
1071 |
#: views/b2s/post.draft.php:81 views/b2s/post.notice.php:79
|
1072 |
#: views/b2s/post.publish.php:79 views/b2s/post.sched.php:93
|
1074 |
msgid "YES, delete"
|
1075 |
msgstr "Ja, löschen"
|
1076 |
|
1077 |
+
#: views/b2s/curation.php:30
|
1078 |
msgid "No link preview available. Please check your link."
|
1079 |
msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
|
1080 |
|
1081 |
+
#: views/b2s/curation.php:34
|
1082 |
msgid ""
|
1083 |
"No connected networks. Please make sure to connect at least one social media "
|
1084 |
"account."
|
1087 |
"mindestens einen Social Media Account in Blog2Social unter Netzwerke "
|
1088 |
"verbunden hast."
|
1089 |
|
1090 |
+
#: views/b2s/curation.php:37
|
1091 |
msgid "Invalid data. Please check your data."
|
1092 |
msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
1093 |
|
1094 |
+
#: views/b2s/curation.php:40
|
1095 |
msgid "Saved as draft."
|
1096 |
msgstr "Als Entwurf gespeichert."
|
1097 |
|
1098 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
|
1099 |
+
#: views/b2s/post.sched.php:182 includes/B2S/Settings/Item.php:394
|
1100 |
+
#: includes/B2S/Settings/Item.php:427 views/b2s/html/footer.php:111
|
1101 |
+
msgid "Link Post"
|
1102 |
+
msgstr "Link-Beitrag"
|
1103 |
+
|
1104 |
+
#: views/b2s/curation.php:47 views/b2s/curation.php:49
|
1105 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:182
|
1106 |
+
#: includes/B2S/Settings/Item.php:408 includes/B2S/Settings/Item.php:427
|
1107 |
+
msgid "Image Post"
|
1108 |
+
msgstr "Bild-Beitrag"
|
1109 |
+
|
1110 |
+
#: views/b2s/curation.php:47 views/b2s/support.php:19 views/b2s/support.php:22
|
1111 |
+
#: views/b2s/html/post.navbar.php:9
|
1112 |
+
msgid "NEW"
|
1113 |
+
msgstr "Neu"
|
1114 |
+
|
1115 |
+
#: views/b2s/curation.php:59
|
1116 |
+
msgid "Load data..."
|
1117 |
+
msgstr "Daten werden geladen..."
|
1118 |
+
|
1119 |
+
#: views/b2s/curation.php:65
|
1120 |
msgid "Enter a link you want share on your social media channels"
|
1121 |
msgstr ""
|
1122 |
"Füge einen Link ein, den Du auf Deinen Social Media Kanälen teilen möchtest"
|
1123 |
|
1124 |
+
#: views/b2s/curation.php:66
|
1125 |
msgid "Please enter a valid link"
|
1126 |
msgstr "Bitte gib einen gültigen Link ein"
|
1127 |
|
1128 |
+
#: views/b2s/curation.php:67
|
1129 |
msgid "Enter link"
|
1130 |
msgstr "Link eingeben"
|
1131 |
|
1132 |
+
#: views/b2s/curation.php:70
|
1133 |
msgid "continue"
|
1134 |
msgstr "weiter"
|
1135 |
|
1136 |
+
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:432
|
1137 |
+
#: includes/B2S/Ship/Item.php:461 includes/B2S/Ship/Item.php:490
|
1138 |
+
#: includes/B2S/Ship/Item.php:519 includes/B2S/Ship/Item.php:547
|
1139 |
+
#: includes/B2S/Ship/Item.php:590 includes/B2S/Ship/Item.php:613
|
1140 |
+
#: includes/B2S/Ship/Item.php:634 includes/B2S/Ship/Item.php:655
|
1141 |
+
#: includes/B2S/Ship/Item.php:676 includes/B2S/Ship/Item.php:697
|
1142 |
+
#: includes/B2S/Ship/Item.php:741
|
1143 |
+
msgid "Change image"
|
1144 |
+
msgstr "Bild ändern"
|
1145 |
|
1146 |
+
#: views/b2s/curation.php:97 includes/B2S/Curation/View.php:23
|
1147 |
+
msgid "Write something..."
|
1148 |
+
msgstr "Schreibe etwas..."
|
1149 |
+
|
1150 |
+
#: views/b2s/curation.php:112 views/b2s/ship.php:260 views/b2s/ship.php:262
|
1151 |
+
#: includes/B2S/Post/Item.php:368
|
1152 |
+
msgid "Re-share this post"
|
1153 |
+
msgstr "Diesen Beitrag nochmal teilen"
|
1154 |
+
|
1155 |
+
#: views/b2s/curation.php:113
|
1156 |
+
msgid "Create a new post"
|
1157 |
+
msgstr "Neuen Social Media Post erstellen"
|
1158 |
+
|
1159 |
+
#: views/b2s/curation.php:119 views/b2s/post.calendar.php:38
|
1160 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:659 includes/B2S/Post/Filter.php:50
|
1161 |
+
#: includes/B2S/Post/Item.php:297 includes/B2S/Ship/Save.php:417
|
1162 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1163 |
msgid "published"
|
1164 |
msgstr "veröffentlicht"
|
1165 |
|
1166 |
+
#: views/b2s/curation.php:135 views/b2s/post.approve.php:102
|
1167 |
+
#: views/b2s/ship.php:468
|
1168 |
msgid "Do you want to mark this post as published ?"
|
1169 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1170 |
|
1171 |
+
#: views/b2s/curation.php:140 views/b2s/post.approve.php:107
|
1172 |
+
#: views/b2s/ship.php:473 views/b2s/ship.php:554
|
1173 |
msgid "YES"
|
1174 |
msgstr "JA"
|
1175 |
|
1176 |
+
#: views/b2s/curation.php:154 views/b2s/post.calendar.php:264
|
1177 |
+
#: views/b2s/ship.php:398
|
1178 |
msgid "Need to schedule your posts?"
|
1179 |
msgstr "Du möchtest Deine Beiträge planen?"
|
1180 |
|
1181 |
+
#: views/b2s/curation.php:157 views/b2s/post.calendar.php:267
|
1182 |
+
#: views/b2s/ship.php:401
|
1183 |
msgid "Blog2Social Premium covers everything you need."
|
1184 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1185 |
|
1186 |
+
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:270
|
1187 |
+
#: views/b2s/ship.php:404 includes/B2S/Ship/Item.php:940
|
1188 |
msgid "Schedule for specific dates"
|
1189 |
msgstr "Für bestimmte Termine planen"
|
1190 |
|
1191 |
+
#: views/b2s/curation.php:161 views/b2s/post.calendar.php:271
|
1192 |
+
#: views/b2s/ship.php:405
|
1193 |
msgid ""
|
1194 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
1195 |
"desired date and you are ready to go!"
|
1197 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
1198 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
1199 |
|
1200 |
+
#: views/b2s/curation.php:163 views/b2s/post.calendar.php:273
|
1201 |
+
#: views/b2s/ship.php:407
|
1202 |
msgid "Schedule post recurrently"
|
1203 |
msgstr "Beitrag mehrfach planen"
|
1204 |
|
1205 |
+
#: views/b2s/curation.php:164 views/b2s/post.calendar.php:274
|
1206 |
+
#: views/b2s/ship.php:408
|
1207 |
msgid ""
|
1208 |
"You have evergreen content you want to re-share from time to time in your "
|
1209 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
1213 |
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
1214 |
"wiederkehrenden Rhythmus"
|
1215 |
|
1216 |
+
#: views/b2s/curation.php:166 views/b2s/post.calendar.php:276
|
1217 |
+
#: views/b2s/ship.php:410
|
1218 |
msgid "Best Time Scheduler"
|
1219 |
msgstr "Beste Zeiten Manager"
|
1220 |
|
1221 |
+
#: views/b2s/curation.php:167 views/b2s/post.calendar.php:277
|
1222 |
+
#: views/b2s/ship.php:411
|
1223 |
msgid ""
|
1224 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
1225 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
1232 |
"Netzwerks zu teilen. Steigere so die Reichweite, Interaktion und Lebensdauer "
|
1233 |
"Deiner Posts."
|
1234 |
|
1235 |
+
#: views/b2s/curation.php:199
|
1236 |
+
msgid "Blog2Social: Social Media Posts"
|
1237 |
+
msgstr "Blog2Social: Social Media Posts"
|
1238 |
+
|
1239 |
+
#: views/b2s/curation.php:203
|
1240 |
+
msgid "This is a premium feature."
|
1241 |
+
msgstr "Das ist eine Premium-Funktion."
|
1242 |
+
|
1243 |
+
#: views/b2s/curation.php:209
|
1244 |
+
msgid "You wannt to create image posts with any image from your media library?"
|
1245 |
+
msgstr ""
|
1246 |
+
"Du möchtest Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
|
1247 |
+
"erstellen?"
|
1248 |
+
|
1249 |
+
#: views/b2s/curation.php:238
|
1250 |
+
msgid "Select image"
|
1251 |
+
msgstr "Bild auswählen"
|
1252 |
+
|
1253 |
#: views/b2s/dashboard.php:17
|
1254 |
msgid "What's New"
|
1255 |
msgstr "Das ist neu"
|
1271 |
msgstr "Folge uns"
|
1272 |
|
1273 |
#: views/b2s/network.php:24 views/b2s/network.php:25
|
1274 |
+
#: views/b2s/post.calendar.php:225 views/b2s/post.calendar.php:226
|
1275 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1276 |
+
#: views/b2s/html/post.navbar.php:25 views/b2s/html/post.navbar.php:26
|
1277 |
msgid "filter"
|
1278 |
msgstr "Filter"
|
1279 |
|
1287 |
|
1288 |
#: views/b2s/network.php:34 includes/B2S/Network/Item.php:150
|
1289 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:158
|
1290 |
+
#: includes/B2S/Ship/Image.php:87 includes/B2S/Ship/Portale.php:32
|
1291 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:41
|
1292 |
msgid "PRO"
|
1293 |
msgstr "PRO"
|
1296 |
msgid "Delete"
|
1297 |
msgstr "Löschen"
|
1298 |
|
1299 |
+
#: views/b2s/network.php:45 views/b2s/ship.php:74 views/b2s/ship.php:368
|
1300 |
#: views/b2s/html/footer.php:207
|
1301 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1302 |
msgstr ""
|
1303 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
1304 |
"Manager benutzen?"
|
1305 |
|
1306 |
+
#: views/b2s/network.php:46 views/b2s/ship.php:75
|
1307 |
msgid "Load Best Times"
|
1308 |
msgstr "Lade beste Zeiten"
|
1309 |
|
1347 |
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
1348 |
"Business Brancheneinträgen zu erweitern."
|
1349 |
|
1350 |
+
#: views/b2s/network.php:127 views/b2s/premium.php:36 views/b2s/ship.php:490
|
1351 |
+
#: includes/B2S/Ship/Item.php:978 views/b2s/partials/post-edit-modal.php:48
|
1352 |
msgid "Learn more"
|
1353 |
msgstr "Mehr erfahren"
|
1354 |
|
1421 |
msgid "Advanced Connection Preferences"
|
1422 |
msgstr "Erweiterte Verbindungseinstellungen"
|
1423 |
|
1424 |
+
#: views/b2s/network.php:229 views/b2s/network.php:313
|
1425 |
msgid "Move the connection to another network collection."
|
1426 |
msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
1427 |
|
1430 |
msgid "An error occured. Please contact our support."
|
1431 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
1432 |
|
1433 |
+
#: views/b2s/network.php:241 views/b2s/network.php:320
|
1434 |
msgid "move"
|
1435 |
msgstr "verschieben"
|
1436 |
|
1438 |
msgid "You need at least one network collection"
|
1439 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
1440 |
|
1441 |
+
#: views/b2s/network.php:258 views/b2s/network.php:327
|
1442 |
msgid "Assign the connection to other blog users"
|
1443 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
1444 |
|
1477 |
"Es sind keine weiteren Benutzer vorhanden, denen die Verbindung zugewiesen "
|
1478 |
"werden kann."
|
1479 |
|
1480 |
+
#: views/b2s/network.php:293 views/b2s/network.php:330
|
1481 |
msgid "assign"
|
1482 |
msgstr "zuweisen"
|
1483 |
|
1484 |
+
#: views/b2s/network.php:294
|
1485 |
+
msgid "Apply best time settings"
|
1486 |
+
msgstr "Beste Zeiten verwenden"
|
1487 |
+
|
1488 |
+
#: views/b2s/network.php:295
|
1489 |
+
msgid "Apply post template settings"
|
1490 |
+
msgstr "Beitragsvorlagen verwenden"
|
1491 |
+
|
1492 |
+
#: views/b2s/network.php:306
|
1493 |
msgid ""
|
1494 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
1495 |
"network collection and assign your social media connections to other blog "
|
1506 |
"auf Deinem Social-Media-Profil, Deiner Seite oder Gruppe zu veröffentlichen "
|
1507 |
"oder vorzuplanen."
|
1508 |
|
1509 |
+
#: views/b2s/network.php:307
|
1510 |
msgid "Upgrade to Blog2Social Business"
|
1511 |
msgstr "Upgrade auf Blog2Social Business"
|
1512 |
|
1513 |
+
#: views/b2s/network.php:318 includes/B2S/Ship/Navbar.php:37
|
1514 |
msgid "My Profile"
|
1515 |
msgstr "Mein Profil"
|
1516 |
|
1517 |
+
#: views/b2s/network.php:349 includes/B2S/Network/Item.php:161
|
1518 |
+
#: includes/B2S/Network/Item.php:161
|
1519 |
msgid "Edit Post Template"
|
1520 |
msgstr "Beitragsvorlage bearbeiten"
|
1521 |
|
1522 |
+
#: views/b2s/network.php:361 views/b2s/settings.php:52
|
1523 |
#: includes/B2S/Settings/Item.php:292
|
1524 |
msgid "save"
|
1525 |
msgstr "speichern"
|
1526 |
|
1527 |
+
#: views/b2s/network.php:373 views/b2s/settings.php:129
|
1528 |
msgid "Instant Caching for Facebook Link Posts"
|
1529 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
1530 |
|
1531 |
+
#: views/b2s/network.php:376 views/b2s/settings.php:132
|
1532 |
msgid ""
|
1533 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
1534 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
1541 |
"sicherzustellen, dass Facebook immer die aktuellen Meta Daten Deines "
|
1542 |
"Blogbeitrags zieht."
|
1543 |
|
1544 |
+
#: views/b2s/network.php:387
|
1545 |
msgid "Choose your Post Format"
|
1546 |
msgstr "Wähle Dein Postformat "
|
1547 |
|
1548 |
+
#: views/b2s/network.php:391 views/b2s/network.php:394
|
1549 |
+
#: views/b2s/network.php:397
|
1550 |
msgid ""
|
1551 |
"Decide in which post format you want to post your content: Link post or "
|
1552 |
"image post."
|
1554 |
"Entscheide, in welchem Format Du Deine Inhalte veröffentlichen möchtest: "
|
1555 |
"Link-Beitrag oder Bild-Beitrag."
|
1556 |
|
1557 |
+
#: views/b2s/network.php:400
|
1558 |
msgid ""
|
1559 |
"Decide in wich form you want to post your Content. Either as image with "
|
1560 |
"frame, or as image cut out."
|
1562 |
" Entscheide, in welcher Form Du Deine Inhalte veröffentlichen möchtest. "
|
1563 |
"Entweder als Bild mit Rahmen oder als Bildausschnitt."
|
1564 |
|
1565 |
+
#: views/b2s/network.php:412
|
1566 |
msgid "Post Content"
|
1567 |
msgstr "Post-Inhalt"
|
1568 |
|
1569 |
+
#: views/b2s/network.php:415
|
1570 |
msgid ""
|
1571 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1572 |
"textarea and customize them as you like."
|
1574 |
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
1575 |
"das Textfeld und passe sie nach Deinen Wünschen an."
|
1576 |
|
1577 |
+
#: views/b2s/network.php:418
|
1578 |
msgid "Legend"
|
1579 |
msgstr "Legende"
|
1580 |
|
1581 |
+
#: views/b2s/network.php:420
|
1582 |
msgid "The title of your post"
|
1583 |
msgstr "Der Titel deines Beitrags."
|
1584 |
|
1585 |
+
#: views/b2s/network.php:421
|
1586 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1587 |
msgstr ""
|
1588 |
" Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü deines "
|
1589 |
"Beitrags festgelegt)."
|
1590 |
|
1591 |
+
#: views/b2s/network.php:422
|
1592 |
msgid "The content of your post"
|
1593 |
msgstr "Der Inhalt Deines Beitrags."
|
1594 |
|
1595 |
+
#: views/b2s/network.php:423
|
1596 |
msgid "The tags you have set in your post."
|
1597 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
1598 |
|
1599 |
+
#: views/b2s/network.php:424
|
1600 |
+
msgid "The name of the post author."
|
1601 |
+
msgstr "Der Name des Autors Deines Beitrags."
|
1602 |
+
|
1603 |
+
#: views/b2s/network.php:437 includes/B2S/Network/Item.php:659
|
1604 |
msgid "Character limit"
|
1605 |
msgstr "Zeichenbegrenzung"
|
1606 |
|
1607 |
+
#: views/b2s/network.php:440
|
1608 |
msgid ""
|
1609 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1610 |
"individually. Your text will be shortened after the last comma, period, or "
|
1614 |
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1615 |
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1616 |
|
1617 |
+
#: views/b2s/network.php:441
|
1618 |
msgid ""
|
1619 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
1620 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
1624 |
"einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü "
|
1625 |
"(Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. "
|
1626 |
|
1627 |
+
#: views/b2s/network.php:442
|
1628 |
msgid ""
|
1629 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
1630 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
1638 |
"und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
|
1639 |
"des jeweiligen Social Networks berücksichtigt."
|
1640 |
|
1641 |
+
#: views/b2s/network.php:453 views/b2s/ship.php:565
|
1642 |
msgid "Connect with Pinterest"
|
1643 |
msgstr "Mit Pinterest verbinden"
|
1644 |
|
1645 |
+
#: views/b2s/network.php:461 views/b2s/ship.php:573
|
1646 |
msgid ""
|
1647 |
"Please make sure to use your original Pinterest login data (email and "
|
1648 |
"password). Social Login via Facebook or Google login data will not work here."
|
1654 |
"dass die Zwei-Faktor-Authentifizierung in Pinterest deaktiviert ist, um eine "
|
1655 |
"stabile Verbindung zu Blog2Social sicherzustellen."
|
1656 |
|
1657 |
+
#: views/b2s/network.php:462 views/b2s/ship.php:574
|
1658 |
msgid "An error occurred! Please try again."
|
1659 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
1660 |
|
1661 |
+
#: views/b2s/network.php:463 views/b2s/network.php:464 views/b2s/ship.php:575
|
1662 |
+
#: views/b2s/ship.php:576
|
1663 |
#, php-format
|
1664 |
msgid ""
|
1665 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
1668 |
"Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
|
1669 |
"href=\"%s\">Upgrade auf Blog2Social Premium</a>"
|
1670 |
|
1671 |
+
#: views/b2s/network.php:465 views/b2s/ship.php:577
|
1672 |
msgid "Invalid Data! Please try again."
|
1673 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
1674 |
|
1675 |
+
#: views/b2s/network.php:466 views/b2s/ship.php:578
|
1676 |
msgid ""
|
1677 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
1678 |
"up at least one pinboard to pin on your Pinterest account!"
|
1680 |
"Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
|
1681 |
"richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
|
1682 |
|
1683 |
+
#: views/b2s/network.php:467 views/b2s/ship.php:579
|
1684 |
#, php-format
|
1685 |
msgid ""
|
1686 |
"Login failed. Please check your login data for typos and please check your "
|
1692 |
"Authentifizierung für dieses Konto deaktiviert ist: <a target=\"_blank\" "
|
1693 |
"href=\"%s\">%s</a>"
|
1694 |
|
1695 |
+
#: views/b2s/network.php:468 views/b2s/ship.php:580
|
1696 |
msgid "Pinterest has rejected the connection to your blog"
|
1697 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
1698 |
|
1699 |
+
#: views/b2s/network.php:469 views/b2s/ship.php:581
|
1700 |
msgid "Please select your currect server location and connect again"
|
1701 |
msgstr ""
|
1702 |
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut"
|
1703 |
|
1704 |
+
#: views/b2s/network.php:470 views/b2s/ship.php:582
|
1705 |
+
msgid ""
|
1706 |
+
"Access to this resource on your server is denied! Please check your "
|
1707 |
+
"webserver configuration for caching."
|
1708 |
+
msgstr ""
|
1709 |
+
"Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte "
|
1710 |
+
"überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
1711 |
+
|
1712 |
+
#: views/b2s/network.php:471 views/b2s/ship.php:583
|
1713 |
msgid ""
|
1714 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
1715 |
"on your profile."
|
1717 |
"Anmeldung erfolgreich. Bitte bestätige, dass Blog2Social auf Deinem Profil "
|
1718 |
"veröffentlichen darf."
|
1719 |
|
1720 |
+
#: views/b2s/network.php:473 views/b2s/ship.php:585
|
1721 |
#: views/b2s/html/header.php:331 views/prg/html/form.php:141
|
1722 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1723 |
#: views/prg/html/form.php:220
|
1724 |
msgid "E-Mail"
|
1725 |
msgstr "E-Mail"
|
1726 |
|
1727 |
+
#: views/b2s/network.php:479 views/b2s/ship.php:591 views/prg/login.php:25
|
1728 |
msgid "Password"
|
1729 |
msgstr "Passwort"
|
1730 |
|
1731 |
+
#: views/b2s/network.php:490 views/b2s/ship.php:602
|
1732 |
msgid "Server-Location"
|
1733 |
msgstr "Serverstandort"
|
1734 |
|
1735 |
+
#: views/b2s/network.php:504 views/b2s/ship.php:616
|
1736 |
msgid "Select Pinboard"
|
1737 |
msgstr "Pinnwand auswählen"
|
1738 |
|
1739 |
+
#: views/b2s/network.php:512 views/b2s/ship.php:624
|
1740 |
msgid "authorize"
|
1741 |
msgstr "autorisieren"
|
1742 |
|
1743 |
+
#: views/b2s/network.php:513 views/b2s/ship.php:625
|
1744 |
msgid "confirm"
|
1745 |
msgstr "bestätigen"
|
1746 |
|
1766 |
msgid "show all"
|
1767 |
msgstr "alles anzeigen"
|
1768 |
|
1769 |
+
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:18
|
1770 |
+
#: includes/B2S/Post/Filter.php:50 includes/B2S/Post/Item.php:297
|
1771 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1772 |
msgid "scheduled"
|
1773 |
msgstr "geplant"
|
1774 |
|
1775 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:182
|
1776 |
+
#: includes/B2S/Network/Item.php:607 includes/B2S/Network/Item.php:610
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1777 |
#: includes/B2S/Settings/Item.php:394 views/b2s/html/footer.php:128
|
1778 |
msgid "Image with frame"
|
1779 |
msgstr "Bild mit Rahmen"
|
1780 |
|
1781 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:182
|
1782 |
+
#: includes/B2S/Network/Item.php:608 includes/B2S/Network/Item.php:611
|
1783 |
#: includes/B2S/Settings/Item.php:408 views/b2s/html/footer.php:133
|
1784 |
msgid "Image cut out"
|
1785 |
msgstr "Bild zuschneiden"
|
1788 |
msgid "add post"
|
1789 |
msgstr "Beitrag hinzufügen"
|
1790 |
|
1791 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:123
|
1792 |
+
#: views/b2s/ship.php:503
|
1793 |
msgid "Choose your"
|
1794 |
msgstr "Wähle Deinen"
|
1795 |
|
1796 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:123
|
1797 |
+
#: views/b2s/ship.php:503
|
1798 |
msgid "Post Format"
|
1799 |
msgstr "Postformat"
|
1800 |
|
1801 |
+
#: views/b2s/post.calendar.php:112 views/b2s/post.sched.php:125
|
1802 |
+
#: views/b2s/ship.php:505
|
1803 |
msgid "for:"
|
1804 |
msgstr "für:"
|
1805 |
|
1806 |
+
#: views/b2s/post.calendar.php:131 views/b2s/post.sched.php:144
|
1807 |
+
#: views/b2s/ship.php:523
|
1808 |
msgid ""
|
1809 |
"Define the default settings for the custom post format for all of your "
|
1810 |
"Facebook accounts in the Blog2Social settings."
|
1812 |
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1813 |
"den Blog2Social Einstellungen."
|
1814 |
|
1815 |
+
#: views/b2s/post.calendar.php:134 views/b2s/post.sched.php:147
|
1816 |
+
#: views/b2s/ship.php:526
|
1817 |
msgid ""
|
1818 |
"Define the default settings for the custom post format for all of your "
|
1819 |
"Twitter accounts in the Blog2Social settings."
|
1821 |
"Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
|
1822 |
"unter den Blog2Social Einstellungen."
|
1823 |
|
1824 |
+
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:150
|
1825 |
+
#: views/b2s/ship.php:529
|
1826 |
msgid ""
|
1827 |
"Define the default settings for the custom post format for all of your "
|
1828 |
"LinkedIn accounts in the Blog2Social settings."
|
1830 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1831 |
"unter den Blog2Social Einstellungen."
|
1832 |
|
1833 |
+
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:153
|
1834 |
+
#: views/b2s/ship.php:532
|
1835 |
msgid ""
|
1836 |
"Define the default settings for the custom post format for all of your "
|
1837 |
"Instagram accounts in the Blog2Social settings."
|
1839 |
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1840 |
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1841 |
|
1842 |
+
#: views/b2s/post.calendar.php:155 views/b2s/post.sched.php:104
|
1843 |
+
#: views/b2s/ship.php:444
|
1844 |
msgid "Select image for"
|
1845 |
msgstr "Wähle Bild aus für"
|
1846 |
|
1847 |
+
#: views/b2s/post.calendar.php:173
|
1848 |
msgid "What would you like to share?"
|
1849 |
msgstr "Was möchtest Du teilen?"
|
1850 |
|
1851 |
+
#: views/b2s/post.calendar.php:183
|
1852 |
msgid "Share content from your blog"
|
1853 |
msgstr "Teile Deine Blogbeiträge"
|
1854 |
|
1855 |
+
#: views/b2s/post.calendar.php:186 views/b2s/post.calendar.php:199
|
1856 |
msgid "select"
|
1857 |
msgstr "auswählen"
|
1858 |
|
1859 |
+
#: views/b2s/post.calendar.php:196
|
1860 |
msgid "Share content from other sources"
|
1861 |
msgstr "Teile Beiträge aus beliebigen Quellen"
|
1862 |
|
1863 |
+
#: views/b2s/post.calendar.php:217
|
1864 |
msgid "Select a post"
|
1865 |
msgstr "Wähle einen Beitrag aus"
|
1866 |
|
1872 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1873 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
1874 |
|
1875 |
+
#: views/b2s/post.favorites.php:60 includes/B2S/Post/Item.php:303
|
1876 |
+
msgid "You have not saved any favorites."
|
1877 |
+
msgstr "Du hast keine Favoriten gespeichert."
|
1878 |
+
|
1879 |
#: views/b2s/post.notice.php:69 views/b2s/post.publish.php:69
|
1880 |
#: views/b2s/widgets/posts.php:58
|
1881 |
msgid "Delete entries from the reporting"
|
2002 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2003 |
|
2004 |
#: views/b2s/premium.php:109 views/b2s/settings.php:35
|
2005 |
+
#: includes/B2S/Post/Item.php:596
|
2006 |
msgid "Auto-Posting"
|
2007 |
msgstr "Auto-Posting"
|
2008 |
|
2119 |
msgid "Social Meta Data"
|
2120 |
msgstr "Social Meta Angaben"
|
2121 |
|
2122 |
+
#: views/b2s/settings.php:76 includes/B2S/Ship/Image.php:91
|
2123 |
msgid "Select or upload an image from media gallery"
|
2124 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
2125 |
|
2126 |
+
#: views/b2s/settings.php:77 includes/B2S/Ship/Image.php:92
|
2127 |
msgid "Use image"
|
2128 |
msgstr "Bild verwenden"
|
2129 |
|
2199 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
2200 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
2201 |
|
2202 |
+
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:50
|
2203 |
+
#: includes/B2S/Post/Item.php:297 includes/PRG/Post/Item.php:86
|
2204 |
msgid "draft"
|
2205 |
msgstr "Entwurf"
|
2206 |
|
2207 |
+
#: views/b2s/ship.php:52
|
2208 |
msgid "Social Media Scheduling & Sharing"
|
2209 |
msgstr "Beitrag auf Social Media planen und teilen"
|
2210 |
|
2211 |
+
#: views/b2s/ship.php:53 views/prg/ship.php:43 views/prg/ship.php:45
|
2212 |
+
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:328
|
2213 |
#: includes/B2S/Settings/Item.php:349 views/prg/html/form.php:26
|
2214 |
#: views/prg/html/form.php:28
|
2215 |
msgid "Title"
|
2216 |
msgstr "Titel"
|
2217 |
|
2218 |
+
#: views/b2s/ship.php:55 includes/B2S/Post/Item.php:351
|
2219 |
msgid "on blog"
|
2220 |
msgstr "auf dem Blog"
|
2221 |
|
2222 |
+
#: views/b2s/ship.php:63
|
2223 |
msgid "scroll to bottom"
|
2224 |
msgstr "zum Seitenende"
|
2225 |
|
2226 |
+
#: views/b2s/ship.php:68
|
2227 |
msgid "You want to load your time settings?"
|
2228 |
msgstr "Du möchtest Deine Zeiten laden?"
|
2229 |
|
2230 |
+
#: views/b2s/ship.php:69
|
2231 |
msgid "Load My Times Settings"
|
2232 |
msgstr "Meine Zeit-Einstellungen laden"
|
2233 |
|
2234 |
+
#: views/b2s/ship.php:105 views/b2s/html/sidebar.php:128
|
2235 |
msgid "Social Accounts"
|
2236 |
msgstr "Social Media Konten"
|
2237 |
|
2238 |
+
#: views/b2s/ship.php:123
|
2239 |
msgid "Add more..."
|
2240 |
msgstr "mehr hinzufügen"
|
2241 |
|
2242 |
+
#: views/b2s/ship.php:125
|
2243 |
msgid "Profiles | Pages | Groups"
|
2244 |
msgstr "Profile | Seiten | Gruppen"
|
2245 |
|
2246 |
+
#: views/b2s/ship.php:164
|
2247 |
msgid "Save network collection"
|
2248 |
msgstr "Netzwerk-Gruppierung speichern"
|
2249 |
|
2250 |
+
#: views/b2s/ship.php:173
|
2251 |
msgid "network connected"
|
2252 |
msgstr "Netzwerk verbunden"
|
2253 |
|
2254 |
+
#: views/b2s/ship.php:174
|
2255 |
msgid "requires image"
|
2256 |
msgstr "Bild benötigt"
|
2257 |
|
2258 |
+
#: views/b2s/ship.php:175
|
2259 |
msgid "refresh authorization"
|
2260 |
msgstr "Autorisierung aktualisieren"
|
2261 |
|
2262 |
+
#: views/b2s/ship.php:200
|
2263 |
msgid "change website address"
|
2264 |
msgstr "Webseiten-Adresse ändern"
|
2265 |
|
2266 |
+
#: views/b2s/ship.php:217
|
2267 |
msgid "First, connect or select network before posting"
|
2268 |
msgstr ""
|
2269 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2270 |
"Du den Beitrag teilst!"
|
2271 |
|
2272 |
+
#: views/b2s/ship.php:219 includes/B2S/Settings/Item.php:81
|
2273 |
msgid "connect"
|
2274 |
msgstr "Jetzt mit Netzwerken verbinden"
|
2275 |
|
2276 |
+
#: views/b2s/ship.php:227
|
2277 |
msgid "scroll to top"
|
2278 |
msgstr "zum Seitenanfang"
|
2279 |
|
2280 |
+
#: views/b2s/ship.php:228 views/b2s/ship.php:234
|
2281 |
+
#: includes/B2S/Curation/View.php:113
|
2282 |
msgid "Share"
|
2283 |
msgstr "Teilen"
|
2284 |
|
2285 |
+
#: views/b2s/ship.php:229 views/b2s/ship.php:233
|
2286 |
+
#: includes/B2S/Curation/View.php:110
|
2287 |
msgid "Save as Draft"
|
2288 |
msgstr "als Entwurf speichern"
|
2289 |
|
2290 |
+
#: views/b2s/ship.php:243
|
2291 |
msgid "Time zone"
|
2292 |
msgstr "Zeitzone"
|
2293 |
|
2294 |
+
#: views/b2s/ship.php:264
|
|
|
|
|
|
|
|
|
2295 |
msgid "Share new post on Social Media"
|
2296 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
2297 |
|
2298 |
+
#: views/b2s/ship.php:286
|
2299 |
msgid "Connect for"
|
2300 |
msgstr "Netzwerke verbinden für"
|
2301 |
|
2302 |
+
#: views/b2s/ship.php:302
|
2303 |
msgid "Re-share this Post"
|
2304 |
msgstr "Diesen Beitrag nochmal teilen"
|
2305 |
|
2306 |
+
#: views/b2s/ship.php:305
|
2307 |
msgid ""
|
2308 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
2309 |
"different choice of networks, profiles, pages or groups, or with different "
|
2329 |
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
2330 |
"kannst. "
|
2331 |
|
2332 |
+
#: views/b2s/ship.php:308
|
2333 |
msgid "You want re-share your blog post?"
|
2334 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
2335 |
|
2336 |
+
#: views/b2s/ship.php:336
|
2337 |
msgid "Save Network Settings"
|
2338 |
msgstr "Netzwerkeinstellungen speichern"
|
2339 |
|
2340 |
+
#: views/b2s/ship.php:339
|
2341 |
msgid ""
|
2342 |
"You can save your current network settings as \"Standard\" network settings "
|
2343 |
"for any future sharing activities or as a \"Profile\" to choose from "
|
2369 |
"zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
|
2370 |
"variieren kannst. "
|
2371 |
|
2372 |
+
#: views/b2s/ship.php:351
|
2373 |
msgid "Your blog post is not yet published on your Wordpress!"
|
2374 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
2375 |
|
2376 |
+
#: views/b2s/ship.php:354
|
2377 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
2378 |
msgstr ""
|
2379 |
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
2380 |
|
2381 |
+
#: views/b2s/ship.php:358
|
2382 |
msgid "Schedule your post"
|
2383 |
msgstr "Beitrag planen"
|
2384 |
|
2385 |
+
#: views/b2s/ship.php:361
|
2386 |
msgid "Ignore & share"
|
2387 |
msgstr "Ignorieren & teilen"
|
2388 |
|
2389 |
+
#: views/b2s/ship.php:486
|
2390 |
msgid "Important infomations about XING groups"
|
2391 |
msgstr "Wichtige Information zu XING-Gruppen"
|
2392 |
|
2393 |
+
#: views/b2s/ship.php:547
|
2394 |
msgid "Overwrite Draft"
|
2395 |
msgstr "Entwurf überschreiben"
|
2396 |
|
2397 |
+
#: views/b2s/ship.php:550
|
2398 |
msgid ""
|
2399 |
"There is already a saved draft for this WordPress post or page. If you save "
|
2400 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
2405 |
"damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
|
2406 |
"möchtest?"
|
2407 |
|
2408 |
+
#: views/b2s/ship.php:646
|
2409 |
msgid "add Schedule"
|
2410 |
msgstr "Zeitplan hinzufügen"
|
2411 |
|
2412 |
+
#: views/b2s/ship.php:662
|
2413 |
msgid "Give me more information"
|
2414 |
msgstr "Erhalte mehr Infomationen"
|
2415 |
|
2416 |
+
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:612
|
2417 |
#: includes/B2S/Ship/Save.php:438
|
2418 |
msgid "FAQ"
|
2419 |
msgstr "FAQ"
|
2422 |
msgid "Troubleshooting-Tool"
|
2423 |
msgstr "Problemanalyse-Tool"
|
2424 |
|
|
|
|
|
|
|
|
|
|
|
2425 |
#: views/b2s/support.php:22
|
2426 |
msgid "Sharing-Debugger"
|
2427 |
msgstr "Sharing-Debugger"
|
2651 |
msgid "Yes, I accept"
|
2652 |
msgstr "Ja,einverstanden"
|
2653 |
|
2654 |
+
#: includes/B2S/Curation/View.php:62
|
|
|
|
|
|
|
|
|
2655 |
msgid "Share your post"
|
2656 |
msgstr "Teile Deinen Post"
|
2657 |
|
2658 |
+
#: includes/B2S/Curation/View.php:64 includes/B2S/Settings/Item.php:172
|
2659 |
msgid "immediately"
|
2660 |
msgstr "sofort"
|
2661 |
|
2662 |
+
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2663 |
+
#: includes/B2S/Ship/Item.php:1048 views/b2s/partials/post-edit-modal.php:62
|
2664 |
#: views/b2s/partials/post-edit-modal.php:65
|
2665 |
msgid "Date"
|
2666 |
msgstr "Startdatum"
|
2667 |
|
2668 |
+
#: includes/B2S/Curation/View.php:109
|
2669 |
msgid "Customize & Schedule"
|
2670 |
msgstr "Anpassen & Planen"
|
2671 |
|
2677 |
msgid "Show all"
|
2678 |
msgstr "alle anzeigen"
|
2679 |
|
2680 |
+
#: includes/B2S/Network/Item.php:62 includes/B2S/Network/Item.php:183
|
2681 |
msgid "My profile"
|
2682 |
msgstr "Mein Profil"
|
2683 |
|
2697 |
msgid "You want to connect a network page?"
|
2698 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
2699 |
|
2700 |
+
#: includes/B2S/Network/Item.php:157 includes/B2S/Network/Item.php:355
|
2701 |
#: includes/B2S/Ship/Portale.php:31
|
2702 |
msgid "Publication"
|
2703 |
msgstr "Publication"
|
2706 |
msgid "You want to connect a social media group?"
|
2707 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
2708 |
|
2709 |
+
#: includes/B2S/Network/Item.php:169
|
2710 |
+
#, php-format
|
2711 |
+
msgid ""
|
2712 |
+
"Business Pages will be closed by XING on december 31, 2019. Please use XING "
|
2713 |
+
"Employer Branding Pages instead. <a target=\"_blank\" href=\"%s\">More "
|
2714 |
+
"information.</a>"
|
2715 |
+
msgstr ""
|
2716 |
+
"Die Business Seiten werden von XING zum 31.12.2019 abgeschaltet. Bitte nutze "
|
2717 |
+
"stattdessen die Unternehmens-Seiten (Employer Branding). <a "
|
2718 |
+
"target=\"_blank\" href=\"%s\">weitere Informationen</a>"
|
2719 |
|
2720 |
+
#: includes/B2S/Network/Item.php:176 includes/B2S/Settings/Item.php:236
|
2721 |
msgid "Connections"
|
2722 |
msgstr "Verbindungen"
|
2723 |
|
2724 |
+
#: includes/B2S/Network/Item.php:177 views/b2s/html/footer.php:192
|
2725 |
msgid "Best Time Manager"
|
2726 |
msgstr "Best Time Manager"
|
2727 |
|
2728 |
+
#: includes/B2S/Network/Item.php:214 includes/B2S/Network/Item.php:279
|
2729 |
+
#: includes/B2S/Network/Item.php:346
|
2730 |
msgid "To reactivate this connection,"
|
2731 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
2732 |
|
2733 |
+
#: includes/B2S/Network/Item.php:214 includes/B2S/Network/Item.php:279
|
2734 |
+
#: includes/B2S/Network/Item.php:346 includes/B2S/Ship/Image.php:30
|
2735 |
msgid "please upgrade"
|
2736 |
msgstr "Bitte upgraden"
|
2737 |
|
2738 |
+
#: includes/B2S/Network/Item.php:217 includes/B2S/Network/Item.php:282
|
2739 |
+
#: includes/B2S/Network/Item.php:349
|
2740 |
msgid "Authorization is interrupted since"
|
2741 |
msgstr "Autorisierung ist unterbrochen seit"
|
2742 |
|
2743 |
+
#: includes/B2S/Network/Item.php:221 includes/B2S/Network/Item.php:286
|
2744 |
+
#: includes/B2S/Network/Item.php:353
|
2745 |
msgid "Assigned by"
|
2746 |
msgstr "Zugewiesen von"
|
2747 |
|
2748 |
+
#: includes/B2S/Network/Item.php:258 includes/B2S/Network/Item.php:324
|
2749 |
+
#: includes/B2S/Network/Item.php:386 includes/B2S/Ship/Item.php:996
|
2750 |
msgid "Days"
|
2751 |
msgstr "Tage"
|
2752 |
|
2753 |
+
#: includes/B2S/Network/Item.php:288 includes/B2S/Ship/Item.php:302
|
2754 |
msgid "Employer Branding"
|
2755 |
msgstr "Employer Branding"
|
2756 |
|
2757 |
+
#: includes/B2S/Network/Item.php:467
|
2758 |
msgid "Connection currently assigned to"
|
2759 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
2760 |
|
2761 |
+
#: includes/B2S/Network/Item.php:524
|
2762 |
msgid "Successfully saved"
|
2763 |
msgstr "Erfolgreich gespeichert"
|
2764 |
|
2765 |
+
#: includes/B2S/Network/Item.php:525
|
2766 |
msgid "Failed to save"
|
2767 |
msgstr "Speichern fehlgeschlagen"
|
2768 |
|
2769 |
+
#: includes/B2S/Network/Item.php:526
|
2770 |
msgid "Failed to load the default template"
|
2771 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
2772 |
|
2773 |
+
#: includes/B2S/Network/Item.php:533
|
2774 |
+
msgid ""
|
2775 |
+
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
2776 |
+
"templates that will automatically pre-format the structure of your social "
|
2777 |
+
"media posts. Select and define elements, such as title, excerpt, content, "
|
2778 |
+
"hashtags, and edit the post format. The “content” element is selected by "
|
2779 |
+
"default. Define custom post templates per social network and per profile, "
|
2780 |
+
"group & page. You can also add static content (such as individual hashtags "
|
2781 |
+
"or slogans) to your post templates."
|
2782 |
+
msgstr ""
|
2783 |
+
"Upgrade auf Blog2Social Smart oder eine höhere Version, um individuelle "
|
2784 |
+
"Beitragsvorlagen für Deine Social Media Posts auf den verschiedenen "
|
2785 |
+
"Netzwerken zu definieren, mit denen Deine Beiträge automatisiert formatiert "
|
2786 |
+
"werden. Wähle aus verschiedenen Elementen wie Titel, Auszug, Inhalt, "
|
2787 |
+
"Hashtags und bearbeite das Post-Format.\n"
|
2788 |
+
"Standardmäßig ist das Element \"Inhalt\" ausgewählt. Nutze individuelle "
|
2789 |
+
"Beitragsvorlagen für einzelne Netzwerke, Profile, Gruppen & Seiten. Füge "
|
2790 |
+
"auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
|
2791 |
+
"Beitragsvorlagen hinzu."
|
2792 |
+
|
2793 |
+
#: includes/B2S/Network/Item.php:534
|
2794 |
msgid "Upgrade to Blog2Social Smart"
|
2795 |
msgstr "Upgrade auf Blog2Social Smart"
|
2796 |
|
2797 |
+
#: includes/B2S/Network/Item.php:554
|
2798 |
msgid "Activate Instant Caching"
|
2799 |
msgstr "Instant Caching aktivieren"
|
2800 |
|
2801 |
+
#: includes/B2S/Network/Item.php:600
|
2802 |
msgid "Format"
|
2803 |
msgstr "Format"
|
2804 |
|
2805 |
+
#: includes/B2S/Network/Item.php:601 includes/B2S/Network/Item.php:622
|
2806 |
msgid "Load default settings"
|
2807 |
msgstr "Lade Standardeinstellungen"
|
2808 |
|
2809 |
+
#: includes/B2S/Network/Item.php:607 includes/B2S/Network/Item.php:610
|
2810 |
+
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:750
|
2811 |
msgid "Link"
|
2812 |
msgstr "Link"
|
2813 |
|
2814 |
+
#: includes/B2S/Network/Item.php:608 includes/B2S/Network/Item.php:611
|
2815 |
msgid "Image"
|
2816 |
msgstr "Bild"
|
2817 |
|
2818 |
+
#: includes/B2S/Network/Item.php:620 includes/B2S/Settings/Item.php:76
|
2819 |
msgid "Content"
|
2820 |
msgstr "Inhalt"
|
2821 |
|
2822 |
+
#: includes/B2S/Network/Item.php:629 includes/B2S/Ship/Item.php:343
|
2823 |
msgid ""
|
2824 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2825 |
"in your post."
|
2827 |
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
2828 |
"Hashtags in Deinem Beitrag."
|
2829 |
|
2830 |
+
#: includes/B2S/Network/Item.php:641
|
2831 |
msgid "clear"
|
2832 |
msgstr "löschen"
|
2833 |
|
2834 |
+
#: includes/B2S/Network/Item.php:650
|
2835 |
msgid "The link will be added automatically at the end of the post."
|
2836 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
2837 |
|
2838 |
+
#: includes/B2S/Network/Item.php:652 includes/B2S/Network/Item.php:678
|
2839 |
msgid "Network limit"
|
2840 |
msgstr "Netzwerkbegrenzung"
|
2841 |
|
2842 |
+
#: includes/B2S/Network/Item.php:652 includes/B2S/Network/Item.php:678
|
2843 |
+
#: includes/B2S/Network/Item.php:678 includes/B2S/Ship/Item.php:188
|
2844 |
+
#: includes/B2S/Ship/Item.php:192 includes/B2S/Ship/Item.php:237
|
2845 |
+
#: includes/B2S/Ship/Item.php:241 includes/B2S/Ship/Item.php:270
|
2846 |
+
#: includes/B2S/Ship/Item.php:274 includes/B2S/Ship/Item.php:1075
|
2847 |
+
#: includes/B2S/Ship/Item.php:1077
|
2848 |
msgid "characters"
|
2849 |
msgstr "Zeichen"
|
2850 |
|
2851 |
+
#: includes/B2S/Network/Item.php:678
|
2852 |
msgid "recommended length"
|
2853 |
msgstr "Empfohlene Länge"
|
2854 |
|
2855 |
+
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:750
|
2856 |
+
#: includes/B2S/Network/Item.php:804 includes/B2S/Network/Item.php:856
|
2857 |
+
#: includes/B2S/Network/Item.php:890
|
2858 |
msgid "Preview"
|
2859 |
msgstr "Vorschau"
|
2860 |
|
2918 |
msgid "scheduled post(s)"
|
2919 |
msgstr "geplante Beiträge"
|
2920 |
|
2921 |
+
#: includes/B2S/Post/Item.php:301
|
2922 |
+
msgid "You have not saved any drafts."
|
|
|
|
|
|
|
|
|
2923 |
msgstr "Du hast keine Entwürfe gespeichert."
|
2924 |
|
2925 |
+
#: includes/B2S/Post/Item.php:305
|
2926 |
+
msgid "You have not published or scheduled any posts."
|
2927 |
+
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
2928 |
+
|
2929 |
+
#: includes/B2S/Post/Item.php:328
|
2930 |
msgid "curated post"
|
2931 |
msgstr "kuratierter Beitrag"
|
2932 |
|
2933 |
+
#: includes/B2S/Post/Item.php:333 includes/B2S/Post/Item.php:431
|
2934 |
msgid "last shared on social media"
|
2935 |
msgstr "zuletzt auf Social Media geteilt"
|
2936 |
|
2937 |
+
#: includes/B2S/Post/Item.php:345 includes/B2S/Post/Item.php:441
|
2938 |
+
#: includes/B2S/Post/Item.php:443 includes/B2S/Post/Item.php:464
|
2939 |
+
#: includes/B2S/Post/Item.php:485
|
2940 |
msgid "Share on Social Media"
|
2941 |
msgstr "auf Social Media teilen"
|
2942 |
|
2943 |
+
#: includes/B2S/Post/Item.php:349
|
2944 |
msgid "load Draft"
|
2945 |
msgstr "Entwurf aufrufen"
|
2946 |
|
2947 |
+
#: includes/B2S/Post/Item.php:351 includes/B2S/Post/Item.php:449
|
2948 |
+
#: includes/B2S/Post/Item.php:469 includes/B2S/Post/Item.php:487
|
2949 |
+
#: includes/PRG/Post/Item.php:121
|
2950 |
msgid "Author"
|
2951 |
msgstr "Autor"
|
2952 |
|
2953 |
+
#: includes/B2S/Post/Item.php:369 includes/B2S/Post/Item.php:393
|
2954 |
+
#: includes/B2S/Post/Item.php:415
|
2955 |
msgid "Details"
|
2956 |
msgstr "Details"
|
2957 |
|
2958 |
+
#: includes/B2S/Post/Item.php:371
|
2959 |
msgid "shared social media posts"
|
2960 |
msgstr "geteilte Beiträge"
|
2961 |
|
2962 |
+
#: includes/B2S/Post/Item.php:371
|
2963 |
#, php-format
|
2964 |
msgid "latest share by %s"
|
2965 |
msgstr "zuletzt von %s geteilt"
|
2966 |
|
2967 |
+
#: includes/B2S/Post/Item.php:395 views/b2s/widgets/activity.php:10
|
2968 |
msgid "scheduled social media posts"
|
2969 |
msgstr "geplante Beiträge"
|
2970 |
|
2971 |
+
#: includes/B2S/Post/Item.php:395
|
2972 |
#, php-format
|
2973 |
msgid "next share by %s"
|
2974 |
msgstr "wird als nächstes von %s geteilt"
|
2975 |
|
2976 |
+
#: includes/B2S/Post/Item.php:417
|
2977 |
msgid "social media posts ready to be shared"
|
2978 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
2979 |
|
2980 |
+
#: includes/B2S/Post/Item.php:428
|
2981 |
msgid "via Browser-Extension"
|
2982 |
msgstr "via Browser-Extension"
|
2983 |
|
2984 |
+
#: includes/B2S/Post/Item.php:449
|
2985 |
msgid "saved"
|
2986 |
msgstr "gespeichert"
|
2987 |
|
2988 |
+
#: includes/B2S/Post/Item.php:469
|
2989 |
msgid "last saved"
|
2990 |
msgstr "zuletzt gespeichert:"
|
2991 |
|
2992 |
+
#: includes/B2S/Post/Item.php:596 includes/B2S/Post/Item.php:732
|
2993 |
#: includes/B2S/Ship/Save.php:427
|
2994 |
msgid "Retweet"
|
2995 |
msgstr "Retweet"
|
2996 |
|
2997 |
+
#: includes/B2S/Post/Item.php:602 includes/B2S/Post/Item.php:672
|
2998 |
+
#: includes/B2S/Post/Item.php:737
|
2999 |
msgid "select all"
|
3000 |
msgstr "alle auswählen"
|
3001 |
|
3002 |
+
#: includes/B2S/Post/Item.php:605
|
3003 |
msgid "show"
|
3004 |
msgstr "ansehen"
|
3005 |
|
3006 |
+
#: includes/B2S/Post/Item.php:612 includes/B2S/Ship/Save.php:438
|
3007 |
msgid "Please see"
|
3008 |
msgstr "siehe"
|
3009 |
|
3010 |
+
#: includes/B2S/Post/Item.php:618
|
3011 |
#, php-format
|
3012 |
msgid "sharing in progress by %s"
|
3013 |
msgstr "wird gerade von %s geteilt"
|
3014 |
|
3015 |
+
#: includes/B2S/Post/Item.php:618
|
3016 |
#, php-format
|
3017 |
msgid "shared by %s"
|
3018 |
msgstr "von %s geteilt"
|
3019 |
|
3020 |
+
#: includes/B2S/Post/Item.php:639 includes/B2S/Post/Item.php:652
|
3021 |
msgid "You want to delete a publish post entry?"
|
3022 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3023 |
|
3024 |
+
#: includes/B2S/Post/Item.php:640 includes/B2S/Post/Item.php:653
|
3025 |
msgid "delete from reporting"
|
3026 |
msgstr "aus Reporting löschen"
|
3027 |
|
3028 |
+
#: includes/B2S/Post/Item.php:643
|
3029 |
msgid "re-share"
|
3030 |
msgstr "erneut teilen"
|
3031 |
|
3032 |
+
#: includes/B2S/Post/Item.php:675
|
3033 |
#, php-format
|
3034 |
msgid "is waiting to shared by %s"
|
3035 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3036 |
|
3037 |
+
#: includes/B2S/Post/Item.php:705 includes/B2S/Ship/Save.php:408
|
3038 |
msgid "share"
|
3039 |
msgstr "teilen"
|
3040 |
|
3041 |
+
#: includes/B2S/Post/Item.php:713
|
3042 |
msgid "You want to delete your Social Media post?"
|
3043 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3044 |
|
3045 |
+
#: includes/B2S/Post/Item.php:747
|
3046 |
#, php-format
|
3047 |
msgid "last modified by %s"
|
3048 |
msgstr "zuletzt von %s bearbeitet"
|
3049 |
|
3050 |
+
#: includes/B2S/Post/Item.php:749
|
3051 |
msgid "is processed by the network"
|
3052 |
msgstr "wird vom Netzwerk verarbeitet"
|
3053 |
|
3054 |
+
#: includes/B2S/Post/Item.php:754
|
3055 |
#, php-format
|
3056 |
msgid "scheduled by %s"
|
3057 |
msgstr "von %s vorgeplant "
|
3058 |
|
3059 |
+
#: includes/B2S/Post/Item.php:759
|
3060 |
msgid "You want to edit your scheduled post?"
|
3061 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3062 |
|
3063 |
+
#: includes/B2S/Post/Item.php:760
|
3064 |
msgid "edit"
|
3065 |
msgstr "edit"
|
3066 |
|
3067 |
+
#: includes/B2S/Post/Item.php:771
|
3068 |
msgid "delete scheduling"
|
3069 |
msgstr "Planung löschen"
|
3070 |
|
3071 |
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82
|
3072 |
+
#: includes/B2S/Ship/Item.php:898
|
3073 |
msgid "Account"
|
3074 |
msgstr "Konto"
|
3075 |
|
3097 |
msgid "allow shortcodes in my post"
|
3098 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
3099 |
|
3100 |
+
#: includes/B2S/Settings/Item.php:88 includes/B2S/Ship/Item.php:844
|
3101 |
msgid "Hashtags"
|
3102 |
msgstr "Hashtags"
|
3103 |
|
3313 |
msgstr "Bild Url"
|
3314 |
|
3315 |
#: includes/B2S/Settings/Item.php:332 includes/B2S/Settings/Item.php:353
|
3316 |
+
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Image.php:87
|
3317 |
msgid "Image upload / Media Gallery"
|
3318 |
msgstr "Bild hochladen / Mediathek"
|
3319 |
|
3489 |
msgid "No images are included in your post."
|
3490 |
msgstr "In dem Beitrag sind keine Bilder hinterlegt"
|
3491 |
|
3492 |
+
#: includes/B2S/Ship/Image.php:70
|
3493 |
msgid "Apply image for all posts"
|
3494 |
msgstr "Bild für alle Posts übernehmen"
|
3495 |
|
3496 |
+
#: includes/B2S/Ship/Image.php:72
|
3497 |
+
msgid "Apply image"
|
3498 |
+
msgstr "Bild festlegen"
|
3499 |
+
|
3500 |
+
#: includes/B2S/Ship/Image.php:77 includes/B2S/Ship/Image.php:80
|
3501 |
msgid "Apply image for this post"
|
3502 |
msgstr "Bild für diesen Post übernehmen"
|
3503 |
|
3504 |
+
#: includes/B2S/Ship/Image.php:78
|
3505 |
msgid "Apply image for all og-meta networks"
|
3506 |
msgstr "Bild für alle og-meta-Netzwerke anwenden"
|
3507 |
|
3508 |
+
#: includes/B2S/Ship/Item.php:140
|
3509 |
msgid "Network does not support image for profiles"
|
3510 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
3511 |
|
3512 |
+
#: includes/B2S/Ship/Item.php:141 includes/B2S/Ship/Item.php:204
|
3513 |
msgid "Network defines image by link"
|
3514 |
msgstr "Netzwerk wählt selber das Bild aus"
|
3515 |
|
3516 |
+
#: includes/B2S/Ship/Item.php:143
|
3517 |
msgid "Supported HTML tags"
|
3518 |
msgstr "Erlaubte HTML-Elemente"
|
3519 |
|
3520 |
+
#: includes/B2S/Ship/Item.php:144 includes/B2S/Ship/Item.php:203
|
3521 |
msgid "Network does not support emojis"
|
3522 |
msgstr "Netzwerk unterstützt keine Emojis"
|
3523 |
|
3524 |
+
#: includes/B2S/Ship/Item.php:145 includes/B2S/Ship/Item.php:205
|
3525 |
msgid "Network does not support GIFs"
|
3526 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
3527 |
|
3528 |
+
#: includes/B2S/Ship/Item.php:187
|
3529 |
msgid "Text only"
|
3530 |
msgstr "nur Text"
|
3531 |
|
3532 |
+
#: includes/B2S/Ship/Item.php:202
|
3533 |
msgid "Network does not support image for pages"
|
3534 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
3535 |
|
3536 |
+
#: includes/B2S/Ship/Item.php:294
|
3537 |
msgid "Connection expires on 31 March 2019"
|
3538 |
msgstr "Die Verbindung endet am 31. März 2019."
|
3539 |
|
3540 |
+
#: includes/B2S/Ship/Item.php:298
|
3541 |
msgid "Connection expires on 2 April 2019"
|
3542 |
msgstr "Die Verbindung endet am 2. April 2019."
|
3543 |
|
3544 |
+
#: includes/B2S/Ship/Item.php:311
|
3545 |
msgid "post format"
|
3546 |
msgstr "Postformat"
|
3547 |
|
3548 |
+
#: includes/B2S/Ship/Item.php:326 includes/B2S/Ship/Item.php:1083
|
3549 |
msgid "Insert full-text"
|
3550 |
msgstr "ganzen Text einfügen"
|
3551 |
|
3552 |
+
#: includes/B2S/Ship/Item.php:328 includes/B2S/Ship/Item.php:1085
|
3553 |
msgid "Delete text"
|
3554 |
msgstr "Text löschen"
|
3555 |
|
3556 |
+
#: includes/B2S/Ship/Item.php:335 includes/B2S/Ship/Item.php:607
|
3557 |
+
#: includes/B2S/Ship/Item.php:949
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3558 |
msgid ""
|
3559 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3560 |
"allowed to post identical or substantially similar content to multiple "
|
3565 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3566 |
"mehreren Accounts zu posten."
|
3567 |
|
3568 |
+
#: includes/B2S/Ship/Item.php:335 includes/B2S/Ship/Item.php:607
|
3569 |
+
#: includes/B2S/Ship/Item.php:949
|
3570 |
msgid ""
|
3571 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3572 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3576 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
3577 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
3578 |
|
3579 |
+
#: includes/B2S/Ship/Item.php:335 includes/B2S/Ship/Item.php:607
|
3580 |
+
#: includes/B2S/Ship/Item.php:949
|
3581 |
msgid "Learn more about this"
|
3582 |
msgstr "Erfahre mehr darüber"
|
3583 |
|
3584 |
+
#: includes/B2S/Ship/Item.php:339
|
3585 |
msgid ""
|
3586 |
"Please note: XING allows identical posts to be published only once within a "
|
3587 |
"group and no more than three times across different groups."
|
3590 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
3591 |
"Gruppen."
|
3592 |
|
3593 |
+
#: includes/B2S/Ship/Item.php:339
|
3594 |
msgid "Read more"
|
3595 |
msgstr "Weiterlesen"
|
3596 |
|
3597 |
+
#: includes/B2S/Ship/Item.php:344
|
3598 |
msgid ""
|
3599 |
"Please keep in mind that users are not allowed to post identical or "
|
3600 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3604 |
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
3605 |
"Updates in einem Konto zu veröffentlichen."
|
3606 |
|
3607 |
+
#: includes/B2S/Ship/Item.php:344
|
3608 |
msgid ""
|
3609 |
"Violating these rules can result in suspending your account. Always vary "
|
3610 |
"your content with different images, comments, hashtags or handles to prevent "
|
3614 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
3615 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
3616 |
|
3617 |
+
#: includes/B2S/Ship/Item.php:364
|
3618 |
msgid "hide calendar"
|
3619 |
msgstr "Planungskalender verbergen"
|
3620 |
|
3621 |
+
#: includes/B2S/Ship/Item.php:421 includes/B2S/Ship/Item.php:450
|
3622 |
+
#: includes/B2S/Ship/Item.php:479 includes/B2S/Ship/Item.php:508
|
3623 |
+
#: includes/B2S/Ship/Item.php:536 includes/B2S/Ship/Item.php:564
|
3624 |
+
#: includes/B2S/Ship/Item.php:595 includes/B2S/Ship/Item.php:618
|
3625 |
+
#: includes/B2S/Ship/Item.php:639 includes/B2S/Ship/Item.php:660
|
3626 |
+
#: includes/B2S/Ship/Item.php:681 includes/B2S/Ship/Item.php:702
|
3627 |
+
#: includes/B2S/Ship/Item.php:712
|
3628 |
msgid "Write something about your post..."
|
3629 |
msgstr "Schreibe etwas..."
|
3630 |
|
3631 |
+
#: includes/B2S/Ship/Item.php:436 includes/B2S/Ship/Item.php:494
|
3632 |
+
#: includes/B2S/Ship/Item.php:523 includes/B2S/Ship/Item.php:551
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3633 |
msgid ""
|
3634 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3635 |
"network"
|
3636 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
3637 |
|
3638 |
+
#: includes/B2S/Ship/Item.php:439 includes/B2S/Ship/Item.php:468
|
3639 |
+
#: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:526
|
3640 |
+
#: includes/B2S/Ship/Item.php:554
|
3641 |
msgid ""
|
3642 |
"You want to change your link image, link title and link description for this "
|
3643 |
"network? Click here."
|
3644 |
msgstr ""
|
3645 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
3646 |
|
3647 |
+
#: includes/B2S/Ship/Item.php:441 includes/B2S/Ship/Item.php:499
|
3648 |
+
#: includes/B2S/Ship/Item.php:528 includes/B2S/Ship/Item.php:556
|
3649 |
msgid "OG Meta title"
|
3650 |
msgstr "OG Titel"
|
3651 |
|
3652 |
+
#: includes/B2S/Ship/Item.php:442 includes/B2S/Ship/Item.php:500
|
3653 |
+
#: includes/B2S/Ship/Item.php:529 includes/B2S/Ship/Item.php:557
|
3654 |
msgid "OG Meta description"
|
3655 |
msgstr "OG Beschreibung"
|
3656 |
|
3657 |
+
#: includes/B2S/Ship/Item.php:465
|
3658 |
msgid ""
|
3659 |
"Info: Change Card Meta tags image, title and description for this network"
|
3660 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
3661 |
|
3662 |
+
#: includes/B2S/Ship/Item.php:470
|
3663 |
msgid "Card Meta title"
|
3664 |
msgstr "Card Titel"
|
3665 |
|
3666 |
+
#: includes/B2S/Ship/Item.php:471
|
3667 |
msgid "Card Meta description"
|
3668 |
msgstr "Card Beschreibung"
|
3669 |
|
3670 |
+
#: includes/B2S/Ship/Item.php:728
|
3671 |
msgid "required"
|
3672 |
msgstr "erforderlich"
|
3673 |
|
3674 |
+
#: includes/B2S/Ship/Item.php:818
|
3675 |
msgid "Jobs & Projects"
|
3676 |
msgstr "Stellenangebote & Projekte"
|
3677 |
|
3678 |
+
#: includes/B2S/Ship/Item.php:819
|
3679 |
msgid "Events"
|
3680 |
msgstr "Events"
|
3681 |
|
3682 |
+
#: includes/B2S/Ship/Item.php:820
|
3683 |
msgid "Classified Ads"
|
3684 |
msgstr "Kleinanzeigen"
|
3685 |
|
3686 |
+
#: includes/B2S/Ship/Item.php:822
|
3687 |
msgid "Offer"
|
3688 |
msgstr "Angebot"
|
3689 |
|
3690 |
+
#: includes/B2S/Ship/Item.php:823
|
3691 |
msgid "Request"
|
3692 |
msgstr "Anfrage"
|
3693 |
|
3694 |
+
#: includes/B2S/Ship/Item.php:834
|
3695 |
msgid "The Headline..."
|
3696 |
msgstr "Die Überschrift..."
|
3697 |
|
3698 |
+
#: includes/B2S/Ship/Item.php:842
|
3699 |
+
#, php-format
|
3700 |
+
msgid "max. %s Tags"
|
3701 |
+
msgstr "max. %s Tags"
|
3702 |
+
|
3703 |
+
#: includes/B2S/Ship/Item.php:880
|
3704 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3705 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
3706 |
|
3707 |
+
#: includes/B2S/Ship/Item.php:899 views/b2s/partials/post-edit-modal.php:73
|
3708 |
msgid "Delay"
|
3709 |
msgstr "Verzögerung"
|
3710 |
|
3711 |
+
#: includes/B2S/Ship/Item.php:909 includes/B2S/Ship/Item.php:910
|
3712 |
+
#: includes/B2S/Ship/Item.php:911 includes/B2S/Ship/Item.php:912
|
3713 |
#: views/b2s/partials/post-edit-modal.php:77
|
3714 |
#: views/b2s/partials/post-edit-modal.php:78
|
3715 |
#: views/b2s/partials/post-edit-modal.php:79
|
3717 |
msgid "min"
|
3718 |
msgstr "min"
|
3719 |
|
3720 |
+
#: includes/B2S/Ship/Item.php:917
|
3721 |
msgid "Add Retweet"
|
3722 |
msgstr "Retweet hinzufügen"
|
3723 |
|
3724 |
+
#: includes/B2S/Ship/Item.php:937
|
3725 |
msgid "Share Now"
|
3726 |
msgstr "Sofort teilen"
|
3727 |
|
3728 |
+
#: includes/B2S/Ship/Item.php:942
|
3729 |
msgid "Schedule Recurrent Post"
|
3730 |
msgstr "regelmäßig Planen"
|
3731 |
|
3732 |
+
#: includes/B2S/Ship/Item.php:978 views/b2s/partials/post-edit-modal.php:47
|
3733 |
msgid ""
|
3734 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3735 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
3744 |
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
3745 |
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
3746 |
|
3747 |
+
#: includes/B2S/Ship/Item.php:982 views/b2s/partials/post-edit-modal.php:51
|
3748 |
msgid ""
|
3749 |
"Please note: Google will shut down Google+ for all private accounts "
|
3750 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3756 |
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
3757 |
"andere Inhalte herunterladen kannst:"
|
3758 |
|
3759 |
+
#: includes/B2S/Ship/Item.php:985
|
3760 |
msgid "Repeats"
|
3761 |
msgstr "Wiederholen"
|
3762 |
|
3763 |
+
#: includes/B2S/Ship/Item.php:986 includes/B2S/Ship/Item.php:989
|
3764 |
msgid "Duration"
|
3765 |
msgstr "Dauer"
|
3766 |
|
3767 |
+
#: includes/B2S/Ship/Item.php:990
|
3768 |
msgid "Number of repeats"
|
3769 |
msgstr "Anzahl der Wiederholungen"
|
3770 |
|
3771 |
+
#: includes/B2S/Ship/Item.php:991
|
3772 |
msgid "Day of month"
|
3773 |
msgstr "Tag im Monat"
|
3774 |
|
3775 |
+
#: includes/B2S/Ship/Item.php:992
|
3776 |
msgid "Repeats every (days)"
|
3777 |
msgstr "Wiederholt sich alle X Tage"
|
3778 |
|
3779 |
+
#: includes/B2S/Ship/Item.php:994
|
3780 |
msgid "Start date"
|
3781 |
msgstr "Startdatum"
|
3782 |
|
3783 |
+
#: includes/B2S/Ship/Item.php:995
|
3784 |
msgid "Time to publish"
|
3785 |
msgstr "Veröffentlichungszeitpunkt"
|
3786 |
|
3787 |
+
#: includes/B2S/Ship/Item.php:1004
|
3788 |
msgid "weekly"
|
3789 |
msgstr "wöchentlich"
|
3790 |
|
3791 |
+
#: includes/B2S/Ship/Item.php:1005
|
3792 |
msgid "monthly"
|
3793 |
msgstr "monatlich"
|
3794 |
|
3795 |
+
#: includes/B2S/Ship/Item.php:1006
|
3796 |
msgid "own period"
|
3797 |
msgstr "Eigener Zeitraum"
|
3798 |
|
3799 |
+
#: includes/B2S/Ship/Item.php:1012
|
3800 |
msgid "Week"
|
3801 |
msgstr "Woche"
|
3802 |
|
3803 |
+
#: includes/B2S/Ship/Item.php:1012
|
3804 |
msgid "Weeks"
|
3805 |
msgstr "Wochen"
|
3806 |
|
3807 |
+
#: includes/B2S/Ship/Item.php:1021
|
3808 |
msgid "Month"
|
3809 |
msgstr "Monat"
|
3810 |
|
3811 |
+
#: includes/B2S/Ship/Item.php:1021
|
3812 |
msgid "Months"
|
3813 |
msgstr "Monate"
|
3814 |
|
3815 |
+
#: includes/B2S/Ship/Item.php:1041
|
3816 |
msgid "End Of Month"
|
3817 |
msgstr "Monatsende"
|
3818 |
|
3819 |
+
#: includes/B2S/Ship/Item.php:1046
|
3820 |
msgid "Timespan"
|
3821 |
msgstr "Zeitspanne"
|
3822 |
|
3823 |
+
#: includes/B2S/Ship/Item.php:1049 views/b2s/partials/post-edit-modal.php:63
|
3824 |
#: views/b2s/partials/post-edit-modal.php:66
|
3825 |
msgid "Time"
|
3826 |
msgstr "Mal"
|
3827 |
|
3828 |
+
#: includes/B2S/Ship/Item.php:1054
|
3829 |
msgid "Mon"
|
3830 |
msgstr "Mo"
|
3831 |
|
3832 |
+
#: includes/B2S/Ship/Item.php:1055
|
3833 |
msgid "Tue"
|
3834 |
msgstr "Di"
|
3835 |
|
3836 |
+
#: includes/B2S/Ship/Item.php:1056
|
3837 |
msgid "Wed"
|
3838 |
msgstr "Mi"
|
3839 |
|
3840 |
+
#: includes/B2S/Ship/Item.php:1057
|
3841 |
msgid "Thu"
|
3842 |
msgstr "Do"
|
3843 |
|
3844 |
+
#: includes/B2S/Ship/Item.php:1058
|
3845 |
msgid "Fri"
|
3846 |
msgstr "Fr"
|
3847 |
|
3848 |
+
#: includes/B2S/Ship/Item.php:1059
|
3849 |
msgid "Sat"
|
3850 |
msgstr "Sa"
|
3851 |
|
3852 |
+
#: includes/B2S/Ship/Item.php:1060
|
3853 |
msgid "Sun"
|
3854 |
msgstr "So"
|
3855 |
|
3856 |
+
#: includes/B2S/Ship/Item.php:1067
|
3857 |
msgid "add another post"
|
3858 |
msgstr "einen weiteren Post anlegen"
|
3859 |
|
3860 |
+
#: includes/B2S/Ship/Item.php:1081
|
3861 |
msgid "Copy from original"
|
3862 |
msgstr "Originaltext kopieren"
|
3863 |
|
3864 |
+
#: includes/B2S/Ship/Item.php:1097
|
3865 |
msgid "Apply Settings To All Networks"
|
3866 |
msgstr "Planung für alle Netzwerke übernehmen"
|
3867 |
|
3868 |
+
#: includes/B2S/Ship/Item.php:1098
|
3869 |
msgid "Save as best time for this network"
|
3870 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
3871 |
|
4892 |
msgstr "Version"
|
4893 |
|
4894 |
#: views/b2s/html/sidebar.php:65
|
4895 |
+
msgid "Website & Blog Content"
|
4896 |
+
msgstr "Webseiten & Blog Content"
|
4897 |
|
4898 |
#: views/b2s/html/sidebar.php:69
|
4899 |
+
msgid "Share Content"
|
4900 |
+
msgstr "Content teilen"
|
4901 |
+
|
4902 |
+
#: views/b2s/html/sidebar.php:81
|
4903 |
+
msgid "Social Media Post"
|
4904 |
+
msgstr "Social Media Post"
|
4905 |
|
4906 |
#: views/b2s/html/sidebar.php:85
|
4907 |
msgid "Create Post"
|
4915 |
msgid "all Posts"
|
4916 |
msgstr "Alle Beiträge"
|
4917 |
|
4918 |
+
#: views/b2s/html/sidebar.php:138
|
4919 |
msgid "Upgrade License"
|
4920 |
msgstr "Lizenz upgraden"
|
4921 |
|
4922 |
+
#: views/b2s/html/sidebar.php:143
|
4923 |
msgid "Plans & Prices"
|
4924 |
msgstr "Tarife & Preise"
|
4925 |
|
4926 |
+
#: views/b2s/html/sidebar.php:160
|
4927 |
msgid ""
|
4928 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4929 |
"anything that does not work for you, please contact us!"
|
4931 |
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
4932 |
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
4933 |
|
4934 |
+
#: views/b2s/html/sidebar.php:174
|
4935 |
msgid "Blog2Social Blog News"
|
4936 |
msgstr "Blog2Social Blog News"
|
4937 |
|
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: 2019-11-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -15,280 +15,298 @@ msgstr ""
|
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.2.0; wp-5.0.3"
|
17 |
|
18 |
-
#: includes/Loader.php:
|
19 |
msgid "Modify pin board"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: includes/Loader.php:
|
23 |
msgid "Edit group settings"
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: includes/Loader.php:
|
27 |
msgid "Modify subreddit"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: includes/Loader.php:
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes/Loader.php:
|
35 |
msgid "Auto-Post on Social Media"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes/Loader.php:
|
39 |
msgid "Social Media Content Calendar"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/Loader.php:
|
43 |
msgid "This post will be shared into your social media from"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/Loader.php:
|
47 |
msgid "show details"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/Loader.php:
|
51 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/Loader.php:
|
55 |
msgid ""
|
56 |
"Please, make sure that your post are publish on this blog on this moment. "
|
57 |
"Then you can auto post your post with Blog2social."
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: includes/Loader.php:
|
61 |
msgid ""
|
62 |
"There are no social network accounts assigned to your selected network "
|
63 |
"collection. Please assign at least one social network account or select "
|
64 |
"another network collection."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/Loader.php:
|
68 |
#: views/b2s/html/sidebar.ship.php:44
|
69 |
msgid "Upgrade to Premium"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: includes/Loader.php:
|
73 |
msgid "Notifications"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: includes/Loader.php:
|
77 |
-
#: views/b2s/html/sidebar.php:
|
78 |
msgid "Shared Posts"
|
79 |
msgstr ""
|
80 |
|
81 |
-
#: includes/Loader.php:
|
82 |
-
#: views/b2s/html/sidebar.php:
|
83 |
msgid "Instant Sharing"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: includes/Loader.php:
|
87 |
-
#: views/b2s/html/
|
|
|
88 |
msgid "Drafts"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: includes/Loader.php:
|
92 |
-
#: views/b2s/html/sidebar.php:
|
93 |
msgid "Scheduled Posts"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: includes/Loader.php:
|
97 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: includes/Loader.php:
|
101 |
#: includes/B2S/Network/Item.php:150 includes/B2S/Network/Item.php:150
|
102 |
-
#: includes/B2S/Network/Item.php:
|
103 |
#: includes/B2S/Settings/Item.php:245 includes/B2S/Ship/Portale.php:39
|
104 |
#: includes/B2S/Ship/Portale.php:41 includes/B2S/Ship/Portale.php:41
|
105 |
msgid "Profile"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: includes/Loader.php:
|
109 |
-
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:
|
110 |
-
#: includes/B2S/Network/Item.php:
|
111 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
112 |
msgid "Page"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: includes/Loader.php:
|
116 |
-
#: includes/B2S/Network/Item.php:
|
117 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
118 |
msgid "Group"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/Loader.php:
|
122 |
msgid "Company"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: includes/Loader.php:
|
126 |
msgid "Business"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: includes/Loader.php:
|
130 |
-
|
|
|
|
|
|
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/Loader.php:
|
134 |
msgid ""
|
135 |
"Your authorization has expired. Please reconnect your account in the "
|
136 |
"Blog2Social network settings."
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/Loader.php:
|
140 |
msgid "The network has marked the post as spam or abusive."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/Loader.php:
|
144 |
msgid ""
|
145 |
"We don't have the permission to publish your post. Please check your "
|
146 |
"authorization."
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: includes/Loader.php:
|
150 |
#, php-format
|
151 |
msgid ""
|
152 |
"Your authorization is interrupted. Please check your authorization. Please "
|
153 |
"see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/Loader.php:
|
157 |
msgid "Your daily limit has been reached."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: includes/Loader.php:
|
161 |
msgid ""
|
162 |
"Your post could not be posted, because your image is not available or the "
|
163 |
"image source does not allow to publish"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/Loader.php:
|
167 |
#, php-format
|
168 |
msgid ""
|
169 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
170 |
"href=\"%s\">FAQ</a>"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/Loader.php:
|
174 |
#, php-format
|
175 |
msgid ""
|
176 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
177 |
"FAQ</a>"
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: includes/Loader.php:
|
181 |
msgid ""
|
182 |
"Your daily limit for this network has been reached. Please try again later."
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/Loader.php:
|
186 |
#, php-format
|
187 |
msgid ""
|
188 |
"The network can not publish special characters such as Emoji. Please see <a "
|
189 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: includes/Loader.php:
|
193 |
msgid "Your post is a duplicate."
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/Loader.php:
|
197 |
msgid "The network requires a public url."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/Loader.php:
|
201 |
msgid ""
|
202 |
"Your blog post was not available for the network at the time of publication."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/Loader.php:
|
206 |
msgid "You have already retweeted this post."
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/Loader.php:
|
210 |
msgid ""
|
211 |
"This XING API is no longer supported by XING. Please connect your XING "
|
212 |
"accounts with the new XING interface to reschedule your posts."
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: includes/Loader.php:
|
216 |
-
msgid ""
|
217 |
-
"There was no image in the meta data of the linked post. Posts without images "
|
218 |
-
"cannot be shared on image networks."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
222 |
msgid ""
|
223 |
"Your post could not be posted, because your image can not be processed by "
|
224 |
"the network."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: includes/Loader.php:
|
228 |
#, php-format
|
229 |
msgid ""
|
230 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
231 |
"href=\"%s\">FAQ</a>"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: includes/Loader.php:
|
235 |
msgid "Your group can not be found by the network."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: includes/Loader.php:
|
239 |
msgid "Dashboard"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: includes/Loader.php:
|
243 |
-
msgid "
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: includes/Loader.php:
|
247 |
-
|
248 |
-
|
|
|
|
|
|
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/Loader.php:
|
252 |
-
|
253 |
-
msgid "Content Curation"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
|
|
257 |
msgid "Networks"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/Loader.php:
|
261 |
-
#: views/b2s/html/sidebar.php:
|
262 |
msgid "Settings"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/Loader.php:
|
266 |
msgid "PR-Service"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/Loader.php:
|
270 |
-
#: views/b2s/html/sidebar.php:
|
271 |
msgid "Help & Support"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/Loader.php:
|
275 |
msgid "Premium"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/Loader.php:
|
279 |
msgid "PREMIUM"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/Loader.php:
|
283 |
#: views/b2s/html/sidebar.ship.php:24
|
284 |
msgid "Blog2Social"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/Loader.php:
|
288 |
-
msgid "Blog2Social needs Wordpress Version 4.
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/Loader.php:
|
292 |
#: includes/System.php:84
|
293 |
#, php-format
|
294 |
msgid ""
|
@@ -296,32 +314,36 @@ msgid ""
|
|
296 |
"our FAQ</a>"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/Loader.php:
|
300 |
msgid "or"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/Loader.php:
|
304 |
msgid "back to install plugins"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/Notice.php:
|
308 |
msgid "Rate it!"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/Notice.php:
|
312 |
msgid ""
|
313 |
"If you like Blog2Social, please give us a 5 star rating. I there is anything "
|
314 |
"that does not work for you, please contact us!!"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: includes/Notice.php:
|
318 |
msgid "RATE BLOG2SOCIAL"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/Notice.php:
|
322 |
msgid "hide"
|
323 |
msgstr ""
|
324 |
|
|
|
|
|
|
|
|
|
325 |
#: includes/System.php:69
|
326 |
msgid ""
|
327 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
@@ -342,159 +364,203 @@ msgid ""
|
|
342 |
"higher, or ask your server administrator to do it for you."
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: includes/Tools.php:
|
346 |
#: views/b2s/html/sidebar.ship.php:29
|
347 |
msgid "License"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: includes/Tools.php:
|
351 |
msgid "Greece"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/Tools.php:
|
355 |
msgid "India"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/Tools.php:
|
359 |
msgid "United States of America"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: includes/Tools.php:
|
363 |
msgid "Ireland"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: includes/Tools.php:
|
367 |
msgid "Italy"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: includes/Tools.php:
|
371 |
msgid "Switzerland"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#: includes/Tools.php:
|
375 |
msgid "Czechoslovakia"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: includes/Tools.php:
|
379 |
msgid "Indonesia"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: includes/Tools.php:
|
383 |
msgid "Spain"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/Tools.php:
|
387 |
msgid "Canada"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: includes/Tools.php:
|
391 |
msgid "Great Britain"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/Tools.php:
|
395 |
msgid "Russia"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/Tools.php:
|
399 |
msgid "Netherlands"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/Tools.php:
|
403 |
msgid "Portugal"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: includes/Tools.php:
|
407 |
msgid "Norway"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: includes/Tools.php:
|
411 |
msgid "Turkey"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: includes/Tools.php:
|
415 |
msgid "Australia"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: includes/Tools.php:
|
419 |
msgid "Austria"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: includes/Tools.php:
|
423 |
msgid "Poland"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: includes/Tools.php:
|
427 |
msgid "France"
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: includes/Tools.php:
|
431 |
msgid "Romania"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: includes/Tools.php:
|
435 |
msgid "Germany"
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: includes/Tools.php:
|
439 |
msgid "Denmark"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: includes/Tools.php:
|
443 |
msgid "New Zealand"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: includes/Tools.php:
|
447 |
msgid "Finland"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: includes/Tools.php:
|
451 |
msgid "Hungary"
|
452 |
msgstr ""
|
453 |
|
454 |
-
#: includes/Tools.php:
|
455 |
msgid "Japan"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: includes/Tools.php:
|
459 |
msgid "Argentina"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: includes/Tools.php:
|
463 |
msgid "Korea"
|
464 |
msgstr ""
|
465 |
|
466 |
-
#: includes/Tools.php:
|
467 |
msgid "Sweden"
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: includes/Tools.php:
|
471 |
msgid "Mexico"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: includes/Tools.php:
|
475 |
msgid "Slovakia"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: includes/Tools.php:
|
479 |
msgid "Chile"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: includes/Tools.php:
|
483 |
msgid "Colombia"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: includes/Tools.php:
|
487 |
msgid "South Africa"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: includes/Tools.php:
|
491 |
msgid "Philippines"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: includes/Tools.php:
|
495 |
msgid "is determined automatically"
|
496 |
msgstr ""
|
497 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
498 |
#: views/notice.php:12
|
499 |
msgid "Connection is broken..."
|
500 |
msgstr ""
|
@@ -533,18 +599,18 @@ msgstr ""
|
|
533 |
msgid "Please contact our support!"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/Ajax/Post.php:
|
537 |
-
#: includes/B2S/Network/Item.php:
|
538 |
-
#: includes/B2S/Network/Item.php:
|
539 |
-
#: includes/B2S/Network/Item.php:
|
540 |
msgid "Unknown username"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/Ajax/Post.php:
|
544 |
-
#: includes/B2S/Post/Item.php:
|
545 |
-
#: includes/B2S/Post/Item.php:
|
546 |
-
#: includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:
|
547 |
-
#: includes/B2S/Ship/Item.php:
|
548 |
msgid "delete"
|
549 |
msgstr ""
|
550 |
|
@@ -556,7 +622,7 @@ msgstr ""
|
|
556 |
msgid "last auto-post:"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/B2S/PostBox.php:76 views/b2s/ship.php:
|
560 |
#: views/b2s/html/header.php:55
|
561 |
msgid "The connection to the server failed. Try again!"
|
562 |
msgstr ""
|
@@ -578,7 +644,7 @@ msgstr ""
|
|
578 |
msgid "Network settings"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/B2S/PostBox.php:81 views/b2s/ship.php:
|
582 |
msgid ""
|
583 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
584 |
"Networks do not allow postings from local installations."
|
@@ -589,8 +655,8 @@ msgid "Custom Sharing & Scheduling"
|
|
589 |
msgstr ""
|
590 |
|
591 |
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101
|
592 |
-
#: views/b2s/ship.php:
|
593 |
-
#: includes/B2S/Network/Item.php:
|
594 |
msgid "Info"
|
595 |
msgstr ""
|
596 |
|
@@ -617,26 +683,28 @@ msgstr ""
|
|
617 |
msgid "enable Auto-Posting"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: includes/B2S/PostBox.php:108 views/b2s/
|
621 |
-
#:
|
622 |
-
#: includes/B2S/
|
623 |
-
#: includes/B2S/Network/Item.php:
|
624 |
-
#: includes/B2S/
|
625 |
-
#: includes/B2S/
|
626 |
-
#:
|
|
|
627 |
#: views/b2s/widgets/posts.php:18
|
628 |
msgid "SMART"
|
629 |
msgstr ""
|
630 |
|
631 |
-
#: includes/B2S/PostBox.php:115 views/b2s/curation.draft.php:
|
632 |
#: views/b2s/network.php:58 views/b2s/network.php:146 views/b2s/network.php:222
|
633 |
-
#: views/b2s/network.php:
|
634 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
635 |
-
#: views/b2s/post.calendar.php:
|
636 |
-
#: views/b2s/post.
|
637 |
-
#: views/b2s/post.
|
638 |
-
#: views/b2s/
|
639 |
-
#: views/b2s/
|
|
|
640 |
msgid "Loading..."
|
641 |
msgstr ""
|
642 |
|
@@ -678,140 +746,149 @@ msgstr ""
|
|
678 |
msgid "You want to auto-post your blog post?"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: includes/B2S/PostBox.php:145 views/b2s/curation.php:
|
682 |
-
#: views/b2s/
|
683 |
-
#: views/b2s/ship.php:
|
684 |
-
#: views/b2s/html/footer.php:
|
685 |
-
#: views/b2s/html/footer.php:
|
686 |
-
#: views/b2s/html/footer.php:
|
|
|
687 |
msgid "With Blog2Social Premium you can:"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: includes/B2S/PostBox.php:148 views/b2s/curation.php:
|
691 |
-
#: views/b2s/
|
692 |
-
#: views/b2s/ship.php:
|
693 |
-
#: views/b2s/html/footer.php:
|
694 |
-
#: views/b2s/html/footer.php:
|
695 |
-
#: views/b2s/html/footer.php:
|
696 |
-
#: views/b2s/html/header.php:325
|
697 |
msgid "Post on pages and groups"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: includes/B2S/PostBox.php:149 views/b2s/curation.php:
|
701 |
-
#: views/b2s/
|
702 |
-
#: views/b2s/ship.php:
|
703 |
-
#: views/b2s/html/footer.php:
|
704 |
-
#: views/b2s/html/footer.php:
|
705 |
-
#: views/b2s/html/footer.php:
|
|
|
706 |
msgid "Share on multiple profiles, pages and groups"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: includes/B2S/PostBox.php:150 views/b2s/curation.php:
|
710 |
-
#: views/b2s/
|
711 |
-
#: views/b2s/ship.php:
|
712 |
-
#: views/b2s/html/footer.php:
|
713 |
-
#: views/b2s/html/footer.php:
|
714 |
-
#: views/b2s/html/footer.php:
|
715 |
-
#: views/b2s/html/footer.php:448
|
716 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
717 |
msgstr ""
|
718 |
|
719 |
-
#: includes/B2S/PostBox.php:151 views/b2s/curation.php:
|
720 |
-
#: views/b2s/
|
721 |
-
#: views/b2s/ship.php:
|
722 |
-
#: views/b2s/html/footer.php:
|
723 |
-
#: views/b2s/html/footer.php:
|
724 |
-
#: views/b2s/html/footer.php:
|
|
|
725 |
msgid "Schedule your posts at the best times on each network"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: includes/B2S/PostBox.php:152 views/b2s/curation.php:
|
729 |
-
#: views/b2s/
|
730 |
-
#: views/b2s/ship.php:
|
731 |
-
#: views/b2s/html/footer.php:
|
732 |
-
#: views/b2s/html/footer.php:
|
733 |
-
#: views/b2s/html/footer.php:
|
|
|
734 |
msgid ""
|
735 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
736 |
"social media posts"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#: includes/B2S/PostBox.php:153 views/b2s/curation.php:
|
740 |
-
#: views/b2s/
|
741 |
-
#: views/b2s/ship.php:
|
742 |
-
#: views/b2s/html/footer.php:
|
743 |
-
#: views/b2s/html/footer.php:
|
744 |
-
#: views/b2s/html/footer.php:
|
|
|
745 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: includes/B2S/PostBox.php:154 views/b2s/curation.php:
|
749 |
-
#: views/b2s/
|
750 |
-
#: views/b2s/ship.php:
|
751 |
-
#: views/b2s/html/footer.php:
|
752 |
-
#: views/b2s/html/footer.php:
|
753 |
-
#: views/b2s/html/footer.php:
|
|
|
754 |
msgid "Schedule and re-share old posts"
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/B2S/PostBox.php:155 views/b2s/curation.php:
|
758 |
-
#: views/b2s/
|
759 |
-
#: views/b2s/ship.php:
|
760 |
-
#: views/b2s/html/footer.php:
|
761 |
-
#: views/b2s/html/footer.php:
|
762 |
-
#: views/b2s/html/footer.php:
|
763 |
-
#: views/b2s/html/footer.php:453
|
764 |
msgid "Select link format or image format for your posts"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: includes/B2S/PostBox.php:156 views/b2s/curation.php:
|
768 |
-
#: views/b2s/
|
769 |
-
#: views/b2s/ship.php:
|
770 |
-
#: views/b2s/html/footer.php:
|
771 |
-
#: views/b2s/html/footer.php:
|
772 |
-
#: views/b2s/html/footer.php:
|
773 |
-
#: views/b2s/html/footer.php:454
|
774 |
msgid "Select individual images per post"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/B2S/PostBox.php:157 views/b2s/curation.php:
|
778 |
-
#: views/b2s/
|
779 |
-
#: views/b2s/ship.php:
|
780 |
-
#: views/b2s/html/footer.php:
|
781 |
-
#: views/b2s/html/footer.php:
|
782 |
-
#: views/b2s/html/footer.php:
|
|
|
783 |
msgid ""
|
784 |
"Reporting & calendar: keep track of your published and scheduled social "
|
785 |
"media posts"
|
786 |
msgstr ""
|
787 |
|
788 |
-
#: includes/B2S/PostBox.php:159 views/b2s/curation.php:
|
789 |
-
#: views/b2s/
|
790 |
-
#: views/b2s/ship.php:
|
791 |
-
#: views/b2s/html/footer.php:
|
792 |
-
#: views/b2s/html/footer.php:
|
793 |
-
#: views/b2s/html/footer.php:
|
|
|
794 |
msgid "Upgrade to SMART and above"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/B2S/PostBox.php:161 views/b2s/curation.php:
|
798 |
-
#: views/b2s/
|
799 |
-
#: views/b2s/ship.php:
|
800 |
-
#: views/b2s/html/footer.php:
|
801 |
-
#: views/b2s/html/footer.php:
|
802 |
-
#: views/b2s/html/footer.php:
|
803 |
-
#: views/b2s/html/footer.php:
|
|
|
804 |
#, php-format
|
805 |
msgid ""
|
806 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
807 |
"Blog2Social Premium</a> (no payment information needed)"
|
808 |
msgstr ""
|
809 |
|
810 |
-
#: includes/B2S/PostBox.php:174 includes/B2S/Curation/View.php:
|
811 |
msgid "Select network collection:"
|
812 |
msgstr ""
|
813 |
|
814 |
-
#: includes/B2S/PostBox.php:185 includes/B2S/Curation/View.php:
|
815 |
msgid "Select Twitter profile:"
|
816 |
msgstr ""
|
817 |
|
@@ -823,7 +900,7 @@ msgstr ""
|
|
823 |
msgid "immediately after publishing"
|
824 |
msgstr ""
|
825 |
|
826 |
-
#: includes/B2S/PostBox.php:220 includes/B2S/Curation/View.php:
|
827 |
msgid "at scheduled times"
|
828 |
msgstr ""
|
829 |
|
@@ -843,7 +920,7 @@ msgstr ""
|
|
843 |
msgid "Select date:"
|
844 |
msgstr ""
|
845 |
|
846 |
-
#: includes/B2S/PostBox.php:231 includes/B2S/Ship/Item.php:
|
847 |
msgid "show calendar"
|
848 |
msgstr ""
|
849 |
|
@@ -872,24 +949,24 @@ msgstr ""
|
|
872 |
msgid "Get the Blog2Social Browser Extension"
|
873 |
msgstr ""
|
874 |
|
875 |
-
#: views/b2s/curation.draft.php:
|
876 |
msgid "Delete Draft"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: views/b2s/curation.draft.php:
|
880 |
msgid "Are you sure you want to delete this draft?"
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: views/b2s/curation.draft.php:
|
884 |
#: views/b2s/network.php:106 views/b2s/post.approve.php:91
|
885 |
#: views/b2s/post.approve.php:108 views/b2s/post.draft.php:80
|
886 |
#: views/b2s/post.notice.php:78 views/b2s/post.publish.php:78
|
887 |
-
#: views/b2s/post.sched.php:92 views/b2s/ship.php:
|
888 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
889 |
msgid "NO"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: views/b2s/curation.draft.php:
|
893 |
#: views/b2s/network.php:170 views/b2s/post.approve.php:92
|
894 |
#: views/b2s/post.draft.php:81 views/b2s/post.notice.php:79
|
895 |
#: views/b2s/post.publish.php:79 views/b2s/post.sched.php:93
|
@@ -897,103 +974,143 @@ msgstr ""
|
|
897 |
msgid "YES, delete"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: views/b2s/curation.php:
|
901 |
msgid "No link preview available. Please check your link."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: views/b2s/curation.php:
|
905 |
msgid ""
|
906 |
"No connected networks. Please make sure to connect at least one social media "
|
907 |
"account."
|
908 |
msgstr ""
|
909 |
|
910 |
-
#: views/b2s/curation.php:
|
911 |
msgid "Invalid data. Please check your data."
|
912 |
msgstr ""
|
913 |
|
914 |
-
#: views/b2s/curation.php:
|
915 |
msgid "Saved as draft."
|
916 |
msgstr ""
|
917 |
|
918 |
-
#: views/b2s/curation.php:45
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
919 |
msgid "Enter a link you want share on your social media channels"
|
920 |
msgstr ""
|
921 |
|
922 |
-
#: views/b2s/curation.php:
|
923 |
msgid "Please enter a valid link"
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: views/b2s/curation.php:
|
927 |
msgid "Enter link"
|
928 |
msgstr ""
|
929 |
|
930 |
-
#: views/b2s/curation.php:
|
931 |
msgid "continue"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: views/b2s/curation.php:
|
935 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: views/b2s/curation.php:
|
939 |
-
|
940 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
941 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
942 |
msgid "published"
|
943 |
msgstr ""
|
944 |
|
945 |
-
#: views/b2s/curation.php:
|
946 |
-
#: views/b2s/ship.php:
|
947 |
msgid "Do you want to mark this post as published ?"
|
948 |
msgstr ""
|
949 |
|
950 |
-
#: views/b2s/curation.php:
|
951 |
-
#: views/b2s/ship.php:
|
952 |
msgid "YES"
|
953 |
msgstr ""
|
954 |
|
955 |
-
#: views/b2s/curation.php:
|
956 |
-
#: views/b2s/ship.php:
|
957 |
msgid "Need to schedule your posts?"
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: views/b2s/curation.php:
|
961 |
-
#: views/b2s/ship.php:
|
962 |
msgid "Blog2Social Premium covers everything you need."
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: views/b2s/curation.php:
|
966 |
-
#: views/b2s/ship.php:
|
967 |
msgid "Schedule for specific dates"
|
968 |
msgstr ""
|
969 |
|
970 |
-
#: views/b2s/curation.php:
|
971 |
-
#: views/b2s/ship.php:
|
972 |
msgid ""
|
973 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
974 |
"desired date and you are ready to go!"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: views/b2s/curation.php:
|
978 |
-
#: views/b2s/ship.php:
|
979 |
msgid "Schedule post recurrently"
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: views/b2s/curation.php:
|
983 |
-
#: views/b2s/ship.php:
|
984 |
msgid ""
|
985 |
"You have evergreen content you want to re-share from time to time in your "
|
986 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
987 |
"or recurringly at specific times."
|
988 |
msgstr ""
|
989 |
|
990 |
-
#: views/b2s/curation.php:
|
991 |
-
#: views/b2s/ship.php:
|
992 |
msgid "Best Time Scheduler"
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: views/b2s/curation.php:
|
996 |
-
#: views/b2s/ship.php:
|
997 |
msgid ""
|
998 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
999 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -1001,6 +1118,22 @@ msgid ""
|
|
1001 |
"lifespan of your posts."
|
1002 |
msgstr ""
|
1003 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1004 |
#: views/b2s/dashboard.php:17
|
1005 |
msgid "What's New"
|
1006 |
msgstr ""
|
@@ -1022,9 +1155,9 @@ msgid "Follow us"
|
|
1022 |
msgstr ""
|
1023 |
|
1024 |
#: views/b2s/network.php:24 views/b2s/network.php:25
|
1025 |
-
#: views/b2s/post.calendar.php:
|
1026 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1027 |
-
#: views/b2s/html/post.navbar.php:
|
1028 |
msgid "filter"
|
1029 |
msgstr ""
|
1030 |
|
@@ -1038,7 +1171,7 @@ msgstr ""
|
|
1038 |
|
1039 |
#: views/b2s/network.php:34 includes/B2S/Network/Item.php:150
|
1040 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:158
|
1041 |
-
#: includes/B2S/Ship/Image.php:
|
1042 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:41
|
1043 |
msgid "PRO"
|
1044 |
msgstr ""
|
@@ -1047,12 +1180,12 @@ msgstr ""
|
|
1047 |
msgid "Delete"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#: views/b2s/network.php:45 views/b2s/ship.php:
|
1051 |
#: views/b2s/html/footer.php:207
|
1052 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: views/b2s/network.php:46 views/b2s/ship.php:
|
1056 |
msgid "Load Best Times"
|
1057 |
msgstr ""
|
1058 |
|
@@ -1088,8 +1221,8 @@ msgid ""
|
|
1088 |
"Business listings."
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: views/b2s/network.php:127 views/b2s/premium.php:36 views/b2s/ship.php:
|
1092 |
-
#: includes/B2S/Ship/Item.php:
|
1093 |
msgid "Learn more"
|
1094 |
msgstr ""
|
1095 |
|
@@ -1155,7 +1288,7 @@ msgstr ""
|
|
1155 |
msgid "Advanced Connection Preferences"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: views/b2s/network.php:229 views/b2s/network.php:
|
1159 |
msgid "Move the connection to another network collection."
|
1160 |
msgstr ""
|
1161 |
|
@@ -1164,7 +1297,7 @@ msgstr ""
|
|
1164 |
msgid "An error occured. Please contact our support."
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: views/b2s/network.php:241 views/b2s/network.php:
|
1168 |
msgid "move"
|
1169 |
msgstr ""
|
1170 |
|
@@ -1172,7 +1305,7 @@ msgstr ""
|
|
1172 |
msgid "You need at least one network collection"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: views/b2s/network.php:258 views/b2s/network.php:
|
1176 |
msgid "Assign the connection to other blog users"
|
1177 |
msgstr ""
|
1178 |
|
@@ -1206,11 +1339,19 @@ msgstr ""
|
|
1206 |
msgid "There are no other users to whom the connection can be assigned."
|
1207 |
msgstr ""
|
1208 |
|
1209 |
-
#: views/b2s/network.php:293 views/b2s/network.php:
|
1210 |
msgid "assign"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1214 |
msgid ""
|
1215 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
1216 |
"network collection and assign your social media connections to other blog "
|
@@ -1220,28 +1361,29 @@ msgid ""
|
|
1220 |
"group."
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: views/b2s/network.php:
|
1224 |
msgid "Upgrade to Blog2Social Business"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: views/b2s/network.php:
|
1228 |
msgid "My Profile"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: views/b2s/network.php:
|
|
|
1232 |
msgid "Edit Post Template"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: views/b2s/network.php:
|
1236 |
#: includes/B2S/Settings/Item.php:292
|
1237 |
msgid "save"
|
1238 |
msgstr ""
|
1239 |
|
1240 |
-
#: views/b2s/network.php:
|
1241 |
msgid "Instant Caching for Facebook Link Posts"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: views/b2s/network.php:
|
1245 |
msgid ""
|
1246 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
1247 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -1249,72 +1391,76 @@ msgid ""
|
|
1249 |
"Facebook always pulls the current meta data of your blog post."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: views/b2s/network.php:
|
1253 |
msgid "Choose your Post Format"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: views/b2s/network.php:
|
1257 |
-
#: views/b2s/network.php:
|
1258 |
msgid ""
|
1259 |
"Decide in which post format you want to post your content: Link post or "
|
1260 |
"image post."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: views/b2s/network.php:
|
1264 |
msgid ""
|
1265 |
"Decide in wich form you want to post your Content. Either as image with "
|
1266 |
"frame, or as image cut out."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: views/b2s/network.php:
|
1270 |
msgid "Post Content"
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: views/b2s/network.php:
|
1274 |
msgid ""
|
1275 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1276 |
"textarea and customize them as you like."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: views/b2s/network.php:
|
1280 |
msgid "Legend"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: views/b2s/network.php:
|
1284 |
msgid "The title of your post"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: views/b2s/network.php:
|
1288 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: views/b2s/network.php:
|
1292 |
msgid "The content of your post"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: views/b2s/network.php:
|
1296 |
msgid "The tags you have set in your post."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
1300 |
msgid "Character limit"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: views/b2s/network.php:
|
1304 |
msgid ""
|
1305 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1306 |
"individually. Your text will be shortened after the last comma, period, or "
|
1307 |
"space character within your character limit."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: views/b2s/network.php:
|
1311 |
msgid ""
|
1312 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
1313 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
1314 |
"(document settings) of your post."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: views/b2s/network.php:
|
1318 |
msgid ""
|
1319 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
1320 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
@@ -1323,11 +1469,11 @@ msgid ""
|
|
1323 |
"network."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: views/b2s/network.php:
|
1327 |
msgid "Connect with Pinterest"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: views/b2s/network.php:
|
1331 |
msgid ""
|
1332 |
"Please make sure to use your original Pinterest login data (email and "
|
1333 |
"password). Social Login via Facebook or Google login data will not work here."
|
@@ -1335,29 +1481,29 @@ msgid ""
|
|
1335 |
"deactivated to ensure a stable connection to Blog2Social."
|
1336 |
msgstr ""
|
1337 |
|
1338 |
-
#: views/b2s/network.php:
|
1339 |
msgid "An error occurred! Please try again."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: views/b2s/network.php:
|
1343 |
-
#: views/b2s/ship.php:
|
1344 |
#, php-format
|
1345 |
msgid ""
|
1346 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
1347 |
"Upgrade to Blog2Social Premium</a>"
|
1348 |
msgstr ""
|
1349 |
|
1350 |
-
#: views/b2s/network.php:
|
1351 |
msgid "Invalid Data! Please try again."
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: views/b2s/network.php:
|
1355 |
msgid ""
|
1356 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
1357 |
"up at least one pinboard to pin on your Pinterest account!"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: views/b2s/network.php:
|
1361 |
#, php-format
|
1362 |
msgid ""
|
1363 |
"Login failed. Please check your login data for typos and please check your "
|
@@ -1365,44 +1511,50 @@ msgid ""
|
|
1365 |
"account: <a target=\"_blank\" href=\"%s\">%s</a>"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: views/b2s/network.php:
|
1369 |
msgid "Pinterest has rejected the connection to your blog"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: views/b2s/network.php:
|
1373 |
msgid "Please select your currect server location and connect again"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: views/b2s/network.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
1377 |
msgid ""
|
1378 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
1379 |
"on your profile."
|
1380 |
msgstr ""
|
1381 |
|
1382 |
-
#: views/b2s/network.php:
|
1383 |
#: views/b2s/html/header.php:331 views/prg/html/form.php:141
|
1384 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1385 |
#: views/prg/html/form.php:220
|
1386 |
msgid "E-Mail"
|
1387 |
msgstr ""
|
1388 |
|
1389 |
-
#: views/b2s/network.php:
|
1390 |
msgid "Password"
|
1391 |
msgstr ""
|
1392 |
|
1393 |
-
#: views/b2s/network.php:
|
1394 |
msgid "Server-Location"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: views/b2s/network.php:
|
1398 |
msgid "Select Pinboard"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
-
#: views/b2s/network.php:
|
1402 |
msgid "authorize"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: views/b2s/network.php:
|
1406 |
msgid "confirm"
|
1407 |
msgstr ""
|
1408 |
|
@@ -1428,31 +1580,20 @@ msgstr ""
|
|
1428 |
msgid "show all"
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:
|
1432 |
-
#: includes/B2S/Post/Filter.php:50 includes/B2S/Post/Item.php:
|
1433 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1434 |
msgid "scheduled"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:
|
1438 |
-
#: includes/B2S/
|
1439 |
-
#: views/b2s/html/footer.php:111
|
1440 |
-
msgid "Link Post"
|
1441 |
-
msgstr ""
|
1442 |
-
|
1443 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:181
|
1444 |
-
#: includes/B2S/Settings/Item.php:408 includes/B2S/Settings/Item.php:427
|
1445 |
-
msgid "Image Post"
|
1446 |
-
msgstr ""
|
1447 |
-
|
1448 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:181
|
1449 |
-
#: includes/B2S/Network/Item.php:599 includes/B2S/Network/Item.php:602
|
1450 |
#: includes/B2S/Settings/Item.php:394 views/b2s/html/footer.php:128
|
1451 |
msgid "Image with frame"
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:
|
1455 |
-
#: includes/B2S/Network/Item.php:
|
1456 |
#: includes/B2S/Settings/Item.php:408 views/b2s/html/footer.php:133
|
1457 |
msgid "Image cut out"
|
1458 |
msgstr ""
|
@@ -1461,71 +1602,71 @@ msgstr ""
|
|
1461 |
msgid "add post"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
-
#: views/b2s/post.calendar.php:
|
1465 |
-
#: views/b2s/ship.php:
|
1466 |
msgid "Choose your"
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: views/b2s/post.calendar.php:
|
1470 |
-
#: views/b2s/ship.php:
|
1471 |
msgid "Post Format"
|
1472 |
msgstr ""
|
1473 |
|
1474 |
-
#: views/b2s/post.calendar.php:
|
1475 |
-
#: views/b2s/ship.php:
|
1476 |
msgid "for:"
|
1477 |
msgstr ""
|
1478 |
|
1479 |
-
#: views/b2s/post.calendar.php:
|
1480 |
-
#: views/b2s/ship.php:
|
1481 |
msgid ""
|
1482 |
"Define the default settings for the custom post format for all of your "
|
1483 |
"Facebook accounts in the Blog2Social settings."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
-
#: views/b2s/post.calendar.php:
|
1487 |
-
#: views/b2s/ship.php:
|
1488 |
msgid ""
|
1489 |
"Define the default settings for the custom post format for all of your "
|
1490 |
"Twitter accounts in the Blog2Social settings."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: views/b2s/post.calendar.php:
|
1494 |
-
#: views/b2s/ship.php:
|
1495 |
msgid ""
|
1496 |
"Define the default settings for the custom post format for all of your "
|
1497 |
"LinkedIn accounts in the Blog2Social settings."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
-
#: views/b2s/post.calendar.php:
|
1501 |
-
#: views/b2s/ship.php:
|
1502 |
msgid ""
|
1503 |
"Define the default settings for the custom post format for all of your "
|
1504 |
"Instagram accounts in the Blog2Social settings."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
-
#: views/b2s/post.calendar.php:
|
1508 |
-
#: views/b2s/ship.php:
|
1509 |
msgid "Select image for"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
-
#: views/b2s/post.calendar.php:
|
1513 |
msgid "What would you like to share?"
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: views/b2s/post.calendar.php:
|
1517 |
msgid "Share content from your blog"
|
1518 |
msgstr ""
|
1519 |
|
1520 |
-
#: views/b2s/post.calendar.php:
|
1521 |
msgid "select"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: views/b2s/post.calendar.php:
|
1525 |
msgid "Share content from other sources"
|
1526 |
msgstr ""
|
1527 |
|
1528 |
-
#: views/b2s/post.calendar.php:
|
1529 |
msgid "Select a post"
|
1530 |
msgstr ""
|
1531 |
|
@@ -1537,6 +1678,10 @@ msgstr ""
|
|
1537 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1538 |
msgstr ""
|
1539 |
|
|
|
|
|
|
|
|
|
1540 |
#: views/b2s/post.notice.php:69 views/b2s/post.publish.php:69
|
1541 |
#: views/b2s/widgets/posts.php:58
|
1542 |
msgid "Delete entries from the reporting"
|
@@ -1646,7 +1791,7 @@ msgid ""
|
|
1646 |
msgstr ""
|
1647 |
|
1648 |
#: views/b2s/premium.php:109 views/b2s/settings.php:35
|
1649 |
-
#: includes/B2S/Post/Item.php:
|
1650 |
msgid "Auto-Posting"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1746,11 +1891,11 @@ msgstr ""
|
|
1746 |
msgid "Social Meta Data"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: views/b2s/settings.php:76 includes/B2S/Ship/Image.php:
|
1750 |
msgid "Select or upload an image from media gallery"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: views/b2s/settings.php:77 includes/B2S/Ship/Image.php:
|
1754 |
msgid "Use image"
|
1755 |
msgstr ""
|
1756 |
|
@@ -1804,113 +1949,109 @@ msgid ""
|
|
1804 |
"drop-down menu."
|
1805 |
msgstr ""
|
1806 |
|
1807 |
-
#: views/b2s/ship.php:
|
1808 |
-
#: includes/B2S/Post/Item.php:
|
1809 |
msgid "draft"
|
1810 |
msgstr ""
|
1811 |
|
1812 |
-
#: views/b2s/ship.php:
|
1813 |
msgid "Social Media Scheduling & Sharing"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: views/b2s/ship.php:
|
1817 |
-
#: includes/B2S/Curation/View.php:
|
1818 |
#: includes/B2S/Settings/Item.php:349 views/prg/html/form.php:26
|
1819 |
#: views/prg/html/form.php:28
|
1820 |
msgid "Title"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#: views/b2s/ship.php:
|
1824 |
msgid "on blog"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
-
#: views/b2s/ship.php:
|
1828 |
msgid "scroll to bottom"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
-
#: views/b2s/ship.php:
|
1832 |
msgid "You want to load your time settings?"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: views/b2s/ship.php:
|
1836 |
msgid "Load My Times Settings"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: views/b2s/ship.php:
|
1840 |
msgid "Social Accounts"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: views/b2s/ship.php:
|
1844 |
msgid "Add more..."
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: views/b2s/ship.php:
|
1848 |
msgid "Profiles | Pages | Groups"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: views/b2s/ship.php:
|
1852 |
msgid "Save network collection"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: views/b2s/ship.php:
|
1856 |
msgid "network connected"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#: views/b2s/ship.php:
|
1860 |
msgid "requires image"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: views/b2s/ship.php:
|
1864 |
msgid "refresh authorization"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: views/b2s/ship.php:
|
1868 |
msgid "change website address"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
-
#: views/b2s/ship.php:
|
1872 |
msgid "First, connect or select network before posting"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
-
#: views/b2s/ship.php:
|
1876 |
msgid "connect"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
-
#: views/b2s/ship.php:
|
1880 |
msgid "scroll to top"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
-
#: views/b2s/ship.php:
|
1884 |
-
#: includes/B2S/Curation/View.php:
|
1885 |
msgid "Share"
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#: views/b2s/ship.php:
|
1889 |
-
#: includes/B2S/Curation/View.php:
|
1890 |
msgid "Save as Draft"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: views/b2s/ship.php:
|
1894 |
msgid "Time zone"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: views/b2s/ship.php:
|
1898 |
-
msgid "Re-share this post"
|
1899 |
-
msgstr ""
|
1900 |
-
|
1901 |
-
#: views/b2s/ship.php:262
|
1902 |
msgid "Share new post on Social Media"
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#: views/b2s/ship.php:
|
1906 |
msgid "Connect for"
|
1907 |
msgstr ""
|
1908 |
|
1909 |
-
#: views/b2s/ship.php:
|
1910 |
msgid "Re-share this Post"
|
1911 |
msgstr ""
|
1912 |
|
1913 |
-
#: views/b2s/ship.php:
|
1914 |
msgid ""
|
1915 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
1916 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -1924,15 +2065,15 @@ msgid ""
|
|
1924 |
"according to your current sharing preferences."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#: views/b2s/ship.php:
|
1928 |
msgid "You want re-share your blog post?"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: views/b2s/ship.php:
|
1932 |
msgid "Save Network Settings"
|
1933 |
msgstr ""
|
1934 |
|
1935 |
-
#: views/b2s/ship.php:
|
1936 |
msgid ""
|
1937 |
"You can save your current network settings as \"Standard\" network settings "
|
1938 |
"for any future sharing activities or as a \"Profile\" to choose from "
|
@@ -1948,46 +2089,46 @@ msgid ""
|
|
1948 |
"account to select or remove an account from the current sharing scheme."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
-
#: views/b2s/ship.php:
|
1952 |
msgid "Your blog post is not yet published on your Wordpress!"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#: views/b2s/ship.php:
|
1956 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
1957 |
msgstr ""
|
1958 |
|
1959 |
-
#: views/b2s/ship.php:
|
1960 |
msgid "Schedule your post"
|
1961 |
msgstr ""
|
1962 |
|
1963 |
-
#: views/b2s/ship.php:
|
1964 |
msgid "Ignore & share"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
-
#: views/b2s/ship.php:
|
1968 |
msgid "Important infomations about XING groups"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: views/b2s/ship.php:
|
1972 |
msgid "Overwrite Draft"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
-
#: views/b2s/ship.php:
|
1976 |
msgid ""
|
1977 |
"There is already a saved draft for this WordPress post or page. If you save "
|
1978 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
1979 |
"overwrite your draft?"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: views/b2s/ship.php:
|
1983 |
msgid "add Schedule"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: views/b2s/ship.php:
|
1987 |
msgid "Give me more information"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:
|
1991 |
#: includes/B2S/Ship/Save.php:438
|
1992 |
msgid "FAQ"
|
1993 |
msgstr ""
|
@@ -1996,11 +2137,6 @@ msgstr ""
|
|
1996 |
msgid "Troubleshooting-Tool"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: views/b2s/support.php:19 views/b2s/support.php:22
|
2000 |
-
#: views/b2s/html/post.navbar.php:9
|
2001 |
-
msgid "NEW"
|
2002 |
-
msgstr ""
|
2003 |
-
|
2004 |
#: views/b2s/support.php:22
|
2005 |
msgid "Sharing-Debugger"
|
2006 |
msgstr ""
|
@@ -2212,25 +2348,21 @@ msgstr ""
|
|
2212 |
msgid "Yes, I accept"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: includes/B2S/Curation/View.php:
|
2216 |
-
msgid "Write something..."
|
2217 |
-
msgstr ""
|
2218 |
-
|
2219 |
-
#: includes/B2S/Curation/View.php:59
|
2220 |
msgid "Share your post"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: includes/B2S/Curation/View.php:
|
2224 |
msgid "immediately"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: includes/B2S/Curation/View.php:
|
2228 |
-
#: includes/B2S/Ship/Item.php:
|
2229 |
#: views/b2s/partials/post-edit-modal.php:65
|
2230 |
msgid "Date"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: includes/B2S/Curation/View.php:
|
2234 |
msgid "Customize & Schedule"
|
2235 |
msgstr ""
|
2236 |
|
@@ -2242,7 +2374,7 @@ msgstr ""
|
|
2242 |
msgid "Show all"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#: includes/B2S/Network/Item.php:62 includes/B2S/Network/Item.php:
|
2246 |
msgid "My profile"
|
2247 |
msgstr ""
|
2248 |
|
@@ -2262,7 +2394,7 @@ msgstr ""
|
|
2262 |
msgid "You want to connect a network page?"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: includes/B2S/Network/Item.php:157 includes/B2S/Network/Item.php:
|
2266 |
#: includes/B2S/Ship/Portale.php:31
|
2267 |
msgid "Publication"
|
2268 |
msgstr ""
|
@@ -2271,132 +2403,141 @@ msgstr ""
|
|
2271 |
msgid "You want to connect a social media group?"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: includes/B2S/Network/Item.php:
|
2275 |
-
|
|
|
|
|
|
|
|
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: includes/B2S/Network/Item.php:
|
2279 |
msgid "Connections"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: includes/B2S/Network/Item.php:
|
2283 |
msgid "Best Time Manager"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: includes/B2S/Network/Item.php:
|
2287 |
-
#: includes/B2S/Network/Item.php:
|
2288 |
msgid "To reactivate this connection,"
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#: includes/B2S/Network/Item.php:
|
2292 |
-
#: includes/B2S/Network/Item.php:
|
2293 |
msgid "please upgrade"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: includes/B2S/Network/Item.php:
|
2297 |
-
#: includes/B2S/Network/Item.php:
|
2298 |
msgid "Authorization is interrupted since"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: includes/B2S/Network/Item.php:
|
2302 |
-
#: includes/B2S/Network/Item.php:
|
2303 |
msgid "Assigned by"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: includes/B2S/Network/Item.php:
|
2307 |
-
#: includes/B2S/Network/Item.php:
|
2308 |
msgid "Days"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: includes/B2S/Network/Item.php:
|
2312 |
msgid "Employer Branding"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
-
#: includes/B2S/Network/Item.php:
|
2316 |
msgid "Connection currently assigned to"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
-
#: includes/B2S/Network/Item.php:
|
2320 |
msgid "Successfully saved"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
-
#: includes/B2S/Network/Item.php:
|
2324 |
msgid "Failed to save"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: includes/B2S/Network/Item.php:
|
2328 |
msgid "Failed to load the default template"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: includes/B2S/Network/Item.php:
|
2332 |
msgid ""
|
2333 |
-
"Upgrade to Blog2Social Smart
|
2334 |
-
"
|
2335 |
-
"
|
2336 |
-
"
|
2337 |
-
"
|
2338 |
-
"
|
|
|
|
|
|
|
|
|
|
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: includes/B2S/Network/Item.php:
|
2342 |
msgid "Activate Instant Caching"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: includes/B2S/Network/Item.php:
|
2346 |
msgid "Format"
|
2347 |
msgstr ""
|
2348 |
|
2349 |
-
#: includes/B2S/Network/Item.php:
|
2350 |
msgid "Load default settings"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: includes/B2S/Network/Item.php:
|
2354 |
-
#: includes/B2S/Ship/Item.php:
|
2355 |
msgid "Link"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: includes/B2S/Network/Item.php:
|
2359 |
msgid "Image"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: includes/B2S/Network/Item.php:
|
2363 |
msgid "Content"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: includes/B2S/Network/Item.php:
|
2367 |
msgid ""
|
2368 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2369 |
"in your post."
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: includes/B2S/Network/Item.php:
|
2373 |
msgid "clear"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: includes/B2S/Network/Item.php:
|
2377 |
msgid "The link will be added automatically at the end of the post."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: includes/B2S/Network/Item.php:
|
2381 |
msgid "Network limit"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
-
#: includes/B2S/Network/Item.php:
|
2385 |
-
#: includes/B2S/Network/Item.php:
|
2386 |
-
#: includes/B2S/Ship/Item.php:
|
2387 |
-
#: includes/B2S/Ship/Item.php:
|
2388 |
-
#: includes/B2S/Ship/Item.php:
|
2389 |
-
#: includes/B2S/Ship/Item.php:
|
2390 |
msgid "characters"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: includes/B2S/Network/Item.php:
|
2394 |
msgid "recommended length"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: includes/B2S/Network/Item.php:
|
2398 |
-
#: includes/B2S/Network/Item.php:
|
2399 |
-
#: includes/B2S/Network/Item.php:
|
2400 |
msgid "Preview"
|
2401 |
msgstr ""
|
2402 |
|
@@ -2460,156 +2601,158 @@ msgstr ""
|
|
2460 |
msgid "scheduled post(s)"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: includes/B2S/Post/Item.php:
|
2464 |
-
msgid "You have
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#: includes/B2S/Post/Item.php:
|
2468 |
-
msgid "You have
|
2469 |
msgstr ""
|
2470 |
|
2471 |
-
#: includes/B2S/Post/Item.php:
|
2472 |
msgid "curated post"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
-
#: includes/B2S/Post/Item.php:
|
2476 |
msgid "last shared on social media"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
-
#: includes/B2S/Post/Item.php:
|
2480 |
-
#: includes/B2S/Post/Item.php:
|
|
|
2481 |
msgid "Share on Social Media"
|
2482 |
msgstr ""
|
2483 |
|
2484 |
-
#: includes/B2S/Post/Item.php:
|
2485 |
msgid "load Draft"
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#: includes/B2S/Post/Item.php:
|
2489 |
-
#: includes/B2S/Post/Item.php:
|
|
|
2490 |
msgid "Author"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: includes/B2S/Post/Item.php:
|
2494 |
-
#: includes/B2S/Post/Item.php:
|
2495 |
msgid "Details"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: includes/B2S/Post/Item.php:
|
2499 |
msgid "shared social media posts"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: includes/B2S/Post/Item.php:
|
2503 |
#, php-format
|
2504 |
msgid "latest share by %s"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
-
#: includes/B2S/Post/Item.php:
|
2508 |
msgid "scheduled social media posts"
|
2509 |
msgstr ""
|
2510 |
|
2511 |
-
#: includes/B2S/Post/Item.php:
|
2512 |
#, php-format
|
2513 |
msgid "next share by %s"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
-
#: includes/B2S/Post/Item.php:
|
2517 |
msgid "social media posts ready to be shared"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
-
#: includes/B2S/Post/Item.php:
|
2521 |
msgid "via Browser-Extension"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
-
#: includes/B2S/Post/Item.php:
|
2525 |
msgid "saved"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: includes/B2S/Post/Item.php:
|
2529 |
msgid "last saved"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: includes/B2S/Post/Item.php:
|
2533 |
#: includes/B2S/Ship/Save.php:427
|
2534 |
msgid "Retweet"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: includes/B2S/Post/Item.php:
|
2538 |
-
#: includes/B2S/Post/Item.php:
|
2539 |
msgid "select all"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: includes/B2S/Post/Item.php:
|
2543 |
msgid "show"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: includes/B2S/Post/Item.php:
|
2547 |
msgid "Please see"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: includes/B2S/Post/Item.php:
|
2551 |
#, php-format
|
2552 |
msgid "sharing in progress by %s"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
-
#: includes/B2S/Post/Item.php:
|
2556 |
#, php-format
|
2557 |
msgid "shared by %s"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
-
#: includes/B2S/Post/Item.php:
|
2561 |
msgid "You want to delete a publish post entry?"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
-
#: includes/B2S/Post/Item.php:
|
2565 |
msgid "delete from reporting"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#: includes/B2S/Post/Item.php:
|
2569 |
msgid "re-share"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: includes/B2S/Post/Item.php:
|
2573 |
#, php-format
|
2574 |
msgid "is waiting to shared by %s"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: includes/B2S/Post/Item.php:
|
2578 |
msgid "share"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: includes/B2S/Post/Item.php:
|
2582 |
msgid "You want to delete your Social Media post?"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: includes/B2S/Post/Item.php:
|
2586 |
#, php-format
|
2587 |
msgid "last modified by %s"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: includes/B2S/Post/Item.php:
|
2591 |
msgid "is processed by the network"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: includes/B2S/Post/Item.php:
|
2595 |
#, php-format
|
2596 |
msgid "scheduled by %s"
|
2597 |
msgstr ""
|
2598 |
|
2599 |
-
#: includes/B2S/Post/Item.php:
|
2600 |
msgid "You want to edit your scheduled post?"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
-
#: includes/B2S/Post/Item.php:
|
2604 |
msgid "edit"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
#: includes/B2S/Post/Item.php:
|
2608 |
msgid "delete scheduling"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82
|
2612 |
-
#: includes/B2S/Ship/Item.php:
|
2613 |
msgid "Account"
|
2614 |
msgstr ""
|
2615 |
|
@@ -2637,7 +2780,7 @@ msgstr ""
|
|
2637 |
msgid "allow shortcodes in my post"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
-
#: includes/B2S/Settings/Item.php:88 includes/B2S/Ship/Item.php:
|
2641 |
msgid "Hashtags"
|
2642 |
msgstr ""
|
2643 |
|
@@ -2824,7 +2967,7 @@ msgid "Image URL"
|
|
2824 |
msgstr ""
|
2825 |
|
2826 |
#: includes/B2S/Settings/Item.php:332 includes/B2S/Settings/Item.php:353
|
2827 |
-
#: includes/B2S/Ship/Image.php:
|
2828 |
msgid "Image upload / Media Gallery"
|
2829 |
msgstr ""
|
2830 |
|
@@ -2955,216 +3098,210 @@ msgstr ""
|
|
2955 |
msgid "No images are included in your post."
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: includes/B2S/Ship/Image.php:
|
2959 |
msgid "Apply image for all posts"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: includes/B2S/Ship/Image.php:
|
|
|
|
|
|
|
|
|
2963 |
msgid "Apply image for this post"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: includes/B2S/Ship/Image.php:
|
2967 |
msgid "Apply image for all og-meta networks"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: includes/B2S/Ship/Item.php:
|
2971 |
msgid "Network does not support image for profiles"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: includes/B2S/Ship/Item.php:
|
2975 |
msgid "Network defines image by link"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: includes/B2S/Ship/Item.php:
|
2979 |
msgid "Supported HTML tags"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: includes/B2S/Ship/Item.php:
|
2983 |
msgid "Network does not support emojis"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: includes/B2S/Ship/Item.php:
|
2987 |
msgid "Network does not support GIFs"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: includes/B2S/Ship/Item.php:
|
2991 |
msgid "Text only"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: includes/B2S/Ship/Item.php:
|
2995 |
msgid "Network does not support image for pages"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: includes/B2S/Ship/Item.php:
|
2999 |
msgid "Connection expires on 31 March 2019"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: includes/B2S/Ship/Item.php:
|
3003 |
msgid "Connection expires on 2 April 2019"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: includes/B2S/Ship/Item.php:
|
3007 |
msgid "post format"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: includes/B2S/Ship/Item.php:
|
3011 |
msgid "Insert full-text"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: includes/B2S/Ship/Item.php:
|
3015 |
msgid "Delete text"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: includes/B2S/Ship/Item.php:
|
3019 |
-
|
3020 |
-
"You can customize your post with individual comments, @-handles, emojis, and "
|
3021 |
-
"more in the Instant Sharing window, after planning your post."
|
3022 |
-
msgstr ""
|
3023 |
-
|
3024 |
-
#: includes/B2S/Ship/Item.php:339 includes/B2S/Ship/Item.php:576
|
3025 |
-
#: includes/B2S/Ship/Item.php:875
|
3026 |
msgid ""
|
3027 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3028 |
"allowed to post identical or substantially similar content to multiple "
|
3029 |
"accounts or multiple duplicate updates on one account."
|
3030 |
msgstr ""
|
3031 |
|
3032 |
-
#: includes/B2S/Ship/Item.php:
|
3033 |
-
#: includes/B2S/Ship/Item.php:
|
3034 |
msgid ""
|
3035 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3036 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3037 |
"duplicate posts."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: includes/B2S/Ship/Item.php:
|
3041 |
-
#: includes/B2S/Ship/Item.php:
|
3042 |
msgid "Learn more about this"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: includes/B2S/Ship/Item.php:
|
3046 |
msgid ""
|
3047 |
"Please note: XING allows identical posts to be published only once within a "
|
3048 |
"group and no more than three times across different groups."
|
3049 |
msgstr ""
|
3050 |
|
3051 |
-
#: includes/B2S/Ship/Item.php:
|
3052 |
msgid "Read more"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: includes/B2S/Ship/Item.php:
|
3056 |
msgid ""
|
3057 |
"Please keep in mind that users are not allowed to post identical or "
|
3058 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3059 |
"updates on one account."
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: includes/B2S/Ship/Item.php:
|
3063 |
msgid ""
|
3064 |
"Violating these rules can result in suspending your account. Always vary "
|
3065 |
"your content with different images, comments, hashtags or handles to prevent "
|
3066 |
"duplicate posts."
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: includes/B2S/Ship/Item.php:
|
3070 |
msgid "hide calendar"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: includes/B2S/Ship/Item.php:
|
3074 |
-
#: includes/B2S/Ship/Item.php:
|
3075 |
-
#: includes/B2S/Ship/Item.php:
|
3076 |
-
#: includes/B2S/Ship/Item.php:
|
3077 |
-
#: includes/B2S/Ship/Item.php:
|
3078 |
-
#: includes/B2S/Ship/Item.php:
|
3079 |
-
#: includes/B2S/Ship/Item.php:
|
3080 |
msgid "Write something about your post..."
|
3081 |
msgstr ""
|
3082 |
|
3083 |
-
#: includes/B2S/Ship/Item.php:
|
3084 |
-
#: includes/B2S/Ship/Item.php:
|
3085 |
-
#: includes/B2S/Ship/Item.php:526 includes/B2S/Ship/Item.php:564
|
3086 |
-
#: includes/B2S/Ship/Item.php:582 includes/B2S/Ship/Item.php:598
|
3087 |
-
#: includes/B2S/Ship/Item.php:614 includes/B2S/Ship/Item.php:630
|
3088 |
-
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:680
|
3089 |
-
msgid "Change image"
|
3090 |
-
msgstr ""
|
3091 |
-
|
3092 |
-
#: includes/B2S/Ship/Item.php:435 includes/B2S/Ship/Item.php:483
|
3093 |
-
#: includes/B2S/Ship/Item.php:507 includes/B2S/Ship/Item.php:530
|
3094 |
msgid ""
|
3095 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3096 |
"network"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#: includes/B2S/Ship/Item.php:
|
3100 |
-
#: includes/B2S/Ship/Item.php:
|
3101 |
-
#: includes/B2S/Ship/Item.php:
|
3102 |
msgid ""
|
3103 |
"You want to change your link image, link title and link description for this "
|
3104 |
"network? Click here."
|
3105 |
msgstr ""
|
3106 |
|
3107 |
-
#: includes/B2S/Ship/Item.php:
|
3108 |
-
#: includes/B2S/Ship/Item.php:
|
3109 |
msgid "OG Meta title"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
-
#: includes/B2S/Ship/Item.php:
|
3113 |
-
#: includes/B2S/Ship/Item.php:
|
3114 |
msgid "OG Meta description"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: includes/B2S/Ship/Item.php:
|
3118 |
msgid ""
|
3119 |
"Info: Change Card Meta tags image, title and description for this network"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: includes/B2S/Ship/Item.php:
|
3123 |
msgid "Card Meta title"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: includes/B2S/Ship/Item.php:
|
3127 |
msgid "Card Meta description"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: includes/B2S/Ship/Item.php:
|
3131 |
msgid "required"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: includes/B2S/Ship/Item.php:
|
3135 |
msgid "Jobs & Projects"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: includes/B2S/Ship/Item.php:
|
3139 |
msgid "Events"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: includes/B2S/Ship/Item.php:
|
3143 |
msgid "Classified Ads"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: includes/B2S/Ship/Item.php:
|
3147 |
msgid "Offer"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: includes/B2S/Ship/Item.php:
|
3151 |
msgid "Request"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: includes/B2S/Ship/Item.php:
|
3155 |
msgid "The Headline..."
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
|
|
|
|
|
|
|
|
3159 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: includes/B2S/Ship/Item.php:
|
3163 |
msgid "Delay"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: includes/B2S/Ship/Item.php:
|
3167 |
-
#: includes/B2S/Ship/Item.php:
|
3168 |
#: views/b2s/partials/post-edit-modal.php:77
|
3169 |
#: views/b2s/partials/post-edit-modal.php:78
|
3170 |
#: views/b2s/partials/post-edit-modal.php:79
|
@@ -3172,19 +3309,19 @@ msgstr ""
|
|
3172 |
msgid "min"
|
3173 |
msgstr ""
|
3174 |
|
3175 |
-
#: includes/B2S/Ship/Item.php:
|
3176 |
msgid "Add Retweet"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
-
#: includes/B2S/Ship/Item.php:
|
3180 |
msgid "Share Now"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: includes/B2S/Ship/Item.php:
|
3184 |
msgid "Schedule Recurrent Post"
|
3185 |
msgstr ""
|
3186 |
|
3187 |
-
#: includes/B2S/Ship/Item.php:
|
3188 |
msgid ""
|
3189 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3190 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3194,7 +3331,7 @@ msgid ""
|
|
3194 |
"the new XING."
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: includes/B2S/Ship/Item.php:
|
3198 |
msgid ""
|
3199 |
"Please note: Google will shut down Google+ for all private accounts "
|
3200 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3202,116 +3339,116 @@ msgid ""
|
|
3202 |
"other content here:"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: includes/B2S/Ship/Item.php:
|
3206 |
msgid "Repeats"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: includes/B2S/Ship/Item.php:
|
3210 |
msgid "Duration"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: includes/B2S/Ship/Item.php:
|
3214 |
msgid "Number of repeats"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: includes/B2S/Ship/Item.php:
|
3218 |
msgid "Day of month"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: includes/B2S/Ship/Item.php:
|
3222 |
msgid "Repeats every (days)"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
-
#: includes/B2S/Ship/Item.php:
|
3226 |
msgid "Start date"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
-
#: includes/B2S/Ship/Item.php:
|
3230 |
msgid "Time to publish"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
-
#: includes/B2S/Ship/Item.php:
|
3234 |
msgid "weekly"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: includes/B2S/Ship/Item.php:
|
3238 |
msgid "monthly"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: includes/B2S/Ship/Item.php:
|
3242 |
msgid "own period"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: includes/B2S/Ship/Item.php:
|
3246 |
msgid "Week"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: includes/B2S/Ship/Item.php:
|
3250 |
msgid "Weeks"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: includes/B2S/Ship/Item.php:
|
3254 |
msgid "Month"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: includes/B2S/Ship/Item.php:
|
3258 |
msgid "Months"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: includes/B2S/Ship/Item.php:
|
3262 |
msgid "End Of Month"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: includes/B2S/Ship/Item.php:
|
3266 |
msgid "Timespan"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: includes/B2S/Ship/Item.php:
|
3270 |
#: views/b2s/partials/post-edit-modal.php:66
|
3271 |
msgid "Time"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: includes/B2S/Ship/Item.php:
|
3275 |
msgid "Mon"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/B2S/Ship/Item.php:
|
3279 |
msgid "Tue"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: includes/B2S/Ship/Item.php:
|
3283 |
msgid "Wed"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: includes/B2S/Ship/Item.php:
|
3287 |
msgid "Thu"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: includes/B2S/Ship/Item.php:
|
3291 |
msgid "Fri"
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: includes/B2S/Ship/Item.php:
|
3295 |
msgid "Sat"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: includes/B2S/Ship/Item.php:
|
3299 |
msgid "Sun"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: includes/B2S/Ship/Item.php:
|
3303 |
msgid "add another post"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: includes/B2S/Ship/Item.php:
|
3307 |
msgid "Copy from original"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: includes/B2S/Ship/Item.php:
|
3311 |
msgid "Apply Settings To All Networks"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: includes/B2S/Ship/Item.php:
|
3315 |
msgid "Save as best time for this network"
|
3316 |
msgstr ""
|
3317 |
|
@@ -4124,11 +4261,15 @@ msgid "Version"
|
|
4124 |
msgstr ""
|
4125 |
|
4126 |
#: views/b2s/html/sidebar.php:65
|
4127 |
-
msgid "Blog Content"
|
4128 |
msgstr ""
|
4129 |
|
4130 |
#: views/b2s/html/sidebar.php:69
|
4131 |
-
msgid "Share
|
|
|
|
|
|
|
|
|
4132 |
msgstr ""
|
4133 |
|
4134 |
#: views/b2s/html/sidebar.php:85
|
@@ -4143,21 +4284,21 @@ msgstr ""
|
|
4143 |
msgid "all Posts"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
-
#: views/b2s/html/sidebar.php:
|
4147 |
msgid "Upgrade License"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: views/b2s/html/sidebar.php:
|
4151 |
msgid "Plans & Prices"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: views/b2s/html/sidebar.php:
|
4155 |
msgid ""
|
4156 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4157 |
"anything that does not work for you, please contact us!"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: views/b2s/html/sidebar.php:
|
4161 |
msgid "Blog2Social Blog News"
|
4162 |
msgstr ""
|
4163 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-11-27 11:35+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.2.0; wp-5.0.3"
|
17 |
|
18 |
+
#: includes/Loader.php:45
|
19 |
msgid "Modify pin board"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: includes/Loader.php:45
|
23 |
msgid "Edit group settings"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: includes/Loader.php:45
|
27 |
msgid "Modify subreddit"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: includes/Loader.php:45
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: includes/Loader.php:388
|
35 |
msgid "Auto-Post on Social Media"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/Loader.php:389
|
39 |
msgid "Social Media Content Calendar"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: includes/Loader.php:689
|
43 |
msgid "This post will be shared into your social media from"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/Loader.php:689 includes/Loader.php:691
|
47 |
msgid "show details"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/Loader.php:691
|
51 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/Loader.php:695
|
55 |
msgid ""
|
56 |
"Please, make sure that your post are publish on this blog on this moment. "
|
57 |
"Then you can auto post your post with Blog2social."
|
58 |
msgstr ""
|
59 |
|
60 |
+
#: includes/Loader.php:698 includes/B2S/PostBox.php:79
|
61 |
msgid ""
|
62 |
"There are no social network accounts assigned to your selected network "
|
63 |
"collection. Please assign at least one social network account or select "
|
64 |
"another network collection."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: includes/Loader.php:710 views/b2s/html/sidebar.php:45
|
68 |
#: views/b2s/html/sidebar.ship.php:44
|
69 |
msgid "Upgrade to Premium"
|
70 |
msgstr ""
|
71 |
|
72 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:18
|
73 |
msgid "Notifications"
|
74 |
msgstr ""
|
75 |
|
76 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:17
|
77 |
+
#: views/b2s/html/sidebar.php:119
|
78 |
msgid "Shared Posts"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:14
|
82 |
+
#: views/b2s/html/sidebar.php:113
|
83 |
msgid "Instant Sharing"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:10
|
87 |
+
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:88
|
88 |
+
#: views/b2s/html/sidebar.php:110
|
89 |
msgid "Drafts"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:15
|
93 |
+
#: views/b2s/html/sidebar.php:116 views/b2s/widgets/posts.php:18
|
94 |
msgid "Scheduled Posts"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/Loader.php:762
|
98 |
+
msgid "Social Media Post Drafts"
|
99 |
+
msgstr ""
|
100 |
+
|
101 |
+
#: includes/Loader.php:762 views/b2s/html/post.navbar.php:9
|
102 |
+
#: views/b2s/html/sidebar.php:107
|
103 |
+
msgid "Favorites"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/Loader.php:763 includes/B2S/Network/Item.php:148
|
107 |
#: includes/B2S/Network/Item.php:150 includes/B2S/Network/Item.php:150
|
108 |
+
#: includes/B2S/Network/Item.php:223 includes/B2S/Network/Item.php:544
|
109 |
#: includes/B2S/Settings/Item.php:245 includes/B2S/Ship/Portale.php:39
|
110 |
#: includes/B2S/Ship/Portale.php:41 includes/B2S/Ship/Portale.php:41
|
111 |
msgid "Profile"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/Loader.php:763 includes/B2S/Network/Item.php:154
|
115 |
+
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:288
|
116 |
+
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:245
|
117 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
118 |
msgid "Page"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: includes/Loader.php:763 includes/B2S/Network/Item.php:157
|
122 |
+
#: includes/B2S/Network/Item.php:355 includes/B2S/Network/Item.php:549
|
123 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
124 |
msgid "Group"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: includes/Loader.php:764 views/prg/html/form.php:74
|
128 |
msgid "Company"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/Loader.php:764
|
132 |
msgid "Business"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/Loader.php:765
|
136 |
+
#, php-format
|
137 |
+
msgid ""
|
138 |
+
"The network could not publish your post. Please see <a target=\"_blank\" "
|
139 |
+
"href=\"%s\">FAQ</a>"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: includes/Loader.php:766
|
143 |
msgid ""
|
144 |
"Your authorization has expired. Please reconnect your account in the "
|
145 |
"Blog2Social network settings."
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/Loader.php:767
|
149 |
msgid "The network has marked the post as spam or abusive."
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/Loader.php:768
|
153 |
msgid ""
|
154 |
"We don't have the permission to publish your post. Please check your "
|
155 |
"authorization."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: includes/Loader.php:769
|
159 |
#, php-format
|
160 |
msgid ""
|
161 |
"Your authorization is interrupted. Please check your authorization. Please "
|
162 |
"see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/Loader.php:770
|
166 |
msgid "Your daily limit has been reached."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/Loader.php:771
|
170 |
msgid ""
|
171 |
"Your post could not be posted, because your image is not available or the "
|
172 |
"image source does not allow to publish"
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: includes/Loader.php:772
|
176 |
#, php-format
|
177 |
msgid ""
|
178 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
179 |
"href=\"%s\">FAQ</a>"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/Loader.php:773
|
183 |
#, php-format
|
184 |
msgid ""
|
185 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
186 |
"FAQ</a>"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/Loader.php:774
|
190 |
msgid ""
|
191 |
"Your daily limit for this network has been reached. Please try again later."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/Loader.php:775
|
195 |
#, php-format
|
196 |
msgid ""
|
197 |
"The network can not publish special characters such as Emoji. Please see <a "
|
198 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/Loader.php:776
|
202 |
msgid "Your post is a duplicate."
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/Loader.php:777
|
206 |
msgid "The network requires a public url."
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/Loader.php:778
|
210 |
msgid ""
|
211 |
"Your blog post was not available for the network at the time of publication."
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/Loader.php:779
|
215 |
msgid "You have already retweeted this post."
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/Loader.php:780
|
219 |
msgid ""
|
220 |
"This XING API is no longer supported by XING. Please connect your XING "
|
221 |
"accounts with the new XING interface to reschedule your posts."
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/Loader.php:781
|
225 |
+
msgid "The network requires a image."
|
|
|
|
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/Loader.php:782
|
229 |
+
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
230 |
+
msgstr ""
|
231 |
+
|
232 |
+
#: includes/Loader.php:783
|
233 |
msgid ""
|
234 |
"Your post could not be posted, because your image can not be processed by "
|
235 |
"the network."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: includes/Loader.php:784
|
239 |
#, php-format
|
240 |
msgid ""
|
241 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
242 |
"href=\"%s\">FAQ</a>"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/Loader.php:785
|
246 |
msgid "Your group can not be found by the network."
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: includes/Loader.php:841 includes/Loader.php:884
|
250 |
msgid "Dashboard"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: includes/Loader.php:842
|
254 |
+
msgid "Share Website & Blog Content"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: includes/Loader.php:842 includes/Loader.php:891
|
258 |
+
msgid "Site & Blog Content"
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/Loader.php:843
|
262 |
+
msgid "Create Social Media Posts"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/Loader.php:843 includes/Loader.php:898
|
266 |
+
msgid "Social Media Posts"
|
|
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/Loader.php:844 includes/Loader.php:905 views/b2s/dashboard.php:31
|
270 |
+
#: views/b2s/html/post.navbar.php:19 views/b2s/html/sidebar.php:122
|
271 |
+
msgid "Calendar"
|
272 |
+
msgstr ""
|
273 |
+
|
274 |
+
#: includes/Loader.php:845 includes/Loader.php:912
|
275 |
msgid "Networks"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/Loader.php:846 includes/Loader.php:918
|
279 |
+
#: views/b2s/html/sidebar.php:131
|
280 |
msgid "Settings"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/Loader.php:848 includes/Loader.php:926
|
284 |
msgid "PR-Service"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/Loader.php:850 includes/Loader.php:934 views/b2s/html/header.php:35
|
288 |
+
#: views/b2s/html/sidebar.php:134 views/b2s/html/sidebar.ship.php:66
|
289 |
msgid "Help & Support"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: includes/Loader.php:852
|
293 |
msgid "Premium"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/Loader.php:852 includes/Loader.php:942
|
297 |
msgid "PREMIUM"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/Loader.php:875 views/b2s/html/sidebar.php:25
|
301 |
#: views/b2s/html/sidebar.ship.php:24
|
302 |
msgid "Blog2Social"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/Loader.php:1383
|
306 |
+
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: includes/Loader.php:1383 includes/System.php:72 includes/System.php:78
|
310 |
#: includes/System.php:84
|
311 |
#, php-format
|
312 |
msgid ""
|
314 |
"our FAQ</a>"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: includes/Loader.php:1383 includes/Loader.php:1404 includes/Loader.php:1626
|
318 |
msgid "or"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: includes/Loader.php:1383 includes/Loader.php:1404 includes/Loader.php:1626
|
322 |
msgid "back to install plugins"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/Notice.php:17 views/b2s/html/sidebar.php:158
|
326 |
msgid "Rate it!"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/Notice.php:18
|
330 |
msgid ""
|
331 |
"If you like Blog2Social, please give us a 5 star rating. I there is anything "
|
332 |
"that does not work for you, please contact us!!"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: includes/Notice.php:19 views/b2s/html/sidebar.php:161
|
336 |
msgid "RATE BLOG2SOCIAL"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/Notice.php:20
|
340 |
msgid "hide"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/Notice.php:35
|
344 |
+
msgid "Could not hide notice. Please refresh the page and retry."
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
#: includes/System.php:69
|
348 |
msgid ""
|
349 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
364 |
"higher, or ask your server administrator to do it for you."
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/Tools.php:265 views/b2s/html/sidebar.php:30
|
368 |
#: views/b2s/html/sidebar.ship.php:29
|
369 |
msgid "License"
|
370 |
msgstr ""
|
371 |
|
372 |
+
#: includes/Tools.php:279
|
373 |
msgid "Greece"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: includes/Tools.php:280
|
377 |
msgid "India"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: includes/Tools.php:281
|
381 |
msgid "United States of America"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: includes/Tools.php:282
|
385 |
msgid "Ireland"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: includes/Tools.php:283
|
389 |
msgid "Italy"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: includes/Tools.php:284
|
393 |
msgid "Switzerland"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: includes/Tools.php:285
|
397 |
msgid "Czechoslovakia"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/Tools.php:286
|
401 |
msgid "Indonesia"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/Tools.php:287
|
405 |
msgid "Spain"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/Tools.php:288
|
409 |
msgid "Canada"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/Tools.php:289
|
413 |
msgid "Great Britain"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/Tools.php:290
|
417 |
msgid "Russia"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/Tools.php:291
|
421 |
msgid "Netherlands"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/Tools.php:292 includes/Tools.php:306
|
425 |
msgid "Portugal"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/Tools.php:293
|
429 |
msgid "Norway"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/Tools.php:294
|
433 |
msgid "Turkey"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/Tools.php:295
|
437 |
msgid "Australia"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/Tools.php:296
|
441 |
msgid "Austria"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/Tools.php:297
|
445 |
msgid "Poland"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/Tools.php:298
|
449 |
msgid "France"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/Tools.php:299
|
453 |
msgid "Romania"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/Tools.php:300
|
457 |
msgid "Germany"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/Tools.php:301
|
461 |
msgid "Denmark"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/Tools.php:302
|
465 |
msgid "New Zealand"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/Tools.php:303
|
469 |
msgid "Finland"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/Tools.php:304
|
473 |
msgid "Hungary"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/Tools.php:305
|
477 |
msgid "Japan"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/Tools.php:307
|
481 |
msgid "Argentina"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/Tools.php:308
|
485 |
msgid "Korea"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/Tools.php:309
|
489 |
msgid "Sweden"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/Tools.php:310
|
493 |
msgid "Mexico"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/Tools.php:311
|
497 |
msgid "Slovakia"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/Tools.php:312
|
501 |
msgid "Chile"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/Tools.php:313
|
505 |
msgid "Colombia"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/Tools.php:314
|
509 |
msgid "South Africa"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/Tools.php:315
|
513 |
msgid "Philippines"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/Tools.php:318
|
517 |
msgid "is determined automatically"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/Tools.php:325
|
521 |
+
msgid "Search"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: includes/Tools.php:326
|
525 |
+
msgid "Recently Used"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/Tools.php:327
|
529 |
+
msgid "Smileys & People"
|
530 |
+
msgstr ""
|
531 |
+
|
532 |
+
#: includes/Tools.php:328
|
533 |
+
msgid "Animals & Nature"
|
534 |
+
msgstr ""
|
535 |
+
|
536 |
+
#: includes/Tools.php:329
|
537 |
+
msgid "Food & Drink"
|
538 |
+
msgstr ""
|
539 |
+
|
540 |
+
#: includes/Tools.php:330
|
541 |
+
msgid "Activities"
|
542 |
+
msgstr ""
|
543 |
+
|
544 |
+
#: includes/Tools.php:331
|
545 |
+
msgid "Travel & Places"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/Tools.php:332
|
549 |
+
msgid "Objects"
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/Tools.php:333
|
553 |
+
msgid "Symbols"
|
554 |
+
msgstr ""
|
555 |
+
|
556 |
+
#: includes/Tools.php:334
|
557 |
+
msgid "Flags"
|
558 |
+
msgstr ""
|
559 |
+
|
560 |
+
#: includes/Tools.php:335
|
561 |
+
msgid "No emojis found"
|
562 |
+
msgstr ""
|
563 |
+
|
564 |
#: views/notice.php:12
|
565 |
msgid "Connection is broken..."
|
566 |
msgstr ""
|
599 |
msgid "Please contact our support!"
|
600 |
msgstr ""
|
601 |
|
602 |
+
#: includes/Ajax/Post.php:1655 views/b2s/network.php:6
|
603 |
+
#: includes/B2S/Network/Item.php:221 includes/B2S/Network/Item.php:286
|
604 |
+
#: includes/B2S/Network/Item.php:353 includes/B2S/Network/Item.php:479
|
605 |
+
#: includes/B2S/Network/Item.php:495
|
606 |
msgid "Unknown username"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: includes/Ajax/Post.php:1656 includes/B2S/Network/Item.php:480
|
610 |
+
#: includes/B2S/Post/Item.php:447 includes/B2S/Post/Item.php:467
|
611 |
+
#: includes/B2S/Post/Item.php:714 includes/B2S/Post/Item.php:763
|
612 |
+
#: includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:916
|
613 |
+
#: includes/B2S/Ship/Item.php:1066
|
614 |
msgid "delete"
|
615 |
msgstr ""
|
616 |
|
622 |
msgid "last auto-post:"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: includes/B2S/PostBox.php:76 views/b2s/ship.php:660
|
626 |
#: views/b2s/html/header.php:55
|
627 |
msgid "The connection to the server failed. Try again!"
|
628 |
msgstr ""
|
644 |
msgid "Network settings"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: includes/B2S/PostBox.php:81 views/b2s/ship.php:198
|
648 |
msgid ""
|
649 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
650 |
"Networks do not allow postings from local installations."
|
655 |
msgstr ""
|
656 |
|
657 |
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101
|
658 |
+
#: views/b2s/ship.php:76 views/b2s/ship.php:166 views/b2s/ship.php:258
|
659 |
+
#: includes/B2S/Network/Item.php:177 includes/B2S/Ship/Item.php:880
|
660 |
msgid "Info"
|
661 |
msgstr ""
|
662 |
|
683 |
msgid "enable Auto-Posting"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: includes/B2S/PostBox.php:108 views/b2s/curation.php:49
|
687 |
+
#: views/b2s/network.php:349 views/b2s/ship.php:23
|
688 |
+
#: includes/B2S/Curation/View.php:56 includes/B2S/Network/Item.php:161
|
689 |
+
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:326
|
690 |
+
#: includes/B2S/Network/Item.php:388 includes/B2S/Settings/Item.php:104
|
691 |
+
#: includes/B2S/Settings/Item.php:318 includes/B2S/Ship/Image.php:80
|
692 |
+
#: includes/B2S/Ship/Item.php:939 views/b2s/html/post.navbar.php:15
|
693 |
+
#: views/b2s/html/post.navbar.php:19 views/b2s/partials/post-edit-modal.php:9
|
694 |
#: views/b2s/widgets/posts.php:18
|
695 |
msgid "SMART"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: includes/B2S/PostBox.php:115 views/b2s/curation.draft.php:47
|
699 |
#: views/b2s/network.php:58 views/b2s/network.php:146 views/b2s/network.php:222
|
700 |
+
#: views/b2s/network.php:355 views/b2s/network.php:458
|
701 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
702 |
+
#: views/b2s/post.calendar.php:243 views/b2s/post.draft.php:42
|
703 |
+
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:45
|
704 |
+
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
705 |
+
#: views/b2s/post.sched.php:59 views/b2s/ship.php:188 views/b2s/ship.php:570
|
706 |
+
#: views/b2s/ship.php:658 views/b2s/support.php:204
|
707 |
+
#: views/prg/html/header.php:86
|
708 |
msgid "Loading..."
|
709 |
msgstr ""
|
710 |
|
746 |
msgid "You want to auto-post your blog post?"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/B2S/PostBox.php:145 views/b2s/curation.php:171
|
750 |
+
#: views/b2s/curation.php:210 views/b2s/post.calendar.php:281
|
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:148 views/b2s/curation.php:174
|
760 |
+
#: views/b2s/curation.php:213 views/b2s/post.calendar.php:284
|
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:149 views/b2s/curation.php:175
|
770 |
+
#: views/b2s/curation.php:214 views/b2s/post.calendar.php:285
|
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:150 views/b2s/curation.php:176
|
780 |
+
#: views/b2s/curation.php:215 views/b2s/post.calendar.php:286
|
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:151 views/b2s/curation.php:177
|
790 |
+
#: views/b2s/curation.php:216 views/b2s/post.calendar.php:287
|
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:152 views/b2s/curation.php:178
|
800 |
+
#: views/b2s/curation.php:217 views/b2s/post.calendar.php:288
|
801 |
+
#: views/b2s/ship.php:316 views/b2s/ship.php:376 views/b2s/ship.php:422
|
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:153 views/b2s/curation.php:179
|
812 |
+
#: views/b2s/curation.php:218 views/b2s/post.calendar.php:289
|
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:154 views/b2s/curation.php:180
|
822 |
+
#: views/b2s/curation.php:219 views/b2s/post.calendar.php:290
|
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:155 views/b2s/curation.php:181
|
832 |
+
#: views/b2s/curation.php:220 views/b2s/post.calendar.php:291
|
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:156 views/b2s/curation.php:182
|
842 |
+
#: views/b2s/curation.php:221 views/b2s/post.calendar.php:292
|
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:157 views/b2s/curation.php:183
|
852 |
+
#: views/b2s/curation.php:222 views/b2s/post.calendar.php:293
|
853 |
+
#: views/b2s/ship.php:321 views/b2s/ship.php:381 views/b2s/ship.php:427
|
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:159 views/b2s/curation.php:185
|
864 |
+
#: views/b2s/curation.php:224 views/b2s/post.calendar.php:295
|
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:161 views/b2s/curation.php:187
|
874 |
+
#: views/b2s/curation.php:226 views/b2s/post.calendar.php:297
|
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:174 includes/B2S/Curation/View.php:73
|
888 |
msgid "Select network collection:"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: includes/B2S/PostBox.php:185 includes/B2S/Curation/View.php:97
|
892 |
msgid "Select Twitter profile:"
|
893 |
msgstr ""
|
894 |
|
900 |
msgid "immediately after publishing"
|
901 |
msgstr ""
|
902 |
|
903 |
+
#: includes/B2S/PostBox.php:220 includes/B2S/Curation/View.php:65
|
904 |
msgid "at scheduled times"
|
905 |
msgstr ""
|
906 |
|
920 |
msgid "Select date:"
|
921 |
msgstr ""
|
922 |
|
923 |
+
#: includes/B2S/PostBox.php:231 includes/B2S/Ship/Item.php:364
|
924 |
msgid "show calendar"
|
925 |
msgstr ""
|
926 |
|
949 |
msgid "Get the Blog2Social Browser Extension"
|
950 |
msgstr ""
|
951 |
|
952 |
+
#: views/b2s/curation.draft.php:76
|
953 |
msgid "Delete Draft"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: views/b2s/curation.draft.php:79
|
957 |
msgid "Are you sure you want to delete this draft?"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: views/b2s/curation.draft.php:83 views/b2s/curation.php:141
|
961 |
#: views/b2s/network.php:106 views/b2s/post.approve.php:91
|
962 |
#: views/b2s/post.approve.php:108 views/b2s/post.draft.php:80
|
963 |
#: views/b2s/post.notice.php:78 views/b2s/post.publish.php:78
|
964 |
+
#: views/b2s/post.sched.php:92 views/b2s/ship.php:474 views/b2s/ship.php:553
|
965 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
966 |
msgid "NO"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: views/b2s/curation.draft.php:84 views/b2s/network.php:107
|
970 |
#: views/b2s/network.php:170 views/b2s/post.approve.php:92
|
971 |
#: views/b2s/post.draft.php:81 views/b2s/post.notice.php:79
|
972 |
#: views/b2s/post.publish.php:79 views/b2s/post.sched.php:93
|
974 |
msgid "YES, delete"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: views/b2s/curation.php:30
|
978 |
msgid "No link preview available. Please check your link."
|
979 |
msgstr ""
|
980 |
|
981 |
+
#: views/b2s/curation.php:34
|
982 |
msgid ""
|
983 |
"No connected networks. Please make sure to connect at least one social media "
|
984 |
"account."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: views/b2s/curation.php:37
|
988 |
msgid "Invalid data. Please check your data."
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: views/b2s/curation.php:40
|
992 |
msgid "Saved as draft."
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
|
996 |
+
#: views/b2s/post.sched.php:182 includes/B2S/Settings/Item.php:394
|
997 |
+
#: includes/B2S/Settings/Item.php:427 views/b2s/html/footer.php:111
|
998 |
+
msgid "Link Post"
|
999 |
+
msgstr ""
|
1000 |
+
|
1001 |
+
#: views/b2s/curation.php:47 views/b2s/curation.php:49
|
1002 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:182
|
1003 |
+
#: includes/B2S/Settings/Item.php:408 includes/B2S/Settings/Item.php:427
|
1004 |
+
msgid "Image Post"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: views/b2s/curation.php:47 views/b2s/support.php:19 views/b2s/support.php:22
|
1008 |
+
#: views/b2s/html/post.navbar.php:9
|
1009 |
+
msgid "NEW"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: views/b2s/curation.php:59
|
1013 |
+
msgid "Load data..."
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: views/b2s/curation.php:65
|
1017 |
msgid "Enter a link you want share on your social media channels"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: views/b2s/curation.php:66
|
1021 |
msgid "Please enter a valid link"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: views/b2s/curation.php:67
|
1025 |
msgid "Enter link"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: views/b2s/curation.php:70
|
1029 |
msgid "continue"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
+
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:432
|
1033 |
+
#: includes/B2S/Ship/Item.php:461 includes/B2S/Ship/Item.php:490
|
1034 |
+
#: includes/B2S/Ship/Item.php:519 includes/B2S/Ship/Item.php:547
|
1035 |
+
#: includes/B2S/Ship/Item.php:590 includes/B2S/Ship/Item.php:613
|
1036 |
+
#: includes/B2S/Ship/Item.php:634 includes/B2S/Ship/Item.php:655
|
1037 |
+
#: includes/B2S/Ship/Item.php:676 includes/B2S/Ship/Item.php:697
|
1038 |
+
#: includes/B2S/Ship/Item.php:741
|
1039 |
+
msgid "Change image"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
+
#: views/b2s/curation.php:97 includes/B2S/Curation/View.php:23
|
1043 |
+
msgid "Write something..."
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: views/b2s/curation.php:112 views/b2s/ship.php:260 views/b2s/ship.php:262
|
1047 |
+
#: includes/B2S/Post/Item.php:368
|
1048 |
+
msgid "Re-share this post"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: views/b2s/curation.php:113
|
1052 |
+
msgid "Create a new post"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: views/b2s/curation.php:119 views/b2s/post.calendar.php:38
|
1056 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:659 includes/B2S/Post/Filter.php:50
|
1057 |
+
#: includes/B2S/Post/Item.php:297 includes/B2S/Ship/Save.php:417
|
1058 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1059 |
msgid "published"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
+
#: views/b2s/curation.php:135 views/b2s/post.approve.php:102
|
1063 |
+
#: views/b2s/ship.php:468
|
1064 |
msgid "Do you want to mark this post as published ?"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
+
#: views/b2s/curation.php:140 views/b2s/post.approve.php:107
|
1068 |
+
#: views/b2s/ship.php:473 views/b2s/ship.php:554
|
1069 |
msgid "YES"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: views/b2s/curation.php:154 views/b2s/post.calendar.php:264
|
1073 |
+
#: views/b2s/ship.php:398
|
1074 |
msgid "Need to schedule your posts?"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: views/b2s/curation.php:157 views/b2s/post.calendar.php:267
|
1078 |
+
#: views/b2s/ship.php:401
|
1079 |
msgid "Blog2Social Premium covers everything you need."
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:270
|
1083 |
+
#: views/b2s/ship.php:404 includes/B2S/Ship/Item.php:940
|
1084 |
msgid "Schedule for specific dates"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
+
#: views/b2s/curation.php:161 views/b2s/post.calendar.php:271
|
1088 |
+
#: views/b2s/ship.php:405
|
1089 |
msgid ""
|
1090 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
1091 |
"desired date and you are ready to go!"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: views/b2s/curation.php:163 views/b2s/post.calendar.php:273
|
1095 |
+
#: views/b2s/ship.php:407
|
1096 |
msgid "Schedule post recurrently"
|
1097 |
msgstr ""
|
1098 |
|
1099 |
+
#: views/b2s/curation.php:164 views/b2s/post.calendar.php:274
|
1100 |
+
#: views/b2s/ship.php:408
|
1101 |
msgid ""
|
1102 |
"You have evergreen content you want to re-share from time to time in your "
|
1103 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
1104 |
"or recurringly at specific times."
|
1105 |
msgstr ""
|
1106 |
|
1107 |
+
#: views/b2s/curation.php:166 views/b2s/post.calendar.php:276
|
1108 |
+
#: views/b2s/ship.php:410
|
1109 |
msgid "Best Time Scheduler"
|
1110 |
msgstr ""
|
1111 |
|
1112 |
+
#: views/b2s/curation.php:167 views/b2s/post.calendar.php:277
|
1113 |
+
#: views/b2s/ship.php:411
|
1114 |
msgid ""
|
1115 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
1116 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
1118 |
"lifespan of your posts."
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: views/b2s/curation.php:199
|
1122 |
+
msgid "Blog2Social: Social Media Posts"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: views/b2s/curation.php:203
|
1126 |
+
msgid "This is a premium feature."
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: views/b2s/curation.php:209
|
1130 |
+
msgid "You wannt to create image posts with any image from your media library?"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: views/b2s/curation.php:238
|
1134 |
+
msgid "Select image"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
#: views/b2s/dashboard.php:17
|
1138 |
msgid "What's New"
|
1139 |
msgstr ""
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: views/b2s/network.php:24 views/b2s/network.php:25
|
1158 |
+
#: views/b2s/post.calendar.php:225 views/b2s/post.calendar.php:226
|
1159 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1160 |
+
#: views/b2s/html/post.navbar.php:25 views/b2s/html/post.navbar.php:26
|
1161 |
msgid "filter"
|
1162 |
msgstr ""
|
1163 |
|
1171 |
|
1172 |
#: views/b2s/network.php:34 includes/B2S/Network/Item.php:150
|
1173 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:158
|
1174 |
+
#: includes/B2S/Ship/Image.php:87 includes/B2S/Ship/Portale.php:32
|
1175 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:41
|
1176 |
msgid "PRO"
|
1177 |
msgstr ""
|
1180 |
msgid "Delete"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: views/b2s/network.php:45 views/b2s/ship.php:74 views/b2s/ship.php:368
|
1184 |
#: views/b2s/html/footer.php:207
|
1185 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: views/b2s/network.php:46 views/b2s/ship.php:75
|
1189 |
msgid "Load Best Times"
|
1190 |
msgstr ""
|
1191 |
|
1221 |
"Business listings."
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: views/b2s/network.php:127 views/b2s/premium.php:36 views/b2s/ship.php:490
|
1225 |
+
#: includes/B2S/Ship/Item.php:978 views/b2s/partials/post-edit-modal.php:48
|
1226 |
msgid "Learn more"
|
1227 |
msgstr ""
|
1228 |
|
1288 |
msgid "Advanced Connection Preferences"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: views/b2s/network.php:229 views/b2s/network.php:313
|
1292 |
msgid "Move the connection to another network collection."
|
1293 |
msgstr ""
|
1294 |
|
1297 |
msgid "An error occured. Please contact our support."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: views/b2s/network.php:241 views/b2s/network.php:320
|
1301 |
msgid "move"
|
1302 |
msgstr ""
|
1303 |
|
1305 |
msgid "You need at least one network collection"
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: views/b2s/network.php:258 views/b2s/network.php:327
|
1309 |
msgid "Assign the connection to other blog users"
|
1310 |
msgstr ""
|
1311 |
|
1339 |
msgid "There are no other users to whom the connection can be assigned."
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: views/b2s/network.php:293 views/b2s/network.php:330
|
1343 |
msgid "assign"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: views/b2s/network.php:294
|
1347 |
+
msgid "Apply best time settings"
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: views/b2s/network.php:295
|
1351 |
+
msgid "Apply post template settings"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: views/b2s/network.php:306
|
1355 |
msgid ""
|
1356 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
1357 |
"network collection and assign your social media connections to other blog "
|
1361 |
"group."
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: views/b2s/network.php:307
|
1365 |
msgid "Upgrade to Blog2Social Business"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: views/b2s/network.php:318 includes/B2S/Ship/Navbar.php:37
|
1369 |
msgid "My Profile"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: views/b2s/network.php:349 includes/B2S/Network/Item.php:161
|
1373 |
+
#: includes/B2S/Network/Item.php:161
|
1374 |
msgid "Edit Post Template"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: views/b2s/network.php:361 views/b2s/settings.php:52
|
1378 |
#: includes/B2S/Settings/Item.php:292
|
1379 |
msgid "save"
|
1380 |
msgstr ""
|
1381 |
|
1382 |
+
#: views/b2s/network.php:373 views/b2s/settings.php:129
|
1383 |
msgid "Instant Caching for Facebook Link Posts"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: views/b2s/network.php:376 views/b2s/settings.php:132
|
1387 |
msgid ""
|
1388 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
1389 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
1391 |
"Facebook always pulls the current meta data of your blog post."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
+
#: views/b2s/network.php:387
|
1395 |
msgid "Choose your Post Format"
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: views/b2s/network.php:391 views/b2s/network.php:394
|
1399 |
+
#: views/b2s/network.php:397
|
1400 |
msgid ""
|
1401 |
"Decide in which post format you want to post your content: Link post or "
|
1402 |
"image post."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: views/b2s/network.php:400
|
1406 |
msgid ""
|
1407 |
"Decide in wich form you want to post your Content. Either as image with "
|
1408 |
"frame, or as image cut out."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: views/b2s/network.php:412
|
1412 |
msgid "Post Content"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: views/b2s/network.php:415
|
1416 |
msgid ""
|
1417 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1418 |
"textarea and customize them as you like."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: views/b2s/network.php:418
|
1422 |
msgid "Legend"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: views/b2s/network.php:420
|
1426 |
msgid "The title of your post"
|
1427 |
msgstr ""
|
1428 |
|
1429 |
+
#: views/b2s/network.php:421
|
1430 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: views/b2s/network.php:422
|
1434 |
msgid "The content of your post"
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: views/b2s/network.php:423
|
1438 |
msgid "The tags you have set in your post."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: views/b2s/network.php:424
|
1442 |
+
msgid "The name of the post author."
|
1443 |
+
msgstr ""
|
1444 |
+
|
1445 |
+
#: views/b2s/network.php:437 includes/B2S/Network/Item.php:659
|
1446 |
msgid "Character limit"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: views/b2s/network.php:440
|
1450 |
msgid ""
|
1451 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1452 |
"individually. Your text will be shortened after the last comma, period, or "
|
1453 |
"space character within your character limit."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: views/b2s/network.php:441
|
1457 |
msgid ""
|
1458 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
1459 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
1460 |
"(document settings) of your post."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: views/b2s/network.php:442
|
1464 |
msgid ""
|
1465 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
1466 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
1469 |
"network."
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: views/b2s/network.php:453 views/b2s/ship.php:565
|
1473 |
msgid "Connect with Pinterest"
|
1474 |
msgstr ""
|
1475 |
|
1476 |
+
#: views/b2s/network.php:461 views/b2s/ship.php:573
|
1477 |
msgid ""
|
1478 |
"Please make sure to use your original Pinterest login data (email and "
|
1479 |
"password). Social Login via Facebook or Google login data will not work here."
|
1481 |
"deactivated to ensure a stable connection to Blog2Social."
|
1482 |
msgstr ""
|
1483 |
|
1484 |
+
#: views/b2s/network.php:462 views/b2s/ship.php:574
|
1485 |
msgid "An error occurred! Please try again."
|
1486 |
msgstr ""
|
1487 |
|
1488 |
+
#: views/b2s/network.php:463 views/b2s/network.php:464 views/b2s/ship.php:575
|
1489 |
+
#: views/b2s/ship.php:576
|
1490 |
#, php-format
|
1491 |
msgid ""
|
1492 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
1493 |
"Upgrade to Blog2Social Premium</a>"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#: views/b2s/network.php:465 views/b2s/ship.php:577
|
1497 |
msgid "Invalid Data! Please try again."
|
1498 |
msgstr ""
|
1499 |
|
1500 |
+
#: views/b2s/network.php:466 views/b2s/ship.php:578
|
1501 |
msgid ""
|
1502 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
1503 |
"up at least one pinboard to pin on your Pinterest account!"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: views/b2s/network.php:467 views/b2s/ship.php:579
|
1507 |
#, php-format
|
1508 |
msgid ""
|
1509 |
"Login failed. Please check your login data for typos and please check your "
|
1511 |
"account: <a target=\"_blank\" href=\"%s\">%s</a>"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
+
#: views/b2s/network.php:468 views/b2s/ship.php:580
|
1515 |
msgid "Pinterest has rejected the connection to your blog"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: views/b2s/network.php:469 views/b2s/ship.php:581
|
1519 |
msgid "Please select your currect server location and connect again"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: views/b2s/network.php:470 views/b2s/ship.php:582
|
1523 |
+
msgid ""
|
1524 |
+
"Access to this resource on your server is denied! Please check your "
|
1525 |
+
"webserver configuration for caching."
|
1526 |
+
msgstr ""
|
1527 |
+
|
1528 |
+
#: views/b2s/network.php:471 views/b2s/ship.php:583
|
1529 |
msgid ""
|
1530 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
1531 |
"on your profile."
|
1532 |
msgstr ""
|
1533 |
|
1534 |
+
#: views/b2s/network.php:473 views/b2s/ship.php:585
|
1535 |
#: views/b2s/html/header.php:331 views/prg/html/form.php:141
|
1536 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1537 |
#: views/prg/html/form.php:220
|
1538 |
msgid "E-Mail"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#: views/b2s/network.php:479 views/b2s/ship.php:591 views/prg/login.php:25
|
1542 |
msgid "Password"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
+
#: views/b2s/network.php:490 views/b2s/ship.php:602
|
1546 |
msgid "Server-Location"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: views/b2s/network.php:504 views/b2s/ship.php:616
|
1550 |
msgid "Select Pinboard"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: views/b2s/network.php:512 views/b2s/ship.php:624
|
1554 |
msgid "authorize"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: views/b2s/network.php:513 views/b2s/ship.php:625
|
1558 |
msgid "confirm"
|
1559 |
msgstr ""
|
1560 |
|
1580 |
msgid "show all"
|
1581 |
msgstr ""
|
1582 |
|
1583 |
+
#: views/b2s/post.calendar.php:39 views/b2s/ship.php:18
|
1584 |
+
#: includes/B2S/Post/Filter.php:50 includes/B2S/Post/Item.php:297
|
1585 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1586 |
msgid "scheduled"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:182
|
1590 |
+
#: includes/B2S/Network/Item.php:607 includes/B2S/Network/Item.php:610
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1591 |
#: includes/B2S/Settings/Item.php:394 views/b2s/html/footer.php:128
|
1592 |
msgid "Image with frame"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:182
|
1596 |
+
#: includes/B2S/Network/Item.php:608 includes/B2S/Network/Item.php:611
|
1597 |
#: includes/B2S/Settings/Item.php:408 views/b2s/html/footer.php:133
|
1598 |
msgid "Image cut out"
|
1599 |
msgstr ""
|
1602 |
msgid "add post"
|
1603 |
msgstr ""
|
1604 |
|
1605 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:123
|
1606 |
+
#: views/b2s/ship.php:503
|
1607 |
msgid "Choose your"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
+
#: views/b2s/post.calendar.php:110 views/b2s/post.sched.php:123
|
1611 |
+
#: views/b2s/ship.php:503
|
1612 |
msgid "Post Format"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
+
#: views/b2s/post.calendar.php:112 views/b2s/post.sched.php:125
|
1616 |
+
#: views/b2s/ship.php:505
|
1617 |
msgid "for:"
|
1618 |
msgstr ""
|
1619 |
|
1620 |
+
#: views/b2s/post.calendar.php:131 views/b2s/post.sched.php:144
|
1621 |
+
#: views/b2s/ship.php:523
|
1622 |
msgid ""
|
1623 |
"Define the default settings for the custom post format for all of your "
|
1624 |
"Facebook accounts in the Blog2Social settings."
|
1625 |
msgstr ""
|
1626 |
|
1627 |
+
#: views/b2s/post.calendar.php:134 views/b2s/post.sched.php:147
|
1628 |
+
#: views/b2s/ship.php:526
|
1629 |
msgid ""
|
1630 |
"Define the default settings for the custom post format for all of your "
|
1631 |
"Twitter accounts in the Blog2Social settings."
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:150
|
1635 |
+
#: views/b2s/ship.php:529
|
1636 |
msgid ""
|
1637 |
"Define the default settings for the custom post format for all of your "
|
1638 |
"LinkedIn accounts in the Blog2Social settings."
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:153
|
1642 |
+
#: views/b2s/ship.php:532
|
1643 |
msgid ""
|
1644 |
"Define the default settings for the custom post format for all of your "
|
1645 |
"Instagram accounts in the Blog2Social settings."
|
1646 |
msgstr ""
|
1647 |
|
1648 |
+
#: views/b2s/post.calendar.php:155 views/b2s/post.sched.php:104
|
1649 |
+
#: views/b2s/ship.php:444
|
1650 |
msgid "Select image for"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
+
#: views/b2s/post.calendar.php:173
|
1654 |
msgid "What would you like to share?"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: views/b2s/post.calendar.php:183
|
1658 |
msgid "Share content from your blog"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: views/b2s/post.calendar.php:186 views/b2s/post.calendar.php:199
|
1662 |
msgid "select"
|
1663 |
msgstr ""
|
1664 |
|
1665 |
+
#: views/b2s/post.calendar.php:196
|
1666 |
msgid "Share content from other sources"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
+
#: views/b2s/post.calendar.php:217
|
1670 |
msgid "Select a post"
|
1671 |
msgstr ""
|
1672 |
|
1678 |
msgid "Are you sure you want to delete this Social Media draft?"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
+
#: views/b2s/post.favorites.php:60 includes/B2S/Post/Item.php:303
|
1682 |
+
msgid "You have not saved any favorites."
|
1683 |
+
msgstr ""
|
1684 |
+
|
1685 |
#: views/b2s/post.notice.php:69 views/b2s/post.publish.php:69
|
1686 |
#: views/b2s/widgets/posts.php:58
|
1687 |
msgid "Delete entries from the reporting"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
#: views/b2s/premium.php:109 views/b2s/settings.php:35
|
1794 |
+
#: includes/B2S/Post/Item.php:596
|
1795 |
msgid "Auto-Posting"
|
1796 |
msgstr ""
|
1797 |
|
1891 |
msgid "Social Meta Data"
|
1892 |
msgstr ""
|
1893 |
|
1894 |
+
#: views/b2s/settings.php:76 includes/B2S/Ship/Image.php:91
|
1895 |
msgid "Select or upload an image from media gallery"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
+
#: views/b2s/settings.php:77 includes/B2S/Ship/Image.php:92
|
1899 |
msgid "Use image"
|
1900 |
msgstr ""
|
1901 |
|
1949 |
"drop-down menu."
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:50
|
1953 |
+
#: includes/B2S/Post/Item.php:297 includes/PRG/Post/Item.php:86
|
1954 |
msgid "draft"
|
1955 |
msgstr ""
|
1956 |
|
1957 |
+
#: views/b2s/ship.php:52
|
1958 |
msgid "Social Media Scheduling & Sharing"
|
1959 |
msgstr ""
|
1960 |
|
1961 |
+
#: views/b2s/ship.php:53 views/prg/ship.php:43 views/prg/ship.php:45
|
1962 |
+
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:328
|
1963 |
#: includes/B2S/Settings/Item.php:349 views/prg/html/form.php:26
|
1964 |
#: views/prg/html/form.php:28
|
1965 |
msgid "Title"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: views/b2s/ship.php:55 includes/B2S/Post/Item.php:351
|
1969 |
msgid "on blog"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: views/b2s/ship.php:63
|
1973 |
msgid "scroll to bottom"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: views/b2s/ship.php:68
|
1977 |
msgid "You want to load your time settings?"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: views/b2s/ship.php:69
|
1981 |
msgid "Load My Times Settings"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: views/b2s/ship.php:105 views/b2s/html/sidebar.php:128
|
1985 |
msgid "Social Accounts"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: views/b2s/ship.php:123
|
1989 |
msgid "Add more..."
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: views/b2s/ship.php:125
|
1993 |
msgid "Profiles | Pages | Groups"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: views/b2s/ship.php:164
|
1997 |
msgid "Save network collection"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: views/b2s/ship.php:173
|
2001 |
msgid "network connected"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: views/b2s/ship.php:174
|
2005 |
msgid "requires image"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: views/b2s/ship.php:175
|
2009 |
msgid "refresh authorization"
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: views/b2s/ship.php:200
|
2013 |
msgid "change website address"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: views/b2s/ship.php:217
|
2017 |
msgid "First, connect or select network before posting"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: views/b2s/ship.php:219 includes/B2S/Settings/Item.php:81
|
2021 |
msgid "connect"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: views/b2s/ship.php:227
|
2025 |
msgid "scroll to top"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: views/b2s/ship.php:228 views/b2s/ship.php:234
|
2029 |
+
#: includes/B2S/Curation/View.php:113
|
2030 |
msgid "Share"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: views/b2s/ship.php:229 views/b2s/ship.php:233
|
2034 |
+
#: includes/B2S/Curation/View.php:110
|
2035 |
msgid "Save as Draft"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
+
#: views/b2s/ship.php:243
|
2039 |
msgid "Time zone"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: views/b2s/ship.php:264
|
|
|
|
|
|
|
|
|
2043 |
msgid "Share new post on Social Media"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: views/b2s/ship.php:286
|
2047 |
msgid "Connect for"
|
2048 |
msgstr ""
|
2049 |
|
2050 |
+
#: views/b2s/ship.php:302
|
2051 |
msgid "Re-share this Post"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: views/b2s/ship.php:305
|
2055 |
msgid ""
|
2056 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
2057 |
"different choice of networks, profiles, pages or groups, or with different "
|
2065 |
"according to your current sharing preferences."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: views/b2s/ship.php:308
|
2069 |
msgid "You want re-share your blog post?"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: views/b2s/ship.php:336
|
2073 |
msgid "Save Network Settings"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: views/b2s/ship.php:339
|
2077 |
msgid ""
|
2078 |
"You can save your current network settings as \"Standard\" network settings "
|
2079 |
"for any future sharing activities or as a \"Profile\" to choose from "
|
2089 |
"account to select or remove an account from the current sharing scheme."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: views/b2s/ship.php:351
|
2093 |
msgid "Your blog post is not yet published on your Wordpress!"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: views/b2s/ship.php:354
|
2097 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: views/b2s/ship.php:358
|
2101 |
msgid "Schedule your post"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: views/b2s/ship.php:361
|
2105 |
msgid "Ignore & share"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: views/b2s/ship.php:486
|
2109 |
msgid "Important infomations about XING groups"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: views/b2s/ship.php:547
|
2113 |
msgid "Overwrite Draft"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: views/b2s/ship.php:550
|
2117 |
msgid ""
|
2118 |
"There is already a saved draft for this WordPress post or page. If you save "
|
2119 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
2120 |
"overwrite your draft?"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: views/b2s/ship.php:646
|
2124 |
msgid "add Schedule"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: views/b2s/ship.php:662
|
2128 |
msgid "Give me more information"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: views/b2s/support.php:16 includes/B2S/Post/Item.php:612
|
2132 |
#: includes/B2S/Ship/Save.php:438
|
2133 |
msgid "FAQ"
|
2134 |
msgstr ""
|
2137 |
msgid "Troubleshooting-Tool"
|
2138 |
msgstr ""
|
2139 |
|
|
|
|
|
|
|
|
|
|
|
2140 |
#: views/b2s/support.php:22
|
2141 |
msgid "Sharing-Debugger"
|
2142 |
msgstr ""
|
2348 |
msgid "Yes, I accept"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: includes/B2S/Curation/View.php:62
|
|
|
|
|
|
|
|
|
2352 |
msgid "Share your post"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: includes/B2S/Curation/View.php:64 includes/B2S/Settings/Item.php:172
|
2356 |
msgid "immediately"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2360 |
+
#: includes/B2S/Ship/Item.php:1048 views/b2s/partials/post-edit-modal.php:62
|
2361 |
#: views/b2s/partials/post-edit-modal.php:65
|
2362 |
msgid "Date"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/B2S/Curation/View.php:109
|
2366 |
msgid "Customize & Schedule"
|
2367 |
msgstr ""
|
2368 |
|
2374 |
msgid "Show all"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: includes/B2S/Network/Item.php:62 includes/B2S/Network/Item.php:183
|
2378 |
msgid "My profile"
|
2379 |
msgstr ""
|
2380 |
|
2394 |
msgid "You want to connect a network page?"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: includes/B2S/Network/Item.php:157 includes/B2S/Network/Item.php:355
|
2398 |
#: includes/B2S/Ship/Portale.php:31
|
2399 |
msgid "Publication"
|
2400 |
msgstr ""
|
2403 |
msgid "You want to connect a social media group?"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: includes/B2S/Network/Item.php:169
|
2407 |
+
#, php-format
|
2408 |
+
msgid ""
|
2409 |
+
"Business Pages will be closed by XING on december 31, 2019. Please use XING "
|
2410 |
+
"Employer Branding Pages instead. <a target=\"_blank\" href=\"%s\">More "
|
2411 |
+
"information.</a>"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: includes/B2S/Network/Item.php:176 includes/B2S/Settings/Item.php:236
|
2415 |
msgid "Connections"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: includes/B2S/Network/Item.php:177 views/b2s/html/footer.php:192
|
2419 |
msgid "Best Time Manager"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: includes/B2S/Network/Item.php:214 includes/B2S/Network/Item.php:279
|
2423 |
+
#: includes/B2S/Network/Item.php:346
|
2424 |
msgid "To reactivate this connection,"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
+
#: includes/B2S/Network/Item.php:214 includes/B2S/Network/Item.php:279
|
2428 |
+
#: includes/B2S/Network/Item.php:346 includes/B2S/Ship/Image.php:30
|
2429 |
msgid "please upgrade"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: includes/B2S/Network/Item.php:217 includes/B2S/Network/Item.php:282
|
2433 |
+
#: includes/B2S/Network/Item.php:349
|
2434 |
msgid "Authorization is interrupted since"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: includes/B2S/Network/Item.php:221 includes/B2S/Network/Item.php:286
|
2438 |
+
#: includes/B2S/Network/Item.php:353
|
2439 |
msgid "Assigned by"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: includes/B2S/Network/Item.php:258 includes/B2S/Network/Item.php:324
|
2443 |
+
#: includes/B2S/Network/Item.php:386 includes/B2S/Ship/Item.php:996
|
2444 |
msgid "Days"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
+
#: includes/B2S/Network/Item.php:288 includes/B2S/Ship/Item.php:302
|
2448 |
msgid "Employer Branding"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
+
#: includes/B2S/Network/Item.php:467
|
2452 |
msgid "Connection currently assigned to"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
+
#: includes/B2S/Network/Item.php:524
|
2456 |
msgid "Successfully saved"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: includes/B2S/Network/Item.php:525
|
2460 |
msgid "Failed to save"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
+
#: includes/B2S/Network/Item.php:526
|
2464 |
msgid "Failed to load the default template"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
+
#: includes/B2S/Network/Item.php:533
|
2468 |
msgid ""
|
2469 |
+
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
2470 |
+
"templates that will automatically pre-format the structure of your social "
|
2471 |
+
"media posts. Select and define elements, such as title, excerpt, content, "
|
2472 |
+
"hashtags, and edit the post format. The “content” element is selected by "
|
2473 |
+
"default. Define custom post templates per social network and per profile, "
|
2474 |
+
"group & page. You can also add static content (such as individual hashtags "
|
2475 |
+
"or slogans) to your post templates."
|
2476 |
+
msgstr ""
|
2477 |
+
|
2478 |
+
#: includes/B2S/Network/Item.php:534
|
2479 |
+
msgid "Upgrade to Blog2Social Smart"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: includes/B2S/Network/Item.php:554
|
2483 |
msgid "Activate Instant Caching"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: includes/B2S/Network/Item.php:600
|
2487 |
msgid "Format"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: includes/B2S/Network/Item.php:601 includes/B2S/Network/Item.php:622
|
2491 |
msgid "Load default settings"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: includes/B2S/Network/Item.php:607 includes/B2S/Network/Item.php:610
|
2495 |
+
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:750
|
2496 |
msgid "Link"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: includes/B2S/Network/Item.php:608 includes/B2S/Network/Item.php:611
|
2500 |
msgid "Image"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
+
#: includes/B2S/Network/Item.php:620 includes/B2S/Settings/Item.php:76
|
2504 |
msgid "Content"
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: includes/B2S/Network/Item.php:629 includes/B2S/Ship/Item.php:343
|
2508 |
msgid ""
|
2509 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2510 |
"in your post."
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: includes/B2S/Network/Item.php:641
|
2514 |
msgid "clear"
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: includes/B2S/Network/Item.php:650
|
2518 |
msgid "The link will be added automatically at the end of the post."
|
2519 |
msgstr ""
|
2520 |
|
2521 |
+
#: includes/B2S/Network/Item.php:652 includes/B2S/Network/Item.php:678
|
2522 |
msgid "Network limit"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/B2S/Network/Item.php:652 includes/B2S/Network/Item.php:678
|
2526 |
+
#: includes/B2S/Network/Item.php:678 includes/B2S/Ship/Item.php:188
|
2527 |
+
#: includes/B2S/Ship/Item.php:192 includes/B2S/Ship/Item.php:237
|
2528 |
+
#: includes/B2S/Ship/Item.php:241 includes/B2S/Ship/Item.php:270
|
2529 |
+
#: includes/B2S/Ship/Item.php:274 includes/B2S/Ship/Item.php:1075
|
2530 |
+
#: includes/B2S/Ship/Item.php:1077
|
2531 |
msgid "characters"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: includes/B2S/Network/Item.php:678
|
2535 |
msgid "recommended length"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:750
|
2539 |
+
#: includes/B2S/Network/Item.php:804 includes/B2S/Network/Item.php:856
|
2540 |
+
#: includes/B2S/Network/Item.php:890
|
2541 |
msgid "Preview"
|
2542 |
msgstr ""
|
2543 |
|
2601 |
msgid "scheduled post(s)"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: includes/B2S/Post/Item.php:301
|
2605 |
+
msgid "You have not saved any drafts."
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: includes/B2S/Post/Item.php:305
|
2609 |
+
msgid "You have not published or scheduled any posts."
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: includes/B2S/Post/Item.php:328
|
2613 |
msgid "curated post"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: includes/B2S/Post/Item.php:333 includes/B2S/Post/Item.php:431
|
2617 |
msgid "last shared on social media"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: includes/B2S/Post/Item.php:345 includes/B2S/Post/Item.php:441
|
2621 |
+
#: includes/B2S/Post/Item.php:443 includes/B2S/Post/Item.php:464
|
2622 |
+
#: includes/B2S/Post/Item.php:485
|
2623 |
msgid "Share on Social Media"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: includes/B2S/Post/Item.php:349
|
2627 |
msgid "load Draft"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: includes/B2S/Post/Item.php:351 includes/B2S/Post/Item.php:449
|
2631 |
+
#: includes/B2S/Post/Item.php:469 includes/B2S/Post/Item.php:487
|
2632 |
+
#: includes/PRG/Post/Item.php:121
|
2633 |
msgid "Author"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: includes/B2S/Post/Item.php:369 includes/B2S/Post/Item.php:393
|
2637 |
+
#: includes/B2S/Post/Item.php:415
|
2638 |
msgid "Details"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: includes/B2S/Post/Item.php:371
|
2642 |
msgid "shared social media posts"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: includes/B2S/Post/Item.php:371
|
2646 |
#, php-format
|
2647 |
msgid "latest share by %s"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: includes/B2S/Post/Item.php:395 views/b2s/widgets/activity.php:10
|
2651 |
msgid "scheduled social media posts"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: includes/B2S/Post/Item.php:395
|
2655 |
#, php-format
|
2656 |
msgid "next share by %s"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: includes/B2S/Post/Item.php:417
|
2660 |
msgid "social media posts ready to be shared"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: includes/B2S/Post/Item.php:428
|
2664 |
msgid "via Browser-Extension"
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: includes/B2S/Post/Item.php:449
|
2668 |
msgid "saved"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: includes/B2S/Post/Item.php:469
|
2672 |
msgid "last saved"
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: includes/B2S/Post/Item.php:596 includes/B2S/Post/Item.php:732
|
2676 |
#: includes/B2S/Ship/Save.php:427
|
2677 |
msgid "Retweet"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: includes/B2S/Post/Item.php:602 includes/B2S/Post/Item.php:672
|
2681 |
+
#: includes/B2S/Post/Item.php:737
|
2682 |
msgid "select all"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
+
#: includes/B2S/Post/Item.php:605
|
2686 |
msgid "show"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: includes/B2S/Post/Item.php:612 includes/B2S/Ship/Save.php:438
|
2690 |
msgid "Please see"
|
2691 |
msgstr ""
|
2692 |
|
2693 |
+
#: includes/B2S/Post/Item.php:618
|
2694 |
#, php-format
|
2695 |
msgid "sharing in progress by %s"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: includes/B2S/Post/Item.php:618
|
2699 |
#, php-format
|
2700 |
msgid "shared by %s"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: includes/B2S/Post/Item.php:639 includes/B2S/Post/Item.php:652
|
2704 |
msgid "You want to delete a publish post entry?"
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: includes/B2S/Post/Item.php:640 includes/B2S/Post/Item.php:653
|
2708 |
msgid "delete from reporting"
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: includes/B2S/Post/Item.php:643
|
2712 |
msgid "re-share"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: includes/B2S/Post/Item.php:675
|
2716 |
#, php-format
|
2717 |
msgid "is waiting to shared by %s"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: includes/B2S/Post/Item.php:705 includes/B2S/Ship/Save.php:408
|
2721 |
msgid "share"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: includes/B2S/Post/Item.php:713
|
2725 |
msgid "You want to delete your Social Media post?"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: includes/B2S/Post/Item.php:747
|
2729 |
#, php-format
|
2730 |
msgid "last modified by %s"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: includes/B2S/Post/Item.php:749
|
2734 |
msgid "is processed by the network"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: includes/B2S/Post/Item.php:754
|
2738 |
#, php-format
|
2739 |
msgid "scheduled by %s"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: includes/B2S/Post/Item.php:759
|
2743 |
msgid "You want to edit your scheduled post?"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: includes/B2S/Post/Item.php:760
|
2747 |
msgid "edit"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: includes/B2S/Post/Item.php:771
|
2751 |
msgid "delete scheduling"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82
|
2755 |
+
#: includes/B2S/Ship/Item.php:898
|
2756 |
msgid "Account"
|
2757 |
msgstr ""
|
2758 |
|
2780 |
msgid "allow shortcodes in my post"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: includes/B2S/Settings/Item.php:88 includes/B2S/Ship/Item.php:844
|
2784 |
msgid "Hashtags"
|
2785 |
msgstr ""
|
2786 |
|
2967 |
msgstr ""
|
2968 |
|
2969 |
#: includes/B2S/Settings/Item.php:332 includes/B2S/Settings/Item.php:353
|
2970 |
+
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Image.php:87
|
2971 |
msgid "Image upload / Media Gallery"
|
2972 |
msgstr ""
|
2973 |
|
3098 |
msgid "No images are included in your post."
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: includes/B2S/Ship/Image.php:70
|
3102 |
msgid "Apply image for all posts"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: includes/B2S/Ship/Image.php:72
|
3106 |
+
msgid "Apply image"
|
3107 |
+
msgstr ""
|
3108 |
+
|
3109 |
+
#: includes/B2S/Ship/Image.php:77 includes/B2S/Ship/Image.php:80
|
3110 |
msgid "Apply image for this post"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
+
#: includes/B2S/Ship/Image.php:78
|
3114 |
msgid "Apply image for all og-meta networks"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
+
#: includes/B2S/Ship/Item.php:140
|
3118 |
msgid "Network does not support image for profiles"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
+
#: includes/B2S/Ship/Item.php:141 includes/B2S/Ship/Item.php:204
|
3122 |
msgid "Network defines image by link"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: includes/B2S/Ship/Item.php:143
|
3126 |
msgid "Supported HTML tags"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: includes/B2S/Ship/Item.php:144 includes/B2S/Ship/Item.php:203
|
3130 |
msgid "Network does not support emojis"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: includes/B2S/Ship/Item.php:145 includes/B2S/Ship/Item.php:205
|
3134 |
msgid "Network does not support GIFs"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: includes/B2S/Ship/Item.php:187
|
3138 |
msgid "Text only"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: includes/B2S/Ship/Item.php:202
|
3142 |
msgid "Network does not support image for pages"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: includes/B2S/Ship/Item.php:294
|
3146 |
msgid "Connection expires on 31 March 2019"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: includes/B2S/Ship/Item.php:298
|
3150 |
msgid "Connection expires on 2 April 2019"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: includes/B2S/Ship/Item.php:311
|
3154 |
msgid "post format"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: includes/B2S/Ship/Item.php:326 includes/B2S/Ship/Item.php:1083
|
3158 |
msgid "Insert full-text"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: includes/B2S/Ship/Item.php:328 includes/B2S/Ship/Item.php:1085
|
3162 |
msgid "Delete text"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: includes/B2S/Ship/Item.php:335 includes/B2S/Ship/Item.php:607
|
3166 |
+
#: includes/B2S/Ship/Item.php:949
|
|
|
|
|
|
|
|
|
|
|
|
|
3167 |
msgid ""
|
3168 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3169 |
"allowed to post identical or substantially similar content to multiple "
|
3170 |
"accounts or multiple duplicate updates on one account."
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: includes/B2S/Ship/Item.php:335 includes/B2S/Ship/Item.php:607
|
3174 |
+
#: includes/B2S/Ship/Item.php:949
|
3175 |
msgid ""
|
3176 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3177 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3178 |
"duplicate posts."
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: includes/B2S/Ship/Item.php:335 includes/B2S/Ship/Item.php:607
|
3182 |
+
#: includes/B2S/Ship/Item.php:949
|
3183 |
msgid "Learn more about this"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: includes/B2S/Ship/Item.php:339
|
3187 |
msgid ""
|
3188 |
"Please note: XING allows identical posts to be published only once within a "
|
3189 |
"group and no more than three times across different groups."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: includes/B2S/Ship/Item.php:339
|
3193 |
msgid "Read more"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: includes/B2S/Ship/Item.php:344
|
3197 |
msgid ""
|
3198 |
"Please keep in mind that users are not allowed to post identical or "
|
3199 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3200 |
"updates on one account."
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: includes/B2S/Ship/Item.php:344
|
3204 |
msgid ""
|
3205 |
"Violating these rules can result in suspending your account. Always vary "
|
3206 |
"your content with different images, comments, hashtags or handles to prevent "
|
3207 |
"duplicate posts."
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: includes/B2S/Ship/Item.php:364
|
3211 |
msgid "hide calendar"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: includes/B2S/Ship/Item.php:421 includes/B2S/Ship/Item.php:450
|
3215 |
+
#: includes/B2S/Ship/Item.php:479 includes/B2S/Ship/Item.php:508
|
3216 |
+
#: includes/B2S/Ship/Item.php:536 includes/B2S/Ship/Item.php:564
|
3217 |
+
#: includes/B2S/Ship/Item.php:595 includes/B2S/Ship/Item.php:618
|
3218 |
+
#: includes/B2S/Ship/Item.php:639 includes/B2S/Ship/Item.php:660
|
3219 |
+
#: includes/B2S/Ship/Item.php:681 includes/B2S/Ship/Item.php:702
|
3220 |
+
#: includes/B2S/Ship/Item.php:712
|
3221 |
msgid "Write something about your post..."
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: includes/B2S/Ship/Item.php:436 includes/B2S/Ship/Item.php:494
|
3225 |
+
#: includes/B2S/Ship/Item.php:523 includes/B2S/Ship/Item.php:551
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3226 |
msgid ""
|
3227 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3228 |
"network"
|
3229 |
msgstr ""
|
3230 |
|
3231 |
+
#: includes/B2S/Ship/Item.php:439 includes/B2S/Ship/Item.php:468
|
3232 |
+
#: includes/B2S/Ship/Item.php:497 includes/B2S/Ship/Item.php:526
|
3233 |
+
#: includes/B2S/Ship/Item.php:554
|
3234 |
msgid ""
|
3235 |
"You want to change your link image, link title and link description for this "
|
3236 |
"network? Click here."
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: includes/B2S/Ship/Item.php:441 includes/B2S/Ship/Item.php:499
|
3240 |
+
#: includes/B2S/Ship/Item.php:528 includes/B2S/Ship/Item.php:556
|
3241 |
msgid "OG Meta title"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: includes/B2S/Ship/Item.php:442 includes/B2S/Ship/Item.php:500
|
3245 |
+
#: includes/B2S/Ship/Item.php:529 includes/B2S/Ship/Item.php:557
|
3246 |
msgid "OG Meta description"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: includes/B2S/Ship/Item.php:465
|
3250 |
msgid ""
|
3251 |
"Info: Change Card Meta tags image, title and description for this network"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: includes/B2S/Ship/Item.php:470
|
3255 |
msgid "Card Meta title"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: includes/B2S/Ship/Item.php:471
|
3259 |
msgid "Card Meta description"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: includes/B2S/Ship/Item.php:728
|
3263 |
msgid "required"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: includes/B2S/Ship/Item.php:818
|
3267 |
msgid "Jobs & Projects"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: includes/B2S/Ship/Item.php:819
|
3271 |
msgid "Events"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: includes/B2S/Ship/Item.php:820
|
3275 |
msgid "Classified Ads"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: includes/B2S/Ship/Item.php:822
|
3279 |
msgid "Offer"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: includes/B2S/Ship/Item.php:823
|
3283 |
msgid "Request"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: includes/B2S/Ship/Item.php:834
|
3287 |
msgid "The Headline..."
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: includes/B2S/Ship/Item.php:842
|
3291 |
+
#, php-format
|
3292 |
+
msgid "max. %s Tags"
|
3293 |
+
msgstr ""
|
3294 |
+
|
3295 |
+
#: includes/B2S/Ship/Item.php:880
|
3296 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: includes/B2S/Ship/Item.php:899 views/b2s/partials/post-edit-modal.php:73
|
3300 |
msgid "Delay"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
+
#: includes/B2S/Ship/Item.php:909 includes/B2S/Ship/Item.php:910
|
3304 |
+
#: includes/B2S/Ship/Item.php:911 includes/B2S/Ship/Item.php:912
|
3305 |
#: views/b2s/partials/post-edit-modal.php:77
|
3306 |
#: views/b2s/partials/post-edit-modal.php:78
|
3307 |
#: views/b2s/partials/post-edit-modal.php:79
|
3309 |
msgid "min"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
+
#: includes/B2S/Ship/Item.php:917
|
3313 |
msgid "Add Retweet"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
+
#: includes/B2S/Ship/Item.php:937
|
3317 |
msgid "Share Now"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: includes/B2S/Ship/Item.php:942
|
3321 |
msgid "Schedule Recurrent Post"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: includes/B2S/Ship/Item.php:978 views/b2s/partials/post-edit-modal.php:47
|
3325 |
msgid ""
|
3326 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3327 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
3331 |
"the new XING."
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: includes/B2S/Ship/Item.php:982 views/b2s/partials/post-edit-modal.php:51
|
3335 |
msgid ""
|
3336 |
"Please note: Google will shut down Google+ for all private accounts "
|
3337 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3339 |
"other content here:"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: includes/B2S/Ship/Item.php:985
|
3343 |
msgid "Repeats"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: includes/B2S/Ship/Item.php:986 includes/B2S/Ship/Item.php:989
|
3347 |
msgid "Duration"
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: includes/B2S/Ship/Item.php:990
|
3351 |
msgid "Number of repeats"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: includes/B2S/Ship/Item.php:991
|
3355 |
msgid "Day of month"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: includes/B2S/Ship/Item.php:992
|
3359 |
msgid "Repeats every (days)"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: includes/B2S/Ship/Item.php:994
|
3363 |
msgid "Start date"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: includes/B2S/Ship/Item.php:995
|
3367 |
msgid "Time to publish"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: includes/B2S/Ship/Item.php:1004
|
3371 |
msgid "weekly"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: includes/B2S/Ship/Item.php:1005
|
3375 |
msgid "monthly"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: includes/B2S/Ship/Item.php:1006
|
3379 |
msgid "own period"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: includes/B2S/Ship/Item.php:1012
|
3383 |
msgid "Week"
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: includes/B2S/Ship/Item.php:1012
|
3387 |
msgid "Weeks"
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: includes/B2S/Ship/Item.php:1021
|
3391 |
msgid "Month"
|
3392 |
msgstr ""
|
3393 |
|
3394 |
+
#: includes/B2S/Ship/Item.php:1021
|
3395 |
msgid "Months"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: includes/B2S/Ship/Item.php:1041
|
3399 |
msgid "End Of Month"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
+
#: includes/B2S/Ship/Item.php:1046
|
3403 |
msgid "Timespan"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: includes/B2S/Ship/Item.php:1049 views/b2s/partials/post-edit-modal.php:63
|
3407 |
#: views/b2s/partials/post-edit-modal.php:66
|
3408 |
msgid "Time"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: includes/B2S/Ship/Item.php:1054
|
3412 |
msgid "Mon"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: includes/B2S/Ship/Item.php:1055
|
3416 |
msgid "Tue"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: includes/B2S/Ship/Item.php:1056
|
3420 |
msgid "Wed"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: includes/B2S/Ship/Item.php:1057
|
3424 |
msgid "Thu"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
+
#: includes/B2S/Ship/Item.php:1058
|
3428 |
msgid "Fri"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: includes/B2S/Ship/Item.php:1059
|
3432 |
msgid "Sat"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
+
#: includes/B2S/Ship/Item.php:1060
|
3436 |
msgid "Sun"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
+
#: includes/B2S/Ship/Item.php:1067
|
3440 |
msgid "add another post"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: includes/B2S/Ship/Item.php:1081
|
3444 |
msgid "Copy from original"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: includes/B2S/Ship/Item.php:1097
|
3448 |
msgid "Apply Settings To All Networks"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: includes/B2S/Ship/Item.php:1098
|
3452 |
msgid "Save as best time for this network"
|
3453 |
msgstr ""
|
3454 |
|
4261 |
msgstr ""
|
4262 |
|
4263 |
#: views/b2s/html/sidebar.php:65
|
4264 |
+
msgid "Website & Blog Content"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
#: views/b2s/html/sidebar.php:69
|
4268 |
+
msgid "Share Content"
|
4269 |
+
msgstr ""
|
4270 |
+
|
4271 |
+
#: views/b2s/html/sidebar.php:81
|
4272 |
+
msgid "Social Media Post"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
#: views/b2s/html/sidebar.php:85
|
4284 |
msgid "all Posts"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: views/b2s/html/sidebar.php:138
|
4288 |
msgid "Upgrade License"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: views/b2s/html/sidebar.php:143
|
4292 |
msgid "Plans & Prices"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
+
#: views/b2s/html/sidebar.php:160
|
4296 |
msgid ""
|
4297 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4298 |
"anything that does not work for you, please contact us!"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: views/b2s/html/sidebar.php:174
|
4302 |
msgid "Blog2Social Blog News"
|
4303 |
msgstr ""
|
4304 |
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ 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, google plus, google plus pages, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, path, pinterest, re-post, scheduling, scheduling plugin, social media, social media auto publish, social media automation, social media button, social media manager, social media plugin, social media post, social media publishing, social media share, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
-
Tested up to: 5.3.
|
8 |
-
Stable tag:
|
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
|
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")).
|
@@ -32,6 +32,7 @@ To benefit from all the advanced features for automatic sharing and scheduling y
|
|
32 |
* **XING** - Post to your profile (Free), page (Premium), and in groups (Premium)
|
33 |
* **Instagram** - Post to your Instagram profile (Free)
|
34 |
* **Pinterest** - Post to all your different Pinboards (Free)
|
|
|
35 |
* **Flickr** - Post to your Flickr profile (Free)
|
36 |
* **Reddit** - Post to your subreddits (Free)
|
37 |
* **VK.com** - post to your profile (Free), page (Premium) or in groups (Premium)
|
@@ -45,7 +46,7 @@ To benefit from all the advanced features for automatic sharing and scheduling y
|
|
45 |
|
46 |
BLOG2SOCIAL FREE
|
47 |
|
48 |
-
* Share your posts and pages on 14 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), Instagram, Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo, Bloglovin, and VK at once.
|
49 |
* Customize your social media posts with unique personal comments, hashtags, handles, emojis, and select an image or animated GIF of your choice.
|
50 |
* You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
|
51 |
* Manage all users posts and pages and share them on your channels.
|
@@ -61,11 +62,11 @@ All these features are included in Blog2Social free. If you want to take your so
|
|
61 |
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).
|
62 |
|
63 |
|
64 |
-
|
65 |
|
66 |
**#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.
|
67 |
|
68 |
-
Blog2Social provides you with a **ready-to-use Best Time Manager** for the best times to post on each social network. If you know which times work best for you, then you can **define and save your own time settings.** Schedule your social media posts for **immediate sharing or choose a one-time or recurring schedule
|
69 |
|
70 |
|
71 |
**#2 Cross-Posting and Cross-Promotion with Customized Social Media Posts** – Create unique social media posts for each social network and community.
|
@@ -88,12 +89,17 @@ Activate the autoposter to **automatically share your new and updated posts** on
|
|
88 |
Share and schedule links and posts from any source to **automatically fill your social media feeds with a consistent content mix** of your own content and third-party content. Import content via RSS or share any URL-Link, or use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share or schedule them whenever you want.
|
89 |
|
90 |
|
91 |
-
**#6 Social
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
Blog2Social automatically adds Open Graph and Twitter Card tags to your blog posts to **optimize the shareability of your blog post on social networks.** Edit these tags to your liking to adjust how your link preview looks on social media networks.
|
94 |
|
95 |
|
96 |
-
**#
|
97 |
|
98 |
Use the **integrated Bitly shortener** to track the performance of your links. **Re-share** old posts or post & schedule **Retweets for Twitter.** Discover many more features:
|
99 |
**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")**
|
@@ -201,6 +207,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
201 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
202 |
|
203 |
== Changelog ==
|
|
|
|
|
204 |
= 5.9.0 =
|
205 |
Usability Optimization & Gif support
|
206 |
= 5.8.1 =
|
@@ -293,6 +301,8 @@ Usabilitiy and Performance Optimization. Select link format or image format indi
|
|
293 |
Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
|
294 |
|
295 |
== Upgrade Notice ==
|
|
|
|
|
296 |
= 5.9.0 =
|
297 |
Usability Optimization & Gif support
|
298 |
= 5.8.1 =
|
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, google plus, google plus pages, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, path, pinterest, re-post, scheduling, scheduling plugin, social media, social media auto publish, social media automation, social media button, social media manager, social media plugin, social media post, social media publishing, social media share, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
+
Tested up to: 5.3.2
|
8 |
+
Stable tag: 6.0.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.0: New Image Posts, Imgur, Animated Gifs and Emojis
|
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")).
|
32 |
* **XING** - Post to your profile (Free), page (Premium), and in groups (Premium)
|
33 |
* **Instagram** - Post to your Instagram profile (Free)
|
34 |
* **Pinterest** - Post to all your different Pinboards (Free)
|
35 |
+
* **Imgur** - Post to your Imgur profile (Free)
|
36 |
* **Flickr** - Post to your Flickr profile (Free)
|
37 |
* **Reddit** - Post to your subreddits (Free)
|
38 |
* **VK.com** - post to your profile (Free), page (Premium) or in groups (Premium)
|
46 |
|
47 |
BLOG2SOCIAL FREE
|
48 |
|
49 |
+
* Share your posts and pages on 14 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), Instagram, Pinterest, Imgur, Reddit, Torial, Medium, Tumblr, Flickr, Diigo, Bloglovin, and VK at once.
|
50 |
* Customize your social media posts with unique personal comments, hashtags, handles, emojis, and select an image or animated GIF of your choice.
|
51 |
* You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
|
52 |
* Manage all users posts and pages and share them on your channels.
|
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 |
+
8 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 |
|
69 |
+
Blog2Social provides you with a **ready-to-use Best Time Manager** for the best times to post on each social network. If you know which times work best for you, then you can **define and save your own time settings.** Schedule your social media posts for **immediate sharing or choose a one-time or recurring schedule. Save evergreen content as a favorite** to easily find and re-share your most valuable content.
|
70 |
|
71 |
|
72 |
**#2 Cross-Posting and Cross-Promotion with Customized Social Media Posts** – Create unique social media posts for each social network and community.
|
89 |
Share and schedule links and posts from any source to **automatically fill your social media feeds with a consistent content mix** of your own content and third-party content. Import content via RSS or share any URL-Link, or use the [free Blog2Social Extension for Firefox and Chrome](https://www.blog2social.com/en/webapp/extension/ "Blog2Social Browser Extension") to save links while browsing and share or schedule them whenever you want.
|
90 |
|
91 |
|
92 |
+
**#6 Create Social Media Posts any source** – share updates, images, and links from one central platform and schedule all your social media posts in one social media calendar.
|
93 |
+
|
94 |
+
Save valuable time by managing your complete **social media content right from your WordPress dashboard.**
|
95 |
+
|
96 |
+
|
97 |
+
**#7 Social-Media-Ready Blog Posts** – Blog2Social optimizes your social meta tags
|
98 |
|
99 |
Blog2Social automatically adds Open Graph and Twitter Card tags to your blog posts to **optimize the shareability of your blog post on social networks.** Edit these tags to your liking to adjust how your link preview looks on social media networks.
|
100 |
|
101 |
|
102 |
+
**#8 There is much more to discover** – Try Blog2Social to check out all the features
|
103 |
|
104 |
Use the **integrated Bitly shortener** to track the performance of your links. **Re-share** old posts or post & schedule **Retweets for Twitter.** Discover many more features:
|
105 |
**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")**
|
207 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
208 |
|
209 |
== Changelog ==
|
210 |
+
= 6.0.0 =
|
211 |
+
New Image Posts, Imgur, Animated Gifs and Emojis
|
212 |
= 5.9.0 =
|
213 |
Usability Optimization & Gif support
|
214 |
= 5.8.1 =
|
301 |
Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
|
302 |
|
303 |
== Upgrade Notice ==
|
304 |
+
= 6.0.0 =
|
305 |
+
New Image Posts, Imgur, Animated Gifs and Emojis
|
306 |
= 5.9.0 =
|
307 |
Usability Optimization & Gif support
|
308 |
= 5.8.1 =
|
views/b2s/curation.draft.php
CHANGED
@@ -23,6 +23,7 @@ require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
|
23 |
<!--Filter Start-->
|
24 |
<div class="b2s-post">
|
25 |
<div class="grid-body">
|
|
|
26 |
<!-- Filter Post Start-->
|
27 |
<form class="b2sSortForm form-inline pull-left" action="#">
|
28 |
<input id="b2sType" type="hidden" value="draft" name="b2sType">
|
23 |
<!--Filter Start-->
|
24 |
<div class="b2s-post">
|
25 |
<div class="grid-body">
|
26 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/post.navbar.php'); ?>
|
27 |
<!-- Filter Post Start-->
|
28 |
<form class="b2sSortForm form-inline pull-left" action="#">
|
29 |
<input id="b2sType" type="hidden" value="draft" name="b2sType">
|
views/b2s/curation.php
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
<?php
|
2 |
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
/* Data */
|
|
|
4 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
5 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
6 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
@@ -39,42 +40,85 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
39 |
<span class="glyphicon glyphicon-success glyphicon-ok"></span> <?php esc_html_e('Saved as draft.', 'blog2social'); ?>
|
40 |
</div>
|
41 |
<div class="b2s-curation-area">
|
42 |
-
<div class="row b2s-curation-
|
43 |
<div class="col-md-12">
|
44 |
-
<
|
45 |
-
|
46 |
-
<
|
47 |
-
|
48 |
-
<
|
49 |
-
|
50 |
-
|
51 |
-
</div>
|
52 |
-
</div>
|
53 |
</div>
|
54 |
</div>
|
55 |
-
<
|
56 |
<div class="b2s-loading-area" style="display:none">
|
57 |
<br>
|
58 |
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
59 |
<div class="clearfix"></div>
|
60 |
<div class="text-center b2s-loader-text"><?php esc_html_e("Load data...", "blog2social"); ?></div>
|
61 |
</div>
|
62 |
-
<div class="
|
63 |
-
<div class="
|
64 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
<input type="hidden" id="b2s_user_timezone" name="b2s_user_timezone" value="<?php echo $userTimeZoneOffset ?>">
|
66 |
<div class="b2s-curation-preview-area"></div>
|
67 |
<div class="clearfix"></div>
|
68 |
-
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
</div>
|
71 |
-
|
72 |
-
<input type="hidden" id="b2sSelSchedDate" value="<?php echo (($selSchedDate != "") ? strtotime($selSchedDate) . '000' : ''); ?>">
|
73 |
-
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
74 |
-
<input type="hidden" id="b2sJsTextPublish" value="<?php esc_html_e('published', 'blog2social') ?>">
|
75 |
</div>
|
76 |
-
<div class="row b2s-curation-post-list-area"></div>
|
77 |
</div>
|
|
|
|
|
|
|
|
|
|
|
78 |
</div>
|
79 |
</div>
|
80 |
</div>
|
@@ -146,3 +190,64 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
146 |
</div>
|
147 |
</div>
|
148 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
<?php
|
2 |
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
/* Data */
|
4 |
+
$userLang = strtolower(substr(get_locale(), 0, 2));
|
5 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
6 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
7 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
40 |
<span class="glyphicon glyphicon-success glyphicon-ok"></span> <?php esc_html_e('Saved as draft.', 'blog2social'); ?>
|
41 |
</div>
|
42 |
<div class="b2s-curation-area">
|
43 |
+
<div class="row b2s-curation-select">
|
44 |
<div class="col-md-12">
|
45 |
+
<button class="btn btn-primary btn-sm b2s-curation-format-link pull-left"><?php esc_html_e('Link Post', 'blog2social') ?></button>
|
46 |
+
<?php if(B2S_PLUGIN_USER_VERSION > 0) { ?>
|
47 |
+
<button class="btn btn-light btn-sm b2s-curation-format-image pull-left"><?php esc_html_e('Image Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("NEW", "blog2social") ?></span></button>
|
48 |
+
<?php } else { ?>
|
49 |
+
<button class="btn btn-light btn-sm b2s-curation-info-premium-btn pull-left"><?php esc_html_e('Image Post', 'blog2social') ?> <span class="label label-success"><?php esc_html_e("SMART", "blog2social") ?></span></button>
|
50 |
+
<?php } ?>
|
51 |
+
<input type="hidden" id="b2s-curation-post-format" value="0">
|
|
|
|
|
52 |
</div>
|
53 |
</div>
|
54 |
+
<form id="b2s-curation-post-form" method="post">
|
55 |
<div class="b2s-loading-area" style="display:none">
|
56 |
<br>
|
57 |
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
58 |
<div class="clearfix"></div>
|
59 |
<div class="text-center b2s-loader-text"><?php esc_html_e("Load data...", "blog2social"); ?></div>
|
60 |
</div>
|
61 |
+
<div class="b2s-curation-link-area">
|
62 |
+
<div class="b2s-curation-input-area">
|
63 |
+
<div class="col-md-12">
|
64 |
+
<div class="row form-group">
|
65 |
+
<p class="b2s-curation-input-area-info-header-text"> <?php esc_html_e("Enter a link you want share on your social media channels", "blog2social"); ?></p>
|
66 |
+
<small id="b2s-curation-input-url-help" class="form-text text-muted b2s-color-text-red"><?php esc_html_e("Please enter a valid link", "blog2social") ?></small>
|
67 |
+
<input type="email" class="form-control" id="b2s-curation-input-url" value="" placeholder="<?php esc_html_e("Enter link", "blog2social"); ?>">
|
68 |
+
<div class="clearfix"></div>
|
69 |
+
<div class="b2s-curation-input-area-btn">
|
70 |
+
<button class="btn btn-primary b2s-btn-curation-continue"><?php esc_html_e("continue", "blog2social"); ?></button>
|
71 |
+
</div>
|
72 |
+
</div>
|
73 |
+
</div>
|
74 |
+
</div>
|
75 |
+
<div class="b2s-curation-result-area">
|
76 |
+
<div class="col-md-12">
|
77 |
<input type="hidden" id="b2s_user_timezone" name="b2s_user_timezone" value="<?php echo $userTimeZoneOffset ?>">
|
78 |
<div class="b2s-curation-preview-area"></div>
|
79 |
<div class="clearfix"></div>
|
80 |
+
</div>
|
81 |
+
</div>
|
82 |
+
</div>
|
83 |
+
<div class="row b2s-curation-image-area">
|
84 |
+
<div class="col-md-12">
|
85 |
+
<input type="hidden" id="b2s_user_timezone" name="b2s_user_timezone" value="<?php echo $userTimeZoneOffset ?>">
|
86 |
+
<div class="b2s-curation-form-area">
|
87 |
+
<div class="col-xs-12 col-sm-5 col-lg-3">
|
88 |
+
<button class="btn btn-primary btn-circle b2s-image-remove-btn" style="display:none;" type="button"><i class="glyphicon glyphicon-trash"></i></button>
|
89 |
+
<img src="<?php echo plugins_url('/assets/images/no-image.png', B2S_PLUGIN_FILE); ?>" class="b2s-post-item-details-url-image center-block img-responsive">
|
90 |
+
<input type="hidden" class="b2s-image-url-hidden-field form-control" value="" name="image_url">
|
91 |
+
<input type="hidden" class="b2s-image-id-hidden-field form-control" value="" name="image_id">
|
92 |
+
<div class="clearfix"></div>
|
93 |
+
<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open"><?php esc_html_e('Change image', 'blog2social'); ?></button>
|
94 |
+
</div>
|
95 |
+
<div class="col-xs-12 col-sm-7 col-lg-9">
|
96 |
+
<div class="b2s-post-item-details-item-message-area">
|
97 |
+
<textarea id="b2s-post-curation-comment-image" class="form-control b2s-post-item-details-item-message-input" name="comment_image" placeholder="<?php esc_html_e('Write something...', 'blog2social'); ?>"></textarea>
|
98 |
+
<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn">☺</button>
|
99 |
+
</div>
|
100 |
+
</div>
|
101 |
+
</div>
|
102 |
+
<div class="clearfix"></div>
|
103 |
+
</div>
|
104 |
+
</div>
|
105 |
+
<div class="b2s-curation-settings-area"></div>
|
106 |
+
<input type="hidden" id="b2s-draft-id" value="" name="b2s-draft-id">
|
107 |
+
</form>
|
108 |
+
<div class="row b2s-curation-post-list-area">
|
109 |
+
<div class="b2s-curation-post-list"></div>
|
110 |
+
<div class="col-md-12">
|
111 |
+
<div class="pull-right">
|
112 |
+
<button class="btn btn-primary b2s-re-share-btn"><?php esc_html_e('Re-share this post', 'blog2social') ?></button>
|
113 |
+
<a class="btn btn-primary" href="admin.php?page=blog2social-curation"><?php esc_html_e('Create a new post', 'blog2social') ?></a>
|
114 |
</div>
|
|
|
|
|
|
|
|
|
115 |
</div>
|
|
|
116 |
</div>
|
117 |
+
<input type="hidden" id="b2sSelSchedDate" value="<?php echo (($selSchedDate != "") ? strtotime($selSchedDate) . '000' : ''); ?>">
|
118 |
+
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
119 |
+
<input type="hidden" id="b2sJsTextPublish" value="<?php esc_html_e('published', 'blog2social') ?>">
|
120 |
+
<input type="hidden" id="b2sEmojiTranslation" value='<?php echo json_encode(B2S_Tools::getEmojiTranslationList()); ?>'>
|
121 |
+
<input type="hidden" id="b2sDefaultNoImage" value="<?php echo plugins_url('/assets/images/no-image.png', B2S_PLUGIN_FILE); ?>">
|
122 |
</div>
|
123 |
</div>
|
124 |
</div>
|
190 |
</div>
|
191 |
</div>
|
192 |
</div>
|
193 |
+
|
194 |
+
<div class="modal fade" id="b2sInfoCCModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoCCModal" aria-hidden="true" data-backdrop="false">
|
195 |
+
<div class="modal-dialog">
|
196 |
+
<div class="modal-content">
|
197 |
+
<div class="modal-header">
|
198 |
+
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
199 |
+
<h4 class="modal-title"><?php esc_html_e('Blog2Social: Social Media Posts', 'blog2social') ?></h4>
|
200 |
+
</div>
|
201 |
+
<div class="modal-body">
|
202 |
+
<p><?php
|
203 |
+
echo esc_html__('This is a premium feature.', 'blog2social');
|
204 |
+
|
205 |
+
if (B2S_PLUGIN_USER_VERSION == 0) {
|
206 |
+
?>
|
207 |
+
<br>
|
208 |
+
<hr>
|
209 |
+
<h4><?php esc_html_e('You wannt to create image posts with any image from your media library?', 'blog2social'); ?></h4>
|
210 |
+
<?php esc_html_e('With Blog2Social Premium you can:', 'blog2social') ?>
|
211 |
+
<br>
|
212 |
+
<br>
|
213 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Post on pages and groups', 'blog2social') ?><br>
|
214 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Share on multiple profiles, pages and groups', 'blog2social') ?><br>
|
215 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Auto-post and auto-schedule new and updated blog posts', 'blog2social') ?><br>
|
216 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule your posts at the best times on each network', 'blog2social') ?><br>
|
217 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Best Time Manager: use predefined best time scheduler to auto-schedule your social media posts', 'blog2social') ?><br>
|
218 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule your post for one time, multiple times or recurrently', 'blog2social') ?><br>
|
219 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Schedule and re-share old posts', 'blog2social') ?><br>
|
220 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Select link format or image format for your posts', 'blog2social') ?><br>
|
221 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Select individual images per post', 'blog2social') ?><br>
|
222 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('Reporting & calendar: keep track of your published and scheduled social media posts', 'blog2social') ?><br>
|
223 |
+
<br>
|
224 |
+
<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>
|
225 |
+
<br>
|
226 |
+
<center> <?php echo sprintf(__('or <a target="_blank" href="%s">start with free 30-days-trial of Blog2Social Premium</a> (no payment information needed)', 'blog2social'), esc_url('https://service.blog2social.com/trial')); ?> </center>
|
227 |
+
<?php } ?>
|
228 |
+
</div>
|
229 |
+
</div>
|
230 |
+
</div>
|
231 |
+
</div>
|
232 |
+
|
233 |
+
<div id="b2s-network-select-image" class="modal fade" role="dialog" aria-labelledby="b2s-network-select-image" aria-hidden="true" data-backdrop="false">
|
234 |
+
<div class="modal-dialog modal-lg">
|
235 |
+
<div class="modal-content">
|
236 |
+
<div class="modal-header">
|
237 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2s-network-select-image">×</button>
|
238 |
+
<h4 class="modal-title"><?php esc_html_e('Select image', 'blog2social') ?></h4>
|
239 |
+
</div>
|
240 |
+
<div class="modal-body">
|
241 |
+
<div class="row">
|
242 |
+
<div class="col-xs-12">
|
243 |
+
<?php
|
244 |
+
require_once B2S_PLUGIN_DIR . 'includes/B2S/Ship/Image.php';
|
245 |
+
$image = new B2S_Ship_Image('curation');
|
246 |
+
echo $image->getItemHtml(0, '', '', $userLang);
|
247 |
+
?>
|
248 |
+
</div>
|
249 |
+
</div>
|
250 |
+
</div>
|
251 |
+
</div>
|
252 |
+
</div>
|
253 |
+
</div>
|
views/b2s/html/post.navbar.php
CHANGED
@@ -5,14 +5,18 @@ $isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
|
5 |
<!--Navbar Start-->
|
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 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-approve') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-approve" href="admin.php?page=blog2social-approve"><?php esc_html_e('Instant Sharing', 'blog2social') ?></a>
|
9 |
-
<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') ?> <?php echo ( ($getPage != 'blog2social-draft-post') ? '<span class="label label-success">' . esc_html__("NEW", "blog2social") . '</span>' : '' ); ?></a>
|
10 |
<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>
|
11 |
<?php if ($getPage != "blog2social") { ?>
|
12 |
<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>
|
13 |
<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>
|
14 |
<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>
|
15 |
-
<a class="btn btn-<?php echo ($getPage == 'blog2social-curation') ? 'primary' : 'link'; ?> b2s-post-btn" href="admin.php?page=blog2social-curation"><?php esc_html_e('Content Curation', 'blog2social'); ?></a>
|
16 |
<?php } ?>
|
17 |
</div>
|
18 |
<hr class="pull-left">
|
5 |
<!--Navbar Start-->
|
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') ?> <?php echo ( ($getPage != 'blog2social-favorites') ? '<span class="label label-success">' . esc_html__("NEW", "blog2social") . '</span>' : '' ); ?></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>
|
13 |
+
<?php } ?>
|
14 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-approve') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-approve" href="admin.php?page=blog2social-approve"><?php esc_html_e('Instant Sharing', '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-<?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 } ?>
|
21 |
</div>
|
22 |
<hr class="pull-left">
|
views/b2s/html/sidebar.php
CHANGED
@@ -39,12 +39,12 @@ $customizeArea = B2S_System::customizeArea();
|
|
39 |
?><i class="b2s-sidebar-licence-btn-edit glyphicon glyphicon-pencil"></i>
|
40 |
</a>
|
41 |
<?php
|
42 |
-
if(B2S_PLUGIN_USER_VERSION == 0) {
|
43 |
echo "<br>";
|
44 |
-
if(defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()){
|
45 |
-
echo '<a class="btn-link b2s-free-link" target="_blank" href="'.B2S_Tools::getSupportLink('affiliate').'">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>';
|
46 |
} else {
|
47 |
-
echo '<a class="btn-link b2s-free-link" target="_blank" href="'.B2S_Tools::getSupportLink('feature').'">' . esc_html__('Start your 30-day free Premium trial', 'blog2social') . '</a>';
|
48 |
}
|
49 |
}
|
50 |
?>
|
@@ -62,11 +62,11 @@ $customizeArea = B2S_System::customizeArea();
|
|
62 |
<hr>
|
63 |
<div class="b2s-sidebar-head">
|
64 |
<div class="b2s-sidebar-head-text">
|
65 |
-
<?php esc_html_e("Blog Content", "blog2social") ?>
|
66 |
</div>
|
67 |
<ul>
|
68 |
<li class="b2s-list-margin-left-10">
|
69 |
-
<i class="glyphicon glyphicon-
|
70 |
</li>
|
71 |
</ul>
|
72 |
</div>
|
@@ -78,7 +78,7 @@ $customizeArea = B2S_System::customizeArea();
|
|
78 |
<hr>
|
79 |
<div class="b2s-sidebar-head">
|
80 |
<div class="b2s-sidebar-head-text">
|
81 |
-
<?php esc_html_e("
|
82 |
</div>
|
83 |
<ul>
|
84 |
<li class="b2s-list-margin-left-10">
|
@@ -104,11 +104,14 @@ $customizeArea = B2S_System::customizeArea();
|
|
104 |
<i class="glyphicon glyphicon-th-list glyphicon-success"></i> <a href="admin.php?page=blog2social-post" class="b2s-sidebar-menu-item"><?php esc_html_e("all Posts", "blog2social") ?></a>
|
105 |
</li>
|
106 |
<li class="b2s-list-margin-left-10">
|
107 |
-
<i class="glyphicon glyphicon-
|
108 |
</li>
|
109 |
<li class="b2s-list-margin-left-10">
|
110 |
<i class="glyphicon glyphicon-th-list glyphicon-success"></i> <a href="admin.php?page=blog2social-draft-post" class="b2s-sidebar-menu-item"><?php esc_html_e("Drafts", "blog2social") ?></a>
|
111 |
</li>
|
|
|
|
|
|
|
112 |
<li class="b2s-list-margin-left-10">
|
113 |
<i class="glyphicon glyphicon-time glyphicon-success"></i> <a href="admin.php?page=blog2social-sched" class="b2s-sidebar-menu-item"><?php esc_html_e("Scheduled Posts", "blog2social") ?></a>
|
114 |
</li>
|
@@ -125,7 +128,7 @@ $customizeArea = B2S_System::customizeArea();
|
|
125 |
<i class="glyphicon glyphicon-user glyphicon-success"></i> <a href="admin.php?page=blog2social-network" class="b2s-sidebar-menu-item"><?php esc_html_e("Social Accounts", "blog2social") ?></a>
|
126 |
</li>
|
127 |
<li class="b2s-list-margin-left-10">
|
128 |
-
<i class="glyphicon glyphicon-
|
129 |
</li>
|
130 |
<li class="b2s-list-margin-left-10">
|
131 |
<i class="glyphicon glyphicon-question-sign glyphicon-success"></i> <a href="admin.php?page=blog2social-support" class="b2s-sidebar-menu-item"><?php esc_html_e("Help & Support", "blog2social") ?></a>
|
@@ -151,7 +154,8 @@ $customizeArea = B2S_System::customizeArea();
|
|
151 |
<hr>
|
152 |
<div class="b2s-sidebar-head">
|
153 |
<div class="b2s-sidebar-head-text">
|
154 |
-
<span class="glyphicon glyphicon-star glyphicon-success"></span
|
|
|
155 |
</div>
|
156 |
<p><?php esc_html_e("If you like Blog2Social, please give us a 5 star rating. If there is anything that does not work for you, please contact us!", "blog2social"); ?></p>
|
157 |
<a target="_blank" href="https://wordpress.org/support/plugin/blog2social/reviews/" class="btn btn-success btn-block"><?php esc_html_e("RATE BLOG2SOCIAL", "blog2social") ?></a>
|
39 |
?><i class="b2s-sidebar-licence-btn-edit glyphicon glyphicon-pencil"></i>
|
40 |
</a>
|
41 |
<?php
|
42 |
+
if (B2S_PLUGIN_USER_VERSION == 0) {
|
43 |
echo "<br>";
|
44 |
+
if (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()) {
|
45 |
+
echo '<a class="btn-link b2s-free-link" target="_blank" href="' . B2S_Tools::getSupportLink('affiliate') . '">' . esc_html__('Upgrade to Premium', 'blog2social') . '</a>';
|
46 |
} else {
|
47 |
+
echo '<a class="btn-link b2s-free-link" target="_blank" href="' . B2S_Tools::getSupportLink('feature') . '">' . esc_html__('Start your 30-day free Premium trial', 'blog2social') . '</a>';
|
48 |
}
|
49 |
}
|
50 |
?>
|
62 |
<hr>
|
63 |
<div class="b2s-sidebar-head">
|
64 |
<div class="b2s-sidebar-head-text">
|
65 |
+
<?php esc_html_e("Website & Blog Content", "blog2social") ?>
|
66 |
</div>
|
67 |
<ul>
|
68 |
<li class="b2s-list-margin-left-10">
|
69 |
+
<i class="glyphicon glyphicon-plus glyphicon-success"></i> <a href="admin.php?page=blog2social-post" class="b2s-sidebar-menu-item"><?php esc_html_e("Share Content", "blog2social") ?></a>
|
70 |
</li>
|
71 |
</ul>
|
72 |
</div>
|
78 |
<hr>
|
79 |
<div class="b2s-sidebar-head">
|
80 |
<div class="b2s-sidebar-head-text">
|
81 |
+
<?php esc_html_e("Social Media Post", "blog2social") ?>
|
82 |
</div>
|
83 |
<ul>
|
84 |
<li class="b2s-list-margin-left-10">
|
104 |
<i class="glyphicon glyphicon-th-list glyphicon-success"></i> <a href="admin.php?page=blog2social-post" class="b2s-sidebar-menu-item"><?php esc_html_e("all Posts", "blog2social") ?></a>
|
105 |
</li>
|
106 |
<li class="b2s-list-margin-left-10">
|
107 |
+
<i class="glyphicon glyphicon-star glyphicon-success"></i> <a href="admin.php?page=blog2social-favorites" class="b2s-sidebar-menu-item"><?php esc_html_e("Favorites", "blog2social") ?></a>
|
108 |
</li>
|
109 |
<li class="b2s-list-margin-left-10">
|
110 |
<i class="glyphicon glyphicon-th-list glyphicon-success"></i> <a href="admin.php?page=blog2social-draft-post" class="b2s-sidebar-menu-item"><?php esc_html_e("Drafts", "blog2social") ?></a>
|
111 |
</li>
|
112 |
+
<li class="b2s-list-margin-left-10">
|
113 |
+
<i class="glyphicon glyphicon-th-list glyphicon-success"></i> <a href="admin.php?page=blog2social-approve" class="b2s-sidebar-menu-item"><?php esc_html_e("Instant Sharing", "blog2social") ?></a>
|
114 |
+
</li>
|
115 |
<li class="b2s-list-margin-left-10">
|
116 |
<i class="glyphicon glyphicon-time glyphicon-success"></i> <a href="admin.php?page=blog2social-sched" class="b2s-sidebar-menu-item"><?php esc_html_e("Scheduled Posts", "blog2social") ?></a>
|
117 |
</li>
|
128 |
<i class="glyphicon glyphicon-user glyphicon-success"></i> <a href="admin.php?page=blog2social-network" class="b2s-sidebar-menu-item"><?php esc_html_e("Social Accounts", "blog2social") ?></a>
|
129 |
</li>
|
130 |
<li class="b2s-list-margin-left-10">
|
131 |
+
<i class="glyphicon glyphicon-cog glyphicon-success"></i> <a href="admin.php?page=blog2social-settings" class="b2s-sidebar-menu-item"><?php esc_html_e("Settings", "blog2social") ?></a>
|
132 |
</li>
|
133 |
<li class="b2s-list-margin-left-10">
|
134 |
<i class="glyphicon glyphicon-question-sign glyphicon-success"></i> <a href="admin.php?page=blog2social-support" class="b2s-sidebar-menu-item"><?php esc_html_e("Help & Support", "blog2social") ?></a>
|
154 |
<hr>
|
155 |
<div class="b2s-sidebar-head">
|
156 |
<div class="b2s-sidebar-head-text">
|
157 |
+
<span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span>
|
158 |
+
<?php esc_html_e("Rate it!", "blog2social"); ?>
|
159 |
</div>
|
160 |
<p><?php esc_html_e("If you like Blog2Social, please give us a 5 star rating. If there is anything that does not work for you, please contact us!", "blog2social"); ?></p>
|
161 |
<a target="_blank" href="https://wordpress.org/support/plugin/blog2social/reviews/" class="btn btn-success btn-block"><?php esc_html_e("RATE BLOG2SOCIAL", "blog2social") ?></a>
|
views/b2s/network.php
CHANGED
@@ -291,6 +291,8 @@ $networkData = $networkItem->getData();
|
|
291 |
</div>
|
292 |
<div class="col-md-8" id="b2s-connection-assign-select"></div>
|
293 |
<div class="col-md-4"><button class="btn btn-primary btn-sm" id="b2s-assign-network-user-auth"><?php esc_html_e('assign', 'blog2social'); ?></button></div>
|
|
|
|
|
294 |
<div class="col-md-12 b2s-network-assign-list"></div>
|
295 |
</div>
|
296 |
<div class="row b2s-connection-owner" style="display: none;">
|
@@ -419,6 +421,7 @@ $networkData = $networkItem->getData();
|
|
419 |
<span class="b2s-bold">{EXCERPT}</span> - <?php esc_html_e('The summary of your post (you define it in the side menu of your post).', 'blog2social') ?> <br>
|
420 |
<span class="b2s-bold">{CONTENT}</span> - <?php esc_html_e('The content of your post', 'blog2social') ?> <br>
|
421 |
<span class="b2s-bold">{KEYWORDS}</span> - <?php esc_html_e('The tags you have set in your post.', 'blog2social') ?> <br>
|
|
|
422 |
</p>
|
423 |
</div>
|
424 |
</div>
|
@@ -464,6 +467,7 @@ $networkData = $networkItem->getData();
|
|
464 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
465 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
466 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your currect server location and connect again', 'blog2social'); ?></div>
|
|
|
467 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
468 |
<div class="form-group row">
|
469 |
<label class="col-md-3 b2s-login-form-label"><?php esc_html_e('E-Mail', 'blog2social'); ?></label>
|
291 |
</div>
|
292 |
<div class="col-md-8" id="b2s-connection-assign-select"></div>
|
293 |
<div class="col-md-4"><button class="btn btn-primary btn-sm" id="b2s-assign-network-user-auth"><?php esc_html_e('assign', 'blog2social'); ?></button></div>
|
294 |
+
<div class="col-md-12 b2s-network-assign-option"><input type="checkbox" id="b2s-network-assign-option-best-times"><label for="b2s-network-assign-option-best-times"><?php esc_html_e('Apply best time settings', 'blog2social') ?></label></div>
|
295 |
+
<div class="col-md-12 b2s-network-assign-option"><input type="checkbox" id="b2s-network-assign-option-posting-template"><label for="b2s-network-assign-option-posting-template"><?php esc_html_e('Apply post template settings', 'blog2social') ?></label></div>
|
296 |
<div class="col-md-12 b2s-network-assign-list"></div>
|
297 |
</div>
|
298 |
<div class="row b2s-connection-owner" style="display: none;">
|
421 |
<span class="b2s-bold">{EXCERPT}</span> - <?php esc_html_e('The summary of your post (you define it in the side menu of your post).', 'blog2social') ?> <br>
|
422 |
<span class="b2s-bold">{CONTENT}</span> - <?php esc_html_e('The content of your post', 'blog2social') ?> <br>
|
423 |
<span class="b2s-bold">{KEYWORDS}</span> - <?php esc_html_e('The tags you have set in your post.', 'blog2social') ?> <br>
|
424 |
+
<span class="b2s-bold">{AUTHOR}</span> - <?php esc_html_e('The name of the post author.', 'blog2social') ?> <br>
|
425 |
</p>
|
426 |
</div>
|
427 |
</div>
|
467 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
468 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
469 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your currect server location and connect again', 'blog2social'); ?></div>
|
470 |
+
<div class="alert alert-danger b2s-auth-network-6-info" data-info="error_code_403" style="display:none;"><?php esc_html_e('Access to this resource on your server is denied! Please check your webserver configuration for caching.', 'blog2social'); ?></div>
|
471 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
472 |
<div class="form-group row">
|
473 |
<label class="col-md-3 b2s-login-form-label"><?php esc_html_e('E-Mail', 'blog2social'); ?></label>
|
views/b2s/post.calendar.php
CHANGED
@@ -97,6 +97,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
97 |
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
98 |
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
99 |
<input type="hidden" id="ogMetaNetworks" value="<?php echo implode(';', json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']); ?>">
|
|
|
100 |
<!--Routing from dashboard-->
|
101 |
<input type="hidden" id="b2s_rfd" value="<?php echo (isset($_GET['rfd'])) ? 1 : 0; ?>">
|
102 |
<input type="hidden" id="b2s_rfd_b2s_id" value="<?php echo (isset($_GET['b2s_id'])) ? esc_attr($_GET['b2s_id']) : ""; ?>">
|
97 |
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
98 |
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
99 |
<input type="hidden" id="ogMetaNetworks" value="<?php echo implode(';', json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']); ?>">
|
100 |
+
<input type="hidden" id="b2sEmojiTranslation" value='<?php echo json_encode(B2S_Tools::getEmojiTranslationList()); ?>'>
|
101 |
<!--Routing from dashboard-->
|
102 |
<input type="hidden" id="b2s_rfd" value="<?php echo (isset($_GET['rfd'])) ? 1 : 0; ?>">
|
103 |
<input type="hidden" id="b2s_rfd_b2s_id" value="<?php echo (isset($_GET['b2s_id'])) ? esc_attr($_GET['b2s_id']) : ""; ?>">
|
views/b2s/post.favorites.php
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
+
/* Data */
|
4 |
+
require_once (B2S_PLUGIN_DIR . 'includes/B2S/Post/Filter.php');
|
5 |
+
require_once (B2S_PLUGIN_DIR . 'includes/Util.php');
|
6 |
+
?>
|
7 |
+
<div class="b2s-container">
|
8 |
+
<div class="b2s-inbox">
|
9 |
+
<div class="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 |
+
<div class="panel panel-default">
|
16 |
+
<div class="panel-body">
|
17 |
+
<!--Filter Start-->
|
18 |
+
<div class="b2s-post">
|
19 |
+
<div class="grid-body">
|
20 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/post.navbar.php'); ?>
|
21 |
+
<!-- Filter Post Start-->
|
22 |
+
<form class="b2sSortForm form-inline pull-left" action="#">
|
23 |
+
<input id="b2sType" type="hidden" value="favorites" name="b2sType">
|
24 |
+
<input id="b2sShowByDate" type="hidden" value="" name="b2sShowByDate">
|
25 |
+
<input id="b2sPagination" type="hidden" value="1" name="b2sPagination">
|
26 |
+
<?php
|
27 |
+
$postFilter = new B2S_Post_Filter('favorites');
|
28 |
+
echo $postFilter->getItemHtml();
|
29 |
+
?>
|
30 |
+
</form>
|
31 |
+
<!-- Filter Post Ende-->
|
32 |
+
<br>
|
33 |
+
</div>
|
34 |
+
</div>
|
35 |
+
<div class="clearfix"></div>
|
36 |
+
<div class="b2s-sort-area">
|
37 |
+
<div class="b2s-loading-area" style="display:none">
|
38 |
+
<br>
|
39 |
+
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
40 |
+
<div class="clearfix"></div>
|
41 |
+
<div class="text-center b2s-loader-text"><?php esc_html_e("Loading...", "blog2social"); ?></div>
|
42 |
+
</div>
|
43 |
+
<div class="row b2s-sort-result-area">
|
44 |
+
<div class="col-md-12">
|
45 |
+
<ul class="list-group b2s-sort-result-item-area"></ul>
|
46 |
+
<br>
|
47 |
+
<nav class="b2s-sort-pagination-area text-center"></nav>
|
48 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.php'); ?>
|
49 |
+
</div>
|
50 |
+
</div>
|
51 |
+
</div>
|
52 |
+
</div>
|
53 |
+
</div>
|
54 |
+
</div>
|
55 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/html/sidebar.php'); ?>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
|
60 |
+
<input type="hidden" id="b2sNoFavoritesText" value="<?php esc_html_e('You have not saved any favorites.', 'blog2social'); ?>">
|
61 |
+
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
62 |
+
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
views/b2s/post.sched.php
CHANGED
@@ -174,6 +174,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
174 |
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
175 |
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
176 |
<input type="hidden" id="ogMetaNetworks" value="<?php echo implode(';', json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']); ?>">
|
|
|
177 |
|
178 |
<script>
|
179 |
var b2s_has_premium = <?= B2S_PLUGIN_USER_VERSION > 0 ? "true" : "false"; ?>;
|
174 |
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
175 |
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
176 |
<input type="hidden" id="ogMetaNetworks" value="<?php echo implode(';', json_decode(B2S_PLUGIN_NETWORK_META_TAGS, true)['og']); ?>">
|
177 |
+
<input type="hidden" id="b2sEmojiTranslation" value='<?php echo json_encode(B2S_Tools::getEmojiTranslationList()); ?>'>
|
178 |
|
179 |
<script>
|
180 |
var b2s_has_premium = <?= B2S_PLUGIN_USER_VERSION > 0 ? "true" : "false"; ?>;
|
views/b2s/ship.php
CHANGED
@@ -13,7 +13,8 @@ $tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
|
13 |
$postData = get_post((int) $_GET['postId']);
|
14 |
$selProfile = isset($_GET['profile']) ? (int) $_GET['profile'] : 0;
|
15 |
$selImg = (isset($_GET['img']) && !empty($_GET['img'])) ? base64_decode($_GET['img']) : '';
|
16 |
-
$
|
|
|
17 |
$postStatus = array('publish' => esc_html__('published', 'blog2social'), 'pending' => esc_html__('draft', 'blog2social'), 'future' => esc_html__('scheduled', 'blog2social'));
|
18 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
19 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
@@ -247,6 +248,7 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
247 |
<input type="hidden" id="b2sChangeCardMeta" name="change_card_meta" value="0">
|
248 |
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
249 |
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
|
|
250 |
|
251 |
<div class="b2s-reporting-btn-area col-md-9 del-padding-left" style="display: none;">
|
252 |
<div class="panel panel-group">
|
@@ -577,6 +579,7 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
577 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
578 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
579 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your currect server location and connect again', 'blog2social'); ?></div>
|
|
|
580 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
581 |
<div class="form-group row">
|
582 |
<label class="col-md-3 b2s-login-form-label"><?php esc_html_e('E-Mail', 'blog2social'); ?></label>
|
@@ -647,7 +650,7 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
647 |
<input type="hidden" id="selSchedDate" value="<?php echo $selSchedDate; ?>">
|
648 |
<input type="hidden" id="selProfile" value="<?php echo $selProfile; ?>">
|
649 |
<input type="hidden" id="b2sPostType" value="<?php echo (isset($_GET['b2sPostType']) && $_GET['b2sPostType'] == 'ex') ? 'ex' : ''; ?>">
|
650 |
-
<input type="hidden" id="b2sDefault_url" name="default_url" value="<?php echo (isset($_GET['b2sPostType']) && $_GET['b2sPostType'] == 'ex') ? $postData->guid : (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid); ?>">
|
651 |
<input type="hidden" id="b2sPortalImagePath" value="<?php echo plugins_url('/assets/images/portale/', B2S_PLUGIN_FILE); ?>">
|
652 |
<input type="hidden" id="b2sTosXingGroupCrosspostingLimit" value="<?php echo $tosCrossPosting[19][2]; ?>">
|
653 |
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
@@ -665,6 +668,7 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
665 |
<input type="hidden" id="isCardMetaChecked" value="<?php echo (isset($b2sGeneralOptions['card_active']) ? (int) $b2sGeneralOptions['card_active'] : 0); ?>">
|
666 |
<input type="hidden" id="isLegacyMode" value="<?php echo (isset($b2sGeneralOptions['legacy_mode']) ? (int) $b2sGeneralOptions['legacy_mode'] : 0); ?>">
|
667 |
<input type="hidden" id="b2sIsDraft" value="<?php echo ($isDraft) ? '1' : '0' ?>">
|
|
|
668 |
|
669 |
<?php echo $settingsItem->setNetworkSettingsHtml(); ?>
|
670 |
<?php
|
13 |
$postData = get_post((int) $_GET['postId']);
|
14 |
$selProfile = isset($_GET['profile']) ? (int) $_GET['profile'] : 0;
|
15 |
$selImg = (isset($_GET['img']) && !empty($_GET['img'])) ? base64_decode($_GET['img']) : '';
|
16 |
+
$exPostFormat = (isset($_GET['postFormat']) && $_GET['postFormat'] == '1') ? 1 : 0;
|
17 |
+
$postUrl = (isset($_GET['b2sPostType']) && $_GET['b2sPostType'] == 'ex') ? (($exPostFormat == 0) ? $postData->guid : '') : (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid);
|
18 |
$postStatus = array('publish' => esc_html__('published', 'blog2social'), 'pending' => esc_html__('draft', 'blog2social'), 'future' => esc_html__('scheduled', 'blog2social'));
|
19 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
20 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
248 |
<input type="hidden" id="b2sChangeCardMeta" name="change_card_meta" value="0">
|
249 |
<input type="hidden" id="b2sNotAllowGif" value="<?php echo implode(";", json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true)); ?>">
|
250 |
<input type="hidden" id="b2sAnimateGif" value='<?php echo B2S_PLUGIN_NETWORK_ANIMATE_GIF; ?>'>
|
251 |
+
<input type="hidden" id="b2sEmojiTranslation" value='<?php echo json_encode(B2S_Tools::getEmojiTranslationList()); ?>'>
|
252 |
|
253 |
<div class="b2s-reporting-btn-area col-md-9 del-padding-left" style="display: none;">
|
254 |
<div class="panel panel-group">
|
579 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="login" style="display:none;"><?php echo sprintf(__('Login failed. Please check your login data for typos and please check your Pinterest settings, if the two-factor authentication is turned off for this account: <a target="_blank" href="%s">%s</a>', 'blog2social'), esc_url('https://www.pinterest.com/settings/security/'), esc_url('https://www.pinterest.com/settings/security/')); ?></div>
|
580 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="access" style="display:none;"><?php esc_html_e('Pinterest has rejected the connection to your blog', 'blog2social'); ?></div>
|
581 |
<div class="alert alert-danger b2s-auth-network-6-info" data-info="http_request_failed" style="display:none;"><?php esc_html_e('Please select your currect server location and connect again', 'blog2social'); ?></div>
|
582 |
+
<div class="alert alert-danger b2s-auth-network-6-info" data-info="error_code_403" style="display:none;"><?php esc_html_e('Access to this resource on your server is denied! Please check your webserver configuration for caching.', 'blog2social'); ?></div>
|
583 |
<div class="alert alert-success b2s-auth-network-6-info" data-info="success" style="display:none;"><?php esc_html_e('Login up successful. Please confirm that Blog2Social is allowed to publish on your profile.', 'blog2social'); ?></div>
|
584 |
<div class="form-group row">
|
585 |
<label class="col-md-3 b2s-login-form-label"><?php esc_html_e('E-Mail', 'blog2social'); ?></label>
|
650 |
<input type="hidden" id="selSchedDate" value="<?php echo $selSchedDate; ?>">
|
651 |
<input type="hidden" id="selProfile" value="<?php echo $selProfile; ?>">
|
652 |
<input type="hidden" id="b2sPostType" value="<?php echo (isset($_GET['b2sPostType']) && $_GET['b2sPostType'] == 'ex') ? 'ex' : ''; ?>">
|
653 |
+
<input type="hidden" id="b2sDefault_url" name="default_url" value="<?php echo (isset($_GET['b2sPostType']) && $_GET['b2sPostType'] == 'ex') ? (($exPostFormat == 0) ? $postData->guid : '') : (get_permalink($postData->ID) !== false ? get_permalink($postData->ID) : $postData->guid); ?>">
|
654 |
<input type="hidden" id="b2sPortalImagePath" value="<?php echo plugins_url('/assets/images/portale/', B2S_PLUGIN_FILE); ?>">
|
655 |
<input type="hidden" id="b2sTosXingGroupCrosspostingLimit" value="<?php echo $tosCrossPosting[19][2]; ?>">
|
656 |
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
668 |
<input type="hidden" id="isCardMetaChecked" value="<?php echo (isset($b2sGeneralOptions['card_active']) ? (int) $b2sGeneralOptions['card_active'] : 0); ?>">
|
669 |
<input type="hidden" id="isLegacyMode" value="<?php echo (isset($b2sGeneralOptions['legacy_mode']) ? (int) $b2sGeneralOptions['legacy_mode'] : 0); ?>">
|
670 |
<input type="hidden" id="b2sIsDraft" value="<?php echo ($isDraft) ? '1' : '0' ?>">
|
671 |
+
<input type="hidden" id="b2sExPostFormat" value="<?php echo $exPostFormat; ?>">
|
672 |
|
673 |
<?php echo $settingsItem->setNetworkSettingsHtml(); ?>
|
674 |
<?php
|