Version Description
Usability Optimization, shortener bitly, new network google my business
Download this release
Release Info
Developer | Blog2Social |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 4.9.0 |
Comparing to | |
See all releases |
Code changes from version 4.8.3 to 4.9.0
- assets/css/b2s/settings.css +7 -0
- assets/images/portale/18_flat.png +0 -0
- assets/images/settings/bitly.png +0 -0
- assets/js/b2s/settings.js +76 -11
- assets/js/b2s/ship.js +31 -23
- assets/js/general.js +1 -1
- blog2social.php +4 -2
- includes/Ajax/Post.php +14 -0
- includes/B2S/AutoPost.php +3 -3
- includes/B2S/Network/Item.php +8 -1
- includes/B2S/PostBox.php +2 -2
- includes/B2S/Settings/Item.php +36 -25
- includes/B2S/Ship/Image.php +3 -3
- includes/B2S/Ship/Item.php +18 -17
- includes/B2S/Ship/Portale.php +5 -5
- includes/Loader.php +23 -19
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +1310 -1277
- readme.txt +9 -2
- views/b2s/html/footer.phtml +4 -4
- views/b2s/network.php +24 -1
- views/b2s/settings.php +1 -0
assets/css/b2s/settings.css
CHANGED
@@ -131,4 +131,11 @@ ul.chosen-choices {
|
|
131 |
}
|
132 |
.b2s-network-tos-auto-post-import-warning > .alert{
|
133 |
margin-bottom: 0px !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
}
|
131 |
}
|
132 |
.b2s-network-tos-auto-post-import-warning > .alert{
|
133 |
margin-bottom: 0px !important;
|
134 |
+
}
|
135 |
+
.b2s-shortener-image{
|
136 |
+
height: 16px;
|
137 |
+
width: 16px;
|
138 |
+
}
|
139 |
+
.b2s-user-network-shortener-account-area{
|
140 |
+
vertical-align: middle;
|
141 |
}
|
assets/images/portale/18_flat.png
ADDED
Binary file
|
assets/images/settings/bitly.png
ADDED
Binary file
|
assets/js/b2s/settings.js
CHANGED
@@ -26,7 +26,7 @@ jQuery(window).on("load", function () {
|
|
26 |
if (length > 0) {
|
27 |
jQuery('.b2s-auto-post-own-update-warning').show();
|
28 |
}
|
29 |
-
|
30 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
31 |
checkNetworkTos(2);
|
32 |
|
@@ -219,9 +219,56 @@ jQuery('#b2sSaveUserSettingsSchedTime').validate({
|
|
219 |
jQuery(document).on('click', '#b2s-user-network-settings-short-url', function () {
|
220 |
jQuery('.b2s-settings-user-success').hide();
|
221 |
jQuery('.b2s-settings-user-error').hide();
|
222 |
-
jQuery(".b2s-loading-area").show();
|
223 |
-
jQuery(".b2s-user-settings-area").hide();
|
224 |
jQuery('.b2s-server-connection-fail').hide();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
225 |
jQuery.ajax({
|
226 |
url: ajaxurl,
|
227 |
type: "POST",
|
@@ -229,7 +276,7 @@ jQuery(document).on('click', '#b2s-user-network-settings-short-url', function ()
|
|
229 |
cache: false,
|
230 |
data: {
|
231 |
'action': 'b2s_user_network_settings',
|
232 |
-
'
|
233 |
},
|
234 |
error: function () {
|
235 |
jQuery('.b2s-server-connection-fail').show();
|
@@ -239,13 +286,11 @@ jQuery(document).on('click', '#b2s-user-network-settings-short-url', function ()
|
|
239 |
jQuery(".b2s-loading-area").hide();
|
240 |
jQuery(".b2s-user-settings-area").show();
|
241 |
if (data.result == true) {
|
242 |
-
jQuery('.b2s-
|
243 |
-
jQuery('
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
jQuery('#b2s-user-network-settings-short-url').prop('checked', true);
|
248 |
-
}
|
249 |
} else {
|
250 |
jQuery('.b2s-settings-user-error').show();
|
251 |
}
|
@@ -815,3 +860,23 @@ function calcCurrentExternTimeByOffset(offset, lang) {
|
|
815 |
}
|
816 |
|
817 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
if (length > 0) {
|
27 |
jQuery('.b2s-auto-post-own-update-warning').show();
|
28 |
}
|
29 |
+
|
30 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
31 |
checkNetworkTos(2);
|
32 |
|
219 |
jQuery(document).on('click', '#b2s-user-network-settings-short-url', function () {
|
220 |
jQuery('.b2s-settings-user-success').hide();
|
221 |
jQuery('.b2s-settings-user-error').hide();
|
|
|
|
|
222 |
jQuery('.b2s-server-connection-fail').hide();
|
223 |
+
|
224 |
+
if (jQuery('#b2s-user-network-shortener-state[data-provider-id="0"]').val() == "0") {
|
225 |
+
jQuery('.b2s-shortener-account-connect-btn[data-provider-id="0"]').trigger('click');
|
226 |
+
} else {
|
227 |
+
jQuery(".b2s-user-settings-area").hide();
|
228 |
+
jQuery(".b2s-loading-area").show();
|
229 |
+
|
230 |
+
jQuery.ajax({
|
231 |
+
url: ajaxurl,
|
232 |
+
type: "POST",
|
233 |
+
dataType: "json",
|
234 |
+
cache: false,
|
235 |
+
data: {
|
236 |
+
'action': 'b2s_user_network_settings',
|
237 |
+
'short_url': jQuery('#b2s-user-network-settings-short-url').val(),
|
238 |
+
},
|
239 |
+
error: function () {
|
240 |
+
jQuery('.b2s-server-connection-fail').show();
|
241 |
+
return false;
|
242 |
+
},
|
243 |
+
success: function (data) {
|
244 |
+
jQuery(".b2s-loading-area").hide();
|
245 |
+
jQuery(".b2s-user-settings-area").show();
|
246 |
+
if (data.result == true) {
|
247 |
+
jQuery('.b2s-settings-user-success').show();
|
248 |
+
jQuery('#b2s-user-network-settings-short-url').val(data.content);
|
249 |
+
if (jQuery("#b2s-user-network-settings-short-url").is(":checked")) {
|
250 |
+
jQuery('#b2s-user-network-settings-short-url').prop('checked', false);
|
251 |
+
} else {
|
252 |
+
jQuery('#b2s-user-network-settings-short-url').prop('checked', true);
|
253 |
+
}
|
254 |
+
} else {
|
255 |
+
jQuery('.b2s-settings-user-error').show();
|
256 |
+
}
|
257 |
+
}
|
258 |
+
});
|
259 |
+
}
|
260 |
+
return false;
|
261 |
+
});
|
262 |
+
|
263 |
+
jQuery(document).on('click', '.b2s-shortener-account-delete-btn', function () {
|
264 |
+
|
265 |
+
jQuery('.b2s-settings-user-success').hide();
|
266 |
+
jQuery('.b2s-settings-user-error').hide();
|
267 |
+
jQuery('.b2s-server-connection-fail').hide();
|
268 |
+
jQuery(".b2s-user-settings-area").hide();
|
269 |
+
jQuery(".b2s-loading-area").show();
|
270 |
+
|
271 |
+
var provider_id = jQuery(this).attr('data-provider-id');
|
272 |
jQuery.ajax({
|
273 |
url: ajaxurl,
|
274 |
type: "POST",
|
276 |
cache: false,
|
277 |
data: {
|
278 |
'action': 'b2s_user_network_settings',
|
279 |
+
'shortener_account_auth_delete': provider_id,
|
280 |
},
|
281 |
error: function () {
|
282 |
jQuery('.b2s-server-connection-fail').show();
|
286 |
jQuery(".b2s-loading-area").hide();
|
287 |
jQuery(".b2s-user-settings-area").show();
|
288 |
if (data.result == true) {
|
289 |
+
jQuery('.b2s-user-network-shortener-account-detail[data-provider-id="' + provider_id + '"]').hide();
|
290 |
+
jQuery('.b2s-shortener-account-connect-btn[data-provider-id="' + provider_id + '"]').css('display', 'inline-block');
|
291 |
+
jQuery('#b2s-user-network-settings-short-url').prop('checked', false);
|
292 |
+
jQuery('#b2s-user-network-settings-short-url').val("1");
|
293 |
+
jQuery('#b2s-user-network-shortener-state[data-provider-id="0"]').val("0");
|
|
|
|
|
294 |
} else {
|
295 |
jQuery('.b2s-settings-user-error').show();
|
296 |
}
|
860 |
}
|
861 |
|
862 |
|
863 |
+
function wopShortener(url, name) {
|
864 |
+
var location = encodeURI(window.location.protocol + '//' + window.location.hostname);
|
865 |
+
window.open(url + '&location=' + location, name, "width=900,height=600,scrollbars=yes,toolbar=no,status=no,resizable=no,menubar=no,location=no,directories=no,top=20,left=20");
|
866 |
+
}
|
867 |
+
|
868 |
+
window.addEventListener('message', function (e) {
|
869 |
+
if (e.origin == jQuery('#b2sServerUrl').val()) {
|
870 |
+
var data = JSON.parse(e.data);
|
871 |
+
loginSuccessShortener(data.providerId, data.displayName);
|
872 |
+
}
|
873 |
+
});
|
874 |
+
|
875 |
+
function loginSuccessShortener(providerId, displayName) {
|
876 |
+
jQuery('.b2s-user-network-shortener-account-detail[data-provider-id="' + providerId + '"]').css('display', 'inline-block');
|
877 |
+
jQuery('#b2s-shortener-account-display-name[data-provider-id="' + providerId + '"]').html(displayName);
|
878 |
+
jQuery('.b2s-shortener-account-connect-btn[data-provider-id="' + providerId + '"]').hide();
|
879 |
+
jQuery('#b2s-user-network-settings-short-url').prop("checked", true);
|
880 |
+
jQuery('#b2s-user-network-settings-short-url').val("0");
|
881 |
+
jQuery('#b2s-user-network-shortener-state[data-provider-id="0"]').val("1");
|
882 |
+
}
|
assets/js/b2s/ship.js
CHANGED
@@ -575,7 +575,7 @@ jQuery(document).on("click", ".b2s-post-ship-item-full-text", function () {
|
|
575 |
},
|
576 |
success: function (data) {
|
577 |
if (data.result == true) {
|
578 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-count="' + curSchedCount + '"][data-network-auth-id="' + data.networkAuthId + '"').val(data.text);
|
579 |
networkCount(data.networkAuthId);
|
580 |
}
|
581 |
}
|
@@ -585,7 +585,7 @@ jQuery(document).on("click", ".b2s-post-ship-item-full-text", function () {
|
|
585 |
jQuery(document).on("click", ".b2s-post-ship-item-message-delete", function () {
|
586 |
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
587 |
var networkCountId = jQuery(this).attr('data-network-count');
|
588 |
-
jQuery('.b2s-post-item-details-item-message-input[data-network-count="' + networkCountId + '"][data-network-auth-id="' + networkAuthId + '"').val("");
|
589 |
initSceditor(networkAuthId);
|
590 |
networkCount(networkAuthId);
|
591 |
return false;
|
@@ -593,7 +593,12 @@ jQuery(document).on("click", ".b2s-post-ship-item-message-delete", function () {
|
|
593 |
jQuery(document).on("click", ".b2s-post-ship-item-copy-original-text", function () {
|
594 |
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
595 |
var networkCountId = jQuery(this).attr('data-network-count');
|
596 |
-
|
|
|
|
|
|
|
|
|
|
|
597 |
networkCount(networkAuthId);
|
598 |
return false;
|
599 |
});
|
@@ -1257,8 +1262,8 @@ jQuery(document).on('click', '.b2s-select-image-modal-open', function () {
|
|
1257 |
}
|
1258 |
}
|
1259 |
|
1260 |
-
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId).attr('data-network-count', countId);
|
1261 |
-
jQuery('.b2s-image-change-all-network').attr('data-network-count', countId);
|
1262 |
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId).attr('data-network-count', countId);
|
1263 |
var content = "<img class='b2s-post-item-network-image-selected-account' height='22px' src='" + jQuery('.b2s-post-item-network-image[data-network-auth-id="' + authId + '"]').attr('src') + "' /> " + jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + authId + '"]').html();
|
1264 |
jQuery('.b2s-selected-network-for-image-info').html(content);
|
@@ -1314,6 +1319,7 @@ jQuery(document).on('click', '.b2s-image-remove-btn', function () {
|
|
1314 |
jQuery(document).on('click', '.b2s-image-change-this-network', function () {
|
1315 |
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
1316 |
var networkCountId = jQuery(this).attr('data-network-count');
|
|
|
1317 |
var currentImage = jQuery('input[name=image_url]:checked').val();
|
1318 |
if (jQuery('#b2sInsertImageType').val() == '1') { //HTML-Network
|
1319 |
var sceditor = jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').sceditor('instance');
|
@@ -1345,26 +1351,28 @@ jQuery(document).on('click', '.b2s-image-change-this-network', function () {
|
|
1345 |
var postFormat = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val();
|
1346 |
var networkId = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').attr('data-network-id');
|
1347 |
if (typeof postFormat !== typeof undefined && postFormat !== false) {
|
1348 |
-
if (
|
1349 |
-
|
1350 |
-
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
|
1356 |
-
|
1357 |
-
|
|
|
|
|
1358 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1359 |
}
|
1360 |
-
});
|
1361 |
-
//customize sched content
|
1362 |
-
jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + networkAuthId + '"]').attr('src', currentImage);
|
1363 |
-
jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + networkAuthId + '"]').removeClass('b2s-img-required');
|
1364 |
-
jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + networkAuthId + '"]').val(currentImage);
|
1365 |
-
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').show();
|
1366 |
-
if (networkCountId >= 0) {
|
1367 |
-
jQuery('.b2s-image-remove-btn[data-network-count="-1"][data-network-auth-id="' + networkAuthId + '"]').hide();
|
1368 |
}
|
1369 |
}
|
1370 |
}
|
575 |
},
|
576 |
success: function (data) {
|
577 |
if (data.result == true) {
|
578 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-count="' + curSchedCount + '"][data-network-auth-id="' + data.networkAuthId + '"]').val(data.text);
|
579 |
networkCount(data.networkAuthId);
|
580 |
}
|
581 |
}
|
585 |
jQuery(document).on("click", ".b2s-post-ship-item-message-delete", function () {
|
586 |
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
587 |
var networkCountId = jQuery(this).attr('data-network-count');
|
588 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-count="' + networkCountId + '"][data-network-auth-id="' + networkAuthId + '"]').val("");
|
589 |
initSceditor(networkAuthId);
|
590 |
networkCount(networkAuthId);
|
591 |
return false;
|
593 |
jQuery(document).on("click", ".b2s-post-ship-item-copy-original-text", function () {
|
594 |
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
595 |
var networkCountId = jQuery(this).attr('data-network-count');
|
596 |
+
var networkId = jQuery(this).attr('data-network-id');
|
597 |
+
var text = jQuery('.b2s-post-item-details-item-message-input[data-network-count="-1"][data-network-auth-id="' + networkAuthId + '"]').val();
|
598 |
+
if (text == "" && networkId == 2) {
|
599 |
+
text = jQuery('#b2sTwitterOrginalPost').val();
|
600 |
+
}
|
601 |
+
jQuery('.b2s-post-item-details-item-message-input[data-network-count="' + networkCountId + '"][data-network-auth-id="' + networkAuthId + '"]').val(text);
|
602 |
networkCount(networkAuthId);
|
603 |
return false;
|
604 |
});
|
1262 |
}
|
1263 |
}
|
1264 |
|
1265 |
+
jQuery('.b2s-image-change-this-network').attr('data-network-auth-id', authId).attr('data-network-count', countId).attr('data-network-id', networkId);
|
1266 |
+
jQuery('.b2s-image-change-all-network').attr('data-network-count', countId).attr('data-network-id', networkId);
|
1267 |
jQuery('.b2s-upload-image').attr('data-network-auth-id', authId).attr('data-network-count', countId);
|
1268 |
var content = "<img class='b2s-post-item-network-image-selected-account' height='22px' src='" + jQuery('.b2s-post-item-network-image[data-network-auth-id="' + authId + '"]').attr('src') + "' /> " + jQuery('.b2s-post-item-details-network-display-name[data-network-auth-id="' + authId + '"]').html();
|
1269 |
jQuery('.b2s-selected-network-for-image-info').html(content);
|
1319 |
jQuery(document).on('click', '.b2s-image-change-this-network', function () {
|
1320 |
var networkAuthId = jQuery(this).attr('data-network-auth-id');
|
1321 |
var networkCountId = jQuery(this).attr('data-network-count');
|
1322 |
+
var networkId = jQuery(this).attr('data-network-id');
|
1323 |
var currentImage = jQuery('input[name=image_url]:checked').val();
|
1324 |
if (jQuery('#b2sInsertImageType').val() == '1') { //HTML-Network
|
1325 |
var sceditor = jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').sceditor('instance');
|
1351 |
var postFormat = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val();
|
1352 |
var networkId = jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').attr('data-network-id');
|
1353 |
if (typeof postFormat !== typeof undefined && postFormat !== false) {
|
1354 |
+
if (networkId != 12) { // ignore for instagram
|
1355 |
+
if (postFormat == "0") { //if linkpost
|
1356 |
+
jQuery('.b2s-post-item-details-post-format[data-network-id=' + networkId + ']').each(function () {
|
1357 |
+
if (jQuery(this).val() == "0" && jQuery('.b2s-post-ship-item-post-format[data-network-auth-id=' + jQuery(this).attr('data-network-auth-id') + ']').is(":visible") && jQuery(this).attr('data-network-auth-id') != networkAuthId) { //other Linkpost by same network
|
1358 |
+
//override this image with current image
|
1359 |
+
jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').attr('src', currentImage);
|
1360 |
+
jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').removeClass('b2s-img-required');
|
1361 |
+
jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').val(currentImage);
|
1362 |
+
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').show();
|
1363 |
+
if (networkCountId >= 0) {
|
1364 |
+
jQuery('.b2s-image-remove-btn[data-network-count="-1"][data-network-auth-id="' + jQuery(this).attr('data-network-auth-id') + '"]').hide();
|
1365 |
+
}
|
1366 |
}
|
1367 |
+
});
|
1368 |
+
//customize sched content
|
1369 |
+
jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + networkAuthId + '"]').attr('src', currentImage);
|
1370 |
+
jQuery('.b2s-post-item-details-url-image[data-network-auth-id="' + networkAuthId + '"]').removeClass('b2s-img-required');
|
1371 |
+
jQuery('.b2s-image-url-hidden-field[data-network-auth-id="' + networkAuthId + '"]').val(currentImage);
|
1372 |
+
jQuery('.b2s-image-remove-btn[data-network-auth-id="' + networkAuthId + '"]').show();
|
1373 |
+
if (networkCountId >= 0) {
|
1374 |
+
jQuery('.b2s-image-remove-btn[data-network-count="-1"][data-network-auth-id="' + networkAuthId + '"]').hide();
|
1375 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1376 |
}
|
1377 |
}
|
1378 |
}
|
assets/js/general.js
CHANGED
@@ -412,7 +412,7 @@ if ("undefined" == typeof jQuery)
|
|
412 |
};
|
413 |
c.VERSION = "3.3.6", c.TRANSITION_DURATION = 150, c.DEFAULTS = {animation: !0, placement: "top", selector: !1, template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', trigger: "hover focus", title: "", delay: 0, html: !1, container: !1, viewport: {selector: "body", padding: 0}}, c.prototype.init = function (b, c, d) {
|
414 |
if (this.enabled = !0, this.type = b, this.$element = a(c), this.options = this.getOptions(d), this.$viewport = this.options.viewport && a(a.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : this.options.viewport.selector || this.options.viewport), this.inState = {click: !1, hover: !1, focus: !1}, this.$element[0]instanceof document.constructor && !this.options.selector)
|
415 |
-
throw new Error("Wordpress
|
416 |
for (var e = this.options.trigger.split(" "), f = e.length; f--; ) {
|
417 |
var g = e[f];
|
418 |
if ("click" == g)
|
412 |
};
|
413 |
c.VERSION = "3.3.6", c.TRANSITION_DURATION = 150, c.DEFAULTS = {animation: !0, placement: "top", selector: !1, template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', trigger: "hover focus", title: "", delay: 0, html: !1, container: !1, viewport: {selector: "body", padding: 0}}, c.prototype.init = function (b, c, d) {
|
414 |
if (this.enabled = !0, this.type = b, this.$element = a(c), this.options = this.getOptions(d), this.$viewport = this.options.viewport && a(a.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : this.options.viewport.selector || this.options.viewport), this.inState = {click: !1, hover: !1, focus: !1}, this.$element[0]instanceof document.constructor && !this.options.selector)
|
415 |
+
throw new Error("Wordpress bug: `selector` option must be specified when initializing " + this.type + " on the window.document object!");
|
416 |
for (var e = this.options.trigger.split(" "), f = e.length; f--; ) {
|
417 |
var g = e[f];
|
418 |
if ("click" == g)
|
blog2social.php
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
<?php
|
|
|
2 |
/*
|
3 |
* Plugin Name:Blog2Social: Social Media Auto Post & Scheduler
|
4 |
* Plugin URI: https://www.blog2social.com
|
@@ -6,12 +7,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 4.
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
//B2SDefine
|
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__));
|
@@ -23,6 +24,7 @@ define('B2S_LANGUAGE', $language);
|
|
23 |
define('B2S_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
24 |
define('B2S_PLUGIN_API_ENDPOINT', 'https://developer.blog2social.com/wp/v3/');
|
25 |
define('B2S_PLUGIN_API_ENDPOINT_AUTH', 'https://developer.blog2social.com/wp/v3/network/auth.php');
|
|
|
26 |
define('B2S_PLUGIN_PRG_API_ENDPOINT', 'http://developer.pr-gateway.de/wp/v3/');
|
27 |
define('B2S_PLUGIN_SERVER_URL', 'https://developer.blog2social.com');
|
28 |
|
1 |
<?php
|
2 |
+
|
3 |
/*
|
4 |
* Plugin Name:Blog2Social: Social Media Auto Post & Scheduler
|
5 |
* Plugin URI: https://www.blog2social.com
|
7 |
* Author: Blog2Social, Adenion
|
8 |
* Text Domain: blog2social
|
9 |
* Domain Path: /languages
|
10 |
+
* Version: 4.9.0
|
11 |
* Author URI: https://www.blog2social.com
|
12 |
* License: GPL2+
|
13 |
*/
|
14 |
//B2SDefine
|
15 |
+
define('B2S_PLUGIN_VERSION', '490');
|
16 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
17 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
18 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
24 |
define('B2S_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
25 |
define('B2S_PLUGIN_API_ENDPOINT', 'https://developer.blog2social.com/wp/v3/');
|
26 |
define('B2S_PLUGIN_API_ENDPOINT_AUTH', 'https://developer.blog2social.com/wp/v3/network/auth.php');
|
27 |
+
define('B2S_PLUGIN_API_ENDPOINT_AUTH_SHORTENER', 'https://developer.blog2social.com/wp/v3/network/shortener.php');
|
28 |
define('B2S_PLUGIN_PRG_API_ENDPOINT', 'http://developer.pr-gateway.de/wp/v3/');
|
29 |
define('B2S_PLUGIN_SERVER_URL', 'https://developer.blog2social.com');
|
30 |
|
includes/Ajax/Post.php
CHANGED
@@ -384,6 +384,20 @@ class Ajax_Post {
|
|
384 |
wp_die();
|
385 |
}
|
386 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
387 |
if (isset($_POST['type']) && $_POST['type'] == 'post_format') {
|
388 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
389 |
$post_format = $options->_getOption('post_format');
|
384 |
wp_die();
|
385 |
}
|
386 |
|
387 |
+
|
388 |
+
if (isset($_POST['shortener_account_auth_delete'])) {
|
389 |
+
$post = array('token' => B2S_PLUGIN_TOKEN,
|
390 |
+
'action' => 'saveSettings',
|
391 |
+
'shortener_account_auth_delete' => (int) $_POST['shortener_account_auth_delete']);
|
392 |
+
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, $post));
|
393 |
+
if ($result->result == true) {
|
394 |
+
echo json_encode(array('result' => true));
|
395 |
+
wp_die();
|
396 |
+
}
|
397 |
+
echo json_encode(array('result' => true));
|
398 |
+
wp_die();
|
399 |
+
}
|
400 |
+
|
401 |
if (isset($_POST['type']) && $_POST['type'] == 'post_format') {
|
402 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
403 |
$post_format = $options->_getOption('post_format');
|
includes/B2S/AutoPost.php
CHANGED
@@ -31,8 +31,8 @@ class B2S_AutoPost {
|
|
31 |
$this->optionPostFormat = $optionPostFormat;
|
32 |
$this->allowHashTag = $allowHashTag;
|
33 |
$this->optionContentTwitter = $optionContentTwitter;
|
34 |
-
$this->setPreFillText = array(0 => array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 9 => 200, 10 => 442, 12 => 240, 16 => 250,17 => 442), 1 => array(1 => 239, 3 => 239, 8 => 1200, 10 => 442,17 => 442), 2 => array(1 => 239, 8 => 239, 10 => 442,17 => 442));
|
35 |
-
$this->setPreFillTextLimit = array(0 => array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400,9 => 200, 10 => 500, 12 => 400), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500), 2 => array(1 => 400, 8 => 400, 10 => 500));
|
36 |
}
|
37 |
|
38 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
@@ -119,7 +119,7 @@ class B2S_AutoPost {
|
|
119 |
}
|
120 |
}
|
121 |
|
122 |
-
if ($networkId == 10 || $networkId == 17) {
|
123 |
$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;
|
124 |
if ($this->allowHashTag) {
|
125 |
$postData['content'] .= $this->getHashTagsString();
|
31 |
$this->optionPostFormat = $optionPostFormat;
|
32 |
$this->allowHashTag = $allowHashTag;
|
33 |
$this->optionContentTwitter = $optionContentTwitter;
|
34 |
+
$this->setPreFillText = array(0 => array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 9 => 200, 10 => 442, 12 => 240, 16 => 250,17 => 442, 18 => 800), 1 => array(1 => 239, 3 => 239, 8 => 1200, 10 => 442,17 => 442), 2 => array(1 => 239, 8 => 239, 10 => 442,17 => 442));
|
35 |
+
$this->setPreFillTextLimit = array(0 => array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400,9 => 200, 10 => 500, 12 => 400, 18 => 1000), 1 => array(1 => 400, 3 => 400, 8 => 1200, 10 => 500), 2 => array(1 => 400, 8 => 400, 10 => 500));
|
36 |
}
|
37 |
|
38 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
119 |
}
|
120 |
}
|
121 |
|
122 |
+
if ($networkId == 10 || $networkId == 17 || $networkId == 18) {
|
123 |
$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;
|
124 |
if ($this->allowHashTag) {
|
125 |
$postData['content'] .= $this->getHashTagsString();
|
includes/B2S/Network/Item.php
CHANGED
@@ -102,12 +102,19 @@ class B2S_Network_Item {
|
|
102 |
$html .= '<h4>' . ucfirst($networkName);
|
103 |
if ($maxNetworkAccount !== false) {
|
104 |
$html .=' <span class="b2s-network-auth-count">(' . __("Connections", "blog2social") . ' <span class="b2s-network-auth-count-current" ' . (($showAllAuths) ? 'data-network-count-trigger="true"' : '') . ' data-network-id="' . $networkId . '"></span>/' . $maxNetworkAccount . ')</span>';
|
|
|
|
|
|
|
|
|
|
|
105 |
}
|
106 |
$html .= '<span class="pull-right">';
|
107 |
|
108 |
$b2sAuthUrl = $this->authurl . '&portal_id=' . $networkId . '&transfer=' . (in_array($networkId, $this->oAuthPortal) ? 'oauth' : 'form' ) . '&mandant_id=' . $mandantId . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
109 |
-
$html .= in_array($networkId, $this->allowProfil) ? '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profile\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Profile', 'blog2social') . '</a>' : '';
|
110 |
|
|
|
|
|
|
|
111 |
if (in_array($networkId, $this->allowPage)) {
|
112 |
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $networkId == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($networkId == 1 || $networkId == 10))) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Page', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled" data-title="' . __('You want to connect a network page?', 'blog2social') . '" data-toggle="modal" data-type="auth-network" data-target="#' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModal' : 'b2sProFeatureModal') . '">+ ' . __('Page', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a>';
|
113 |
}
|
102 |
$html .= '<h4>' . ucfirst($networkName);
|
103 |
if ($maxNetworkAccount !== false) {
|
104 |
$html .=' <span class="b2s-network-auth-count">(' . __("Connections", "blog2social") . ' <span class="b2s-network-auth-count-current" ' . (($showAllAuths) ? 'data-network-count-trigger="true"' : '') . ' data-network-id="' . $networkId . '"></span>/' . $maxNetworkAccount . ')</span>';
|
105 |
+
|
106 |
+
if($networkId == 18){
|
107 |
+
$html .=' <a class="b2s-info-btn" data-target="#b2sInfoNetwork18" data-toggle="modal" href="#">Info</a>';
|
108 |
+
}
|
109 |
+
|
110 |
}
|
111 |
$html .= '<span class="pull-right">';
|
112 |
|
113 |
$b2sAuthUrl = $this->authurl . '&portal_id=' . $networkId . '&transfer=' . (in_array($networkId, $this->oAuthPortal) ? 'oauth' : 'form' ) . '&mandant_id=' . $mandantId . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
|
|
114 |
|
115 |
+
if (in_array($networkId, $this->allowProfil)) {
|
116 |
+
$html .= ($networkId != 18 || (B2S_PLUGIN_USER_VERSION >= 2 && $networkId == 18)) ? '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profile\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Profile', 'blog2social') . '</a>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled" data-title="' . __('You want to connect a network profile?', 'blog2social') . '" data-toggle="modal" data-type="auth-network" data-target="#b2sProFeatureModal">+ ' . __('Profile', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a>';
|
117 |
+
}
|
118 |
if (in_array($networkId, $this->allowPage)) {
|
119 |
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $networkId == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($networkId == 1 || $networkId == 10))) ? '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . __('Page', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled" data-title="' . __('You want to connect a network page?', 'blog2social') . '" data-toggle="modal" data-type="auth-network" data-target="#' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModal' : 'b2sProFeatureModal') . '">+ ' . __('Page', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a>';
|
120 |
}
|
includes/B2S/PostBox.php
CHANGED
@@ -14,7 +14,7 @@ class B2S_PostBox {
|
|
14 |
|
15 |
$isChecked = "";
|
16 |
$lastPost = "";
|
17 |
-
|
18 |
//Unlock Auto-Post-Import
|
19 |
delete_option('B2S_LOCK_AUTO_POST_IMPORT_' . B2S_PLUGIN_BLOG_USER_ID);
|
20 |
|
@@ -38,7 +38,7 @@ class B2S_PostBox {
|
|
38 |
}
|
39 |
|
40 |
if ($autoPostOption !== false) {
|
41 |
-
$state = ($postId == 0) ? 'publish' : (($postStatus != '' && ($postStatus == 'publish' || $postStatus
|
42 |
if (is_array($autoPostOption) && isset($autoPostOption[$state])) {
|
43 |
if (in_array($postType, $autoPostOption[$state])) {
|
44 |
$isChecked = 'checked';
|
14 |
|
15 |
$isChecked = "";
|
16 |
$lastPost = "";
|
17 |
+
|
18 |
//Unlock Auto-Post-Import
|
19 |
delete_option('B2S_LOCK_AUTO_POST_IMPORT_' . B2S_PLUGIN_BLOG_USER_ID);
|
20 |
|
38 |
}
|
39 |
|
40 |
if ($autoPostOption !== false) {
|
41 |
+
$state = ($postId == 0) ? 'publish' : (($postStatus != '' && ($postStatus == 'publish' || $postStatus == 'future')) ? 'update' : '');
|
42 |
if (is_array($autoPostOption) && isset($autoPostOption[$state])) {
|
43 |
if (in_array($postType, $autoPostOption[$state])) {
|
44 |
$isChecked = 'checked';
|
includes/B2S/Settings/Item.php
CHANGED
@@ -15,6 +15,7 @@ class B2S_Settings_Item {
|
|
15 |
private $allowGroup;
|
16 |
private $timeInfo;
|
17 |
private $postTypesData;
|
|
|
18 |
|
19 |
public function __construct() {
|
20 |
$this->getSettings();
|
@@ -26,6 +27,7 @@ class B2S_Settings_Item {
|
|
26 |
$this->allowGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_GROUP);
|
27 |
$this->timeInfo = unserialize(B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO);
|
28 |
$this->postTypesData = get_post_types(array('public' => true));
|
|
|
29 |
}
|
30 |
|
31 |
private function getSettings() {
|
@@ -75,6 +77,8 @@ class B2S_Settings_Item {
|
|
75 |
$userInfo = get_user_meta(B2S_PLUGIN_BLOG_USER_ID);
|
76 |
$isChecked = (isset($this->settings->short_url) && (int) $this->settings->short_url == 0) ? 1 : 0;
|
77 |
$isCheckedAllowHashTag = ($optionUserHashTag === false || $optionUserHashTag == 1) ? 1 : 0; //default allow , 1=include 0=not include
|
|
|
|
|
78 |
|
79 |
$content = '';
|
80 |
$content .='<h4>' . __('Account', 'blog2social') . '</h4>';
|
@@ -92,7 +96,14 @@ class B2S_Settings_Item {
|
|
92 |
$content .='<br>';
|
93 |
$content .='<hr>';
|
94 |
$content .='<h4>' . __('Content', 'blog2social') . '</h4>';
|
95 |
-
$content .=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
$content .= '<br>';
|
97 |
$content .= '<input type="checkbox" value="' . $isCheckedAllowShortcode . '" id="b2s-user-network-settings-allow-shortcode" ' . (($isCheckedAllowShortcode == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-allow-shortcode"> ' . __('allow shortcodes in my post', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoAllowShortcodeModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
|
98 |
$content .= '<br>';
|
@@ -105,17 +116,17 @@ class B2S_Settings_Item {
|
|
105 |
}
|
106 |
$content .='</p>';
|
107 |
$content .='<select id="b2s-user-network-twitter-content">';
|
108 |
-
$content .='<option ' . (($contentTwitter === false || $contentTwitter == 0 || B2S_PLUGIN_USER_VERSION < 1) ? 'selected' : '') . ' value="0">' . __('title', 'blog2social') . ''.(($isCheckedAllowHashTag == 1) ? ' & ' . __('hashtags', 'blog2social') : '') . '</option>';
|
109 |
-
$content .='<option ' . (($contentTwitter !== false && $contentTwitter == 1 && B2S_PLUGIN_USER_VERSION >= 1) ? 'selected' : '') . ' value="1">' . __('title & content', 'blog2social') . ''.(($isCheckedAllowHashTag == 1) ? ' & ' . __('hashtags', 'blog2social') : '') . ' ' . ((B2S_PLUGIN_USER_VERSION < 1) ? __('(PREMIUM)', 'blog2social') : '') . '</option>';
|
110 |
-
$content .='<option ' . (($contentTwitter !== false && $contentTwitter == 2 && B2S_PLUGIN_USER_VERSION >= 1) ? 'selected' : '') . ' value="2">' . __('only content', 'blog2social') . ''.(($isCheckedAllowHashTag == 1) ? ' & ' . __('hashtags', 'blog2social') : '') . ' ' . ((B2S_PLUGIN_USER_VERSION < 1) ? __('(PREMIUM)', 'blog2social') : '') . '</option>';
|
111 |
$content .='</select> <a href="#" data-toggle="modal" data-target="#b2sInfoContentTwitterModal" class="b2s-info-btn hidden-xs">' . __('Info', 'blog2social') . '</a>';
|
112 |
$content .='<div class="clearfix"></div>';
|
113 |
$content .='<br>';
|
114 |
$content .='<hr>';
|
115 |
$content .='<h4>' . __('System', 'blog2social') . '</h4>';
|
116 |
$content .='<strong>' . __('This is a global feature for your blog, which can only be edited by users with admin rights.', 'blog2social') . '</strong><br>';
|
117 |
-
|
118 |
-
|
119 |
}
|
120 |
|
121 |
public function getAutoPostingSettingsHtml() {
|
@@ -181,7 +192,7 @@ class B2S_Settings_Item {
|
|
181 |
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="ON" data-off="OFF" ' . ((isset($optionAutoPostImport['active']) && (int) $optionAutoPostImport['active'] == 1) ? 'checked' : '') . ' name="b2s-import-auto-post" value="1" type="checkbox">';
|
182 |
$content .='<br><br>';
|
183 |
$content .='<p class="b2s-bold">' . __('Select to auto-post to your standard networks:', 'blog2social') . '</p>';
|
184 |
-
$content .='<div class="b2s-network-tos-auto-post-import-warning"><div class="alert alert-danger">' . __('In accordance with the new Twitter TOS, one Twitter account can be selected as your primary Twitter account for auto-posting.', 'blog2social') . ' <a href="'.B2S_Tools::getSupportLink('network_tos_faq_032018').'" target="_blank">'.__('More information','blog2social').'</a></div></div>';
|
185 |
$content .= $this->getNetworkAutoPostData($optionAutoPostImport);
|
186 |
$content .='<p class="b2s-bold">' . __('Select to auto-post immediately after publishing or with a delay', 'blog2social') . '</p>';
|
187 |
$content .='<input id="b2s-import-auto-post-time-now" name="b2s-import-auto-post-time-state" ' . (((isset($optionAutoPostImport['ship_state']) && (int) $optionAutoPostImport['ship_state'] == 0) || !isset($optionAutoPostImport['ship_state'])) ? 'checked' : '') . ' value="0" type="radio"><label for="b2s-import-auto-post-time-now">' . __('immediately', 'blog2social') . '</label><br>';
|
@@ -258,7 +269,7 @@ class B2S_Settings_Item {
|
|
258 |
$html .='<span class="glyphicon glyphicon-remove-circle glyphicon-danger"></span> <span class="not-allow">' . $networkType . ': ' . stripslashes($t->networkUserName) . '</span> ';
|
259 |
} else {
|
260 |
$selItem = (in_array($t->networkAuthId, $selected)) ? 'checked' : '';
|
261 |
-
$html .= '<input id="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '" class="b2s-network-tos-check" data-network-id="'
|
262 |
}
|
263 |
$html .= '</li>';
|
264 |
}
|
@@ -286,7 +297,7 @@ class B2S_Settings_Item {
|
|
286 |
$og_isChecked = ($og !== false && $og == 1) ? 0 : 1;
|
287 |
$card_isChecked = ($card !== false && $card == 1) ? 0 : 1;
|
288 |
$selectCardType = $this->generalOptions->_getOption('card_default_type');
|
289 |
-
|
290 |
$content = '<div class="col-md-12">';
|
291 |
if (B2S_PLUGIN_ADMIN) {
|
292 |
$content .= '<a href="#" class="pull-right btn btn-primary btn-xs b2sClearSocialMetaTags">' . __('Reset all page and post meta data', 'blog2social') . '</a>';
|
@@ -301,20 +312,20 @@ class B2S_Settings_Item {
|
|
301 |
$content .='</div>';
|
302 |
$content .='<br><br><hr>';
|
303 |
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
|
319 |
$content .='<strong>' . __('This is a global feature for your blog, which can only be edited by users with admin rights.', 'blog2social') . '</strong>';
|
320 |
$content .='<div class="' . ( (B2S_PLUGIN_ADMIN) ? "" : "b2s-disabled-div") . '">';
|
@@ -338,10 +349,10 @@ class B2S_Settings_Item {
|
|
338 |
$content .='<div><img alt="" class="b2s-post-item-network-image" src="' . plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) . '"> <b>Twitter</b></div>';
|
339 |
$content .='<p>' . __('Add the default Twitter Card parameters for title, description and image you want Twitter to display, if you share the frontpage of your blog as link post (http://www.yourblog.com)', 'blog2social') . '</p>';
|
340 |
$content .='<br>';
|
341 |
-
$content .='<div class="col-md-8">';
|
342 |
$content .='<div class="form-group"><label for="b2s_card_default_card_type"><strong>' . __("The default card type to use", "blog2social") . ':</strong></label>';
|
343 |
$content .='<select class="form-control" name="b2s_card_default_type">';
|
344 |
-
$content .='<option ' . (($selectCardType === false || $selectCardType == 0 || B2S_PLUGIN_USER_VERSION < 1) ? 'selected"' : '') . ' value="0">' . __('Summary', 'blog2social').'</option>';
|
345 |
$content .='<option ' . (($selectCardType !== false && $selectCardType == 1 && B2S_PLUGIN_USER_VERSION >= 1) ? 'selected' : '') . ' value="1">' . __('Summary with large image', 'blog2social') . ' ' . ((B2S_PLUGIN_USER_VERSION < 1) ? __('(PREMIUM)', 'blog2social') : '') . '</option>';
|
346 |
$content .='</select></div>';
|
347 |
$content .='<div class="form-group"><label for="b2s_card_default_title"><strong>' . __("Title", "blog2social") . ':</strong></label><input type="text" ' . ((B2S_PLUGIN_ADMIN) ? "" : "readonly") . ' value="' . ( ($this->generalOptions->_getOption('card_default_title') !== false) ? $this->generalOptions->_getOption('card_default_title') : get_bloginfo('name') ) . '" name="b2s_card_default_title" class="form-control" id="b2s_card_default_title"></div>';
|
15 |
private $allowGroup;
|
16 |
private $timeInfo;
|
17 |
private $postTypesData;
|
18 |
+
private $authUrl;
|
19 |
|
20 |
public function __construct() {
|
21 |
$this->getSettings();
|
27 |
$this->allowGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_GROUP);
|
28 |
$this->timeInfo = unserialize(B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO);
|
29 |
$this->postTypesData = get_post_types(array('public' => true));
|
30 |
+
$this->authUrl = B2S_PLUGIN_API_ENDPOINT_AUTH_SHORTENER . '?b2s_token=' . B2S_PLUGIN_TOKEN . '&sprache=' . substr(B2S_LANGUAGE, 0, 2);
|
31 |
}
|
32 |
|
33 |
private function getSettings() {
|
77 |
$userInfo = get_user_meta(B2S_PLUGIN_BLOG_USER_ID);
|
78 |
$isChecked = (isset($this->settings->short_url) && (int) $this->settings->short_url == 0) ? 1 : 0;
|
79 |
$isCheckedAllowHashTag = ($optionUserHashTag === false || $optionUserHashTag == 1) ? 1 : 0; //default allow , 1=include 0=not include
|
80 |
+
$isShortenerBitlyActive = (isset($this->settings->shortener_bitly_display_name) && !empty($this->settings->shortener_bitly_display_name)) ? true : false;
|
81 |
+
$isChecked = ($isShortenerBitlyActive) ? 0: 1;
|
82 |
|
83 |
$content = '';
|
84 |
$content .='<h4>' . __('Account', 'blog2social') . '</h4>';
|
96 |
$content .='<br>';
|
97 |
$content .='<hr>';
|
98 |
$content .='<h4>' . __('Content', 'blog2social') . '</h4>';
|
99 |
+
$content .='<strong>' . __('Url Shortener', 'blog2social') . '</strong> <a href="#" data-toggle="modal" data-target="#b2sInfoUrlShortenerModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a><br>';
|
100 |
+
$content .='<input type="checkbox" value="' . $isChecked . '" id="b2s-user-network-settings-short-url" ' . (($isChecked == 0) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-short-url"> <img class="b2s-shortener-image" alt="Bitly" src="' . plugins_url('/assets/images/settings/bitly.png', B2S_PLUGIN_FILE) . '"> ' . __('Bitly', 'blog2social') . '</label>';
|
101 |
+
$content .=' <span class="b2s-user-network-shortener-account-area" data-provider-id="0">';
|
102 |
+
$content .='<input type="hidden" id="b2s-user-network-shortener-state" data-provider-id="0" value="'.(($isShortenerBitlyActive) ? 1: 0).'"/>';
|
103 |
+
$content .='<span class="b2s-user-network-shortener-connect" data-provider-id="0" style="display:' . ((!$isShortenerBitlyActive) ? 'inline-block' : 'none') . ';" ><a href="#" class="b2s-shortener-account-connect-btn" data-provider-id="0" onclick="wopShortener(\'' . $this->authUrl . '&provider_id=0\', \'Blog2Social Network\'); return false;">' . __('connect', 'blog2social') . '</a> </span>';
|
104 |
+
$content .='<span class="b2s-user-network-shortener-account-detail" data-provider-id="0" style="display:' . (($isShortenerBitlyActive) ? 'inline-block' : 'none') . ';">(' . __('Account', 'blog2social') . ': <span id="b2s-shortener-account-display-name" data-provider-id="0">' . (($isShortenerBitlyActive) ? $this->settings->shortener_bitly_display_name : '') . '</span> <a href="#" class="b2s-shortener-account-change-btn" data-provider-id="0" onclick="wopShortener(\'' . $this->authUrl . '&provider_id=0\', \'Blog2Social Network\'); return false;">' . __('change', 'blog2social') . '</a> | <a href="#" class="b2s-shortener-account-delete-btn" data-provider-id="0">' . __('delete', 'blog2social') . '</a>)</span>';
|
105 |
+
$content .='</span>';
|
106 |
+
$content .= '<br>';
|
107 |
$content .= '<br>';
|
108 |
$content .= '<input type="checkbox" value="' . $isCheckedAllowShortcode . '" id="b2s-user-network-settings-allow-shortcode" ' . (($isCheckedAllowShortcode == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-user-network-settings-allow-shortcode"> ' . __('allow shortcodes in my post', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoAllowShortcodeModal" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
|
109 |
$content .= '<br>';
|
116 |
}
|
117 |
$content .='</p>';
|
118 |
$content .='<select id="b2s-user-network-twitter-content">';
|
119 |
+
$content .='<option ' . (($contentTwitter === false || $contentTwitter == 0 || B2S_PLUGIN_USER_VERSION < 1) ? 'selected' : '') . ' value="0">' . __('title', 'blog2social') . '' . (($isCheckedAllowHashTag == 1) ? ' & ' . __('hashtags', 'blog2social') : '') . '</option>';
|
120 |
+
$content .='<option ' . (($contentTwitter !== false && $contentTwitter == 1 && B2S_PLUGIN_USER_VERSION >= 1) ? 'selected' : '') . ' value="1">' . __('title & content', 'blog2social') . '' . (($isCheckedAllowHashTag == 1) ? ' & ' . __('hashtags', 'blog2social') : '') . ' ' . ((B2S_PLUGIN_USER_VERSION < 1) ? __('(PREMIUM)', 'blog2social') : '') . '</option>';
|
121 |
+
$content .='<option ' . (($contentTwitter !== false && $contentTwitter == 2 && B2S_PLUGIN_USER_VERSION >= 1) ? 'selected' : '') . ' value="2">' . __('only content', 'blog2social') . '' . (($isCheckedAllowHashTag == 1) ? ' & ' . __('hashtags', 'blog2social') : '') . ' ' . ((B2S_PLUGIN_USER_VERSION < 1) ? __('(PREMIUM)', 'blog2social') : '') . '</option>';
|
122 |
$content .='</select> <a href="#" data-toggle="modal" data-target="#b2sInfoContentTwitterModal" class="b2s-info-btn hidden-xs">' . __('Info', 'blog2social') . '</a>';
|
123 |
$content .='<div class="clearfix"></div>';
|
124 |
$content .='<br>';
|
125 |
$content .='<hr>';
|
126 |
$content .='<h4>' . __('System', 'blog2social') . '</h4>';
|
127 |
$content .='<strong>' . __('This is a global feature for your blog, which can only be edited by users with admin rights.', 'blog2social') . '</strong><br>';
|
128 |
+
$content .= '<input type="checkbox" value="' . (($isCheckedLegacyMode == 1) ? 0 : 1) . '" id="b2s-general-settings-legacy-mode" ' . (($isCheckedLegacyMode == 1) ? 'checked="checked"' : '') . ' /><label for="b2s-general-settings-legacy-mode"> ' . __('activate Legacy mode', 'blog2social') . ' <a href="#" data-toggle="modal" data-target="#b2sInfoLegacyMode" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a></label>';
|
129 |
+
return $content;
|
130 |
}
|
131 |
|
132 |
public function getAutoPostingSettingsHtml() {
|
192 |
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="ON" data-off="OFF" ' . ((isset($optionAutoPostImport['active']) && (int) $optionAutoPostImport['active'] == 1) ? 'checked' : '') . ' name="b2s-import-auto-post" value="1" type="checkbox">';
|
193 |
$content .='<br><br>';
|
194 |
$content .='<p class="b2s-bold">' . __('Select to auto-post to your standard networks:', 'blog2social') . '</p>';
|
195 |
+
$content .='<div class="b2s-network-tos-auto-post-import-warning"><div class="alert alert-danger">' . __('In accordance with the new Twitter TOS, one Twitter account can be selected as your primary Twitter account for auto-posting.', 'blog2social') . ' <a href="' . B2S_Tools::getSupportLink('network_tos_faq_032018') . '" target="_blank">' . __('More information', 'blog2social') . '</a></div></div>';
|
196 |
$content .= $this->getNetworkAutoPostData($optionAutoPostImport);
|
197 |
$content .='<p class="b2s-bold">' . __('Select to auto-post immediately after publishing or with a delay', 'blog2social') . '</p>';
|
198 |
$content .='<input id="b2s-import-auto-post-time-now" name="b2s-import-auto-post-time-state" ' . (((isset($optionAutoPostImport['ship_state']) && (int) $optionAutoPostImport['ship_state'] == 0) || !isset($optionAutoPostImport['ship_state'])) ? 'checked' : '') . ' value="0" type="radio"><label for="b2s-import-auto-post-time-now">' . __('immediately', 'blog2social') . '</label><br>';
|
269 |
$html .='<span class="glyphicon glyphicon-remove-circle glyphicon-danger"></span> <span class="not-allow">' . $networkType . ': ' . stripslashes($t->networkUserName) . '</span> ';
|
270 |
} else {
|
271 |
$selItem = (in_array($t->networkAuthId, $selected)) ? 'checked' : '';
|
272 |
+
$html .= '<input id="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '" class="b2s-network-tos-check" data-network-id="' . $t->networkId . '" ' . $selItem . ' value="' . $t->networkAuthId . '" name="b2s-import-auto-post-network-auth-id[]" type="checkbox"> <label for="b2s-import-auto-post-network-auth-id-' . $t->networkAuthId . '">' . $networkType . ': ' . stripslashes($t->networkUserName) . '</label>';
|
273 |
}
|
274 |
$html .= '</li>';
|
275 |
}
|
297 |
$og_isChecked = ($og !== false && $og == 1) ? 0 : 1;
|
298 |
$card_isChecked = ($card !== false && $card == 1) ? 0 : 1;
|
299 |
$selectCardType = $this->generalOptions->_getOption('card_default_type');
|
300 |
+
|
301 |
$content = '<div class="col-md-12">';
|
302 |
if (B2S_PLUGIN_ADMIN) {
|
303 |
$content .= '<a href="#" class="pull-right btn btn-primary btn-xs b2sClearSocialMetaTags">' . __('Reset all page and post meta data', 'blog2social') . '</a>';
|
312 |
$content .='</div>';
|
313 |
$content .='<br><br><hr>';
|
314 |
|
315 |
+
/* $content .='<h4>' . __('Authorship Settings', 'blog2social');
|
316 |
+
if (B2S_PLUGIN_USER_VERSION < 1) {
|
317 |
+
$content .=' <span class="label label-success label-sm"><a href="#" class="btn-label-premium" data-toggle="modal" data-target="#b2sPreFeatureModal">' . __("PREMIUM", "blog2social") . '</a></span>';
|
318 |
+
}
|
319 |
+
$content .='</h4>';
|
320 |
+
$content .='<div class="' . ( (B2S_PLUGIN_USER_VERSION >= 1) ? "" : "b2s-disabled-div") . '">';
|
321 |
+
$content .='<p>' . __('Add authorship tags to your articles. When somesone shares your links on Facebook or Twitter, you will be automatically linked as the author.', 'blog2social') . '</p>';
|
322 |
+
$content .='<div class="col-md-8">';
|
323 |
+
$content .='<div class="form-group"><label for="b2s_og_article_author"><img alt="" class="b2s-post-item-network-image" src="' . plugins_url('/assets/images/portale/1_flat.png', B2S_PLUGIN_FILE) . '"> <strong>' . __("Facebook author link", "blog2social") . ':</strong></label><input type="text" placeholder="' . __("Enter your Facebook link profile here (e.g. https://www.facebook.com/Blog2Social/)", "blog2social") . '" ' . ((B2S_PLUGIN_USER_VERSION >= 1) ? "" : "readonly") . ' value="' . (($user_meta_author_data !== false && isset($user_meta_author_data['og_article_author'])) ? $user_meta_author_data['og_article_author'] : "") . '" name="b2s_og_article_author" class="form-control" id="b2s_og_article_author"></div>';
|
324 |
+
$content .='<div class="form-group"><label for="b2s_card_twitter_creator"><img alt="" class="b2s-post-item-network-image" src="' . plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) . '"> <strong>' . __("Twitter Username", "blog2social") . ':</strong></label><input type="text" placeholder="' . __("Enter your Twitter Username here (e.g. @blog2social)", "blog2social") . '" ' . ((B2S_PLUGIN_USER_VERSION >= 1) ? "" : "readonly") . ' value="' . (($user_meta_author_data !== false && isset($user_meta_author_data['card_twitter_creator'])) ? $user_meta_author_data['card_twitter_creator'] : "") . '" name="b2s_card_twitter_creator" class="form-control" id="b2s_card_twitter_creator"></div>';
|
325 |
+
$content .='</div>';
|
326 |
+
$content .='</div>';
|
327 |
+
$content .='<div class="clearfix"></div>';
|
328 |
+
$content .='<hr>'; */
|
329 |
|
330 |
$content .='<strong>' . __('This is a global feature for your blog, which can only be edited by users with admin rights.', 'blog2social') . '</strong>';
|
331 |
$content .='<div class="' . ( (B2S_PLUGIN_ADMIN) ? "" : "b2s-disabled-div") . '">';
|
349 |
$content .='<div><img alt="" class="b2s-post-item-network-image" src="' . plugins_url('/assets/images/portale/2_flat.png', B2S_PLUGIN_FILE) . '"> <b>Twitter</b></div>';
|
350 |
$content .='<p>' . __('Add the default Twitter Card parameters for title, description and image you want Twitter to display, if you share the frontpage of your blog as link post (http://www.yourblog.com)', 'blog2social') . '</p>';
|
351 |
$content .='<br>';
|
352 |
+
$content .='<div class="col-md-8">';
|
353 |
$content .='<div class="form-group"><label for="b2s_card_default_card_type"><strong>' . __("The default card type to use", "blog2social") . ':</strong></label>';
|
354 |
$content .='<select class="form-control" name="b2s_card_default_type">';
|
355 |
+
$content .='<option ' . (($selectCardType === false || $selectCardType == 0 || B2S_PLUGIN_USER_VERSION < 1) ? 'selected"' : '') . ' value="0">' . __('Summary', 'blog2social') . '</option>';
|
356 |
$content .='<option ' . (($selectCardType !== false && $selectCardType == 1 && B2S_PLUGIN_USER_VERSION >= 1) ? 'selected' : '') . ' value="1">' . __('Summary with large image', 'blog2social') . ' ' . ((B2S_PLUGIN_USER_VERSION < 1) ? __('(PREMIUM)', 'blog2social') : '') . '</option>';
|
357 |
$content .='</select></div>';
|
358 |
$content .='<div class="form-group"><label for="b2s_card_default_title"><strong>' . __("Title", "blog2social") . ':</strong></label><input type="text" ' . ((B2S_PLUGIN_ADMIN) ? "" : "readonly") . ' value="' . ( ($this->generalOptions->_getOption('card_default_title') !== false) ? $this->generalOptions->_getOption('card_default_title') : get_bloginfo('name') ) . '" name="b2s_card_default_title" class="form-control" id="b2s_card_default_title"></div>';
|
includes/B2S/Ship/Image.php
CHANGED
@@ -66,13 +66,13 @@ private $viewMode;
|
|
66 |
$content .= '<div class="col-xs-12 del-padding-left del-padding-right">';
|
67 |
|
68 |
if($this->viewMode != 'modal'){
|
69 |
-
$content .= ' <button class="btn btn-primary b2s-image-change-all-network b2s-image-change-btn-area" ' . (!$isImage ? 'style="display:none"' : '') . ' data-post-id="'.$postId.'">' . __('Apply image for all posts', 'blog2social') . '</button>';
|
70 |
}
|
71 |
|
72 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
73 |
-
$content .= '<button class="btn btn-primary b2s-image-change-this-network b2s-image-change-btn-area" ' . (!$isImage ? 'style="display:none"' : '') . ' data-network-auth-id="" data-meta-type="" data-post-id="'.$postId.'">' . __('Apply image for this
|
74 |
} else {
|
75 |
-
$content .= '<button class="btn btn-primary b2s-btn-disabled b2s-upload-image-free-version b2s-image-change-btn-area" ' . (!$isImage ? 'style="display:none"' : '') . ' data-post-id="'.$postId.'">' . __('Apply image for this
|
76 |
}
|
77 |
|
78 |
if (current_user_can('upload_files')) {
|
66 |
$content .= '<div class="col-xs-12 del-padding-left del-padding-right">';
|
67 |
|
68 |
if($this->viewMode != 'modal'){
|
69 |
+
$content .= ' <button class="btn btn-primary b2s-image-change-all-network b2s-image-change-btn-area" ' . (!$isImage ? 'style="display:none"' : '') . ' data-network-id="" data-post-id="'.$postId.'">' . __('Apply image for all posts', 'blog2social') . '</button>';
|
70 |
}
|
71 |
|
72 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
73 |
+
$content .= '<button class="btn btn-primary b2s-image-change-this-network b2s-image-change-btn-area" ' . (!$isImage ? 'style="display:none"' : '') . ' data-network-auth-id="" data-network-id="" data-meta-type="" data-post-id="'.$postId.'">' . __('Apply image for this post', 'blog2social') . '</button>';
|
74 |
} else {
|
75 |
+
$content .= '<button class="btn btn-primary b2s-btn-disabled b2s-upload-image-free-version b2s-image-change-btn-area" ' . (!$isImage ? 'style="display:none"' : '') . ' data-post-id="'.$postId.'">' . __('Apply image for this post', 'blog2social') . ' <span class="label label-success">' . __('PREMIUM', 'blog2social') . ' </span></button>';
|
76 |
}
|
77 |
|
78 |
if (current_user_can('upload_files')) {
|
includes/B2S/Ship/Item.php
CHANGED
@@ -17,29 +17,29 @@ class B2S_Ship_Item {
|
|
17 |
private $onlyImage = array(6, 7, 12);
|
18 |
private $allowNoImageProfile = array(5, 9);
|
19 |
private $allowNoCustomImageProfile = array(8, 15);
|
20 |
-
private $allowNoEmoji = array(3, 9, 13, 14, 15, 16);
|
21 |
private $allowNoImagePage = array(8);
|
22 |
-
private $allowEditUrl = array(1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17);
|
23 |
private $showBoards = array(6);
|
24 |
private $showRelay = array(2);
|
25 |
private $showBoardsGroup = array(10);
|
26 |
private $showGroups = array(8, 15);
|
27 |
private $changeDisplayName = array(8);
|
28 |
-
private $setShortTextProfile = array(1 => 239, 2 => 255, 3 => 239, 6 => 300, 8 => 239, 10 => 442, 12 => 240, 9 => 200, 16 => 250, 17 => 442);
|
29 |
-
private $setShortTextProfileLimit = array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200);
|
30 |
private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 1200, 10 => 442, 17 => 442);
|
31 |
private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 1200, 10 => 500);
|
32 |
private $setShortTextGroup = array(1 => 239, 8 => 239, 10 => 442, 17 => 442);
|
33 |
private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
|
34 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17);
|
35 |
-
private $limitCharacterProfile = array(2 => 280, 3 => 600, 6 => 500, 8 => 420, 9 => 250, 15 => 300, 12 => 2000);
|
36 |
-
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 17);
|
37 |
private $showImageAreaPage = array(10, 17);
|
38 |
private $showImageAreaGroup = array(8, 10, 17);
|
39 |
private $limitCharacterPage = array(3 => 600, 8 => 1200);
|
40 |
private $requiredUrl = array(1, 3, 8, 9, 10, 15);
|
41 |
-
private $getText = array(1, 7, 10, 12, 16, 17);
|
42 |
-
private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17);
|
43 |
private $maxWeekTimeSelect = 52;
|
44 |
private $networkTos = array(2);
|
45 |
private $maxMonthTimeSelect = 12;
|
@@ -48,7 +48,7 @@ class B2S_Ship_Item {
|
|
48 |
//private $maxReplayCount = 3;
|
49 |
private $setRelayCount = 0;
|
50 |
private $maxDaySelect = 31;
|
51 |
-
private $noScheduleRegularly = array(2, 4, 11, 14, 15);
|
52 |
private $defaultImage;
|
53 |
private $postData;
|
54 |
private $postUrl;
|
@@ -60,7 +60,7 @@ class B2S_Ship_Item {
|
|
60 |
private $viewMode;
|
61 |
private $userOptions;
|
62 |
|
63 |
-
public function __construct($postId, $userLang = 'en', $selSchedDate = ""
|
64 |
$this->postId = $postId;
|
65 |
$this->postData = get_post($this->postId);
|
66 |
$this->postStatus = $this->postData->post_status;
|
@@ -245,14 +245,14 @@ class B2S_Ship_Item {
|
|
245 |
$postFormatType = ($data->networkId == 12) ? 'image' : 'post';
|
246 |
$addCSS = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
247 |
$content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-post-format ' . $addCSS . '" data-post-format-type="' . $postFormatType . '" data-network-auth-id="' . $data->networkAuthId . '" data-network-type="' . $data->networkType . '" data-network-id="' . $data->networkId . '" >' . __('post format', 'blog2social') . ': <span class="b2s-post-ship-item-post-format-text" data-post-format-type="' . $postFormatType . '" data-network-auth-id="' . $data->networkAuthId . '" data-network-type="' . $data->networkType . '" data-network-id="' . $data->networkId . '" ></span></button>';
|
248 |
-
$content .='<span class="b2s-post-tool-area" data-network-auth-id="' . $data->networkAuthId . '">';
|
249 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
250 |
$content .= '<input type="hidden" class="b2s-post-item-details-post-format" name="b2s[' . $data->networkAuthId . '][post_format]" data-network-auth-id="' . $data->networkAuthId . '" data-network-id="' . $data->networkId . '" data-network-type="' . $data->networkType . '" value="0" />';
|
251 |
} else {
|
252 |
$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="' . $data->networkAuthId . '" href="#">PREMIUM</a></span>';
|
253 |
}
|
254 |
-
$content .=' | ';
|
255 |
}
|
|
|
|
|
256 |
if (in_array($data->networkId, $this->getText)) {
|
257 |
$content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-full-text" data-network-count="-1" data-network-auth-id="' . $data->networkAuthId . '" >' . __('Insert full-text', 'blog2social') . '</button> | ';
|
258 |
}
|
@@ -464,7 +464,7 @@ class B2S_Ship_Item {
|
|
464 |
$edit = '<div class="row"><br>';
|
465 |
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
466 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
467 |
-
$edit .= '<img src="' . $this->defaultImage . '" class="linkedin-url-image b2s-post-item-details-url-image center-block img-responsive" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
468 |
$edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="' . $schedCount . '" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" value="' . ($imageUrl ? $imageUrl : "") . '" name="b2s[' . $networkAuthId . '][sched_image_url][' . $schedCount . ']">';
|
469 |
$edit .= '<div class="clearfix"></div>';
|
470 |
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-post-id="' . $this->postId . '" data-image-url="' . esc_attr($imageUrl) . '">' . __('Change image', 'blog2social') . '</button>';
|
@@ -721,7 +721,8 @@ class B2S_Ship_Item {
|
|
721 |
$currentDate = (strtolower(substr(get_locale(), 0, 2)) == 'de') ? date('d.m.Y', $time) : date('Y-m-d', $time);
|
722 |
$currentDay = date('d', $time);
|
723 |
|
724 |
-
|
|
|
725 |
$shipping .= '<div class="form-group b2s-post-item-details-release-area-details-row" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none">';
|
726 |
|
727 |
$shipping .= $schedcount != 0 ? '<div class="clearfix"></div><hr class="b2s-hr-small">' : '';
|
@@ -769,7 +770,7 @@ class B2S_Ship_Item {
|
|
769 |
$shipping .= '<div class="col-xs-12 col-sm-6 col-md-2 del-padding-left b2s-post-item-details-release-area-div-duration-time" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '" style="display:none;"><select name="b2s[' . $networkAuthId . '][duration_time][' . $schedcount . ']" class="form-control b2s-select b2s-post-item-details-release-input-times" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none;" disabled="disabled">';
|
770 |
$defaultTime = isset($this->defaultScheduleTime[$networkId][$schedcount]['time']) ? $this->defaultScheduleTime[$networkId][$schedcount]['time'] : 1;
|
771 |
for ($i = 1; $i <= $this->maxTimeSelect; $i++) {
|
772 |
-
$timeName = ($i == 1) ? __('Time', 'blog2social') : __('Times', 'blog2social');
|
773 |
$shipping .= '<option value="' . $i . '" ' . ($defaultTime == $i ? 'selected="selected"' : '') . '>' . $i . ' ' . $timeName . '</option>';
|
774 |
}
|
775 |
$shipping .= '</select></div>';
|
@@ -805,7 +806,7 @@ class B2S_Ship_Item {
|
|
805 |
$shipping .= '</div>';
|
806 |
$shipping .= '<div class="col-md-2 del-padding-left">';
|
807 |
$shipping .= ( $schedcount >= 1) ? '<button class="btn btn-link b2s-post-item-details-release-input-hide" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">-' . __('delete', 'blog2social') . '</button>' : '';
|
808 |
-
$shipping .= $schedcount < $
|
809 |
$shipping .= '</div>';
|
810 |
|
811 |
//since 4.8.0 customize content
|
@@ -818,7 +819,7 @@ class B2S_Ship_Item {
|
|
818 |
}
|
819 |
|
820 |
$edit = '<div class="pull-right hidden-xs b2s-post-item-info-area">';
|
821 |
-
$edit .= '<button class="btn btn-xs btn-link b2s-post-ship-item-copy-original-text" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" >' . __('Copy from original', 'blog2social') . '</button> | ';
|
822 |
if (in_array($networkId, $this->getText)) {
|
823 |
$edit .= '<button class="btn btn-xs btn-link b2s-post-ship-item-full-text" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" >' . __('Insert full-text', 'blog2social') . '</button> | ';
|
824 |
}
|
17 |
private $onlyImage = array(6, 7, 12);
|
18 |
private $allowNoImageProfile = array(5, 9);
|
19 |
private $allowNoCustomImageProfile = array(8, 15);
|
20 |
+
private $allowNoEmoji = array(3, 9, 13, 14, 15, 16, 18);
|
21 |
private $allowNoImagePage = array(8);
|
22 |
+
private $allowEditUrl = array(1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18);
|
23 |
private $showBoards = array(6);
|
24 |
private $showRelay = array(2);
|
25 |
private $showBoardsGroup = array(10);
|
26 |
private $showGroups = array(8, 15);
|
27 |
private $changeDisplayName = array(8);
|
28 |
+
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);
|
29 |
+
private $setShortTextProfileLimit = array(1 => 400, 2 => 256, 3 => 400, 6 => 400, 8 => 400, 10 => 500, 12 => 400, 9 => 200, 18 => 1000);
|
30 |
private $setShortTextPage = array(1 => 239, 3 => 239, 8 => 1200, 10 => 442, 17 => 442);
|
31 |
private $setShortTextPageLimit = array(1 => 400, 3 => 400, 8 => 1200, 10 => 500);
|
32 |
private $setShortTextGroup = array(1 => 239, 8 => 239, 10 => 442, 17 => 442);
|
33 |
private $setShortTextGroupLimit = array(1 => 400, 8 => 400, 10 => 500);
|
34 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17);
|
35 |
+
private $limitCharacterProfile = array(2 => 280, 3 => 600, 6 => 500, 8 => 420, 9 => 250, 15 => 300, 12 => 2000, 18 => 1000);
|
36 |
+
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 17, 18);
|
37 |
private $showImageAreaPage = array(10, 17);
|
38 |
private $showImageAreaGroup = array(8, 10, 17);
|
39 |
private $limitCharacterPage = array(3 => 600, 8 => 1200);
|
40 |
private $requiredUrl = array(1, 3, 8, 9, 10, 15);
|
41 |
+
private $getText = array(1, 7, 10, 12, 16, 17, 18);
|
42 |
+
private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18);
|
43 |
private $maxWeekTimeSelect = 52;
|
44 |
private $networkTos = array(2);
|
45 |
private $maxMonthTimeSelect = 12;
|
48 |
//private $maxReplayCount = 3;
|
49 |
private $setRelayCount = 0;
|
50 |
private $maxDaySelect = 31;
|
51 |
+
private $noScheduleRegularly = array(2, 4, 11, 14, 15, 18);
|
52 |
private $defaultImage;
|
53 |
private $postData;
|
54 |
private $postUrl;
|
60 |
private $viewMode;
|
61 |
private $userOptions;
|
62 |
|
63 |
+
public function __construct($postId, $userLang = 'en', $selSchedDate = "", $relayCount = 0) {
|
64 |
$this->postId = $postId;
|
65 |
$this->postData = get_post($this->postId);
|
66 |
$this->postStatus = $this->postData->post_status;
|
245 |
$postFormatType = ($data->networkId == 12) ? 'image' : 'post';
|
246 |
$addCSS = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
247 |
$content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-post-format ' . $addCSS . '" data-post-format-type="' . $postFormatType . '" data-network-auth-id="' . $data->networkAuthId . '" data-network-type="' . $data->networkType . '" data-network-id="' . $data->networkId . '" >' . __('post format', 'blog2social') . ': <span class="b2s-post-ship-item-post-format-text" data-post-format-type="' . $postFormatType . '" data-network-auth-id="' . $data->networkAuthId . '" data-network-type="' . $data->networkType . '" data-network-id="' . $data->networkId . '" ></span></button>';
|
|
|
248 |
if (B2S_PLUGIN_USER_VERSION > 0) {
|
249 |
$content .= '<input type="hidden" class="b2s-post-item-details-post-format" name="b2s[' . $data->networkAuthId . '][post_format]" data-network-auth-id="' . $data->networkAuthId . '" data-network-id="' . $data->networkId . '" data-network-type="' . $data->networkType . '" value="0" />';
|
250 |
} else {
|
251 |
$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="' . $data->networkAuthId . '" href="#">PREMIUM</a></span>';
|
252 |
}
|
|
|
253 |
}
|
254 |
+
$content .='<span class="b2s-post-tool-area" data-network-auth-id="' . $data->networkAuthId . '">';
|
255 |
+
$content .= (in_array($data->networkId, $this->setPostFormat)) ? ' | ' : '';
|
256 |
if (in_array($data->networkId, $this->getText)) {
|
257 |
$content .= '<button class="btn btn-xs btn-link b2s-post-ship-item-full-text" data-network-count="-1" data-network-auth-id="' . $data->networkAuthId . '" >' . __('Insert full-text', 'blog2social') . '</button> | ';
|
258 |
}
|
464 |
$edit = '<div class="row"><br>';
|
465 |
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
466 |
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
467 |
+
$edit .= '<img src="' . $this->defaultImage . '" class="linkedin-url-image b2s-post-item-details-url-image center-block img-responsive" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
468 |
$edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="' . $schedCount . '" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" value="' . ($imageUrl ? $imageUrl : "") . '" name="b2s[' . $networkAuthId . '][sched_image_url][' . $schedCount . ']">';
|
469 |
$edit .= '<div class="clearfix"></div>';
|
470 |
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-post-id="' . $this->postId . '" data-image-url="' . esc_attr($imageUrl) . '">' . __('Change image', 'blog2social') . '</button>';
|
721 |
$currentDate = (strtolower(substr(get_locale(), 0, 2)) == 'de') ? date('d.m.Y', $time) : date('Y-m-d', $time);
|
722 |
$currentDay = date('d', $time);
|
723 |
|
724 |
+
$maxSchedCount = ($networkId == 18) ? 1 : $this->maxSchedCount;
|
725 |
+
for ($schedcount = 0; $schedcount < $maxSchedCount; $schedcount++) {
|
726 |
$shipping .= '<div class="form-group b2s-post-item-details-release-area-details-row" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none">';
|
727 |
|
728 |
$shipping .= $schedcount != 0 ? '<div class="clearfix"></div><hr class="b2s-hr-small">' : '';
|
770 |
$shipping .= '<div class="col-xs-12 col-sm-6 col-md-2 del-padding-left b2s-post-item-details-release-area-div-duration-time" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedcount . '" style="display:none;"><select name="b2s[' . $networkAuthId . '][duration_time][' . $schedcount . ']" class="form-control b2s-select b2s-post-item-details-release-input-times" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" style="display:none;" disabled="disabled">';
|
771 |
$defaultTime = isset($this->defaultScheduleTime[$networkId][$schedcount]['time']) ? $this->defaultScheduleTime[$networkId][$schedcount]['time'] : 1;
|
772 |
for ($i = 1; $i <= $this->maxTimeSelect; $i++) {
|
773 |
+
$timeName = ""; //($i == 1) ? __('Time', 'blog2social') : __('Times', 'blog2social');
|
774 |
$shipping .= '<option value="' . $i . '" ' . ($defaultTime == $i ? 'selected="selected"' : '') . '>' . $i . ' ' . $timeName . '</option>';
|
775 |
}
|
776 |
$shipping .= '</select></div>';
|
806 |
$shipping .= '</div>';
|
807 |
$shipping .= '<div class="col-md-2 del-padding-left">';
|
808 |
$shipping .= ( $schedcount >= 1) ? '<button class="btn btn-link b2s-post-item-details-release-input-hide" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">-' . __('delete', 'blog2social') . '</button>' : '';
|
809 |
+
$shipping .= $schedcount < $maxSchedCount - 1 ? '<button class="btn btn-link b2s-post-item-details-release-input-add" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" data-network-count="1" style="display:none;">+' . __('add another post', 'blog2social') . '</button>' : '';
|
810 |
$shipping .= '</div>';
|
811 |
|
812 |
//since 4.8.0 customize content
|
819 |
}
|
820 |
|
821 |
$edit = '<div class="pull-right hidden-xs b2s-post-item-info-area">';
|
822 |
+
$edit .= '<button class="btn btn-xs btn-link b2s-post-ship-item-copy-original-text" data-network-id="'.$networkId.'" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" >' . __('Copy from original', 'blog2social') . '</button> | ';
|
823 |
if (in_array($networkId, $this->getText)) {
|
824 |
$edit .= '<button class="btn btn-xs btn-link b2s-post-ship-item-full-text" data-network-count="' . $schedcount . '" data-network-auth-id="' . $networkAuthId . '" >' . __('Insert full-text', 'blog2social') . '</button> | ';
|
825 |
}
|
includes/B2S/Ship/Portale.php
CHANGED
@@ -25,14 +25,14 @@ class B2S_Ship_Portale {
|
|
25 |
|
26 |
$b2sAuthUrl = $this->authurl . '&portal_id=' . $portal->id . '&transfer=' . (in_array($portal->id, $this->oAuthPortal) ? 'oauth' : 'form' ) . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
27 |
if (in_array($portal->id, $this->allowGroup)) {
|
28 |
-
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 1 && $portal->id != 8)) ? ('<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . __('Group', 'blog2social').'</button>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled" data-type="auth-network" data-title="' . __('You want to connect a social media group?', 'blog2social') . '" data-toggle="modal" data-target="#'.((B2S_PLUGIN_USER_VERSION ==0) ? 'b2sPreFeatureModal' :'b2sProFeatureModal').'">+ ' . __('Group', 'blog2social').' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a></button>';
|
29 |
}
|
30 |
if (in_array($portal->id, $this->allowPage)) {
|
31 |
-
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $portal->id == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($portal->id == 1 || $portal->id == 10))) ? ('<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . __('Page', 'blog2social') . '</button>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled" data-title="' . __('You want to connect a network page?', 'blog2social') . '" data-type="auth-network" data-toggle="modal" data-target="#'.((B2S_PLUGIN_USER_VERSION ==0) ? 'b2sPreFeatureModal' :'b2sProFeatureModal').'">+ ' . __('Page', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a></button>';
|
32 |
-
|
|
|
|
|
33 |
}
|
34 |
-
$html .= in_array($portal->id, $this->allowProfil) ? ('<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profile\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . __('Profile', 'blog2social') . '</a>') : '';
|
35 |
-
|
36 |
$html .= '</li>';
|
37 |
}
|
38 |
$html .= '</ul>';
|
25 |
|
26 |
$b2sAuthUrl = $this->authurl . '&portal_id=' . $portal->id . '&transfer=' . (in_array($portal->id, $this->oAuthPortal) ? 'oauth' : 'form' ) . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
27 |
if (in_array($portal->id, $this->allowGroup)) {
|
28 |
+
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 1 && $portal->id != 8)) ? ('<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . __('Group', 'blog2social') . '</button>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled" data-type="auth-network" data-title="' . __('You want to connect a social media group?', 'blog2social') . '" data-toggle="modal" data-target="#' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModal' : 'b2sProFeatureModal') . '">+ ' . __('Group', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a></button>';
|
29 |
}
|
30 |
if (in_array($portal->id, $this->allowPage)) {
|
31 |
+
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $portal->id == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($portal->id == 1 || $portal->id == 10))) ? ('<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . __('Page', 'blog2social') . '</button>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled" data-title="' . __('You want to connect a network page?', 'blog2social') . '" data-type="auth-network" data-toggle="modal" data-target="#' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModal' : 'b2sProFeatureModal') . '">+ ' . __('Page', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a></button>';
|
32 |
+
}
|
33 |
+
if (in_array($portal->id, $this->allowProfil)) {
|
34 |
+
$html .= ($portal->id != 18 || (B2S_PLUGIN_USER_VERSION >= 2 && $portal->id == 18)) ? ('<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profile\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . __('Profile', 'blog2social') . '</a>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled" data-title="' . __('You want to connect a network profile?', 'blog2social') . '" data-type="auth-network" data-toggle="modal" data-target="#b2sProFeatureModal">+ ' . __('Profile', 'blog2social') . ' <span class="label label-success">' . __("PREMIUM", "blog2social") . '</a></button>';
|
35 |
}
|
|
|
|
|
36 |
$html .= '</li>';
|
37 |
}
|
38 |
$html .= '</ul>';
|
includes/Loader.php
CHANGED
@@ -27,6 +27,19 @@ class B2S_Loader {
|
|
27 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Api/Post.php');
|
28 |
require_once(B2S_PLUGIN_DIR . 'includes/Util.php');
|
29 |
require_once(B2S_PLUGIN_DIR . 'includes/Tools.php');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
30 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
31 |
add_action('wp_logout', array($this, 'releaseLocks'));
|
32 |
add_action('transition_post_status', array($this, 'b2s_auto_post_import'), 9999, 3); //for Auto-Posting imported + manuell
|
@@ -46,24 +59,13 @@ class B2S_Loader {
|
|
46 |
require_once(B2S_PLUGIN_DIR . 'includes/Util.php');
|
47 |
require_once(B2S_PLUGIN_DIR . 'includes/Tools.php');
|
48 |
|
49 |
-
define('B2S_PLUGIN_POSTPERPAGE', '15');
|
50 |
-
define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'Smart', 2 => 'Pro', 3 => 'Business', 4 => 'Premium')));
|
51 |
-
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')));
|
52 |
-
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))));
|
53 |
-
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)))));
|
54 |
-
define('B2S_PLUGIN_NETWORK_ALLOW_PROFILE', serialize(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)));
|
55 |
-
define('B2S_PLUGIN_NETWORK_ALLOW_PAGE', serialize(array(1, 3, 8, 10, 17)));
|
56 |
-
define('B2S_PLUGIN_NETWORK_ALLOW_GROUP', serialize(array(1, 8, 10, 11, 17)));
|
57 |
-
define('B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP', serialize(array(6 => array('TYPE' => array(0), 'TITLE' => __('Modify pin board', 'blog2social')), 8 => array('TYPE' => array(2), 'TITLE' => __('Modify forum', 'blog2social')), 15 => array('TYPE' => array(0), 'TITLE' => __('Modify subreddit', 'blog2social')))));
|
58 |
-
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
59 |
-
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17)));
|
60 |
define('B2S_PLUGIN_BLOG_USER_ID', get_current_user_id());
|
61 |
define('B2S_PLUGIN_ADMIN', current_user_can('edit_others_posts'));
|
62 |
|
63 |
$this->blogUserData = get_userdata(B2S_PLUGIN_BLOG_USER_ID);
|
64 |
|
65 |
-
//deactivated since 4.2.0
|
66 |
-
//add_action('plugins_loaded', array($this, 'update_db_check'));
|
67 |
|
68 |
$this->update_db_check();
|
69 |
|
@@ -136,10 +138,8 @@ class B2S_Loader {
|
|
136 |
}
|
137 |
}
|
138 |
}
|
139 |
-
|
140 |
if ($filter && isset($autoPostData['network_auth_id']) && !empty($autoPostData['network_auth_id']) && is_array($autoPostData['network_auth_id'])) {
|
141 |
-
|
142 |
-
//LIMIT
|
143 |
$limit = false;
|
144 |
$ship = false;
|
145 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
@@ -152,7 +152,9 @@ class B2S_Loader {
|
|
152 |
$conData = array();
|
153 |
if ($autoPostCon !== false && is_array($autoPostCon) && isset($autoPostCon['count']) && isset($autoPostCon['last_call_date'])) {
|
154 |
$con = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
|
155 |
-
|
|
|
|
|
156 |
$limit = true;
|
157 |
$count = ($current_user_date != $autoPostCon['last_call_date']) ? 1 : $autoPostCon['count'] + 1;
|
158 |
$conData = array('count' => $count, 'last_call_date' => $current_user_date);
|
@@ -1243,8 +1245,10 @@ class B2S_Loader {
|
|
1243 |
|
1244 |
//Activate Social Meta Tags
|
1245 |
$options = new B2S_Options(0, 'B2S_PLUGIN_GENERAL_OPTIONS');
|
1246 |
-
$options->
|
1247 |
-
|
|
|
|
|
1248 |
}
|
1249 |
|
1250 |
public function deactivatePlugin() {
|
27 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Api/Post.php');
|
28 |
require_once(B2S_PLUGIN_DIR . 'includes/Util.php');
|
29 |
require_once(B2S_PLUGIN_DIR . 'includes/Tools.php');
|
30 |
+
|
31 |
+
define('B2S_PLUGIN_POSTPERPAGE', '15');
|
32 |
+
define('B2S_PLUGIN_VERSION_TYPE', serialize(array(0 => 'Free', 1 => 'Smart', 2 => 'Pro', 3 => 'Business', 4 => 'Premium')));
|
33 |
+
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')));
|
34 |
+
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))));
|
35 |
+
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)))));
|
36 |
+
define('B2S_PLUGIN_NETWORK_ALLOW_PROFILE', serialize(array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18)));
|
37 |
+
define('B2S_PLUGIN_NETWORK_ALLOW_PAGE', serialize(array(1, 3, 8, 10, 17)));
|
38 |
+
define('B2S_PLUGIN_NETWORK_ALLOW_GROUP', serialize(array(1, 8, 10, 11, 17)));
|
39 |
+
define('B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP', serialize(array(6 => array('TYPE' => array(0), 'TITLE' => __('Modify pin board', 'blog2social')), 8 => array('TYPE' => array(2), 'TITLE' => __('Modify forum', 'blog2social')), 15 => array('TYPE' => array(0), 'TITLE' => __('Modify subreddit', 'blog2social')))));
|
40 |
+
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
41 |
+
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18)));
|
42 |
+
|
43 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
44 |
add_action('wp_logout', array($this, 'releaseLocks'));
|
45 |
add_action('transition_post_status', array($this, 'b2s_auto_post_import'), 9999, 3); //for Auto-Posting imported + manuell
|
59 |
require_once(B2S_PLUGIN_DIR . 'includes/Util.php');
|
60 |
require_once(B2S_PLUGIN_DIR . 'includes/Tools.php');
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
define('B2S_PLUGIN_BLOG_USER_ID', get_current_user_id());
|
63 |
define('B2S_PLUGIN_ADMIN', current_user_can('edit_others_posts'));
|
64 |
|
65 |
$this->blogUserData = get_userdata(B2S_PLUGIN_BLOG_USER_ID);
|
66 |
|
67 |
+
//deactivated since 4.2.0
|
68 |
+
//add_action('plugins_loaded', array($this, 'update_db_check'));
|
69 |
|
70 |
$this->update_db_check();
|
71 |
|
138 |
}
|
139 |
}
|
140 |
}
|
|
|
141 |
if ($filter && isset($autoPostData['network_auth_id']) && !empty($autoPostData['network_auth_id']) && is_array($autoPostData['network_auth_id'])) {
|
142 |
+
//LIMIT
|
|
|
143 |
$limit = false;
|
144 |
$ship = false;
|
145 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
152 |
$conData = array();
|
153 |
if ($autoPostCon !== false && is_array($autoPostCon) && isset($autoPostCon['count']) && isset($autoPostCon['last_call_date'])) {
|
154 |
$con = unserialize(B2S_PLUGIN_AUTO_POST_LIMIT);
|
155 |
+
$userVersion = (int) $tokenInfo['B2S_PLUGIN_USER_VERSION'];
|
156 |
+
$limitCount = (isset($con[$userVersion]) && !empty($con[$userVersion])) ? $con[$userVersion] : $con[1]; //25 default
|
157 |
+
if (($autoPostCon['count'] < $limitCount) || ($current_user_date != $autoPostCon['last_call_date'])) {
|
158 |
$limit = true;
|
159 |
$count = ($current_user_date != $autoPostCon['last_call_date']) ? 1 : $autoPostCon['count'] + 1;
|
160 |
$conData = array('count' => $count, 'last_call_date' => $current_user_date);
|
1245 |
|
1246 |
//Activate Social Meta Tags
|
1247 |
$options = new B2S_Options(0, 'B2S_PLUGIN_GENERAL_OPTIONS');
|
1248 |
+
if ($options->_getOption('og_active') === false || $options->_getOption('card_active') === false) {
|
1249 |
+
$options->_setOption('og_active', 1);
|
1250 |
+
$options->_setOption('card_active', 1);
|
1251 |
+
}
|
1252 |
}
|
1253 |
|
1254 |
public function deactivatePlugin() {
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"Stable (latest release)\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
"POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
|
7 |
-
"PO-Revision-Date:
|
8 |
"Last-Translator: Sven Bürger <s.buerger@adenion.de>\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: German\n"
|
@@ -23,34 +23,6 @@ msgstr ""
|
|
23 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
"X-Loco-Target-Locale: de_DE"
|
25 |
|
26 |
-
#: ../../plugins/blog2social-v-4-8/includes/B2S/Ship/Item.php:634
|
27 |
-
msgid "Enable Retweets for all Tweets with the selected profile"
|
28 |
-
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
29 |
-
|
30 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/html/footer.phtml:244
|
31 |
-
msgid ""
|
32 |
-
"If Retweets are enabled, every Original-Tweet you schedule in this step will "
|
33 |
-
"be retweeted by the selected Twitter accounts. If, for example, 3 Original-"
|
34 |
-
"Tweets are scheduled, every single Tweet will trigger a Retweet for the "
|
35 |
-
"selected Twitter accounts."
|
36 |
-
msgstr ""
|
37 |
-
"Wenn Retweets aktiviert sind, wird jeder Original-Tweet, den Sie in diesem "
|
38 |
-
"Schritt planen, von dem/den ausgewählten Twitter-Accounts retweetet. Wenn z."
|
39 |
-
"B. 3 Original-Tweets geplant sind, löst jeder einzelne Tweet einen Retweet "
|
40 |
-
"für den/die ausgewählten Twitter-Accounts aus."
|
41 |
-
|
42 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/html/header.phtml:408
|
43 |
-
msgid "We updated our Privacy Policy"
|
44 |
-
msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
45 |
-
|
46 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/html/header.phtml:421
|
47 |
-
msgid "Blog2Social is a service of Adenion GmbH"
|
48 |
-
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
49 |
-
|
50 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/html/header.phtml:422
|
51 |
-
msgid "I agree to the Adenion Privacy Policy"
|
52 |
-
msgstr "Ich stimme den Datenschutzrichtlinien zu"
|
53 |
-
|
54 |
#. Name of the plugin
|
55 |
msgid "Blog2Social: Social Media Auto Post & Scheduler"
|
56 |
msgstr "Blog2Social: Social Media Auto Post & Scheduler"
|
@@ -76,345 +48,355 @@ msgstr ""
|
|
76 |
msgid "Blog2Social, Adenion"
|
77 |
msgstr "Blog2Social, Adenion"
|
78 |
|
79 |
-
#: ../../plugins/blog2social-v-4-
|
80 |
msgid "show all"
|
81 |
msgstr "alle anzeigen"
|
82 |
|
83 |
-
#: ../../plugins/blog2social-v-4-
|
84 |
-
#: /plugins/blog2social-v-4-
|
85 |
msgid "Default"
|
86 |
msgstr "Standard"
|
87 |
|
88 |
-
#: ../../plugins/blog2social-v-4-
|
89 |
msgid "Show all"
|
90 |
msgstr "alle anzeigen"
|
91 |
|
92 |
-
#: ../../plugins/blog2social-v-4-
|
93 |
-
#: /plugins/blog2social-v-4-
|
94 |
msgid "My profile"
|
95 |
msgstr "Mein Profil"
|
96 |
|
97 |
-
#: ../../plugins/blog2social-v-4-
|
98 |
msgid "Your profiles:"
|
99 |
msgstr "weitere Profile:"
|
100 |
|
101 |
-
#: ../../plugins/blog2social-v-4-
|
102 |
-
#: /plugins/blog2social-v-4-
|
103 |
msgid "Connections"
|
104 |
msgstr "Verbindungen"
|
105 |
|
106 |
-
#: ../../plugins/blog2social-v-4-
|
107 |
-
#: /plugins/blog2social-v-4-
|
108 |
-
#: /plugins/blog2social-v-4-
|
109 |
-
#: /plugins/blog2social-v-4-
|
110 |
-
#: /plugins/blog2social-v-4-
|
111 |
-
#: /plugins/blog2social-v-4-
|
112 |
-
#: /plugins/blog2social-v-4-
|
113 |
-
#: /plugins/blog2social-v-4-
|
114 |
-
#: /plugins/blog2social-v-4-
|
115 |
-
#: /plugins/blog2social-v-4-
|
|
|
|
|
116 |
msgid "Profile"
|
117 |
msgstr "Profil"
|
118 |
|
119 |
-
#: ../../plugins/blog2social-v-4-
|
120 |
-
#: /plugins/blog2social-v-4-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
#:
|
125 |
-
#: /plugins/blog2social-v-4-
|
126 |
-
#: /plugins/blog2social-v-4-
|
127 |
-
#: /plugins/blog2social-v-4-
|
128 |
-
#: /plugins/blog2social-v-4-
|
129 |
-
#: /plugins/blog2social-v-4-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid "Page"
|
131 |
msgstr "Seite"
|
132 |
|
133 |
-
#: ../../plugins/blog2social-v-4-
|
134 |
-
#: /plugins/blog2social-v-4-
|
135 |
msgid "You want to connect a network page?"
|
136 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
137 |
|
138 |
-
#: ../../plugins/blog2social-v-4-
|
139 |
-
#: /plugins/blog2social-v-4-
|
140 |
-
#: /plugins/blog2social-v-4-
|
141 |
-
#: /plugins/blog2social-v-4-
|
142 |
-
#: /plugins/blog2social-v-4-
|
143 |
-
#: /plugins/blog2social-v-4-
|
144 |
-
#: /plugins/blog2social-v-4-
|
145 |
-
#: /plugins/blog2social-v-4-
|
146 |
-
#: /plugins/blog2social-v-4-
|
147 |
-
#: /plugins/blog2social-v-4-
|
148 |
-
#: /plugins/blog2social-v-4-8/includes/Loader.php:641 ../../plugins/blog2social-v-
|
149 |
-
#: 4-8/includes/Loader.php:708 ../../plugins/blog2social-v-4-8/views/b2s/network.
|
150 |
-
#: php:35 ../../plugins/blog2social-v-4-8/views/b2s/partials/post-edit-modal.php:
|
151 |
-
#: 9 ../../plugins/blog2social-v-4-8/views/b2s/settings.php:67 ../..
|
152 |
-
#: /plugins/blog2social-v-4-8/views/b2s/settings.php:89 ../../plugins/blog2social-
|
153 |
-
#: v-4-8/views/b2s/ship.php:17 ../../plugins/blog2social-v-4-
|
154 |
-
#: 8/views/b2s/widgets/posts.php:31 ../../plugins/blog2social-v-4-
|
155 |
-
#: 8/views/b2s/html/post.navbar.phtml:8 ../../plugins/blog2social-v-4-
|
156 |
-
#: 8/views/b2s/html/post.navbar.phtml:12
|
157 |
-
msgid "PREMIUM"
|
158 |
-
msgstr "PREMIUM"
|
159 |
-
|
160 |
-
#: ../../plugins/blog2social-v-4-8/includes/B2S/Network/Item.php:115 ../..
|
161 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Network/Item.php:115 ../..
|
162 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Network/Item.php:211 ../..
|
163 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Network/Item.php:213 ../..
|
164 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Settings/Item.php:453 ../..
|
165 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Settings/Item.php:475 ../..
|
166 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Settings/Item.php:531 ../..
|
167 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Ship/Portale.php:28 ../..
|
168 |
-
#: /plugins/blog2social-v-4-8/includes/B2S/Ship/Portale.php:28 ../..
|
169 |
-
#: /plugins/blog2social-v-4-8/includes/Loader.php:563
|
170 |
msgid "Group"
|
171 |
msgstr "Gruppe"
|
172 |
|
173 |
-
#: ../../plugins/blog2social-v-4-
|
174 |
-
#: /plugins/blog2social-v-4-
|
175 |
msgid "You want to connect a social media group?"
|
176 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
177 |
|
178 |
-
#: ../../plugins/blog2social-v-4-
|
179 |
-
#: /plugins/blog2social-v-4-
|
180 |
msgid "Authorization is interrupted since"
|
181 |
msgstr "Autorisierung ist unterbrochen seit"
|
182 |
|
183 |
-
#: ../../plugins/blog2social-v-4-
|
184 |
-
#: /plugins/blog2social-v-4-
|
185 |
-
#: /plugins/blog2social-v-4-
|
186 |
msgid "To reactivate this social media connection,"
|
187 |
msgstr "Um diese Social Media Verbindung zu reaktivieren,"
|
188 |
|
189 |
-
#: ../../plugins/blog2social-v-4-
|
190 |
-
#: /plugins/blog2social-v-4-
|
191 |
-
#: /plugins/blog2social-v-4-
|
192 |
-
#: /plugins/blog2social-v-4-
|
193 |
msgid "please upgrade"
|
194 |
msgstr "Bitte upgraden"
|
195 |
|
196 |
-
#: ../../plugins/blog2social-v-4-
|
197 |
msgid "Authorization is interrupted since"
|
198 |
msgstr "Autorisierung ist unterbrochen seit"
|
199 |
|
200 |
-
#: ../../plugins/blog2social-v-4-
|
201 |
msgid "all authors"
|
202 |
msgstr "alle Autoren"
|
203 |
|
204 |
-
#: ../../plugins/blog2social-v-4-
|
205 |
-
#: /plugins/blog2social-v-4-
|
206 |
-
#: /plugins/blog2social-v-4-
|
207 |
-
#: /plugins/blog2social-v-4-
|
208 |
-
#: /plugins/blog2social-v-4-
|
209 |
-
#: /plugins/blog2social-v-4-
|
210 |
msgid "published"
|
211 |
msgstr "veröffentlicht"
|
212 |
|
213 |
-
#: ../../plugins/blog2social-v-4-
|
214 |
-
#: /plugins/blog2social-v-4-
|
215 |
-
#: /plugins/blog2social-v-4-
|
216 |
-
#: /plugins/blog2social-v-4-
|
217 |
-
#: /plugins/blog2social-v-4-
|
218 |
msgid "scheduled"
|
219 |
msgstr "geplant"
|
220 |
|
221 |
-
#: ../../plugins/blog2social-v-4-
|
222 |
-
#: /plugins/blog2social-v-4-
|
223 |
-
#: /plugins/blog2social-v-4-
|
224 |
-
#: /plugins/blog2social-v-4-
|
225 |
msgid "draft"
|
226 |
msgstr "Entwurf"
|
227 |
|
228 |
-
#: ../../plugins/blog2social-v-4-
|
229 |
msgid "all statuses"
|
230 |
msgstr "kein Status"
|
231 |
|
232 |
-
#: ../../plugins/blog2social-v-4-
|
233 |
-
#: /plugins/blog2social-v-4-
|
234 |
msgid "newest first"
|
235 |
msgstr "neuste zuerst"
|
236 |
|
237 |
-
#: ../../plugins/blog2social-v-4-
|
238 |
-
#: /plugins/blog2social-v-4-
|
239 |
msgid "oldest first"
|
240 |
msgstr "älteste zuerst"
|
241 |
|
242 |
-
#: ../../plugins/blog2social-v-4-
|
243 |
msgid "all categories & tags"
|
244 |
msgstr "alle Kategorien & Schlagwörter"
|
245 |
|
246 |
-
#: ../../plugins/blog2social-v-4-
|
247 |
-
#: /plugins/blog2social-v-4-
|
248 |
msgid "all post types"
|
249 |
msgstr "alle Typen"
|
250 |
|
251 |
-
#: ../../plugins/blog2social-v-4-
|
252 |
-
#: /plugins/blog2social-v-4-
|
253 |
msgid "Search Title"
|
254 |
msgstr "Suche nach Titel"
|
255 |
|
256 |
-
#: ../../plugins/blog2social-v-4-
|
257 |
-
#: /plugins/blog2social-v-4-
|
258 |
msgid "sort"
|
259 |
msgstr "sortieren"
|
260 |
|
261 |
-
#: ../../plugins/blog2social-v-4-
|
262 |
-
#: /plugins/blog2social-v-4-
|
263 |
msgid "reset"
|
264 |
msgstr "zurücksetzen"
|
265 |
|
266 |
-
#: ../../plugins/blog2social-v-4-
|
267 |
msgid "selected date"
|
268 |
msgstr "ausgewähltes Datum"
|
269 |
|
270 |
-
#: ../../plugins/blog2social-v-4-
|
271 |
msgid "scheduled post(s)"
|
272 |
msgstr "geplante Beiträge"
|
273 |
|
274 |
-
#: ../../plugins/blog2social-v-4-
|
275 |
msgid "You have no posts published or scheduled."
|
276 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
277 |
|
278 |
-
#: ../../plugins/blog2social-v-4-
|
279 |
msgid "last shared on social media"
|
280 |
msgstr "zuletzt auf Social Media geteilt"
|
281 |
|
282 |
-
#: ../../plugins/blog2social-v-4-
|
283 |
msgid "Share on Social Media"
|
284 |
msgstr "auf Social Media teilen"
|
285 |
|
286 |
-
#: ../../plugins/blog2social-v-4-
|
287 |
-
#: /plugins/blog2social-v-4-
|
288 |
msgid "Author"
|
289 |
msgstr "Autor"
|
290 |
|
291 |
-
#: ../../plugins/blog2social-v-4-
|
292 |
-
#: /plugins/blog2social-v-4-
|
293 |
msgid "on blog"
|
294 |
msgstr "auf dem Blog"
|
295 |
|
296 |
-
#: ../../plugins/blog2social-v-4-
|
297 |
-
#: /plugins/blog2social-v-4-
|
298 |
-
#: 4-
|
299 |
msgid "Re-share this post"
|
300 |
msgstr "Diesen Beitrag nochmal teilen"
|
301 |
|
302 |
-
#: ../../plugins/blog2social-v-4-
|
303 |
-
#: /plugins/blog2social-v-4-
|
304 |
msgid "Details"
|
305 |
msgstr "Details"
|
306 |
|
307 |
-
#: ../../plugins/blog2social-v-4-
|
308 |
msgid "shared social media posts"
|
309 |
msgstr "geteilte Beiträge"
|
310 |
|
311 |
-
#: ../../plugins/blog2social-v-4-
|
312 |
msgid "latest share by"
|
313 |
msgstr "zuletzt geteilt von"
|
314 |
|
315 |
-
#: ../../plugins/blog2social-v-4-
|
316 |
-
#: /plugins/blog2social-v-4-
|
317 |
msgid "scheduled social media posts"
|
318 |
msgstr "geplante Beiträge"
|
319 |
|
320 |
-
#: ../../plugins/blog2social-v-4-
|
321 |
msgid "next share by"
|
322 |
msgstr "als nächstes geteilt von"
|
323 |
|
324 |
-
#: ../../plugins/blog2social-v-4-
|
325 |
-
#: /plugins/blog2social-v-4-
|
326 |
-
#: v-4-
|
327 |
msgid "Auto-Posting"
|
328 |
msgstr "Auto-Posting"
|
329 |
|
330 |
-
#: ../../plugins/blog2social-v-4-
|
331 |
-
#: /plugins/blog2social-v-4-
|
332 |
-
#: /plugins/blog2social-v-4-
|
333 |
msgid "Retweet"
|
334 |
msgstr "Retweet"
|
335 |
|
336 |
-
#: ../../plugins/blog2social-v-4-
|
337 |
-
#: /plugins/blog2social-v-4-
|
338 |
msgid "select all"
|
339 |
msgstr "alle auswählen"
|
340 |
|
341 |
-
#: ../../plugins/blog2social-v-4-
|
342 |
msgid "show"
|
343 |
msgstr "ansehen"
|
344 |
|
345 |
-
#: ../../plugins/blog2social-v-4-
|
346 |
-
#: /plugins/blog2social-v-4-
|
347 |
msgid "Please see"
|
348 |
msgstr "Siehe"
|
349 |
|
350 |
-
#: ../../plugins/blog2social-v-4-
|
351 |
-
#: /plugins/blog2social-v-4-
|
352 |
msgid "FAQ"
|
353 |
msgstr "FAQ"
|
354 |
|
355 |
-
#: ../../plugins/blog2social-v-4-
|
356 |
msgid "sharing in progress by"
|
357 |
msgstr "wir geteilt"
|
358 |
|
359 |
-
#: ../../plugins/blog2social-v-4-
|
360 |
msgid "shared by"
|
361 |
msgstr "geteilt von"
|
362 |
|
363 |
-
#: ../../plugins/blog2social-v-4-
|
364 |
-
#: /plugins/blog2social-v-4-
|
365 |
msgid "You want to delete a publish post entry?"
|
366 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
367 |
|
368 |
-
#: ../../plugins/blog2social-v-4-
|
369 |
-
#: /plugins/blog2social-v-4-
|
370 |
msgid "delete from reporting"
|
371 |
msgstr "aus Reporting löschen"
|
372 |
|
373 |
-
#: ../../plugins/blog2social-v-4-
|
374 |
msgid "re-share"
|
375 |
msgstr "erneut teilen"
|
376 |
|
377 |
-
#: ../../plugins/blog2social-v-4-
|
378 |
msgid "scheduled by"
|
379 |
msgstr "geplant von "
|
380 |
|
381 |
-
#: ../../plugins/blog2social-v-4-
|
382 |
msgid "You want to edit your scheduled post?"
|
383 |
msgstr "Möchtest Du Deinen geplanten Beitrag bearbeiten?"
|
384 |
|
385 |
-
#: ../../plugins/blog2social-v-4-
|
386 |
msgid "edit"
|
387 |
msgstr "bearbeiten"
|
388 |
|
389 |
-
#: ../../plugins/blog2social-v-4-
|
390 |
-
#: /plugins/blog2social-v-4-
|
391 |
-
#: /plugins/blog2social-v-4-
|
|
|
392 |
msgid "delete"
|
393 |
msgstr "löschen"
|
394 |
|
395 |
-
#: ../../plugins/blog2social-v-4-
|
396 |
msgid "delete scheduling"
|
397 |
msgstr "Planung löschen"
|
398 |
|
399 |
-
#: ../../plugins/blog2social-v-4-
|
400 |
-
#: /plugins/blog2social-v-4-
|
401 |
msgid "Please see FAQ"
|
402 |
msgstr "Siehe FAQ"
|
403 |
|
404 |
-
#: ../../plugins/blog2social-v-4-
|
405 |
msgid "last auto-post:"
|
406 |
msgstr "letzter Auto-Post:"
|
407 |
|
408 |
-
#: ../../plugins/blog2social-v-4-
|
409 |
-
#: /plugins/blog2social-v-4-
|
410 |
-
#: 4-
|
411 |
msgid "The connection to the server failed. Try again!"
|
412 |
msgstr ""
|
413 |
"Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
|
414 |
"erneut!"
|
415 |
|
416 |
-
#: ../../plugins/blog2social-v-4-
|
417 |
-
#: /plugins/blog2social-v-4-
|
418 |
msgid ""
|
419 |
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
420 |
"heartbeats for using Blog2Social!"
|
@@ -422,8 +404,8 @@ msgstr ""
|
|
422 |
"WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
|
423 |
"Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
|
424 |
|
425 |
-
#: ../../plugins/blog2social-v-4-
|
426 |
-
#: /plugins/blog2social-v-4-
|
427 |
msgid ""
|
428 |
"Your post is still on draft or pending status. Please make sure that your "
|
429 |
"post is published or scheduled to be published on this blog. You can then "
|
@@ -433,8 +415,8 @@ msgstr ""
|
|
433 |
"geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
|
434 |
"planen."
|
435 |
|
436 |
-
#: ../../plugins/blog2social-v-4-
|
437 |
-
#: /plugins/blog2social-v-4-
|
438 |
msgid ""
|
439 |
"There are no authorizations for your selected profile. Please, authorize "
|
440 |
"with a social network or select a other profile."
|
@@ -442,12 +424,12 @@ msgstr ""
|
|
442 |
"Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
|
443 |
"mit einem Netzwerk oder wähle ein anderes Profil aus. "
|
444 |
|
445 |
-
#: ../../plugins/blog2social-v-4-
|
446 |
-
#: /plugins/blog2social-v-4-
|
447 |
msgid "Network settings"
|
448 |
msgstr "Netzwerkeinstellungen"
|
449 |
|
450 |
-
#: ../../plugins/blog2social-v-4-
|
451 |
msgid ""
|
452 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
453 |
"Networks do not allow postings from local installations."
|
@@ -455,63 +437,63 @@ msgstr ""
|
|
455 |
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
456 |
"Fragen wende Dich bitte an unseren Support."
|
457 |
|
458 |
-
#: ../../plugins/blog2social-v-4-
|
459 |
msgid "Custom Sharing & Scheduling"
|
460 |
msgstr "Individuelles Teilen und Planen"
|
461 |
|
462 |
-
#: ../../plugins/blog2social-v-4-
|
463 |
-
#: /plugins/blog2social-v-4-
|
464 |
-
#: /plugins/blog2social-v-4-
|
465 |
-
#: /plugins/blog2social-v-4-
|
466 |
-
#: /plugins/blog2social-v-4-
|
467 |
-
#: /plugins/blog2social-v-4-
|
468 |
-
#: /plugins/blog2social-v-4-
|
469 |
-
#: /plugins/blog2social-v-4-
|
470 |
-
#: /plugins/blog2social-v-4-
|
471 |
-
#: /plugins/blog2social-v-4-
|
472 |
-
#: /plugins/blog2social-v-4-
|
473 |
-
#: /plugins/blog2social-v-4-
|
474 |
-
#: /plugins/blog2social-v-4-
|
475 |
-
#: /plugins/blog2social-v-4-
|
476 |
-
#: /plugins/blog2social-v-4-
|
477 |
-
#: v-4-
|
478 |
-
#:
|
479 |
-
#: 55 ../../plugins/blog2social-v-4-
|
480 |
-
#: /plugins/blog2social-v-4-
|
481 |
msgid "Info"
|
482 |
msgstr "Info"
|
483 |
|
484 |
-
#: ../../plugins/blog2social-v-4-
|
485 |
msgid "Customize & Schedule Social Media Posts"
|
486 |
msgstr "Social Media Posts anpassen & planen"
|
487 |
|
488 |
-
#: ../../plugins/blog2social-v-4-
|
489 |
-
#: /plugins/blog2social-v-4-
|
490 |
msgid "Social Media Auto-Posting"
|
491 |
msgstr "Social Media Auto-Posting"
|
492 |
|
493 |
-
#: ../../plugins/blog2social-v-4-
|
494 |
msgid "enable Auto-Posting"
|
495 |
msgstr "Auto-Posting aktivieren"
|
496 |
|
497 |
-
#: ../../plugins/blog2social-v-4-
|
498 |
-
#: /plugins/blog2social-v-4-
|
499 |
-
#: v-4-
|
500 |
-
#: calendar.php:50 ../../plugins/blog2social-v-4-
|
501 |
-
#:
|
502 |
-
#: /plugins/blog2social-v-4-
|
503 |
-
#:
|
504 |
-
#: sched.php:52 ../../plugins/blog2social-v-4-
|
505 |
-
#: /plugins/blog2social-v-4-
|
506 |
-
#: 4-
|
507 |
msgid "Loading..."
|
508 |
msgstr "Lade Daten..."
|
509 |
|
510 |
-
#: ../../plugins/blog2social-v-4-
|
511 |
msgid "Blog2Social: Customize & Schedule Social Media Posts"
|
512 |
msgstr "Blog2Social : Beiträge anpassen & planen"
|
513 |
|
514 |
-
#: ../../plugins/blog2social-v-4-
|
515 |
msgid ""
|
516 |
"Customize and schedule your social media posts on the one page preview for "
|
517 |
"all your selected networks: tailor your posts with individual comments, "
|
@@ -525,13 +507,13 @@ msgstr ""
|
|
525 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
526 |
"Community zu erzielen"
|
527 |
|
528 |
-
#: ../../plugins/blog2social-v-4-
|
529 |
-
#: /plugins/blog2social-v-4-
|
530 |
msgid "Blog2Social: Social Media Auto-Posting"
|
531 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
532 |
|
533 |
-
#: ../../plugins/blog2social-v-4-
|
534 |
-
#: /plugins/blog2social-v-4-
|
535 |
msgid ""
|
536 |
"You have 2 general options to define the date and time to share your blog "
|
537 |
"posts on social media with the Auto-Poster:"
|
@@ -539,13 +521,13 @@ msgstr ""
|
|
539 |
"Dir stehen grundsätzlich 2 Möglichkeiten zur Verfügung, per Auto-Posting "
|
540 |
"Deine Blogbeiträge auf Social Media zu teilen: "
|
541 |
|
542 |
-
#: ../../plugins/blog2social-v-4-
|
543 |
-
#: /plugins/blog2social-v-4-
|
544 |
msgid "1. Immediately after publishing your blog post"
|
545 |
msgstr "Sofort nach Veröffentlichung Deines Blogbeitrags "
|
546 |
|
547 |
-
#: ../../plugins/blog2social-v-4-
|
548 |
-
#: /plugins/blog2social-v-4-
|
549 |
msgid ""
|
550 |
"Published blog posts: If you publish your blog post with click on publish in "
|
551 |
"your WordPress post editor, Blog2Social will automatically share your social "
|
@@ -555,8 +537,8 @@ msgstr ""
|
|
555 |
"auf “veröffentlichen” im Beitrags-Editor Deines Blogs sofort veröffentlichst,"
|
556 |
" teilt Blog2Social Deinen Blogbeitrag unmittelbar auf Social Media."
|
557 |
|
558 |
-
#: ../../plugins/blog2social-v-4-
|
559 |
-
#: /plugins/blog2social-v-4-
|
560 |
msgid ""
|
561 |
"Scheduled blog posts: If you schedule your blog post with click on schedule "
|
562 |
"in your WordPress post editor, Blog2Social will share your social media post "
|
@@ -567,8 +549,8 @@ msgstr ""
|
|
567 |
"Deines Blogs klickst, teilt Blog2Social Deinen Blogbeitrag direkt nach der "
|
568 |
"Veröffentlichung auf Social Media. "
|
569 |
|
570 |
-
#: ../../plugins/blog2social-v-4-
|
571 |
-
#: /plugins/blog2social-v-4-
|
572 |
msgid ""
|
573 |
"2. Schedule your social media posts for a specific date and time If you want "
|
574 |
"to share your post at a particular date and time, different from your "
|
@@ -580,172 +562,172 @@ msgstr ""
|
|
580 |
"abweichen, wähle die Option “zu bestimmten Zeiten” und lege das Datum und "
|
581 |
"die Uhrzeit fest. "
|
582 |
|
583 |
-
#: ../../plugins/blog2social-v-4-
|
584 |
-
#: /plugins/blog2social-v-4-
|
585 |
msgid "You want to auto-post your blog post?"
|
586 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
587 |
|
588 |
-
#: ../../plugins/blog2social-v-4-
|
589 |
-
#: /plugins/blog2social-v-4-
|
590 |
-
#: v-4-
|
591 |
-
#:
|
592 |
-
#: 360 ../../plugins/blog2social-v-4-
|
593 |
-
#: /plugins/blog2social-v-4-
|
594 |
-
#: /plugins/blog2social-v-4-
|
595 |
-
#: /plugins/blog2social-v-4-
|
596 |
-
#: /plugins/blog2social-v-4-
|
597 |
-
#: /plugins/blog2social-v-4-
|
598 |
-
#: /plugins/blog2social-v-4-
|
599 |
msgid "With Blog2Social Premium you can:"
|
600 |
msgstr "Mit Blog2Social kannst Du:"
|
601 |
|
602 |
-
#: ../../plugins/blog2social-v-4-
|
603 |
-
#: /plugins/blog2social-v-4-
|
604 |
-
#: v-4-
|
605 |
-
#:
|
606 |
-
#: 363 ../../plugins/blog2social-v-4-
|
607 |
-
#: /plugins/blog2social-v-4-
|
608 |
-
#: /plugins/blog2social-v-4-
|
609 |
-
#: /plugins/blog2social-v-4-
|
610 |
-
#: /plugins/blog2social-v-4-
|
611 |
-
#: /plugins/blog2social-v-4-
|
612 |
-
#: /plugins/blog2social-v-4-
|
613 |
-
#: /plugins/blog2social-v-4-
|
614 |
msgid "Post on pages and groups"
|
615 |
msgstr "Poste auf Seiten und in Gruppen"
|
616 |
|
617 |
-
#: ../../plugins/blog2social-v-4-
|
618 |
-
#: /plugins/blog2social-v-4-
|
619 |
-
#: v-4-
|
620 |
-
#:
|
621 |
-
#: 364 ../../plugins/blog2social-v-4-
|
622 |
-
#: /plugins/blog2social-v-4-
|
623 |
-
#: /plugins/blog2social-v-4-
|
624 |
-
#: /plugins/blog2social-v-4-
|
625 |
-
#: /plugins/blog2social-v-4-
|
626 |
-
#: /plugins/blog2social-v-4-
|
627 |
-
#: /plugins/blog2social-v-4-
|
628 |
msgid "Share on multiple profiles, pages and groups"
|
629 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
630 |
|
631 |
-
#: ../../plugins/blog2social-v-4-
|
632 |
-
#: /plugins/blog2social-v-4-
|
633 |
-
#: v-4-
|
634 |
-
#:
|
635 |
-
#: 365 ../../plugins/blog2social-v-4-
|
636 |
-
#: /plugins/blog2social-v-4-
|
637 |
-
#: /plugins/blog2social-v-4-
|
638 |
-
#: /plugins/blog2social-v-4-
|
639 |
-
#: /plugins/blog2social-v-4-
|
640 |
-
#: /plugins/blog2social-v-4-
|
641 |
-
#: /plugins/blog2social-v-4-
|
642 |
-
#: /plugins/blog2social-v-4-
|
643 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
644 |
msgstr ""
|
645 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
646 |
"Aktualisierung posten und zeitversetzt planen"
|
647 |
|
648 |
-
#: ../../plugins/blog2social-v-4-
|
649 |
-
#: /plugins/blog2social-v-4-
|
650 |
-
#: v-4-
|
651 |
-
#:
|
652 |
-
#: 366 ../../plugins/blog2social-v-4-
|
653 |
-
#: /plugins/blog2social-v-4-
|
654 |
-
#: /plugins/blog2social-v-4-
|
655 |
-
#: /plugins/blog2social-v-4-
|
656 |
-
#: /plugins/blog2social-v-4-
|
657 |
-
#: /plugins/blog2social-v-4-
|
658 |
-
#: /plugins/blog2social-v-4-
|
659 |
msgid "Schedule your posts at the best times on each network"
|
660 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
661 |
|
662 |
-
#: ../../plugins/blog2social-v-4-
|
663 |
-
#: /plugins/blog2social-v-4-
|
664 |
-
#: v-4-
|
665 |
-
#:
|
666 |
-
#: 367 ../../plugins/blog2social-v-4-
|
667 |
-
#: /plugins/blog2social-v-4-
|
668 |
-
#: /plugins/blog2social-v-4-
|
669 |
-
#: /plugins/blog2social-v-4-
|
670 |
-
#: /plugins/blog2social-v-4-
|
671 |
-
#: /plugins/blog2social-v-4-
|
672 |
-
#: /plugins/blog2social-v-4-
|
673 |
msgid ""
|
674 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
675 |
"social media posts"
|
676 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
677 |
|
678 |
-
#: ../../plugins/blog2social-v-4-
|
679 |
-
#: /plugins/blog2social-v-4-
|
680 |
-
#: v-4-
|
681 |
-
#:
|
682 |
-
#: 368 ../../plugins/blog2social-v-4-
|
683 |
-
#: /plugins/blog2social-v-4-
|
684 |
-
#: /plugins/blog2social-v-4-
|
685 |
-
#: /plugins/blog2social-v-4-
|
686 |
-
#: /plugins/blog2social-v-4-
|
687 |
-
#: /plugins/blog2social-v-4-
|
688 |
-
#: /plugins/blog2social-v-4-
|
689 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
690 |
msgstr ""
|
691 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
692 |
"oder nach einem regelmäßigen Muster"
|
693 |
|
694 |
-
#: ../../plugins/blog2social-v-4-
|
695 |
-
#: /plugins/blog2social-v-4-
|
696 |
-
#: v-4-
|
697 |
-
#:
|
698 |
-
#: 369 ../../plugins/blog2social-v-4-
|
699 |
-
#: /plugins/blog2social-v-4-
|
700 |
-
#: /plugins/blog2social-v-4-
|
701 |
-
#: /plugins/blog2social-v-4-
|
702 |
-
#: /plugins/blog2social-v-4-
|
703 |
-
#: /plugins/blog2social-v-4-
|
704 |
-
#: /plugins/blog2social-v-4-
|
705 |
msgid "Schedule and re-share old posts"
|
706 |
msgstr "Plane und teile alte Beiträge"
|
707 |
|
708 |
-
#: ../../plugins/blog2social-v-4-
|
709 |
-
#: /plugins/blog2social-v-4-
|
710 |
-
#: v-4-
|
711 |
-
#:
|
712 |
-
#: 370 ../../plugins/blog2social-v-4-
|
713 |
-
#: /plugins/blog2social-v-4-
|
714 |
-
#: /plugins/blog2social-v-4-
|
715 |
-
#: /plugins/blog2social-v-4-
|
716 |
-
#: /plugins/blog2social-v-4-
|
717 |
-
#: /plugins/blog2social-v-4-
|
718 |
-
#: /plugins/blog2social-v-4-
|
719 |
-
#: /plugins/blog2social-v-4-
|
720 |
msgid "Select link format or image format for your posts"
|
721 |
msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
722 |
|
723 |
-
#: ../../plugins/blog2social-v-4-
|
724 |
-
#: /plugins/blog2social-v-4-
|
725 |
-
#: v-4-
|
726 |
-
#:
|
727 |
-
#: 371 ../../plugins/blog2social-v-4-
|
728 |
-
#: /plugins/blog2social-v-4-
|
729 |
-
#: /plugins/blog2social-v-4-
|
730 |
-
#: /plugins/blog2social-v-4-
|
731 |
-
#: /plugins/blog2social-v-4-
|
732 |
-
#: /plugins/blog2social-v-4-
|
733 |
-
#: /plugins/blog2social-v-4-
|
734 |
-
#: /plugins/blog2social-v-4-
|
735 |
msgid "Select individual images per post"
|
736 |
msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
737 |
|
738 |
-
#: ../../plugins/blog2social-v-4-
|
739 |
-
#: /plugins/blog2social-v-4-
|
740 |
-
#: v-4-
|
741 |
-
#:
|
742 |
-
#: 372 ../../plugins/blog2social-v-4-
|
743 |
-
#: /plugins/blog2social-v-4-
|
744 |
-
#: /plugins/blog2social-v-4-
|
745 |
-
#: /plugins/blog2social-v-4-
|
746 |
-
#: /plugins/blog2social-v-4-
|
747 |
-
#: /plugins/blog2social-v-4-
|
748 |
-
#: /plugins/blog2social-v-4-
|
749 |
msgid ""
|
750 |
"Reporting & calendar: keep track of your published and scheduled social "
|
751 |
"media posts"
|
@@ -753,34 +735,34 @@ msgstr ""
|
|
753 |
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
754 |
"Media Beiträge"
|
755 |
|
756 |
-
#: ../../plugins/blog2social-v-4-
|
757 |
-
#: /plugins/blog2social-v-4-
|
758 |
-
#: v-4-
|
759 |
-
#:
|
760 |
-
#: 374 ../../plugins/blog2social-v-4-
|
761 |
-
#: /plugins/blog2social-v-4-
|
762 |
-
#: /plugins/blog2social-v-4-
|
763 |
-
#: /plugins/blog2social-v-4-
|
764 |
-
#: /plugins/blog2social-v-4-
|
765 |
-
#: /plugins/blog2social-v-4-
|
766 |
-
#: /plugins/blog2social-v-4-
|
767 |
-
#: /plugins/blog2social-v-4-
|
768 |
msgid "Upgrade to PREMIUM"
|
769 |
msgstr "Jetzt auf Premium upgraden"
|
770 |
|
771 |
-
#: ../../plugins/blog2social-v-4-
|
772 |
-
#: /plugins/blog2social-v-4-
|
773 |
-
#: v-4-
|
774 |
-
#:
|
775 |
-
#: 376 ../../plugins/blog2social-v-4-
|
776 |
-
#: /plugins/blog2social-v-4-
|
777 |
-
#: /plugins/blog2social-v-4-
|
778 |
-
#: /plugins/blog2social-v-4-
|
779 |
-
#: /plugins/blog2social-v-4-
|
780 |
-
#: /plugins/blog2social-v-4-
|
781 |
-
#: /plugins/blog2social-v-4-
|
782 |
-
#: /plugins/blog2social-v-4-
|
783 |
-
#: /plugins/blog2social-v-4-
|
784 |
msgid ""
|
785 |
"or <a href=\"http://service.blog2social.com/trial\" target=\"_blank\">start with "
|
786 |
"free 30-days-trial of Blog2Social Premium</a> (no payment information needed)"
|
@@ -789,54 +771,54 @@ msgstr ""
|
|
789 |
"Deinen kostenlosen 30-tägigen Test von Blog2Social Premium</a>(keine "
|
790 |
"Zahlungsinformationen erforderlich)"
|
791 |
|
792 |
-
#: ../../plugins/blog2social-v-4-
|
793 |
msgid "Select profile:"
|
794 |
msgstr "Profil auswählen: "
|
795 |
|
796 |
-
#: ../../plugins/blog2social-v-4-
|
797 |
msgid "Select Twitter profile:"
|
798 |
msgstr "Twitter Profil auswählen:"
|
799 |
|
800 |
-
#: ../../plugins/blog2social-v-4-
|
801 |
msgid "When do you want to share your post on social media?"
|
802 |
msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
803 |
|
804 |
-
#: ../../plugins/blog2social-v-4-
|
805 |
msgid "immediately after publishing"
|
806 |
msgstr "sofort nach Veröffentlichung"
|
807 |
|
808 |
-
#: ../../plugins/blog2social-v-4-
|
809 |
msgid "at scheduled times"
|
810 |
msgstr "zu geplanten Zeiten"
|
811 |
|
812 |
-
#: ../../plugins/blog2social-v-4-
|
813 |
msgid "You want to sched your blog post with Auto-Poster?"
|
814 |
msgstr "Du willst Deinen Blogbeitrag mit dem Autoposter planen?"
|
815 |
|
816 |
-
#: ../../plugins/blog2social-v-4-
|
817 |
-
#: /plugins/blog2social-v-4-
|
818 |
-
#: /plugins/blog2social-v-4-
|
819 |
msgid "Upgrade to PREMIUM PRO"
|
820 |
msgstr "Upgrade auf PREMIUM PRO"
|
821 |
|
822 |
-
#: ../../plugins/blog2social-v-4-
|
823 |
msgid "Select date:"
|
824 |
msgstr "Datum auswählen:"
|
825 |
|
826 |
-
#: ../../plugins/blog2social-v-4-
|
827 |
-
#: /plugins/blog2social-v-4-
|
828 |
msgid "show calendar"
|
829 |
msgstr "Kalender anzeigen"
|
830 |
|
831 |
-
#: ../../plugins/blog2social-v-4-
|
832 |
msgid "post at"
|
833 |
msgstr "beachte"
|
834 |
|
835 |
-
#: ../../plugins/blog2social-v-4-
|
836 |
msgid "my time settings"
|
837 |
msgstr "meine Zeit-Einstellungen"
|
838 |
|
839 |
-
#: ../../plugins/blog2social-v-4-
|
840 |
msgid ""
|
841 |
"Note: If you have not specified your own times, we automatically provide "
|
842 |
"you with the best times to post on the social networks. You can always "
|
@@ -847,78 +829,92 @@ msgstr ""
|
|
847 |
"posten. Du kannst jederzeit Deine eigenen Zeiten unter Einstellungen "
|
848 |
"bearbeiten."
|
849 |
|
850 |
-
#: ../../plugins/blog2social-v-4-
|
851 |
-
#: /plugins/blog2social-v-4-
|
|
|
852 |
msgid "Account"
|
853 |
msgstr "Konto"
|
854 |
|
855 |
-
#: ../../plugins/blog2social-v-4-
|
856 |
-
#: /plugins/blog2social-v-4-
|
857 |
msgid "Personal Time Zone"
|
858 |
msgstr "Persönliche Zeitzone"
|
859 |
|
860 |
-
#: ../../plugins/blog2social-v-4-
|
861 |
msgid "Timezone for Scheduling"
|
862 |
msgstr "Zeitzone für die Planung"
|
863 |
|
864 |
-
#: ../../plugins/blog2social-v-4-
|
865 |
msgid "User"
|
866 |
msgstr "Benutzer"
|
867 |
|
868 |
-
#: ../../plugins/blog2social-v-4-
|
869 |
msgid "Content"
|
870 |
msgstr "Inhalt"
|
871 |
|
872 |
-
#: ../../plugins/blog2social-v-4-
|
873 |
-
msgid "
|
874 |
-
msgstr "
|
|
|
|
|
|
|
|
|
875 |
|
876 |
-
#: ../../plugins/blog2social-v-4-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
877 |
msgid "allow shortcodes in my post"
|
878 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
879 |
|
880 |
-
#: ../../plugins/blog2social-v-4-
|
881 |
msgid "include Wordpress tags as hashtags in my post"
|
882 |
msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
883 |
|
884 |
-
#: ../../plugins/blog2social-v-4-
|
885 |
-
#: /plugins/blog2social-v-4-
|
886 |
msgid "Define Twitter post content"
|
887 |
msgstr "Twitter Beitragsinhalt definieren"
|
888 |
|
889 |
-
#: ../../plugins/blog2social-v-4-
|
890 |
-
#: /plugins/blog2social-v-4-
|
891 |
-
#: /plugins/blog2social-v-4-
|
892 |
msgid "title"
|
893 |
msgstr "Titel"
|
894 |
|
895 |
-
#: ../../plugins/blog2social-v-4-
|
896 |
-
#: /plugins/blog2social-v-4-
|
897 |
-
#: /plugins/blog2social-v-4-
|
898 |
msgid "hashtags"
|
899 |
msgstr "Hashtags"
|
900 |
|
901 |
-
#: ../../plugins/blog2social-v-4-
|
902 |
msgid "title & content"
|
903 |
msgstr "Titel & Inhalt"
|
904 |
|
905 |
-
#: ../../plugins/blog2social-v-4-
|
906 |
-
#: /plugins/blog2social-v-4-
|
907 |
-
#: /plugins/blog2social-v-4-
|
908 |
msgid "(PREMIUM)"
|
909 |
msgstr "(PREMIUM)"
|
910 |
|
911 |
-
#: ../../plugins/blog2social-v-4-
|
912 |
msgid "only content"
|
913 |
msgstr "nur Inhalt"
|
914 |
|
915 |
-
#: ../../plugins/blog2social-v-4-
|
916 |
msgid "System"
|
917 |
msgstr "System"
|
918 |
|
919 |
-
#: ../../plugins/blog2social-v-4-
|
920 |
-
#: /plugins/blog2social-v-4-
|
921 |
-
#: /plugins/blog2social-v-4-
|
922 |
msgid ""
|
923 |
"This is a global feature for your blog, which can only be edited by users "
|
924 |
"with admin rights."
|
@@ -926,21 +922,21 @@ msgstr ""
|
|
926 |
"Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
|
927 |
"Admin Rechten bearbeitet werden kann."
|
928 |
|
929 |
-
#: ../../plugins/blog2social-v-4-
|
930 |
msgid "activate Legacy mode"
|
931 |
msgstr "Kompatibilitätsmodus aktivieren"
|
932 |
|
933 |
-
#: ../../plugins/blog2social-v-4-
|
934 |
msgid "Auto-post your own created posts"
|
935 |
msgstr "Auto-Poste Deine selbsterstellten Blogbeiträge"
|
936 |
|
937 |
-
#: ../../plugins/blog2social-v-4-
|
938 |
msgid "Define by default to automatically post your posts on social media:"
|
939 |
msgstr ""
|
940 |
"Definiere standardmäßig Blogbeiträge oder Seiten, die Du auf Social Media "
|
941 |
"automatisch teilen möchtest:"
|
942 |
|
943 |
-
#: ../../plugins/blog2social-v-4-
|
944 |
msgid ""
|
945 |
"Select by default if the auto-poster is activated when you publish a new "
|
946 |
"post or update a post."
|
@@ -948,21 +944,21 @@ msgstr ""
|
|
948 |
"Wähle standardmäßig aus, ob der Auto-Poster aktiviert ist, wenn Du einen "
|
949 |
"neuen Beitrag veröffentlichst oder aktualisierst. "
|
950 |
|
951 |
-
#: ../../plugins/blog2social-v-4-
|
952 |
msgid "new posts"
|
953 |
msgstr "Neue Beiträge"
|
954 |
|
955 |
-
#: ../../plugins/blog2social-v-4-
|
956 |
-
#: /plugins/blog2social-v-4-
|
957 |
msgid "Unselect all"
|
958 |
msgstr "Alle abwählen"
|
959 |
|
960 |
-
#: ../../plugins/blog2social-v-4-
|
961 |
-
#: /plugins/blog2social-v-4-
|
962 |
msgid "Select all"
|
963 |
msgstr "Alle auswählen"
|
964 |
|
965 |
-
#: ../../plugins/blog2social-v-4-
|
966 |
msgid ""
|
967 |
"By enabling this feature your previously published social media posts will "
|
968 |
"be sent again to your selected social media channels as soon as the post is "
|
@@ -972,50 +968,50 @@ msgstr ""
|
|
972 |
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
973 |
"Beitrag aktualisiert wird"
|
974 |
|
975 |
-
#: ../../plugins/blog2social-v-4-
|
976 |
msgid "updating existing posts"
|
977 |
msgstr "Bestehenden Beitrag aktualisieren"
|
978 |
|
979 |
-
#: ../../plugins/blog2social-v-4-
|
980 |
-
#: /plugins/blog2social-v-4-
|
981 |
msgid "Save"
|
982 |
msgstr " Speichern"
|
983 |
|
984 |
-
#: ../../plugins/blog2social-v-4-
|
985 |
msgid "Auto-post your imported posts to Twitter & Facebook"
|
986 |
msgstr "Auto-Poste Deine importierten Beiträge auf Twitter & Facebook"
|
987 |
|
988 |
-
#: ../../plugins/blog2social-v-4-
|
989 |
msgid "Define by default to automatically share your imported posts to social media:"
|
990 |
msgstr ""
|
991 |
"Definiere standardmässig alle Deine importierten Beiträge auf den Social "
|
992 |
"Media zu veröffentlichen:"
|
993 |
|
994 |
-
#: ../../plugins/blog2social-v-4-
|
995 |
msgid "Your current licence:"
|
996 |
msgstr "Deine aktuelle Lizenz:"
|
997 |
|
998 |
-
#: ../../plugins/blog2social-v-4-
|
999 |
msgid "share up to"
|
1000 |
msgstr "teile bis zu"
|
1001 |
|
1002 |
-
#: ../../plugins/blog2social-v-4-
|
1003 |
msgid "posts per day"
|
1004 |
msgstr "Beiträge pro Tag"
|
1005 |
|
1006 |
-
#: ../../plugins/blog2social-v-4-
|
1007 |
msgid "need more?"
|
1008 |
msgstr "Benötigst Du mehr?"
|
1009 |
|
1010 |
-
#: ../../plugins/blog2social-v-4-
|
1011 |
msgid "Select by default to automatically share your imported posts"
|
1012 |
msgstr "Teile standardmäßig automatisch importierte Beiträge auf meinen Social Media"
|
1013 |
|
1014 |
-
#: ../../plugins/blog2social-v-4-
|
1015 |
msgid "Select to auto-post to your standard networks:"
|
1016 |
msgstr "Wähle die Netzwerke aus, auf denen automatisch veröffentlicht werden soll:"
|
1017 |
|
1018 |
-
#: ../../plugins/blog2social-v-4-
|
1019 |
msgid ""
|
1020 |
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
1021 |
"as your primary Twitter account for auto-posting."
|
@@ -1023,57 +1019,57 @@ msgstr ""
|
|
1023 |
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
1024 |
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden."
|
1025 |
|
1026 |
-
#: ../../plugins/blog2social-v-4-
|
1027 |
msgid "More information"
|
1028 |
msgstr "Zusätzliche Informationen"
|
1029 |
|
1030 |
-
#: ../../plugins/blog2social-v-4-
|
1031 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
1032 |
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
1033 |
|
1034 |
-
#: ../../plugins/blog2social-v-4-
|
1035 |
msgid "immediately"
|
1036 |
msgstr "sofort"
|
1037 |
|
1038 |
-
#: ../../plugins/blog2social-v-4-
|
1039 |
msgid "publish with a delay of"
|
1040 |
msgstr "veröffentlichen mit einer Verzögerung von"
|
1041 |
|
1042 |
-
#: ../../plugins/blog2social-v-4-
|
1043 |
msgid "minutes"
|
1044 |
msgstr "Minuten"
|
1045 |
|
1046 |
-
#: ../../plugins/blog2social-v-4-
|
1047 |
msgid "Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1048 |
msgstr ""
|
1049 |
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
1050 |
"automatisch veröffentlicht)"
|
1051 |
|
1052 |
-
#: ../../plugins/blog2social-v-4-
|
1053 |
msgid "Post Types"
|
1054 |
msgstr "Posttypen"
|
1055 |
|
1056 |
-
#: ../../plugins/blog2social-v-4-
|
1057 |
msgid "Include (Post only...)"
|
1058 |
msgstr "enthält (nur Beiträge, mit ...)"
|
1059 |
|
1060 |
-
#: ../../plugins/blog2social-v-4-
|
1061 |
msgid "Exclude (Do no post ...)"
|
1062 |
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
1063 |
|
1064 |
-
#: ../../plugins/blog2social-v-4-
|
1065 |
msgid "add/change connection"
|
1066 |
msgstr "Verbindung hinzufügen/ändern"
|
1067 |
|
1068 |
-
#: ../../plugins/blog2social-v-4-
|
1069 |
msgid "Reset all page and post meta data"
|
1070 |
msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
1071 |
|
1072 |
-
#: ../../plugins/blog2social-v-4-
|
1073 |
msgid "Meta Tags Settings for Posts and Pages"
|
1074 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
1075 |
|
1076 |
-
#: ../../plugins/blog2social-v-4-
|
1077 |
msgid ""
|
1078 |
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
1079 |
"and other social networks to display your post or page image, title and "
|
@@ -1083,7 +1079,7 @@ msgstr ""
|
|
1083 |
"Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
|
1084 |
"Beitrag/Seite korrekt darstellen können."
|
1085 |
|
1086 |
-
#: ../../plugins/blog2social-v-4-
|
1087 |
msgid ""
|
1088 |
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
1089 |
"Twitter to display your post or page image, title and description correctly."
|
@@ -1092,11 +1088,11 @@ msgstr ""
|
|
1092 |
"Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
|
1093 |
"darstellen kann."
|
1094 |
|
1095 |
-
#: ../../plugins/blog2social-v-4-
|
1096 |
msgid "Frontpage Settings"
|
1097 |
msgstr "Frontpage Einstellungen"
|
1098 |
|
1099 |
-
#: ../../plugins/blog2social-v-4-
|
1100 |
msgid ""
|
1101 |
"Add the default Open Graph parameters for title, description and image you "
|
1102 |
"want Facebook to display, if you share the frontpage of your blog as link "
|
@@ -1106,33 +1102,33 @@ msgstr ""
|
|
1106 |
"die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
|
1107 |
"als Link Post teilst (http://www.DeinBlog.de) "
|
1108 |
|
1109 |
-
#: ../../plugins/blog2social-v-4-
|
1110 |
-
#: /plugins/blog2social-v-4-
|
1111 |
-
#: /plugins/blog2social-v-4-
|
1112 |
-
#:
|
1113 |
-
#: ./../plugins/blog2social-v-4-
|
1114 |
-
#: /plugins/blog2social-v-4-
|
1115 |
msgid "Title"
|
1116 |
msgstr "Titel"
|
1117 |
|
1118 |
-
#: ../../plugins/blog2social-v-4-
|
1119 |
-
#: /plugins/blog2social-v-4-
|
1120 |
msgid "Description"
|
1121 |
msgstr "Beschreibung"
|
1122 |
|
1123 |
-
#: ../../plugins/blog2social-v-4-
|
1124 |
-
#: /plugins/blog2social-v-4-
|
1125 |
msgid "Image URL"
|
1126 |
msgstr "Bild Url"
|
1127 |
|
1128 |
-
#: ../../plugins/blog2social-v-4-
|
1129 |
-
#: /plugins/blog2social-v-4-
|
1130 |
-
#: /plugins/blog2social-v-4-
|
1131 |
-
#: /plugins/blog2social-v-4-
|
1132 |
msgid "Image upload / Media Gallery"
|
1133 |
msgstr "Bild hochladen / Mediathek"
|
1134 |
|
1135 |
-
#: ../../plugins/blog2social-v-4-
|
1136 |
msgid ""
|
1137 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
1138 |
"pixels and an aspect ratio of 1:1."
|
@@ -1140,7 +1136,7 @@ msgstr ""
|
|
1140 |
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
1141 |
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
1142 |
|
1143 |
-
#: ../../plugins/blog2social-v-4-
|
1144 |
msgid ""
|
1145 |
"Add the default Twitter Card parameters for title, description and image you "
|
1146 |
"want Twitter to display, if you share the frontpage of your blog as link "
|
@@ -1150,19 +1146,19 @@ msgstr ""
|
|
1150 |
"Image, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www."
|
1151 |
"DeinBlog.de) "
|
1152 |
|
1153 |
-
#: ../../plugins/blog2social-v-4-
|
1154 |
msgid "The default card type to use"
|
1155 |
msgstr "Der zu verwendende Standard-Kartentyp"
|
1156 |
|
1157 |
-
#: ../../plugins/blog2social-v-4-
|
1158 |
msgid "Summary"
|
1159 |
msgstr "Zusammenfassung"
|
1160 |
|
1161 |
-
#: ../../plugins/blog2social-v-4-
|
1162 |
msgid "Summary with large image"
|
1163 |
msgstr "Zusammenfassung mit großem Bild"
|
1164 |
|
1165 |
-
#: ../../plugins/blog2social-v-4-
|
1166 |
msgid ""
|
1167 |
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
1168 |
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
@@ -1174,11 +1170,11 @@ msgstr ""
|
|
1174 |
" The Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt "
|
1175 |
"die Bildformate JPG, PNG, WEBP und GIF. "
|
1176 |
|
1177 |
-
#: ../../plugins/blog2social-v-4-
|
1178 |
msgid "Did you know?"
|
1179 |
msgstr "Wusstest Du schon?"
|
1180 |
|
1181 |
-
#: ../../plugins/blog2social-v-4-
|
1182 |
msgid ""
|
1183 |
"With Premium Pro, you can change the custom post format photo post or link "
|
1184 |
"post for each individual social media post and channel (profile, page, "
|
@@ -1188,30 +1184,30 @@ msgstr ""
|
|
1188 |
"Beitrag individuell zwischen Link-Beitrag und Bild-Beitrag auswählen "
|
1189 |
"(Profile, Seiten, Gruppen)"
|
1190 |
|
1191 |
-
#: ../../plugins/blog2social-v-4-
|
1192 |
msgid "Upgrade to Premium Pro now."
|
1193 |
msgstr "Upgrade auf Premium PRO"
|
1194 |
|
1195 |
-
#: ../../plugins/blog2social-v-4-
|
1196 |
-
#: /plugins/blog2social-v-4-
|
1197 |
-
#: /plugins/blog2social-v-4-
|
1198 |
-
#: /plugins/blog2social-v-4-
|
1199 |
-
#: /plugins/blog2social-v-4-
|
1200 |
-
#: /plugins/blog2social-v-4-
|
1201 |
msgid "Image with frame"
|
1202 |
msgstr "Bild mit Rahmen"
|
1203 |
|
1204 |
-
#: ../../plugins/blog2social-v-4-
|
1205 |
-
#: /plugins/blog2social-v-4-
|
1206 |
-
#: /plugins/blog2social-v-4-
|
1207 |
-
#: /plugins/blog2social-v-4-
|
1208 |
-
#: /plugins/blog2social-v-4-
|
1209 |
-
#: /plugins/blog2social-v-4-
|
1210 |
msgid "Link Post"
|
1211 |
msgstr "Link-Beitrag"
|
1212 |
|
1213 |
-
#: ../../plugins/blog2social-v-4-
|
1214 |
-
#: /plugins/blog2social-v-4-
|
1215 |
msgid ""
|
1216 |
"Insert white frames to show the whole image in your timeline. All image "
|
1217 |
"information will be shown in your timeline."
|
@@ -1220,7 +1216,7 @@ msgstr ""
|
|
1220 |
"das quadratische Instagram-Layout anzupassen und das gesamte Bild bereits in "
|
1221 |
"Deiner Timeline anzuzeigen. "
|
1222 |
|
1223 |
-
#: ../../plugins/blog2social-v-4-
|
1224 |
msgid ""
|
1225 |
"The link post format displays posts title, link address and the first one or "
|
1226 |
"two sentences of the post. The networks scan this information from your META "
|
@@ -1244,26 +1240,26 @@ msgstr ""
|
|
1244 |
"Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
|
1245 |
"Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. "
|
1246 |
|
1247 |
-
#: ../../plugins/blog2social-v-4-
|
1248 |
-
#: /plugins/blog2social-v-4-
|
1249 |
-
#: /plugins/blog2social-v-4-
|
1250 |
-
#: /plugins/blog2social-v-4-
|
1251 |
-
#: /plugins/blog2social-v-4-
|
1252 |
-
#: /plugins/blog2social-v-4-
|
1253 |
msgid "Image cut out"
|
1254 |
msgstr "Bild zuschneiden"
|
1255 |
|
1256 |
-
#: ../../plugins/blog2social-v-4-
|
1257 |
-
#: /plugins/blog2social-v-4-
|
1258 |
-
#: /plugins/blog2social-v-4-
|
1259 |
-
#: /plugins/blog2social-v-4-
|
1260 |
-
#: /plugins/blog2social-v-4-
|
1261 |
-
#: /plugins/blog2social-v-4-
|
1262 |
msgid "Photo Post"
|
1263 |
msgstr "Bild-Beitrag"
|
1264 |
|
1265 |
-
#: ../../plugins/blog2social-v-4-
|
1266 |
-
#: /plugins/blog2social-v-4-
|
1267 |
msgid ""
|
1268 |
"The image preview will be cropped automatically to fit the default Instagram "
|
1269 |
"layout for your Instagram timeline. The image will be shown uncropped when "
|
@@ -1274,8 +1270,8 @@ msgstr ""
|
|
1274 |
"auf Deiner Timeline. Mit Klick auf den Post wird das Bild in der Instagram-"
|
1275 |
"Vorschau als Ganzes angezeigt."
|
1276 |
|
1277 |
-
#: ../../plugins/blog2social-v-4-
|
1278 |
-
#: /plugins/blog2social-v-4-
|
1279 |
msgid ""
|
1280 |
"A photo or image post displays the selected image in the one-page preview of "
|
1281 |
"Blog2Social and your comment above the image. The image links to the image "
|
@@ -1291,57 +1287,57 @@ msgstr ""
|
|
1291 |
"langfristig sichtbar bleibt. Auf Facebook kannst Du den Namen des Albums "
|
1292 |
"bearbeiten und eine Beschreibung Deiner Wahl ergänzen."
|
1293 |
|
1294 |
-
#: ../../plugins/blog2social-v-4-
|
1295 |
msgid "All"
|
1296 |
msgstr "alle"
|
1297 |
|
1298 |
-
#: ../../plugins/blog2social-v-4-
|
1299 |
msgid "Activate Instant Caching"
|
1300 |
msgstr "Instant Caching aktivieren"
|
1301 |
|
1302 |
-
#: ../../plugins/blog2social-v-4-
|
1303 |
-
#: /plugins/blog2social-v-4-
|
1304 |
msgid "Uhr"
|
1305 |
msgstr "Uhr"
|
1306 |
|
1307 |
-
#: ../../plugins/blog2social-v-4-
|
1308 |
msgid "Best times to post"
|
1309 |
msgstr "Beste Zeiten"
|
1310 |
|
1311 |
-
#: ../../plugins/blog2social-v-4-
|
1312 |
-
#: /plugins/blog2social-v-4-
|
1313 |
-
#: v-4-
|
1314 |
-
#: 359 ../../plugins/blog2social-v-4-
|
1315 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1316 |
msgstr ""
|
1317 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
1318 |
"Manager benutzen?"
|
1319 |
|
1320 |
-
#: ../../plugins/blog2social-v-4-
|
1321 |
-
#: /plugins/blog2social-v-4-
|
1322 |
-
#: v-4-
|
1323 |
-
#:
|
1324 |
-
#:
|
1325 |
-
#:
|
1326 |
-
#:
|
1327 |
-
#:
|
1328 |
-
#:
|
1329 |
-
#:
|
1330 |
-
#:
|
1331 |
#: php:456
|
1332 |
msgid "save"
|
1333 |
msgstr "speichern"
|
1334 |
|
1335 |
-
#: ../../plugins/blog2social-v-4-
|
1336 |
msgid "Sorry, we can not load your data at the moment..."
|
1337 |
msgstr "Sorry, derzeit können wir Deine Daten nicht laden. Versuche es erneut."
|
1338 |
|
1339 |
-
#: ../../plugins/blog2social-v-4-
|
1340 |
msgid "The images file types .jpg and .png are allowed. Please try another."
|
1341 |
msgstr "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
|
1342 |
|
1343 |
-
#: ../../plugins/blog2social-v-4-
|
1344 |
-
#: /plugins/blog2social-v-4-
|
1345 |
msgid ""
|
1346 |
"You need a higher user role to upload an image on this blog. Please contact "
|
1347 |
"your administrator."
|
@@ -1349,11 +1345,11 @@ msgstr ""
|
|
1349 |
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
1350 |
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
1351 |
|
1352 |
-
#: ../../plugins/blog2social-v-4-
|
1353 |
msgid "To select an individual image from your media library,"
|
1354 |
msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
|
1355 |
|
1356 |
-
#: ../../plugins/blog2social-v-4-
|
1357 |
msgid ""
|
1358 |
"The best size for images in social media posts are between: 667-1000px x 523-"
|
1359 |
"1000px. Blog2Social will automatically resize your image according to "
|
@@ -1363,82 +1359,82 @@ msgstr ""
|
|
1363 |
"1000px x 523-1000px <br> Blog2Social passt Dein Bild automatisch die Größe "
|
1364 |
"des jeweiligen Netzwerks an."
|
1365 |
|
1366 |
-
#: ../../plugins/blog2social-v-4-
|
1367 |
msgid "No images are included in your post."
|
1368 |
msgstr "In dem Beitrag sind keine Bilder hinterlegt"
|
1369 |
|
1370 |
-
#: ../../plugins/blog2social-v-4-
|
1371 |
msgid "Apply image for all posts"
|
1372 |
msgstr "Bild für alle Posts übernehmen"
|
1373 |
|
1374 |
-
#: ../../plugins/blog2social-v-4-
|
1375 |
-
#: /plugins/blog2social-v-4-
|
1376 |
-
msgid "Apply image for this
|
1377 |
-
msgstr "Bild für
|
1378 |
|
1379 |
-
#: ../../plugins/blog2social-v-4-
|
1380 |
-
#: /plugins/blog2social-v-4-
|
1381 |
msgid "Select or upload an image from media gallery"
|
1382 |
msgstr "Bild auswählen / hochladen"
|
1383 |
|
1384 |
-
#: ../../plugins/blog2social-v-4-
|
1385 |
-
#: /plugins/blog2social-v-4-
|
1386 |
msgid "Use image"
|
1387 |
msgstr "Bild verwenden"
|
1388 |
|
1389 |
-
#: ../../plugins/blog2social-v-4-
|
1390 |
msgid "Network does not support image for profiles"
|
1391 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
1392 |
|
1393 |
-
#: ../../plugins/blog2social-v-4-
|
1394 |
msgid "Network defines image by link"
|
1395 |
msgstr "Netzwerk wählt selber das Bild aus"
|
1396 |
|
1397 |
-
#: ../../plugins/blog2social-v-4-
|
1398 |
msgid "Supported HTML tags"
|
1399 |
msgstr "Erlaubte HTML-Elemente"
|
1400 |
|
1401 |
-
#: ../../plugins/blog2social-v-4-
|
1402 |
-
#: /plugins/blog2social-v-4-
|
1403 |
msgid "Network does not support emojis"
|
1404 |
msgstr "Netzwerk unterstützt keine Emojis"
|
1405 |
|
1406 |
-
#: ../../plugins/blog2social-v-4-
|
1407 |
msgid "Text only"
|
1408 |
msgstr "nur Text"
|
1409 |
|
1410 |
-
#: ../../plugins/blog2social-v-4-
|
1411 |
-
#: /plugins/blog2social-v-4-
|
1412 |
-
#: /plugins/blog2social-v-4-
|
1413 |
-
#: /plugins/blog2social-v-4-
|
1414 |
-
#: /plugins/blog2social-v-4-
|
1415 |
-
#: /plugins/blog2social-v-4-
|
1416 |
-
#: /plugins/blog2social-v-4-
|
1417 |
-
#: /plugins/blog2social-v-4-
|
1418 |
msgid "characters"
|
1419 |
msgstr "Zeichen"
|
1420 |
|
1421 |
-
#: ../../plugins/blog2social-v-4-
|
1422 |
msgid "Network does not support image for pages"
|
1423 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
1424 |
|
1425 |
-
#: ../../plugins/blog2social-v-4-
|
1426 |
msgid "post format"
|
1427 |
msgstr "Postformat"
|
1428 |
|
1429 |
-
#: ../../plugins/blog2social-v-4-
|
1430 |
-
#: /plugins/blog2social-v-4-
|
1431 |
msgid "Insert full-text"
|
1432 |
msgstr "ganzen Text einfügen"
|
1433 |
|
1434 |
-
#: ../../plugins/blog2social-v-4-
|
1435 |
-
#: /plugins/blog2social-v-4-
|
1436 |
msgid "Delete text"
|
1437 |
msgstr "Text löschen"
|
1438 |
|
1439 |
-
#: ../../plugins/blog2social-v-4-
|
1440 |
-
#: /plugins/blog2social-v-4-
|
1441 |
-
#: /plugins/blog2social-v-4-
|
1442 |
msgid ""
|
1443 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
1444 |
"allowed to post identical or substantially similar content to multiple "
|
@@ -1449,9 +1445,9 @@ msgstr ""
|
|
1449 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
1450 |
"mehreren Accounts zu posten."
|
1451 |
|
1452 |
-
#: ../../plugins/blog2social-v-4-
|
1453 |
-
#: /plugins/blog2social-v-4-
|
1454 |
-
#: /plugins/blog2social-v-4-
|
1455 |
msgid ""
|
1456 |
"Violating these rules can result in Twitter suspending your account. Always "
|
1457 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -1461,302 +1457,301 @@ msgstr ""
|
|
1461 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
1462 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
1463 |
|
1464 |
-
#: ../../plugins/blog2social-v-4-
|
1465 |
-
#: /plugins/blog2social-v-4-
|
1466 |
-
#: /plugins/blog2social-v-4-
|
1467 |
msgid "Learn more about this"
|
1468 |
msgstr "Erfahre mehr darüber"
|
1469 |
|
1470 |
-
#: ../../plugins/blog2social-v-4-
|
1471 |
msgid "hide calendar"
|
1472 |
msgstr "Kalender ausblenden"
|
1473 |
|
1474 |
-
#: ../../plugins/blog2social-v-4-
|
1475 |
-
#: /plugins/blog2social-v-4-
|
1476 |
-
#: /plugins/blog2social-v-4-
|
1477 |
-
#: /plugins/blog2social-v-4-
|
1478 |
-
#: /plugins/blog2social-v-4-
|
1479 |
-
#: /plugins/blog2social-v-4-
|
1480 |
-
#: /plugins/blog2social-v-4-
|
1481 |
-
#: /plugins/blog2social-v-4-
|
1482 |
-
#: /plugins/blog2social-v-4-
|
1483 |
-
#: /plugins/blog2social-v-4-
|
1484 |
-
#: /plugins/blog2social-v-4-
|
1485 |
msgid "Write something about your post..."
|
1486 |
msgstr "Schreibe etwas..."
|
1487 |
|
1488 |
-
#: ../../plugins/blog2social-v-4-
|
1489 |
-
#: /plugins/blog2social-v-4-
|
1490 |
-
#: /plugins/blog2social-v-4-
|
1491 |
-
#: /plugins/blog2social-v-4-
|
1492 |
-
#: /plugins/blog2social-v-4-
|
1493 |
-
#: /plugins/blog2social-v-4-
|
1494 |
-
#: /plugins/blog2social-v-4-
|
1495 |
-
#: /plugins/blog2social-v-4-
|
1496 |
msgid "Change image"
|
1497 |
msgstr "Bild ändern\n"
|
1498 |
|
1499 |
-
#: ../../plugins/blog2social-v-4-
|
1500 |
msgid ""
|
1501 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
1502 |
"network"
|
1503 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
1504 |
|
1505 |
-
#: ../../plugins/blog2social-v-4-
|
1506 |
-
#: /plugins/blog2social-v-4-
|
1507 |
msgid ""
|
1508 |
"You want to change your link image, link title and link description for this "
|
1509 |
"network? Click here."
|
1510 |
msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
1511 |
|
1512 |
-
#: ../../plugins/blog2social-v-4-
|
1513 |
msgid "OG Meta title"
|
1514 |
msgstr "OG Titel"
|
1515 |
|
1516 |
-
#: ../../plugins/blog2social-v-4-
|
1517 |
msgid "OG Meta description"
|
1518 |
msgstr "OG Beschreibung"
|
1519 |
|
1520 |
-
#: ../../plugins/blog2social-v-4-
|
1521 |
msgid "Info: Change Card Meta tags image, title and description for this network"
|
1522 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
1523 |
|
1524 |
-
#: ../../plugins/blog2social-v-4-
|
1525 |
msgid "Card Meta title"
|
1526 |
msgstr "Card Titel"
|
1527 |
|
1528 |
-
#: ../../plugins/blog2social-v-4-
|
1529 |
msgid "Card Meta description"
|
1530 |
msgstr "Card Beschreibung"
|
1531 |
|
1532 |
-
#: ../../plugins/blog2social-v-4-
|
1533 |
msgid "required"
|
1534 |
msgstr "erforderlich"
|
1535 |
|
1536 |
-
#: ../../plugins/blog2social-v-4-
|
1537 |
-
#: /plugins/blog2social-v-4-
|
1538 |
msgid "Link"
|
1539 |
msgstr "Link"
|
1540 |
|
1541 |
-
#: ../../plugins/blog2social-v-4-
|
1542 |
msgid "The Headline..."
|
1543 |
msgstr "Die Überschrift..."
|
1544 |
|
1545 |
-
#: ../../plugins/blog2social-v-4-
|
1546 |
msgid "Hashtags"
|
1547 |
msgstr "Hashtags"
|
1548 |
|
1549 |
-
#: ../../plugins/blog2social-v-4-
|
1550 |
-
|
|
|
|
|
|
|
|
|
1551 |
msgid "Delay"
|
1552 |
msgstr "Verzögerung"
|
1553 |
|
1554 |
-
#: ../../plugins/blog2social-v-4-
|
1555 |
-
#: /plugins/blog2social-v-4-
|
1556 |
-
#: /plugins/blog2social-v-4-
|
1557 |
-
#: /plugins/blog2social-v-4-
|
1558 |
-
#: /plugins/blog2social-v-4-
|
1559 |
-
#: /plugins/blog2social-v-4-
|
1560 |
-
#: /plugins/blog2social-v-4-
|
1561 |
-
#: /plugins/blog2social-v-4-
|
1562 |
msgid "min"
|
1563 |
msgstr "min"
|
1564 |
|
1565 |
-
#: ../../plugins/blog2social-v-4-
|
1566 |
msgid "Add Retweet"
|
1567 |
msgstr "Retweet hinzufügen"
|
1568 |
|
1569 |
-
#: ../../plugins/blog2social-v-4-
|
1570 |
msgid "Share Now"
|
1571 |
msgstr "Sofort teilen"
|
1572 |
|
1573 |
-
#: ../../plugins/blog2social-v-4-
|
1574 |
-
#: /plugins/blog2social-v-4-
|
1575 |
-
#: /plugins/blog2social-v-4-
|
1576 |
msgid "Schedule for specific dates"
|
1577 |
msgstr "Für bestimmte Termine planen\n"
|
1578 |
|
1579 |
-
#: ../../plugins/blog2social-v-4-
|
1580 |
msgid "Schedule Recurrent Post"
|
1581 |
msgstr "regelmäßig Planen"
|
1582 |
|
1583 |
-
#: ../../plugins/blog2social-v-4-
|
1584 |
msgid "Interval"
|
1585 |
msgstr "Intervall"
|
1586 |
|
1587 |
-
#: ../../plugins/blog2social-v-4-
|
1588 |
-
#: /plugins/blog2social-v-4-
|
1589 |
msgid "Duration"
|
1590 |
msgstr "Dauer"
|
1591 |
|
1592 |
-
#: ../../plugins/blog2social-v-4-
|
1593 |
msgid "Repeat"
|
1594 |
msgstr "Wiederholungen"
|
1595 |
|
1596 |
-
#: ../../plugins/blog2social-v-4-
|
1597 |
msgid "Day of month"
|
1598 |
msgstr "Tag im Month"
|
1599 |
|
1600 |
-
#: ../../plugins/blog2social-v-4-
|
1601 |
msgid "Duration in days"
|
1602 |
msgstr "Abstand in Tagen"
|
1603 |
|
1604 |
-
#: ../../plugins/blog2social-v-4-
|
1605 |
msgid "Start date"
|
1606 |
msgstr "Startdatum"
|
1607 |
|
1608 |
-
#: ../../plugins/blog2social-v-4-
|
1609 |
-
#: /plugins/blog2social-v-4-
|
1610 |
-
#: /plugins/blog2social-v-4-
|
1611 |
-
#: /plugins/blog2social-v-4-
|
1612 |
-
#: /plugins/blog2social-v-4-8/views/b2s/partials/post-edit-modal.php:49
|
1613 |
msgid "Time"
|
1614 |
msgstr "Zeit"
|
1615 |
|
1616 |
-
#: ../../plugins/blog2social-v-4-
|
1617 |
msgid "Days"
|
1618 |
msgstr "Tage"
|
1619 |
|
1620 |
-
#: ../../plugins/blog2social-v-4-
|
1621 |
msgid "weekly"
|
1622 |
msgstr "wöchentlich"
|
1623 |
|
1624 |
-
#: ../../plugins/blog2social-v-4-
|
1625 |
msgid "monthly"
|
1626 |
msgstr "monatlich"
|
1627 |
|
1628 |
-
#: ../../plugins/blog2social-v-4-
|
1629 |
msgid "own period"
|
1630 |
msgstr "eigener Zeitraum"
|
1631 |
|
1632 |
-
#: ../../plugins/blog2social-v-4-
|
1633 |
msgid "Week"
|
1634 |
msgstr "Woche"
|
1635 |
|
1636 |
-
#: ../../plugins/blog2social-v-4-
|
1637 |
msgid "Weeks"
|
1638 |
msgstr "Wochen"
|
1639 |
|
1640 |
-
#: ../../plugins/blog2social-v-4-
|
1641 |
msgid "Month"
|
1642 |
msgstr "Monat"
|
1643 |
|
1644 |
-
#: ../../plugins/blog2social-v-4-
|
1645 |
msgid "Months"
|
1646 |
msgstr "Monate"
|
1647 |
|
1648 |
-
#: ../../plugins/blog2social-v-4-
|
1649 |
-
msgid "Times"
|
1650 |
-
msgstr "mal"
|
1651 |
-
|
1652 |
-
#: ../../plugins/blog2social-v-4-8/includes/B2S/Ship/Item.php:783
|
1653 |
msgid "End Of Month"
|
1654 |
msgstr "Monatsende"
|
1655 |
|
1656 |
-
#: ../../plugins/blog2social-v-4-
|
1657 |
msgid "Timespan"
|
1658 |
msgstr "Timespan"
|
1659 |
|
1660 |
-
#: ../../plugins/blog2social-v-4-
|
1661 |
-
#: /plugins/blog2social-v-4-
|
1662 |
-
#: /plugins/blog2social-v-4-
|
1663 |
msgid "Date"
|
1664 |
msgstr "Startdatum"
|
1665 |
|
1666 |
-
#: ../../plugins/blog2social-v-4-
|
1667 |
msgid "Mon"
|
1668 |
msgstr "Mo"
|
1669 |
|
1670 |
-
#: ../../plugins/blog2social-v-4-
|
1671 |
msgid "Tue"
|
1672 |
msgstr "Di"
|
1673 |
|
1674 |
-
#: ../../plugins/blog2social-v-4-
|
1675 |
msgid "Wed"
|
1676 |
msgstr "Mi"
|
1677 |
|
1678 |
-
#: ../../plugins/blog2social-v-4-
|
1679 |
msgid "Thu"
|
1680 |
msgstr "Do"
|
1681 |
|
1682 |
-
#: ../../plugins/blog2social-v-4-
|
1683 |
msgid "Fri"
|
1684 |
msgstr "Fr"
|
1685 |
|
1686 |
-
#: ../../plugins/blog2social-v-4-
|
1687 |
msgid "Sat"
|
1688 |
msgstr "Sa"
|
1689 |
|
1690 |
-
#: ../../plugins/blog2social-v-4-
|
1691 |
msgid "Sun"
|
1692 |
msgstr "So"
|
1693 |
|
1694 |
-
#: ../../plugins/blog2social-v-4-
|
1695 |
msgid "add another post"
|
1696 |
msgstr "einen weiteren Post anlegen\n"
|
1697 |
|
1698 |
-
#: ../../plugins/blog2social-v-4-
|
1699 |
msgid "Copy from original"
|
1700 |
msgstr "Text von Original kopieren"
|
1701 |
|
1702 |
-
#: ../../plugins/blog2social-v-4-
|
1703 |
msgid "Apply Settings To All Networks"
|
1704 |
msgstr "Planung für alle Netzwerke übernehmen"
|
1705 |
|
1706 |
-
#: ../../plugins/blog2social-v-4-
|
1707 |
msgid "Save as best time for this network"
|
1708 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
1709 |
|
1710 |
-
#: ../../plugins/blog2social-v-4-
|
1711 |
msgid "view social media post"
|
1712 |
msgstr "Zeige Social Media Beitrag an"
|
1713 |
|
1714 |
-
#: ../../plugins/blog2social-v-4-
|
1715 |
msgid "scheduled on"
|
1716 |
msgstr "geplant für"
|
1717 |
|
1718 |
-
#: ../../plugins/blog2social-v-4-
|
1719 |
msgid "Number of shared posts"
|
1720 |
msgstr "Anzahl geteilter Beiträge"
|
1721 |
|
1722 |
-
#: ../../plugins/blog2social-v-4-
|
1723 |
msgid "Number of scheduled posts"
|
1724 |
msgstr "Anzahl der geplanten Posts"
|
1725 |
|
1726 |
-
#: ../../plugins/blog2social-v-4-
|
1727 |
msgid "Modify pin board"
|
1728 |
msgstr "Pinnwand ändern"
|
1729 |
|
1730 |
-
#: ../../plugins/blog2social-v-4-
|
1731 |
msgid "Modify forum"
|
1732 |
msgstr "Forum ändern"
|
1733 |
|
1734 |
-
#: ../../plugins/blog2social-v-4-
|
1735 |
msgid "Modify subreddit"
|
1736 |
msgstr "Subreddit ändern"
|
1737 |
|
1738 |
-
#: ../../plugins/blog2social-v-4-
|
1739 |
msgid "Auto-Post on Social Media"
|
1740 |
msgstr "Automatisch auf Social Media teilen"
|
1741 |
|
1742 |
-
#: ../../plugins/blog2social-v-4-
|
1743 |
msgid "Social Media Content Calendar"
|
1744 |
msgstr "Social Media Kalender"
|
1745 |
|
1746 |
-
#: ../../plugins/blog2social-v-4-
|
1747 |
msgid "This post will be shared into your social media on"
|
1748 |
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
1749 |
|
1750 |
-
#: ../../plugins/blog2social-v-4-
|
1751 |
-
#: /plugins/blog2social-v-4-
|
1752 |
msgid "show details"
|
1753 |
msgstr "siehe Details"
|
1754 |
|
1755 |
-
#: ../../plugins/blog2social-v-4-
|
1756 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
1757 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
1758 |
|
1759 |
-
#: ../../plugins/blog2social-v-4-
|
1760 |
msgid ""
|
1761 |
"Please, make sure that your post are publish on this blog on this moment. "
|
1762 |
"Then you can auto post your post with Blog2social."
|
@@ -1764,28 +1759,28 @@ msgstr ""
|
|
1764 |
"Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
|
1765 |
" Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
1766 |
|
1767 |
-
#: ../../plugins/blog2social-v-4-
|
1768 |
msgid "Upgrade to Premium"
|
1769 |
msgstr "Premium freischalten"
|
1770 |
|
1771 |
-
#: ../../plugins/blog2social-v-4-
|
1772 |
msgctxt "command (plugins)"
|
1773 |
msgid "Deactivate"
|
1774 |
msgstr "Deaktivieren"
|
1775 |
|
1776 |
-
#: ../../plugins/blog2social-v-4-
|
1777 |
msgid "Your post could not be posted."
|
1778 |
msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
|
1779 |
|
1780 |
-
#: ../../plugins/blog2social-v-4-
|
1781 |
msgid "Your authorization has expired. Please check your authorization."
|
1782 |
msgstr "Deine Autorisierung ist abgelaufen. Bitte überprüfe deine Autorisierung."
|
1783 |
|
1784 |
-
#: ../../plugins/blog2social-v-4-
|
1785 |
msgid "The network has marked the post as spam or abusive."
|
1786 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
1787 |
|
1788 |
-
#: ../../plugins/blog2social-v-4-
|
1789 |
msgid ""
|
1790 |
"We don't have the permission to publish your post. Please check your "
|
1791 |
"authorization."
|
@@ -1793,7 +1788,7 @@ msgstr ""
|
|
1793 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
1794 |
"überprüfe deine Autorisierung."
|
1795 |
|
1796 |
-
#: ../../plugins/blog2social-v-4-
|
1797 |
msgid ""
|
1798 |
"Your authorization is interrupted. Please check your authorization. Please "
|
1799 |
"see <a target=\"_blank\" href=\"https://www.blog2social."
|
@@ -1803,15 +1798,15 @@ msgstr ""
|
|
1803 |
"Siehe <a target=\"_blank\" href=\"https://www.blog2social."
|
1804 |
"com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
1805 |
|
1806 |
-
#: ../../plugins/blog2social-v-4-
|
1807 |
msgid "Your daily limit has been reached."
|
1808 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
1809 |
|
1810 |
-
#: ../../plugins/blog2social-v-4-
|
1811 |
msgid "Your post could not be posted, because your image is not available."
|
1812 |
msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
|
1813 |
|
1814 |
-
#: ../../plugins/blog2social-v-4-
|
1815 |
msgid ""
|
1816 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
1817 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
@@ -1821,7 +1816,7 @@ msgstr ""
|
|
1821 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
1822 |
"loesungen.html\">FAQ</a>."
|
1823 |
|
1824 |
-
#: ../../plugins/blog2social-v-4-
|
1825 |
msgid ""
|
1826 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
|
1827 |
"//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
|
@@ -1831,13 +1826,13 @@ msgstr ""
|
|
1831 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
1832 |
"loesungen.html\">FAQ</a>."
|
1833 |
|
1834 |
-
#: ../../plugins/blog2social-v-4-
|
1835 |
msgid "Your daily limit for this network has been reached. Please try again later."
|
1836 |
msgstr ""
|
1837 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
1838 |
"versuche es später noch einmal."
|
1839 |
|
1840 |
-
#: ../../plugins/blog2social-v-4-
|
1841 |
msgid ""
|
1842 |
"The network can not publish special characters such as Emoji. Please see <a "
|
1843 |
"target=\"_blank\" href=\"https://www.blog2social."
|
@@ -1847,80 +1842,80 @@ msgstr ""
|
|
1847 |
"//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
|
1848 |
"html\">FAQ</a>."
|
1849 |
|
1850 |
-
#: ../../plugins/blog2social-v-4-
|
1851 |
msgid "Your post is a duplicate."
|
1852 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
1853 |
|
1854 |
-
#: ../../plugins/blog2social-v-4-
|
1855 |
msgid "The network requires a public url."
|
1856 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
1857 |
|
1858 |
-
#: ../../plugins/blog2social-v-4-
|
1859 |
msgid "You have already retweeted this post."
|
1860 |
msgstr "Du hast diesen Post bereits retweetet.\n"
|
1861 |
|
1862 |
-
#: ../../plugins/blog2social-v-4-
|
1863 |
msgid "Your group can not be found by the network."
|
1864 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden. "
|
1865 |
|
1866 |
-
#: ../../plugins/blog2social-v-4-
|
1867 |
-
#: /plugins/blog2social-v-4-
|
1868 |
-
#: 4-
|
1869 |
msgid "Dashboard"
|
1870 |
msgstr "Dashboard"
|
1871 |
|
1872 |
-
#: ../../plugins/blog2social-v-4-
|
1873 |
-
#: /plugins/blog2social-v-4-
|
1874 |
-
#: 4-
|
1875 |
msgid "Posts & Sharing"
|
1876 |
msgstr "Beiträge"
|
1877 |
|
1878 |
-
#: ../../plugins/blog2social-v-4-
|
1879 |
-
#: /plugins/blog2social-v-4-
|
1880 |
-
#: 4-
|
1881 |
#: php:17
|
1882 |
msgid "Networks"
|
1883 |
msgstr "Netzwerke"
|
1884 |
|
1885 |
-
#: ../../plugins/blog2social-v-4-
|
1886 |
-
#: /plugins/blog2social-v-4-
|
1887 |
-
#: 4-
|
1888 |
-
#: 53 ../../plugins/blog2social-v-4-
|
1889 |
msgid "Settings"
|
1890 |
msgstr "Einstellungen"
|
1891 |
|
1892 |
-
#: ../../plugins/blog2social-v-4-
|
1893 |
-
#: /plugins/blog2social-v-4-
|
1894 |
-
#: 4-
|
1895 |
msgid "PR-Service"
|
1896 |
msgstr "PR-Service"
|
1897 |
|
1898 |
-
#: ../../plugins/blog2social-v-4-
|
1899 |
-
#: /plugins/blog2social-v-4-
|
1900 |
-
#: 4-
|
1901 |
-
#:
|
1902 |
msgid "How to & FAQ"
|
1903 |
msgstr "How to & FAQ"
|
1904 |
|
1905 |
-
#: ../../plugins/blog2social-v-4-
|
1906 |
msgid "Premium"
|
1907 |
msgstr "Premium"
|
1908 |
|
1909 |
-
#: ../../plugins/blog2social-v-4-
|
1910 |
msgid "Blog2Social"
|
1911 |
msgstr "Blog2Social"
|
1912 |
|
1913 |
-
#: ../../plugins/blog2social-v-4-
|
1914 |
-
#: /plugins/blog2social-v-4-
|
1915 |
msgid "or"
|
1916 |
msgstr "oder"
|
1917 |
|
1918 |
-
#: ../../plugins/blog2social-v-4-
|
1919 |
-
#: /plugins/blog2social-v-4-
|
1920 |
msgid "back to install plugins"
|
1921 |
msgstr "zurück zur Pluginübersicht"
|
1922 |
|
1923 |
-
#: ../../plugins/blog2social-v-4-
|
1924 |
msgid ""
|
1925 |
"<strong>Rate it!</strong> If you like Blog2Social, please give us a 5 star "
|
1926 |
"rating. I there is anything that does not work for you, please contact us!"
|
@@ -1928,36 +1923,36 @@ msgstr ""
|
|
1928 |
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
1929 |
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
1930 |
|
1931 |
-
#: ../../plugins/blog2social-v-4-
|
1932 |
-
#: /plugins/blog2social-v-4-
|
1933 |
msgid "RATE BLOG2SOCIAL"
|
1934 |
msgstr "Blog2Social jetzt bewerten"
|
1935 |
|
1936 |
-
#: ../../plugins/blog2social-v-4-
|
1937 |
msgid "hide"
|
1938 |
msgstr "ausblenden"
|
1939 |
|
1940 |
-
#: ../../plugins/blog2social-v-4-
|
1941 |
msgid "All Authors"
|
1942 |
msgstr "alle Autoren"
|
1943 |
|
1944 |
-
#: ../../plugins/blog2social-v-4-
|
1945 |
msgid "All Types"
|
1946 |
msgstr "alle Typen"
|
1947 |
|
1948 |
-
#: ../../plugins/blog2social-v-4-
|
1949 |
msgid "You have no posts published or scheduled"
|
1950 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
|
1951 |
|
1952 |
-
#: ../../plugins/blog2social-v-4-
|
1953 |
msgid "Publish on PR-Gateway"
|
1954 |
msgstr "Beitrag über PR-Gateway veröffentlichen"
|
1955 |
|
1956 |
-
#: ../../plugins/blog2social-v-4-
|
1957 |
msgid "on Blog"
|
1958 |
msgstr "auf dem Blog"
|
1959 |
|
1960 |
-
#: ../../plugins/blog2social-v-4-
|
1961 |
msgid ""
|
1962 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
1963 |
"your server. Install cURL and activate Blog2Social again."
|
@@ -1965,8 +1960,8 @@ msgstr ""
|
|
1965 |
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
1966 |
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
1967 |
|
1968 |
-
#: ../../plugins/blog2social-v-4-
|
1969 |
-
#: /plugins/blog2social-v-4-
|
1970 |
msgid ""
|
1971 |
"Please see <a href=\"https://www.blog2social."
|
1972 |
"com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social."
|
@@ -1976,7 +1971,7 @@ msgstr ""
|
|
1976 |
"com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
|
1977 |
"blog2social.html\" target=\"_blank\">FAQ</a>"
|
1978 |
|
1979 |
-
#: ../../plugins/blog2social-v-4-
|
1980 |
msgid ""
|
1981 |
"Blog2Social used PHP. Your installed PHP version on your server is not high "
|
1982 |
"enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
|
@@ -1985,7 +1980,7 @@ msgstr ""
|
|
1985 |
"um Blog2Social zu nutzen. Aktualisere Deine PHP Version auf 5.5.3 oder höher."
|
1986 |
" "
|
1987 |
|
1988 |
-
#: ../../plugins/blog2social-v-4-
|
1989 |
msgid ""
|
1990 |
"Blog2Social does not seem to have permission to write in your WordPress "
|
1991 |
"database. Please assign Blog2Social the permission to write in the WordPress "
|
@@ -1998,7 +1993,7 @@ msgstr ""
|
|
1998 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
1999 |
"zu tun.\n"
|
2000 |
|
2001 |
-
#: ../../plugins/blog2social-v-4-
|
2002 |
msgid ""
|
2003 |
"<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
|
2004 |
"requirements-for-installing-blog2social.html\" target=\"_blank\"> Please find "
|
@@ -2008,27 +2003,27 @@ msgstr ""
|
|
2008 |
"com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
|
2009 |
"blog2social.html\" target=\"_blank\">Siehe FAQ</a>"
|
2010 |
|
2011 |
-
#: ../../plugins/blog2social-v-4-
|
2012 |
msgid "Couldn't find your answer?"
|
2013 |
msgstr "Konntest Du Deine Antwort nicht finden?"
|
2014 |
|
2015 |
-
#: ../../plugins/blog2social-v-4-
|
2016 |
msgid "Contact Support by Email"
|
2017 |
msgstr "Support-Team per E-Mail kontaktieren"
|
2018 |
|
2019 |
-
#: ../../plugins/blog2social-v-4-
|
2020 |
msgid "Call us: +49 2181 7569-277"
|
2021 |
msgstr "Ruf' uns an: +49 2181 7569-277"
|
2022 |
|
2023 |
-
#: ../../plugins/blog2social-v-4-
|
2024 |
msgid "(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
|
2025 |
msgstr "(Anrufzeiten: Montags bis Freitag von 9:00 bis 17:00 MEZ)"
|
2026 |
|
2027 |
-
#: ../../plugins/blog2social-v-4-
|
2028 |
msgid "How to use Blog2Social"
|
2029 |
msgstr "So nutzt Du Blog2Social"
|
2030 |
|
2031 |
-
#: ../../plugins/blog2social-v-4-
|
2032 |
msgid ""
|
2033 |
"Learn how to get the most out of Blog2Social to promote your blog on social "
|
2034 |
"media. Find step-by-step instructions and tips for FREE and PREMIUM users."
|
@@ -2037,54 +2032,54 @@ msgstr ""
|
|
2037 |
"auf den Social Media zu bewerben. Siehe Dir dazu die Schritt-für-Schritt "
|
2038 |
"Anleitung und Tipps für Free und Premium Nutzer an."
|
2039 |
|
2040 |
-
#: ../../plugins/blog2social-v-4-
|
2041 |
msgid "Do you need help?"
|
2042 |
msgstr "Brauchst Du Unterstützung?"
|
2043 |
|
2044 |
-
#: ../../plugins/blog2social-v-4-
|
2045 |
msgid "Find answers to common questions in our FAQ."
|
2046 |
msgstr "Finde Antworten zu häufig gestelle Fragen in umserem FAQ."
|
2047 |
|
2048 |
-
#: ../../plugins/blog2social-v-4-
|
2049 |
msgid "search FAQ"
|
2050 |
msgstr "suchen"
|
2051 |
|
2052 |
-
#: ../../plugins/blog2social-v-4-
|
2053 |
-
#: /plugins/blog2social-v-4-
|
2054 |
msgid "TOP 5 FAQ"
|
2055 |
msgstr "TOP 5 FAQ"
|
2056 |
|
2057 |
-
#: ../../plugins/blog2social-v-4-
|
2058 |
-
#: /plugins/blog2social-v-4-
|
2059 |
-
#: v-4-
|
2060 |
-
#:
|
2061 |
-
#:
|
2062 |
-
#: ./../plugins/blog2social-v-4-
|
2063 |
-
#: /plugins/blog2social-v-4-
|
2064 |
msgid "filter"
|
2065 |
msgstr "Filter"
|
2066 |
|
2067 |
-
#: ../../plugins/blog2social-v-4-
|
2068 |
-
#: /plugins/blog2social-v-4-
|
2069 |
msgid "Delete"
|
2070 |
msgstr "löschen"
|
2071 |
|
2072 |
-
#: ../../plugins/blog2social-v-4-
|
2073 |
-
#: /plugins/blog2social-v-4-
|
2074 |
-
#: v-4-
|
2075 |
-
#:
|
2076 |
msgid "Create new profile"
|
2077 |
msgstr "neues Profil erstellen"
|
2078 |
|
2079 |
-
#: ../../plugins/blog2social-v-4-
|
2080 |
msgid "You want to define a new combination of networks?"
|
2081 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
2082 |
|
2083 |
-
#: ../../plugins/blog2social-v-4-
|
2084 |
msgid "create"
|
2085 |
msgstr "erstellen"
|
2086 |
|
2087 |
-
#: ../../plugins/blog2social-v-4-
|
2088 |
msgid ""
|
2089 |
"All connected networks will be displayed as default \"Standard\" networks "
|
2090 |
"profile.<br><br>You may define various sets of social media accounts, "
|
@@ -2124,78 +2119,112 @@ msgstr ""
|
|
2124 |
"verschiedene Netzwerk-Profile noch schneller auf Deine verschiedenen "
|
2125 |
"Netzwerk-Kombinationen zuzugreifen."
|
2126 |
|
2127 |
-
#: ../../plugins/blog2social-v-4-
|
2128 |
msgid "You want to add another network profile, pages or groups?"
|
2129 |
msgstr ""
|
2130 |
"Du möchtest ein weiteres Netzwerkprofil anlegen oder auf Seiten und Gruppen "
|
2131 |
"posten?"
|
2132 |
|
2133 |
-
#: ../../plugins/blog2social-v-4-
|
2134 |
msgid "Delete Profile"
|
2135 |
msgstr "Profil löschen"
|
2136 |
|
2137 |
-
#: ../../plugins/blog2social-v-4-
|
2138 |
msgid "Do you really want to delete this profile"
|
2139 |
msgstr "Soll Dein Profil wirklich gelöscht werden?"
|
2140 |
|
2141 |
-
#: ../../plugins/blog2social-v-4-
|
2142 |
-
#: /plugins/blog2social-v-4-
|
2143 |
-
#: /plugins/blog2social-v-4-
|
2144 |
-
#: /plugins/blog2social-v-4-
|
2145 |
-
#: /plugins/blog2social-v-4-
|
2146 |
-
#: /plugins/blog2social-v-4-
|
2147 |
msgid "NO"
|
2148 |
msgstr "NEIN"
|
2149 |
|
2150 |
-
#: ../../plugins/blog2social-v-4-
|
2151 |
-
#: /plugins/blog2social-v-4-
|
2152 |
-
#: v-4-
|
2153 |
-
#:
|
2154 |
-
#: sched.php:87 ../../plugins/blog2social-v-4-
|
2155 |
msgid "YES, delete"
|
2156 |
msgstr "Ja, löschen"
|
2157 |
|
2158 |
-
#: ../../plugins/blog2social-v-4-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2159 |
msgid "Delete Authorization"
|
2160 |
msgstr "Autorisierung löschen"
|
2161 |
|
2162 |
-
#: ../../plugins/blog2social-v-4-
|
2163 |
msgid "Do you really want to delete this authorization"
|
2164 |
msgstr "Soll die Autorisierung wirklich löschen werden?"
|
2165 |
|
2166 |
-
#: ../../plugins/blog2social-v-4-
|
2167 |
msgid "You have still set up scheduled posts for this network:"
|
2168 |
msgstr "Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
2169 |
|
2170 |
-
#: ../../plugins/blog2social-v-4-
|
2171 |
msgid "scheduled posts"
|
2172 |
msgstr "geplante Beiträge"
|
2173 |
|
2174 |
-
#: ../../plugins/blog2social-v-4-
|
2175 |
msgid "View schedule posts for this profile"
|
2176 |
msgstr "Gehe zu geplanten Beiträgen für dieses Profil."
|
2177 |
|
2178 |
-
#: ../../plugins/blog2social-v-4-
|
2179 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
2180 |
msgstr "Bitte autorisiere Dein Konto bei Blog2Social und versuche es erneut."
|
2181 |
|
2182 |
-
#: ../../plugins/blog2social-v-4-
|
2183 |
msgid "Change successful"
|
2184 |
msgstr "Änderung erfolgreich"
|
2185 |
|
2186 |
-
#: ../../plugins/blog2social-v-4-
|
2187 |
msgid "Could not be changed"
|
2188 |
msgstr "Kann nicht geändert werden"
|
2189 |
|
2190 |
-
#: ../../plugins/blog2social-v-4-
|
2191 |
msgid "modfiy"
|
2192 |
msgstr "ändern"
|
2193 |
|
2194 |
-
#: ../../plugins/blog2social-v-4-
|
2195 |
msgid "Twitter terms of service update February 2018"
|
2196 |
msgstr "Twitter: Änderung der Allgemeinen Geschäftsbedingungen - Update Februar 2018"
|
2197 |
|
2198 |
-
#: ../../plugins/blog2social-v-4-
|
2199 |
msgid ""
|
2200 |
" In February 2018 Twitter changed their terms of service (TOS) in order to "
|
2201 |
"prevent malicious activity and spam. Users are no longer allowed to post "
|
@@ -2213,15 +2242,15 @@ msgstr ""
|
|
2213 |
"dürfen auch Social-Media-Tools den Nutzern nicht mehr ermöglichen, dieselbe "
|
2214 |
"Nachricht an mehrere Twitter-Accounts zu senden."
|
2215 |
|
2216 |
-
#: ../../plugins/blog2social-v-4-
|
2217 |
msgid "More Information about these changes"
|
2218 |
msgstr "Weitere Informationen zu den Twitter Änderungen"
|
2219 |
|
2220 |
-
#: ../../plugins/blog2social-v-4-
|
2221 |
msgid "What does this mean for your work with Blog2Social?"
|
2222 |
msgstr "Was bedeutet das für meine Arbeit mit Blog2Social?"
|
2223 |
|
2224 |
-
#: ../../plugins/blog2social-v-4-
|
2225 |
msgid ""
|
2226 |
"Other social media tools simply no longer allow users to select multiple "
|
2227 |
"Twitter accounts. However, Blog2Social was originally built with "
|
@@ -2245,7 +2274,7 @@ msgstr ""
|
|
2245 |
"die Twitter Cards können Sie Ihre Tweets für jeden Twitter-Account "
|
2246 |
"individuell anpassen.\n"
|
2247 |
|
2248 |
-
#: ../../plugins/blog2social-v-4-
|
2249 |
msgid ""
|
2250 |
"If you have scheduled identical or similar Twitter posts for multiple "
|
2251 |
"accounts, please make sure to either edit or delete them, according to "
|
@@ -2263,7 +2292,7 @@ msgstr ""
|
|
2263 |
"Beitrag öffnet ein Menü, in dem Sie den geplanten Tweet bearbeiten oder "
|
2264 |
"löschen können."
|
2265 |
|
2266 |
-
#: ../../plugins/blog2social-v-4-
|
2267 |
msgid ""
|
2268 |
"Blog2Social also provides you with individual comment fields for each of "
|
2269 |
"your Tweets. This allows you to share your posts on all your Twitter "
|
@@ -2273,7 +2302,7 @@ msgstr ""
|
|
2273 |
"Ihrer Tweets zur Verfügung. So können Sie Ihre Beiträge auf allen Ihren "
|
2274 |
"Twitter-Accounts mit individuell angepassten Kommentaren teilen."
|
2275 |
|
2276 |
-
#: ../../plugins/blog2social-v-4-
|
2277 |
msgid ""
|
2278 |
"Please note that violating these rules can result in Twitter suspending your "
|
2279 |
"account. "
|
@@ -2281,16 +2310,16 @@ msgstr ""
|
|
2281 |
"Bitte beachten Sie, dass ein Verstoß gegen die neuen Twitter-Regeln dazu "
|
2282 |
"führen kann, dass Twitter Ihren Account sperrt."
|
2283 |
|
2284 |
-
#: ../../plugins/blog2social-v-4-
|
2285 |
msgid "I understand and I will follow the Twitter TOS rules"
|
2286 |
msgstr "Ich habe verstanden und werde die neuen Twitter-Richtlinien befolgen"
|
2287 |
|
2288 |
-
#: ../../plugins/blog2social-v-4-
|
2289 |
#: 10
|
2290 |
msgid "Do you want to delete your scheduled posts?"
|
2291 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
2292 |
|
2293 |
-
#: ../../plugins/blog2social-v-4-
|
2294 |
#: 13
|
2295 |
msgid ""
|
2296 |
"Do you want Blog2Social to delete all your scheduled social media posts? "
|
@@ -2300,62 +2329,62 @@ msgstr ""
|
|
2300 |
"geplanten Beiträge löscht? Deine geplanten Beiträge werden anschließend "
|
2301 |
"nicht weiter an Deine sozialen Netzwerke versendet."
|
2302 |
|
2303 |
-
#: ../../plugins/blog2social-v-4-
|
2304 |
#: 14
|
2305 |
msgid "Delete scheduled posts"
|
2306 |
msgstr "Geplante Beiträge löschen"
|
2307 |
|
2308 |
-
#: ../../plugins/blog2social-v-4-
|
2309 |
#: 17
|
2310 |
msgid "Continue deactivation"
|
2311 |
msgstr "Deaktivierung fortsetzen"
|
2312 |
|
2313 |
-
#: ../../plugins/blog2social-v-4-
|
2314 |
msgid "Edit Post"
|
2315 |
msgstr "Beitrag bearbeiten"
|
2316 |
|
2317 |
-
#: ../../plugins/blog2social-v-4-
|
2318 |
msgid "This post is blocked by %1"
|
2319 |
msgstr "% 1bearbeitet gerade diesen Beitrag."
|
2320 |
|
2321 |
-
#: ../../plugins/blog2social-v-4-
|
2322 |
msgid "The orginal tweet is scheduled on:"
|
2323 |
msgstr "Der Original-Tweet ist geplant für:"
|
2324 |
|
2325 |
-
#: ../../plugins/blog2social-v-4-
|
2326 |
msgid "Change details"
|
2327 |
msgstr "Änderungen übernehmen"
|
2328 |
|
2329 |
-
#: ../../plugins/blog2social-v-4-
|
2330 |
msgid "Sort by network"
|
2331 |
msgstr "Nach Netzwerk sortieren"
|
2332 |
|
2333 |
-
#: ../../plugins/blog2social-v-4-
|
2334 |
-
#: /plugins/blog2social-v-4-
|
2335 |
msgid "add post"
|
2336 |
msgstr "neuer Beitrag"
|
2337 |
|
2338 |
-
#: ../../plugins/blog2social-v-4-
|
2339 |
-
#: /plugins/blog2social-v-4-
|
2340 |
-
#: /plugins/blog2social-v-4-
|
2341 |
msgid "Choose your"
|
2342 |
msgstr "Wähle Deinen"
|
2343 |
|
2344 |
-
#: ../../plugins/blog2social-v-4-
|
2345 |
-
#: /plugins/blog2social-v-4-
|
2346 |
-
#: /plugins/blog2social-v-4-
|
2347 |
msgid "Post Format"
|
2348 |
msgstr "Postformat"
|
2349 |
|
2350 |
-
#: ../../plugins/blog2social-v-4-
|
2351 |
-
#: /plugins/blog2social-v-4-
|
2352 |
-
#: /plugins/blog2social-v-4-
|
2353 |
msgid "for:"
|
2354 |
msgstr "für:"
|
2355 |
|
2356 |
-
#: ../../plugins/blog2social-v-4-
|
2357 |
-
#: /plugins/blog2social-v-4-
|
2358 |
-
#: /plugins/blog2social-v-4-
|
2359 |
msgid ""
|
2360 |
"Define the default settings for the custom post format for all of your "
|
2361 |
"Facebook accounts in the Blog2Social settings."
|
@@ -2363,9 +2392,9 @@ msgstr ""
|
|
2363 |
"Definiere Dein Standard-Beitragsformat für alle Deine Facebook-Verbindungen "
|
2364 |
"unter den Blog2Social Einstellungen."
|
2365 |
|
2366 |
-
#: ../../plugins/blog2social-v-4-
|
2367 |
-
#: /plugins/blog2social-v-4-
|
2368 |
-
#: /plugins/blog2social-v-4-
|
2369 |
msgid ""
|
2370 |
"Define the default settings for the custom post format for all of your "
|
2371 |
"Twitter accounts in the Blog2Social settings."
|
@@ -2373,9 +2402,9 @@ msgstr ""
|
|
2373 |
"Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
|
2374 |
"unter den Blog2Social Einstellungen."
|
2375 |
|
2376 |
-
#: ../../plugins/blog2social-v-4-
|
2377 |
-
#: /plugins/blog2social-v-4-
|
2378 |
-
#: /plugins/blog2social-v-4-
|
2379 |
msgid ""
|
2380 |
"Define the default settings for the custom post format for all of your "
|
2381 |
"Google+ accounts in the Blog2Social settings."
|
@@ -2383,9 +2412,9 @@ msgstr ""
|
|
2383 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
2384 |
"unter den Blog2Social Einstellungen."
|
2385 |
|
2386 |
-
#: ../../plugins/blog2social-v-4-
|
2387 |
-
#: /plugins/blog2social-v-4-
|
2388 |
-
#: /plugins/blog2social-v-4-
|
2389 |
msgid ""
|
2390 |
"Define the default settings for the custom post format for all of your "
|
2391 |
"Instagram accounts in the Blog2Social settings."
|
@@ -2393,28 +2422,28 @@ msgstr ""
|
|
2393 |
"Definiere Dein Standard-Beitragsformat für alle Deine Instagram-Verbindungen "
|
2394 |
"unter den Blog2Social Einstellungen."
|
2395 |
|
2396 |
-
#: ../../plugins/blog2social-v-4-
|
2397 |
-
#: /plugins/blog2social-v-4-
|
2398 |
-
#: /plugins/blog2social-v-4-
|
2399 |
msgid "Select image for"
|
2400 |
msgstr "Wähle Bild aus für"
|
2401 |
|
2402 |
-
#: ../../plugins/blog2social-v-4-
|
2403 |
msgid "Select a post"
|
2404 |
msgstr "Beitrag auswählen"
|
2405 |
|
2406 |
-
#: ../../plugins/blog2social-v-4-
|
2407 |
-
#: /plugins/blog2social-v-4-
|
2408 |
msgid "Need to schedule your posts?"
|
2409 |
msgstr "Du möchtest Deine Beiträge planen?"
|
2410 |
|
2411 |
-
#: ../../plugins/blog2social-v-4-
|
2412 |
-
#: /plugins/blog2social-v-4-
|
2413 |
msgid "Blog2Social Premium covers everything you need."
|
2414 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
2415 |
|
2416 |
-
#: ../../plugins/blog2social-v-4-
|
2417 |
-
#: /plugins/blog2social-v-4-
|
2418 |
msgid ""
|
2419 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
2420 |
"desired date and you are ready to go!"
|
@@ -2422,13 +2451,13 @@ msgstr ""
|
|
2422 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
2423 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
2424 |
|
2425 |
-
#: ../../plugins/blog2social-v-4-
|
2426 |
-
#: /plugins/blog2social-v-4-
|
2427 |
msgid "Schedule post recurrently"
|
2428 |
msgstr "Beitrag mehrfach planen"
|
2429 |
|
2430 |
-
#: ../../plugins/blog2social-v-4-
|
2431 |
-
#: /plugins/blog2social-v-4-
|
2432 |
msgid ""
|
2433 |
"You have evergreen content you want to re-share from time to time in your "
|
2434 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
@@ -2438,16 +2467,16 @@ msgstr ""
|
|
2438 |
"möchtest? Plane Deinen Evergreen-Content einmalig, mehrfach oder "
|
2439 |
"wiederholend zu verschiedenden Zeiten."
|
2440 |
|
2441 |
-
#: ../../plugins/blog2social-v-4-
|
2442 |
-
#: /plugins/blog2social-v-4-
|
2443 |
-
#: v-4-
|
2444 |
-
#:
|
2445 |
-
#:
|
2446 |
msgid "Best Time Scheduler"
|
2447 |
msgstr "Beste Zeiten Manager"
|
2448 |
|
2449 |
-
#: ../../plugins/blog2social-v-4-
|
2450 |
-
#: /plugins/blog2social-v-4-
|
2451 |
msgid ""
|
2452 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
2453 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -2459,40 +2488,40 @@ msgstr ""
|
|
2459 |
"Dein Beitrag zu den Besten Zeiten für jedes Netzwerk zu planen. Erhalte mehr "
|
2460 |
"Reichweite und verlängere die Lebensdauer Deiner Beiträge."
|
2461 |
|
2462 |
-
#: ../../plugins/blog2social-v-4-
|
2463 |
-
#: /plugins/blog2social-v-4-
|
2464 |
-
#: /plugins/blog2social-v-4-
|
2465 |
msgid "Delete entries from the reporting"
|
2466 |
msgstr "Einträge aus dem Reporting löschen"
|
2467 |
|
2468 |
-
#: ../../plugins/blog2social-v-4-
|
2469 |
-
#: /plugins/blog2social-v-4-
|
2470 |
-
#: /plugins/blog2social-v-4-
|
2471 |
msgid "You are sure, you want to delete entries from the reporting?"
|
2472 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
2473 |
|
2474 |
-
#: ../../plugins/blog2social-v-4-
|
2475 |
-
#: /plugins/blog2social-v-4-
|
2476 |
-
#: /plugins/blog2social-v-4-
|
2477 |
-
#: /plugins/blog2social-v-4-
|
2478 |
msgid "Number of entries"
|
2479 |
msgstr "Anzahl der Einträge"
|
2480 |
|
2481 |
-
#: ../../plugins/blog2social-v-4-
|
2482 |
msgid "Delete entries form the scheduling"
|
2483 |
msgstr "Einträge aus der Planung löschen"
|
2484 |
|
2485 |
-
#: ../../plugins/blog2social-v-4-
|
2486 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
2487 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
2488 |
|
2489 |
-
#: ../../plugins/blog2social-v-4-
|
2490 |
-
#: /plugins/blog2social-v-4-
|
2491 |
msgid "Your license: Blog2Social"
|
2492 |
msgstr "Du nutzt Blog2Social"
|
2493 |
|
2494 |
-
#: ../../plugins/blog2social-v-4-
|
2495 |
-
#: /plugins/blog2social-v-4-
|
2496 |
msgid ""
|
2497 |
"Upgrade to Blog2Social Premium to schedule your posts for the best time, "
|
2498 |
"once or recurringly with the Best Time Scheduler and post to pages, groups "
|
@@ -2502,47 +2531,42 @@ msgstr ""
|
|
2502 |
"im Voraus planen, zur einmaligen oder wiederholten Veröffentlichung. Und Du "
|
2503 |
"kannst auf Seiten, in Gruppen und mehreren Accounts pro Netzwerk posten."
|
2504 |
|
2505 |
-
#: ../../plugins/blog2social-v-4-
|
2506 |
-
#: /plugins/blog2social-v-4-
|
2507 |
-
|
2508 |
-
msgstr "mehr erfahren"
|
2509 |
-
|
2510 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/premium.php:27 ../..
|
2511 |
-
#: /plugins/blog2social-v-4-8/views/b2s/widgets/premium.php:19 ../..
|
2512 |
-
#: /plugins/blog2social-v-4-8/views/b2s/html/sidebar.phtml:24
|
2513 |
msgid "Enter license key and change your version"
|
2514 |
msgstr "Lizenzschlüssel eingeben und Version ändern"
|
2515 |
|
2516 |
-
#: ../../plugins/blog2social-v-4-
|
2517 |
-
#: /plugins/blog2social-v-4-
|
2518 |
-
#: /plugins/blog2social-v-4-
|
2519 |
msgid "Activate"
|
2520 |
msgstr "Aktivieren"
|
2521 |
|
2522 |
-
#: ../../plugins/blog2social-v-4-
|
2523 |
msgid "Social Media Sharing"
|
2524 |
msgstr "Netzwerkauswahl"
|
2525 |
|
2526 |
-
#: ../../plugins/blog2social-v-4-
|
2527 |
-
#: /plugins/blog2social-v-4-
|
2528 |
msgid "Cross-share to all popular social networks"
|
2529 |
msgstr "Teilen von Blogbeiträgen auf allen Social Media"
|
2530 |
|
2531 |
-
#: ../../plugins/blog2social-v-4-
|
2532 |
msgid "Auto Posting"
|
2533 |
msgstr "Auto-Posting"
|
2534 |
|
2535 |
-
#: ../../plugins/blog2social-v-4-
|
2536 |
-
#: /plugins/blog2social-v-4-
|
2537 |
msgid "Automatically share your posts whenever you publish a new blog post"
|
2538 |
msgstr "Blogbeiträge automatisch beim Veröffentlichen teilen"
|
2539 |
|
2540 |
-
#: ../../plugins/blog2social-v-4-
|
2541 |
msgid "Customizing Social Media Posts"
|
2542 |
msgstr "Individualisieren"
|
2543 |
|
2544 |
-
#: ../../plugins/blog2social-v-4-
|
2545 |
-
#: /plugins/blog2social-v-4-
|
2546 |
msgid ""
|
2547 |
"Edit or add comments, hashtags or handles. Edit posts in HTML for re-"
|
2548 |
"publishing on blogging networks"
|
@@ -2550,16 +2574,16 @@ msgstr ""
|
|
2550 |
"Posting-Texte ergänzen mit Kommentaren, Hashtags oder Handles. HTML-Editor "
|
2551 |
"für das Posten in Blog-Netzwerken"
|
2552 |
|
2553 |
-
#: ../../plugins/blog2social-v-4-
|
2554 |
-
#: /plugins/blog2social-v-4-
|
2555 |
msgid "Choose pre-defined times to post or edit and define your own time settings"
|
2556 |
msgstr "Optimaler Zeitpunkt zum Posten voreingestellt und anpassbar"
|
2557 |
|
2558 |
-
#: ../../plugins/blog2social-v-4-
|
2559 |
msgid "Social Media Scheduler"
|
2560 |
msgstr "Veröffentlichungen planen"
|
2561 |
|
2562 |
-
#: ../../plugins/blog2social-v-4-
|
2563 |
msgid ""
|
2564 |
"Social media scheduling: once, repeatedly or recurrently to multiple "
|
2565 |
"profiles, pages and groups"
|
@@ -2567,95 +2591,95 @@ msgstr ""
|
|
2567 |
"Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
|
2568 |
"Gruppen posten"
|
2569 |
|
2570 |
-
#: ../../plugins/blog2social-v-4-
|
2571 |
msgid "Individual Images for Each Social Media Post"
|
2572 |
msgstr "Individuelle Bilder für jeden Social Media Post"
|
2573 |
|
2574 |
-
#: ../../plugins/blog2social-v-4-
|
2575 |
msgid ""
|
2576 |
"Select any image from your media gallery for each social media post and "
|
2577 |
"channel"
|
2578 |
msgstr "Wählen Sie beliebige Bilder für Ihre Social Media Posts"
|
2579 |
|
2580 |
-
#: ../../plugins/blog2social-v-4-
|
2581 |
msgid "Select Post Format"
|
2582 |
msgstr "Beitragsformat auswählen"
|
2583 |
|
2584 |
-
#: ../../plugins/blog2social-v-4-
|
2585 |
-
#: /plugins/blog2social-v-4-
|
2586 |
msgid "One-page preview editor for all social networks for easy customizing"
|
2587 |
msgstr ""
|
2588 |
"Zentrale Vorschauseite für alle Social Media mit Editor für einfaches "
|
2589 |
"Anpassen"
|
2590 |
|
2591 |
-
#: ../../plugins/blog2social-v-4-
|
2592 |
msgid "Social Media Reporting"
|
2593 |
msgstr "Reporting"
|
2594 |
|
2595 |
-
#: ../../plugins/blog2social-v-4-
|
2596 |
msgid "Keep track of your scheduled and shared posts"
|
2597 |
msgstr ""
|
2598 |
"Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
|
2599 |
"einfachen Aufrufen und erneuten Teilen"
|
2600 |
|
2601 |
-
#: ../../plugins/blog2social-v-4-
|
2602 |
msgid "Show me plans and prices"
|
2603 |
msgstr "Versionen und Preise anzeigen"
|
2604 |
|
2605 |
-
#: ../../plugins/blog2social-v-4-
|
2606 |
msgid "save..."
|
2607 |
msgstr "speichere Daten..."
|
2608 |
|
2609 |
-
#: ../../plugins/blog2social-v-4-
|
2610 |
msgid "General"
|
2611 |
msgstr "Allgemein"
|
2612 |
|
2613 |
-
#: ../../plugins/blog2social-v-4-
|
2614 |
msgid "Social Meta Data"
|
2615 |
msgstr "Social Meta Angaben"
|
2616 |
|
2617 |
-
#: ../../plugins/blog2social-v-4-
|
2618 |
msgid "Best Time Settings"
|
2619 |
msgstr "Zeit-Einstellungen"
|
2620 |
|
2621 |
-
#: ../../plugins/blog2social-v-4-
|
2622 |
msgid "Network Settings"
|
2623 |
msgstr "Netzwerk-Einstellungen"
|
2624 |
|
2625 |
-
#: ../../plugins/blog2social-v-4-
|
2626 |
-
#: /plugins/blog2social-v-4-
|
2627 |
msgid "My Time Settings"
|
2628 |
msgstr "Meine Zeit-Einstellungen"
|
2629 |
|
2630 |
-
#: ../../plugins/blog2social-v-4-
|
2631 |
msgid "Reset predefined best time settings"
|
2632 |
msgstr "Voreingestellte beste Zeiten zurücksetzen"
|
2633 |
|
2634 |
-
#: ../../plugins/blog2social-v-4-
|
2635 |
msgid "Post format"
|
2636 |
msgstr "Beitragsformat"
|
2637 |
|
2638 |
-
#: ../../plugins/blog2social-v-4-
|
2639 |
msgid "Facebook"
|
2640 |
msgstr "Facebook"
|
2641 |
|
2642 |
-
#: ../../plugins/blog2social-v-4-
|
2643 |
msgid "Twitter"
|
2644 |
msgstr "Twitter"
|
2645 |
|
2646 |
-
#: ../../plugins/blog2social-v-4-
|
2647 |
msgid "Google+"
|
2648 |
msgstr "Google+"
|
2649 |
|
2650 |
-
#: ../../plugins/blog2social-v-4-
|
2651 |
msgid "Instagram"
|
2652 |
msgstr "Instagram"
|
2653 |
|
2654 |
-
#: ../../plugins/blog2social-v-4-
|
2655 |
msgid "Allow shortcodes in my post"
|
2656 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
2657 |
|
2658 |
-
#: ../../plugins/blog2social-v-4-
|
2659 |
msgid ""
|
2660 |
"Shortcodes are used by some wordpress plugins like Elementor, Visual "
|
2661 |
"Composer and Content Builder. When a shortcode is inserted in a WordPress "
|
@@ -2674,11 +2698,11 @@ msgstr ""
|
|
2674 |
"den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
|
2675 |
"diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
|
2676 |
|
2677 |
-
#: ../../plugins/blog2social-v-4-
|
2678 |
msgid "Include WordPress tags as hashtags in your posts"
|
2679 |
msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
2680 |
|
2681 |
-
#: ../../plugins/blog2social-v-4-
|
2682 |
msgid ""
|
2683 |
"Hashtags are a great way to generate more reach and visibility for your "
|
2684 |
"posts. By activating this feature Blog2Social will automatically include "
|
@@ -2695,21 +2719,21 @@ msgstr ""
|
|
2695 |
"Hinzufügen zusätzlicher Hashtags zu machen. Blog2Social löscht unnötige "
|
2696 |
"Leerzeichen Deiner WordPress-Tags, um gültige Hashtags zu erstellen. \n"
|
2697 |
|
2698 |
-
#: ../../plugins/blog2social-v-4-
|
2699 |
msgid "Activate Legacy mode "
|
2700 |
msgstr "Kompatibilitätsmodus aktivieren "
|
2701 |
|
2702 |
-
#: ../../plugins/blog2social-v-4-
|
2703 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2704 |
msgstr ""
|
2705 |
"Plugininhalte werden nacheinander geladen, um den Hosting-Server Deines "
|
2706 |
"Blogs zu entlasten."
|
2707 |
|
2708 |
-
#: ../../plugins/blog2social-v-4-
|
2709 |
msgid "Instant Caching for Facebook Link Posts"
|
2710 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2711 |
|
2712 |
-
#: ../../plugins/blog2social-v-4-
|
2713 |
msgid ""
|
2714 |
"To make sure that Facebook always pulls the current meta data of your blog "
|
2715 |
"post for link-posts, Blog2Social adds a \"no-cache=1\" parameter to the post "
|
@@ -2721,13 +2745,13 @@ msgstr ""
|
|
2721 |
"Caching bei Facebook Link-Beiträgen den “no-cache=1” Parameter an die "
|
2722 |
"Beitrags-URL. Dies ist notwendig, wenn Du varnish caching benutzt.\n"
|
2723 |
|
2724 |
-
#: ../../plugins/blog2social-v-4-
|
2725 |
msgid "Note: To use Facebook Instant Articles, this option must be disabled."
|
2726 |
msgstr ""
|
2727 |
"Achtung: Um Facebook Instant Artikel zu verwenden, muss diese Option "
|
2728 |
"deaktiviert sein."
|
2729 |
|
2730 |
-
#: ../../plugins/blog2social-v-4-
|
2731 |
msgid ""
|
2732 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
2733 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -2741,55 +2765,55 @@ msgstr ""
|
|
2741 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
2742 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
2743 |
|
2744 |
-
#: ../../plugins/blog2social-v-4-
|
2745 |
msgid "Social Media Scheduling & Sharing"
|
2746 |
msgstr "Beitrag auf Social Media planen und teilen"
|
2747 |
|
2748 |
-
#: ../../plugins/blog2social-v-4-
|
2749 |
msgid "scroll to bottom"
|
2750 |
msgstr "zum Seitenende"
|
2751 |
|
2752 |
-
#: ../../plugins/blog2social-v-4-
|
2753 |
msgid "You want to load your time settings?"
|
2754 |
msgstr "Du möchtest Deine Zeiten laden?"
|
2755 |
|
2756 |
-
#: ../../plugins/blog2social-v-4-
|
2757 |
msgid "Load My Time Settings"
|
2758 |
msgstr "Meine Zeit-Einstellungen laden"
|
2759 |
|
2760 |
-
#: ../../plugins/blog2social-v-4-
|
2761 |
msgid "Load Best Time Scheduler"
|
2762 |
msgstr "Beste Zeiten laden"
|
2763 |
|
2764 |
-
#: ../../plugins/blog2social-v-4-
|
2765 |
msgid "Social Accounts"
|
2766 |
msgstr "Social Media Konten"
|
2767 |
|
2768 |
-
#: ../../plugins/blog2social-v-4-
|
2769 |
msgid "Add more..."
|
2770 |
msgstr "mehr hinzufügen"
|
2771 |
|
2772 |
-
#: ../../plugins/blog2social-v-4-
|
2773 |
msgid "Profiles | Pages | Groups"
|
2774 |
msgstr "Profile | Seiten | Gruppen"
|
2775 |
|
2776 |
-
#: ../../plugins/blog2social-v-4-
|
2777 |
msgid "Save Network Selection"
|
2778 |
msgstr "Netzwerkauswahl speichern"
|
2779 |
|
2780 |
-
#: ../../plugins/blog2social-v-4-
|
2781 |
msgid "network connected"
|
2782 |
msgstr "Netzwerk verbunden"
|
2783 |
|
2784 |
-
#: ../../plugins/blog2social-v-4-
|
2785 |
msgid "requires image"
|
2786 |
msgstr "Bild benötigt"
|
2787 |
|
2788 |
-
#: ../../plugins/blog2social-v-4-
|
2789 |
msgid "refresh authorization"
|
2790 |
msgstr "Autorisierung aktualisieren"
|
2791 |
|
2792 |
-
#: ../../plugins/blog2social-v-4-
|
2793 |
msgid ""
|
2794 |
"Notice:<br><p>Please make sure, that your website address is reachable. The "
|
2795 |
"Social Networks do not allow postings from local installations.</p>"
|
@@ -2798,46 +2822,42 @@ msgstr ""
|
|
2798 |
"erreichbar ist. Die sozialen Netzwerke erlauben keine Posts von lokalen "
|
2799 |
"Installationen.</p>"
|
2800 |
|
2801 |
-
#: ../../plugins/blog2social-v-4-
|
2802 |
msgid "change website address"
|
2803 |
msgstr "Webseiten-Adresse ändern"
|
2804 |
|
2805 |
-
#: ../../plugins/blog2social-v-4-
|
2806 |
msgid "First, connect or select network before posting"
|
2807 |
msgstr ""
|
2808 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2809 |
"Du den Beitrag teilst!"
|
2810 |
|
2811 |
-
#: ../../plugins/blog2social-v-4-
|
2812 |
-
msgid "connect"
|
2813 |
-
msgstr "Jetzt mit Netzwerken verbinden"
|
2814 |
-
|
2815 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/ship.php:206
|
2816 |
msgid "scroll to top"
|
2817 |
msgstr "zum Seitenanfang"
|
2818 |
|
2819 |
-
#: ../../plugins/blog2social-v-4-
|
2820 |
-
#: /plugins/blog2social-v-4-
|
2821 |
msgid "Share"
|
2822 |
msgstr "Teilen"
|
2823 |
|
2824 |
-
#: ../../plugins/blog2social-v-4-
|
2825 |
msgid "Time zone"
|
2826 |
msgstr "Zeitzone"
|
2827 |
|
2828 |
-
#: ../../plugins/blog2social-v-4-
|
2829 |
msgid "Share new post on Social Media"
|
2830 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
2831 |
|
2832 |
-
#: ../../plugins/blog2social-v-4-
|
2833 |
msgid "Connect for"
|
2834 |
msgstr "Netzwerke verbinden für"
|
2835 |
|
2836 |
-
#: ../../plugins/blog2social-v-4-
|
2837 |
msgid "Time Scheduling"
|
2838 |
msgstr "Zeitplanung"
|
2839 |
|
2840 |
-
#: ../../plugins/blog2social-v-4-
|
2841 |
msgid ""
|
2842 |
"You have not yet defined personal time settings. To edit personal time "
|
2843 |
"settings click on the Blog2Social Settings on the left-hand menu and select "
|
@@ -2849,11 +2869,11 @@ msgstr ""
|
|
2849 |
"Menü von Blog2Social und wähle die \"Zeit-Einstellungen\" aus. Dort kannst Du "
|
2850 |
"die voreingestellten besten Zeiten verändern."
|
2851 |
|
2852 |
-
#: ../../plugins/blog2social-v-4-
|
2853 |
msgid "Re-share this Post"
|
2854 |
msgstr "Diesen Beitrag nochmal teilen"
|
2855 |
|
2856 |
-
#: ../../plugins/blog2social-v-4-
|
2857 |
msgid ""
|
2858 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
2859 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -2878,15 +2898,15 @@ msgstr ""
|
|
2878 |
"auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, "
|
2879 |
"wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
|
2880 |
|
2881 |
-
#: ../../plugins/blog2social-v-4-
|
2882 |
msgid "You want re-share your blog post?"
|
2883 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
2884 |
|
2885 |
-
#: ../../plugins/blog2social-v-4-
|
2886 |
msgid "Save Network Settings"
|
2887 |
msgstr "Netzwerkeinstellungen speichern"
|
2888 |
|
2889 |
-
#: ../../plugins/blog2social-v-4-
|
2890 |
msgid ""
|
2891 |
"You can save your current network settings as \"Standard\" network settings "
|
2892 |
"for any future sharing activities or as a \"Profile\" to choose from (Premium)."
|
@@ -2918,56 +2938,56 @@ msgstr ""
|
|
2918 |
"zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
|
2919 |
"variieren kannst. "
|
2920 |
|
2921 |
-
#: ../../plugins/blog2social-v-4-
|
2922 |
msgid "Your blog post is not yet published on your Wordpress!"
|
2923 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
2924 |
|
2925 |
-
#: ../../plugins/blog2social-v-4-
|
2926 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
2927 |
msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
2928 |
|
2929 |
-
#: ../../plugins/blog2social-v-4-
|
2930 |
msgid "Schedule your post"
|
2931 |
msgstr "Beitrag planen"
|
2932 |
|
2933 |
-
#: ../../plugins/blog2social-v-4-
|
2934 |
msgid "Ignore & share"
|
2935 |
msgstr "Ignorieren & teilen"
|
2936 |
|
2937 |
-
#: ../../plugins/blog2social-v-4-
|
2938 |
msgid "add Schedule"
|
2939 |
msgstr "neuer Termin"
|
2940 |
|
2941 |
-
#: ../../plugins/blog2social-v-4-
|
2942 |
msgid "Give me more information"
|
2943 |
msgstr "Erhalte mehr Infomationen"
|
2944 |
|
2945 |
-
#: ../../plugins/blog2social-v-4-
|
2946 |
msgid "Your activity"
|
2947 |
msgstr "Deine Aktivität"
|
2948 |
|
2949 |
-
#: ../../plugins/blog2social-v-4-
|
2950 |
msgid "Show activity starting from"
|
2951 |
msgstr "Zeige Aktivität ab"
|
2952 |
|
2953 |
-
#: ../../plugins/blog2social-v-4-
|
2954 |
msgid "published social media posts"
|
2955 |
msgstr "veröffentlichte Beiträge"
|
2956 |
|
2957 |
-
#: ../../plugins/blog2social-v-4-
|
2958 |
-
#: /plugins/blog2social-v-4-
|
2959 |
msgid "Calendar"
|
2960 |
msgstr "Kalender"
|
2961 |
|
2962 |
-
#: ../../plugins/blog2social-v-4-
|
2963 |
msgid "Get news and updates for promoting your blog on social media"
|
2964 |
msgstr "Aktuelle Infos zur Blog-Promotion auf Social Media"
|
2965 |
|
2966 |
-
#: ../../plugins/blog2social-v-4-
|
2967 |
msgid "Get updates"
|
2968 |
msgstr "Updates erhalten"
|
2969 |
|
2970 |
-
#: ../../plugins/blog2social-v-4-
|
2971 |
msgid ""
|
2972 |
"We hate spam, too. We will never sell your email address to any other "
|
2973 |
"company or for any other purpose."
|
@@ -2975,32 +2995,32 @@ msgstr ""
|
|
2975 |
"Wir mögen auch keinen Spam. Deine E-Mail-Adresse werden wir weder verkaufen "
|
2976 |
"noch anderweitig zweckentfremden. "
|
2977 |
|
2978 |
-
#: ../../plugins/blog2social-v-4-
|
2979 |
msgid "You have already subscribed to the newsletter. Awesome!"
|
2980 |
msgstr "Du hast Dich schon für den Newsletter angemeldet! Prima!"
|
2981 |
|
2982 |
-
#: ../../plugins/blog2social-v-4-
|
2983 |
msgid "Latest Posts"
|
2984 |
msgstr "letzte Beiträge"
|
2985 |
|
2986 |
-
#: ../../plugins/blog2social-v-4-
|
2987 |
-
#: /plugins/blog2social-v-4-
|
2988 |
msgid "Scheduled Posts"
|
2989 |
msgstr "geplante Beiträge"
|
2990 |
|
2991 |
-
#: ../../plugins/blog2social-v-4-
|
2992 |
msgid "Network Choice"
|
2993 |
msgstr "Netzwerkauswahl"
|
2994 |
|
2995 |
-
#: ../../plugins/blog2social-v-4-
|
2996 |
msgid "Custom Sharing"
|
2997 |
msgstr "Individualisieren"
|
2998 |
|
2999 |
-
#: ../../plugins/blog2social-v-4-
|
3000 |
msgid "Custom Scheduling"
|
3001 |
msgstr "Veröffentlichungen planen"
|
3002 |
|
3003 |
-
#: ../../plugins/blog2social-v-4-
|
3004 |
msgid ""
|
3005 |
"Unlimited scheduling options: once, repeatedly or recurringly to multiple "
|
3006 |
"profiles, pages and groups"
|
@@ -3008,15 +3028,15 @@ msgstr ""
|
|
3008 |
"Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
|
3009 |
"Gruppen posten"
|
3010 |
|
3011 |
-
#: ../../plugins/blog2social-v-4-
|
3012 |
msgid "One-Step Workflow"
|
3013 |
msgstr "One-Step Workflow"
|
3014 |
|
3015 |
-
#: ../../plugins/blog2social-v-4-
|
3016 |
msgid "Reporting"
|
3017 |
msgstr "Veröffentlichungen anzeigen"
|
3018 |
|
3019 |
-
#: ../../plugins/blog2social-v-4-
|
3020 |
msgid ""
|
3021 |
"All scheduled and published social media posts with direct links for easy "
|
3022 |
"access or re-sharing"
|
@@ -3024,20 +3044,20 @@ msgstr ""
|
|
3024 |
"Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
|
3025 |
"einfachen Aufrufen und erneuten Teilen"
|
3026 |
|
3027 |
-
#: ../../plugins/blog2social-v-4-
|
3028 |
msgid "Unlock Premium"
|
3029 |
msgstr "Premium freischalten"
|
3030 |
|
3031 |
-
#: ../../plugins/blog2social-v-4-
|
3032 |
msgid "more FAQ"
|
3033 |
msgstr "mehr FAQ"
|
3034 |
|
3035 |
-
#: ../../plugins/blog2social-v-4-
|
3036 |
-
#: /plugins/blog2social-v-4-
|
3037 |
msgid "How to work with Blog2Social"
|
3038 |
msgstr "So arbeitest Du mit Blog2Social"
|
3039 |
|
3040 |
-
#: ../../plugins/blog2social-v-4-
|
3041 |
msgid ""
|
3042 |
"Learn how to get the most out of Blog2Social to promote your blog on social "
|
3043 |
"media."
|
@@ -3045,11 +3065,11 @@ msgstr ""
|
|
3045 |
"Du erfährst, wie Du Blog2Social optimal nutzt, um Deinen Blog auf Social "
|
3046 |
"Media zu promoten."
|
3047 |
|
3048 |
-
#: ../../plugins/blog2social-v-4-
|
3049 |
msgid "Connection is broken..."
|
3050 |
msgstr "Vebindung ist unterbrochen..."
|
3051 |
|
3052 |
-
#: ../../plugins/blog2social-v-4-
|
3053 |
msgid ""
|
3054 |
"The connection to your server has been interrupted. Please make sure that "
|
3055 |
"your blog is reachable. If your server does not respond or is too slow, "
|
@@ -3062,73 +3082,73 @@ msgstr ""
|
|
3062 |
"nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
|
3063 |
"Deinen Webmaster, wenn dieser Fehler erneut erscheint."
|
3064 |
|
3065 |
-
#: ../../plugins/blog2social-v-4-
|
3066 |
msgid "Update..."
|
3067 |
msgstr "Aktualisierung..."
|
3068 |
|
3069 |
-
#: ../../plugins/blog2social-v-4-
|
3070 |
msgid ""
|
3071 |
"<b> A new version of Blog2Social is available. </b> Update now <br> "
|
3072 |
"Blog2Social to continue to use the latest version of the plugin."
|
3073 |
msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
|
3074 |
|
3075 |
-
#: ../../plugins/blog2social-v-4-
|
3076 |
msgid "Update Blog2Social"
|
3077 |
msgstr "Aktualisiere Blog2Social"
|
3078 |
|
3079 |
-
#: ../../plugins/blog2social-v-4-
|
3080 |
msgid "Unknown error"
|
3081 |
msgstr "Unbekannter Fehler"
|
3082 |
|
3083 |
-
#: ../../plugins/blog2social-v-4-
|
3084 |
msgid "<b> An unknown error occurred! </b> <br> Please contact our support!"
|
3085 |
msgstr ""
|
3086 |
"<b> Ein unbekannter Fehler ist aufgetreten. </b> <br> Bitte kontaktiere "
|
3087 |
"unseren Support."
|
3088 |
|
3089 |
-
#: ../../plugins/blog2social-v-4-
|
3090 |
msgid "Login failed. Please check your username and a password!"
|
3091 |
msgstr ""
|
3092 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
3093 |
"Benutzernamen und Dein Password!"
|
3094 |
|
3095 |
-
#: ../../plugins/blog2social-v-4-
|
3096 |
msgid "Login failed. Please check your server settings. OpenSSL must be enabled on."
|
3097 |
msgstr ""
|
3098 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfen Deine "
|
3099 |
"Server-Einstellungen. OpenSSL muss aktiviert sein. "
|
3100 |
|
3101 |
-
#: ../../plugins/blog2social-v-4-
|
3102 |
msgid "E-Mail or Username"
|
3103 |
msgstr "E-Mail oder Benutzername"
|
3104 |
|
3105 |
-
#: ../../plugins/blog2social-v-4-
|
3106 |
msgid "Password"
|
3107 |
msgstr "Passwort"
|
3108 |
|
3109 |
-
#: ../../plugins/blog2social-v-4-
|
3110 |
msgid "Sign in"
|
3111 |
msgstr "Anmelden"
|
3112 |
|
3113 |
-
#: ../../plugins/blog2social-v-4-
|
3114 |
msgid "create account"
|
3115 |
msgstr "neues Konto erstellen"
|
3116 |
|
3117 |
-
#: ../../plugins/blog2social-v-4-
|
3118 |
msgid "reset password"
|
3119 |
msgstr "Passwort zurücksetzen"
|
3120 |
|
3121 |
-
#: ../../plugins/blog2social-v-4-
|
3122 |
msgid "Test PR-Gateway for free"
|
3123 |
msgstr "PR-Gateway kostenlos und unverbindlich testen"
|
3124 |
|
3125 |
-
#: ../../plugins/blog2social-v-4-
|
3126 |
msgid "1x publish press release <br> 1x publish report <br> 1x promote event"
|
3127 |
msgstr ""
|
3128 |
"1 x Pressemitteilung veröffentlichen <br> 1 x Report abrufen <br>1 x "
|
3129 |
"Veranstaltung bewerben"
|
3130 |
|
3131 |
-
#: ../../plugins/blog2social-v-4-
|
3132 |
msgid ""
|
3133 |
"The press distribution PR gateway automatically publish your press releases "
|
3134 |
"and events with one click.Publish your message over 250 portals."
|
@@ -3140,32 +3160,32 @@ msgstr ""
|
|
3140 |
"internationalen und regionalen Portalen, Social Media und Dokumenten-"
|
3141 |
"Netzwerken."
|
3142 |
|
3143 |
-
#: ../../plugins/blog2social-v-4-
|
3144 |
msgid "Start your 14-Day Free Trial"
|
3145 |
msgstr "Jetzt kostenlos testen"
|
3146 |
|
3147 |
-
#: ../../plugins/blog2social-v-4-
|
3148 |
msgid "Select Image"
|
3149 |
msgstr "Bild auswählen"
|
3150 |
|
3151 |
-
#: ../../plugins/blog2social-v-4-
|
3152 |
-
#: /plugins/blog2social-v-4-
|
3153 |
msgid "Copyright"
|
3154 |
msgstr "Copyright"
|
3155 |
|
3156 |
-
#: ../../plugins/blog2social-v-4-
|
3157 |
msgid "Save As Draft"
|
3158 |
msgstr "als Entwurf speichern"
|
3159 |
|
3160 |
-
#: ../../plugins/blog2social-v-4-
|
3161 |
msgid "Publish"
|
3162 |
msgstr "Veröffentlichen"
|
3163 |
|
3164 |
-
#: ../../plugins/blog2social-v-4-
|
3165 |
msgid "Please Note"
|
3166 |
msgstr "Hinweis"
|
3167 |
|
3168 |
-
#: ../../plugins/blog2social-v-4-
|
3169 |
msgid ""
|
3170 |
"It may incur charges for publishing on PR-Gateway. Sent press releases can "
|
3171 |
"not be withdrawn. If you want your press release to be published now?"
|
@@ -3175,47 +3195,47 @@ msgstr ""
|
|
3175 |
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
3176 |
"Pressemitteilung jetzt versendet werden?"
|
3177 |
|
3178 |
-
#: ../../plugins/blog2social-v-4-
|
3179 |
msgid "Yes, I accept"
|
3180 |
msgstr "Ja,einverstanden"
|
3181 |
|
3182 |
-
#: ../../plugins/blog2social-v-4-
|
3183 |
msgid "Privacy Policy"
|
3184 |
msgstr "Datenschutz"
|
3185 |
|
3186 |
-
#: ../../plugins/blog2social-v-4-
|
3187 |
msgid "Terms"
|
3188 |
msgstr "Agbs"
|
3189 |
|
3190 |
-
#: ../../plugins/blog2social-v-4-
|
3191 |
msgid "We never store your data from your social media profiles."
|
3192 |
msgstr "Wir speichern keine persönlichen Daten Deiner Social Media Profile."
|
3193 |
|
3194 |
-
#: ../../plugins/blog2social-v-4-
|
3195 |
-
#: /plugins/blog2social-v-4-
|
3196 |
-
#: /plugins/blog2social-v-4-
|
3197 |
msgid "Post"
|
3198 |
msgstr "Beitrag"
|
3199 |
|
3200 |
-
#: ../../plugins/blog2social-v-4-
|
3201 |
-
#: /plugins/blog2social-v-4-
|
3202 |
msgid "Job"
|
3203 |
msgstr "Stellenanzeige"
|
3204 |
|
3205 |
-
#: ../../plugins/blog2social-v-4-
|
3206 |
-
#: /plugins/blog2social-v-4-
|
3207 |
msgid "Event"
|
3208 |
msgstr "Veranstaltung"
|
3209 |
|
3210 |
-
#: ../../plugins/blog2social-v-4-
|
3211 |
msgid "Upgrade to Blog2Social for Premium"
|
3212 |
msgstr "Jetzt auf Blog2Social PREMIUM upgraden "
|
3213 |
|
3214 |
-
#: ../../plugins/blog2social-v-4-
|
3215 |
msgid "Upgrade to Blog2Social for PREMIUM PRO"
|
3216 |
msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden "
|
3217 |
|
3218 |
-
#: ../../plugins/blog2social-v-4-
|
3219 |
msgid ""
|
3220 |
"You can select different combinations of networks and save them for "
|
3221 |
"different sharing purposes."
|
@@ -3223,7 +3243,7 @@ msgstr ""
|
|
3223 |
"Du kannst für verschiedene Social Media Aktivitäten oder Kampagnen eine "
|
3224 |
"passende Kombination von Netzwerken anlegen und speichern."
|
3225 |
|
3226 |
-
#: ../../plugins/blog2social-v-4-
|
3227 |
msgid ""
|
3228 |
"With Blog2Social Premium PRO you can save your preferred network "
|
3229 |
"combinations for future reference and choose individual names for each "
|
@@ -3243,11 +3263,11 @@ msgstr ""
|
|
3243 |
"mehrere Social Media Profile, Seiten und Gruppen eines Netzwerks in einer "
|
3244 |
"Kombination verbinden."
|
3245 |
|
3246 |
-
#: ../../plugins/blog2social-v-4-
|
3247 |
msgid "With Blog2Social PREMIUM PRO you can also:"
|
3248 |
msgstr "Mit blog2Social Premium PRO kannst Du außerdem:"
|
3249 |
|
3250 |
-
#: ../../plugins/blog2social-v-4-
|
3251 |
msgid ""
|
3252 |
"Post on LinkedIn pages, XING pages and groups, as well as Facebook and "
|
3253 |
"Google+ pages and groups"
|
@@ -3255,7 +3275,7 @@ msgstr ""
|
|
3255 |
"Auf LinkedIn-Seiten, auf XING-Seiten und -Gruppen, sowie auf Seiten und "
|
3256 |
"Gruppen in Facebook und Google+ posten"
|
3257 |
|
3258 |
-
#: ../../plugins/blog2social-v-4-
|
3259 |
msgid ""
|
3260 |
"Schedule your posts at the best times on each network: for one time, "
|
3261 |
"multiple times or recurrently"
|
@@ -3263,7 +3283,7 @@ msgstr ""
|
|
3263 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
3264 |
"oder nach einem regelmäßigen Muster"
|
3265 |
|
3266 |
-
#: ../../plugins/blog2social-v-4-
|
3267 |
msgid ""
|
3268 |
"Reporting and calendar: keep track of your published and scheduled social "
|
3269 |
"media posts"
|
@@ -3271,11 +3291,11 @@ msgstr ""
|
|
3271 |
"Mit dem Reporting & Kalender Deine bereits veröffentlichten und geplanten "
|
3272 |
"Social Media Post im Blick behalten."
|
3273 |
|
3274 |
-
#: ../../plugins/blog2social-v-4-
|
3275 |
msgid "Activate Blog2Social PREMIUM PRO."
|
3276 |
msgstr "Aktiviere Blog2Social PREMIUM PRO. "
|
3277 |
|
3278 |
-
#: ../../plugins/blog2social-v-4-
|
3279 |
msgid ""
|
3280 |
"With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as "
|
3281 |
"well as XING groups."
|
@@ -3283,37 +3303,37 @@ msgstr ""
|
|
3283 |
"Mit Blog2Social Premium PRO kannst Du auf Seiten in LinkedIn und XING und in "
|
3284 |
"XING-Gruppen posten."
|
3285 |
|
3286 |
-
#: ../../plugins/blog2social-v-4-
|
3287 |
msgid "Also included:"
|
3288 |
msgstr "Außerdem inklusive"
|
3289 |
|
3290 |
-
#: ../../plugins/blog2social-v-4-
|
3291 |
msgid "Social media auto-posting and auto-scheduling"
|
3292 |
msgstr "Blogbeiträge auto-posten und auto-planen"
|
3293 |
|
3294 |
-
#: ../../plugins/blog2social-v-4-
|
3295 |
msgid "Posting to social media pages and groups in Facebook and Google+"
|
3296 |
msgstr "Posten auf Social Media Seiten und in Gruppen bei Facebook and Google+ "
|
3297 |
|
3298 |
-
#: ../../plugins/blog2social-v-4-
|
3299 |
msgid "Sharing on multiple accounts per network"
|
3300 |
msgstr "Posten in mehreren Accounts pro Netzwerk"
|
3301 |
|
3302 |
-
#: ../../plugins/blog2social-v-4-
|
3303 |
msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
|
3304 |
msgstr ""
|
3305 |
"Beste Zeiten Manager: Veröffentlichungen einmal, mehrmals oder regelmäßig "
|
3306 |
"planen"
|
3307 |
|
3308 |
-
#: ../../plugins/blog2social-v-4-
|
3309 |
msgid "Reporting with links to already published posts"
|
3310 |
msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
|
3311 |
|
3312 |
-
#: ../../plugins/blog2social-v-4-
|
3313 |
msgid "Select the preferred custom post format for your posts"
|
3314 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
3315 |
|
3316 |
-
#: ../../plugins/blog2social-v-4-
|
3317 |
msgid ""
|
3318 |
"You can define your preferred custom post format Twitter, Facebook and "
|
3319 |
"Google +. Select link post or photo post format:"
|
@@ -3321,7 +3341,7 @@ msgstr ""
|
|
3321 |
"Für Facebook, Twitter und Google + kannst Du Dein bevorzugtes Post-Format "
|
3322 |
"standardmäßig festlegen. Wähle das Link-Post- oder das Foto-Post-Format:"
|
3323 |
|
3324 |
-
#: ../../plugins/blog2social-v-4-
|
3325 |
msgid ""
|
3326 |
"The link post format displays posts title, link address and the first one or "
|
3327 |
"two sentences of the post. The networks scan this information from your META "
|
@@ -3345,7 +3365,7 @@ msgstr ""
|
|
3345 |
"Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
|
3346 |
"Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. \n"
|
3347 |
|
3348 |
-
#: ../../plugins/blog2social-v-4-
|
3349 |
msgid ""
|
3350 |
"For Instagram, you can select \"image with frame\" or \"image cut out\" as your "
|
3351 |
"preferred custom post format."
|
@@ -3353,19 +3373,19 @@ msgstr ""
|
|
3353 |
"Du kannst für Instagram zwischen \"Bild mit Rahmen\" umd \"Bild "
|
3354 |
"ausgeschnitten\" als Dein bevorzugtes Beitragsformat auswählen."
|
3355 |
|
3356 |
-
#: ../../plugins/blog2social-v-4-
|
3357 |
msgid "Did you miss something?"
|
3358 |
msgstr "Was vermisst Du?"
|
3359 |
|
3360 |
-
#: ../../plugins/blog2social-v-4-
|
3361 |
msgid "Help us make Blog2Social even better!"
|
3362 |
msgstr "Helfe uns Blog2Social besser zu machen!"
|
3363 |
|
3364 |
-
#: ../../plugins/blog2social-v-4-
|
3365 |
msgid "submit"
|
3366 |
msgstr "senden"
|
3367 |
|
3368 |
-
#: ../../plugins/blog2social-v-4-
|
3369 |
msgid ""
|
3370 |
"Blog2Social provides you with a ready-to-use best time scheduler based on "
|
3371 |
"current research on the best times to post on each social network."
|
@@ -3373,7 +3393,7 @@ msgstr ""
|
|
3373 |
"Blog2Social stellt Dir ein vordefiniertes Zeitschema für die besten Zeiten "
|
3374 |
"zum Teilen auf den verschiedenen Social Media Kanälen zur Verfügung."
|
3375 |
|
3376 |
-
#: ../../plugins/blog2social-v-4-
|
3377 |
msgid ""
|
3378 |
"Click Best Time Scheduler in the preview editor to schedule your posts "
|
3379 |
"automatically for the best times to post on each social network."
|
@@ -3382,7 +3402,7 @@ msgstr ""
|
|
3382 |
"Click \"Best Time Scheduler\" in the preview editor to schedule your posts "
|
3383 |
"automatically for the best times to post on each social network."
|
3384 |
|
3385 |
-
#: ../../plugins/blog2social-v-4-
|
3386 |
msgid ""
|
3387 |
"You can also define your own personal time settings for posting, if you know "
|
3388 |
"which times work best for your communities. Edit the pre-filled times in the "
|
@@ -3392,7 +3412,7 @@ msgstr ""
|
|
3392 |
"eingetragenen Zeiten in den allgemeinen Einstellungen, die Du ändern "
|
3393 |
"möchtest und klicke \"speichern\"."
|
3394 |
|
3395 |
-
#: ../../plugins/blog2social-v-4-
|
3396 |
msgid ""
|
3397 |
"Click My Time Settings in the preview editor to schedule your posts with "
|
3398 |
"your personal best time settings."
|
@@ -3400,7 +3420,7 @@ msgstr ""
|
|
3400 |
"Klicke \"Meine Zeit-Einstellungen\" im Vorschau-Editor, um Deine Social Media "
|
3401 |
"Posts zu Deinen persönlichen Zeit-Einstellungen zu planen."
|
3402 |
|
3403 |
-
#: ../../plugins/blog2social-v-4-
|
3404 |
msgid ""
|
3405 |
"You can always edit the predefined times in the preview editor for any post "
|
3406 |
"or network and save your new settings as default for future use."
|
@@ -3409,7 +3429,7 @@ msgstr ""
|
|
3409 |
"jedes Netzwerk jederzeit individuell ändern oder neu definieren und für alle "
|
3410 |
"zukünftigen Beiträge abspeichern. "
|
3411 |
|
3412 |
-
#: ../../plugins/blog2social-v-4-
|
3413 |
msgid ""
|
3414 |
"Blog2Social will also apply your personal time settings, if you enable the "
|
3415 |
"Social Media Auto-Poster and select auto-post at scheduled times. "
|
@@ -3418,11 +3438,11 @@ msgstr ""
|
|
3418 |
"das Social Media Auto-Posting nutzt und die Veröffentlichung zu geplanten "
|
3419 |
"Zeiten auswählst."
|
3420 |
|
3421 |
-
#: ../../plugins/blog2social-v-4-
|
3422 |
msgid "Why Retweets?"
|
3423 |
msgstr "Wieso retweeten?\n"
|
3424 |
|
3425 |
-
#: ../../plugins/blog2social-v-4-
|
3426 |
msgid ""
|
3427 |
"Retweets are the recommended way to reshare the same Tweets across Twitter "
|
3428 |
"accounts in accordance with Twitter new rules. You can now schedule multiple "
|
@@ -3434,42 +3454,43 @@ msgstr ""
|
|
3434 |
"mehrere Retweets für einen Original-Tweet direkt aus Deinem WordPress "
|
3435 |
"Backend heraus planen."
|
3436 |
|
3437 |
-
#: ../../plugins/blog2social-v-4-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3438 |
msgid "Do you want retweeten?"
|
3439 |
msgstr "Du möchtest retweeten?\n"
|
3440 |
|
3441 |
-
#: ../../plugins/blog2social-v-4-
|
3442 |
-
msgid "
|
3443 |
-
msgstr "
|
3444 |
-
|
3445 |
-
#: ../../plugins/blog2social-v-4-
|
3446 |
-
msgid ""
|
3447 |
-
"
|
3448 |
-
"
|
3449 |
-
"
|
3450 |
-
"
|
3451 |
-
"
|
3452 |
-
|
3453 |
-
"
|
3454 |
-
"
|
3455 |
-
"
|
3456 |
-
"
|
3457 |
-
"
|
3458 |
-
|
3459 |
-
"
|
3460 |
-
|
3461 |
-
|
3462 |
-
"Links von den Netzwerken abgelehnt werden. Der b2s.pm Shortener generiert "
|
3463 |
-
"bei jedem Social Media Post einen neuen Link. Diese Funktion ist wichtig, "
|
3464 |
-
"wenn Sie Ihre Beiträge mehrfach auf den gleichen Netzwerken posten möchten. "
|
3465 |
-
"<br>Ein weiterer Vorteil der b2s.pm Shortener Links: In Kürze wirst Du die "
|
3466 |
-
"b2s.pm Links über die Reporting-Funktion von Blog2Social auswerten können. "
|
3467 |
-
"So kannst Du einfach und schnell das Potenzial Deiner Social Media Posts "
|
3468 |
-
"über die Reporting-Funktion kalkulieren und sehen, wie häufig der Link in "
|
3469 |
-
"den verschiedenen Social Media geklickt, gelikt oder geteilt wurde. <br>Sie "
|
3470 |
-
"können den b2s.pm Shortener deaktivieren, um Ihre eigene URL anzuzeigen."
|
3471 |
-
|
3472 |
-
#: ../../plugins/blog2social-v-4-8/views/b2s/html/footer.phtml:294
|
3473 |
msgid ""
|
3474 |
"Select the content that will be automatically pre-filled in your Twitter "
|
3475 |
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
@@ -3480,16 +3501,16 @@ msgstr ""
|
|
3480 |
"Tags als Hashtags zu Deinen Social Media-Posts hinzu” aktiviert hast, werden "
|
3481 |
"Hashtags auch im Dropdown-Menü automatisch an die Optionen angefügt. "
|
3482 |
|
3483 |
-
#: ../../plugins/blog2social-v-4-
|
3484 |
msgid "Social Meta Tags Settings"
|
3485 |
msgstr "Meta Tag Einstellungen"
|
3486 |
|
3487 |
-
#: ../../plugins/blog2social-v-4-
|
3488 |
-
#: /plugins/blog2social-v-4-
|
3489 |
msgid "Change image, title and description for your post on this network"
|
3490 |
msgstr "Bild, Titel und Beschreibung des Blogbeitrags ändern"
|
3491 |
|
3492 |
-
#: ../../plugins/blog2social-v-4-
|
3493 |
msgid ""
|
3494 |
"Facebook has changed its policy for posting link posts via plugins or web "
|
3495 |
"applications. Facebook does no longer display the featured or selected image "
|
@@ -3512,7 +3533,7 @@ msgstr ""
|
|
3512 |
"Bitte stelle sicher, dass das ausgewählte Bild die Voraussetzungen für die "
|
3513 |
"Bildgrößen auf Facebook erfüllt."
|
3514 |
|
3515 |
-
#: ../../plugins/blog2social-v-4-
|
3516 |
msgid ""
|
3517 |
"With Blog2Social you can select a featured image or any image you select to "
|
3518 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -3532,7 +3553,7 @@ msgstr ""
|
|
3532 |
"der Beitragsvorschau an Bilder, Titel und Beschreibung vornimmst, nicht "
|
3533 |
"übernimmt. "
|
3534 |
|
3535 |
-
#: ../../plugins/blog2social-v-4-
|
3536 |
msgid ""
|
3537 |
"Twitter has changed its policy for posting link posts via plugins or web "
|
3538 |
"applications. Twitter does no longer display the featured or selected image "
|
@@ -3554,7 +3575,7 @@ msgstr ""
|
|
3554 |
"werden diese nicht angezeigt. Bitte stelle sicher, dass das ausgewählte Bild "
|
3555 |
"die Voraussetzungen für die Bildgrößen auf Twitter erfüllt."
|
3556 |
|
3557 |
-
#: ../../plugins/blog2social-v-4-
|
3558 |
msgid ""
|
3559 |
"With Blog2Social you can select a featured image or any image you select to "
|
3560 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -3574,7 +3595,7 @@ msgstr ""
|
|
3574 |
"Änderungen, die Du in der Beitragsvorschau an Bilder, Titel und Beschreibung "
|
3575 |
"vornimmst, nicht übernimmt. \n"
|
3576 |
|
3577 |
-
#: ../../plugins/blog2social-v-4-
|
3578 |
msgid ""
|
3579 |
"You can change the image, title and description for your post on Facebook, "
|
3580 |
"by editing the following fields for"
|
@@ -3582,17 +3603,17 @@ msgstr ""
|
|
3582 |
"Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
|
3583 |
"Facebook über die folgenden Felder ändern:"
|
3584 |
|
3585 |
-
#: ../../plugins/blog2social-v-4-
|
3586 |
-
#: /plugins/blog2social-v-4-
|
3587 |
msgid "image"
|
3588 |
msgstr "Bild"
|
3589 |
|
3590 |
-
#: ../../plugins/blog2social-v-4-
|
3591 |
-
#: /plugins/blog2social-v-4-
|
3592 |
msgid "description"
|
3593 |
msgstr "Beschreibung"
|
3594 |
|
3595 |
-
#: ../../plugins/blog2social-v-4-
|
3596 |
msgid ""
|
3597 |
"Blog2Social will automatically write these information in the Facebook Open "
|
3598 |
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
@@ -3601,7 +3622,7 @@ msgstr ""
|
|
3601 |
"Graph (OG) Meta Tag Parameter Deines Blogbeitrags für Image, Title und "
|
3602 |
"Description."
|
3603 |
|
3604 |
-
#: ../../plugins/blog2social-v-4-
|
3605 |
msgid ""
|
3606 |
"Please note: If this post has already been shared or scheduled previously, "
|
3607 |
"your current changes will also affect the look of previously shared or "
|
@@ -3614,7 +3635,7 @@ msgstr ""
|
|
3614 |
"Meta Tag Parameter Deiner Beitragsseite zieht und alle vorhandenen Beiträge "
|
3615 |
"mit diesen Informationen automatisch aktualisiert."
|
3616 |
|
3617 |
-
#: ../../plugins/blog2social-v-4-
|
3618 |
#, php-format
|
3619 |
msgid ""
|
3620 |
"Please note: Your changes will have no effect on your social media posts on "
|
@@ -3625,7 +3646,7 @@ msgstr ""
|
|
3625 |
"berücksichtigt werden, wenn Du in den Blog2Social Meta Tag<a target=\"_blank\" "
|
3626 |
"href=\"%s\">Einstellungen</a>, die Meta Tag Funktion manuell deaktiviert hast."
|
3627 |
|
3628 |
-
#: ../../plugins/blog2social-v-4-
|
3629 |
msgid ""
|
3630 |
"You can change the image, title and description for your post on Twitter, by "
|
3631 |
"editing the following fields for"
|
@@ -3633,7 +3654,7 @@ msgstr ""
|
|
3633 |
"Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
|
3634 |
"Twitter über die folgenden Felder ändern:"
|
3635 |
|
3636 |
-
#: ../../plugins/blog2social-v-4-
|
3637 |
msgid ""
|
3638 |
"Blog2Social will automatically write these information in the Twitter Card "
|
3639 |
"Meta Tags for Image, Title and Description of your blog post."
|
@@ -3641,7 +3662,7 @@ msgstr ""
|
|
3641 |
"Blog2Social übergibt diese Informationen automatisch an die Twitter Card "
|
3642 |
"Meta Tag Parameter Deines Blogbeitrags für Image, Title und Description."
|
3643 |
|
3644 |
-
#: ../../plugins/blog2social-v-4-
|
3645 |
msgid ""
|
3646 |
"Please note: If this post has already been shared or scheduled previously, "
|
3647 |
"your current changes will also affect the look of previously shared or "
|
@@ -3656,7 +3677,7 @@ msgstr ""
|
|
3656 |
"bereits geteilt hast, kann es bis zu 7 Tagen dauern, bis Twitter die "
|
3657 |
"Änderungen aktualisiert. "
|
3658 |
|
3659 |
-
#: ../../plugins/blog2social-v-4-
|
3660 |
#, php-format
|
3661 |
msgid ""
|
3662 |
"Please note: Your changes will have no effect on your social media posts on "
|
@@ -3668,11 +3689,11 @@ msgstr ""
|
|
3668 |
"target=\"_blank\" href=\"%s\">Einstellungen </a> die Meta Tag Funktion manuell "
|
3669 |
"deaktiviert hast."
|
3670 |
|
3671 |
-
#: ../../plugins/blog2social-v-4-
|
3672 |
msgid "You want to change the image, title and description for your post?"
|
3673 |
msgstr "Du möchtest Dein Bild, Titel und Beschreibung für diesen Beitrag ändern?"
|
3674 |
|
3675 |
-
#: ../../plugins/blog2social-v-4-
|
3676 |
msgid ""
|
3677 |
"You are currently sharing this post as image post. Changes to title and "
|
3678 |
"description Meta Tag parameters will only be supported for link post formats."
|
@@ -3684,7 +3705,7 @@ msgstr ""
|
|
3684 |
"Format unterstützt. Bitte ändere das Post Format in Linkbeitrag, um "
|
3685 |
"Änderungen am Titel und der Beschreibung für die Postvorschau vorzunehmen."
|
3686 |
|
3687 |
-
#: ../../plugins/blog2social-v-4-
|
3688 |
#, php-format
|
3689 |
msgid ""
|
3690 |
"Your changes will have no effect on your social media posts on Facebook, if "
|
@@ -3695,7 +3716,7 @@ msgstr ""
|
|
3695 |
"Du Meta Tag Einstellungen für Facebook unter den Blog2Social <a "
|
3696 |
"target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
|
3697 |
|
3698 |
-
#: ../../plugins/blog2social-v-4-
|
3699 |
#, php-format
|
3700 |
msgid ""
|
3701 |
"Your changes will have no effect on your social media posts on Twitter, if "
|
@@ -3706,7 +3727,7 @@ msgstr ""
|
|
3706 |
"Du Meta Tag Einstellungen für Twitter unter den Blog2Social <a "
|
3707 |
"target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
|
3708 |
|
3709 |
-
#: ../../plugins/blog2social-v-4-
|
3710 |
msgid ""
|
3711 |
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
3712 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
@@ -3715,31 +3736,31 @@ msgstr ""
|
|
3715 |
"höher benötigt. Unser Support unterstützt Dich ab PHP Version 5.5.3. Siehe "
|
3716 |
"auch:"
|
3717 |
|
3718 |
-
#: ../../plugins/blog2social-v-4-
|
3719 |
msgid "Technical requirements for Blog2Social"
|
3720 |
msgstr "Technische Vorraussetzungen für Blog2Social"
|
3721 |
|
3722 |
-
#: ../../plugins/blog2social-v-4-
|
3723 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
3724 |
msgstr "Vielen Dank. Ab sofort erhältest Du die Blog-Updates von Blog2Social."
|
3725 |
|
3726 |
-
#: ../../plugins/blog2social-v-4-
|
3727 |
msgid "Autoposter limit has been reached"
|
3728 |
msgstr "Das Autoposter-Limit wurde erreicht"
|
3729 |
|
3730 |
-
#: ../../plugins/blog2social-v-4-
|
3731 |
msgid "Your daily limit for posting automatically has been reached."
|
3732 |
msgstr "Dein tägliche Limit für das automatische Veröffentlichen wurde erreicht."
|
3733 |
|
3734 |
-
#: ../../plugins/blog2social-v-4-
|
3735 |
msgid "You have clear all page and post meta data successful."
|
3736 |
msgstr "Alle Seiten und Beitrags Metangaben sind gelöscht."
|
3737 |
|
3738 |
-
#: ../../plugins/blog2social-v-4-
|
3739 |
msgid "The page and post meta data could not be removed."
|
3740 |
msgstr "Die Seiten und Beitrags Metangaben können nicht gelöscht werden."
|
3741 |
|
3742 |
-
#: ../../plugins/blog2social-v-4-
|
3743 |
msgid ""
|
3744 |
"You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta "
|
3745 |
"tags from Yoast SEO."
|
@@ -3747,7 +3768,7 @@ msgstr ""
|
|
3747 |
"Du hast Yoast SEO aktiviert. Blog2Social Meta Tags überschreibt die "
|
3748 |
"Metaangaben von Yoast SEO nun."
|
3749 |
|
3750 |
-
#: ../../plugins/blog2social-v-4-
|
3751 |
msgid ""
|
3752 |
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
3753 |
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
@@ -3760,7 +3781,7 @@ msgstr ""
|
|
3760 |
"Einstellungen. Wenn Du sie bereits deaktiviert hast, kannst Du diese Meldung "
|
3761 |
"ignorieren."
|
3762 |
|
3763 |
-
#: ../../plugins/blog2social-v-4-
|
3764 |
msgid ""
|
3765 |
"You currently have both Blog2Social Social Meta Tags and Facebook Open Graph,"
|
3766 |
" Google+ and Twitter Card Tags plugins active. This is no recommended. "
|
@@ -3772,64 +3793,64 @@ msgstr ""
|
|
3772 |
"deaktiviere die Facebook Open Graph, Google+ and Twitter Card Tags "
|
3773 |
"Einstellungen."
|
3774 |
|
3775 |
-
#: ../../plugins/blog2social-v-4-
|
3776 |
msgid "This entry could not be removed. It's not yours!"
|
3777 |
msgstr "Der Eintrag kann nicht entfernt werden. Es ist nicht Deiner!"
|
3778 |
|
3779 |
-
#: ../../plugins/blog2social-v-4-
|
3780 |
msgid "This entry was removed successful."
|
3781 |
msgstr "Der Eintrag wurde entfernt."
|
3782 |
|
3783 |
-
#: ../../plugins/blog2social-v-4-
|
3784 |
msgid "This post was edit successful."
|
3785 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
3786 |
|
3787 |
-
#: ../../plugins/blog2social-v-4-
|
3788 |
msgid "Post was scheduled successfully on your blog!"
|
3789 |
msgstr "Beitrag wurde erfolgreich auf Deinem Blog geplant!"
|
3790 |
|
3791 |
-
#: ../../plugins/blog2social-v-4-
|
3792 |
msgid "Post is published successfully on your blog!"
|
3793 |
msgstr "Beitrag wird erfolgreich auf Deinem Blog veröffentlicht!"
|
3794 |
|
3795 |
-
#: ../../plugins/blog2social-v-4-
|
3796 |
msgid "Your authorization was successful."
|
3797 |
msgstr "Deine Autorisierung war erfolgreich."
|
3798 |
|
3799 |
-
#: ../../plugins/blog2social-v-4-
|
3800 |
msgid "Your profile was saved successful."
|
3801 |
msgstr "Dein Profil wurde erfolgreich gespeichert."
|
3802 |
|
3803 |
-
#: ../../plugins/blog2social-v-4-
|
3804 |
msgid "Your profile could not be saved."
|
3805 |
msgstr "Dein Profil konnte nicht gespeichert werden."
|
3806 |
|
3807 |
-
#: ../../plugins/blog2social-v-4-
|
3808 |
msgid "Your authorization could not be removed."
|
3809 |
msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
3810 |
|
3811 |
-
#: ../../plugins/blog2social-v-4-
|
3812 |
msgid "Your authorization was removed successful."
|
3813 |
msgstr "Dein Profil wurde erfolgreich entfernt."
|
3814 |
|
3815 |
-
#: ../../plugins/blog2social-v-4-
|
3816 |
msgid "Thank you! Your feedback has been received."
|
3817 |
msgstr "Vielen Dank. Dein Hinweis wurde an uns übermittelt."
|
3818 |
|
3819 |
-
#: ../../plugins/blog2social-v-4-
|
3820 |
msgid "Your feedback could not be delivered."
|
3821 |
msgstr "Dein Hinweis konnte nicht übermittelt werden. Bitte versuche es erneut."
|
3822 |
|
3823 |
-
#: ../../plugins/blog2social-v-4-
|
3824 |
-
#: /plugins/blog2social-v-4-
|
3825 |
msgid "Your settings were successfully saved."
|
3826 |
msgstr "Deine Einstellungen sind gespeichert."
|
3827 |
|
3828 |
-
#: ../../plugins/blog2social-v-4-
|
3829 |
msgid "Your settings could not be saved."
|
3830 |
msgstr "Deine Einstellungen konnte nicht gespeichert werden. Versuche es erneut."
|
3831 |
|
3832 |
-
#: ../../plugins/blog2social-v-4-
|
3833 |
msgid ""
|
3834 |
"Your settings could not be saved, because you have auto-posting enabled but "
|
3835 |
"no social networks selected."
|
@@ -3837,7 +3858,7 @@ msgstr ""
|
|
3837 |
"Deine Einstellungen konnten nicht gespeichert werden, weil Du keine Social "
|
3838 |
"Media Netzwerke ausgewählt hast."
|
3839 |
|
3840 |
-
#: ../../plugins/blog2social-v-4-
|
3841 |
#, php-format
|
3842 |
msgid ""
|
3843 |
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
@@ -3849,23 +3870,23 @@ msgstr ""
|
|
3849 |
"sehr freuen und uns helfen, das Tool bekannter zu machen. Vielen Dank für "
|
3850 |
"Deine Unterstützung.\n"
|
3851 |
|
3852 |
-
#: ../../plugins/blog2social-v-4-
|
3853 |
msgid "Ok, you deserve it"
|
3854 |
msgstr "Ok, Ihr habt es verdient "
|
3855 |
|
3856 |
-
#: ../../plugins/blog2social-v-4-
|
3857 |
msgid "Nope, maybe later"
|
3858 |
msgstr "Nicht jetzt, vielleicht später "
|
3859 |
|
3860 |
-
#: ../../plugins/blog2social-v-4-
|
3861 |
msgid "I already did it"
|
3862 |
msgstr "Habe ich schon gemacht "
|
3863 |
|
3864 |
-
#: ../../plugins/blog2social-v-4-
|
3865 |
msgid "Boost your social media automation with Blog2Social PREMIUM!"
|
3866 |
msgstr "Mache mehr aus Deiner Social Media Automatisierung mit Blog2Social PREMIUM!"
|
3867 |
|
3868 |
-
#: ../../plugins/blog2social-v-4-
|
3869 |
msgid ""
|
3870 |
"Blog2Social provides even more options for auto-posting and auto-scheduling "
|
3871 |
"for your posts. Easily schedule your posts with the Best Time Scheduler or "
|
@@ -3880,27 +3901,27 @@ msgstr ""
|
|
3880 |
"Formaten für jedes Netzwerk und jeden Post, wähle dazu beliebige Bilder aus "
|
3881 |
"deiner Bibliothek aus. Und vieles mehr.\n"
|
3882 |
|
3883 |
-
#: ../../plugins/blog2social-v-4-
|
3884 |
msgid "Yes, I want to test Blog2Social PREMIUM 30 days for free"
|
3885 |
msgstr "Ja, ich möchte das Blog2Social PREMIUM 30 Tage kostenlos testen "
|
3886 |
|
3887 |
-
#: ../../plugins/blog2social-v-4-
|
3888 |
msgid "No, I'm happy with Blog2Social FREE"
|
3889 |
msgstr "Nein, ich bin glücklich mit Blog2Social FREE "
|
3890 |
|
3891 |
-
#: ../../plugins/blog2social-v-4-
|
3892 |
msgid "Your Blog2Social Premium Free Version is activated for "
|
3893 |
msgstr "Deine Blog2Social Testphase läuft noch"
|
3894 |
|
3895 |
-
#: ../../plugins/blog2social-v-4-
|
3896 |
msgid " Days"
|
3897 |
msgstr "Tage"
|
3898 |
|
3899 |
-
#: ../../plugins/blog2social-v-4-
|
3900 |
msgid " today"
|
3901 |
msgstr "heute"
|
3902 |
|
3903 |
-
#: ../../plugins/blog2social-v-4-
|
3904 |
msgid ""
|
3905 |
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
3906 |
"autopilot, automatically schedule your social media posts with the Best Time "
|
@@ -3916,46 +3937,46 @@ msgstr ""
|
|
3916 |
"hoch. Speichere mehrere Kombinationen von Netzwerken für verschiedene Zwecke."
|
3917 |
" "
|
3918 |
|
3919 |
-
#: ../../plugins/blog2social-v-4-
|
3920 |
-
#: /plugins/blog2social-v-4-
|
3921 |
msgid "I need some more time to decide"
|
3922 |
msgstr "Ich brauche noch mehr Zeit um mich zu entscheiden "
|
3923 |
|
3924 |
-
#: ../../plugins/blog2social-v-4-
|
3925 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
3926 |
msgstr "Deine kostenlose Testversion von Blog2Social PREMIUM ist abgelaufen."
|
3927 |
|
3928 |
-
#: ../../plugins/blog2social-v-4-
|
3929 |
msgid "We hope you liked Blog2Social Premium."
|
3930 |
msgstr "Wir hoffen, dass Dir Blog2Social Premium gefällt."
|
3931 |
|
3932 |
-
#: ../../plugins/blog2social-v-4-
|
3933 |
msgid "Yes, I want to upgrade now"
|
3934 |
msgstr "Ja, ich möchte jetzt von Premium profitieren "
|
3935 |
|
3936 |
-
#: ../../plugins/blog2social-v-4-
|
3937 |
msgid "Did you miss something? Tell us!"
|
3938 |
msgstr "Vermisst Du etwas? Sag es uns! "
|
3939 |
|
3940 |
-
#: ../../plugins/blog2social-v-4-
|
3941 |
msgid "Version"
|
3942 |
msgstr "Version"
|
3943 |
|
3944 |
-
#: ../../plugins/blog2social-v-4-
|
3945 |
-
#: /plugins/blog2social-v-4-
|
3946 |
msgid "Plans & Pricing"
|
3947 |
msgstr "Versionen & Preise"
|
3948 |
|
3949 |
-
#: ../../plugins/blog2social-v-4-
|
3950 |
-
#: /plugins/blog2social-v-4-
|
3951 |
msgid "Support"
|
3952 |
msgstr "Support"
|
3953 |
|
3954 |
-
#: ../../plugins/blog2social-v-4-
|
3955 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
3956 |
msgstr "Teste Blog2Social PREMIUM 30 Tage kostenlos"
|
3957 |
|
3958 |
-
#: ../../plugins/blog2social-v-4-
|
3959 |
msgid ""
|
3960 |
"The free trial can not be started. This blog has been already registered for "
|
3961 |
"the free trial."
|
@@ -3963,43 +3984,43 @@ msgstr ""
|
|
3963 |
"Die kostenlose Testphase konnte nicht aktiviert werden. Dieser Blog wurde "
|
3964 |
"bereits für die kostenlose Testzeit freigeschaltet."
|
3965 |
|
3966 |
-
#: ../../plugins/blog2social-v-4-
|
3967 |
msgid "Share on multiple accounts per network"
|
3968 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
3969 |
|
3970 |
-
#: ../../plugins/blog2social-v-4-
|
3971 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
3972 |
msgstr "Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
3973 |
|
3974 |
-
#: ../../plugins/blog2social-v-4-
|
3975 |
msgid "Reporting with links to all published social media posts"
|
3976 |
msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
|
3977 |
|
3978 |
-
#: ../../plugins/blog2social-v-4-
|
3979 |
-
#: /plugins/blog2social-v-4-
|
3980 |
-
#: /plugins/blog2social-v-4-
|
3981 |
-
#: /plugins/blog2social-v-4-
|
3982 |
-
#: /plugins/blog2social-v-4-
|
3983 |
msgid "E-Mail"
|
3984 |
msgstr "E-Mail"
|
3985 |
|
3986 |
-
#: ../../plugins/blog2social-v-4-
|
3987 |
-
#: /plugins/blog2social-v-4-
|
3988 |
-
#: /plugins/blog2social-v-4-
|
3989 |
-
#: /plugins/blog2social-v-4-
|
3990 |
-
#: /plugins/blog2social-v-4-
|
3991 |
msgid "First Name"
|
3992 |
msgstr "Vorname"
|
3993 |
|
3994 |
-
#: ../../plugins/blog2social-v-4-
|
3995 |
-
#: /plugins/blog2social-v-4-
|
3996 |
-
#: /plugins/blog2social-v-4-
|
3997 |
-
#: /plugins/blog2social-v-4-
|
3998 |
-
#: /plugins/blog2social-v-4-
|
3999 |
msgid "Last Name"
|
4000 |
msgstr "Nachname"
|
4001 |
|
4002 |
-
#: ../../plugins/blog2social-v-4-
|
4003 |
msgid ""
|
4004 |
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
4005 |
"href=\"https://www.blog2social.com/en/terms/\">Conditions of Use</a> and <a "
|
@@ -4011,64 +4032,76 @@ msgstr ""
|
|
4011 |
"target=\"_blank\" href=\"https://www.blog2social."
|
4012 |
"com/de/datenschutz/\">Datenschutzerklärung</a> einverstanden.\n"
|
4013 |
|
4014 |
-
#: ../../plugins/blog2social-v-4-
|
4015 |
msgid "No credit card required"
|
4016 |
msgstr "keine Kreditkarte notwendig"
|
4017 |
|
4018 |
-
#: ../../plugins/blog2social-v-4-
|
4019 |
msgid "Get Started"
|
4020 |
msgstr "Jetzt loslegen"
|
4021 |
|
4022 |
-
#: ../../plugins/blog2social-v-4-
|
4023 |
msgid "Thank you for choosing Blog2Social Premium."
|
4024 |
msgstr "Vielen Dank, dass Du Dich für Blog2Social Premium entschieden hast."
|
4025 |
|
4026 |
-
#: ../../plugins/blog2social-v-4-
|
4027 |
-
#: /plugins/blog2social-v-4-
|
4028 |
msgid "Your license"
|
4029 |
msgstr "Deine Lizenz"
|
4030 |
|
4031 |
-
#: ../../plugins/blog2social-v-4-
|
4032 |
msgid "Blog2Social Premium"
|
4033 |
msgstr "Blog2Social Premium"
|
4034 |
|
4035 |
-
#: ../../plugins/blog2social-v-4-
|
4036 |
msgid "has been successfully activated."
|
4037 |
msgstr "wurde erfolgreich aktiviert."
|
4038 |
|
4039 |
-
#: ../../plugins/blog2social-v-4-
|
4040 |
msgid "Your entered License Key is invalid. Please contact support!"
|
4041 |
msgstr "Dein Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Support!"
|
4042 |
|
4043 |
-
#: ../../plugins/blog2social-v-4-
|
4044 |
msgid "Your license key has reached the maximum number of users."
|
4045 |
msgstr "Dein Lizenzschlüssel hat die maximale Anzahl an Benutzern erreicht."
|
4046 |
|
4047 |
-
#: ../../plugins/blog2social-v-4-
|
4048 |
msgid "OK"
|
4049 |
msgstr "OK"
|
4050 |
|
4051 |
-
#: ../../plugins/blog2social-v-4-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4052 |
msgid "All Posts"
|
4053 |
msgstr "alle Beiträge"
|
4054 |
|
4055 |
-
#: ../../plugins/blog2social-v-4-
|
4056 |
msgid "Shared Posts"
|
4057 |
msgstr "geteilte Beiträge"
|
4058 |
|
4059 |
-
#: ../../plugins/blog2social-v-4-
|
4060 |
msgid "Notifications"
|
4061 |
msgstr "Benachrichtungen"
|
4062 |
|
4063 |
-
#: ../../plugins/blog2social-v-4-
|
4064 |
msgid "Network Activity (today)"
|
4065 |
msgstr "Netzwerk Aktivitäten (heute)"
|
4066 |
|
4067 |
-
#: ../../plugins/blog2social-v-4-
|
4068 |
msgid "Rate it!"
|
4069 |
msgstr "Bewerte Blog2Social"
|
4070 |
|
4071 |
-
#: ../../plugins/blog2social-v-4-
|
4072 |
msgid ""
|
4073 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4074 |
"anything that does not work for you, please contact us!"
|
@@ -4076,162 +4109,162 @@ msgstr ""
|
|
4076 |
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
4077 |
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
4078 |
|
4079 |
-
#: ../../plugins/blog2social-v-4-
|
4080 |
msgid "GET STARTED"
|
4081 |
msgstr "Jetzt Affiliate-Partner werden"
|
4082 |
|
4083 |
-
#: ../../plugins/blog2social-v-4-
|
4084 |
msgid "Posts from Blog2Social"
|
4085 |
msgstr "Beiträge von Blog2Social"
|
4086 |
|
4087 |
-
#: ../../plugins/blog2social-v-4-
|
4088 |
msgid "Post a Press Release"
|
4089 |
msgstr "Beitrag als Pressemitteilung veröffentlichen"
|
4090 |
|
4091 |
-
#: ../../plugins/blog2social-v-4-
|
4092 |
msgid "Category"
|
4093 |
msgstr "Kategorie"
|
4094 |
|
4095 |
-
#: ../../plugins/blog2social-v-4-
|
4096 |
msgid "Language"
|
4097 |
msgstr "Sprache"
|
4098 |
|
4099 |
-
#: ../../plugins/blog2social-v-4-
|
4100 |
msgid "German"
|
4101 |
msgstr "Deutsch"
|
4102 |
|
4103 |
-
#: ../../plugins/blog2social-v-4-
|
4104 |
msgid "English"
|
4105 |
msgstr "Englisch"
|
4106 |
|
4107 |
-
#: ../../plugins/blog2social-v-4-
|
4108 |
-
#: /plugins/blog2social-v-4-
|
4109 |
msgid "Subtitle"
|
4110 |
msgstr "Untertitel"
|
4111 |
|
4112 |
-
#: ../../plugins/blog2social-v-4-
|
4113 |
-
#: /plugins/blog2social-v-4-
|
4114 |
msgid "YouTube-Link"
|
4115 |
msgstr "Youtube-Link"
|
4116 |
|
4117 |
-
#: ../../plugins/blog2social-v-4-
|
4118 |
-
#: /plugins/blog2social-v-4-
|
4119 |
msgid "Message"
|
4120 |
msgstr "Mitteilung"
|
4121 |
|
4122 |
-
#: ../../plugins/blog2social-v-4-
|
4123 |
msgid "Keywords"
|
4124 |
msgstr "Schlüsselworter"
|
4125 |
|
4126 |
-
#: ../../plugins/blog2social-v-4-
|
4127 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
4128 |
msgstr "Schlüsselwörter mit Komma getrennt (z.B.: Blog2Social,PR-Gateway)"
|
4129 |
|
4130 |
-
#: ../../plugins/blog2social-v-4-
|
4131 |
-
#: /plugins/blog2social-v-4-
|
4132 |
msgid "Shortext"
|
4133 |
msgstr "Kurzbeschreibung"
|
4134 |
|
4135 |
-
#: ../../plugins/blog2social-v-4-
|
4136 |
msgid "Contact Details"
|
4137 |
msgstr "Kontaktangaben"
|
4138 |
|
4139 |
-
#: ../../plugins/blog2social-v-4-
|
4140 |
msgid "Company"
|
4141 |
msgstr "Firmenkontakt"
|
4142 |
|
4143 |
-
#: ../../plugins/blog2social-v-4-
|
4144 |
msgid "Press"
|
4145 |
msgstr "Pressekontakt"
|
4146 |
|
4147 |
-
#: ../../plugins/blog2social-v-4-
|
4148 |
-
#: /plugins/blog2social-v-4-
|
4149 |
-
#: /plugins/blog2social-v-4-
|
4150 |
-
#: /plugins/blog2social-v-4-
|
4151 |
msgid "Name"
|
4152 |
msgstr "Name"
|
4153 |
|
4154 |
-
#: ../../plugins/blog2social-v-4-
|
4155 |
-
#: /plugins/blog2social-v-4-
|
4156 |
msgid "Mrs."
|
4157 |
msgstr "Frau"
|
4158 |
|
4159 |
-
#: ../../plugins/blog2social-v-4-
|
4160 |
-
#: /plugins/blog2social-v-4-
|
4161 |
msgid "Mr."
|
4162 |
msgstr "Herr"
|
4163 |
|
4164 |
-
#: ../../plugins/blog2social-v-4-
|
4165 |
-
#: /plugins/blog2social-v-4-
|
4166 |
-
#: /plugins/blog2social-v-4-
|
4167 |
-
#: /plugins/blog2social-v-4-
|
4168 |
msgid "Street"
|
4169 |
msgstr "Straße"
|
4170 |
|
4171 |
-
#: ../../plugins/blog2social-v-4-
|
4172 |
-
#: /plugins/blog2social-v-4-
|
4173 |
-
#: /plugins/blog2social-v-4-
|
4174 |
-
#: /plugins/blog2social-v-4-
|
4175 |
msgid "Number"
|
4176 |
msgstr "Nummer"
|
4177 |
|
4178 |
-
#: ../../plugins/blog2social-v-4-
|
4179 |
-
#: /plugins/blog2social-v-4-
|
4180 |
-
#: /plugins/blog2social-v-4-
|
4181 |
-
#: /plugins/blog2social-v-4-
|
4182 |
msgid "Zip Code"
|
4183 |
msgstr "PLZ"
|
4184 |
|
4185 |
-
#: ../../plugins/blog2social-v-4-
|
4186 |
-
#: /plugins/blog2social-v-4-
|
4187 |
-
#: /plugins/blog2social-v-4-
|
4188 |
-
#: /plugins/blog2social-v-4-
|
4189 |
msgid "City"
|
4190 |
msgstr "Stadt"
|
4191 |
|
4192 |
-
#: ../../plugins/blog2social-v-4-
|
4193 |
-
#: /plugins/blog2social-v-4-
|
4194 |
msgid "Country"
|
4195 |
msgstr "Land"
|
4196 |
|
4197 |
-
#: ../../plugins/blog2social-v-4-
|
4198 |
-
#: /plugins/blog2social-v-4-
|
4199 |
-
#: /plugins/blog2social-v-4-
|
4200 |
-
#: /plugins/blog2social-v-4-
|
4201 |
msgid "Phone"
|
4202 |
msgstr "Telefon"
|
4203 |
|
4204 |
-
#: ../../plugins/blog2social-v-4-
|
4205 |
-
#: /plugins/blog2social-v-4-
|
4206 |
-
#: /plugins/blog2social-v-4-
|
4207 |
-
#: /plugins/blog2social-v-4-
|
4208 |
msgid "Website"
|
4209 |
msgstr "Webseite"
|
4210 |
|
4211 |
-
#: ../../plugins/blog2social-v-4-
|
4212 |
-
#: /plugins/blog2social-v-4-
|
4213 |
msgid "Company Description"
|
4214 |
msgstr "Firmenbeschreibung"
|
4215 |
|
4216 |
-
#: ../../plugins/blog2social-v-4-
|
4217 |
msgid "You are signed out of <b>PR-Gateway</b>!"
|
4218 |
msgstr "Du bist nun bei PR-Gateway abgemeldet!"
|
4219 |
|
4220 |
-
#: ../../plugins/blog2social-v-4-
|
4221 |
msgid "Your message will now be sent over PR gateway to the press portals!"
|
4222 |
msgstr "Deine Mitteilung wird nun über PR-Gateway an die Presseportale übermittelt!"
|
4223 |
|
4224 |
-
#: ../../plugins/blog2social-v-4-
|
4225 |
msgid "See all publications for your message live on "
|
4226 |
msgstr "Verfolge live die Veröffentlichungen Deiner Mitteilung unter"
|
4227 |
|
4228 |
-
#: ../../plugins/blog2social-v-4-
|
4229 |
msgid "Your message save as draft by PR-Gateway!"
|
4230 |
msgstr ""
|
4231 |
"Deine Mitteilung wurde erfolgreich an PR-Gateway übermittelt und als Entwurf "
|
4232 |
"abgelegt!"
|
4233 |
|
4234 |
-
#: ../../plugins/blog2social-v-4-
|
4235 |
msgid ""
|
4236 |
"Unfortunately your request can not be processed by Blog2Social. Please try "
|
4237 |
"again!"
|
@@ -4239,13 +4272,13 @@ msgstr ""
|
|
4239 |
"Deine Anfrage kann leider vom Blog2Social nicht verarbeitet werden. Bitte "
|
4240 |
"versuche es erneut!"
|
4241 |
|
4242 |
-
#: ../../plugins/blog2social-v-4-
|
4243 |
msgid "Your message has not been received successfully with us. Please try again!"
|
4244 |
msgstr ""
|
4245 |
"Deine Mitteilung ist bei uns leider nicht erfolglreich eingegangen. Bitte "
|
4246 |
"versuche es erneut!"
|
4247 |
|
4248 |
-
#: ../../plugins/blog2social-v-4-
|
4249 |
msgid ""
|
4250 |
"PR-Gateway offers a paid online distribution service for submitting press "
|
4251 |
"releases, articles and social media news to more than 250 news sites, "
|
@@ -4264,10 +4297,10 @@ msgstr ""
|
|
4264 |
"auf ausgewählten kostenfreien und kostenpflichtigen Portale zu "
|
4265 |
"veröffentlichen."
|
4266 |
|
4267 |
-
#: ../../plugins/blog2social-v-4-
|
4268 |
msgid "Register here to open your PR-Gateway account."
|
4269 |
msgstr "Registriere hier Deinen PR-Gateway Account, kostenlos und unverbindlich."
|
4270 |
|
4271 |
-
#: ../../plugins/blog2social-v-4-
|
4272 |
msgid "Logout"
|
4273 |
msgstr "Abmelden"
|
4 |
"Stable (latest release)\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
"POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
|
7 |
+
"PO-Revision-Date: Wed Jun 20 2018 09:46:28 GMT+0200\n"
|
8 |
"Last-Translator: Sven Bürger <s.buerger@adenion.de>\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: German\n"
|
23 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
"X-Loco-Target-Locale: de_DE"
|
25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
#. Name of the plugin
|
27 |
msgid "Blog2Social: Social Media Auto Post & Scheduler"
|
28 |
msgstr "Blog2Social: Social Media Auto Post & Scheduler"
|
48 |
msgid "Blog2Social, Adenion"
|
49 |
msgstr "Blog2Social, Adenion"
|
50 |
|
51 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Calendar/Filter.php:121
|
52 |
msgid "show all"
|
53 |
msgstr "alle anzeigen"
|
54 |
|
55 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:46 ../..
|
56 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Navbar.php:32
|
57 |
msgid "Default"
|
58 |
msgstr "Standard"
|
59 |
|
60 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:46
|
61 |
msgid "Show all"
|
62 |
msgstr "alle anzeigen"
|
63 |
|
64 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:47 ../..
|
65 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:131
|
66 |
msgid "My profile"
|
67 |
msgstr "Mein Profil"
|
68 |
|
69 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:49
|
70 |
msgid "Your profiles:"
|
71 |
msgstr "weitere Profile:"
|
72 |
|
73 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:104 ../..
|
74 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:258
|
75 |
msgid "Connections"
|
76 |
msgstr "Verbindungen"
|
77 |
|
78 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:116 ../..
|
79 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:116 ../..
|
80 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:154 ../..
|
81 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:156 ../..
|
82 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:267 ../..
|
83 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:448 ../..
|
84 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:462 ../..
|
85 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:484 ../..
|
86 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:535 ../..
|
87 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:34 ../..
|
88 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:34 ../..
|
89 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:563
|
90 |
msgid "Profile"
|
91 |
msgstr "Profil"
|
92 |
|
93 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:116 ../..
|
94 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:34
|
95 |
+
msgid "You want to connect a network profile?"
|
96 |
+
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
97 |
+
|
98 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:116 ../..
|
99 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:119 ../..
|
100 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:122 ../..
|
101 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/PostBox.php:109 ../..
|
102 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:115 ../..
|
103 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:137 ../..
|
104 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:75 ../..
|
105 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:82 ../..
|
106 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:692 ../..
|
107 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:28 ../..
|
108 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:31 ../..
|
109 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:34 ../..
|
110 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:641 ../../plugins/blog2social-v-
|
111 |
+
#: 4-9/includes/Loader.php:708 ../../plugins/blog2social-v-4-9/views/b2s/network.
|
112 |
+
#: php:35 ../../plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:
|
113 |
+
#: 9 ../../plugins/blog2social-v-4-9/views/b2s/settings.php:67 ../..
|
114 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:89 ../../plugins/blog2social-
|
115 |
+
#: v-4-9/views/b2s/ship.php:17 ../../plugins/blog2social-v-4-
|
116 |
+
#: 9/views/b2s/widgets/posts.php:31 ../../plugins/blog2social-v-4-
|
117 |
+
#: 9/views/b2s/html/post.navbar.phtml:8 ../../plugins/blog2social-v-4-
|
118 |
+
#: 9/views/b2s/html/post.navbar.phtml:12
|
119 |
+
msgid "PREMIUM"
|
120 |
+
msgstr "PREMIUM"
|
121 |
+
|
122 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:119 ../..
|
123 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:119 ../..
|
124 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:186 ../..
|
125 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:188 ../..
|
126 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:267 ../..
|
127 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:463 ../..
|
128 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:485 ../..
|
129 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:538 ../..
|
130 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:31 ../..
|
131 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:31 ../..
|
132 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:563
|
133 |
msgid "Page"
|
134 |
msgstr "Seite"
|
135 |
|
136 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:119 ../..
|
137 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:31
|
138 |
msgid "You want to connect a network page?"
|
139 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
140 |
|
141 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:122 ../..
|
142 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:122 ../..
|
143 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:218 ../..
|
144 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:220 ../..
|
145 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:464 ../..
|
146 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:486 ../..
|
147 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:542 ../..
|
148 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:28 ../..
|
149 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:28 ../..
|
150 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:563
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
msgid "Group"
|
152 |
msgstr "Gruppe"
|
153 |
|
154 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:122 ../..
|
155 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Portale.php:28
|
156 |
msgid "You want to connect a social media group?"
|
157 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
158 |
|
159 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:165 ../..
|
160 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:228
|
161 |
msgid "Authorization is interrupted since"
|
162 |
msgstr "Autorisierung ist unterbrochen seit"
|
163 |
|
164 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:176 ../..
|
165 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:208 ../..
|
166 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:240
|
167 |
msgid "To reactivate this social media connection,"
|
168 |
msgstr "Um diese Social Media Verbindung zu reaktivieren,"
|
169 |
|
170 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:176 ../..
|
171 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:208 ../..
|
172 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:240 ../..
|
173 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:32
|
174 |
msgid "please upgrade"
|
175 |
msgstr "Bitte upgraden"
|
176 |
|
177 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Network/Item.php:196
|
178 |
msgid "Authorization is interrupted since"
|
179 |
msgstr "Autorisierung ist unterbrochen seit"
|
180 |
|
181 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:34
|
182 |
msgid "all authors"
|
183 |
msgstr "alle Autoren"
|
184 |
|
185 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:49 ../..
|
186 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:191 ../..
|
187 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Save.php:331 ../..
|
188 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:41 ../..
|
189 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:97 ../..
|
190 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:12
|
191 |
msgid "published"
|
192 |
msgstr "veröffentlicht"
|
193 |
|
194 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:49 ../..
|
195 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:191 ../..
|
196 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:41 ../..
|
197 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:97 ../..
|
198 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:12
|
199 |
msgid "scheduled"
|
200 |
msgstr "geplant"
|
201 |
|
202 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:49 ../..
|
203 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:191 ../..
|
204 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:97 ../..
|
205 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:12
|
206 |
msgid "draft"
|
207 |
msgstr "Entwurf"
|
208 |
|
209 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:50
|
210 |
msgid "all statuses"
|
211 |
msgstr "kein Status"
|
212 |
|
213 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:61 ../..
|
214 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:73
|
215 |
msgid "newest first"
|
216 |
msgstr "neuste zuerst"
|
217 |
|
218 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:61 ../..
|
219 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:73
|
220 |
msgid "oldest first"
|
221 |
msgstr "älteste zuerst"
|
222 |
|
223 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:86
|
224 |
msgid "all categories & tags"
|
225 |
msgstr "alle Kategorien & Schlagwörter"
|
226 |
|
227 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:108 ../..
|
228 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:53
|
229 |
msgid "all post types"
|
230 |
msgstr "alle Typen"
|
231 |
|
232 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:129 ../..
|
233 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:74
|
234 |
msgid "Search Title"
|
235 |
msgstr "Suche nach Titel"
|
236 |
|
237 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:149 ../..
|
238 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:85
|
239 |
msgid "sort"
|
240 |
msgstr "sortieren"
|
241 |
|
242 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:150 ../..
|
243 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:86
|
244 |
msgid "reset"
|
245 |
msgstr "zurücksetzen"
|
246 |
|
247 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:155
|
248 |
msgid "selected date"
|
249 |
msgstr "ausgewähltes Datum"
|
250 |
|
251 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Filter.php:155
|
252 |
msgid "scheduled post(s)"
|
253 |
msgstr "geplante Beiträge"
|
254 |
|
255 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:194
|
256 |
msgid "You have no posts published or scheduled."
|
257 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
258 |
|
259 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:216
|
260 |
msgid "last shared on social media"
|
261 |
msgstr "zuletzt auf Social Media geteilt"
|
262 |
|
263 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:224
|
264 |
msgid "Share on Social Media"
|
265 |
msgstr "auf Social Media teilen"
|
266 |
|
267 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:226 ../..
|
268 |
+
#: /plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:129
|
269 |
msgid "Author"
|
270 |
msgstr "Autor"
|
271 |
|
272 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:226 ../..
|
273 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:31
|
274 |
msgid "on blog"
|
275 |
msgstr "auf dem Blog"
|
276 |
|
277 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:243 ../..
|
278 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:234 ../../plugins/blog2social-v-
|
279 |
+
#: 4-9/views/b2s/ship.php:236
|
280 |
msgid "Re-share this post"
|
281 |
msgstr "Diesen Beitrag nochmal teilen"
|
282 |
|
283 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:244 ../..
|
284 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:267
|
285 |
msgid "Details"
|
286 |
msgstr "Details"
|
287 |
|
288 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:246
|
289 |
msgid "shared social media posts"
|
290 |
msgstr "geteilte Beiträge"
|
291 |
|
292 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:246
|
293 |
msgid "latest share by"
|
294 |
msgstr "zuletzt geteilt von"
|
295 |
|
296 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:269 ../..
|
297 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/activity.php:13
|
298 |
msgid "scheduled social media posts"
|
299 |
msgstr "geplante Beiträge"
|
300 |
|
301 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:269
|
302 |
msgid "next share by"
|
303 |
msgstr "als nächstes geteilt von"
|
304 |
|
305 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:374 ../..
|
306 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:33 ../../plugins/blog2social-
|
307 |
+
#: v-4-9/views/b2s/widgets/premium.php:47
|
308 |
msgid "Auto-Posting"
|
309 |
msgstr "Auto-Posting"
|
310 |
|
311 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:374 ../..
|
312 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:448 ../..
|
313 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Save.php:341
|
314 |
msgid "Retweet"
|
315 |
msgstr "Retweet"
|
316 |
|
317 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:380 ../..
|
318 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:453
|
319 |
msgid "select all"
|
320 |
msgstr "alle auswählen"
|
321 |
|
322 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:383
|
323 |
msgid "show"
|
324 |
msgstr "ansehen"
|
325 |
|
326 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:390 ../..
|
327 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Save.php:352
|
328 |
msgid "Please see"
|
329 |
msgstr "Siehe"
|
330 |
|
331 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:390 ../..
|
332 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Save.php:352
|
333 |
msgid "FAQ"
|
334 |
msgstr "FAQ"
|
335 |
|
336 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:395
|
337 |
msgid "sharing in progress by"
|
338 |
msgstr "wir geteilt"
|
339 |
|
340 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:395
|
341 |
msgid "shared by"
|
342 |
msgstr "geteilt von"
|
343 |
|
344 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:417 ../..
|
345 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:431
|
346 |
msgid "You want to delete a publish post entry?"
|
347 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
348 |
|
349 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:418 ../..
|
350 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:432
|
351 |
msgid "delete from reporting"
|
352 |
msgstr "aus Reporting löschen"
|
353 |
|
354 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:422
|
355 |
msgid "re-share"
|
356 |
msgstr "erneut teilen"
|
357 |
|
358 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:465
|
359 |
msgid "scheduled by"
|
360 |
msgstr "geplant von "
|
361 |
|
362 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:470
|
363 |
msgid "You want to edit your scheduled post?"
|
364 |
msgstr "Möchtest Du Deinen geplanten Beitrag bearbeiten?"
|
365 |
|
366 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:471
|
367 |
msgid "edit"
|
368 |
msgstr "bearbeiten"
|
369 |
|
370 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:474 ../..
|
371 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:104 ../..
|
372 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:670 ../..
|
373 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:808
|
374 |
msgid "delete"
|
375 |
msgstr "löschen"
|
376 |
|
377 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Post/Item.php:482
|
378 |
msgid "delete scheduling"
|
379 |
msgstr "Planung löschen"
|
380 |
|
381 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:27 ../..
|
382 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:50
|
383 |
msgid "Please see FAQ"
|
384 |
msgstr "Siehe FAQ"
|
385 |
|
386 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:36
|
387 |
msgid "last auto-post:"
|
388 |
msgstr "letzter Auto-Post:"
|
389 |
|
390 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:78 ../..
|
391 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:537 ../../plugins/blog2social-v-
|
392 |
+
#: 4-9/views/b2s/html/header.phtml:55
|
393 |
msgid "The connection to the server failed. Try again!"
|
394 |
msgstr ""
|
395 |
"Eine Verbindung zum Server konnte nicht hergestellt werden. Versuche es "
|
396 |
"erneut!"
|
397 |
|
398 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:79 ../..
|
399 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:49
|
400 |
msgid ""
|
401 |
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
402 |
"heartbeats for using Blog2Social!"
|
404 |
"WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
|
405 |
"Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
|
406 |
|
407 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:80 ../..
|
408 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/PostBox.php:82
|
409 |
msgid ""
|
410 |
"Your post is still on draft or pending status. Please make sure that your "
|
411 |
"post is published or scheduled to be published on this blog. You can then "
|
415 |
"geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
|
416 |
"planen."
|
417 |
|
418 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:81 ../..
|
419 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:521
|
420 |
msgid ""
|
421 |
"There are no authorizations for your selected profile. Please, authorize "
|
422 |
"with a social network or select a other profile."
|
424 |
"Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
|
425 |
"mit einem Netzwerk oder wähle ein anderes Profil aus. "
|
426 |
|
427 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:81 ../..
|
428 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/PostBox.php:178
|
429 |
msgid "Network settings"
|
430 |
msgstr "Netzwerkeinstellungen"
|
431 |
|
432 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:83
|
433 |
msgid ""
|
434 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
435 |
"Networks do not allow postings from local installations."
|
437 |
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
438 |
"Fragen wende Dich bitte an unseren Support."
|
439 |
|
440 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:99
|
441 |
msgid "Custom Sharing & Scheduling"
|
442 |
msgstr "Individuelles Teilen und Planen"
|
443 |
|
444 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:99 ../..
|
445 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/PostBox.php:102 ../..
|
446 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:91 ../..
|
447 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:99 ../..
|
448 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:108 ../..
|
449 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:110 ../..
|
450 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:122 ../..
|
451 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:128 ../..
|
452 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:142 ../..
|
453 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:182 ../..
|
454 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:309 ../..
|
455 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:311 ../..
|
456 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:468 ../..
|
457 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:634 ../..
|
458 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:18 ../../plugins/blog2social-
|
459 |
+
#: v-4-9/views/b2s/settings.php:69 ../../plugins/blog2social-v-4-
|
460 |
+
#: 9/views/b2s/settings.php:92 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
461 |
+
#: 55 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:145 ../..
|
462 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:232
|
463 |
msgid "Info"
|
464 |
msgstr "Info"
|
465 |
|
466 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:100
|
467 |
msgid "Customize & Schedule Social Media Posts"
|
468 |
msgstr "Social Media Posts anpassen & planen"
|
469 |
|
470 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:102 ../..
|
471 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:309
|
472 |
msgid "Social Media Auto-Posting"
|
473 |
msgstr "Social Media Auto-Posting"
|
474 |
|
475 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:106
|
476 |
msgid "enable Auto-Posting"
|
477 |
msgstr "Auto-Posting aktivieren"
|
478 |
|
479 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:116 ../..
|
480 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:47 ../../plugins/blog2social-
|
481 |
+
#: v-4-9/views/b2s/network.php:172 ../../plugins/blog2social-v-4-9/views/b2s/post.
|
482 |
+
#: calendar.php:50 ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:
|
483 |
+
#: 187 ../../plugins/blog2social-v-4-9/views/b2s/post.notice.php:40 ../..
|
484 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.php:37 ../../plugins/blog2social-v-4-
|
485 |
+
#: 9/views/b2s/post.publish.php:40 ../../plugins/blog2social-v-4-9/views/b2s/post.
|
486 |
+
#: sched.php:52 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:167 ../..
|
487 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:536 ../../plugins/blog2social-v-
|
488 |
+
#: 4-9/views/prg/html/header.phtml:81
|
489 |
msgid "Loading..."
|
490 |
msgstr "Lade Daten..."
|
491 |
|
492 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:124
|
493 |
msgid "Blog2Social: Customize & Schedule Social Media Posts"
|
494 |
msgstr "Blog2Social : Beiträge anpassen & planen"
|
495 |
|
496 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:127
|
497 |
msgid ""
|
498 |
"Customize and schedule your social media posts on the one page preview for "
|
499 |
"all your selected networks: tailor your posts with individual comments, "
|
507 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
508 |
"Community zu erzielen"
|
509 |
|
510 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:136 ../..
|
511 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:306
|
512 |
msgid "Blog2Social: Social Media Auto-Posting"
|
513 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
514 |
|
515 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:140 ../..
|
516 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:310
|
517 |
msgid ""
|
518 |
"You have 2 general options to define the date and time to share your blog "
|
519 |
"posts on social media with the Auto-Poster:"
|
521 |
"Dir stehen grundsätzlich 2 Möglichkeiten zur Verfügung, per Auto-Posting "
|
522 |
"Deine Blogbeiträge auf Social Media zu teilen: "
|
523 |
|
524 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:141 ../..
|
525 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:311
|
526 |
msgid "1. Immediately after publishing your blog post"
|
527 |
msgstr "Sofort nach Veröffentlichung Deines Blogbeitrags "
|
528 |
|
529 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:142 ../..
|
530 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:312
|
531 |
msgid ""
|
532 |
"Published blog posts: If you publish your blog post with click on publish in "
|
533 |
"your WordPress post editor, Blog2Social will automatically share your social "
|
537 |
"auf “veröffentlichen” im Beitrags-Editor Deines Blogs sofort veröffentlichst,"
|
538 |
" teilt Blog2Social Deinen Blogbeitrag unmittelbar auf Social Media."
|
539 |
|
540 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:143 ../..
|
541 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:313
|
542 |
msgid ""
|
543 |
"Scheduled blog posts: If you schedule your blog post with click on schedule "
|
544 |
"in your WordPress post editor, Blog2Social will share your social media post "
|
549 |
"Deines Blogs klickst, teilt Blog2Social Deinen Blogbeitrag direkt nach der "
|
550 |
"Veröffentlichung auf Social Media. "
|
551 |
|
552 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:144 ../..
|
553 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:314
|
554 |
msgid ""
|
555 |
"2. Schedule your social media posts for a specific date and time If you want "
|
556 |
"to share your post at a particular date and time, different from your "
|
562 |
"abweichen, wähle die Option “zu bestimmten Zeiten” und lege das Datum und "
|
563 |
"die Uhrzeit fest. "
|
564 |
|
565 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:148 ../..
|
566 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:319
|
567 |
msgid "You want to auto-post your blog post?"
|
568 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
569 |
|
570 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:149 ../..
|
571 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:98 ../../plugins/blog2social-
|
572 |
+
#: v-4-9/views/b2s/post.calendar.php:225 ../../plugins/blog2social-v-4-
|
573 |
+
#: 9/views/b2s/ship.php:300 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
574 |
+
#: 360 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:406 ../..
|
575 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:25 ../..
|
576 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:143 ../..
|
577 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:209 ../..
|
578 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:249 ../..
|
579 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:320 ../..
|
580 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:405
|
581 |
msgid "With Blog2Social Premium you can:"
|
582 |
msgstr "Mit Blog2Social kannst Du:"
|
583 |
|
584 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:152 ../..
|
585 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:101 ../../plugins/blog2social-
|
586 |
+
#: v-4-9/views/b2s/post.calendar.php:228 ../../plugins/blog2social-v-4-
|
587 |
+
#: 9/views/b2s/ship.php:303 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
588 |
+
#: 363 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:409 ../..
|
589 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:28 ../..
|
590 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:146 ../..
|
591 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:212 ../..
|
592 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:252 ../..
|
593 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:323 ../..
|
594 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:408 ../..
|
595 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:310
|
596 |
msgid "Post on pages and groups"
|
597 |
msgstr "Poste auf Seiten und in Gruppen"
|
598 |
|
599 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:153 ../..
|
600 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:102 ../../plugins/blog2social-
|
601 |
+
#: v-4-9/views/b2s/post.calendar.php:229 ../../plugins/blog2social-v-4-
|
602 |
+
#: 9/views/b2s/ship.php:304 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
603 |
+
#: 364 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:410 ../..
|
604 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:29 ../..
|
605 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:147 ../..
|
606 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:213 ../..
|
607 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:253 ../..
|
608 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:324 ../..
|
609 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:409
|
610 |
msgid "Share on multiple profiles, pages and groups"
|
611 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
612 |
|
613 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:154 ../..
|
614 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:103 ../../plugins/blog2social-
|
615 |
+
#: v-4-9/views/b2s/post.calendar.php:230 ../../plugins/blog2social-v-4-
|
616 |
+
#: 9/views/b2s/ship.php:305 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
617 |
+
#: 365 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:411 ../..
|
618 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:30 ../..
|
619 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:64 ../..
|
620 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:148 ../..
|
621 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:214 ../..
|
622 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:254 ../..
|
623 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:325 ../..
|
624 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:410
|
625 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
626 |
msgstr ""
|
627 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
628 |
"Aktualisierung posten und zeitversetzt planen"
|
629 |
|
630 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:155 ../..
|
631 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:104 ../../plugins/blog2social-
|
632 |
+
#: v-4-9/views/b2s/post.calendar.php:231 ../../plugins/blog2social-v-4-
|
633 |
+
#: 9/views/b2s/ship.php:306 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
634 |
+
#: 366 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:412 ../..
|
635 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:31 ../..
|
636 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:149 ../..
|
637 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:215 ../..
|
638 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:255 ../..
|
639 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:326 ../..
|
640 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:411
|
641 |
msgid "Schedule your posts at the best times on each network"
|
642 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
643 |
|
644 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:156 ../..
|
645 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:105 ../../plugins/blog2social-
|
646 |
+
#: v-4-9/views/b2s/post.calendar.php:232 ../../plugins/blog2social-v-4-
|
647 |
+
#: 9/views/b2s/ship.php:307 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
648 |
+
#: 367 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:413 ../..
|
649 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:32 ../..
|
650 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:150 ../..
|
651 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:216 ../..
|
652 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:256 ../..
|
653 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:327 ../..
|
654 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:412
|
655 |
msgid ""
|
656 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
657 |
"social media posts"
|
658 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
659 |
|
660 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:157 ../..
|
661 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:106 ../../plugins/blog2social-
|
662 |
+
#: v-4-9/views/b2s/post.calendar.php:233 ../../plugins/blog2social-v-4-
|
663 |
+
#: 9/views/b2s/ship.php:308 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
664 |
+
#: 368 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:414 ../..
|
665 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:33 ../..
|
666 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:151 ../..
|
667 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:217 ../..
|
668 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:257 ../..
|
669 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:328 ../..
|
670 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:413
|
671 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
672 |
msgstr ""
|
673 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
674 |
"oder nach einem regelmäßigen Muster"
|
675 |
|
676 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:158 ../..
|
677 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:107 ../../plugins/blog2social-
|
678 |
+
#: v-4-9/views/b2s/post.calendar.php:234 ../../plugins/blog2social-v-4-
|
679 |
+
#: 9/views/b2s/ship.php:309 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
680 |
+
#: 369 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:415 ../..
|
681 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:34 ../..
|
682 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:152 ../..
|
683 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:218 ../..
|
684 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:258 ../..
|
685 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:329 ../..
|
686 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:414
|
687 |
msgid "Schedule and re-share old posts"
|
688 |
msgstr "Plane und teile alte Beiträge"
|
689 |
|
690 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:159 ../..
|
691 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:108 ../../plugins/blog2social-
|
692 |
+
#: v-4-9/views/b2s/post.calendar.php:235 ../../plugins/blog2social-v-4-
|
693 |
+
#: 9/views/b2s/ship.php:310 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
694 |
+
#: 370 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:416 ../..
|
695 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:35 ../..
|
696 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:66 ../..
|
697 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:153 ../..
|
698 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:219 ../..
|
699 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:259 ../..
|
700 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:330 ../..
|
701 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:415
|
702 |
msgid "Select link format or image format for your posts"
|
703 |
msgstr "Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
704 |
|
705 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:160 ../..
|
706 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:109 ../../plugins/blog2social-
|
707 |
+
#: v-4-9/views/b2s/post.calendar.php:236 ../../plugins/blog2social-v-4-
|
708 |
+
#: 9/views/b2s/ship.php:311 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
709 |
+
#: 371 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:417 ../..
|
710 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:36 ../..
|
711 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:67 ../..
|
712 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:154 ../..
|
713 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:220 ../..
|
714 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:260 ../..
|
715 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:331 ../..
|
716 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:416
|
717 |
msgid "Select individual images per post"
|
718 |
msgstr "Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
719 |
|
720 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:161 ../..
|
721 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:110 ../../plugins/blog2social-
|
722 |
+
#: v-4-9/views/b2s/post.calendar.php:237 ../../plugins/blog2social-v-4-
|
723 |
+
#: 9/views/b2s/ship.php:312 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
724 |
+
#: 372 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:418 ../..
|
725 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:37 ../..
|
726 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:155 ../..
|
727 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:221 ../..
|
728 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:261 ../..
|
729 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:332 ../..
|
730 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:417
|
731 |
msgid ""
|
732 |
"Reporting & calendar: keep track of your published and scheduled social "
|
733 |
"media posts"
|
735 |
"Reporting & Kalender: Verfolge Deine veröffentlichten und geplanten Social "
|
736 |
"Media Beiträge"
|
737 |
|
738 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:163 ../..
|
739 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:112 ../../plugins/blog2social-
|
740 |
+
#: v-4-9/views/b2s/post.calendar.php:239 ../../plugins/blog2social-v-4-
|
741 |
+
#: 9/views/b2s/ship.php:314 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
742 |
+
#: 374 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:420 ../..
|
743 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:39 ../..
|
744 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:157 ../..
|
745 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:223 ../..
|
746 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:263 ../..
|
747 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:334 ../..
|
748 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:419 ../..
|
749 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:246
|
750 |
msgid "Upgrade to PREMIUM"
|
751 |
msgstr "Jetzt auf Premium upgraden"
|
752 |
|
753 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:165 ../..
|
754 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:114 ../../plugins/blog2social-
|
755 |
+
#: v-4-9/views/b2s/post.calendar.php:241 ../../plugins/blog2social-v-4-
|
756 |
+
#: 9/views/b2s/ship.php:316 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
757 |
+
#: 376 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:422 ../..
|
758 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:41 ../..
|
759 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:72 ../..
|
760 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:90 ../..
|
761 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:159 ../..
|
762 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:225 ../..
|
763 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:265 ../..
|
764 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:336 ../..
|
765 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:421
|
766 |
msgid ""
|
767 |
"or <a href=\"http://service.blog2social.com/trial\" target=\"_blank\">start with "
|
768 |
"free 30-days-trial of Blog2Social Premium</a> (no payment information needed)"
|
771 |
"Deinen kostenlosen 30-tägigen Test von Blog2Social Premium</a>(keine "
|
772 |
"Zahlungsinformationen erforderlich)"
|
773 |
|
774 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:178
|
775 |
msgid "Select profile:"
|
776 |
msgstr "Profil auswählen: "
|
777 |
|
778 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:189
|
779 |
msgid "Select Twitter profile:"
|
780 |
msgstr "Twitter Profil auswählen:"
|
781 |
|
782 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:207
|
783 |
msgid "When do you want to share your post on social media?"
|
784 |
msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
785 |
|
786 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:210
|
787 |
msgid "immediately after publishing"
|
788 |
msgstr "sofort nach Veröffentlichung"
|
789 |
|
790 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:211
|
791 |
msgid "at scheduled times"
|
792 |
msgstr "zu geplanten Zeiten"
|
793 |
|
794 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:214
|
795 |
msgid "You want to sched your blog post with Auto-Poster?"
|
796 |
msgstr "Du willst Deinen Blogbeitrag mit dem Autoposter planen?"
|
797 |
|
798 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:214 ../..
|
799 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:70 ../..
|
800 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:88
|
801 |
msgid "Upgrade to PREMIUM PRO"
|
802 |
msgstr "Upgrade auf PREMIUM PRO"
|
803 |
|
804 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:220
|
805 |
msgid "Select date:"
|
806 |
msgstr "Datum auswählen:"
|
807 |
|
808 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:221 ../..
|
809 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:286
|
810 |
msgid "show calendar"
|
811 |
msgstr "Kalender anzeigen"
|
812 |
|
813 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:228
|
814 |
msgid "post at"
|
815 |
msgstr "beachte"
|
816 |
|
817 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:229
|
818 |
msgid "my time settings"
|
819 |
msgstr "meine Zeit-Einstellungen"
|
820 |
|
821 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/PostBox.php:230
|
822 |
msgid ""
|
823 |
"Note: If you have not specified your own times, we automatically provide "
|
824 |
"you with the best times to post on the social networks. You can always "
|
829 |
"posten. Du kannst jederzeit Deine eigenen Zeiten unter Einstellungen "
|
830 |
"bearbeiten."
|
831 |
|
832 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:84 ../..
|
833 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:104 ../..
|
834 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:652
|
835 |
msgid "Account"
|
836 |
msgstr "Konto"
|
837 |
|
838 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:87 ../..
|
839 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:266
|
840 |
msgid "Personal Time Zone"
|
841 |
msgstr "Persönliche Zeitzone"
|
842 |
|
843 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:93
|
844 |
msgid "Timezone for Scheduling"
|
845 |
msgstr "Zeitzone für die Planung"
|
846 |
|
847 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:93
|
848 |
msgid "User"
|
849 |
msgstr "Benutzer"
|
850 |
|
851 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:98
|
852 |
msgid "Content"
|
853 |
msgstr "Inhalt"
|
854 |
|
855 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:99
|
856 |
+
msgid "Url Shortener"
|
857 |
+
msgstr "Url Shortener"
|
858 |
+
|
859 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:100
|
860 |
+
msgid "Bitly"
|
861 |
+
msgstr "Bitly"
|
862 |
|
863 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:103 ../..
|
864 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:198
|
865 |
+
msgid "connect"
|
866 |
+
msgstr "Jetzt mit Netzwerken verbinden"
|
867 |
+
|
868 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:104
|
869 |
+
msgid "change"
|
870 |
+
msgstr "ändern"
|
871 |
+
|
872 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:108
|
873 |
msgid "allow shortcodes in my post"
|
874 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
875 |
|
876 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:110
|
877 |
msgid "include Wordpress tags as hashtags in my post"
|
878 |
msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
879 |
|
880 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:113 ../..
|
881 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:291
|
882 |
msgid "Define Twitter post content"
|
883 |
msgstr "Twitter Beitragsinhalt definieren"
|
884 |
|
885 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:119 ../..
|
886 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:374 ../..
|
887 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:389
|
888 |
msgid "title"
|
889 |
msgstr "Titel"
|
890 |
|
891 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:119 ../..
|
892 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:120 ../..
|
893 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:121
|
894 |
msgid "hashtags"
|
895 |
msgstr "Hashtags"
|
896 |
|
897 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:120
|
898 |
msgid "title & content"
|
899 |
msgstr "Titel & Inhalt"
|
900 |
|
901 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:120 ../..
|
902 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:121 ../..
|
903 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:356
|
904 |
msgid "(PREMIUM)"
|
905 |
msgstr "(PREMIUM)"
|
906 |
|
907 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:121
|
908 |
msgid "only content"
|
909 |
msgstr "nur Inhalt"
|
910 |
|
911 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:126
|
912 |
msgid "System"
|
913 |
msgstr "System"
|
914 |
|
915 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:127 ../..
|
916 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:305 ../..
|
917 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:330
|
918 |
msgid ""
|
919 |
"This is a global feature for your blog, which can only be edited by users "
|
920 |
"with admin rights."
|
922 |
"Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
|
923 |
"Admin Rechten bearbeitet werden kann."
|
924 |
|
925 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:128
|
926 |
msgid "activate Legacy mode"
|
927 |
msgstr "Kompatibilitätsmodus aktivieren"
|
928 |
|
929 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:142
|
930 |
msgid "Auto-post your own created posts"
|
931 |
msgstr "Auto-Poste Deine selbsterstellten Blogbeiträge"
|
932 |
|
933 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:143
|
934 |
msgid "Define by default to automatically post your posts on social media:"
|
935 |
msgstr ""
|
936 |
"Definiere standardmäßig Blogbeiträge oder Seiten, die Du auf Social Media "
|
937 |
"automatisch teilen möchtest:"
|
938 |
|
939 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:145
|
940 |
msgid ""
|
941 |
"Select by default if the auto-poster is activated when you publish a new "
|
942 |
"post or update a post."
|
944 |
"Wähle standardmäßig aus, ob der Auto-Poster aktiviert ist, wenn Du einen "
|
945 |
"neuen Beitrag veröffentlichst oder aktualisierst. "
|
946 |
|
947 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:150
|
948 |
msgid "new posts"
|
949 |
msgstr "Neue Beiträge"
|
950 |
|
951 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:151 ../..
|
952 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:163
|
953 |
msgid "Unselect all"
|
954 |
msgstr "Alle abwählen"
|
955 |
|
956 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:151 ../..
|
957 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:163
|
958 |
msgid "Select all"
|
959 |
msgstr "Alle auswählen"
|
960 |
|
961 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:159
|
962 |
msgid ""
|
963 |
"By enabling this feature your previously published social media posts will "
|
964 |
"be sent again to your selected social media channels as soon as the post is "
|
968 |
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
969 |
"Beitrag aktualisiert wird"
|
970 |
|
971 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:162
|
972 |
msgid "updating existing posts"
|
973 |
msgstr "Bestehenden Beitrag aktualisieren"
|
974 |
|
975 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:174 ../..
|
976 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:209
|
977 |
msgid "Save"
|
978 |
msgstr " Speichern"
|
979 |
|
980 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:182
|
981 |
msgid "Auto-post your imported posts to Twitter & Facebook"
|
982 |
msgstr "Auto-Poste Deine importierten Beiträge auf Twitter & Facebook"
|
983 |
|
984 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:183
|
985 |
msgid "Define by default to automatically share your imported posts to social media:"
|
986 |
msgstr ""
|
987 |
"Definiere standardmässig alle Deine importierten Beiträge auf den Social "
|
988 |
"Media zu veröffentlichen:"
|
989 |
|
990 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:186
|
991 |
msgid "Your current licence:"
|
992 |
msgstr "Deine aktuelle Lizenz:"
|
993 |
|
994 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:187
|
995 |
msgid "share up to"
|
996 |
msgstr "teile bis zu"
|
997 |
|
998 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:187
|
999 |
msgid "posts per day"
|
1000 |
msgstr "Beiträge pro Tag"
|
1001 |
|
1002 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:188
|
1003 |
msgid "need more?"
|
1004 |
msgstr "Benötigst Du mehr?"
|
1005 |
|
1006 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:190
|
1007 |
msgid "Select by default to automatically share your imported posts"
|
1008 |
msgstr "Teile standardmäßig automatisch importierte Beiträge auf meinen Social Media"
|
1009 |
|
1010 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:194
|
1011 |
msgid "Select to auto-post to your standard networks:"
|
1012 |
msgstr "Wähle die Netzwerke aus, auf denen automatisch veröffentlicht werden soll:"
|
1013 |
|
1014 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:195
|
1015 |
msgid ""
|
1016 |
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
1017 |
"as your primary Twitter account for auto-posting."
|
1019 |
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
1020 |
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden."
|
1021 |
|
1022 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:195
|
1023 |
msgid "More information"
|
1024 |
msgstr "Zusätzliche Informationen"
|
1025 |
|
1026 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:197
|
1027 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
1028 |
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
1029 |
|
1030 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:198
|
1031 |
msgid "immediately"
|
1032 |
msgstr "sofort"
|
1033 |
|
1034 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:199
|
1035 |
msgid "publish with a delay of"
|
1036 |
msgstr "veröffentlichen mit einer Verzögerung von"
|
1037 |
|
1038 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:200
|
1039 |
msgid "minutes"
|
1040 |
msgstr "Minuten"
|
1041 |
|
1042 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:223
|
1043 |
msgid "Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1044 |
msgstr ""
|
1045 |
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
1046 |
"automatisch veröffentlicht)"
|
1047 |
|
1048 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:224
|
1049 |
msgid "Post Types"
|
1050 |
msgstr "Posttypen"
|
1051 |
|
1052 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:225
|
1053 |
msgid "Include (Post only...)"
|
1054 |
msgstr "enthält (nur Beiträge, mit ...)"
|
1055 |
|
1056 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:226
|
1057 |
msgid "Exclude (Do no post ...)"
|
1058 |
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
1059 |
|
1060 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:260
|
1061 |
msgid "add/change connection"
|
1062 |
msgstr "Verbindung hinzufügen/ändern"
|
1063 |
|
1064 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:303
|
1065 |
msgid "Reset all page and post meta data"
|
1066 |
msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
1067 |
|
1068 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:308
|
1069 |
msgid "Meta Tags Settings for Posts and Pages"
|
1070 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
1071 |
|
1072 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:309
|
1073 |
msgid ""
|
1074 |
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
1075 |
"and other social networks to display your post or page image, title and "
|
1079 |
"Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
|
1080 |
"Beitrag/Seite korrekt darstellen können."
|
1081 |
|
1082 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:311
|
1083 |
msgid ""
|
1084 |
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
1085 |
"Twitter to display your post or page image, title and description correctly."
|
1088 |
"Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
|
1089 |
"darstellen kann."
|
1090 |
|
1091 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:332
|
1092 |
msgid "Frontpage Settings"
|
1093 |
msgstr "Frontpage Einstellungen"
|
1094 |
|
1095 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:334
|
1096 |
msgid ""
|
1097 |
"Add the default Open Graph parameters for title, description and image you "
|
1098 |
"want Facebook to display, if you share the frontpage of your blog as link "
|
1102 |
"die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
|
1103 |
"als Link Post teilst (http://www.DeinBlog.de) "
|
1104 |
|
1105 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:337 ../..
|
1106 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:358 ../..
|
1107 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:30 ../../plugins/blog2social-v-4-
|
1108 |
+
#: 9/views/prg/ship.php:41 ../../plugins/blog2social-v-4-9/views/prg/ship.php:43 .
|
1109 |
+
#: ./../plugins/blog2social-v-4-9/views/prg/html/form.phtml:26 ../..
|
1110 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:28
|
1111 |
msgid "Title"
|
1112 |
msgstr "Titel"
|
1113 |
|
1114 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:338 ../..
|
1115 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:359
|
1116 |
msgid "Description"
|
1117 |
msgstr "Beschreibung"
|
1118 |
|
1119 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:339 ../..
|
1120 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:360
|
1121 |
msgid "Image URL"
|
1122 |
msgstr "Bild Url"
|
1123 |
|
1124 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:341 ../..
|
1125 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:362 ../..
|
1126 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:80 ../..
|
1127 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:82
|
1128 |
msgid "Image upload / Media Gallery"
|
1129 |
msgstr "Bild hochladen / Mediathek"
|
1130 |
|
1131 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:344
|
1132 |
msgid ""
|
1133 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
1134 |
"pixels and an aspect ratio of 1:1."
|
1136 |
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
1137 |
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
1138 |
|
1139 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:350
|
1140 |
msgid ""
|
1141 |
"Add the default Twitter Card parameters for title, description and image you "
|
1142 |
"want Twitter to display, if you share the frontpage of your blog as link "
|
1146 |
"Image, wenn Du die Frontpage Deines Blogs als Link Post teilst (http://www."
|
1147 |
"DeinBlog.de) "
|
1148 |
|
1149 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:353
|
1150 |
msgid "The default card type to use"
|
1151 |
msgstr "Der zu verwendende Standard-Kartentyp"
|
1152 |
|
1153 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:355
|
1154 |
msgid "Summary"
|
1155 |
msgstr "Zusammenfassung"
|
1156 |
|
1157 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:356
|
1158 |
msgid "Summary with large image"
|
1159 |
msgstr "Zusammenfassung mit großem Bild"
|
1160 |
|
1161 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:365
|
1162 |
msgid ""
|
1163 |
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
1164 |
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
1170 |
" The Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt "
|
1171 |
"die Bildformate JPG, PNG, WEBP und GIF. "
|
1172 |
|
1173 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:381
|
1174 |
msgid "Did you know?"
|
1175 |
msgstr "Wusstest Du schon?"
|
1176 |
|
1177 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:382
|
1178 |
msgid ""
|
1179 |
"With Premium Pro, you can change the custom post format photo post or link "
|
1180 |
"post for each individual social media post and channel (profile, page, "
|
1184 |
"Beitrag individuell zwischen Link-Beitrag und Bild-Beitrag auswählen "
|
1185 |
"(Profile, Seiten, Gruppen)"
|
1186 |
|
1187 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:382
|
1188 |
msgid "Upgrade to Premium Pro now."
|
1189 |
msgstr "Upgrade auf Premium PRO"
|
1190 |
|
1191 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:399 ../..
|
1192 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:453 ../..
|
1193 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:496 ../..
|
1194 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.calendar.php:60 ../..
|
1195 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:172 ../..
|
1196 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:127
|
1197 |
msgid "Image with frame"
|
1198 |
msgstr "Bild mit Rahmen"
|
1199 |
|
1200 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:399 ../..
|
1201 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:453 ../..
|
1202 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:496 ../..
|
1203 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.calendar.php:60 ../..
|
1204 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:172 ../..
|
1205 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:110
|
1206 |
msgid "Link Post"
|
1207 |
msgstr "Link-Beitrag"
|
1208 |
|
1209 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:404 ../..
|
1210 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:128
|
1211 |
msgid ""
|
1212 |
"Insert white frames to show the whole image in your timeline. All image "
|
1213 |
"information will be shown in your timeline."
|
1216 |
"das quadratische Instagram-Layout anzupassen und das gesamte Bild bereits in "
|
1217 |
"Deiner Timeline anzuzeigen. "
|
1218 |
|
1219 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:406
|
1220 |
msgid ""
|
1221 |
"The link post format displays posts title, link address and the first one or "
|
1222 |
"two sentences of the post. The networks scan this information from your META "
|
1240 |
"Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
|
1241 |
"Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. "
|
1242 |
|
1243 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:410 ../..
|
1244 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:475 ../..
|
1245 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:496 ../..
|
1246 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.calendar.php:60 ../..
|
1247 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:172 ../..
|
1248 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:132
|
1249 |
msgid "Image cut out"
|
1250 |
msgstr "Bild zuschneiden"
|
1251 |
|
1252 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:410 ../..
|
1253 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:475 ../..
|
1254 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:496 ../..
|
1255 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.calendar.php:60 ../..
|
1256 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:172 ../..
|
1257 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:115
|
1258 |
msgid "Photo Post"
|
1259 |
msgstr "Bild-Beitrag"
|
1260 |
|
1261 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:415 ../..
|
1262 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:133
|
1263 |
msgid ""
|
1264 |
"The image preview will be cropped automatically to fit the default Instagram "
|
1265 |
"layout for your Instagram timeline. The image will be shown uncropped when "
|
1270 |
"auf Deiner Timeline. Mit Klick auf den Post wird das Bild in der Instagram-"
|
1271 |
"Vorschau als Ganzes angezeigt."
|
1272 |
|
1273 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:417 ../..
|
1274 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:116
|
1275 |
msgid ""
|
1276 |
"A photo or image post displays the selected image in the one-page preview of "
|
1277 |
"Blog2Social and your comment above the image. The image links to the image "
|
1287 |
"langfristig sichtbar bleibt. Auf Facebook kannst Du den Namen des Albums "
|
1288 |
"bearbeiten und eine Beschreibung Deiner Wahl ergänzen."
|
1289 |
|
1290 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:448
|
1291 |
msgid "All"
|
1292 |
msgstr "alle"
|
1293 |
|
1294 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:468
|
1295 |
msgid "Activate Instant Caching"
|
1296 |
msgstr "Instant Caching aktivieren"
|
1297 |
|
1298 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:549 ../..
|
1299 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:27
|
1300 |
msgid "Uhr"
|
1301 |
msgstr "Uhr"
|
1302 |
|
1303 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:553
|
1304 |
msgid "Best times to post"
|
1305 |
msgstr "Beste Zeiten"
|
1306 |
|
1307 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:566 ../..
|
1308 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:75 ../../plugins/blog2social-
|
1309 |
+
#: v-4-9/views/b2s/ship.php:50 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
1310 |
+
#: 359 ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:208
|
1311 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
1312 |
msgstr ""
|
1313 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
1314 |
"Manager benutzen?"
|
1315 |
|
1316 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:568 ../..
|
1317 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:57 ../../plugins/blog2social-
|
1318 |
+
#: v-4-9/views/b2s/settings.php:77 ../../plugins/blog2social-v-4-
|
1319 |
+
#: 9/views/b2s/settings.php:117 ../../plugins/blog2social-v-4-
|
1320 |
+
#: 9/views/b2s/settings.php:119 ../../plugins/blog2social-v-4-
|
1321 |
+
#: 9/views/b2s/settings.php:132 ../../plugins/blog2social-v-4-
|
1322 |
+
#: 9/views/b2s/settings.php:134 ../../plugins/blog2social-v-4-
|
1323 |
+
#: 9/views/b2s/settings.php:147 ../../plugins/blog2social-v-4-
|
1324 |
+
#: 9/views/b2s/settings.php:149 ../../plugins/blog2social-v-4-
|
1325 |
+
#: 9/views/b2s/settings.php:163 ../../plugins/blog2social-v-4-
|
1326 |
+
#: 9/views/b2s/settings.php:165 ../../plugins/blog2social-v-4-9/views/b2s/ship.
|
1327 |
#: php:456
|
1328 |
msgid "save"
|
1329 |
msgstr "speichern"
|
1330 |
|
1331 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Settings/Item.php:573
|
1332 |
msgid "Sorry, we can not load your data at the moment..."
|
1333 |
msgstr "Sorry, derzeit können wir Deine Daten nicht laden. Versuche es erneut."
|
1334 |
|
1335 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:29
|
1336 |
msgid "The images file types .jpg and .png are allowed. Please try another."
|
1337 |
msgstr "Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
|
1338 |
|
1339 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:30 ../..
|
1340 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:15
|
1341 |
msgid ""
|
1342 |
"You need a higher user role to upload an image on this blog. Please contact "
|
1343 |
"your administrator."
|
1345 |
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
1346 |
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
1347 |
|
1348 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:31
|
1349 |
msgid "To select an individual image from your media library,"
|
1350 |
msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
|
1351 |
|
1352 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:37
|
1353 |
msgid ""
|
1354 |
"The best size for images in social media posts are between: 667-1000px x 523-"
|
1355 |
"1000px. Blog2Social will automatically resize your image according to "
|
1359 |
"1000px x 523-1000px <br> Blog2Social passt Dein Bild automatisch die Größe "
|
1360 |
"des jeweiligen Netzwerks an."
|
1361 |
|
1362 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:61
|
1363 |
msgid "No images are included in your post."
|
1364 |
msgstr "In dem Beitrag sind keine Bilder hinterlegt"
|
1365 |
|
1366 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:69
|
1367 |
msgid "Apply image for all posts"
|
1368 |
msgstr "Bild für alle Posts übernehmen"
|
1369 |
|
1370 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:73 ../..
|
1371 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:75
|
1372 |
+
msgid "Apply image for this post"
|
1373 |
+
msgstr "Bild für diesen Post übernehmen"
|
1374 |
|
1375 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:86 ../..
|
1376 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:195
|
1377 |
msgid "Select or upload an image from media gallery"
|
1378 |
msgstr "Bild auswählen / hochladen"
|
1379 |
|
1380 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Image.php:87 ../..
|
1381 |
+
#: /plugins/blog2social-v-4-9/views/b2s/settings.php:196
|
1382 |
msgid "Use image"
|
1383 |
msgstr "Bild verwenden"
|
1384 |
|
1385 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:101
|
1386 |
msgid "Network does not support image for profiles"
|
1387 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
1388 |
|
1389 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:102
|
1390 |
msgid "Network defines image by link"
|
1391 |
msgstr "Netzwerk wählt selber das Bild aus"
|
1392 |
|
1393 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:104
|
1394 |
msgid "Supported HTML tags"
|
1395 |
msgstr "Erlaubte HTML-Elemente"
|
1396 |
|
1397 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:105 ../..
|
1398 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:164
|
1399 |
msgid "Network does not support emojis"
|
1400 |
msgstr "Netzwerk unterstützt keine Emojis"
|
1401 |
|
1402 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:148
|
1403 |
msgid "Text only"
|
1404 |
msgstr "nur Text"
|
1405 |
|
1406 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:149 ../..
|
1407 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:153 ../..
|
1408 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:188 ../..
|
1409 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:192 ../..
|
1410 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:214 ../..
|
1411 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:218 ../..
|
1412 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:816 ../..
|
1413 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:818
|
1414 |
msgid "characters"
|
1415 |
msgstr "Zeichen"
|
1416 |
|
1417 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:163
|
1418 |
msgid "Network does not support image for pages"
|
1419 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
1420 |
|
1421 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:247
|
1422 |
msgid "post format"
|
1423 |
msgstr "Postformat"
|
1424 |
|
1425 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:257 ../..
|
1426 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:824
|
1427 |
msgid "Insert full-text"
|
1428 |
msgstr "ganzen Text einfügen"
|
1429 |
|
1430 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:259 ../..
|
1431 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:826
|
1432 |
msgid "Delete text"
|
1433 |
msgstr "Text löschen"
|
1434 |
|
1435 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:267 ../..
|
1436 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:448 ../..
|
1437 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:703
|
1438 |
msgid ""
|
1439 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
1440 |
"allowed to post identical or substantially similar content to multiple "
|
1445 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
1446 |
"mehreren Accounts zu posten."
|
1447 |
|
1448 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:267 ../..
|
1449 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:448 ../..
|
1450 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:703
|
1451 |
msgid ""
|
1452 |
"Violating these rules can result in Twitter suspending your account. Always "
|
1453 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
1457 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
1458 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
1459 |
|
1460 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:267 ../..
|
1461 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:448 ../..
|
1462 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:703
|
1463 |
msgid "Learn more about this"
|
1464 |
msgstr "Erfahre mehr darüber"
|
1465 |
|
1466 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:286
|
1467 |
msgid "hide calendar"
|
1468 |
msgstr "Kalender ausblenden"
|
1469 |
|
1470 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:332 ../..
|
1471 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:356 ../..
|
1472 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:380 ../..
|
1473 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:398 ../..
|
1474 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:413 ../..
|
1475 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:440 ../..
|
1476 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:458 ../..
|
1477 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:474 ../..
|
1478 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:487 ../..
|
1479 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:503 ../..
|
1480 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:508
|
1481 |
msgid "Write something about your post..."
|
1482 |
msgstr "Schreibe etwas..."
|
1483 |
|
1484 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:339 ../..
|
1485 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:363 ../..
|
1486 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:387 ../..
|
1487 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:436 ../..
|
1488 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:454 ../..
|
1489 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:470 ../..
|
1490 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:499 ../..
|
1491 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:533
|
1492 |
msgid "Change image"
|
1493 |
msgstr "Bild ändern\n"
|
1494 |
|
1495 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:343
|
1496 |
msgid ""
|
1497 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
1498 |
"network"
|
1499 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
1500 |
|
1501 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:346 ../..
|
1502 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:370
|
1503 |
msgid ""
|
1504 |
"You want to change your link image, link title and link description for this "
|
1505 |
"network? Click here."
|
1506 |
msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
1507 |
|
1508 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:348
|
1509 |
msgid "OG Meta title"
|
1510 |
msgstr "OG Titel"
|
1511 |
|
1512 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:349
|
1513 |
msgid "OG Meta description"
|
1514 |
msgstr "OG Beschreibung"
|
1515 |
|
1516 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:367
|
1517 |
msgid "Info: Change Card Meta tags image, title and description for this network"
|
1518 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
1519 |
|
1520 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:372
|
1521 |
msgid "Card Meta title"
|
1522 |
msgstr "Card Titel"
|
1523 |
|
1524 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:373
|
1525 |
msgid "Card Meta description"
|
1526 |
msgstr "Card Beschreibung"
|
1527 |
|
1528 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:520
|
1529 |
msgid "required"
|
1530 |
msgstr "erforderlich"
|
1531 |
|
1532 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:540 ../..
|
1533 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:542
|
1534 |
msgid "Link"
|
1535 |
msgstr "Link"
|
1536 |
|
1537 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:601
|
1538 |
msgid "The Headline..."
|
1539 |
msgstr "Die Überschrift..."
|
1540 |
|
1541 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:606
|
1542 |
msgid "Hashtags"
|
1543 |
msgstr "Hashtags"
|
1544 |
|
1545 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:634
|
1546 |
+
msgid "Enable Retweets for all Tweets with the selected profile"
|
1547 |
+
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
1548 |
+
|
1549 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:653 ../..
|
1550 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:56
|
1551 |
msgid "Delay"
|
1552 |
msgstr "Verzögerung"
|
1553 |
|
1554 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:663 ../..
|
1555 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:664 ../..
|
1556 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:665 ../..
|
1557 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:666 ../..
|
1558 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:60 ../..
|
1559 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:61 ../..
|
1560 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:62 ../..
|
1561 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:63
|
1562 |
msgid "min"
|
1563 |
msgstr "min"
|
1564 |
|
1565 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:671
|
1566 |
msgid "Add Retweet"
|
1567 |
msgstr "Retweet hinzufügen"
|
1568 |
|
1569 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:690
|
1570 |
msgid "Share Now"
|
1571 |
msgstr "Sofort teilen"
|
1572 |
|
1573 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:693 ../..
|
1574 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.calendar.php:214 ../..
|
1575 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:395
|
1576 |
msgid "Schedule for specific dates"
|
1577 |
msgstr "Für bestimmte Termine planen\n"
|
1578 |
|
1579 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:695
|
1580 |
msgid "Schedule Recurrent Post"
|
1581 |
msgstr "regelmäßig Planen"
|
1582 |
|
1583 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:730
|
1584 |
msgid "Interval"
|
1585 |
msgstr "Intervall"
|
1586 |
|
1587 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:731 ../..
|
1588 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:734
|
1589 |
msgid "Duration"
|
1590 |
msgstr "Dauer"
|
1591 |
|
1592 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:735
|
1593 |
msgid "Repeat"
|
1594 |
msgstr "Wiederholungen"
|
1595 |
|
1596 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:736
|
1597 |
msgid "Day of month"
|
1598 |
msgstr "Tag im Month"
|
1599 |
|
1600 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:737
|
1601 |
msgid "Duration in days"
|
1602 |
msgstr "Abstand in Tagen"
|
1603 |
|
1604 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:739
|
1605 |
msgid "Start date"
|
1606 |
msgstr "Startdatum"
|
1607 |
|
1608 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:740 ../..
|
1609 |
+
#: /plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:792 ../..
|
1610 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:46 ../..
|
1611 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:49
|
|
|
1612 |
msgid "Time"
|
1613 |
msgstr "Zeit"
|
1614 |
|
1615 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:741
|
1616 |
msgid "Days"
|
1617 |
msgstr "Tage"
|
1618 |
|
1619 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:747
|
1620 |
msgid "weekly"
|
1621 |
msgstr "wöchentlich"
|
1622 |
|
1623 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:748
|
1624 |
msgid "monthly"
|
1625 |
msgstr "monatlich"
|
1626 |
|
1627 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:749
|
1628 |
msgid "own period"
|
1629 |
msgstr "eigener Zeitraum"
|
1630 |
|
1631 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:755
|
1632 |
msgid "Week"
|
1633 |
msgstr "Woche"
|
1634 |
|
1635 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:755
|
1636 |
msgid "Weeks"
|
1637 |
msgstr "Wochen"
|
1638 |
|
1639 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:764
|
1640 |
msgid "Month"
|
1641 |
msgstr "Monat"
|
1642 |
|
1643 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:764
|
1644 |
msgid "Months"
|
1645 |
msgstr "Monate"
|
1646 |
|
1647 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:784
|
|
|
|
|
|
|
|
|
1648 |
msgid "End Of Month"
|
1649 |
msgstr "Monatsende"
|
1650 |
|
1651 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:789
|
1652 |
msgid "Timespan"
|
1653 |
msgstr "Timespan"
|
1654 |
|
1655 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:791 ../..
|
1656 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:45 ../..
|
1657 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:48
|
1658 |
msgid "Date"
|
1659 |
msgstr "Startdatum"
|
1660 |
|
1661 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:797
|
1662 |
msgid "Mon"
|
1663 |
msgstr "Mo"
|
1664 |
|
1665 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:798
|
1666 |
msgid "Tue"
|
1667 |
msgstr "Di"
|
1668 |
|
1669 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:799
|
1670 |
msgid "Wed"
|
1671 |
msgstr "Mi"
|
1672 |
|
1673 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:800
|
1674 |
msgid "Thu"
|
1675 |
msgstr "Do"
|
1676 |
|
1677 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:801
|
1678 |
msgid "Fri"
|
1679 |
msgstr "Fr"
|
1680 |
|
1681 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:802
|
1682 |
msgid "Sat"
|
1683 |
msgstr "Sa"
|
1684 |
|
1685 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:803
|
1686 |
msgid "Sun"
|
1687 |
msgstr "So"
|
1688 |
|
1689 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:809
|
1690 |
msgid "add another post"
|
1691 |
msgstr "einen weiteren Post anlegen\n"
|
1692 |
|
1693 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:822
|
1694 |
msgid "Copy from original"
|
1695 |
msgstr "Text von Original kopieren"
|
1696 |
|
1697 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:838
|
1698 |
msgid "Apply Settings To All Networks"
|
1699 |
msgstr "Planung für alle Netzwerke übernehmen"
|
1700 |
|
1701 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Item.php:839
|
1702 |
msgid "Save as best time for this network"
|
1703 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
1704 |
|
1705 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Save.php:332
|
1706 |
msgid "view social media post"
|
1707 |
msgstr "Zeige Social Media Beitrag an"
|
1708 |
|
1709 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/Ship/Save.php:342
|
1710 |
msgid "scheduled on"
|
1711 |
msgstr "geplant für"
|
1712 |
|
1713 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/User/Info.php:11
|
1714 |
msgid "Number of shared posts"
|
1715 |
msgstr "Anzahl geteilter Beiträge"
|
1716 |
|
1717 |
+
#: ../../plugins/blog2social-v-4-9/includes/B2S/User/Info.php:14
|
1718 |
msgid "Number of scheduled posts"
|
1719 |
msgstr "Anzahl der geplanten Posts"
|
1720 |
|
1721 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:57
|
1722 |
msgid "Modify pin board"
|
1723 |
msgstr "Pinnwand ändern"
|
1724 |
|
1725 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:57
|
1726 |
msgid "Modify forum"
|
1727 |
msgstr "Forum ändern"
|
1728 |
|
1729 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:57
|
1730 |
msgid "Modify subreddit"
|
1731 |
msgstr "Subreddit ändern"
|
1732 |
|
1733 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:271
|
1734 |
msgid "Auto-Post on Social Media"
|
1735 |
msgstr "Automatisch auf Social Media teilen"
|
1736 |
|
1737 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:272
|
1738 |
msgid "Social Media Content Calendar"
|
1739 |
msgstr "Social Media Kalender"
|
1740 |
|
1741 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:512
|
1742 |
msgid "This post will be shared into your social media on"
|
1743 |
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
1744 |
|
1745 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:512 ../..
|
1746 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:514
|
1747 |
msgid "show details"
|
1748 |
msgstr "siehe Details"
|
1749 |
|
1750 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:514
|
1751 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
1752 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
1753 |
|
1754 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:518
|
1755 |
msgid ""
|
1756 |
"Please, make sure that your post are publish on this blog on this moment. "
|
1757 |
"Then you can auto post your post with Blog2social."
|
1759 |
"Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
|
1760 |
" Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
1761 |
|
1762 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:533
|
1763 |
msgid "Upgrade to Premium"
|
1764 |
msgstr "Premium freischalten"
|
1765 |
|
1766 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:553
|
1767 |
msgctxt "command (plugins)"
|
1768 |
msgid "Deactivate"
|
1769 |
msgstr "Deaktivieren"
|
1770 |
|
1771 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:564
|
1772 |
msgid "Your post could not be posted."
|
1773 |
msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
|
1774 |
|
1775 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:565
|
1776 |
msgid "Your authorization has expired. Please check your authorization."
|
1777 |
msgstr "Deine Autorisierung ist abgelaufen. Bitte überprüfe deine Autorisierung."
|
1778 |
|
1779 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:566
|
1780 |
msgid "The network has marked the post as spam or abusive."
|
1781 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
1782 |
|
1783 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:567
|
1784 |
msgid ""
|
1785 |
"We don't have the permission to publish your post. Please check your "
|
1786 |
"authorization."
|
1788 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
1789 |
"überprüfe deine Autorisierung."
|
1790 |
|
1791 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:568
|
1792 |
msgid ""
|
1793 |
"Your authorization is interrupted. Please check your authorization. Please "
|
1794 |
"see <a target=\"_blank\" href=\"https://www.blog2social."
|
1798 |
"Siehe <a target=\"_blank\" href=\"https://www.blog2social."
|
1799 |
"com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
1800 |
|
1801 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:569
|
1802 |
msgid "Your daily limit has been reached."
|
1803 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
1804 |
|
1805 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:570
|
1806 |
msgid "Your post could not be posted, because your image is not available."
|
1807 |
msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
|
1808 |
|
1809 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:571
|
1810 |
msgid ""
|
1811 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
1812 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
1816 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
1817 |
"loesungen.html\">FAQ</a>."
|
1818 |
|
1819 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:572
|
1820 |
msgid ""
|
1821 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
|
1822 |
"//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
|
1826 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
1827 |
"loesungen.html\">FAQ</a>."
|
1828 |
|
1829 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:573
|
1830 |
msgid "Your daily limit for this network has been reached. Please try again later."
|
1831 |
msgstr ""
|
1832 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
1833 |
"versuche es später noch einmal."
|
1834 |
|
1835 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:574
|
1836 |
msgid ""
|
1837 |
"The network can not publish special characters such as Emoji. Please see <a "
|
1838 |
"target=\"_blank\" href=\"https://www.blog2social."
|
1842 |
"//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
|
1843 |
"html\">FAQ</a>."
|
1844 |
|
1845 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:575
|
1846 |
msgid "Your post is a duplicate."
|
1847 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
1848 |
|
1849 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:576
|
1850 |
msgid "The network requires a public url."
|
1851 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
1852 |
|
1853 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:577
|
1854 |
msgid "You have already retweeted this post."
|
1855 |
msgstr "Du hast diesen Post bereits retweetet.\n"
|
1856 |
|
1857 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:578
|
1858 |
msgid "Your group can not be found by the network."
|
1859 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden. "
|
1860 |
|
1861 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:635 ../..
|
1862 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:635 ../../plugins/blog2social-v-
|
1863 |
+
#: 4-9/includes/Loader.php:669
|
1864 |
msgid "Dashboard"
|
1865 |
msgstr "Dashboard"
|
1866 |
|
1867 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:636 ../..
|
1868 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:636 ../../plugins/blog2social-v-
|
1869 |
+
#: 4-9/includes/Loader.php:676
|
1870 |
msgid "Posts & Sharing"
|
1871 |
msgstr "Beiträge"
|
1872 |
|
1873 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:637 ../..
|
1874 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:637 ../../plugins/blog2social-v-
|
1875 |
+
#: 4-9/includes/Loader.php:683 ../../plugins/blog2social-v-4-9/views/b2s/network.
|
1876 |
#: php:17
|
1877 |
msgid "Networks"
|
1878 |
msgstr "Netzwerke"
|
1879 |
|
1880 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:638 ../..
|
1881 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:638 ../../plugins/blog2social-v-
|
1882 |
+
#: 4-9/includes/Loader.php:689 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:
|
1883 |
+
#: 53 ../../plugins/blog2social-v-4-9/views/b2s/ship.php:283
|
1884 |
msgid "Settings"
|
1885 |
msgstr "Einstellungen"
|
1886 |
|
1887 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:639 ../..
|
1888 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:639 ../../plugins/blog2social-v-
|
1889 |
+
#: 4-9/includes/Loader.php:695
|
1890 |
msgid "PR-Service"
|
1891 |
msgstr "PR-Service"
|
1892 |
|
1893 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:640 ../..
|
1894 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:640 ../../plugins/blog2social-v-
|
1895 |
+
#: 4-9/includes/Loader.php:702 ../../plugins/blog2social-v-4-
|
1896 |
+
#: 9/views/b2s/widgets/tutorial.php:4
|
1897 |
msgid "How to & FAQ"
|
1898 |
msgstr "How to & FAQ"
|
1899 |
|
1900 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:641
|
1901 |
msgid "Premium"
|
1902 |
msgstr "Premium"
|
1903 |
|
1904 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:660
|
1905 |
msgid "Blog2Social"
|
1906 |
msgstr "Blog2Social"
|
1907 |
|
1908 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:1063 ../..
|
1909 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:1241
|
1910 |
msgid "or"
|
1911 |
msgstr "oder"
|
1912 |
|
1913 |
+
#: ../../plugins/blog2social-v-4-9/includes/Loader.php:1063 ../..
|
1914 |
+
#: /plugins/blog2social-v-4-9/includes/Loader.php:1241
|
1915 |
msgid "back to install plugins"
|
1916 |
msgstr "zurück zur Pluginübersicht"
|
1917 |
|
1918 |
+
#: ../../plugins/blog2social-v-4-9/includes/Notice.php:18
|
1919 |
msgid ""
|
1920 |
"<strong>Rate it!</strong> If you like Blog2Social, please give us a 5 star "
|
1921 |
"rating. I there is anything that does not work for you, please contact us!"
|
1923 |
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
1924 |
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
1925 |
|
1926 |
+
#: ../../plugins/blog2social-v-4-9/includes/Notice.php:19 ../..
|
1927 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:55
|
1928 |
msgid "RATE BLOG2SOCIAL"
|
1929 |
msgstr "Blog2Social jetzt bewerten"
|
1930 |
|
1931 |
+
#: ../../plugins/blog2social-v-4-9/includes/Notice.php:20
|
1932 |
msgid "hide"
|
1933 |
msgstr "ausblenden"
|
1934 |
|
1935 |
+
#: ../../plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:31
|
1936 |
msgid "All Authors"
|
1937 |
msgstr "alle Autoren"
|
1938 |
|
1939 |
+
#: ../../plugins/blog2social-v-4-9/includes/PRG/Post/Filter.php:42
|
1940 |
msgid "All Types"
|
1941 |
msgstr "alle Typen"
|
1942 |
|
1943 |
+
#: ../../plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:100
|
1944 |
msgid "You have no posts published or scheduled"
|
1945 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
|
1946 |
|
1947 |
+
#: ../../plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:127
|
1948 |
msgid "Publish on PR-Gateway"
|
1949 |
msgstr "Beitrag über PR-Gateway veröffentlichen"
|
1950 |
|
1951 |
+
#: ../../plugins/blog2social-v-4-9/includes/PRG/Post/Item.php:129
|
1952 |
msgid "on Blog"
|
1953 |
msgstr "auf dem Blog"
|
1954 |
|
1955 |
+
#: ../../plugins/blog2social-v-4-9/includes/System.php:69
|
1956 |
msgid ""
|
1957 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
1958 |
"your server. Install cURL and activate Blog2Social again."
|
1960 |
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
1961 |
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
1962 |
|
1963 |
+
#: ../../plugins/blog2social-v-4-9/includes/System.php:72 ../..
|
1964 |
+
#: /plugins/blog2social-v-4-9/includes/System.php:78
|
1965 |
msgid ""
|
1966 |
"Please see <a href=\"https://www.blog2social."
|
1967 |
"com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social."
|
1971 |
"com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
|
1972 |
"blog2social.html\" target=\"_blank\">FAQ</a>"
|
1973 |
|
1974 |
+
#: ../../plugins/blog2social-v-4-9/includes/System.php:75
|
1975 |
msgid ""
|
1976 |
"Blog2Social used PHP. Your installed PHP version on your server is not high "
|
1977 |
"enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
|
1980 |
"um Blog2Social zu nutzen. Aktualisere Deine PHP Version auf 5.5.3 oder höher."
|
1981 |
" "
|
1982 |
|
1983 |
+
#: ../../plugins/blog2social-v-4-9/includes/System.php:81
|
1984 |
msgid ""
|
1985 |
"Blog2Social does not seem to have permission to write in your WordPress "
|
1986 |
"database. Please assign Blog2Social the permission to write in the WordPress "
|
1993 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
1994 |
"zu tun.\n"
|
1995 |
|
1996 |
+
#: ../../plugins/blog2social-v-4-9/includes/System.php:84
|
1997 |
msgid ""
|
1998 |
"<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
|
1999 |
"requirements-for-installing-blog2social.html\" target=\"_blank\"> Please find "
|
2003 |
"com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
|
2004 |
"blog2social.html\" target=\"_blank\">Siehe FAQ</a>"
|
2005 |
|
2006 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/dashboard.php:82
|
2007 |
msgid "Couldn't find your answer?"
|
2008 |
msgstr "Konntest Du Deine Antwort nicht finden?"
|
2009 |
|
2010 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/dashboard.php:84
|
2011 |
msgid "Contact Support by Email"
|
2012 |
msgstr "Support-Team per E-Mail kontaktieren"
|
2013 |
|
2014 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/dashboard.php:86
|
2015 |
msgid "Call us: +49 2181 7569-277"
|
2016 |
msgstr "Ruf' uns an: +49 2181 7569-277"
|
2017 |
|
2018 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/dashboard.php:88
|
2019 |
msgid "(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
|
2020 |
msgstr "(Anrufzeiten: Montags bis Freitag von 9:00 bis 17:00 MEZ)"
|
2021 |
|
2022 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/howto.php:9
|
2023 |
msgid "How to use Blog2Social"
|
2024 |
msgstr "So nutzt Du Blog2Social"
|
2025 |
|
2026 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/howto.php:17
|
2027 |
msgid ""
|
2028 |
"Learn how to get the most out of Blog2Social to promote your blog on social "
|
2029 |
"media. Find step-by-step instructions and tips for FREE and PREMIUM users."
|
2032 |
"auf den Social Media zu bewerben. Siehe Dir dazu die Schritt-für-Schritt "
|
2033 |
"Anleitung und Tipps für Free und Premium Nutzer an."
|
2034 |
|
2035 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/howto.php:30
|
2036 |
msgid "Do you need help?"
|
2037 |
msgstr "Brauchst Du Unterstützung?"
|
2038 |
|
2039 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/howto.php:32
|
2040 |
msgid "Find answers to common questions in our FAQ."
|
2041 |
msgstr "Finde Antworten zu häufig gestelle Fragen in umserem FAQ."
|
2042 |
|
2043 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/howto.php:37
|
2044 |
msgid "search FAQ"
|
2045 |
msgstr "suchen"
|
2046 |
|
2047 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/howto.php:41 ../..
|
2048 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/support.php:1
|
2049 |
msgid "TOP 5 FAQ"
|
2050 |
msgstr "TOP 5 FAQ"
|
2051 |
|
2052 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:21 ../..
|
2053 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:22 ../../plugins/blog2social-
|
2054 |
+
#: v-4-9/views/b2s/post.calendar.php:169 ../../plugins/blog2social-v-4-
|
2055 |
+
#: 9/views/b2s/post.calendar.php:170 ../../plugins/blog2social-v-4-
|
2056 |
+
#: 9/views/prg/post.php:25 ../../plugins/blog2social-v-4-9/views/prg/post.php:26 .
|
2057 |
+
#: ./../plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:17 ../..
|
2058 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:18
|
2059 |
msgid "filter"
|
2060 |
msgstr "Filter"
|
2061 |
|
2062 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:27 ../..
|
2063 |
+
#: /plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:80
|
2064 |
msgid "Delete"
|
2065 |
msgstr "löschen"
|
2066 |
|
2067 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:32 ../..
|
2068 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:35 ../../plugins/blog2social-
|
2069 |
+
#: v-4-9/views/b2s/network.php:68 ../../plugins/blog2social-v-4-
|
2070 |
+
#: 9/views/b2s/network.php:91
|
2071 |
msgid "Create new profile"
|
2072 |
msgstr "neues Profil erstellen"
|
2073 |
|
2074 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:34
|
2075 |
msgid "You want to define a new combination of networks?"
|
2076 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
2077 |
|
2078 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:74
|
2079 |
msgid "create"
|
2080 |
msgstr "erstellen"
|
2081 |
|
2082 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:94
|
2083 |
msgid ""
|
2084 |
"All connected networks will be displayed as default \"Standard\" networks "
|
2085 |
"profile.<br><br>You may define various sets of social media accounts, "
|
2119 |
"verschiedene Netzwerk-Profile noch schneller auf Deine verschiedenen "
|
2120 |
"Netzwerk-Kombinationen zuzugreifen."
|
2121 |
|
2122 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:97
|
2123 |
msgid "You want to add another network profile, pages or groups?"
|
2124 |
msgstr ""
|
2125 |
"Du möchtest ein weiteres Netzwerkprofil anlegen oder auf Seiten und Gruppen "
|
2126 |
"posten?"
|
2127 |
|
2128 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:126
|
2129 |
msgid "Delete Profile"
|
2130 |
msgstr "Profil löschen"
|
2131 |
|
2132 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:129
|
2133 |
msgid "Do you really want to delete this profile"
|
2134 |
msgstr "Soll Dein Profil wirklich gelöscht werden?"
|
2135 |
|
2136 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:132 ../..
|
2137 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.notice.php:74 ../..
|
2138 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.publish.php:74 ../..
|
2139 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:86 ../..
|
2140 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:80 ../..
|
2141 |
+
#: /plugins/blog2social-v-4-9/views/prg/ship.php:92
|
2142 |
msgid "NO"
|
2143 |
msgstr "NEIN"
|
2144 |
|
2145 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:133 ../..
|
2146 |
+
#: /plugins/blog2social-v-4-9/views/b2s/network.php:184 ../../plugins/blog2social-
|
2147 |
+
#: v-4-9/views/b2s/post.notice.php:75 ../../plugins/blog2social-v-4-
|
2148 |
+
#: 9/views/b2s/post.publish.php:75 ../../plugins/blog2social-v-4-9/views/b2s/post.
|
2149 |
+
#: sched.php:87 ../../plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:81
|
2150 |
msgid "YES, delete"
|
2151 |
msgstr "Ja, löschen"
|
2152 |
|
2153 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:144
|
2154 |
+
msgid "Google My Business"
|
2155 |
+
msgstr "Google My Business"
|
2156 |
+
|
2157 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:147
|
2158 |
+
msgid ""
|
2159 |
+
"Blog2Social uses the official Google My Business API to share your content "
|
2160 |
+
"on your business listing. You can connect Google My Business listings with "
|
2161 |
+
"up to nine different locations to Blog2Social and you can choose which "
|
2162 |
+
"location you want to share your content on."
|
2163 |
+
msgstr ""
|
2164 |
+
"Blog2Social nutzt die offizielle Google My Business API um Ihre Blogbeiträge "
|
2165 |
+
"an Ihren Brancheneintrag zu versenden. Sie können Brancheneinträge mit bis "
|
2166 |
+
"zu neun verschiedene Standorten mit Blog2Social verbinden und auswählen, auf "
|
2167 |
+
"welchem Standort Ihr Content geteilt werden soll."
|
2168 |
+
|
2169 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:150
|
2170 |
+
msgid ""
|
2171 |
+
"Google currently allows access to the API for all companies with up to 9 "
|
2172 |
+
"locations in their Google My Business Listings. However, Google plans to "
|
2173 |
+
"extend the API for companies with more than 9 locations in their Google My "
|
2174 |
+
"Business listings."
|
2175 |
+
msgstr ""
|
2176 |
+
"Google erlaubt derzeit den Zugriff auf die API für alle Unternehmen mit bis "
|
2177 |
+
"zu 9 Standorten. Google plant, den Zugriff auf die API in Zukunft auch auf "
|
2178 |
+
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
2179 |
+
"Business Brancheneinträgen zu erweitern."
|
2180 |
+
|
2181 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:153 ../..
|
2182 |
+
#: /plugins/blog2social-v-4-9/views/b2s/premium.php:22 ../../plugins/blog2social-
|
2183 |
+
#: v-4-9/views/b2s/widgets/premium.php:14
|
2184 |
+
msgid "Learn more"
|
2185 |
+
msgstr "Erfahre mehr"
|
2186 |
+
|
2187 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:166
|
2188 |
msgid "Delete Authorization"
|
2189 |
msgstr "Autorisierung löschen"
|
2190 |
|
2191 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:175
|
2192 |
msgid "Do you really want to delete this authorization"
|
2193 |
msgstr "Soll die Autorisierung wirklich löschen werden?"
|
2194 |
|
2195 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:178
|
2196 |
msgid "You have still set up scheduled posts for this network:"
|
2197 |
msgstr "Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
2198 |
|
2199 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:179
|
2200 |
msgid "scheduled posts"
|
2201 |
msgstr "geplante Beiträge"
|
2202 |
|
2203 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:185
|
2204 |
msgid "View schedule posts for this profile"
|
2205 |
msgstr "Gehe zu geplanten Beiträgen für dieses Profil."
|
2206 |
|
2207 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:204
|
2208 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
2209 |
msgstr "Bitte autorisiere Dein Konto bei Blog2Social und versuche es erneut."
|
2210 |
|
2211 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:205
|
2212 |
msgid "Change successful"
|
2213 |
msgstr "Änderung erfolgreich"
|
2214 |
|
2215 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:206
|
2216 |
msgid "Could not be changed"
|
2217 |
msgstr "Kann nicht geändert werden"
|
2218 |
|
2219 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/network.php:214
|
2220 |
msgid "modfiy"
|
2221 |
msgstr "ändern"
|
2222 |
|
2223 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:8
|
2224 |
msgid "Twitter terms of service update February 2018"
|
2225 |
msgstr "Twitter: Änderung der Allgemeinen Geschäftsbedingungen - Update Februar 2018"
|
2226 |
|
2227 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:12
|
2228 |
msgid ""
|
2229 |
" In February 2018 Twitter changed their terms of service (TOS) in order to "
|
2230 |
"prevent malicious activity and spam. Users are no longer allowed to post "
|
2242 |
"dürfen auch Social-Media-Tools den Nutzern nicht mehr ermöglichen, dieselbe "
|
2243 |
"Nachricht an mehrere Twitter-Accounts zu senden."
|
2244 |
|
2245 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:13
|
2246 |
msgid "More Information about these changes"
|
2247 |
msgstr "Weitere Informationen zu den Twitter Änderungen"
|
2248 |
|
2249 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:16
|
2250 |
msgid "What does this mean for your work with Blog2Social?"
|
2251 |
msgstr "Was bedeutet das für meine Arbeit mit Blog2Social?"
|
2252 |
|
2253 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:18
|
2254 |
msgid ""
|
2255 |
"Other social media tools simply no longer allow users to select multiple "
|
2256 |
"Twitter accounts. However, Blog2Social was originally built with "
|
2274 |
"die Twitter Cards können Sie Ihre Tweets für jeden Twitter-Account "
|
2275 |
"individuell anpassen.\n"
|
2276 |
|
2277 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:20
|
2278 |
msgid ""
|
2279 |
"If you have scheduled identical or similar Twitter posts for multiple "
|
2280 |
"accounts, please make sure to either edit or delete them, according to "
|
2292 |
"Beitrag öffnet ein Menü, in dem Sie den geplanten Tweet bearbeiten oder "
|
2293 |
"löschen können."
|
2294 |
|
2295 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:22
|
2296 |
msgid ""
|
2297 |
"Blog2Social also provides you with individual comment fields for each of "
|
2298 |
"your Tweets. This allows you to share your posts on all your Twitter "
|
2302 |
"Ihrer Tweets zur Verfügung. So können Sie Ihre Beiträge auf allen Ihren "
|
2303 |
"Twitter-Accounts mit individuell angepassten Kommentaren teilen."
|
2304 |
|
2305 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:25
|
2306 |
msgid ""
|
2307 |
"Please note that violating these rules can result in Twitter suspending your "
|
2308 |
"account. "
|
2310 |
"Bitte beachten Sie, dass ein Verstoß gegen die neuen Twitter-Regeln dazu "
|
2311 |
"führen kann, dass Twitter Ihren Account sperrt."
|
2312 |
|
2313 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/network-tos-modal.php:30
|
2314 |
msgid "I understand and I will follow the Twitter TOS rules"
|
2315 |
msgstr "Ich habe verstanden und werde die neuen Twitter-Richtlinien befolgen"
|
2316 |
|
2317 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/plugin-deactivate-modal.php:
|
2318 |
#: 10
|
2319 |
msgid "Do you want to delete your scheduled posts?"
|
2320 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
2321 |
|
2322 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/plugin-deactivate-modal.php:
|
2323 |
#: 13
|
2324 |
msgid ""
|
2325 |
"Do you want Blog2Social to delete all your scheduled social media posts? "
|
2329 |
"geplanten Beiträge löscht? Deine geplanten Beiträge werden anschließend "
|
2330 |
"nicht weiter an Deine sozialen Netzwerke versendet."
|
2331 |
|
2332 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/plugin-deactivate-modal.php:
|
2333 |
#: 14
|
2334 |
msgid "Delete scheduled posts"
|
2335 |
msgstr "Geplante Beiträge löschen"
|
2336 |
|
2337 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/plugin-deactivate-modal.php:
|
2338 |
#: 17
|
2339 |
msgid "Continue deactivation"
|
2340 |
msgstr "Deaktivierung fortsetzen"
|
2341 |
|
2342 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:7
|
2343 |
msgid "Edit Post"
|
2344 |
msgstr "Beitrag bearbeiten"
|
2345 |
|
2346 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:33
|
2347 |
msgid "This post is blocked by %1"
|
2348 |
msgstr "% 1bearbeitet gerade diesen Beitrag."
|
2349 |
|
2350 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:67
|
2351 |
msgid "The orginal tweet is scheduled on:"
|
2352 |
msgstr "Der Original-Tweet ist geplant für:"
|
2353 |
|
2354 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/partials/post-edit-modal.php:84
|
2355 |
msgid "Change details"
|
2356 |
msgstr "Änderungen übernehmen"
|
2357 |
|
2358 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:30
|
2359 |
msgid "Sort by network"
|
2360 |
msgstr "Nach Netzwerk sortieren"
|
2361 |
|
2362 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:78 ../..
|
2363 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:159
|
2364 |
msgid "add post"
|
2365 |
msgstr "neuer Beitrag"
|
2366 |
|
2367 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:97 ../..
|
2368 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:117 ../..
|
2369 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:478
|
2370 |
msgid "Choose your"
|
2371 |
msgstr "Wähle Deinen"
|
2372 |
|
2373 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:97 ../..
|
2374 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:117 ../..
|
2375 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:478
|
2376 |
msgid "Post Format"
|
2377 |
msgstr "Postformat"
|
2378 |
|
2379 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:99 ../..
|
2380 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:119 ../..
|
2381 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:480
|
2382 |
msgid "for:"
|
2383 |
msgstr "für:"
|
2384 |
|
2385 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:118 ../..
|
2386 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:138 ../..
|
2387 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:495
|
2388 |
msgid ""
|
2389 |
"Define the default settings for the custom post format for all of your "
|
2390 |
"Facebook accounts in the Blog2Social settings."
|
2392 |
"Definiere Dein Standard-Beitragsformat für alle Deine Facebook-Verbindungen "
|
2393 |
"unter den Blog2Social Einstellungen."
|
2394 |
|
2395 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:121 ../..
|
2396 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:141 ../..
|
2397 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:498
|
2398 |
msgid ""
|
2399 |
"Define the default settings for the custom post format for all of your "
|
2400 |
"Twitter accounts in the Blog2Social settings."
|
2402 |
"Definiere Dein Standard-Beitragsformat für alle Deine Twitter-Verbindungen "
|
2403 |
"unter den Blog2Social Einstellungen."
|
2404 |
|
2405 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:124 ../..
|
2406 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:144 ../..
|
2407 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:501
|
2408 |
msgid ""
|
2409 |
"Define the default settings for the custom post format for all of your "
|
2410 |
"Google+ accounts in the Blog2Social settings."
|
2412 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
2413 |
"unter den Blog2Social Einstellungen."
|
2414 |
|
2415 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:127 ../..
|
2416 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:147 ../..
|
2417 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:504
|
2418 |
msgid ""
|
2419 |
"Define the default settings for the custom post format for all of your "
|
2420 |
"Instagram accounts in the Blog2Social settings."
|
2422 |
"Definiere Dein Standard-Beitragsformat für alle Deine Instagram-Verbindungen "
|
2423 |
"unter den Blog2Social Einstellungen."
|
2424 |
|
2425 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:142 ../..
|
2426 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:98 ../..
|
2427 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:435
|
2428 |
msgid "Select image for"
|
2429 |
msgstr "Wähle Bild aus für"
|
2430 |
|
2431 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:161
|
2432 |
msgid "Select a post"
|
2433 |
msgstr "Beitrag auswählen"
|
2434 |
|
2435 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:208 ../..
|
2436 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:389
|
2437 |
msgid "Need to schedule your posts?"
|
2438 |
msgstr "Du möchtest Deine Beiträge planen?"
|
2439 |
|
2440 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:211 ../..
|
2441 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:392
|
2442 |
msgid "Blog2Social Premium covers everything you need."
|
2443 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
2444 |
|
2445 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:215 ../..
|
2446 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:396
|
2447 |
msgid ""
|
2448 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
2449 |
"desired date and you are ready to go!"
|
2451 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
2452 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
2453 |
|
2454 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:217 ../..
|
2455 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:398
|
2456 |
msgid "Schedule post recurrently"
|
2457 |
msgstr "Beitrag mehrfach planen"
|
2458 |
|
2459 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:218 ../..
|
2460 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:399
|
2461 |
msgid ""
|
2462 |
"You have evergreen content you want to re-share from time to time in your "
|
2463 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
2467 |
"möchtest? Plane Deinen Evergreen-Content einmalig, mehrfach oder "
|
2468 |
"wiederholend zu verschiedenden Zeiten."
|
2469 |
|
2470 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:220 ../..
|
2471 |
+
#: /plugins/blog2social-v-4-9/views/b2s/premium.php:78 ../../plugins/blog2social-
|
2472 |
+
#: v-4-9/views/b2s/ship.php:401 ../../plugins/blog2social-v-4-
|
2473 |
+
#: 9/views/b2s/widgets/premium.php:71 ../../plugins/blog2social-v-4-
|
2474 |
+
#: 9/views/b2s/html/footer.phtml:191
|
2475 |
msgid "Best Time Scheduler"
|
2476 |
msgstr "Beste Zeiten Manager"
|
2477 |
|
2478 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.calendar.php:221 ../..
|
2479 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:402
|
2480 |
msgid ""
|
2481 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
2482 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
2488 |
"Dein Beitrag zu den Besten Zeiten für jedes Netzwerk zu planen. Erhalte mehr "
|
2489 |
"Reichweite und verlängere die Lebensdauer Deiner Beiträge."
|
2490 |
|
2491 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.notice.php:65 ../..
|
2492 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.publish.php:65 ../..
|
2493 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:71
|
2494 |
msgid "Delete entries from the reporting"
|
2495 |
msgstr "Einträge aus dem Reporting löschen"
|
2496 |
|
2497 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.notice.php:68 ../..
|
2498 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.publish.php:68 ../..
|
2499 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:74
|
2500 |
msgid "You are sure, you want to delete entries from the reporting?"
|
2501 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
2502 |
|
2503 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.notice.php:70 ../..
|
2504 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.publish.php:70 ../..
|
2505 |
+
#: /plugins/blog2social-v-4-9/views/b2s/post.sched.php:82 ../..
|
2506 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:76
|
2507 |
msgid "Number of entries"
|
2508 |
msgstr "Anzahl der Einträge"
|
2509 |
|
2510 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.sched.php:77
|
2511 |
msgid "Delete entries form the scheduling"
|
2512 |
msgstr "Einträge aus der Planung löschen"
|
2513 |
|
2514 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/post.sched.php:80
|
2515 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
2516 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
2517 |
|
2518 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:9 ../..
|
2519 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:1
|
2520 |
msgid "Your license: Blog2Social"
|
2521 |
msgstr "Du nutzt Blog2Social"
|
2522 |
|
2523 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:21 ../..
|
2524 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:13
|
2525 |
msgid ""
|
2526 |
"Upgrade to Blog2Social Premium to schedule your posts for the best time, "
|
2527 |
"once or recurringly with the Best Time Scheduler and post to pages, groups "
|
2531 |
"im Voraus planen, zur einmaligen oder wiederholten Veröffentlichung. Und Du "
|
2532 |
"kannst auf Seiten, in Gruppen und mehreren Accounts pro Netzwerk posten."
|
2533 |
|
2534 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:27 ../..
|
2535 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:19 ../..
|
2536 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:24
|
|
|
|
|
|
|
|
|
|
|
2537 |
msgid "Enter license key and change your version"
|
2538 |
msgstr "Lizenzschlüssel eingeben und Version ändern"
|
2539 |
|
2540 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:29 ../..
|
2541 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:21 ../..
|
2542 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:26
|
2543 |
msgid "Activate"
|
2544 |
msgstr "Aktivieren"
|
2545 |
|
2546 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:51
|
2547 |
msgid "Social Media Sharing"
|
2548 |
msgstr "Netzwerkauswahl"
|
2549 |
|
2550 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:52 ../..
|
2551 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:36
|
2552 |
msgid "Cross-share to all popular social networks"
|
2553 |
msgstr "Teilen von Blogbeiträgen auf allen Social Media"
|
2554 |
|
2555 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:60
|
2556 |
msgid "Auto Posting"
|
2557 |
msgstr "Auto-Posting"
|
2558 |
|
2559 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:61 ../..
|
2560 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:48
|
2561 |
msgid "Automatically share your posts whenever you publish a new blog post"
|
2562 |
msgstr "Blogbeiträge automatisch beim Veröffentlichen teilen"
|
2563 |
|
2564 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:69
|
2565 |
msgid "Customizing Social Media Posts"
|
2566 |
msgstr "Individualisieren"
|
2567 |
|
2568 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:70 ../..
|
2569 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:60
|
2570 |
msgid ""
|
2571 |
"Edit or add comments, hashtags or handles. Edit posts in HTML for re-"
|
2572 |
"publishing on blogging networks"
|
2574 |
"Posting-Texte ergänzen mit Kommentaren, Hashtags oder Handles. HTML-Editor "
|
2575 |
"für das Posten in Blog-Netzwerken"
|
2576 |
|
2577 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:79 ../..
|
2578 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:72
|
2579 |
msgid "Choose pre-defined times to post or edit and define your own time settings"
|
2580 |
msgstr "Optimaler Zeitpunkt zum Posten voreingestellt und anpassbar"
|
2581 |
|
2582 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:89
|
2583 |
msgid "Social Media Scheduler"
|
2584 |
msgstr "Veröffentlichungen planen"
|
2585 |
|
2586 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:90
|
2587 |
msgid ""
|
2588 |
"Social media scheduling: once, repeatedly or recurrently to multiple "
|
2589 |
"profiles, pages and groups"
|
2591 |
"Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
|
2592 |
"Gruppen posten"
|
2593 |
|
2594 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:98
|
2595 |
msgid "Individual Images for Each Social Media Post"
|
2596 |
msgstr "Individuelle Bilder für jeden Social Media Post"
|
2597 |
|
2598 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:99
|
2599 |
msgid ""
|
2600 |
"Select any image from your media gallery for each social media post and "
|
2601 |
"channel"
|
2602 |
msgstr "Wählen Sie beliebige Bilder für Ihre Social Media Posts"
|
2603 |
|
2604 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:107
|
2605 |
msgid "Select Post Format"
|
2606 |
msgstr "Beitragsformat auswählen"
|
2607 |
|
2608 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:108 ../..
|
2609 |
+
#: /plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:96
|
2610 |
msgid "One-page preview editor for all social networks for easy customizing"
|
2611 |
msgstr ""
|
2612 |
"Zentrale Vorschauseite für alle Social Media mit Editor für einfaches "
|
2613 |
"Anpassen"
|
2614 |
|
2615 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:116
|
2616 |
msgid "Social Media Reporting"
|
2617 |
msgstr "Reporting"
|
2618 |
|
2619 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:117
|
2620 |
msgid "Keep track of your scheduled and shared posts"
|
2621 |
msgstr ""
|
2622 |
"Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
|
2623 |
"einfachen Aufrufen und erneuten Teilen"
|
2624 |
|
2625 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/premium.php:122
|
2626 |
msgid "Show me plans and prices"
|
2627 |
msgstr "Versionen und Preise anzeigen"
|
2628 |
|
2629 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:25
|
2630 |
msgid "save..."
|
2631 |
msgstr "speichere Daten..."
|
2632 |
|
2633 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:30
|
2634 |
msgid "General"
|
2635 |
msgstr "Allgemein"
|
2636 |
|
2637 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:36
|
2638 |
msgid "Social Meta Data"
|
2639 |
msgstr "Social Meta Angaben"
|
2640 |
|
2641 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:39
|
2642 |
msgid "Best Time Settings"
|
2643 |
msgstr "Zeit-Einstellungen"
|
2644 |
|
2645 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:42
|
2646 |
msgid "Network Settings"
|
2647 |
msgstr "Netzwerk-Einstellungen"
|
2648 |
|
2649 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:65 ../..
|
2650 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:457
|
2651 |
msgid "My Time Settings"
|
2652 |
msgstr "Meine Zeit-Einstellungen"
|
2653 |
|
2654 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:76
|
2655 |
msgid "Reset predefined best time settings"
|
2656 |
msgstr "Voreingestellte beste Zeiten zurücksetzen"
|
2657 |
|
2658 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:86
|
2659 |
msgid "Post format"
|
2660 |
msgstr "Beitragsformat"
|
2661 |
|
2662 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:96
|
2663 |
msgid "Facebook"
|
2664 |
msgstr "Facebook"
|
2665 |
|
2666 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:99
|
2667 |
msgid "Twitter"
|
2668 |
msgstr "Twitter"
|
2669 |
|
2670 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:102
|
2671 |
msgid "Google+"
|
2672 |
msgstr "Google+"
|
2673 |
|
2674 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:105
|
2675 |
msgid "Instagram"
|
2676 |
msgstr "Instagram"
|
2677 |
|
2678 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:206
|
2679 |
msgid "Allow shortcodes in my post"
|
2680 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
2681 |
|
2682 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:209
|
2683 |
msgid ""
|
2684 |
"Shortcodes are used by some wordpress plugins like Elementor, Visual "
|
2685 |
"Composer and Content Builder. When a shortcode is inserted in a WordPress "
|
2698 |
"den Inhalt durch ein Plugin zu ersetzen, das Du verwendet.<br><br> Aktiviere "
|
2699 |
"diese Funktion, wenn Du dynamische Elemente in Deinen Beiträgen verwendest."
|
2700 |
|
2701 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:220
|
2702 |
msgid "Include WordPress tags as hashtags in your posts"
|
2703 |
msgstr "Füge WordPress-Tags als Hashtags zu Deinen Social Media-Posts hinzu"
|
2704 |
|
2705 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:223
|
2706 |
msgid ""
|
2707 |
"Hashtags are a great way to generate more reach and visibility for your "
|
2708 |
"posts. By activating this feature Blog2Social will automatically include "
|
2719 |
"Hinzufügen zusätzlicher Hashtags zu machen. Blog2Social löscht unnötige "
|
2720 |
"Leerzeichen Deiner WordPress-Tags, um gültige Hashtags zu erstellen. \n"
|
2721 |
|
2722 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:234
|
2723 |
msgid "Activate Legacy mode "
|
2724 |
msgstr "Kompatibilitätsmodus aktivieren "
|
2725 |
|
2726 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:237
|
2727 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2728 |
msgstr ""
|
2729 |
"Plugininhalte werden nacheinander geladen, um den Hosting-Server Deines "
|
2730 |
"Blogs zu entlasten."
|
2731 |
|
2732 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:248
|
2733 |
msgid "Instant Caching for Facebook Link Posts"
|
2734 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2735 |
|
2736 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:251
|
2737 |
msgid ""
|
2738 |
"To make sure that Facebook always pulls the current meta data of your blog "
|
2739 |
"post for link-posts, Blog2Social adds a \"no-cache=1\" parameter to the post "
|
2745 |
"Caching bei Facebook Link-Beiträgen den “no-cache=1” Parameter an die "
|
2746 |
"Beitrags-URL. Dies ist notwendig, wenn Du varnish caching benutzt.\n"
|
2747 |
|
2748 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:253
|
2749 |
msgid "Note: To use Facebook Instant Articles, this option must be disabled."
|
2750 |
msgstr ""
|
2751 |
"Achtung: Um Facebook Instant Artikel zu verwenden, muss diese Option "
|
2752 |
"deaktiviert sein."
|
2753 |
|
2754 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/settings.php:269
|
2755 |
msgid ""
|
2756 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
2757 |
"defined in the general settings of your WordPress. You can select a user-"
|
2765 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
2766 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
2767 |
|
2768 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:29
|
2769 |
msgid "Social Media Scheduling & Sharing"
|
2770 |
msgstr "Beitrag auf Social Media planen und teilen"
|
2771 |
|
2772 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:39
|
2773 |
msgid "scroll to bottom"
|
2774 |
msgstr "zum Seitenende"
|
2775 |
|
2776 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:44
|
2777 |
msgid "You want to load your time settings?"
|
2778 |
msgstr "Du möchtest Deine Zeiten laden?"
|
2779 |
|
2780 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:45
|
2781 |
msgid "Load My Time Settings"
|
2782 |
msgstr "Meine Zeit-Einstellungen laden"
|
2783 |
|
2784 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:51
|
2785 |
msgid "Load Best Time Scheduler"
|
2786 |
msgstr "Beste Zeiten laden"
|
2787 |
|
2788 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:84
|
2789 |
msgid "Social Accounts"
|
2790 |
msgstr "Social Media Konten"
|
2791 |
|
2792 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:102
|
2793 |
msgid "Add more..."
|
2794 |
msgstr "mehr hinzufügen"
|
2795 |
|
2796 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:104
|
2797 |
msgid "Profiles | Pages | Groups"
|
2798 |
msgstr "Profile | Seiten | Gruppen"
|
2799 |
|
2800 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:143
|
2801 |
msgid "Save Network Selection"
|
2802 |
msgstr "Netzwerkauswahl speichern"
|
2803 |
|
2804 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:152
|
2805 |
msgid "network connected"
|
2806 |
msgstr "Netzwerk verbunden"
|
2807 |
|
2808 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:153
|
2809 |
msgid "requires image"
|
2810 |
msgstr "Bild benötigt"
|
2811 |
|
2812 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:154
|
2813 |
msgid "refresh authorization"
|
2814 |
msgstr "Autorisierung aktualisieren"
|
2815 |
|
2816 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:177
|
2817 |
msgid ""
|
2818 |
"Notice:<br><p>Please make sure, that your website address is reachable. The "
|
2819 |
"Social Networks do not allow postings from local installations.</p>"
|
2822 |
"erreichbar ist. Die sozialen Netzwerke erlauben keine Posts von lokalen "
|
2823 |
"Installationen.</p>"
|
2824 |
|
2825 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:179
|
2826 |
msgid "change website address"
|
2827 |
msgstr "Webseiten-Adresse ändern"
|
2828 |
|
2829 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:196
|
2830 |
msgid "First, connect or select network before posting"
|
2831 |
msgstr ""
|
2832 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2833 |
"Du den Beitrag teilst!"
|
2834 |
|
2835 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:206
|
|
|
|
|
|
|
|
|
2836 |
msgid "scroll to top"
|
2837 |
msgstr "zum Seitenanfang"
|
2838 |
|
2839 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:207 ../..
|
2840 |
+
#: /plugins/blog2social-v-4-9/views/b2s/ship.php:211
|
2841 |
msgid "Share"
|
2842 |
msgstr "Teilen"
|
2843 |
|
2844 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:220
|
2845 |
msgid "Time zone"
|
2846 |
msgstr "Zeitzone"
|
2847 |
|
2848 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:238
|
2849 |
msgid "Share new post on Social Media"
|
2850 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
2851 |
|
2852 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:260
|
2853 |
msgid "Connect for"
|
2854 |
msgstr "Netzwerke verbinden für"
|
2855 |
|
2856 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:276
|
2857 |
msgid "Time Scheduling"
|
2858 |
msgstr "Zeitplanung"
|
2859 |
|
2860 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:280
|
2861 |
msgid ""
|
2862 |
"You have not yet defined personal time settings. To edit personal time "
|
2863 |
"settings click on the Blog2Social Settings on the left-hand menu and select "
|
2869 |
"Menü von Blog2Social und wähle die \"Zeit-Einstellungen\" aus. Dort kannst Du "
|
2870 |
"die voreingestellten besten Zeiten verändern."
|
2871 |
|
2872 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:293
|
2873 |
msgid "Re-share this Post"
|
2874 |
msgstr "Diesen Beitrag nochmal teilen"
|
2875 |
|
2876 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:296
|
2877 |
msgid ""
|
2878 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
2879 |
"different choice of networks, profiles, pages or groups, or with different "
|
2898 |
"auf \"Diesen Beitrag erneut teilen\" und Du wirst erneut zur Vorschau geführt, "
|
2899 |
"wo Deine Netzwerke, Texte und Bilder auswählen oder variieren kannst. "
|
2900 |
|
2901 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:299
|
2902 |
msgid "You want re-share your blog post?"
|
2903 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
2904 |
|
2905 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:327
|
2906 |
msgid "Save Network Settings"
|
2907 |
msgstr "Netzwerkeinstellungen speichern"
|
2908 |
|
2909 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:330
|
2910 |
msgid ""
|
2911 |
"You can save your current network settings as \"Standard\" network settings "
|
2912 |
"for any future sharing activities or as a \"Profile\" to choose from (Premium)."
|
2938 |
"zur Vorschau geführt, wo Du Deine Netzwerke, Texte und Bilder wählen oder "
|
2939 |
"variieren kannst. "
|
2940 |
|
2941 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:342
|
2942 |
msgid "Your blog post is not yet published on your Wordpress!"
|
2943 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
2944 |
|
2945 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:345
|
2946 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
2947 |
msgstr "Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
2948 |
|
2949 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:349
|
2950 |
msgid "Schedule your post"
|
2951 |
msgstr "Beitrag planen"
|
2952 |
|
2953 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:352
|
2954 |
msgid "Ignore & share"
|
2955 |
msgstr "Ignorieren & teilen"
|
2956 |
|
2957 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:527
|
2958 |
msgid "add Schedule"
|
2959 |
msgstr "neuer Termin"
|
2960 |
|
2961 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/ship.php:539
|
2962 |
msgid "Give me more information"
|
2963 |
msgstr "Erhalte mehr Infomationen"
|
2964 |
|
2965 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/activity.php:5
|
2966 |
msgid "Your activity"
|
2967 |
msgstr "Deine Aktivität"
|
2968 |
|
2969 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/activity.php:8
|
2970 |
msgid "Show activity starting from"
|
2971 |
msgstr "Zeige Aktivität ab"
|
2972 |
|
2973 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/activity.php:13
|
2974 |
msgid "published social media posts"
|
2975 |
msgstr "veröffentlichte Beiträge"
|
2976 |
|
2977 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/calendar.php:1 ../..
|
2978 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:12
|
2979 |
msgid "Calendar"
|
2980 |
msgstr "Kalender"
|
2981 |
|
2982 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/newsletter.php:4
|
2983 |
msgid "Get news and updates for promoting your blog on social media"
|
2984 |
msgstr "Aktuelle Infos zur Blog-Promotion auf Social Media"
|
2985 |
|
2986 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/newsletter.php:10
|
2987 |
msgid "Get updates"
|
2988 |
msgstr "Updates erhalten"
|
2989 |
|
2990 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/newsletter.php:12
|
2991 |
msgid ""
|
2992 |
"We hate spam, too. We will never sell your email address to any other "
|
2993 |
"company or for any other purpose."
|
2995 |
"Wir mögen auch keinen Spam. Deine E-Mail-Adresse werden wir weder verkaufen "
|
2996 |
"noch anderweitig zweckentfremden. "
|
2997 |
|
2998 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/newsletter.php:16
|
2999 |
msgid "You have already subscribed to the newsletter. Awesome!"
|
3000 |
msgstr "Du hast Dich schon für den Newsletter angemeldet! Prima!"
|
3001 |
|
3002 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:19
|
3003 |
msgid "Latest Posts"
|
3004 |
msgstr "letzte Beiträge"
|
3005 |
|
3006 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/posts.php:31 ../..
|
3007 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:8
|
3008 |
msgid "Scheduled Posts"
|
3009 |
msgstr "geplante Beiträge"
|
3010 |
|
3011 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:35
|
3012 |
msgid "Network Choice"
|
3013 |
msgstr "Netzwerkauswahl"
|
3014 |
|
3015 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:59
|
3016 |
msgid "Custom Sharing"
|
3017 |
msgstr "Individualisieren"
|
3018 |
|
3019 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:83
|
3020 |
msgid "Custom Scheduling"
|
3021 |
msgstr "Veröffentlichungen planen"
|
3022 |
|
3023 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:84
|
3024 |
msgid ""
|
3025 |
"Unlimited scheduling options: once, repeatedly or recurringly to multiple "
|
3026 |
"profiles, pages and groups"
|
3028 |
"Einmalig, mehrmals oder regelmäßig auf mehreren Profilen, Seiten oder "
|
3029 |
"Gruppen posten"
|
3030 |
|
3031 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:95
|
3032 |
msgid "One-Step Workflow"
|
3033 |
msgstr "One-Step Workflow"
|
3034 |
|
3035 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:107
|
3036 |
msgid "Reporting"
|
3037 |
msgstr "Veröffentlichungen anzeigen"
|
3038 |
|
3039 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:108
|
3040 |
msgid ""
|
3041 |
"All scheduled and published social media posts with direct links for easy "
|
3042 |
"access or re-sharing"
|
3044 |
"Alle veröffentlichten und geplanten Social-Media-Posts mit direktem Link zum "
|
3045 |
"einfachen Aufrufen und erneuten Teilen"
|
3046 |
|
3047 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/premium.php:115
|
3048 |
msgid "Unlock Premium"
|
3049 |
msgstr "Premium freischalten"
|
3050 |
|
3051 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/support.php:9
|
3052 |
msgid "more FAQ"
|
3053 |
msgstr "mehr FAQ"
|
3054 |
|
3055 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/tutorial.php:1 ../..
|
3056 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/service.phtml:4
|
3057 |
msgid "How to work with Blog2Social"
|
3058 |
msgstr "So arbeitest Du mit Blog2Social"
|
3059 |
|
3060 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/widgets/tutorial.php:2
|
3061 |
msgid ""
|
3062 |
"Learn how to get the most out of Blog2Social to promote your blog on social "
|
3063 |
"media."
|
3065 |
"Du erfährst, wie Du Blog2Social optimal nutzt, um Deinen Blog auf Social "
|
3066 |
"Media zu promoten."
|
3067 |
|
3068 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:12
|
3069 |
msgid "Connection is broken..."
|
3070 |
msgstr "Vebindung ist unterbrochen..."
|
3071 |
|
3072 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:14
|
3073 |
msgid ""
|
3074 |
"The connection to your server has been interrupted. Please make sure that "
|
3075 |
"your blog is reachable. If your server does not respond or is too slow, "
|
3082 |
"nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
|
3083 |
"Deinen Webmaster, wenn dieser Fehler erneut erscheint."
|
3084 |
|
3085 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:17
|
3086 |
msgid "Update..."
|
3087 |
msgstr "Aktualisierung..."
|
3088 |
|
3089 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:19
|
3090 |
msgid ""
|
3091 |
"<b> A new version of Blog2Social is available. </b> Update now <br> "
|
3092 |
"Blog2Social to continue to use the latest version of the plugin."
|
3093 |
msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
|
3094 |
|
3095 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:23
|
3096 |
msgid "Update Blog2Social"
|
3097 |
msgstr "Aktualisiere Blog2Social"
|
3098 |
|
3099 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:26
|
3100 |
msgid "Unknown error"
|
3101 |
msgstr "Unbekannter Fehler"
|
3102 |
|
3103 |
+
#: ../../plugins/blog2social-v-4-9/views/notice.php:28
|
3104 |
msgid "<b> An unknown error occurred! </b> <br> Please contact our support!"
|
3105 |
msgstr ""
|
3106 |
"<b> Ein unbekannter Fehler ist aufgetreten. </b> <br> Bitte kontaktiere "
|
3107 |
"unseren Support."
|
3108 |
|
3109 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:14
|
3110 |
msgid "Login failed. Please check your username and a password!"
|
3111 |
msgstr ""
|
3112 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
3113 |
"Benutzernamen und Dein Password!"
|
3114 |
|
3115 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:20
|
3116 |
msgid "Login failed. Please check your server settings. OpenSSL must be enabled on."
|
3117 |
msgstr ""
|
3118 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfen Deine "
|
3119 |
"Server-Einstellungen. OpenSSL muss aktiviert sein. "
|
3120 |
|
3121 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:23
|
3122 |
msgid "E-Mail or Username"
|
3123 |
msgstr "E-Mail oder Benutzername"
|
3124 |
|
3125 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:24
|
3126 |
msgid "Password"
|
3127 |
msgstr "Passwort"
|
3128 |
|
3129 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:27
|
3130 |
msgid "Sign in"
|
3131 |
msgstr "Anmelden"
|
3132 |
|
3133 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:29
|
3134 |
msgid "create account"
|
3135 |
msgstr "neues Konto erstellen"
|
3136 |
|
3137 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:29
|
3138 |
msgid "reset password"
|
3139 |
msgstr "Passwort zurücksetzen"
|
3140 |
|
3141 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:35
|
3142 |
msgid "Test PR-Gateway for free"
|
3143 |
msgstr "PR-Gateway kostenlos und unverbindlich testen"
|
3144 |
|
3145 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:36
|
3146 |
msgid "1x publish press release <br> 1x publish report <br> 1x promote event"
|
3147 |
msgstr ""
|
3148 |
"1 x Pressemitteilung veröffentlichen <br> 1 x Report abrufen <br>1 x "
|
3149 |
"Veranstaltung bewerben"
|
3150 |
|
3151 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:38
|
3152 |
msgid ""
|
3153 |
"The press distribution PR gateway automatically publish your press releases "
|
3154 |
"and events with one click.Publish your message over 250 portals."
|
3160 |
"internationalen und regionalen Portalen, Social Media und Dokumenten-"
|
3161 |
"Netzwerken."
|
3162 |
|
3163 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/login.php:41
|
3164 |
msgid "Start your 14-Day Free Trial"
|
3165 |
msgstr "Jetzt kostenlos testen"
|
3166 |
|
3167 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:34
|
3168 |
msgid "Select Image"
|
3169 |
msgstr "Bild auswählen"
|
3170 |
|
3171 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:45 ../..
|
3172 |
+
#: /plugins/blog2social-v-4-9/views/prg/ship.php:47
|
3173 |
msgid "Copyright"
|
3174 |
msgstr "Copyright"
|
3175 |
|
3176 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:66
|
3177 |
msgid "Save As Draft"
|
3178 |
msgstr "als Entwurf speichern"
|
3179 |
|
3180 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:67
|
3181 |
msgid "Publish"
|
3182 |
msgstr "Veröffentlichen"
|
3183 |
|
3184 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:85
|
3185 |
msgid "Please Note"
|
3186 |
msgstr "Hinweis"
|
3187 |
|
3188 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:88
|
3189 |
msgid ""
|
3190 |
"It may incur charges for publishing on PR-Gateway. Sent press releases can "
|
3191 |
"not be withdrawn. If you want your press release to be published now?"
|
3195 |
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
3196 |
"Pressemitteilung jetzt versendet werden?"
|
3197 |
|
3198 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/ship.php:91
|
3199 |
msgid "Yes, I accept"
|
3200 |
msgstr "Ja,einverstanden"
|
3201 |
|
3202 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:4
|
3203 |
msgid "Privacy Policy"
|
3204 |
msgstr "Datenschutz"
|
3205 |
|
3206 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:4
|
3207 |
msgid "Terms"
|
3208 |
msgstr "Agbs"
|
3209 |
|
3210 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:4
|
3211 |
msgid "We never store your data from your social media profiles."
|
3212 |
msgstr "Wir speichern keine persönlichen Daten Deiner Social Media Profile."
|
3213 |
|
3214 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:8 ../..
|
3215 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/footer.phtml:8 ../..
|
3216 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/header.phtml:40
|
3217 |
msgid "Post"
|
3218 |
msgstr "Beitrag"
|
3219 |
|
3220 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:9 ../..
|
3221 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/footer.phtml:9
|
3222 |
msgid "Job"
|
3223 |
msgstr "Stellenanzeige"
|
3224 |
|
3225 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:10 ../..
|
3226 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/footer.phtml:10
|
3227 |
msgid "Event"
|
3228 |
msgstr "Veranstaltung"
|
3229 |
|
3230 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:22
|
3231 |
msgid "Upgrade to Blog2Social for Premium"
|
3232 |
msgstr "Jetzt auf Blog2Social PREMIUM upgraden "
|
3233 |
|
3234 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:52
|
3235 |
msgid "Upgrade to Blog2Social for PREMIUM PRO"
|
3236 |
msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden "
|
3237 |
|
3238 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:55
|
3239 |
msgid ""
|
3240 |
"You can select different combinations of networks and save them for "
|
3241 |
"different sharing purposes."
|
3243 |
"Du kannst für verschiedene Social Media Aktivitäten oder Kampagnen eine "
|
3244 |
"passende Kombination von Netzwerken anlegen und speichern."
|
3245 |
|
3246 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:58
|
3247 |
msgid ""
|
3248 |
"With Blog2Social Premium PRO you can save your preferred network "
|
3249 |
"combinations for future reference and choose individual names for each "
|
3263 |
"mehrere Social Media Profile, Seiten und Gruppen eines Netzwerks in einer "
|
3264 |
"Kombination verbinden."
|
3265 |
|
3266 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:61
|
3267 |
msgid "With Blog2Social PREMIUM PRO you can also:"
|
3268 |
msgstr "Mit blog2Social Premium PRO kannst Du außerdem:"
|
3269 |
|
3270 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:63
|
3271 |
msgid ""
|
3272 |
"Post on LinkedIn pages, XING pages and groups, as well as Facebook and "
|
3273 |
"Google+ pages and groups"
|
3275 |
"Auf LinkedIn-Seiten, auf XING-Seiten und -Gruppen, sowie auf Seiten und "
|
3276 |
"Gruppen in Facebook und Google+ posten"
|
3277 |
|
3278 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:65
|
3279 |
msgid ""
|
3280 |
"Schedule your posts at the best times on each network: for one time, "
|
3281 |
"multiple times or recurrently"
|
3283 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
3284 |
"oder nach einem regelmäßigen Muster"
|
3285 |
|
3286 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:68
|
3287 |
msgid ""
|
3288 |
"Reporting and calendar: keep track of your published and scheduled social "
|
3289 |
"media posts"
|
3291 |
"Mit dem Reporting & Kalender Deine bereits veröffentlichten und geplanten "
|
3292 |
"Social Media Post im Blick behalten."
|
3293 |
|
3294 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:75
|
3295 |
msgid "Activate Blog2Social PREMIUM PRO."
|
3296 |
msgstr "Aktiviere Blog2Social PREMIUM PRO. "
|
3297 |
|
3298 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:77
|
3299 |
msgid ""
|
3300 |
"With Blog2Social Premium PRO you can connect pages in LinkedIn and XING as "
|
3301 |
"well as XING groups."
|
3303 |
"Mit Blog2Social Premium PRO kannst Du auf Seiten in LinkedIn und XING und in "
|
3304 |
"XING-Gruppen posten."
|
3305 |
|
3306 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:80
|
3307 |
msgid "Also included:"
|
3308 |
msgstr "Außerdem inklusive"
|
3309 |
|
3310 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:82
|
3311 |
msgid "Social media auto-posting and auto-scheduling"
|
3312 |
msgstr "Blogbeiträge auto-posten und auto-planen"
|
3313 |
|
3314 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:83
|
3315 |
msgid "Posting to social media pages and groups in Facebook and Google+"
|
3316 |
msgstr "Posten auf Social Media Seiten und in Gruppen bei Facebook and Google+ "
|
3317 |
|
3318 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:84
|
3319 |
msgid "Sharing on multiple accounts per network"
|
3320 |
msgstr "Posten in mehreren Accounts pro Netzwerk"
|
3321 |
|
3322 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:85
|
3323 |
msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
|
3324 |
msgstr ""
|
3325 |
"Beste Zeiten Manager: Veröffentlichungen einmal, mehrmals oder regelmäßig "
|
3326 |
"planen"
|
3327 |
|
3328 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:86
|
3329 |
msgid "Reporting with links to already published posts"
|
3330 |
msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
|
3331 |
|
3332 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:101
|
3333 |
msgid "Select the preferred custom post format for your posts"
|
3334 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
3335 |
|
3336 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:106
|
3337 |
msgid ""
|
3338 |
"You can define your preferred custom post format Twitter, Facebook and "
|
3339 |
"Google +. Select link post or photo post format:"
|
3341 |
"Für Facebook, Twitter und Google + kannst Du Dein bevorzugtes Post-Format "
|
3342 |
"standardmäßig festlegen. Wähle das Link-Post- oder das Foto-Post-Format:"
|
3343 |
|
3344 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:111
|
3345 |
msgid ""
|
3346 |
"The link post format displays posts title, link address and the first one or "
|
3347 |
"two sentences of the post. The networks scan this information from your META "
|
3365 |
"Deinen Blogbeitrag. Bitte beachte: Bei Google + können nur Bilder, die im "
|
3366 |
"Blogbeitrag enthalten sind, für Link-Posts ausgewählt werden. \n"
|
3367 |
|
3368 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:123
|
3369 |
msgid ""
|
3370 |
"For Instagram, you can select \"image with frame\" or \"image cut out\" as your "
|
3371 |
"preferred custom post format."
|
3373 |
"Du kannst für Instagram zwischen \"Bild mit Rahmen\" umd \"Bild "
|
3374 |
"ausgeschnitten\" als Dein bevorzugtes Beitragsformat auswählen."
|
3375 |
|
3376 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:173
|
3377 |
msgid "Did you miss something?"
|
3378 |
msgstr "Was vermisst Du?"
|
3379 |
|
3380 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:176
|
3381 |
msgid "Help us make Blog2Social even better!"
|
3382 |
msgstr "Helfe uns Blog2Social besser zu machen!"
|
3383 |
|
3384 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:180
|
3385 |
msgid "submit"
|
3386 |
msgstr "senden"
|
3387 |
|
3388 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:194
|
3389 |
msgid ""
|
3390 |
"Blog2Social provides you with a ready-to-use best time scheduler based on "
|
3391 |
"current research on the best times to post on each social network."
|
3393 |
"Blog2Social stellt Dir ein vordefiniertes Zeitschema für die besten Zeiten "
|
3394 |
"zum Teilen auf den verschiedenen Social Media Kanälen zur Verfügung."
|
3395 |
|
3396 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:196
|
3397 |
msgid ""
|
3398 |
"Click Best Time Scheduler in the preview editor to schedule your posts "
|
3399 |
"automatically for the best times to post on each social network."
|
3402 |
"Click \"Best Time Scheduler\" in the preview editor to schedule your posts "
|
3403 |
"automatically for the best times to post on each social network."
|
3404 |
|
3405 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:198
|
3406 |
msgid ""
|
3407 |
"You can also define your own personal time settings for posting, if you know "
|
3408 |
"which times work best for your communities. Edit the pre-filled times in the "
|
3412 |
"eingetragenen Zeiten in den allgemeinen Einstellungen, die Du ändern "
|
3413 |
"möchtest und klicke \"speichern\"."
|
3414 |
|
3415 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:200
|
3416 |
msgid ""
|
3417 |
"Click My Time Settings in the preview editor to schedule your posts with "
|
3418 |
"your personal best time settings."
|
3420 |
"Klicke \"Meine Zeit-Einstellungen\" im Vorschau-Editor, um Deine Social Media "
|
3421 |
"Posts zu Deinen persönlichen Zeit-Einstellungen zu planen."
|
3422 |
|
3423 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:202
|
3424 |
msgid ""
|
3425 |
"You can always edit the predefined times in the preview editor for any post "
|
3426 |
"or network and save your new settings as default for future use."
|
3429 |
"jedes Netzwerk jederzeit individuell ändern oder neu definieren und für alle "
|
3430 |
"zukünftigen Beiträge abspeichern. "
|
3431 |
|
3432 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:204
|
3433 |
msgid ""
|
3434 |
"Blog2Social will also apply your personal time settings, if you enable the "
|
3435 |
"Social Media Auto-Poster and select auto-post at scheduled times. "
|
3438 |
"das Social Media Auto-Posting nutzt und die Veröffentlichung zu geplanten "
|
3439 |
"Zeiten auswählst."
|
3440 |
|
3441 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:238
|
3442 |
msgid "Why Retweets?"
|
3443 |
msgstr "Wieso retweeten?\n"
|
3444 |
|
3445 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:241
|
3446 |
msgid ""
|
3447 |
"Retweets are the recommended way to reshare the same Tweets across Twitter "
|
3448 |
"accounts in accordance with Twitter new rules. You can now schedule multiple "
|
3454 |
"mehrere Retweets für einen Original-Tweet direkt aus Deinem WordPress "
|
3455 |
"Backend heraus planen."
|
3456 |
|
3457 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:244
|
3458 |
+
msgid ""
|
3459 |
+
"If Retweets are enabled, every Original-Tweet you schedule in this step will "
|
3460 |
+
"be retweeted by the selected Twitter accounts. If, for example, 3 Original-"
|
3461 |
+
"Tweets are scheduled, every single Tweet will trigger a Retweet for the "
|
3462 |
+
"selected Twitter accounts."
|
3463 |
+
msgstr ""
|
3464 |
+
"Wenn Retweets aktiviert sind, wird jeder Original-Tweet, den Sie in diesem "
|
3465 |
+
"Schritt planen, von dem/den ausgewählten Twitter-Accounts retweetet. Wenn z."
|
3466 |
+
"B. 3 Original-Tweets geplant sind, löst jeder einzelne Tweet einen Retweet "
|
3467 |
+
"für den/die ausgewählten Twitter-Accounts aus."
|
3468 |
+
|
3469 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:248
|
3470 |
msgid "Do you want retweeten?"
|
3471 |
msgstr "Du möchtest retweeten?\n"
|
3472 |
|
3473 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:277
|
3474 |
+
msgid "Bit.ly integration (URL Shortening)"
|
3475 |
+
msgstr "Bit.ly URL Shortener Integration"
|
3476 |
+
|
3477 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:280
|
3478 |
+
msgid ""
|
3479 |
+
"You can use Bit.ly links to shorten the URL of your links and to track the "
|
3480 |
+
"performance of your links across all social media networks. Activate Bit.ly "
|
3481 |
+
"in the Blog2Social settings and link it to your Bit.ly account. Your social "
|
3482 |
+
"media posts will then be shared with your Bit.ly links and you can monitor "
|
3483 |
+
"the success of your posts in your Bit.ly account."
|
3484 |
+
msgstr ""
|
3485 |
+
"Nutzen Sie Bit.ly Links, um die URL Ihrer Blogbeiträge in den Social Media "
|
3486 |
+
"Posts zu kürzen und die Performance Ihrer Links über alle Social Media "
|
3487 |
+
"Netzwerke hinweg zu verfolgen. Aktivieren Sie den Bit.ly Link Shortener in "
|
3488 |
+
"den Blog2Social-Einstellungen und verknüpfen Sie Ihr Bit.ly-Konto mit "
|
3489 |
+
"Blog2Social. Ihre Social Media Posts werden dann mit Ihren Bit.ly-Links "
|
3490 |
+
"geteilt und Sie können so den Erfolg Ihrer Beiträge in Ihrem Bit.ly Account "
|
3491 |
+
"überprüfen.\n"
|
3492 |
+
|
3493 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:294
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3494 |
msgid ""
|
3495 |
"Select the content that will be automatically pre-filled in your Twitter "
|
3496 |
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
3501 |
"Tags als Hashtags zu Deinen Social Media-Posts hinzu” aktiviert hast, werden "
|
3502 |
"Hashtags auch im Dropdown-Menü automatisch an die Optionen angefügt. "
|
3503 |
|
3504 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:351
|
3505 |
msgid "Social Meta Tags Settings"
|
3506 |
msgstr "Meta Tag Einstellungen"
|
3507 |
|
3508 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:354 ../..
|
3509 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:435
|
3510 |
msgid "Change image, title and description for your post on this network"
|
3511 |
msgstr "Bild, Titel und Beschreibung des Blogbeitrags ändern"
|
3512 |
|
3513 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:360
|
3514 |
msgid ""
|
3515 |
"Facebook has changed its policy for posting link posts via plugins or web "
|
3516 |
"applications. Facebook does no longer display the featured or selected image "
|
3533 |
"Bitte stelle sicher, dass das ausgewählte Bild die Voraussetzungen für die "
|
3534 |
"Bildgrößen auf Facebook erfüllt."
|
3535 |
|
3536 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:362
|
3537 |
msgid ""
|
3538 |
"With Blog2Social you can select a featured image or any image you select to "
|
3539 |
"be displayed with your link post. Blog2Social will automatically write the "
|
3553 |
"der Beitragsvorschau an Bilder, Titel und Beschreibung vornimmst, nicht "
|
3554 |
"übernimmt. "
|
3555 |
|
3556 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:365
|
3557 |
msgid ""
|
3558 |
"Twitter has changed its policy for posting link posts via plugins or web "
|
3559 |
"applications. Twitter does no longer display the featured or selected image "
|
3575 |
"werden diese nicht angezeigt. Bitte stelle sicher, dass das ausgewählte Bild "
|
3576 |
"die Voraussetzungen für die Bildgrößen auf Twitter erfüllt."
|
3577 |
|
3578 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:367
|
3579 |
msgid ""
|
3580 |
"With Blog2Social you can select a featured image or any image you select to "
|
3581 |
"be displayed with your link post. Blog2Social will automatically write the "
|
3595 |
"Änderungen, die Du in der Beitragsvorschau an Bilder, Titel und Beschreibung "
|
3596 |
"vornimmst, nicht übernimmt. \n"
|
3597 |
|
3598 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:370
|
3599 |
msgid ""
|
3600 |
"You can change the image, title and description for your post on Facebook, "
|
3601 |
"by editing the following fields for"
|
3603 |
"Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
|
3604 |
"Facebook über die folgenden Felder ändern:"
|
3605 |
|
3606 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:373 ../..
|
3607 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:388
|
3608 |
msgid "image"
|
3609 |
msgstr "Bild"
|
3610 |
|
3611 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:375 ../..
|
3612 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:390
|
3613 |
msgid "description"
|
3614 |
msgstr "Beschreibung"
|
3615 |
|
3616 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:377
|
3617 |
msgid ""
|
3618 |
"Blog2Social will automatically write these information in the Facebook Open "
|
3619 |
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
3622 |
"Graph (OG) Meta Tag Parameter Deines Blogbeitrags für Image, Title und "
|
3623 |
"Description."
|
3624 |
|
3625 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:380
|
3626 |
msgid ""
|
3627 |
"Please note: If this post has already been shared or scheduled previously, "
|
3628 |
"your current changes will also affect the look of previously shared or "
|
3635 |
"Meta Tag Parameter Deiner Beitragsseite zieht und alle vorhandenen Beiträge "
|
3636 |
"mit diesen Informationen automatisch aktualisiert."
|
3637 |
|
3638 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:382
|
3639 |
#, php-format
|
3640 |
msgid ""
|
3641 |
"Please note: Your changes will have no effect on your social media posts on "
|
3646 |
"berücksichtigt werden, wenn Du in den Blog2Social Meta Tag<a target=\"_blank\" "
|
3647 |
"href=\"%s\">Einstellungen</a>, die Meta Tag Funktion manuell deaktiviert hast."
|
3648 |
|
3649 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:385
|
3650 |
msgid ""
|
3651 |
"You can change the image, title and description for your post on Twitter, by "
|
3652 |
"editing the following fields for"
|
3654 |
"Du kannst das Bild, den Titel und die Beschreibung für Deinen Post auf "
|
3655 |
"Twitter über die folgenden Felder ändern:"
|
3656 |
|
3657 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:392
|
3658 |
msgid ""
|
3659 |
"Blog2Social will automatically write these information in the Twitter Card "
|
3660 |
"Meta Tags for Image, Title and Description of your blog post."
|
3662 |
"Blog2Social übergibt diese Informationen automatisch an die Twitter Card "
|
3663 |
"Meta Tag Parameter Deines Blogbeitrags für Image, Title und Description."
|
3664 |
|
3665 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:395
|
3666 |
msgid ""
|
3667 |
"Please note: If this post has already been shared or scheduled previously, "
|
3668 |
"your current changes will also affect the look of previously shared or "
|
3677 |
"bereits geteilt hast, kann es bis zu 7 Tagen dauern, bis Twitter die "
|
3678 |
"Änderungen aktualisiert. "
|
3679 |
|
3680 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:397
|
3681 |
#, php-format
|
3682 |
msgid ""
|
3683 |
"Please note: Your changes will have no effect on your social media posts on "
|
3689 |
"target=\"_blank\" href=\"%s\">Einstellungen </a> die Meta Tag Funktion manuell "
|
3690 |
"deaktiviert hast."
|
3691 |
|
3692 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:404
|
3693 |
msgid "You want to change the image, title and description for your post?"
|
3694 |
msgstr "Du möchtest Dein Bild, Titel und Beschreibung für diesen Beitrag ändern?"
|
3695 |
|
3696 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:440
|
3697 |
msgid ""
|
3698 |
"You are currently sharing this post as image post. Changes to title and "
|
3699 |
"description Meta Tag parameters will only be supported for link post formats."
|
3705 |
"Format unterstützt. Bitte ändere das Post Format in Linkbeitrag, um "
|
3706 |
"Änderungen am Titel und der Beschreibung für die Postvorschau vorzunehmen."
|
3707 |
|
3708 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:443
|
3709 |
#, php-format
|
3710 |
msgid ""
|
3711 |
"Your changes will have no effect on your social media posts on Facebook, if "
|
3716 |
"Du Meta Tag Einstellungen für Facebook unter den Blog2Social <a "
|
3717 |
"target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
|
3718 |
|
3719 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/footer.phtml:446
|
3720 |
#, php-format
|
3721 |
msgid ""
|
3722 |
"Your changes will have no effect on your social media posts on Twitter, if "
|
3727 |
"Du Meta Tag Einstellungen für Twitter unter den Blog2Social <a "
|
3728 |
"target=\"_blank\" href=\"%s\">Einstellungen</a> deaktiviert hast."
|
3729 |
|
3730 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:36
|
3731 |
msgid ""
|
3732 |
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
3733 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
3736 |
"höher benötigt. Unser Support unterstützt Dich ab PHP Version 5.5.3. Siehe "
|
3737 |
"auch:"
|
3738 |
|
3739 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:37
|
3740 |
msgid "Technical requirements for Blog2Social"
|
3741 |
msgstr "Technische Vorraussetzungen für Blog2Social"
|
3742 |
|
3743 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:44
|
3744 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
3745 |
msgstr "Vielen Dank. Ab sofort erhältest Du die Blog-Updates von Blog2Social."
|
3746 |
|
3747 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:62
|
3748 |
msgid "Autoposter limit has been reached"
|
3749 |
msgstr "Das Autoposter-Limit wurde erreicht"
|
3750 |
|
3751 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:62
|
3752 |
msgid "Your daily limit for posting automatically has been reached."
|
3753 |
msgstr "Dein tägliche Limit für das automatische Veröffentlichen wurde erreicht."
|
3754 |
|
3755 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:69
|
3756 |
msgid "You have clear all page and post meta data successful."
|
3757 |
msgstr "Alle Seiten und Beitrags Metangaben sind gelöscht."
|
3758 |
|
3759 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:74
|
3760 |
msgid "The page and post meta data could not be removed."
|
3761 |
msgstr "Die Seiten und Beitrags Metangaben können nicht gelöscht werden."
|
3762 |
|
3763 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:80
|
3764 |
msgid ""
|
3765 |
"You have Yoast SEO active. Blog2Social Social Meta Tags overrides the meta "
|
3766 |
"tags from Yoast SEO."
|
3768 |
"Du hast Yoast SEO aktiviert. Blog2Social Meta Tags überschreibt die "
|
3769 |
"Metaangaben von Yoast SEO nun."
|
3770 |
|
3771 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:86
|
3772 |
msgid ""
|
3773 |
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
3774 |
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
3781 |
"Einstellungen. Wenn Du sie bereits deaktiviert hast, kannst Du diese Meldung "
|
3782 |
"ignorieren."
|
3783 |
|
3784 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:92
|
3785 |
msgid ""
|
3786 |
"You currently have both Blog2Social Social Meta Tags and Facebook Open Graph,"
|
3787 |
" Google+ and Twitter Card Tags plugins active. This is no recommended. "
|
3793 |
"deaktiviere die Facebook Open Graph, Google+ and Twitter Card Tags "
|
3794 |
"Einstellungen."
|
3795 |
|
3796 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:99
|
3797 |
msgid "This entry could not be removed. It's not yours!"
|
3798 |
msgstr "Der Eintrag kann nicht entfernt werden. Es ist nicht Deiner!"
|
3799 |
|
3800 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:104
|
3801 |
msgid "This entry was removed successful."
|
3802 |
msgstr "Der Eintrag wurde entfernt."
|
3803 |
|
3804 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:109
|
3805 |
msgid "This post was edit successful."
|
3806 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
3807 |
|
3808 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:118
|
3809 |
msgid "Post was scheduled successfully on your blog!"
|
3810 |
msgstr "Beitrag wurde erfolgreich auf Deinem Blog geplant!"
|
3811 |
|
3812 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:120
|
3813 |
msgid "Post is published successfully on your blog!"
|
3814 |
msgstr "Beitrag wird erfolgreich auf Deinem Blog veröffentlicht!"
|
3815 |
|
3816 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:134
|
3817 |
msgid "Your authorization was successful."
|
3818 |
msgstr "Deine Autorisierung war erfolgreich."
|
3819 |
|
3820 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:139
|
3821 |
msgid "Your profile was saved successful."
|
3822 |
msgstr "Dein Profil wurde erfolgreich gespeichert."
|
3823 |
|
3824 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:144
|
3825 |
msgid "Your profile could not be saved."
|
3826 |
msgstr "Dein Profil konnte nicht gespeichert werden."
|
3827 |
|
3828 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:149
|
3829 |
msgid "Your authorization could not be removed."
|
3830 |
msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
3831 |
|
3832 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:154
|
3833 |
msgid "Your authorization was removed successful."
|
3834 |
msgstr "Dein Profil wurde erfolgreich entfernt."
|
3835 |
|
3836 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:159
|
3837 |
msgid "Thank you! Your feedback has been received."
|
3838 |
msgstr "Vielen Dank. Dein Hinweis wurde an uns übermittelt."
|
3839 |
|
3840 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:164
|
3841 |
msgid "Your feedback could not be delivered."
|
3842 |
msgstr "Dein Hinweis konnte nicht übermittelt werden. Bitte versuche es erneut."
|
3843 |
|
3844 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:171 ../..
|
3845 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:186
|
3846 |
msgid "Your settings were successfully saved."
|
3847 |
msgstr "Deine Einstellungen sind gespeichert."
|
3848 |
|
3849 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:176
|
3850 |
msgid "Your settings could not be saved."
|
3851 |
msgstr "Deine Einstellungen konnte nicht gespeichert werden. Versuche es erneut."
|
3852 |
|
3853 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:181
|
3854 |
msgid ""
|
3855 |
"Your settings could not be saved, because you have auto-posting enabled but "
|
3856 |
"no social networks selected."
|
3858 |
"Deine Einstellungen konnten nicht gespeichert werden, weil Du keine Social "
|
3859 |
"Media Netzwerke ausgewählt hast."
|
3860 |
|
3861 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:194
|
3862 |
#, php-format
|
3863 |
msgid ""
|
3864 |
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
3870 |
"sehr freuen und uns helfen, das Tool bekannter zu machen. Vielen Dank für "
|
3871 |
"Deine Unterstützung.\n"
|
3872 |
|
3873 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:197
|
3874 |
msgid "Ok, you deserve it"
|
3875 |
msgstr "Ok, Ihr habt es verdient "
|
3876 |
|
3877 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:200
|
3878 |
msgid "Nope, maybe later"
|
3879 |
msgstr "Nicht jetzt, vielleicht später "
|
3880 |
|
3881 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:203
|
3882 |
msgid "I already did it"
|
3883 |
msgstr "Habe ich schon gemacht "
|
3884 |
|
3885 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:215
|
3886 |
msgid "Boost your social media automation with Blog2Social PREMIUM!"
|
3887 |
msgstr "Mache mehr aus Deiner Social Media Automatisierung mit Blog2Social PREMIUM!"
|
3888 |
|
3889 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:217
|
3890 |
msgid ""
|
3891 |
"Blog2Social provides even more options for auto-posting and auto-scheduling "
|
3892 |
"for your posts. Easily schedule your posts with the Best Time Scheduler or "
|
3901 |
"Formaten für jedes Netzwerk und jeden Post, wähle dazu beliebige Bilder aus "
|
3902 |
"deiner Bibliothek aus. Und vieles mehr.\n"
|
3903 |
|
3904 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:221
|
3905 |
msgid "Yes, I want to test Blog2Social PREMIUM 30 days for free"
|
3906 |
msgstr "Ja, ich möchte das Blog2Social PREMIUM 30 Tage kostenlos testen "
|
3907 |
|
3908 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:224
|
3909 |
msgid "No, I'm happy with Blog2Social FREE"
|
3910 |
msgstr "Nein, ich bin glücklich mit Blog2Social FREE "
|
3911 |
|
3912 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:236
|
3913 |
msgid "Your Blog2Social Premium Free Version is activated for "
|
3914 |
msgstr "Deine Blog2Social Testphase läuft noch"
|
3915 |
|
3916 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:239
|
3917 |
msgid " Days"
|
3918 |
msgstr "Tage"
|
3919 |
|
3920 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:239
|
3921 |
msgid " today"
|
3922 |
msgstr "heute"
|
3923 |
|
3924 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:243
|
3925 |
msgid ""
|
3926 |
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
3927 |
"autopilot, automatically schedule your social media posts with the Best Time "
|
3937 |
"hoch. Speichere mehrere Kombinationen von Netzwerken für verschiedene Zwecke."
|
3938 |
" "
|
3939 |
|
3940 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:247 ../..
|
3941 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/header.phtml:266
|
3942 |
msgid "I need some more time to decide"
|
3943 |
msgstr "Ich brauche noch mehr Zeit um mich zu entscheiden "
|
3944 |
|
3945 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:258
|
3946 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
3947 |
msgstr "Deine kostenlose Testversion von Blog2Social PREMIUM ist abgelaufen."
|
3948 |
|
3949 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:259
|
3950 |
msgid "We hope you liked Blog2Social Premium."
|
3951 |
msgstr "Wir hoffen, dass Dir Blog2Social Premium gefällt."
|
3952 |
|
3953 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:265
|
3954 |
msgid "Yes, I want to upgrade now"
|
3955 |
msgstr "Ja, ich möchte jetzt von Premium profitieren "
|
3956 |
|
3957 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:267
|
3958 |
msgid "Did you miss something? Tell us!"
|
3959 |
msgstr "Vermisst Du etwas? Sag es uns! "
|
3960 |
|
3961 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:277
|
3962 |
msgid "Version"
|
3963 |
msgstr "Version"
|
3964 |
|
3965 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:287 ../..
|
3966 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/service.phtml:2
|
3967 |
msgid "Plans & Pricing"
|
3968 |
msgstr "Versionen & Preise"
|
3969 |
|
3970 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:288 ../..
|
3971 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/service.phtml:3
|
3972 |
msgid "Support"
|
3973 |
msgstr "Support"
|
3974 |
|
3975 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:300
|
3976 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
3977 |
msgstr "Teste Blog2Social PREMIUM 30 Tage kostenlos"
|
3978 |
|
3979 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:306
|
3980 |
msgid ""
|
3981 |
"The free trial can not be started. This blog has been already registered for "
|
3982 |
"the free trial."
|
3984 |
"Die kostenlose Testphase konnte nicht aktiviert werden. Dieser Blog wurde "
|
3985 |
"bereits für die kostenlose Testzeit freigeschaltet."
|
3986 |
|
3987 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:311
|
3988 |
msgid "Share on multiple accounts per network"
|
3989 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
3990 |
|
3991 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:312
|
3992 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
3993 |
msgstr "Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
3994 |
|
3995 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:313
|
3996 |
msgid "Reporting with links to all published social media posts"
|
3997 |
msgstr "Reporting mit Links zu allen veröffentlichten Social Media Posts"
|
3998 |
|
3999 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:316 ../..
|
4000 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:141 ../..
|
4001 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:143 ../..
|
4002 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:218 ../..
|
4003 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:220
|
4004 |
msgid "E-Mail"
|
4005 |
msgstr "E-Mail"
|
4006 |
|
4007 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:320 ../..
|
4008 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:91 ../..
|
4009 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:100 ../..
|
4010 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:168 ../..
|
4011 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:177
|
4012 |
msgid "First Name"
|
4013 |
msgstr "Vorname"
|
4014 |
|
4015 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:324 ../..
|
4016 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:92 ../..
|
4017 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:103 ../..
|
4018 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:169 ../..
|
4019 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:180
|
4020 |
msgid "Last Name"
|
4021 |
msgstr "Nachname"
|
4022 |
|
4023 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:328
|
4024 |
msgid ""
|
4025 |
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
4026 |
"href=\"https://www.blog2social.com/en/terms/\">Conditions of Use</a> and <a "
|
4032 |
"target=\"_blank\" href=\"https://www.blog2social."
|
4033 |
"com/de/datenschutz/\">Datenschutzerklärung</a> einverstanden.\n"
|
4034 |
|
4035 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:333
|
4036 |
msgid "No credit card required"
|
4037 |
msgstr "keine Kreditkarte notwendig"
|
4038 |
|
4039 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:337
|
4040 |
msgid "Get Started"
|
4041 |
msgstr "Jetzt loslegen"
|
4042 |
|
4043 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:355
|
4044 |
msgid "Thank you for choosing Blog2Social Premium."
|
4045 |
msgstr "Vielen Dank, dass Du Dich für Blog2Social Premium entschieden hast."
|
4046 |
|
4047 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:364 ../..
|
4048 |
+
#: /plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:8
|
4049 |
msgid "Your license"
|
4050 |
msgstr "Deine Lizenz"
|
4051 |
|
4052 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:365
|
4053 |
msgid "Blog2Social Premium"
|
4054 |
msgstr "Blog2Social Premium"
|
4055 |
|
4056 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:365
|
4057 |
msgid "has been successfully activated."
|
4058 |
msgstr "wurde erfolgreich aktiviert."
|
4059 |
|
4060 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:375
|
4061 |
msgid "Your entered License Key is invalid. Please contact support!"
|
4062 |
msgstr "Dein Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren Support!"
|
4063 |
|
4064 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:385
|
4065 |
msgid "Your license key has reached the maximum number of users."
|
4066 |
msgstr "Dein Lizenzschlüssel hat die maximale Anzahl an Benutzern erreicht."
|
4067 |
|
4068 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:392
|
4069 |
msgid "OK"
|
4070 |
msgstr "OK"
|
4071 |
|
4072 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:408
|
4073 |
+
msgid "We updated our Privacy Policy"
|
4074 |
+
msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
4075 |
+
|
4076 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:422
|
4077 |
+
msgid "Blog2Social is a service of Adenion GmbH"
|
4078 |
+
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
4079 |
+
|
4080 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/header.phtml:423
|
4081 |
+
msgid "I agree to the Adenion Privacy Policy"
|
4082 |
+
msgstr "Ich stimme den Datenschutzrichtlinien zu"
|
4083 |
+
|
4084 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:7
|
4085 |
msgid "All Posts"
|
4086 |
msgstr "alle Beiträge"
|
4087 |
|
4088 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:10
|
4089 |
msgid "Shared Posts"
|
4090 |
msgstr "geteilte Beiträge"
|
4091 |
|
4092 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/post.navbar.phtml:11
|
4093 |
msgid "Notifications"
|
4094 |
msgstr "Benachrichtungen"
|
4095 |
|
4096 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:38
|
4097 |
msgid "Network Activity (today)"
|
4098 |
msgstr "Netzwerk Aktivitäten (heute)"
|
4099 |
|
4100 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:49
|
4101 |
msgid "Rate it!"
|
4102 |
msgstr "Bewerte Blog2Social"
|
4103 |
|
4104 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:52
|
4105 |
msgid ""
|
4106 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
4107 |
"anything that does not work for you, please contact us!"
|
4109 |
"Wenn Dir Blog2Social gefällt, dann freuen wir uns über eine 5 Sterne "
|
4110 |
"Bewertung. Spreche uns an, wenn Dir irgendwas nicht gefällt."
|
4111 |
|
4112 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:68
|
4113 |
msgid "GET STARTED"
|
4114 |
msgstr "Jetzt Affiliate-Partner werden"
|
4115 |
|
4116 |
+
#: ../../plugins/blog2social-v-4-9/views/b2s/html/sidebar.phtml:79
|
4117 |
msgid "Posts from Blog2Social"
|
4118 |
msgstr "Beiträge von Blog2Social"
|
4119 |
|
4120 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:7
|
4121 |
msgid "Post a Press Release"
|
4122 |
msgstr "Beitrag als Pressemitteilung veröffentlichen"
|
4123 |
|
4124 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:11
|
4125 |
msgid "Category"
|
4126 |
msgstr "Kategorie"
|
4127 |
|
4128 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:12
|
4129 |
msgid "Language"
|
4130 |
msgstr "Sprache"
|
4131 |
|
4132 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:20
|
4133 |
msgid "German"
|
4134 |
msgstr "Deutsch"
|
4135 |
|
4136 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:21
|
4137 |
msgid "English"
|
4138 |
msgstr "Englisch"
|
4139 |
|
4140 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:32 ../..
|
4141 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:34
|
4142 |
msgid "Subtitle"
|
4143 |
msgstr "Untertitel"
|
4144 |
|
4145 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:38 ../..
|
4146 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:40
|
4147 |
msgid "YouTube-Link"
|
4148 |
msgstr "Youtube-Link"
|
4149 |
|
4150 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:44 ../..
|
4151 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:46
|
4152 |
msgid "Message"
|
4153 |
msgstr "Mitteilung"
|
4154 |
|
4155 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:50
|
4156 |
msgid "Keywords"
|
4157 |
msgstr "Schlüsselworter"
|
4158 |
|
4159 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:52
|
4160 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
4161 |
msgstr "Schlüsselwörter mit Komma getrennt (z.B.: Blog2Social,PR-Gateway)"
|
4162 |
|
4163 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:56 ../..
|
4164 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:58
|
4165 |
msgid "Shortext"
|
4166 |
msgstr "Kurzbeschreibung"
|
4167 |
|
4168 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:69
|
4169 |
msgid "Contact Details"
|
4170 |
msgstr "Kontaktangaben"
|
4171 |
|
4172 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:74
|
4173 |
msgid "Company"
|
4174 |
msgstr "Firmenkontakt"
|
4175 |
|
4176 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:77
|
4177 |
msgid "Press"
|
4178 |
msgstr "Pressekontakt"
|
4179 |
|
4180 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:84 ../..
|
4181 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:86 ../..
|
4182 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:161 ../..
|
4183 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:163
|
4184 |
msgid "Name"
|
4185 |
msgstr "Name"
|
4186 |
|
4187 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:95 ../..
|
4188 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:172
|
4189 |
msgid "Mrs."
|
4190 |
msgstr "Frau"
|
4191 |
|
4192 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:96 ../..
|
4193 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:173
|
4194 |
msgid "Mr."
|
4195 |
msgstr "Herr"
|
4196 |
|
4197 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:107 ../..
|
4198 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:110 ../..
|
4199 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:184 ../..
|
4200 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:187
|
4201 |
msgid "Street"
|
4202 |
msgstr "Straße"
|
4203 |
|
4204 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:108 ../..
|
4205 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:113 ../..
|
4206 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:185 ../..
|
4207 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:190
|
4208 |
msgid "Number"
|
4209 |
msgstr "Nummer"
|
4210 |
|
4211 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:117 ../..
|
4212 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:120 ../..
|
4213 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:194 ../..
|
4214 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:197
|
4215 |
msgid "Zip Code"
|
4216 |
msgstr "PLZ"
|
4217 |
|
4218 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:118 ../..
|
4219 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:123 ../..
|
4220 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:195 ../..
|
4221 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:200
|
4222 |
msgid "City"
|
4223 |
msgstr "Stadt"
|
4224 |
|
4225 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:127 ../..
|
4226 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:204
|
4227 |
msgid "Country"
|
4228 |
msgstr "Land"
|
4229 |
|
4230 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:135 ../..
|
4231 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:137 ../..
|
4232 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:212 ../..
|
4233 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:214
|
4234 |
msgid "Phone"
|
4235 |
msgstr "Telefon"
|
4236 |
|
4237 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:147 ../..
|
4238 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:149 ../..
|
4239 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:224 ../..
|
4240 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:226
|
4241 |
msgid "Website"
|
4242 |
msgstr "Webseite"
|
4243 |
|
4244 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/form.phtml:153 ../..
|
4245 |
+
#: /plugins/blog2social-v-4-9/views/prg/html/form.phtml:155
|
4246 |
msgid "Company Description"
|
4247 |
msgstr "Firmenbeschreibung"
|
4248 |
|
4249 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:8
|
4250 |
msgid "You are signed out of <b>PR-Gateway</b>!"
|
4251 |
msgstr "Du bist nun bei PR-Gateway abgemeldet!"
|
4252 |
|
4253 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:17
|
4254 |
msgid "Your message will now be sent over PR gateway to the press portals!"
|
4255 |
msgstr "Deine Mitteilung wird nun über PR-Gateway an die Presseportale übermittelt!"
|
4256 |
|
4257 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:18
|
4258 |
msgid "See all publications for your message live on "
|
4259 |
msgstr "Verfolge live die Veröffentlichungen Deiner Mitteilung unter"
|
4260 |
|
4261 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:20
|
4262 |
msgid "Your message save as draft by PR-Gateway!"
|
4263 |
msgstr ""
|
4264 |
"Deine Mitteilung wurde erfolgreich an PR-Gateway übermittelt und als Entwurf "
|
4265 |
"abgelegt!"
|
4266 |
|
4267 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:28
|
4268 |
msgid ""
|
4269 |
"Unfortunately your request can not be processed by Blog2Social. Please try "
|
4270 |
"again!"
|
4272 |
"Deine Anfrage kann leider vom Blog2Social nicht verarbeitet werden. Bitte "
|
4273 |
"versuche es erneut!"
|
4274 |
|
4275 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:34
|
4276 |
msgid "Your message has not been received successfully with us. Please try again!"
|
4277 |
msgstr ""
|
4278 |
"Deine Mitteilung ist bei uns leider nicht erfolglreich eingegangen. Bitte "
|
4279 |
"versuche es erneut!"
|
4280 |
|
4281 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:48
|
4282 |
msgid ""
|
4283 |
"PR-Gateway offers a paid online distribution service for submitting press "
|
4284 |
"releases, articles and social media news to more than 250 news sites, "
|
4297 |
"auf ausgewählten kostenfreien und kostenpflichtigen Portale zu "
|
4298 |
"veröffentlichen."
|
4299 |
|
4300 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:49
|
4301 |
msgid "Register here to open your PR-Gateway account."
|
4302 |
msgstr "Registriere hier Deinen PR-Gateway Account, kostenlos und unverbindlich."
|
4303 |
|
4304 |
+
#: ../../plugins/blog2social-v-4-9/views/prg/html/header.phtml:66
|
4305 |
msgid "Logout"
|
4306 |
msgstr "Abmelden"
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: auto post, auto publish, social media scheduling, social media calendar, s
|
|
4 |
Donate link: http://www.blog2social.com
|
5 |
Requires at least: 4.2.2
|
6 |
Tested up to: 4.9.5
|
7 |
-
Stable tag: 4.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -25,6 +25,8 @@ Auto-post, schedule and share blog posts and contents on social media, pages & g
|
|
25 |
* **Keep track** of your social media posts with the posting dashboard
|
26 |
* **Re-share** old posts
|
27 |
* **Automatically generate Hashtags** from your WP tags
|
|
|
|
|
28 |
|
29 |
|
30 |
= Blog2Social PREMIUM =
|
@@ -49,7 +51,7 @@ Blog2Social Premium includes all features of the free version and awesome additi
|
|
49 |
* **Reporting** View all shared and scheduled social media posts for each blog post, follow the links on your dashboard to view the shared posts on your social media timelines, and keep track of your scheduled posts with the Social Media Calendar.
|
50 |
* **Top up and activate multiple users** per license on one or multiple WordPress blogs.
|
51 |
* **Top up and activate multiple accounts** and **groups** per network and user
|
52 |
-
|
53 |
|
54 |
|
55 |
With Blog2Social you can choose between two general options for sharing your content - posts, pages or custom post types - on social media: **Social Media Auto-Posting** or **Custom Sharing and Scheduling**.
|
@@ -82,6 +84,7 @@ With Blog2Social you can choose between two general options for sharing your con
|
|
82 |
|
83 |
* LinkedIn - auto-post on your LinkedIn profile and cross-post to LinkedIn company and focus pages. Auto-submit your attached post with image and link. Optionally, add individual comments with #hashtags.
|
84 |
* XING – auto-post on your XING profile, cross-post on XING company pages and groups. Auto-submit the link to your blog post. Auto-submit a post excerpt oo your company pages’ updates and the complete blog post to groups. Optionally tailor your posts.
|
|
|
85 |
|
86 |
**Image Networks**
|
87 |
|
@@ -299,6 +302,8 @@ We use the official authentification oAUTH methods to third-party applications p
|
|
299 |
9. Adjust the best times to schedule in the best time scheduler.
|
300 |
|
301 |
== Changelog ==
|
|
|
|
|
302 |
= 4.8.3 =
|
303 |
Bugfix: compatible with custom backend templates and modal scripts
|
304 |
= 4.8.2 =
|
@@ -367,6 +372,8 @@ Bug Fix: update method
|
|
367 |
Re-engineered Post dashboard, new one-page preview features: WYSIWYG editors, simplified network selection, new scheduler features: best-times-scheduler, my-times-scheduler, recurring scheduling, multiple accounts per profile (applies to FREE and PREMIUM)
|
368 |
|
369 |
== Upgrade Notice ==
|
|
|
|
|
370 |
= 4.8.3 =
|
371 |
Bugfix: compatible with custom backend templates and modal scripts
|
372 |
= 4.8.2 =
|
4 |
Donate link: http://www.blog2social.com
|
5 |
Requires at least: 4.2.2
|
6 |
Tested up to: 4.9.5
|
7 |
+
Stable tag: 4.9.0
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
25 |
* **Keep track** of your social media posts with the posting dashboard
|
26 |
* **Re-share** old posts
|
27 |
* **Automatically generate Hashtags** from your WP tags
|
28 |
+
* **Use the integrated Bitly shortener** to track the performance of your links.
|
29 |
+
|
30 |
|
31 |
|
32 |
= Blog2Social PREMIUM =
|
51 |
* **Reporting** View all shared and scheduled social media posts for each blog post, follow the links on your dashboard to view the shared posts on your social media timelines, and keep track of your scheduled posts with the Social Media Calendar.
|
52 |
* **Top up and activate multiple users** per license on one or multiple WordPress blogs.
|
53 |
* **Top up and activate multiple accounts** and **groups** per network and user
|
54 |
+
* **Connect your Google My Business account** to Blog2Social to easily share your blog posts on your Google My Business listing.
|
55 |
|
56 |
|
57 |
With Blog2Social you can choose between two general options for sharing your content - posts, pages or custom post types - on social media: **Social Media Auto-Posting** or **Custom Sharing and Scheduling**.
|
84 |
|
85 |
* LinkedIn - auto-post on your LinkedIn profile and cross-post to LinkedIn company and focus pages. Auto-submit your attached post with image and link. Optionally, add individual comments with #hashtags.
|
86 |
* XING – auto-post on your XING profile, cross-post on XING company pages and groups. Auto-submit the link to your blog post. Auto-submit a post excerpt oo your company pages’ updates and the complete blog post to groups. Optionally tailor your posts.
|
87 |
+
* Google My Business – automatically schedule, share and auto-post your posts as Google posts on your Google My Business listing. Auto-submit your post with image and link. Optionally tailor your post excerpt for your Google Post.
|
88 |
|
89 |
**Image Networks**
|
90 |
|
302 |
9. Adjust the best times to schedule in the best time scheduler.
|
303 |
|
304 |
== Changelog ==
|
305 |
+
= 4.9.0 =
|
306 |
+
Usability Optimization, shortener bitly, new network google my business
|
307 |
= 4.8.3 =
|
308 |
Bugfix: compatible with custom backend templates and modal scripts
|
309 |
= 4.8.2 =
|
372 |
Re-engineered Post dashboard, new one-page preview features: WYSIWYG editors, simplified network selection, new scheduler features: best-times-scheduler, my-times-scheduler, recurring scheduling, multiple accounts per profile (applies to FREE and PREMIUM)
|
373 |
|
374 |
== Upgrade Notice ==
|
375 |
+
= 4.9.0 =
|
376 |
+
Usability Optimization, shortener bitly, new network google my business
|
377 |
= 4.8.3 =
|
378 |
Bugfix: compatible with custom backend templates and modal scripts
|
379 |
= 4.8.2 =
|
views/b2s/html/footer.phtml
CHANGED
@@ -269,15 +269,15 @@
|
|
269 |
</div>
|
270 |
</div>
|
271 |
|
272 |
-
<div class="modal fade" id="
|
273 |
<div class="modal-dialog">
|
274 |
<div class="modal-content">
|
275 |
<div class="modal-header">
|
276 |
-
<button type="button" class="b2s-modal-close close" data-modal-name="#
|
277 |
-
<h4 class="modal-title"><?php _e('
|
278 |
</div>
|
279 |
<div class="modal-body">
|
280 |
-
<?php _e('
|
281 |
<br>
|
282 |
</div>
|
283 |
</div>
|
269 |
</div>
|
270 |
</div>
|
271 |
|
272 |
+
<div class="modal fade" id="b2sInfoUrlShortenerModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoUrlShortenerModal" aria-hidden="true" data-backdrop="false">
|
273 |
<div class="modal-dialog">
|
274 |
<div class="modal-content">
|
275 |
<div class="modal-header">
|
276 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoUrlShortenerModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
277 |
+
<h4 class="modal-title"><?php _e('Bit.ly integration (URL Shortening)', 'blog2social') ?></h4>
|
278 |
</div>
|
279 |
<div class="modal-body">
|
280 |
+
<?php _e('You can use Bit.ly links to shorten the URL of your links and to track the performance of your links across all social media networks. Activate Bit.ly in the Blog2Social settings and link it to your Bit.ly account. Your social media posts will then be shared with your Bit.ly links and you can monitor the success of your posts in your Bit.ly account.', 'blog2social') ?>
|
281 |
<br>
|
282 |
</div>
|
283 |
</div>
|
views/b2s/network.php
CHANGED
@@ -135,6 +135,29 @@ $networkData = $networkItem->getData();
|
|
135 |
</div>
|
136 |
</div>
|
137 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
<div class="modal fade" id="b2s-network-delete-auth" tabindex="-1" role="dialog" aria-labelledby="b2s-network-delete-auth" aria-hidden="true" data-backdrop="false">
|
139 |
<div class="modal-dialog" role="document">
|
140 |
<div class="modal-content">
|
@@ -199,4 +222,4 @@ $networkData = $networkItem->getData();
|
|
199 |
<input type="hidden" id="b2s-redirect-url-sched-post" value="<?php echo $b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-sched'; ?>"/>
|
200 |
|
201 |
|
202 |
-
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/partials/network-tos-modal.php')
|
135 |
</div>
|
136 |
</div>
|
137 |
</div>
|
138 |
+
|
139 |
+
<div class="modal fade" id="b2sInfoNetwork18" tabindex="-1" role="dialog" aria-labelledby="b2sInfoNetwork18" aria-hidden="true" data-backdrop="false">
|
140 |
+
<div class="modal-dialog" role="document">
|
141 |
+
<div class="modal-content">
|
142 |
+
<div class="modal-header">
|
143 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoNetwork18" aria-label="Close"><span aria-hidden="true">×</span></button>
|
144 |
+
<h4 class="modal-title"><?php _e('Google My Business', 'blog2social') ?></h4>
|
145 |
+
</div>
|
146 |
+
<div class="modal-body">
|
147 |
+
<?php _e('Blog2Social uses the official Google My Business API to share your content on your business listing. You can connect Google My Business listings with up to nine different locations to Blog2Social and you can choose which location you want to share your content on.', 'blog2social'); ?>
|
148 |
+
<br>
|
149 |
+
<br>
|
150 |
+
<?php _e('Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings.', 'blog2social'); ?>
|
151 |
+
<br>
|
152 |
+
<br>
|
153 |
+
<a href="https://developers.google.com/my-business/content/posts-data#faqs" target="_blank"><?php _e('Learn more', 'blog2social'); ?></a>
|
154 |
+
</div>
|
155 |
+
</div>
|
156 |
+
</div>
|
157 |
+
</div>
|
158 |
+
|
159 |
+
|
160 |
+
|
161 |
<div class="modal fade" id="b2s-network-delete-auth" tabindex="-1" role="dialog" aria-labelledby="b2s-network-delete-auth" aria-hidden="true" data-backdrop="false">
|
162 |
<div class="modal-dialog" role="document">
|
163 |
<div class="modal-content">
|
222 |
<input type="hidden" id="b2s-redirect-url-sched-post" value="<?php echo $b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-sched'; ?>"/>
|
223 |
|
224 |
|
225 |
+
<?php require_once (B2S_PLUGIN_DIR . 'views/b2s/partials/network-tos-modal.php'); ?>
|
views/b2s/settings.php
CHANGED
@@ -195,6 +195,7 @@ $settingsItem = new B2S_Settings_Item();
|
|
195 |
<input type="hidden" id="b2s_wp_media_headline" value="<?php _e('Select or upload an image from media gallery', 'blog2social') ?>">
|
196 |
<input type="hidden" id="b2s_wp_media_btn" value="<?php _e('Use image', 'blog2social') ?>">
|
197 |
<input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION ?>">
|
|
|
198 |
|
199 |
|
200 |
<div class="modal fade" id="b2sInfoAllowShortcodeModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoAllowShortcodeModal" aria-hidden="true" data-backdrop="false">
|
195 |
<input type="hidden" id="b2s_wp_media_headline" value="<?php _e('Select or upload an image from media gallery', 'blog2social') ?>">
|
196 |
<input type="hidden" id="b2s_wp_media_btn" value="<?php _e('Use image', 'blog2social') ?>">
|
197 |
<input type="hidden" id="b2s_user_version" value="<?php echo B2S_PLUGIN_USER_VERSION ?>">
|
198 |
+
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
199 |
|
200 |
|
201 |
<div class="modal fade" id="b2sInfoAllowShortcodeModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoAllowShortcodeModal" aria-hidden="true" data-backdrop="false">
|