Version Description
Instagram Business Solution & Usability Optimization
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.7.0 |
Comparing to | |
See all releases |
Code changes from version 6.6.4 to 6.7.0
- assets/css/b2s/network.css +19 -0
- assets/images/settings/like-icons-4.png +0 -0
- assets/js/b2s/calendar.js +1 -1
- assets/js/b2s/network.js +25 -3
- assets/js/b2s/post.js +1 -0
- assets/js/b2s/settings.js +0 -3
- assets/js/b2s/ship.js +11 -0
- blog2social.php +2 -2
- includes/Ajax/Get.php +2 -1
- includes/Ajax/Post.php +1 -1
- includes/B2S/AutoPost/Item.php +1 -1
- includes/B2S/Network/Item.php +121 -61
- includes/B2S/Post/Item.php +4 -2
- includes/B2S/Post/Tools.php +12 -0
- includes/B2S/RePost/Save.php +1 -1
- includes/B2S/Settings/Item.php +4 -4
- includes/B2S/Ship/Item.php +7 -7
- includes/B2S/Ship/Navbar.php +1 -1
- includes/B2S/Ship/Portale.php +7 -2
- includes/B2S/Support/Check/System.php +1 -1
- includes/Loader.php +23 -22
- includes/Tools.php +9 -0
- includes/Util.php +4 -4
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +640 -474
- languages/blog2social.pot +575 -442
- readme.txt +12 -8
- views/b2s/html/footer.php +0 -14
- views/b2s/html/header.php +1 -1
- views/b2s/html/post.navbar.php +3 -2
- views/b2s/html/sidebar.php +1 -1
- views/b2s/network.php +67 -1
- views/b2s/ship.php +19 -0
assets/css/b2s/network.css
CHANGED
@@ -868,4 +868,23 @@ ul.b2s-network-item-auth-list li:last-child{
|
|
868 |
|
869 |
.b2s-auth-network-6-extension-download-area {
|
870 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
871 |
}
|
868 |
|
869 |
.b2s-auth-network-6-extension-download-area {
|
870 |
text-align: center;
|
871 |
+
}
|
872 |
+
|
873 |
+
.b2s-edit-template-preview-title-4 {
|
874 |
+
font-size: 16px;
|
875 |
+
padding-top: 10px;
|
876 |
+
}
|
877 |
+
|
878 |
+
.b2s-edit-template-preview-content-4 {
|
879 |
+
padding-top: 20px;
|
880 |
+
}
|
881 |
+
|
882 |
+
.b2s-edit-template-preview-link-4 {
|
883 |
+
padding-top: 10px;
|
884 |
+
padding-bottom: 10px;
|
885 |
+
text-decoration: underline;
|
886 |
+
}
|
887 |
+
|
888 |
+
.b2s-edit-template-preview-like-icons-4 {
|
889 |
+
float: right;
|
890 |
}
|
assets/images/settings/like-icons-4.png
ADDED
Binary file
|
assets/js/b2s/calendar.js
CHANGED
@@ -495,7 +495,7 @@ function b2sSortFormSubmit() {
|
|
495 |
return false;
|
496 |
}
|
497 |
//Overlay second modal
|
498 |
-
jQuery('#b2s-show-post-
|
499 |
jQuery('body').addClass('modal-open');
|
500 |
});
|
501 |
|
495 |
return false;
|
496 |
}
|
497 |
//Overlay second modal
|
498 |
+
jQuery('#b2s-show-post-all-modal').on('shown.bs.modal', function () {
|
499 |
jQuery('body').addClass('modal-open');
|
500 |
});
|
501 |
|
assets/js/b2s/network.js
CHANGED
@@ -702,6 +702,14 @@ function loginSuccess(networkId, networkType, displayName, networkAuthId, mandan
|
|
702 |
if (networkId == 4) {
|
703 |
networkTypeName = 'Blog';
|
704 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
705 |
|
706 |
//NEW
|
707 |
if (jQuery('.b2s-network-item-auth-list-li[data-network-auth-id="' + networkAuthId + '"]').length == 0) {
|
@@ -930,7 +938,7 @@ jQuery(window).on("load", function () {
|
|
930 |
jQuery('.b2s-edit-template-post-format[data-network-type=' + jQuery(this).attr('data-network-type') + ']').val('0');
|
931 |
jQuery('.b2s-edit-template-image-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
932 |
jQuery('.b2s-edit-template-link-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
933 |
-
if(jQuery('#b2s-edit-template-network-id').val() == 1) {
|
934 |
jQuery('.b2s-edit-template-enable-link-area[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
935 |
}
|
936 |
});
|
@@ -941,7 +949,7 @@ jQuery(window).on("load", function () {
|
|
941 |
jQuery('.b2s-edit-template-post-format[data-network-type=' + jQuery(this).attr('data-network-type') + ']').val('1');
|
942 |
jQuery('.b2s-edit-template-link-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
943 |
jQuery('.b2s-edit-template-image-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
944 |
-
if(jQuery('#b2s-edit-template-network-id').val() == 1) {
|
945 |
jQuery('.b2s-edit-template-enable-link-area[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
946 |
}
|
947 |
});
|
@@ -1154,7 +1162,7 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
|
1154 |
|
1155 |
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1156 |
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1157 |
-
if (jQuery('#b2s-edit-template-network-id').val() == 12 || jQuery('#b2s-edit-template-network-id').val() == 1) {
|
1158 |
if(jQuery('.b2s-edit-template-enable-link[data-network-type="' + networkType + '"]').is(':checked')) {
|
1159 |
template_data[networkType]['addLink'] = true;
|
1160 |
} else {
|
@@ -1378,6 +1386,9 @@ jQuery(document).on('click', '.b2sInfoContentBtn', function () {
|
|
1378 |
jQuery(document).on('click', '.b2sInfoCharacterLimitBtn', function () {
|
1379 |
jQuery('#b2sInfoCharacterLimit').modal('show');
|
1380 |
});
|
|
|
|
|
|
|
1381 |
|
1382 |
jQuery(document).on('click', '.b2s-network-auth-update-btn[data-auth-method="client"]', function () {
|
1383 |
jQuery('#b2s-auth-network-6-auth-id').val(jQuery(this).attr('data-network-auth-id'));
|
@@ -1697,6 +1708,17 @@ jQuery(document).on('click', '.b2s-network-add-instagram-info-btn', function() {
|
|
1697 |
return false;
|
1698 |
});
|
1699 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1700 |
function generateExamplePost(template, content_range, exerpt_range) {
|
1701 |
if(jQuery('#b2s_use_post').val() == 'true') {
|
1702 |
var content = '';
|
702 |
if (networkId == 4) {
|
703 |
networkTypeName = 'Blog';
|
704 |
}
|
705 |
+
if(networkId == 12) {
|
706 |
+
if(networkType == 0) {
|
707 |
+
networkTypeName = 'Personal';
|
708 |
+
}
|
709 |
+
if(networkType == 1) {
|
710 |
+
networkTypeName = 'Business';
|
711 |
+
}
|
712 |
+
}
|
713 |
|
714 |
//NEW
|
715 |
if (jQuery('.b2s-network-item-auth-list-li[data-network-auth-id="' + networkAuthId + '"]').length == 0) {
|
938 |
jQuery('.b2s-edit-template-post-format[data-network-type=' + jQuery(this).attr('data-network-type') + ']').val('0');
|
939 |
jQuery('.b2s-edit-template-image-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
940 |
jQuery('.b2s-edit-template-link-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
941 |
+
if(jQuery('#b2s-edit-template-network-id').val() == 1 || jQuery('#b2s-edit-template-network-id').val() == 2) {
|
942 |
jQuery('.b2s-edit-template-enable-link-area[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
943 |
}
|
944 |
});
|
949 |
jQuery('.b2s-edit-template-post-format[data-network-type=' + jQuery(this).attr('data-network-type') + ']').val('1');
|
950 |
jQuery('.b2s-edit-template-link-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').hide();
|
951 |
jQuery('.b2s-edit-template-image-preview[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
952 |
+
if(jQuery('#b2s-edit-template-network-id').val() == 1 || jQuery('#b2s-edit-template-network-id').val() == 2) {
|
953 |
jQuery('.b2s-edit-template-enable-link-area[data-network-type=' + jQuery(this).attr('data-network-type') + ']').show();
|
954 |
}
|
955 |
});
|
1162 |
|
1163 |
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1164 |
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1165 |
+
if (jQuery('#b2s-edit-template-network-id').val() == 12 || jQuery('#b2s-edit-template-network-id').val() == 1 || jQuery('#b2s-edit-template-network-id').val() == 2) {
|
1166 |
if(jQuery('.b2s-edit-template-enable-link[data-network-type="' + networkType + '"]').is(':checked')) {
|
1167 |
template_data[networkType]['addLink'] = true;
|
1168 |
} else {
|
1386 |
jQuery(document).on('click', '.b2sInfoCharacterLimitBtn', function () {
|
1387 |
jQuery('#b2sInfoCharacterLimit').modal('show');
|
1388 |
});
|
1389 |
+
jQuery(document).on('click', '.b2s-network-addon-info-btn', function () {
|
1390 |
+
jQuery('#b2sNetworkAddonInfo').modal('show');
|
1391 |
+
});
|
1392 |
|
1393 |
jQuery(document).on('click', '.b2s-network-auth-update-btn[data-auth-method="client"]', function () {
|
1394 |
jQuery('#b2s-auth-network-6-auth-id').val(jQuery(this).attr('data-network-auth-id'));
|
1708 |
return false;
|
1709 |
});
|
1710 |
|
1711 |
+
jQuery(document).on('click', '.b2s-network-add-instagram-business-info-btn', function() {
|
1712 |
+
jQuery('#b2sNetworkAddInstagramBusinessInfoModal').modal('show');
|
1713 |
+
var b2sAuthUrl = jQuery(this).data('b2s-auth-url');
|
1714 |
+
jQuery(document).on('click', '.b2s-add-network-continue-btn', function() {
|
1715 |
+
jQuery('#b2sNetworkAddInstagramBusinessInfoModal').modal('hide');
|
1716 |
+
wop(b2sAuthUrl + '&choose=page', 'Blog2Social Network');
|
1717 |
+
return false;
|
1718 |
+
});
|
1719 |
+
return false;
|
1720 |
+
});
|
1721 |
+
|
1722 |
function generateExamplePost(template, content_range, exerpt_range) {
|
1723 |
if(jQuery('#b2s_use_post').val() == 'true') {
|
1724 |
var content = '';
|
assets/js/b2s/post.js
CHANGED
@@ -98,6 +98,7 @@ jQuery(document).on('click', '.b2sDetailsPublishPostBtn', function () {
|
|
98 |
'postId': postId,
|
99 |
'type': jQuery('#b2sType').val(),
|
100 |
'showByDate': showByDate,
|
|
|
101 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
102 |
},
|
103 |
error: function () {
|
98 |
'postId': postId,
|
99 |
'type': jQuery('#b2sType').val(),
|
100 |
'showByDate': showByDate,
|
101 |
+
'sharedByUser': jQuery('#b2sSortPostSharedBy').val(),
|
102 |
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
103 |
},
|
104 |
error: function () {
|
assets/js/b2s/settings.js
CHANGED
@@ -447,9 +447,6 @@ function loginSuccessShortener(providerId, displayName) {
|
|
447 |
jQuery(document).on('click', '.b2sInfoTimeZoneModalBtn', function () {
|
448 |
jQuery('#b2sInfoTimeZoneModal').modal('show');
|
449 |
});
|
450 |
-
jQuery(document).on('click', '.b2sInfoUrlShortenerModalBtn', function () {
|
451 |
-
jQuery('#b2sInfoUrlShortenerModal').modal('show');
|
452 |
-
});
|
453 |
jQuery(document).on('click', '.b2sInfoAllowShortcodeModalBtn', function () {
|
454 |
jQuery('#b2sInfoAllowShortcodeModal').modal('show');
|
455 |
});
|
447 |
jQuery(document).on('click', '.b2sInfoTimeZoneModalBtn', function () {
|
448 |
jQuery('#b2sInfoTimeZoneModal').modal('show');
|
449 |
});
|
|
|
|
|
|
|
450 |
jQuery(document).on('click', '.b2sInfoAllowShortcodeModalBtn', function () {
|
451 |
jQuery('#b2sInfoAllowShortcodeModal').modal('show');
|
452 |
});
|
assets/js/b2s/ship.js
CHANGED
@@ -4062,6 +4062,17 @@ jQuery(document).on('click', '.b2s-network-add-instagram-info-btn', function() {
|
|
4062 |
return false;
|
4063 |
});
|
4064 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4065 |
function openPostFormat(networkId, networkType, networkAuthId, wpType, showModal) {
|
4066 |
if (jQuery('#user_version').val() >= 1) {
|
4067 |
jQuery('.b2s-user-network-settings-post-format-area').hide();
|
4062 |
return false;
|
4063 |
});
|
4064 |
|
4065 |
+
jQuery(document).on('click', '.b2s-network-add-instagram-business-info-btn', function() {
|
4066 |
+
jQuery('#b2sNetworkAddInstagramBusinessInfoModal').modal('show');
|
4067 |
+
var b2sAuthUrl = jQuery(this).data('b2s-auth-url');
|
4068 |
+
jQuery(document).on('click', '.b2s-add-network-continue-btn', function() {
|
4069 |
+
jQuery('#b2sNetworkAddInstagramBusinessInfoModal').modal('hide');
|
4070 |
+
wop(b2sAuthUrl + '&choose=page', 'Blog2Social Network');
|
4071 |
+
return false;
|
4072 |
+
});
|
4073 |
+
return false;
|
4074 |
+
});
|
4075 |
+
|
4076 |
function openPostFormat(networkId, networkType, networkAuthId, wpType, showModal) {
|
4077 |
if (jQuery('#user_version').val() >= 1) {
|
4078 |
jQuery('.b2s-user-network-settings-post-format-area').hide();
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 6.
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
-
define('B2S_PLUGIN_VERSION', '
|
15 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
16 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
17 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
+
* Version: 6.7.0
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '670');
|
15 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
16 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
17 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
includes/Ajax/Get.php
CHANGED
@@ -267,7 +267,8 @@ class Ajax_Get {
|
|
267 |
$postData = new B2S_Post_Item();
|
268 |
$showByDate = isset($_POST['showByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['showByDate'])) ? trim($_POST['showByDate']) : "") : "";
|
269 |
$type = (isset($_POST['type']) && in_array($_POST['type'], array('publish', 'notice'))) ? $_POST['type'] : 'publish';
|
270 |
-
$
|
|
|
271 |
if ($result !== false) {
|
272 |
echo json_encode(array('result' => true, 'postId' => (int) $_POST['postId'], 'content' => $result));
|
273 |
wp_die();
|
267 |
$postData = new B2S_Post_Item();
|
268 |
$showByDate = isset($_POST['showByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['showByDate'])) ? trim($_POST['showByDate']) : "") : "";
|
269 |
$type = (isset($_POST['type']) && in_array($_POST['type'], array('publish', 'notice'))) ? $_POST['type'] : 'publish';
|
270 |
+
$sharedByUser = (isset($_POST['sharedByUser']) && (int) $_POST['sharedByUser'] > 0) ? (int) $_POST['sharedByUser'] : 0;
|
271 |
+
$result = $postData->getPublishPostDataHtml((int) $_POST['postId'], $type, $showByDate, $sharedByUser);
|
272 |
if ($result !== false) {
|
273 |
echo json_encode(array('result' => true, 'postId' => (int) $_POST['postId'], 'content' => $result));
|
274 |
wp_die();
|
includes/Ajax/Post.php
CHANGED
@@ -2003,7 +2003,7 @@ class Ajax_Post {
|
|
2003 |
)
|
2004 |
);
|
2005 |
}
|
2006 |
-
if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1) {
|
2007 |
$new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
|
2008 |
}
|
2009 |
if ((int) $_POST['networkId'] == 12) {
|
2003 |
)
|
2004 |
);
|
2005 |
}
|
2006 |
+
if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1 || (int) $_POST['networkId'] == 2) {
|
2007 |
$new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
|
2008 |
}
|
2009 |
if ((int) $_POST['networkId'] == 12) {
|
includes/B2S/AutoPost/Item.php
CHANGED
@@ -36,7 +36,7 @@ class B2S_AutoPost_Item {
|
|
36 |
|
37 |
$content = '';
|
38 |
$content .='<div class="panel panel-group b2s-auto-post-own-general-warning"><div class="panel-body">';
|
39 |
-
$content .='<span class="glyphicon glyphicon-exclamation-sign glyphicon-warning"></span> ' .
|
40 |
$content .='</div>';
|
41 |
$content .='</div>';
|
42 |
$content .='<h4 class="b2s-auto-post-header">' . esc_html__('Autoposter', 'blog2social') . '</h4><a target="_blank" href="'.B2S_Tools::getSupportLink('auto_post_manuell').'">Info</a>';
|
36 |
|
37 |
$content = '';
|
38 |
$content .='<div class="panel panel-group b2s-auto-post-own-general-warning"><div class="panel-body">';
|
39 |
+
$content .='<span class="glyphicon glyphicon-exclamation-sign glyphicon-warning"></span> ' . sprintf(__('Posts for Facebook Profiles will be shown on your "Site & Blog Content" navigation bar in the "Instant Sharing" tab. To share the post on your Facebook Profile just click on the "Share" button next to your post. More information in the <a href="%s" target="_blank">Instant Sharing guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('facebook_instant_sharing'));
|
40 |
$content .='</div>';
|
41 |
$content .='</div>';
|
42 |
$content .='<h4 class="b2s-auto-post-header">' . esc_html__('Autoposter', 'blog2social') . '</h4><a target="_blank" href="'.B2S_Tools::getSupportLink('auto_post_manuell').'">Info</a>';
|
includes/B2S/Network/Item.php
CHANGED
@@ -16,6 +16,7 @@ class B2S_Network_Item {
|
|
16 |
private $userSchedData; // >5.1.0
|
17 |
private $userSchedDataOld; // <5.1.0
|
18 |
private $previewImage;
|
|
|
19 |
|
20 |
public function __construct($load = true) {
|
21 |
$this->mandantenId = array(-1, 0); //All,Default
|
@@ -33,6 +34,7 @@ class B2S_Network_Item {
|
|
33 |
$this->oAuthPortal = unserialize(B2S_PLUGIN_NETWORK_OAUTH);
|
34 |
$this->bestTimeInfo = unserialize(B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO);
|
35 |
$this->modifyBoardAndGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP);
|
|
|
36 |
$this->networkKindName = unserialize(B2S_PLUGIN_NETWORK_KIND);
|
37 |
$this->lang = substr(B2S_LANGUAGE, 0, 2);
|
38 |
}
|
@@ -40,10 +42,11 @@ class B2S_Network_Item {
|
|
40 |
}
|
41 |
|
42 |
public function getData() {
|
43 |
-
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getUserAuth', 'view_mode' => 'all', 'auth_count' => true, 'token' => B2S_PLUGIN_TOKEN, 'version' => B2S_PLUGIN_VERSION)));
|
44 |
return array('mandanten' => isset($result->mandanten) ? $result->mandanten : '',
|
45 |
'auth' => isset($result->auth) ? $result->auth : '',
|
46 |
'auth_count' => isset($result->auth_count) ? $result->auth_count : false,
|
|
|
47 |
'portale' => isset($result->portale) ? $result->portale : '');
|
48 |
}
|
49 |
|
@@ -73,9 +76,9 @@ class B2S_Network_Item {
|
|
73 |
return $select;
|
74 |
}
|
75 |
|
76 |
-
public function getPortale($mandanten, $auth, $portale, $auth_count) {
|
77 |
$convertAuthData = $this->convertAuthData($auth);
|
78 |
-
|
79 |
foreach ($mandanten as $k => $v) {
|
80 |
$this->mandantenId[] = $k;
|
81 |
}
|
@@ -84,6 +87,7 @@ class B2S_Network_Item {
|
|
84 |
$html .= '<form id = "b2sSaveTimeSettings" method = "post">';
|
85 |
$html .= '<input id = "action" type = "hidden" value = "b2s_save_user_time_settings" name = "action">';
|
86 |
|
|
|
87 |
foreach ($this->mandantenId as $k => $mandant) {
|
88 |
$html .= $this->getItemHtml($mandant, $mandanten, $convertAuthData, $portale, $auth_count);
|
89 |
}
|
@@ -93,7 +97,7 @@ class B2S_Network_Item {
|
|
93 |
}
|
94 |
|
95 |
public function getItemHtml($mandant, $mandantenData, $convertAuthData, $portale, $auth_count) {
|
96 |
-
|
97 |
$html = '<ul class="list-group b2s-network-details-container-list" data-mandant-id="' . esc_attr($mandant) . '" style="display:' . ($mandant > 0 ? "none" : "block" ) . '">';
|
98 |
foreach ($portale as $k => $portal) {
|
99 |
if (!isset($convertAuthData[$mandant][$portal->id]) || empty($convertAuthData[$mandant][$portal->id])) {
|
@@ -101,10 +105,27 @@ class B2S_Network_Item {
|
|
101 |
}
|
102 |
$maxNetworkAccount = ($auth_count !== false && is_array($auth_count)) ? ((isset($auth_count[$portal->id])) ? $auth_count[$portal->id] : $auth_count[0]) : false;
|
103 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
104 |
if ($mandant == -1) { //all
|
105 |
-
$html .= $this->getPortaleHtml($portal->id, $portal->name, $mandant, $mandantenData, $convertAuthData, $maxNetworkAccount, true);
|
106 |
} else {
|
107 |
-
$html .= $this->getPortaleHtml($portal->id, $portal->name, $mandant, $mandantenData, $convertAuthData[$mandant][$portal->id], $maxNetworkAccount);
|
108 |
}
|
109 |
}
|
110 |
$html .= '</ul>';
|
@@ -112,7 +133,7 @@ class B2S_Network_Item {
|
|
112 |
return $html;
|
113 |
}
|
114 |
|
115 |
-
private function getPortaleHtml($networkId, $networkName, $mandantId, $mandantenData, $networkData, $maxNetworkAccount = false, $showAllAuths = false) {
|
116 |
$containerMandantId = $mandantId;
|
117 |
$mandantId = ($mandantId == -1) ? 0 : $mandantId;
|
118 |
$sprache = substr(B2S_LANGUAGE, 0, 2);
|
@@ -146,7 +167,7 @@ class B2S_Network_Item {
|
|
146 |
$b2sAuthUrl = $this->authurl . '&portal_id=' . $networkId . '&transfer=' . (in_array($networkId, $this->oAuthPortal) ? 'oauth' : 'form' ) . '&mandant_id=' . $mandantId . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
147 |
|
148 |
if (in_array($networkId, $this->allowProfil)) {
|
149 |
-
$name = ($networkId == 4) ? __('Blog', 'blog2social') : __('Profile', 'blog2social');
|
150 |
if($networkId == 6){
|
151 |
$html .= '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn" data-auth-method="client" data-network-mandant-id="' . esc_attr($mandantId) . '">+ ' . esc_html__('Profile', 'blog2social') . '</a>';
|
152 |
} else {
|
@@ -160,7 +181,12 @@ class B2S_Network_Item {
|
|
160 |
}
|
161 |
}
|
162 |
if (in_array($networkId, $this->allowPage)) {
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
164 |
}
|
165 |
if (in_array($networkId, $this->allowGroup)) {
|
166 |
$name = ($networkId == 11) ? __('Publication', 'blog2social') : __('Group', 'blog2social');
|
@@ -177,10 +203,13 @@ class B2S_Network_Item {
|
|
177 |
//First Line
|
178 |
$html.='<li class="b2s-network-item-auth-list-li" data-network-mandant-id="' . esc_attr($mandantId) . '" data-network-id="' . esc_attr($networkId) . '" data-view="' . esc_attr((($containerMandantId == -1) ? 'all' : 'selected')) . '">';
|
179 |
$html.='<span class="b2s-network-auth-count">' . esc_html__("Connections", "blog2social") . ' <span class="b2s-network-auth-count-current" ' . (($showAllAuths) ? 'data-network-count-trigger="true"' : '') . ' data-network-id="' . esc_attr($networkId) . '"></span>/' . esc_html($maxNetworkAccount) . '</span>';
|
|
|
|
|
|
|
180 |
$html.='<span class="pull-right b2s-sched-manager-title hidden-xs" data-network-mandant-id="' . esc_attr($mandantId) . '" data-network-id="' . esc_attr($networkId) . '">' . esc_html__("Best Time Manager", "blog2social") . ' <a href="#" class="b2s-info-btn b2s-load-settings-sched-time-default-info b2sInfoSchedTimesModalBtn">' . esc_html__('Info', 'blog2social') . '</a></span>';
|
181 |
$html.='</li>';
|
182 |
|
183 |
-
|
184 |
if ($showAllAuths) {
|
185 |
foreach ($this->mandantenId as $ka => $mandantAll) {
|
186 |
$mandantName = isset($mandantenData->{$mandantAll}) ? ($mandantenData->{$mandantAll}) : esc_html__("My profile", "blog2social");
|
@@ -223,7 +252,7 @@ class B2S_Network_Item {
|
|
223 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
224 |
$html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
|
225 |
}
|
226 |
-
$name = ($networkId == 4) ? __('Blog', 'blog2social') : __('Profile', 'blog2social');
|
227 |
$html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . esc_html($name) . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
|
228 |
|
229 |
if (!empty($mandantName)) {
|
@@ -234,22 +263,26 @@ class B2S_Network_Item {
|
|
234 |
|
235 |
$html .='<div class="pull-right">';
|
236 |
$html .= '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="0" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
237 |
-
if (!$
|
238 |
if ($v['owner_blog_user_id'] == false) {
|
239 |
-
if ($networkId
|
240 |
-
|
241 |
-
|
242 |
-
|
|
|
|
|
243 |
}
|
244 |
} else {
|
245 |
$html .= '<span class="b2s-add-padding-network-placeholder-btn pull-right"></span>';
|
246 |
}
|
247 |
-
|
248 |
-
|
249 |
-
if (
|
250 |
-
if (
|
251 |
-
|
252 |
-
|
|
|
|
|
253 |
}
|
254 |
}
|
255 |
}
|
@@ -293,7 +326,8 @@ class B2S_Network_Item {
|
|
293 |
$this->networkKindName[0] = sprintf(__('Company-Page (Employer Branding Profile, <a href="%s" target="_blank">Old Design until 2020/11/30</a>)', 'blog2social'), B2S_Tools::getSupportLink('xing_company_page_old_design'));
|
294 |
$this->networkKindName[4] = esc_html__('Company-Page (Employer Branding Profile, New Design)', 'blog2social');
|
295 |
}
|
296 |
-
$
|
|
|
297 |
|
298 |
if($networkId == 19 && (int) $v['networkKind'] == 1) {// Xing Business Pages Info
|
299 |
$html .= '<input type="hidden" value="1" id="b2sHasXingBusinessPage">';
|
@@ -306,19 +340,22 @@ class B2S_Network_Item {
|
|
306 |
$html .='</div>';
|
307 |
$html .='<div class="pull-right">';
|
308 |
$html .= '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
309 |
-
if (!$
|
310 |
-
if ($
|
311 |
-
|
312 |
-
|
313 |
-
|
|
|
|
|
314 |
}
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
|
|
322 |
}
|
323 |
}
|
324 |
}
|
@@ -369,18 +406,22 @@ class B2S_Network_Item {
|
|
369 |
$html .='</div>';
|
370 |
$html .='<div class="pull-right">';
|
371 |
$html .= '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="2" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
372 |
-
if (!$
|
373 |
-
if ($
|
374 |
-
|
375 |
-
|
376 |
-
|
|
|
|
|
377 |
}
|
378 |
-
|
379 |
-
|
380 |
-
if (
|
381 |
-
if (
|
382 |
-
|
383 |
-
|
|
|
|
|
384 |
}
|
385 |
}
|
386 |
}
|
@@ -555,6 +596,11 @@ class B2S_Network_Item {
|
|
555 |
$post_template = $options->_getOption("post_template");
|
556 |
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$networkId];
|
557 |
if (B2S_PLUGIN_USER_VERSION >= 1 && $post_template != false && isset($post_template[$networkId]) && !empty($post_template[$networkId])) {
|
|
|
|
|
|
|
|
|
|
|
558 |
$schema = $post_template[$networkId];
|
559 |
if(count($schema) < count($defaultSchema)){
|
560 |
$schema = array_merge($schema, $defaultSchema);
|
@@ -594,10 +640,13 @@ class B2S_Network_Item {
|
|
594 |
if($image_url != false && !empty($image_url)) {
|
595 |
$this->previewImage = $image_url;
|
596 |
}
|
|
|
|
|
|
|
597 |
$html .= '<input type="hidden" id="b2s_use_post" value="true">';
|
598 |
-
$html .= '<input type="hidden" id="b2s_post_content" value="'.strip_tags($
|
599 |
-
$html .= '<input type="hidden" id="b2s_post_excerpt" value="'.strip_tags($
|
600 |
-
$html .= '<input type="hidden" id="b2s_post_title" value="'.strip_tags($
|
601 |
$html .= '<input type="hidden" id="b2s_post_author" value="'.$author.'">';
|
602 |
$html .= '<input type="hidden" id="b2s_post_keywords" value="'.$tags.'">';
|
603 |
} else {
|
@@ -618,9 +667,9 @@ class B2S_Network_Item {
|
|
618 |
if (count($schema) > 1) {
|
619 |
$html .= '<div class="pull-left ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'b2s-btn-disabled' : '') . '">';
|
620 |
$html .= '<ul class="nav nav-pills">';
|
621 |
-
$html .= '<li class="active"><a href="#b2s-template-profile" class="b2s-template-profile" data-toggle="tab">' . esc_html__('Profile', 'blog2social') . '</a></li>';
|
622 |
if (isset($schema[1]) && !empty($schema[1]) && $networkId != 11) {
|
623 |
-
$html .= '<li><a href="#b2s-template-page" class="b2s-template-page" data-toggle="tab">' . esc_html__('Page', 'blog2social') . '</a></li>';
|
624 |
}
|
625 |
if (isset($schema[2]) && !empty($schema[2])) {
|
626 |
$html .= '<li><a href="#b2s-template-group" class="b2s-template-group" data-toggle="tab">' . esc_html__('Group', 'blog2social') . '</a></li>';
|
@@ -740,7 +789,7 @@ class B2S_Network_Item {
|
|
740 |
$content .= '</div>';
|
741 |
$content .= '<div class="row">';
|
742 |
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
743 |
-
if($networkId != 12 && $networkId != 1) {
|
744 |
if($networkId == 11) {
|
745 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The link will be transmitted as a canonical link, i.e. in the source code of your page, in order to refer to the original source of the content and to increase the reach from search engines like Google.', 'blog2social');
|
746 |
} else {
|
@@ -752,13 +801,17 @@ class B2S_Network_Item {
|
|
752 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The network does not support hashtags.', 'blog2social');
|
753 |
$content .= '<br>';
|
754 |
}
|
|
|
|
|
|
|
|
|
755 |
if ((int) $limit != 0) {
|
756 |
$content .= '<input type="hidden" class="b2s-edit-template-limit" value="' . $limit . '">';
|
757 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html(__('Network limit', 'blog2social') . ': ' . $limit . ' ' . __('characters', 'blog2social'));
|
758 |
}
|
759 |
$content .= '</div>';
|
760 |
$content .= '</div>';
|
761 |
-
if($networkId == 1) {
|
762 |
$content .= '<div class="row b2s-edit-template-enable-link-area" style="display:'.(($schema[$networkType]['format'] == 1) ? 'block' : 'none').'" data-network-type="' . esc_attr($networkType) . '">';
|
763 |
$content .= '<div class="col-md-12">';
|
764 |
$content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" '.((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"').' id="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"><label for="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"> ' . esc_html__('Add a link-URL to the end of my image post.', 'blog2social') . '</label>';
|
@@ -801,11 +854,13 @@ class B2S_Network_Item {
|
|
801 |
$content .= '</div>';
|
802 |
$content .= '</div>';
|
803 |
$content .= '</div>';
|
804 |
-
$
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
|
|
|
|
809 |
$content .= '<hr>';
|
810 |
$content .= '<br>';
|
811 |
} else {
|
@@ -1284,9 +1339,14 @@ class B2S_Network_Item {
|
|
1284 |
$preview .= '<div class="col-sm-8 b2s-edit-template-preview-border b2s-edit-template-preview-border-4">';
|
1285 |
$preview .= '<div class="row">';
|
1286 |
$preview .= '<div class="col-sm-12">';
|
1287 |
-
$preview .= '<
|
1288 |
-
$preview .= '<
|
1289 |
-
$preview .= '<
|
|
|
|
|
|
|
|
|
|
|
1290 |
$preview .= '</div>';
|
1291 |
$preview .= '</div>';
|
1292 |
$preview .= '</div>';
|
16 |
private $userSchedData; // >5.1.0
|
17 |
private $userSchedDataOld; // <5.1.0
|
18 |
private $previewImage;
|
19 |
+
private $addon_count;
|
20 |
|
21 |
public function __construct($load = true) {
|
22 |
$this->mandantenId = array(-1, 0); //All,Default
|
34 |
$this->oAuthPortal = unserialize(B2S_PLUGIN_NETWORK_OAUTH);
|
35 |
$this->bestTimeInfo = unserialize(B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO);
|
36 |
$this->modifyBoardAndGroup = unserialize(B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP);
|
37 |
+
$this->networkTypeName = unserialize(B2S_PLUGIN_NETWORK_TYPE);
|
38 |
$this->networkKindName = unserialize(B2S_PLUGIN_NETWORK_KIND);
|
39 |
$this->lang = substr(B2S_LANGUAGE, 0, 2);
|
40 |
}
|
42 |
}
|
43 |
|
44 |
public function getData() {
|
45 |
+
$result = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, array('action' => 'getUserAuth', 'view_mode' => 'all', 'auth_count' => true, 'addon_count' => true, 'token' => B2S_PLUGIN_TOKEN, 'version' => B2S_PLUGIN_VERSION)));
|
46 |
return array('mandanten' => isset($result->mandanten) ? $result->mandanten : '',
|
47 |
'auth' => isset($result->auth) ? $result->auth : '',
|
48 |
'auth_count' => isset($result->auth_count) ? $result->auth_count : false,
|
49 |
+
'addon_count' => isset($result->addon_count) ? $result->addon_count : false,
|
50 |
'portale' => isset($result->portale) ? $result->portale : '');
|
51 |
}
|
52 |
|
76 |
return $select;
|
77 |
}
|
78 |
|
79 |
+
public function getPortale($mandanten, $auth, $portale, $auth_count, $addon_count) {
|
80 |
$convertAuthData = $this->convertAuthData($auth);
|
81 |
+
|
82 |
foreach ($mandanten as $k => $v) {
|
83 |
$this->mandantenId[] = $k;
|
84 |
}
|
87 |
$html .= '<form id = "b2sSaveTimeSettings" method = "post">';
|
88 |
$html .= '<input id = "action" type = "hidden" value = "b2s_save_user_time_settings" name = "action">';
|
89 |
|
90 |
+
$this->addon_count = $addon_count;
|
91 |
foreach ($this->mandantenId as $k => $mandant) {
|
92 |
$html .= $this->getItemHtml($mandant, $mandanten, $convertAuthData, $portale, $auth_count);
|
93 |
}
|
97 |
}
|
98 |
|
99 |
public function getItemHtml($mandant, $mandantenData, $convertAuthData, $portale, $auth_count) {
|
100 |
+
|
101 |
$html = '<ul class="list-group b2s-network-details-container-list" data-mandant-id="' . esc_attr($mandant) . '" style="display:' . ($mandant > 0 ? "none" : "block" ) . '">';
|
102 |
foreach ($portale as $k => $portal) {
|
103 |
if (!isset($convertAuthData[$mandant][$portal->id]) || empty($convertAuthData[$mandant][$portal->id])) {
|
105 |
}
|
106 |
$maxNetworkAccount = ($auth_count !== false && is_array($auth_count)) ? ((isset($auth_count[$portal->id])) ? $auth_count[$portal->id] : $auth_count[0]) : false;
|
107 |
|
108 |
+
if(isset($this->addon_count) && is_object($this->addon_count) && isset($this->addon_count->{$portal->id}) && isset($this->addon_count->{$portal->id}->total) && (int) $this->addon_count->{$portal->id}->total > 0) {
|
109 |
+
$maxNetworkAccount = (int) $maxNetworkAccount + (int) $this->addon_count->{$portal->id}->total;
|
110 |
+
}
|
111 |
+
$addonText = false;
|
112 |
+
if(isset($this->addon_count->{$portal->id}->type) && !empty($this->addon_count->{$portal->id}->type)) {
|
113 |
+
//Create Text
|
114 |
+
$addonText = '(' . esc_html__('Available accounts', 'blog2social') . ': ' . (($auth_count !== false && is_array($auth_count)) ? ((isset($auth_count[$portal->id])) ? $auth_count[$portal->id] : $auth_count[0]) : 0);
|
115 |
+
$additionalText = array(esc_html__('additional profiles', 'blog2social'), esc_html__('additional pages', 'blog2social'), esc_html__('additional groups', 'blog2social'));
|
116 |
+
foreach ($this->addon_count->{$portal->id}->type as $type => $type_count) {
|
117 |
+
if(strlen($addonText) > 1) {
|
118 |
+
$addonText .= ' + ';
|
119 |
+
}
|
120 |
+
$addonText .= $additionalText[$type] . ': ' . $type_count;
|
121 |
+
}
|
122 |
+
$addonText .= ')';
|
123 |
+
}
|
124 |
+
|
125 |
if ($mandant == -1) { //all
|
126 |
+
$html .= $this->getPortaleHtml($portal->id, $portal->name, $mandant, $mandantenData, $convertAuthData, $maxNetworkAccount, true, $addonText);
|
127 |
} else {
|
128 |
+
$html .= $this->getPortaleHtml($portal->id, $portal->name, $mandant, $mandantenData, $convertAuthData[$mandant][$portal->id], $maxNetworkAccount, false, $addonText);
|
129 |
}
|
130 |
}
|
131 |
$html .= '</ul>';
|
133 |
return $html;
|
134 |
}
|
135 |
|
136 |
+
private function getPortaleHtml($networkId, $networkName, $mandantId, $mandantenData, $networkData, $maxNetworkAccount = false, $showAllAuths = false, $addonText = false) {
|
137 |
$containerMandantId = $mandantId;
|
138 |
$mandantId = ($mandantId == -1) ? 0 : $mandantId;
|
139 |
$sprache = substr(B2S_LANGUAGE, 0, 2);
|
167 |
$b2sAuthUrl = $this->authurl . '&portal_id=' . $networkId . '&transfer=' . (in_array($networkId, $this->oAuthPortal) ? 'oauth' : 'form' ) . '&mandant_id=' . $mandantId . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
168 |
|
169 |
if (in_array($networkId, $this->allowProfil)) {
|
170 |
+
$name = ($networkId == 4) ? __('Blog', 'blog2social') : (($networkId == 12) ? __('Personal', 'blog2social') : __('Profile', 'blog2social'));
|
171 |
if($networkId == 6){
|
172 |
$html .= '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn" data-auth-method="client" data-network-mandant-id="' . esc_attr($mandantId) . '">+ ' . esc_html__('Profile', 'blog2social') . '</a>';
|
173 |
} else {
|
181 |
}
|
182 |
}
|
183 |
if (in_array($networkId, $this->allowPage)) {
|
184 |
+
if($networkId == 12) {
|
185 |
+
$b2sSpecialAuthUrl = $this->authurl . '&portal_id=' . $networkId . '&transfer=oauth&mandant_id=' . $mandantId . '&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
186 |
+
$html .= (B2S_PLUGIN_USER_VERSION >= 1) ? '<button class="btn btn-primary btn-sm b2s-network-auth-btn b2s-network-add-instagram-business-info-btn" data-b2s-auth-url="'.$b2sSpecialAuthUrl.'">+ ' . esc_html__('Business', 'blog2social') . '</button>' : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to connect a network profile?', 'blog2social') . '" data-type="auth-network">+ ' . esc_html__('Business', 'blog2social') . ' <span class="label label-success">' . esc_html__("SMART", "blog2social") . '</a>';
|
187 |
+
} else {
|
188 |
+
$html .= (B2S_PLUGIN_USER_VERSION > 1 || (B2S_PLUGIN_USER_VERSION == 0 && $networkId == 1) || (B2S_PLUGIN_USER_VERSION == 1 && ($networkId == 1 || $networkId == 10))) ? (($networkId == 1) ? '<button class="btn btn-primary btn-sm b2s-network-auth-btn b2s-network-add-page-info-btn" data-b2s-auth-url="'.$b2sAuthUrl.'">+ ' . esc_html__('Page', 'blog2social') . '</button>' : '<button onclick="wop(\'' . $b2sAuthUrl . '&choose=page\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-auth-btn">+ ' . esc_html__('Page', 'blog2social') . '</button>') : '<a href="#" class="btn btn-primary btn-sm b2s-network-auth-btn b2s-btn-disabled b2sProFeatureModalBtn" data-title="' . esc_attr__('You want to connect a network page?', 'blog2social') . '" data-type="auth-network">+ ' . esc_html__('Page', 'blog2social') . ' <span class="label label-success">' . esc_html__("PRO", "blog2social") . '</a>';
|
189 |
+
}
|
190 |
}
|
191 |
if (in_array($networkId, $this->allowGroup)) {
|
192 |
$name = ($networkId == 11) ? __('Publication', 'blog2social') : __('Group', 'blog2social');
|
203 |
//First Line
|
204 |
$html.='<li class="b2s-network-item-auth-list-li" data-network-mandant-id="' . esc_attr($mandantId) . '" data-network-id="' . esc_attr($networkId) . '" data-view="' . esc_attr((($containerMandantId == -1) ? 'all' : 'selected')) . '">';
|
205 |
$html.='<span class="b2s-network-auth-count">' . esc_html__("Connections", "blog2social") . ' <span class="b2s-network-auth-count-current" ' . (($showAllAuths) ? 'data-network-count-trigger="true"' : '') . ' data-network-id="' . esc_attr($networkId) . '"></span>/' . esc_html($maxNetworkAccount) . '</span>';
|
206 |
+
if($addonText != false && !empty($addonText)) {
|
207 |
+
$html .= '<span> '.$addonText.'</span> <button type="button" class="btn-link b2s-network-addon-info-btn">Info</button>';
|
208 |
+
}
|
209 |
$html.='<span class="pull-right b2s-sched-manager-title hidden-xs" data-network-mandant-id="' . esc_attr($mandantId) . '" data-network-id="' . esc_attr($networkId) . '">' . esc_html__("Best Time Manager", "blog2social") . ' <a href="#" class="b2s-info-btn b2s-load-settings-sched-time-default-info b2sInfoSchedTimesModalBtn">' . esc_html__('Info', 'blog2social') . '</a></span>';
|
210 |
$html.='</li>';
|
211 |
|
212 |
+
|
213 |
if ($showAllAuths) {
|
214 |
foreach ($this->mandantenId as $ka => $mandantAll) {
|
215 |
$mandantName = isset($mandantenData->{$mandantAll}) ? ($mandantenData->{$mandantAll}) : esc_html__("My profile", "blog2social");
|
252 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
253 |
$html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
|
254 |
}
|
255 |
+
$name = ($networkId == 4) ? __('Blog', 'blog2social') : (($networkId == 12) ? __('Personal', 'blog2social') : __('Profile', 'blog2social'));
|
256 |
$html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . esc_html($name) . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
|
257 |
|
258 |
if (!empty($mandantName)) {
|
263 |
|
264 |
$html .='<div class="pull-right">';
|
265 |
$html .= '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="0" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
266 |
+
if (!$isDeprecated) {
|
267 |
if ($v['owner_blog_user_id'] == false) {
|
268 |
+
if(!$notAllow || ($notAllow && isset($this->addon_count->{$networkId}->type->{0}) && !empty($this->addon_count->{$networkId}->type->{0}))) { //only show if addon
|
269 |
+
if ($networkId != 6) {
|
270 |
+
$html .= '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=profil&update=' . $v['networkAuthId'] . (($notAllow) ? '&check=addon' : '') . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn b2s-add-padding-network-refresh pull-right" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
|
271 |
+
} else {
|
272 |
+
$html .= '<a href="#" class="b2s-network-auth-btn b2s-network-auth-update-btn b2s-add-padding-network-refresh pull-right" data-auth-method="client" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-mandant-id="' . esc_attr($mandantId) . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
|
273 |
+
}
|
274 |
}
|
275 |
} else {
|
276 |
$html .= '<span class="b2s-add-padding-network-placeholder-btn pull-right"></span>';
|
277 |
}
|
278 |
+
if(!$notAllow) {
|
279 |
+
$html .='<a href="#" class="pull-right b2s-network-auth-settings-btn b2s-add-padding-network-team pull-right" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="0" data-network-mandant-id="' . esc_attr($mandantId) . '" data-connection-owner="' . esc_attr((($v['owner_blog_user_id'] !== false) ? $v['owner_blog_user_id'] : '0')) . '"><span class="glyphicon glyphicon-cog glyphicon-grey"></span></a>';
|
280 |
+
if ($v['expiredDate'] == '0000-00-00' || $v['expiredDate'] > date('Y-m-d')) {
|
281 |
+
if (isset($this->modifyBoardAndGroup[$networkId])) {
|
282 |
+
if (in_array(0, $this->modifyBoardAndGroup[$networkId]['TYPE'])) {
|
283 |
+
$html .='<a href="#" class="pull-right b2s-modify-board-and-group-network-btn b2s-add-padding-network-edit" data-modal-title="' . esc_attr($this->modifyBoardAndGroup[$networkId]['TITLE']) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="0"><span class="glyphicon glyphicon-pencil glyphicon-grey"></span></a>';
|
284 |
+
$isEdit = true;
|
285 |
+
}
|
286 |
}
|
287 |
}
|
288 |
}
|
326 |
$this->networkKindName[0] = sprintf(__('Company-Page (Employer Branding Profile, <a href="%s" target="_blank">Old Design until 2020/11/30</a>)', 'blog2social'), B2S_Tools::getSupportLink('xing_company_page_old_design'));
|
327 |
$this->networkKindName[4] = esc_html__('Company-Page (Employer Branding Profile, New Design)', 'blog2social');
|
328 |
}
|
329 |
+
$name = ($networkId == 12) ? __('Business', 'blog2social') : __('Page', 'blog2social');
|
330 |
+
$html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . ($networkId == 19 && isset($this->networkKindName[$v['networkKind']]) ? $this->networkKindName[$v['networkKind']] : $name) . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
|
331 |
|
332 |
if($networkId == 19 && (int) $v['networkKind'] == 1) {// Xing Business Pages Info
|
333 |
$html .= '<input type="hidden" value="1" id="b2sHasXingBusinessPage">';
|
340 |
$html .='</div>';
|
341 |
$html .='<div class="pull-right">';
|
342 |
$html .= '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
343 |
+
if (!$isDeprecated) {
|
344 |
+
if(!$notAllow || ($notAllow && isset($this->addon_count->{$networkId}->type->{1}) && !empty($this->addon_count->{$networkId}->type->{1}))) { //only show if addon
|
345 |
+
if ($v['owner_blog_user_id'] == false) {
|
346 |
+
$html .= '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=page&update=' . $v['networkAuthId'] . (($notAllow) ? '&check=addon' : '') . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn b2s-add-padding-network-refresh pull-right" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
|
347 |
+
} else {
|
348 |
+
$html .= '<span class="b2s-add-padding-network-placeholder-btn pull-right"></span>';
|
349 |
+
}
|
350 |
}
|
351 |
+
if(!$notAllow) {
|
352 |
+
$html .='<a href="#" class="pull-right b2s-network-auth-settings-btn b2s-add-padding-network-team pull-right" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="1" data-network-mandant-id="' . esc_attr($mandantId) . '" data-connection-owner="' . esc_attr((($v['owner_blog_user_id'] !== false) ? $v['owner_blog_user_id'] : '0')) . '"><span class="glyphicon glyphicon-cog glyphicon-grey"></span></a>';
|
353 |
+
if ($v['expiredDate'] == '0000-00-00' || $v['expiredDate'] > date('Y-m-d')) {
|
354 |
+
if (isset($this->modifyBoardAndGroup[$networkId])) {
|
355 |
+
if (in_array(1, $this->modifyBoardAndGroup[$networkId]['TYPE'])) {
|
356 |
+
$html .='<a href="#" class="pull-right b2s-modify-board-and-group-network-btn b2s-add-padding-network-edit" data-modal-title="' . esc_attr($this->modifyBoardAndGroup[$networkId]['TITLE']) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="1"><span class="glyphicon glyphicon-pencil glyphicon-grey"></span></a>';
|
357 |
+
$isEdit = true;
|
358 |
+
}
|
359 |
}
|
360 |
}
|
361 |
}
|
406 |
$html .='</div>';
|
407 |
$html .='<div class="pull-right">';
|
408 |
$html .= '<a class="b2s-network-item-auth-list-btn-delete b2s-add-padding-network-delete pull-right" data-network-type="2" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" href="#"><span class="glyphicon glyphicon-trash glyphicon-grey"></span></a>';
|
409 |
+
if (!$isDeprecated) {
|
410 |
+
if(!$notAllow || ($notAllow && isset($this->addon_count->{$networkId}->type->{2}) && !empty($this->addon_count->{$networkId}->type->{2}))) { //only show if addon
|
411 |
+
if ($v['owner_blog_user_id'] == false) {
|
412 |
+
$html .= '<a href="#" onclick="wop(\'' . $b2sAuthUrl . '&choose=group&update=' . $v['networkAuthId'] . (($notAllow) ? '&check=addon' : '') . '\', \'Blog2Social Network\'); return false;" class="b2s-network-auth-btn b2s-network-auth-update-btn b2s-add-padding-network-refresh pull-right" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '"><span class="glyphicon glyphicon-refresh glyphicon-grey"></span></a>';
|
413 |
+
} else {
|
414 |
+
$html .= '<span class="b2s-add-padding-network-placeholder-btn pull-right"></span>';
|
415 |
+
}
|
416 |
}
|
417 |
+
if(!$notAllow) {
|
418 |
+
$html .='<a href="#" class="pull-right b2s-network-auth-settings-btn b2s-add-padding-network-team pull-right" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="2" data-network-mandant-id="' . esc_attr($mandantId) . '" data-connection-owner="' . esc_attr((($v['owner_blog_user_id'] !== false) ? $v['owner_blog_user_id'] : '0')) . '"><span class="glyphicon glyphicon-cog glyphicon-grey"></span></a>';
|
419 |
+
if ($v['expiredDate'] == '0000-00-00' || $v['expiredDate'] > date('Y-m-d')) {
|
420 |
+
if (isset($this->modifyBoardAndGroup[$networkId])) {
|
421 |
+
if (in_array(2, $this->modifyBoardAndGroup[$networkId]['TYPE'])) {
|
422 |
+
$html .='<a href="#" class="pull-right b2s-modify-board-and-group-network-btn b2s-add-padding-network-edit" data-modal-title="' . esc_attr($this->modifyBoardAndGroup[$networkId]['TITLE']) . '" data-network-auth-id="' . esc_attr($v['networkAuthId']) . '" data-network-id="' . esc_attr($networkId) . '" data-network-type="2"><span class="glyphicon glyphicon-pencil glyphicon-grey"></span></a>';
|
423 |
+
$isEdit = true;
|
424 |
+
}
|
425 |
}
|
426 |
}
|
427 |
}
|
596 |
$post_template = $options->_getOption("post_template");
|
597 |
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$networkId];
|
598 |
if (B2S_PLUGIN_USER_VERSION >= 1 && $post_template != false && isset($post_template[$networkId]) && !empty($post_template[$networkId])) {
|
599 |
+
foreach ($defaultSchema as $type => $value) {
|
600 |
+
if(!isset($post_template[$networkId][$type])) {
|
601 |
+
$post_template[$networkId][$type] = $value;
|
602 |
+
}
|
603 |
+
}
|
604 |
$schema = $post_template[$networkId];
|
605 |
if(count($schema) < count($defaultSchema)){
|
606 |
$schema = array_merge($schema, $defaultSchema);
|
640 |
if($image_url != false && !empty($image_url)) {
|
641 |
$this->previewImage = $image_url;
|
642 |
}
|
643 |
+
$post_content = (function_exists('strip_shortcodes')) ? strip_shortcodes($post[0]['post_content']) : $post[0]['post_content'];
|
644 |
+
$post_excerpt = (function_exists('strip_shortcodes')) ? strip_shortcodes($post[0]['post_excerpt']) : $post[0]['post_excerpt'];
|
645 |
+
$post_title = (function_exists('strip_shortcodes')) ? strip_shortcodes($post[0]['post_title']) : $post[0]['post_title'];
|
646 |
$html .= '<input type="hidden" id="b2s_use_post" value="true">';
|
647 |
+
$html .= '<input type="hidden" id="b2s_post_content" value="'.strip_tags($post_content).'">';
|
648 |
+
$html .= '<input type="hidden" id="b2s_post_excerpt" value="'.strip_tags($post_excerpt).'">';
|
649 |
+
$html .= '<input type="hidden" id="b2s_post_title" value="'.strip_tags($post_title).'">';
|
650 |
$html .= '<input type="hidden" id="b2s_post_author" value="'.$author.'">';
|
651 |
$html .= '<input type="hidden" id="b2s_post_keywords" value="'.$tags.'">';
|
652 |
} else {
|
667 |
if (count($schema) > 1) {
|
668 |
$html .= '<div class="pull-left ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'b2s-btn-disabled' : '') . '">';
|
669 |
$html .= '<ul class="nav nav-pills">';
|
670 |
+
$html .= '<li class="active"><a href="#b2s-template-profile" class="b2s-template-profile" data-toggle="tab">' . (($networkId == 12) ? esc_html__('Personal', 'blog2social') : esc_html__('Profile', 'blog2social')) . '</a></li>';
|
671 |
if (isset($schema[1]) && !empty($schema[1]) && $networkId != 11) {
|
672 |
+
$html .= '<li><a href="#b2s-template-page" class="b2s-template-page" data-toggle="tab">' . (($networkId == 12) ? esc_html__('Business', 'blog2social') : esc_html__('Page', 'blog2social')) . '</a></li>';
|
673 |
}
|
674 |
if (isset($schema[2]) && !empty($schema[2])) {
|
675 |
$html .= '<li><a href="#b2s-template-group" class="b2s-template-group" data-toggle="tab">' . esc_html__('Group', 'blog2social') . '</a></li>';
|
789 |
$content .= '</div>';
|
790 |
$content .= '<div class="row">';
|
791 |
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
792 |
+
if($networkId != 12 && $networkId != 2 && $networkId != 1) {
|
793 |
if($networkId == 11) {
|
794 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The link will be transmitted as a canonical link, i.e. in the source code of your page, in order to refer to the original source of the content and to increase the reach from search engines like Google.', 'blog2social');
|
795 |
} else {
|
801 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('The network does not support hashtags.', 'blog2social');
|
802 |
$content .= '<br>';
|
803 |
}
|
804 |
+
if(isset($defaultTemplate[$networkId][$networkType]['separateKeywords']) && $defaultTemplate[$networkId][$networkType]['separateKeywords'] == true) {
|
805 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html__('This social network displays the predefined hashtags as clickable tags at the end of your post.', 'blog2social');
|
806 |
+
$content .= '<br>';
|
807 |
+
}
|
808 |
if ((int) $limit != 0) {
|
809 |
$content .= '<input type="hidden" class="b2s-edit-template-limit" value="' . $limit . '">';
|
810 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html(__('Network limit', 'blog2social') . ': ' . $limit . ' ' . __('characters', 'blog2social'));
|
811 |
}
|
812 |
$content .= '</div>';
|
813 |
$content .= '</div>';
|
814 |
+
if($networkId == 1 || $networkId == 2) {
|
815 |
$content .= '<div class="row b2s-edit-template-enable-link-area" style="display:'.(($schema[$networkType]['format'] == 1) ? 'block' : 'none').'" data-network-type="' . esc_attr($networkType) . '">';
|
816 |
$content .= '<div class="col-md-12">';
|
817 |
$content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" '.((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"').' id="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"><label for="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"> ' . esc_html__('Add a link-URL to the end of my image post.', 'blog2social') . '</label>';
|
854 |
$content .= '</div>';
|
855 |
$content .= '</div>';
|
856 |
$content .= '</div>';
|
857 |
+
if(!in_array($networkId, array(4, 11, 14, 16))) { //V6.7 don't show recommended length for HTML Networks
|
858 |
+
$content .= '<div class="row">';
|
859 |
+
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
860 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html(__('recommended length', 'blog2social') . ': ' . $defaultTemplate[$networkId][$networkType]['short_text']['range_min'] . ' ' . __('characters', 'blog2social') . (((int) $limit != 0) ? '; ' . __('Network limit', 'blog2social') . ': ' . $limit . ' ' . __('characters', 'blog2social') : ''));
|
861 |
+
$content .= '</div>';
|
862 |
+
$content .= '</div>';
|
863 |
+
}
|
864 |
$content .= '<hr>';
|
865 |
$content .= '<br>';
|
866 |
} else {
|
1339 |
$preview .= '<div class="col-sm-8 b2s-edit-template-preview-border b2s-edit-template-preview-border-4">';
|
1340 |
$preview .= '<div class="row">';
|
1341 |
$preview .= '<div class="col-sm-12">';
|
1342 |
+
$preview .= '<p class="b2s-edit-template-preview-title b2s-edit-template-preview-title-4" data-network-type="' . esc_attr($networkType) . '">TITLE</p>';
|
1343 |
+
$preview .= '<p class="b2s-edit-template-preview-content b2s-edit-template-preview-content-4" data-network-type="' . esc_attr($networkType) . '">' . preg_replace("/\n/", "<br>", esc_html($schema[$networkType]['content'])) . '</p>';
|
1344 |
+
$preview .= '<p class="b2s-edit-template-preview-link b2s-edit-template-preview-link-4">' . esc_html($domain) . '</p>';
|
1345 |
+
$preview .= '</div>';
|
1346 |
+
$preview .= '</div>';
|
1347 |
+
$preview .= '<div class="row">';
|
1348 |
+
$preview .= '<div class="col-sm-12">';
|
1349 |
+
$preview .= '<img class="b2s-edit-template-preview-like-icons-4" src="' . plugins_url('/assets/images/settings/like-icons-4.png', B2S_PLUGIN_FILE) . '">';
|
1350 |
$preview .= '</div>';
|
1351 |
$preview .= '</div>';
|
1352 |
$preview .= '</div>';
|
includes/B2S/Post/Item.php
CHANGED
@@ -630,6 +630,7 @@ class B2S_Post_Item {
|
|
630 |
} else {
|
631 |
$addSearchShowByDate = (!empty($this->searchShowByDate)) ? (($this->type == 'publish' || $this->type == 'notice') ? " AND DATE_FORMAT(posts.publish_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' " : " AND DATE_FORMAT(posts.sched_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' ") : '';
|
632 |
$addWhere = ($this->type == 'notice') ? ' AND posts.`publish_error_code` != "" ' : ' AND posts.`publish_error_code` = "" ';
|
|
|
633 |
$where = ($this->type == 'publish' || $this->type == 'notice') ? " (posts.`sched_date` = '0000-00-00 00:00:00' OR (posts.`sched_type` = 3 AND posts.`publish_date` != '0000-00-00 00:00:00')) AND posts.`post_for_approve`= 0 " . $addWhere : " (posts.`sched_type` != 3 OR (posts.`sched_type` = 3 AND posts.`publish_date` = '0000-00-00 00:00:00')) AND posts.`publish_date` = '0000-00-00 00:00:00' AND ((posts.`sched_date_utc` != '0000-00-00 00:00:00' AND posts.`post_for_approve` = 0) OR (posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND posts.`post_for_approve` = 1)) ";
|
634 |
}
|
635 |
$sqlPostsTotal = "SELECT COUNT(posts.`post_id`) FROM `{$wpdb->prefix}b2s_posts` posts $addLeftJoin $addLeftJoinNetwork WHERE $addLeftJoinWhere $addLeftJoinWhereNetwork $where $addNotAdmin $addSearchShowByDate AND posts.`hide` = 0 AND posts.`post_id` = " . $post_id;
|
@@ -717,13 +718,14 @@ class B2S_Post_Item {
|
|
717 |
return $this->postPagination;
|
718 |
}
|
719 |
|
720 |
-
public function getPublishPostDataHtml($post_id = 0, $type = 'publish', $showByDate = '') {
|
721 |
if ($post_id > 0) {
|
722 |
global $wpdb;
|
723 |
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (' AND blog_user_id =' . B2S_PLUGIN_BLOG_USER_ID) : '';
|
|
|
724 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
725 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
726 |
-
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`,`blog_user_id`, `sched_date`,`publish_date`,`publish_link`,`sched_type`,`publish_error_code`,`{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`, `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND `{$wpdb->prefix}b2s_posts`.`post_for_approve`= 0 AND (`{$wpdb->prefix}b2s_posts`.`sched_date` = '0000-00-00 00:00:00' OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00')) $addWhere $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
727 |
$result = $wpdb->get_results($sqlData);
|
728 |
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'), 5 => esc_html__('Re-Share', 'blog2social'));
|
729 |
if (!empty($result) && is_array($result)) {
|
630 |
} else {
|
631 |
$addSearchShowByDate = (!empty($this->searchShowByDate)) ? (($this->type == 'publish' || $this->type == 'notice') ? " AND DATE_FORMAT(posts.publish_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' " : " AND DATE_FORMAT(posts.sched_date,'%Y-%m-%d') = '" . $this->searchShowByDate . "' ") : '';
|
632 |
$addWhere = ($this->type == 'notice') ? ' AND posts.`publish_error_code` != "" ' : ' AND posts.`publish_error_code` = "" ';
|
633 |
+
$addWhere .= ((int) $this->searchPostSharedById > 0) ? ' AND posts.`blog_user_id` = '.$this->searchPostSharedById.' ' : ' ';
|
634 |
$where = ($this->type == 'publish' || $this->type == 'notice') ? " (posts.`sched_date` = '0000-00-00 00:00:00' OR (posts.`sched_type` = 3 AND posts.`publish_date` != '0000-00-00 00:00:00')) AND posts.`post_for_approve`= 0 " . $addWhere : " (posts.`sched_type` != 3 OR (posts.`sched_type` = 3 AND posts.`publish_date` = '0000-00-00 00:00:00')) AND posts.`publish_date` = '0000-00-00 00:00:00' AND ((posts.`sched_date_utc` != '0000-00-00 00:00:00' AND posts.`post_for_approve` = 0) OR (posts.`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND posts.`post_for_approve` = 1)) ";
|
635 |
}
|
636 |
$sqlPostsTotal = "SELECT COUNT(posts.`post_id`) FROM `{$wpdb->prefix}b2s_posts` posts $addLeftJoin $addLeftJoinNetwork WHERE $addLeftJoinWhere $addLeftJoinWhereNetwork $where $addNotAdmin $addSearchShowByDate AND posts.`hide` = 0 AND posts.`post_id` = " . $post_id;
|
718 |
return $this->postPagination;
|
719 |
}
|
720 |
|
721 |
+
public function getPublishPostDataHtml($post_id = 0, $type = 'publish', $showByDate = '', $sharedByUser = 0) {
|
722 |
if ($post_id > 0) {
|
723 |
global $wpdb;
|
724 |
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (' AND blog_user_id =' . B2S_PLUGIN_BLOG_USER_ID) : '';
|
725 |
+
$addSharedByUser = ($sharedByUser > 0) ? (' AND blog_user_id =' . $sharedByUser) : '';
|
726 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
727 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
728 |
+
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`,`blog_user_id`, `sched_date`,`publish_date`,`publish_link`,`sched_type`,`publish_error_code`,`{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`, `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND `{$wpdb->prefix}b2s_posts`.`post_for_approve`= 0 AND (`{$wpdb->prefix}b2s_posts`.`sched_date` = '0000-00-00 00:00:00' OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00')) $addWhere $addNotAdminPosts $addSharedByUser $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
729 |
$result = $wpdb->get_results($sqlData);
|
730 |
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'), 5 => esc_html__('Re-Share', 'blog2social'));
|
731 |
if (!empty($result) && is_array($result)) {
|
includes/B2S/Post/Tools.php
CHANGED
@@ -145,5 +145,17 @@ class B2S_Post_Tools {
|
|
145 |
}
|
146 |
return 0;
|
147 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
148 |
|
149 |
}
|
145 |
}
|
146 |
return 0;
|
147 |
}
|
148 |
+
|
149 |
+
public static function countReadyForApprove($userId = 0) {
|
150 |
+
if($userId > 0) {
|
151 |
+
global $wpdb;
|
152 |
+
$sql = $wpdb->prepare("SELECT count(id) AS approveCount FROM {$wpdb->prefix}b2s_posts WHERE hide = %d AND publish_date = '%s' AND sched_date_utc <= '%s' AND post_for_approve = %d AND blog_user_id = %d", 0, '0000-00-00 00:00:00', gmdate('Y-m-d H:i:s'), 1, (int) $userId);
|
153 |
+
$row = $wpdb->get_row($sql);
|
154 |
+
if (isset($row->approveCount)) {
|
155 |
+
return (int) $row->approveCount;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
return 0;
|
159 |
+
}
|
160 |
|
161 |
}
|
includes/B2S/RePost/Save.php
CHANGED
@@ -102,7 +102,7 @@ class B2S_RePost_Save {
|
|
102 |
if ((int) $value->networkId == 12 && isset($this->optionPostFormat[12][0]['addLink']) && $this->optionPostFormat[12][0]['addLink'] === false) {
|
103 |
$schedData['url'] = '';
|
104 |
}
|
105 |
-
if ((int) $value->networkId == 1 && isset($this->optionPostFormat[1][$value->networkType]['format']) && $this->optionPostFormat[1][$value->networkType]['format'] == 1 && isset($this->optionPostFormat[1][$value->networkType]['addLink']) && $this->optionPostFormat[1][$value->networkType]['addLink'] === false) {
|
106 |
$schedData['url'] = '';
|
107 |
}
|
108 |
$this->saveShareData($schedData, $value->networkId, $value->networkType, $value->networkAuthId, $shareApprove, strip_tags($value->networkUserName), $schedDate, $schedDateUtc);
|
102 |
if ((int) $value->networkId == 12 && isset($this->optionPostFormat[12][0]['addLink']) && $this->optionPostFormat[12][0]['addLink'] === false) {
|
103 |
$schedData['url'] = '';
|
104 |
}
|
105 |
+
if (((int) $value->networkId == 1 || (int) $value->networkId == 2) && isset($this->optionPostFormat[1][$value->networkType]['format']) && $this->optionPostFormat[1][$value->networkType]['format'] == 1 && isset($this->optionPostFormat[1][$value->networkType]['addLink']) && $this->optionPostFormat[1][$value->networkType]['addLink'] === false) {
|
106 |
$schedData['url'] = '';
|
107 |
}
|
108 |
$this->saveShareData($schedData, $value->networkId, $value->networkType, $value->networkAuthId, $shareApprove, strip_tags($value->networkUserName), $schedDate, $schedDateUtc);
|
includes/B2S/Settings/Item.php
CHANGED
@@ -62,8 +62,8 @@ class B2S_Settings_Item {
|
|
62 |
$content .='<br>';
|
63 |
$content .='<hr>';
|
64 |
$content .='<h4>' . esc_html__('Content', 'blog2social') . '</h4>';
|
65 |
-
$content .='<strong>' . esc_html__('Url Shortener', 'blog2social') . '</strong
|
66 |
-
$content .='<div class="alert alert-warning">' . sprintf(__('
|
67 |
$content .='<input type="radio" value="0" class="b2s-user-network-settings-short-url" id="b2s-user-network-settings-short-url-0" name="b2s-user-network-settings-short-url" ' . (($isCheckedShortener == -1) ? 'checked="checked"' : '') . ' data-provider-id="-1"/><label for="b2s-user-network-settings-short-url-0"> '.esc_html__('no URL Shortener', 'blog2social').'</label>';
|
68 |
$content .= '<br>';
|
69 |
$content .= '<input type="hidden" id="brandName" value="'.esc_html__('Brand', 'blog2social').'">';
|
@@ -218,7 +218,7 @@ class B2S_Settings_Item {
|
|
218 |
}
|
219 |
|
220 |
foreach (array(1, 2, 3, 12, 19, 17) as $n => $networkId) { //FB,TW,LI,IN
|
221 |
-
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3) ? array(0, 1) : array(0));
|
222 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
223 |
if($networkId == 17) {
|
224 |
$postFormat = 1;
|
@@ -276,7 +276,7 @@ class B2S_Settings_Item {
|
|
276 |
$content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array('post' => array(__('Link Post', 'blog2social'), __('Image Post', 'blog2social')), 'image' => array(__('Image with frame'), __('Image cut out')))) . "'/>";
|
277 |
foreach (array(1, 2, 3, 12, 19, 15, 17) as $n => $networkId) { //FB,TW,LI,IN
|
278 |
$postFormatType = ($networkId == 12) ? 'image' : 'post';
|
279 |
-
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3) ? array(0, 1) : array(0));
|
280 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
281 |
if (!isset($optionPostFormat[$networkId][$typeId]['format']) || (int) $optionPostFormat[$networkId][$typeId]['format'] < 0 || (int) $optionPostFormat[$networkId][$typeId]['format'] > 1) { //DEFAULT
|
282 |
if(is_array($defaultTemplate) && isset($defaultTemplate[$networkId][$typeId]['format']) && $defaultTemplate[$networkId][$typeId]['format'] >= 0 && $defaultTemplate[$networkId][$typeId]['format'] <= 1) {
|
62 |
$content .='<br>';
|
63 |
$content .='<hr>';
|
64 |
$content .='<h4>' . esc_html__('Content', 'blog2social') . '</h4>';
|
65 |
+
$content .='<strong>' . esc_html__('Url Shortener', 'blog2social') . '</strong><br>';
|
66 |
+
$content .='<div class="alert alert-warning">' . sprintf(__('You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your links and to track the performance of your links in your social networks. Activate one of the URL shorteners you like to use and link it to your account. Your social media posts will then be shared with your links of Bit.ly, Rebrandly or Sniply. You can then monitor the success of your posts in these accounts. Please note: Some networks do not allow shortlinks. Blog2Social will apply the regular URL for these social platforms. You find more information on the support of URL shortener by the different social platforms in the <a href="%s" target="_blank">link shortener guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('url_shortener_faq')) . '</div>';
|
67 |
$content .='<input type="radio" value="0" class="b2s-user-network-settings-short-url" id="b2s-user-network-settings-short-url-0" name="b2s-user-network-settings-short-url" ' . (($isCheckedShortener == -1) ? 'checked="checked"' : '') . ' data-provider-id="-1"/><label for="b2s-user-network-settings-short-url-0"> '.esc_html__('no URL Shortener', 'blog2social').'</label>';
|
68 |
$content .= '<br>';
|
69 |
$content .= '<input type="hidden" id="brandName" value="'.esc_html__('Brand', 'blog2social').'">';
|
218 |
}
|
219 |
|
220 |
foreach (array(1, 2, 3, 12, 19, 17) as $n => $networkId) { //FB,TW,LI,IN
|
221 |
+
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3 || $networkId == 12) ? array(0, 1) : array(0));
|
222 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
223 |
if($networkId == 17) {
|
224 |
$postFormat = 1;
|
276 |
$content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array('post' => array(__('Link Post', 'blog2social'), __('Image Post', 'blog2social')), 'image' => array(__('Image with frame'), __('Image cut out')))) . "'/>";
|
277 |
foreach (array(1, 2, 3, 12, 19, 15, 17) as $n => $networkId) { //FB,TW,LI,IN
|
278 |
$postFormatType = ($networkId == 12) ? 'image' : 'post';
|
279 |
+
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3 || $networkId == 12) ? array(0, 1) : array(0));
|
280 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
281 |
if (!isset($optionPostFormat[$networkId][$typeId]['format']) || (int) $optionPostFormat[$networkId][$typeId]['format'] < 0 || (int) $optionPostFormat[$networkId][$typeId]['format'] > 1) { //DEFAULT
|
282 |
if(is_array($defaultTemplate) && isset($defaultTemplate[$networkId][$typeId]['format']) && $defaultTemplate[$networkId][$typeId]['format'] >= 0 && $defaultTemplate[$networkId][$typeId]['format'] <= 1) {
|
includes/B2S/Ship/Item.php
CHANGED
@@ -10,7 +10,7 @@ class B2S_Ship_Item {
|
|
10 |
private $isCommentPage = array(1);
|
11 |
private $isCommentGroup = array(1);
|
12 |
private $allowTag = array(4, 9, 11, 16);
|
13 |
-
private $limitTag = array(); //networkId => Limit
|
14 |
private $allowHtml = array(4, 11, 14);
|
15 |
private $showTitleProfile = array(4, 6, 9, 11, 14, 16, 21, 15);
|
16 |
private $showTitlePage = array(8, 19 => array(1)); //Xing Business Page
|
@@ -38,7 +38,7 @@ class B2S_Ship_Item {
|
|
38 |
private $limitHashTagCharacter = array(21 => 36);
|
39 |
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 12 => 2000, 18 => 1500, 19 => 1000, 20 => 500, 21 => 65535);
|
40 |
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 18, 20, 21, 24);
|
41 |
-
private $showImageAreaPage = array(10);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
43 |
private $showMarketplace = array(19);
|
44 |
private $limitCharacterPage = array(3 => 1300, 8 => 1200, 19 => array(0 => 400, 1 => 2000, 4 => 1000)); // XING Company Page, Business Page
|
@@ -328,7 +328,7 @@ class B2S_Ship_Item {
|
|
328 |
}
|
329 |
$content .= '<h4 class="pull-left b2s-post-item-details-network-display-name" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . esc_html(stripslashes($network_display_name)) . '</h4>';
|
330 |
$content .= '<div class="clearfix"></div>';
|
331 |
-
$content .= '<p class="pull-left">' . esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($networkKindName[$data->networkKind]) ? $networkKindName[$data->networkKind] : (($data->networkId == 4) ? esc_html__('Blog', 'blog2social') : $networkTypeName[$data->networkType]) . ' | ' . $networkName[$data->networkId]));
|
332 |
$content .= '<div class="b2s-post-item-details-message-result" data-network-auth-id="' . $data->networkAuthId . '" style="display:none;"></div>';
|
333 |
$content .= '<span class="hidden-xs b2s-post-item-details-message-info" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . $messageInfo . '</span></span>';
|
334 |
|
@@ -379,7 +379,7 @@ class B2S_Ship_Item {
|
|
379 |
$content .= (in_array($data->networkId, $this->showMarketplace) && $data->networkType == 2) ? $this->getMarketplaceAreaHtml($data->networkAuthId, $data->networkId, $data->networkType, $data->networkKind) : '';
|
380 |
$content .= ((in_array($data->networkId, $this->showTitleProfile) && $data->networkType == 0) || (((in_array($data->networkId, $this->showTitlePage) && isset($this->showTitlePage[$data->networkId]) && !is_array($this->showTitlePage[$data->networkId]) ) || (isset($this->showTitlePage[$data->networkId]) && is_array($this->showTitlePage[$data->networkId]) && in_array($data->networkKind, $this->showTitlePage[$data->networkId]))) && $data->networkType == 1) || (in_array($data->networkId, $this->showTitleGroup) && $data->networkType == 2)) ? $this->getTitleHtml($data->networkId, $data->networkAuthId, $data->networkKind, $data->networkType, $this->postData->post_title) : '';
|
381 |
$content .= $this->getCustomEditArea($data->networkId, $data->networkAuthId, $data->networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, isset($data->image_url) ? $data->image_url : null, isset($data->multi_images) ? $data->multi_images : array());
|
382 |
-
$content .= (in_array($data->networkId, $this->allowTag) && $data->networkType == 0) ? $this->getTagsHtml($data->networkId, $data->networkAuthId) : '';
|
383 |
|
384 |
//Calendar
|
385 |
if (!(isset($this->viewMode) && $this->viewMode == 'modal')) {
|
@@ -949,7 +949,7 @@ class B2S_Ship_Item {
|
|
949 |
|
950 |
if ($networkId == 12 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
|
951 |
$urlValue = '';
|
952 |
-
} else if ($networkId == 1 && isset($this->post_template[$networkId][$networkType]['format']) && (int) $this->post_template[$networkId][$networkType]['format'] == 1 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
|
953 |
$urlValue = '';
|
954 |
$isRequiredClass = '';
|
955 |
} else {
|
@@ -1368,7 +1368,7 @@ class B2S_Ship_Item {
|
|
1368 |
$excerpt_max = (isset($post_template['short_text']['excerpt_range_max'])) ? $post_template['short_text']['excerpt_range_max'] : 0;
|
1369 |
$limit = (isset($post_template['short_text']['limit'])) ? $post_template['short_text']['limit'] : 0;
|
1370 |
}
|
1371 |
-
|
1372 |
$message = $post_template['content'];
|
1373 |
|
1374 |
//B2S CC
|
@@ -1386,7 +1386,7 @@ class B2S_Ship_Item {
|
|
1386 |
//B2S Customize
|
1387 |
} else {
|
1388 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1389 |
-
$preContent = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $content_min, (int) $content_max);
|
1390 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1391 |
} else {
|
1392 |
$message = preg_replace("/\{CONTENT\}/", "", $message);
|
10 |
private $isCommentPage = array(1);
|
11 |
private $isCommentGroup = array(1);
|
12 |
private $allowTag = array(4, 9, 11, 16);
|
13 |
+
private $limitTag = array(11 => 5); //networkId => Limit
|
14 |
private $allowHtml = array(4, 11, 14);
|
15 |
private $showTitleProfile = array(4, 6, 9, 11, 14, 16, 21, 15);
|
16 |
private $showTitlePage = array(8, 19 => array(1)); //Xing Business Page
|
38 |
private $limitHashTagCharacter = array(21 => 36);
|
39 |
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 12 => 2000, 18 => 1500, 19 => 1000, 20 => 500, 21 => 65535);
|
40 |
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 18, 20, 21, 24);
|
41 |
+
private $showImageAreaPage = array(10, 12);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
43 |
private $showMarketplace = array(19);
|
44 |
private $limitCharacterPage = array(3 => 1300, 8 => 1200, 19 => array(0 => 400, 1 => 2000, 4 => 1000)); // XING Company Page, Business Page
|
328 |
}
|
329 |
$content .= '<h4 class="pull-left b2s-post-item-details-network-display-name" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . esc_html(stripslashes($network_display_name)) . '</h4>';
|
330 |
$content .= '<div class="clearfix"></div>';
|
331 |
+
$content .= '<p class="pull-left">' . esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($networkKindName[$data->networkKind]) ? $networkKindName[$data->networkKind] : (($data->networkId == 4) ? esc_html__('Blog', 'blog2social') : (($data->networkId == 12) ? (($data->networkType == 0) ? esc_html__('Personal', 'blog2social') : esc_html__('Business', 'blog2social')) : $networkTypeName[$data->networkType])) . ' | ' . $networkName[$data->networkId]));
|
332 |
$content .= '<div class="b2s-post-item-details-message-result" data-network-auth-id="' . $data->networkAuthId . '" style="display:none;"></div>';
|
333 |
$content .= '<span class="hidden-xs b2s-post-item-details-message-info" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . $messageInfo . '</span></span>';
|
334 |
|
379 |
$content .= (in_array($data->networkId, $this->showMarketplace) && $data->networkType == 2) ? $this->getMarketplaceAreaHtml($data->networkAuthId, $data->networkId, $data->networkType, $data->networkKind) : '';
|
380 |
$content .= ((in_array($data->networkId, $this->showTitleProfile) && $data->networkType == 0) || (((in_array($data->networkId, $this->showTitlePage) && isset($this->showTitlePage[$data->networkId]) && !is_array($this->showTitlePage[$data->networkId]) ) || (isset($this->showTitlePage[$data->networkId]) && is_array($this->showTitlePage[$data->networkId]) && in_array($data->networkKind, $this->showTitlePage[$data->networkId]))) && $data->networkType == 1) || (in_array($data->networkId, $this->showTitleGroup) && $data->networkType == 2)) ? $this->getTitleHtml($data->networkId, $data->networkAuthId, $data->networkKind, $data->networkType, $this->postData->post_title) : '';
|
381 |
$content .= $this->getCustomEditArea($data->networkId, $data->networkAuthId, $data->networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, isset($data->image_url) ? $data->image_url : null, isset($data->multi_images) ? $data->multi_images : array());
|
382 |
+
$content .= (in_array($data->networkId, $this->allowTag) && ($data->networkType == 0 || $data->networkId == 11)) ? $this->getTagsHtml($data->networkId, $data->networkAuthId) : '';
|
383 |
|
384 |
//Calendar
|
385 |
if (!(isset($this->viewMode) && $this->viewMode == 'modal')) {
|
949 |
|
950 |
if ($networkId == 12 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
|
951 |
$urlValue = '';
|
952 |
+
} else if (($networkId == 1 || $networkId == 2) && isset($this->post_template[$networkId][$networkType]['format']) && (int) $this->post_template[$networkId][$networkType]['format'] == 1 && isset($this->post_template[$networkId][$networkType]['addLink']) && $this->post_template[$networkId][$networkType]['addLink'] == false) {
|
953 |
$urlValue = '';
|
954 |
$isRequiredClass = '';
|
955 |
} else {
|
1368 |
$excerpt_max = (isset($post_template['short_text']['excerpt_range_max'])) ? $post_template['short_text']['excerpt_range_max'] : 0;
|
1369 |
$limit = (isset($post_template['short_text']['limit'])) ? $post_template['short_text']['limit'] : 0;
|
1370 |
}
|
1371 |
+
|
1372 |
$message = $post_template['content'];
|
1373 |
|
1374 |
//B2S CC
|
1386 |
//B2S Customize
|
1387 |
} else {
|
1388 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1389 |
+
$preContent = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, (in_array($data->networkId, $this->allowHtml) ? '<p><h1><h2><br><i><b><a><img>' : false), (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $content_min, (int) $content_max);
|
1390 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1391 |
} else {
|
1392 |
$message = preg_replace("/\{CONTENT\}/", "", $message);
|
includes/B2S/Ship/Navbar.php
CHANGED
@@ -87,7 +87,7 @@ class B2S_Ship_Navbar {
|
|
87 |
$content .= '</div>';
|
88 |
$content .= '<div class="b2s-network-details">';
|
89 |
$content .= '<h4>' . esc_html($username) . '</h4>';
|
90 |
-
$content .= '<p>' .esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($this->networkKindName[$data->networkKind]) ? $this->networkKindName[$data->networkKind] : (($data->networkId == 4) ? esc_html__('Blog', 'blog2social') : $this->networkTypeName[$data->networkType])) . ' | ' . $this->neworkName[$data->networkId]) . '</p>';
|
91 |
$content .= '</div>';
|
92 |
$content .= '<div class="b2s-network-status" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
|
93 |
$content .= '<span class="b2s-network-hide b2s-network-status-img glyphicon glyphicon-ok glyphicon-success"></span>';
|
87 |
$content .= '</div>';
|
88 |
$content .= '<div class="b2s-network-details">';
|
89 |
$content .= '<h4>' . esc_html($username) . '</h4>';
|
90 |
+
$content .= '<p>' .esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($this->networkKindName[$data->networkKind]) ? $this->networkKindName[$data->networkKind] : (($data->networkId == 4) ? esc_html__('Blog', 'blog2social') : (($data->networkId == 12) ? (($data->networkType == 0) ? esc_html__('Personal', 'blog2social') : esc_html__('Business', 'blog2social')) : $this->networkTypeName[$data->networkType]))) . ' | ' . $this->neworkName[$data->networkId]) . '</p>';
|
91 |
$content .= '</div>';
|
92 |
$content .= '<div class="b2s-network-status" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
|
93 |
$content .= '<span class="b2s-network-hide b2s-network-status-img glyphicon glyphicon-ok glyphicon-success"></span>';
|
includes/B2S/Ship/Portale.php
CHANGED
@@ -32,10 +32,15 @@ class B2S_Ship_Portale {
|
|
32 |
$html .= (B2S_PLUGIN_USER_VERSION > 1) ? ('<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . $name . '</button>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled b2sProFeatureModalBtn" data-type="auth-network" data-title="' . esc_html__('You want to connect a social media group?', 'blog2social') . '">+ ' . esc_html__('Group', 'blog2social') . ' <span class="label label-success">' . esc_html__("PRO", "blog2social") . '</a></button>';
|
33 |
}
|
34 |
if (in_array($portal->id, $this->allowPage)) {
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
36 |
}
|
37 |
if (in_array($portal->id, $this->allowProfil)) {
|
38 |
-
$name = ($portal->id == 4) ? esc_html__('Blog', 'blog2social') : esc_html__('Profile', 'blog2social');
|
39 |
if($portal->id == 6) {
|
40 |
$html .= '<a href="#" class="btn btn-primary btn-sm b2s-network-list-add-btn" data-auth-method="client">+ ' . esc_html__('Profile', 'blog2social') . '</a>';
|
41 |
} else if($portal->id == 24 && B2S_PLUGIN_USER_VERSION < 1) {
|
32 |
$html .= (B2S_PLUGIN_USER_VERSION > 1) ? ('<button onclick="wop(\'' . $b2sAuthUrl . '&choose=group\', \'Blog2Social Network\'); return false;" class="btn btn-primary btn-sm b2s-network-list-add-btn">+ ' . $name . '</button>') : '<button type="button" class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-list-add-btn-profeature b2s-btn-disabled b2sProFeatureModalBtn" data-type="auth-network" data-title="' . esc_html__('You want to connect a social media group?', 'blog2social') . '">+ ' . esc_html__('Group', 'blog2social') . ' <span class="label label-success">' . esc_html__("PRO", "blog2social") . '</a></button>';
|
33 |
}
|
34 |
if (in_array($portal->id, $this->allowPage)) {
|
35 |
+
if($portal->id == 12) {
|
36 |
+
$b2sSpecialAuthUrl = $this->authurl . '&portal_id=' . $portal->id . '&transfer=oauth&version=3&affiliate_id=' . B2S_Tools::getAffiliateId();
|
37 |
+
$html .= (B2S_PLUGIN_USER_VERSION >= 1) ? '<button class="btn btn-primary btn-sm b2s-network-list-add-btn b2s-network-add-instagram-business-info-btn" data-b2s-auth-url="'.$b2sSpecialAuthUrl.'">+ ' . esc_html__('Business', '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 b2sPreFeatureModalBtn" data-title="' . esc_html__('You want to connect a network profile?', 'blog2social') . '" data-type="auth-network" >+ ' . esc_html__('Business', 'blog2social') . ' <span class="label label-success">' . esc_html__("SMART", "blog2social") . '</a></button>';
|
38 |
+
} else {
|
39 |
+
$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">+ ' . esc_html__('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 ' . ((B2S_PLUGIN_USER_VERSION == 0) ? 'b2sPreFeatureModalBtn' : 'b2sProFeatureModalBtn') . '" data-title="' . esc_html__('You want to connect a network page?', 'blog2social') . '" data-type="auth-network" >+ ' . esc_html__('Page', 'blog2social') . ' <span class="label label-success">' . esc_html__("PRO", "blog2social") . '</a></button>';
|
40 |
+
}
|
41 |
}
|
42 |
if (in_array($portal->id, $this->allowProfil)) {
|
43 |
+
$name = ($portal->id == 4) ? esc_html__('Blog', 'blog2social') : (($portal->id == 12) ? esc_html__('Personal', 'blog2social') : esc_html__('Profile', 'blog2social'));
|
44 |
if($portal->id == 6) {
|
45 |
$html .= '<a href="#" class="btn btn-primary btn-sm b2s-network-list-add-btn" data-auth-method="client">+ ' . esc_html__('Profile', 'blog2social') . '</a>';
|
46 |
} else if($portal->id == 24 && B2S_PLUGIN_USER_VERSION < 1) {
|
includes/B2S/Support/Check/System.php
CHANGED
@@ -99,7 +99,7 @@ class B2S_Support_Check_System {
|
|
99 |
$url = $this->getBlogUrl();
|
100 |
$options = $this->getUserOptions();
|
101 |
$version = $this->getUserVersion();
|
102 |
-
$blogData = array('
|
103 |
return array("systemData" => $this->systemData, "blogData" => $blogData, "pluginData" => $this->pluginData);
|
104 |
}
|
105 |
|
99 |
$url = $this->getBlogUrl();
|
100 |
$options = $this->getUserOptions();
|
101 |
$version = $this->getUserVersion();
|
102 |
+
$blogData = array('blogUrl' => $url, 'blogUserId' => B2S_PLUGIN_BLOG_USER_ID, 'options' => $options, 'WP_MEMORY_LIMIT' => WP_MEMORY_LIMIT, "max_execution_time" => ini_get('max_execution_time'), 'version' => $version);
|
103 |
return array("systemData" => $this->systemData, "blogData" => $blogData, "pluginData" => $this->pluginData);
|
104 |
}
|
105 |
|
includes/Loader.php
CHANGED
@@ -39,7 +39,7 @@ class B2S_Loader {
|
|
39 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES', serialize(array(1 => array(18, 22), 2 => array(8, 10), 3 => array(7, 10), 4 => array(20, 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(8, 10), 12 => array(19, 22), 13 => array(11, 13), 14 => array(6, 8), 15 => array(6, 9), 16 => array(16, 19), 17 => array(21, 24), 18 => array(19, 21), 19 => array(7, 10), 24 => array(10, 12))));
|
40 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO', serialize(array(1 => array(0 => array(13, 16), 1 => array(18, 22)), 2 => array(0 => array(7, 10), 1 => array(11, 13), 2 => array(16, 19)), 3 => array(0 => array(7, 10), 1 => array(17, 18)), 4 => array(0 => array(20, 22)), 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(0 => array(8, 10)), 12 => array(0 => array(11, 13), 1 => array(19, 22)), 13 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 14 => array(0 => array(6, 8)), 15 => array(0 => array(6, 9)), 16 => array(0 => array(16, 19)), 17 => array(0 => array(21, 1)), 18 => array(0 => array(9, 11), 1 => array(19, 21)), 19 => array(0 => array(7, 10), 1 => array(17, 18)), 20 => array(0 => array(12, 14), 1 => array(19, 22)), 24 => array(0 => array(10, 12), 1 => array(17, 19)))));
|
41 |
define('B2S_PLUGIN_NETWORK_ALLOW_PROFILE', serialize(array(1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24)));
|
42 |
-
define('B2S_PLUGIN_NETWORK_ALLOW_PAGE', serialize(array(1, 3, 10, 17, 19)));
|
43 |
define('B2S_PLUGIN_NETWORK_ALLOW_GROUP', serialize(array(1, 10, 11, 17, 19)));
|
44 |
define('B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT', serialize(array(19 => array(2 => 3)))); //2=group
|
45 |
define('B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP', serialize(array(6 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')), 8 => array('TYPE' => array(2), 'TITLE' => esc_html__('Edit group settings', 'blog2social')), 15 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify subreddit', 'blog2social')), 19 => array('TYPE' => array(2), 'TITLE' => esc_html__('Modify forum', 'blog2social')), 20 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')))));
|
@@ -47,32 +47,33 @@ class B2S_Loader {
|
|
47 |
define('B2S_PLUGIN_RE_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
48 |
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20, 21)));
|
49 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
50 |
-
1 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
51 |
-
1 => array('short_text' => array('active' => 0, 'range_min' =>
|
52 |
-
2 => array('short_text' => array('active' => 0, 'range_min' =>
|
53 |
),
|
54 |
-
2 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 256, 'excerpt_range_min' => 200, 'excerpt_range_max' => 256, 'limit' => 280), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1)),
|
55 |
-
3 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
56 |
-
1 => array('short_text' => array('active' => 0, 'range_min' =>
|
57 |
),
|
58 |
-
4 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' =>
|
59 |
-
6 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 350, 'range_max' => 421, 'excerpt_range_min' => 350, 'excerpt_range_max' => 421, 'limit' => 495), 'content' =>
|
60 |
7 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
61 |
9 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 250, 'excerpt_range_min' => 200, 'excerpt_range_max' => 250, 'limit' => 250), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
62 |
-
11 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' =>
|
63 |
-
2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' =>
|
64 |
-
12 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
65 |
-
|
|
|
66 |
15 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 300, 'excerpt_range_min' => 200, 'excerpt_range_max' => 300, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
67 |
16 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
68 |
-
17 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' =>
|
69 |
-
1 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' =>
|
70 |
-
2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' =>
|
71 |
-
18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' =>
|
72 |
-
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
73 |
-
1 => array('short_text' => array(0 => array('active' => 0, 'range_min' =>
|
74 |
-
2 => array('short_text' => array('active' => 0, 'range_min' =>
|
75 |
-
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' =>
|
76 |
)));
|
77 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
|
78 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_PHPVERSION', '5.5.3');
|
@@ -642,7 +643,7 @@ class B2S_Loader {
|
|
642 |
if ((int) $value->networkId == 12 && isset($optionPostFormat[12][0]['addLink']) && $optionPostFormat[12][0]['addLink'] === false) {
|
643 |
$res['url'] = '';
|
644 |
}
|
645 |
-
if ((int) $value->networkId == 1 && isset($optionPostFormat[1][$value->networkType]['format']) && $optionPostFormat[1][$value->networkType]['format'] == 1 && isset($optionPostFormat[1][$value->networkType]['addLink']) && $optionPostFormat[1][$value->networkType]['addLink'] === false) {
|
646 |
$res['url'] = '';
|
647 |
}
|
648 |
$shareApprove = (isset($value->instant_sharing) && (int) $value->instant_sharing == 1) ? 1 : 0;
|
39 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES', serialize(array(1 => array(18, 22), 2 => array(8, 10), 3 => array(7, 10), 4 => array(20, 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(8, 10), 12 => array(19, 22), 13 => array(11, 13), 14 => array(6, 8), 15 => array(6, 9), 16 => array(16, 19), 17 => array(21, 24), 18 => array(19, 21), 19 => array(7, 10), 24 => array(10, 12))));
|
40 |
define('B2S_PLUGIN_SCHED_DEFAULT_TIMES_INFO', serialize(array(1 => array(0 => array(13, 16), 1 => array(18, 22)), 2 => array(0 => array(7, 10), 1 => array(11, 13), 2 => array(16, 19)), 3 => array(0 => array(7, 10), 1 => array(17, 18)), 4 => array(0 => array(20, 22)), 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(0 => array(8, 10)), 12 => array(0 => array(11, 13), 1 => array(19, 22)), 13 => array(0 => array(8, 10), 1 => array(11, 13), 2 => array(16, 19)), 14 => array(0 => array(6, 8)), 15 => array(0 => array(6, 9)), 16 => array(0 => array(16, 19)), 17 => array(0 => array(21, 1)), 18 => array(0 => array(9, 11), 1 => array(19, 21)), 19 => array(0 => array(7, 10), 1 => array(17, 18)), 20 => array(0 => array(12, 14), 1 => array(19, 22)), 24 => array(0 => array(10, 12), 1 => array(17, 19)))));
|
41 |
define('B2S_PLUGIN_NETWORK_ALLOW_PROFILE', serialize(array(1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24)));
|
42 |
+
define('B2S_PLUGIN_NETWORK_ALLOW_PAGE', serialize(array(1, 3, 10, 12, 17, 19)));
|
43 |
define('B2S_PLUGIN_NETWORK_ALLOW_GROUP', serialize(array(1, 10, 11, 17, 19)));
|
44 |
define('B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT', serialize(array(19 => array(2 => 3)))); //2=group
|
45 |
define('B2S_PLUGIN_NETWORK_ALLOW_MODIFY_BOARD_AND_GROUP', serialize(array(6 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')), 8 => array('TYPE' => array(2), 'TITLE' => esc_html__('Edit group settings', 'blog2social')), 15 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify subreddit', 'blog2social')), 19 => array('TYPE' => array(2), 'TITLE' => esc_html__('Modify forum', 'blog2social')), 20 => array('TYPE' => array(0), 'TITLE' => esc_html__('Modify pin board', 'blog2social')))));
|
47 |
define('B2S_PLUGIN_RE_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
48 |
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20, 21)));
|
49 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
50 |
+
1 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 500), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false),
|
51 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false),
|
52 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0, 'addLink' => false)
|
53 |
),
|
54 |
+
2 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 256, 'excerpt_range_min' => 200, 'excerpt_range_max' => 256, 'limit' => 280), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 1, 'addLink' => false)),
|
55 |
+
3 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
|
56 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 200, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
|
57 |
),
|
58 |
+
4 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 20000, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 20000, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
59 |
+
6 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 350, 'range_max' => 421, 'excerpt_range_min' => 350, 'excerpt_range_max' => 421, 'limit' => 495), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => false)),
|
60 |
7 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
61 |
9 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 250, 'excerpt_range_min' => 200, 'excerpt_range_max' => 250, 'limit' => 250), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
62 |
+
11 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 20000, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 20000, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'separateKeywords' => true),
|
63 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 20000, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 20000, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'separateKeywords' => true)),
|
64 |
+
12 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 240, 'excerpt_range_max' => 400, 'limit' => 2000), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 1, 'addLink' => false, 'shuffleHashtags' => false),
|
65 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 400, 'excerpt_range_min' => 240, 'excerpt_range_max' => 400, 'limit' => 2000), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 1, 'addLink' => false, 'shuffleHashtags' => false)),
|
66 |
+
14 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 20000, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 20000, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
67 |
15 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 300, 'excerpt_range_min' => 200, 'excerpt_range_max' => 300, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
68 |
16 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false, 'disableKeywords' => true)),
|
69 |
+
17 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
|
70 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0),
|
71 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => 0)),
|
72 |
+
18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 1500, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' => "{CONTENT}\n{KEYWORDS}", 'format' => false)),
|
73 |
+
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0, 'disableKeywords' => true),
|
74 |
+
1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 400), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true),
|
75 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true)),
|
76 |
+
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0))
|
77 |
)));
|
78 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
|
79 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_PHPVERSION', '5.5.3');
|
643 |
if ((int) $value->networkId == 12 && isset($optionPostFormat[12][0]['addLink']) && $optionPostFormat[12][0]['addLink'] === false) {
|
644 |
$res['url'] = '';
|
645 |
}
|
646 |
+
if (((int) $value->networkId == 1 || (int) $value->networkId == 2) && isset($optionPostFormat[1][$value->networkType]['format']) && $optionPostFormat[1][$value->networkType]['format'] == 1 && isset($optionPostFormat[1][$value->networkType]['addLink']) && $optionPostFormat[1][$value->networkType]['addLink'] === false) {
|
647 |
$res['url'] = '';
|
648 |
}
|
649 |
$shareApprove = (isset($value->instant_sharing) && (int) $value->instant_sharing == 1) ? 1 : 0;
|
includes/Tools.php
CHANGED
@@ -289,6 +289,15 @@ class B2S_Tools {
|
|
289 |
if($type == 'instagram_auth_faq'){
|
290 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=19&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=2&id=22&artlang=de';
|
291 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
292 |
}
|
293 |
|
294 |
public static function getAffiliateId() {
|
289 |
if($type == 'instagram_auth_faq'){
|
290 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=19&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=2&id=22&artlang=de';
|
291 |
}
|
292 |
+
if($type == 'instagram_business_auth_faq'){
|
293 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=183&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=2&id=180&artlang=de';
|
294 |
+
}
|
295 |
+
if($type == 'url_shortener_faq'){
|
296 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=4&id=40&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=4&id=37&artlang=de';
|
297 |
+
}
|
298 |
+
if($type == 'network_addon_faq'){
|
299 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=7&id=168&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=7&id=165&artlang=de';
|
300 |
+
}
|
301 |
}
|
302 |
|
303 |
public static function getAffiliateId() {
|
includes/Util.php
CHANGED
@@ -438,10 +438,10 @@ class B2S_Util {
|
|
438 |
if (mb_strlen($text, 'UTF-8') < $count) {
|
439 |
return trim($text);
|
440 |
}
|
441 |
-
if ($max
|
442 |
return trim($text);
|
443 |
}
|
444 |
-
|
445 |
$stops = array('.', ':', '?', '!', '#');
|
446 |
$min = $count;
|
447 |
$cleanTruncateWord = true;
|
@@ -449,7 +449,7 @@ class B2S_Util {
|
|
449 |
if (mb_strlen($text, 'UTF-8') < $max) {
|
450 |
return trim($text);
|
451 |
}
|
452 |
-
|
453 |
$sub = mb_substr($text, $min, $max, 'UTF-8');
|
454 |
$stopAt = '';
|
455 |
$stopAtPos = 0;
|
@@ -459,7 +459,7 @@ class B2S_Util {
|
|
459 |
$stopAtPos = mb_strripos($sub, $stops[$i]);
|
460 |
}
|
461 |
}
|
462 |
-
|
463 |
if (!empty($stopAt)) {
|
464 |
if (count($subArray = explode($stopAt, $sub)) > 1) {
|
465 |
$cleanTruncateWord = false;
|
438 |
if (mb_strlen($text, 'UTF-8') < $count) {
|
439 |
return trim($text);
|
440 |
}
|
441 |
+
if ($max != false && mb_strlen($text, 'UTF-8') < $max) {
|
442 |
return trim($text);
|
443 |
}
|
444 |
+
|
445 |
$stops = array('.', ':', '?', '!', '#');
|
446 |
$min = $count;
|
447 |
$cleanTruncateWord = true;
|
449 |
if (mb_strlen($text, 'UTF-8') < $max) {
|
450 |
return trim($text);
|
451 |
}
|
452 |
+
|
453 |
$sub = mb_substr($text, $min, $max, 'UTF-8');
|
454 |
$stopAt = '';
|
455 |
$stopAtPos = 0;
|
459 |
$stopAtPos = mb_strripos($sub, $stops[$i]);
|
460 |
}
|
461 |
}
|
462 |
+
|
463 |
if (!empty($stopAt)) {
|
464 |
if (count($subArray = explode($stopAt, $sub)) > 1) {
|
465 |
$cleanTruncateWord = false;
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,10 +12,10 @@ msgstr ""
|
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
-
"POT-Creation-Date: 2021-
|
16 |
-
"Last-Translator:
|
17 |
-
"Language-Team:
|
18 |
-
"X-Loco-Version: 2.3.
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
@@ -33,40 +33,40 @@ msgstr "Modify subreddit"
|
|
33 |
msgid "Modify forum"
|
34 |
msgstr "Modify forum"
|
35 |
|
36 |
-
#: includes/Loader.php:
|
37 |
msgid "Bitly"
|
38 |
msgstr "Bitly"
|
39 |
|
40 |
-
#: includes/Loader.php:
|
41 |
msgid "Rebrandly"
|
42 |
msgstr "Rebrandly"
|
43 |
|
44 |
-
#: includes/Loader.php:
|
45 |
msgid "Sniply"
|
46 |
msgstr "Sniply"
|
47 |
|
48 |
-
#: includes/Loader.php:
|
49 |
msgid "Blog2Social: Autoposter"
|
50 |
msgstr "Blog2Social: Auto-Poster"
|
51 |
|
52 |
-
#: includes/Loader.php:
|
53 |
msgid "Blog2Social: Social Media Content Calendar"
|
54 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
55 |
|
56 |
-
#: includes/Loader.php:
|
57 |
msgid "This post will be shared into your social media from"
|
58 |
msgstr ""
|
59 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
60 |
|
61 |
-
#: includes/Loader.php:
|
62 |
msgid "show details"
|
63 |
msgstr "siehe Details"
|
64 |
|
65 |
-
#: includes/Loader.php:
|
66 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
67 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
68 |
|
69 |
-
#: includes/Loader.php:
|
70 |
msgid ""
|
71 |
"Please make sure that your post, page or custom post type is published or "
|
72 |
"scheduled to be published on this blog before you try to post it with "
|
@@ -79,7 +79,7 @@ msgstr ""
|
|
79 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
80 |
"werden mit dem Posting-ID-Link geteilt."
|
81 |
|
82 |
-
#: includes/Loader.php:
|
83 |
#: includes/B2S/AutoPost/Item.php:59
|
84 |
msgid ""
|
85 |
"There are no social network accounts assigned to your selected network "
|
@@ -90,102 +90,106 @@ msgstr ""
|
|
90 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
91 |
"eine andere Netzwerkgruppierung aus. "
|
92 |
|
93 |
-
#: includes/Loader.php:
|
94 |
#: views/b2s/html/sidebar.ship.php:44
|
95 |
msgid "Upgrade to Premium"
|
96 |
msgstr "Premium freischalten"
|
97 |
|
98 |
-
#: includes/Loader.php:
|
99 |
-
#: includes/Loader.php:
|
100 |
-
#:
|
101 |
msgid "Settings"
|
102 |
msgstr "Einstellungen"
|
103 |
|
104 |
-
#: includes/Loader.php:
|
105 |
msgid "Support"
|
106 |
msgstr "Support"
|
107 |
|
108 |
-
#: includes/Loader.php:
|
109 |
msgid "Notifications"
|
110 |
msgstr "Benachrichtigungen"
|
111 |
|
112 |
-
#: includes/Loader.php:
|
113 |
#: views/b2s/html/sidebar.php:125
|
114 |
msgid "Shared Posts"
|
115 |
msgstr "geteilte Beiträge"
|
116 |
|
117 |
-
#: includes/Loader.php:
|
118 |
#: views/b2s/html/sidebar.php:119
|
119 |
msgid "Instant Sharing"
|
120 |
msgstr "Instant Sharing"
|
121 |
|
122 |
-
#: includes/Loader.php:
|
123 |
-
#: views/b2s/html/post.navbar.php:
|
124 |
#: views/b2s/html/sidebar.php:116
|
125 |
msgid "Drafts"
|
126 |
msgstr "Entwürfe"
|
127 |
|
128 |
-
#: includes/Loader.php:
|
129 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
130 |
msgid "Scheduled Posts"
|
131 |
msgstr "geplante Beiträge"
|
132 |
|
133 |
-
#: includes/Loader.php:
|
134 |
msgid "Social Media Post Drafts"
|
135 |
msgstr "Social Media Posts Entwürfe"
|
136 |
|
137 |
-
#: includes/Loader.php:
|
138 |
#: views/b2s/html/sidebar.php:113
|
139 |
msgid "Favorites"
|
140 |
msgstr "Favoriten"
|
141 |
|
142 |
-
#: includes/Loader.php:
|
143 |
#: views/b2s/html/sidebar.php:75
|
144 |
msgid "Auto-Post"
|
145 |
msgstr "Beiträge automatisch teilen"
|
146 |
|
147 |
-
#: includes/Loader.php:
|
148 |
-
#: views/b2s/html/post.navbar.php:
|
149 |
msgid "Re-Share Posts"
|
150 |
msgstr "Beiträge wiederholt teilen"
|
151 |
|
152 |
-
#: includes/Loader.php:
|
153 |
#: views/b2s/support.php:22
|
154 |
msgid "NEW"
|
155 |
msgstr "Neu"
|
156 |
|
157 |
-
#: includes/Loader.php:
|
158 |
-
#: includes/B2S/Network/Item.php:
|
159 |
-
#: includes/B2S/Network/Item.php:
|
160 |
-
#: includes/B2S/Network/Item.php:
|
161 |
-
#: includes/B2S/Ship/Portale.php:
|
162 |
-
#: includes/B2S/Ship/Portale.php:
|
163 |
msgid "Profile"
|
164 |
msgstr "Profil"
|
165 |
|
166 |
-
#: includes/Loader.php:
|
167 |
-
#: includes/B2S/Network/Item.php:
|
168 |
-
#: includes/B2S/Network/Item.php:
|
169 |
-
#: includes/B2S/Network/Item.php:
|
170 |
-
#: includes/B2S/Ship/Portale.php:
|
171 |
msgid "Page"
|
172 |
msgstr "Seite"
|
173 |
|
174 |
-
#: includes/Loader.php:
|
175 |
-
#: includes/B2S/Network/Item.php:
|
176 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
177 |
msgid "Group"
|
178 |
msgstr "Gruppe"
|
179 |
|
180 |
-
#: includes/Loader.php:
|
181 |
msgid "Company-Page (Employer Branding Profile)"
|
182 |
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
183 |
|
184 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
185 |
msgid "Business"
|
186 |
msgstr "Business"
|
187 |
|
188 |
-
#: includes/Loader.php:
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"The network could not publish your post. Please see the following <a "
|
@@ -194,7 +198,7 @@ msgstr ""
|
|
194 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
195 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
196 |
|
197 |
-
#: includes/Loader.php:
|
198 |
msgid ""
|
199 |
"Your authorization has expired. Please reconnect your account in the "
|
200 |
"Blog2Social network settings."
|
@@ -202,7 +206,7 @@ msgstr ""
|
|
202 |
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
203 |
"Blog2Social Netzwerkeinstellungen erneut."
|
204 |
|
205 |
-
#: includes/Loader.php:
|
206 |
#, php-format
|
207 |
msgid ""
|
208 |
"The content of your post could not be approved by the network. Please see "
|
@@ -211,7 +215,7 @@ msgstr ""
|
|
211 |
"Der Inhalt Deines Beitrags konnte vom Netzwerk nicht genehmigt werden. Bitte "
|
212 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
213 |
|
214 |
-
#: includes/Loader.php:
|
215 |
msgid ""
|
216 |
"We don't have the permission to publish your post. Please check your "
|
217 |
"authorization."
|
@@ -219,7 +223,7 @@ msgstr ""
|
|
219 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
220 |
"überprüfe deine Autorisierung."
|
221 |
|
222 |
-
#: includes/Loader.php:
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
"The connection to your social media account is interrupted. Please check "
|
@@ -232,11 +236,11 @@ msgstr ""
|
|
232 |
"target=\"_blank\" href=\"%s\">Anleitung zur Fehlerbehebung</a> zeigt Dir, "
|
233 |
"wie Du die Verbindung zu Deinem Social-Media-Account erneuern kannst."
|
234 |
|
235 |
-
#: includes/Loader.php:
|
236 |
msgid "Your daily limit has been reached."
|
237 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
238 |
|
239 |
-
#: includes/Loader.php:
|
240 |
msgid ""
|
241 |
"Your post could not be posted, because your image is not available or the "
|
242 |
"image source does not allow to publish"
|
@@ -244,7 +248,7 @@ msgstr ""
|
|
244 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
245 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
246 |
|
247 |
-
#: includes/Loader.php:
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
"The network has blocked your account. Please see the following <a "
|
@@ -253,7 +257,7 @@ msgstr ""
|
|
253 |
"Das Netzwerk hat Dein Konto gesperrt. Bitte beachte die folgende <a "
|
254 |
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
255 |
|
256 |
-
#: includes/Loader.php:
|
257 |
#, php-format
|
258 |
msgid ""
|
259 |
"The number of images is reached. Please see the following <a "
|
@@ -262,14 +266,14 @@ msgstr ""
|
|
262 |
"Die Anzahl der Bilder ist erreicht. Bitte beachte die folgende <a "
|
263 |
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
264 |
|
265 |
-
#: includes/Loader.php:
|
266 |
msgid ""
|
267 |
"Your daily limit for this network has been reached. Please try again later."
|
268 |
msgstr ""
|
269 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
270 |
"versuche es später noch einmal."
|
271 |
|
272 |
-
#: includes/Loader.php:
|
273 |
#, php-format
|
274 |
msgid ""
|
275 |
"The network can not publish special characters such as Emoji. Please see the "
|
@@ -278,26 +282,26 @@ msgstr ""
|
|
278 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Bitte "
|
279 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
280 |
|
281 |
-
#: includes/Loader.php:
|
282 |
msgid "Your post is a duplicate."
|
283 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
284 |
|
285 |
-
#: includes/Loader.php:
|
286 |
msgid "The network requires a public url."
|
287 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
288 |
|
289 |
-
#: includes/Loader.php:
|
290 |
msgid ""
|
291 |
"Your blog post was not available for the network at the time of publication."
|
292 |
msgstr ""
|
293 |
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
294 |
"nicht verfügbar."
|
295 |
|
296 |
-
#: includes/Loader.php:
|
297 |
msgid "You have already retweeted this post."
|
298 |
msgstr "Du hast diesen Post bereits retweetet."
|
299 |
|
300 |
-
#: includes/Loader.php:
|
301 |
msgid ""
|
302 |
"This XING API is no longer supported by XING. Please connect your XING "
|
303 |
"accounts with the new XING interface to reschedule your posts."
|
@@ -306,19 +310,19 @@ msgstr ""
|
|
306 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
307 |
"zu planen."
|
308 |
|
309 |
-
#: includes/Loader.php:
|
310 |
msgid "An image is required to post on this social network."
|
311 |
msgstr ""
|
312 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
313 |
"erforderlich."
|
314 |
|
315 |
-
#: includes/Loader.php:
|
316 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
317 |
msgstr ""
|
318 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
319 |
"erforderlich."
|
320 |
|
321 |
-
#: includes/Loader.php:
|
322 |
msgid ""
|
323 |
"Your post could not be posted, because your image can not be processed by "
|
324 |
"the network."
|
@@ -326,7 +330,7 @@ msgstr ""
|
|
326 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
327 |
"Netzwerk verarbeitet werden kann"
|
328 |
|
329 |
-
#: includes/Loader.php:
|
330 |
#, php-format
|
331 |
msgid ""
|
332 |
"Instagram published your post without text. Please see the following <a "
|
@@ -335,67 +339,67 @@ msgstr ""
|
|
335 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
336 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
337 |
|
338 |
-
#: includes/Loader.php:
|
339 |
msgid "Your group can not be found by the network."
|
340 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
341 |
|
342 |
-
#: includes/Loader.php:
|
343 |
msgid "Dashboard"
|
344 |
msgstr "Dashboard"
|
345 |
|
346 |
-
#: includes/Loader.php:
|
347 |
msgid "Share Website & Blog Content"
|
348 |
msgstr "Webseiten- & Blog Content teilen"
|
349 |
|
350 |
-
#: includes/Loader.php:
|
351 |
msgid "Site & Blog Content"
|
352 |
msgstr "Seiten & Blog Content"
|
353 |
|
354 |
-
#: includes/Loader.php:
|
355 |
msgid "Create Social Media Posts"
|
356 |
msgstr "Erstelle Social Media Posts"
|
357 |
|
358 |
-
#: includes/Loader.php:
|
359 |
msgid "Social Media Posts"
|
360 |
msgstr "Social Media Posts"
|
361 |
|
362 |
-
#: includes/Loader.php:
|
363 |
-
#: views/b2s/html/post.navbar.php:
|
364 |
msgid "Calendar"
|
365 |
msgstr "Kalender"
|
366 |
|
367 |
-
#: includes/Loader.php:
|
368 |
msgid "Networks"
|
369 |
msgstr "Netzwerke"
|
370 |
|
371 |
-
#: includes/Loader.php:
|
372 |
msgid "PR-Service"
|
373 |
msgstr "PR-Service"
|
374 |
|
375 |
-
#: includes/Loader.php:
|
376 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
377 |
#: views/b2s/html/sidebar.ship.php:66
|
378 |
msgid "Help & Support"
|
379 |
msgstr "Hilfe & Support"
|
380 |
|
381 |
-
#: includes/Loader.php:
|
382 |
msgid "Premium"
|
383 |
msgstr "Premium"
|
384 |
|
385 |
-
#: includes/Loader.php:
|
386 |
msgid "PREMIUM"
|
387 |
msgstr "PREMIUM"
|
388 |
|
389 |
-
#: includes/Loader.php:
|
390 |
#: views/b2s/html/sidebar.ship.php:24
|
391 |
msgid "Blog2Social"
|
392 |
msgstr "Blog2Social"
|
393 |
|
394 |
-
#: includes/Loader.php:
|
395 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
396 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
397 |
|
398 |
-
#: includes/Loader.php:
|
399 |
#, php-format
|
400 |
msgid ""
|
401 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
@@ -404,11 +408,11 @@ msgstr ""
|
|
404 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
405 |
"in unserem FAQs.</a>"
|
406 |
|
407 |
-
#: includes/Loader.php:
|
408 |
msgid "or"
|
409 |
msgstr "oder"
|
410 |
|
411 |
-
#: includes/Loader.php:
|
412 |
msgid "back to install plugins"
|
413 |
msgstr "zurück zur Pluginübersicht"
|
414 |
|
@@ -416,7 +420,7 @@ msgstr "zurück zur Pluginübersicht"
|
|
416 |
msgid "Rate it!"
|
417 |
msgstr "Bewerte uns!"
|
418 |
|
419 |
-
#: includes/Notice.php:18
|
420 |
msgid ""
|
421 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
422 |
"anything that does not work for you, please contact us!"
|
@@ -459,205 +463,205 @@ msgstr ""
|
|
459 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
460 |
"zu tun."
|
461 |
|
462 |
-
#: includes/Tools.php:
|
463 |
#: views/b2s/html/sidebar.ship.php:29
|
464 |
msgid "License"
|
465 |
msgstr "Lizenz"
|
466 |
|
467 |
-
#: includes/Tools.php:
|
468 |
msgid "Greece"
|
469 |
msgstr "Griechenland"
|
470 |
|
471 |
-
#: includes/Tools.php:
|
472 |
msgid "India"
|
473 |
msgstr "Indien"
|
474 |
|
475 |
-
#: includes/Tools.php:
|
476 |
msgid "United States of America"
|
477 |
msgstr "Vereinigte Staaten von Amerika"
|
478 |
|
479 |
-
#: includes/Tools.php:
|
480 |
msgid "Ireland"
|
481 |
msgstr "Irland"
|
482 |
|
483 |
-
#: includes/Tools.php:
|
484 |
msgid "Italy"
|
485 |
msgstr "Italien"
|
486 |
|
487 |
-
#: includes/Tools.php:
|
488 |
msgid "Switzerland"
|
489 |
msgstr "Schweiz"
|
490 |
|
491 |
-
#: includes/Tools.php:
|
492 |
msgid "Czechoslovakia"
|
493 |
msgstr "Tschechoslowakei"
|
494 |
|
495 |
-
#: includes/Tools.php:
|
496 |
msgid "Indonesia"
|
497 |
msgstr "Indonesien"
|
498 |
|
499 |
-
#: includes/Tools.php:
|
500 |
msgid "Spain"
|
501 |
msgstr "Spanien"
|
502 |
|
503 |
-
#: includes/Tools.php:
|
504 |
msgid "Canada"
|
505 |
msgstr "Kanada"
|
506 |
|
507 |
-
#: includes/Tools.php:
|
508 |
msgid "Great Britain"
|
509 |
msgstr "Großbritannien"
|
510 |
|
511 |
-
#: includes/Tools.php:
|
512 |
msgid "Russia"
|
513 |
msgstr "Russland"
|
514 |
|
515 |
-
#: includes/Tools.php:
|
516 |
msgid "Netherlands"
|
517 |
msgstr "Niederlande"
|
518 |
|
519 |
-
#: includes/Tools.php:
|
520 |
msgid "Portugal"
|
521 |
msgstr "Portugal"
|
522 |
|
523 |
-
#: includes/Tools.php:
|
524 |
msgid "Norway"
|
525 |
msgstr "Norwegen"
|
526 |
|
527 |
-
#: includes/Tools.php:
|
528 |
msgid "Turkey"
|
529 |
msgstr "Türkei"
|
530 |
|
531 |
-
#: includes/Tools.php:
|
532 |
msgid "Australia"
|
533 |
msgstr "Australien"
|
534 |
|
535 |
-
#: includes/Tools.php:
|
536 |
msgid "Austria"
|
537 |
msgstr "Österreich"
|
538 |
|
539 |
-
#: includes/Tools.php:
|
540 |
msgid "Poland"
|
541 |
msgstr "Polen"
|
542 |
|
543 |
-
#: includes/Tools.php:
|
544 |
msgid "France"
|
545 |
msgstr "Frankreich"
|
546 |
|
547 |
-
#: includes/Tools.php:
|
548 |
msgid "Romania"
|
549 |
msgstr "Rumänien"
|
550 |
|
551 |
-
#: includes/Tools.php:
|
552 |
msgid "Germany"
|
553 |
msgstr "Deutschland"
|
554 |
|
555 |
-
#: includes/Tools.php:
|
556 |
msgid "Denmark"
|
557 |
msgstr "Dänemark"
|
558 |
|
559 |
-
#: includes/Tools.php:
|
560 |
msgid "New Zealand"
|
561 |
msgstr "Neuseeland"
|
562 |
|
563 |
-
#: includes/Tools.php:
|
564 |
msgid "Finland"
|
565 |
msgstr "Finnland"
|
566 |
|
567 |
-
#: includes/Tools.php:
|
568 |
msgid "Hungary"
|
569 |
msgstr "Ungarn"
|
570 |
|
571 |
-
#: includes/Tools.php:
|
572 |
msgid "Japan"
|
573 |
msgstr "Japan"
|
574 |
|
575 |
-
#: includes/Tools.php:
|
576 |
msgid "Argentina"
|
577 |
msgstr "Argentinien"
|
578 |
|
579 |
-
#: includes/Tools.php:
|
580 |
msgid "Korea"
|
581 |
msgstr "Korea"
|
582 |
|
583 |
-
#: includes/Tools.php:
|
584 |
msgid "Sweden"
|
585 |
msgstr "Schweden"
|
586 |
|
587 |
-
#: includes/Tools.php:
|
588 |
msgid "Mexico"
|
589 |
msgstr "Mexiko"
|
590 |
|
591 |
-
#: includes/Tools.php:
|
592 |
msgid "Slovakia"
|
593 |
msgstr "Slowakei"
|
594 |
|
595 |
-
#: includes/Tools.php:
|
596 |
msgid "Chile"
|
597 |
msgstr "Chile"
|
598 |
|
599 |
-
#: includes/Tools.php:
|
600 |
msgid "Colombia"
|
601 |
msgstr "Kolumbien"
|
602 |
|
603 |
-
#: includes/Tools.php:
|
604 |
msgid "South Africa"
|
605 |
msgstr "Südafrika"
|
606 |
|
607 |
-
#: includes/Tools.php:
|
608 |
msgid "Philippines"
|
609 |
msgstr "Philippinen"
|
610 |
|
611 |
-
#: includes/Tools.php:
|
612 |
msgid "is determined automatically"
|
613 |
msgstr "wird automatisch ermittelt"
|
614 |
|
615 |
-
#: includes/Tools.php:
|
616 |
msgid "Search"
|
617 |
msgstr "Suche"
|
618 |
|
619 |
-
#: includes/Tools.php:
|
620 |
msgid "Recently Used"
|
621 |
msgstr "Zuletzt verwendet"
|
622 |
|
623 |
-
#: includes/Tools.php:
|
624 |
msgid "Smileys & People"
|
625 |
msgstr "Smileys & Personen"
|
626 |
|
627 |
-
#: includes/Tools.php:
|
628 |
msgid "Animals & Nature"
|
629 |
msgstr "Tiere & Natur"
|
630 |
|
631 |
-
#: includes/Tools.php:
|
632 |
msgid "Food & Drink"
|
633 |
msgstr "Essen & Trinken"
|
634 |
|
635 |
-
#: includes/Tools.php:
|
636 |
msgid "Activities"
|
637 |
msgstr "Aktivitäten"
|
638 |
|
639 |
-
#: includes/Tools.php:
|
640 |
msgid "Travel & Places"
|
641 |
msgstr "Reisen & Orte"
|
642 |
|
643 |
-
#: includes/Tools.php:
|
644 |
msgid "Objects"
|
645 |
msgstr "Objekte"
|
646 |
|
647 |
-
#: includes/Tools.php:
|
648 |
msgid "Symbols"
|
649 |
msgstr "Symbole"
|
650 |
|
651 |
-
#: includes/Tools.php:
|
652 |
msgid "Flags"
|
653 |
msgstr "Flaggen"
|
654 |
|
655 |
-
#: includes/Tools.php:
|
656 |
msgid "No emojis found"
|
657 |
msgstr "Keine Ergebnisse"
|
658 |
|
659 |
#: includes/Util.php:43 views/b2s/post.sched.php:33
|
660 |
-
#: includes/B2S/Network/Item.php:
|
661 |
msgid "Clock"
|
662 |
msgstr "Uhr"
|
663 |
|
@@ -704,15 +708,15 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
|
704 |
msgid "Please contact our support!"
|
705 |
msgstr "Bitte kontaktiere unseren Support!"
|
706 |
|
707 |
-
#: includes/Ajax/Post.php:
|
708 |
-
#: includes/B2S/Network/Item.php:
|
709 |
-
#: includes/B2S/Network/Item.php:
|
710 |
msgid "Unknown username"
|
711 |
msgstr "unbekannter Blog-Nutzer"
|
712 |
|
713 |
-
#: includes/Ajax/Post.php:
|
714 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
715 |
-
#: includes/B2S/Post/Item.php:
|
716 |
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
|
717 |
#: includes/B2S/Ship/Item.php:1281
|
718 |
msgid "delete"
|
@@ -722,7 +726,7 @@ msgstr "löschen"
|
|
722 |
msgid "Please see FAQ"
|
723 |
msgstr "Siehe FAQ"
|
724 |
|
725 |
-
#: includes/B2S/PostBox.php:143 views/b2s/ship.php:
|
726 |
#: views/b2s/html/header.php:60
|
727 |
msgid "The connection to the server failed. Try again!"
|
728 |
msgstr ""
|
@@ -768,7 +772,7 @@ msgstr "Anpassen & Planen"
|
|
768 |
#: includes/B2S/PostBox.php:253 views/b2s/network.php:42 views/b2s/ship.php:76
|
769 |
#: views/b2s/ship.php:166 views/b2s/ship.php:258
|
770 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
771 |
-
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:
|
772 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
773 |
#: includes/B2S/Ship/Item.php:1095
|
774 |
msgid "Info"
|
@@ -832,12 +836,12 @@ msgstr ""
|
|
832 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
833 |
"Community zu erzielen"
|
834 |
|
835 |
-
#: includes/B2S/PostBox.php:207 views/b2s/html/footer.php:
|
836 |
-
#: views/b2s/html/footer.php:
|
837 |
msgid "Blog2Social: Social Media Auto-Posting"
|
838 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
839 |
|
840 |
-
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:
|
841 |
msgid ""
|
842 |
"Share your blog posts with the Auto Poster: Your blog posts will be shared "
|
843 |
"automatically on your social media channels as soon as you publish or update "
|
@@ -850,7 +854,7 @@ msgstr ""
|
|
850 |
"in WordPress vorgeplante Blogbeiträge automatisch geteilt werden, sobald sie "
|
851 |
"veröffentlicht werden."
|
852 |
|
853 |
-
#: includes/B2S/PostBox.php:212 views/b2s/html/footer.php:
|
854 |
#, php-format
|
855 |
msgid ""
|
856 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your "
|
@@ -859,8 +863,8 @@ msgstr ""
|
|
859 |
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für Deine "
|
860 |
"Blogbeiträge einrichtest.</a>"
|
861 |
|
862 |
-
#: includes/B2S/PostBox.php:216 views/b2s/html/footer.php:
|
863 |
-
#: views/b2s/html/footer.php:
|
864 |
msgid "You want to auto-post your blog post?"
|
865 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
866 |
|
@@ -868,9 +872,9 @@ msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
|
868 |
#: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
|
869 |
#: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
|
870 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
871 |
-
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:
|
872 |
-
#: views/b2s/html/footer.php:
|
873 |
-
#: views/b2s/html/footer.php:
|
874 |
msgid "With Blog2Social Premium you can:"
|
875 |
msgstr "Mit Blog2Social kannst Du:"
|
876 |
|
@@ -878,9 +882,9 @@ msgstr "Mit Blog2Social kannst Du:"
|
|
878 |
#: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
|
879 |
#: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
|
880 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
881 |
-
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:
|
882 |
-
#: views/b2s/html/footer.php:
|
883 |
-
#: views/b2s/html/footer.php:
|
884 |
msgid "Post on pages and groups"
|
885 |
msgstr "Poste auf Seiten und in Gruppen"
|
886 |
|
@@ -888,9 +892,9 @@ msgstr "Poste auf Seiten und in Gruppen"
|
|
888 |
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
|
889 |
#: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
|
890 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
891 |
-
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:
|
892 |
-
#: views/b2s/html/footer.php:
|
893 |
-
#: views/b2s/html/footer.php:
|
894 |
msgid "Share on multiple profiles, pages and groups"
|
895 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
896 |
|
@@ -899,8 +903,8 @@ msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
|
899 |
#: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
|
900 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
901 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
902 |
-
#: views/b2s/html/footer.php:
|
903 |
-
#: views/b2s/html/footer.php:
|
904 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
905 |
msgstr ""
|
906 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
@@ -910,9 +914,9 @@ msgstr ""
|
|
910 |
#: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
|
911 |
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
|
912 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
913 |
-
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:
|
914 |
-
#: views/b2s/html/footer.php:
|
915 |
-
#: views/b2s/html/footer.php:
|
916 |
msgid "Schedule your posts at the best times on each network"
|
917 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
918 |
|
@@ -920,9 +924,9 @@ msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
|
920 |
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
|
921 |
#: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
|
922 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
923 |
-
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:
|
924 |
-
#: views/b2s/html/footer.php:
|
925 |
-
#: views/b2s/html/footer.php:
|
926 |
msgid ""
|
927 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
928 |
"social media posts"
|
@@ -932,9 +936,9 @@ msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
|
932 |
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
|
933 |
#: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
|
934 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
935 |
-
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:
|
936 |
-
#: views/b2s/html/footer.php:
|
937 |
-
#: views/b2s/html/footer.php:
|
938 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
939 |
msgstr ""
|
940 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
@@ -944,9 +948,9 @@ msgstr ""
|
|
944 |
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
|
945 |
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
|
946 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
947 |
-
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:
|
948 |
-
#: views/b2s/html/footer.php:
|
949 |
-
#: views/b2s/html/footer.php:
|
950 |
msgid "Schedule and re-share old posts"
|
951 |
msgstr "Plane und teile alte Beiträge"
|
952 |
|
@@ -955,8 +959,8 @@ msgstr "Plane und teile alte Beiträge"
|
|
955 |
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
|
956 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
957 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
958 |
-
#: views/b2s/html/footer.php:
|
959 |
-
#: views/b2s/html/footer.php:
|
960 |
msgid "Select link format or image format for your posts"
|
961 |
msgstr ""
|
962 |
"Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
@@ -966,8 +970,8 @@ msgstr ""
|
|
966 |
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
|
967 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
968 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
969 |
-
#: views/b2s/html/footer.php:
|
970 |
-
#: views/b2s/html/footer.php:
|
971 |
msgid "Select individual images per post"
|
972 |
msgstr ""
|
973 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
@@ -976,9 +980,9 @@ msgstr ""
|
|
976 |
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
|
977 |
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
|
978 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
979 |
-
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:
|
980 |
-
#: views/b2s/html/footer.php:
|
981 |
-
#: views/b2s/html/footer.php:
|
982 |
msgid ""
|
983 |
"Reporting & calendar: keep track of your published and scheduled social "
|
984 |
"media posts"
|
@@ -990,9 +994,9 @@ msgstr ""
|
|
990 |
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
|
991 |
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
|
992 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
993 |
-
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:
|
994 |
-
#: views/b2s/html/footer.php:
|
995 |
-
#: views/b2s/html/footer.php:
|
996 |
msgid "Upgrade to SMART and above"
|
997 |
msgstr "Upgrade auf SMART und höher"
|
998 |
|
@@ -1003,8 +1007,8 @@ msgstr "Upgrade auf SMART und höher"
|
|
1003 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
1004 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
1005 |
#: views/b2s/html/footer.php:273 views/b2s/html/footer.php:313
|
1006 |
-
#: views/b2s/html/footer.php:
|
1007 |
-
#: views/b2s/html/footer.php:
|
1008 |
#, php-format
|
1009 |
msgid ""
|
1010 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
@@ -1067,7 +1071,7 @@ msgstr "sofort nach Veröffentlichung"
|
|
1067 |
msgid "at best times"
|
1068 |
msgstr "zu den besten Zeiten"
|
1069 |
|
1070 |
-
#: views/b2s/autopost.php:18 views/b2s/settings.php:
|
1071 |
#: includes/B2S/Ship/Image.php:29
|
1072 |
msgid ""
|
1073 |
"You need a higher user role to upload an image on this blog. Please contact "
|
@@ -1076,26 +1080,26 @@ msgstr ""
|
|
1076 |
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
1077 |
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
1078 |
|
1079 |
-
#: views/b2s/autopost.php:27 views/b2s/settings.php:
|
1080 |
msgid "save..."
|
1081 |
msgstr "speichere Daten..."
|
1082 |
|
1083 |
-
#: views/b2s/autopost.php:48 views/b2s/settings.php:
|
1084 |
#: includes/B2S/Ship/Image.php:96
|
1085 |
msgid "Select or upload an image from media gallery"
|
1086 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
1087 |
|
1088 |
-
#: views/b2s/autopost.php:49 views/b2s/settings.php:
|
1089 |
#: includes/B2S/Ship/Image.php:97
|
1090 |
msgid "Use image"
|
1091 |
msgstr "Bild verwenden"
|
1092 |
|
1093 |
-
#: views/b2s/autopost.php:59 views/b2s/settings.php:
|
1094 |
#: includes/B2S/Settings/Item.php:53
|
1095 |
msgid "Personal Time Zone"
|
1096 |
msgstr "Persönliche Zeitzone"
|
1097 |
|
1098 |
-
#: views/b2s/autopost.php:62 views/b2s/settings.php:
|
1099 |
msgid ""
|
1100 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
1101 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -1170,15 +1174,15 @@ msgstr ""
|
|
1170 |
msgid "Get the Blog2Social Browser Extension"
|
1171 |
msgstr "Blog2Social Browser Erweiterung"
|
1172 |
|
1173 |
-
#: views/b2s/curation.draft.php:47 views/b2s/
|
1174 |
-
#: views/b2s/network.php:
|
1175 |
#: views/b2s/network.php:373 views/b2s/network.php:452
|
1176 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1177 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1178 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
1179 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1180 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1181 |
-
#: views/b2s/ship.php:603 views/b2s/ship.php:
|
1182 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
1183 |
msgid "Loading..."
|
1184 |
msgstr "Wird geladen..."
|
@@ -1230,10 +1234,10 @@ msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
|
1230 |
msgid "Saved as draft."
|
1231 |
msgstr "Als Entwurf gespeichert."
|
1232 |
|
1233 |
-
#: views/b2s/curation.php:45 views/b2s/
|
1234 |
-
#: views/b2s/post.
|
1235 |
-
#:
|
1236 |
-
#:
|
1237 |
msgid "Link Post"
|
1238 |
msgstr "Link-Beitrag"
|
1239 |
|
@@ -1242,9 +1246,9 @@ msgid "Video Post"
|
|
1242 |
msgstr "Video-Beitrag"
|
1243 |
|
1244 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1245 |
-
#: views/b2s/
|
1246 |
-
#: views/b2s/
|
1247 |
-
#: includes/B2S/Settings/Item.php:
|
1248 |
msgid "Image Post"
|
1249 |
msgstr "Bild-Beitrag"
|
1250 |
|
@@ -1254,12 +1258,12 @@ msgid "Text Post"
|
|
1254 |
msgstr "Text-Beitrag"
|
1255 |
|
1256 |
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:35
|
1257 |
-
#: includes/B2S/Network/Item.php:
|
1258 |
-
#: includes/B2S/Network/Item.php:
|
1259 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1260 |
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
1261 |
-
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:
|
1262 |
-
#: includes/B2S/Ship/Portale.php:
|
1263 |
msgid "PRO"
|
1264 |
msgstr "PRO"
|
1265 |
|
@@ -1329,7 +1333,7 @@ msgid "Create a new post"
|
|
1329 |
msgstr "Neuen Social Media Post erstellen"
|
1330 |
|
1331 |
#: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
|
1332 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:
|
1333 |
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
|
1334 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1335 |
msgid "published"
|
@@ -1534,49 +1538,30 @@ msgstr ""
|
|
1534 |
"Netzwerkauswahl genutzt wird. <a href=\"%s\" target=\"_blank\">So erstellen "
|
1535 |
"Sie eine Netzwerk-Gruppierung</a>"
|
1536 |
|
1537 |
-
#: views/b2s/dashboard.php:
|
1538 |
msgid "Your Activity"
|
1539 |
msgstr "Deine Aktivität"
|
1540 |
|
1541 |
-
#: views/b2s/dashboard.php:
|
1542 |
msgid "List"
|
1543 |
msgstr "Liste"
|
1544 |
|
1545 |
-
#: views/b2s/dashboard.php:
|
1546 |
msgid "Chart"
|
1547 |
msgstr "Diagramm"
|
1548 |
|
1549 |
-
#: views/b2s/dashboard.php:
|
1550 |
msgid "Follow us"
|
1551 |
msgstr "Folge uns"
|
1552 |
|
1553 |
-
#: views/b2s/dashboard.php:
|
1554 |
msgid "show full calendar"
|
1555 |
msgstr "Vollständigen Kalender anzeigen"
|
1556 |
|
1557 |
-
#: views/b2s/insights.php:56 views/b2s/post.calendar.php:88
|
1558 |
-
#: views/b2s/post.sched.php:172 views/b2s/repost.php:56
|
1559 |
-
msgid "add post"
|
1560 |
-
msgstr "Beitrag hinzufügen"
|
1561 |
-
|
1562 |
-
#: views/b2s/insights.php:73 views/b2s/post.calendar.php:70
|
1563 |
-
#: views/b2s/post.sched.php:189 views/b2s/repost.php:73
|
1564 |
-
#: includes/B2S/Network/Item.php:700 includes/B2S/Network/Item.php:703
|
1565 |
-
#: includes/B2S/Settings/Item.php:239 views/b2s/html/footer.php:177
|
1566 |
-
msgid "Image with frame"
|
1567 |
-
msgstr "Bild mit Rahmen"
|
1568 |
-
|
1569 |
-
#: views/b2s/insights.php:73 views/b2s/post.calendar.php:70
|
1570 |
-
#: views/b2s/post.sched.php:189 views/b2s/repost.php:73
|
1571 |
-
#: includes/B2S/Network/Item.php:701 includes/B2S/Network/Item.php:704
|
1572 |
-
#: includes/B2S/Settings/Item.php:253 views/b2s/html/footer.php:182
|
1573 |
-
msgid "Image cut out"
|
1574 |
-
msgstr "Bild zuschneiden"
|
1575 |
-
|
1576 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1577 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1578 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1579 |
-
#: views/b2s/html/post.navbar.php:
|
1580 |
msgid "filter"
|
1581 |
msgstr "Filter"
|
1582 |
|
@@ -1714,25 +1699,26 @@ msgstr "Could not be changed"
|
|
1714 |
msgid "modify"
|
1715 |
msgstr "modify"
|
1716 |
|
1717 |
-
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:
|
1718 |
-
#: includes/B2S/Network/Item.php:
|
1719 |
msgid "Edit Post Template"
|
1720 |
msgstr "Beitragsvorlage bearbeiten"
|
1721 |
|
1722 |
#: views/b2s/network.php:230 views/b2s/ship.php:23
|
1723 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1724 |
-
#: includes/B2S/Network/Item.php:
|
1725 |
-
#: includes/B2S/Network/Item.php:
|
1726 |
-
#: includes/B2S/
|
1727 |
-
#: includes/B2S/
|
1728 |
-
#:
|
1729 |
-
#: views/b2s/html/post.navbar.php:
|
|
|
1730 |
#: views/b2s/widgets/posts.php:18
|
1731 |
msgid "SMART"
|
1732 |
msgstr "SMART"
|
1733 |
|
1734 |
-
#: views/b2s/network.php:242 views/b2s/settings.php:
|
1735 |
-
#: includes/B2S/Network/Item.php:
|
1736 |
msgid "save"
|
1737 |
msgstr "speichern"
|
1738 |
|
@@ -1811,7 +1797,7 @@ msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
|
1811 |
msgid "The name of the post author."
|
1812 |
msgstr "Der Name des Autors Deines Beitrags."
|
1813 |
|
1814 |
-
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:
|
1815 |
msgid "Character limit"
|
1816 |
msgstr "Zeichenbegrenzung"
|
1817 |
|
@@ -2098,7 +2084,7 @@ msgstr ""
|
|
2098 |
msgid "Upgrade to Blog2Social Business"
|
2099 |
msgstr "Upgrade auf Blog2Social Business"
|
2100 |
|
2101 |
-
#: views/b2s/network.php:556 includes/B2S/Network/Item.php:
|
2102 |
#, php-format
|
2103 |
msgid ""
|
2104 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -2113,11 +2099,11 @@ msgstr ""
|
|
2113 |
msgid "My Profile"
|
2114 |
msgstr "Mein Profil"
|
2115 |
|
2116 |
-
#: views/b2s/network.php:603 views/b2s/ship.php:
|
2117 |
msgid "Add Page"
|
2118 |
msgstr "Seite hinzufügen"
|
2119 |
|
2120 |
-
#: views/b2s/network.php:608 views/b2s/ship.php:
|
2121 |
#, php-format
|
2122 |
msgid ""
|
2123 |
"Please make sure to log in with your account which manages your pages and <a "
|
@@ -2128,16 +2114,16 @@ msgstr ""
|
|
2128 |
"Guide, um alle Deine Seiten auswählen zu können</a>."
|
2129 |
|
2130 |
#: views/b2s/network.php:609 views/b2s/network.php:628
|
2131 |
-
#: views/b2s/network.php:647 views/b2s/
|
2132 |
-
#: views/b2s/ship.php:720
|
2133 |
msgid "Continue"
|
2134 |
msgstr "Fortsetzen"
|
2135 |
|
2136 |
-
#: views/b2s/network.php:622 views/b2s/ship.php:
|
2137 |
msgid "Add Group"
|
2138 |
msgstr "Gruppe hinzufügen"
|
2139 |
|
2140 |
-
#: views/b2s/network.php:627 views/b2s/ship.php:
|
2141 |
#, php-format
|
2142 |
msgid ""
|
2143 |
"Please make sure to log in with your account which manages your groups and "
|
@@ -2174,6 +2160,107 @@ msgstr ""
|
|
2174 |
"um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
|
2175 |
"Informationen: So verbindest Du Deine Website mit Instagram.</a>"
|
2176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2177 |
#: views/b2s/post.approve.php:89
|
2178 |
msgid "Delete Social Media Posts"
|
2179 |
msgstr "Social Media Posts löschen"
|
@@ -2202,6 +2289,25 @@ msgstr "alles anzeigen"
|
|
2202 |
msgid "scheduled"
|
2203 |
msgstr "geplant"
|
2204 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2205 |
#: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
|
2206 |
#: views/b2s/repost.php:104 views/b2s/ship.php:507
|
2207 |
msgid "Choose your"
|
@@ -2411,8 +2517,8 @@ msgstr ""
|
|
2411 |
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
2412 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2413 |
|
2414 |
-
#: views/b2s/premium.php:109 includes/B2S/
|
2415 |
-
#: includes/B2S/Post/Item.php:
|
2416 |
msgid "Auto-Posting"
|
2417 |
msgstr "Auto-Posting"
|
2418 |
|
@@ -2509,27 +2615,27 @@ msgstr "Versionen und Preise anzeigen"
|
|
2509 |
msgid "Show all premium features"
|
2510 |
msgstr "Alle Premium-Features anzeigen"
|
2511 |
|
2512 |
-
#: views/b2s/settings.php:
|
2513 |
msgid "General"
|
2514 |
msgstr "Allgemein"
|
2515 |
|
2516 |
-
#: views/b2s/settings.php:
|
2517 |
msgid "Social Meta Data"
|
2518 |
msgstr "Social Meta Angaben"
|
2519 |
|
2520 |
-
#: views/b2s/settings.php:
|
2521 |
msgid "Social Media Networks"
|
2522 |
msgstr "Social-Media-Netzwerke"
|
2523 |
|
2524 |
-
#: views/b2s/settings.php:
|
2525 |
msgid "Social Media Time Settings"
|
2526 |
msgstr "Social-Media-Zeiteinstellungen"
|
2527 |
|
2528 |
-
#: views/b2s/settings.php:
|
2529 |
msgid "Post Templates"
|
2530 |
msgstr "Beitragsvorlagen"
|
2531 |
|
2532 |
-
#: views/b2s/settings.php:
|
2533 |
msgid ""
|
2534 |
"Connect Blog2Social with 16 different social media networks you like to "
|
2535 |
"share your WordPress blog posts and pages as well as imported posts and "
|
@@ -2539,7 +2645,7 @@ msgstr ""
|
|
2539 |
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
2540 |
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
2541 |
|
2542 |
-
#: views/b2s/settings.php:
|
2543 |
#, php-format
|
2544 |
msgid ""
|
2545 |
"You will find more information on how to connect your social media networks "
|
@@ -2550,11 +2656,11 @@ msgstr ""
|
|
2550 |
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
2551 |
"Social-Media-Netzwerke verbinden kannst."
|
2552 |
|
2553 |
-
#: views/b2s/settings.php:
|
2554 |
msgid "Connect your social media networks"
|
2555 |
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
2556 |
|
2557 |
-
#: views/b2s/settings.php:
|
2558 |
msgid ""
|
2559 |
"Use the pre-defined best time settings or define your own best time settings "
|
2560 |
"for sharing your posts . Posting at the right time can be essential to make "
|
@@ -2565,7 +2671,7 @@ msgstr ""
|
|
2565 |
"geteilt werden sollen. Das Posten zur richtigen Zeit ist essentiell, um mehr "
|
2566 |
"Aufmerksamkeit und Engagement mit Deinen Social Media Beiträgen zu erzielen."
|
2567 |
|
2568 |
-
#: views/b2s/settings.php:
|
2569 |
#, php-format
|
2570 |
msgid ""
|
2571 |
"You will find more information about the pre-defined best time settings by "
|
@@ -2575,7 +2681,7 @@ msgstr ""
|
|
2575 |
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
2576 |
"Zeiten\"-Guide</a>."
|
2577 |
|
2578 |
-
#: views/b2s/settings.php:
|
2579 |
#, php-format
|
2580 |
msgid ""
|
2581 |
"An instruction on how to define your own best times is explained in the "
|
@@ -2586,13 +2692,13 @@ msgstr ""
|
|
2586 |
"findest Du in dem Guide \"<a href=\"%s\" target=\"_blank\">Wie stelle ich "
|
2587 |
"meine eigenen Zeiteinstellungen zum Posten in sozialen Medien ein?</a>\". "
|
2588 |
|
2589 |
-
#: views/b2s/settings.php:
|
2590 |
msgid "Check, edit or define your social media time settings"
|
2591 |
msgstr ""
|
2592 |
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
2593 |
"Netzwerke"
|
2594 |
|
2595 |
-
#: views/b2s/settings.php:
|
2596 |
msgid ""
|
2597 |
"Edit the post templates for each social media network to turn your social "
|
2598 |
"media posts automatically into tailored posts for each network and community."
|
@@ -2603,15 +2709,15 @@ msgstr ""
|
|
2603 |
"Netzwerk und jede Community zu verwandeln. Du kannst den Inhalt Deines "
|
2604 |
"Beitrags mit den folgenden Variablen bearbeiten:"
|
2605 |
|
2606 |
-
#: views/b2s/settings.php:
|
2607 |
msgid "Title: The title of your post."
|
2608 |
msgstr "Titel: Der Titel Deines Beitrags."
|
2609 |
|
2610 |
-
#: views/b2s/settings.php:
|
2611 |
msgid "Content: The content of your post."
|
2612 |
msgstr "Content: Der Inhalt Deines Beitrags."
|
2613 |
|
2614 |
-
#: views/b2s/settings.php:
|
2615 |
msgid ""
|
2616 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2617 |
"post)."
|
@@ -2619,15 +2725,15 @@ msgstr ""
|
|
2619 |
"Textauszug: Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü "
|
2620 |
"deines Beitrags festgelegt)."
|
2621 |
|
2622 |
-
#: views/b2s/settings.php:
|
2623 |
msgid "Keywords: The tags you have set in your post."
|
2624 |
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2625 |
|
2626 |
-
#: views/b2s/settings.php:
|
2627 |
msgid "Author: The author of the post."
|
2628 |
msgstr "Author: Der Autor des Beitrags."
|
2629 |
|
2630 |
-
#: views/b2s/settings.php:
|
2631 |
#, php-format
|
2632 |
msgid ""
|
2633 |
"You will find more information on how to use post templates for your social "
|
@@ -2637,17 +2743,17 @@ msgstr ""
|
|
2637 |
"Media-Netzwerke nutzen kannst, findest Du in diesem <a href=\"%s\" "
|
2638 |
"target=\"_blank\">\"Beitragsvorlagen\"-Guide</a>."
|
2639 |
|
2640 |
-
#: views/b2s/settings.php:
|
2641 |
msgid "Define your post templates for each social media network"
|
2642 |
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
2643 |
|
2644 |
-
#: views/b2s/settings.php:
|
2645 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
2646 |
msgstr ""
|
2647 |
"Berücksichtige Shortcodes in meinen Social Media Beiträgen (z.B. Page-"
|
2648 |
"Builder)"
|
2649 |
|
2650 |
-
#: views/b2s/settings.php:
|
2651 |
#, php-format
|
2652 |
msgid ""
|
2653 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
@@ -2671,21 +2777,21 @@ msgstr ""
|
|
2671 |
"Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
|
2672 |
"target=\"_blank\">Guide</a>."
|
2673 |
|
2674 |
-
#: views/b2s/settings.php:
|
2675 |
msgid "Activate Legacy mode "
|
2676 |
msgstr "Kompatibilitätsmodus aktivieren"
|
2677 |
|
2678 |
-
#: views/b2s/settings.php:
|
2679 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2680 |
msgstr ""
|
2681 |
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
2682 |
"entlasten."
|
2683 |
|
2684 |
-
#: views/b2s/settings.php:
|
2685 |
msgid "Instant Caching for Facebook Link Posts"
|
2686 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2687 |
|
2688 |
-
#: views/b2s/settings.php:
|
2689 |
msgid ""
|
2690 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2691 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -2915,11 +3021,26 @@ msgstr ""
|
|
2915 |
"damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
|
2916 |
"möchtest?"
|
2917 |
|
2918 |
-
#: views/b2s/ship.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2919 |
msgid "add Schedule"
|
2920 |
msgstr "Zeitplan hinzufügen"
|
2921 |
|
2922 |
-
#: views/b2s/ship.php:
|
2923 |
msgid "Give me more information"
|
2924 |
msgstr "Erhalte mehr Infomationen"
|
2925 |
|
@@ -3282,15 +3403,19 @@ msgid "Yes, I accept"
|
|
3282 |
msgstr "Ja,einverstanden"
|
3283 |
|
3284 |
#: includes/B2S/AutoPost/Item.php:39
|
|
|
3285 |
msgid ""
|
3286 |
-
"
|
3287 |
-
"
|
3288 |
-
"Facebook Profile
|
|
|
|
|
3289 |
msgstr ""
|
3290 |
-
"
|
3291 |
-
"
|
3292 |
-
"Klick auf den
|
3293 |
-
"gesendet werden."
|
|
|
3294 |
|
3295 |
#: includes/B2S/AutoPost/Item.php:42
|
3296 |
msgid "Autoposter"
|
@@ -3427,7 +3552,7 @@ msgstr "Minuten"
|
|
3427 |
msgid "Save"
|
3428 |
msgstr " Speichern"
|
3429 |
|
3430 |
-
#: includes/B2S/AutoPost/Item.php:241 includes/B2S/Network/Item.php:
|
3431 |
msgid "Connections"
|
3432 |
msgstr "Verbindungen"
|
3433 |
|
@@ -3477,112 +3602,107 @@ msgstr "Startdatum"
|
|
3477 |
msgid "Customize & Schedule"
|
3478 |
msgstr "Anpassen & Planen"
|
3479 |
|
3480 |
-
#: includes/B2S/
|
3481 |
-
msgid "Posts"
|
3482 |
-
msgstr "Posts"
|
3483 |
-
|
3484 |
-
#: includes/B2S/Insights/Item.php:75 includes/B2S/Post/Item.php:737
|
3485 |
-
msgid "show"
|
3486 |
-
msgstr "ansehen"
|
3487 |
-
|
3488 |
-
#: includes/B2S/Insights/Item.php:76 includes/B2S/Post/Item.php:750
|
3489 |
-
#, php-format
|
3490 |
-
msgid "sharing in progress by %s"
|
3491 |
-
msgstr "wird gerade von %s geteilt"
|
3492 |
-
|
3493 |
-
#: includes/B2S/Insights/Item.php:76 includes/B2S/Post/Item.php:750
|
3494 |
-
#, php-format
|
3495 |
-
msgid "shared by %s"
|
3496 |
-
msgstr "von %s geteilt"
|
3497 |
-
|
3498 |
-
#: includes/B2S/Insights/Item.php:78 includes/B2S/Post/Item.php:728
|
3499 |
-
#: includes/B2S/Post/Item.php:869 includes/B2S/Ship/Save.php:448
|
3500 |
-
msgid "Retweet"
|
3501 |
-
msgstr "Retweet"
|
3502 |
-
|
3503 |
-
#: includes/B2S/Insights/Item.php:78 includes/B2S/Post/Item.php:728
|
3504 |
-
#: includes/B2S/Post/Item.php:869
|
3505 |
-
msgid "Re-Share"
|
3506 |
-
msgstr "Wiederholt geteilt"
|
3507 |
-
|
3508 |
-
#: includes/B2S/Network/Item.php:63
|
3509 |
msgid "Default"
|
3510 |
msgstr "Standard"
|
3511 |
|
3512 |
-
#: includes/B2S/Network/Item.php:
|
3513 |
msgid "Show all"
|
3514 |
msgstr "alle anzeigen"
|
3515 |
|
3516 |
-
#: includes/B2S/Network/Item.php:
|
3517 |
msgid "My profile"
|
3518 |
msgstr "Mein Profil"
|
3519 |
|
3520 |
-
#: includes/B2S/Network/Item.php:
|
3521 |
msgid "Your profiles:"
|
3522 |
msgstr "weitere Profile:"
|
3523 |
|
3524 |
-
#: includes/B2S/Network/Item.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3525 |
msgid "Best times"
|
3526 |
msgstr "Beste Zeiten"
|
3527 |
|
3528 |
-
#: includes/B2S/Network/Item.php:
|
3529 |
#: includes/B2S/Ship/Item.php:331 includes/B2S/Ship/Navbar.php:90
|
3530 |
-
#: includes/B2S/Ship/Portale.php:
|
3531 |
msgid "Blog"
|
3532 |
msgstr "Blog"
|
3533 |
|
3534 |
-
#: includes/B2S/Network/Item.php:
|
3535 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3536 |
msgid "You want to connect a network profile?"
|
3537 |
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
3538 |
|
3539 |
-
#: includes/B2S/Network/Item.php:
|
3540 |
msgid "BUSINESS"
|
3541 |
msgstr "BUSINESS"
|
3542 |
|
3543 |
-
#: includes/B2S/Network/Item.php:
|
3544 |
msgid "You want to connect a network page?"
|
3545 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
3546 |
|
3547 |
-
#: includes/B2S/Network/Item.php:
|
3548 |
#: includes/B2S/Ship/Portale.php:31
|
3549 |
msgid "Publication"
|
3550 |
msgstr "Publication"
|
3551 |
|
3552 |
-
#: includes/B2S/Network/Item.php:
|
3553 |
msgid "You want to connect a social media group?"
|
3554 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
3555 |
|
3556 |
-
#: includes/B2S/Network/Item.php:
|
3557 |
msgid "Best Time Manager"
|
3558 |
msgstr "Best Time Manager"
|
3559 |
|
3560 |
-
#: includes/B2S/Network/Item.php:
|
3561 |
-
#: includes/B2S/Network/Item.php:
|
3562 |
msgid "To reactivate this connection,"
|
3563 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
3564 |
|
3565 |
-
#: includes/B2S/Network/Item.php:
|
3566 |
-
#: includes/B2S/Network/Item.php:
|
3567 |
msgid "please upgrade"
|
3568 |
msgstr "Bitte upgraden"
|
3569 |
|
3570 |
-
#: includes/B2S/Network/Item.php:
|
3571 |
-
#: includes/B2S/Network/Item.php:
|
3572 |
msgid "Connection is interrupted since"
|
3573 |
msgstr "Verbindung ist unterbrochen seit"
|
3574 |
|
3575 |
-
#: includes/B2S/Network/Item.php:
|
3576 |
-
#: includes/B2S/Network/Item.php:
|
3577 |
msgid "Assigned by"
|
3578 |
msgstr "Zugewiesen von"
|
3579 |
|
3580 |
-
#: includes/B2S/Network/Item.php:
|
3581 |
-
#: includes/B2S/Network/Item.php:
|
3582 |
msgid "Days"
|
3583 |
msgstr "Tage"
|
3584 |
|
3585 |
-
#: includes/B2S/Network/Item.php:
|
3586 |
#, php-format
|
3587 |
msgid ""
|
3588 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
@@ -3591,50 +3711,50 @@ msgstr ""
|
|
3591 |
"Unternehmensseite (Arbeitgeberprofil, <a href=\"%s\" target=\"_blank\">Altes "
|
3592 |
"Design bis 30.11.2020</a>)"
|
3593 |
|
3594 |
-
#: includes/B2S/Network/Item.php:
|
3595 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3596 |
msgstr "Unternehmensseite (Arbeitgeberprofil, Neues Design)"
|
3597 |
|
3598 |
-
#: includes/B2S/Network/Item.php:
|
3599 |
msgid "Connection currently assigned to"
|
3600 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
3601 |
|
3602 |
-
#: includes/B2S/Network/Item.php:
|
3603 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3604 |
#: views/prg/html/form.php:163
|
3605 |
msgid "Name"
|
3606 |
msgstr "Name"
|
3607 |
|
3608 |
-
#: includes/B2S/Network/Item.php:
|
3609 |
msgid "Value"
|
3610 |
msgstr "Zugeordneter Wert"
|
3611 |
|
3612 |
-
#: includes/B2S/Network/Item.php:
|
3613 |
msgid "+ add Parameter"
|
3614 |
msgstr "+ Parameter hinzufügen"
|
3615 |
|
3616 |
-
#: includes/B2S/Network/Item.php:
|
3617 |
#, php-format
|
3618 |
msgid "Apply for all %s connections"
|
3619 |
msgstr "Für alle %s Verbindungen übernehmen"
|
3620 |
|
3621 |
-
#: includes/B2S/Network/Item.php:
|
3622 |
msgid "Apply for all connections"
|
3623 |
msgstr "Für alle Verbindungen übernehmen"
|
3624 |
|
3625 |
-
#: includes/B2S/Network/Item.php:
|
3626 |
msgid "Successfully saved"
|
3627 |
msgstr "Erfolgreich gespeichert"
|
3628 |
|
3629 |
-
#: includes/B2S/Network/Item.php:
|
3630 |
msgid "Failed to save"
|
3631 |
msgstr "Speichern fehlgeschlagen"
|
3632 |
|
3633 |
-
#: includes/B2S/Network/Item.php:
|
3634 |
msgid "Failed to load the default template"
|
3635 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
3636 |
|
3637 |
-
#: includes/B2S/Network/Item.php:
|
3638 |
msgid ""
|
3639 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
3640 |
"templates that will automatically pre-format the structure of your social "
|
@@ -3654,36 +3774,36 @@ msgstr ""
|
|
3654 |
"auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
|
3655 |
"Beitragsvorlagen hinzu."
|
3656 |
|
3657 |
-
#: includes/B2S/Network/Item.php:
|
3658 |
msgid "Upgrade to Blog2Social Smart"
|
3659 |
msgstr "Upgrade auf Blog2Social Smart"
|
3660 |
|
3661 |
-
#: includes/B2S/Network/Item.php:
|
3662 |
msgid "Activate Instant Caching"
|
3663 |
msgstr "Instant Caching aktivieren"
|
3664 |
|
3665 |
-
#: includes/B2S/Network/Item.php:
|
3666 |
msgid "Format"
|
3667 |
msgstr "Format"
|
3668 |
|
3669 |
-
#: includes/B2S/Network/Item.php:
|
3670 |
msgid "Load default settings"
|
3671 |
msgstr "Lade Standardeinstellungen"
|
3672 |
|
3673 |
-
#: includes/B2S/Network/Item.php:
|
3674 |
#: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
|
3675 |
msgid "Link"
|
3676 |
msgstr "Link"
|
3677 |
|
3678 |
-
#: includes/B2S/Network/Item.php:
|
3679 |
msgid "Image"
|
3680 |
msgstr "Bild"
|
3681 |
|
3682 |
-
#: includes/B2S/Network/Item.php:
|
3683 |
msgid "Content"
|
3684 |
msgstr "Inhalt"
|
3685 |
|
3686 |
-
#: includes/B2S/Network/Item.php:
|
3687 |
msgid ""
|
3688 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3689 |
"in your post."
|
@@ -3691,11 +3811,11 @@ msgstr ""
|
|
3691 |
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
3692 |
"Hashtags in Deinem Beitrag."
|
3693 |
|
3694 |
-
#: includes/B2S/Network/Item.php:
|
3695 |
msgid "clear"
|
3696 |
msgstr "löschen"
|
3697 |
|
3698 |
-
#: includes/B2S/Network/Item.php:
|
3699 |
msgid ""
|
3700 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
3701 |
"your page, in order to refer to the original source of the content and to "
|
@@ -3705,22 +3825,30 @@ msgstr ""
|
|
3705 |
"um so auf die ursprüngliche Quelle des Inhalts zu verweisen und die "
|
3706 |
"Reichweite über Suchmaschinen wie Google zu vergrößern."
|
3707 |
|
3708 |
-
#: includes/B2S/Network/Item.php:
|
3709 |
msgid "The link will be added automatically at the end of the post."
|
3710 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
3711 |
|
3712 |
-
#: includes/B2S/Network/Item.php:
|
3713 |
msgid "The network does not support hashtags."
|
3714 |
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
3715 |
|
3716 |
-
#: includes/B2S/Network/Item.php:
|
3717 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3718 |
msgid "Network limit"
|
3719 |
msgstr "Netzwerkbegrenzung"
|
3720 |
|
3721 |
-
#: includes/B2S/Network/Item.php:
|
3722 |
-
#: includes/B2S/Network/Item.php:
|
3723 |
-
#: includes/B2S/Network/Item.php:
|
3724 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
3725 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
3726 |
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
|
@@ -3728,11 +3856,11 @@ msgstr "Netzwerkbegrenzung"
|
|
3728 |
msgid "characters"
|
3729 |
msgstr "Zeichen"
|
3730 |
|
3731 |
-
#: includes/B2S/Network/Item.php:
|
3732 |
msgid "Add a link-URL to the end of my image post."
|
3733 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
3734 |
|
3735 |
-
#: includes/B2S/Network/Item.php:
|
3736 |
msgid ""
|
3737 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3738 |
"Instagram does not turn link-URLs into clickable links)"
|
@@ -3740,11 +3868,11 @@ msgstr ""
|
|
3740 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
3741 |
"Instagram Links nicht als klickbare Links darstellt)"
|
3742 |
|
3743 |
-
#: includes/B2S/Network/Item.php:
|
3744 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
3745 |
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
3746 |
|
3747 |
-
#: includes/B2S/Network/Item.php:
|
3748 |
msgid ""
|
3749 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
3750 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
@@ -3753,18 +3881,18 @@ msgstr ""
|
|
3753 |
"Bitte aktiviere serverseitig die PHP \"mbstring\" Erweiterung, um die "
|
3754 |
"Zeichenbegrenzungsfunktion zu nutzen."
|
3755 |
|
3756 |
-
#: includes/B2S/Network/Item.php:
|
3757 |
msgid "recommended length"
|
3758 |
msgstr "Empfohlene Länge"
|
3759 |
|
3760 |
-
#: includes/B2S/Network/Item.php:
|
3761 |
-
#: includes/B2S/Network/Item.php:
|
3762 |
-
#: includes/B2S/Network/Item.php:
|
3763 |
-
#: includes/B2S/Network/Item.php:
|
3764 |
-
#: includes/B2S/Network/Item.php:
|
3765 |
-
#: includes/B2S/Network/Item.php:
|
3766 |
-
#: includes/B2S/Network/Item.php:
|
3767 |
-
#: includes/B2S/Network/Item.php:
|
3768 |
msgid "Preview"
|
3769 |
msgstr "Vorschau"
|
3770 |
|
@@ -3792,7 +3920,7 @@ msgstr "geplant"
|
|
3792 |
msgid "autopost"
|
3793 |
msgstr "Auto-Post"
|
3794 |
|
3795 |
-
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:
|
3796 |
msgid "re-share"
|
3797 |
msgstr "erneut teilen"
|
3798 |
|
@@ -3929,63 +4057,86 @@ msgstr "gespeichert"
|
|
3929 |
msgid "last saved"
|
3930 |
msgstr "zuletzt gespeichert:"
|
3931 |
|
3932 |
-
#: includes/B2S/Post/Item.php:
|
3933 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3934 |
msgid "select all"
|
3935 |
msgstr "alle auswählen"
|
3936 |
|
3937 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
3938 |
msgid "Please see"
|
3939 |
msgstr "siehe"
|
3940 |
|
3941 |
-
#: includes/B2S/Post/Item.php:
|
3942 |
msgid "FAQ"
|
3943 |
msgstr "FAQ"
|
3944 |
|
3945 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3946 |
msgid "You want to delete a publish post entry?"
|
3947 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3948 |
|
3949 |
-
#: includes/B2S/Post/Item.php:
|
3950 |
msgid "delete from reporting"
|
3951 |
msgstr "aus Reporting löschen"
|
3952 |
|
3953 |
-
#: includes/B2S/Post/Item.php:
|
3954 |
#, php-format
|
3955 |
msgid "is waiting to shared by %s"
|
3956 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3957 |
|
3958 |
-
#: includes/B2S/Post/Item.php:
|
3959 |
msgid "share"
|
3960 |
msgstr "teilen"
|
3961 |
|
3962 |
-
#: includes/B2S/Post/Item.php:
|
3963 |
msgid "You want to delete your Social Media post?"
|
3964 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3965 |
|
3966 |
-
#: includes/B2S/Post/Item.php:
|
3967 |
#, php-format
|
3968 |
msgid "last modified by %s"
|
3969 |
msgstr "zuletzt von %s bearbeitet"
|
3970 |
|
3971 |
-
#: includes/B2S/Post/Item.php:
|
3972 |
msgid "is currently being processed by the network"
|
3973 |
msgstr "wird vom Netzwerk verarbeitet"
|
3974 |
|
3975 |
-
#: includes/B2S/Post/Item.php:
|
3976 |
#, php-format
|
3977 |
msgid "scheduled by %s"
|
3978 |
msgstr "von %s vorgeplant "
|
3979 |
|
3980 |
-
#: includes/B2S/Post/Item.php:
|
3981 |
msgid "You want to edit your scheduled post?"
|
3982 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3983 |
|
3984 |
-
#: includes/B2S/Post/Item.php:
|
3985 |
msgid "edit"
|
3986 |
msgstr "edit"
|
3987 |
|
3988 |
-
#: includes/B2S/Post/Item.php:
|
3989 |
msgid "delete scheduling"
|
3990 |
msgstr "Planung löschen"
|
3991 |
|
@@ -4122,6 +4273,10 @@ msgstr "Benötigst Du mehr?"
|
|
4122 |
msgid "Queue"
|
4123 |
msgstr "Warteschlange"
|
4124 |
|
|
|
|
|
|
|
|
|
4125 |
#: includes/B2S/RePost/Item.php:131
|
4126 |
msgid "delete selected posts"
|
4127 |
msgstr "markierte Beiträge löschen"
|
@@ -4154,20 +4309,27 @@ msgstr "Url Shortener"
|
|
4154 |
#: includes/B2S/Settings/Item.php:66
|
4155 |
#, php-format
|
4156 |
msgid ""
|
4157 |
-
"
|
4158 |
-
"
|
4159 |
-
"
|
4160 |
-
"
|
4161 |
-
"
|
4162 |
-
"
|
4163 |
-
|
4164 |
-
"
|
4165 |
-
"
|
4166 |
-
|
4167 |
-
"
|
4168 |
-
"
|
4169 |
-
"
|
4170 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4171 |
|
4172 |
#: includes/B2S/Settings/Item.php:67
|
4173 |
msgid "no URL Shortener"
|
@@ -5255,34 +5417,10 @@ msgid "Would you like to retweet?"
|
|
5255 |
msgstr "Möchtest Du Retweeten?"
|
5256 |
|
5257 |
#: views/b2s/html/footer.php:325
|
5258 |
-
msgid "URL Shortening"
|
5259 |
-
msgstr "Kurzlinks"
|
5260 |
-
|
5261 |
-
#: views/b2s/html/footer.php:328
|
5262 |
-
msgid ""
|
5263 |
-
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
5264 |
-
"links and to track the performance of your links in your social media "
|
5265 |
-
"networks. Activate one of the URL-Shorteners you like to use and link it to "
|
5266 |
-
"your account. Your social media posts will then be shared with your links of "
|
5267 |
-
"Bit.ly, Rebrandly or Sniply and you can monitor the success of your posts in "
|
5268 |
-
"these accounts. Please note: Reddit, Pinterest and Medium do not allow Bit."
|
5269 |
-
"ly shortlinks. Blog2Social will apply the regular URL for these networks. "
|
5270 |
-
msgstr ""
|
5271 |
-
"Du kannst Bit.ly, Rebrandly oder Sniply verwenden, um die URL Deiner Links "
|
5272 |
-
"zu verkürzen und die Performance Deiner Links in den sozialen Netzwerken zu "
|
5273 |
-
"verfolgen. Aktiviere einen der URL-Shortener, den Du verwenden möchtest, in "
|
5274 |
-
"den Blog2Social-Einstellungen und und verbinde Blog2Social mit diesem "
|
5275 |
-
"Account. Deine Social Media Beiträge werden dann mit Deinen Bit.ly, "
|
5276 |
-
"Rebrandly oder Sniply Link geteilt und Du kannst den Erfolg Deiner Beiträge "
|
5277 |
-
"in dem jeweiligen Konto verfolgen. Bitte beachte: Reddit, Pinterest und "
|
5278 |
-
"Medium erlauben keine Bit.ly Kurzlinks. Blog2Social verwendet für diese "
|
5279 |
-
"Netzwerke dann die normale URL. "
|
5280 |
-
|
5281 |
-
#: views/b2s/html/footer.php:339
|
5282 |
msgid "Define Twitter post content"
|
5283 |
msgstr "Twitter Beitragsinhalt definieren"
|
5284 |
|
5285 |
-
#: views/b2s/html/footer.php:
|
5286 |
msgid ""
|
5287 |
"Select the content that will be automatically pre-filled in your Twitter "
|
5288 |
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
@@ -5293,7 +5431,7 @@ msgstr ""
|
|
5293 |
"aufnehmen\" angekreuzt haben, werden Hashtags automatisch im Dropdown-Menü "
|
5294 |
"hinzugefügt."
|
5295 |
|
5296 |
-
#: views/b2s/html/footer.php:
|
5297 |
msgid ""
|
5298 |
"Share imported posts with the Auto Poster: Posts that you import via RSS "
|
5299 |
"feeds and plugins can be shared automatically on your social media channels."
|
@@ -5302,7 +5440,7 @@ msgstr ""
|
|
5302 |
"Feeds und Plugins importierst, können automatisch auf Deinen Social Media-"
|
5303 |
"Kanälen geteilt werden."
|
5304 |
|
5305 |
-
#: views/b2s/html/footer.php:
|
5306 |
#, php-format
|
5307 |
msgid ""
|
5308 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for "
|
@@ -5311,12 +5449,12 @@ msgstr ""
|
|
5311 |
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für "
|
5312 |
"importierte Beiträge einrichtest.</a>"
|
5313 |
|
5314 |
-
#: views/b2s/html/footer.php:
|
5315 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
5316 |
msgstr ""
|
5317 |
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
5318 |
|
5319 |
-
#: views/b2s/html/footer.php:
|
5320 |
msgid ""
|
5321 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
5322 |
"administrator to other users if they have activated the same Blog2Social-"
|
@@ -5340,7 +5478,7 @@ msgstr ""
|
|
5340 |
"Media-Netzwerke verbunden, auf denen Inhalte automatisch geteilt werden "
|
5341 |
"sollen, die der Administrator ausgewählt hat."
|
5342 |
|
5343 |
-
#: views/b2s/html/footer.php:
|
5344 |
#, php-format
|
5345 |
msgid ""
|
5346 |
"You will get more information on how to assign the Auto-Poster settings in "
|
@@ -5349,11 +5487,11 @@ msgstr ""
|
|
5349 |
"Mehr Informationen dazu, wie Du die Einstellungen zuweisen kannst, findest "
|
5350 |
"Du in diesem <a target=\"_blank\" href=\"%s\">Auto-Poster-Guide</a>. "
|
5351 |
|
5352 |
-
#: views/b2s/html/footer.php:
|
5353 |
msgid "Blog2Social: Re-Share Posts"
|
5354 |
msgstr "Blog2Social: Beiträge wiederholt teilen"
|
5355 |
|
5356 |
-
#: views/b2s/html/footer.php:
|
5357 |
msgid ""
|
5358 |
"Keep your social media feed updated automatically with your best content and "
|
5359 |
"save valuable time by reviving your evergreen content regularly. Automate "
|
@@ -5366,22 +5504,22 @@ msgstr ""
|
|
5366 |
"gesamten Re-Sharing-Prozess, damit Du mehr Zeit hast neuen Content zu "
|
5367 |
"erstellen und mit Deiner Community zu interagieren."
|
5368 |
|
5369 |
-
#: views/b2s/html/footer.php:
|
5370 |
#, php-format
|
5371 |
msgid "<a target=\"_blank\" href=\"%s\">More information</a>"
|
5372 |
msgstr "<a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
5373 |
|
5374 |
-
#: views/b2s/html/footer.php:
|
5375 |
msgid "Social Meta Tags Settings"
|
5376 |
msgstr "Social Meta Tags Einstellungen"
|
5377 |
|
5378 |
-
#: views/b2s/html/footer.php:
|
5379 |
msgid "Change image, title and description for your post on this network"
|
5380 |
msgstr ""
|
5381 |
"Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
|
5382 |
"Netzwerk"
|
5383 |
|
5384 |
-
#: views/b2s/html/footer.php:
|
5385 |
msgid ""
|
5386 |
"Facebook has changed its policy for posting link posts via plugins or web "
|
5387 |
"applications. Facebook does no longer display the featured or selected image "
|
@@ -5404,7 +5542,7 @@ msgstr ""
|
|
5404 |
"ein zufällig gewähltes Bild bei Link-Beiträgen an. Bitte stelle sicher, dass "
|
5405 |
"Dein Bild die Anforderungen an die Bildgröße für Facebook erfüllt."
|
5406 |
|
5407 |
-
#: views/b2s/html/footer.php:
|
5408 |
msgid ""
|
5409 |
"With Blog2Social you can select a featured image or any image you select to "
|
5410 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -5423,7 +5561,7 @@ msgstr ""
|
|
5423 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
5424 |
"Deinen Linkbeitrag bei Facebook auswählen kannst.\t\t"
|
5425 |
|
5426 |
-
#: views/b2s/html/footer.php:
|
5427 |
msgid ""
|
5428 |
"Twitter has changed its policy for posting link posts via plugins or web "
|
5429 |
"applications. Twitter does no longer display the featured or selected image "
|
@@ -5447,7 +5585,7 @@ msgstr ""
|
|
5447 |
"stelle sicher, dass Dein Bild die Anforderungen an die Bildgröße für Twitter "
|
5448 |
"erfüllt."
|
5449 |
|
5450 |
-
#: views/b2s/html/footer.php:
|
5451 |
msgid ""
|
5452 |
"With Blog2Social you can select a featured image or any image you select to "
|
5453 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -5466,7 +5604,7 @@ msgstr ""
|
|
5466 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
5467 |
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
5468 |
|
5469 |
-
#: views/b2s/html/footer.php:
|
5470 |
msgid ""
|
5471 |
"To display your link preview, LinkedIn uses the image set in the oEmbed tags "
|
5472 |
"in meta data of your post. WordPress automatically sets your featured image "
|
@@ -5480,7 +5618,7 @@ msgstr ""
|
|
5480 |
"fest. Wenn Du Dein Bild bei LinkedIn ändern möchtest, ohne Dein Beitragsbild "
|
5481 |
"zu ändern, kannst du die Box “oEmbed Tags hinzufügen” abhaken."
|
5482 |
|
5483 |
-
#: views/b2s/html/footer.php:
|
5484 |
msgid ""
|
5485 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
5486 |
"Graph) meta tags instead."
|
@@ -5488,7 +5626,7 @@ msgstr ""
|
|
5488 |
"Wenn LinkedIn keine oEmbed Tags in deinen Daten finden kann, nutzt das "
|
5489 |
"Netzwerk stattdessen die OG (Open Graph) Meta Tags."
|
5490 |
|
5491 |
-
#: views/b2s/html/footer.php:
|
5492 |
msgid ""
|
5493 |
"With Blog2Social you can select a featured image or any image you select to "
|
5494 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -5511,7 +5649,7 @@ msgstr ""
|
|
5511 |
"nutzt, um Deine OG Tags zu setzen, ansonsten werden die sozialen Netzwerke "
|
5512 |
"kein Bild oder ein zufälliges Bild in Deinem Post anzeigen."
|
5513 |
|
5514 |
-
#: views/b2s/html/footer.php:
|
5515 |
msgid ""
|
5516 |
"You can change the image, title and description for your post on Facebook, "
|
5517 |
"by editing the following fields for"
|
@@ -5520,19 +5658,19 @@ msgstr ""
|
|
5520 |
"Facebook ändern, indem Du die folgenden Felder für die Open GraphTags "
|
5521 |
"bearbeitest"
|
5522 |
|
5523 |
-
#: views/b2s/html/footer.php:
|
5524 |
msgid "image"
|
5525 |
msgstr "Bild"
|
5526 |
|
5527 |
-
#: views/b2s/html/footer.php:
|
5528 |
msgid "title"
|
5529 |
msgstr "Titel"
|
5530 |
|
5531 |
-
#: views/b2s/html/footer.php:
|
5532 |
msgid "description"
|
5533 |
msgstr "Beschreibung"
|
5534 |
|
5535 |
-
#: views/b2s/html/footer.php:
|
5536 |
msgid ""
|
5537 |
"Blog2Social will automatically write these information in the Facebook Open "
|
5538 |
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
@@ -5540,7 +5678,7 @@ msgstr ""
|
|
5540 |
"Blog2Social schreibt diese Informationen automatisch in die Facebook Open "
|
5541 |
"Graph (OG) Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
5542 |
|
5543 |
-
#: views/b2s/html/footer.php:
|
5544 |
msgid ""
|
5545 |
"Please note: If this post has already been shared or scheduled previously, "
|
5546 |
"your current changes will also affect the look of previously shared or "
|
@@ -5553,7 +5691,7 @@ msgstr ""
|
|
5553 |
"aktuellsten Informationen aus den Open Graph Meta Tags zieht und alle "
|
5554 |
"bereits existierenden Beiträge automatisch updatet. "
|
5555 |
|
5556 |
-
#: views/b2s/html/footer.php:
|
5557 |
#, php-format
|
5558 |
msgid ""
|
5559 |
"Please note: Your changes will have no effect on your social media posts on "
|
@@ -5565,7 +5703,7 @@ msgstr ""
|
|
5565 |
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
5566 |
"manuell deaktiviert hast."
|
5567 |
|
5568 |
-
#: views/b2s/html/footer.php:
|
5569 |
msgid ""
|
5570 |
"You can change the image, title and description for your post on Twitter, by "
|
5571 |
"editing the following fields for"
|
@@ -5574,7 +5712,7 @@ msgstr ""
|
|
5574 |
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
5575 |
"bearbeitest"
|
5576 |
|
5577 |
-
#: views/b2s/html/footer.php:
|
5578 |
msgid ""
|
5579 |
"Blog2Social will automatically write these information in the Twitter Card "
|
5580 |
"Meta Tags for Image, Title and Description of your blog post."
|
@@ -5582,7 +5720,7 @@ msgstr ""
|
|
5582 |
"Blog2Social schreibt diese Informationen automatisch in die Twitter Card "
|
5583 |
"Meta Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
5584 |
|
5585 |
-
#: views/b2s/html/footer.php:
|
5586 |
msgid ""
|
5587 |
"Please note: If this post was previously shared or scheduled, your current "
|
5588 |
"changes will also affect the look of previously shared or scheduled posts, "
|
@@ -5597,7 +5735,7 @@ msgstr ""
|
|
5597 |
"Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter "
|
5598 |
"Deine aktuellen Änderungen aktualisiert."
|
5599 |
|
5600 |
-
#: views/b2s/html/footer.php:
|
5601 |
#, php-format
|
5602 |
msgid ""
|
5603 |
"Please note: Your changes will have no effect on your social media posts on "
|
@@ -5609,12 +5747,12 @@ msgstr ""
|
|
5609 |
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
5610 |
"manuell deaktiviert hast."
|
5611 |
|
5612 |
-
#: views/b2s/html/footer.php:
|
5613 |
msgid "You want to change the image, title and description for your post?"
|
5614 |
msgstr ""
|
5615 |
"Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
|
5616 |
|
5617 |
-
#: views/b2s/html/footer.php:
|
5618 |
msgid ""
|
5619 |
"You are currently sharing this post as image post. Changes to title and "
|
5620 |
"description Meta Tag parameters will only be supported for link post formats."
|
@@ -5627,7 +5765,7 @@ msgstr ""
|
|
5627 |
"individuelle Änderungen am Titel und an der Beschreibung für Deine "
|
5628 |
"Beitragsvorschau vorzunehmen."
|
5629 |
|
5630 |
-
#: views/b2s/html/footer.php:
|
5631 |
#, php-format
|
5632 |
msgid ""
|
5633 |
"Your changes will have no effect on your social media posts on Facebook, if "
|
@@ -5639,7 +5777,7 @@ msgstr ""
|
|
5639 |
"Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell "
|
5640 |
"deaktiviert hast."
|
5641 |
|
5642 |
-
#: views/b2s/html/footer.php:
|
5643 |
#, php-format
|
5644 |
msgid ""
|
5645 |
"Your changes will have no effect on your social media posts on Twitter, if "
|
@@ -5703,11 +5841,23 @@ msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
|
5703 |
|
5704 |
#: views/b2s/html/header.php:97
|
5705 |
msgid ""
|
5706 |
-
"You have Yoast SEO
|
5707 |
-
"tags
|
|
|
5708 |
msgstr ""
|
5709 |
-
"Du hast Yoast SEO
|
5710 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5711 |
|
5712 |
#: views/b2s/html/header.php:103
|
5713 |
msgid ""
|
@@ -6035,9 +6185,9 @@ msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
|
6035 |
msgid "I agree to the Adenion Privacy Policy"
|
6036 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
6037 |
|
6038 |
-
#: views/b2s/html/post.navbar.php:
|
6039 |
-
msgid "All
|
6040 |
-
msgstr "Alle
|
6041 |
|
6042 |
#: views/b2s/html/sidebar.php:26 views/b2s/html/sidebar.ship.php:25
|
6043 |
msgid "Version"
|
@@ -6075,6 +6225,22 @@ msgstr "Lizenz upgraden"
|
|
6075 |
msgid "Plans & Prices"
|
6076 |
msgstr "Tarife & Preise"
|
6077 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6078 |
#: views/b2s/html/sidebar.php:180
|
6079 |
msgid "Blog2Social Blog News"
|
6080 |
msgstr "Blog2Social Blog News"
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-03-19 14:29+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
+
"POT-Creation-Date: 2021-03-19 14:28+0000\n"
|
16 |
+
"Last-Translator: marius Lol <wolf.12345@gmx.de>\n"
|
17 |
+
"Language-Team: German\n"
|
18 |
+
"X-Loco-Version: 2.3.0; wp-5.7-RC3-50503"
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
33 |
msgid "Modify forum"
|
34 |
msgstr "Modify forum"
|
35 |
|
36 |
+
#: includes/Loader.php:94
|
37 |
msgid "Bitly"
|
38 |
msgstr "Bitly"
|
39 |
|
40 |
+
#: includes/Loader.php:94
|
41 |
msgid "Rebrandly"
|
42 |
msgstr "Rebrandly"
|
43 |
|
44 |
+
#: includes/Loader.php:94
|
45 |
msgid "Sniply"
|
46 |
msgstr "Sniply"
|
47 |
|
48 |
+
#: includes/Loader.php:405
|
49 |
msgid "Blog2Social: Autoposter"
|
50 |
msgstr "Blog2Social: Auto-Poster"
|
51 |
|
52 |
+
#: includes/Loader.php:406
|
53 |
msgid "Blog2Social: Social Media Content Calendar"
|
54 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
55 |
|
56 |
+
#: includes/Loader.php:798
|
57 |
msgid "This post will be shared into your social media from"
|
58 |
msgstr ""
|
59 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
60 |
|
61 |
+
#: includes/Loader.php:798 includes/Loader.php:800
|
62 |
msgid "show details"
|
63 |
msgstr "siehe Details"
|
64 |
|
65 |
+
#: includes/Loader.php:800
|
66 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
67 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
68 |
|
69 |
+
#: includes/Loader.php:804
|
70 |
msgid ""
|
71 |
"Please make sure that your post, page or custom post type is published or "
|
72 |
"scheduled to be published on this blog before you try to post it with "
|
79 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
80 |
"werden mit dem Posting-ID-Link geteilt."
|
81 |
|
82 |
+
#: includes/Loader.php:807 includes/B2S/PostBox.php:146
|
83 |
#: includes/B2S/AutoPost/Item.php:59
|
84 |
msgid ""
|
85 |
"There are no social network accounts assigned to your selected network "
|
90 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
91 |
"eine andere Netzwerkgruppierung aus. "
|
92 |
|
93 |
+
#: includes/Loader.php:820 views/b2s/html/sidebar.php:45
|
94 |
#: views/b2s/html/sidebar.ship.php:44
|
95 |
msgid "Upgrade to Premium"
|
96 |
msgstr "Premium freischalten"
|
97 |
|
98 |
+
#: includes/Loader.php:823 includes/Loader.php:958 includes/Loader.php:958
|
99 |
+
#: includes/Loader.php:1032 includes/B2S/RePost/Item.php:25
|
100 |
+
#: views/b2s/html/sidebar.php:137
|
101 |
msgid "Settings"
|
102 |
msgstr "Einstellungen"
|
103 |
|
104 |
+
#: includes/Loader.php:823
|
105 |
msgid "Support"
|
106 |
msgstr "Support"
|
107 |
|
108 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:22
|
109 |
msgid "Notifications"
|
110 |
msgstr "Benachrichtigungen"
|
111 |
|
112 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:20
|
113 |
#: views/b2s/html/sidebar.php:125
|
114 |
msgid "Shared Posts"
|
115 |
msgstr "geteilte Beiträge"
|
116 |
|
117 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:17
|
118 |
#: views/b2s/html/sidebar.php:119
|
119 |
msgid "Instant Sharing"
|
120 |
msgstr "Instant Sharing"
|
121 |
|
122 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:13
|
123 |
+
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
124 |
#: views/b2s/html/sidebar.php:116
|
125 |
msgid "Drafts"
|
126 |
msgstr "Entwürfe"
|
127 |
|
128 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:18
|
129 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
130 |
msgid "Scheduled Posts"
|
131 |
msgstr "geplante Beiträge"
|
132 |
|
133 |
+
#: includes/Loader.php:873
|
134 |
msgid "Social Media Post Drafts"
|
135 |
msgstr "Social Media Posts Entwürfe"
|
136 |
|
137 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:12
|
138 |
#: views/b2s/html/sidebar.php:113
|
139 |
msgid "Favorites"
|
140 |
msgstr "Favoriten"
|
141 |
|
142 |
+
#: includes/Loader.php:873 views/b2s/settings.php:35
|
143 |
#: views/b2s/html/sidebar.php:75
|
144 |
msgid "Auto-Post"
|
145 |
msgstr "Beiträge automatisch teilen"
|
146 |
|
147 |
+
#: includes/Loader.php:873 views/b2s/settings.php:41
|
148 |
+
#: views/b2s/html/post.navbar.php:21 views/b2s/html/sidebar.php:72
|
149 |
msgid "Re-Share Posts"
|
150 |
msgstr "Beiträge wiederholt teilen"
|
151 |
|
152 |
+
#: includes/Loader.php:873 views/b2s/curation.php:49 views/b2s/support.php:19
|
153 |
#: views/b2s/support.php:22
|
154 |
msgid "NEW"
|
155 |
msgstr "Neu"
|
156 |
|
157 |
+
#: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
|
158 |
+
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
|
159 |
+
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
160 |
+
#: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:670
|
161 |
+
#: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
|
162 |
+
#: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
|
163 |
msgid "Profile"
|
164 |
msgstr "Profil"
|
165 |
|
166 |
+
#: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
|
167 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:188
|
168 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:329
|
169 |
+
#: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Portale.php:39
|
170 |
+
#: includes/B2S/Ship/Portale.php:39
|
171 |
msgid "Page"
|
172 |
msgstr "Seite"
|
173 |
|
174 |
+
#: includes/Loader.php:874 includes/B2S/Network/Item.php:192
|
175 |
+
#: includes/B2S/Network/Item.php:400 includes/B2S/Network/Item.php:675
|
176 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
177 |
msgid "Group"
|
178 |
msgstr "Gruppe"
|
179 |
|
180 |
+
#: includes/Loader.php:875
|
181 |
msgid "Company-Page (Employer Branding Profile)"
|
182 |
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
183 |
|
184 |
+
#: includes/Loader.php:875 includes/B2S/Network/Item.php:186
|
185 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:329
|
186 |
+
#: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Item.php:331
|
187 |
+
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
|
188 |
+
#: includes/B2S/Ship/Portale.php:37
|
189 |
msgid "Business"
|
190 |
msgstr "Business"
|
191 |
|
192 |
+
#: includes/Loader.php:876
|
193 |
#, php-format
|
194 |
msgid ""
|
195 |
"The network could not publish your post. Please see the following <a "
|
198 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
199 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
200 |
|
201 |
+
#: includes/Loader.php:877
|
202 |
msgid ""
|
203 |
"Your authorization has expired. Please reconnect your account in the "
|
204 |
"Blog2Social network settings."
|
206 |
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
207 |
"Blog2Social Netzwerkeinstellungen erneut."
|
208 |
|
209 |
+
#: includes/Loader.php:878
|
210 |
#, php-format
|
211 |
msgid ""
|
212 |
"The content of your post could not be approved by the network. Please see "
|
215 |
"Der Inhalt Deines Beitrags konnte vom Netzwerk nicht genehmigt werden. Bitte "
|
216 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
217 |
|
218 |
+
#: includes/Loader.php:879
|
219 |
msgid ""
|
220 |
"We don't have the permission to publish your post. Please check your "
|
221 |
"authorization."
|
223 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
224 |
"überprüfe deine Autorisierung."
|
225 |
|
226 |
+
#: includes/Loader.php:880
|
227 |
#, php-format
|
228 |
msgid ""
|
229 |
"The connection to your social media account is interrupted. Please check "
|
236 |
"target=\"_blank\" href=\"%s\">Anleitung zur Fehlerbehebung</a> zeigt Dir, "
|
237 |
"wie Du die Verbindung zu Deinem Social-Media-Account erneuern kannst."
|
238 |
|
239 |
+
#: includes/Loader.php:881
|
240 |
msgid "Your daily limit has been reached."
|
241 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
242 |
|
243 |
+
#: includes/Loader.php:882
|
244 |
msgid ""
|
245 |
"Your post could not be posted, because your image is not available or the "
|
246 |
"image source does not allow to publish"
|
248 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
249 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
250 |
|
251 |
+
#: includes/Loader.php:883
|
252 |
#, php-format
|
253 |
msgid ""
|
254 |
"The network has blocked your account. Please see the following <a "
|
257 |
"Das Netzwerk hat Dein Konto gesperrt. Bitte beachte die folgende <a "
|
258 |
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
259 |
|
260 |
+
#: includes/Loader.php:884
|
261 |
#, php-format
|
262 |
msgid ""
|
263 |
"The number of images is reached. Please see the following <a "
|
266 |
"Die Anzahl der Bilder ist erreicht. Bitte beachte die folgende <a "
|
267 |
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
268 |
|
269 |
+
#: includes/Loader.php:885
|
270 |
msgid ""
|
271 |
"Your daily limit for this network has been reached. Please try again later."
|
272 |
msgstr ""
|
273 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
274 |
"versuche es später noch einmal."
|
275 |
|
276 |
+
#: includes/Loader.php:886
|
277 |
#, php-format
|
278 |
msgid ""
|
279 |
"The network can not publish special characters such as Emoji. Please see the "
|
282 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Bitte "
|
283 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
284 |
|
285 |
+
#: includes/Loader.php:887
|
286 |
msgid "Your post is a duplicate."
|
287 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
288 |
|
289 |
+
#: includes/Loader.php:888
|
290 |
msgid "The network requires a public url."
|
291 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
292 |
|
293 |
+
#: includes/Loader.php:889
|
294 |
msgid ""
|
295 |
"Your blog post was not available for the network at the time of publication."
|
296 |
msgstr ""
|
297 |
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
298 |
"nicht verfügbar."
|
299 |
|
300 |
+
#: includes/Loader.php:890
|
301 |
msgid "You have already retweeted this post."
|
302 |
msgstr "Du hast diesen Post bereits retweetet."
|
303 |
|
304 |
+
#: includes/Loader.php:891
|
305 |
msgid ""
|
306 |
"This XING API is no longer supported by XING. Please connect your XING "
|
307 |
"accounts with the new XING interface to reschedule your posts."
|
310 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
311 |
"zu planen."
|
312 |
|
313 |
+
#: includes/Loader.php:892
|
314 |
msgid "An image is required to post on this social network."
|
315 |
msgstr ""
|
316 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
317 |
"erforderlich."
|
318 |
|
319 |
+
#: includes/Loader.php:893
|
320 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
321 |
msgstr ""
|
322 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
323 |
"erforderlich."
|
324 |
|
325 |
+
#: includes/Loader.php:894
|
326 |
msgid ""
|
327 |
"Your post could not be posted, because your image can not be processed by "
|
328 |
"the network."
|
330 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
331 |
"Netzwerk verarbeitet werden kann"
|
332 |
|
333 |
+
#: includes/Loader.php:895
|
334 |
#, php-format
|
335 |
msgid ""
|
336 |
"Instagram published your post without text. Please see the following <a "
|
339 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
340 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
341 |
|
342 |
+
#: includes/Loader.php:896
|
343 |
msgid "Your group can not be found by the network."
|
344 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
345 |
|
346 |
+
#: includes/Loader.php:953 includes/Loader.php:998
|
347 |
msgid "Dashboard"
|
348 |
msgstr "Dashboard"
|
349 |
|
350 |
+
#: includes/Loader.php:954
|
351 |
msgid "Share Website & Blog Content"
|
352 |
msgstr "Webseiten- & Blog Content teilen"
|
353 |
|
354 |
+
#: includes/Loader.php:954 includes/Loader.php:1005
|
355 |
msgid "Site & Blog Content"
|
356 |
msgstr "Seiten & Blog Content"
|
357 |
|
358 |
+
#: includes/Loader.php:955
|
359 |
msgid "Create Social Media Posts"
|
360 |
msgstr "Erstelle Social Media Posts"
|
361 |
|
362 |
+
#: includes/Loader.php:955 includes/Loader.php:1012
|
363 |
msgid "Social Media Posts"
|
364 |
msgstr "Social Media Posts"
|
365 |
|
366 |
+
#: includes/Loader.php:956 includes/Loader.php:1019 views/b2s/dashboard.php:30
|
367 |
+
#: views/b2s/html/post.navbar.php:23 views/b2s/html/sidebar.php:128
|
368 |
msgid "Calendar"
|
369 |
msgstr "Kalender"
|
370 |
|
371 |
+
#: includes/Loader.php:957 includes/Loader.php:1026
|
372 |
msgid "Networks"
|
373 |
msgstr "Netzwerke"
|
374 |
|
375 |
+
#: includes/Loader.php:960 includes/Loader.php:1040
|
376 |
msgid "PR-Service"
|
377 |
msgstr "PR-Service"
|
378 |
|
379 |
+
#: includes/Loader.php:962 includes/Loader.php:1048
|
380 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
381 |
#: views/b2s/html/sidebar.ship.php:66
|
382 |
msgid "Help & Support"
|
383 |
msgstr "Hilfe & Support"
|
384 |
|
385 |
+
#: includes/Loader.php:964
|
386 |
msgid "Premium"
|
387 |
msgstr "Premium"
|
388 |
|
389 |
+
#: includes/Loader.php:964 includes/Loader.php:1056
|
390 |
msgid "PREMIUM"
|
391 |
msgstr "PREMIUM"
|
392 |
|
393 |
+
#: includes/Loader.php:989 views/b2s/html/sidebar.php:25
|
394 |
#: views/b2s/html/sidebar.ship.php:24
|
395 |
msgid "Blog2Social"
|
396 |
msgstr "Blog2Social"
|
397 |
|
398 |
+
#: includes/Loader.php:1555
|
399 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
400 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
401 |
|
402 |
+
#: includes/Loader.php:1555 includes/System.php:32 includes/System.php:38
|
403 |
#, php-format
|
404 |
msgid ""
|
405 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
408 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
409 |
"in unserem FAQs.</a>"
|
410 |
|
411 |
+
#: includes/Loader.php:1555 includes/Loader.php:1576 includes/Loader.php:1826
|
412 |
msgid "or"
|
413 |
msgstr "oder"
|
414 |
|
415 |
+
#: includes/Loader.php:1555 includes/Loader.php:1576 includes/Loader.php:1826
|
416 |
msgid "back to install plugins"
|
417 |
msgstr "zurück zur Pluginübersicht"
|
418 |
|
420 |
msgid "Rate it!"
|
421 |
msgstr "Bewerte uns!"
|
422 |
|
423 |
+
#: includes/Notice.php:18
|
424 |
msgid ""
|
425 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
426 |
"anything that does not work for you, please contact us!"
|
463 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
464 |
"zu tun."
|
465 |
|
466 |
+
#: includes/Tools.php:349 views/b2s/html/sidebar.php:30
|
467 |
#: views/b2s/html/sidebar.ship.php:29
|
468 |
msgid "License"
|
469 |
msgstr "Lizenz"
|
470 |
|
471 |
+
#: includes/Tools.php:364
|
472 |
msgid "Greece"
|
473 |
msgstr "Griechenland"
|
474 |
|
475 |
+
#: includes/Tools.php:365
|
476 |
msgid "India"
|
477 |
msgstr "Indien"
|
478 |
|
479 |
+
#: includes/Tools.php:366
|
480 |
msgid "United States of America"
|
481 |
msgstr "Vereinigte Staaten von Amerika"
|
482 |
|
483 |
+
#: includes/Tools.php:367
|
484 |
msgid "Ireland"
|
485 |
msgstr "Irland"
|
486 |
|
487 |
+
#: includes/Tools.php:368
|
488 |
msgid "Italy"
|
489 |
msgstr "Italien"
|
490 |
|
491 |
+
#: includes/Tools.php:369
|
492 |
msgid "Switzerland"
|
493 |
msgstr "Schweiz"
|
494 |
|
495 |
+
#: includes/Tools.php:370
|
496 |
msgid "Czechoslovakia"
|
497 |
msgstr "Tschechoslowakei"
|
498 |
|
499 |
+
#: includes/Tools.php:371
|
500 |
msgid "Indonesia"
|
501 |
msgstr "Indonesien"
|
502 |
|
503 |
+
#: includes/Tools.php:372
|
504 |
msgid "Spain"
|
505 |
msgstr "Spanien"
|
506 |
|
507 |
+
#: includes/Tools.php:373
|
508 |
msgid "Canada"
|
509 |
msgstr "Kanada"
|
510 |
|
511 |
+
#: includes/Tools.php:374
|
512 |
msgid "Great Britain"
|
513 |
msgstr "Großbritannien"
|
514 |
|
515 |
+
#: includes/Tools.php:375
|
516 |
msgid "Russia"
|
517 |
msgstr "Russland"
|
518 |
|
519 |
+
#: includes/Tools.php:376
|
520 |
msgid "Netherlands"
|
521 |
msgstr "Niederlande"
|
522 |
|
523 |
+
#: includes/Tools.php:377 includes/Tools.php:391
|
524 |
msgid "Portugal"
|
525 |
msgstr "Portugal"
|
526 |
|
527 |
+
#: includes/Tools.php:378
|
528 |
msgid "Norway"
|
529 |
msgstr "Norwegen"
|
530 |
|
531 |
+
#: includes/Tools.php:379
|
532 |
msgid "Turkey"
|
533 |
msgstr "Türkei"
|
534 |
|
535 |
+
#: includes/Tools.php:380
|
536 |
msgid "Australia"
|
537 |
msgstr "Australien"
|
538 |
|
539 |
+
#: includes/Tools.php:381
|
540 |
msgid "Austria"
|
541 |
msgstr "Österreich"
|
542 |
|
543 |
+
#: includes/Tools.php:382
|
544 |
msgid "Poland"
|
545 |
msgstr "Polen"
|
546 |
|
547 |
+
#: includes/Tools.php:383
|
548 |
msgid "France"
|
549 |
msgstr "Frankreich"
|
550 |
|
551 |
+
#: includes/Tools.php:384
|
552 |
msgid "Romania"
|
553 |
msgstr "Rumänien"
|
554 |
|
555 |
+
#: includes/Tools.php:385
|
556 |
msgid "Germany"
|
557 |
msgstr "Deutschland"
|
558 |
|
559 |
+
#: includes/Tools.php:386
|
560 |
msgid "Denmark"
|
561 |
msgstr "Dänemark"
|
562 |
|
563 |
+
#: includes/Tools.php:387
|
564 |
msgid "New Zealand"
|
565 |
msgstr "Neuseeland"
|
566 |
|
567 |
+
#: includes/Tools.php:388
|
568 |
msgid "Finland"
|
569 |
msgstr "Finnland"
|
570 |
|
571 |
+
#: includes/Tools.php:389
|
572 |
msgid "Hungary"
|
573 |
msgstr "Ungarn"
|
574 |
|
575 |
+
#: includes/Tools.php:390
|
576 |
msgid "Japan"
|
577 |
msgstr "Japan"
|
578 |
|
579 |
+
#: includes/Tools.php:392
|
580 |
msgid "Argentina"
|
581 |
msgstr "Argentinien"
|
582 |
|
583 |
+
#: includes/Tools.php:393
|
584 |
msgid "Korea"
|
585 |
msgstr "Korea"
|
586 |
|
587 |
+
#: includes/Tools.php:394
|
588 |
msgid "Sweden"
|
589 |
msgstr "Schweden"
|
590 |
|
591 |
+
#: includes/Tools.php:395
|
592 |
msgid "Mexico"
|
593 |
msgstr "Mexiko"
|
594 |
|
595 |
+
#: includes/Tools.php:396
|
596 |
msgid "Slovakia"
|
597 |
msgstr "Slowakei"
|
598 |
|
599 |
+
#: includes/Tools.php:397
|
600 |
msgid "Chile"
|
601 |
msgstr "Chile"
|
602 |
|
603 |
+
#: includes/Tools.php:398
|
604 |
msgid "Colombia"
|
605 |
msgstr "Kolumbien"
|
606 |
|
607 |
+
#: includes/Tools.php:399
|
608 |
msgid "South Africa"
|
609 |
msgstr "Südafrika"
|
610 |
|
611 |
+
#: includes/Tools.php:400
|
612 |
msgid "Philippines"
|
613 |
msgstr "Philippinen"
|
614 |
|
615 |
+
#: includes/Tools.php:403
|
616 |
msgid "is determined automatically"
|
617 |
msgstr "wird automatisch ermittelt"
|
618 |
|
619 |
+
#: includes/Tools.php:410
|
620 |
msgid "Search"
|
621 |
msgstr "Suche"
|
622 |
|
623 |
+
#: includes/Tools.php:411
|
624 |
msgid "Recently Used"
|
625 |
msgstr "Zuletzt verwendet"
|
626 |
|
627 |
+
#: includes/Tools.php:412
|
628 |
msgid "Smileys & People"
|
629 |
msgstr "Smileys & Personen"
|
630 |
|
631 |
+
#: includes/Tools.php:413
|
632 |
msgid "Animals & Nature"
|
633 |
msgstr "Tiere & Natur"
|
634 |
|
635 |
+
#: includes/Tools.php:414
|
636 |
msgid "Food & Drink"
|
637 |
msgstr "Essen & Trinken"
|
638 |
|
639 |
+
#: includes/Tools.php:415
|
640 |
msgid "Activities"
|
641 |
msgstr "Aktivitäten"
|
642 |
|
643 |
+
#: includes/Tools.php:416
|
644 |
msgid "Travel & Places"
|
645 |
msgstr "Reisen & Orte"
|
646 |
|
647 |
+
#: includes/Tools.php:417
|
648 |
msgid "Objects"
|
649 |
msgstr "Objekte"
|
650 |
|
651 |
+
#: includes/Tools.php:418
|
652 |
msgid "Symbols"
|
653 |
msgstr "Symbole"
|
654 |
|
655 |
+
#: includes/Tools.php:419
|
656 |
msgid "Flags"
|
657 |
msgstr "Flaggen"
|
658 |
|
659 |
+
#: includes/Tools.php:420
|
660 |
msgid "No emojis found"
|
661 |
msgstr "Keine Ergebnisse"
|
662 |
|
663 |
#: includes/Util.php:43 views/b2s/post.sched.php:33
|
664 |
+
#: includes/B2S/Network/Item.php:158
|
665 |
msgid "Clock"
|
666 |
msgstr "Uhr"
|
667 |
|
708 |
msgid "Please contact our support!"
|
709 |
msgstr "Bitte kontaktiere unseren Support!"
|
710 |
|
711 |
+
#: includes/Ajax/Post.php:1929 views/b2s/network.php:7
|
712 |
+
#: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
|
713 |
+
#: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:528
|
714 |
msgid "Unknown username"
|
715 |
msgstr "unbekannter Blog-Nutzer"
|
716 |
|
717 |
+
#: includes/Ajax/Post.php:1930 includes/B2S/Network/Item.php:529
|
718 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
719 |
+
#: includes/B2S/Post/Item.php:848 includes/B2S/Post/Item.php:906
|
720 |
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
|
721 |
#: includes/B2S/Ship/Item.php:1281
|
722 |
msgid "delete"
|
726 |
msgid "Please see FAQ"
|
727 |
msgstr "Siehe FAQ"
|
728 |
|
729 |
+
#: includes/B2S/PostBox.php:143 views/b2s/ship.php:773
|
730 |
#: views/b2s/html/header.php:60
|
731 |
msgid "The connection to the server failed. Try again!"
|
732 |
msgstr ""
|
772 |
#: includes/B2S/PostBox.php:253 views/b2s/network.php:42 views/b2s/ship.php:76
|
773 |
#: views/b2s/ship.php:166 views/b2s/ship.php:258
|
774 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
775 |
+
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:209
|
776 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
777 |
#: includes/B2S/Ship/Item.php:1095
|
778 |
msgid "Info"
|
836 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
837 |
"Community zu erzielen"
|
838 |
|
839 |
+
#: includes/B2S/PostBox.php:207 views/b2s/html/footer.php:340
|
840 |
+
#: views/b2s/html/footer.php:380
|
841 |
msgid "Blog2Social: Social Media Auto-Posting"
|
842 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
843 |
|
844 |
+
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:344
|
845 |
msgid ""
|
846 |
"Share your blog posts with the Auto Poster: Your blog posts will be shared "
|
847 |
"automatically on your social media channels as soon as you publish or update "
|
854 |
"in WordPress vorgeplante Blogbeiträge automatisch geteilt werden, sobald sie "
|
855 |
"veröffentlicht werden."
|
856 |
|
857 |
+
#: includes/B2S/PostBox.php:212 views/b2s/html/footer.php:345
|
858 |
#, php-format
|
859 |
msgid ""
|
860 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your "
|
863 |
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für Deine "
|
864 |
"Blogbeiträge einrichtest.</a>"
|
865 |
|
866 |
+
#: includes/B2S/PostBox.php:216 views/b2s/html/footer.php:351
|
867 |
+
#: views/b2s/html/footer.php:390 views/b2s/html/footer.php:448
|
868 |
msgid "You want to auto-post your blog post?"
|
869 |
msgstr "Du möchtest Deinen Beitrag automatisch posten?"
|
870 |
|
872 |
#: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
|
873 |
#: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
|
874 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
875 |
+
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
|
876 |
+
#: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
|
877 |
+
#: views/b2s/html/footer.php:542
|
878 |
msgid "With Blog2Social Premium you can:"
|
879 |
msgstr "Mit Blog2Social kannst Du:"
|
880 |
|
882 |
#: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
|
883 |
#: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
|
884 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
885 |
+
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
|
886 |
+
#: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
|
887 |
+
#: views/b2s/html/footer.php:545 views/b2s/html/header.php:342
|
888 |
msgid "Post on pages and groups"
|
889 |
msgstr "Poste auf Seiten und in Gruppen"
|
890 |
|
892 |
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
|
893 |
#: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
|
894 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
895 |
+
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
|
896 |
+
#: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
|
897 |
+
#: views/b2s/html/footer.php:546
|
898 |
msgid "Share on multiple profiles, pages and groups"
|
899 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
900 |
|
903 |
#: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
|
904 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
905 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
906 |
+
#: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
|
907 |
+
#: views/b2s/html/footer.php:454 views/b2s/html/footer.php:547
|
908 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
909 |
msgstr ""
|
910 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
914 |
#: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
|
915 |
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
|
916 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
917 |
+
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
|
918 |
+
#: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
|
919 |
+
#: views/b2s/html/footer.php:548
|
920 |
msgid "Schedule your posts at the best times on each network"
|
921 |
msgstr "Plane Deine Beiträge zu den besten Zeiten für jedes Netzwerk"
|
922 |
|
924 |
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
|
925 |
#: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
|
926 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
927 |
+
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
|
928 |
+
#: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
|
929 |
+
#: views/b2s/html/footer.php:549
|
930 |
msgid ""
|
931 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
932 |
"social media posts"
|
936 |
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
|
937 |
#: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
|
938 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
939 |
+
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
|
940 |
+
#: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
|
941 |
+
#: views/b2s/html/footer.php:550
|
942 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
943 |
msgstr ""
|
944 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
948 |
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
|
949 |
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
|
950 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
951 |
+
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
|
952 |
+
#: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
|
953 |
+
#: views/b2s/html/footer.php:551
|
954 |
msgid "Schedule and re-share old posts"
|
955 |
msgstr "Plane und teile alte Beiträge"
|
956 |
|
959 |
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
|
960 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
961 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
962 |
+
#: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
|
963 |
+
#: views/b2s/html/footer.php:459 views/b2s/html/footer.php:552
|
964 |
msgid "Select link format or image format for your posts"
|
965 |
msgstr ""
|
966 |
"Link-Posts oder Bild-Posts als Posting-Format für Deine Beiträge auswählen"
|
970 |
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
|
971 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
972 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
973 |
+
#: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
|
974 |
+
#: views/b2s/html/footer.php:460 views/b2s/html/footer.php:553
|
975 |
msgid "Select individual images per post"
|
976 |
msgstr ""
|
977 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
980 |
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
|
981 |
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
|
982 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
983 |
+
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
|
984 |
+
#: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
|
985 |
+
#: views/b2s/html/footer.php:554
|
986 |
msgid ""
|
987 |
"Reporting & calendar: keep track of your published and scheduled social "
|
988 |
"media posts"
|
994 |
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
|
995 |
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
|
996 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
997 |
+
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
|
998 |
+
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
999 |
+
#: views/b2s/html/footer.php:556
|
1000 |
msgid "Upgrade to SMART and above"
|
1001 |
msgstr "Upgrade auf SMART und höher"
|
1002 |
|
1007 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
1008 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
1009 |
#: views/b2s/html/footer.php:273 views/b2s/html/footer.php:313
|
1010 |
+
#: views/b2s/html/footer.php:368 views/b2s/html/footer.php:407
|
1011 |
+
#: views/b2s/html/footer.php:465 views/b2s/html/footer.php:559
|
1012 |
#, php-format
|
1013 |
msgid ""
|
1014 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
1071 |
msgid "at best times"
|
1072 |
msgstr "zu den besten Zeiten"
|
1073 |
|
1074 |
+
#: views/b2s/autopost.php:18 views/b2s/settings.php:18
|
1075 |
#: includes/B2S/Ship/Image.php:29
|
1076 |
msgid ""
|
1077 |
"You need a higher user role to upload an image on this blog. Please contact "
|
1080 |
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
1081 |
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
1082 |
|
1083 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:27
|
1084 |
msgid "save..."
|
1085 |
msgstr "speichere Daten..."
|
1086 |
|
1087 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:137
|
1088 |
#: includes/B2S/Ship/Image.php:96
|
1089 |
msgid "Select or upload an image from media gallery"
|
1090 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
1091 |
|
1092 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:138
|
1093 |
#: includes/B2S/Ship/Image.php:97
|
1094 |
msgid "Use image"
|
1095 |
msgstr "Bild verwenden"
|
1096 |
|
1097 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:190
|
1098 |
#: includes/B2S/Settings/Item.php:53
|
1099 |
msgid "Personal Time Zone"
|
1100 |
msgstr "Persönliche Zeitzone"
|
1101 |
|
1102 |
+
#: views/b2s/autopost.php:62 views/b2s/settings.php:193
|
1103 |
msgid ""
|
1104 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
1105 |
"defined in the general settings of your WordPress. You can select a user-"
|
1174 |
msgid "Get the Blog2Social Browser Extension"
|
1175 |
msgstr "Blog2Social Browser Erweiterung"
|
1176 |
|
1177 |
+
#: views/b2s/curation.draft.php:47 views/b2s/network.php:61
|
1178 |
+
#: views/b2s/network.php:149 views/b2s/network.php:236
|
1179 |
#: views/b2s/network.php:373 views/b2s/network.php:452
|
1180 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1181 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1182 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
1183 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1184 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1185 |
+
#: views/b2s/ship.php:603 views/b2s/ship.php:771 views/b2s/support.php:144
|
1186 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
1187 |
msgid "Loading..."
|
1188 |
msgstr "Wird geladen..."
|
1234 |
msgid "Saved as draft."
|
1235 |
msgstr "Als Entwurf gespeichert."
|
1236 |
|
1237 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
|
1238 |
+
#: views/b2s/post.sched.php:189 views/b2s/repost.php:73
|
1239 |
+
#: includes/B2S/Settings/Item.php:239 includes/B2S/Settings/Item.php:276
|
1240 |
+
#: views/b2s/html/footer.php:160
|
1241 |
msgid "Link Post"
|
1242 |
msgstr "Link-Beitrag"
|
1243 |
|
1246 |
msgstr "Video-Beitrag"
|
1247 |
|
1248 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1249 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1250 |
+
#: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
|
1251 |
+
#: includes/B2S/Settings/Item.php:276
|
1252 |
msgid "Image Post"
|
1253 |
msgstr "Bild-Beitrag"
|
1254 |
|
1258 |
msgstr "Text-Beitrag"
|
1259 |
|
1260 |
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:35
|
1261 |
+
#: includes/B2S/Network/Item.php:179 includes/B2S/Network/Item.php:188
|
1262 |
+
#: includes/B2S/Network/Item.php:193 includes/B2S/Ship/Image.php:92
|
1263 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1264 |
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
1265 |
+
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:39
|
1266 |
+
#: includes/B2S/Ship/Portale.php:51
|
1267 |
msgid "PRO"
|
1268 |
msgstr "PRO"
|
1269 |
|
1333 |
msgstr "Neuen Social Media Post erstellen"
|
1334 |
|
1335 |
#: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
|
1336 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:772 includes/B2S/Post/Filter.php:59
|
1337 |
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
|
1338 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1339 |
msgid "published"
|
1538 |
"Netzwerkauswahl genutzt wird. <a href=\"%s\" target=\"_blank\">So erstellen "
|
1539 |
"Sie eine Netzwerk-Gruppierung</a>"
|
1540 |
|
1541 |
+
#: views/b2s/dashboard.php:26
|
1542 |
msgid "Your Activity"
|
1543 |
msgstr "Deine Aktivität"
|
1544 |
|
1545 |
+
#: views/b2s/dashboard.php:31
|
1546 |
msgid "List"
|
1547 |
msgstr "Liste"
|
1548 |
|
1549 |
+
#: views/b2s/dashboard.php:32
|
1550 |
msgid "Chart"
|
1551 |
msgstr "Diagramm"
|
1552 |
|
1553 |
+
#: views/b2s/dashboard.php:60
|
1554 |
msgid "Follow us"
|
1555 |
msgstr "Folge uns"
|
1556 |
|
1557 |
+
#: views/b2s/dashboard.php:85
|
1558 |
msgid "show full calendar"
|
1559 |
msgstr "Vollständigen Kalender anzeigen"
|
1560 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1561 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1562 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1563 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1564 |
+
#: views/b2s/html/post.navbar.php:29 views/b2s/html/post.navbar.php:30
|
1565 |
msgid "filter"
|
1566 |
msgstr "Filter"
|
1567 |
|
1699 |
msgid "modify"
|
1700 |
msgstr "modify"
|
1701 |
|
1702 |
+
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:196
|
1703 |
+
#: includes/B2S/Network/Item.php:196
|
1704 |
msgid "Edit Post Template"
|
1705 |
msgstr "Beitragsvorlage bearbeiten"
|
1706 |
|
1707 |
#: views/b2s/network.php:230 views/b2s/ship.php:23
|
1708 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1709 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:196
|
1710 |
+
#: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:371
|
1711 |
+
#: includes/B2S/Network/Item.php:437 includes/B2S/RePost/Item.php:23
|
1712 |
+
#: includes/B2S/Settings/Item.php:159 includes/B2S/Ship/Image.php:85
|
1713 |
+
#: includes/B2S/Ship/Item.php:1154 includes/B2S/Ship/Portale.php:37
|
1714 |
+
#: views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:21
|
1715 |
+
#: views/b2s/html/post.navbar.php:23 views/b2s/partials/post-edit-modal.php:9
|
1716 |
#: views/b2s/widgets/posts.php:18
|
1717 |
msgid "SMART"
|
1718 |
msgstr "SMART"
|
1719 |
|
1720 |
+
#: views/b2s/network.php:242 views/b2s/settings.php:65
|
1721 |
+
#: includes/B2S/Network/Item.php:589 includes/B2S/Settings/Item.php:133
|
1722 |
msgid "save"
|
1723 |
msgstr "speichern"
|
1724 |
|
1797 |
msgid "The name of the post author."
|
1798 |
msgstr "Der Name des Autors Deines Beitrags."
|
1799 |
|
1800 |
+
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:836
|
1801 |
msgid "Character limit"
|
1802 |
msgstr "Zeichenbegrenzung"
|
1803 |
|
2084 |
msgid "Upgrade to Blog2Social Business"
|
2085 |
msgstr "Upgrade auf Blog2Social Business"
|
2086 |
|
2087 |
+
#: views/b2s/network.php:556 includes/B2S/Network/Item.php:559
|
2088 |
#, php-format
|
2089 |
msgid ""
|
2090 |
"Define parameters that will be added to link posts on this network e.g. to "
|
2099 |
msgid "My Profile"
|
2100 |
msgstr "Mein Profil"
|
2101 |
|
2102 |
+
#: views/b2s/network.php:603 views/b2s/ship.php:714
|
2103 |
msgid "Add Page"
|
2104 |
msgstr "Seite hinzufügen"
|
2105 |
|
2106 |
+
#: views/b2s/network.php:608 views/b2s/ship.php:719
|
2107 |
#, php-format
|
2108 |
msgid ""
|
2109 |
"Please make sure to log in with your account which manages your pages and <a "
|
2114 |
"Guide, um alle Deine Seiten auswählen zu können</a>."
|
2115 |
|
2116 |
#: views/b2s/network.php:609 views/b2s/network.php:628
|
2117 |
+
#: views/b2s/network.php:647 views/b2s/network.php:666 views/b2s/ship.php:682
|
2118 |
+
#: views/b2s/ship.php:701 views/b2s/ship.php:720 views/b2s/ship.php:739
|
2119 |
msgid "Continue"
|
2120 |
msgstr "Fortsetzen"
|
2121 |
|
2122 |
+
#: views/b2s/network.php:622 views/b2s/ship.php:733
|
2123 |
msgid "Add Group"
|
2124 |
msgstr "Gruppe hinzufügen"
|
2125 |
|
2126 |
+
#: views/b2s/network.php:627 views/b2s/ship.php:738
|
2127 |
#, php-format
|
2128 |
msgid ""
|
2129 |
"Please make sure to log in with your account which manages your groups and "
|
2160 |
"um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
|
2161 |
"Informationen: So verbindest Du Deine Website mit Instagram.</a>"
|
2162 |
|
2163 |
+
#: views/b2s/network.php:660 views/b2s/ship.php:695
|
2164 |
+
msgid "Connect Instagram Business Account"
|
2165 |
+
msgstr "Instagram Business-Konto verbinden"
|
2166 |
+
|
2167 |
+
#: views/b2s/network.php:665
|
2168 |
+
#, php-format
|
2169 |
+
msgid ""
|
2170 |
+
"Please note: Your Instagram Business Account will be connected with "
|
2171 |
+
"Blog2Social via Facebook. Therefore, please make sure that your Instagram "
|
2172 |
+
"Business Account is linked to a Facebook page and enter the login data of "
|
2173 |
+
"your Facebook page. You will find more information and detailed instructions "
|
2174 |
+
"in the <a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
|
2175 |
+
msgstr ""
|
2176 |
+
"Hinweis: Dein Instagram Business-Konto wird über Facebook mit Blog2Social "
|
2177 |
+
"verbunden. Stelle daher bitte sicher, das Dein Instagram Business-Konto mit "
|
2178 |
+
"einer Facebook-Seite verknüpft ist und gib die dazugehörigen Login-Daten ein."
|
2179 |
+
" Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
|
2180 |
+
"href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden</a>."
|
2181 |
+
|
2182 |
+
#: views/b2s/network.php:679
|
2183 |
+
msgid "Network connections"
|
2184 |
+
msgstr "Netzwerkverbindungen"
|
2185 |
+
|
2186 |
+
#: views/b2s/network.php:684
|
2187 |
+
msgid ""
|
2188 |
+
"With Blog2Social you can connect up to 16 social media networks and share "
|
2189 |
+
"your posts on your favourite social media accounts automatically."
|
2190 |
+
msgstr ""
|
2191 |
+
"Mit Blog2Social kannst Du bis zu 16 Social-Media-Netzwerke verbinden und "
|
2192 |
+
"Deine Beiträge automatisiert in Deine bevorzugten Social-Media-Accounts "
|
2193 |
+
"teilen."
|
2194 |
+
|
2195 |
+
#: views/b2s/network.php:687
|
2196 |
+
msgid ""
|
2197 |
+
"Each license has a specified number of accounts you can connect per social "
|
2198 |
+
"media network."
|
2199 |
+
msgstr ""
|
2200 |
+
"Jede Lizenz hat eine bestimmte Anzahl von Konten, die Du pro Social-Media-"
|
2201 |
+
"Netzwerk verbinden kannst."
|
2202 |
+
|
2203 |
+
#: views/b2s/network.php:690
|
2204 |
+
msgid "Smart: 3 (per user)"
|
2205 |
+
msgstr "Smart: 3 (pro Nutzer)"
|
2206 |
+
|
2207 |
+
#: views/b2s/network.php:692
|
2208 |
+
msgid "Pro: 5 (per user)"
|
2209 |
+
msgstr "Pro: 5 (pro Nutzer)"
|
2210 |
+
|
2211 |
+
#: views/b2s/network.php:694
|
2212 |
+
msgid "Business: 15 (per user)"
|
2213 |
+
msgstr "Business: 15 (pro Nutzer)"
|
2214 |
+
|
2215 |
+
#: views/b2s/network.php:697
|
2216 |
+
msgid ""
|
2217 |
+
"For example: With the Pro license, each user can connect 5 Facebook accounts "
|
2218 |
+
"+ 5 Twitter accounts + 5 Instagram accounts + ..."
|
2219 |
+
msgstr ""
|
2220 |
+
"Beispiel: Mit der Pro-Lizenz, kann jeder Nutzer 5 Facebook Accounts + 5 "
|
2221 |
+
"Twitter Accounts + 5 Instagram Accounts + ... verbinden."
|
2222 |
+
|
2223 |
+
#: views/b2s/network.php:700
|
2224 |
+
msgid ""
|
2225 |
+
"You can also purchase additional groups and sites as add-on to your active "
|
2226 |
+
"Blog2Social Premium Pro or Premium Business license:"
|
2227 |
+
msgstr ""
|
2228 |
+
"Zu Deiner bestehenden Blog2Social-Lizenz Premium Pro oder Premium Business "
|
2229 |
+
"kannst Du auch zusätzliche Gruppen und Seiten als Add-On hinzubuchen:"
|
2230 |
+
|
2231 |
+
#: views/b2s/network.php:703
|
2232 |
+
msgid "Facebook groups"
|
2233 |
+
msgstr "Facebook-Gruppen"
|
2234 |
+
|
2235 |
+
#: views/b2s/network.php:705
|
2236 |
+
msgid "Facebook pages"
|
2237 |
+
msgstr "Facebook-Seiten"
|
2238 |
+
|
2239 |
+
#: views/b2s/network.php:707
|
2240 |
+
msgid "LinkedIn pages"
|
2241 |
+
msgstr "LinkedIn-Seiten"
|
2242 |
+
|
2243 |
+
#: views/b2s/network.php:710
|
2244 |
+
msgid ""
|
2245 |
+
"For example: If you purchase 5 Facebook groups, these additional 5 Facebook "
|
2246 |
+
"groups are available for all users. So, when 5 users are activated for the "
|
2247 |
+
"Pro or Business license, each user can connect 1 additional Facebook group, "
|
2248 |
+
"or one user can connect 5 additional Facebook groups."
|
2249 |
+
msgstr ""
|
2250 |
+
"Beispiel: Wenn Du 5 Facebook-Gruppen kaufst, sind diese zusätzlichen 5 "
|
2251 |
+
"Facebook-Gruppen für alle Nutzer verfügbar. Wenn also 5 Nutzer für die Pro- "
|
2252 |
+
"oder Business-Lizenz aktiviert sind, kann jeder Nutzer 1 Facebook Gruppe "
|
2253 |
+
"verbinden, oder 1 Nutzer kann alle 5 Facebook-Gruppen verbinden."
|
2254 |
+
|
2255 |
+
#: views/b2s/network.php:713
|
2256 |
+
#, php-format
|
2257 |
+
msgid ""
|
2258 |
+
"<a href=\"%s\" target=\"_blank\">Get more information on how to add more "
|
2259 |
+
"sites or groups.</a>"
|
2260 |
+
msgstr ""
|
2261 |
+
"<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
|
2262 |
+
"weitere Seiten und Gruppen dazu buchen kannst.</a>"
|
2263 |
+
|
2264 |
#: views/b2s/post.approve.php:89
|
2265 |
msgid "Delete Social Media Posts"
|
2266 |
msgstr "Social Media Posts löschen"
|
2289 |
msgid "scheduled"
|
2290 |
msgstr "geplant"
|
2291 |
|
2292 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
2293 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:749
|
2294 |
+
#: includes/B2S/Network/Item.php:752 includes/B2S/Settings/Item.php:239
|
2295 |
+
#: views/b2s/html/footer.php:177
|
2296 |
+
msgid "Image with frame"
|
2297 |
+
msgstr "Bild mit Rahmen"
|
2298 |
+
|
2299 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
2300 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:750
|
2301 |
+
#: includes/B2S/Network/Item.php:753 includes/B2S/Settings/Item.php:253
|
2302 |
+
#: views/b2s/html/footer.php:182
|
2303 |
+
msgid "Image cut out"
|
2304 |
+
msgstr "Bild zuschneiden"
|
2305 |
+
|
2306 |
+
#: views/b2s/post.calendar.php:88 views/b2s/post.sched.php:172
|
2307 |
+
#: views/b2s/repost.php:56
|
2308 |
+
msgid "add post"
|
2309 |
+
msgstr "Beitrag hinzufügen"
|
2310 |
+
|
2311 |
#: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
|
2312 |
#: views/b2s/repost.php:104 views/b2s/ship.php:507
|
2313 |
msgid "Choose your"
|
2517 |
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
2518 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2519 |
|
2520 |
+
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:730
|
2521 |
+
#: includes/B2S/Post/Item.php:871
|
2522 |
msgid "Auto-Posting"
|
2523 |
msgstr "Auto-Posting"
|
2524 |
|
2615 |
msgid "Show all premium features"
|
2616 |
msgstr "Alle Premium-Features anzeigen"
|
2617 |
|
2618 |
+
#: views/b2s/settings.php:32
|
2619 |
msgid "General"
|
2620 |
msgstr "Allgemein"
|
2621 |
|
2622 |
+
#: views/b2s/settings.php:38
|
2623 |
msgid "Social Meta Data"
|
2624 |
msgstr "Social Meta Angaben"
|
2625 |
|
2626 |
+
#: views/b2s/settings.php:44 views/b2s/html/sidebar.php:134
|
2627 |
msgid "Social Media Networks"
|
2628 |
msgstr "Social-Media-Netzwerke"
|
2629 |
|
2630 |
+
#: views/b2s/settings.php:47
|
2631 |
msgid "Social Media Time Settings"
|
2632 |
msgstr "Social-Media-Zeiteinstellungen"
|
2633 |
|
2634 |
+
#: views/b2s/settings.php:50
|
2635 |
msgid "Post Templates"
|
2636 |
msgstr "Beitragsvorlagen"
|
2637 |
|
2638 |
+
#: views/b2s/settings.php:72
|
2639 |
msgid ""
|
2640 |
"Connect Blog2Social with 16 different social media networks you like to "
|
2641 |
"share your WordPress blog posts and pages as well as imported posts and "
|
2645 |
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
2646 |
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
2647 |
|
2648 |
+
#: views/b2s/settings.php:92
|
2649 |
#, php-format
|
2650 |
msgid ""
|
2651 |
"You will find more information on how to connect your social media networks "
|
2656 |
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
2657 |
"Social-Media-Netzwerke verbinden kannst."
|
2658 |
|
2659 |
+
#: views/b2s/settings.php:94
|
2660 |
msgid "Connect your social media networks"
|
2661 |
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
2662 |
|
2663 |
+
#: views/b2s/settings.php:97
|
2664 |
msgid ""
|
2665 |
"Use the pre-defined best time settings or define your own best time settings "
|
2666 |
"for sharing your posts . Posting at the right time can be essential to make "
|
2671 |
"geteilt werden sollen. Das Posten zur richtigen Zeit ist essentiell, um mehr "
|
2672 |
"Aufmerksamkeit und Engagement mit Deinen Social Media Beiträgen zu erzielen."
|
2673 |
|
2674 |
+
#: views/b2s/settings.php:99
|
2675 |
#, php-format
|
2676 |
msgid ""
|
2677 |
"You will find more information about the pre-defined best time settings by "
|
2681 |
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
2682 |
"Zeiten\"-Guide</a>."
|
2683 |
|
2684 |
+
#: views/b2s/settings.php:101
|
2685 |
#, php-format
|
2686 |
msgid ""
|
2687 |
"An instruction on how to define your own best times is explained in the "
|
2692 |
"findest Du in dem Guide \"<a href=\"%s\" target=\"_blank\">Wie stelle ich "
|
2693 |
"meine eigenen Zeiteinstellungen zum Posten in sozialen Medien ein?</a>\". "
|
2694 |
|
2695 |
+
#: views/b2s/settings.php:103
|
2696 |
msgid "Check, edit or define your social media time settings"
|
2697 |
msgstr ""
|
2698 |
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
2699 |
"Netzwerke"
|
2700 |
|
2701 |
+
#: views/b2s/settings.php:106
|
2702 |
msgid ""
|
2703 |
"Edit the post templates for each social media network to turn your social "
|
2704 |
"media posts automatically into tailored posts for each network and community."
|
2709 |
"Netzwerk und jede Community zu verwandeln. Du kannst den Inhalt Deines "
|
2710 |
"Beitrags mit den folgenden Variablen bearbeiten:"
|
2711 |
|
2712 |
+
#: views/b2s/settings.php:109
|
2713 |
msgid "Title: The title of your post."
|
2714 |
msgstr "Titel: Der Titel Deines Beitrags."
|
2715 |
|
2716 |
+
#: views/b2s/settings.php:110
|
2717 |
msgid "Content: The content of your post."
|
2718 |
msgstr "Content: Der Inhalt Deines Beitrags."
|
2719 |
|
2720 |
+
#: views/b2s/settings.php:111
|
2721 |
msgid ""
|
2722 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2723 |
"post)."
|
2725 |
"Textauszug: Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü "
|
2726 |
"deines Beitrags festgelegt)."
|
2727 |
|
2728 |
+
#: views/b2s/settings.php:112
|
2729 |
msgid "Keywords: The tags you have set in your post."
|
2730 |
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2731 |
|
2732 |
+
#: views/b2s/settings.php:113
|
2733 |
msgid "Author: The author of the post."
|
2734 |
msgstr "Author: Der Autor des Beitrags."
|
2735 |
|
2736 |
+
#: views/b2s/settings.php:115
|
2737 |
#, php-format
|
2738 |
msgid ""
|
2739 |
"You will find more information on how to use post templates for your social "
|
2743 |
"Media-Netzwerke nutzen kannst, findest Du in diesem <a href=\"%s\" "
|
2744 |
"target=\"_blank\">\"Beitragsvorlagen\"-Guide</a>."
|
2745 |
|
2746 |
+
#: views/b2s/settings.php:117
|
2747 |
msgid "Define your post templates for each social media network"
|
2748 |
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
2749 |
|
2750 |
+
#: views/b2s/settings.php:148
|
2751 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
2752 |
msgstr ""
|
2753 |
"Berücksichtige Shortcodes in meinen Social Media Beiträgen (z.B. Page-"
|
2754 |
"Builder)"
|
2755 |
|
2756 |
+
#: views/b2s/settings.php:151
|
2757 |
#, php-format
|
2758 |
msgid ""
|
2759 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
2777 |
"Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
|
2778 |
"target=\"_blank\">Guide</a>."
|
2779 |
|
2780 |
+
#: views/b2s/settings.php:162
|
2781 |
msgid "Activate Legacy mode "
|
2782 |
msgstr "Kompatibilitätsmodus aktivieren"
|
2783 |
|
2784 |
+
#: views/b2s/settings.php:165
|
2785 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2786 |
msgstr ""
|
2787 |
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
2788 |
"entlasten."
|
2789 |
|
2790 |
+
#: views/b2s/settings.php:176
|
2791 |
msgid "Instant Caching for Facebook Link Posts"
|
2792 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2793 |
|
2794 |
+
#: views/b2s/settings.php:179
|
2795 |
msgid ""
|
2796 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2797 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
3021 |
"damit überschrieben. Bist Du sicher, dass Du Deinen Entwurf überschreiben "
|
3022 |
"möchtest?"
|
3023 |
|
3024 |
+
#: views/b2s/ship.php:700
|
3025 |
+
#, php-format
|
3026 |
+
msgid ""
|
3027 |
+
"Please note: Your Instagram Business Account will be connected with "
|
3028 |
+
"Blog2Social via Facebook. Therefore, please make sure that your Instagram "
|
3029 |
+
"Business Account is linked to a Facebook page and enter the corresponding "
|
3030 |
+
"login data. You will find more information and detailed instructions in the "
|
3031 |
+
"<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
|
3032 |
+
msgstr ""
|
3033 |
+
"Hinweis: Dein Instagram Business-Konto wird über Facebook mit Blog2Social "
|
3034 |
+
"verbunden. Stelle daher bitte sicher, das Dein Instagram Business-Konto mit "
|
3035 |
+
"einer Facebook-Seite verknüpft ist und gib die dazugehörigen Login-Daten ein."
|
3036 |
+
" Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
|
3037 |
+
"href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden.</a>"
|
3038 |
+
|
3039 |
+
#: views/b2s/ship.php:759
|
3040 |
msgid "add Schedule"
|
3041 |
msgstr "Zeitplan hinzufügen"
|
3042 |
|
3043 |
+
#: views/b2s/ship.php:775
|
3044 |
msgid "Give me more information"
|
3045 |
msgstr "Erhalte mehr Infomationen"
|
3046 |
|
3403 |
msgstr "Ja,einverstanden"
|
3404 |
|
3405 |
#: includes/B2S/AutoPost/Item.php:39
|
3406 |
+
#, php-format
|
3407 |
msgid ""
|
3408 |
+
"Posts for Facebook Profiles will be shown on your \"Site & Blog Content\" "
|
3409 |
+
"navigation bar in the \"Instant Sharing\" tab. To share the post on your "
|
3410 |
+
"Facebook Profile just click on the \"Share\" button next to your post. More "
|
3411 |
+
"information in the <a href=\"%s\" target=\"_blank\">Instant Sharing guide</a>"
|
3412 |
+
"."
|
3413 |
msgstr ""
|
3414 |
+
"Beiträge für Facebook-Profile laufen automatisch in der Navigationsleiste "
|
3415 |
+
"unter \"Webseiten- & Blog-Content\" in dem \"Instant Sharing\"-Tab ein und "
|
3416 |
+
"können durch einen Klick auf den \"Teilen\"-Button neben dem Beitrag an Dein "
|
3417 |
+
"Facebook-Profil gesendet werden. Mehr Informationen erhältst Du in dem <a "
|
3418 |
+
"href=\"%s\" target=\"_blank\">\"Instant Sharing\"-Guide</a>."
|
3419 |
|
3420 |
#: includes/B2S/AutoPost/Item.php:42
|
3421 |
msgid "Autoposter"
|
3552 |
msgid "Save"
|
3553 |
msgstr " Speichern"
|
3554 |
|
3555 |
+
#: includes/B2S/AutoPost/Item.php:241 includes/B2S/Network/Item.php:205
|
3556 |
msgid "Connections"
|
3557 |
msgstr "Verbindungen"
|
3558 |
|
3602 |
msgid "Customize & Schedule"
|
3603 |
msgstr "Anpassen & Planen"
|
3604 |
|
3605 |
+
#: includes/B2S/Network/Item.php:66
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3606 |
msgid "Default"
|
3607 |
msgstr "Standard"
|
3608 |
|
3609 |
+
#: includes/B2S/Network/Item.php:66
|
3610 |
msgid "Show all"
|
3611 |
msgstr "alle anzeigen"
|
3612 |
|
3613 |
+
#: includes/B2S/Network/Item.php:67 includes/B2S/Network/Item.php:215
|
3614 |
msgid "My profile"
|
3615 |
msgstr "Mein Profil"
|
3616 |
|
3617 |
+
#: includes/B2S/Network/Item.php:69
|
3618 |
msgid "Your profiles:"
|
3619 |
msgstr "weitere Profile:"
|
3620 |
|
3621 |
+
#: includes/B2S/Network/Item.php:114
|
3622 |
+
msgid "Available accounts"
|
3623 |
+
msgstr "Verfügbare Accounts"
|
3624 |
+
|
3625 |
+
#: includes/B2S/Network/Item.php:115
|
3626 |
+
msgid "additional profiles"
|
3627 |
+
msgstr "gebuchte Profile"
|
3628 |
+
|
3629 |
+
#: includes/B2S/Network/Item.php:115
|
3630 |
+
msgid "additional pages"
|
3631 |
+
msgstr "gebuchte Seiten"
|
3632 |
+
|
3633 |
+
#: includes/B2S/Network/Item.php:115
|
3634 |
+
msgid "additional groups"
|
3635 |
+
msgstr "gebuchte Gruppen"
|
3636 |
+
|
3637 |
+
#: includes/B2S/Network/Item.php:162
|
3638 |
msgid "Best times"
|
3639 |
msgstr "Beste Zeiten"
|
3640 |
|
3641 |
+
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
|
3642 |
#: includes/B2S/Ship/Item.php:331 includes/B2S/Ship/Navbar.php:90
|
3643 |
+
#: includes/B2S/Ship/Portale.php:43
|
3644 |
msgid "Blog"
|
3645 |
msgstr "Blog"
|
3646 |
|
3647 |
+
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
|
3648 |
+
#: includes/B2S/Network/Item.php:670 includes/B2S/Ship/Item.php:331
|
3649 |
+
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:43
|
3650 |
+
msgid "Personal"
|
3651 |
+
msgstr "Privat"
|
3652 |
+
|
3653 |
+
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
3654 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Ship/Portale.php:37
|
3655 |
+
#: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
|
3656 |
msgid "You want to connect a network profile?"
|
3657 |
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
3658 |
|
3659 |
+
#: includes/B2S/Network/Item.php:175 includes/B2S/Ship/Portale.php:47
|
3660 |
msgid "BUSINESS"
|
3661 |
msgstr "BUSINESS"
|
3662 |
|
3663 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Ship/Portale.php:39
|
3664 |
msgid "You want to connect a network page?"
|
3665 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
3666 |
|
3667 |
+
#: includes/B2S/Network/Item.php:192 includes/B2S/Network/Item.php:400
|
3668 |
#: includes/B2S/Ship/Portale.php:31
|
3669 |
msgid "Publication"
|
3670 |
msgstr "Publication"
|
3671 |
|
3672 |
+
#: includes/B2S/Network/Item.php:193 includes/B2S/Ship/Portale.php:32
|
3673 |
msgid "You want to connect a social media group?"
|
3674 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
3675 |
|
3676 |
+
#: includes/B2S/Network/Item.php:209 views/b2s/html/footer.php:241
|
3677 |
msgid "Best Time Manager"
|
3678 |
msgstr "Best Time Manager"
|
3679 |
|
3680 |
+
#: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
|
3681 |
+
#: includes/B2S/Network/Item.php:391
|
3682 |
msgid "To reactivate this connection,"
|
3683 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
3684 |
|
3685 |
+
#: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
|
3686 |
+
#: includes/B2S/Network/Item.php:391 includes/B2S/Ship/Image.php:31
|
3687 |
msgid "please upgrade"
|
3688 |
msgstr "Bitte upgraden"
|
3689 |
|
3690 |
+
#: includes/B2S/Network/Item.php:249 includes/B2S/Network/Item.php:319
|
3691 |
+
#: includes/B2S/Network/Item.php:394
|
3692 |
msgid "Connection is interrupted since"
|
3693 |
msgstr "Verbindung ist unterbrochen seit"
|
3694 |
|
3695 |
+
#: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
|
3696 |
+
#: includes/B2S/Network/Item.php:398
|
3697 |
msgid "Assigned by"
|
3698 |
msgstr "Zugewiesen von"
|
3699 |
|
3700 |
+
#: includes/B2S/Network/Item.php:295 includes/B2S/Network/Item.php:369
|
3701 |
+
#: includes/B2S/Network/Item.php:435 includes/B2S/Ship/Item.php:1211
|
3702 |
msgid "Days"
|
3703 |
msgstr "Tage"
|
3704 |
|
3705 |
+
#: includes/B2S/Network/Item.php:326 includes/B2S/Network/Item.php:869
|
3706 |
#, php-format
|
3707 |
msgid ""
|
3708 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
3711 |
"Unternehmensseite (Arbeitgeberprofil, <a href=\"%s\" target=\"_blank\">Altes "
|
3712 |
"Design bis 30.11.2020</a>)"
|
3713 |
|
3714 |
+
#: includes/B2S/Network/Item.php:327 includes/B2S/Network/Item.php:870
|
3715 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3716 |
msgstr "Unternehmensseite (Arbeitgeberprofil, Neues Design)"
|
3717 |
|
3718 |
+
#: includes/B2S/Network/Item.php:516
|
3719 |
msgid "Connection currently assigned to"
|
3720 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
3721 |
|
3722 |
+
#: includes/B2S/Network/Item.php:561 views/prg/html/form.php:84
|
3723 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3724 |
#: views/prg/html/form.php:163
|
3725 |
msgid "Name"
|
3726 |
msgstr "Name"
|
3727 |
|
3728 |
+
#: includes/B2S/Network/Item.php:562
|
3729 |
msgid "Value"
|
3730 |
msgstr "Zugeordneter Wert"
|
3731 |
|
3732 |
+
#: includes/B2S/Network/Item.php:586
|
3733 |
msgid "+ add Parameter"
|
3734 |
msgstr "+ Parameter hinzufügen"
|
3735 |
|
3736 |
+
#: includes/B2S/Network/Item.php:587
|
3737 |
#, php-format
|
3738 |
msgid "Apply for all %s connections"
|
3739 |
msgstr "Für alle %s Verbindungen übernehmen"
|
3740 |
|
3741 |
+
#: includes/B2S/Network/Item.php:588
|
3742 |
msgid "Apply for all connections"
|
3743 |
msgstr "Für alle Verbindungen übernehmen"
|
3744 |
|
3745 |
+
#: includes/B2S/Network/Item.php:614
|
3746 |
msgid "Successfully saved"
|
3747 |
msgstr "Erfolgreich gespeichert"
|
3748 |
|
3749 |
+
#: includes/B2S/Network/Item.php:615
|
3750 |
msgid "Failed to save"
|
3751 |
msgstr "Speichern fehlgeschlagen"
|
3752 |
|
3753 |
+
#: includes/B2S/Network/Item.php:616
|
3754 |
msgid "Failed to load the default template"
|
3755 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
3756 |
|
3757 |
+
#: includes/B2S/Network/Item.php:659
|
3758 |
msgid ""
|
3759 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
3760 |
"templates that will automatically pre-format the structure of your social "
|
3774 |
"auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
|
3775 |
"Beitragsvorlagen hinzu."
|
3776 |
|
3777 |
+
#: includes/B2S/Network/Item.php:660
|
3778 |
msgid "Upgrade to Blog2Social Smart"
|
3779 |
msgstr "Upgrade auf Blog2Social Smart"
|
3780 |
|
3781 |
+
#: includes/B2S/Network/Item.php:681
|
3782 |
msgid "Activate Instant Caching"
|
3783 |
msgstr "Instant Caching aktivieren"
|
3784 |
|
3785 |
+
#: includes/B2S/Network/Item.php:742
|
3786 |
msgid "Format"
|
3787 |
msgstr "Format"
|
3788 |
|
3789 |
+
#: includes/B2S/Network/Item.php:743 includes/B2S/Network/Item.php:764
|
3790 |
msgid "Load default settings"
|
3791 |
msgstr "Lade Standardeinstellungen"
|
3792 |
|
3793 |
+
#: includes/B2S/Network/Item.php:749 includes/B2S/Network/Item.php:752
|
3794 |
#: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
|
3795 |
msgid "Link"
|
3796 |
msgstr "Link"
|
3797 |
|
3798 |
+
#: includes/B2S/Network/Item.php:750 includes/B2S/Network/Item.php:753
|
3799 |
msgid "Image"
|
3800 |
msgstr "Bild"
|
3801 |
|
3802 |
+
#: includes/B2S/Network/Item.php:762 includes/B2S/Settings/Item.php:64
|
3803 |
msgid "Content"
|
3804 |
msgstr "Inhalt"
|
3805 |
|
3806 |
+
#: includes/B2S/Network/Item.php:771 includes/B2S/Ship/Item.php:372
|
3807 |
msgid ""
|
3808 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3809 |
"in your post."
|
3811 |
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
3812 |
"Hashtags in Deinem Beitrag."
|
3813 |
|
3814 |
+
#: includes/B2S/Network/Item.php:783
|
3815 |
msgid "clear"
|
3816 |
msgstr "löschen"
|
3817 |
|
3818 |
+
#: includes/B2S/Network/Item.php:794
|
3819 |
msgid ""
|
3820 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
3821 |
"your page, in order to refer to the original source of the content and to "
|
3825 |
"um so auf die ursprüngliche Quelle des Inhalts zu verweisen und die "
|
3826 |
"Reichweite über Suchmaschinen wie Google zu vergrößern."
|
3827 |
|
3828 |
+
#: includes/B2S/Network/Item.php:796
|
3829 |
msgid "The link will be added automatically at the end of the post."
|
3830 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
3831 |
|
3832 |
+
#: includes/B2S/Network/Item.php:801
|
3833 |
msgid "The network does not support hashtags."
|
3834 |
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
3835 |
|
3836 |
+
#: includes/B2S/Network/Item.php:805
|
3837 |
+
msgid ""
|
3838 |
+
"This social network displays the predefined hashtags as clickable tags at "
|
3839 |
+
"the end of your post."
|
3840 |
+
msgstr ""
|
3841 |
+
"Das Netzwerk veröffentlicht die vordefinierten Hashtags als anklickbare Tags "
|
3842 |
+
"am Ende Deines Beitrags."
|
3843 |
+
|
3844 |
+
#: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
|
3845 |
+
#: includes/B2S/Network/Item.php:900
|
3846 |
msgid "Network limit"
|
3847 |
msgstr "Netzwerkbegrenzung"
|
3848 |
|
3849 |
+
#: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
|
3850 |
+
#: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
|
3851 |
+
#: includes/B2S/Network/Item.php:900 includes/B2S/Ship/Item.php:215
|
3852 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
3853 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
3854 |
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
|
3856 |
msgid "characters"
|
3857 |
msgstr "Zeichen"
|
3858 |
|
3859 |
+
#: includes/B2S/Network/Item.php:817
|
3860 |
msgid "Add a link-URL to the end of my image post."
|
3861 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
3862 |
|
3863 |
+
#: includes/B2S/Network/Item.php:824
|
3864 |
msgid ""
|
3865 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3866 |
"Instagram does not turn link-URLs into clickable links)"
|
3868 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
3869 |
"Instagram Links nicht als klickbare Links darstellt)"
|
3870 |
|
3871 |
+
#: includes/B2S/Network/Item.php:829
|
3872 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
3873 |
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
3874 |
|
3875 |
+
#: includes/B2S/Network/Item.php:840
|
3876 |
msgid ""
|
3877 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
3878 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
3881 |
"Bitte aktiviere serverseitig die PHP \"mbstring\" Erweiterung, um die "
|
3882 |
"Zeichenbegrenzungsfunktion zu nutzen."
|
3883 |
|
3884 |
+
#: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
|
3885 |
msgid "recommended length"
|
3886 |
msgstr "Empfohlene Länge"
|
3887 |
|
3888 |
+
#: includes/B2S/Network/Item.php:926 includes/B2S/Network/Item.php:978
|
3889 |
+
#: includes/B2S/Network/Item.php:1047 includes/B2S/Network/Item.php:1099
|
3890 |
+
#: includes/B2S/Network/Item.php:1133 includes/B2S/Network/Item.php:1184
|
3891 |
+
#: includes/B2S/Network/Item.php:1214 includes/B2S/Network/Item.php:1268
|
3892 |
+
#: includes/B2S/Network/Item.php:1287 includes/B2S/Network/Item.php:1321
|
3893 |
+
#: includes/B2S/Network/Item.php:1337 includes/B2S/Network/Item.php:1358
|
3894 |
+
#: includes/B2S/Network/Item.php:1374 includes/B2S/Network/Item.php:1390
|
3895 |
+
#: includes/B2S/Network/Item.php:1409 includes/B2S/Network/Item.php:1425
|
3896 |
msgid "Preview"
|
3897 |
msgstr "Vorschau"
|
3898 |
|
3920 |
msgid "autopost"
|
3921 |
msgstr "Auto-Post"
|
3922 |
|
3923 |
+
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:777
|
3924 |
msgid "re-share"
|
3925 |
msgstr "erneut teilen"
|
3926 |
|
4057 |
msgid "last saved"
|
4058 |
msgstr "zuletzt gespeichert:"
|
4059 |
|
4060 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:871
|
4061 |
+
#: includes/B2S/Ship/Save.php:448
|
4062 |
+
msgid "Retweet"
|
4063 |
+
msgstr "Retweet"
|
4064 |
+
|
4065 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:871
|
4066 |
+
msgid "Re-Share"
|
4067 |
+
msgstr "Wiederholt geteilt"
|
4068 |
+
|
4069 |
+
#: includes/B2S/Post/Item.php:736 includes/B2S/Post/Item.php:806
|
4070 |
+
#: includes/B2S/Post/Item.php:877 includes/B2S/RePost/Item.php:130
|
4071 |
msgid "select all"
|
4072 |
msgstr "alle auswählen"
|
4073 |
|
4074 |
+
#: includes/B2S/Post/Item.php:739
|
4075 |
+
msgid "show"
|
4076 |
+
msgstr "ansehen"
|
4077 |
+
|
4078 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:459
|
4079 |
msgid "Please see"
|
4080 |
msgstr "siehe"
|
4081 |
|
4082 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:459
|
4083 |
msgid "FAQ"
|
4084 |
msgstr "FAQ"
|
4085 |
|
4086 |
+
#: includes/B2S/Post/Item.php:752
|
4087 |
+
#, php-format
|
4088 |
+
msgid "sharing in progress by %s"
|
4089 |
+
msgstr "wird gerade von %s geteilt"
|
4090 |
+
|
4091 |
+
#: includes/B2S/Post/Item.php:752
|
4092 |
+
#, php-format
|
4093 |
+
msgid "shared by %s"
|
4094 |
+
msgstr "von %s geteilt"
|
4095 |
+
|
4096 |
+
#: includes/B2S/Post/Item.php:773 includes/B2S/Post/Item.php:786
|
4097 |
msgid "You want to delete a publish post entry?"
|
4098 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
4099 |
|
4100 |
+
#: includes/B2S/Post/Item.php:774 includes/B2S/Post/Item.php:787
|
4101 |
msgid "delete from reporting"
|
4102 |
msgstr "aus Reporting löschen"
|
4103 |
|
4104 |
+
#: includes/B2S/Post/Item.php:809
|
4105 |
#, php-format
|
4106 |
msgid "is waiting to shared by %s"
|
4107 |
msgstr "wartet darauf von %s geteilt zu werden"
|
4108 |
|
4109 |
+
#: includes/B2S/Post/Item.php:839 includes/B2S/Ship/Save.php:429
|
4110 |
msgid "share"
|
4111 |
msgstr "teilen"
|
4112 |
|
4113 |
+
#: includes/B2S/Post/Item.php:847
|
4114 |
msgid "You want to delete your Social Media post?"
|
4115 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
4116 |
|
4117 |
+
#: includes/B2S/Post/Item.php:890
|
4118 |
#, php-format
|
4119 |
msgid "last modified by %s"
|
4120 |
msgstr "zuletzt von %s bearbeitet"
|
4121 |
|
4122 |
+
#: includes/B2S/Post/Item.php:892
|
4123 |
msgid "is currently being processed by the network"
|
4124 |
msgstr "wird vom Netzwerk verarbeitet"
|
4125 |
|
4126 |
+
#: includes/B2S/Post/Item.php:897
|
4127 |
#, php-format
|
4128 |
msgid "scheduled by %s"
|
4129 |
msgstr "von %s vorgeplant "
|
4130 |
|
4131 |
+
#: includes/B2S/Post/Item.php:902
|
4132 |
msgid "You want to edit your scheduled post?"
|
4133 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
4134 |
|
4135 |
+
#: includes/B2S/Post/Item.php:903
|
4136 |
msgid "edit"
|
4137 |
msgstr "edit"
|
4138 |
|
4139 |
+
#: includes/B2S/Post/Item.php:915
|
4140 |
msgid "delete scheduling"
|
4141 |
msgstr "Planung löschen"
|
4142 |
|
4273 |
msgid "Queue"
|
4274 |
msgstr "Warteschlange"
|
4275 |
|
4276 |
+
#: includes/B2S/RePost/Item.php:127
|
4277 |
+
msgid "Posts"
|
4278 |
+
msgstr "Posts"
|
4279 |
+
|
4280 |
#: includes/B2S/RePost/Item.php:131
|
4281 |
msgid "delete selected posts"
|
4282 |
msgstr "markierte Beiträge löschen"
|
4309 |
#: includes/B2S/Settings/Item.php:66
|
4310 |
#, php-format
|
4311 |
msgid ""
|
4312 |
+
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
4313 |
+
"links and to track the performance of your links in your social networks. "
|
4314 |
+
"Activate one of the URL shorteners you like to use and link it to your "
|
4315 |
+
"account. Your social media posts will then be shared with your links of Bit."
|
4316 |
+
"ly, Rebrandly or Sniply. You can then monitor the success of your posts in "
|
4317 |
+
"these accounts. Please note: Some networks do not allow shortlinks. "
|
4318 |
+
"Blog2Social will apply the regular URL for these social platforms. You find "
|
4319 |
+
"more information on the support of URL shortener by the different social "
|
4320 |
+
"platforms in the <a href=\"%s\" target=\"_blank\">link shortener guide</a>."
|
4321 |
+
msgstr ""
|
4322 |
+
"Du kannst Bit.ly, Rebrandly oder Sniply verwenden, um die URL Deiner Links "
|
4323 |
+
"zu verkürzen und die Performance Deiner Links in den sozialen Netzwerken zu "
|
4324 |
+
"verfolgen. Aktiviere einen der URL-Shortener, den Du verwenden möchtest, in "
|
4325 |
+
"den Blog2Social-Einstellungen und verbinde Blog2Social mit diesem Account. "
|
4326 |
+
"Deine Social-Media-Beiträge werden dann mit Deinem Bit.ly, Rebrandly oder "
|
4327 |
+
"Sniply Link geteilt und Du kannst den Erfolg Deiner Beiträge in dem "
|
4328 |
+
"jeweiligen Konto verfolgen. Bitte beachte: Nicht jedes Netzwerk erlaubt "
|
4329 |
+
"Kurzlinks. Blog2Social verwendet für diese Netzwerke dann die normale URL. "
|
4330 |
+
"Mehr Informationen dazu, welche URL-Shortener von den jeweiligen Netzwerken "
|
4331 |
+
"unterstützt werden, erhältst Du in dem \n"
|
4332 |
+
"<a href=\"%s\" target=\"_blank\">\"Link-Shortener\"-Guide</a>."
|
4333 |
|
4334 |
#: includes/B2S/Settings/Item.php:67
|
4335 |
msgid "no URL Shortener"
|
5417 |
msgstr "Möchtest Du Retweeten?"
|
5418 |
|
5419 |
#: views/b2s/html/footer.php:325
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5420 |
msgid "Define Twitter post content"
|
5421 |
msgstr "Twitter Beitragsinhalt definieren"
|
5422 |
|
5423 |
+
#: views/b2s/html/footer.php:328
|
5424 |
msgid ""
|
5425 |
"Select the content that will be automatically pre-filled in your Twitter "
|
5426 |
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
5431 |
"aufnehmen\" angekreuzt haben, werden Hashtags automatisch im Dropdown-Menü "
|
5432 |
"hinzugefügt."
|
5433 |
|
5434 |
+
#: views/b2s/html/footer.php:384
|
5435 |
msgid ""
|
5436 |
"Share imported posts with the Auto Poster: Posts that you import via RSS "
|
5437 |
"feeds and plugins can be shared automatically on your social media channels."
|
5440 |
"Feeds und Plugins importierst, können automatisch auf Deinen Social Media-"
|
5441 |
"Kanälen geteilt werden."
|
5442 |
|
5443 |
+
#: views/b2s/html/footer.php:385
|
5444 |
#, php-format
|
5445 |
msgid ""
|
5446 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for "
|
5449 |
"<a target=\"_blank\" href=\"%s\">Erfahre, wie Du den Auto-Poster für "
|
5450 |
"importierte Beiträge einrichtest.</a>"
|
5451 |
|
5452 |
+
#: views/b2s/html/footer.php:419
|
5453 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
5454 |
msgstr ""
|
5455 |
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
5456 |
|
5457 |
+
#: views/b2s/html/footer.php:422
|
5458 |
msgid ""
|
5459 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
5460 |
"administrator to other users if they have activated the same Blog2Social-"
|
5478 |
"Media-Netzwerke verbunden, auf denen Inhalte automatisch geteilt werden "
|
5479 |
"sollen, die der Administrator ausgewählt hat."
|
5480 |
|
5481 |
+
#: views/b2s/html/footer.php:424
|
5482 |
#, php-format
|
5483 |
msgid ""
|
5484 |
"You will get more information on how to assign the Auto-Poster settings in "
|
5487 |
"Mehr Informationen dazu, wie Du die Einstellungen zuweisen kannst, findest "
|
5488 |
"Du in diesem <a target=\"_blank\" href=\"%s\">Auto-Poster-Guide</a>. "
|
5489 |
|
5490 |
+
#: views/b2s/html/footer.php:437
|
5491 |
msgid "Blog2Social: Re-Share Posts"
|
5492 |
msgstr "Blog2Social: Beiträge wiederholt teilen"
|
5493 |
|
5494 |
+
#: views/b2s/html/footer.php:441
|
5495 |
msgid ""
|
5496 |
"Keep your social media feed updated automatically with your best content and "
|
5497 |
"save valuable time by reviving your evergreen content regularly. Automate "
|
5504 |
"gesamten Re-Sharing-Prozess, damit Du mehr Zeit hast neuen Content zu "
|
5505 |
"erstellen und mit Deiner Community zu interagieren."
|
5506 |
|
5507 |
+
#: views/b2s/html/footer.php:442
|
5508 |
#, php-format
|
5509 |
msgid "<a target=\"_blank\" href=\"%s\">More information</a>"
|
5510 |
msgstr "<a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
5511 |
|
5512 |
+
#: views/b2s/html/footer.php:481
|
5513 |
msgid "Social Meta Tags Settings"
|
5514 |
msgstr "Social Meta Tags Einstellungen"
|
5515 |
|
5516 |
+
#: views/b2s/html/footer.php:484 views/b2s/html/footer.php:575
|
5517 |
msgid "Change image, title and description for your post on this network"
|
5518 |
msgstr ""
|
5519 |
"Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
|
5520 |
"Netzwerk"
|
5521 |
|
5522 |
+
#: views/b2s/html/footer.php:490
|
5523 |
msgid ""
|
5524 |
"Facebook has changed its policy for posting link posts via plugins or web "
|
5525 |
"applications. Facebook does no longer display the featured or selected image "
|
5542 |
"ein zufällig gewähltes Bild bei Link-Beiträgen an. Bitte stelle sicher, dass "
|
5543 |
"Dein Bild die Anforderungen an die Bildgröße für Facebook erfüllt."
|
5544 |
|
5545 |
+
#: views/b2s/html/footer.php:492
|
5546 |
msgid ""
|
5547 |
"With Blog2Social you can select a featured image or any image you select to "
|
5548 |
"be displayed with your link post. Blog2Social will automatically write the "
|
5561 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
5562 |
"Deinen Linkbeitrag bei Facebook auswählen kannst.\t\t"
|
5563 |
|
5564 |
+
#: views/b2s/html/footer.php:495
|
5565 |
msgid ""
|
5566 |
"Twitter has changed its policy for posting link posts via plugins or web "
|
5567 |
"applications. Twitter does no longer display the featured or selected image "
|
5585 |
"stelle sicher, dass Dein Bild die Anforderungen an die Bildgröße für Twitter "
|
5586 |
"erfüllt."
|
5587 |
|
5588 |
+
#: views/b2s/html/footer.php:497
|
5589 |
msgid ""
|
5590 |
"With Blog2Social you can select a featured image or any image you select to "
|
5591 |
"be displayed with your link post. Blog2Social will automatically write the "
|
5604 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
5605 |
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
5606 |
|
5607 |
+
#: views/b2s/html/footer.php:500
|
5608 |
msgid ""
|
5609 |
"To display your link preview, LinkedIn uses the image set in the oEmbed tags "
|
5610 |
"in meta data of your post. WordPress automatically sets your featured image "
|
5618 |
"fest. Wenn Du Dein Bild bei LinkedIn ändern möchtest, ohne Dein Beitragsbild "
|
5619 |
"zu ändern, kannst du die Box “oEmbed Tags hinzufügen” abhaken."
|
5620 |
|
5621 |
+
#: views/b2s/html/footer.php:502
|
5622 |
msgid ""
|
5623 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
5624 |
"Graph) meta tags instead."
|
5626 |
"Wenn LinkedIn keine oEmbed Tags in deinen Daten finden kann, nutzt das "
|
5627 |
"Netzwerk stattdessen die OG (Open Graph) Meta Tags."
|
5628 |
|
5629 |
+
#: views/b2s/html/footer.php:504
|
5630 |
msgid ""
|
5631 |
"With Blog2Social you can select a featured image or any image you select to "
|
5632 |
"be displayed with your link post. Blog2Social will automatically write the "
|
5649 |
"nutzt, um Deine OG Tags zu setzen, ansonsten werden die sozialen Netzwerke "
|
5650 |
"kein Bild oder ein zufälliges Bild in Deinem Post anzeigen."
|
5651 |
|
5652 |
+
#: views/b2s/html/footer.php:507
|
5653 |
msgid ""
|
5654 |
"You can change the image, title and description for your post on Facebook, "
|
5655 |
"by editing the following fields for"
|
5658 |
"Facebook ändern, indem Du die folgenden Felder für die Open GraphTags "
|
5659 |
"bearbeitest"
|
5660 |
|
5661 |
+
#: views/b2s/html/footer.php:510 views/b2s/html/footer.php:525
|
5662 |
msgid "image"
|
5663 |
msgstr "Bild"
|
5664 |
|
5665 |
+
#: views/b2s/html/footer.php:511 views/b2s/html/footer.php:526
|
5666 |
msgid "title"
|
5667 |
msgstr "Titel"
|
5668 |
|
5669 |
+
#: views/b2s/html/footer.php:512 views/b2s/html/footer.php:527
|
5670 |
msgid "description"
|
5671 |
msgstr "Beschreibung"
|
5672 |
|
5673 |
+
#: views/b2s/html/footer.php:514
|
5674 |
msgid ""
|
5675 |
"Blog2Social will automatically write these information in the Facebook Open "
|
5676 |
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
5678 |
"Blog2Social schreibt diese Informationen automatisch in die Facebook Open "
|
5679 |
"Graph (OG) Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
5680 |
|
5681 |
+
#: views/b2s/html/footer.php:517
|
5682 |
msgid ""
|
5683 |
"Please note: If this post has already been shared or scheduled previously, "
|
5684 |
"your current changes will also affect the look of previously shared or "
|
5691 |
"aktuellsten Informationen aus den Open Graph Meta Tags zieht und alle "
|
5692 |
"bereits existierenden Beiträge automatisch updatet. "
|
5693 |
|
5694 |
+
#: views/b2s/html/footer.php:519
|
5695 |
#, php-format
|
5696 |
msgid ""
|
5697 |
"Please note: Your changes will have no effect on your social media posts on "
|
5703 |
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
5704 |
"manuell deaktiviert hast."
|
5705 |
|
5706 |
+
#: views/b2s/html/footer.php:522
|
5707 |
msgid ""
|
5708 |
"You can change the image, title and description for your post on Twitter, by "
|
5709 |
"editing the following fields for"
|
5712 |
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
5713 |
"bearbeitest"
|
5714 |
|
5715 |
+
#: views/b2s/html/footer.php:529
|
5716 |
msgid ""
|
5717 |
"Blog2Social will automatically write these information in the Twitter Card "
|
5718 |
"Meta Tags for Image, Title and Description of your blog post."
|
5720 |
"Blog2Social schreibt diese Informationen automatisch in die Twitter Card "
|
5721 |
"Meta Tags als Bild, Titel und Beschreibung Deines Blogbeitrags."
|
5722 |
|
5723 |
+
#: views/b2s/html/footer.php:532
|
5724 |
msgid ""
|
5725 |
"Please note: If this post was previously shared or scheduled, your current "
|
5726 |
"changes will also affect the look of previously shared or scheduled posts, "
|
5735 |
"Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter "
|
5736 |
"Deine aktuellen Änderungen aktualisiert."
|
5737 |
|
5738 |
+
#: views/b2s/html/footer.php:534
|
5739 |
#, php-format
|
5740 |
msgid ""
|
5741 |
"Please note: Your changes will have no effect on your social media posts on "
|
5747 |
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
5748 |
"manuell deaktiviert hast."
|
5749 |
|
5750 |
+
#: views/b2s/html/footer.php:541
|
5751 |
msgid "You want to change the image, title and description for your post?"
|
5752 |
msgstr ""
|
5753 |
"Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
|
5754 |
|
5755 |
+
#: views/b2s/html/footer.php:580
|
5756 |
msgid ""
|
5757 |
"You are currently sharing this post as image post. Changes to title and "
|
5758 |
"description Meta Tag parameters will only be supported for link post formats."
|
5765 |
"individuelle Änderungen am Titel und an der Beschreibung für Deine "
|
5766 |
"Beitragsvorschau vorzunehmen."
|
5767 |
|
5768 |
+
#: views/b2s/html/footer.php:583
|
5769 |
#, php-format
|
5770 |
msgid ""
|
5771 |
"Your changes will have no effect on your social media posts on Facebook, if "
|
5777 |
"Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell "
|
5778 |
"deaktiviert hast."
|
5779 |
|
5780 |
+
#: views/b2s/html/footer.php:586
|
5781 |
#, php-format
|
5782 |
msgid ""
|
5783 |
"Your changes will have no effect on your social media posts on Twitter, if "
|
5841 |
|
5842 |
#: views/b2s/html/header.php:97
|
5843 |
msgid ""
|
5844 |
+
"You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
|
5845 |
+
"that you use only one plugin to set social meta tags so that the networks "
|
5846 |
+
"can show the link preview of your post correctly."
|
5847 |
msgstr ""
|
5848 |
+
"Du hast sowohl Yoast SEO als auch Blog2Social Meta Tags aktiv. Bitte achte "
|
5849 |
+
"darauf, dass Du nur ein Plugin zum Setzen von Social Meta Tags verwendest, "
|
5850 |
+
"damit die Netzwerke die Link-Vorschau Deines Beitrags korrekt anzeigen "
|
5851 |
+
"können."
|
5852 |
+
|
5853 |
+
#: views/b2s/html/header.php:97
|
5854 |
+
#, php-format
|
5855 |
+
msgid ""
|
5856 |
+
"Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
|
5857 |
+
"guide</a>."
|
5858 |
+
msgstr ""
|
5859 |
+
"Mehr Informationen erhältst Du in der <a href=\"%s\" target=\"_blank\">"
|
5860 |
+
"Social-Meta-Tag-Anleitung</a>."
|
5861 |
|
5862 |
#: views/b2s/html/header.php:103
|
5863 |
msgid ""
|
6185 |
msgid "I agree to the Adenion Privacy Policy"
|
6186 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
6187 |
|
6188 |
+
#: views/b2s/html/post.navbar.php:10
|
6189 |
+
msgid "All Posts"
|
6190 |
+
msgstr "Alle Beiträge"
|
6191 |
|
6192 |
#: views/b2s/html/sidebar.php:26 views/b2s/html/sidebar.ship.php:25
|
6193 |
msgid "Version"
|
6225 |
msgid "Plans & Prices"
|
6226 |
msgstr "Tarife & Preise"
|
6227 |
|
6228 |
+
#: views/b2s/html/sidebar.php:166
|
6229 |
+
msgid ""
|
6230 |
+
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
6231 |
+
"us a 5-star rating. If there's something you need assistance with, you can "
|
6232 |
+
"ask all your questions in the Blog2Social support community where you will "
|
6233 |
+
"receive help from our committed support team. You can easily access the "
|
6234 |
+
"Blog2Social Support Community via the Help & Support section in the "
|
6235 |
+
"Blog2Social menu on your WP dashboard."
|
6236 |
+
msgstr ""
|
6237 |
+
"Wenn Dir Blog2Social gefällt, würden wir uns sehr über eine 5-Sterne-"
|
6238 |
+
"Bewertung freuen. Wenn es etwas gibt, wofür Du Unterstützung benötigst, "
|
6239 |
+
"kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
|
6240 |
+
"erhältst Hilfe von unserem engagierten Support-Team. Über das Menü Hilfe & "
|
6241 |
+
"Support in Deinem Blog2Social-Dashboard, gelangst Du ganz einfach zur "
|
6242 |
+
"Blog2Social-Support-Community."
|
6243 |
+
|
6244 |
#: views/b2s/html/sidebar.php:180
|
6245 |
msgid "Blog2Social Blog News"
|
6246 |
msgstr "Blog2Social Blog News"
|
languages/blog2social.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -31,39 +31,39 @@ msgstr ""
|
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes/Loader.php:
|
35 |
msgid "Bitly"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes/Loader.php:
|
39 |
msgid "Rebrandly"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/Loader.php:
|
43 |
msgid "Sniply"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/Loader.php:
|
47 |
msgid "Blog2Social: Autoposter"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/Loader.php:
|
51 |
msgid "Blog2Social: Social Media Content Calendar"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/Loader.php:
|
55 |
msgid "This post will be shared into your social media from"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/Loader.php:
|
59 |
msgid "show details"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes/Loader.php:
|
63 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/Loader.php:
|
67 |
msgid ""
|
68 |
"Please make sure that your post, page or custom post type is published or "
|
69 |
"scheduled to be published on this blog before you try to post it with "
|
@@ -71,7 +71,7 @@ msgid ""
|
|
71 |
"scheduled WP posts will be shared with the posting id link."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: includes/Loader.php:
|
75 |
#: includes/B2S/AutoPost/Item.php:59
|
76 |
msgid ""
|
77 |
"There are no social network accounts assigned to your selected network "
|
@@ -79,128 +79,132 @@ msgid ""
|
|
79 |
"another network collection."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: includes/Loader.php:
|
83 |
#: views/b2s/html/sidebar.ship.php:44
|
84 |
msgid "Upgrade to Premium"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/Loader.php:
|
88 |
-
#: includes/Loader.php:
|
89 |
-
#:
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/Loader.php:
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/Loader.php:
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/Loader.php:
|
102 |
#: views/b2s/html/sidebar.php:125
|
103 |
msgid "Shared Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/Loader.php:
|
107 |
#: views/b2s/html/sidebar.php:119
|
108 |
msgid "Instant Sharing"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/Loader.php:
|
112 |
-
#: views/b2s/html/post.navbar.php:
|
113 |
#: views/b2s/html/sidebar.php:116
|
114 |
msgid "Drafts"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/Loader.php:
|
118 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
119 |
msgid "Scheduled Posts"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/Loader.php:
|
123 |
msgid "Social Media Post Drafts"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes/Loader.php:
|
127 |
#: views/b2s/html/sidebar.php:113
|
128 |
msgid "Favorites"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/Loader.php:
|
132 |
#: views/b2s/html/sidebar.php:75
|
133 |
msgid "Auto-Post"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/Loader.php:
|
137 |
-
#: views/b2s/html/post.navbar.php:
|
138 |
msgid "Re-Share Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/Loader.php:
|
142 |
#: views/b2s/support.php:22
|
143 |
msgid "NEW"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/Loader.php:
|
147 |
-
#: includes/B2S/Network/Item.php:
|
148 |
-
#: includes/B2S/Network/Item.php:
|
149 |
-
#: includes/B2S/Network/Item.php:
|
150 |
-
#: includes/B2S/Ship/Portale.php:
|
151 |
-
#: includes/B2S/Ship/Portale.php:
|
152 |
msgid "Profile"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/Loader.php:
|
156 |
-
#: includes/B2S/Network/Item.php:
|
157 |
-
#: includes/B2S/Network/Item.php:
|
158 |
-
#: includes/B2S/Network/Item.php:
|
159 |
-
#: includes/B2S/Ship/Portale.php:
|
160 |
msgid "Page"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/Loader.php:
|
164 |
-
#: includes/B2S/Network/Item.php:
|
165 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
166 |
msgid "Group"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/Loader.php:
|
170 |
msgid "Company-Page (Employer Branding Profile)"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/Loader.php:
|
|
|
|
|
|
|
|
|
174 |
msgid "Business"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/Loader.php:
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
"The network could not publish your post. Please see the following <a "
|
181 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: includes/Loader.php:
|
185 |
msgid ""
|
186 |
"Your authorization has expired. Please reconnect your account in the "
|
187 |
"Blog2Social network settings."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/Loader.php:
|
191 |
#, php-format
|
192 |
msgid ""
|
193 |
"The content of your post could not be approved by the network. Please see "
|
194 |
"the following <a target=\"_blank\" href=\"%s\">guide</a>."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/Loader.php:
|
198 |
msgid ""
|
199 |
"We don't have the permission to publish your post. Please check your "
|
200 |
"authorization."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/Loader.php:
|
204 |
#, php-format
|
205 |
msgid ""
|
206 |
"The connection to your social media account is interrupted. Please check "
|
@@ -209,158 +213,158 @@ msgid ""
|
|
209 |
"your social media account."
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/Loader.php:
|
213 |
msgid "Your daily limit has been reached."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/Loader.php:
|
217 |
msgid ""
|
218 |
"Your post could not be posted, because your image is not available or the "
|
219 |
"image source does not allow to publish"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/Loader.php:
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
"The network has blocked your account. Please see the following <a "
|
226 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: includes/Loader.php:
|
230 |
#, php-format
|
231 |
msgid ""
|
232 |
"The number of images is reached. Please see the following <a "
|
233 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/Loader.php:
|
237 |
msgid ""
|
238 |
"Your daily limit for this network has been reached. Please try again later."
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: includes/Loader.php:
|
242 |
#, php-format
|
243 |
msgid ""
|
244 |
"The network can not publish special characters such as Emoji. Please see the "
|
245 |
"following <a target=\"_blank\" href=\"%s\">guide</a>."
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/Loader.php:
|
249 |
msgid "Your post is a duplicate."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/Loader.php:
|
253 |
msgid "The network requires a public url."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/Loader.php:
|
257 |
msgid ""
|
258 |
"Your blog post was not available for the network at the time of publication."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/Loader.php:
|
262 |
msgid "You have already retweeted this post."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/Loader.php:
|
266 |
msgid ""
|
267 |
"This XING API is no longer supported by XING. Please connect your XING "
|
268 |
"accounts with the new XING interface to reschedule your posts."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/Loader.php:
|
272 |
msgid "An image is required to post on this social network."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/Loader.php:
|
276 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/Loader.php:
|
280 |
msgid ""
|
281 |
"Your post could not be posted, because your image can not be processed by "
|
282 |
"the network."
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/Loader.php:
|
286 |
#, php-format
|
287 |
msgid ""
|
288 |
"Instagram published your post without text. Please see the following <a "
|
289 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: includes/Loader.php:
|
293 |
msgid "Your group can not be found by the network."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: includes/Loader.php:
|
297 |
msgid "Dashboard"
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/Loader.php:
|
301 |
msgid "Share Website & Blog Content"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/Loader.php:
|
305 |
msgid "Site & Blog Content"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/Loader.php:
|
309 |
msgid "Create Social Media Posts"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/Loader.php:
|
313 |
msgid "Social Media Posts"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/Loader.php:
|
317 |
-
#: views/b2s/html/post.navbar.php:
|
318 |
msgid "Calendar"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: includes/Loader.php:
|
322 |
msgid "Networks"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: includes/Loader.php:
|
326 |
msgid "PR-Service"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: includes/Loader.php:
|
330 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
331 |
#: views/b2s/html/sidebar.ship.php:66
|
332 |
msgid "Help & Support"
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: includes/Loader.php:
|
336 |
msgid "Premium"
|
337 |
msgstr ""
|
338 |
|
339 |
-
#: includes/Loader.php:
|
340 |
msgid "PREMIUM"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/Loader.php:
|
344 |
#: views/b2s/html/sidebar.ship.php:24
|
345 |
msgid "Blog2Social"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: includes/Loader.php:
|
349 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: includes/Loader.php:
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
356 |
"our FAQ</a>"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: includes/Loader.php:
|
360 |
msgid "or"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: includes/Loader.php:
|
364 |
msgid "back to install plugins"
|
365 |
msgstr ""
|
366 |
|
@@ -368,7 +372,7 @@ msgstr ""
|
|
368 |
msgid "Rate it!"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: includes/Notice.php:18
|
372 |
msgid ""
|
373 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
374 |
"anything that does not work for you, please contact us!"
|
@@ -400,205 +404,205 @@ msgid ""
|
|
400 |
"higher, or ask your server administrator to do it for you."
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/Tools.php:
|
404 |
#: views/b2s/html/sidebar.ship.php:29
|
405 |
msgid "License"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: includes/Tools.php:
|
409 |
msgid "Greece"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: includes/Tools.php:
|
413 |
msgid "India"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/Tools.php:
|
417 |
msgid "United States of America"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: includes/Tools.php:
|
421 |
msgid "Ireland"
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: includes/Tools.php:
|
425 |
msgid "Italy"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: includes/Tools.php:
|
429 |
msgid "Switzerland"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: includes/Tools.php:
|
433 |
msgid "Czechoslovakia"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: includes/Tools.php:
|
437 |
msgid "Indonesia"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/Tools.php:
|
441 |
msgid "Spain"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: includes/Tools.php:
|
445 |
msgid "Canada"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: includes/Tools.php:
|
449 |
msgid "Great Britain"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: includes/Tools.php:
|
453 |
msgid "Russia"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: includes/Tools.php:
|
457 |
msgid "Netherlands"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: includes/Tools.php:
|
461 |
msgid "Portugal"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: includes/Tools.php:
|
465 |
msgid "Norway"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: includes/Tools.php:
|
469 |
msgid "Turkey"
|
470 |
msgstr ""
|
471 |
|
472 |
-
#: includes/Tools.php:
|
473 |
msgid "Australia"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: includes/Tools.php:
|
477 |
msgid "Austria"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: includes/Tools.php:
|
481 |
msgid "Poland"
|
482 |
msgstr ""
|
483 |
|
484 |
-
#: includes/Tools.php:
|
485 |
msgid "France"
|
486 |
msgstr ""
|
487 |
|
488 |
-
#: includes/Tools.php:
|
489 |
msgid "Romania"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: includes/Tools.php:
|
493 |
msgid "Germany"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: includes/Tools.php:
|
497 |
msgid "Denmark"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: includes/Tools.php:
|
501 |
msgid "New Zealand"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: includes/Tools.php:
|
505 |
msgid "Finland"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: includes/Tools.php:
|
509 |
msgid "Hungary"
|
510 |
msgstr ""
|
511 |
|
512 |
-
#: includes/Tools.php:
|
513 |
msgid "Japan"
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: includes/Tools.php:
|
517 |
msgid "Argentina"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: includes/Tools.php:
|
521 |
msgid "Korea"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: includes/Tools.php:
|
525 |
msgid "Sweden"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: includes/Tools.php:
|
529 |
msgid "Mexico"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: includes/Tools.php:
|
533 |
msgid "Slovakia"
|
534 |
msgstr ""
|
535 |
|
536 |
-
#: includes/Tools.php:
|
537 |
msgid "Chile"
|
538 |
msgstr ""
|
539 |
|
540 |
-
#: includes/Tools.php:
|
541 |
msgid "Colombia"
|
542 |
msgstr ""
|
543 |
|
544 |
-
#: includes/Tools.php:
|
545 |
msgid "South Africa"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: includes/Tools.php:
|
549 |
msgid "Philippines"
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: includes/Tools.php:
|
553 |
msgid "is determined automatically"
|
554 |
msgstr ""
|
555 |
|
556 |
-
#: includes/Tools.php:
|
557 |
msgid "Search"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: includes/Tools.php:
|
561 |
msgid "Recently Used"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: includes/Tools.php:
|
565 |
msgid "Smileys & People"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: includes/Tools.php:
|
569 |
msgid "Animals & Nature"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: includes/Tools.php:
|
573 |
msgid "Food & Drink"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: includes/Tools.php:
|
577 |
msgid "Activities"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: includes/Tools.php:
|
581 |
msgid "Travel & Places"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: includes/Tools.php:
|
585 |
msgid "Objects"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: includes/Tools.php:
|
589 |
msgid "Symbols"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: includes/Tools.php:
|
593 |
msgid "Flags"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: includes/Tools.php:
|
597 |
msgid "No emojis found"
|
598 |
msgstr ""
|
599 |
|
600 |
#: includes/Util.php:43 views/b2s/post.sched.php:33
|
601 |
-
#: includes/B2S/Network/Item.php:
|
602 |
msgid "Clock"
|
603 |
msgstr ""
|
604 |
|
@@ -640,15 +644,15 @@ msgstr ""
|
|
640 |
msgid "Please contact our support!"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#: includes/Ajax/Post.php:
|
644 |
-
#: includes/B2S/Network/Item.php:
|
645 |
-
#: includes/B2S/Network/Item.php:
|
646 |
msgid "Unknown username"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: includes/Ajax/Post.php:
|
650 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
651 |
-
#: includes/B2S/Post/Item.php:
|
652 |
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
|
653 |
#: includes/B2S/Ship/Item.php:1281
|
654 |
msgid "delete"
|
@@ -658,7 +662,7 @@ msgstr ""
|
|
658 |
msgid "Please see FAQ"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: includes/B2S/PostBox.php:143 views/b2s/ship.php:
|
662 |
#: views/b2s/html/header.php:60
|
663 |
msgid "The connection to the server failed. Try again!"
|
664 |
msgstr ""
|
@@ -695,7 +699,7 @@ msgstr ""
|
|
695 |
#: includes/B2S/PostBox.php:253 views/b2s/network.php:42 views/b2s/ship.php:76
|
696 |
#: views/b2s/ship.php:166 views/b2s/ship.php:258
|
697 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
698 |
-
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:
|
699 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
700 |
#: includes/B2S/Ship/Item.php:1095
|
701 |
msgid "Info"
|
@@ -754,12 +758,12 @@ msgid ""
|
|
754 |
"engagement with your community."
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: includes/B2S/PostBox.php:207 views/b2s/html/footer.php:
|
758 |
-
#: views/b2s/html/footer.php:
|
759 |
msgid "Blog2Social: Social Media Auto-Posting"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:
|
763 |
msgid ""
|
764 |
"Share your blog posts with the Auto Poster: Your blog posts will be shared "
|
765 |
"automatically on your social media channels as soon as you publish or update "
|
@@ -767,15 +771,15 @@ msgid ""
|
|
767 |
"they are published."
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: includes/B2S/PostBox.php:212 views/b2s/html/footer.php:
|
771 |
#, php-format
|
772 |
msgid ""
|
773 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your "
|
774 |
"blog posts</a>"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: includes/B2S/PostBox.php:216 views/b2s/html/footer.php:
|
778 |
-
#: views/b2s/html/footer.php:
|
779 |
msgid "You want to auto-post your blog post?"
|
780 |
msgstr ""
|
781 |
|
@@ -783,9 +787,9 @@ msgstr ""
|
|
783 |
#: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
|
784 |
#: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
|
785 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
786 |
-
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:
|
787 |
-
#: views/b2s/html/footer.php:
|
788 |
-
#: views/b2s/html/footer.php:
|
789 |
msgid "With Blog2Social Premium you can:"
|
790 |
msgstr ""
|
791 |
|
@@ -793,9 +797,9 @@ msgstr ""
|
|
793 |
#: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
|
794 |
#: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
|
795 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
796 |
-
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:
|
797 |
-
#: views/b2s/html/footer.php:
|
798 |
-
#: views/b2s/html/footer.php:
|
799 |
msgid "Post on pages and groups"
|
800 |
msgstr ""
|
801 |
|
@@ -803,9 +807,9 @@ msgstr ""
|
|
803 |
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
|
804 |
#: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
|
805 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
806 |
-
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:
|
807 |
-
#: views/b2s/html/footer.php:
|
808 |
-
#: views/b2s/html/footer.php:
|
809 |
msgid "Share on multiple profiles, pages and groups"
|
810 |
msgstr ""
|
811 |
|
@@ -814,8 +818,8 @@ msgstr ""
|
|
814 |
#: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
|
815 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
816 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
817 |
-
#: views/b2s/html/footer.php:
|
818 |
-
#: views/b2s/html/footer.php:
|
819 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
820 |
msgstr ""
|
821 |
|
@@ -823,9 +827,9 @@ msgstr ""
|
|
823 |
#: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
|
824 |
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
|
825 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
826 |
-
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:
|
827 |
-
#: views/b2s/html/footer.php:
|
828 |
-
#: views/b2s/html/footer.php:
|
829 |
msgid "Schedule your posts at the best times on each network"
|
830 |
msgstr ""
|
831 |
|
@@ -833,9 +837,9 @@ msgstr ""
|
|
833 |
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
|
834 |
#: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
|
835 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
836 |
-
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:
|
837 |
-
#: views/b2s/html/footer.php:
|
838 |
-
#: views/b2s/html/footer.php:
|
839 |
msgid ""
|
840 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
841 |
"social media posts"
|
@@ -845,9 +849,9 @@ msgstr ""
|
|
845 |
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
|
846 |
#: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
|
847 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
848 |
-
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:
|
849 |
-
#: views/b2s/html/footer.php:
|
850 |
-
#: views/b2s/html/footer.php:
|
851 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
852 |
msgstr ""
|
853 |
|
@@ -855,9 +859,9 @@ msgstr ""
|
|
855 |
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
|
856 |
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
|
857 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
858 |
-
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:
|
859 |
-
#: views/b2s/html/footer.php:
|
860 |
-
#: views/b2s/html/footer.php:
|
861 |
msgid "Schedule and re-share old posts"
|
862 |
msgstr ""
|
863 |
|
@@ -866,8 +870,8 @@ msgstr ""
|
|
866 |
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
|
867 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
868 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
869 |
-
#: views/b2s/html/footer.php:
|
870 |
-
#: views/b2s/html/footer.php:
|
871 |
msgid "Select link format or image format for your posts"
|
872 |
msgstr ""
|
873 |
|
@@ -876,8 +880,8 @@ msgstr ""
|
|
876 |
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
|
877 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
878 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
879 |
-
#: views/b2s/html/footer.php:
|
880 |
-
#: views/b2s/html/footer.php:
|
881 |
msgid "Select individual images per post"
|
882 |
msgstr ""
|
883 |
|
@@ -885,9 +889,9 @@ msgstr ""
|
|
885 |
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
|
886 |
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
|
887 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
888 |
-
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:
|
889 |
-
#: views/b2s/html/footer.php:
|
890 |
-
#: views/b2s/html/footer.php:
|
891 |
msgid ""
|
892 |
"Reporting & calendar: keep track of your published and scheduled social "
|
893 |
"media posts"
|
@@ -897,9 +901,9 @@ msgstr ""
|
|
897 |
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
|
898 |
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
|
899 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
900 |
-
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:
|
901 |
-
#: views/b2s/html/footer.php:
|
902 |
-
#: views/b2s/html/footer.php:
|
903 |
msgid "Upgrade to SMART and above"
|
904 |
msgstr ""
|
905 |
|
@@ -910,8 +914,8 @@ msgstr ""
|
|
910 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
911 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
912 |
#: views/b2s/html/footer.php:273 views/b2s/html/footer.php:313
|
913 |
-
#: views/b2s/html/footer.php:
|
914 |
-
#: views/b2s/html/footer.php:
|
915 |
#, php-format
|
916 |
msgid ""
|
917 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
@@ -965,33 +969,33 @@ msgstr ""
|
|
965 |
msgid "at best times"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#: views/b2s/autopost.php:18 views/b2s/settings.php:
|
969 |
#: includes/B2S/Ship/Image.php:29
|
970 |
msgid ""
|
971 |
"You need a higher user role to upload an image on this blog. Please contact "
|
972 |
"your administrator."
|
973 |
msgstr ""
|
974 |
|
975 |
-
#: views/b2s/autopost.php:27 views/b2s/settings.php:
|
976 |
msgid "save..."
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: views/b2s/autopost.php:48 views/b2s/settings.php:
|
980 |
#: includes/B2S/Ship/Image.php:96
|
981 |
msgid "Select or upload an image from media gallery"
|
982 |
msgstr ""
|
983 |
|
984 |
-
#: views/b2s/autopost.php:49 views/b2s/settings.php:
|
985 |
#: includes/B2S/Ship/Image.php:97
|
986 |
msgid "Use image"
|
987 |
msgstr ""
|
988 |
|
989 |
-
#: views/b2s/autopost.php:59 views/b2s/settings.php:
|
990 |
#: includes/B2S/Settings/Item.php:53
|
991 |
msgid "Personal Time Zone"
|
992 |
msgstr ""
|
993 |
|
994 |
-
#: views/b2s/autopost.php:62 views/b2s/settings.php:
|
995 |
msgid ""
|
996 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
997 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -1045,15 +1049,15 @@ msgstr ""
|
|
1045 |
msgid "Get the Blog2Social Browser Extension"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
-
#: views/b2s/curation.draft.php:47 views/b2s/
|
1049 |
-
#: views/b2s/network.php:
|
1050 |
#: views/b2s/network.php:373 views/b2s/network.php:452
|
1051 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1052 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1053 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
1054 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1055 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1056 |
-
#: views/b2s/ship.php:603 views/b2s/ship.php:
|
1057 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
1058 |
msgid "Loading..."
|
1059 |
msgstr ""
|
@@ -1102,10 +1106,10 @@ msgstr ""
|
|
1102 |
msgid "Saved as draft."
|
1103 |
msgstr ""
|
1104 |
|
1105 |
-
#: views/b2s/curation.php:45 views/b2s/
|
1106 |
-
#: views/b2s/post.
|
1107 |
-
#:
|
1108 |
-
#:
|
1109 |
msgid "Link Post"
|
1110 |
msgstr ""
|
1111 |
|
@@ -1114,9 +1118,9 @@ msgid "Video Post"
|
|
1114 |
msgstr ""
|
1115 |
|
1116 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1117 |
-
#: views/b2s/
|
1118 |
-
#: views/b2s/
|
1119 |
-
#: includes/B2S/Settings/Item.php:
|
1120 |
msgid "Image Post"
|
1121 |
msgstr ""
|
1122 |
|
@@ -1126,12 +1130,12 @@ msgid "Text Post"
|
|
1126 |
msgstr ""
|
1127 |
|
1128 |
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:35
|
1129 |
-
#: includes/B2S/Network/Item.php:
|
1130 |
-
#: includes/B2S/Network/Item.php:
|
1131 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1132 |
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
1133 |
-
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:
|
1134 |
-
#: includes/B2S/Ship/Portale.php:
|
1135 |
msgid "PRO"
|
1136 |
msgstr ""
|
1137 |
|
@@ -1196,7 +1200,7 @@ msgid "Create a new post"
|
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
|
1199 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:
|
1200 |
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
|
1201 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1202 |
msgid "published"
|
@@ -1358,49 +1362,30 @@ msgid ""
|
|
1358 |
"is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: views/b2s/dashboard.php:
|
1362 |
msgid "Your Activity"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
-
#: views/b2s/dashboard.php:
|
1366 |
msgid "List"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#: views/b2s/dashboard.php:
|
1370 |
msgid "Chart"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
-
#: views/b2s/dashboard.php:
|
1374 |
msgid "Follow us"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: views/b2s/dashboard.php:
|
1378 |
msgid "show full calendar"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
-
#: views/b2s/insights.php:56 views/b2s/post.calendar.php:88
|
1382 |
-
#: views/b2s/post.sched.php:172 views/b2s/repost.php:56
|
1383 |
-
msgid "add post"
|
1384 |
-
msgstr ""
|
1385 |
-
|
1386 |
-
#: views/b2s/insights.php:73 views/b2s/post.calendar.php:70
|
1387 |
-
#: views/b2s/post.sched.php:189 views/b2s/repost.php:73
|
1388 |
-
#: includes/B2S/Network/Item.php:700 includes/B2S/Network/Item.php:703
|
1389 |
-
#: includes/B2S/Settings/Item.php:239 views/b2s/html/footer.php:177
|
1390 |
-
msgid "Image with frame"
|
1391 |
-
msgstr ""
|
1392 |
-
|
1393 |
-
#: views/b2s/insights.php:73 views/b2s/post.calendar.php:70
|
1394 |
-
#: views/b2s/post.sched.php:189 views/b2s/repost.php:73
|
1395 |
-
#: includes/B2S/Network/Item.php:701 includes/B2S/Network/Item.php:704
|
1396 |
-
#: includes/B2S/Settings/Item.php:253 views/b2s/html/footer.php:182
|
1397 |
-
msgid "Image cut out"
|
1398 |
-
msgstr ""
|
1399 |
-
|
1400 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1401 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1402 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1403 |
-
#: views/b2s/html/post.navbar.php:
|
1404 |
msgid "filter"
|
1405 |
msgstr ""
|
1406 |
|
@@ -1521,25 +1506,26 @@ msgstr ""
|
|
1521 |
msgid "modify"
|
1522 |
msgstr ""
|
1523 |
|
1524 |
-
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:
|
1525 |
-
#: includes/B2S/Network/Item.php:
|
1526 |
msgid "Edit Post Template"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
#: views/b2s/network.php:230 views/b2s/ship.php:23
|
1530 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1531 |
-
#: includes/B2S/Network/Item.php:
|
1532 |
-
#: includes/B2S/Network/Item.php:
|
1533 |
-
#: includes/B2S/
|
1534 |
-
#: includes/B2S/
|
1535 |
-
#:
|
1536 |
-
#: views/b2s/html/post.navbar.php:
|
|
|
1537 |
#: views/b2s/widgets/posts.php:18
|
1538 |
msgid "SMART"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: views/b2s/network.php:242 views/b2s/settings.php:
|
1542 |
-
#: includes/B2S/Network/Item.php:
|
1543 |
msgid "save"
|
1544 |
msgstr ""
|
1545 |
|
@@ -1606,7 +1592,7 @@ msgstr ""
|
|
1606 |
msgid "The name of the post author."
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:
|
1610 |
msgid "Character limit"
|
1611 |
msgstr ""
|
1612 |
|
@@ -1848,7 +1834,7 @@ msgstr ""
|
|
1848 |
msgid "Upgrade to Blog2Social Business"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: views/b2s/network.php:556 includes/B2S/Network/Item.php:
|
1852 |
#, php-format
|
1853 |
msgid ""
|
1854 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1860,11 +1846,11 @@ msgstr ""
|
|
1860 |
msgid "My Profile"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#: views/b2s/network.php:603 views/b2s/ship.php:
|
1864 |
msgid "Add Page"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#: views/b2s/network.php:608 views/b2s/ship.php:
|
1868 |
#, php-format
|
1869 |
msgid ""
|
1870 |
"Please make sure to log in with your account which manages your pages and <a "
|
@@ -1872,16 +1858,16 @@ msgid ""
|
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#: views/b2s/network.php:609 views/b2s/network.php:628
|
1875 |
-
#: views/b2s/network.php:647 views/b2s/
|
1876 |
-
#: views/b2s/ship.php:720
|
1877 |
msgid "Continue"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
-
#: views/b2s/network.php:622 views/b2s/ship.php:
|
1881 |
msgid "Add Group"
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#: views/b2s/network.php:627 views/b2s/ship.php:
|
1885 |
#, php-format
|
1886 |
msgid ""
|
1887 |
"Please make sure to log in with your account which manages your groups and "
|
@@ -1906,6 +1892,87 @@ msgid ""
|
|
1906 |
" How to connect with Instagram.</a>."
|
1907 |
msgstr ""
|
1908 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1909 |
#: views/b2s/post.approve.php:89
|
1910 |
msgid "Delete Social Media Posts"
|
1911 |
msgstr ""
|
@@ -1934,6 +2001,25 @@ msgstr ""
|
|
1934 |
msgid "scheduled"
|
1935 |
msgstr ""
|
1936 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1937 |
#: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
|
1938 |
#: views/b2s/repost.php:104 views/b2s/ship.php:507
|
1939 |
msgid "Choose your"
|
@@ -2118,8 +2204,8 @@ msgid ""
|
|
2118 |
"your own best time scheme."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
-
#: views/b2s/premium.php:109 includes/B2S/
|
2122 |
-
#: includes/B2S/Post/Item.php:
|
2123 |
msgid "Auto-Posting"
|
2124 |
msgstr ""
|
2125 |
|
@@ -2201,34 +2287,34 @@ msgstr ""
|
|
2201 |
msgid "Show all premium features"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
-
#: views/b2s/settings.php:
|
2205 |
msgid "General"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: views/b2s/settings.php:
|
2209 |
msgid "Social Meta Data"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: views/b2s/settings.php:
|
2213 |
msgid "Social Media Networks"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: views/b2s/settings.php:
|
2217 |
msgid "Social Media Time Settings"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: views/b2s/settings.php:
|
2221 |
msgid "Post Templates"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: views/b2s/settings.php:
|
2225 |
msgid ""
|
2226 |
"Connect Blog2Social with 16 different social media networks you like to "
|
2227 |
"share your WordPress blog posts and pages as well as imported posts and "
|
2228 |
"social media posts on. The following networks are available:"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: views/b2s/settings.php:
|
2232 |
#, php-format
|
2233 |
msgid ""
|
2234 |
"You will find more information on how to connect your social media networks "
|
@@ -2236,25 +2322,25 @@ msgid ""
|
|
2236 |
"guide</a>."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: views/b2s/settings.php:
|
2240 |
msgid "Connect your social media networks"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: views/b2s/settings.php:
|
2244 |
msgid ""
|
2245 |
"Use the pre-defined best time settings or define your own best time settings "
|
2246 |
"for sharing your posts . Posting at the right time can be essential to make "
|
2247 |
"sure your content is most likely be seen."
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: views/b2s/settings.php:
|
2251 |
#, php-format
|
2252 |
msgid ""
|
2253 |
"You will find more information about the pre-defined best time settings by "
|
2254 |
"Blog2Social in this <a href=\"%s\" target=\"_blank\">best time guide</a>."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: views/b2s/settings.php:
|
2258 |
#, php-format
|
2259 |
msgid ""
|
2260 |
"An instruction on how to define your own best times is explained in the "
|
@@ -2262,55 +2348,55 @@ msgid ""
|
|
2262 |
"post on social media?</a>\"."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: views/b2s/settings.php:
|
2266 |
msgid "Check, edit or define your social media time settings"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: views/b2s/settings.php:
|
2270 |
msgid ""
|
2271 |
"Edit the post templates for each social media network to turn your social "
|
2272 |
"media posts automatically into tailored posts for each network and community."
|
2273 |
" You can edit the structure of your post with the following variables:"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: views/b2s/settings.php:
|
2277 |
msgid "Title: The title of your post."
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: views/b2s/settings.php:
|
2281 |
msgid "Content: The content of your post."
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: views/b2s/settings.php:
|
2285 |
msgid ""
|
2286 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2287 |
"post)."
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: views/b2s/settings.php:
|
2291 |
msgid "Keywords: The tags you have set in your post."
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: views/b2s/settings.php:
|
2295 |
msgid "Author: The author of the post."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: views/b2s/settings.php:
|
2299 |
#, php-format
|
2300 |
msgid ""
|
2301 |
"You will find more information on how to use post templates for your social "
|
2302 |
"media posts in this <a href=\"%s\" target=\"_blank\">post template guide</a>."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: views/b2s/settings.php:
|
2306 |
msgid "Define your post templates for each social media network"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: views/b2s/settings.php:
|
2310 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
2311 |
msgstr ""
|
2312 |
|
2313 |
-
#: views/b2s/settings.php:
|
2314 |
#, php-format
|
2315 |
msgid ""
|
2316 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
@@ -2324,19 +2410,19 @@ msgid ""
|
|
2324 |
"following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: views/b2s/settings.php:
|
2328 |
msgid "Activate Legacy mode "
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: views/b2s/settings.php:
|
2332 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: views/b2s/settings.php:
|
2336 |
msgid "Instant Caching for Facebook Link Posts"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: views/b2s/settings.php:
|
2340 |
msgid ""
|
2341 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2342 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -2525,11 +2611,21 @@ msgid ""
|
|
2525 |
"overwrite your draft?"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: views/b2s/ship.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2529 |
msgid "add Schedule"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: views/b2s/ship.php:
|
2533 |
msgid "Give me more information"
|
2534 |
msgstr ""
|
2535 |
|
@@ -2856,10 +2952,13 @@ msgid "Yes, I accept"
|
|
2856 |
msgstr ""
|
2857 |
|
2858 |
#: includes/B2S/AutoPost/Item.php:39
|
|
|
2859 |
msgid ""
|
2860 |
-
"
|
2861 |
-
"
|
2862 |
-
"Facebook Profile
|
|
|
|
|
2863 |
msgstr ""
|
2864 |
|
2865 |
#: includes/B2S/AutoPost/Item.php:42
|
@@ -2982,7 +3081,7 @@ msgstr ""
|
|
2982 |
msgid "Save"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: includes/B2S/AutoPost/Item.php:241 includes/B2S/Network/Item.php:
|
2986 |
msgid "Connections"
|
2987 |
msgstr ""
|
2988 |
|
@@ -3030,162 +3129,157 @@ msgstr ""
|
|
3030 |
msgid "Customize & Schedule"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: includes/B2S/
|
3034 |
-
msgid "
|
3035 |
-
msgstr ""
|
3036 |
-
|
3037 |
-
#: includes/B2S/Insights/Item.php:75 includes/B2S/Post/Item.php:737
|
3038 |
-
msgid "show"
|
3039 |
-
msgstr ""
|
3040 |
-
|
3041 |
-
#: includes/B2S/Insights/Item.php:76 includes/B2S/Post/Item.php:750
|
3042 |
-
#, php-format
|
3043 |
-
msgid "sharing in progress by %s"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: includes/B2S/
|
3047 |
-
|
3048 |
-
msgid "shared by %s"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
-
#: includes/B2S/
|
3052 |
-
|
3053 |
-
msgid "Retweet"
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: includes/B2S/
|
3057 |
-
|
3058 |
-
msgid "Re-Share"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
-
#: includes/B2S/Network/Item.php:
|
3062 |
-
msgid "
|
3063 |
msgstr ""
|
3064 |
|
3065 |
-
#: includes/B2S/Network/Item.php:
|
3066 |
-
msgid "
|
3067 |
msgstr ""
|
3068 |
|
3069 |
-
#: includes/B2S/Network/Item.php:
|
3070 |
-
msgid "
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: includes/B2S/Network/Item.php:
|
3074 |
-
msgid "
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: includes/B2S/Network/Item.php:
|
3078 |
msgid "Best times"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: includes/B2S/Network/Item.php:
|
3082 |
#: includes/B2S/Ship/Item.php:331 includes/B2S/Ship/Navbar.php:90
|
3083 |
-
#: includes/B2S/Ship/Portale.php:
|
3084 |
msgid "Blog"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
-
#: includes/B2S/Network/Item.php:
|
3088 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3089 |
msgid "You want to connect a network profile?"
|
3090 |
msgstr ""
|
3091 |
|
3092 |
-
#: includes/B2S/Network/Item.php:
|
3093 |
msgid "BUSINESS"
|
3094 |
msgstr ""
|
3095 |
|
3096 |
-
#: includes/B2S/Network/Item.php:
|
3097 |
msgid "You want to connect a network page?"
|
3098 |
msgstr ""
|
3099 |
|
3100 |
-
#: includes/B2S/Network/Item.php:
|
3101 |
#: includes/B2S/Ship/Portale.php:31
|
3102 |
msgid "Publication"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: includes/B2S/Network/Item.php:
|
3106 |
msgid "You want to connect a social media group?"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: includes/B2S/Network/Item.php:
|
3110 |
msgid "Best Time Manager"
|
3111 |
msgstr ""
|
3112 |
|
3113 |
-
#: includes/B2S/Network/Item.php:
|
3114 |
-
#: includes/B2S/Network/Item.php:
|
3115 |
msgid "To reactivate this connection,"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: includes/B2S/Network/Item.php:
|
3119 |
-
#: includes/B2S/Network/Item.php:
|
3120 |
msgid "please upgrade"
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: includes/B2S/Network/Item.php:
|
3124 |
-
#: includes/B2S/Network/Item.php:
|
3125 |
msgid "Connection is interrupted since"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
-
#: includes/B2S/Network/Item.php:
|
3129 |
-
#: includes/B2S/Network/Item.php:
|
3130 |
msgid "Assigned by"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: includes/B2S/Network/Item.php:
|
3134 |
-
#: includes/B2S/Network/Item.php:
|
3135 |
msgid "Days"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: includes/B2S/Network/Item.php:
|
3139 |
#, php-format
|
3140 |
msgid ""
|
3141 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
3142 |
"Old Design until 2020/11/30</a>)"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: includes/B2S/Network/Item.php:
|
3146 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3147 |
msgstr ""
|
3148 |
|
3149 |
-
#: includes/B2S/Network/Item.php:
|
3150 |
msgid "Connection currently assigned to"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
-
#: includes/B2S/Network/Item.php:
|
3154 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3155 |
#: views/prg/html/form.php:163
|
3156 |
msgid "Name"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: includes/B2S/Network/Item.php:
|
3160 |
msgid "Value"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: includes/B2S/Network/Item.php:
|
3164 |
msgid "+ add Parameter"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
-
#: includes/B2S/Network/Item.php:
|
3168 |
#, php-format
|
3169 |
msgid "Apply for all %s connections"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: includes/B2S/Network/Item.php:
|
3173 |
msgid "Apply for all connections"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: includes/B2S/Network/Item.php:
|
3177 |
msgid "Successfully saved"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: includes/B2S/Network/Item.php:
|
3181 |
msgid "Failed to save"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: includes/B2S/Network/Item.php:
|
3185 |
msgid "Failed to load the default template"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: includes/B2S/Network/Item.php:
|
3189 |
msgid ""
|
3190 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
3191 |
"templates that will automatically pre-format the structure of your social "
|
@@ -3196,68 +3290,74 @@ msgid ""
|
|
3196 |
"or slogans) to your post templates."
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: includes/B2S/Network/Item.php:
|
3200 |
msgid "Upgrade to Blog2Social Smart"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: includes/B2S/Network/Item.php:
|
3204 |
msgid "Activate Instant Caching"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
-
#: includes/B2S/Network/Item.php:
|
3208 |
msgid "Format"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
-
#: includes/B2S/Network/Item.php:
|
3212 |
msgid "Load default settings"
|
3213 |
msgstr ""
|
3214 |
|
3215 |
-
#: includes/B2S/Network/Item.php:
|
3216 |
#: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
|
3217 |
msgid "Link"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: includes/B2S/Network/Item.php:
|
3221 |
msgid "Image"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: includes/B2S/Network/Item.php:
|
3225 |
msgid "Content"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: includes/B2S/Network/Item.php:
|
3229 |
msgid ""
|
3230 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3231 |
"in your post."
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: includes/B2S/Network/Item.php:
|
3235 |
msgid "clear"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: includes/B2S/Network/Item.php:
|
3239 |
msgid ""
|
3240 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
3241 |
"your page, in order to refer to the original source of the content and to "
|
3242 |
"increase the reach from search engines like Google."
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: includes/B2S/Network/Item.php:
|
3246 |
msgid "The link will be added automatically at the end of the post."
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: includes/B2S/Network/Item.php:
|
3250 |
msgid "The network does not support hashtags."
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: includes/B2S/Network/Item.php:
|
3254 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
3255 |
msgid "Network limit"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/B2S/Network/Item.php:
|
3259 |
-
#: includes/B2S/Network/Item.php:
|
3260 |
-
#: includes/B2S/Network/Item.php:
|
3261 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
3262 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
3263 |
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
|
@@ -3265,39 +3365,39 @@ msgstr ""
|
|
3265 |
msgid "characters"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: includes/B2S/Network/Item.php:
|
3269 |
msgid "Add a link-URL to the end of my image post."
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: includes/B2S/Network/Item.php:
|
3273 |
msgid ""
|
3274 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3275 |
"Instagram does not turn link-URLs into clickable links)"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/B2S/Network/Item.php:
|
3279 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: includes/B2S/Network/Item.php:
|
3283 |
msgid ""
|
3284 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
3285 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
3286 |
"ini\" file."
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: includes/B2S/Network/Item.php:
|
3290 |
msgid "recommended length"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: includes/B2S/Network/Item.php:
|
3294 |
-
#: includes/B2S/Network/Item.php:
|
3295 |
-
#: includes/B2S/Network/Item.php:
|
3296 |
-
#: includes/B2S/Network/Item.php:
|
3297 |
-
#: includes/B2S/Network/Item.php:
|
3298 |
-
#: includes/B2S/Network/Item.php:
|
3299 |
-
#: includes/B2S/Network/Item.php:
|
3300 |
-
#: includes/B2S/Network/Item.php:
|
3301 |
msgid "Preview"
|
3302 |
msgstr ""
|
3303 |
|
@@ -3325,7 +3425,7 @@ msgstr ""
|
|
3325 |
msgid "autopost"
|
3326 |
msgstr ""
|
3327 |
|
3328 |
-
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:
|
3329 |
msgid "re-share"
|
3330 |
msgstr ""
|
3331 |
|
@@ -3462,63 +3562,86 @@ msgstr ""
|
|
3462 |
msgid "last saved"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#: includes/B2S/Post/Item.php:
|
3466 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3467 |
msgid "select all"
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
3471 |
msgid "Please see"
|
3472 |
msgstr ""
|
3473 |
|
3474 |
-
#: includes/B2S/Post/Item.php:
|
3475 |
msgid "FAQ"
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: includes/B2S/Post/Item.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3479 |
msgid "You want to delete a publish post entry?"
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: includes/B2S/Post/Item.php:
|
3483 |
msgid "delete from reporting"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: includes/B2S/Post/Item.php:
|
3487 |
#, php-format
|
3488 |
msgid "is waiting to shared by %s"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: includes/B2S/Post/Item.php:
|
3492 |
msgid "share"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: includes/B2S/Post/Item.php:
|
3496 |
msgid "You want to delete your Social Media post?"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: includes/B2S/Post/Item.php:
|
3500 |
#, php-format
|
3501 |
msgid "last modified by %s"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#: includes/B2S/Post/Item.php:
|
3505 |
msgid "is currently being processed by the network"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: includes/B2S/Post/Item.php:
|
3509 |
#, php-format
|
3510 |
msgid "scheduled by %s"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#: includes/B2S/Post/Item.php:
|
3514 |
msgid "You want to edit your scheduled post?"
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#: includes/B2S/Post/Item.php:
|
3518 |
msgid "edit"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#: includes/B2S/Post/Item.php:
|
3522 |
msgid "delete scheduling"
|
3523 |
msgstr ""
|
3524 |
|
@@ -3653,6 +3776,10 @@ msgstr ""
|
|
3653 |
msgid "Queue"
|
3654 |
msgstr ""
|
3655 |
|
|
|
|
|
|
|
|
|
3656 |
#: includes/B2S/RePost/Item.php:131
|
3657 |
msgid "delete selected posts"
|
3658 |
msgstr ""
|
@@ -3685,12 +3812,15 @@ msgstr ""
|
|
3685 |
#: includes/B2S/Settings/Item.php:66
|
3686 |
#, php-format
|
3687 |
msgid ""
|
3688 |
-
"
|
3689 |
-
"
|
3690 |
-
"
|
3691 |
-
"
|
3692 |
-
"
|
3693 |
-
"
|
|
|
|
|
|
|
3694 |
msgstr ""
|
3695 |
|
3696 |
#: includes/B2S/Settings/Item.php:67
|
@@ -4608,49 +4738,34 @@ msgid "Would you like to retweet?"
|
|
4608 |
msgstr ""
|
4609 |
|
4610 |
#: views/b2s/html/footer.php:325
|
4611 |
-
msgid "URL Shortening"
|
4612 |
-
msgstr ""
|
4613 |
-
|
4614 |
-
#: views/b2s/html/footer.php:328
|
4615 |
-
msgid ""
|
4616 |
-
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
4617 |
-
"links and to track the performance of your links in your social media "
|
4618 |
-
"networks. Activate one of the URL-Shorteners you like to use and link it to "
|
4619 |
-
"your account. Your social media posts will then be shared with your links of "
|
4620 |
-
"Bit.ly, Rebrandly or Sniply and you can monitor the success of your posts in "
|
4621 |
-
"these accounts. Please note: Reddit, Pinterest and Medium do not allow Bit."
|
4622 |
-
"ly shortlinks. Blog2Social will apply the regular URL for these networks. "
|
4623 |
-
msgstr ""
|
4624 |
-
|
4625 |
-
#: views/b2s/html/footer.php:339
|
4626 |
msgid "Define Twitter post content"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: views/b2s/html/footer.php:
|
4630 |
msgid ""
|
4631 |
"Select the content that will be automatically pre-filled in your Twitter "
|
4632 |
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
4633 |
"post\", hashtags are automatically added in the drop-down menu."
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: views/b2s/html/footer.php:
|
4637 |
msgid ""
|
4638 |
"Share imported posts with the Auto Poster: Posts that you import via RSS "
|
4639 |
"feeds and plugins can be shared automatically on your social media channels."
|
4640 |
msgstr ""
|
4641 |
|
4642 |
-
#: views/b2s/html/footer.php:
|
4643 |
#, php-format
|
4644 |
msgid ""
|
4645 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for "
|
4646 |
"imported posts</a>"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: views/b2s/html/footer.php:
|
4650 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: views/b2s/html/footer.php:
|
4654 |
msgid ""
|
4655 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
4656 |
"administrator to other users if they have activated the same Blog2Social-"
|
@@ -4663,18 +4778,18 @@ msgid ""
|
|
4663 |
"content to be shared automatically."
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: views/b2s/html/footer.php:
|
4667 |
#, php-format
|
4668 |
msgid ""
|
4669 |
"You will get more information on how to assign the Auto-Poster settings in "
|
4670 |
"the <a target=\"_blank\" href=\"%s\">Auto-Poster guide</a>."
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: views/b2s/html/footer.php:
|
4674 |
msgid "Blog2Social: Re-Share Posts"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: views/b2s/html/footer.php:
|
4678 |
msgid ""
|
4679 |
"Keep your social media feed updated automatically with your best content and "
|
4680 |
"save valuable time by reviving your evergreen content regularly. Automate "
|
@@ -4682,20 +4797,20 @@ msgid ""
|
|
4682 |
"new content and interact with your community."
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: views/b2s/html/footer.php:
|
4686 |
#, php-format
|
4687 |
msgid "<a target=\"_blank\" href=\"%s\">More information</a>"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
-
#: views/b2s/html/footer.php:
|
4691 |
msgid "Social Meta Tags Settings"
|
4692 |
msgstr ""
|
4693 |
|
4694 |
-
#: views/b2s/html/footer.php:
|
4695 |
msgid "Change image, title and description for your post on this network"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
-
#: views/b2s/html/footer.php:
|
4699 |
msgid ""
|
4700 |
"Facebook has changed its policy for posting link posts via plugins or web "
|
4701 |
"applications. Facebook does no longer display the featured or selected image "
|
@@ -4708,7 +4823,7 @@ msgid ""
|
|
4708 |
"requirements for Facebook."
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#: views/b2s/html/footer.php:
|
4712 |
msgid ""
|
4713 |
"With Blog2Social you can select a featured image or any image you select to "
|
4714 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -4719,7 +4834,7 @@ msgid ""
|
|
4719 |
"for your link post without OG meta tags."
|
4720 |
msgstr ""
|
4721 |
|
4722 |
-
#: views/b2s/html/footer.php:
|
4723 |
msgid ""
|
4724 |
"Twitter has changed its policy for posting link posts via plugins or web "
|
4725 |
"applications. Twitter does no longer display the featured or selected image "
|
@@ -4732,7 +4847,7 @@ msgid ""
|
|
4732 |
"requirements for Twitter."
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: views/b2s/html/footer.php:
|
4736 |
msgid ""
|
4737 |
"With Blog2Social you can select a featured image or any image you select to "
|
4738 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -4743,7 +4858,7 @@ msgid ""
|
|
4743 |
"image for your link post without Twitter Card meta tags."
|
4744 |
msgstr ""
|
4745 |
|
4746 |
-
#: views/b2s/html/footer.php:
|
4747 |
msgid ""
|
4748 |
"To display your link preview, LinkedIn uses the image set in the oEmbed tags "
|
4749 |
"in meta data of your post. WordPress automatically sets your featured image "
|
@@ -4752,13 +4867,13 @@ msgid ""
|
|
4752 |
"“Add oEmbed tags” box."
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#: views/b2s/html/footer.php:
|
4756 |
msgid ""
|
4757 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
4758 |
"Graph) meta tags instead."
|
4759 |
msgstr ""
|
4760 |
|
4761 |
-
#: views/b2s/html/footer.php:
|
4762 |
msgid ""
|
4763 |
"With Blog2Social you can select a featured image or any image you select to "
|
4764 |
"be displayed with your link post. Blog2Social will automatically write the "
|
@@ -4771,31 +4886,31 @@ msgid ""
|
|
4771 |
"your post."
|
4772 |
msgstr ""
|
4773 |
|
4774 |
-
#: views/b2s/html/footer.php:
|
4775 |
msgid ""
|
4776 |
"You can change the image, title and description for your post on Facebook, "
|
4777 |
"by editing the following fields for"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
-
#: views/b2s/html/footer.php:
|
4781 |
msgid "image"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
-
#: views/b2s/html/footer.php:
|
4785 |
msgid "title"
|
4786 |
msgstr ""
|
4787 |
|
4788 |
-
#: views/b2s/html/footer.php:
|
4789 |
msgid "description"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
-
#: views/b2s/html/footer.php:
|
4793 |
msgid ""
|
4794 |
"Blog2Social will automatically write these information in the Facebook Open "
|
4795 |
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
4796 |
msgstr ""
|
4797 |
|
4798 |
-
#: views/b2s/html/footer.php:
|
4799 |
msgid ""
|
4800 |
"Please note: If this post has already been shared or scheduled previously, "
|
4801 |
"your current changes will also affect the look of previously shared or "
|
@@ -4803,7 +4918,7 @@ msgid ""
|
|
4803 |
"tags information and automatically updated all existing posts."
|
4804 |
msgstr ""
|
4805 |
|
4806 |
-
#: views/b2s/html/footer.php:
|
4807 |
#, php-format
|
4808 |
msgid ""
|
4809 |
"Please note: Your changes will have no effect on your social media posts on "
|
@@ -4811,19 +4926,19 @@ msgid ""
|
|
4811 |
"in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4812 |
msgstr ""
|
4813 |
|
4814 |
-
#: views/b2s/html/footer.php:
|
4815 |
msgid ""
|
4816 |
"You can change the image, title and description for your post on Twitter, by "
|
4817 |
"editing the following fields for"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: views/b2s/html/footer.php:
|
4821 |
msgid ""
|
4822 |
"Blog2Social will automatically write these information in the Twitter Card "
|
4823 |
"Meta Tags for Image, Title and Description of your blog post."
|
4824 |
msgstr ""
|
4825 |
|
4826 |
-
#: views/b2s/html/footer.php:
|
4827 |
msgid ""
|
4828 |
"Please note: If this post was previously shared or scheduled, your current "
|
4829 |
"changes will also affect the look of previously shared or scheduled posts, "
|
@@ -4832,7 +4947,7 @@ msgid ""
|
|
4832 |
"for Twitter to update your current changes."
|
4833 |
msgstr ""
|
4834 |
|
4835 |
-
#: views/b2s/html/footer.php:
|
4836 |
#, php-format
|
4837 |
msgid ""
|
4838 |
"Please note: Your changes will have no effect on your social media posts on "
|
@@ -4840,11 +4955,11 @@ msgid ""
|
|
4840 |
"your <a target=\"_blank\" href=\"%s\">settings</a>"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#: views/b2s/html/footer.php:
|
4844 |
msgid "You want to change the image, title and description for your post?"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#: views/b2s/html/footer.php:
|
4848 |
msgid ""
|
4849 |
"You are currently sharing this post as image post. Changes to title and "
|
4850 |
"description Meta Tag parameters will only be supported for link post formats."
|
@@ -4852,7 +4967,7 @@ msgid ""
|
|
4852 |
"the title and description for your post preview."
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#: views/b2s/html/footer.php:
|
4856 |
#, php-format
|
4857 |
msgid ""
|
4858 |
"Your changes will have no effect on your social media posts on Facebook, if "
|
@@ -4860,7 +4975,7 @@ msgid ""
|
|
4860 |
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#: views/b2s/html/footer.php:
|
4864 |
#, php-format
|
4865 |
msgid ""
|
4866 |
"Your changes will have no effect on your social media posts on Twitter, if "
|
@@ -4913,8 +5028,16 @@ msgstr ""
|
|
4913 |
|
4914 |
#: views/b2s/html/header.php:97
|
4915 |
msgid ""
|
4916 |
-
"You have Yoast SEO
|
4917 |
-
"tags
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4918 |
msgstr ""
|
4919 |
|
4920 |
#: views/b2s/html/header.php:103
|
@@ -5199,8 +5322,8 @@ msgstr ""
|
|
5199 |
msgid "I agree to the Adenion Privacy Policy"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
-
#: views/b2s/html/post.navbar.php:
|
5203 |
-
msgid "All
|
5204 |
msgstr ""
|
5205 |
|
5206 |
#: views/b2s/html/sidebar.php:26 views/b2s/html/sidebar.ship.php:25
|
@@ -5239,6 +5362,16 @@ msgstr ""
|
|
5239 |
msgid "Plans & Prices"
|
5240 |
msgstr ""
|
5241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5242 |
#: views/b2s/html/sidebar.php:180
|
5243 |
msgid "Blog2Social Blog News"
|
5244 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2021-03-19 14:28+0000\n"
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: includes/Loader.php:94
|
35 |
msgid "Bitly"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/Loader.php:94
|
39 |
msgid "Rebrandly"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: includes/Loader.php:94
|
43 |
msgid "Sniply"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/Loader.php:405
|
47 |
msgid "Blog2Social: Autoposter"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/Loader.php:406
|
51 |
msgid "Blog2Social: Social Media Content Calendar"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/Loader.php:798
|
55 |
msgid "This post will be shared into your social media from"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/Loader.php:798 includes/Loader.php:800
|
59 |
msgid "show details"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/Loader.php:800
|
63 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/Loader.php:804
|
67 |
msgid ""
|
68 |
"Please make sure that your post, page or custom post type is published or "
|
69 |
"scheduled to be published on this blog before you try to post it with "
|
71 |
"scheduled WP posts will be shared with the posting id link."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/Loader.php:807 includes/B2S/PostBox.php:146
|
75 |
#: includes/B2S/AutoPost/Item.php:59
|
76 |
msgid ""
|
77 |
"There are no social network accounts assigned to your selected network "
|
79 |
"another network collection."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: includes/Loader.php:820 views/b2s/html/sidebar.php:45
|
83 |
#: views/b2s/html/sidebar.ship.php:44
|
84 |
msgid "Upgrade to Premium"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/Loader.php:823 includes/Loader.php:958 includes/Loader.php:958
|
88 |
+
#: includes/Loader.php:1032 includes/B2S/RePost/Item.php:25
|
89 |
+
#: views/b2s/html/sidebar.php:137
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/Loader.php:823
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:22
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:20
|
102 |
#: views/b2s/html/sidebar.php:125
|
103 |
msgid "Shared Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:17
|
107 |
#: views/b2s/html/sidebar.php:119
|
108 |
msgid "Instant Sharing"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:13
|
112 |
+
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
113 |
#: views/b2s/html/sidebar.php:116
|
114 |
msgid "Drafts"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:18
|
118 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
119 |
msgid "Scheduled Posts"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/Loader.php:873
|
123 |
msgid "Social Media Post Drafts"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/Loader.php:873 views/b2s/html/post.navbar.php:12
|
127 |
#: views/b2s/html/sidebar.php:113
|
128 |
msgid "Favorites"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/Loader.php:873 views/b2s/settings.php:35
|
132 |
#: views/b2s/html/sidebar.php:75
|
133 |
msgid "Auto-Post"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/Loader.php:873 views/b2s/settings.php:41
|
137 |
+
#: views/b2s/html/post.navbar.php:21 views/b2s/html/sidebar.php:72
|
138 |
msgid "Re-Share Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/Loader.php:873 views/b2s/curation.php:49 views/b2s/support.php:19
|
142 |
#: views/b2s/support.php:22
|
143 |
msgid "NEW"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
|
147 |
+
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
|
148 |
+
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
149 |
+
#: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:670
|
150 |
+
#: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
|
151 |
+
#: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
|
152 |
msgid "Profile"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/Loader.php:874 includes/B2S/AutoPost/Item.php:250
|
156 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:188
|
157 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:329
|
158 |
+
#: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Portale.php:39
|
159 |
+
#: includes/B2S/Ship/Portale.php:39
|
160 |
msgid "Page"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/Loader.php:874 includes/B2S/Network/Item.php:192
|
164 |
+
#: includes/B2S/Network/Item.php:400 includes/B2S/Network/Item.php:675
|
165 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
166 |
msgid "Group"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/Loader.php:875
|
170 |
msgid "Company-Page (Employer Branding Profile)"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/Loader.php:875 includes/B2S/Network/Item.php:186
|
174 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:329
|
175 |
+
#: includes/B2S/Network/Item.php:672 includes/B2S/Ship/Item.php:331
|
176 |
+
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
|
177 |
+
#: includes/B2S/Ship/Portale.php:37
|
178 |
msgid "Business"
|
179 |
msgstr ""
|
180 |
|
181 |
+
#: includes/Loader.php:876
|
182 |
#, php-format
|
183 |
msgid ""
|
184 |
"The network could not publish your post. Please see the following <a "
|
185 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/Loader.php:877
|
189 |
msgid ""
|
190 |
"Your authorization has expired. Please reconnect your account in the "
|
191 |
"Blog2Social network settings."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/Loader.php:878
|
195 |
#, php-format
|
196 |
msgid ""
|
197 |
"The content of your post could not be approved by the network. Please see "
|
198 |
"the following <a target=\"_blank\" href=\"%s\">guide</a>."
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: includes/Loader.php:879
|
202 |
msgid ""
|
203 |
"We don't have the permission to publish your post. Please check your "
|
204 |
"authorization."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/Loader.php:880
|
208 |
#, php-format
|
209 |
msgid ""
|
210 |
"The connection to your social media account is interrupted. Please check "
|
213 |
"your social media account."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/Loader.php:881
|
217 |
msgid "Your daily limit has been reached."
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/Loader.php:882
|
221 |
msgid ""
|
222 |
"Your post could not be posted, because your image is not available or the "
|
223 |
"image source does not allow to publish"
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: includes/Loader.php:883
|
227 |
#, php-format
|
228 |
msgid ""
|
229 |
"The network has blocked your account. Please see the following <a "
|
230 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/Loader.php:884
|
234 |
#, php-format
|
235 |
msgid ""
|
236 |
"The number of images is reached. Please see the following <a "
|
237 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/Loader.php:885
|
241 |
msgid ""
|
242 |
"Your daily limit for this network has been reached. Please try again later."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: includes/Loader.php:886
|
246 |
#, php-format
|
247 |
msgid ""
|
248 |
"The network can not publish special characters such as Emoji. Please see the "
|
249 |
"following <a target=\"_blank\" href=\"%s\">guide</a>."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/Loader.php:887
|
253 |
msgid "Your post is a duplicate."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/Loader.php:888
|
257 |
msgid "The network requires a public url."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/Loader.php:889
|
261 |
msgid ""
|
262 |
"Your blog post was not available for the network at the time of publication."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/Loader.php:890
|
266 |
msgid "You have already retweeted this post."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/Loader.php:891
|
270 |
msgid ""
|
271 |
"This XING API is no longer supported by XING. Please connect your XING "
|
272 |
"accounts with the new XING interface to reschedule your posts."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/Loader.php:892
|
276 |
msgid "An image is required to post on this social network."
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/Loader.php:893
|
280 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/Loader.php:894
|
284 |
msgid ""
|
285 |
"Your post could not be posted, because your image can not be processed by "
|
286 |
"the network."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/Loader.php:895
|
290 |
#, php-format
|
291 |
msgid ""
|
292 |
"Instagram published your post without text. Please see the following <a "
|
293 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: includes/Loader.php:896
|
297 |
msgid "Your group can not be found by the network."
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: includes/Loader.php:953 includes/Loader.php:998
|
301 |
msgid "Dashboard"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: includes/Loader.php:954
|
305 |
msgid "Share Website & Blog Content"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: includes/Loader.php:954 includes/Loader.php:1005
|
309 |
msgid "Site & Blog Content"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/Loader.php:955
|
313 |
msgid "Create Social Media Posts"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/Loader.php:955 includes/Loader.php:1012
|
317 |
msgid "Social Media Posts"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/Loader.php:956 includes/Loader.php:1019 views/b2s/dashboard.php:30
|
321 |
+
#: views/b2s/html/post.navbar.php:23 views/b2s/html/sidebar.php:128
|
322 |
msgid "Calendar"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/Loader.php:957 includes/Loader.php:1026
|
326 |
msgid "Networks"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/Loader.php:960 includes/Loader.php:1040
|
330 |
msgid "PR-Service"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/Loader.php:962 includes/Loader.php:1048
|
334 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
335 |
#: views/b2s/html/sidebar.ship.php:66
|
336 |
msgid "Help & Support"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: includes/Loader.php:964
|
340 |
msgid "Premium"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/Loader.php:964 includes/Loader.php:1056
|
344 |
msgid "PREMIUM"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/Loader.php:989 views/b2s/html/sidebar.php:25
|
348 |
#: views/b2s/html/sidebar.ship.php:24
|
349 |
msgid "Blog2Social"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: includes/Loader.php:1555
|
353 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: includes/Loader.php:1555 includes/System.php:32 includes/System.php:38
|
357 |
#, php-format
|
358 |
msgid ""
|
359 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
360 |
"our FAQ</a>"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: includes/Loader.php:1555 includes/Loader.php:1576 includes/Loader.php:1826
|
364 |
msgid "or"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: includes/Loader.php:1555 includes/Loader.php:1576 includes/Loader.php:1826
|
368 |
msgid "back to install plugins"
|
369 |
msgstr ""
|
370 |
|
372 |
msgid "Rate it!"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: includes/Notice.php:18
|
376 |
msgid ""
|
377 |
"If you like Blog2Social, please give us a 5 star rating. If there is "
|
378 |
"anything that does not work for you, please contact us!"
|
404 |
"higher, or ask your server administrator to do it for you."
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: includes/Tools.php:349 views/b2s/html/sidebar.php:30
|
408 |
#: views/b2s/html/sidebar.ship.php:29
|
409 |
msgid "License"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/Tools.php:364
|
413 |
msgid "Greece"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/Tools.php:365
|
417 |
msgid "India"
|
418 |
msgstr ""
|
419 |
|
420 |
+
#: includes/Tools.php:366
|
421 |
msgid "United States of America"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: includes/Tools.php:367
|
425 |
msgid "Ireland"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: includes/Tools.php:368
|
429 |
msgid "Italy"
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: includes/Tools.php:369
|
433 |
msgid "Switzerland"
|
434 |
msgstr ""
|
435 |
|
436 |
+
#: includes/Tools.php:370
|
437 |
msgid "Czechoslovakia"
|
438 |
msgstr ""
|
439 |
|
440 |
+
#: includes/Tools.php:371
|
441 |
msgid "Indonesia"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: includes/Tools.php:372
|
445 |
msgid "Spain"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: includes/Tools.php:373
|
449 |
msgid "Canada"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: includes/Tools.php:374
|
453 |
msgid "Great Britain"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: includes/Tools.php:375
|
457 |
msgid "Russia"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: includes/Tools.php:376
|
461 |
msgid "Netherlands"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: includes/Tools.php:377 includes/Tools.php:391
|
465 |
msgid "Portugal"
|
466 |
msgstr ""
|
467 |
|
468 |
+
#: includes/Tools.php:378
|
469 |
msgid "Norway"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: includes/Tools.php:379
|
473 |
msgid "Turkey"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: includes/Tools.php:380
|
477 |
msgid "Australia"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: includes/Tools.php:381
|
481 |
msgid "Austria"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: includes/Tools.php:382
|
485 |
msgid "Poland"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: includes/Tools.php:383
|
489 |
msgid "France"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: includes/Tools.php:384
|
493 |
msgid "Romania"
|
494 |
msgstr ""
|
495 |
|
496 |
+
#: includes/Tools.php:385
|
497 |
msgid "Germany"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: includes/Tools.php:386
|
501 |
msgid "Denmark"
|
502 |
msgstr ""
|
503 |
|
504 |
+
#: includes/Tools.php:387
|
505 |
msgid "New Zealand"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: includes/Tools.php:388
|
509 |
msgid "Finland"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: includes/Tools.php:389
|
513 |
msgid "Hungary"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: includes/Tools.php:390
|
517 |
msgid "Japan"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: includes/Tools.php:392
|
521 |
msgid "Argentina"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: includes/Tools.php:393
|
525 |
msgid "Korea"
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: includes/Tools.php:394
|
529 |
msgid "Sweden"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: includes/Tools.php:395
|
533 |
msgid "Mexico"
|
534 |
msgstr ""
|
535 |
|
536 |
+
#: includes/Tools.php:396
|
537 |
msgid "Slovakia"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: includes/Tools.php:397
|
541 |
msgid "Chile"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: includes/Tools.php:398
|
545 |
msgid "Colombia"
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: includes/Tools.php:399
|
549 |
msgid "South Africa"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: includes/Tools.php:400
|
553 |
msgid "Philippines"
|
554 |
msgstr ""
|
555 |
|
556 |
+
#: includes/Tools.php:403
|
557 |
msgid "is determined automatically"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: includes/Tools.php:410
|
561 |
msgid "Search"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: includes/Tools.php:411
|
565 |
msgid "Recently Used"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: includes/Tools.php:412
|
569 |
msgid "Smileys & People"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: includes/Tools.php:413
|
573 |
msgid "Animals & Nature"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: includes/Tools.php:414
|
577 |
msgid "Food & Drink"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: includes/Tools.php:415
|
581 |
msgid "Activities"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: includes/Tools.php:416
|
585 |
msgid "Travel & Places"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: includes/Tools.php:417
|
589 |
msgid "Objects"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: includes/Tools.php:418
|
593 |
msgid "Symbols"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: includes/Tools.php:419
|
597 |
msgid "Flags"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: includes/Tools.php:420
|
601 |
msgid "No emojis found"
|
602 |
msgstr ""
|
603 |
|
604 |
#: includes/Util.php:43 views/b2s/post.sched.php:33
|
605 |
+
#: includes/B2S/Network/Item.php:158
|
606 |
msgid "Clock"
|
607 |
msgstr ""
|
608 |
|
644 |
msgid "Please contact our support!"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: includes/Ajax/Post.php:1929 views/b2s/network.php:7
|
648 |
+
#: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
|
649 |
+
#: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:528
|
650 |
msgid "Unknown username"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: includes/Ajax/Post.php:1930 includes/B2S/Network/Item.php:529
|
654 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
655 |
+
#: includes/B2S/Post/Item.php:848 includes/B2S/Post/Item.php:906
|
656 |
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1131
|
657 |
#: includes/B2S/Ship/Item.php:1281
|
658 |
msgid "delete"
|
662 |
msgid "Please see FAQ"
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: includes/B2S/PostBox.php:143 views/b2s/ship.php:773
|
666 |
#: views/b2s/html/header.php:60
|
667 |
msgid "The connection to the server failed. Try again!"
|
668 |
msgstr ""
|
699 |
#: includes/B2S/PostBox.php:253 views/b2s/network.php:42 views/b2s/ship.php:76
|
700 |
#: views/b2s/ship.php:166 views/b2s/ship.php:258
|
701 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
702 |
+
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:209
|
703 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
704 |
#: includes/B2S/Ship/Item.php:1095
|
705 |
msgid "Info"
|
758 |
"engagement with your community."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: includes/B2S/PostBox.php:207 views/b2s/html/footer.php:340
|
762 |
+
#: views/b2s/html/footer.php:380
|
763 |
msgid "Blog2Social: Social Media Auto-Posting"
|
764 |
msgstr ""
|
765 |
|
766 |
+
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:344
|
767 |
msgid ""
|
768 |
"Share your blog posts with the Auto Poster: Your blog posts will be shared "
|
769 |
"automatically on your social media channels as soon as you publish or update "
|
771 |
"they are published."
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: includes/B2S/PostBox.php:212 views/b2s/html/footer.php:345
|
775 |
#, php-format
|
776 |
msgid ""
|
777 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for your "
|
778 |
"blog posts</a>"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: includes/B2S/PostBox.php:216 views/b2s/html/footer.php:351
|
782 |
+
#: views/b2s/html/footer.php:390 views/b2s/html/footer.php:448
|
783 |
msgid "You want to auto-post your blog post?"
|
784 |
msgstr ""
|
785 |
|
787 |
#: views/b2s/post.calendar.php:282 views/b2s/ship.php:309
|
788 |
#: views/b2s/ship.php:373 views/b2s/ship.php:419 views/b2s/html/footer.php:28
|
789 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
790 |
+
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
|
791 |
+
#: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
|
792 |
+
#: views/b2s/html/footer.php:542
|
793 |
msgid "With Blog2Social Premium you can:"
|
794 |
msgstr ""
|
795 |
|
797 |
#: views/b2s/post.calendar.php:285 views/b2s/ship.php:312
|
798 |
#: views/b2s/ship.php:376 views/b2s/ship.php:422 views/b2s/html/footer.php:31
|
799 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
800 |
+
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
|
801 |
+
#: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
|
802 |
+
#: views/b2s/html/footer.php:545 views/b2s/html/header.php:342
|
803 |
msgid "Post on pages and groups"
|
804 |
msgstr ""
|
805 |
|
807 |
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:313
|
808 |
#: views/b2s/ship.php:377 views/b2s/ship.php:423 views/b2s/html/footer.php:32
|
809 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
810 |
+
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
|
811 |
+
#: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
|
812 |
+
#: views/b2s/html/footer.php:546
|
813 |
msgid "Share on multiple profiles, pages and groups"
|
814 |
msgstr ""
|
815 |
|
818 |
#: views/b2s/ship.php:378 views/b2s/ship.php:424 views/b2s/html/footer.php:33
|
819 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
820 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
821 |
+
#: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
|
822 |
+
#: views/b2s/html/footer.php:454 views/b2s/html/footer.php:547
|
823 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
824 |
msgstr ""
|
825 |
|
827 |
#: views/b2s/post.calendar.php:288 views/b2s/ship.php:315
|
828 |
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:34
|
829 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
830 |
+
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
|
831 |
+
#: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
|
832 |
+
#: views/b2s/html/footer.php:548
|
833 |
msgid "Schedule your posts at the best times on each network"
|
834 |
msgstr ""
|
835 |
|
837 |
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:316
|
838 |
#: views/b2s/ship.php:380 views/b2s/ship.php:426 views/b2s/html/footer.php:35
|
839 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
840 |
+
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
|
841 |
+
#: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
|
842 |
+
#: views/b2s/html/footer.php:549
|
843 |
msgid ""
|
844 |
"Best Time Manager: use predefined best time scheduler to auto-schedule your "
|
845 |
"social media posts"
|
849 |
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:317
|
850 |
#: views/b2s/ship.php:381 views/b2s/ship.php:427 views/b2s/html/footer.php:36
|
851 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
852 |
+
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
|
853 |
+
#: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
|
854 |
+
#: views/b2s/html/footer.php:550
|
855 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
856 |
msgstr ""
|
857 |
|
859 |
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:318
|
860 |
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:37
|
861 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
862 |
+
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
|
863 |
+
#: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
|
864 |
+
#: views/b2s/html/footer.php:551
|
865 |
msgid "Schedule and re-share old posts"
|
866 |
msgstr ""
|
867 |
|
870 |
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:38
|
871 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
872 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
873 |
+
#: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
|
874 |
+
#: views/b2s/html/footer.php:459 views/b2s/html/footer.php:552
|
875 |
msgid "Select link format or image format for your posts"
|
876 |
msgstr ""
|
877 |
|
880 |
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:39
|
881 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
882 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
883 |
+
#: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
|
884 |
+
#: views/b2s/html/footer.php:460 views/b2s/html/footer.php:553
|
885 |
msgid "Select individual images per post"
|
886 |
msgstr ""
|
887 |
|
889 |
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:321
|
890 |
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:40
|
891 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
892 |
+
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
|
893 |
+
#: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
|
894 |
+
#: views/b2s/html/footer.php:554
|
895 |
msgid ""
|
896 |
"Reporting & calendar: keep track of your published and scheduled social "
|
897 |
"media posts"
|
901 |
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:323
|
902 |
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:42
|
903 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
904 |
+
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
|
905 |
+
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
906 |
+
#: views/b2s/html/footer.php:556
|
907 |
msgid "Upgrade to SMART and above"
|
908 |
msgstr ""
|
909 |
|
914 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
915 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
916 |
#: views/b2s/html/footer.php:273 views/b2s/html/footer.php:313
|
917 |
+
#: views/b2s/html/footer.php:368 views/b2s/html/footer.php:407
|
918 |
+
#: views/b2s/html/footer.php:465 views/b2s/html/footer.php:559
|
919 |
#, php-format
|
920 |
msgid ""
|
921 |
"or <a target=\"_blank\" href=\"%s\">start with free 30-days-trial of "
|
969 |
msgid "at best times"
|
970 |
msgstr ""
|
971 |
|
972 |
+
#: views/b2s/autopost.php:18 views/b2s/settings.php:18
|
973 |
#: includes/B2S/Ship/Image.php:29
|
974 |
msgid ""
|
975 |
"You need a higher user role to upload an image on this blog. Please contact "
|
976 |
"your administrator."
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:27
|
980 |
msgid "save..."
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:137
|
984 |
#: includes/B2S/Ship/Image.php:96
|
985 |
msgid "Select or upload an image from media gallery"
|
986 |
msgstr ""
|
987 |
|
988 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:138
|
989 |
#: includes/B2S/Ship/Image.php:97
|
990 |
msgid "Use image"
|
991 |
msgstr ""
|
992 |
|
993 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:190
|
994 |
#: includes/B2S/Settings/Item.php:53
|
995 |
msgid "Personal Time Zone"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: views/b2s/autopost.php:62 views/b2s/settings.php:193
|
999 |
msgid ""
|
1000 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
1001 |
"defined in the general settings of your WordPress. You can select a user-"
|
1049 |
msgid "Get the Blog2Social Browser Extension"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: views/b2s/curation.draft.php:47 views/b2s/network.php:61
|
1053 |
+
#: views/b2s/network.php:149 views/b2s/network.php:236
|
1054 |
#: views/b2s/network.php:373 views/b2s/network.php:452
|
1055 |
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:60
|
1056 |
#: views/b2s/post.calendar.php:244 views/b2s/post.draft.php:42
|
1057 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
1058 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
1059 |
#: views/b2s/post.sched.php:59 views/b2s/repost.php:28 views/b2s/ship.php:188
|
1060 |
+
#: views/b2s/ship.php:603 views/b2s/ship.php:771 views/b2s/support.php:144
|
1061 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
1062 |
msgid "Loading..."
|
1063 |
msgstr ""
|
1106 |
msgid "Saved as draft."
|
1107 |
msgstr ""
|
1108 |
|
1109 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
|
1110 |
+
#: views/b2s/post.sched.php:189 views/b2s/repost.php:73
|
1111 |
+
#: includes/B2S/Settings/Item.php:239 includes/B2S/Settings/Item.php:276
|
1112 |
+
#: views/b2s/html/footer.php:160
|
1113 |
msgid "Link Post"
|
1114 |
msgstr ""
|
1115 |
|
1118 |
msgstr ""
|
1119 |
|
1120 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1121 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1122 |
+
#: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
|
1123 |
+
#: includes/B2S/Settings/Item.php:276
|
1124 |
msgid "Image Post"
|
1125 |
msgstr ""
|
1126 |
|
1130 |
msgstr ""
|
1131 |
|
1132 |
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:35
|
1133 |
+
#: includes/B2S/Network/Item.php:179 includes/B2S/Network/Item.php:188
|
1134 |
+
#: includes/B2S/Network/Item.php:193 includes/B2S/Ship/Image.php:92
|
1135 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1136 |
#: includes/B2S/Ship/Item.php:748 includes/B2S/Ship/Item.php:802
|
1137 |
+
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:39
|
1138 |
+
#: includes/B2S/Ship/Portale.php:51
|
1139 |
msgid "PRO"
|
1140 |
msgstr ""
|
1141 |
|
1200 |
msgstr ""
|
1201 |
|
1202 |
#: views/b2s/curation.php:139 views/b2s/post.calendar.php:38
|
1203 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:772 includes/B2S/Post/Filter.php:59
|
1204 |
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:438
|
1205 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
1206 |
msgid "published"
|
1362 |
"is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: views/b2s/dashboard.php:26
|
1366 |
msgid "Your Activity"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: views/b2s/dashboard.php:31
|
1370 |
msgid "List"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: views/b2s/dashboard.php:32
|
1374 |
msgid "Chart"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: views/b2s/dashboard.php:60
|
1378 |
msgid "Follow us"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: views/b2s/dashboard.php:85
|
1382 |
msgid "show full calendar"
|
1383 |
msgstr ""
|
1384 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1385 |
#: views/b2s/network.php:25 views/b2s/network.php:26
|
1386 |
#: views/b2s/post.calendar.php:226 views/b2s/post.calendar.php:227
|
1387 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1388 |
+
#: views/b2s/html/post.navbar.php:29 views/b2s/html/post.navbar.php:30
|
1389 |
msgid "filter"
|
1390 |
msgstr ""
|
1391 |
|
1506 |
msgid "modify"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
+
#: views/b2s/network.php:230 includes/B2S/Network/Item.php:196
|
1510 |
+
#: includes/B2S/Network/Item.php:196
|
1511 |
msgid "Edit Post Template"
|
1512 |
msgstr ""
|
1513 |
|
1514 |
#: views/b2s/network.php:230 views/b2s/ship.php:23
|
1515 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1516 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:196
|
1517 |
+
#: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:371
|
1518 |
+
#: includes/B2S/Network/Item.php:437 includes/B2S/RePost/Item.php:23
|
1519 |
+
#: includes/B2S/Settings/Item.php:159 includes/B2S/Ship/Image.php:85
|
1520 |
+
#: includes/B2S/Ship/Item.php:1154 includes/B2S/Ship/Portale.php:37
|
1521 |
+
#: views/b2s/html/post.navbar.php:18 views/b2s/html/post.navbar.php:21
|
1522 |
+
#: views/b2s/html/post.navbar.php:23 views/b2s/partials/post-edit-modal.php:9
|
1523 |
#: views/b2s/widgets/posts.php:18
|
1524 |
msgid "SMART"
|
1525 |
msgstr ""
|
1526 |
|
1527 |
+
#: views/b2s/network.php:242 views/b2s/settings.php:65
|
1528 |
+
#: includes/B2S/Network/Item.php:589 includes/B2S/Settings/Item.php:133
|
1529 |
msgid "save"
|
1530 |
msgstr ""
|
1531 |
|
1592 |
msgid "The name of the post author."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
+
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:836
|
1596 |
msgid "Character limit"
|
1597 |
msgstr ""
|
1598 |
|
1834 |
msgid "Upgrade to Blog2Social Business"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
+
#: views/b2s/network.php:556 includes/B2S/Network/Item.php:559
|
1838 |
#, php-format
|
1839 |
msgid ""
|
1840 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1846 |
msgid "My Profile"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: views/b2s/network.php:603 views/b2s/ship.php:714
|
1850 |
msgid "Add Page"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
+
#: views/b2s/network.php:608 views/b2s/ship.php:719
|
1854 |
#, php-format
|
1855 |
msgid ""
|
1856 |
"Please make sure to log in with your account which manages your pages and <a "
|
1858 |
msgstr ""
|
1859 |
|
1860 |
#: views/b2s/network.php:609 views/b2s/network.php:628
|
1861 |
+
#: views/b2s/network.php:647 views/b2s/network.php:666 views/b2s/ship.php:682
|
1862 |
+
#: views/b2s/ship.php:701 views/b2s/ship.php:720 views/b2s/ship.php:739
|
1863 |
msgid "Continue"
|
1864 |
msgstr ""
|
1865 |
|
1866 |
+
#: views/b2s/network.php:622 views/b2s/ship.php:733
|
1867 |
msgid "Add Group"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: views/b2s/network.php:627 views/b2s/ship.php:738
|
1871 |
#, php-format
|
1872 |
msgid ""
|
1873 |
"Please make sure to log in with your account which manages your groups and "
|
1892 |
" How to connect with Instagram.</a>."
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: views/b2s/network.php:660 views/b2s/ship.php:695
|
1896 |
+
msgid "Connect Instagram Business Account"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: views/b2s/network.php:665
|
1900 |
+
#, php-format
|
1901 |
+
msgid ""
|
1902 |
+
"Please note: Your Instagram Business Account will be connected with "
|
1903 |
+
"Blog2Social via Facebook. Therefore, please make sure that your Instagram "
|
1904 |
+
"Business Account is linked to a Facebook page and enter the login data of "
|
1905 |
+
"your Facebook page. You will find more information and detailed instructions "
|
1906 |
+
"in the <a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
|
1907 |
+
msgstr ""
|
1908 |
+
|
1909 |
+
#: views/b2s/network.php:679
|
1910 |
+
msgid "Network connections"
|
1911 |
+
msgstr ""
|
1912 |
+
|
1913 |
+
#: views/b2s/network.php:684
|
1914 |
+
msgid ""
|
1915 |
+
"With Blog2Social you can connect up to 16 social media networks and share "
|
1916 |
+
"your posts on your favourite social media accounts automatically."
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: views/b2s/network.php:687
|
1920 |
+
msgid ""
|
1921 |
+
"Each license has a specified number of accounts you can connect per social "
|
1922 |
+
"media network."
|
1923 |
+
msgstr ""
|
1924 |
+
|
1925 |
+
#: views/b2s/network.php:690
|
1926 |
+
msgid "Smart: 3 (per user)"
|
1927 |
+
msgstr ""
|
1928 |
+
|
1929 |
+
#: views/b2s/network.php:692
|
1930 |
+
msgid "Pro: 5 (per user)"
|
1931 |
+
msgstr ""
|
1932 |
+
|
1933 |
+
#: views/b2s/network.php:694
|
1934 |
+
msgid "Business: 15 (per user)"
|
1935 |
+
msgstr ""
|
1936 |
+
|
1937 |
+
#: views/b2s/network.php:697
|
1938 |
+
msgid ""
|
1939 |
+
"For example: With the Pro license, each user can connect 5 Facebook accounts "
|
1940 |
+
"+ 5 Twitter accounts + 5 Instagram accounts + ..."
|
1941 |
+
msgstr ""
|
1942 |
+
|
1943 |
+
#: views/b2s/network.php:700
|
1944 |
+
msgid ""
|
1945 |
+
"You can also purchase additional groups and sites as add-on to your active "
|
1946 |
+
"Blog2Social Premium Pro or Premium Business license:"
|
1947 |
+
msgstr ""
|
1948 |
+
|
1949 |
+
#: views/b2s/network.php:703
|
1950 |
+
msgid "Facebook groups"
|
1951 |
+
msgstr ""
|
1952 |
+
|
1953 |
+
#: views/b2s/network.php:705
|
1954 |
+
msgid "Facebook pages"
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#: views/b2s/network.php:707
|
1958 |
+
msgid "LinkedIn pages"
|
1959 |
+
msgstr ""
|
1960 |
+
|
1961 |
+
#: views/b2s/network.php:710
|
1962 |
+
msgid ""
|
1963 |
+
"For example: If you purchase 5 Facebook groups, these additional 5 Facebook "
|
1964 |
+
"groups are available for all users. So, when 5 users are activated for the "
|
1965 |
+
"Pro or Business license, each user can connect 1 additional Facebook group, "
|
1966 |
+
"or one user can connect 5 additional Facebook groups."
|
1967 |
+
msgstr ""
|
1968 |
+
|
1969 |
+
#: views/b2s/network.php:713
|
1970 |
+
#, php-format
|
1971 |
+
msgid ""
|
1972 |
+
"<a href=\"%s\" target=\"_blank\">Get more information on how to add more "
|
1973 |
+
"sites or groups.</a>"
|
1974 |
+
msgstr ""
|
1975 |
+
|
1976 |
#: views/b2s/post.approve.php:89
|
1977 |
msgid "Delete Social Media Posts"
|
1978 |
msgstr ""
|
2001 |
msgid "scheduled"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
2005 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:749
|
2006 |
+
#: includes/B2S/Network/Item.php:752 includes/B2S/Settings/Item.php:239
|
2007 |
+
#: views/b2s/html/footer.php:177
|
2008 |
+
msgid "Image with frame"
|
2009 |
+
msgstr ""
|
2010 |
+
|
2011 |
+
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
2012 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:750
|
2013 |
+
#: includes/B2S/Network/Item.php:753 includes/B2S/Settings/Item.php:253
|
2014 |
+
#: views/b2s/html/footer.php:182
|
2015 |
+
msgid "Image cut out"
|
2016 |
+
msgstr ""
|
2017 |
+
|
2018 |
+
#: views/b2s/post.calendar.php:88 views/b2s/post.sched.php:172
|
2019 |
+
#: views/b2s/repost.php:56
|
2020 |
+
msgid "add post"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
#: views/b2s/post.calendar.php:111 views/b2s/post.sched.php:130
|
2024 |
#: views/b2s/repost.php:104 views/b2s/ship.php:507
|
2025 |
msgid "Choose your"
|
2204 |
"your own best time scheme."
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:730
|
2208 |
+
#: includes/B2S/Post/Item.php:871
|
2209 |
msgid "Auto-Posting"
|
2210 |
msgstr ""
|
2211 |
|
2287 |
msgid "Show all premium features"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: views/b2s/settings.php:32
|
2291 |
msgid "General"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: views/b2s/settings.php:38
|
2295 |
msgid "Social Meta Data"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: views/b2s/settings.php:44 views/b2s/html/sidebar.php:134
|
2299 |
msgid "Social Media Networks"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: views/b2s/settings.php:47
|
2303 |
msgid "Social Media Time Settings"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: views/b2s/settings.php:50
|
2307 |
msgid "Post Templates"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: views/b2s/settings.php:72
|
2311 |
msgid ""
|
2312 |
"Connect Blog2Social with 16 different social media networks you like to "
|
2313 |
"share your WordPress blog posts and pages as well as imported posts and "
|
2314 |
"social media posts on. The following networks are available:"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: views/b2s/settings.php:92
|
2318 |
#, php-format
|
2319 |
msgid ""
|
2320 |
"You will find more information on how to connect your social media networks "
|
2322 |
"guide</a>."
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: views/b2s/settings.php:94
|
2326 |
msgid "Connect your social media networks"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
+
#: views/b2s/settings.php:97
|
2330 |
msgid ""
|
2331 |
"Use the pre-defined best time settings or define your own best time settings "
|
2332 |
"for sharing your posts . Posting at the right time can be essential to make "
|
2333 |
"sure your content is most likely be seen."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: views/b2s/settings.php:99
|
2337 |
#, php-format
|
2338 |
msgid ""
|
2339 |
"You will find more information about the pre-defined best time settings by "
|
2340 |
"Blog2Social in this <a href=\"%s\" target=\"_blank\">best time guide</a>."
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: views/b2s/settings.php:101
|
2344 |
#, php-format
|
2345 |
msgid ""
|
2346 |
"An instruction on how to define your own best times is explained in the "
|
2348 |
"post on social media?</a>\"."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: views/b2s/settings.php:103
|
2352 |
msgid "Check, edit or define your social media time settings"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: views/b2s/settings.php:106
|
2356 |
msgid ""
|
2357 |
"Edit the post templates for each social media network to turn your social "
|
2358 |
"media posts automatically into tailored posts for each network and community."
|
2359 |
" You can edit the structure of your post with the following variables:"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: views/b2s/settings.php:109
|
2363 |
msgid "Title: The title of your post."
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: views/b2s/settings.php:110
|
2367 |
msgid "Content: The content of your post."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: views/b2s/settings.php:111
|
2371 |
msgid ""
|
2372 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2373 |
"post)."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: views/b2s/settings.php:112
|
2377 |
msgid "Keywords: The tags you have set in your post."
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: views/b2s/settings.php:113
|
2381 |
msgid "Author: The author of the post."
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: views/b2s/settings.php:115
|
2385 |
#, php-format
|
2386 |
msgid ""
|
2387 |
"You will find more information on how to use post templates for your social "
|
2388 |
"media posts in this <a href=\"%s\" target=\"_blank\">post template guide</a>."
|
2389 |
msgstr ""
|
2390 |
|
2391 |
+
#: views/b2s/settings.php:117
|
2392 |
msgid "Define your post templates for each social media network"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
+
#: views/b2s/settings.php:148
|
2396 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: views/b2s/settings.php:151
|
2400 |
#, php-format
|
2401 |
msgid ""
|
2402 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
2410 |
"following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: views/b2s/settings.php:162
|
2414 |
msgid "Activate Legacy mode "
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: views/b2s/settings.php:165
|
2418 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: views/b2s/settings.php:176
|
2422 |
msgid "Instant Caching for Facebook Link Posts"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: views/b2s/settings.php:179
|
2426 |
msgid ""
|
2427 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2428 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
2611 |
"overwrite your draft?"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: views/b2s/ship.php:700
|
2615 |
+
#, php-format
|
2616 |
+
msgid ""
|
2617 |
+
"Please note: Your Instagram Business Account will be connected with "
|
2618 |
+
"Blog2Social via Facebook. Therefore, please make sure that your Instagram "
|
2619 |
+
"Business Account is linked to a Facebook page and enter the corresponding "
|
2620 |
+
"login data. You will find more information and detailed instructions in the "
|
2621 |
+
"<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
|
2622 |
+
msgstr ""
|
2623 |
+
|
2624 |
+
#: views/b2s/ship.php:759
|
2625 |
msgid "add Schedule"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: views/b2s/ship.php:775
|
2629 |
msgid "Give me more information"
|
2630 |
msgstr ""
|
2631 |
|
2952 |
msgstr ""
|
2953 |
|
2954 |
#: includes/B2S/AutoPost/Item.php:39
|
2955 |
+
#, php-format
|
2956 |
msgid ""
|
2957 |
+
"Posts for Facebook Profiles will be shown on your \"Site & Blog Content\" "
|
2958 |
+
"navigation bar in the \"Instant Sharing\" tab. To share the post on your "
|
2959 |
+
"Facebook Profile just click on the \"Share\" button next to your post. More "
|
2960 |
+
"information in the <a href=\"%s\" target=\"_blank\">Instant Sharing guide</a>"
|
2961 |
+
"."
|
2962 |
msgstr ""
|
2963 |
|
2964 |
#: includes/B2S/AutoPost/Item.php:42
|
3081 |
msgid "Save"
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: includes/B2S/AutoPost/Item.php:241 includes/B2S/Network/Item.php:205
|
3085 |
msgid "Connections"
|
3086 |
msgstr ""
|
3087 |
|
3129 |
msgid "Customize & Schedule"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: includes/B2S/Network/Item.php:66
|
3133 |
+
msgid "Default"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: includes/B2S/Network/Item.php:66
|
3137 |
+
msgid "Show all"
|
|
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: includes/B2S/Network/Item.php:67 includes/B2S/Network/Item.php:215
|
3141 |
+
msgid "My profile"
|
|
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: includes/B2S/Network/Item.php:69
|
3145 |
+
msgid "Your profiles:"
|
|
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: includes/B2S/Network/Item.php:114
|
3149 |
+
msgid "Available accounts"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: includes/B2S/Network/Item.php:115
|
3153 |
+
msgid "additional profiles"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: includes/B2S/Network/Item.php:115
|
3157 |
+
msgid "additional pages"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: includes/B2S/Network/Item.php:115
|
3161 |
+
msgid "additional groups"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: includes/B2S/Network/Item.php:162
|
3165 |
msgid "Best times"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
|
3169 |
#: includes/B2S/Ship/Item.php:331 includes/B2S/Ship/Navbar.php:90
|
3170 |
+
#: includes/B2S/Ship/Portale.php:43
|
3171 |
msgid "Blog"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:255
|
3175 |
+
#: includes/B2S/Network/Item.php:670 includes/B2S/Ship/Item.php:331
|
3176 |
+
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:43
|
3177 |
+
msgid "Personal"
|
3178 |
+
msgstr ""
|
3179 |
+
|
3180 |
+
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
3181 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Ship/Portale.php:37
|
3182 |
+
#: includes/B2S/Ship/Portale.php:47 includes/B2S/Ship/Portale.php:51
|
3183 |
msgid "You want to connect a network profile?"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: includes/B2S/Network/Item.php:175 includes/B2S/Ship/Portale.php:47
|
3187 |
msgid "BUSINESS"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Ship/Portale.php:39
|
3191 |
msgid "You want to connect a network page?"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: includes/B2S/Network/Item.php:192 includes/B2S/Network/Item.php:400
|
3195 |
#: includes/B2S/Ship/Portale.php:31
|
3196 |
msgid "Publication"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: includes/B2S/Network/Item.php:193 includes/B2S/Ship/Portale.php:32
|
3200 |
msgid "You want to connect a social media group?"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: includes/B2S/Network/Item.php:209 views/b2s/html/footer.php:241
|
3204 |
msgid "Best Time Manager"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
|
3208 |
+
#: includes/B2S/Network/Item.php:391
|
3209 |
msgid "To reactivate this connection,"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: includes/B2S/Network/Item.php:246 includes/B2S/Network/Item.php:316
|
3213 |
+
#: includes/B2S/Network/Item.php:391 includes/B2S/Ship/Image.php:31
|
3214 |
msgid "please upgrade"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: includes/B2S/Network/Item.php:249 includes/B2S/Network/Item.php:319
|
3218 |
+
#: includes/B2S/Network/Item.php:394
|
3219 |
msgid "Connection is interrupted since"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: includes/B2S/Network/Item.php:253 includes/B2S/Network/Item.php:323
|
3223 |
+
#: includes/B2S/Network/Item.php:398
|
3224 |
msgid "Assigned by"
|
3225 |
msgstr ""
|
3226 |
|
3227 |
+
#: includes/B2S/Network/Item.php:295 includes/B2S/Network/Item.php:369
|
3228 |
+
#: includes/B2S/Network/Item.php:435 includes/B2S/Ship/Item.php:1211
|
3229 |
msgid "Days"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: includes/B2S/Network/Item.php:326 includes/B2S/Network/Item.php:869
|
3233 |
#, php-format
|
3234 |
msgid ""
|
3235 |
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
3236 |
"Old Design until 2020/11/30</a>)"
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: includes/B2S/Network/Item.php:327 includes/B2S/Network/Item.php:870
|
3240 |
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: includes/B2S/Network/Item.php:516
|
3244 |
msgid "Connection currently assigned to"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: includes/B2S/Network/Item.php:561 views/prg/html/form.php:84
|
3248 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3249 |
#: views/prg/html/form.php:163
|
3250 |
msgid "Name"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: includes/B2S/Network/Item.php:562
|
3254 |
msgid "Value"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: includes/B2S/Network/Item.php:586
|
3258 |
msgid "+ add Parameter"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: includes/B2S/Network/Item.php:587
|
3262 |
#, php-format
|
3263 |
msgid "Apply for all %s connections"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: includes/B2S/Network/Item.php:588
|
3267 |
msgid "Apply for all connections"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: includes/B2S/Network/Item.php:614
|
3271 |
msgid "Successfully saved"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: includes/B2S/Network/Item.php:615
|
3275 |
msgid "Failed to save"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: includes/B2S/Network/Item.php:616
|
3279 |
msgid "Failed to load the default template"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: includes/B2S/Network/Item.php:659
|
3283 |
msgid ""
|
3284 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
3285 |
"templates that will automatically pre-format the structure of your social "
|
3290 |
"or slogans) to your post templates."
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: includes/B2S/Network/Item.php:660
|
3294 |
msgid "Upgrade to Blog2Social Smart"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: includes/B2S/Network/Item.php:681
|
3298 |
msgid "Activate Instant Caching"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: includes/B2S/Network/Item.php:742
|
3302 |
msgid "Format"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: includes/B2S/Network/Item.php:743 includes/B2S/Network/Item.php:764
|
3306 |
msgid "Load default settings"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: includes/B2S/Network/Item.php:749 includes/B2S/Network/Item.php:752
|
3310 |
#: includes/B2S/Ship/Item.php:960 includes/B2S/Ship/Item.php:962
|
3311 |
msgid "Link"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: includes/B2S/Network/Item.php:750 includes/B2S/Network/Item.php:753
|
3315 |
msgid "Image"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: includes/B2S/Network/Item.php:762 includes/B2S/Settings/Item.php:64
|
3319 |
msgid "Content"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: includes/B2S/Network/Item.php:771 includes/B2S/Ship/Item.php:372
|
3323 |
msgid ""
|
3324 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3325 |
"in your post."
|
3326 |
msgstr ""
|
3327 |
|
3328 |
+
#: includes/B2S/Network/Item.php:783
|
3329 |
msgid "clear"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
+
#: includes/B2S/Network/Item.php:794
|
3333 |
msgid ""
|
3334 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
3335 |
"your page, in order to refer to the original source of the content and to "
|
3336 |
"increase the reach from search engines like Google."
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: includes/B2S/Network/Item.php:796
|
3340 |
msgid "The link will be added automatically at the end of the post."
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: includes/B2S/Network/Item.php:801
|
3344 |
msgid "The network does not support hashtags."
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: includes/B2S/Network/Item.php:805
|
3348 |
+
msgid ""
|
3349 |
+
"This social network displays the predefined hashtags as clickable tags at "
|
3350 |
+
"the end of your post."
|
3351 |
+
msgstr ""
|
3352 |
+
|
3353 |
+
#: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
|
3354 |
+
#: includes/B2S/Network/Item.php:900
|
3355 |
msgid "Network limit"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: includes/B2S/Network/Item.php:810 includes/B2S/Network/Item.php:860
|
3359 |
+
#: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
|
3360 |
+
#: includes/B2S/Network/Item.php:900 includes/B2S/Ship/Item.php:215
|
3361 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
3362 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
3363 |
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1290
|
3365 |
msgid "characters"
|
3366 |
msgstr ""
|
3367 |
|
3368 |
+
#: includes/B2S/Network/Item.php:817
|
3369 |
msgid "Add a link-URL to the end of my image post."
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: includes/B2S/Network/Item.php:824
|
3373 |
msgid ""
|
3374 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3375 |
"Instagram does not turn link-URLs into clickable links)"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: includes/B2S/Network/Item.php:829
|
3379 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: includes/B2S/Network/Item.php:840
|
3383 |
msgid ""
|
3384 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
3385 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
3386 |
"ini\" file."
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: includes/B2S/Network/Item.php:860 includes/B2S/Network/Item.php:900
|
3390 |
msgid "recommended length"
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: includes/B2S/Network/Item.php:926 includes/B2S/Network/Item.php:978
|
3394 |
+
#: includes/B2S/Network/Item.php:1047 includes/B2S/Network/Item.php:1099
|
3395 |
+
#: includes/B2S/Network/Item.php:1133 includes/B2S/Network/Item.php:1184
|
3396 |
+
#: includes/B2S/Network/Item.php:1214 includes/B2S/Network/Item.php:1268
|
3397 |
+
#: includes/B2S/Network/Item.php:1287 includes/B2S/Network/Item.php:1321
|
3398 |
+
#: includes/B2S/Network/Item.php:1337 includes/B2S/Network/Item.php:1358
|
3399 |
+
#: includes/B2S/Network/Item.php:1374 includes/B2S/Network/Item.php:1390
|
3400 |
+
#: includes/B2S/Network/Item.php:1409 includes/B2S/Network/Item.php:1425
|
3401 |
msgid "Preview"
|
3402 |
msgstr ""
|
3403 |
|
3425 |
msgid "autopost"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:777
|
3429 |
msgid "re-share"
|
3430 |
msgstr ""
|
3431 |
|
3562 |
msgid "last saved"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:871
|
3566 |
+
#: includes/B2S/Ship/Save.php:448
|
3567 |
+
msgid "Retweet"
|
3568 |
+
msgstr ""
|
3569 |
+
|
3570 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:871
|
3571 |
+
msgid "Re-Share"
|
3572 |
+
msgstr ""
|
3573 |
+
|
3574 |
+
#: includes/B2S/Post/Item.php:736 includes/B2S/Post/Item.php:806
|
3575 |
+
#: includes/B2S/Post/Item.php:877 includes/B2S/RePost/Item.php:130
|
3576 |
msgid "select all"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: includes/B2S/Post/Item.php:739
|
3580 |
+
msgid "show"
|
3581 |
+
msgstr ""
|
3582 |
+
|
3583 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:459
|
3584 |
msgid "Please see"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:459
|
3588 |
msgid "FAQ"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: includes/B2S/Post/Item.php:752
|
3592 |
+
#, php-format
|
3593 |
+
msgid "sharing in progress by %s"
|
3594 |
+
msgstr ""
|
3595 |
+
|
3596 |
+
#: includes/B2S/Post/Item.php:752
|
3597 |
+
#, php-format
|
3598 |
+
msgid "shared by %s"
|
3599 |
+
msgstr ""
|
3600 |
+
|
3601 |
+
#: includes/B2S/Post/Item.php:773 includes/B2S/Post/Item.php:786
|
3602 |
msgid "You want to delete a publish post entry?"
|
3603 |
msgstr ""
|
3604 |
|
3605 |
+
#: includes/B2S/Post/Item.php:774 includes/B2S/Post/Item.php:787
|
3606 |
msgid "delete from reporting"
|
3607 |
msgstr ""
|
3608 |
|
3609 |
+
#: includes/B2S/Post/Item.php:809
|
3610 |
#, php-format
|
3611 |
msgid "is waiting to shared by %s"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: includes/B2S/Post/Item.php:839 includes/B2S/Ship/Save.php:429
|
3615 |
msgid "share"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: includes/B2S/Post/Item.php:847
|
3619 |
msgid "You want to delete your Social Media post?"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: includes/B2S/Post/Item.php:890
|
3623 |
#, php-format
|
3624 |
msgid "last modified by %s"
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: includes/B2S/Post/Item.php:892
|
3628 |
msgid "is currently being processed by the network"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: includes/B2S/Post/Item.php:897
|
3632 |
#, php-format
|
3633 |
msgid "scheduled by %s"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: includes/B2S/Post/Item.php:902
|
3637 |
msgid "You want to edit your scheduled post?"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: includes/B2S/Post/Item.php:903
|
3641 |
msgid "edit"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
+
#: includes/B2S/Post/Item.php:915
|
3645 |
msgid "delete scheduling"
|
3646 |
msgstr ""
|
3647 |
|
3776 |
msgid "Queue"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: includes/B2S/RePost/Item.php:127
|
3780 |
+
msgid "Posts"
|
3781 |
+
msgstr ""
|
3782 |
+
|
3783 |
#: includes/B2S/RePost/Item.php:131
|
3784 |
msgid "delete selected posts"
|
3785 |
msgstr ""
|
3812 |
#: includes/B2S/Settings/Item.php:66
|
3813 |
#, php-format
|
3814 |
msgid ""
|
3815 |
+
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
3816 |
+
"links and to track the performance of your links in your social networks. "
|
3817 |
+
"Activate one of the URL shorteners you like to use and link it to your "
|
3818 |
+
"account. Your social media posts will then be shared with your links of Bit."
|
3819 |
+
"ly, Rebrandly or Sniply. You can then monitor the success of your posts in "
|
3820 |
+
"these accounts. Please note: Some networks do not allow shortlinks. "
|
3821 |
+
"Blog2Social will apply the regular URL for these social platforms. You find "
|
3822 |
+
"more information on the support of URL shortener by the different social "
|
3823 |
+
"platforms in the <a href=\"%s\" target=\"_blank\">link shortener guide</a>."
|
3824 |
msgstr ""
|
3825 |
|
3826 |
#: includes/B2S/Settings/Item.php:67
|
4738 |
msgstr ""
|
4739 |
|
4740 |
#: views/b2s/html/footer.php:325
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4741 |
msgid "Define Twitter post content"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: views/b2s/html/footer.php:328
|
4745 |
msgid ""
|
4746 |
"Select the content that will be automatically pre-filled in your Twitter "
|
4747 |
"posts. If you have ticked the box \"include WordPress tags as hashtags in my "
|
4748 |
"post\", hashtags are automatically added in the drop-down menu."
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: views/b2s/html/footer.php:384
|
4752 |
msgid ""
|
4753 |
"Share imported posts with the Auto Poster: Posts that you import via RSS "
|
4754 |
"feeds and plugins can be shared automatically on your social media channels."
|
4755 |
msgstr ""
|
4756 |
|
4757 |
+
#: views/b2s/html/footer.php:385
|
4758 |
#, php-format
|
4759 |
msgid ""
|
4760 |
"<a target=\"_blank\" href=\"%s\">Learn how to set up auto posting for "
|
4761 |
"imported posts</a>"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: views/b2s/html/footer.php:419
|
4765 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: views/b2s/html/footer.php:422
|
4769 |
msgid ""
|
4770 |
"With Blog2Social you can transfer the Auto-Poster settings as a WordPress-"
|
4771 |
"administrator to other users if they have activated the same Blog2Social-"
|
4778 |
"content to be shared automatically."
|
4779 |
msgstr ""
|
4780 |
|
4781 |
+
#: views/b2s/html/footer.php:424
|
4782 |
#, php-format
|
4783 |
msgid ""
|
4784 |
"You will get more information on how to assign the Auto-Poster settings in "
|
4785 |
"the <a target=\"_blank\" href=\"%s\">Auto-Poster guide</a>."
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: views/b2s/html/footer.php:437
|
4789 |
msgid "Blog2Social: Re-Share Posts"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
+
#: views/b2s/html/footer.php:441
|
4793 |
msgid ""
|
4794 |
"Keep your social media feed updated automatically with your best content and "
|
4795 |
"save valuable time by reviving your evergreen content regularly. Automate "
|
4797 |
"new content and interact with your community."
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: views/b2s/html/footer.php:442
|
4801 |
#, php-format
|
4802 |
msgid "<a target=\"_blank\" href=\"%s\">More information</a>"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: views/b2s/html/footer.php:481
|
4806 |
msgid "Social Meta Tags Settings"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
+
#: views/b2s/html/footer.php:484 views/b2s/html/footer.php:575
|
4810 |
msgid "Change image, title and description for your post on this network"
|
4811 |
msgstr ""
|
4812 |
|
4813 |
+
#: views/b2s/html/footer.php:490
|
4814 |
msgid ""
|
4815 |
"Facebook has changed its policy for posting link posts via plugins or web "
|
4816 |
"applications. Facebook does no longer display the featured or selected image "
|
4823 |
"requirements for Facebook."
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: views/b2s/html/footer.php:492
|
4827 |
msgid ""
|
4828 |
"With Blog2Social you can select a featured image or any image you select to "
|
4829 |
"be displayed with your link post. Blog2Social will automatically write the "
|
4834 |
"for your link post without OG meta tags."
|
4835 |
msgstr ""
|
4836 |
|
4837 |
+
#: views/b2s/html/footer.php:495
|
4838 |
msgid ""
|
4839 |
"Twitter has changed its policy for posting link posts via plugins or web "
|
4840 |
"applications. Twitter does no longer display the featured or selected image "
|
4847 |
"requirements for Twitter."
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: views/b2s/html/footer.php:497
|
4851 |
msgid ""
|
4852 |
"With Blog2Social you can select a featured image or any image you select to "
|
4853 |
"be displayed with your link post. Blog2Social will automatically write the "
|
4858 |
"image for your link post without Twitter Card meta tags."
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: views/b2s/html/footer.php:500
|
4862 |
msgid ""
|
4863 |
"To display your link preview, LinkedIn uses the image set in the oEmbed tags "
|
4864 |
"in meta data of your post. WordPress automatically sets your featured image "
|
4867 |
"“Add oEmbed tags” box."
|
4868 |
msgstr ""
|
4869 |
|
4870 |
+
#: views/b2s/html/footer.php:502
|
4871 |
msgid ""
|
4872 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
4873 |
"Graph) meta tags instead."
|
4874 |
msgstr ""
|
4875 |
|
4876 |
+
#: views/b2s/html/footer.php:504
|
4877 |
msgid ""
|
4878 |
"With Blog2Social you can select a featured image or any image you select to "
|
4879 |
"be displayed with your link post. Blog2Social will automatically write the "
|
4886 |
"your post."
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: views/b2s/html/footer.php:507
|
4890 |
msgid ""
|
4891 |
"You can change the image, title and description for your post on Facebook, "
|
4892 |
"by editing the following fields for"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: views/b2s/html/footer.php:510 views/b2s/html/footer.php:525
|
4896 |
msgid "image"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
+
#: views/b2s/html/footer.php:511 views/b2s/html/footer.php:526
|
4900 |
msgid "title"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
+
#: views/b2s/html/footer.php:512 views/b2s/html/footer.php:527
|
4904 |
msgid "description"
|
4905 |
msgstr ""
|
4906 |
|
4907 |
+
#: views/b2s/html/footer.php:514
|
4908 |
msgid ""
|
4909 |
"Blog2Social will automatically write these information in the Facebook Open "
|
4910 |
"Graph (OG) Meta Tags for Image, Title and Description of your blog post."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: views/b2s/html/footer.php:517
|
4914 |
msgid ""
|
4915 |
"Please note: If this post has already been shared or scheduled previously, "
|
4916 |
"your current changes will also affect the look of previously shared or "
|
4918 |
"tags information and automatically updated all existing posts."
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: views/b2s/html/footer.php:519
|
4922 |
#, php-format
|
4923 |
msgid ""
|
4924 |
"Please note: Your changes will have no effect on your social media posts on "
|
4926 |
"in your Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: views/b2s/html/footer.php:522
|
4930 |
msgid ""
|
4931 |
"You can change the image, title and description for your post on Twitter, by "
|
4932 |
"editing the following fields for"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
+
#: views/b2s/html/footer.php:529
|
4936 |
msgid ""
|
4937 |
"Blog2Social will automatically write these information in the Twitter Card "
|
4938 |
"Meta Tags for Image, Title and Description of your blog post."
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: views/b2s/html/footer.php:532
|
4942 |
msgid ""
|
4943 |
"Please note: If this post was previously shared or scheduled, your current "
|
4944 |
"changes will also affect the look of previously shared or scheduled posts, "
|
4947 |
"for Twitter to update your current changes."
|
4948 |
msgstr ""
|
4949 |
|
4950 |
+
#: views/b2s/html/footer.php:534
|
4951 |
#, php-format
|
4952 |
msgid ""
|
4953 |
"Please note: Your changes will have no effect on your social media posts on "
|
4955 |
"your <a target=\"_blank\" href=\"%s\">settings</a>"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
+
#: views/b2s/html/footer.php:541
|
4959 |
msgid "You want to change the image, title and description for your post?"
|
4960 |
msgstr ""
|
4961 |
|
4962 |
+
#: views/b2s/html/footer.php:580
|
4963 |
msgid ""
|
4964 |
"You are currently sharing this post as image post. Changes to title and "
|
4965 |
"description Meta Tag parameters will only be supported for link post formats."
|
4967 |
"the title and description for your post preview."
|
4968 |
msgstr ""
|
4969 |
|
4970 |
+
#: views/b2s/html/footer.php:583
|
4971 |
#, php-format
|
4972 |
msgid ""
|
4973 |
"Your changes will have no effect on your social media posts on Facebook, if "
|
4975 |
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
+
#: views/b2s/html/footer.php:586
|
4979 |
#, php-format
|
4980 |
msgid ""
|
4981 |
"Your changes will have no effect on your social media posts on Twitter, if "
|
5028 |
|
5029 |
#: views/b2s/html/header.php:97
|
5030 |
msgid ""
|
5031 |
+
"You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
|
5032 |
+
"that you use only one plugin to set social meta tags so that the networks "
|
5033 |
+
"can show the link preview of your post correctly."
|
5034 |
+
msgstr ""
|
5035 |
+
|
5036 |
+
#: views/b2s/html/header.php:97
|
5037 |
+
#, php-format
|
5038 |
+
msgid ""
|
5039 |
+
"Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
|
5040 |
+
"guide</a>."
|
5041 |
msgstr ""
|
5042 |
|
5043 |
#: views/b2s/html/header.php:103
|
5322 |
msgid "I agree to the Adenion Privacy Policy"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: views/b2s/html/post.navbar.php:10
|
5326 |
+
msgid "All Posts"
|
5327 |
msgstr ""
|
5328 |
|
5329 |
#: views/b2s/html/sidebar.php:26 views/b2s/html/sidebar.ship.php:25
|
5362 |
msgid "Plans & Prices"
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: views/b2s/html/sidebar.php:166
|
5366 |
+
msgid ""
|
5367 |
+
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
5368 |
+
"us a 5-star rating. If there's something you need assistance with, you can "
|
5369 |
+
"ask all your questions in the Blog2Social support community where you will "
|
5370 |
+
"receive help from our committed support team. You can easily access the "
|
5371 |
+
"Blog2Social Support Community via the Help & Support section in the "
|
5372 |
+
"Blog2Social menu on your WP dashboard."
|
5373 |
+
msgstr ""
|
5374 |
+
|
5375 |
#: views/b2s/html/sidebar.php:180
|
5376 |
msgid "Blog2Social Blog News"
|
5377 |
msgstr ""
|
readme.txt
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
===Blog2Social: Social Media Auto Post & Scheduler===
|
2 |
Contributors: Blog2Social, pr-gateway
|
3 |
Requires PHP: 5.5.3
|
4 |
-
Tags: auto post, auto publish, social media scheduling, social media calendar, social media automation, social media share, auto-publish, scheduling, social media post, social url share, social network share, share tweet, share links, share this, share text posts, share images, share video links, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, pinterest, re-post, scheduling plugin, social media, social media auto publish, social media button, social media manager, social media plugin, social media publishing, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing, Revive, Revive posts, Revive old posts, old posts, Reshare, Re-Share, automatically re-post, automatically reshare, auto repost, auto republish, recycle posts, bulk schedule, Google My Business, Google posts, imgur, vk, vkontakte, Vkontakte.ru, vk.com. Telegram, Telegram channels, Telegram groups, share multiple images, image gallery
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
-
Tested up to: 5.
|
8 |
-
Stable tag: 6.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -18,7 +18,7 @@ Blog2Social automatically creates social media posts for your content and auto-p
|
|
18 |
|
19 |
_Compatible with WooCommerce, Gutenberg Editor, Hummingbird, Bitly, Rebrand.ly, Sniply, WP Automatic Plugin, Page Builder & RSS Importer._
|
20 |
|
21 |
-
* Version 6.
|
22 |
|
23 |
Download Blog2Social today to make your social media marketing for your WordPress site or blog easier than ever. Blog2Social is a freemium plugin, with a free comprehensive basic version and premium plans offering more advanced features. To ensure compliance with the high quality standards of the new networks’ API rules and community guidelines, some functions of the auto-poster are premium features and not part of the free version.
|
24 |
The Blog2Social free version offers you a wide range of features. ([See what’s included in the free version](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features")).
|
@@ -30,7 +30,7 @@ To benefit from all the advanced features for automatic sharing and scheduling y
|
|
30 |
* **Google My Business** (Premium) - Post to your Business Listing on Google
|
31 |
* **LinkedIn** - Post to your profile (Free) or page (Premium)
|
32 |
* **XING** - Post to your profile (Free), page (Premium), and in groups (Premium)
|
33 |
-
* **Instagram** - Post to your Instagram
|
34 |
* **Pinterest** - Post to all your different Pinboards (Free)
|
35 |
* **Imgur** - Post to your Imgur profile (Free)
|
36 |
* **Flickr** - Post to your Flickr profile (Free)
|
@@ -47,7 +47,7 @@ To benefit from all the advanced features for automatic sharing and scheduling y
|
|
47 |
|
48 |
BLOG2SOCIAL FREE
|
49 |
|
50 |
-
* Share your posts and pages on
|
51 |
* Customize your social media posts with unique personal comments, hashtags, handles, emojis, and select an image or animated GIF of your choice.
|
52 |
* You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
|
53 |
* Manage all users posts and pages and share them on your channels.
|
@@ -133,7 +133,7 @@ The Blog2Social Plugin is available in the following language versions
|
|
133 |
* Thanks to [Almaz](https://almazworks.com/ "Almaz") for translating this plugin into Russian
|
134 |
* Thanks to [Olivier](https://extraspeech.com/ "Olivier") for translating this plugin into French
|
135 |
* Thanks to [Daniel](https://bananklubben.se/ "Daniel Guldstrand") for translating this plugin into Swedish
|
136 |
-
* Thanks to [Olga](https://jascin.net "Olga Jascin")
|
137 |
|
138 |
== Installation ==
|
139 |
1. Go to the Admin Panel of your WordPress dashboard
|
@@ -166,7 +166,7 @@ Blog2Social is a freemium plugin with a free comprehensive basic version and pre
|
|
166 |
= What can I do with the free version? =
|
167 |
|
168 |
There is quite a lot you can do with the free version of Blog2Social for your social media marketing:
|
169 |
-
* You can share your blog posts and pages as well as content from other sources on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), Instagram, Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo
|
170 |
* You can customize your social media posts with personal comments, hashtags, handles, emojis, and select an image of your choice. You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
|
171 |
With the free version you can also:
|
172 |
* manage all users’ posts and pages and share them on your channels
|
@@ -221,6 +221,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
221 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
222 |
|
223 |
== Changelog ==
|
|
|
|
|
224 |
= 6.6.4 =
|
225 |
Usability Optimization
|
226 |
= 6.6.3 =
|
@@ -317,6 +319,8 @@ Usability Optimization
|
|
317 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
318 |
|
319 |
== Upgrade Notice ==
|
|
|
|
|
320 |
= 6.6.4 =
|
321 |
Usability Optimization
|
322 |
= 6.6.3 =
|
1 |
===Blog2Social: Social Media Auto Post & Scheduler===
|
2 |
Contributors: Blog2Social, pr-gateway
|
3 |
Requires PHP: 5.5.3
|
4 |
+
Tags: auto post, auto publish, social media scheduling, social media calendar, social media automation, social media share, auto-publish, scheduling, social media post, social url share, social network share, share tweet, share links, share this, share text posts, share images, share video links, social tools, admin, api, auto share to, autopost, auto-Posting, auto-schedule, auto-schedule social media posts, automatic social sharing plugin, blog marketing, blog2social, blogger, buffer, crossposting, cross-promotion, cross-promoting, bloglovin, bloglovin auto post, facebook, facebook auto post, facebook pages, google auto post, instagram, instagram auto post, jetpack, jetpack sharing, linkedin, linkedin auto post, medium, medium auto post, multiposting, pinterest, re-post, scheduling plugin, social media, social media auto publish, social media button, social media manager, social media plugin, social media publishing, social media scheduling tool, social media sharing, social media tool, social network auto publish, social network icon, social network widget, socialmedia, timing, torial, torial auto post, tumblr, twitter, twitter auto post, xing, xing auto post, xing groups, xing gruppen, xing personal profiles, xing company profiles, xing business pages, xing pages, xing seiten,instagram business, auto post scheduler, repost, social media management, facebook fan page auto post, facebook profile auto post, social auto post, social autoposting, flickr, flickr auto posting, linkedin, linkedin auto posting, linkedin profile, facebook group, facebook gruppen, reddit, reddit auto posting, reddit auto post, social media calendar, editorial calendar, calendar plugin, Social Media Automatisierung, Social Media Management, Kalender, Planungs Kalender, Social Media Kalender, Content Marketing, Revive, Revive posts, Revive old posts, old posts, Reshare, Re-Share, automatically re-post, automatically reshare, auto repost, auto republish, recycle posts, bulk schedule, Google My Business, Google posts, imgur, vk, vkontakte, Vkontakte.ru, vk.com. Telegram, Telegram channels, Telegram groups, share multiple images, image gallery
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
+
Tested up to: 5.7
|
8 |
+
Stable tag: 6.7.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
18 |
|
19 |
_Compatible with WooCommerce, Gutenberg Editor, Hummingbird, Bitly, Rebrand.ly, Sniply, WP Automatic Plugin, Page Builder & RSS Importer._
|
20 |
|
21 |
+
* Version 6.7: Instagram Business Account, Post Templates
|
22 |
|
23 |
Download Blog2Social today to make your social media marketing for your WordPress site or blog easier than ever. Blog2Social is a freemium plugin, with a free comprehensive basic version and premium plans offering more advanced features. To ensure compliance with the high quality standards of the new networks’ API rules and community guidelines, some functions of the auto-poster are premium features and not part of the free version.
|
24 |
The Blog2Social free version offers you a wide range of features. ([See what’s included in the free version](https://wordpress.org/plugins/blog2social/#faq "Blog2Social Free Features")).
|
30 |
* **Google My Business** (Premium) - Post to your Business Listing on Google
|
31 |
* **LinkedIn** - Post to your profile (Free) or page (Premium)
|
32 |
* **XING** - Post to your profile (Free), page (Premium), and in groups (Premium)
|
33 |
+
* **Instagram** - Post to your Personal Instagram Account (Free) and to your Business Account (Smart)
|
34 |
* **Pinterest** - Post to all your different Pinboards (Free)
|
35 |
* **Imgur** - Post to your Imgur profile (Free)
|
36 |
* **Flickr** - Post to your Flickr profile (Free)
|
47 |
|
48 |
BLOG2SOCIAL FREE
|
49 |
|
50 |
+
* Share your posts and pages on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), Instagram Personal, Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo and Bloglovin at once.
|
51 |
* Customize your social media posts with unique personal comments, hashtags, handles, emojis, and select an image or animated GIF of your choice.
|
52 |
* You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
|
53 |
* Manage all users posts and pages and share them on your channels.
|
133 |
* Thanks to [Almaz](https://almazworks.com/ "Almaz") for translating this plugin into Russian
|
134 |
* Thanks to [Olivier](https://extraspeech.com/ "Olivier") for translating this plugin into French
|
135 |
* Thanks to [Daniel](https://bananklubben.se/ "Daniel Guldstrand") for translating this plugin into Swedish
|
136 |
+
* Thanks to [Olga](https://jascin.net "Olga Jascin"), [Francesco](https://ceotech.it "Francesco Palmieri") and [Stefano](https://stefanocassone.com "Stefano Cassone") for translating this plugin into Italian
|
137 |
|
138 |
== Installation ==
|
139 |
1. Go to the Admin Panel of your WordPress dashboard
|
166 |
= What can I do with the free version? =
|
167 |
|
168 |
There is quite a lot you can do with the free version of Blog2Social for your social media marketing:
|
169 |
+
* You can share your blog posts and pages as well as content from other sources on 13 different networks: Twitter, Facebook (profile and page), LinkedIn (profile), XING (profile), Instagram Personal, Pinterest, Reddit, Torial, Medium, Tumblr, Flickr, Diigo and Bloglovin at once.
|
170 |
* You can customize your social media posts with personal comments, hashtags, handles, emojis, and select an image of your choice. You can even edit the complete HTML markup for re-publishing your post on Tumblr, Torial, and Medium.
|
171 |
With the free version you can also:
|
172 |
* manage all users’ posts and pages and share them on your channels
|
221 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
222 |
|
223 |
== Changelog ==
|
224 |
+
= 6.7.0 =
|
225 |
+
Instagram Business Solution & Usability Optimization
|
226 |
= 6.6.4 =
|
227 |
Usability Optimization
|
228 |
= 6.6.3 =
|
319 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
320 |
|
321 |
== Upgrade Notice ==
|
322 |
+
= 6.7.0 =
|
323 |
+
Instagram Business Solution & Usability Optimization
|
324 |
= 6.6.4 =
|
325 |
Usability Optimization
|
326 |
= 6.6.3 =
|
views/b2s/html/footer.php
CHANGED
@@ -317,20 +317,6 @@
|
|
317 |
</div>
|
318 |
</div>
|
319 |
|
320 |
-
<div class="modal fade" id="b2sInfoUrlShortenerModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoUrlShortenerModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
321 |
-
<div class="modal-dialog">
|
322 |
-
<div class="modal-content">
|
323 |
-
<div class="modal-header">
|
324 |
-
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoUrlShortenerModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
325 |
-
<h4 class="modal-title"><?php esc_html_e('URL Shortening', 'blog2social') ?></h4>
|
326 |
-
</div>
|
327 |
-
<div class="modal-body">
|
328 |
-
<?php esc_html_e('You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your links and to track the performance of your links in your social media networks. Activate one of the URL-Shorteners you like to use and link it to your account. Your social media posts will then be shared with your links of Bit.ly, Rebrandly or Sniply and you can monitor the success of your posts in these accounts. Please note: Reddit, Pinterest and Medium do not allow Bit.ly shortlinks. Blog2Social will apply the regular URL for these networks. ', 'blog2social') ?>
|
329 |
-
<br>
|
330 |
-
</div>
|
331 |
-
</div>
|
332 |
-
</div>
|
333 |
-
</div>
|
334 |
<div class="modal fade" id="b2sInfoContentTwitterModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoContentTwitterModal" aria-hidden="true" data-backdrop="false">
|
335 |
<div class="modal-dialog">
|
336 |
<div class="modal-content">
|
317 |
</div>
|
318 |
</div>
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
<div class="modal fade" id="b2sInfoContentTwitterModal" tabindex="-1" role="dialog" aria-labelledby="b2sInfoContentTwitterModal" aria-hidden="true" data-backdrop="false">
|
321 |
<div class="modal-dialog">
|
322 |
<div class="modal-content">
|
views/b2s/html/header.php
CHANGED
@@ -94,7 +94,7 @@ if (!B2S_System::isblockedArea('B2S_USER_POLICY', B2S_PLUGIN_ADMIN)) {
|
|
94 |
|
95 |
<div class="panel panel-group b2s-meta-tags-yoast b2s-meta-tags-success" style="display:<?php echo $showYoast; ?>;">
|
96 |
<div class="panel-body">
|
97 |
-
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('You have Yoast SEO
|
98 |
</div>
|
99 |
</div>
|
100 |
|
94 |
|
95 |
<div class="panel panel-group b2s-meta-tags-yoast b2s-meta-tags-success" style="display:<?php echo $showYoast; ?>;">
|
96 |
<div class="panel-body">
|
97 |
+
<span class="glyphicon glyphicon-ok glyphicon-success"></span> <?php esc_html_e('You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure that you use only one plugin to set social meta tags so that the networks can show the link preview of your post correctly.', 'blog2social'); ?><br><?php echo sprintf(__('Get more information in the <a href="%s" target="_blank">social meta tag guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('open_graph_tags')) ?>
|
98 |
</div>
|
99 |
</div>
|
100 |
|
views/b2s/html/post.navbar.php
CHANGED
@@ -3,17 +3,18 @@ $getPage = $_GET['page'];
|
|
3 |
$isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
4 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Post/Tools.php');
|
5 |
$noticeCount = B2S_Post_Tools::countNewNotifications(B2S_PLUGIN_BLOG_USER_ID);
|
|
|
6 |
?>
|
7 |
<!--Navbar Start-->
|
8 |
<div class="col-md-12 pull-left b2s-post-menu del-padding-left">
|
9 |
-
<a class="btn btn-<?php echo ($getPage == 'blog2social-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-all" href="admin.php?page=blog2social-post"><?php esc_html_e('All
|
10 |
<?php if ($getPage != "blog2social-curation" && $getPage != "blog2social-curation-draft") { ?>
|
11 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-favorites') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-favorites" href="admin.php?page=blog2social-favorites"><?php esc_html_e('Favorites', 'blog2social') ?></a>
|
12 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-draft-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft-post" href="admin.php?page=blog2social-draft-post"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
13 |
<?php } else { ?>
|
14 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-curation-draft') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft" href="admin.php?page=blog2social-curation-draft"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
15 |
<?php } ?>
|
16 |
-
<a class="btn btn-<?php echo ($getPage == 'blog2social-approve') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-approve" href="admin.php?page=blog2social-approve"><?php esc_html_e('Instant Sharing', 'blog2social') ?></a>
|
17 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-sched') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-sched" href="admin.php?page=blog2social-sched"><?php esc_html_e('Scheduled Posts', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
18 |
<?php if ($getPage != "blog2social") { ?>
|
19 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-publish') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-publish" href="admin.php?page=blog2social-publish"><?php esc_html_e('Shared Posts', 'blog2social') ?></a>
|
3 |
$isPremiumInfo = (B2S_PLUGIN_USER_VERSION == 0) ? 'b2s-btn-disabled' : '';
|
4 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Post/Tools.php');
|
5 |
$noticeCount = B2S_Post_Tools::countNewNotifications(B2S_PLUGIN_BLOG_USER_ID);
|
6 |
+
$approveCount = B2S_Post_Tools::countReadyForApprove(B2S_PLUGIN_BLOG_USER_ID);
|
7 |
?>
|
8 |
<!--Navbar Start-->
|
9 |
<div class="col-md-12 pull-left b2s-post-menu del-padding-left">
|
10 |
+
<a class="btn btn-<?php echo ($getPage == 'blog2social-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-all" href="admin.php?page=blog2social-post"><?php esc_html_e('All Posts', 'blog2social') ?></a>
|
11 |
<?php if ($getPage != "blog2social-curation" && $getPage != "blog2social-curation-draft") { ?>
|
12 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-favorites') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-favorites" href="admin.php?page=blog2social-favorites"><?php esc_html_e('Favorites', 'blog2social') ?></a>
|
13 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-draft-post') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft-post" href="admin.php?page=blog2social-draft-post"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
14 |
<?php } else { ?>
|
15 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-curation-draft') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-draft" href="admin.php?page=blog2social-curation-draft"><?php esc_html_e('Drafts', 'blog2social') ?></a>
|
16 |
<?php } ?>
|
17 |
+
<a class="btn btn-<?php echo ($getPage == 'blog2social-approve') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-approve" href="admin.php?page=blog2social-approve"><?php esc_html_e('Instant Sharing', 'blog2social'); if($approveCount > 0) {echo ' <span class="b2s-notice-counter">' . $approveCount . '</span>';} ?></a>
|
18 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-sched') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-sched" href="admin.php?page=blog2social-sched"><?php esc_html_e('Scheduled Posts', 'blog2social') ?> <?php echo (!empty($isPremiumInfo) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '' ); ?> </a>
|
19 |
<?php if ($getPage != "blog2social") { ?>
|
20 |
<a class="btn btn-<?php echo ($getPage == 'blog2social-publish') ? 'primary' : 'link'; ?> b2s-post-btn b2s-post-publish" href="admin.php?page=blog2social-publish"><?php esc_html_e('Shared Posts', 'blog2social') ?></a>
|
views/b2s/html/sidebar.php
CHANGED
@@ -163,7 +163,7 @@ $customizeArea = B2S_System::customizeArea();
|
|
163 |
<span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span>
|
164 |
<?php esc_html_e("Rate it!", "blog2social"); ?>
|
165 |
</div>
|
166 |
-
<p><?php esc_html_e("If you like Blog2Social,
|
167 |
<a target="_blank" href="https://wordpress.org/support/plugin/blog2social/reviews/" class="btn btn-success btn-block"><?php esc_html_e("RATE BLOG2SOCIAL", "blog2social") ?></a>
|
168 |
</div>
|
169 |
</div>
|
163 |
<span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span><span class="glyphicon glyphicon-star glyphicon-success"></span>
|
164 |
<?php esc_html_e("Rate it!", "blog2social"); ?>
|
165 |
</div>
|
166 |
+
<p><?php esc_html_e("If you like Blog2Social, we would be greatly delighted, if you could leave us a 5-star rating. If there's something you need assistance with, you can ask all your questions in the Blog2Social support community where you will receive help from our committed support team. You can easily access the Blog2Social Support Community via the Help & Support section in the Blog2Social menu on your WP dashboard.", "blog2social"); ?></p>
|
167 |
<a target="_blank" href="https://wordpress.org/support/plugin/blog2social/reviews/" class="btn btn-success btn-block"><?php esc_html_e("RATE BLOG2SOCIAL", "blog2social") ?></a>
|
168 |
</div>
|
169 |
</div>
|
views/b2s/network.php
CHANGED
@@ -53,7 +53,7 @@ $networkData = $networkItem->getData();
|
|
53 |
</div>
|
54 |
</div>
|
55 |
<div class="row b2s-network-auth-area">
|
56 |
-
<?php echo $networkItem->getPortale($networkData['mandanten'], $networkData['auth'], $networkData['portale'], $networkData['auth_count']); ?>
|
57 |
</div>
|
58 |
<div class="row b2s-loading-area width-100" style="display: none">
|
59 |
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
@@ -652,6 +652,72 @@ $networkData = $networkItem->getData();
|
|
652 |
</div>
|
653 |
</div>
|
654 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
655 |
<input type="hidden" id="b2sUserLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
656 |
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
657 |
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>">
|
53 |
</div>
|
54 |
</div>
|
55 |
<div class="row b2s-network-auth-area">
|
56 |
+
<?php echo $networkItem->getPortale($networkData['mandanten'], $networkData['auth'], $networkData['portale'], $networkData['auth_count'], $networkData['addon_count']); ?>
|
57 |
</div>
|
58 |
<div class="row b2s-loading-area width-100" style="display: none">
|
59 |
<div class="b2s-loader-impulse b2s-loader-impulse-md"></div>
|
652 |
</div>
|
653 |
</div>
|
654 |
|
655 |
+
<div class="modal fade" id="b2sNetworkAddInstagramBusinessInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sNetworkAddInstagramBusinessInfoModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
656 |
+
<div class="modal-dialog">
|
657 |
+
<div class="modal-content">
|
658 |
+
<div class="modal-header">
|
659 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sNetworkAddInstagramBusinessInfoModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
660 |
+
<h4 class="modal-title"><?php esc_html_e('Connect Instagram Business Account', 'blog2social') ?></h4>
|
661 |
+
</div>
|
662 |
+
<div class="modal-body">
|
663 |
+
<div class="row">
|
664 |
+
<div class="col-md-12">
|
665 |
+
<?php echo sprintf(__('Please note: Your Instagram Business Account will be connected with Blog2Social via Facebook. Therefore, please make sure that your Instagram Business Account is linked to a Facebook page and enter the corresponding login data. You will find more information and detailed instructions in the <a href="%s" target="_blank">Instagram Business guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('instagram_business_auth_faq'))); ?>
|
666 |
+
<button class="btn btn-primary pull-right b2s-add-network-continue-btn"><?php esc_html_e('Continue', 'blog2social'); ?></button>
|
667 |
+
</div>
|
668 |
+
</div>
|
669 |
+
</div>
|
670 |
+
</div>
|
671 |
+
</div>
|
672 |
+
</div>
|
673 |
+
|
674 |
+
<div class="modal fade" id="b2sNetworkAddonInfo" tabindex="-1" role="dialog" aria-labelledby="b2sNetworkAddonInfo" aria-hidden="true" data-backdrop="false" style="display:none;">
|
675 |
+
<div class="modal-dialog">
|
676 |
+
<div class="modal-content">
|
677 |
+
<div class="modal-header">
|
678 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sNetworkAddonInfo" aria-label="Close"><span aria-hidden="true">×</span></button>
|
679 |
+
<h4 class="modal-title"><?php esc_html_e('Network connections', 'blog2social') ?></h4>
|
680 |
+
</div>
|
681 |
+
<div class="modal-body">
|
682 |
+
<div class="row">
|
683 |
+
<div class="col-md-12">
|
684 |
+
<?php esc_html_e('With Blog2Social you can connect up to 16 social media networks and share your posts on your favourite social media accounts automatically.', 'blog2social'); ?>
|
685 |
+
<br>
|
686 |
+
<br>
|
687 |
+
<?php esc_html_e('Each license has a specified number of accounts you can connect per social media network.', 'blog2social'); ?>
|
688 |
+
<br>
|
689 |
+
<br>
|
690 |
+
<?php esc_html_e('Smart: 3 (per user)', 'blog2social'); ?>
|
691 |
+
<br>
|
692 |
+
<?php esc_html_e('Pro: 5 (per user)', 'blog2social'); ?>
|
693 |
+
<br>
|
694 |
+
<?php esc_html_e('Business: 15 (per user)', 'blog2social'); ?>
|
695 |
+
<br>
|
696 |
+
<br>
|
697 |
+
<?php esc_html_e('For example: With the Pro license, each user can connect 5 Facebook accounts + 5 Twitter accounts + 5 Instagram accounts + ...', 'blog2social'); ?>
|
698 |
+
<br>
|
699 |
+
<br>
|
700 |
+
<?php esc_html_e('You can also purchase additional groups and sites as add-on to your active Blog2Social Premium Pro or Premium Business license:', 'blog2social'); ?>
|
701 |
+
<br>
|
702 |
+
<br>
|
703 |
+
<?php esc_html_e('Facebook groups', 'blog2social'); ?>
|
704 |
+
<br>
|
705 |
+
<?php esc_html_e('Facebook pages', 'blog2social'); ?>
|
706 |
+
<br>
|
707 |
+
<?php esc_html_e('LinkedIn pages', 'blog2social'); ?>
|
708 |
+
<br>
|
709 |
+
<br>
|
710 |
+
<?php esc_html_e('For example: If you purchase 5 Facebook groups, these additional 5 Facebook groups are available for all users. So, when 5 users are activated for the Pro or Business license, each user can connect 1 additional Facebook group, or one user can connect 5 additional Facebook groups.', 'blog2social'); ?>
|
711 |
+
<br>
|
712 |
+
<br>
|
713 |
+
<?php echo sprintf(__('<a href="%s" target="_blank">Get more information on how to add more sites or groups.</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('network_addon_faq'))); ?>
|
714 |
+
</div>
|
715 |
+
</div>
|
716 |
+
</div>
|
717 |
+
</div>
|
718 |
+
</div>
|
719 |
+
</div>
|
720 |
+
|
721 |
<input type="hidden" id="b2sUserLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
722 |
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
723 |
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>">
|
views/b2s/ship.php
CHANGED
@@ -687,6 +687,25 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
687 |
</div>
|
688 |
</div>
|
689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
690 |
<div class="modal fade" id="b2sNetworkAddPageInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sNetworkAddPageInfoModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
691 |
<div class="modal-dialog">
|
692 |
<div class="modal-content">
|
687 |
</div>
|
688 |
</div>
|
689 |
|
690 |
+
<div class="modal fade" id="b2sNetworkAddInstagramBusinessInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sNetworkAddInstagramBusinessInfoModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
691 |
+
<div class="modal-dialog">
|
692 |
+
<div class="modal-content">
|
693 |
+
<div class="modal-header">
|
694 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sNetworkAddInstagramBusinessInfoModal" aria-label="Close"><span aria-hidden="true">×</span></button>
|
695 |
+
<h4 class="modal-title"><?php esc_html_e('Connect Instagram Business Account', 'blog2social') ?></h4>
|
696 |
+
</div>
|
697 |
+
<div class="modal-body">
|
698 |
+
<div class="row">
|
699 |
+
<div class="col-md-12">
|
700 |
+
<?php echo sprintf(__('Please note: Your Instagram Business Account will be connected with Blog2Social via Facebook. Therefore, please make sure that your Instagram Business Account is linked to a Facebook page and enter the corresponding login data. You will find more information and detailed instructions in the <a href="%s" target="_blank">Instagram Business guide</a>.', 'blog2social'), esc_url(B2S_Tools::getSupportLink('instagram_business_auth_faq'))); ?>
|
701 |
+
<button class="btn btn-primary pull-right b2s-add-network-continue-btn"><?php esc_html_e('Continue', 'blog2social'); ?></button>
|
702 |
+
</div>
|
703 |
+
</div>
|
704 |
+
</div>
|
705 |
+
</div>
|
706 |
+
</div>
|
707 |
+
</div>
|
708 |
+
|
709 |
<div class="modal fade" id="b2sNetworkAddPageInfoModal" tabindex="-1" role="dialog" aria-labelledby="b2sNetworkAddPageInfoModal" aria-hidden="true" data-backdrop="false" style="display:none;">
|
710 |
<div class="modal-dialog">
|
711 |
<div class="modal-content">
|