Version Description
Improvments and Bugfixes Posting Template
Download this release
Release Info
Developer | Blog2Social |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 5.6.1 |
Comparing to | |
See all releases |
Code changes from version 5.6.0 to 5.6.1
- assets/css/b2s/network.css +8 -0
- assets/js/b2s/network.js +14 -0
- assets/js/b2s/ship.js +6 -0
- blog2social.php +2 -2
- includes/Ajax/Get.php +7 -2
- includes/Ajax/Post.php +3 -0
- includes/B2S/AutoPost.php +28 -18
- includes/B2S/Network/Item.php +28 -4
- includes/B2S/Ship/Item.php +20 -9
- includes/Loader.php +22 -20
- includes/Util.php +6 -1
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +168 -155
- languages/blog2social.pot +160 -150
- readme.txt +5 -1
- views/b2s/network.php +4 -2
assets/css/b2s/network.css
CHANGED
@@ -540,4 +540,12 @@ ul.b2s-network-item-auth-list li:last-child{
|
|
540 |
height: 20px;
|
541 |
width: auto !important;
|
542 |
margin-right: 5px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
543 |
}
|
540 |
height: 20px;
|
541 |
width: auto !important;
|
542 |
margin-right: 5px;
|
543 |
+
}
|
544 |
+
|
545 |
+
.b2s-edit-template-character-limit-label{
|
546 |
+
padding-top: 4px;
|
547 |
+
font-weight: 600;
|
548 |
+
}
|
549 |
+
.b2s-info-character-limit-text{
|
550 |
+
margin: 0 0 10px;
|
551 |
}
|
assets/js/b2s/network.js
CHANGED
@@ -1048,6 +1048,19 @@ jQuery(window).on("load", function () {
|
|
1048 |
event.preventDefault();
|
1049 |
return false;
|
1050 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1051 |
|
1052 |
jQuery(document).on('click', '.b2s-edit-template-load-default', function () {
|
1053 |
jQuery('.b2s-edit-template-content').hide();
|
@@ -1119,6 +1132,7 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
|
1119 |
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1120 |
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1121 |
template_data[networkType]['range_max'] = jQuery('.b2s-edit-template-range[data-network-type="' + networkType + '"]').val();
|
|
|
1122 |
});
|
1123 |
|
1124 |
jQuery.ajax({
|
1048 |
event.preventDefault();
|
1049 |
return false;
|
1050 |
});
|
1051 |
+
|
1052 |
+
jQuery(document).on('keyup', '.b2s-edit-template-excerpt-range', function () {
|
1053 |
+
if (isNaN(parseInt(jQuery(this).val())) || parseInt(jQuery(this).val()) < 1) {
|
1054 |
+
jQuery(this).val("1");
|
1055 |
+
}
|
1056 |
+
if (jQuery(this).attr('max') > 0 && parseInt(jQuery(this).val()) > jQuery(this).attr('max')) {
|
1057 |
+
jQuery(this).val(jQuery(this).attr('max'));
|
1058 |
+
}
|
1059 |
+
event.preventDefault();
|
1060 |
+
return false;
|
1061 |
+
});
|
1062 |
+
|
1063 |
+
|
1064 |
|
1065 |
jQuery(document).on('click', '.b2s-edit-template-load-default', function () {
|
1066 |
jQuery('.b2s-edit-template-content').hide();
|
1132 |
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1133 |
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1134 |
template_data[networkType]['range_max'] = jQuery('.b2s-edit-template-range[data-network-type="' + networkType + '"]').val();
|
1135 |
+
template_data[networkType]['excerpt_range_max'] = jQuery('.b2s-edit-template-excerpt-range[data-network-type="' + networkType + '"]').val();
|
1136 |
});
|
1137 |
|
1138 |
jQuery.ajax({
|
assets/js/b2s/ship.js
CHANGED
@@ -2868,6 +2868,12 @@ function networkLimitAll(networkAuthId, networkId, limit) {
|
|
2868 |
limit = limit - 24;
|
2869 |
}
|
2870 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2871 |
if (textLength >= limit) {
|
2872 |
newText = text.substring(0, limit);
|
2873 |
var pos = getCaretPos(this);
|
2868 |
limit = limit - 24;
|
2869 |
}
|
2870 |
}
|
2871 |
+
if (networkId == "3") { //linkedin
|
2872 |
+
if (url.length != "0") {
|
2873 |
+
limit = limit - url.length;
|
2874 |
+
}
|
2875 |
+
}
|
2876 |
+
|
2877 |
if (textLength >= limit) {
|
2878 |
newText = text.substring(0, limit);
|
2879 |
var pos = getCaretPos(this);
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 5.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: 5.6.1
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '561');
|
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
@@ -84,7 +84,7 @@ class Ajax_Get {
|
|
84 |
$b2sSortPostSchedDate = isset($_POST['b2sSortPostSchedDate']) ? (in_array(trim($_POST['b2sSortPostSchedDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostSchedDate']) : "") : "";
|
85 |
$b2sSortPostPublishDate = isset($_POST['b2sSortPostPublishDate']) ? (in_array(trim($_POST['b2sSortPostPublishDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostPublishDate']) : "") : "";
|
86 |
$b2sSortPostStatus = isset($_POST['b2sSortPostStatus']) ? trim($_POST['b2sSortPostStatus']) : "";
|
87 |
-
$b2sSortPostShareStatus =
|
88 |
$b2sShowByDate = isset($_POST['b2sShowByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['b2sShowByDate'])) ? trim($_POST['b2sShowByDate']) : "") : ""; //YYYY-mm-dd
|
89 |
$b2sShowByNetwork = isset($_POST['b2sShowByNetwork']) ? (int) $_POST['b2sShowByNetwork'] : 0;
|
90 |
$b2sUserAuthId = isset($_POST['b2sUserAuthId']) ? (int) $_POST['b2sUserAuthId'] : 0;
|
@@ -238,8 +238,8 @@ class Ajax_Get {
|
|
238 |
}
|
239 |
$data = array('action' => 'getTeamAssignUserAuth', 'token' => B2S_PLUGIN_TOKEN, 'networkAuthId' => (int) $_POST['networkAuthId'], 'blogUser' => $blogUserToken);
|
240 |
$networkAuthAssignment = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, $data, 30), true);
|
|
|
241 |
if ($networkAuthAssignment['result'] == true) {
|
242 |
-
$count = $networkData->getCountSchedPostsByUserAuth((int) $_POST['networkAuthId']);
|
243 |
$assignCount = 0;
|
244 |
$assignList = array();
|
245 |
foreach ($networkAuthAssignment['assignList'] as $k => $v) {
|
@@ -251,6 +251,11 @@ class Ajax_Get {
|
|
251 |
}
|
252 |
echo json_encode(array('result' => true, 'count' => ($count !== false) ? $count : 0, 'assignCount' => $assignCount, 'assignListCount' => count($networkAuthAssignment['assignList']), 'assignList' => serialize($assignList)));
|
253 |
wp_die();
|
|
|
|
|
|
|
|
|
|
|
254 |
}
|
255 |
}
|
256 |
echo json_encode(array('result' => false, 'count' => 0));
|
84 |
$b2sSortPostSchedDate = isset($_POST['b2sSortPostSchedDate']) ? (in_array(trim($_POST['b2sSortPostSchedDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostSchedDate']) : "") : "";
|
85 |
$b2sSortPostPublishDate = isset($_POST['b2sSortPostPublishDate']) ? (in_array(trim($_POST['b2sSortPostPublishDate']), array('desc', 'asc')) ? trim($_POST['b2sSortPostPublishDate']) : "") : "";
|
86 |
$b2sSortPostStatus = isset($_POST['b2sSortPostStatus']) ? trim($_POST['b2sSortPostStatus']) : "";
|
87 |
+
$b2sSortPostShareStatus = isset($_POST['b2sSortPostShareStatus']) ? trim($_POST['b2sSortPostShareStatus']) : "";
|
88 |
$b2sShowByDate = isset($_POST['b2sShowByDate']) ? (preg_match("#^[0-9\-.\]]+$#", trim($_POST['b2sShowByDate'])) ? trim($_POST['b2sShowByDate']) : "") : ""; //YYYY-mm-dd
|
89 |
$b2sShowByNetwork = isset($_POST['b2sShowByNetwork']) ? (int) $_POST['b2sShowByNetwork'] : 0;
|
90 |
$b2sUserAuthId = isset($_POST['b2sUserAuthId']) ? (int) $_POST['b2sUserAuthId'] : 0;
|
238 |
}
|
239 |
$data = array('action' => 'getTeamAssignUserAuth', 'token' => B2S_PLUGIN_TOKEN, 'networkAuthId' => (int) $_POST['networkAuthId'], 'blogUser' => $blogUserToken);
|
240 |
$networkAuthAssignment = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, $data, 30), true);
|
241 |
+
$count = $networkData->getCountSchedPostsByUserAuth((int) $_POST['networkAuthId']);
|
242 |
if ($networkAuthAssignment['result'] == true) {
|
|
|
243 |
$assignCount = 0;
|
244 |
$assignList = array();
|
245 |
foreach ($networkAuthAssignment['assignList'] as $k => $v) {
|
251 |
}
|
252 |
echo json_encode(array('result' => true, 'count' => ($count !== false) ? $count : 0, 'assignCount' => $assignCount, 'assignListCount' => count($networkAuthAssignment['assignList']), 'assignList' => serialize($assignList)));
|
253 |
wp_die();
|
254 |
+
} else {
|
255 |
+
if ($count !== false) {
|
256 |
+
echo json_encode(array('result' => true, 'count' => $count));
|
257 |
+
wp_die();
|
258 |
+
}
|
259 |
}
|
260 |
}
|
261 |
echo json_encode(array('result' => false, 'count' => 0));
|
includes/Ajax/Post.php
CHANGED
@@ -1389,6 +1389,7 @@ class Ajax_Post {
|
|
1389 |
foreach ($_POST['template_data'] as $type => $data){
|
1390 |
$limit = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['limit'];
|
1391 |
$range_max = ((int) $limit != 0 && (int) $data['range_max'] > (int) $limit) ? (int) $limit : (int) $data['range_max'];
|
|
|
1392 |
$new_template[$type] = array(
|
1393 |
'format' => (isset($data['format']) && $data['format'] == 1) ? 1 : 0,
|
1394 |
'content' => (isset($data['content']) && !empty($data['content'])) ? $data['content'] : unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['content'],
|
@@ -1396,6 +1397,8 @@ class Ajax_Post {
|
|
1396 |
'active' => 0,
|
1397 |
'range_min' => (($range_max >= (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_max']) ? (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_min'] : ($range_max / 2)),
|
1398 |
'range_max' => $range_max,
|
|
|
|
|
1399 |
'limit' => $limit
|
1400 |
)
|
1401 |
);
|
1389 |
foreach ($_POST['template_data'] as $type => $data){
|
1390 |
$limit = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['limit'];
|
1391 |
$range_max = ((int) $limit != 0 && (int) $data['range_max'] > (int) $limit) ? (int) $limit : (int) $data['range_max'];
|
1392 |
+
$excerpt_range_max = ((int) $limit != 0 && (int) $data['excerpt_range_max'] > (int) $limit) ? (int) $limit : (int) $data['excerpt_range_max'];
|
1393 |
$new_template[$type] = array(
|
1394 |
'format' => (isset($data['format']) && $data['format'] == 1) ? 1 : 0,
|
1395 |
'content' => (isset($data['content']) && !empty($data['content'])) ? $data['content'] : unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['content'],
|
1397 |
'active' => 0,
|
1398 |
'range_min' => (($range_max >= (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_max']) ? (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['range_min'] : ($range_max / 2)),
|
1399 |
'range_max' => $range_max,
|
1400 |
+
'excerpt_range_min' => (($excerpt_range_max >= (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['excerpt_range_max']) ? (int) unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT)[$_POST['networkId']][$type]['short_text']['excerpt_range_min'] : ($range_max / 2)),
|
1401 |
+
'excerpt_range_max' => $excerpt_range_max,
|
1402 |
'limit' => $limit
|
1403 |
)
|
1404 |
);
|
includes/B2S/AutoPost.php
CHANGED
@@ -6,6 +6,7 @@ class B2S_AutoPost {
|
|
6 |
private $contentHtml;
|
7 |
private $postId;
|
8 |
private $content;
|
|
|
9 |
private $url;
|
10 |
private $imageUrl;
|
11 |
private $keywords;
|
@@ -16,31 +17,42 @@ class B2S_AutoPost {
|
|
16 |
private $optionPostFormat;
|
17 |
private $allowHashTag;
|
18 |
|
19 |
-
function __construct($postId = 0, $blogPostData = array(), $current_user_date = '0000-00-00 00:00:00', $myTimeSettings = false, $title = '', $content = '', $url = '', $imageUrl = '', $keywords = '', $b2sPostLang = 'en', $optionPostFormat = array(), $allowHashTag = true) {
|
20 |
$this->postId = $postId;
|
21 |
$this->blogPostData = $blogPostData;
|
22 |
$this->current_user_date = $current_user_date;
|
23 |
$this->myTimeSettings = $myTimeSettings;
|
24 |
$this->title = $title;
|
25 |
$this->content = B2S_Util::prepareContent($postId, $content, $url, false, true, $b2sPostLang);
|
|
|
26 |
$this->contentHtml = B2S_Util::prepareContent($postId, $content, $url, '<p><h1><h2><br><i><b><a><img>', true, $b2sPostLang);
|
27 |
$this->url = $url;
|
28 |
$this->imageUrl = $imageUrl;
|
29 |
$this->keywords = $keywords;
|
30 |
$this->optionPostFormat = $optionPostFormat;
|
31 |
$this->allowHashTag = $allowHashTag;
|
32 |
-
$this->setPreFillText = array(0 => array(
|
33 |
-
$this->setPreFillTextLimit = array(0 => array(
|
34 |
}
|
35 |
|
36 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
37 |
if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
|
38 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
39 |
|
40 |
-
if(B2S_PLUGIN_USER_VERSION < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])){
|
41 |
$this->optionPostFormat = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
42 |
}
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
//PostFormat
|
45 |
if (in_array($networkId, array(1, 2, 3, 12))) {
|
46 |
//Get: client settings
|
@@ -53,33 +65,31 @@ class B2S_AutoPost {
|
|
53 |
}
|
54 |
}
|
55 |
//Special
|
56 |
-
if(in_array($networkId, array(1, 2, 3, 12))){
|
57 |
if ($networkId == 12 && $this->imageUrl == false) {
|
58 |
return false;
|
59 |
}
|
60 |
-
|
61 |
$postData['content'] = $this->optionPostFormat[$networkId][$networkType]['content'];
|
62 |
-
|
63 |
-
$
|
|
|
64 |
|
65 |
$title = strip_tags($this->title);
|
66 |
-
$postData['content'] = preg_replace("/\{TITLE\}/", $title, $postData['content']);
|
67 |
|
68 |
-
$excerpt = (isset($this->
|
69 |
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
70 |
|
71 |
-
if(strpos($postData['content'], "{KEYWORDS") !== false){
|
72 |
$hashtags = $this->getHashTagsString("");
|
73 |
-
$postData['content'] = preg_replace("/\{KEYWORDS\}/", $hashtags, $postData['content']);
|
74 |
-
} else if($this->allowHashTag === false || $this->allowHashTag == 1) {
|
75 |
$add = ($networkId != 2) ? "\n\n" : "";
|
76 |
$hashtags = $this->getHashTagsString($add);
|
77 |
-
$postData['content'] .= " "
|
78 |
}
|
79 |
-
|
80 |
-
$postData['content'] = B2S_Util::getExcerpt($postData['content'], (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['range_min'], (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['range_max']);
|
81 |
}
|
82 |
-
|
83 |
if ($networkId == 4) {
|
84 |
$postData['custom_title'] = strip_tags($this->title);
|
85 |
$postData['content'] = $this->contentHtml;
|
6 |
private $contentHtml;
|
7 |
private $postId;
|
8 |
private $content;
|
9 |
+
private $excerpt;
|
10 |
private $url;
|
11 |
private $imageUrl;
|
12 |
private $keywords;
|
17 |
private $optionPostFormat;
|
18 |
private $allowHashTag;
|
19 |
|
20 |
+
function __construct($postId = 0, $blogPostData = array(), $current_user_date = '0000-00-00 00:00:00', $myTimeSettings = false, $title = '', $content = '', $excerpt = '', $url = '', $imageUrl = '', $keywords = '', $b2sPostLang = 'en', $optionPostFormat = array(), $allowHashTag = true) {
|
21 |
$this->postId = $postId;
|
22 |
$this->blogPostData = $blogPostData;
|
23 |
$this->current_user_date = $current_user_date;
|
24 |
$this->myTimeSettings = $myTimeSettings;
|
25 |
$this->title = $title;
|
26 |
$this->content = B2S_Util::prepareContent($postId, $content, $url, false, true, $b2sPostLang);
|
27 |
+
$this->excerpt = B2S_Util::prepareContent($postId, $excerpt, $url, false, true, $b2sPostLang);
|
28 |
$this->contentHtml = B2S_Util::prepareContent($postId, $content, $url, '<p><h1><h2><br><i><b><a><img>', true, $b2sPostLang);
|
29 |
$this->url = $url;
|
30 |
$this->imageUrl = $imageUrl;
|
31 |
$this->keywords = $keywords;
|
32 |
$this->optionPostFormat = $optionPostFormat;
|
33 |
$this->allowHashTag = $allowHashTag;
|
34 |
+
$this->setPreFillText = array(0 => array(6 => 300, 8 => 239, 9 => 200, 10 => 442, 16 => 250, 17 => 442, 18 => 800, 19 => 239), 1 => array(8 => 1200, 10 => 442, 17 => 442, 19 => 239), 2 => array(8 => 239, 10 => 442, 17 => 442, 19 => 239), 20 => 300);
|
35 |
+
$this->setPreFillTextLimit = array(0 => array(6 => 400, 8 => 400, 9 => 200, 10 => 500, 18 => 1000, 19 => 400, 20 => 400), 1 => array(8 => 1200, 10 => 500, 19 => 400), 2 => array(8 => 400, 10 => 500, 19 => 9000));
|
36 |
}
|
37 |
|
38 |
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
39 |
if ((int) $networkId > 0 && (int) $networkAuthId > 0) {
|
40 |
$postData = array('content' => '', 'custom_title' => '', 'tags' => array(), 'network_auth_id' => (int) $networkAuthId);
|
41 |
|
42 |
+
if (B2S_PLUGIN_USER_VERSION < 1 || $this->optionPostFormat == false || !isset($this->optionPostFormat[$networkId][$networkType])) {
|
43 |
$this->optionPostFormat = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
44 |
}
|
45 |
+
|
46 |
+
//V5.6.1
|
47 |
+
if (!isset($this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
48 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
49 |
+
$this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
50 |
+
}
|
51 |
+
if (!isset($this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
52 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
53 |
+
$this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
54 |
+
}
|
55 |
+
|
56 |
//PostFormat
|
57 |
if (in_array($networkId, array(1, 2, 3, 12))) {
|
58 |
//Get: client settings
|
65 |
}
|
66 |
}
|
67 |
//Special
|
68 |
+
if (in_array($networkId, array(1, 2, 3, 12))) {
|
69 |
if ($networkId == 12 && $this->imageUrl == false) {
|
70 |
return false;
|
71 |
}
|
|
|
72 |
$postData['content'] = $this->optionPostFormat[$networkId][$networkType]['content'];
|
73 |
+
|
74 |
+
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['range_min'], (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['range_max']),"\\$");
|
75 |
+
$postData['content'] = preg_replace("/\{CONTENT\}/", $preContent, $postData['content']);
|
76 |
|
77 |
$title = strip_tags($this->title);
|
78 |
+
$postData['content'] = preg_replace("/\{TITLE\}/", addcslashes($title,"\\$"), $postData['content']);
|
79 |
|
80 |
+
$excerpt = (isset($this->excerpt) && !empty($this->excerpt)) ? addcslashes(B2S_Util::getExcerpt($this->excerpt, (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'], (int) $this->optionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']),"\\$") : '';
|
81 |
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
82 |
|
83 |
+
if (strpos($postData['content'], "{KEYWORDS}") !== false) {
|
84 |
$hashtags = $this->getHashTagsString("");
|
85 |
+
$postData['content'] = preg_replace("/\{KEYWORDS\}/", addcslashes($hashtags,"\\$"), $postData['content']);
|
86 |
+
} else if ($this->allowHashTag === false || $this->allowHashTag == 1) {
|
87 |
$add = ($networkId != 2) ? "\n\n" : "";
|
88 |
$hashtags = $this->getHashTagsString($add);
|
89 |
+
$postData['content'] .= " " . $hashtags;
|
90 |
}
|
|
|
|
|
91 |
}
|
92 |
+
|
93 |
if ($networkId == 4) {
|
94 |
$postData['custom_title'] = strip_tags($this->title);
|
95 |
$postData['content'] = $this->contentHtml;
|
includes/B2S/Network/Item.php
CHANGED
@@ -563,6 +563,15 @@ class B2S_Network_Item {
|
|
563 |
}
|
564 |
|
565 |
public function getEditTemplateFormContent($networkId, $networkType, $schema) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
566 |
$content = '<div class="row">';
|
567 |
$content .= '<div class="col-md-12 media-heading">';
|
568 |
$content .= '<span class="b2s-edit-template-section-headline">' . __('Format', 'blog2social') . '</span> <a href="#" data-toggle="modal" data-network-id="' . $networkId . '" data-target="#b2sInfoFormat" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a>';
|
@@ -604,19 +613,34 @@ class B2S_Network_Item {
|
|
604 |
$content .= '<div class="row">';
|
605 |
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
606 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . __('The link will be added automatically at the end of the post.', 'blog2social');
|
|
|
|
|
|
|
607 |
$content .= '</div>';
|
608 |
$content .= '</div>';
|
609 |
$content .= '<br>';
|
610 |
$content .= '<div class="row">';
|
611 |
$content .= '<div class="col-md-12 media-heading">';
|
612 |
-
$content .= '<span class="b2s-edit-template-section-headline">' . __('Character
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
$content .= '</div>';
|
614 |
$content .= '</div>';
|
615 |
$content .= '<div class="row">';
|
616 |
$content .= '<div class="col-md-12">';
|
617 |
-
$
|
618 |
-
$limit =
|
619 |
-
$content .= '
|
|
|
|
|
|
|
|
|
|
|
620 |
$content .= '</div>';
|
621 |
$content .= '</div>';
|
622 |
$content .= '<hr>';
|
563 |
}
|
564 |
|
565 |
public function getEditTemplateFormContent($networkId, $networkType, $schema) {
|
566 |
+
$defaultTemplate = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
567 |
+
$min = $defaultTemplate[$networkId][$networkType]['short_text']['range_min'];
|
568 |
+
$limit = $defaultTemplate[$networkId][$networkType]['short_text']['limit'];
|
569 |
+
|
570 |
+
//V5.6.1
|
571 |
+
if (!isset($schema[$networkType]['short_text']['excerpt_range_max'])) {
|
572 |
+
$schema[$networkType]['short_text']['excerpt_range_max'] = $defaultTemplate[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
573 |
+
}
|
574 |
+
|
575 |
$content = '<div class="row">';
|
576 |
$content .= '<div class="col-md-12 media-heading">';
|
577 |
$content .= '<span class="b2s-edit-template-section-headline">' . __('Format', 'blog2social') . '</span> <a href="#" data-toggle="modal" data-network-id="' . $networkId . '" data-target="#b2sInfoFormat" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a>';
|
613 |
$content .= '<div class="row">';
|
614 |
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
615 |
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . __('The link will be added automatically at the end of the post.', 'blog2social');
|
616 |
+
if ((int) $limit != 0) {
|
617 |
+
$content .= '<br><i class="glyphicon glyphicon-info-sign"></i> ' . __('Network limit', 'blog2social') . ': ' . $limit . ' ' . __('characters', 'blog2social');
|
618 |
+
}
|
619 |
$content .= '</div>';
|
620 |
$content .= '</div>';
|
621 |
$content .= '<br>';
|
622 |
$content .= '<div class="row">';
|
623 |
$content .= '<div class="col-md-12 media-heading">';
|
624 |
+
$content .= '<span class="b2s-edit-template-section-headline">' . __('Character limit', 'blog2social') . ' (CONTENT, EXCERPT)</span> <a href="#" data-toggle="modal" data-target="#b2sInfoCharacterLimit" class="b2s-info-btn del-padding-left">' . __('Info', 'Blog2Social') . '</a>';
|
625 |
+
$content .= '</div>';
|
626 |
+
$content .= '</div>';
|
627 |
+
$content .= '<div class="row">';
|
628 |
+
$content .= '<div class="col-md-12">';
|
629 |
+
$content .= '<div class="form-group">';
|
630 |
+
$content .= '<label class="col-sm-2 control-label b2s-edit-template-character-limit-label">{CONTENT}</label> <input type="number" class="b2s-edit-template-range" data-network-type="' . $networkType . '" value="' . $schema[$networkType]['short_text']['range_max'] . '" min="1" max="' . (($schema[$networkType]['short_text']['limit']) ? $schema[$networkType]['short_text']['limit'] : '') . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>';
|
631 |
+
$content .= '</div>';
|
632 |
$content .= '</div>';
|
633 |
$content .= '</div>';
|
634 |
$content .= '<div class="row">';
|
635 |
$content .= '<div class="col-md-12">';
|
636 |
+
$content .= '<div class="form-group">';
|
637 |
+
$content .= '<label class="col-sm-2 control-label b2s-edit-template-character-limit-label">{EXCERPT}</label> <input type="number" class="b2s-edit-template-excerpt-range" data-network-type="' . $networkType . '" value="' . $schema[$networkType]['short_text']['excerpt_range_max'] . '" min="1" max="' . (($schema[$networkType]['short_text']['limit']) ? $schema[$networkType]['short_text']['limit'] : '') . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>';
|
638 |
+
$content .= '</div>';
|
639 |
+
$content .= '</div>';
|
640 |
+
$content .= '</div>';
|
641 |
+
$content .= '<div class="row">';
|
642 |
+
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
643 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . __('recommended length', 'blog2social') . ': ' . $min . ' ' . __('characters', 'blog2social') . (((int) $limit != 0) ? '; ' . __('Network limit', 'blog2social') . ': ' . $limit . ' ' . __('characters', 'blog2social') : '');
|
644 |
$content .= '</div>';
|
645 |
$content .= '</div>';
|
646 |
$content .= '<hr>';
|
includes/B2S/Ship/Item.php
CHANGED
@@ -176,7 +176,7 @@ class B2S_Ship_Item {
|
|
176 |
|
177 |
$countCharacter = 0;
|
178 |
if ($limit !== false) {
|
179 |
-
$infoCharacterCount = ($data->networkId != 2) ? ' (' . __('Text only', 'blog2social') . ')' : '';
|
180 |
$textareaLimitInfo .= '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . $data->networkAuthId . '">' . (int) $countCharacter . '</span>/' . $limitValue . ' ' . __('characters', 'blog2social') . $infoCharacterCount . '</span>';
|
181 |
$textareaOnKeyUp = 'onkeyup="networkLimitAll(\'' . $data->networkAuthId . '\',\'' . $data->networkId . '\',\'' . $limitValue . '\');"';
|
182 |
} else {
|
@@ -970,41 +970,52 @@ class B2S_Ship_Item {
|
|
970 |
$post_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
971 |
}
|
972 |
$post_template = $post_template[$data->networkId][$data->networkType];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
$allowUserHashTag = $options->_getOption('user_allow_hashtag');
|
974 |
|
975 |
$message = $post_template['content'];
|
976 |
|
977 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
978 |
-
$preContent = B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang);
|
979 |
-
$message = preg_replace("/\{CONTENT\}/", $preContent, $message);
|
980 |
} else {
|
981 |
$message = preg_replace("/\{CONTENT\}/", "", $message);
|
982 |
}
|
983 |
|
984 |
if (isset($this->postData->post_title) && !empty($this->postData->post_title)) {
|
985 |
$title = in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang);
|
986 |
-
$message = preg_replace("/\{TITLE\}/",
|
987 |
} else {
|
988 |
$message = preg_replace("/\{TITLE\}/", "", $message);
|
989 |
}
|
990 |
-
|
991 |
if (isset($this->postData->post_excerpt) && !empty($this->postData->post_excerpt)) {
|
992 |
-
$excerpt = B2S_Util::prepareContent($this->postId, $this->postData->post_excerpt, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang);
|
993 |
-
$message = preg_replace("/\{EXCERPT\}/",
|
994 |
} else {
|
995 |
$message = preg_replace("/\{EXCERPT\}/", "", $message);
|
996 |
}
|
997 |
|
998 |
if (strpos($message, "{KEYWORDS}") !== false) {
|
999 |
$hashtags = $this->getHashTagsString("");
|
1000 |
-
$message = preg_replace("/\{KEYWORDS\}/",
|
1001 |
} else if (in_array($data->networkId, $this->allowHashTags) && ($allowUserHashTag === false || $allowUserHashTag == 1)) {
|
1002 |
$add = ($data->networkId != 2) ? "\n\n" : "";
|
1003 |
$hashtags = $this->getHashTagsString($add);
|
1004 |
$message .= " " . $hashtags;
|
1005 |
}
|
1006 |
|
1007 |
-
return
|
1008 |
}
|
1009 |
|
1010 |
}
|
176 |
|
177 |
$countCharacter = 0;
|
178 |
if ($limit !== false) {
|
179 |
+
$infoCharacterCount = ($data->networkId != 2 && $data->networkId != 3) ? ' (' . __('Text only', 'blog2social') . ')' : '';
|
180 |
$textareaLimitInfo .= '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . $data->networkAuthId . '">' . (int) $countCharacter . '</span>/' . $limitValue . ' ' . __('characters', 'blog2social') . $infoCharacterCount . '</span>';
|
181 |
$textareaOnKeyUp = 'onkeyup="networkLimitAll(\'' . $data->networkAuthId . '\',\'' . $data->networkId . '\',\'' . $limitValue . '\');"';
|
182 |
} else {
|
970 |
$post_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
971 |
}
|
972 |
$post_template = $post_template[$data->networkId][$data->networkType];
|
973 |
+
|
974 |
+
//V5.6.1
|
975 |
+
if (!isset($post_template['short_text']['excerpt_range_max'])) {
|
976 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
977 |
+
$post_template['short_text']['excerpt_range_max'] = $defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_max'];
|
978 |
+
}
|
979 |
+
if (!isset($post_template['short_text']['excerpt_range_min'])) {
|
980 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
981 |
+
$post_template['short_text']['excerpt_range_min'] = $defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_min'];
|
982 |
+
}
|
983 |
+
|
984 |
$allowUserHashTag = $options->_getOption('user_allow_hashtag');
|
985 |
|
986 |
$message = $post_template['content'];
|
987 |
|
988 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
989 |
+
$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) $post_template['short_text']['range_min'], (int) $post_template['short_text']['range_max']);
|
990 |
+
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
991 |
} else {
|
992 |
$message = preg_replace("/\{CONTENT\}/", "", $message);
|
993 |
}
|
994 |
|
995 |
if (isset($this->postData->post_title) && !empty($this->postData->post_title)) {
|
996 |
$title = in_array($data->networkId, $this->allowNoEmoji) ? B2S_Util::remove4byte(B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang)) : B2S_Util::getTitleByLanguage($this->postData->post_title, $this->userLang);
|
997 |
+
$message = stripslashes(preg_replace("/\{TITLE\}/", addcslashes($title, "\\$"), $message));
|
998 |
} else {
|
999 |
$message = preg_replace("/\{TITLE\}/", "", $message);
|
1000 |
}
|
1001 |
+
|
1002 |
if (isset($this->postData->post_excerpt) && !empty($this->postData->post_excerpt)) {
|
1003 |
+
$excerpt = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_excerpt, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $post_template['short_text']['excerpt_range_min'], (int) $post_template['short_text']['excerpt_range_max']);
|
1004 |
+
$message = stripslashes(preg_replace("/\{EXCERPT\}/", addcslashes($excerpt, "\\$"), $message));
|
1005 |
} else {
|
1006 |
$message = preg_replace("/\{EXCERPT\}/", "", $message);
|
1007 |
}
|
1008 |
|
1009 |
if (strpos($message, "{KEYWORDS}") !== false) {
|
1010 |
$hashtags = $this->getHashTagsString("");
|
1011 |
+
$message = stripslashes(preg_replace("/\{KEYWORDS\}/", addcslashes($hashtags, "\\$"), $message));
|
1012 |
} else if (in_array($data->networkId, $this->allowHashTags) && ($allowUserHashTag === false || $allowUserHashTag == 1)) {
|
1013 |
$add = ($data->networkId != 2) ? "\n\n" : "";
|
1014 |
$hashtags = $this->getHashTagsString($add);
|
1015 |
$message .= " " . $hashtags;
|
1016 |
}
|
1017 |
|
1018 |
+
return $message;
|
1019 |
}
|
1020 |
|
1021 |
}
|
includes/Loader.php
CHANGED
@@ -45,15 +45,15 @@ class B2S_Loader {
|
|
45 |
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
46 |
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20)));
|
47 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
48 |
-
1 => array(
|
49 |
-
|
50 |
-
|
51 |
),
|
52 |
-
2 => array(
|
53 |
-
3 => array(
|
54 |
-
|
55 |
),
|
56 |
-
12 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 240, 'range_max' => 400, 'limit' => 2000), 'content' => '{CONTENT}', 'format' => 1))
|
57 |
)));
|
58 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.4.2');
|
59 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_PHPVERSION', '5.5.3');
|
@@ -256,6 +256,7 @@ class B2S_Loader {
|
|
256 |
$url = get_permalink($post->ID);
|
257 |
$title = isset($post->post_title) ? B2S_Util::getTitleByLanguage(strip_tags($post->post_title)) : '';
|
258 |
$content = (isset($post->post_content) && !empty($post->post_content)) ? trim($post->post_content) : '';
|
|
|
259 |
$delay = (isset($autoPostData['ship_state']) && (int) $autoPostData['ship_state'] = 0) ? 0 : (isset($autoPostData['ship_delay_time']) ? (int) $autoPostData['ship_delay_time'] : 0);
|
260 |
$current_user_datetime = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($current_utc_datetime, $userTimeZoneOffset)));
|
261 |
|
@@ -277,7 +278,7 @@ class B2S_Loader {
|
|
277 |
|
278 |
$defaultBlogPostData = array('post_id' => (int) $post->ID, 'blog_user_id' => (int) $post->post_author, 'user_timezone' => $userTimeZoneOffset, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
279 |
|
280 |
-
$autoShare = new B2S_AutoPost((int) $post->ID, $defaultBlogPostData, $current_user_date, false, $title, $content, $url, $image_url, $keywords, trim(strtolower(substr(B2S_LANGUAGE, 0, 2))), $optionPostFormat, $allowHashTag);
|
281 |
|
282 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
283 |
$networkTos = true;
|
@@ -394,7 +395,7 @@ class B2S_Loader {
|
|
394 |
}
|
395 |
|
396 |
public function b2s_save_post_box() {
|
397 |
-
|
398 |
if (!isset($_POST['wphb-clear-cache'])) { // WP-Hummingbird BTN clear cache - protection
|
399 |
if (!isset($_POST['wp-preview']) || (isset($_POST['wp-preview']) && $_POST['wp-preview'] != 'dopreview')) {
|
400 |
if (isset($_POST['post_ID']) && (int) $_POST['post_ID'] > 0) {
|
@@ -471,7 +472,7 @@ class B2S_Loader {
|
|
471 |
}
|
472 |
$post_date = date('Y-m-d H:i:s', strtotime($wp_user_sched_post_date));
|
473 |
}
|
474 |
-
|
475 |
//ShareNow
|
476 |
$sched_type = 3;
|
477 |
$sched_date = $current_user_date;
|
@@ -521,6 +522,7 @@ class B2S_Loader {
|
|
521 |
$url = get_permalink($_POST['post_ID']);
|
522 |
$title = isset($_POST['post_title']) ? B2S_Util::getTitleByLanguage(strip_tags($_POST['post_title']), strtolower($b2sPostLang)) : '';
|
523 |
$content = (isset($_POST['content']) && !empty($_POST['content'])) ? trim($_POST['content']) : '';
|
|
|
524 |
|
525 |
$options = new B2S_Options((int) $_POST['user_ID']);
|
526 |
$optionPostFormat = $options->_getOption('post_template');
|
@@ -536,7 +538,7 @@ class B2S_Loader {
|
|
536 |
|
537 |
$defaultBlogPostData = array('post_id' => (int) $_POST['post_ID'], 'blog_user_id' => (int) $_POST['user_ID'], 'user_timezone' => $user_timezone, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
538 |
|
539 |
-
$autoShare = new B2S_AutoPost((int) $_POST['post_ID'], $defaultBlogPostData, $current_user_date, $myTimeSettings, $title, $content, $url, $image_url, $keywords, $b2sPostLang, $optionPostFormat, $allowHashTag);
|
540 |
define('B2S_SAVE_META_BOX_AUTO_SHARE', $_POST['post_ID']);
|
541 |
if (isset($_POST['b2s-user-last-selected-profile-id']) && (int) $_POST['b2s-user-last-selected-profile-id'] != (int) $_POST['b2s-post-meta-box-profil-dropdown'] && (int) $_POST['b2s-post-meta-box-profil-dropdown'] != 0) {
|
542 |
update_option('B2S_PLUGIN_SAVE_META_BOX_AUTO_SHARE_PROFILE_USER_' . $_POST['user_ID'], (int) $_POST['b2s-post-meta-box-profil-dropdown'], false);
|
@@ -546,32 +548,32 @@ class B2S_Loader {
|
|
546 |
$metaCard = false;
|
547 |
$tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
548 |
|
549 |
-
|
550 |
//>V5.6.0 Scheduling lookup existing posts - delete entries (hook_action) - merge with current networkData & insert
|
551 |
-
if($sched_type == 2){
|
552 |
global $wpdb;
|
553 |
$getSchedData = $wpdb->prepare("SELECT b.id as b2sPostId,d.network_id as networkId,d.network_type as networkType,d.network_auth_id as networkAuthId,d.network_display_name as networkUserName FROM b2s_posts b LEFT JOIN b2s_posts_network_details d ON (d.id = b.network_details_id) WHERE b.post_id = %d AND b.sched_type = %d AND b.publish_date = %s AND b.hide = %d", (int) $_POST['post_ID'], 2, "0000-00-00 00:00:00", 0);
|
554 |
$schedDataResult = $wpdb->get_results($getSchedData);
|
555 |
$delete_scheds = array();
|
556 |
-
foreach ($schedDataResult as $k => $value){
|
557 |
$isNew = true;
|
558 |
-
foreach ($networkData as $j => $currvalue){
|
559 |
-
if($value->networkAuthId == $currvalue->networkAuthId){
|
560 |
$isNew = false;
|
561 |
}
|
562 |
}
|
563 |
-
if($isNew){
|
564 |
array_push($networkData, $value);
|
565 |
}
|
566 |
array_push($delete_scheds, $value->b2sPostId);
|
567 |
}
|
568 |
-
if(!empty($delete_scheds)){
|
569 |
require_once (B2S_PLUGIN_DIR . '/includes/B2S/Post/Tools.php');
|
570 |
B2S_Post_Tools::deleteUserSchedPost($delete_scheds);
|
571 |
}
|
572 |
}
|
573 |
-
|
574 |
-
|
575 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
576 |
$selectedTwitterProfile = (isset($_POST['b2s-post-meta-box-profil-dropdown-twitter']) && !empty($_POST['b2s-post-meta-box-profil-dropdown-twitter'])) ? (int) $_POST['b2s-post-meta-box-profil-dropdown-twitter'] : '';
|
577 |
foreach ($networkData as $k => $value) {
|
45 |
define('B2S_PLUGIN_AUTO_POST_LIMIT', serialize(array(0 => 0, 1 => 25, 2 => 50, 3 => 100, 4 => 100)));
|
46 |
define('B2S_PLUGIN_NETWORK_OAUTH', serialize(array(1, 2, 3, 4, 7, 8, 11, 15, 17, 18, 20)));
|
47 |
define('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT', serialize(array(
|
48 |
+
1 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 500), 'content' => '{CONTENT}', 'format' => 0),
|
49 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT}', 'format' => 0),
|
50 |
+
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 0), 'content' => '{CONTENT}', 'format' => 0)
|
51 |
),
|
52 |
+
2 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 255, 'range_max' => 256, 'excerpt_range_min' => 255, 'excerpt_range_max' => 256, 'limit' => 280), 'content' => '{CONTENT}', 'format' => 1)),
|
53 |
+
3 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => '{CONTENT}', 'format' => 0),
|
54 |
+
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 400, 'excerpt_range_min' => 239, 'excerpt_range_max' => 400, 'limit' => 1300), 'content' => '{CONTENT}', 'format' => 0),
|
55 |
),
|
56 |
+
12 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 240, 'range_max' => 400, 'excerpt_range_min' => 240, 'excerpt_range_max' => 400, 'limit' => 2000), 'content' => '{CONTENT}', 'format' => 1))
|
57 |
)));
|
58 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.4.2');
|
59 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_PHPVERSION', '5.5.3');
|
256 |
$url = get_permalink($post->ID);
|
257 |
$title = isset($post->post_title) ? B2S_Util::getTitleByLanguage(strip_tags($post->post_title)) : '';
|
258 |
$content = (isset($post->post_content) && !empty($post->post_content)) ? trim($post->post_content) : '';
|
259 |
+
$excerpt = (isset($post->post_excerpt) && !empty($post->post_excerpt)) ? trim($post->post_excerpt) : '';
|
260 |
$delay = (isset($autoPostData['ship_state']) && (int) $autoPostData['ship_state'] = 0) ? 0 : (isset($autoPostData['ship_delay_time']) ? (int) $autoPostData['ship_delay_time'] : 0);
|
261 |
$current_user_datetime = date('Y-m-d H:i:s', strtotime(B2S_Util::getUTCForDate($current_utc_datetime, $userTimeZoneOffset)));
|
262 |
|
278 |
|
279 |
$defaultBlogPostData = array('post_id' => (int) $post->ID, 'blog_user_id' => (int) $post->post_author, 'user_timezone' => $userTimeZoneOffset, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
280 |
|
281 |
+
$autoShare = new B2S_AutoPost((int) $post->ID, $defaultBlogPostData, $current_user_date, false, $title, $content, $excerpt, $url, $image_url, $keywords, trim(strtolower(substr(B2S_LANGUAGE, 0, 2))), $optionPostFormat, $allowHashTag);
|
282 |
|
283 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
284 |
$networkTos = true;
|
395 |
}
|
396 |
|
397 |
public function b2s_save_post_box() {
|
398 |
+
|
399 |
if (!isset($_POST['wphb-clear-cache'])) { // WP-Hummingbird BTN clear cache - protection
|
400 |
if (!isset($_POST['wp-preview']) || (isset($_POST['wp-preview']) && $_POST['wp-preview'] != 'dopreview')) {
|
401 |
if (isset($_POST['post_ID']) && (int) $_POST['post_ID'] > 0) {
|
472 |
}
|
473 |
$post_date = date('Y-m-d H:i:s', strtotime($wp_user_sched_post_date));
|
474 |
}
|
475 |
+
|
476 |
//ShareNow
|
477 |
$sched_type = 3;
|
478 |
$sched_date = $current_user_date;
|
522 |
$url = get_permalink($_POST['post_ID']);
|
523 |
$title = isset($_POST['post_title']) ? B2S_Util::getTitleByLanguage(strip_tags($_POST['post_title']), strtolower($b2sPostLang)) : '';
|
524 |
$content = (isset($_POST['content']) && !empty($_POST['content'])) ? trim($_POST['content']) : '';
|
525 |
+
$excerpt = (isset($_POST['post_excerpt']) && !empty($_POST['post_excerpt'])) ? trim($_POST['post_excerpt']) : '';
|
526 |
|
527 |
$options = new B2S_Options((int) $_POST['user_ID']);
|
528 |
$optionPostFormat = $options->_getOption('post_template');
|
538 |
|
539 |
$defaultBlogPostData = array('post_id' => (int) $_POST['post_ID'], 'blog_user_id' => (int) $_POST['user_ID'], 'user_timezone' => $user_timezone, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
540 |
|
541 |
+
$autoShare = new B2S_AutoPost((int) $_POST['post_ID'], $defaultBlogPostData, $current_user_date, $myTimeSettings, $title, $content, $excerpt, $url, $image_url, $keywords, $b2sPostLang, $optionPostFormat, $allowHashTag);
|
542 |
define('B2S_SAVE_META_BOX_AUTO_SHARE', $_POST['post_ID']);
|
543 |
if (isset($_POST['b2s-user-last-selected-profile-id']) && (int) $_POST['b2s-user-last-selected-profile-id'] != (int) $_POST['b2s-post-meta-box-profil-dropdown'] && (int) $_POST['b2s-post-meta-box-profil-dropdown'] != 0) {
|
544 |
update_option('B2S_PLUGIN_SAVE_META_BOX_AUTO_SHARE_PROFILE_USER_' . $_POST['user_ID'], (int) $_POST['b2s-post-meta-box-profil-dropdown'], false);
|
548 |
$metaCard = false;
|
549 |
$tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
550 |
|
551 |
+
|
552 |
//>V5.6.0 Scheduling lookup existing posts - delete entries (hook_action) - merge with current networkData & insert
|
553 |
+
if ($sched_type == 2) {
|
554 |
global $wpdb;
|
555 |
$getSchedData = $wpdb->prepare("SELECT b.id as b2sPostId,d.network_id as networkId,d.network_type as networkType,d.network_auth_id as networkAuthId,d.network_display_name as networkUserName FROM b2s_posts b LEFT JOIN b2s_posts_network_details d ON (d.id = b.network_details_id) WHERE b.post_id = %d AND b.sched_type = %d AND b.publish_date = %s AND b.hide = %d", (int) $_POST['post_ID'], 2, "0000-00-00 00:00:00", 0);
|
556 |
$schedDataResult = $wpdb->get_results($getSchedData);
|
557 |
$delete_scheds = array();
|
558 |
+
foreach ($schedDataResult as $k => $value) {
|
559 |
$isNew = true;
|
560 |
+
foreach ($networkData as $j => $currvalue) {
|
561 |
+
if ($value->networkAuthId == $currvalue->networkAuthId) {
|
562 |
$isNew = false;
|
563 |
}
|
564 |
}
|
565 |
+
if ($isNew) {
|
566 |
array_push($networkData, $value);
|
567 |
}
|
568 |
array_push($delete_scheds, $value->b2sPostId);
|
569 |
}
|
570 |
+
if (!empty($delete_scheds)) {
|
571 |
require_once (B2S_PLUGIN_DIR . '/includes/B2S/Post/Tools.php');
|
572 |
B2S_Post_Tools::deleteUserSchedPost($delete_scheds);
|
573 |
}
|
574 |
}
|
575 |
+
|
576 |
+
|
577 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
578 |
$selectedTwitterProfile = (isset($_POST['b2s-post-meta-box-profil-dropdown-twitter']) && !empty($_POST['b2s-post-meta-box-profil-dropdown-twitter'])) ? (int) $_POST['b2s-post-meta-box-profil-dropdown-twitter'] : '';
|
579 |
foreach ($networkData as $k => $value) {
|
includes/Util.php
CHANGED
@@ -179,7 +179,7 @@ class B2S_Util {
|
|
179 |
for ($i = 0; $i < $metas->length; $i++) {
|
180 |
$meta = $metas->item($i);
|
181 |
if ($type != 'all') {
|
182 |
-
if (($meta->getAttribute('property') == $type . ':title' || $meta->getAttribute('name') == $type . ':title')
|
183 |
$list['title'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($meta->getAttribute('content')) : $meta->getAttribute('content'));
|
184 |
}
|
185 |
if (($meta->getAttribute('property') == $type . ':description' || $meta->getAttribute('name') == $type . ':description') && !isset($list['description'])) {
|
@@ -414,6 +414,11 @@ class B2S_Util {
|
|
414 |
$min = (int) $count / 2;
|
415 |
$cleanTruncateWord = true;
|
416 |
$max = ($max !== false) ? ($max - $min) : ($min - 1);
|
|
|
|
|
|
|
|
|
|
|
417 |
$sub = mb_substr($text, $min, $max, 'UTF-8');
|
418 |
for ($i = 0; $i < count($stops); $i++) {
|
419 |
if (count($subArray = explode($stops[$i], $sub)) > 1) {
|
179 |
for ($i = 0; $i < $metas->length; $i++) {
|
180 |
$meta = $metas->item($i);
|
181 |
if ($type != 'all') {
|
182 |
+
if (($meta->getAttribute('property') == $type . ':title' || $meta->getAttribute('name') == $type . ':title') && !isset($list['title'])) {
|
183 |
$list['title'] = (function_exists('mb_convert_encoding') ? htmlspecialchars($meta->getAttribute('content')) : $meta->getAttribute('content'));
|
184 |
}
|
185 |
if (($meta->getAttribute('property') == $type . ':description' || $meta->getAttribute('name') == $type . ':description') && !isset($list['description'])) {
|
414 |
$min = (int) $count / 2;
|
415 |
$cleanTruncateWord = true;
|
416 |
$max = ($max !== false) ? ($max - $min) : ($min - 1);
|
417 |
+
|
418 |
+
if (mb_strlen($text, 'UTF-8') < $max) {
|
419 |
+
return trim($text);
|
420 |
+
}
|
421 |
+
|
422 |
$sub = mb_substr($text, $min, $max, 'UTF-8');
|
423 |
for ($i = 0; $i < count($stops); $i++) {
|
424 |
if (count($subArray = explode($stops[$i], $sub)) > 1) {
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2019-07-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -11,10 +11,10 @@ msgstr ""
|
|
11 |
"Language: de_DE\n"
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release)\n"
|
13 |
"Report-Msgid-Bugs-To: \n"
|
14 |
-
"POT-Creation-Date: 2019-07-
|
15 |
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
16 |
"Language-Team: German\n"
|
17 |
-
"X-Loco-Version: 2.2.2; wp-5.2.3-alpha-
|
18 |
|
19 |
#: includes/Loader.php:44
|
20 |
msgid "Modify pin board"
|
@@ -32,207 +32,207 @@ msgstr "Modify subreddit"
|
|
32 |
msgid "Modify forum"
|
33 |
msgstr "Modify forum"
|
34 |
|
35 |
-
#: includes/Loader.php:
|
36 |
msgid "Auto-Post on Social Media"
|
37 |
msgstr "Automatisch auf Social Media teilen"
|
38 |
|
39 |
-
#: includes/Loader.php:
|
40 |
msgid "Social Media Content Calendar"
|
41 |
msgstr "Social Media Kalender"
|
42 |
|
43 |
-
#: includes/Loader.php:
|
44 |
msgid "This post will be shared into your social media from"
|
45 |
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
46 |
|
47 |
-
#: includes/Loader.php:
|
48 |
msgid "show details"
|
49 |
msgstr "siehe Details"
|
50 |
|
51 |
-
#: includes/Loader.php:
|
52 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
53 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
54 |
|
55 |
-
#: includes/Loader.php:
|
56 |
msgid "Please, make sure that your post are publish on this blog on this moment. Then you can auto post your post with Blog2social."
|
57 |
msgstr "Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde. Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
58 |
|
59 |
-
#: includes/Loader.php:
|
60 |
msgid "There are no authorizations for your selected profile. Please, authorize with a social network or select a other profile."
|
61 |
msgstr "Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich mit einem Netzwerk oder wähle ein anderes Profil aus. "
|
62 |
|
63 |
-
#: includes/Loader.php:
|
64 |
msgid "Upgrade to Premium"
|
65 |
msgstr "Premium freischalten"
|
66 |
|
67 |
-
#: includes/Loader.php:
|
68 |
msgid "Notifications"
|
69 |
msgstr "Benachrichtigungen"
|
70 |
|
71 |
-
#: includes/Loader.php:
|
72 |
msgid "Shared Posts"
|
73 |
msgstr "Geteilte Beiträge"
|
74 |
|
75 |
-
#: includes/Loader.php:
|
76 |
msgid "Instant Sharing"
|
77 |
msgstr "Instant Sharing"
|
78 |
|
79 |
-
#: includes/Loader.php:
|
80 |
msgid "Scheduled Posts"
|
81 |
msgstr "geplante Beiträge"
|
82 |
|
83 |
-
#: includes/Loader.php:
|
84 |
msgid "Content Curation Drafts"
|
85 |
msgstr "Content Curation Entwürfe"
|
86 |
|
87 |
-
#: includes/Loader.php:
|
88 |
msgid "Profile"
|
89 |
msgstr "Profil"
|
90 |
|
91 |
-
#: includes/Loader.php:
|
92 |
msgid "Page"
|
93 |
msgstr "Seite"
|
94 |
|
95 |
-
#: includes/Loader.php:
|
96 |
msgid "Group"
|
97 |
msgstr "Gruppe"
|
98 |
|
99 |
-
#: includes/Loader.php:
|
100 |
msgid "Company"
|
101 |
msgstr "Arbeitgeber"
|
102 |
|
103 |
-
#: includes/Loader.php:
|
104 |
msgid "Business"
|
105 |
msgstr "Business"
|
106 |
|
107 |
-
#: includes/Loader.php:
|
108 |
msgid "Your post could not be posted."
|
109 |
msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
|
110 |
|
111 |
-
#: includes/Loader.php:
|
112 |
msgid "Your authorization has expired. Please reconnect your account in the Blog2Social network settings."
|
113 |
msgstr "Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den Blog2Social Netzwerkeinstellungen erneut."
|
114 |
|
115 |
-
#: includes/Loader.php:
|
116 |
msgid "The network has marked the post as spam or abusive."
|
117 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
118 |
|
119 |
-
#: includes/Loader.php:
|
120 |
msgid "We don't have the permission to publish your post. Please check your authorization."
|
121 |
msgstr "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte überprüfe deine Autorisierung."
|
122 |
|
123 |
-
#: includes/Loader.php:
|
124 |
msgid "Your authorization is interrupted. Please check your authorization. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
125 |
msgstr "Die Autorisierung ist unterbrochen. Bitte überprüfe deine Autorisierung. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
126 |
|
127 |
-
#: includes/Loader.php:
|
128 |
msgid "Your daily limit has been reached."
|
129 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
130 |
|
131 |
-
#: includes/Loader.php:
|
132 |
msgid "Your post could not be posted, because your image is not available or the image source does not allow to publish"
|
133 |
msgstr "Dein Beitrag konnte nicht veröffentlicht werden, weil Dein Bild nicht verfügbar ist oder die Bildquelle es nicht erlaubt, es zu veröffentlichen."
|
134 |
|
135 |
-
#: includes/Loader.php:
|
136 |
msgid "The network has blocked your account. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
137 |
msgstr "Das Netzwerk hat deinen Account blockiert. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
138 |
|
139 |
-
#: includes/Loader.php:
|
140 |
msgid "The number of images is reached. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
141 |
msgstr "Die erlaubte Anzahl von Bildern ist erreicht. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
142 |
|
143 |
-
#: includes/Loader.php:
|
144 |
msgid "Your daily limit for this network has been reached. Please try again later."
|
145 |
msgstr "Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte versuche es später noch einmal."
|
146 |
|
147 |
-
#: includes/Loader.php:
|
148 |
msgid "The network can not publish special characters such as Emoji. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
149 |
msgstr "Das Netzwerk unterstüzt keine Emojis. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
150 |
|
151 |
-
#: includes/Loader.php:
|
152 |
msgid "Your post is a duplicate."
|
153 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
154 |
|
155 |
-
#: includes/Loader.php:
|
156 |
msgid "The network requires a public url."
|
157 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
158 |
|
159 |
-
#: includes/Loader.php:
|
160 |
msgid "Your blog post was not available for the network at the time of publication."
|
161 |
msgstr "Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk nicht verfügbar."
|
162 |
|
163 |
-
#: includes/Loader.php:
|
164 |
msgid "You have already retweeted this post."
|
165 |
msgstr "Du hast diesen Post bereits retweetet."
|
166 |
|
167 |
-
#: includes/Loader.php:
|
168 |
msgid "This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts. <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=146\">Learn more</a>"
|
169 |
msgstr ""
|
170 |
"Diese XING-Schnittstelle wird nicht weiter von XING unterstützt wird. Bitte nutze ab jetzt die neue XING-Schnittstelle, um Deine XING Posts neu zu planen. <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/index.php?action=artikel&cat=2&id=145&artlang=de\">Weitere "
|
171 |
"Informationen.</a>"
|
172 |
|
173 |
-
#: includes/Loader.php:
|
174 |
msgid "There was no image in the meta data of the linked post. Posts without images cannot be shared on image networks."
|
175 |
msgstr "Es konnte kein Bild in den Meta Daten des verlinkten Beitrags gefunden werden. Posts ohne Bilder können nicht auf Bilder-Netzwerken veröffentlicht werden. "
|
176 |
|
177 |
-
#: includes/Loader.php:
|
178 |
msgid "Your post could not be posted, because your image can not be processed by the network."
|
179 |
msgstr "Dein Beitrag konnte nicht veröffentlicht werden, da Dein Bild nicht vom Netzwerk verarbeitet werden kann."
|
180 |
|
181 |
-
#: includes/Loader.php:
|
182 |
msgid "Your group can not be found by the network."
|
183 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
184 |
|
185 |
-
#: includes/Loader.php:
|
186 |
msgid "Dashboard"
|
187 |
msgstr "Dashboard"
|
188 |
|
189 |
-
#: includes/Loader.php:
|
190 |
msgid "Posts & Sharing"
|
191 |
msgstr "Beiträge"
|
192 |
|
193 |
-
#: includes/Loader.php:
|
194 |
msgid "Calendar"
|
195 |
msgstr "Kalender"
|
196 |
|
197 |
-
#: includes/Loader.php:
|
198 |
msgid "Content Curation"
|
199 |
msgstr "Content Curation"
|
200 |
|
201 |
-
#: includes/Loader.php:
|
202 |
msgid "Networks"
|
203 |
msgstr "Netzwerke"
|
204 |
|
205 |
-
#: includes/Loader.php:
|
206 |
msgid "Settings"
|
207 |
msgstr "Einstellungen"
|
208 |
|
209 |
-
#: includes/Loader.php:
|
210 |
msgid "PR-Service"
|
211 |
msgstr "PR-Service"
|
212 |
|
213 |
-
#: includes/Loader.php:
|
214 |
msgid "Help & Support"
|
215 |
msgstr "Hilfe & Support"
|
216 |
|
217 |
-
#: includes/Loader.php:
|
218 |
msgid "Premium"
|
219 |
msgstr "Premium"
|
220 |
|
221 |
-
#: includes/Loader.php:
|
222 |
-
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:250 includes/B2S/Network/Item.php:312 includes/B2S/Network/Item.php:374 includes/B2S/Settings/Item.php:102 includes/B2S/Ship/Image.php:73 includes/B2S/Ship/Image.php:80 includes/B2S/Ship/Item.php:
|
223 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:38 views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
224 |
msgid "PREMIUM"
|
225 |
msgstr "PREMIUM"
|
226 |
|
227 |
-
#: includes/Loader.php:
|
228 |
msgid "Blog2Social"
|
229 |
msgstr "Blog2Social"
|
230 |
|
231 |
-
#: includes/Loader.php:
|
232 |
msgid "or"
|
233 |
msgstr "oder"
|
234 |
|
235 |
-
#: includes/Loader.php:
|
236 |
msgid "back to install plugins"
|
237 |
msgstr "zurück zur Pluginübersicht"
|
238 |
|
@@ -314,7 +314,7 @@ msgstr "<b> Ein unbekannter Fehler ist aufgetreten. </b> <br> Bitte kontaktiere
|
|
314 |
msgid "Unknown username"
|
315 |
msgstr "unbekannter Blognutzer"
|
316 |
|
317 |
-
#: includes/Ajax/Post.php:1357 includes/B2S/Network/Item.php:466 includes/B2S/Post/Item.php:606 includes/B2S/Post/Item.php:655 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:
|
318 |
msgid "delete"
|
319 |
msgstr "löschen"
|
320 |
|
@@ -350,7 +350,7 @@ msgstr "Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist.
|
|
350 |
msgid "Custom Sharing & Scheduling"
|
351 |
msgstr "Anpassen & Planen"
|
352 |
|
353 |
-
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101 views/b2s/ship.php:60 views/b2s/ship.php:150 views/b2s/ship.php:237 includes/B2S/Network/Item.php:170 includes/B2S/Ship/Item.php:
|
354 |
msgid "Info"
|
355 |
msgstr "Info"
|
356 |
|
@@ -507,7 +507,7 @@ msgstr "Upgrade auf PREMIUM PRO"
|
|
507 |
msgid "Select date:"
|
508 |
msgstr "Datum auswählen:"
|
509 |
|
510 |
-
#: includes/B2S/PostBox.php:234 includes/B2S/Ship/Item.php:
|
511 |
msgid "show calendar"
|
512 |
msgstr "Planungskalender anzeigen"
|
513 |
|
@@ -591,7 +591,7 @@ msgstr "Du möchtest Deine Beiträge planen?"
|
|
591 |
msgid "Blog2Social Premium covers everything you need."
|
592 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
593 |
|
594 |
-
#: views/b2s/curation.php:115 views/b2s/post.calendar.php:265 views/b2s/ship.php:383 includes/B2S/Ship/Item.php:
|
595 |
msgid "Schedule for specific dates"
|
596 |
msgstr "Für bestimmte Termine planen"
|
597 |
|
@@ -691,7 +691,7 @@ msgstr ""
|
|
691 |
msgid "Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings."
|
692 |
msgstr "Google erlaubt derzeit den Zugriff auf die API für alle Unternehmen mit bis zu 9 Standorten. Google plant, den Zugriff auf die API in Zukunft auch auf Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My Business Brancheneinträgen zu erweitern."
|
693 |
|
694 |
-
#: views/b2s/network.php:126 views/b2s/premium.php:35 views/b2s/ship.php:469 includes/B2S/Ship/Item.php:
|
695 |
msgid "Learn more"
|
696 |
msgstr "Mehr erfahren"
|
697 |
|
@@ -884,13 +884,26 @@ msgstr "Der Inhalt Deines Beitrags"
|
|
884 |
msgid "The tags you have set in your post."
|
885 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast"
|
886 |
|
887 |
-
#: views/b2s/network.php:433 includes/B2S/Network/Item.php:
|
888 |
-
msgid "Character
|
889 |
msgstr "Zeichenbegrenzung"
|
890 |
|
891 |
#: views/b2s/network.php:436
|
892 |
-
msgid "
|
893 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
894 |
|
895 |
#: views/b2s/post.approve.php:81
|
896 |
msgid "Delete Social Media Posts"
|
@@ -1600,7 +1613,7 @@ msgstr "Teile Deinen Post"
|
|
1600 |
msgid "immediately"
|
1601 |
msgstr "sofort"
|
1602 |
|
1603 |
-
#: includes/B2S/Curation/View.php:66 includes/B2S/Curation/View.php:67 includes/B2S/Ship/Item.php:
|
1604 |
msgid "Date"
|
1605 |
msgstr "Startdatum"
|
1606 |
|
@@ -1672,11 +1685,11 @@ msgstr "Autorisierung ist unterbrochen seit"
|
|
1672 |
msgid "Assigned by"
|
1673 |
msgstr "Zugewiesen von"
|
1674 |
|
1675 |
-
#: includes/B2S/Network/Item.php:248 includes/B2S/Network/Item.php:310 includes/B2S/Network/Item.php:372 includes/B2S/Ship/Item.php:
|
1676 |
msgid "Days"
|
1677 |
msgstr "Tage"
|
1678 |
|
1679 |
-
#: includes/B2S/Network/Item.php:278 includes/B2S/Ship/Item.php:
|
1680 |
msgid "Employer Branding"
|
1681 |
msgstr "Arbeitgeber"
|
1682 |
|
@@ -1704,56 +1717,56 @@ msgstr "Dies ist eine Premium Funktion"
|
|
1704 |
msgid "Activate Instant Caching"
|
1705 |
msgstr "Instant Caching aktivieren"
|
1706 |
|
1707 |
-
#: includes/B2S/Network/Item.php:
|
1708 |
msgid "Format"
|
1709 |
msgstr "Format"
|
1710 |
|
1711 |
-
#: includes/B2S/Network/Item.php:
|
1712 |
msgid "Load default settings"
|
1713 |
msgstr "Lade Standardeinstellungen"
|
1714 |
|
1715 |
-
#: includes/B2S/Network/Item.php:
|
1716 |
msgid "Link"
|
1717 |
msgstr "Link"
|
1718 |
|
1719 |
-
#: includes/B2S/Network/Item.php:
|
1720 |
msgid "Image with frame"
|
1721 |
msgstr "Bild mit Rahmen"
|
1722 |
|
1723 |
-
#: includes/B2S/Network/Item.php:
|
1724 |
msgid "Image"
|
1725 |
msgstr "Bild"
|
1726 |
|
1727 |
-
#: includes/B2S/Network/Item.php:
|
1728 |
msgid "Image cut out"
|
1729 |
msgstr "Bild zuschneiden"
|
1730 |
|
1731 |
-
#: includes/B2S/Network/Item.php:
|
1732 |
msgid "Content"
|
1733 |
msgstr "Inhalt"
|
1734 |
|
1735 |
-
#: includes/B2S/Network/Item.php:
|
1736 |
msgid "clear"
|
1737 |
msgstr "löschen"
|
1738 |
|
1739 |
-
#: includes/B2S/Network/Item.php:
|
1740 |
msgid "The link will be added automatically at the end of the post."
|
1741 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt"
|
1742 |
|
1743 |
-
#: includes/B2S/Network/Item.php:
|
1744 |
-
msgid "
|
1745 |
-
msgstr "
|
1746 |
|
1747 |
-
#: includes/B2S/Network/Item.php:
|
1748 |
-
#: includes/B2S/Ship/Item.php:
|
1749 |
msgid "characters"
|
1750 |
msgstr "Zeichen"
|
1751 |
|
1752 |
-
#: includes/B2S/Network/Item.php:
|
1753 |
-
msgid "
|
1754 |
-
msgstr "
|
1755 |
|
1756 |
-
#: includes/B2S/Network/Item.php:
|
1757 |
msgid "Preview"
|
1758 |
msgstr "Vorschau"
|
1759 |
|
@@ -1941,7 +1954,7 @@ msgstr "edit"
|
|
1941 |
msgid "delete scheduling"
|
1942 |
msgstr "Planung löschen"
|
1943 |
|
1944 |
-
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:
|
1945 |
msgid "Account"
|
1946 |
msgstr "Konto"
|
1947 |
|
@@ -2223,7 +2236,7 @@ msgstr "Bild für diesen Post übernehmen"
|
|
2223 |
msgid "Network does not support image for profiles"
|
2224 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
2225 |
|
2226 |
-
#: includes/B2S/Ship/Item.php:138 includes/B2S/Ship/Item.php:
|
2227 |
msgid "Network defines image by link"
|
2228 |
msgstr "Netzwerk wählt selber das Bild aus"
|
2229 |
|
@@ -2231,161 +2244,161 @@ msgstr "Netzwerk wählt selber das Bild aus"
|
|
2231 |
msgid "Supported HTML tags"
|
2232 |
msgstr "Erlaubte HTML-Elemente"
|
2233 |
|
2234 |
-
#: includes/B2S/Ship/Item.php:141 includes/B2S/Ship/Item.php:
|
2235 |
msgid "Network does not support emojis"
|
2236 |
msgstr "Netzwerk unterstützt keine Emojis"
|
2237 |
|
2238 |
-
#: includes/B2S/Ship/Item.php:
|
2239 |
msgid "Text only"
|
2240 |
msgstr "nur Text"
|
2241 |
|
2242 |
-
#: includes/B2S/Ship/Item.php:
|
2243 |
msgid "Network does not support image for pages"
|
2244 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
2245 |
|
2246 |
-
#: includes/B2S/Ship/Item.php:
|
2247 |
msgid "Connection expires on 31 March 2019"
|
2248 |
msgstr "Verbindung läuft ab 31.März 2019 ab"
|
2249 |
|
2250 |
-
#: includes/B2S/Ship/Item.php:
|
2251 |
msgid "Connection expires on 2 April 2019"
|
2252 |
msgstr "Verbindung läuft ab 2. April 2019 ab"
|
2253 |
|
2254 |
-
#: includes/B2S/Ship/Item.php:
|
2255 |
msgid "post format"
|
2256 |
msgstr "Postformat"
|
2257 |
|
2258 |
-
#: includes/B2S/Ship/Item.php:
|
2259 |
msgid "Insert full-text"
|
2260 |
msgstr "ganzen Text einfügen"
|
2261 |
|
2262 |
-
#: includes/B2S/Ship/Item.php:
|
2263 |
msgid "Delete text"
|
2264 |
msgstr "Text löschen"
|
2265 |
|
2266 |
-
#: includes/B2S/Ship/Item.php:
|
2267 |
msgid "You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post."
|
2268 |
msgstr "Du kannst Deinen Post mit individuellen Kommentaren, @-Handles, Emojis und mehr im Fenster \"Instant Sharing\" anpassen, nachdem Du Deinen Post geplant hast."
|
2269 |
|
2270 |
-
#: includes/B2S/Ship/Item.php:
|
2271 |
msgid "Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
2272 |
msgstr "Bitte beachten Sie, dass es nach den neuen AGB von Twitter nicht mehr erlaubt ist, identische oder im Wesentlichen ähnliche Inhalte auf mehreren Accounts oder mehrere identische Updates auf einem Twitter Account oder auch mehreren Accounts zu posten."
|
2273 |
|
2274 |
-
#: includes/B2S/Ship/Item.php:
|
2275 |
msgid "Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts."
|
2276 |
msgstr "Ein Verstoß gegen diese Regeln kann dazu führen, dass Twitter Ihren Account sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
2277 |
|
2278 |
-
#: includes/B2S/Ship/Item.php:
|
2279 |
msgid "Learn more about this"
|
2280 |
msgstr "Erfahre mehr darüber"
|
2281 |
|
2282 |
-
#: includes/B2S/Ship/Item.php:
|
2283 |
msgid "Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups."
|
2284 |
msgstr "Bitte beachte: XING erlaubt die Veröffentlichung identischer Beiträge nur einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen Gruppen."
|
2285 |
|
2286 |
-
#: includes/B2S/Ship/Item.php:
|
2287 |
msgid "Read more"
|
2288 |
msgstr "mehr erfahren"
|
2289 |
|
2290 |
-
#: includes/B2S/Ship/Item.php:
|
2291 |
msgid "hide calendar"
|
2292 |
msgstr "Planungskalender verbergen"
|
2293 |
|
2294 |
-
#: includes/B2S/Ship/Item.php:
|
2295 |
-
#: includes/B2S/Ship/Item.php:
|
2296 |
msgid "Write something about your post..."
|
2297 |
msgstr "Schreibe etwas..."
|
2298 |
|
2299 |
-
#: includes/B2S/Ship/Item.php:
|
2300 |
msgid "Change image"
|
2301 |
msgstr "Bild ändern"
|
2302 |
|
2303 |
-
#: includes/B2S/Ship/Item.php:
|
2304 |
msgid "Info: Change Open Graph Meta tags image, title and description for this network"
|
2305 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
2306 |
|
2307 |
-
#: includes/B2S/Ship/Item.php:
|
2308 |
msgid "You want to change your link image, link title and link description for this network? Click here."
|
2309 |
msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
2310 |
|
2311 |
-
#: includes/B2S/Ship/Item.php:
|
2312 |
msgid "OG Meta title"
|
2313 |
msgstr "OG Titel"
|
2314 |
|
2315 |
-
#: includes/B2S/Ship/Item.php:
|
2316 |
msgid "OG Meta description"
|
2317 |
msgstr "OG Beschreibung"
|
2318 |
|
2319 |
-
#: includes/B2S/Ship/Item.php:
|
2320 |
msgid "Info: Change Card Meta tags image, title and description for this network"
|
2321 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
2322 |
|
2323 |
-
#: includes/B2S/Ship/Item.php:
|
2324 |
msgid "Card Meta title"
|
2325 |
msgstr "Card Titel"
|
2326 |
|
2327 |
-
#: includes/B2S/Ship/Item.php:
|
2328 |
msgid "Card Meta description"
|
2329 |
msgstr "Card Beschreibung"
|
2330 |
|
2331 |
-
#: includes/B2S/Ship/Item.php:
|
2332 |
msgid "required"
|
2333 |
msgstr "erforderlich"
|
2334 |
|
2335 |
-
#: includes/B2S/Ship/Item.php:
|
2336 |
msgid "Jobs & Projects"
|
2337 |
msgstr "Jobs & Projekte"
|
2338 |
|
2339 |
-
#: includes/B2S/Ship/Item.php:
|
2340 |
msgid "Events"
|
2341 |
msgstr "Veranstaltungen"
|
2342 |
|
2343 |
-
#: includes/B2S/Ship/Item.php:
|
2344 |
msgid "Classified Ads"
|
2345 |
msgstr "Kleinanzeigen"
|
2346 |
|
2347 |
-
#: includes/B2S/Ship/Item.php:
|
2348 |
msgid "Offer"
|
2349 |
msgstr "Angebot"
|
2350 |
|
2351 |
-
#: includes/B2S/Ship/Item.php:
|
2352 |
msgid "Request"
|
2353 |
msgstr "Gesucht"
|
2354 |
|
2355 |
-
#: includes/B2S/Ship/Item.php:
|
2356 |
msgid "The Headline..."
|
2357 |
msgstr "Die Überschrift..."
|
2358 |
|
2359 |
-
#: includes/B2S/Ship/Item.php:
|
2360 |
msgid "Hashtags"
|
2361 |
msgstr "Hashtags"
|
2362 |
|
2363 |
-
#: includes/B2S/Ship/Item.php:
|
2364 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
2365 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
2366 |
|
2367 |
-
#: includes/B2S/Ship/Item.php:
|
2368 |
msgid "Delay"
|
2369 |
msgstr "Verzögerung"
|
2370 |
|
2371 |
-
#: includes/B2S/Ship/Item.php:
|
2372 |
#: views/b2s/partials/post-edit-modal.php:80
|
2373 |
msgid "min"
|
2374 |
msgstr "min"
|
2375 |
|
2376 |
-
#: includes/B2S/Ship/Item.php:
|
2377 |
msgid "Add Retweet"
|
2378 |
msgstr "Retweet hinzufügen"
|
2379 |
|
2380 |
-
#: includes/B2S/Ship/Item.php:
|
2381 |
msgid "Share Now"
|
2382 |
msgstr "Sofort teilen"
|
2383 |
|
2384 |
-
#: includes/B2S/Ship/Item.php:
|
2385 |
msgid "Schedule Recurrent Post"
|
2386 |
msgstr "regelmäßig Planen"
|
2387 |
|
2388 |
-
#: includes/B2S/Ship/Item.php:
|
2389 |
msgid ""
|
2390 |
"Please note: Your account is connected via an old XING API that is no longer supported by XING after March 31. Please connect your XING profile, as well as your XING company pages (Employer branding profiles) and business pages with the new XING interface in the Blog2Social "
|
2391 |
"network settings. To do this, go to the Blog2Social Networks section and connect your XING accounts with the new XING."
|
@@ -2393,119 +2406,119 @@ msgstr ""
|
|
2393 |
"Bitte beachte: Deine Accounts sind über eine alte XING-Schnittstelle verbunden, die nicht weiter von XING unterstützt wird. Bitte verbinde Dein XING-Profil sowie Deine XING-Unternehmensseiten- (Arbeitgeberprofile) und Business Pages mit der neuen XING-Schnittstelle. Gehe dazu "
|
2394 |
"in den Bereich Blog2Social \"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle"
|
2395 |
|
2396 |
-
#: includes/B2S/Ship/Item.php:
|
2397 |
msgid "Please note: Google will shut down Google+ for all private accounts (profiles, pages, groups) on 2nd April 2019. You can find further information and the next steps, including how to download your photos and other content here:"
|
2398 |
msgstr "Bitte beachte. Google stellt das Netzwerk Google+ für alle private Konten (Profile, Seiten und Gruppen) zum 02. April 2019 ein. Hier findest Du Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und andere Inhalte herunterladen kannst:"
|
2399 |
|
2400 |
-
#: includes/B2S/Ship/Item.php:
|
2401 |
msgid "Repeats"
|
2402 |
msgstr "Wdh."
|
2403 |
|
2404 |
-
#: includes/B2S/Ship/Item.php:
|
2405 |
msgid "Duration"
|
2406 |
msgstr "Dauer"
|
2407 |
|
2408 |
-
#: includes/B2S/Ship/Item.php:
|
2409 |
msgid "Number of repeats"
|
2410 |
msgstr "Anzahl der Wdh."
|
2411 |
|
2412 |
-
#: includes/B2S/Ship/Item.php:
|
2413 |
msgid "Day of month"
|
2414 |
msgstr "Tag im Monat"
|
2415 |
|
2416 |
-
#: includes/B2S/Ship/Item.php:
|
2417 |
msgid "Repeats every (days)"
|
2418 |
msgstr "Alle (Tage) wiederholen"
|
2419 |
|
2420 |
-
#: includes/B2S/Ship/Item.php:
|
2421 |
msgid "Start date"
|
2422 |
msgstr "Startdatum"
|
2423 |
|
2424 |
-
#: includes/B2S/Ship/Item.php:
|
2425 |
msgid "Time to publish"
|
2426 |
msgstr "Veröffentlichungszeit"
|
2427 |
|
2428 |
-
#: includes/B2S/Ship/Item.php:
|
2429 |
msgid "weekly"
|
2430 |
msgstr "wöchentlich"
|
2431 |
|
2432 |
-
#: includes/B2S/Ship/Item.php:
|
2433 |
msgid "monthly"
|
2434 |
msgstr "monatlich"
|
2435 |
|
2436 |
-
#: includes/B2S/Ship/Item.php:
|
2437 |
msgid "own period"
|
2438 |
msgstr "Eigener Zeitraum"
|
2439 |
|
2440 |
-
#: includes/B2S/Ship/Item.php:
|
2441 |
msgid "Week"
|
2442 |
msgstr "Woche"
|
2443 |
|
2444 |
-
#: includes/B2S/Ship/Item.php:
|
2445 |
msgid "Weeks"
|
2446 |
msgstr "Wochen"
|
2447 |
|
2448 |
-
#: includes/B2S/Ship/Item.php:
|
2449 |
msgid "Month"
|
2450 |
msgstr "Monat"
|
2451 |
|
2452 |
-
#: includes/B2S/Ship/Item.php:
|
2453 |
msgid "Months"
|
2454 |
msgstr "Monate"
|
2455 |
|
2456 |
-
#: includes/B2S/Ship/Item.php:
|
2457 |
msgid "End Of Month"
|
2458 |
msgstr "Monatsende"
|
2459 |
|
2460 |
-
#: includes/B2S/Ship/Item.php:
|
2461 |
msgid "Timespan"
|
2462 |
msgstr "Zeitspanne"
|
2463 |
|
2464 |
-
#: includes/B2S/Ship/Item.php:
|
2465 |
msgid "Time"
|
2466 |
msgstr "Mal"
|
2467 |
|
2468 |
-
#: includes/B2S/Ship/Item.php:
|
2469 |
msgid "Mon"
|
2470 |
msgstr "Mo"
|
2471 |
|
2472 |
-
#: includes/B2S/Ship/Item.php:
|
2473 |
msgid "Tue"
|
2474 |
msgstr "Di"
|
2475 |
|
2476 |
-
#: includes/B2S/Ship/Item.php:
|
2477 |
msgid "Wed"
|
2478 |
msgstr "Mi"
|
2479 |
|
2480 |
-
#: includes/B2S/Ship/Item.php:
|
2481 |
msgid "Thu"
|
2482 |
msgstr "Do"
|
2483 |
|
2484 |
-
#: includes/B2S/Ship/Item.php:
|
2485 |
msgid "Fri"
|
2486 |
msgstr "Fr"
|
2487 |
|
2488 |
-
#: includes/B2S/Ship/Item.php:
|
2489 |
msgid "Sat"
|
2490 |
msgstr "Sa"
|
2491 |
|
2492 |
-
#: includes/B2S/Ship/Item.php:
|
2493 |
msgid "Sun"
|
2494 |
msgstr "So"
|
2495 |
|
2496 |
-
#: includes/B2S/Ship/Item.php:
|
2497 |
msgid "add another post"
|
2498 |
msgstr "einen weiteren Post anlegen"
|
2499 |
|
2500 |
-
#: includes/B2S/Ship/Item.php:
|
2501 |
msgid "Copy from original"
|
2502 |
msgstr "Originaltext kopieren"
|
2503 |
|
2504 |
-
#: includes/B2S/Ship/Item.php:
|
2505 |
msgid "Apply Settings To All Networks"
|
2506 |
msgstr "Planung für alle Netzwerke übernehmen"
|
2507 |
|
2508 |
-
#: includes/B2S/Ship/Item.php:
|
2509 |
msgid "Save as best time for this network"
|
2510 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
2511 |
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2019-07-30 07:10+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
"Language: de_DE\n"
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release)\n"
|
13 |
"Report-Msgid-Bugs-To: \n"
|
14 |
+
"POT-Creation-Date: 2019-07-30 07:04+0000\n"
|
15 |
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
16 |
"Language-Team: German\n"
|
17 |
+
"X-Loco-Version: 2.2.2; wp-5.2.3-alpha-45666"
|
18 |
|
19 |
#: includes/Loader.php:44
|
20 |
msgid "Modify pin board"
|
32 |
msgid "Modify forum"
|
33 |
msgstr "Modify forum"
|
34 |
|
35 |
+
#: includes/Loader.php:364
|
36 |
msgid "Auto-Post on Social Media"
|
37 |
msgstr "Automatisch auf Social Media teilen"
|
38 |
|
39 |
+
#: includes/Loader.php:365
|
40 |
msgid "Social Media Content Calendar"
|
41 |
msgstr "Social Media Kalender"
|
42 |
|
43 |
+
#: includes/Loader.php:669
|
44 |
msgid "This post will be shared into your social media from"
|
45 |
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
46 |
|
47 |
+
#: includes/Loader.php:669 includes/Loader.php:671
|
48 |
msgid "show details"
|
49 |
msgstr "siehe Details"
|
50 |
|
51 |
+
#: includes/Loader.php:671
|
52 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
53 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
54 |
|
55 |
+
#: includes/Loader.php:675
|
56 |
msgid "Please, make sure that your post are publish on this blog on this moment. Then you can auto post your post with Blog2social."
|
57 |
msgstr "Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde. Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
58 |
|
59 |
+
#: includes/Loader.php:678 includes/B2S/PostBox.php:79
|
60 |
msgid "There are no authorizations for your selected profile. Please, authorize with a social network or select a other profile."
|
61 |
msgstr "Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich mit einem Netzwerk oder wähle ein anderes Profil aus. "
|
62 |
|
63 |
+
#: includes/Loader.php:690
|
64 |
msgid "Upgrade to Premium"
|
65 |
msgstr "Premium freischalten"
|
66 |
|
67 |
+
#: includes/Loader.php:720
|
68 |
msgid "Notifications"
|
69 |
msgstr "Benachrichtigungen"
|
70 |
|
71 |
+
#: includes/Loader.php:720
|
72 |
msgid "Shared Posts"
|
73 |
msgstr "Geteilte Beiträge"
|
74 |
|
75 |
+
#: includes/Loader.php:720
|
76 |
msgid "Instant Sharing"
|
77 |
msgstr "Instant Sharing"
|
78 |
|
79 |
+
#: includes/Loader.php:720 views/b2s/widgets/posts.php:18
|
80 |
msgid "Scheduled Posts"
|
81 |
msgstr "geplante Beiträge"
|
82 |
|
83 |
+
#: includes/Loader.php:720
|
84 |
msgid "Content Curation Drafts"
|
85 |
msgstr "Content Curation Entwürfe"
|
86 |
|
87 |
+
#: includes/Loader.php:721 includes/B2S/Network/Item.php:148 includes/B2S/Network/Item.php:148 includes/B2S/Network/Item.php:217 includes/B2S/Network/Item.php:523 includes/B2S/Settings/Item.php:244 includes/B2S/Ship/Portale.php:38 includes/B2S/Ship/Portale.php:38
|
88 |
msgid "Profile"
|
89 |
msgstr "Profil"
|
90 |
|
91 |
+
#: includes/Loader.php:721 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:525 includes/B2S/Settings/Item.php:244 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
92 |
msgid "Page"
|
93 |
msgstr "Seite"
|
94 |
|
95 |
+
#: includes/Loader.php:721 includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:341 includes/B2S/Network/Item.php:528 includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
96 |
msgid "Group"
|
97 |
msgstr "Gruppe"
|
98 |
|
99 |
+
#: includes/Loader.php:722
|
100 |
msgid "Company"
|
101 |
msgstr "Arbeitgeber"
|
102 |
|
103 |
+
#: includes/Loader.php:722
|
104 |
msgid "Business"
|
105 |
msgstr "Business"
|
106 |
|
107 |
+
#: includes/Loader.php:723
|
108 |
msgid "Your post could not be posted."
|
109 |
msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
|
110 |
|
111 |
+
#: includes/Loader.php:724
|
112 |
msgid "Your authorization has expired. Please reconnect your account in the Blog2Social network settings."
|
113 |
msgstr "Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den Blog2Social Netzwerkeinstellungen erneut."
|
114 |
|
115 |
+
#: includes/Loader.php:725
|
116 |
msgid "The network has marked the post as spam or abusive."
|
117 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
118 |
|
119 |
+
#: includes/Loader.php:726
|
120 |
msgid "We don't have the permission to publish your post. Please check your authorization."
|
121 |
msgstr "Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte überprüfe deine Autorisierung."
|
122 |
|
123 |
+
#: includes/Loader.php:727
|
124 |
msgid "Your authorization is interrupted. Please check your authorization. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
125 |
msgstr "Die Autorisierung ist unterbrochen. Bitte überprüfe deine Autorisierung. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
126 |
|
127 |
+
#: includes/Loader.php:728
|
128 |
msgid "Your daily limit has been reached."
|
129 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
130 |
|
131 |
+
#: includes/Loader.php:729
|
132 |
msgid "Your post could not be posted, because your image is not available or the image source does not allow to publish"
|
133 |
msgstr "Dein Beitrag konnte nicht veröffentlicht werden, weil Dein Bild nicht verfügbar ist oder die Bildquelle es nicht erlaubt, es zu veröffentlichen."
|
134 |
|
135 |
+
#: includes/Loader.php:730
|
136 |
msgid "The network has blocked your account. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
137 |
msgstr "Das Netzwerk hat deinen Account blockiert. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
138 |
|
139 |
+
#: includes/Loader.php:731
|
140 |
msgid "The number of images is reached. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
141 |
msgstr "Die erlaubte Anzahl von Bildern ist erreicht. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
142 |
|
143 |
+
#: includes/Loader.php:732
|
144 |
msgid "Your daily limit for this network has been reached. Please try again later."
|
145 |
msgstr "Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte versuche es später noch einmal."
|
146 |
|
147 |
+
#: includes/Loader.php:733
|
148 |
msgid "The network can not publish special characters such as Emoji. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
149 |
msgstr "Das Netzwerk unterstüzt keine Emojis. Siehe <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
150 |
|
151 |
+
#: includes/Loader.php:734
|
152 |
msgid "Your post is a duplicate."
|
153 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
154 |
|
155 |
+
#: includes/Loader.php:735
|
156 |
msgid "The network requires a public url."
|
157 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
158 |
|
159 |
+
#: includes/Loader.php:736
|
160 |
msgid "Your blog post was not available for the network at the time of publication."
|
161 |
msgstr "Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk nicht verfügbar."
|
162 |
|
163 |
+
#: includes/Loader.php:737
|
164 |
msgid "You have already retweeted this post."
|
165 |
msgstr "Du hast diesen Post bereits retweetet."
|
166 |
|
167 |
+
#: includes/Loader.php:738
|
168 |
msgid "This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts. <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=146\">Learn more</a>"
|
169 |
msgstr ""
|
170 |
"Diese XING-Schnittstelle wird nicht weiter von XING unterstützt wird. Bitte nutze ab jetzt die neue XING-Schnittstelle, um Deine XING Posts neu zu planen. <a target=\"_blank\" href=\"https://www.blog2social.com/de/faq/index.php?action=artikel&cat=2&id=145&artlang=de\">Weitere "
|
171 |
"Informationen.</a>"
|
172 |
|
173 |
+
#: includes/Loader.php:739
|
174 |
msgid "There was no image in the meta data of the linked post. Posts without images cannot be shared on image networks."
|
175 |
msgstr "Es konnte kein Bild in den Meta Daten des verlinkten Beitrags gefunden werden. Posts ohne Bilder können nicht auf Bilder-Netzwerken veröffentlicht werden. "
|
176 |
|
177 |
+
#: includes/Loader.php:740
|
178 |
msgid "Your post could not be posted, because your image can not be processed by the network."
|
179 |
msgstr "Dein Beitrag konnte nicht veröffentlicht werden, da Dein Bild nicht vom Netzwerk verarbeitet werden kann."
|
180 |
|
181 |
+
#: includes/Loader.php:741
|
182 |
msgid "Your group can not be found by the network."
|
183 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
184 |
|
185 |
+
#: includes/Loader.php:797 includes/Loader.php:834
|
186 |
msgid "Dashboard"
|
187 |
msgstr "Dashboard"
|
188 |
|
189 |
+
#: includes/Loader.php:798 includes/Loader.php:841
|
190 |
msgid "Posts & Sharing"
|
191 |
msgstr "Beiträge"
|
192 |
|
193 |
+
#: includes/Loader.php:799 includes/Loader.php:848 views/b2s/dashboard.php:28
|
194 |
msgid "Calendar"
|
195 |
msgstr "Kalender"
|
196 |
|
197 |
+
#: includes/Loader.php:800 includes/Loader.php:856
|
198 |
msgid "Content Curation"
|
199 |
msgstr "Content Curation"
|
200 |
|
201 |
+
#: includes/Loader.php:801 includes/Loader.php:863
|
202 |
msgid "Networks"
|
203 |
msgstr "Netzwerke"
|
204 |
|
205 |
+
#: includes/Loader.php:802 includes/Loader.php:869
|
206 |
msgid "Settings"
|
207 |
msgstr "Einstellungen"
|
208 |
|
209 |
+
#: includes/Loader.php:803 includes/Loader.php:875
|
210 |
msgid "PR-Service"
|
211 |
msgstr "PR-Service"
|
212 |
|
213 |
+
#: includes/Loader.php:804 includes/Loader.php:882
|
214 |
msgid "Help & Support"
|
215 |
msgstr "Hilfe & Support"
|
216 |
|
217 |
+
#: includes/Loader.php:805
|
218 |
msgid "Premium"
|
219 |
msgstr "Premium"
|
220 |
|
221 |
+
#: includes/Loader.php:805 includes/Loader.php:888 includes/B2S/PostBox.php:108 views/b2s/network.php:33 views/b2s/ship.php:21 includes/B2S/Curation/View.php:53 includes/B2S/Network/Item.php:148 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:155
|
222 |
+
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:250 includes/B2S/Network/Item.php:312 includes/B2S/Network/Item.php:374 includes/B2S/Settings/Item.php:102 includes/B2S/Ship/Image.php:73 includes/B2S/Ship/Image.php:80 includes/B2S/Ship/Item.php:787
|
223 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:38 views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
224 |
msgid "PREMIUM"
|
225 |
msgstr "PREMIUM"
|
226 |
|
227 |
+
#: includes/Loader.php:825
|
228 |
msgid "Blog2Social"
|
229 |
msgstr "Blog2Social"
|
230 |
|
231 |
+
#: includes/Loader.php:1285 includes/Loader.php:1470
|
232 |
msgid "or"
|
233 |
msgstr "oder"
|
234 |
|
235 |
+
#: includes/Loader.php:1285 includes/Loader.php:1470
|
236 |
msgid "back to install plugins"
|
237 |
msgstr "zurück zur Pluginübersicht"
|
238 |
|
314 |
msgid "Unknown username"
|
315 |
msgstr "unbekannter Blognutzer"
|
316 |
|
317 |
+
#: includes/Ajax/Post.php:1357 includes/B2S/Network/Item.php:466 includes/B2S/Post/Item.php:606 includes/B2S/Post/Item.php:655 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:764 includes/B2S/Ship/Item.php:914
|
318 |
msgid "delete"
|
319 |
msgstr "löschen"
|
320 |
|
350 |
msgid "Custom Sharing & Scheduling"
|
351 |
msgstr "Anpassen & Planen"
|
352 |
|
353 |
+
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101 views/b2s/ship.php:60 views/b2s/ship.php:150 views/b2s/ship.php:237 includes/B2S/Network/Item.php:170 includes/B2S/Ship/Item.php:728
|
354 |
msgid "Info"
|
355 |
msgstr "Info"
|
356 |
|
507 |
msgid "Select date:"
|
508 |
msgstr "Datum auswählen:"
|
509 |
|
510 |
+
#: includes/B2S/PostBox.php:234 includes/B2S/Ship/Item.php:347
|
511 |
msgid "show calendar"
|
512 |
msgstr "Planungskalender anzeigen"
|
513 |
|
591 |
msgid "Blog2Social Premium covers everything you need."
|
592 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
593 |
|
594 |
+
#: views/b2s/curation.php:115 views/b2s/post.calendar.php:265 views/b2s/ship.php:383 includes/B2S/Ship/Item.php:788
|
595 |
msgid "Schedule for specific dates"
|
596 |
msgstr "Für bestimmte Termine planen"
|
597 |
|
691 |
msgid "Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings."
|
692 |
msgstr "Google erlaubt derzeit den Zugriff auf die API für alle Unternehmen mit bis zu 9 Standorten. Google plant, den Zugriff auf die API in Zukunft auch auf Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My Business Brancheneinträgen zu erweitern."
|
693 |
|
694 |
+
#: views/b2s/network.php:126 views/b2s/premium.php:35 views/b2s/ship.php:469 includes/B2S/Ship/Item.php:826 views/b2s/partials/post-edit-modal.php:48
|
695 |
msgid "Learn more"
|
696 |
msgstr "Mehr erfahren"
|
697 |
|
884 |
msgid "The tags you have set in your post."
|
885 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast"
|
886 |
|
887 |
+
#: views/b2s/network.php:433 includes/B2S/Network/Item.php:624
|
888 |
+
msgid "Character limit"
|
889 |
msgstr "Zeichenbegrenzung"
|
890 |
|
891 |
#: views/b2s/network.php:436
|
892 |
+
msgid "Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" individually. Your text will be shortened after the last comma, period, or space character within your character limit."
|
893 |
+
msgstr "Lege das Zeichenlimit für die Variablen \"Textauszug\" (EXCERPT) und \"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
894 |
+
|
895 |
+
#: views/b2s/network.php:437
|
896 |
+
msgid "An \"EXCERPT\" will only be added to your social media post if you have added a manual excerpt in the excerpt editing box of the Gutenberg side menu (document settings) of your post."
|
897 |
+
msgstr ""
|
898 |
+
"Ein “Textauszug” wird nur in Deinen Social-Media-Beitrag eingefügt, wenn Du einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü (Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. \n"
|
899 |
+
|
900 |
+
#: views/b2s/network.php:438
|
901 |
+
msgid ""
|
902 |
+
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the \"TITLE\" and \"KEYWORD\" variables for your social media posts, the character limit you define for the \"EXCERPT\" and/or \"CONTENT\" variables will be applied within the remaining available "
|
903 |
+
"character limit of the social network."
|
904 |
+
msgstr ""
|
905 |
+
"“Titel” (TITLE) und “Hashtags” (KEYWORDS) werden nicht gekürzt. Wenn Du die Variablen “Titel” und “Hashtag” für Deine Social-Media-Posts auswählst, wird die von Dir definierte Zeichenanzahl für die Variablen \"Textauszug\" und/oder \"Inhalt\" innerhalb der darüber hinaus "
|
906 |
+
"verfügbaren Zeichenanzahl des jeweiligen Social Networks berücksichtigt."
|
907 |
|
908 |
#: views/b2s/post.approve.php:81
|
909 |
msgid "Delete Social Media Posts"
|
1613 |
msgid "immediately"
|
1614 |
msgstr "sofort"
|
1615 |
|
1616 |
+
#: includes/B2S/Curation/View.php:66 includes/B2S/Curation/View.php:67 includes/B2S/Ship/Item.php:896 views/b2s/partials/post-edit-modal.php:62 views/b2s/partials/post-edit-modal.php:65
|
1617 |
msgid "Date"
|
1618 |
msgstr "Startdatum"
|
1619 |
|
1685 |
msgid "Assigned by"
|
1686 |
msgstr "Zugewiesen von"
|
1687 |
|
1688 |
+
#: includes/B2S/Network/Item.php:248 includes/B2S/Network/Item.php:310 includes/B2S/Network/Item.php:372 includes/B2S/Ship/Item.php:844
|
1689 |
msgid "Days"
|
1690 |
msgstr "Tage"
|
1691 |
|
1692 |
+
#: includes/B2S/Network/Item.php:278 includes/B2S/Ship/Item.php:287
|
1693 |
msgid "Employer Branding"
|
1694 |
msgstr "Arbeitgeber"
|
1695 |
|
1717 |
msgid "Activate Instant Caching"
|
1718 |
msgstr "Instant Caching aktivieren"
|
1719 |
|
1720 |
+
#: includes/B2S/Network/Item.php:577
|
1721 |
msgid "Format"
|
1722 |
msgstr "Format"
|
1723 |
|
1724 |
+
#: includes/B2S/Network/Item.php:578
|
1725 |
msgid "Load default settings"
|
1726 |
msgstr "Lade Standardeinstellungen"
|
1727 |
|
1728 |
+
#: includes/B2S/Network/Item.php:584 includes/B2S/Network/Item.php:587 includes/B2S/Ship/Item.php:609 includes/B2S/Ship/Item.php:611
|
1729 |
msgid "Link"
|
1730 |
msgstr "Link"
|
1731 |
|
1732 |
+
#: includes/B2S/Network/Item.php:584 includes/B2S/Network/Item.php:587 includes/B2S/Settings/Item.php:382
|
1733 |
msgid "Image with frame"
|
1734 |
msgstr "Bild mit Rahmen"
|
1735 |
|
1736 |
+
#: includes/B2S/Network/Item.php:585 includes/B2S/Network/Item.php:588
|
1737 |
msgid "Image"
|
1738 |
msgstr "Bild"
|
1739 |
|
1740 |
+
#: includes/B2S/Network/Item.php:585 includes/B2S/Network/Item.php:588 includes/B2S/Settings/Item.php:393
|
1741 |
msgid "Image cut out"
|
1742 |
msgstr "Bild zuschneiden"
|
1743 |
|
1744 |
+
#: includes/B2S/Network/Item.php:596 includes/B2S/Settings/Item.php:76
|
1745 |
msgid "Content"
|
1746 |
msgstr "Inhalt"
|
1747 |
|
1748 |
+
#: includes/B2S/Network/Item.php:606
|
1749 |
msgid "clear"
|
1750 |
msgstr "löschen"
|
1751 |
|
1752 |
+
#: includes/B2S/Network/Item.php:615
|
1753 |
msgid "The link will be added automatically at the end of the post."
|
1754 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt"
|
1755 |
|
1756 |
+
#: includes/B2S/Network/Item.php:617 includes/B2S/Network/Item.php:643
|
1757 |
+
msgid "Network limit"
|
1758 |
+
msgstr "Netzwerkbegrenzung"
|
1759 |
|
1760 |
+
#: includes/B2S/Network/Item.php:617 includes/B2S/Network/Item.php:643 includes/B2S/Network/Item.php:643 includes/B2S/Ship/Item.php:180 includes/B2S/Ship/Item.php:184 includes/B2S/Ship/Item.php:225 includes/B2S/Ship/Item.php:229 includes/B2S/Ship/Item.php:255
|
1761 |
+
#: includes/B2S/Ship/Item.php:259 includes/B2S/Ship/Item.php:923 includes/B2S/Ship/Item.php:925
|
1762 |
msgid "characters"
|
1763 |
msgstr "Zeichen"
|
1764 |
|
1765 |
+
#: includes/B2S/Network/Item.php:643
|
1766 |
+
msgid "recommended length"
|
1767 |
+
msgstr "Empfohlene Länge"
|
1768 |
|
1769 |
+
#: includes/B2S/Network/Item.php:663 includes/B2S/Network/Item.php:715 includes/B2S/Network/Item.php:769 includes/B2S/Network/Item.php:821
|
1770 |
msgid "Preview"
|
1771 |
msgstr "Vorschau"
|
1772 |
|
1954 |
msgid "delete scheduling"
|
1955 |
msgstr "Planung löschen"
|
1956 |
|
1957 |
+
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:746
|
1958 |
msgid "Account"
|
1959 |
msgstr "Konto"
|
1960 |
|
2236 |
msgid "Network does not support image for profiles"
|
2237 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
2238 |
|
2239 |
+
#: includes/B2S/Ship/Item.php:138 includes/B2S/Ship/Item.php:196
|
2240 |
msgid "Network defines image by link"
|
2241 |
msgstr "Netzwerk wählt selber das Bild aus"
|
2242 |
|
2244 |
msgid "Supported HTML tags"
|
2245 |
msgstr "Erlaubte HTML-Elemente"
|
2246 |
|
2247 |
+
#: includes/B2S/Ship/Item.php:141 includes/B2S/Ship/Item.php:195
|
2248 |
msgid "Network does not support emojis"
|
2249 |
msgstr "Netzwerk unterstützt keine Emojis"
|
2250 |
|
2251 |
+
#: includes/B2S/Ship/Item.php:179
|
2252 |
msgid "Text only"
|
2253 |
msgstr "nur Text"
|
2254 |
|
2255 |
+
#: includes/B2S/Ship/Item.php:194
|
2256 |
msgid "Network does not support image for pages"
|
2257 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
2258 |
|
2259 |
+
#: includes/B2S/Ship/Item.php:279
|
2260 |
msgid "Connection expires on 31 March 2019"
|
2261 |
msgstr "Verbindung läuft ab 31.März 2019 ab"
|
2262 |
|
2263 |
+
#: includes/B2S/Ship/Item.php:283
|
2264 |
msgid "Connection expires on 2 April 2019"
|
2265 |
msgstr "Verbindung läuft ab 2. April 2019 ab"
|
2266 |
|
2267 |
+
#: includes/B2S/Ship/Item.php:296
|
2268 |
msgid "post format"
|
2269 |
msgstr "Postformat"
|
2270 |
|
2271 |
+
#: includes/B2S/Ship/Item.php:306 includes/B2S/Ship/Item.php:931
|
2272 |
msgid "Insert full-text"
|
2273 |
msgstr "ganzen Text einfügen"
|
2274 |
|
2275 |
+
#: includes/B2S/Ship/Item.php:308 includes/B2S/Ship/Item.php:933
|
2276 |
msgid "Delete text"
|
2277 |
msgstr "Text löschen"
|
2278 |
|
2279 |
+
#: includes/B2S/Ship/Item.php:316
|
2280 |
msgid "You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post."
|
2281 |
msgstr "Du kannst Deinen Post mit individuellen Kommentaren, @-Handles, Emojis und mehr im Fenster \"Instant Sharing\" anpassen, nachdem Du Deinen Post geplant hast."
|
2282 |
|
2283 |
+
#: includes/B2S/Ship/Item.php:322 includes/B2S/Ship/Item.php:517 includes/B2S/Ship/Item.php:797
|
2284 |
msgid "Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
2285 |
msgstr "Bitte beachten Sie, dass es nach den neuen AGB von Twitter nicht mehr erlaubt ist, identische oder im Wesentlichen ähnliche Inhalte auf mehreren Accounts oder mehrere identische Updates auf einem Twitter Account oder auch mehreren Accounts zu posten."
|
2286 |
|
2287 |
+
#: includes/B2S/Ship/Item.php:322 includes/B2S/Ship/Item.php:517 includes/B2S/Ship/Item.php:797
|
2288 |
msgid "Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts."
|
2289 |
msgstr "Ein Verstoß gegen diese Regeln kann dazu führen, dass Twitter Ihren Account sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
2290 |
|
2291 |
+
#: includes/B2S/Ship/Item.php:322 includes/B2S/Ship/Item.php:517 includes/B2S/Ship/Item.php:797
|
2292 |
msgid "Learn more about this"
|
2293 |
msgstr "Erfahre mehr darüber"
|
2294 |
|
2295 |
+
#: includes/B2S/Ship/Item.php:327
|
2296 |
msgid "Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups."
|
2297 |
msgstr "Bitte beachte: XING erlaubt die Veröffentlichung identischer Beiträge nur einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen Gruppen."
|
2298 |
|
2299 |
+
#: includes/B2S/Ship/Item.php:327
|
2300 |
msgid "Read more"
|
2301 |
msgstr "mehr erfahren"
|
2302 |
|
2303 |
+
#: includes/B2S/Ship/Item.php:347
|
2304 |
msgid "hide calendar"
|
2305 |
msgstr "Planungskalender verbergen"
|
2306 |
|
2307 |
+
#: includes/B2S/Ship/Item.php:402 includes/B2S/Ship/Item.php:426 includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:509 includes/B2S/Ship/Item.php:527 includes/B2S/Ship/Item.php:543
|
2308 |
+
#: includes/B2S/Ship/Item.php:556 includes/B2S/Ship/Item.php:572 includes/B2S/Ship/Item.php:577
|
2309 |
msgid "Write something about your post..."
|
2310 |
msgstr "Schreibe etwas..."
|
2311 |
|
2312 |
+
#: includes/B2S/Ship/Item.php:409 includes/B2S/Ship/Item.php:433 includes/B2S/Ship/Item.php:457 includes/B2S/Ship/Item.php:505 includes/B2S/Ship/Item.php:523 includes/B2S/Ship/Item.php:539 includes/B2S/Ship/Item.php:568 includes/B2S/Ship/Item.php:602
|
2313 |
msgid "Change image"
|
2314 |
msgstr "Bild ändern"
|
2315 |
|
2316 |
+
#: includes/B2S/Ship/Item.php:413
|
2317 |
msgid "Info: Change Open Graph Meta tags image, title and description for this network"
|
2318 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
2319 |
|
2320 |
+
#: includes/B2S/Ship/Item.php:416 includes/B2S/Ship/Item.php:440
|
2321 |
msgid "You want to change your link image, link title and link description for this network? Click here."
|
2322 |
msgstr "Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
2323 |
|
2324 |
+
#: includes/B2S/Ship/Item.php:418
|
2325 |
msgid "OG Meta title"
|
2326 |
msgstr "OG Titel"
|
2327 |
|
2328 |
+
#: includes/B2S/Ship/Item.php:419
|
2329 |
msgid "OG Meta description"
|
2330 |
msgstr "OG Beschreibung"
|
2331 |
|
2332 |
+
#: includes/B2S/Ship/Item.php:437
|
2333 |
msgid "Info: Change Card Meta tags image, title and description for this network"
|
2334 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
2335 |
|
2336 |
+
#: includes/B2S/Ship/Item.php:442
|
2337 |
msgid "Card Meta title"
|
2338 |
msgstr "Card Titel"
|
2339 |
|
2340 |
+
#: includes/B2S/Ship/Item.php:443
|
2341 |
msgid "Card Meta description"
|
2342 |
msgstr "Card Beschreibung"
|
2343 |
|
2344 |
+
#: includes/B2S/Ship/Item.php:589
|
2345 |
msgid "required"
|
2346 |
msgstr "erforderlich"
|
2347 |
|
2348 |
+
#: includes/B2S/Ship/Item.php:679
|
2349 |
msgid "Jobs & Projects"
|
2350 |
msgstr "Jobs & Projekte"
|
2351 |
|
2352 |
+
#: includes/B2S/Ship/Item.php:680
|
2353 |
msgid "Events"
|
2354 |
msgstr "Veranstaltungen"
|
2355 |
|
2356 |
+
#: includes/B2S/Ship/Item.php:681
|
2357 |
msgid "Classified Ads"
|
2358 |
msgstr "Kleinanzeigen"
|
2359 |
|
2360 |
+
#: includes/B2S/Ship/Item.php:683
|
2361 |
msgid "Offer"
|
2362 |
msgstr "Angebot"
|
2363 |
|
2364 |
+
#: includes/B2S/Ship/Item.php:684
|
2365 |
msgid "Request"
|
2366 |
msgstr "Gesucht"
|
2367 |
|
2368 |
+
#: includes/B2S/Ship/Item.php:695
|
2369 |
msgid "The Headline..."
|
2370 |
msgstr "Die Überschrift..."
|
2371 |
|
2372 |
+
#: includes/B2S/Ship/Item.php:700
|
2373 |
msgid "Hashtags"
|
2374 |
msgstr "Hashtags"
|
2375 |
|
2376 |
+
#: includes/B2S/Ship/Item.php:728
|
2377 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
2378 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
2379 |
|
2380 |
+
#: includes/B2S/Ship/Item.php:747 views/b2s/partials/post-edit-modal.php:73
|
2381 |
msgid "Delay"
|
2382 |
msgstr "Verzögerung"
|
2383 |
|
2384 |
+
#: includes/B2S/Ship/Item.php:757 includes/B2S/Ship/Item.php:758 includes/B2S/Ship/Item.php:759 includes/B2S/Ship/Item.php:760 views/b2s/partials/post-edit-modal.php:77 views/b2s/partials/post-edit-modal.php:78 views/b2s/partials/post-edit-modal.php:79
|
2385 |
#: views/b2s/partials/post-edit-modal.php:80
|
2386 |
msgid "min"
|
2387 |
msgstr "min"
|
2388 |
|
2389 |
+
#: includes/B2S/Ship/Item.php:765
|
2390 |
msgid "Add Retweet"
|
2391 |
msgstr "Retweet hinzufügen"
|
2392 |
|
2393 |
+
#: includes/B2S/Ship/Item.php:785
|
2394 |
msgid "Share Now"
|
2395 |
msgstr "Sofort teilen"
|
2396 |
|
2397 |
+
#: includes/B2S/Ship/Item.php:790
|
2398 |
msgid "Schedule Recurrent Post"
|
2399 |
msgstr "regelmäßig Planen"
|
2400 |
|
2401 |
+
#: includes/B2S/Ship/Item.php:826 views/b2s/partials/post-edit-modal.php:47
|
2402 |
msgid ""
|
2403 |
"Please note: Your account is connected via an old XING API that is no longer supported by XING after March 31. Please connect your XING profile, as well as your XING company pages (Employer branding profiles) and business pages with the new XING interface in the Blog2Social "
|
2404 |
"network settings. To do this, go to the Blog2Social Networks section and connect your XING accounts with the new XING."
|
2406 |
"Bitte beachte: Deine Accounts sind über eine alte XING-Schnittstelle verbunden, die nicht weiter von XING unterstützt wird. Bitte verbinde Dein XING-Profil sowie Deine XING-Unternehmensseiten- (Arbeitgeberprofile) und Business Pages mit der neuen XING-Schnittstelle. Gehe dazu "
|
2407 |
"in den Bereich Blog2Social \"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle"
|
2408 |
|
2409 |
+
#: includes/B2S/Ship/Item.php:830 views/b2s/partials/post-edit-modal.php:51
|
2410 |
msgid "Please note: Google will shut down Google+ for all private accounts (profiles, pages, groups) on 2nd April 2019. You can find further information and the next steps, including how to download your photos and other content here:"
|
2411 |
msgstr "Bitte beachte. Google stellt das Netzwerk Google+ für alle private Konten (Profile, Seiten und Gruppen) zum 02. April 2019 ein. Hier findest Du Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und andere Inhalte herunterladen kannst:"
|
2412 |
|
2413 |
+
#: includes/B2S/Ship/Item.php:833
|
2414 |
msgid "Repeats"
|
2415 |
msgstr "Wdh."
|
2416 |
|
2417 |
+
#: includes/B2S/Ship/Item.php:834 includes/B2S/Ship/Item.php:837
|
2418 |
msgid "Duration"
|
2419 |
msgstr "Dauer"
|
2420 |
|
2421 |
+
#: includes/B2S/Ship/Item.php:838
|
2422 |
msgid "Number of repeats"
|
2423 |
msgstr "Anzahl der Wdh."
|
2424 |
|
2425 |
+
#: includes/B2S/Ship/Item.php:839
|
2426 |
msgid "Day of month"
|
2427 |
msgstr "Tag im Monat"
|
2428 |
|
2429 |
+
#: includes/B2S/Ship/Item.php:840
|
2430 |
msgid "Repeats every (days)"
|
2431 |
msgstr "Alle (Tage) wiederholen"
|
2432 |
|
2433 |
+
#: includes/B2S/Ship/Item.php:842
|
2434 |
msgid "Start date"
|
2435 |
msgstr "Startdatum"
|
2436 |
|
2437 |
+
#: includes/B2S/Ship/Item.php:843
|
2438 |
msgid "Time to publish"
|
2439 |
msgstr "Veröffentlichungszeit"
|
2440 |
|
2441 |
+
#: includes/B2S/Ship/Item.php:852
|
2442 |
msgid "weekly"
|
2443 |
msgstr "wöchentlich"
|
2444 |
|
2445 |
+
#: includes/B2S/Ship/Item.php:853
|
2446 |
msgid "monthly"
|
2447 |
msgstr "monatlich"
|
2448 |
|
2449 |
+
#: includes/B2S/Ship/Item.php:854
|
2450 |
msgid "own period"
|
2451 |
msgstr "Eigener Zeitraum"
|
2452 |
|
2453 |
+
#: includes/B2S/Ship/Item.php:860
|
2454 |
msgid "Week"
|
2455 |
msgstr "Woche"
|
2456 |
|
2457 |
+
#: includes/B2S/Ship/Item.php:860
|
2458 |
msgid "Weeks"
|
2459 |
msgstr "Wochen"
|
2460 |
|
2461 |
+
#: includes/B2S/Ship/Item.php:869
|
2462 |
msgid "Month"
|
2463 |
msgstr "Monat"
|
2464 |
|
2465 |
+
#: includes/B2S/Ship/Item.php:869
|
2466 |
msgid "Months"
|
2467 |
msgstr "Monate"
|
2468 |
|
2469 |
+
#: includes/B2S/Ship/Item.php:889
|
2470 |
msgid "End Of Month"
|
2471 |
msgstr "Monatsende"
|
2472 |
|
2473 |
+
#: includes/B2S/Ship/Item.php:894
|
2474 |
msgid "Timespan"
|
2475 |
msgstr "Zeitspanne"
|
2476 |
|
2477 |
+
#: includes/B2S/Ship/Item.php:897 views/b2s/partials/post-edit-modal.php:63 views/b2s/partials/post-edit-modal.php:66
|
2478 |
msgid "Time"
|
2479 |
msgstr "Mal"
|
2480 |
|
2481 |
+
#: includes/B2S/Ship/Item.php:902
|
2482 |
msgid "Mon"
|
2483 |
msgstr "Mo"
|
2484 |
|
2485 |
+
#: includes/B2S/Ship/Item.php:903
|
2486 |
msgid "Tue"
|
2487 |
msgstr "Di"
|
2488 |
|
2489 |
+
#: includes/B2S/Ship/Item.php:904
|
2490 |
msgid "Wed"
|
2491 |
msgstr "Mi"
|
2492 |
|
2493 |
+
#: includes/B2S/Ship/Item.php:905
|
2494 |
msgid "Thu"
|
2495 |
msgstr "Do"
|
2496 |
|
2497 |
+
#: includes/B2S/Ship/Item.php:906
|
2498 |
msgid "Fri"
|
2499 |
msgstr "Fr"
|
2500 |
|
2501 |
+
#: includes/B2S/Ship/Item.php:907
|
2502 |
msgid "Sat"
|
2503 |
msgstr "Sa"
|
2504 |
|
2505 |
+
#: includes/B2S/Ship/Item.php:908
|
2506 |
msgid "Sun"
|
2507 |
msgstr "So"
|
2508 |
|
2509 |
+
#: includes/B2S/Ship/Item.php:915
|
2510 |
msgid "add another post"
|
2511 |
msgstr "einen weiteren Post anlegen"
|
2512 |
|
2513 |
+
#: includes/B2S/Ship/Item.php:929
|
2514 |
msgid "Copy from original"
|
2515 |
msgstr "Originaltext kopieren"
|
2516 |
|
2517 |
+
#: includes/B2S/Ship/Item.php:945
|
2518 |
msgid "Apply Settings To All Networks"
|
2519 |
msgstr "Planung für alle Netzwerke übernehmen"
|
2520 |
|
2521 |
+
#: includes/B2S/Ship/Item.php:946
|
2522 |
msgid "Save as best time for this network"
|
2523 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
2524 |
|
languages/blog2social.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2019-07-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -31,205 +31,205 @@ msgstr ""
|
|
31 |
msgid "Modify forum"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: includes/Loader.php:
|
35 |
msgid "Auto-Post on Social Media"
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: includes/Loader.php:
|
39 |
msgid "Social Media Content Calendar"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: includes/Loader.php:
|
43 |
msgid "This post will be shared into your social media from"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/Loader.php:
|
47 |
msgid "show details"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/Loader.php:
|
51 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/Loader.php:
|
55 |
msgid "Please, make sure that your post are publish on this blog on this moment. Then you can auto post your post with Blog2social."
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/Loader.php:
|
59 |
msgid "There are no authorizations for your selected profile. Please, authorize with a social network or select a other profile."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes/Loader.php:
|
63 |
msgid "Upgrade to Premium"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/Loader.php:
|
67 |
msgid "Notifications"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: includes/Loader.php:
|
71 |
msgid "Shared Posts"
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: includes/Loader.php:
|
75 |
msgid "Instant Sharing"
|
76 |
msgstr ""
|
77 |
|
78 |
-
#: includes/Loader.php:
|
79 |
msgid "Scheduled Posts"
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: includes/Loader.php:
|
83 |
msgid "Content Curation Drafts"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: includes/Loader.php:
|
87 |
msgid "Profile"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/Loader.php:
|
91 |
msgid "Page"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes/Loader.php:
|
95 |
msgid "Group"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/Loader.php:
|
99 |
msgid "Company"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/Loader.php:
|
103 |
msgid "Business"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/Loader.php:
|
107 |
msgid "Your post could not be posted."
|
108 |
msgstr ""
|
109 |
|
110 |
-
#: includes/Loader.php:
|
111 |
msgid "Your authorization has expired. Please reconnect your account in the Blog2Social network settings."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#: includes/Loader.php:
|
115 |
msgid "The network has marked the post as spam or abusive."
|
116 |
msgstr ""
|
117 |
|
118 |
-
#: includes/Loader.php:
|
119 |
msgid "We don't have the permission to publish your post. Please check your authorization."
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/Loader.php:
|
123 |
msgid "Your authorization is interrupted. Please check your authorization. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes/Loader.php:
|
127 |
msgid "Your daily limit has been reached."
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: includes/Loader.php:
|
131 |
msgid "Your post could not be posted, because your image is not available or the image source does not allow to publish"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: includes/Loader.php:
|
135 |
msgid "The network has blocked your account. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/Loader.php:
|
139 |
msgid "The number of images is reached. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
140 |
msgstr ""
|
141 |
|
142 |
-
#: includes/Loader.php:
|
143 |
msgid "Your daily limit for this network has been reached. Please try again later."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/Loader.php:
|
147 |
msgid "The network can not publish special characters such as Emoji. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: includes/Loader.php:
|
151 |
msgid "Your post is a duplicate."
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: includes/Loader.php:
|
155 |
msgid "The network requires a public url."
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: includes/Loader.php:
|
159 |
msgid "Your blog post was not available for the network at the time of publication."
|
160 |
msgstr ""
|
161 |
|
162 |
-
#: includes/Loader.php:
|
163 |
msgid "You have already retweeted this post."
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/Loader.php:
|
167 |
msgid "This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts. <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=146\">Learn more</a>"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/Loader.php:
|
171 |
msgid "There was no image in the meta data of the linked post. Posts without images cannot be shared on image networks."
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: includes/Loader.php:
|
175 |
msgid "Your post could not be posted, because your image can not be processed by the network."
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: includes/Loader.php:
|
179 |
msgid "Your group can not be found by the network."
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/Loader.php:
|
183 |
msgid "Dashboard"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/Loader.php:
|
187 |
msgid "Posts & Sharing"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/Loader.php:
|
191 |
msgid "Calendar"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/Loader.php:
|
195 |
msgid "Content Curation"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/Loader.php:
|
199 |
msgid "Networks"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: includes/Loader.php:
|
203 |
msgid "Settings"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: includes/Loader.php:
|
207 |
msgid "PR-Service"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: includes/Loader.php:
|
211 |
msgid "Help & Support"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: includes/Loader.php:
|
215 |
msgid "Premium"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/Loader.php:
|
219 |
-
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:250 includes/B2S/Network/Item.php:312 includes/B2S/Network/Item.php:374 includes/B2S/Settings/Item.php:102 includes/B2S/Ship/Image.php:73 includes/B2S/Ship/Image.php:80 includes/B2S/Ship/Item.php:
|
220 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:38 views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
221 |
msgid "PREMIUM"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/Loader.php:
|
225 |
msgid "Blog2Social"
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/Loader.php:
|
229 |
msgid "or"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/Loader.php:
|
233 |
msgid "back to install plugins"
|
234 |
msgstr ""
|
235 |
|
@@ -307,7 +307,7 @@ msgstr ""
|
|
307 |
msgid "Unknown username"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: includes/Ajax/Post.php:1357 includes/B2S/Network/Item.php:466 includes/B2S/Post/Item.php:606 includes/B2S/Post/Item.php:655 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:
|
311 |
msgid "delete"
|
312 |
msgstr ""
|
313 |
|
@@ -343,7 +343,7 @@ msgstr ""
|
|
343 |
msgid "Custom Sharing & Scheduling"
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101 views/b2s/ship.php:60 views/b2s/ship.php:150 views/b2s/ship.php:237 includes/B2S/Network/Item.php:170 includes/B2S/Ship/Item.php:
|
347 |
msgid "Info"
|
348 |
msgstr ""
|
349 |
|
@@ -498,7 +498,7 @@ msgstr ""
|
|
498 |
msgid "Select date:"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: includes/B2S/PostBox.php:234 includes/B2S/Ship/Item.php:
|
502 |
msgid "show calendar"
|
503 |
msgstr ""
|
504 |
|
@@ -582,7 +582,7 @@ msgstr ""
|
|
582 |
msgid "Blog2Social Premium covers everything you need."
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: views/b2s/curation.php:115 views/b2s/post.calendar.php:265 views/b2s/ship.php:383 includes/B2S/Ship/Item.php:
|
586 |
msgid "Schedule for specific dates"
|
587 |
msgstr ""
|
588 |
|
@@ -678,7 +678,7 @@ msgstr ""
|
|
678 |
msgid "Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: views/b2s/network.php:126 views/b2s/premium.php:35 views/b2s/ship.php:469 includes/B2S/Ship/Item.php:
|
682 |
msgid "Learn more"
|
683 |
msgstr ""
|
684 |
|
@@ -865,12 +865,22 @@ msgstr ""
|
|
865 |
msgid "The tags you have set in your post."
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: views/b2s/network.php:433 includes/B2S/Network/Item.php:
|
869 |
-
msgid "Character
|
870 |
msgstr ""
|
871 |
|
872 |
#: views/b2s/network.php:436
|
873 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
874 |
msgstr ""
|
875 |
|
876 |
#: views/b2s/post.approve.php:81
|
@@ -1562,7 +1572,7 @@ msgstr ""
|
|
1562 |
msgid "immediately"
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#: includes/B2S/Curation/View.php:66 includes/B2S/Curation/View.php:67 includes/B2S/Ship/Item.php:
|
1566 |
msgid "Date"
|
1567 |
msgstr ""
|
1568 |
|
@@ -1634,11 +1644,11 @@ msgstr ""
|
|
1634 |
msgid "Assigned by"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: includes/B2S/Network/Item.php:248 includes/B2S/Network/Item.php:310 includes/B2S/Network/Item.php:372 includes/B2S/Ship/Item.php:
|
1638 |
msgid "Days"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
-
#: includes/B2S/Network/Item.php:278 includes/B2S/Ship/Item.php:
|
1642 |
msgid "Employer Branding"
|
1643 |
msgstr ""
|
1644 |
|
@@ -1666,56 +1676,56 @@ msgstr ""
|
|
1666 |
msgid "Activate Instant Caching"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: includes/B2S/Network/Item.php:
|
1670 |
msgid "Format"
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: includes/B2S/Network/Item.php:
|
1674 |
msgid "Load default settings"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: includes/B2S/Network/Item.php:
|
1678 |
msgid "Link"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: includes/B2S/Network/Item.php:
|
1682 |
msgid "Image with frame"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: includes/B2S/Network/Item.php:
|
1686 |
msgid "Image"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: includes/B2S/Network/Item.php:
|
1690 |
msgid "Image cut out"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: includes/B2S/Network/Item.php:
|
1694 |
msgid "Content"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: includes/B2S/Network/Item.php:
|
1698 |
msgid "clear"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: includes/B2S/Network/Item.php:
|
1702 |
msgid "The link will be added automatically at the end of the post."
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: includes/B2S/Network/Item.php:
|
1706 |
-
msgid "
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/B2S/Network/Item.php:
|
1710 |
-
#: includes/B2S/Ship/Item.php:
|
1711 |
msgid "characters"
|
1712 |
msgstr ""
|
1713 |
|
1714 |
-
#: includes/B2S/Network/Item.php:
|
1715 |
-
msgid "
|
1716 |
msgstr ""
|
1717 |
|
1718 |
-
#: includes/B2S/Network/Item.php:
|
1719 |
msgid "Preview"
|
1720 |
msgstr ""
|
1721 |
|
@@ -1903,7 +1913,7 @@ msgstr ""
|
|
1903 |
msgid "delete scheduling"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:
|
1907 |
msgid "Account"
|
1908 |
msgstr ""
|
1909 |
|
@@ -2180,7 +2190,7 @@ msgstr ""
|
|
2180 |
msgid "Network does not support image for profiles"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: includes/B2S/Ship/Item.php:138 includes/B2S/Ship/Item.php:
|
2184 |
msgid "Network defines image by link"
|
2185 |
msgstr ""
|
2186 |
|
@@ -2188,279 +2198,279 @@ msgstr ""
|
|
2188 |
msgid "Supported HTML tags"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: includes/B2S/Ship/Item.php:141 includes/B2S/Ship/Item.php:
|
2192 |
msgid "Network does not support emojis"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: includes/B2S/Ship/Item.php:
|
2196 |
msgid "Text only"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: includes/B2S/Ship/Item.php:
|
2200 |
msgid "Network does not support image for pages"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: includes/B2S/Ship/Item.php:
|
2204 |
msgid "Connection expires on 31 March 2019"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: includes/B2S/Ship/Item.php:
|
2208 |
msgid "Connection expires on 2 April 2019"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: includes/B2S/Ship/Item.php:
|
2212 |
msgid "post format"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: includes/B2S/Ship/Item.php:
|
2216 |
msgid "Insert full-text"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: includes/B2S/Ship/Item.php:
|
2220 |
msgid "Delete text"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: includes/B2S/Ship/Item.php:
|
2224 |
msgid "You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post."
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: includes/B2S/Ship/Item.php:
|
2228 |
msgid "Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: includes/B2S/Ship/Item.php:
|
2232 |
msgid "Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts."
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: includes/B2S/Ship/Item.php:
|
2236 |
msgid "Learn more about this"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: includes/B2S/Ship/Item.php:
|
2240 |
msgid "Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups."
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: includes/B2S/Ship/Item.php:
|
2244 |
msgid "Read more"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: includes/B2S/Ship/Item.php:
|
2248 |
msgid "hide calendar"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: includes/B2S/Ship/Item.php:
|
2252 |
-
#: includes/B2S/Ship/Item.php:
|
2253 |
msgid "Write something about your post..."
|
2254 |
msgstr ""
|
2255 |
|
2256 |
-
#: includes/B2S/Ship/Item.php:
|
2257 |
msgid "Change image"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
-
#: includes/B2S/Ship/Item.php:
|
2261 |
msgid "Info: Change Open Graph Meta tags image, title and description for this network"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
-
#: includes/B2S/Ship/Item.php:
|
2265 |
msgid "You want to change your link image, link title and link description for this network? Click here."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: includes/B2S/Ship/Item.php:
|
2269 |
msgid "OG Meta title"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: includes/B2S/Ship/Item.php:
|
2273 |
msgid "OG Meta description"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: includes/B2S/Ship/Item.php:
|
2277 |
msgid "Info: Change Card Meta tags image, title and description for this network"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: includes/B2S/Ship/Item.php:
|
2281 |
msgid "Card Meta title"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: includes/B2S/Ship/Item.php:
|
2285 |
msgid "Card Meta description"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: includes/B2S/Ship/Item.php:
|
2289 |
msgid "required"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: includes/B2S/Ship/Item.php:
|
2293 |
msgid "Jobs & Projects"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: includes/B2S/Ship/Item.php:
|
2297 |
msgid "Events"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#: includes/B2S/Ship/Item.php:
|
2301 |
msgid "Classified Ads"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
#: includes/B2S/Ship/Item.php:
|
2305 |
msgid "Offer"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
-
#: includes/B2S/Ship/Item.php:
|
2309 |
msgid "Request"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
-
#: includes/B2S/Ship/Item.php:
|
2313 |
msgid "The Headline..."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: includes/B2S/Ship/Item.php:
|
2317 |
msgid "Hashtags"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: includes/B2S/Ship/Item.php:
|
2321 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
-
#: includes/B2S/Ship/Item.php:
|
2325 |
msgid "Delay"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: includes/B2S/Ship/Item.php:
|
2329 |
#: views/b2s/partials/post-edit-modal.php:80
|
2330 |
msgid "min"
|
2331 |
msgstr ""
|
2332 |
|
2333 |
-
#: includes/B2S/Ship/Item.php:
|
2334 |
msgid "Add Retweet"
|
2335 |
msgstr ""
|
2336 |
|
2337 |
-
#: includes/B2S/Ship/Item.php:
|
2338 |
msgid "Share Now"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: includes/B2S/Ship/Item.php:
|
2342 |
msgid "Schedule Recurrent Post"
|
2343 |
msgstr ""
|
2344 |
|
2345 |
-
#: includes/B2S/Ship/Item.php:
|
2346 |
msgid ""
|
2347 |
"Please note: Your account is connected via an old XING API that is no longer supported by XING after March 31. Please connect your XING profile, as well as your XING company pages (Employer branding profiles) and business pages with the new XING interface in the Blog2Social "
|
2348 |
"network settings. To do this, go to the Blog2Social Networks section and connect your XING accounts with the new XING."
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: includes/B2S/Ship/Item.php:
|
2352 |
msgid "Please note: Google will shut down Google+ for all private accounts (profiles, pages, groups) on 2nd April 2019. You can find further information and the next steps, including how to download your photos and other content here:"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
-
#: includes/B2S/Ship/Item.php:
|
2356 |
msgid "Repeats"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: includes/B2S/Ship/Item.php:
|
2360 |
msgid "Duration"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: includes/B2S/Ship/Item.php:
|
2364 |
msgid "Number of repeats"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: includes/B2S/Ship/Item.php:
|
2368 |
msgid "Day of month"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: includes/B2S/Ship/Item.php:
|
2372 |
msgid "Repeats every (days)"
|
2373 |
msgstr ""
|
2374 |
|
2375 |
-
#: includes/B2S/Ship/Item.php:
|
2376 |
msgid "Start date"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
-
#: includes/B2S/Ship/Item.php:
|
2380 |
msgid "Time to publish"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: includes/B2S/Ship/Item.php:
|
2384 |
msgid "weekly"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: includes/B2S/Ship/Item.php:
|
2388 |
msgid "monthly"
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#: includes/B2S/Ship/Item.php:
|
2392 |
msgid "own period"
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/B2S/Ship/Item.php:
|
2396 |
msgid "Week"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: includes/B2S/Ship/Item.php:
|
2400 |
msgid "Weeks"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: includes/B2S/Ship/Item.php:
|
2404 |
msgid "Month"
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: includes/B2S/Ship/Item.php:
|
2408 |
msgid "Months"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: includes/B2S/Ship/Item.php:
|
2412 |
msgid "End Of Month"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: includes/B2S/Ship/Item.php:
|
2416 |
msgid "Timespan"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: includes/B2S/Ship/Item.php:
|
2420 |
msgid "Time"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: includes/B2S/Ship/Item.php:
|
2424 |
msgid "Mon"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
#: includes/B2S/Ship/Item.php:
|
2428 |
msgid "Tue"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: includes/B2S/Ship/Item.php:
|
2432 |
msgid "Wed"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
-
#: includes/B2S/Ship/Item.php:
|
2436 |
msgid "Thu"
|
2437 |
msgstr ""
|
2438 |
|
2439 |
-
#: includes/B2S/Ship/Item.php:
|
2440 |
msgid "Fri"
|
2441 |
msgstr ""
|
2442 |
|
2443 |
-
#: includes/B2S/Ship/Item.php:
|
2444 |
msgid "Sat"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#: includes/B2S/Ship/Item.php:
|
2448 |
msgid "Sun"
|
2449 |
msgstr ""
|
2450 |
|
2451 |
-
#: includes/B2S/Ship/Item.php:
|
2452 |
msgid "add another post"
|
2453 |
msgstr ""
|
2454 |
|
2455 |
-
#: includes/B2S/Ship/Item.php:
|
2456 |
msgid "Copy from original"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
-
#: includes/B2S/Ship/Item.php:
|
2460 |
msgid "Apply Settings To All Networks"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#: includes/B2S/Ship/Item.php:
|
2464 |
msgid "Save as best time for this network"
|
2465 |
msgstr ""
|
2466 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2019-07-30 07:04+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:364
|
35 |
msgid "Auto-Post on Social Media"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: includes/Loader.php:365
|
39 |
msgid "Social Media Content Calendar"
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: includes/Loader.php:669
|
43 |
msgid "This post will be shared into your social media from"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/Loader.php:669 includes/Loader.php:671
|
47 |
msgid "show details"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/Loader.php:671
|
51 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/Loader.php:675
|
55 |
msgid "Please, make sure that your post are publish on this blog on this moment. Then you can auto post your post with Blog2social."
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/Loader.php:678 includes/B2S/PostBox.php:79
|
59 |
msgid "There are no authorizations for your selected profile. Please, authorize with a social network or select a other profile."
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/Loader.php:690
|
63 |
msgid "Upgrade to Premium"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/Loader.php:720
|
67 |
msgid "Notifications"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: includes/Loader.php:720
|
71 |
msgid "Shared Posts"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/Loader.php:720
|
75 |
msgid "Instant Sharing"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: includes/Loader.php:720 views/b2s/widgets/posts.php:18
|
79 |
msgid "Scheduled Posts"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: includes/Loader.php:720
|
83 |
msgid "Content Curation Drafts"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: includes/Loader.php:721 includes/B2S/Network/Item.php:148 includes/B2S/Network/Item.php:148 includes/B2S/Network/Item.php:217 includes/B2S/Network/Item.php:523 includes/B2S/Settings/Item.php:244 includes/B2S/Ship/Portale.php:38 includes/B2S/Ship/Portale.php:38
|
87 |
msgid "Profile"
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: includes/Loader.php:721 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:525 includes/B2S/Settings/Item.php:244 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:35
|
91 |
msgid "Page"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/Loader.php:721 includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:341 includes/B2S/Network/Item.php:528 includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
95 |
msgid "Group"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/Loader.php:722
|
99 |
msgid "Company"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/Loader.php:722
|
103 |
msgid "Business"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/Loader.php:723
|
107 |
msgid "Your post could not be posted."
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: includes/Loader.php:724
|
111 |
msgid "Your authorization has expired. Please reconnect your account in the Blog2Social network settings."
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: includes/Loader.php:725
|
115 |
msgid "The network has marked the post as spam or abusive."
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: includes/Loader.php:726
|
119 |
msgid "We don't have the permission to publish your post. Please check your authorization."
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/Loader.php:727
|
123 |
msgid "Your authorization is interrupted. Please check your authorization. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/Loader.php:728
|
127 |
msgid "Your daily limit has been reached."
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: includes/Loader.php:729
|
131 |
msgid "Your post could not be posted, because your image is not available or the image source does not allow to publish"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: includes/Loader.php:730
|
135 |
msgid "The network has blocked your account. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: includes/Loader.php:731
|
139 |
msgid "The number of images is reached. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: includes/Loader.php:732
|
143 |
msgid "Your daily limit for this network has been reached. Please try again later."
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/Loader.php:733
|
147 |
msgid "The network can not publish special characters such as Emoji. Please see <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: includes/Loader.php:734
|
151 |
msgid "Your post is a duplicate."
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: includes/Loader.php:735
|
155 |
msgid "The network requires a public url."
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: includes/Loader.php:736
|
159 |
msgid "Your blog post was not available for the network at the time of publication."
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: includes/Loader.php:737
|
163 |
msgid "You have already retweeted this post."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: includes/Loader.php:738
|
167 |
msgid "This XING API is no longer supported by XING. Please connect your XING accounts with the new XING interface to reschedule your posts. <a target=\"_blank\" href=\"https://www.blog2social.com/en/faq/index.php?action=artikel&cat=2&id=146\">Learn more</a>"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/Loader.php:739
|
171 |
msgid "There was no image in the meta data of the linked post. Posts without images cannot be shared on image networks."
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: includes/Loader.php:740
|
175 |
msgid "Your post could not be posted, because your image can not be processed by the network."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/Loader.php:741
|
179 |
msgid "Your group can not be found by the network."
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/Loader.php:797 includes/Loader.php:834
|
183 |
msgid "Dashboard"
|
184 |
msgstr ""
|
185 |
|
186 |
+
#: includes/Loader.php:798 includes/Loader.php:841
|
187 |
msgid "Posts & Sharing"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/Loader.php:799 includes/Loader.php:848 views/b2s/dashboard.php:28
|
191 |
msgid "Calendar"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/Loader.php:800 includes/Loader.php:856
|
195 |
msgid "Content Curation"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/Loader.php:801 includes/Loader.php:863
|
199 |
msgid "Networks"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: includes/Loader.php:802 includes/Loader.php:869
|
203 |
msgid "Settings"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/Loader.php:803 includes/Loader.php:875
|
207 |
msgid "PR-Service"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/Loader.php:804 includes/Loader.php:882
|
211 |
msgid "Help & Support"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: includes/Loader.php:805
|
215 |
msgid "Premium"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: includes/Loader.php:805 includes/Loader.php:888 includes/B2S/PostBox.php:108 views/b2s/network.php:33 views/b2s/ship.php:21 includes/B2S/Curation/View.php:53 includes/B2S/Network/Item.php:148 includes/B2S/Network/Item.php:151 includes/B2S/Network/Item.php:155
|
219 |
+
#: includes/B2S/Network/Item.php:158 includes/B2S/Network/Item.php:250 includes/B2S/Network/Item.php:312 includes/B2S/Network/Item.php:374 includes/B2S/Settings/Item.php:102 includes/B2S/Ship/Image.php:73 includes/B2S/Ship/Image.php:80 includes/B2S/Ship/Item.php:787
|
220 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:38 views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
221 |
msgid "PREMIUM"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/Loader.php:825
|
225 |
msgid "Blog2Social"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/Loader.php:1285 includes/Loader.php:1470
|
229 |
msgid "or"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/Loader.php:1285 includes/Loader.php:1470
|
233 |
msgid "back to install plugins"
|
234 |
msgstr ""
|
235 |
|
307 |
msgid "Unknown username"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/Ajax/Post.php:1357 includes/B2S/Network/Item.php:466 includes/B2S/Post/Item.php:606 includes/B2S/Post/Item.php:655 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:764 includes/B2S/Ship/Item.php:914
|
311 |
msgid "delete"
|
312 |
msgstr ""
|
313 |
|
343 |
msgid "Custom Sharing & Scheduling"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: includes/B2S/PostBox.php:97 includes/B2S/PostBox.php:101 views/b2s/ship.php:60 views/b2s/ship.php:150 views/b2s/ship.php:237 includes/B2S/Network/Item.php:170 includes/B2S/Ship/Item.php:728
|
347 |
msgid "Info"
|
348 |
msgstr ""
|
349 |
|
498 |
msgid "Select date:"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: includes/B2S/PostBox.php:234 includes/B2S/Ship/Item.php:347
|
502 |
msgid "show calendar"
|
503 |
msgstr ""
|
504 |
|
582 |
msgid "Blog2Social Premium covers everything you need."
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: views/b2s/curation.php:115 views/b2s/post.calendar.php:265 views/b2s/ship.php:383 includes/B2S/Ship/Item.php:788
|
586 |
msgid "Schedule for specific dates"
|
587 |
msgstr ""
|
588 |
|
678 |
msgid "Google currently allows access to the API for all companies with up to 9 locations in their Google My Business Listings. However, Google plans to extend the API for companies with more than 9 locations in their Google My Business listings."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: views/b2s/network.php:126 views/b2s/premium.php:35 views/b2s/ship.php:469 includes/B2S/Ship/Item.php:826 views/b2s/partials/post-edit-modal.php:48
|
682 |
msgid "Learn more"
|
683 |
msgstr ""
|
684 |
|
865 |
msgid "The tags you have set in your post."
|
866 |
msgstr ""
|
867 |
|
868 |
+
#: views/b2s/network.php:433 includes/B2S/Network/Item.php:624
|
869 |
+
msgid "Character limit"
|
870 |
msgstr ""
|
871 |
|
872 |
#: views/b2s/network.php:436
|
873 |
+
msgid "Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" individually. Your text will be shortened after the last comma, period, or space character within your character limit."
|
874 |
+
msgstr ""
|
875 |
+
|
876 |
+
#: views/b2s/network.php:437
|
877 |
+
msgid "An \"EXCERPT\" will only be added to your social media post if you have added a manual excerpt in the excerpt editing box of the Gutenberg side menu (document settings) of your post."
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: views/b2s/network.php:438
|
881 |
+
msgid ""
|
882 |
+
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the \"TITLE\" and \"KEYWORD\" variables for your social media posts, the character limit you define for the \"EXCERPT\" and/or \"CONTENT\" variables will be applied within the remaining available "
|
883 |
+
"character limit of the social network."
|
884 |
msgstr ""
|
885 |
|
886 |
#: views/b2s/post.approve.php:81
|
1572 |
msgid "immediately"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
+
#: includes/B2S/Curation/View.php:66 includes/B2S/Curation/View.php:67 includes/B2S/Ship/Item.php:896 views/b2s/partials/post-edit-modal.php:62 views/b2s/partials/post-edit-modal.php:65
|
1576 |
msgid "Date"
|
1577 |
msgstr ""
|
1578 |
|
1644 |
msgid "Assigned by"
|
1645 |
msgstr ""
|
1646 |
|
1647 |
+
#: includes/B2S/Network/Item.php:248 includes/B2S/Network/Item.php:310 includes/B2S/Network/Item.php:372 includes/B2S/Ship/Item.php:844
|
1648 |
msgid "Days"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: includes/B2S/Network/Item.php:278 includes/B2S/Ship/Item.php:287
|
1652 |
msgid "Employer Branding"
|
1653 |
msgstr ""
|
1654 |
|
1676 |
msgid "Activate Instant Caching"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: includes/B2S/Network/Item.php:577
|
1680 |
msgid "Format"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: includes/B2S/Network/Item.php:578
|
1684 |
msgid "Load default settings"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: includes/B2S/Network/Item.php:584 includes/B2S/Network/Item.php:587 includes/B2S/Ship/Item.php:609 includes/B2S/Ship/Item.php:611
|
1688 |
msgid "Link"
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: includes/B2S/Network/Item.php:584 includes/B2S/Network/Item.php:587 includes/B2S/Settings/Item.php:382
|
1692 |
msgid "Image with frame"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: includes/B2S/Network/Item.php:585 includes/B2S/Network/Item.php:588
|
1696 |
msgid "Image"
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: includes/B2S/Network/Item.php:585 includes/B2S/Network/Item.php:588 includes/B2S/Settings/Item.php:393
|
1700 |
msgid "Image cut out"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: includes/B2S/Network/Item.php:596 includes/B2S/Settings/Item.php:76
|
1704 |
msgid "Content"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: includes/B2S/Network/Item.php:606
|
1708 |
msgid "clear"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: includes/B2S/Network/Item.php:615
|
1712 |
msgid "The link will be added automatically at the end of the post."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: includes/B2S/Network/Item.php:617 includes/B2S/Network/Item.php:643
|
1716 |
+
msgid "Network limit"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: includes/B2S/Network/Item.php:617 includes/B2S/Network/Item.php:643 includes/B2S/Network/Item.php:643 includes/B2S/Ship/Item.php:180 includes/B2S/Ship/Item.php:184 includes/B2S/Ship/Item.php:225 includes/B2S/Ship/Item.php:229 includes/B2S/Ship/Item.php:255
|
1720 |
+
#: includes/B2S/Ship/Item.php:259 includes/B2S/Ship/Item.php:923 includes/B2S/Ship/Item.php:925
|
1721 |
msgid "characters"
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: includes/B2S/Network/Item.php:643
|
1725 |
+
msgid "recommended length"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: includes/B2S/Network/Item.php:663 includes/B2S/Network/Item.php:715 includes/B2S/Network/Item.php:769 includes/B2S/Network/Item.php:821
|
1729 |
msgid "Preview"
|
1730 |
msgstr ""
|
1731 |
|
1913 |
msgid "delete scheduling"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: includes/B2S/Settings/Item.php:62 includes/B2S/Settings/Item.php:82 includes/B2S/Ship/Item.php:746
|
1917 |
msgid "Account"
|
1918 |
msgstr ""
|
1919 |
|
2190 |
msgid "Network does not support image for profiles"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: includes/B2S/Ship/Item.php:138 includes/B2S/Ship/Item.php:196
|
2194 |
msgid "Network defines image by link"
|
2195 |
msgstr ""
|
2196 |
|
2198 |
msgid "Supported HTML tags"
|
2199 |
msgstr ""
|
2200 |
|
2201 |
+
#: includes/B2S/Ship/Item.php:141 includes/B2S/Ship/Item.php:195
|
2202 |
msgid "Network does not support emojis"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
+
#: includes/B2S/Ship/Item.php:179
|
2206 |
msgid "Text only"
|
2207 |
msgstr ""
|
2208 |
|
2209 |
+
#: includes/B2S/Ship/Item.php:194
|
2210 |
msgid "Network does not support image for pages"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
+
#: includes/B2S/Ship/Item.php:279
|
2214 |
msgid "Connection expires on 31 March 2019"
|
2215 |
msgstr ""
|
2216 |
|
2217 |
+
#: includes/B2S/Ship/Item.php:283
|
2218 |
msgid "Connection expires on 2 April 2019"
|
2219 |
msgstr ""
|
2220 |
|
2221 |
+
#: includes/B2S/Ship/Item.php:296
|
2222 |
msgid "post format"
|
2223 |
msgstr ""
|
2224 |
|
2225 |
+
#: includes/B2S/Ship/Item.php:306 includes/B2S/Ship/Item.php:931
|
2226 |
msgid "Insert full-text"
|
2227 |
msgstr ""
|
2228 |
|
2229 |
+
#: includes/B2S/Ship/Item.php:308 includes/B2S/Ship/Item.php:933
|
2230 |
msgid "Delete text"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
+
#: includes/B2S/Ship/Item.php:316
|
2234 |
msgid "You can customize your post with individual comments, @-handles, emojis, and more in the Instant Sharing window, after planning your post."
|
2235 |
msgstr ""
|
2236 |
|
2237 |
+
#: includes/B2S/Ship/Item.php:322 includes/B2S/Ship/Item.php:517 includes/B2S/Ship/Item.php:797
|
2238 |
msgid "Please keep in mind that according to Twitter’s new TOS, users are no longer allowed to post identical or substantially similar content to multiple accounts or multiple duplicate updates on one account."
|
2239 |
msgstr ""
|
2240 |
|
2241 |
+
#: includes/B2S/Ship/Item.php:322 includes/B2S/Ship/Item.php:517 includes/B2S/Ship/Item.php:797
|
2242 |
msgid "Violating these rules can result in Twitter suspending your account. Always vary your Tweets with different comments, hashtags or handles to prevent duplicate posts."
|
2243 |
msgstr ""
|
2244 |
|
2245 |
+
#: includes/B2S/Ship/Item.php:322 includes/B2S/Ship/Item.php:517 includes/B2S/Ship/Item.php:797
|
2246 |
msgid "Learn more about this"
|
2247 |
msgstr ""
|
2248 |
|
2249 |
+
#: includes/B2S/Ship/Item.php:327
|
2250 |
msgid "Please note: XING allows identical posts to be published only once within a group and no more than three times across different groups."
|
2251 |
msgstr ""
|
2252 |
|
2253 |
+
#: includes/B2S/Ship/Item.php:327
|
2254 |
msgid "Read more"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: includes/B2S/Ship/Item.php:347
|
2258 |
msgid "hide calendar"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: includes/B2S/Ship/Item.php:402 includes/B2S/Ship/Item.php:426 includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:483 includes/B2S/Ship/Item.php:509 includes/B2S/Ship/Item.php:527 includes/B2S/Ship/Item.php:543
|
2262 |
+
#: includes/B2S/Ship/Item.php:556 includes/B2S/Ship/Item.php:572 includes/B2S/Ship/Item.php:577
|
2263 |
msgid "Write something about your post..."
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: includes/B2S/Ship/Item.php:409 includes/B2S/Ship/Item.php:433 includes/B2S/Ship/Item.php:457 includes/B2S/Ship/Item.php:505 includes/B2S/Ship/Item.php:523 includes/B2S/Ship/Item.php:539 includes/B2S/Ship/Item.php:568 includes/B2S/Ship/Item.php:602
|
2267 |
msgid "Change image"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: includes/B2S/Ship/Item.php:413
|
2271 |
msgid "Info: Change Open Graph Meta tags image, title and description for this network"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: includes/B2S/Ship/Item.php:416 includes/B2S/Ship/Item.php:440
|
2275 |
msgid "You want to change your link image, link title and link description for this network? Click here."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: includes/B2S/Ship/Item.php:418
|
2279 |
msgid "OG Meta title"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
+
#: includes/B2S/Ship/Item.php:419
|
2283 |
msgid "OG Meta description"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
+
#: includes/B2S/Ship/Item.php:437
|
2287 |
msgid "Info: Change Card Meta tags image, title and description for this network"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
+
#: includes/B2S/Ship/Item.php:442
|
2291 |
msgid "Card Meta title"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
+
#: includes/B2S/Ship/Item.php:443
|
2295 |
msgid "Card Meta description"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
+
#: includes/B2S/Ship/Item.php:589
|
2299 |
msgid "required"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
+
#: includes/B2S/Ship/Item.php:679
|
2303 |
msgid "Jobs & Projects"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: includes/B2S/Ship/Item.php:680
|
2307 |
msgid "Events"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: includes/B2S/Ship/Item.php:681
|
2311 |
msgid "Classified Ads"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
+
#: includes/B2S/Ship/Item.php:683
|
2315 |
msgid "Offer"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
+
#: includes/B2S/Ship/Item.php:684
|
2319 |
msgid "Request"
|
2320 |
msgstr ""
|
2321 |
|
2322 |
+
#: includes/B2S/Ship/Item.php:695
|
2323 |
msgid "The Headline..."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: includes/B2S/Ship/Item.php:700
|
2327 |
msgid "Hashtags"
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: includes/B2S/Ship/Item.php:728
|
2331 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: includes/B2S/Ship/Item.php:747 views/b2s/partials/post-edit-modal.php:73
|
2335 |
msgid "Delay"
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: includes/B2S/Ship/Item.php:757 includes/B2S/Ship/Item.php:758 includes/B2S/Ship/Item.php:759 includes/B2S/Ship/Item.php:760 views/b2s/partials/post-edit-modal.php:77 views/b2s/partials/post-edit-modal.php:78 views/b2s/partials/post-edit-modal.php:79
|
2339 |
#: views/b2s/partials/post-edit-modal.php:80
|
2340 |
msgid "min"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: includes/B2S/Ship/Item.php:765
|
2344 |
msgid "Add Retweet"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: includes/B2S/Ship/Item.php:785
|
2348 |
msgid "Share Now"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: includes/B2S/Ship/Item.php:790
|
2352 |
msgid "Schedule Recurrent Post"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: includes/B2S/Ship/Item.php:826 views/b2s/partials/post-edit-modal.php:47
|
2356 |
msgid ""
|
2357 |
"Please note: Your account is connected via an old XING API that is no longer supported by XING after March 31. Please connect your XING profile, as well as your XING company pages (Employer branding profiles) and business pages with the new XING interface in the Blog2Social "
|
2358 |
"network settings. To do this, go to the Blog2Social Networks section and connect your XING accounts with the new XING."
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: includes/B2S/Ship/Item.php:830 views/b2s/partials/post-edit-modal.php:51
|
2362 |
msgid "Please note: Google will shut down Google+ for all private accounts (profiles, pages, groups) on 2nd April 2019. You can find further information and the next steps, including how to download your photos and other content here:"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/B2S/Ship/Item.php:833
|
2366 |
msgid "Repeats"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: includes/B2S/Ship/Item.php:834 includes/B2S/Ship/Item.php:837
|
2370 |
msgid "Duration"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: includes/B2S/Ship/Item.php:838
|
2374 |
msgid "Number of repeats"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: includes/B2S/Ship/Item.php:839
|
2378 |
msgid "Day of month"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: includes/B2S/Ship/Item.php:840
|
2382 |
msgid "Repeats every (days)"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: includes/B2S/Ship/Item.php:842
|
2386 |
msgid "Start date"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
+
#: includes/B2S/Ship/Item.php:843
|
2390 |
msgid "Time to publish"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
+
#: includes/B2S/Ship/Item.php:852
|
2394 |
msgid "weekly"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
+
#: includes/B2S/Ship/Item.php:853
|
2398 |
msgid "monthly"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
+
#: includes/B2S/Ship/Item.php:854
|
2402 |
msgid "own period"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
+
#: includes/B2S/Ship/Item.php:860
|
2406 |
msgid "Week"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
+
#: includes/B2S/Ship/Item.php:860
|
2410 |
msgid "Weeks"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
+
#: includes/B2S/Ship/Item.php:869
|
2414 |
msgid "Month"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: includes/B2S/Ship/Item.php:869
|
2418 |
msgid "Months"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: includes/B2S/Ship/Item.php:889
|
2422 |
msgid "End Of Month"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: includes/B2S/Ship/Item.php:894
|
2426 |
msgid "Timespan"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: includes/B2S/Ship/Item.php:897 views/b2s/partials/post-edit-modal.php:63 views/b2s/partials/post-edit-modal.php:66
|
2430 |
msgid "Time"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: includes/B2S/Ship/Item.php:902
|
2434 |
msgid "Mon"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: includes/B2S/Ship/Item.php:903
|
2438 |
msgid "Tue"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
+
#: includes/B2S/Ship/Item.php:904
|
2442 |
msgid "Wed"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
+
#: includes/B2S/Ship/Item.php:905
|
2446 |
msgid "Thu"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
+
#: includes/B2S/Ship/Item.php:906
|
2450 |
msgid "Fri"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
+
#: includes/B2S/Ship/Item.php:907
|
2454 |
msgid "Sat"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
+
#: includes/B2S/Ship/Item.php:908
|
2458 |
msgid "Sun"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
+
#: includes/B2S/Ship/Item.php:915
|
2462 |
msgid "add another post"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
+
#: includes/B2S/Ship/Item.php:929
|
2466 |
msgid "Copy from original"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
+
#: includes/B2S/Ship/Item.php:945
|
2470 |
msgid "Apply Settings To All Networks"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
+
#: includes/B2S/Ship/Item.php:946
|
2474 |
msgid "Save as best time for this network"
|
2475 |
msgstr ""
|
2476 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: auto post, auto publish, social media scheduling, social media calendar, s
|
|
5 |
Donate link: http://www.blog2social.com
|
6 |
Requires at least: 4.2.2
|
7 |
Tested up to: 5.2.2
|
8 |
-
Stable tag: 5.6.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -192,6 +192,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
192 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
193 |
|
194 |
== Changelog ==
|
|
|
|
|
195 |
= 5.6.0 =
|
196 |
Post Templates
|
197 |
= 5.5.0 =
|
@@ -270,6 +272,8 @@ Usabilitiy and Performance Optimization. Select link format or image format indi
|
|
270 |
Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
|
271 |
|
272 |
== Upgrade Notice ==
|
|
|
|
|
273 |
= 5.6.0 =
|
274 |
Post Templates
|
275 |
= 5.5.0 =
|
5 |
Donate link: http://www.blog2social.com
|
6 |
Requires at least: 4.2.2
|
7 |
Tested up to: 5.2.2
|
8 |
+
Stable tag: 5.6.1
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
192 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
193 |
|
194 |
== Changelog ==
|
195 |
+
= 5.6.1 =
|
196 |
+
Improvments and Bugfixes Posting Template
|
197 |
= 5.6.0 =
|
198 |
Post Templates
|
199 |
= 5.5.0 =
|
272 |
Usabilitiy and Performance Optimization. NEW: Select individual images per post. Select link format or image format for your posts. Select your own time zone for scheduling posts. Emoji support.
|
273 |
|
274 |
== Upgrade Notice ==
|
275 |
+
= 5.6.1 =
|
276 |
+
Improvments and Bugfixes Posting Template
|
277 |
= 5.6.0 =
|
278 |
Post Templates
|
279 |
= 5.5.0 =
|
views/b2s/network.php
CHANGED
@@ -430,10 +430,12 @@ $networkData = $networkItem->getData();
|
|
430 |
<div class="modal-content">
|
431 |
<div class="modal-header">
|
432 |
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoCharacterLimit" aria-label="Close"><span aria-hidden="true">×</span></button>
|
433 |
-
<h4 class="modal-title"><?php _e('Character
|
434 |
</div>
|
435 |
<div class="modal-body">
|
436 |
-
|
|
|
|
|
437 |
</div>
|
438 |
</div>
|
439 |
</div>
|
430 |
<div class="modal-content">
|
431 |
<div class="modal-header">
|
432 |
<button type="button" class="b2s-modal-close close" data-modal-name="#b2sInfoCharacterLimit" aria-label="Close"><span aria-hidden="true">×</span></button>
|
433 |
+
<h4 class="modal-title"><?php _e('Character limit', 'blog2social') ?> (CONTENT, EXCERPT)</h4>
|
434 |
</div>
|
435 |
<div class="modal-body">
|
436 |
+
<div class="b2s-info-character-limit-text"><?php _e('Define the character limit for the variables "EXCERPT" and "CONTENT" individually. Your text will be shortened after the last comma, period, or space character within your character limit.', 'blog2social') ?></div>
|
437 |
+
<div class="b2s-info-character-limit-text"><?php _e('An "EXCERPT" will only be added to your social media post if you have added a manual excerpt in the excerpt editing box of the Gutenberg side menu (document settings) of your post.', 'blog2social') ?></div>
|
438 |
+
<div class="b2s-info-character-limit-text"><?php _e('"TITLES" and "KEYWORDS" (Hashtags) are not shortened. If you select the "TITLE" and "KEYWORD" variables for your social media posts, the character limit you define for the "EXCERPT" and/or "CONTENT" variables will be applied within the remaining available character limit of the social network.', 'blog2social') ?></div>
|
439 |
</div>
|
440 |
</div>
|
441 |
</div>
|