Version Description
Usability Optimization
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.5.5 |
Comparing to | |
See all releases |
Code changes from version 6.5.4 to 6.5.5
- assets/js/b2s/network.js +15 -2
- blog2social.php +2 -2
- includes/Ajax/Post.php +38 -15
- includes/B2S/AutoPost.php +38 -13
- includes/B2S/Network/Item.php +91 -26
- includes/B2S/RePost/Save.php +39 -14
- includes/B2S/Ship/Item.php +46 -15
- includes/B2S/Ship/Navbar.php +1 -1
- includes/Loader.php +3 -3
- includes/Tools.php +3 -0
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +336 -321
- languages/blog2social.pot +330 -317
- readme.txt +5 -1
assets/js/b2s/network.js
CHANGED
@@ -1108,10 +1108,23 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
|
1108 |
jQuery('.b2s-edit-template-post-content').each(function (i, obj) {
|
1109 |
var networkType = jQuery(obj).attr('data-network-type');
|
1110 |
template_data[networkType] = {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1111 |
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1112 |
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
1113 |
-
template_data[networkType]['range_max'] = jQuery('.b2s-edit-template-range[data-network-type="' + networkType + '"]').val();
|
1114 |
-
template_data[networkType]['excerpt_range_max'] = jQuery('.b2s-edit-template-excerpt-range[data-network-type="' + networkType + '"]').val();
|
1115 |
if (jQuery('#b2s-edit-template-network-id').val() == 12 || jQuery('#b2s-edit-template-network-id').val() == 1) {
|
1116 |
if(jQuery('.b2s-edit-template-enable-link[data-network-type="' + networkType + '"]').is(':checked')) {
|
1117 |
template_data[networkType]['addLink'] = true;
|
1108 |
jQuery('.b2s-edit-template-post-content').each(function (i, obj) {
|
1109 |
var networkType = jQuery(obj).attr('data-network-type');
|
1110 |
template_data[networkType] = {};
|
1111 |
+
if(jQuery('.b2s-edit-template-multi-kind[data-network-type="' + networkType + '"]').val() == 1) {
|
1112 |
+
template_data[networkType]['multi_kind'] = 1;
|
1113 |
+
template_data[networkType]['type_kind'] = {};
|
1114 |
+
jQuery('.b2s-edit-template-range[data-network-type="' + networkType + '"]').each(function(index) {
|
1115 |
+
var type_kind = jQuery(this).data('network-type-kind');
|
1116 |
+
template_data[networkType]['type_kind'][type_kind] = {};
|
1117 |
+
template_data[networkType]['type_kind'][type_kind]['range_max'] = jQuery(this).val();
|
1118 |
+
template_data[networkType]['type_kind'][type_kind]['excerpt_range_max'] = jQuery('.b2s-edit-template-excerpt-range[data-network-type="' + networkType + '"][data-network-type-kind="' + type_kind + '"]').val();
|
1119 |
+
});
|
1120 |
+
} else {
|
1121 |
+
template_data[networkType]['multi_kind'] = 0;
|
1122 |
+
template_data[networkType]['range_max'] = jQuery('.b2s-edit-template-range[data-network-type="' + networkType + '"]').val();
|
1123 |
+
template_data[networkType]['excerpt_range_max'] = jQuery('.b2s-edit-template-excerpt-range[data-network-type="' + networkType + '"]').val();
|
1124 |
+
}
|
1125 |
+
|
1126 |
template_data[networkType]['format'] = jQuery('.b2s-edit-template-post-format[data-network-type="' + networkType + '"]').val();
|
1127 |
template_data[networkType]['content'] = jQuery('.b2s-edit-template-post-content[data-network-type="' + networkType + '"]').val();
|
|
|
|
|
1128 |
if (jQuery('#b2s-edit-template-network-id').val() == 12 || jQuery('#b2s-edit-template-network-id').val() == 1) {
|
1129 |
if(jQuery('.b2s-edit-template-enable-link[data-network-type="' + networkType + '"]').is(':checked')) {
|
1130 |
template_data[networkType]['addLink'] = true;
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 6.5.
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
-
define('B2S_PLUGIN_VERSION', '
|
15 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
16 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
17 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
+
* Version: 6.5.5
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '655');
|
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/Post.php
CHANGED
@@ -1909,22 +1909,45 @@ class Ajax_Post {
|
|
1909 |
}
|
1910 |
|
1911 |
$new_template = array();
|
|
|
1912 |
foreach ($_POST['template_data'] as $type => $data) {
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1928 |
if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1) {
|
1929 |
$new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
|
1930 |
}
|
1909 |
}
|
1910 |
|
1911 |
$new_template = array();
|
1912 |
+
$default_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1913 |
foreach ($_POST['template_data'] as $type => $data) {
|
1914 |
+
if(isset($data['multi_kind']) && (int) $data['multi_kind'] == 1) {
|
1915 |
+
$short_text = array();
|
1916 |
+
foreach ($data['type_kind'] as $kind_id => $kind_data) {
|
1917 |
+
$limit = ((isset($default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['limit'])) ? $default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['limit'] : 0);
|
1918 |
+
$range_max = ((int) $limit != 0 && (int) $kind_data['range_max'] > (int) $limit) ? (int) $limit : (int) $kind_data['range_max'];
|
1919 |
+
$excerpt_range_max = ((int) $limit != 0 && (int) $kind_data['excerpt_range_max'] > (int) $limit) ? (int) $limit : (int) $kind_data['excerpt_range_max'];
|
1920 |
+
$short_text[$kind_id] = array(
|
1921 |
+
'active' => 0,
|
1922 |
+
'range_min' => ((isset($default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['range_max']) && $range_max >= (int) $default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['range_max']) ? (int) $default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['range_min'] : ($range_max / 2)),
|
1923 |
+
'range_max' => $range_max,
|
1924 |
+
'excerpt_range_min' => ((isset($default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['excerpt_range_max']) && $excerpt_range_max >= (int) $default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['excerpt_range_max']) ? (int) $default_template[$_POST['networkId']][$type]['short_text'][$kind_id]['excerpt_range_min'] : ($range_max / 2)),
|
1925 |
+
'excerpt_range_max' => $excerpt_range_max,
|
1926 |
+
'limit' => $limit
|
1927 |
+
);
|
1928 |
+
}
|
1929 |
+
$new_template[$type] = array(
|
1930 |
+
'format' => (isset($data['format'])) ? $data['format'] : false,
|
1931 |
+
'content' => (isset($data['content'])) ? sanitize_textarea_field($data['content']) : $default_template[$_POST['networkId']][$type]['content'],
|
1932 |
+
'short_text' => $short_text
|
1933 |
+
);
|
1934 |
+
} else {
|
1935 |
+
$limit = ((isset($default_template[$_POST['networkId']][$type]['short_text']['limit'])) ? $default_template[$_POST['networkId']][$type]['short_text']['limit'] : 0);
|
1936 |
+
$range_max = ((int) $limit != 0 && (int) $data['range_max'] > (int) $limit) ? (int) $limit : (int) $data['range_max'];
|
1937 |
+
$excerpt_range_max = ((int) $limit != 0 && (int) $data['excerpt_range_max'] > (int) $limit) ? (int) $limit : (int) $data['excerpt_range_max'];
|
1938 |
+
$new_template[$type] = array(
|
1939 |
+
'format' => (isset($data['format'])) ? $data['format'] : false,
|
1940 |
+
'content' => (isset($data['content'])) ? sanitize_textarea_field($data['content']) : $default_template[$_POST['networkId']][$type]['content'],
|
1941 |
+
'short_text' => array(
|
1942 |
+
'active' => 0,
|
1943 |
+
'range_min' => ((isset($default_template[$_POST['networkId']][$type]['short_text']['range_max']) && $range_max >= (int) $default_template[$_POST['networkId']][$type]['short_text']['range_max']) ? (int) $default_template[$_POST['networkId']][$type]['short_text']['range_min'] : ($range_max / 2)),
|
1944 |
+
'range_max' => $range_max,
|
1945 |
+
'excerpt_range_min' => ((isset($default_template[$_POST['networkId']][$type]['short_text']['excerpt_range_max']) && $excerpt_range_max >= (int) $default_template[$_POST['networkId']][$type]['short_text']['excerpt_range_max']) ? (int) $default_template[$_POST['networkId']][$type]['short_text']['excerpt_range_min'] : ($range_max / 2)),
|
1946 |
+
'excerpt_range_max' => $excerpt_range_max,
|
1947 |
+
'limit' => $limit
|
1948 |
+
)
|
1949 |
+
);
|
1950 |
+
}
|
1951 |
if ((int) $_POST['networkId'] == 12 || (int) $_POST['networkId'] == 1) {
|
1952 |
$new_template[$type]['addLink'] = ((isset($data['addLink']) && $data['addLink'] == 'false') ? false : true);
|
1953 |
}
|
includes/B2S/AutoPost.php
CHANGED
@@ -38,7 +38,7 @@ class B2S_AutoPost {
|
|
38 |
$this->setPreFillTextLimit = array(0 => array(6 => 400, 8 => 400, 9 => 200, 10 => 500, 18 => 1000, 20 => 400, 16 => false, 21 => 65535), 1 => array(8 => 1200, 10 => 500, 19 => 400), 2 => array(8 => 400, 10 => 500, 19 => 9000));
|
39 |
}
|
40 |
|
41 |
-
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
42 |
|
43 |
if ($this->userVersion >= 3) {
|
44 |
global $wpdb;
|
@@ -60,6 +60,38 @@ class B2S_AutoPost {
|
|
60 |
} else {
|
61 |
$tempOptionPostFormat = $this->optionPostFormat;
|
62 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
|
64 |
//PostFormat
|
65 |
if (in_array($networkId, array(1, 2, 3, 12, 17, 19))) {
|
@@ -79,20 +111,13 @@ class B2S_AutoPost {
|
|
79 |
}
|
80 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
81 |
|
82 |
-
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $
|
83 |
$postData['content'] = preg_replace("/\{CONTENT\}/", $preContent, $postData['content']);
|
84 |
|
85 |
$title = sanitize_text_field($this->title);
|
86 |
$postData['content'] = preg_replace("/\{TITLE\}/", addcslashes($title, "\\$"), $postData['content']);
|
87 |
-
|
88 |
-
$
|
89 |
-
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
90 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
91 |
-
}
|
92 |
-
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
93 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
94 |
-
}
|
95 |
-
$excerpt = (isset($this->excerpt) && !empty($this->excerpt)) ? addcslashes(B2S_Util::getExcerpt($this->excerpt, (int) $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'], (int) $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']), "\\$") : '';
|
96 |
|
97 |
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
98 |
|
@@ -120,8 +145,8 @@ class B2S_AutoPost {
|
|
120 |
}
|
121 |
}
|
122 |
|
123 |
-
if (isset($
|
124 |
-
$postData['content'] = B2S_Util::getExcerpt($postData['content'], 0, $
|
125 |
}
|
126 |
} else {
|
127 |
if ($networkId == 4) {
|
38 |
$this->setPreFillTextLimit = array(0 => array(6 => 400, 8 => 400, 9 => 200, 10 => 500, 18 => 1000, 20 => 400, 16 => false, 21 => 65535), 1 => array(8 => 1200, 10 => 500, 19 => 400), 2 => array(8 => 400, 10 => 500, 19 => 9000));
|
39 |
}
|
40 |
|
41 |
+
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $networkKind = 0) {
|
42 |
|
43 |
if ($this->userVersion >= 3) {
|
44 |
global $wpdb;
|
60 |
} else {
|
61 |
$tempOptionPostFormat = $this->optionPostFormat;
|
62 |
}
|
63 |
+
|
64 |
+
//V6.5.5 - Xing Pages => Two diferend kinds
|
65 |
+
if($networkId == 19 && $networkType == 1) {
|
66 |
+
if(!isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][0]['limit'])) {
|
67 |
+
if(isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) {
|
68 |
+
$default_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
69 |
+
if(isset($default_template[$networkId][$networkType]['short_text'][4])) {
|
70 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text'] = array(0 => $tempOptionPostFormat[$networkId][$networkType]['short_text'], 4 => $default_template[$networkId][$networkType]['short_text'][4]);
|
71 |
+
}
|
72 |
+
} else {
|
73 |
+
$tempOptionPostFormat = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
74 |
+
}
|
75 |
+
}
|
76 |
+
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'] : 0;
|
77 |
+
$content_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_max'] : 0;
|
78 |
+
$excerpt_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_min'] : 0;
|
79 |
+
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'] : 0;
|
80 |
+
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'] : 0;
|
81 |
+
} else {
|
82 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
83 |
+
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']) && isset($defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
84 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
85 |
+
}
|
86 |
+
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min']) && isset($defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
87 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
88 |
+
}
|
89 |
+
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'] : 0;
|
90 |
+
$content_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'] : 0;
|
91 |
+
$excerpt_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] : 0;
|
92 |
+
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] : 0;
|
93 |
+
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'] : 0;
|
94 |
+
}
|
95 |
|
96 |
//PostFormat
|
97 |
if (in_array($networkId, array(1, 2, 3, 12, 17, 19))) {
|
111 |
}
|
112 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
113 |
|
114 |
+
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $content_min, (int) $content_max), "\\$");
|
115 |
$postData['content'] = preg_replace("/\{CONTENT\}/", $preContent, $postData['content']);
|
116 |
|
117 |
$title = sanitize_text_field($this->title);
|
118 |
$postData['content'] = preg_replace("/\{TITLE\}/", addcslashes($title, "\\$"), $postData['content']);
|
119 |
+
|
120 |
+
$excerpt = (isset($this->excerpt) && !empty($this->excerpt)) ? addcslashes(B2S_Util::getExcerpt($this->excerpt, (int) $excerpt_min, (int) $excerpt_max), "\\$") : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
|
122 |
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
123 |
|
145 |
}
|
146 |
}
|
147 |
|
148 |
+
if (isset($limit) && (int) $limit > 0) {
|
149 |
+
$postData['content'] = B2S_Util::getExcerpt($postData['content'], 0, $limit);
|
150 |
}
|
151 |
} else {
|
152 |
if ($networkId == 4) {
|
includes/B2S/Network/Item.php
CHANGED
@@ -287,7 +287,11 @@ class B2S_Network_Item {
|
|
287 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
288 |
$html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
|
289 |
}
|
290 |
-
|
|
|
|
|
|
|
|
|
291 |
|
292 |
if($networkId == 19 && (int) $v['networkKind'] == 1) {// Xing Business Pages Info
|
293 |
$html .= '<input type="hidden" value="1" id="b2sHasXingBusinessPage">';
|
@@ -657,12 +661,27 @@ class B2S_Network_Item {
|
|
657 |
|
658 |
public function getEditTemplateFormContent($networkId, $networkType, $schema) {
|
659 |
$defaultTemplate = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
660 |
-
|
661 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
662 |
|
663 |
//V5.6.1
|
664 |
-
if
|
665 |
-
$
|
|
|
|
|
|
|
666 |
}
|
667 |
|
668 |
$content = '';
|
@@ -749,27 +768,73 @@ class B2S_Network_Item {
|
|
749 |
$content .= '<span class="b2s-edit-template-section-headline">' . esc_html__('Character limit', 'blog2social') . ' (CONTENT, EXCERPT)</span> <a href="#" class="b2s-info-btn del-padding-left b2sInfoCharacterLimitBtn">' . esc_html__('Info', 'Blog2Social') . '</a>';
|
750 |
$content .= '</div>';
|
751 |
$content .= '</div>';
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
773 |
|
774 |
$content .= $this->networkPreview($networkId, $networkType, $schema);
|
775 |
|
287 |
$displayName = stripslashes(get_user_by('id', $v['owner_blog_user_id'])->display_name);
|
288 |
$html .='<div class="b2s-network-approved-from">' . esc_html__("Assigned by", "blog2social") . ' ' . esc_html(((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName)) . '</div> ';
|
289 |
}
|
290 |
+
if($networkId == 19) {
|
291 |
+
$this->networkKindName[0] = sprintf(__('Company-Page (Employer Branding Profile, <a href="%s" target="_blank">Old Design until 2020/11/30</a>)', 'blog2social'), B2S_Tools::getSupportLink('xing_company_page_old_design'));
|
292 |
+
$this->networkKindName[4] = esc_html__('Company-Page (Employer Branding Profile, New Design)', 'blog2social');
|
293 |
+
}
|
294 |
+
$html .= '<span class="b2s-network-item-auth-type">' . (($isDeprecated) ? '<span class="glyphicon glyphicon-exclamation-sign glyphicon-info"></span> ' : '') . ($networkId == 19 && isset($this->networkKindName[$v['networkKind']]) ? $this->networkKindName[$v['networkKind']] : esc_html__('Page', 'blog2social')) . '</span>: <span class="b2s-network-item-auth-user-name">' . esc_html(stripslashes($v['networkUserName'])) . '</span> ';
|
295 |
|
296 |
if($networkId == 19 && (int) $v['networkKind'] == 1) {// Xing Business Pages Info
|
297 |
$html .= '<input type="hidden" value="1" id="b2sHasXingBusinessPage">';
|
661 |
|
662 |
public function getEditTemplateFormContent($networkId, $networkType, $schema) {
|
663 |
$defaultTemplate = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
664 |
+
|
665 |
+
//V6.5.5 => Two different kinds of Xing Pages
|
666 |
+
$multi_kind = false;
|
667 |
+
if($networkId == 19 && $networkType == 1) {
|
668 |
+
$multi_kind = true;
|
669 |
+
$limit = 1000;
|
670 |
+
if(!isset($schema[$networkType]['short_text'][0]['limit'])) {
|
671 |
+
if(isset($schema[$networkType]['short_text']['limit'])) {
|
672 |
+
$schema[$networkType]['short_text'] = array(0 => $schema[$networkType]['short_text'], 4 => $defaultTemplate[$networkId][$networkType]['short_text'][4]);
|
673 |
+
}
|
674 |
+
}
|
675 |
+
}
|
676 |
+
|
677 |
+
|
678 |
|
679 |
//V5.6.1
|
680 |
+
if(!$multi_kind) {
|
681 |
+
$limit = ((isset($defaultTemplate[$networkId][$networkType]['short_text']['limit'])) ? $defaultTemplate[$networkId][$networkType]['short_text']['limit'] : 0);
|
682 |
+
if (!isset($schema[$networkType]['short_text']['excerpt_range_max']) && isset($defaultTemplate[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
683 |
+
$schema[$networkType]['short_text']['excerpt_range_max'] = $defaultTemplate[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
684 |
+
}
|
685 |
}
|
686 |
|
687 |
$content = '';
|
768 |
$content .= '<span class="b2s-edit-template-section-headline">' . esc_html__('Character limit', 'blog2social') . ' (CONTENT, EXCERPT)</span> <a href="#" class="b2s-info-btn del-padding-left b2sInfoCharacterLimitBtn">' . esc_html__('Info', 'Blog2Social') . '</a>';
|
769 |
$content .= '</div>';
|
770 |
$content .= '</div>';
|
771 |
+
if(!$multi_kind) {
|
772 |
+
$content .= '<div class="row">';
|
773 |
+
$content .= '<div class="col-md-12">';
|
774 |
+
$content .= '<div class="form-group">';
|
775 |
+
$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="' . esc_attr($networkType) . '" value="' . esc_attr($schema[$networkType]['short_text']['range_max']) . '" min="1" max="' . esc_attr((($schema[$networkType]['short_text']['limit']) ? $schema[$networkType]['short_text']['limit'] : '')) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>';
|
776 |
+
$content .= '</div>';
|
777 |
+
$content .= '</div>';
|
778 |
+
$content .= '</div>';
|
779 |
+
$content .= '<div class="row">';
|
780 |
+
$content .= '<div class="col-md-12">';
|
781 |
+
$content .= '<div class="form-group">';
|
782 |
+
$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="' . esc_attr($networkType) . '" value="' . esc_attr($schema[$networkType]['short_text']['excerpt_range_max']) . '" min="1" max="' . esc_attr((($schema[$networkType]['short_text']['limit']) ? $schema[$networkType]['short_text']['limit'] : '')) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>';
|
783 |
+
$content .= '</div>';
|
784 |
+
$content .= '</div>';
|
785 |
+
$content .= '</div>';
|
786 |
+
$content .= '<div class="row">';
|
787 |
+
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
788 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html(__('recommended length', 'blog2social') . ': ' . $defaultTemplate[$networkId][$networkType]['short_text']['range_min'] . ' ' . __('characters', 'blog2social') . (((int) $limit != 0) ? '; ' . __('Network limit', 'blog2social') . ': ' . $limit . ' ' . __('characters', 'blog2social') : ''));
|
789 |
+
$content .= '</div>';
|
790 |
+
$content .= '</div>';
|
791 |
+
$content .= '<hr>';
|
792 |
+
$content .= '<br>';
|
793 |
+
} else {
|
794 |
+
$networkKindName = unserialize(B2S_PLUGIN_NETWORK_KIND);
|
795 |
+
if($networkId == 19) {
|
796 |
+
$networkKindName[0] = sprintf(__('Company-Page (Employer Branding Profile, <a href="%s" target="_blank">Old Design until 2020/11/30</a>)', 'blog2social'), B2S_Tools::getSupportLink('xing_company_page_old_design'));
|
797 |
+
$networkKindName[4] = esc_html__('Company-Page (Employer Branding Profile, New Design)', 'blog2social');
|
798 |
+
}
|
799 |
+
foreach ($schema[$networkType]['short_text'] as $kind_id => $short_text) {
|
800 |
+
$deprecated = ((isset($defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['deprecated_date']) && $defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['deprecated_date'] < date('Y-m-d')) ? true : false);
|
801 |
+
if($deprecated) {
|
802 |
+
$content .= '<div style="display: none;">';
|
803 |
+
}
|
804 |
+
$content .= '<div class="row">';
|
805 |
+
$content .= '<div class="col-md-12">';
|
806 |
+
$content .= '<div class="form-group">';
|
807 |
+
$content .= '<br><span class="b2s-bold">' . ((isset($networkKindName[$kind_id])) ? $networkKindName[$kind_id] : '') . '</span>';
|
808 |
+
$content .= '</div>';
|
809 |
+
$content .= '</div>';
|
810 |
+
$content .= '</div>';
|
811 |
+
$content .= '<div class="row">';
|
812 |
+
$content .= '<div class="col-md-12">';
|
813 |
+
$content .= '<div class="form-group">';
|
814 |
+
$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="' . esc_attr($networkType) . '" data-network-type-kind="' . esc_attr($kind_id) . '" value="' . esc_attr($short_text['range_max']) . '" min="1" max="' . esc_attr((($short_text['limit']) ? $short_text['limit'] : '')) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>';
|
815 |
+
$content .= '</div>';
|
816 |
+
$content .= '</div>';
|
817 |
+
$content .= '</div>';
|
818 |
+
$content .= '<div class="row">';
|
819 |
+
$content .= '<div class="col-md-12">';
|
820 |
+
$content .= '<div class="form-group">';
|
821 |
+
$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="' . esc_attr($networkType) . '" data-network-type-kind="' . esc_attr($kind_id) . '" value="' . esc_attr($short_text['excerpt_range_max']) . '" min="1" max="' . esc_attr((($short_text['limit']) ? $short_text['limit'] : '')) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . '>';
|
822 |
+
$content .= '</div>';
|
823 |
+
$content .= '</div>';
|
824 |
+
$content .= '</div>';
|
825 |
+
$content .= '<div class="row">';
|
826 |
+
$content .= '<div class="col-md-12 b2s-edit-template-link-info">';
|
827 |
+
$content .= '<i class="glyphicon glyphicon-info-sign"></i> ' . esc_html(__('recommended length', 'blog2social') . ': ' . $defaultTemplate[$networkId][$networkType]['short_text'][$kind_id]['range_min'] . ' ' . __('characters', 'blog2social') . (((int) $short_text['limit'] != 0) ? '; ' . __('Network limit', 'blog2social') . ': ' . $short_text['limit'] . ' ' . __('characters', 'blog2social') : ''));
|
828 |
+
$content .= '</div>';
|
829 |
+
$content .= '</div>';
|
830 |
+
if($deprecated) {
|
831 |
+
$content .= '</div>';
|
832 |
+
}
|
833 |
+
}
|
834 |
+
$content .= '<hr>';
|
835 |
+
$content .= '<br>';
|
836 |
+
}
|
837 |
+
$content .= '<input type="hidden" name="b2s-edit-template-multi-kind" class="b2s-edit-template-multi-kind" data-network-type="' . esc_attr($networkType) . '" value="' . (($multi_kind) ? 1 : 0) . '">';
|
838 |
|
839 |
$content .= $this->networkPreview($networkId, $networkType, $schema);
|
840 |
|
includes/B2S/RePost/Save.php
CHANGED
@@ -93,7 +93,7 @@ class B2S_RePost_Save {
|
|
93 |
$defaultPostData['no_cache'] = $this->linkNoCache[$value->networkId];
|
94 |
}
|
95 |
}
|
96 |
-
$schedData = $this->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType);
|
97 |
if ($schedData !== false && is_array($schedData)) {
|
98 |
$schedData = array_merge($schedData, $defaultPostData);
|
99 |
}
|
@@ -137,7 +137,7 @@ class B2S_RePost_Save {
|
|
137 |
return $output;
|
138 |
}
|
139 |
|
140 |
-
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0) {
|
141 |
|
142 |
if ($this->userVersion >= 3) {
|
143 |
global $wpdb;
|
@@ -159,6 +159,38 @@ class B2S_RePost_Save {
|
|
159 |
} else {
|
160 |
$tempOptionPostFormat = $this->optionPostFormat;
|
161 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
|
163 |
//PostFormat
|
164 |
if (in_array($networkId, array(1, 2, 3, 12, 17, 19))) {
|
@@ -178,20 +210,13 @@ class B2S_RePost_Save {
|
|
178 |
}
|
179 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
180 |
|
181 |
-
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $
|
182 |
$postData['content'] = preg_replace("/\{CONTENT\}/", $preContent, $postData['content']);
|
183 |
|
184 |
$title = sanitize_text_field($this->title);
|
185 |
$postData['content'] = preg_replace("/\{TITLE\}/", addcslashes($title, "\\$"), $postData['content']);
|
186 |
-
|
187 |
-
$
|
188 |
-
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
189 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
190 |
-
}
|
191 |
-
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
192 |
-
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
193 |
-
}
|
194 |
-
$excerpt = (isset($this->excerpt) && !empty($this->excerpt)) ? addcslashes(B2S_Util::getExcerpt($this->excerpt, (int) $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'], (int) $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']), "\\$") : '';
|
195 |
|
196 |
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
197 |
|
@@ -220,8 +245,8 @@ class B2S_RePost_Save {
|
|
220 |
}
|
221 |
}
|
222 |
|
223 |
-
if (isset($
|
224 |
-
$postData['content'] = B2S_Util::getExcerpt($postData['content'], 0, $
|
225 |
}
|
226 |
} else {
|
227 |
if ($networkId == 4) {
|
93 |
$defaultPostData['no_cache'] = $this->linkNoCache[$value->networkId];
|
94 |
}
|
95 |
}
|
96 |
+
$schedData = $this->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType, ((isset($value->networkKind) && (int) $value->networkKind >= 0) ? $value->networkKind : 0));
|
97 |
if ($schedData !== false && is_array($schedData)) {
|
98 |
$schedData = array_merge($schedData, $defaultPostData);
|
99 |
}
|
137 |
return $output;
|
138 |
}
|
139 |
|
140 |
+
public function prepareShareData($networkAuthId = 0, $networkId = 0, $networkType = 0, $networkKind = 0) {
|
141 |
|
142 |
if ($this->userVersion >= 3) {
|
143 |
global $wpdb;
|
159 |
} else {
|
160 |
$tempOptionPostFormat = $this->optionPostFormat;
|
161 |
}
|
162 |
+
|
163 |
+
//V6.5.5 - Xing Pages => Two diferend kinds
|
164 |
+
if($networkId == 19 && $networkType == 1) {
|
165 |
+
if(!isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][0]['limit'])) {
|
166 |
+
if(isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) {
|
167 |
+
$default_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
168 |
+
if(isset($default_template[$networkId][$networkType]['short_text'][4])) {
|
169 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text'] = array(0 => $tempOptionPostFormat[$networkId][$networkType]['short_text'], 4 => $default_template[$networkId][$networkType]['short_text'][4]);
|
170 |
+
}
|
171 |
+
} else {
|
172 |
+
$tempOptionPostFormat = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
173 |
+
}
|
174 |
+
}
|
175 |
+
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_min'] : 0;
|
176 |
+
$content_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['range_max'] : 0;
|
177 |
+
$excerpt_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_min'] : 0;
|
178 |
+
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['excerpt_range_max'] : 0;
|
179 |
+
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text'][$networkKind]['limit'] : 0;
|
180 |
+
} else {
|
181 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
182 |
+
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max']) && isset($defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'])) {
|
183 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_max'];
|
184 |
+
}
|
185 |
+
if (!isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min']) && isset($defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'])) {
|
186 |
+
$tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] = $defaultSchema[$networkId][$networkType]['short_text']['excerpt_range_min'];
|
187 |
+
}
|
188 |
+
$content_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_min'] : 0;
|
189 |
+
$content_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['range_max'] : 0;
|
190 |
+
$excerpt_min = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_min'] : 0;
|
191 |
+
$excerpt_max = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['excerpt_range_max'] : 0;
|
192 |
+
$limit = (isset($tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'])) ? $tempOptionPostFormat[$networkId][$networkType]['short_text']['limit'] : 0;
|
193 |
+
}
|
194 |
|
195 |
//PostFormat
|
196 |
if (in_array($networkId, array(1, 2, 3, 12, 17, 19))) {
|
210 |
}
|
211 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
212 |
|
213 |
+
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $content_min, (int) $content_max), "\\$");
|
214 |
$postData['content'] = preg_replace("/\{CONTENT\}/", $preContent, $postData['content']);
|
215 |
|
216 |
$title = sanitize_text_field($this->title);
|
217 |
$postData['content'] = preg_replace("/\{TITLE\}/", addcslashes($title, "\\$"), $postData['content']);
|
218 |
+
|
219 |
+
$excerpt = (isset($this->excerpt) && !empty($this->excerpt)) ? addcslashes(B2S_Util::getExcerpt($this->excerpt, (int) $excerpt_min, (int) $excerpt_max), "\\$") : '';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
|
221 |
$postData['content'] = preg_replace("/\{EXCERPT\}/", $excerpt, $postData['content']);
|
222 |
|
245 |
}
|
246 |
}
|
247 |
|
248 |
+
if (isset($limit) && (int) $limit > 0) {
|
249 |
+
$postData['content'] = B2S_Util::getExcerpt($postData['content'], 0, $limit);
|
250 |
}
|
251 |
} else {
|
252 |
if ($networkId == 4) {
|
includes/B2S/Ship/Item.php
CHANGED
@@ -41,7 +41,7 @@ class B2S_Ship_Item {
|
|
41 |
private $showImageAreaPage = array(10);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
43 |
private $showMarketplace = array(19);
|
44 |
-
private $limitCharacterPage = array(3 => 1300, 8 => 1200, 19 => array(0 => 400, 1 => 2000)); // XING Company Page, Business Page
|
45 |
private $limitCharacterGroup = array(19 => 10000);
|
46 |
private $requiredUrl = array(1, 3, 8, 9, 10, 19);
|
47 |
private $getText = array(1, 7, 10, 12, 16, 17, 18, 21);
|
@@ -324,7 +324,7 @@ class B2S_Ship_Item {
|
|
324 |
}
|
325 |
$content .= '<h4 class="pull-left b2s-post-item-details-network-display-name" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . esc_html(stripslashes($network_display_name)) . '</h4>';
|
326 |
$content .= '<div class="clearfix"></div>';
|
327 |
-
$content .= '<p class="pull-left">' . esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($networkKindName[$data->networkKind]) ? $networkKindName[$data->networkKind]
|
328 |
$content .= '<div class="b2s-post-item-details-message-result" data-network-auth-id="' . $data->networkAuthId . '" style="display:none;"></div>';
|
329 |
$content .= '<span class="hidden-xs b2s-post-item-details-message-info" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . $messageInfo . '</span></span>';
|
330 |
|
@@ -1325,21 +1325,52 @@ class B2S_Ship_Item {
|
|
1325 |
public function getMessagebyTemplate($data) {
|
1326 |
$post_template = $this->post_template[$data->networkId][$data->networkType];
|
1327 |
|
1328 |
-
//
|
1329 |
-
if (
|
1330 |
-
$
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1336 |
}
|
1337 |
|
1338 |
$message = $post_template['content'];
|
1339 |
|
1340 |
//B2S CC
|
1341 |
if ($this->b2sPostType == 'ex' && isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1342 |
-
$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) $
|
1343 |
$appendFirst = true;
|
1344 |
if (strpos($message, '{CONTENT}') !== false) {
|
1345 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
@@ -1352,7 +1383,7 @@ class B2S_Ship_Item {
|
|
1352 |
//B2S Customize
|
1353 |
} else {
|
1354 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1355 |
-
$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) $
|
1356 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1357 |
} else {
|
1358 |
$message = preg_replace("/\{CONTENT\}/", "", $message);
|
@@ -1366,7 +1397,7 @@ class B2S_Ship_Item {
|
|
1366 |
}
|
1367 |
|
1368 |
if (isset($this->postData->post_excerpt) && !empty($this->postData->post_excerpt)) {
|
1369 |
-
$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) $
|
1370 |
$message = stripslashes(preg_replace("/\{EXCERPT\}/", addcslashes($excerpt, "\\$"), $message));
|
1371 |
} else {
|
1372 |
$message = preg_replace("/\{EXCERPT\}/", "", $message);
|
@@ -1389,8 +1420,8 @@ class B2S_Ship_Item {
|
|
1389 |
$message = preg_replace("/\\n/", "<br>", $message);
|
1390 |
}
|
1391 |
|
1392 |
-
if (isset($
|
1393 |
-
$message = B2S_Util::getExcerpt($message, 0, $
|
1394 |
}
|
1395 |
|
1396 |
return $message;
|
41 |
private $showImageAreaPage = array(10);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
43 |
private $showMarketplace = array(19);
|
44 |
+
private $limitCharacterPage = array(3 => 1300, 8 => 1200, 19 => array(0 => 400, 1 => 2000, 4 => 1000)); // XING Company Page, Business Page
|
45 |
private $limitCharacterGroup = array(19 => 10000);
|
46 |
private $requiredUrl = array(1, 3, 8, 9, 10, 19);
|
47 |
private $getText = array(1, 7, 10, 12, 16, 17, 18, 21);
|
324 |
}
|
325 |
$content .= '<h4 class="pull-left b2s-post-item-details-network-display-name" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . esc_html(stripslashes($network_display_name)) . '</h4>';
|
326 |
$content .= '<div class="clearfix"></div>';
|
327 |
+
$content .= '<p class="pull-left">' . esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($networkKindName[$data->networkKind]) ? $networkKindName[$data->networkKind] : (($data->networkId == 4) ? esc_html__('Blog', 'blog2social') : $networkTypeName[$data->networkType]) . ' | ' . $networkName[$data->networkId]));
|
328 |
$content .= '<div class="b2s-post-item-details-message-result" data-network-auth-id="' . $data->networkAuthId . '" style="display:none;"></div>';
|
329 |
$content .= '<span class="hidden-xs b2s-post-item-details-message-info" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . $messageInfo . '</span></span>';
|
330 |
|
1325 |
public function getMessagebyTemplate($data) {
|
1326 |
$post_template = $this->post_template[$data->networkId][$data->networkType];
|
1327 |
|
1328 |
+
//V6.5.5 - Xing Pages => Two diferend kinds
|
1329 |
+
if($data->networkId == 19 && $data->networkType == 1 && (int) $data->networkKind >= 0){
|
1330 |
+
if(!isset($post_template['short_text'][0]['limit'])) {
|
1331 |
+
if(isset($post_template['short_text']['limit'])) {
|
1332 |
+
$default_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1333 |
+
if(isset($default_template[$data->networkId][$data->networkType]['short_text'][4])) {
|
1334 |
+
$post_template['short_text'] = array(0 => $post_template['short_text'], 4 => $default_template[$data->networkId][$data->networkType]['short_text'][4]);
|
1335 |
+
}
|
1336 |
+
} else {
|
1337 |
+
$default_template = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1338 |
+
if(isset($default_template[$data->networkId][$data->networkType])) {
|
1339 |
+
$post_template = $default_template[$data->networkId][$data->networkType];
|
1340 |
+
}
|
1341 |
+
}
|
1342 |
+
}
|
1343 |
+
$content_min = (isset($post_template['short_text'][$data->networkKind]['range_min'])) ? $post_template['short_text'][$data->networkKind]['range_min'] : 0;
|
1344 |
+
$content_max = (isset($post_template['short_text'][$data->networkKind]['range_max'])) ? $post_template['short_text'][$data->networkKind]['range_max'] : 0;
|
1345 |
+
$excerpt_min = (isset($post_template['short_text'][$data->networkKind]['excerpt_range_min'])) ? $post_template['short_text'][$data->networkKind]['excerpt_range_min'] : 0;
|
1346 |
+
$excerpt_max = (isset($post_template['short_text'][$data->networkKind]['excerpt_range_max'])) ? $post_template['short_text'][$data->networkKind]['excerpt_range_max'] : 0;
|
1347 |
+
$limit = (isset($post_template['short_text'][$data->networkKind]['limit'])) ? $post_template['short_text'][$data->networkKind]['limit'] : 0;
|
1348 |
+
} else {
|
1349 |
+
//V5.6.1
|
1350 |
+
if (!isset($post_template['short_text']['excerpt_range_max'])) {
|
1351 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1352 |
+
if(isset($defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_max'])) {
|
1353 |
+
$post_template['short_text']['excerpt_range_max'] = $defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_max'];
|
1354 |
+
}
|
1355 |
+
}
|
1356 |
+
if (!isset($post_template['short_text']['excerpt_range_min'])) {
|
1357 |
+
$defaultSchema = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
|
1358 |
+
if(isset($defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_min'])) {
|
1359 |
+
$post_template['short_text']['excerpt_range_min'] = $defaultSchema[$data->networkId][$data->networkType]['short_text']['excerpt_range_min'];
|
1360 |
+
}
|
1361 |
+
}
|
1362 |
+
$content_min = (isset($post_template['short_text']['range_min'])) ? $post_template['short_text']['range_min'] : 0;
|
1363 |
+
$content_max = (isset($post_template['short_text']['range_max'])) ? $post_template['short_text']['range_max'] : 0;
|
1364 |
+
$excerpt_min = (isset($post_template['short_text']['excerpt_range_min'])) ? $post_template['short_text']['excerpt_range_min'] : 0;
|
1365 |
+
$excerpt_max = (isset($post_template['short_text']['excerpt_range_max'])) ? $post_template['short_text']['excerpt_range_max'] : 0;
|
1366 |
+
$limit = (isset($post_template['short_text']['limit'])) ? $post_template['short_text']['limit'] : 0;
|
1367 |
}
|
1368 |
|
1369 |
$message = $post_template['content'];
|
1370 |
|
1371 |
//B2S CC
|
1372 |
if ($this->b2sPostType == 'ex' && isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1373 |
+
$preContent = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $content_min, (int) $content_max);
|
1374 |
$appendFirst = true;
|
1375 |
if (strpos($message, '{CONTENT}') !== false) {
|
1376 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1383 |
//B2S Customize
|
1384 |
} else {
|
1385 |
if (isset($this->postData->post_content) && !empty($this->postData->post_content)) {
|
1386 |
+
$preContent = B2S_Util::getExcerpt(B2S_Util::prepareContent($this->postId, $this->postData->post_content, $this->postUrl, false, (in_array($data->networkId, $this->allowNoEmoji) ? false : true), $this->userLang), (int) $content_min, (int) $content_max);
|
1387 |
$message = preg_replace("/\{CONTENT\}/", addcslashes($preContent, "\\$"), $message);
|
1388 |
} else {
|
1389 |
$message = preg_replace("/\{CONTENT\}/", "", $message);
|
1397 |
}
|
1398 |
|
1399 |
if (isset($this->postData->post_excerpt) && !empty($this->postData->post_excerpt)) {
|
1400 |
+
$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) $excerpt_min, (int) $excerpt_max);
|
1401 |
$message = stripslashes(preg_replace("/\{EXCERPT\}/", addcslashes($excerpt, "\\$"), $message));
|
1402 |
} else {
|
1403 |
$message = preg_replace("/\{EXCERPT\}/", "", $message);
|
1420 |
$message = preg_replace("/\\n/", "<br>", $message);
|
1421 |
}
|
1422 |
|
1423 |
+
if (isset($limit) && (int) $limit > 0) {
|
1424 |
+
$message = B2S_Util::getExcerpt($message, 0, $limit);
|
1425 |
}
|
1426 |
|
1427 |
return $message;
|
includes/B2S/Ship/Navbar.php
CHANGED
@@ -83,7 +83,7 @@ class B2S_Ship_Navbar {
|
|
83 |
$content .= '</div>';
|
84 |
$content .= '<div class="b2s-network-details">';
|
85 |
$content .= '<h4>' . esc_html($username) . '</h4>';
|
86 |
-
$content .= '<p>' .esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($this->networkKindName[$data->networkKind]) ? $this->networkKindName[$data->networkKind]
|
87 |
$content .= '</div>';
|
88 |
$content .= '<div class="b2s-network-status" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
|
89 |
$content .= '<span class="b2s-network-hide b2s-network-status-img glyphicon glyphicon-ok glyphicon-success"></span>';
|
83 |
$content .= '</div>';
|
84 |
$content .= '<div class="b2s-network-details">';
|
85 |
$content .= '<h4>' . esc_html($username) . '</h4>';
|
86 |
+
$content .= '<p>' .esc_html(($data->networkId == 19 && $data->networkType == 1 && isset($this->networkKindName[$data->networkKind]) ? $this->networkKindName[$data->networkKind] : (($data->networkId == 4) ? esc_html__('Blog', 'blog2social') : $this->networkTypeName[$data->networkType])) . ' | ' . $this->neworkName[$data->networkId]) . '</p>';
|
87 |
$content .= '</div>';
|
88 |
$content .= '<div class="b2s-network-status" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">';
|
89 |
$content .= '<span class="b2s-network-hide b2s-network-status-img glyphicon glyphicon-ok glyphicon-success"></span>';
|
includes/Loader.php
CHANGED
@@ -70,7 +70,7 @@ class B2S_Loader {
|
|
70 |
2 => array('short_text' => array('active' => 0, 'range_min' => 1499, 'range_max' => 1500, 'excerpt_range_min' => 1499, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0)),
|
71 |
18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1499, 'range_max' => 1500, 'excerpt_range_min' => 1499, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' => '{CONTENT} {KEYWORDS}', 'format' => false)),
|
72 |
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0),
|
73 |
-
1 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' =>
|
74 |
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1)),
|
75 |
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0))
|
76 |
)));
|
@@ -634,7 +634,7 @@ class B2S_Loader {
|
|
634 |
if (isset($tosCrossPosting[$value->networkId][$value->networkType])) {
|
635 |
continue;
|
636 |
}
|
637 |
-
$res = $autoShare->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType);
|
638 |
if ($res !== false && is_array($res)) {
|
639 |
$ship = true;
|
640 |
$res = array_merge($res, $defaultPostData);
|
@@ -870,7 +870,7 @@ class B2S_Loader {
|
|
870 |
public function defineText() {
|
871 |
define('B2S_PLUGIN_PAGE_TITLE', serialize(array('blog2social-notice' => esc_html__('Notifications', 'blog2social'), 'blog2social-publish' => esc_html__('Shared Posts', 'blog2social'), 'blog2social-approve' => esc_html__('Instant Sharing', 'blog2social'), 'blog2social-draft-post' => esc_html__('Drafts', 'blog2social'), 'blog2social-sched' => esc_html__('Scheduled Posts', 'blog2social'), 'blog2social-curation-draft' => esc_html__('Social Media Post Drafts', 'blog2social'), 'blog2social-favorites' => esc_html__('Favorites', 'blog2social'), 'blog2social-autopost' => esc_html__('Auto-Post', 'blog2social'), 'blog2social-repost' => esc_html__('Re-Share Posts', 'blog2social') . ' <span class="label label-success label-sm">' . esc_html__("NEW", "blog2social") . '</span>')));
|
872 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
873 |
-
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company', 'blog2social'), esc_html__('Business', 'blog2social'))));
|
874 |
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' => sprintf(__('The network could not publish your post. Please see <a target="_blank" href="%s">FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
875 |
'TOKEN' => esc_html__('Your authorization has expired. Please reconnect your account in the Blog2Social network settings.', 'blog2social'),
|
876 |
'CONTENT' => esc_html__('The network has marked the post as spam or abusive.', 'blog2social'),
|
70 |
2 => array('short_text' => array('active' => 0, 'range_min' => 1499, 'range_max' => 1500, 'excerpt_range_min' => 1499, 'excerpt_range_max' => 1500, 'limit' => 0), 'content' => '{CONTENT} {KEYWORDS}', 'format' => 0)),
|
71 |
18 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1499, 'range_max' => 1500, 'excerpt_range_min' => 1499, 'excerpt_range_max' => 1500, 'limit' => 1500), 'content' => '{CONTENT} {KEYWORDS}', 'format' => false)),
|
72 |
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 1000), 'content' => '{CONTENT}', 'format' => 0),
|
73 |
+
1 => array('short_text' => array(0 => array('deprecated_date' => '2020-11-30', 'active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 400), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1),
|
74 |
2 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1)),
|
75 |
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 239, 'range_max' => 320, 'excerpt_range_min' => 239, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0))
|
76 |
)));
|
634 |
if (isset($tosCrossPosting[$value->networkId][$value->networkType])) {
|
635 |
continue;
|
636 |
}
|
637 |
+
$res = $autoShare->prepareShareData($value->networkAuthId, $value->networkId, $value->networkType, ((isset($value->networkKind) && (int) $value->networkKind >= 0) ? $value->networkKind : 0));
|
638 |
if ($res !== false && is_array($res)) {
|
639 |
$ship = true;
|
640 |
$res = array_merge($res, $defaultPostData);
|
870 |
public function defineText() {
|
871 |
define('B2S_PLUGIN_PAGE_TITLE', serialize(array('blog2social-notice' => esc_html__('Notifications', 'blog2social'), 'blog2social-publish' => esc_html__('Shared Posts', 'blog2social'), 'blog2social-approve' => esc_html__('Instant Sharing', 'blog2social'), 'blog2social-draft-post' => esc_html__('Drafts', 'blog2social'), 'blog2social-sched' => esc_html__('Scheduled Posts', 'blog2social'), 'blog2social-curation-draft' => esc_html__('Social Media Post Drafts', 'blog2social'), 'blog2social-favorites' => esc_html__('Favorites', 'blog2social'), 'blog2social-autopost' => esc_html__('Auto-Post', 'blog2social'), 'blog2social-repost' => esc_html__('Re-Share Posts', 'blog2social') . ' <span class="label label-success label-sm">' . esc_html__("NEW", "blog2social") . '</span>')));
|
872 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
873 |
+
define('B2S_PLUGIN_NETWORK_KIND', serialize(array(esc_html__('Company-Page (Employer Branding Profile)', 'blog2social'), esc_html__('Business', 'blog2social'), '', '', esc_html__('Company-Page (Employer Branding Profile)', 'blog2social'))));
|
874 |
define('B2S_PLUGIN_NETWORK_ERROR', serialize(array('DEFAULT' => sprintf(__('The network could not publish your post. Please see <a target="_blank" href="%s">FAQ</a>', 'blog2social'), esc_url(B2S_Tools::getSupportLink('share_error'))),
|
875 |
'TOKEN' => esc_html__('Your authorization has expired. Please reconnect your account in the Blog2Social network settings.', 'blog2social'),
|
876 |
'CONTENT' => esc_html__('The network has marked the post as spam or abusive.', 'blog2social'),
|
includes/Tools.php
CHANGED
@@ -250,6 +250,9 @@ class B2S_Tools {
|
|
250 |
if($type == 'auto_post_assign'){
|
251 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=72&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=79&artlang=de';
|
252 |
}
|
|
|
|
|
|
|
253 |
}
|
254 |
|
255 |
public static function getAffiliateId() {
|
250 |
if($type == 'auto_post_assign'){
|
251 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=3&id=72&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=3&id=79&artlang=de';
|
252 |
}
|
253 |
+
if($type == 'xing_company_page_old_design'){
|
254 |
+
return ($lang == 'en') ? 'https://community.xing.com/de/s/article/Ihr-Arbeitgeberprofil-im-neuen-Gewand-Steigen-Sie-jetzt-um' : 'https://community.xing.com/de/s/article/Ihr-Arbeitgeberprofil-im-neuen-Gewand-Steigen-Sie-jetzt-um';
|
255 |
+
}
|
256 |
}
|
257 |
|
258 |
public static function getAffiliateId() {
|
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: 2020-10
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,10 +12,10 @@ msgstr ""
|
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
-
"POT-Creation-Date: 2020-10
|
16 |
"Last-Translator: marius <wolf.12345@gmx.de>\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
-
"X-Loco-Version: 2.3.0; wp-5.4.
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
@@ -45,28 +45,28 @@ msgstr "Rebrandly"
|
|
45 |
msgid "Sniply"
|
46 |
msgstr "Sniply"
|
47 |
|
48 |
-
#: includes/Loader.php:
|
49 |
msgid "Blog2Social: Autoposter"
|
50 |
msgstr "Blog2Social: Auto-Poster"
|
51 |
|
52 |
-
#: includes/Loader.php:
|
53 |
msgid "Blog2Social: Social Media Content Calendar"
|
54 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
55 |
|
56 |
-
#: includes/Loader.php:
|
57 |
msgid "This post will be shared into your social media from"
|
58 |
msgstr ""
|
59 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
60 |
|
61 |
-
#: includes/Loader.php:
|
62 |
msgid "show details"
|
63 |
msgstr "siehe Details"
|
64 |
|
65 |
-
#: includes/Loader.php:
|
66 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
67 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
68 |
|
69 |
-
#: includes/Loader.php:
|
70 |
msgid ""
|
71 |
"Please make sure that your post, page or custom post type is published or "
|
72 |
"scheduled to be published on this blog before you try to post it with "
|
@@ -79,7 +79,7 @@ msgstr ""
|
|
79 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
80 |
"werden mit dem Posting-ID-Link geteilt."
|
81 |
|
82 |
-
#: includes/Loader.php:
|
83 |
#: includes/B2S/AutoPost/Item.php:59
|
84 |
msgid ""
|
85 |
"There are no social network accounts assigned to your selected network "
|
@@ -90,102 +90,102 @@ msgstr ""
|
|
90 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
91 |
"eine andere Netzwerkgruppierung aus. "
|
92 |
|
93 |
-
#: includes/Loader.php:
|
94 |
#: views/b2s/html/sidebar.ship.php:44
|
95 |
msgid "Upgrade to Premium"
|
96 |
msgstr "Premium freischalten"
|
97 |
|
98 |
-
#: includes/Loader.php:
|
99 |
-
#: includes/Loader.php:
|
100 |
#: views/b2s/html/sidebar.php:137
|
101 |
msgid "Settings"
|
102 |
msgstr "Einstellungen"
|
103 |
|
104 |
-
#: includes/Loader.php:
|
105 |
msgid "Support"
|
106 |
msgstr "Support"
|
107 |
|
108 |
-
#: includes/Loader.php:
|
109 |
msgid "Notifications"
|
110 |
msgstr "Benachrichtigungen"
|
111 |
|
112 |
-
#: includes/Loader.php:
|
113 |
#: views/b2s/html/sidebar.php:125
|
114 |
msgid "Shared Posts"
|
115 |
msgstr "geteilte Beiträge"
|
116 |
|
117 |
-
#: includes/Loader.php:
|
118 |
#: views/b2s/html/sidebar.php:119
|
119 |
msgid "Instant Sharing"
|
120 |
msgstr "Instant Sharing"
|
121 |
|
122 |
-
#: includes/Loader.php:
|
123 |
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:94
|
124 |
#: views/b2s/html/sidebar.php:116
|
125 |
msgid "Drafts"
|
126 |
msgstr "Entwürfe"
|
127 |
|
128 |
-
#: includes/Loader.php:
|
129 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
130 |
msgid "Scheduled Posts"
|
131 |
msgstr "geplante Beiträge"
|
132 |
|
133 |
-
#: includes/Loader.php:
|
134 |
msgid "Social Media Post Drafts"
|
135 |
msgstr "Social Media Posts Entwürfe"
|
136 |
|
137 |
-
#: includes/Loader.php:
|
138 |
#: views/b2s/html/sidebar.php:113
|
139 |
msgid "Favorites"
|
140 |
msgstr "Favoriten"
|
141 |
|
142 |
-
#: includes/Loader.php:
|
143 |
#: views/b2s/html/sidebar.php:75
|
144 |
msgid "Auto-Post"
|
145 |
msgstr "Beiträge automatisch teilen"
|
146 |
|
147 |
-
#: includes/Loader.php:
|
148 |
#: views/b2s/html/sidebar.php:72
|
149 |
msgid "Re-Share Posts"
|
150 |
msgstr "Beiträge wiederholt teilen"
|
151 |
|
152 |
-
#: includes/Loader.php:
|
153 |
#: views/b2s/support.php:22
|
154 |
msgid "NEW"
|
155 |
msgstr "Neu"
|
156 |
|
157 |
-
#: includes/Loader.php:
|
158 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:151
|
159 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:156
|
160 |
-
#: includes/B2S/Network/Item.php:224 includes/B2S/Network/Item.php:
|
161 |
#: includes/B2S/Ship/Portale.php:38 includes/B2S/Ship/Portale.php:40
|
162 |
#: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
|
163 |
msgid "Profile"
|
164 |
msgstr "Profil"
|
165 |
|
166 |
-
#: includes/Loader.php:
|
167 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:161
|
168 |
-
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:
|
169 |
-
#: includes/B2S/Network/Item.php:
|
170 |
#: includes/B2S/Ship/Portale.php:35
|
171 |
msgid "Page"
|
172 |
msgstr "Seite"
|
173 |
|
174 |
-
#: includes/Loader.php:
|
175 |
-
#: includes/B2S/Network/Item.php:
|
176 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
177 |
msgid "Group"
|
178 |
msgstr "Gruppe"
|
179 |
|
180 |
-
#: includes/Loader.php:
|
181 |
-
msgid "Company"
|
182 |
-
msgstr "
|
183 |
|
184 |
-
#: includes/Loader.php:
|
185 |
msgid "Business"
|
186 |
msgstr "Business"
|
187 |
|
188 |
-
#: includes/Loader.php:
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"The network could not publish your post. Please see <a target=\"_blank\" "
|
@@ -194,7 +194,7 @@ msgstr ""
|
|
194 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Siehe <a "
|
195 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
196 |
|
197 |
-
#: includes/Loader.php:
|
198 |
msgid ""
|
199 |
"Your authorization has expired. Please reconnect your account in the "
|
200 |
"Blog2Social network settings."
|
@@ -202,11 +202,11 @@ msgstr ""
|
|
202 |
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
203 |
"Blog2Social Netzwerkeinstellungen erneut."
|
204 |
|
205 |
-
#: includes/Loader.php:
|
206 |
msgid "The network has marked the post as spam or abusive."
|
207 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
208 |
|
209 |
-
#: includes/Loader.php:
|
210 |
msgid ""
|
211 |
"We don't have the permission to publish your post. Please check your "
|
212 |
"authorization."
|
@@ -214,7 +214,7 @@ msgstr ""
|
|
214 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
215 |
"überprüfe deine Autorisierung."
|
216 |
|
217 |
-
#: includes/Loader.php:
|
218 |
#, php-format
|
219 |
msgid ""
|
220 |
"Your authorization is interrupted. Please check your authorization. Please "
|
@@ -223,11 +223,11 @@ msgstr ""
|
|
223 |
"Deine Autorisierung ist unterbrochen. Bitte überprüfe Deine Verbindung. "
|
224 |
"Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
225 |
|
226 |
-
#: includes/Loader.php:
|
227 |
msgid "Your daily limit has been reached."
|
228 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
229 |
|
230 |
-
#: includes/Loader.php:
|
231 |
msgid ""
|
232 |
"Your post could not be posted, because your image is not available or the "
|
233 |
"image source does not allow to publish"
|
@@ -235,7 +235,7 @@ msgstr ""
|
|
235 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
236 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
237 |
|
238 |
-
#: includes/Loader.php:
|
239 |
#, php-format
|
240 |
msgid ""
|
241 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
@@ -244,7 +244,7 @@ msgstr ""
|
|
244 |
"Das Netzwerk hat Dein Konto gesperrt. Siehe <a target=\"_blank\" href=\"%s\">"
|
245 |
"FAQ</a>"
|
246 |
|
247 |
-
#: includes/Loader.php:
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
@@ -253,14 +253,14 @@ msgstr ""
|
|
253 |
"Die Anzahl der Bilder ist erreicht. Siehe <a target=\"_blank\" href=\"%s\">"
|
254 |
"FAQ</a>"
|
255 |
|
256 |
-
#: includes/Loader.php:
|
257 |
msgid ""
|
258 |
"Your daily limit for this network has been reached. Please try again later."
|
259 |
msgstr ""
|
260 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
261 |
"versuche es später noch einmal."
|
262 |
|
263 |
-
#: includes/Loader.php:
|
264 |
#, php-format
|
265 |
msgid ""
|
266 |
"The network can not publish special characters such as Emoji. Please see <a "
|
@@ -269,26 +269,26 @@ msgstr ""
|
|
269 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Siehe <a "
|
270 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
271 |
|
272 |
-
#: includes/Loader.php:
|
273 |
msgid "Your post is a duplicate."
|
274 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
275 |
|
276 |
-
#: includes/Loader.php:
|
277 |
msgid "The network requires a public url."
|
278 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
279 |
|
280 |
-
#: includes/Loader.php:
|
281 |
msgid ""
|
282 |
"Your blog post was not available for the network at the time of publication."
|
283 |
msgstr ""
|
284 |
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
285 |
"nicht verfügbar."
|
286 |
|
287 |
-
#: includes/Loader.php:
|
288 |
msgid "You have already retweeted this post."
|
289 |
msgstr "Du hast diesen Post bereits retweetet."
|
290 |
|
291 |
-
#: includes/Loader.php:
|
292 |
msgid ""
|
293 |
"This XING API is no longer supported by XING. Please connect your XING "
|
294 |
"accounts with the new XING interface to reschedule your posts."
|
@@ -297,19 +297,19 @@ msgstr ""
|
|
297 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
298 |
"zu planen."
|
299 |
|
300 |
-
#: includes/Loader.php:
|
301 |
msgid "An image is required to post on this social network."
|
302 |
msgstr ""
|
303 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
304 |
"erforderlich."
|
305 |
|
306 |
-
#: includes/Loader.php:
|
307 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
308 |
msgstr ""
|
309 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
310 |
"erforderlich."
|
311 |
|
312 |
-
#: includes/Loader.php:
|
313 |
msgid ""
|
314 |
"Your post could not be posted, because your image can not be processed by "
|
315 |
"the network."
|
@@ -317,7 +317,7 @@ msgstr ""
|
|
317 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
318 |
"Netzwerk verarbeitet werden kann"
|
319 |
|
320 |
-
#: includes/Loader.php:
|
321 |
#, php-format
|
322 |
msgid ""
|
323 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
@@ -326,67 +326,67 @@ msgstr ""
|
|
326 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Siehe <a "
|
327 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
328 |
|
329 |
-
#: includes/Loader.php:
|
330 |
msgid "Your group can not be found by the network."
|
331 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
332 |
|
333 |
-
#: includes/Loader.php:
|
334 |
msgid "Dashboard"
|
335 |
msgstr "Dashboard"
|
336 |
|
337 |
-
#: includes/Loader.php:
|
338 |
msgid "Share Website & Blog Content"
|
339 |
msgstr "Webseiten- & Blog Content teilen"
|
340 |
|
341 |
-
#: includes/Loader.php:
|
342 |
msgid "Site & Blog Content"
|
343 |
msgstr "Seiten & Blog Content"
|
344 |
|
345 |
-
#: includes/Loader.php:
|
346 |
msgid "Create Social Media Posts"
|
347 |
msgstr "Erstelle Social Media Posts"
|
348 |
|
349 |
-
#: includes/Loader.php:
|
350 |
msgid "Social Media Posts"
|
351 |
msgstr "Social Media Posts"
|
352 |
|
353 |
-
#: includes/Loader.php:
|
354 |
#: views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:128
|
355 |
msgid "Calendar"
|
356 |
msgstr "Kalender"
|
357 |
|
358 |
-
#: includes/Loader.php:
|
359 |
msgid "Networks"
|
360 |
msgstr "Netzwerke"
|
361 |
|
362 |
-
#: includes/Loader.php:
|
363 |
msgid "PR-Service"
|
364 |
msgstr "PR-Service"
|
365 |
|
366 |
-
#: includes/Loader.php:
|
367 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
368 |
#: views/b2s/html/sidebar.ship.php:66
|
369 |
msgid "Help & Support"
|
370 |
msgstr "Hilfe & Support"
|
371 |
|
372 |
-
#: includes/Loader.php:
|
373 |
msgid "Premium"
|
374 |
msgstr "Premium"
|
375 |
|
376 |
-
#: includes/Loader.php:
|
377 |
msgid "PREMIUM"
|
378 |
msgstr "PREMIUM"
|
379 |
|
380 |
-
#: includes/Loader.php:
|
381 |
#: views/b2s/html/sidebar.ship.php:24
|
382 |
msgid "Blog2Social"
|
383 |
msgstr "Blog2Social"
|
384 |
|
385 |
-
#: includes/Loader.php:
|
386 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
387 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
388 |
|
389 |
-
#: includes/Loader.php:
|
390 |
#, php-format
|
391 |
msgid ""
|
392 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
@@ -395,11 +395,11 @@ msgstr ""
|
|
395 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
396 |
"in unserem FAQs.</a>"
|
397 |
|
398 |
-
#: includes/Loader.php:
|
399 |
msgid "or"
|
400 |
msgstr "oder"
|
401 |
|
402 |
-
#: includes/Loader.php:
|
403 |
msgid "back to install plugins"
|
404 |
msgstr "zurück zur Pluginübersicht"
|
405 |
|
@@ -450,200 +450,200 @@ msgstr ""
|
|
450 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
451 |
"zu tun."
|
452 |
|
453 |
-
#: includes/Tools.php:
|
454 |
#: views/b2s/html/sidebar.ship.php:29
|
455 |
msgid "License"
|
456 |
msgstr "Lizenz"
|
457 |
|
458 |
-
#: includes/Tools.php:
|
459 |
msgid "Greece"
|
460 |
msgstr "Griechenland"
|
461 |
|
462 |
-
#: includes/Tools.php:
|
463 |
msgid "India"
|
464 |
msgstr "Indien"
|
465 |
|
466 |
-
#: includes/Tools.php:
|
467 |
msgid "United States of America"
|
468 |
msgstr "Vereinigte Staaten von Amerika"
|
469 |
|
470 |
-
#: includes/Tools.php:
|
471 |
msgid "Ireland"
|
472 |
msgstr "Irland"
|
473 |
|
474 |
-
#: includes/Tools.php:
|
475 |
msgid "Italy"
|
476 |
msgstr "Italien"
|
477 |
|
478 |
-
#: includes/Tools.php:
|
479 |
msgid "Switzerland"
|
480 |
msgstr "Schweiz"
|
481 |
|
482 |
-
#: includes/Tools.php:
|
483 |
msgid "Czechoslovakia"
|
484 |
msgstr "Tschechoslowakei"
|
485 |
|
486 |
-
#: includes/Tools.php:
|
487 |
msgid "Indonesia"
|
488 |
msgstr "Indonesien"
|
489 |
|
490 |
-
#: includes/Tools.php:
|
491 |
msgid "Spain"
|
492 |
msgstr "Spanien"
|
493 |
|
494 |
-
#: includes/Tools.php:
|
495 |
msgid "Canada"
|
496 |
msgstr "Kanada"
|
497 |
|
498 |
-
#: includes/Tools.php:
|
499 |
msgid "Great Britain"
|
500 |
msgstr "Großbritannien"
|
501 |
|
502 |
-
#: includes/Tools.php:
|
503 |
msgid "Russia"
|
504 |
msgstr "Russland"
|
505 |
|
506 |
-
#: includes/Tools.php:
|
507 |
msgid "Netherlands"
|
508 |
msgstr "Niederlande"
|
509 |
|
510 |
-
#: includes/Tools.php:
|
511 |
msgid "Portugal"
|
512 |
msgstr "Portugal"
|
513 |
|
514 |
-
#: includes/Tools.php:
|
515 |
msgid "Norway"
|
516 |
msgstr "Norwegen"
|
517 |
|
518 |
-
#: includes/Tools.php:
|
519 |
msgid "Turkey"
|
520 |
msgstr "Türkei"
|
521 |
|
522 |
-
#: includes/Tools.php:
|
523 |
msgid "Australia"
|
524 |
msgstr "Australien"
|
525 |
|
526 |
-
#: includes/Tools.php:
|
527 |
msgid "Austria"
|
528 |
msgstr "Österreich"
|
529 |
|
530 |
-
#: includes/Tools.php:
|
531 |
msgid "Poland"
|
532 |
msgstr "Polen"
|
533 |
|
534 |
-
#: includes/Tools.php:
|
535 |
msgid "France"
|
536 |
msgstr "Frankreich"
|
537 |
|
538 |
-
#: includes/Tools.php:
|
539 |
msgid "Romania"
|
540 |
msgstr "Rumänien"
|
541 |
|
542 |
-
#: includes/Tools.php:
|
543 |
msgid "Germany"
|
544 |
msgstr "Deutschland"
|
545 |
|
546 |
-
#: includes/Tools.php:
|
547 |
msgid "Denmark"
|
548 |
msgstr "Dänemark"
|
549 |
|
550 |
-
#: includes/Tools.php:
|
551 |
msgid "New Zealand"
|
552 |
msgstr "Neuseeland"
|
553 |
|
554 |
-
#: includes/Tools.php:
|
555 |
msgid "Finland"
|
556 |
msgstr "Finnland"
|
557 |
|
558 |
-
#: includes/Tools.php:
|
559 |
msgid "Hungary"
|
560 |
msgstr "Ungarn"
|
561 |
|
562 |
-
#: includes/Tools.php:
|
563 |
msgid "Japan"
|
564 |
msgstr "Japan"
|
565 |
|
566 |
-
#: includes/Tools.php:
|
567 |
msgid "Argentina"
|
568 |
msgstr "Argentinien"
|
569 |
|
570 |
-
#: includes/Tools.php:
|
571 |
msgid "Korea"
|
572 |
msgstr "Korea"
|
573 |
|
574 |
-
#: includes/Tools.php:
|
575 |
msgid "Sweden"
|
576 |
msgstr "Schweden"
|
577 |
|
578 |
-
#: includes/Tools.php:
|
579 |
msgid "Mexico"
|
580 |
msgstr "Mexiko"
|
581 |
|
582 |
-
#: includes/Tools.php:
|
583 |
msgid "Slovakia"
|
584 |
msgstr "Slowakei"
|
585 |
|
586 |
-
#: includes/Tools.php:
|
587 |
msgid "Chile"
|
588 |
msgstr "Chile"
|
589 |
|
590 |
-
#: includes/Tools.php:
|
591 |
msgid "Colombia"
|
592 |
msgstr "Kolumbien"
|
593 |
|
594 |
-
#: includes/Tools.php:
|
595 |
msgid "South Africa"
|
596 |
msgstr "Südafrika"
|
597 |
|
598 |
-
#: includes/Tools.php:
|
599 |
msgid "Philippines"
|
600 |
msgstr "Philippinen"
|
601 |
|
602 |
-
#: includes/Tools.php:
|
603 |
msgid "is determined automatically"
|
604 |
msgstr "wird automatisch ermittelt"
|
605 |
|
606 |
-
#: includes/Tools.php:
|
607 |
msgid "Search"
|
608 |
msgstr "Suche"
|
609 |
|
610 |
-
#: includes/Tools.php:
|
611 |
msgid "Recently Used"
|
612 |
msgstr "Zuletzt verwendet"
|
613 |
|
614 |
-
#: includes/Tools.php:
|
615 |
msgid "Smileys & People"
|
616 |
msgstr "Smileys & Personen"
|
617 |
|
618 |
-
#: includes/Tools.php:
|
619 |
msgid "Animals & Nature"
|
620 |
msgstr "Tiere & Natur"
|
621 |
|
622 |
-
#: includes/Tools.php:
|
623 |
msgid "Food & Drink"
|
624 |
msgstr "Essen & Trinken"
|
625 |
|
626 |
-
#: includes/Tools.php:
|
627 |
msgid "Activities"
|
628 |
msgstr "Aktivitäten"
|
629 |
|
630 |
-
#: includes/Tools.php:
|
631 |
msgid "Travel & Places"
|
632 |
msgstr "Reisen & Orte"
|
633 |
|
634 |
-
#: includes/Tools.php:
|
635 |
msgid "Objects"
|
636 |
msgstr "Objekte"
|
637 |
|
638 |
-
#: includes/Tools.php:
|
639 |
msgid "Symbols"
|
640 |
msgstr "Symbole"
|
641 |
|
642 |
-
#: includes/Tools.php:
|
643 |
msgid "Flags"
|
644 |
msgstr "Flaggen"
|
645 |
|
646 |
-
#: includes/Tools.php:
|
647 |
msgid "No emojis found"
|
648 |
msgstr "Keine Ergebnisse"
|
649 |
|
@@ -690,17 +690,17 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
|
690 |
msgid "Please contact our support!"
|
691 |
msgstr "Bitte kontaktiere unseren Support!"
|
692 |
|
693 |
-
#: includes/Ajax/Post.php:
|
694 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
695 |
-
#: includes/B2S/Network/Item.php:
|
696 |
msgid "Unknown username"
|
697 |
msgstr "unbekannter Blog-Nutzer"
|
698 |
|
699 |
-
#: includes/Ajax/Post.php:
|
700 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
701 |
-
#: includes/B2S/Post/Item.php:
|
702 |
-
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:
|
703 |
-
#: includes/B2S/Ship/Item.php:
|
704 |
msgid "delete"
|
705 |
msgstr "löschen"
|
706 |
|
@@ -756,7 +756,7 @@ msgstr "Anpassen & Planen"
|
|
756 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
757 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
758 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
759 |
-
#: includes/B2S/Ship/Item.php:
|
760 |
msgid "Info"
|
761 |
msgstr "Info"
|
762 |
|
@@ -796,7 +796,7 @@ msgstr "Erweiterte Einstellungen"
|
|
796 |
msgid "enable Auto-Posting"
|
797 |
msgstr "Auto-Posting aktivieren"
|
798 |
|
799 |
-
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:
|
800 |
msgid "show calendar"
|
801 |
msgstr "Planungskalender anzeigen"
|
802 |
|
@@ -1201,9 +1201,9 @@ msgstr "Bild-Beitrag"
|
|
1201 |
#: views/b2s/curation.php:49 views/b2s/network.php:230 views/b2s/ship.php:23
|
1202 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1203 |
#: includes/B2S/Network/Item.php:168 includes/B2S/Network/Item.php:262
|
1204 |
-
#: includes/B2S/Network/Item.php:
|
1205 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1206 |
-
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:
|
1207 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18
|
1208 |
#: views/b2s/html/post.navbar.php:20 views/b2s/partials/post-edit-modal.php:9
|
1209 |
#: views/b2s/widgets/posts.php:18
|
@@ -1231,20 +1231,20 @@ msgstr "Link eingeben"
|
|
1231 |
msgid "continue"
|
1232 |
msgstr "weiter"
|
1233 |
|
1234 |
-
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:
|
1235 |
-
#: includes/B2S/Ship/Item.php:
|
1236 |
-
#: includes/B2S/Ship/Item.php:
|
1237 |
-
#: includes/B2S/Ship/Item.php:
|
1238 |
-
#: includes/B2S/Ship/Item.php:
|
1239 |
-
#: includes/B2S/Ship/Item.php:
|
1240 |
-
#: includes/B2S/Ship/Item.php:
|
1241 |
-
#: includes/B2S/Ship/Item.php:
|
1242 |
-
#: includes/B2S/Ship/Item.php:
|
1243 |
-
#: includes/B2S/Ship/Item.php:
|
1244 |
-
#: includes/B2S/Ship/Item.php:
|
1245 |
-
#: includes/B2S/Ship/Item.php:
|
1246 |
-
#: includes/B2S/Ship/Item.php:
|
1247 |
-
#: includes/B2S/Ship/Item.php:
|
1248 |
msgid "Change image"
|
1249 |
msgstr "Bild ändern"
|
1250 |
|
@@ -1289,7 +1289,7 @@ msgid "Blog2Social Premium covers everything you need."
|
|
1289 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1290 |
|
1291 |
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:271
|
1292 |
-
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:
|
1293 |
msgid "Schedule for specific dates"
|
1294 |
msgstr "Für bestimmte Termine planen"
|
1295 |
|
@@ -1406,9 +1406,9 @@ msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
|
1406 |
|
1407 |
#: views/b2s/network.php:35 includes/B2S/Network/Item.php:156
|
1408 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:165
|
1409 |
-
#: includes/B2S/Ship/Image.php:92 includes/B2S/Ship/Item.php:
|
1410 |
-
#: includes/B2S/Ship/Item.php:
|
1411 |
-
#: includes/B2S/Ship/Item.php:
|
1412 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:45
|
1413 |
msgid "PRO"
|
1414 |
msgstr "PRO"
|
@@ -1469,7 +1469,7 @@ msgstr ""
|
|
1469 |
"Business Brancheneinträgen zu erweitern."
|
1470 |
|
1471 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1472 |
-
#: includes/B2S/Ship/Item.php:
|
1473 |
msgid "Learn more"
|
1474 |
msgstr "Mehr erfahren"
|
1475 |
|
@@ -1544,7 +1544,7 @@ msgid "Edit Post Template"
|
|
1544 |
msgstr "Beitragsvorlage bearbeiten"
|
1545 |
|
1546 |
#: views/b2s/network.php:242 views/b2s/settings.php:49
|
1547 |
-
#: includes/B2S/Network/Item.php:
|
1548 |
msgid "save"
|
1549 |
msgstr "speichern"
|
1550 |
|
@@ -1623,7 +1623,7 @@ msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
|
1623 |
msgid "The name of the post author."
|
1624 |
msgstr "Der Name des Autors Deines Beitrags."
|
1625 |
|
1626 |
-
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:
|
1627 |
msgid "Character limit"
|
1628 |
msgstr "Zeichenbegrenzung"
|
1629 |
|
@@ -1884,7 +1884,7 @@ msgstr ""
|
|
1884 |
msgid "Upgrade to Blog2Social Business"
|
1885 |
msgstr "Upgrade auf Blog2Social Business"
|
1886 |
|
1887 |
-
#: views/b2s/network.php:518 includes/B2S/Network/Item.php:
|
1888 |
#, php-format
|
1889 |
msgid ""
|
1890 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1961,15 +1961,15 @@ msgid "scheduled"
|
|
1961 |
msgstr "geplant"
|
1962 |
|
1963 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1964 |
-
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:
|
1965 |
-
#: includes/B2S/Network/Item.php:
|
1966 |
#: views/b2s/html/footer.php:177
|
1967 |
msgid "Image with frame"
|
1968 |
msgstr "Bild mit Rahmen"
|
1969 |
|
1970 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1971 |
-
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:
|
1972 |
-
#: includes/B2S/Network/Item.php:
|
1973 |
#: views/b2s/html/footer.php:182
|
1974 |
msgid "Image cut out"
|
1975 |
msgstr "Bild zuschneiden"
|
@@ -2193,7 +2193,7 @@ msgstr ""
|
|
2193 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2194 |
|
2195 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
2196 |
-
#: includes/B2S/Post/Item.php:
|
2197 |
msgid "Auto-Posting"
|
2198 |
msgstr "Auto-Posting"
|
2199 |
|
@@ -3085,7 +3085,7 @@ msgid "at scheduled times"
|
|
3085 |
msgstr "zu geplanten Zeiten"
|
3086 |
|
3087 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
3088 |
-
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:
|
3089 |
#: views/b2s/partials/post-edit-modal.php:62
|
3090 |
#: views/b2s/partials/post-edit-modal.php:65
|
3091 |
msgid "Date"
|
@@ -3116,7 +3116,7 @@ msgid "Best times"
|
|
3116 |
msgstr "Beste Zeiten"
|
3117 |
|
3118 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
3119 |
-
#: includes/B2S/Ship/Item.php:
|
3120 |
#: includes/B2S/Ship/Portale.php:38
|
3121 |
msgid "Blog"
|
3122 |
msgstr "Blog"
|
@@ -3134,7 +3134,7 @@ msgstr "BUSINESS"
|
|
3134 |
msgid "You want to connect a network page?"
|
3135 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
3136 |
|
3137 |
-
#: includes/B2S/Network/Item.php:164 includes/B2S/Network/Item.php:
|
3138 |
#: includes/B2S/Ship/Portale.php:31
|
3139 |
msgid "Publication"
|
3140 |
msgstr "Publication"
|
@@ -3148,74 +3148,83 @@ msgid "Best Time Manager"
|
|
3148 |
msgstr "Best Time Manager"
|
3149 |
|
3150 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
3151 |
-
#: includes/B2S/Network/Item.php:
|
3152 |
msgid "To reactivate this connection,"
|
3153 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
3154 |
|
3155 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
3156 |
-
#: includes/B2S/Network/Item.php:
|
3157 |
msgid "please upgrade"
|
3158 |
msgstr "Bitte upgraden"
|
3159 |
|
3160 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
3161 |
-
#: includes/B2S/Network/Item.php:
|
3162 |
msgid "Authorization is interrupted since"
|
3163 |
msgstr "Autorisierung ist unterbrochen seit"
|
3164 |
|
3165 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
3166 |
-
#: includes/B2S/Network/Item.php:
|
3167 |
msgid "Assigned by"
|
3168 |
msgstr "Zugewiesen von"
|
3169 |
|
3170 |
-
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:
|
3171 |
-
#: includes/B2S/Network/Item.php:
|
3172 |
msgid "Days"
|
3173 |
msgstr "Tage"
|
3174 |
|
3175 |
-
#: includes/B2S/Network/Item.php:
|
3176 |
-
|
3177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3178 |
|
3179 |
-
#: includes/B2S/Network/Item.php:
|
3180 |
msgid "Connection currently assigned to"
|
3181 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
3182 |
|
3183 |
-
#: includes/B2S/Network/Item.php:
|
3184 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3185 |
#: views/prg/html/form.php:163
|
3186 |
msgid "Name"
|
3187 |
msgstr "Name"
|
3188 |
|
3189 |
-
#: includes/B2S/Network/Item.php:
|
3190 |
msgid "Value"
|
3191 |
msgstr "Zugeordneter Wert"
|
3192 |
|
3193 |
-
#: includes/B2S/Network/Item.php:
|
3194 |
msgid "+ add Parameter"
|
3195 |
msgstr "+ Parameter hinzufügen"
|
3196 |
|
3197 |
-
#: includes/B2S/Network/Item.php:
|
3198 |
#, php-format
|
3199 |
msgid "Apply for all %s connections"
|
3200 |
msgstr "Für alle %s Verbindungen übernehmen"
|
3201 |
|
3202 |
-
#: includes/B2S/Network/Item.php:
|
3203 |
msgid "Apply for all connections"
|
3204 |
msgstr "Für alle Verbindungen übernehmen"
|
3205 |
|
3206 |
-
#: includes/B2S/Network/Item.php:
|
3207 |
msgid "Successfully saved"
|
3208 |
msgstr "Erfolgreich gespeichert"
|
3209 |
|
3210 |
-
#: includes/B2S/Network/Item.php:
|
3211 |
msgid "Failed to save"
|
3212 |
msgstr "Speichern fehlgeschlagen"
|
3213 |
|
3214 |
-
#: includes/B2S/Network/Item.php:
|
3215 |
msgid "Failed to load the default template"
|
3216 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
3217 |
|
3218 |
-
#: includes/B2S/Network/Item.php:
|
3219 |
msgid ""
|
3220 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
3221 |
"templates that will automatically pre-format the structure of your social "
|
@@ -3235,36 +3244,36 @@ msgstr ""
|
|
3235 |
"auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
|
3236 |
"Beitragsvorlagen hinzu."
|
3237 |
|
3238 |
-
#: includes/B2S/Network/Item.php:
|
3239 |
msgid "Upgrade to Blog2Social Smart"
|
3240 |
msgstr "Upgrade auf Blog2Social Smart"
|
3241 |
|
3242 |
-
#: includes/B2S/Network/Item.php:
|
3243 |
msgid "Activate Instant Caching"
|
3244 |
msgstr "Instant Caching aktivieren"
|
3245 |
|
3246 |
-
#: includes/B2S/Network/Item.php:
|
3247 |
msgid "Format"
|
3248 |
msgstr "Format"
|
3249 |
|
3250 |
-
#: includes/B2S/Network/Item.php:
|
3251 |
msgid "Load default settings"
|
3252 |
msgstr "Lade Standardeinstellungen"
|
3253 |
|
3254 |
-
#: includes/B2S/Network/Item.php:
|
3255 |
-
#: includes/B2S/Ship/Item.php:
|
3256 |
msgid "Link"
|
3257 |
msgstr "Link"
|
3258 |
|
3259 |
-
#: includes/B2S/Network/Item.php:
|
3260 |
msgid "Image"
|
3261 |
msgstr "Bild"
|
3262 |
|
3263 |
-
#: includes/B2S/Network/Item.php:
|
3264 |
msgid "Content"
|
3265 |
msgstr "Inhalt"
|
3266 |
|
3267 |
-
#: includes/B2S/Network/Item.php:
|
3268 |
msgid ""
|
3269 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3270 |
"in your post."
|
@@ -3272,32 +3281,34 @@ msgstr ""
|
|
3272 |
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
3273 |
"Hashtags in Deinem Beitrag."
|
3274 |
|
3275 |
-
#: includes/B2S/Network/Item.php:
|
3276 |
msgid "clear"
|
3277 |
msgstr "löschen"
|
3278 |
|
3279 |
-
#: includes/B2S/Network/Item.php:
|
3280 |
msgid "The link will be added automatically at the end of the post."
|
3281 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
3282 |
|
3283 |
-
#: includes/B2S/Network/Item.php:
|
|
|
3284 |
msgid "Network limit"
|
3285 |
msgstr "Netzwerkbegrenzung"
|
3286 |
|
3287 |
-
#: includes/B2S/Network/Item.php:
|
3288 |
-
#: includes/B2S/Network/Item.php:
|
3289 |
-
#: includes/B2S/
|
3290 |
-
#: includes/B2S/Ship/Item.php:
|
3291 |
-
#: includes/B2S/Ship/Item.php:
|
3292 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
3293 |
msgid "characters"
|
3294 |
msgstr "Zeichen"
|
3295 |
|
3296 |
-
#: includes/B2S/Network/Item.php:
|
3297 |
msgid "Add a link-URL to the end of my image post."
|
3298 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
3299 |
|
3300 |
-
#: includes/B2S/Network/Item.php:
|
3301 |
msgid ""
|
3302 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3303 |
"Instagram does not turn link-URLs into clickable links)"
|
@@ -3305,18 +3316,18 @@ msgstr ""
|
|
3305 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
3306 |
"Instagram Links nicht als klickbare Links darstellt)"
|
3307 |
|
3308 |
-
#: includes/B2S/Network/Item.php:
|
3309 |
msgid "recommended length"
|
3310 |
msgstr "Empfohlene Länge"
|
3311 |
|
3312 |
-
#: includes/B2S/Network/Item.php:
|
3313 |
-
#: includes/B2S/Network/Item.php:
|
3314 |
-
#: includes/B2S/Network/Item.php:
|
3315 |
-
#: includes/B2S/Network/Item.php:
|
3316 |
-
#: includes/B2S/Network/Item.php:
|
3317 |
-
#: includes/B2S/Network/Item.php:
|
3318 |
-
#: includes/B2S/Network/Item.php:
|
3319 |
-
#: includes/B2S/Network/Item.php:
|
3320 |
msgid "Preview"
|
3321 |
msgstr "Vorschau"
|
3322 |
|
@@ -3481,17 +3492,17 @@ msgstr "gespeichert"
|
|
3481 |
msgid "last saved"
|
3482 |
msgstr "zuletzt gespeichert:"
|
3483 |
|
3484 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3485 |
#: includes/B2S/Ship/Save.php:448
|
3486 |
msgid "Retweet"
|
3487 |
msgstr "Retweet"
|
3488 |
|
3489 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3490 |
msgid "Re-Share"
|
3491 |
msgstr "Wiederholt geteilt"
|
3492 |
|
3493 |
-
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:
|
3494 |
-
#: includes/B2S/Post/Item.php:
|
3495 |
msgid "select all"
|
3496 |
msgstr "alle auswählen"
|
3497 |
|
@@ -3517,50 +3528,50 @@ msgstr "wird gerade von %s geteilt"
|
|
3517 |
msgid "shared by %s"
|
3518 |
msgstr "von %s geteilt"
|
3519 |
|
3520 |
-
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:
|
3521 |
msgid "You want to delete a publish post entry?"
|
3522 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3523 |
|
3524 |
-
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:
|
3525 |
msgid "delete from reporting"
|
3526 |
msgstr "aus Reporting löschen"
|
3527 |
|
3528 |
-
#: includes/B2S/Post/Item.php:
|
3529 |
#, php-format
|
3530 |
msgid "is waiting to shared by %s"
|
3531 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3532 |
|
3533 |
-
#: includes/B2S/Post/Item.php:
|
3534 |
msgid "share"
|
3535 |
msgstr "teilen"
|
3536 |
|
3537 |
-
#: includes/B2S/Post/Item.php:
|
3538 |
msgid "You want to delete your Social Media post?"
|
3539 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3540 |
|
3541 |
-
#: includes/B2S/Post/Item.php:
|
3542 |
#, php-format
|
3543 |
msgid "last modified by %s"
|
3544 |
msgstr "zuletzt von %s bearbeitet"
|
3545 |
|
3546 |
-
#: includes/B2S/Post/Item.php:
|
3547 |
msgid "is currently being processed by the network"
|
3548 |
msgstr "wird vom Netzwerk verarbeitet"
|
3549 |
|
3550 |
-
#: includes/B2S/Post/Item.php:
|
3551 |
#, php-format
|
3552 |
msgid "scheduled by %s"
|
3553 |
msgstr "von %s vorgeplant "
|
3554 |
|
3555 |
-
#: includes/B2S/Post/Item.php:
|
3556 |
msgid "You want to edit your scheduled post?"
|
3557 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3558 |
|
3559 |
-
#: includes/B2S/Post/Item.php:
|
3560 |
msgid "edit"
|
3561 |
msgstr "edit"
|
3562 |
|
3563 |
-
#: includes/B2S/Post/Item.php:
|
3564 |
msgid "delete scheduling"
|
3565 |
msgstr "Planung löschen"
|
3566 |
|
@@ -3617,31 +3628,31 @@ msgstr "Tage um"
|
|
3617 |
msgid "on"
|
3618 |
msgstr " "
|
3619 |
|
3620 |
-
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:
|
3621 |
msgid "Mon"
|
3622 |
msgstr "Mo"
|
3623 |
|
3624 |
-
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:
|
3625 |
msgid "Tue"
|
3626 |
msgstr "Di"
|
3627 |
|
3628 |
-
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:
|
3629 |
msgid "Wed"
|
3630 |
msgstr "Mi"
|
3631 |
|
3632 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
3633 |
msgid "Thu"
|
3634 |
msgstr "Do"
|
3635 |
|
3636 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
3637 |
msgid "Fri"
|
3638 |
msgstr "Fr"
|
3639 |
|
3640 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:
|
3641 |
msgid "Sat"
|
3642 |
msgstr "Sa"
|
3643 |
|
3644 |
-
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:
|
3645 |
msgid "Sun"
|
3646 |
msgstr "So"
|
3647 |
|
@@ -3714,7 +3725,7 @@ msgid "Authors"
|
|
3714 |
msgstr "Autoren"
|
3715 |
|
3716 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3717 |
-
#: includes/B2S/Ship/Item.php:
|
3718 |
msgid "Account"
|
3719 |
msgstr "Konto"
|
3720 |
|
@@ -4058,56 +4069,56 @@ msgstr "Bild für alle og-meta-Netzwerke anwenden"
|
|
4058 |
msgid "Apply image for this image gallery"
|
4059 |
msgstr "Bild zur Bildergalerie hinzufügen"
|
4060 |
|
4061 |
-
#: includes/B2S/Ship/Item.php:
|
4062 |
msgid "Network does not support image for profiles"
|
4063 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
4064 |
|
4065 |
-
#: includes/B2S/Ship/Item.php:
|
4066 |
msgid "Network defines image by link"
|
4067 |
msgstr "Netzwerk wählt selber das Bild aus"
|
4068 |
|
4069 |
-
#: includes/B2S/Ship/Item.php:
|
4070 |
msgid "Supported HTML tags"
|
4071 |
msgstr "Erlaubte HTML-Elemente"
|
4072 |
|
4073 |
-
#: includes/B2S/Ship/Item.php:
|
4074 |
msgid "Network does not support emojis"
|
4075 |
msgstr "Netzwerk unterstützt keine Emojis"
|
4076 |
|
4077 |
-
#: includes/B2S/Ship/Item.php:
|
4078 |
msgid "Network does not support GIFs"
|
4079 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
4080 |
|
4081 |
-
#: includes/B2S/Ship/Item.php:
|
4082 |
msgid "Text only"
|
4083 |
msgstr "nur Text"
|
4084 |
|
4085 |
-
#: includes/B2S/Ship/Item.php:
|
4086 |
msgid "Network does not support image for pages"
|
4087 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
4088 |
|
4089 |
-
#: includes/B2S/Ship/Item.php:
|
4090 |
msgid "Connection expires on 31 March 2019"
|
4091 |
msgstr "Die Verbindung endet am 31. März 2019."
|
4092 |
|
4093 |
-
#: includes/B2S/Ship/Item.php:
|
4094 |
msgid "Connection expires on 2 April 2019"
|
4095 |
msgstr "Die Verbindung endet am 2. April 2019."
|
4096 |
|
4097 |
-
#: includes/B2S/Ship/Item.php:
|
4098 |
msgid "post format"
|
4099 |
msgstr "Postformat"
|
4100 |
|
4101 |
-
#: includes/B2S/Ship/Item.php:
|
4102 |
msgid "Insert full-text"
|
4103 |
msgstr "ganzen Text einfügen"
|
4104 |
|
4105 |
-
#: includes/B2S/Ship/Item.php:
|
4106 |
msgid "Delete text"
|
4107 |
msgstr "Text löschen"
|
4108 |
|
4109 |
-
#: includes/B2S/Ship/Item.php:
|
4110 |
-
#: includes/B2S/Ship/Item.php:
|
4111 |
msgid ""
|
4112 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
4113 |
"allowed to post identical or substantially similar content to multiple "
|
@@ -4118,8 +4129,8 @@ msgstr ""
|
|
4118 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
4119 |
"mehreren Accounts zu posten."
|
4120 |
|
4121 |
-
#: includes/B2S/Ship/Item.php:
|
4122 |
-
#: includes/B2S/Ship/Item.php:
|
4123 |
msgid ""
|
4124 |
"Violating these rules can result in Twitter suspending your account. Always "
|
4125 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -4129,12 +4140,12 @@ msgstr ""
|
|
4129 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
4130 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
4131 |
|
4132 |
-
#: includes/B2S/Ship/Item.php:
|
4133 |
-
#: includes/B2S/Ship/Item.php:
|
4134 |
msgid "Learn more about this"
|
4135 |
msgstr "Erfahre mehr darüber"
|
4136 |
|
4137 |
-
#: includes/B2S/Ship/Item.php:
|
4138 |
msgid ""
|
4139 |
"Please note: XING allows identical posts to be published only once within a "
|
4140 |
"group and no more than three times across different groups."
|
@@ -4143,11 +4154,11 @@ msgstr ""
|
|
4143 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
4144 |
"Gruppen."
|
4145 |
|
4146 |
-
#: includes/B2S/Ship/Item.php:
|
4147 |
msgid "Read more"
|
4148 |
msgstr "Weiterlesen"
|
4149 |
|
4150 |
-
#: includes/B2S/Ship/Item.php:
|
4151 |
msgid ""
|
4152 |
"Please keep in mind that users are not allowed to post identical or "
|
4153 |
"substantially similar content to multiple accounts or multiple duplicate "
|
@@ -4157,7 +4168,7 @@ msgstr ""
|
|
4157 |
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
4158 |
"Updates in einem Konto zu veröffentlichen."
|
4159 |
|
4160 |
-
#: includes/B2S/Ship/Item.php:
|
4161 |
msgid ""
|
4162 |
"Violating these rules can result in suspending your account. Always vary "
|
4163 |
"your content with different images, comments, hashtags or handles to prevent "
|
@@ -4167,56 +4178,56 @@ msgstr ""
|
|
4167 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
4168 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
4169 |
|
4170 |
-
#: includes/B2S/Ship/Item.php:
|
4171 |
msgid "hide calendar"
|
4172 |
msgstr "Planungskalender verbergen"
|
4173 |
|
4174 |
-
#: includes/B2S/Ship/Item.php:
|
4175 |
-
#: includes/B2S/Ship/Item.php:
|
4176 |
-
#: includes/B2S/Ship/Item.php:
|
4177 |
-
#: includes/B2S/Ship/Item.php:
|
4178 |
-
#: includes/B2S/Ship/Item.php:
|
4179 |
-
#: includes/B2S/Ship/Item.php:
|
4180 |
-
#: includes/B2S/Ship/Item.php:
|
4181 |
-
#: includes/B2S/Ship/Item.php:
|
4182 |
msgid "Write something about your post..."
|
4183 |
msgstr "Schreibe etwas..."
|
4184 |
|
4185 |
-
#: includes/B2S/Ship/Item.php:
|
4186 |
-
#: includes/B2S/Ship/Item.php:
|
4187 |
-
#: includes/B2S/Ship/Item.php:
|
4188 |
msgid ""
|
4189 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
4190 |
"network"
|
4191 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
4192 |
|
4193 |
-
#: includes/B2S/Ship/Item.php:
|
4194 |
-
#: includes/B2S/Ship/Item.php:
|
4195 |
-
#: includes/B2S/Ship/Item.php:
|
4196 |
msgid ""
|
4197 |
"You want to change your link image, link title and link description for this "
|
4198 |
"network? Click here."
|
4199 |
msgstr ""
|
4200 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
4201 |
|
4202 |
-
#: includes/B2S/Ship/Item.php:
|
4203 |
-
#: includes/B2S/Ship/Item.php:
|
4204 |
-
#: includes/B2S/Ship/Item.php:
|
4205 |
msgid "OG Meta title"
|
4206 |
msgstr "OG Titel"
|
4207 |
|
4208 |
-
#: includes/B2S/Ship/Item.php:
|
4209 |
-
#: includes/B2S/Ship/Item.php:
|
4210 |
-
#: includes/B2S/Ship/Item.php:
|
4211 |
msgid "OG Meta description"
|
4212 |
msgstr "OG Beschreibung"
|
4213 |
|
4214 |
-
#: includes/B2S/Ship/Item.php:
|
4215 |
-
#: includes/B2S/Ship/Item.php:
|
4216 |
msgid "Do u want to post multiple images?"
|
4217 |
msgstr "Du möchtest mehrere Bilder posten?"
|
4218 |
|
4219 |
-
#: includes/B2S/Ship/Item.php:
|
4220 |
msgid ""
|
4221 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
4222 |
"Changes may not be immediately visible on Twitter."
|
@@ -4224,20 +4235,20 @@ msgstr ""
|
|
4224 |
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
4225 |
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
4226 |
|
4227 |
-
#: includes/B2S/Ship/Item.php:
|
4228 |
msgid ""
|
4229 |
"Info: Change Card Meta tags image, title and description for this network"
|
4230 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
4231 |
|
4232 |
-
#: includes/B2S/Ship/Item.php:
|
4233 |
msgid "Card Meta title"
|
4234 |
msgstr "Card Titel"
|
4235 |
|
4236 |
-
#: includes/B2S/Ship/Item.php:
|
4237 |
msgid "Card Meta description"
|
4238 |
msgstr "Card Beschreibung"
|
4239 |
|
4240 |
-
#: includes/B2S/Ship/Item.php:
|
4241 |
msgid ""
|
4242 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
4243 |
"days. Changes may not be immediately visible on XING."
|
@@ -4246,53 +4257,53 @@ msgstr ""
|
|
4246 |
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
4247 |
"dargestellt."
|
4248 |
|
4249 |
-
#: includes/B2S/Ship/Item.php:
|
4250 |
msgid "required"
|
4251 |
msgstr "erforderlich"
|
4252 |
|
4253 |
-
#: includes/B2S/Ship/Item.php:
|
4254 |
msgid "Jobs & Projects"
|
4255 |
msgstr "Stellenangebote & Projekte"
|
4256 |
|
4257 |
-
#: includes/B2S/Ship/Item.php:
|
4258 |
msgid "Events"
|
4259 |
msgstr "Events"
|
4260 |
|
4261 |
-
#: includes/B2S/Ship/Item.php:
|
4262 |
msgid "Classified Ads"
|
4263 |
msgstr "Kleinanzeigen"
|
4264 |
|
4265 |
-
#: includes/B2S/Ship/Item.php:
|
4266 |
msgid "Offer"
|
4267 |
msgstr "Angebot"
|
4268 |
|
4269 |
-
#: includes/B2S/Ship/Item.php:
|
4270 |
msgid "Request"
|
4271 |
msgstr "Anfrage"
|
4272 |
|
4273 |
-
#: includes/B2S/Ship/Item.php:
|
4274 |
msgid "The Headline..."
|
4275 |
msgstr "Die Überschrift..."
|
4276 |
|
4277 |
-
#: includes/B2S/Ship/Item.php:
|
4278 |
#, php-format
|
4279 |
msgid "max. %s Tags"
|
4280 |
msgstr "max. %s Tags"
|
4281 |
|
4282 |
-
#: includes/B2S/Ship/Item.php:
|
4283 |
msgid "Hashtags"
|
4284 |
msgstr "Hashtags"
|
4285 |
|
4286 |
-
#: includes/B2S/Ship/Item.php:
|
4287 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
4288 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
4289 |
|
4290 |
-
#: includes/B2S/Ship/Item.php:
|
4291 |
msgid "Delay"
|
4292 |
msgstr "Verzögerung"
|
4293 |
|
4294 |
-
#: includes/B2S/Ship/Item.php:
|
4295 |
-
#: includes/B2S/Ship/Item.php:
|
4296 |
#: views/b2s/partials/post-edit-modal.php:77
|
4297 |
#: views/b2s/partials/post-edit-modal.php:78
|
4298 |
#: views/b2s/partials/post-edit-modal.php:79
|
@@ -4300,19 +4311,19 @@ msgstr "Verzögerung"
|
|
4300 |
msgid "min"
|
4301 |
msgstr "min"
|
4302 |
|
4303 |
-
#: includes/B2S/Ship/Item.php:
|
4304 |
msgid "Add Retweet"
|
4305 |
msgstr "Retweet hinzufügen"
|
4306 |
|
4307 |
-
#: includes/B2S/Ship/Item.php:
|
4308 |
msgid "Share Now"
|
4309 |
msgstr "Sofort teilen"
|
4310 |
|
4311 |
-
#: includes/B2S/Ship/Item.php:
|
4312 |
msgid "Schedule Recurrent Post"
|
4313 |
msgstr "regelmäßig Planen"
|
4314 |
|
4315 |
-
#: includes/B2S/Ship/Item.php:
|
4316 |
msgid ""
|
4317 |
"Please note: Your account is connected via an old XING API that is no longer "
|
4318 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -4327,7 +4338,7 @@ msgstr ""
|
|
4327 |
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
4328 |
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
4329 |
|
4330 |
-
#: includes/B2S/Ship/Item.php:
|
4331 |
msgid ""
|
4332 |
"Please note: Google will shut down Google+ for all private accounts "
|
4333 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -4339,88 +4350,88 @@ msgstr ""
|
|
4339 |
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
4340 |
"andere Inhalte herunterladen kannst:"
|
4341 |
|
4342 |
-
#: includes/B2S/Ship/Item.php:
|
4343 |
msgid "Repeats"
|
4344 |
msgstr "Wiederholen"
|
4345 |
|
4346 |
-
#: includes/B2S/Ship/Item.php:
|
4347 |
msgid "Duration"
|
4348 |
msgstr "Dauer"
|
4349 |
|
4350 |
-
#: includes/B2S/Ship/Item.php:
|
4351 |
msgid "Number of repeats"
|
4352 |
msgstr "Anzahl der Wiederholungen"
|
4353 |
|
4354 |
-
#: includes/B2S/Ship/Item.php:
|
4355 |
msgid "Day of month"
|
4356 |
msgstr "Tag im Monat"
|
4357 |
|
4358 |
-
#: includes/B2S/Ship/Item.php:
|
4359 |
msgid "Repeats every (days)"
|
4360 |
msgstr "Wiederholt sich alle X Tage"
|
4361 |
|
4362 |
-
#: includes/B2S/Ship/Item.php:
|
4363 |
msgid "Start date"
|
4364 |
msgstr "Startdatum"
|
4365 |
|
4366 |
-
#: includes/B2S/Ship/Item.php:
|
4367 |
msgid "Time to publish"
|
4368 |
msgstr "Veröffentlichungszeitpunkt"
|
4369 |
|
4370 |
-
#: includes/B2S/Ship/Item.php:
|
4371 |
msgid "weekly"
|
4372 |
msgstr "wöchentlich"
|
4373 |
|
4374 |
-
#: includes/B2S/Ship/Item.php:
|
4375 |
msgid "monthly"
|
4376 |
msgstr "monatlich"
|
4377 |
|
4378 |
-
#: includes/B2S/Ship/Item.php:
|
4379 |
msgid "own period"
|
4380 |
msgstr "Eigener Zeitraum"
|
4381 |
|
4382 |
-
#: includes/B2S/Ship/Item.php:
|
4383 |
msgid "Week"
|
4384 |
msgstr "Woche"
|
4385 |
|
4386 |
-
#: includes/B2S/Ship/Item.php:
|
4387 |
msgid "Weeks"
|
4388 |
msgstr "Wochen"
|
4389 |
|
4390 |
-
#: includes/B2S/Ship/Item.php:
|
4391 |
msgid "Month"
|
4392 |
msgstr "Monat"
|
4393 |
|
4394 |
-
#: includes/B2S/Ship/Item.php:
|
4395 |
msgid "Months"
|
4396 |
msgstr "Monate"
|
4397 |
|
4398 |
-
#: includes/B2S/Ship/Item.php:
|
4399 |
msgid "End Of Month"
|
4400 |
msgstr "Monatsende"
|
4401 |
|
4402 |
-
#: includes/B2S/Ship/Item.php:
|
4403 |
msgid "Timespan"
|
4404 |
msgstr "Zeitspanne"
|
4405 |
|
4406 |
-
#: includes/B2S/Ship/Item.php:
|
4407 |
#: views/b2s/partials/post-edit-modal.php:66
|
4408 |
msgid "Time"
|
4409 |
msgstr "Mal"
|
4410 |
|
4411 |
-
#: includes/B2S/Ship/Item.php:
|
4412 |
msgid "add another post"
|
4413 |
msgstr "einen weiteren Post anlegen"
|
4414 |
|
4415 |
-
#: includes/B2S/Ship/Item.php:
|
4416 |
msgid "Copy from original"
|
4417 |
msgstr "Originaltext kopieren"
|
4418 |
|
4419 |
-
#: includes/B2S/Ship/Item.php:
|
4420 |
msgid "Apply Settings To All Networks"
|
4421 |
msgstr "Planung für alle Netzwerke übernehmen"
|
4422 |
|
4423 |
-
#: includes/B2S/Ship/Item.php:
|
4424 |
msgid "Save as best time for this network"
|
4425 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
4426 |
|
@@ -5751,6 +5762,10 @@ msgstr "Kurzbeschreibung"
|
|
5751 |
msgid "Contact Details"
|
5752 |
msgstr "Kontaktdaten"
|
5753 |
|
|
|
|
|
|
|
|
|
5754 |
#: views/prg/html/form.php:77
|
5755 |
msgid "Press"
|
5756 |
msgstr "Presse"
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2020-11-10 12:50+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post & "
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
+
"POT-Creation-Date: 2020-11-10 12:49+0000\n"
|
16 |
"Last-Translator: marius <wolf.12345@gmx.de>\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
+
"X-Loco-Version: 2.3.0; wp-5.4.4"
|
19 |
|
20 |
#: includes/Loader.php:45
|
21 |
msgid "Modify pin board"
|
45 |
msgid "Sniply"
|
46 |
msgstr "Sniply"
|
47 |
|
48 |
+
#: includes/Loader.php:403
|
49 |
msgid "Blog2Social: Autoposter"
|
50 |
msgstr "Blog2Social: Auto-Poster"
|
51 |
|
52 |
+
#: includes/Loader.php:404
|
53 |
msgid "Blog2Social: Social Media Content Calendar"
|
54 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
55 |
|
56 |
+
#: includes/Loader.php:796
|
57 |
msgid "This post will be shared into your social media from"
|
58 |
msgstr ""
|
59 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
60 |
|
61 |
+
#: includes/Loader.php:796 includes/Loader.php:798
|
62 |
msgid "show details"
|
63 |
msgstr "siehe Details"
|
64 |
|
65 |
+
#: includes/Loader.php:798
|
66 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
67 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
68 |
|
69 |
+
#: includes/Loader.php:802
|
70 |
msgid ""
|
71 |
"Please make sure that your post, page or custom post type is published or "
|
72 |
"scheduled to be published on this blog before you try to post it with "
|
79 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
80 |
"werden mit dem Posting-ID-Link geteilt."
|
81 |
|
82 |
+
#: includes/Loader.php:805 includes/B2S/PostBox.php:146
|
83 |
#: includes/B2S/AutoPost/Item.php:59
|
84 |
msgid ""
|
85 |
"There are no social network accounts assigned to your selected network "
|
90 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
91 |
"eine andere Netzwerkgruppierung aus. "
|
92 |
|
93 |
+
#: includes/Loader.php:818 views/b2s/html/sidebar.php:45
|
94 |
#: views/b2s/html/sidebar.ship.php:44
|
95 |
msgid "Upgrade to Premium"
|
96 |
msgstr "Premium freischalten"
|
97 |
|
98 |
+
#: includes/Loader.php:821 includes/Loader.php:955 includes/Loader.php:955
|
99 |
+
#: includes/Loader.php:1029 includes/B2S/RePost/Item.php:25
|
100 |
#: views/b2s/html/sidebar.php:137
|
101 |
msgid "Settings"
|
102 |
msgstr "Einstellungen"
|
103 |
|
104 |
+
#: includes/Loader.php:821
|
105 |
msgid "Support"
|
106 |
msgstr "Support"
|
107 |
|
108 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:19
|
109 |
msgid "Notifications"
|
110 |
msgstr "Benachrichtigungen"
|
111 |
|
112 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:17
|
113 |
#: views/b2s/html/sidebar.php:125
|
114 |
msgid "Shared Posts"
|
115 |
msgstr "geteilte Beiträge"
|
116 |
|
117 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:14
|
118 |
#: views/b2s/html/sidebar.php:119
|
119 |
msgid "Instant Sharing"
|
120 |
msgstr "Instant Sharing"
|
121 |
|
122 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:10
|
123 |
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:94
|
124 |
#: views/b2s/html/sidebar.php:116
|
125 |
msgid "Drafts"
|
126 |
msgstr "Entwürfe"
|
127 |
|
128 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:15
|
129 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
130 |
msgid "Scheduled Posts"
|
131 |
msgstr "geplante Beiträge"
|
132 |
|
133 |
+
#: includes/Loader.php:871
|
134 |
msgid "Social Media Post Drafts"
|
135 |
msgstr "Social Media Posts Entwürfe"
|
136 |
|
137 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:9
|
138 |
#: views/b2s/html/sidebar.php:113
|
139 |
msgid "Favorites"
|
140 |
msgstr "Favoriten"
|
141 |
|
142 |
+
#: includes/Loader.php:871 views/b2s/settings.php:35
|
143 |
#: views/b2s/html/sidebar.php:75
|
144 |
msgid "Auto-Post"
|
145 |
msgstr "Beiträge automatisch teilen"
|
146 |
|
147 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:18
|
148 |
#: views/b2s/html/sidebar.php:72
|
149 |
msgid "Re-Share Posts"
|
150 |
msgstr "Beiträge wiederholt teilen"
|
151 |
|
152 |
+
#: includes/Loader.php:871 views/b2s/curation.php:47 views/b2s/support.php:19
|
153 |
#: views/b2s/support.php:22
|
154 |
msgid "NEW"
|
155 |
msgstr "Neu"
|
156 |
|
157 |
+
#: includes/Loader.php:872 includes/B2S/AutoPost/Item.php:250
|
158 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:151
|
159 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:156
|
160 |
+
#: includes/B2S/Network/Item.php:224 includes/B2S/Network/Item.php:619
|
161 |
#: includes/B2S/Ship/Portale.php:38 includes/B2S/Ship/Portale.php:40
|
162 |
#: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
|
163 |
msgid "Profile"
|
164 |
msgstr "Profil"
|
165 |
|
166 |
+
#: includes/Loader.php:872 includes/B2S/AutoPost/Item.php:250
|
167 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:161
|
168 |
+
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:294
|
169 |
+
#: includes/B2S/Network/Item.php:621 includes/B2S/Ship/Portale.php:35
|
170 |
#: includes/B2S/Ship/Portale.php:35
|
171 |
msgid "Page"
|
172 |
msgstr "Seite"
|
173 |
|
174 |
+
#: includes/Loader.php:872 includes/B2S/Network/Item.php:164
|
175 |
+
#: includes/B2S/Network/Item.php:361 includes/B2S/Network/Item.php:624
|
176 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
177 |
msgid "Group"
|
178 |
msgstr "Gruppe"
|
179 |
|
180 |
+
#: includes/Loader.php:873
|
181 |
+
msgid "Company-Page (Employer Branding Profile)"
|
182 |
+
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
183 |
|
184 |
+
#: includes/Loader.php:873
|
185 |
msgid "Business"
|
186 |
msgstr "Business"
|
187 |
|
188 |
+
#: includes/Loader.php:874
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"The network could not publish your post. Please see <a target=\"_blank\" "
|
194 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Siehe <a "
|
195 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
196 |
|
197 |
+
#: includes/Loader.php:875
|
198 |
msgid ""
|
199 |
"Your authorization has expired. Please reconnect your account in the "
|
200 |
"Blog2Social network settings."
|
202 |
"Deine Authorisierung ist abgelaufen. Bitte verbinde Deinen Account in den "
|
203 |
"Blog2Social Netzwerkeinstellungen erneut."
|
204 |
|
205 |
+
#: includes/Loader.php:876
|
206 |
msgid "The network has marked the post as spam or abusive."
|
207 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
208 |
|
209 |
+
#: includes/Loader.php:877
|
210 |
msgid ""
|
211 |
"We don't have the permission to publish your post. Please check your "
|
212 |
"authorization."
|
214 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
215 |
"überprüfe deine Autorisierung."
|
216 |
|
217 |
+
#: includes/Loader.php:878
|
218 |
#, php-format
|
219 |
msgid ""
|
220 |
"Your authorization is interrupted. Please check your authorization. Please "
|
223 |
"Deine Autorisierung ist unterbrochen. Bitte überprüfe Deine Verbindung. "
|
224 |
"Siehe <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
225 |
|
226 |
+
#: includes/Loader.php:879
|
227 |
msgid "Your daily limit has been reached."
|
228 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
229 |
|
230 |
+
#: includes/Loader.php:880
|
231 |
msgid ""
|
232 |
"Your post could not be posted, because your image is not available or the "
|
233 |
"image source does not allow to publish"
|
235 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
236 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
237 |
|
238 |
+
#: includes/Loader.php:881
|
239 |
#, php-format
|
240 |
msgid ""
|
241 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
244 |
"Das Netzwerk hat Dein Konto gesperrt. Siehe <a target=\"_blank\" href=\"%s\">"
|
245 |
"FAQ</a>"
|
246 |
|
247 |
+
#: includes/Loader.php:882
|
248 |
#, php-format
|
249 |
msgid ""
|
250 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
253 |
"Die Anzahl der Bilder ist erreicht. Siehe <a target=\"_blank\" href=\"%s\">"
|
254 |
"FAQ</a>"
|
255 |
|
256 |
+
#: includes/Loader.php:883
|
257 |
msgid ""
|
258 |
"Your daily limit for this network has been reached. Please try again later."
|
259 |
msgstr ""
|
260 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
261 |
"versuche es später noch einmal."
|
262 |
|
263 |
+
#: includes/Loader.php:884
|
264 |
#, php-format
|
265 |
msgid ""
|
266 |
"The network can not publish special characters such as Emoji. Please see <a "
|
269 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Siehe <a "
|
270 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
271 |
|
272 |
+
#: includes/Loader.php:885
|
273 |
msgid "Your post is a duplicate."
|
274 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
275 |
|
276 |
+
#: includes/Loader.php:886
|
277 |
msgid "The network requires a public url."
|
278 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
279 |
|
280 |
+
#: includes/Loader.php:887
|
281 |
msgid ""
|
282 |
"Your blog post was not available for the network at the time of publication."
|
283 |
msgstr ""
|
284 |
"Dein Blogbeitrag war zum Zeitpunkt der Veröffentlichung für das Netzwerk "
|
285 |
"nicht verfügbar."
|
286 |
|
287 |
+
#: includes/Loader.php:888
|
288 |
msgid "You have already retweeted this post."
|
289 |
msgstr "Du hast diesen Post bereits retweetet."
|
290 |
|
291 |
+
#: includes/Loader.php:889
|
292 |
msgid ""
|
293 |
"This XING API is no longer supported by XING. Please connect your XING "
|
294 |
"accounts with the new XING interface to reschedule your posts."
|
297 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
298 |
"zu planen."
|
299 |
|
300 |
+
#: includes/Loader.php:890
|
301 |
msgid "An image is required to post on this social network."
|
302 |
msgstr ""
|
303 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
304 |
"erforderlich."
|
305 |
|
306 |
+
#: includes/Loader.php:891
|
307 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
308 |
msgstr ""
|
309 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
310 |
"erforderlich."
|
311 |
|
312 |
+
#: includes/Loader.php:892
|
313 |
msgid ""
|
314 |
"Your post could not be posted, because your image can not be processed by "
|
315 |
"the network."
|
317 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
318 |
"Netzwerk verarbeitet werden kann"
|
319 |
|
320 |
+
#: includes/Loader.php:893
|
321 |
#, php-format
|
322 |
msgid ""
|
323 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
326 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Siehe <a "
|
327 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
328 |
|
329 |
+
#: includes/Loader.php:894
|
330 |
msgid "Your group can not be found by the network."
|
331 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
332 |
|
333 |
+
#: includes/Loader.php:950 includes/Loader.php:995
|
334 |
msgid "Dashboard"
|
335 |
msgstr "Dashboard"
|
336 |
|
337 |
+
#: includes/Loader.php:951
|
338 |
msgid "Share Website & Blog Content"
|
339 |
msgstr "Webseiten- & Blog Content teilen"
|
340 |
|
341 |
+
#: includes/Loader.php:951 includes/Loader.php:1002
|
342 |
msgid "Site & Blog Content"
|
343 |
msgstr "Seiten & Blog Content"
|
344 |
|
345 |
+
#: includes/Loader.php:952
|
346 |
msgid "Create Social Media Posts"
|
347 |
msgstr "Erstelle Social Media Posts"
|
348 |
|
349 |
+
#: includes/Loader.php:952 includes/Loader.php:1009
|
350 |
msgid "Social Media Posts"
|
351 |
msgstr "Social Media Posts"
|
352 |
|
353 |
+
#: includes/Loader.php:953 includes/Loader.php:1016 views/b2s/dashboard.php:30
|
354 |
#: views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:128
|
355 |
msgid "Calendar"
|
356 |
msgstr "Kalender"
|
357 |
|
358 |
+
#: includes/Loader.php:954 includes/Loader.php:1023
|
359 |
msgid "Networks"
|
360 |
msgstr "Netzwerke"
|
361 |
|
362 |
+
#: includes/Loader.php:957 includes/Loader.php:1037
|
363 |
msgid "PR-Service"
|
364 |
msgstr "PR-Service"
|
365 |
|
366 |
+
#: includes/Loader.php:959 includes/Loader.php:1045
|
367 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
368 |
#: views/b2s/html/sidebar.ship.php:66
|
369 |
msgid "Help & Support"
|
370 |
msgstr "Hilfe & Support"
|
371 |
|
372 |
+
#: includes/Loader.php:961
|
373 |
msgid "Premium"
|
374 |
msgstr "Premium"
|
375 |
|
376 |
+
#: includes/Loader.php:961 includes/Loader.php:1053
|
377 |
msgid "PREMIUM"
|
378 |
msgstr "PREMIUM"
|
379 |
|
380 |
+
#: includes/Loader.php:986 views/b2s/html/sidebar.php:25
|
381 |
#: views/b2s/html/sidebar.ship.php:24
|
382 |
msgid "Blog2Social"
|
383 |
msgstr "Blog2Social"
|
384 |
|
385 |
+
#: includes/Loader.php:1552
|
386 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
387 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
388 |
|
389 |
+
#: includes/Loader.php:1552 includes/System.php:32 includes/System.php:38
|
390 |
#, php-format
|
391 |
msgid ""
|
392 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
395 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
396 |
"in unserem FAQs.</a>"
|
397 |
|
398 |
+
#: includes/Loader.php:1552 includes/Loader.php:1573 includes/Loader.php:1823
|
399 |
msgid "or"
|
400 |
msgstr "oder"
|
401 |
|
402 |
+
#: includes/Loader.php:1552 includes/Loader.php:1573 includes/Loader.php:1823
|
403 |
msgid "back to install plugins"
|
404 |
msgstr "zurück zur Pluginübersicht"
|
405 |
|
450 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
451 |
"zu tun."
|
452 |
|
453 |
+
#: includes/Tools.php:304 views/b2s/html/sidebar.php:30
|
454 |
#: views/b2s/html/sidebar.ship.php:29
|
455 |
msgid "License"
|
456 |
msgstr "Lizenz"
|
457 |
|
458 |
+
#: includes/Tools.php:319
|
459 |
msgid "Greece"
|
460 |
msgstr "Griechenland"
|
461 |
|
462 |
+
#: includes/Tools.php:320
|
463 |
msgid "India"
|
464 |
msgstr "Indien"
|
465 |
|
466 |
+
#: includes/Tools.php:321
|
467 |
msgid "United States of America"
|
468 |
msgstr "Vereinigte Staaten von Amerika"
|
469 |
|
470 |
+
#: includes/Tools.php:322
|
471 |
msgid "Ireland"
|
472 |
msgstr "Irland"
|
473 |
|
474 |
+
#: includes/Tools.php:323
|
475 |
msgid "Italy"
|
476 |
msgstr "Italien"
|
477 |
|
478 |
+
#: includes/Tools.php:324
|
479 |
msgid "Switzerland"
|
480 |
msgstr "Schweiz"
|
481 |
|
482 |
+
#: includes/Tools.php:325
|
483 |
msgid "Czechoslovakia"
|
484 |
msgstr "Tschechoslowakei"
|
485 |
|
486 |
+
#: includes/Tools.php:326
|
487 |
msgid "Indonesia"
|
488 |
msgstr "Indonesien"
|
489 |
|
490 |
+
#: includes/Tools.php:327
|
491 |
msgid "Spain"
|
492 |
msgstr "Spanien"
|
493 |
|
494 |
+
#: includes/Tools.php:328
|
495 |
msgid "Canada"
|
496 |
msgstr "Kanada"
|
497 |
|
498 |
+
#: includes/Tools.php:329
|
499 |
msgid "Great Britain"
|
500 |
msgstr "Großbritannien"
|
501 |
|
502 |
+
#: includes/Tools.php:330
|
503 |
msgid "Russia"
|
504 |
msgstr "Russland"
|
505 |
|
506 |
+
#: includes/Tools.php:331
|
507 |
msgid "Netherlands"
|
508 |
msgstr "Niederlande"
|
509 |
|
510 |
+
#: includes/Tools.php:332 includes/Tools.php:346
|
511 |
msgid "Portugal"
|
512 |
msgstr "Portugal"
|
513 |
|
514 |
+
#: includes/Tools.php:333
|
515 |
msgid "Norway"
|
516 |
msgstr "Norwegen"
|
517 |
|
518 |
+
#: includes/Tools.php:334
|
519 |
msgid "Turkey"
|
520 |
msgstr "Türkei"
|
521 |
|
522 |
+
#: includes/Tools.php:335
|
523 |
msgid "Australia"
|
524 |
msgstr "Australien"
|
525 |
|
526 |
+
#: includes/Tools.php:336
|
527 |
msgid "Austria"
|
528 |
msgstr "Österreich"
|
529 |
|
530 |
+
#: includes/Tools.php:337
|
531 |
msgid "Poland"
|
532 |
msgstr "Polen"
|
533 |
|
534 |
+
#: includes/Tools.php:338
|
535 |
msgid "France"
|
536 |
msgstr "Frankreich"
|
537 |
|
538 |
+
#: includes/Tools.php:339
|
539 |
msgid "Romania"
|
540 |
msgstr "Rumänien"
|
541 |
|
542 |
+
#: includes/Tools.php:340
|
543 |
msgid "Germany"
|
544 |
msgstr "Deutschland"
|
545 |
|
546 |
+
#: includes/Tools.php:341
|
547 |
msgid "Denmark"
|
548 |
msgstr "Dänemark"
|
549 |
|
550 |
+
#: includes/Tools.php:342
|
551 |
msgid "New Zealand"
|
552 |
msgstr "Neuseeland"
|
553 |
|
554 |
+
#: includes/Tools.php:343
|
555 |
msgid "Finland"
|
556 |
msgstr "Finnland"
|
557 |
|
558 |
+
#: includes/Tools.php:344
|
559 |
msgid "Hungary"
|
560 |
msgstr "Ungarn"
|
561 |
|
562 |
+
#: includes/Tools.php:345
|
563 |
msgid "Japan"
|
564 |
msgstr "Japan"
|
565 |
|
566 |
+
#: includes/Tools.php:347
|
567 |
msgid "Argentina"
|
568 |
msgstr "Argentinien"
|
569 |
|
570 |
+
#: includes/Tools.php:348
|
571 |
msgid "Korea"
|
572 |
msgstr "Korea"
|
573 |
|
574 |
+
#: includes/Tools.php:349
|
575 |
msgid "Sweden"
|
576 |
msgstr "Schweden"
|
577 |
|
578 |
+
#: includes/Tools.php:350
|
579 |
msgid "Mexico"
|
580 |
msgstr "Mexiko"
|
581 |
|
582 |
+
#: includes/Tools.php:351
|
583 |
msgid "Slovakia"
|
584 |
msgstr "Slowakei"
|
585 |
|
586 |
+
#: includes/Tools.php:352
|
587 |
msgid "Chile"
|
588 |
msgstr "Chile"
|
589 |
|
590 |
+
#: includes/Tools.php:353
|
591 |
msgid "Colombia"
|
592 |
msgstr "Kolumbien"
|
593 |
|
594 |
+
#: includes/Tools.php:354
|
595 |
msgid "South Africa"
|
596 |
msgstr "Südafrika"
|
597 |
|
598 |
+
#: includes/Tools.php:355
|
599 |
msgid "Philippines"
|
600 |
msgstr "Philippinen"
|
601 |
|
602 |
+
#: includes/Tools.php:358
|
603 |
msgid "is determined automatically"
|
604 |
msgstr "wird automatisch ermittelt"
|
605 |
|
606 |
+
#: includes/Tools.php:365
|
607 |
msgid "Search"
|
608 |
msgstr "Suche"
|
609 |
|
610 |
+
#: includes/Tools.php:366
|
611 |
msgid "Recently Used"
|
612 |
msgstr "Zuletzt verwendet"
|
613 |
|
614 |
+
#: includes/Tools.php:367
|
615 |
msgid "Smileys & People"
|
616 |
msgstr "Smileys & Personen"
|
617 |
|
618 |
+
#: includes/Tools.php:368
|
619 |
msgid "Animals & Nature"
|
620 |
msgstr "Tiere & Natur"
|
621 |
|
622 |
+
#: includes/Tools.php:369
|
623 |
msgid "Food & Drink"
|
624 |
msgstr "Essen & Trinken"
|
625 |
|
626 |
+
#: includes/Tools.php:370
|
627 |
msgid "Activities"
|
628 |
msgstr "Aktivitäten"
|
629 |
|
630 |
+
#: includes/Tools.php:371
|
631 |
msgid "Travel & Places"
|
632 |
msgstr "Reisen & Orte"
|
633 |
|
634 |
+
#: includes/Tools.php:372
|
635 |
msgid "Objects"
|
636 |
msgstr "Objekte"
|
637 |
|
638 |
+
#: includes/Tools.php:373
|
639 |
msgid "Symbols"
|
640 |
msgstr "Symbole"
|
641 |
|
642 |
+
#: includes/Tools.php:374
|
643 |
msgid "Flags"
|
644 |
msgstr "Flaggen"
|
645 |
|
646 |
+
#: includes/Tools.php:375
|
647 |
msgid "No emojis found"
|
648 |
msgstr "Keine Ergebnisse"
|
649 |
|
690 |
msgid "Please contact our support!"
|
691 |
msgstr "Bitte kontaktiere unseren Support!"
|
692 |
|
693 |
+
#: includes/Ajax/Post.php:1874 views/b2s/network.php:7
|
694 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
695 |
+
#: includes/B2S/Network/Item.php:359 includes/B2S/Network/Item.php:485
|
696 |
msgid "Unknown username"
|
697 |
msgstr "unbekannter Blog-Nutzer"
|
698 |
|
699 |
+
#: includes/Ajax/Post.php:1875 includes/B2S/Network/Item.php:486
|
700 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
701 |
+
#: includes/B2S/Post/Item.php:845 includes/B2S/Post/Item.php:903
|
702 |
+
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1124
|
703 |
+
#: includes/B2S/Ship/Item.php:1274
|
704 |
msgid "delete"
|
705 |
msgstr "löschen"
|
706 |
|
756 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
757 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
758 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
759 |
+
#: includes/B2S/Ship/Item.php:1088
|
760 |
msgid "Info"
|
761 |
msgstr "Info"
|
762 |
|
796 |
msgid "enable Auto-Posting"
|
797 |
msgstr "Auto-Posting aktivieren"
|
798 |
|
799 |
+
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:389
|
800 |
msgid "show calendar"
|
801 |
msgstr "Planungskalender anzeigen"
|
802 |
|
1201 |
#: views/b2s/curation.php:49 views/b2s/network.php:230 views/b2s/ship.php:23
|
1202 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1203 |
#: includes/B2S/Network/Item.php:168 includes/B2S/Network/Item.php:262
|
1204 |
+
#: includes/B2S/Network/Item.php:332 includes/B2S/Network/Item.php:394
|
1205 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1206 |
+
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:1147
|
1207 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18
|
1208 |
#: views/b2s/html/post.navbar.php:20 views/b2s/partials/post-edit-modal.php:9
|
1209 |
#: views/b2s/widgets/posts.php:18
|
1231 |
msgid "continue"
|
1232 |
msgstr "weiter"
|
1233 |
|
1234 |
+
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:457
|
1235 |
+
#: includes/B2S/Ship/Item.php:479 includes/B2S/Ship/Item.php:486
|
1236 |
+
#: includes/B2S/Ship/Item.php:493 includes/B2S/Ship/Item.php:517
|
1237 |
+
#: includes/B2S/Ship/Item.php:540 includes/B2S/Ship/Item.php:547
|
1238 |
+
#: includes/B2S/Ship/Item.php:554 includes/B2S/Ship/Item.php:577
|
1239 |
+
#: includes/B2S/Ship/Item.php:606 includes/B2S/Ship/Item.php:635
|
1240 |
+
#: includes/B2S/Ship/Item.php:663 includes/B2S/Ship/Item.php:706
|
1241 |
+
#: includes/B2S/Ship/Item.php:727 includes/B2S/Ship/Item.php:734
|
1242 |
+
#: includes/B2S/Ship/Item.php:741 includes/B2S/Ship/Item.php:761
|
1243 |
+
#: includes/B2S/Ship/Item.php:781 includes/B2S/Ship/Item.php:788
|
1244 |
+
#: includes/B2S/Ship/Item.php:795 includes/B2S/Ship/Item.php:812
|
1245 |
+
#: includes/B2S/Ship/Item.php:833 includes/B2S/Ship/Item.php:854
|
1246 |
+
#: includes/B2S/Ship/Item.php:875 includes/B2S/Ship/Item.php:896
|
1247 |
+
#: includes/B2S/Ship/Item.php:940
|
1248 |
msgid "Change image"
|
1249 |
msgstr "Bild ändern"
|
1250 |
|
1289 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1290 |
|
1291 |
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:271
|
1292 |
+
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:1148
|
1293 |
msgid "Schedule for specific dates"
|
1294 |
msgstr "Für bestimmte Termine planen"
|
1295 |
|
1406 |
|
1407 |
#: views/b2s/network.php:35 includes/B2S/Network/Item.php:156
|
1408 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:165
|
1409 |
+
#: includes/B2S/Ship/Image.php:92 includes/B2S/Ship/Item.php:496
|
1410 |
+
#: includes/B2S/Ship/Item.php:557 includes/B2S/Ship/Item.php:744
|
1411 |
+
#: includes/B2S/Ship/Item.php:798 includes/B2S/Ship/Portale.php:32
|
1412 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:45
|
1413 |
msgid "PRO"
|
1414 |
msgstr "PRO"
|
1469 |
"Business Brancheneinträgen zu erweitern."
|
1470 |
|
1471 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1472 |
+
#: includes/B2S/Ship/Item.php:1186 views/b2s/partials/post-edit-modal.php:48
|
1473 |
msgid "Learn more"
|
1474 |
msgstr "Mehr erfahren"
|
1475 |
|
1544 |
msgstr "Beitragsvorlage bearbeiten"
|
1545 |
|
1546 |
#: views/b2s/network.php:242 views/b2s/settings.php:49
|
1547 |
+
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:133
|
1548 |
msgid "save"
|
1549 |
msgstr "speichern"
|
1550 |
|
1623 |
msgid "The name of the post author."
|
1624 |
msgstr "Der Name des Autors Deines Beitrags."
|
1625 |
|
1626 |
+
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:768
|
1627 |
msgid "Character limit"
|
1628 |
msgstr "Zeichenbegrenzung"
|
1629 |
|
1884 |
msgid "Upgrade to Blog2Social Business"
|
1885 |
msgstr "Upgrade auf Blog2Social Business"
|
1886 |
|
1887 |
+
#: views/b2s/network.php:518 includes/B2S/Network/Item.php:516
|
1888 |
#, php-format
|
1889 |
msgid ""
|
1890 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1961 |
msgstr "geplant"
|
1962 |
|
1963 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1964 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:698
|
1965 |
+
#: includes/B2S/Network/Item.php:701 includes/B2S/Settings/Item.php:239
|
1966 |
#: views/b2s/html/footer.php:177
|
1967 |
msgid "Image with frame"
|
1968 |
msgstr "Bild mit Rahmen"
|
1969 |
|
1970 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1971 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:699
|
1972 |
+
#: includes/B2S/Network/Item.php:702 includes/B2S/Settings/Item.php:253
|
1973 |
#: views/b2s/html/footer.php:182
|
1974 |
msgid "Image cut out"
|
1975 |
msgstr "Bild zuschneiden"
|
2193 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
2194 |
|
2195 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
2196 |
+
#: includes/B2S/Post/Item.php:868
|
2197 |
msgid "Auto-Posting"
|
2198 |
msgstr "Auto-Posting"
|
2199 |
|
3085 |
msgstr "zu geplanten Zeiten"
|
3086 |
|
3087 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
3088 |
+
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:1256
|
3089 |
#: views/b2s/partials/post-edit-modal.php:62
|
3090 |
#: views/b2s/partials/post-edit-modal.php:65
|
3091 |
msgid "Date"
|
3116 |
msgstr "Beste Zeiten"
|
3117 |
|
3118 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
3119 |
+
#: includes/B2S/Ship/Item.php:327 includes/B2S/Ship/Navbar.php:86
|
3120 |
#: includes/B2S/Ship/Portale.php:38
|
3121 |
msgid "Blog"
|
3122 |
msgstr "Blog"
|
3134 |
msgid "You want to connect a network page?"
|
3135 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
3136 |
|
3137 |
+
#: includes/B2S/Network/Item.php:164 includes/B2S/Network/Item.php:361
|
3138 |
#: includes/B2S/Ship/Portale.php:31
|
3139 |
msgid "Publication"
|
3140 |
msgstr "Publication"
|
3148 |
msgstr "Best Time Manager"
|
3149 |
|
3150 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
3151 |
+
#: includes/B2S/Network/Item.php:352
|
3152 |
msgid "To reactivate this connection,"
|
3153 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
3154 |
|
3155 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
3156 |
+
#: includes/B2S/Network/Item.php:352 includes/B2S/Ship/Image.php:31
|
3157 |
msgid "please upgrade"
|
3158 |
msgstr "Bitte upgraden"
|
3159 |
|
3160 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
3161 |
+
#: includes/B2S/Network/Item.php:355
|
3162 |
msgid "Authorization is interrupted since"
|
3163 |
msgstr "Autorisierung ist unterbrochen seit"
|
3164 |
|
3165 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
3166 |
+
#: includes/B2S/Network/Item.php:359
|
3167 |
msgid "Assigned by"
|
3168 |
msgstr "Zugewiesen von"
|
3169 |
|
3170 |
+
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:330
|
3171 |
+
#: includes/B2S/Network/Item.php:392 includes/B2S/Ship/Item.php:1204
|
3172 |
msgid "Days"
|
3173 |
msgstr "Tage"
|
3174 |
|
3175 |
+
#: includes/B2S/Network/Item.php:291 includes/B2S/Network/Item.php:796
|
3176 |
+
#, php-format
|
3177 |
+
msgid ""
|
3178 |
+
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
3179 |
+
"Old Design until 2020/11/30</a>)"
|
3180 |
+
msgstr ""
|
3181 |
+
"Unternehmensseite (Arbeitgeberprofil, <a href=\"%s\" target=\"_blank\">Altes "
|
3182 |
+
"Design bis 30.11.2020</a>)"
|
3183 |
+
|
3184 |
+
#: includes/B2S/Network/Item.php:292 includes/B2S/Network/Item.php:797
|
3185 |
+
msgid "Company-Page (Employer Branding Profile, New Design)"
|
3186 |
+
msgstr "Unternehmensseite (Arbeitgeberprofil, Neues Design)"
|
3187 |
|
3188 |
+
#: includes/B2S/Network/Item.php:473
|
3189 |
msgid "Connection currently assigned to"
|
3190 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
3191 |
|
3192 |
+
#: includes/B2S/Network/Item.php:518 views/prg/html/form.php:84
|
3193 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3194 |
#: views/prg/html/form.php:163
|
3195 |
msgid "Name"
|
3196 |
msgstr "Name"
|
3197 |
|
3198 |
+
#: includes/B2S/Network/Item.php:519
|
3199 |
msgid "Value"
|
3200 |
msgstr "Zugeordneter Wert"
|
3201 |
|
3202 |
+
#: includes/B2S/Network/Item.php:543
|
3203 |
msgid "+ add Parameter"
|
3204 |
msgstr "+ Parameter hinzufügen"
|
3205 |
|
3206 |
+
#: includes/B2S/Network/Item.php:544
|
3207 |
#, php-format
|
3208 |
msgid "Apply for all %s connections"
|
3209 |
msgstr "Für alle %s Verbindungen übernehmen"
|
3210 |
|
3211 |
+
#: includes/B2S/Network/Item.php:545
|
3212 |
msgid "Apply for all connections"
|
3213 |
msgstr "Für alle Verbindungen übernehmen"
|
3214 |
|
3215 |
+
#: includes/B2S/Network/Item.php:566
|
3216 |
msgid "Successfully saved"
|
3217 |
msgstr "Erfolgreich gespeichert"
|
3218 |
|
3219 |
+
#: includes/B2S/Network/Item.php:567
|
3220 |
msgid "Failed to save"
|
3221 |
msgstr "Speichern fehlgeschlagen"
|
3222 |
|
3223 |
+
#: includes/B2S/Network/Item.php:568
|
3224 |
msgid "Failed to load the default template"
|
3225 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
3226 |
|
3227 |
+
#: includes/B2S/Network/Item.php:608
|
3228 |
msgid ""
|
3229 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
3230 |
"templates that will automatically pre-format the structure of your social "
|
3244 |
"auch statische Inhalte (z.B. individuelle Hashtags oder Slogans) zu Deinen "
|
3245 |
"Beitragsvorlagen hinzu."
|
3246 |
|
3247 |
+
#: includes/B2S/Network/Item.php:609
|
3248 |
msgid "Upgrade to Blog2Social Smart"
|
3249 |
msgstr "Upgrade auf Blog2Social Smart"
|
3250 |
|
3251 |
+
#: includes/B2S/Network/Item.php:630
|
3252 |
msgid "Activate Instant Caching"
|
3253 |
msgstr "Instant Caching aktivieren"
|
3254 |
|
3255 |
+
#: includes/B2S/Network/Item.php:691
|
3256 |
msgid "Format"
|
3257 |
msgstr "Format"
|
3258 |
|
3259 |
+
#: includes/B2S/Network/Item.php:692 includes/B2S/Network/Item.php:713
|
3260 |
msgid "Load default settings"
|
3261 |
msgstr "Lade Standardeinstellungen"
|
3262 |
|
3263 |
+
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:701
|
3264 |
+
#: includes/B2S/Ship/Item.php:956 includes/B2S/Ship/Item.php:958
|
3265 |
msgid "Link"
|
3266 |
msgstr "Link"
|
3267 |
|
3268 |
+
#: includes/B2S/Network/Item.php:699 includes/B2S/Network/Item.php:702
|
3269 |
msgid "Image"
|
3270 |
msgstr "Bild"
|
3271 |
|
3272 |
+
#: includes/B2S/Network/Item.php:711 includes/B2S/Settings/Item.php:64
|
3273 |
msgid "Content"
|
3274 |
msgstr "Inhalt"
|
3275 |
|
3276 |
+
#: includes/B2S/Network/Item.php:720 includes/B2S/Ship/Item.php:368
|
3277 |
msgid ""
|
3278 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
3279 |
"in your post."
|
3281 |
"Instagram unterstützt bis zu 30 Hashtags. Bitte reduziere die Anzahl der "
|
3282 |
"Hashtags in Deinem Beitrag."
|
3283 |
|
3284 |
+
#: includes/B2S/Network/Item.php:732
|
3285 |
msgid "clear"
|
3286 |
msgstr "löschen"
|
3287 |
|
3288 |
+
#: includes/B2S/Network/Item.php:742
|
3289 |
msgid "The link will be added automatically at the end of the post."
|
3290 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
3291 |
|
3292 |
+
#: includes/B2S/Network/Item.php:747 includes/B2S/Network/Item.php:788
|
3293 |
+
#: includes/B2S/Network/Item.php:827
|
3294 |
msgid "Network limit"
|
3295 |
msgstr "Netzwerkbegrenzung"
|
3296 |
|
3297 |
+
#: includes/B2S/Network/Item.php:747 includes/B2S/Network/Item.php:788
|
3298 |
+
#: includes/B2S/Network/Item.php:788 includes/B2S/Network/Item.php:827
|
3299 |
+
#: includes/B2S/Network/Item.php:827 includes/B2S/Ship/Item.php:212
|
3300 |
+
#: includes/B2S/Ship/Item.php:216 includes/B2S/Ship/Item.php:258
|
3301 |
+
#: includes/B2S/Ship/Item.php:262 includes/B2S/Ship/Item.php:295
|
3302 |
+
#: includes/B2S/Ship/Item.php:299 includes/B2S/Ship/Item.php:1283
|
3303 |
+
#: includes/B2S/Ship/Item.php:1285
|
3304 |
msgid "characters"
|
3305 |
msgstr "Zeichen"
|
3306 |
|
3307 |
+
#: includes/B2S/Network/Item.php:754
|
3308 |
msgid "Add a link-URL to the end of my image post."
|
3309 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
3310 |
|
3311 |
+
#: includes/B2S/Network/Item.php:761
|
3312 |
msgid ""
|
3313 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
3314 |
"Instagram does not turn link-URLs into clickable links)"
|
3316 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
3317 |
"Instagram Links nicht als klickbare Links darstellt)"
|
3318 |
|
3319 |
+
#: includes/B2S/Network/Item.php:788 includes/B2S/Network/Item.php:827
|
3320 |
msgid "recommended length"
|
3321 |
msgstr "Empfohlene Länge"
|
3322 |
|
3323 |
+
#: includes/B2S/Network/Item.php:853 includes/B2S/Network/Item.php:905
|
3324 |
+
#: includes/B2S/Network/Item.php:974 includes/B2S/Network/Item.php:1026
|
3325 |
+
#: includes/B2S/Network/Item.php:1060 includes/B2S/Network/Item.php:1111
|
3326 |
+
#: includes/B2S/Network/Item.php:1141 includes/B2S/Network/Item.php:1195
|
3327 |
+
#: includes/B2S/Network/Item.php:1214 includes/B2S/Network/Item.php:1248
|
3328 |
+
#: includes/B2S/Network/Item.php:1264 includes/B2S/Network/Item.php:1280
|
3329 |
+
#: includes/B2S/Network/Item.php:1296 includes/B2S/Network/Item.php:1312
|
3330 |
+
#: includes/B2S/Network/Item.php:1331
|
3331 |
msgid "Preview"
|
3332 |
msgstr "Vorschau"
|
3333 |
|
3492 |
msgid "last saved"
|
3493 |
msgstr "zuletzt gespeichert:"
|
3494 |
|
3495 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:868
|
3496 |
#: includes/B2S/Ship/Save.php:448
|
3497 |
msgid "Retweet"
|
3498 |
msgstr "Retweet"
|
3499 |
|
3500 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:868
|
3501 |
msgid "Re-Share"
|
3502 |
msgstr "Wiederholt geteilt"
|
3503 |
|
3504 |
+
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:803
|
3505 |
+
#: includes/B2S/Post/Item.php:874 includes/B2S/RePost/Item.php:130
|
3506 |
msgid "select all"
|
3507 |
msgstr "alle auswählen"
|
3508 |
|
3528 |
msgid "shared by %s"
|
3529 |
msgstr "von %s geteilt"
|
3530 |
|
3531 |
+
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:783
|
3532 |
msgid "You want to delete a publish post entry?"
|
3533 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
3534 |
|
3535 |
+
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:784
|
3536 |
msgid "delete from reporting"
|
3537 |
msgstr "aus Reporting löschen"
|
3538 |
|
3539 |
+
#: includes/B2S/Post/Item.php:806
|
3540 |
#, php-format
|
3541 |
msgid "is waiting to shared by %s"
|
3542 |
msgstr "wartet darauf von %s geteilt zu werden"
|
3543 |
|
3544 |
+
#: includes/B2S/Post/Item.php:836 includes/B2S/Ship/Save.php:429
|
3545 |
msgid "share"
|
3546 |
msgstr "teilen"
|
3547 |
|
3548 |
+
#: includes/B2S/Post/Item.php:844
|
3549 |
msgid "You want to delete your Social Media post?"
|
3550 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
3551 |
|
3552 |
+
#: includes/B2S/Post/Item.php:887
|
3553 |
#, php-format
|
3554 |
msgid "last modified by %s"
|
3555 |
msgstr "zuletzt von %s bearbeitet"
|
3556 |
|
3557 |
+
#: includes/B2S/Post/Item.php:889
|
3558 |
msgid "is currently being processed by the network"
|
3559 |
msgstr "wird vom Netzwerk verarbeitet"
|
3560 |
|
3561 |
+
#: includes/B2S/Post/Item.php:894
|
3562 |
#, php-format
|
3563 |
msgid "scheduled by %s"
|
3564 |
msgstr "von %s vorgeplant "
|
3565 |
|
3566 |
+
#: includes/B2S/Post/Item.php:899
|
3567 |
msgid "You want to edit your scheduled post?"
|
3568 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
3569 |
|
3570 |
+
#: includes/B2S/Post/Item.php:900
|
3571 |
msgid "edit"
|
3572 |
msgstr "edit"
|
3573 |
|
3574 |
+
#: includes/B2S/Post/Item.php:912
|
3575 |
msgid "delete scheduling"
|
3576 |
msgstr "Planung löschen"
|
3577 |
|
3628 |
msgid "on"
|
3629 |
msgstr " "
|
3630 |
|
3631 |
+
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:1262
|
3632 |
msgid "Mon"
|
3633 |
msgstr "Mo"
|
3634 |
|
3635 |
+
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:1263
|
3636 |
msgid "Tue"
|
3637 |
msgstr "Di"
|
3638 |
|
3639 |
+
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:1264
|
3640 |
msgid "Wed"
|
3641 |
msgstr "Mi"
|
3642 |
|
3643 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1265
|
3644 |
msgid "Thu"
|
3645 |
msgstr "Do"
|
3646 |
|
3647 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1266
|
3648 |
msgid "Fri"
|
3649 |
msgstr "Fr"
|
3650 |
|
3651 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1267
|
3652 |
msgid "Sat"
|
3653 |
msgstr "Sa"
|
3654 |
|
3655 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1268
|
3656 |
msgid "Sun"
|
3657 |
msgstr "So"
|
3658 |
|
3725 |
msgstr "Autoren"
|
3726 |
|
3727 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3728 |
+
#: includes/B2S/Ship/Item.php:1106
|
3729 |
msgid "Account"
|
3730 |
msgstr "Konto"
|
3731 |
|
4069 |
msgid "Apply image for this image gallery"
|
4070 |
msgstr "Bild zur Bildergalerie hinzufügen"
|
4071 |
|
4072 |
+
#: includes/B2S/Ship/Item.php:159
|
4073 |
msgid "Network does not support image for profiles"
|
4074 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
4075 |
|
4076 |
+
#: includes/B2S/Ship/Item.php:160 includes/B2S/Ship/Item.php:228
|
4077 |
msgid "Network defines image by link"
|
4078 |
msgstr "Netzwerk wählt selber das Bild aus"
|
4079 |
|
4080 |
+
#: includes/B2S/Ship/Item.php:162
|
4081 |
msgid "Supported HTML tags"
|
4082 |
msgstr "Erlaubte HTML-Elemente"
|
4083 |
|
4084 |
+
#: includes/B2S/Ship/Item.php:163 includes/B2S/Ship/Item.php:227
|
4085 |
msgid "Network does not support emojis"
|
4086 |
msgstr "Netzwerk unterstützt keine Emojis"
|
4087 |
|
4088 |
+
#: includes/B2S/Ship/Item.php:164 includes/B2S/Ship/Item.php:229
|
4089 |
msgid "Network does not support GIFs"
|
4090 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
4091 |
|
4092 |
+
#: includes/B2S/Ship/Item.php:211
|
4093 |
msgid "Text only"
|
4094 |
msgstr "nur Text"
|
4095 |
|
4096 |
+
#: includes/B2S/Ship/Item.php:226
|
4097 |
msgid "Network does not support image for pages"
|
4098 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
4099 |
|
4100 |
+
#: includes/B2S/Ship/Item.php:319
|
4101 |
msgid "Connection expires on 31 March 2019"
|
4102 |
msgstr "Die Verbindung endet am 31. März 2019."
|
4103 |
|
4104 |
+
#: includes/B2S/Ship/Item.php:323
|
4105 |
msgid "Connection expires on 2 April 2019"
|
4106 |
msgstr "Die Verbindung endet am 2. April 2019."
|
4107 |
|
4108 |
+
#: includes/B2S/Ship/Item.php:336
|
4109 |
msgid "post format"
|
4110 |
msgstr "Postformat"
|
4111 |
|
4112 |
+
#: includes/B2S/Ship/Item.php:351 includes/B2S/Ship/Item.php:1291
|
4113 |
msgid "Insert full-text"
|
4114 |
msgstr "ganzen Text einfügen"
|
4115 |
|
4116 |
+
#: includes/B2S/Ship/Item.php:353 includes/B2S/Ship/Item.php:1293
|
4117 |
msgid "Delete text"
|
4118 |
msgstr "Text löschen"
|
4119 |
|
4120 |
+
#: includes/B2S/Ship/Item.php:360 includes/B2S/Ship/Item.php:755
|
4121 |
+
#: includes/B2S/Ship/Item.php:1157
|
4122 |
msgid ""
|
4123 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
4124 |
"allowed to post identical or substantially similar content to multiple "
|
4129 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
4130 |
"mehreren Accounts zu posten."
|
4131 |
|
4132 |
+
#: includes/B2S/Ship/Item.php:360 includes/B2S/Ship/Item.php:755
|
4133 |
+
#: includes/B2S/Ship/Item.php:1157
|
4134 |
msgid ""
|
4135 |
"Violating these rules can result in Twitter suspending your account. Always "
|
4136 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
4140 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
4141 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
4142 |
|
4143 |
+
#: includes/B2S/Ship/Item.php:360 includes/B2S/Ship/Item.php:755
|
4144 |
+
#: includes/B2S/Ship/Item.php:1157
|
4145 |
msgid "Learn more about this"
|
4146 |
msgstr "Erfahre mehr darüber"
|
4147 |
|
4148 |
+
#: includes/B2S/Ship/Item.php:364
|
4149 |
msgid ""
|
4150 |
"Please note: XING allows identical posts to be published only once within a "
|
4151 |
"group and no more than three times across different groups."
|
4154 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
4155 |
"Gruppen."
|
4156 |
|
4157 |
+
#: includes/B2S/Ship/Item.php:364
|
4158 |
msgid "Read more"
|
4159 |
msgstr "Weiterlesen"
|
4160 |
|
4161 |
+
#: includes/B2S/Ship/Item.php:369
|
4162 |
msgid ""
|
4163 |
"Please keep in mind that users are not allowed to post identical or "
|
4164 |
"substantially similar content to multiple accounts or multiple duplicate "
|
4168 |
"im Wesentlichen ähnliche Inhalte in mehreren Konten oder mehrere doppelte "
|
4169 |
"Updates in einem Konto zu veröffentlichen."
|
4170 |
|
4171 |
+
#: includes/B2S/Ship/Item.php:369
|
4172 |
msgid ""
|
4173 |
"Violating these rules can result in suspending your account. Always vary "
|
4174 |
"your content with different images, comments, hashtags or handles to prevent "
|
4178 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
4179 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
4180 |
|
4181 |
+
#: includes/B2S/Ship/Item.php:389
|
4182 |
msgid "hide calendar"
|
4183 |
msgstr "Planungskalender verbergen"
|
4184 |
|
4185 |
+
#: includes/B2S/Ship/Item.php:446 includes/B2S/Ship/Item.php:506
|
4186 |
+
#: includes/B2S/Ship/Item.php:566 includes/B2S/Ship/Item.php:595
|
4187 |
+
#: includes/B2S/Ship/Item.php:624 includes/B2S/Ship/Item.php:652
|
4188 |
+
#: includes/B2S/Ship/Item.php:680 includes/B2S/Ship/Item.php:711
|
4189 |
+
#: includes/B2S/Ship/Item.php:766 includes/B2S/Ship/Item.php:817
|
4190 |
+
#: includes/B2S/Ship/Item.php:838 includes/B2S/Ship/Item.php:859
|
4191 |
+
#: includes/B2S/Ship/Item.php:880 includes/B2S/Ship/Item.php:901
|
4192 |
+
#: includes/B2S/Ship/Item.php:911
|
4193 |
msgid "Write something about your post..."
|
4194 |
msgstr "Schreibe etwas..."
|
4195 |
|
4196 |
+
#: includes/B2S/Ship/Item.php:461 includes/B2S/Ship/Item.php:581
|
4197 |
+
#: includes/B2S/Ship/Item.php:611 includes/B2S/Ship/Item.php:639
|
4198 |
+
#: includes/B2S/Ship/Item.php:667
|
4199 |
msgid ""
|
4200 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
4201 |
"network"
|
4202 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
4203 |
|
4204 |
+
#: includes/B2S/Ship/Item.php:464 includes/B2S/Ship/Item.php:525
|
4205 |
+
#: includes/B2S/Ship/Item.php:584 includes/B2S/Ship/Item.php:614
|
4206 |
+
#: includes/B2S/Ship/Item.php:642 includes/B2S/Ship/Item.php:670
|
4207 |
msgid ""
|
4208 |
"You want to change your link image, link title and link description for this "
|
4209 |
"network? Click here."
|
4210 |
msgstr ""
|
4211 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
4212 |
|
4213 |
+
#: includes/B2S/Ship/Item.php:466 includes/B2S/Ship/Item.php:586
|
4214 |
+
#: includes/B2S/Ship/Item.php:616 includes/B2S/Ship/Item.php:644
|
4215 |
+
#: includes/B2S/Ship/Item.php:672
|
4216 |
msgid "OG Meta title"
|
4217 |
msgstr "OG Titel"
|
4218 |
|
4219 |
+
#: includes/B2S/Ship/Item.php:467 includes/B2S/Ship/Item.php:587
|
4220 |
+
#: includes/B2S/Ship/Item.php:617 includes/B2S/Ship/Item.php:645
|
4221 |
+
#: includes/B2S/Ship/Item.php:673
|
4222 |
msgid "OG Meta description"
|
4223 |
msgstr "OG Beschreibung"
|
4224 |
|
4225 |
+
#: includes/B2S/Ship/Item.php:496 includes/B2S/Ship/Item.php:557
|
4226 |
+
#: includes/B2S/Ship/Item.php:744 includes/B2S/Ship/Item.php:798
|
4227 |
msgid "Do u want to post multiple images?"
|
4228 |
msgstr "Du möchtest mehrere Bilder posten?"
|
4229 |
|
4230 |
+
#: includes/B2S/Ship/Item.php:520
|
4231 |
msgid ""
|
4232 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
4233 |
"Changes may not be immediately visible on Twitter."
|
4235 |
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
4236 |
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
4237 |
|
4238 |
+
#: includes/B2S/Ship/Item.php:522
|
4239 |
msgid ""
|
4240 |
"Info: Change Card Meta tags image, title and description for this network"
|
4241 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
4242 |
|
4243 |
+
#: includes/B2S/Ship/Item.php:527
|
4244 |
msgid "Card Meta title"
|
4245 |
msgstr "Card Titel"
|
4246 |
|
4247 |
+
#: includes/B2S/Ship/Item.php:528
|
4248 |
msgid "Card Meta description"
|
4249 |
msgstr "Card Beschreibung"
|
4250 |
|
4251 |
+
#: includes/B2S/Ship/Item.php:609
|
4252 |
msgid ""
|
4253 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
4254 |
"days. Changes may not be immediately visible on XING."
|
4257 |
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
4258 |
"dargestellt."
|
4259 |
|
4260 |
+
#: includes/B2S/Ship/Item.php:927
|
4261 |
msgid "required"
|
4262 |
msgstr "erforderlich"
|
4263 |
|
4264 |
+
#: includes/B2S/Ship/Item.php:1026
|
4265 |
msgid "Jobs & Projects"
|
4266 |
msgstr "Stellenangebote & Projekte"
|
4267 |
|
4268 |
+
#: includes/B2S/Ship/Item.php:1027
|
4269 |
msgid "Events"
|
4270 |
msgstr "Events"
|
4271 |
|
4272 |
+
#: includes/B2S/Ship/Item.php:1028
|
4273 |
msgid "Classified Ads"
|
4274 |
msgstr "Kleinanzeigen"
|
4275 |
|
4276 |
+
#: includes/B2S/Ship/Item.php:1030
|
4277 |
msgid "Offer"
|
4278 |
msgstr "Angebot"
|
4279 |
|
4280 |
+
#: includes/B2S/Ship/Item.php:1031
|
4281 |
msgid "Request"
|
4282 |
msgstr "Anfrage"
|
4283 |
|
4284 |
+
#: includes/B2S/Ship/Item.php:1042
|
4285 |
msgid "The Headline..."
|
4286 |
msgstr "Die Überschrift..."
|
4287 |
|
4288 |
+
#: includes/B2S/Ship/Item.php:1050
|
4289 |
#, php-format
|
4290 |
msgid "max. %s Tags"
|
4291 |
msgstr "max. %s Tags"
|
4292 |
|
4293 |
+
#: includes/B2S/Ship/Item.php:1052
|
4294 |
msgid "Hashtags"
|
4295 |
msgstr "Hashtags"
|
4296 |
|
4297 |
+
#: includes/B2S/Ship/Item.php:1088
|
4298 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
4299 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
4300 |
|
4301 |
+
#: includes/B2S/Ship/Item.php:1107 views/b2s/partials/post-edit-modal.php:73
|
4302 |
msgid "Delay"
|
4303 |
msgstr "Verzögerung"
|
4304 |
|
4305 |
+
#: includes/B2S/Ship/Item.php:1117 includes/B2S/Ship/Item.php:1118
|
4306 |
+
#: includes/B2S/Ship/Item.php:1119 includes/B2S/Ship/Item.php:1120
|
4307 |
#: views/b2s/partials/post-edit-modal.php:77
|
4308 |
#: views/b2s/partials/post-edit-modal.php:78
|
4309 |
#: views/b2s/partials/post-edit-modal.php:79
|
4311 |
msgid "min"
|
4312 |
msgstr "min"
|
4313 |
|
4314 |
+
#: includes/B2S/Ship/Item.php:1125
|
4315 |
msgid "Add Retweet"
|
4316 |
msgstr "Retweet hinzufügen"
|
4317 |
|
4318 |
+
#: includes/B2S/Ship/Item.php:1145
|
4319 |
msgid "Share Now"
|
4320 |
msgstr "Sofort teilen"
|
4321 |
|
4322 |
+
#: includes/B2S/Ship/Item.php:1150
|
4323 |
msgid "Schedule Recurrent Post"
|
4324 |
msgstr "regelmäßig Planen"
|
4325 |
|
4326 |
+
#: includes/B2S/Ship/Item.php:1186 views/b2s/partials/post-edit-modal.php:47
|
4327 |
msgid ""
|
4328 |
"Please note: Your account is connected via an old XING API that is no longer "
|
4329 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
4338 |
"mit der neuen XING-Schnittstelle. Gehe dazu in den Bereich Blog2Social "
|
4339 |
"\"Netzwerke\" und verbinde Dein XING-Konto über die neue XING-Schnittstelle."
|
4340 |
|
4341 |
+
#: includes/B2S/Ship/Item.php:1190 views/b2s/partials/post-edit-modal.php:51
|
4342 |
msgid ""
|
4343 |
"Please note: Google will shut down Google+ for all private accounts "
|
4344 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
4350 |
"Informationen zu den nächsten Schritten, u. a. dazu, wie Du Deine Fotos und "
|
4351 |
"andere Inhalte herunterladen kannst:"
|
4352 |
|
4353 |
+
#: includes/B2S/Ship/Item.php:1193
|
4354 |
msgid "Repeats"
|
4355 |
msgstr "Wiederholen"
|
4356 |
|
4357 |
+
#: includes/B2S/Ship/Item.php:1194 includes/B2S/Ship/Item.php:1197
|
4358 |
msgid "Duration"
|
4359 |
msgstr "Dauer"
|
4360 |
|
4361 |
+
#: includes/B2S/Ship/Item.php:1198
|
4362 |
msgid "Number of repeats"
|
4363 |
msgstr "Anzahl der Wiederholungen"
|
4364 |
|
4365 |
+
#: includes/B2S/Ship/Item.php:1199
|
4366 |
msgid "Day of month"
|
4367 |
msgstr "Tag im Monat"
|
4368 |
|
4369 |
+
#: includes/B2S/Ship/Item.php:1200
|
4370 |
msgid "Repeats every (days)"
|
4371 |
msgstr "Wiederholt sich alle X Tage"
|
4372 |
|
4373 |
+
#: includes/B2S/Ship/Item.php:1202
|
4374 |
msgid "Start date"
|
4375 |
msgstr "Startdatum"
|
4376 |
|
4377 |
+
#: includes/B2S/Ship/Item.php:1203
|
4378 |
msgid "Time to publish"
|
4379 |
msgstr "Veröffentlichungszeitpunkt"
|
4380 |
|
4381 |
+
#: includes/B2S/Ship/Item.php:1212
|
4382 |
msgid "weekly"
|
4383 |
msgstr "wöchentlich"
|
4384 |
|
4385 |
+
#: includes/B2S/Ship/Item.php:1213
|
4386 |
msgid "monthly"
|
4387 |
msgstr "monatlich"
|
4388 |
|
4389 |
+
#: includes/B2S/Ship/Item.php:1214
|
4390 |
msgid "own period"
|
4391 |
msgstr "Eigener Zeitraum"
|
4392 |
|
4393 |
+
#: includes/B2S/Ship/Item.php:1220
|
4394 |
msgid "Week"
|
4395 |
msgstr "Woche"
|
4396 |
|
4397 |
+
#: includes/B2S/Ship/Item.php:1220
|
4398 |
msgid "Weeks"
|
4399 |
msgstr "Wochen"
|
4400 |
|
4401 |
+
#: includes/B2S/Ship/Item.php:1229
|
4402 |
msgid "Month"
|
4403 |
msgstr "Monat"
|
4404 |
|
4405 |
+
#: includes/B2S/Ship/Item.php:1229
|
4406 |
msgid "Months"
|
4407 |
msgstr "Monate"
|
4408 |
|
4409 |
+
#: includes/B2S/Ship/Item.php:1249
|
4410 |
msgid "End Of Month"
|
4411 |
msgstr "Monatsende"
|
4412 |
|
4413 |
+
#: includes/B2S/Ship/Item.php:1254
|
4414 |
msgid "Timespan"
|
4415 |
msgstr "Zeitspanne"
|
4416 |
|
4417 |
+
#: includes/B2S/Ship/Item.php:1257 views/b2s/partials/post-edit-modal.php:63
|
4418 |
#: views/b2s/partials/post-edit-modal.php:66
|
4419 |
msgid "Time"
|
4420 |
msgstr "Mal"
|
4421 |
|
4422 |
+
#: includes/B2S/Ship/Item.php:1275
|
4423 |
msgid "add another post"
|
4424 |
msgstr "einen weiteren Post anlegen"
|
4425 |
|
4426 |
+
#: includes/B2S/Ship/Item.php:1289
|
4427 |
msgid "Copy from original"
|
4428 |
msgstr "Originaltext kopieren"
|
4429 |
|
4430 |
+
#: includes/B2S/Ship/Item.php:1305
|
4431 |
msgid "Apply Settings To All Networks"
|
4432 |
msgstr "Planung für alle Netzwerke übernehmen"
|
4433 |
|
4434 |
+
#: includes/B2S/Ship/Item.php:1306
|
4435 |
msgid "Save as best time for this network"
|
4436 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
4437 |
|
5762 |
msgid "Contact Details"
|
5763 |
msgstr "Kontaktdaten"
|
5764 |
|
5765 |
+
#: views/prg/html/form.php:74
|
5766 |
+
msgid "Company"
|
5767 |
+
msgstr "Unternehmen"
|
5768 |
+
|
5769 |
#: views/prg/html/form.php:77
|
5770 |
msgid "Press"
|
5771 |
msgstr "Presse"
|
languages/blog2social.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2020-10
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -43,27 +43,27 @@ msgstr ""
|
|
43 |
msgid "Sniply"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: includes/Loader.php:
|
47 |
msgid "Blog2Social: Autoposter"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: includes/Loader.php:
|
51 |
msgid "Blog2Social: Social Media Content Calendar"
|
52 |
msgstr ""
|
53 |
|
54 |
-
#: includes/Loader.php:
|
55 |
msgid "This post will be shared into your social media from"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: includes/Loader.php:
|
59 |
msgid "show details"
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: includes/Loader.php:
|
63 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/Loader.php:
|
67 |
msgid ""
|
68 |
"Please make sure that your post, page or custom post type is published or "
|
69 |
"scheduled to be published on this blog before you try to post it with "
|
@@ -71,7 +71,7 @@ msgid ""
|
|
71 |
"scheduled WP posts will be shared with the posting id link."
|
72 |
msgstr ""
|
73 |
|
74 |
-
#: includes/Loader.php:
|
75 |
#: includes/B2S/AutoPost/Item.php:59
|
76 |
msgid ""
|
77 |
"There are no social network accounts assigned to your selected network "
|
@@ -79,283 +79,283 @@ msgid ""
|
|
79 |
"another network collection."
|
80 |
msgstr ""
|
81 |
|
82 |
-
#: includes/Loader.php:
|
83 |
#: views/b2s/html/sidebar.ship.php:44
|
84 |
msgid "Upgrade to Premium"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: includes/Loader.php:
|
88 |
-
#: includes/Loader.php:
|
89 |
#: views/b2s/html/sidebar.php:137
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: includes/Loader.php:
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: includes/Loader.php:
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: includes/Loader.php:
|
102 |
#: views/b2s/html/sidebar.php:125
|
103 |
msgid "Shared Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/Loader.php:
|
107 |
#: views/b2s/html/sidebar.php:119
|
108 |
msgid "Instant Sharing"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/Loader.php:
|
112 |
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:94
|
113 |
#: views/b2s/html/sidebar.php:116
|
114 |
msgid "Drafts"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: includes/Loader.php:
|
118 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
119 |
msgid "Scheduled Posts"
|
120 |
msgstr ""
|
121 |
|
122 |
-
#: includes/Loader.php:
|
123 |
msgid "Social Media Post Drafts"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: includes/Loader.php:
|
127 |
#: views/b2s/html/sidebar.php:113
|
128 |
msgid "Favorites"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/Loader.php:
|
132 |
#: views/b2s/html/sidebar.php:75
|
133 |
msgid "Auto-Post"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/Loader.php:
|
137 |
#: views/b2s/html/sidebar.php:72
|
138 |
msgid "Re-Share Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: includes/Loader.php:
|
142 |
#: views/b2s/support.php:22
|
143 |
msgid "NEW"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: includes/Loader.php:
|
147 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:151
|
148 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:156
|
149 |
-
#: includes/B2S/Network/Item.php:224 includes/B2S/Network/Item.php:
|
150 |
#: includes/B2S/Ship/Portale.php:38 includes/B2S/Ship/Portale.php:40
|
151 |
#: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
|
152 |
msgid "Profile"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: includes/Loader.php:
|
156 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:161
|
157 |
-
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:
|
158 |
-
#: includes/B2S/Network/Item.php:
|
159 |
#: includes/B2S/Ship/Portale.php:35
|
160 |
msgid "Page"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: includes/Loader.php:
|
164 |
-
#: includes/B2S/Network/Item.php:
|
165 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
166 |
msgid "Group"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: includes/Loader.php:
|
170 |
-
msgid "Company"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/Loader.php:
|
174 |
msgid "Business"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/Loader.php:
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
"The network could not publish your post. Please see <a target=\"_blank\" "
|
181 |
"href=\"%s\">FAQ</a>"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: includes/Loader.php:
|
185 |
msgid ""
|
186 |
"Your authorization has expired. Please reconnect your account in the "
|
187 |
"Blog2Social network settings."
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: includes/Loader.php:
|
191 |
msgid "The network has marked the post as spam or abusive."
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/Loader.php:
|
195 |
msgid ""
|
196 |
"We don't have the permission to publish your post. Please check your "
|
197 |
"authorization."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/Loader.php:
|
201 |
#, php-format
|
202 |
msgid ""
|
203 |
"Your authorization is interrupted. Please check your authorization. Please "
|
204 |
"see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/Loader.php:
|
208 |
msgid "Your daily limit has been reached."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: includes/Loader.php:
|
212 |
msgid ""
|
213 |
"Your post could not be posted, because your image is not available or the "
|
214 |
"image source does not allow to publish"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/Loader.php:
|
218 |
#, php-format
|
219 |
msgid ""
|
220 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
221 |
"href=\"%s\">FAQ</a>"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: includes/Loader.php:
|
225 |
#, php-format
|
226 |
msgid ""
|
227 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
228 |
"FAQ</a>"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/Loader.php:
|
232 |
msgid ""
|
233 |
"Your daily limit for this network has been reached. Please try again later."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/Loader.php:
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"The network can not publish special characters such as Emoji. Please see <a "
|
240 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: includes/Loader.php:
|
244 |
msgid "Your post is a duplicate."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: includes/Loader.php:
|
248 |
msgid "The network requires a public url."
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/Loader.php:
|
252 |
msgid ""
|
253 |
"Your blog post was not available for the network at the time of publication."
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/Loader.php:
|
257 |
msgid "You have already retweeted this post."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/Loader.php:
|
261 |
msgid ""
|
262 |
"This XING API is no longer supported by XING. Please connect your XING "
|
263 |
"accounts with the new XING interface to reschedule your posts."
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/Loader.php:
|
267 |
msgid "An image is required to post on this social network."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/Loader.php:
|
271 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/Loader.php:
|
275 |
msgid ""
|
276 |
"Your post could not be posted, because your image can not be processed by "
|
277 |
"the network."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/Loader.php:
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
284 |
"href=\"%s\">FAQ</a>"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/Loader.php:
|
288 |
msgid "Your group can not be found by the network."
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/Loader.php:
|
292 |
msgid "Dashboard"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/Loader.php:
|
296 |
msgid "Share Website & Blog Content"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/Loader.php:
|
300 |
msgid "Site & Blog Content"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/Loader.php:
|
304 |
msgid "Create Social Media Posts"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/Loader.php:
|
308 |
msgid "Social Media Posts"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/Loader.php:
|
312 |
#: views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:128
|
313 |
msgid "Calendar"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: includes/Loader.php:
|
317 |
msgid "Networks"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: includes/Loader.php:
|
321 |
msgid "PR-Service"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: includes/Loader.php:
|
325 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
326 |
#: views/b2s/html/sidebar.ship.php:66
|
327 |
msgid "Help & Support"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/Loader.php:
|
331 |
msgid "Premium"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/Loader.php:
|
335 |
msgid "PREMIUM"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/Loader.php:
|
339 |
#: views/b2s/html/sidebar.ship.php:24
|
340 |
msgid "Blog2Social"
|
341 |
msgstr ""
|
342 |
|
343 |
-
#: includes/Loader.php:
|
344 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/Loader.php:
|
348 |
#, php-format
|
349 |
msgid ""
|
350 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
351 |
"our FAQ</a>"
|
352 |
msgstr ""
|
353 |
|
354 |
-
#: includes/Loader.php:
|
355 |
msgid "or"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: includes/Loader.php:
|
359 |
msgid "back to install plugins"
|
360 |
msgstr ""
|
361 |
|
@@ -395,200 +395,200 @@ msgid ""
|
|
395 |
"higher, or ask your server administrator to do it for you."
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/Tools.php:
|
399 |
#: views/b2s/html/sidebar.ship.php:29
|
400 |
msgid "License"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/Tools.php:
|
404 |
msgid "Greece"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: includes/Tools.php:
|
408 |
msgid "India"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: includes/Tools.php:
|
412 |
msgid "United States of America"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: includes/Tools.php:
|
416 |
msgid "Ireland"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: includes/Tools.php:
|
420 |
msgid "Italy"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: includes/Tools.php:
|
424 |
msgid "Switzerland"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/Tools.php:
|
428 |
msgid "Czechoslovakia"
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/Tools.php:
|
432 |
msgid "Indonesia"
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/Tools.php:
|
436 |
msgid "Spain"
|
437 |
msgstr ""
|
438 |
|
439 |
-
#: includes/Tools.php:
|
440 |
msgid "Canada"
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: includes/Tools.php:
|
444 |
msgid "Great Britain"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: includes/Tools.php:
|
448 |
msgid "Russia"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: includes/Tools.php:
|
452 |
msgid "Netherlands"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: includes/Tools.php:
|
456 |
msgid "Portugal"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: includes/Tools.php:
|
460 |
msgid "Norway"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: includes/Tools.php:
|
464 |
msgid "Turkey"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: includes/Tools.php:
|
468 |
msgid "Australia"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: includes/Tools.php:
|
472 |
msgid "Austria"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: includes/Tools.php:
|
476 |
msgid "Poland"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: includes/Tools.php:
|
480 |
msgid "France"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: includes/Tools.php:
|
484 |
msgid "Romania"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: includes/Tools.php:
|
488 |
msgid "Germany"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: includes/Tools.php:
|
492 |
msgid "Denmark"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: includes/Tools.php:
|
496 |
msgid "New Zealand"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: includes/Tools.php:
|
500 |
msgid "Finland"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: includes/Tools.php:
|
504 |
msgid "Hungary"
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: includes/Tools.php:
|
508 |
msgid "Japan"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: includes/Tools.php:
|
512 |
msgid "Argentina"
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: includes/Tools.php:
|
516 |
msgid "Korea"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: includes/Tools.php:
|
520 |
msgid "Sweden"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: includes/Tools.php:
|
524 |
msgid "Mexico"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: includes/Tools.php:
|
528 |
msgid "Slovakia"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: includes/Tools.php:
|
532 |
msgid "Chile"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: includes/Tools.php:
|
536 |
msgid "Colombia"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: includes/Tools.php:
|
540 |
msgid "South Africa"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/Tools.php:
|
544 |
msgid "Philippines"
|
545 |
msgstr ""
|
546 |
|
547 |
-
#: includes/Tools.php:
|
548 |
msgid "is determined automatically"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: includes/Tools.php:
|
552 |
msgid "Search"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: includes/Tools.php:
|
556 |
msgid "Recently Used"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: includes/Tools.php:
|
560 |
msgid "Smileys & People"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: includes/Tools.php:
|
564 |
msgid "Animals & Nature"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/Tools.php:
|
568 |
msgid "Food & Drink"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/Tools.php:
|
572 |
msgid "Activities"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/Tools.php:
|
576 |
msgid "Travel & Places"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: includes/Tools.php:
|
580 |
msgid "Objects"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/Tools.php:
|
584 |
msgid "Symbols"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: includes/Tools.php:
|
588 |
msgid "Flags"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/Tools.php:
|
592 |
msgid "No emojis found"
|
593 |
msgstr ""
|
594 |
|
@@ -630,17 +630,17 @@ msgstr ""
|
|
630 |
msgid "Please contact our support!"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: includes/Ajax/Post.php:
|
634 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
635 |
-
#: includes/B2S/Network/Item.php:
|
636 |
msgid "Unknown username"
|
637 |
msgstr ""
|
638 |
|
639 |
-
#: includes/Ajax/Post.php:
|
640 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
641 |
-
#: includes/B2S/Post/Item.php:
|
642 |
-
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:
|
643 |
-
#: includes/B2S/Ship/Item.php:
|
644 |
msgid "delete"
|
645 |
msgstr ""
|
646 |
|
@@ -687,7 +687,7 @@ msgstr ""
|
|
687 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
688 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
689 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
690 |
-
#: includes/B2S/Ship/Item.php:
|
691 |
msgid "Info"
|
692 |
msgstr ""
|
693 |
|
@@ -727,7 +727,7 @@ msgstr ""
|
|
727 |
msgid "enable Auto-Posting"
|
728 |
msgstr ""
|
729 |
|
730 |
-
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:
|
731 |
msgid "show calendar"
|
732 |
msgstr ""
|
733 |
|
@@ -1089,9 +1089,9 @@ msgstr ""
|
|
1089 |
#: views/b2s/curation.php:49 views/b2s/network.php:230 views/b2s/ship.php:23
|
1090 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1091 |
#: includes/B2S/Network/Item.php:168 includes/B2S/Network/Item.php:262
|
1092 |
-
#: includes/B2S/Network/Item.php:
|
1093 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1094 |
-
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:
|
1095 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18
|
1096 |
#: views/b2s/html/post.navbar.php:20 views/b2s/partials/post-edit-modal.php:9
|
1097 |
#: views/b2s/widgets/posts.php:18
|
@@ -1118,20 +1118,20 @@ msgstr ""
|
|
1118 |
msgid "continue"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:
|
1122 |
-
#: includes/B2S/Ship/Item.php:
|
1123 |
-
#: includes/B2S/Ship/Item.php:
|
1124 |
-
#: includes/B2S/Ship/Item.php:
|
1125 |
-
#: includes/B2S/Ship/Item.php:
|
1126 |
-
#: includes/B2S/Ship/Item.php:
|
1127 |
-
#: includes/B2S/Ship/Item.php:
|
1128 |
-
#: includes/B2S/Ship/Item.php:
|
1129 |
-
#: includes/B2S/Ship/Item.php:
|
1130 |
-
#: includes/B2S/Ship/Item.php:
|
1131 |
-
#: includes/B2S/Ship/Item.php:
|
1132 |
-
#: includes/B2S/Ship/Item.php:
|
1133 |
-
#: includes/B2S/Ship/Item.php:
|
1134 |
-
#: includes/B2S/Ship/Item.php:
|
1135 |
msgid "Change image"
|
1136 |
msgstr ""
|
1137 |
|
@@ -1176,7 +1176,7 @@ msgid "Blog2Social Premium covers everything you need."
|
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:271
|
1179 |
-
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:
|
1180 |
msgid "Schedule for specific dates"
|
1181 |
msgstr ""
|
1182 |
|
@@ -1278,9 +1278,9 @@ msgstr ""
|
|
1278 |
|
1279 |
#: views/b2s/network.php:35 includes/B2S/Network/Item.php:156
|
1280 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:165
|
1281 |
-
#: includes/B2S/Ship/Image.php:92 includes/B2S/Ship/Item.php:
|
1282 |
-
#: includes/B2S/Ship/Item.php:
|
1283 |
-
#: includes/B2S/Ship/Item.php:
|
1284 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:45
|
1285 |
msgid "PRO"
|
1286 |
msgstr ""
|
@@ -1331,7 +1331,7 @@ msgid ""
|
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1334 |
-
#: includes/B2S/Ship/Item.php:
|
1335 |
msgid "Learn more"
|
1336 |
msgstr ""
|
1337 |
|
@@ -1399,7 +1399,7 @@ msgid "Edit Post Template"
|
|
1399 |
msgstr ""
|
1400 |
|
1401 |
#: views/b2s/network.php:242 views/b2s/settings.php:49
|
1402 |
-
#: includes/B2S/Network/Item.php:
|
1403 |
msgid "save"
|
1404 |
msgstr ""
|
1405 |
|
@@ -1466,7 +1466,7 @@ msgstr ""
|
|
1466 |
msgid "The name of the post author."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
-
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:
|
1470 |
msgid "Character limit"
|
1471 |
msgstr ""
|
1472 |
|
@@ -1685,7 +1685,7 @@ msgstr ""
|
|
1685 |
msgid "Upgrade to Blog2Social Business"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: views/b2s/network.php:518 includes/B2S/Network/Item.php:
|
1689 |
#, php-format
|
1690 |
msgid ""
|
1691 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1753,15 +1753,15 @@ msgid "scheduled"
|
|
1753 |
msgstr ""
|
1754 |
|
1755 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1756 |
-
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:
|
1757 |
-
#: includes/B2S/Network/Item.php:
|
1758 |
#: views/b2s/html/footer.php:177
|
1759 |
msgid "Image with frame"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1763 |
-
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:
|
1764 |
-
#: includes/B2S/Network/Item.php:
|
1765 |
#: views/b2s/html/footer.php:182
|
1766 |
msgid "Image cut out"
|
1767 |
msgstr ""
|
@@ -1960,7 +1960,7 @@ msgid ""
|
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
1963 |
-
#: includes/B2S/Post/Item.php:
|
1964 |
msgid "Auto-Posting"
|
1965 |
msgstr ""
|
1966 |
|
@@ -2734,7 +2734,7 @@ msgid "at scheduled times"
|
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2737 |
-
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:
|
2738 |
#: views/b2s/partials/post-edit-modal.php:62
|
2739 |
#: views/b2s/partials/post-edit-modal.php:65
|
2740 |
msgid "Date"
|
@@ -2765,7 +2765,7 @@ msgid "Best times"
|
|
2765 |
msgstr ""
|
2766 |
|
2767 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
2768 |
-
#: includes/B2S/Ship/Item.php:
|
2769 |
#: includes/B2S/Ship/Portale.php:38
|
2770 |
msgid "Blog"
|
2771 |
msgstr ""
|
@@ -2783,7 +2783,7 @@ msgstr ""
|
|
2783 |
msgid "You want to connect a network page?"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: includes/B2S/Network/Item.php:164 includes/B2S/Network/Item.php:
|
2787 |
#: includes/B2S/Ship/Portale.php:31
|
2788 |
msgid "Publication"
|
2789 |
msgstr ""
|
@@ -2797,74 +2797,81 @@ msgid "Best Time Manager"
|
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
2800 |
-
#: includes/B2S/Network/Item.php:
|
2801 |
msgid "To reactivate this connection,"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
2805 |
-
#: includes/B2S/Network/Item.php:
|
2806 |
msgid "please upgrade"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
2810 |
-
#: includes/B2S/Network/Item.php:
|
2811 |
msgid "Authorization is interrupted since"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
2815 |
-
#: includes/B2S/Network/Item.php:
|
2816 |
msgid "Assigned by"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:
|
2820 |
-
#: includes/B2S/Network/Item.php:
|
2821 |
msgid "Days"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: includes/B2S/Network/Item.php:
|
2825 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#: includes/B2S/Network/Item.php:
|
2829 |
msgid "Connection currently assigned to"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: includes/B2S/Network/Item.php:
|
2833 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
2834 |
#: views/prg/html/form.php:163
|
2835 |
msgid "Name"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: includes/B2S/Network/Item.php:
|
2839 |
msgid "Value"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: includes/B2S/Network/Item.php:
|
2843 |
msgid "+ add Parameter"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: includes/B2S/Network/Item.php:
|
2847 |
#, php-format
|
2848 |
msgid "Apply for all %s connections"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
-
#: includes/B2S/Network/Item.php:
|
2852 |
msgid "Apply for all connections"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: includes/B2S/Network/Item.php:
|
2856 |
msgid "Successfully saved"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: includes/B2S/Network/Item.php:
|
2860 |
msgid "Failed to save"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: includes/B2S/Network/Item.php:
|
2864 |
msgid "Failed to load the default template"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: includes/B2S/Network/Item.php:
|
2868 |
msgid ""
|
2869 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
2870 |
"templates that will automatically pre-format the structure of your social "
|
@@ -2875,84 +2882,86 @@ msgid ""
|
|
2875 |
"or slogans) to your post templates."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: includes/B2S/Network/Item.php:
|
2879 |
msgid "Upgrade to Blog2Social Smart"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: includes/B2S/Network/Item.php:
|
2883 |
msgid "Activate Instant Caching"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: includes/B2S/Network/Item.php:
|
2887 |
msgid "Format"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: includes/B2S/Network/Item.php:
|
2891 |
msgid "Load default settings"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: includes/B2S/Network/Item.php:
|
2895 |
-
#: includes/B2S/Ship/Item.php:
|
2896 |
msgid "Link"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: includes/B2S/Network/Item.php:
|
2900 |
msgid "Image"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: includes/B2S/Network/Item.php:
|
2904 |
msgid "Content"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: includes/B2S/Network/Item.php:
|
2908 |
msgid ""
|
2909 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2910 |
"in your post."
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: includes/B2S/Network/Item.php:
|
2914 |
msgid "clear"
|
2915 |
msgstr ""
|
2916 |
|
2917 |
-
#: includes/B2S/Network/Item.php:
|
2918 |
msgid "The link will be added automatically at the end of the post."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: includes/B2S/Network/Item.php:
|
|
|
2922 |
msgid "Network limit"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: includes/B2S/Network/Item.php:
|
2926 |
-
#: includes/B2S/Network/Item.php:
|
2927 |
-
#: includes/B2S/
|
2928 |
-
#: includes/B2S/Ship/Item.php:
|
2929 |
-
#: includes/B2S/Ship/Item.php:
|
2930 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
2931 |
msgid "characters"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: includes/B2S/Network/Item.php:
|
2935 |
msgid "Add a link-URL to the end of my image post."
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: includes/B2S/Network/Item.php:
|
2939 |
msgid ""
|
2940 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
2941 |
"Instagram does not turn link-URLs into clickable links)"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
-
#: includes/B2S/Network/Item.php:
|
2945 |
msgid "recommended length"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
-
#: includes/B2S/Network/Item.php:
|
2949 |
-
#: includes/B2S/Network/Item.php:
|
2950 |
-
#: includes/B2S/Network/Item.php:
|
2951 |
-
#: includes/B2S/Network/Item.php:
|
2952 |
-
#: includes/B2S/Network/Item.php:
|
2953 |
-
#: includes/B2S/Network/Item.php:
|
2954 |
-
#: includes/B2S/Network/Item.php:
|
2955 |
-
#: includes/B2S/Network/Item.php:
|
2956 |
msgid "Preview"
|
2957 |
msgstr ""
|
2958 |
|
@@ -3117,17 +3126,17 @@ msgstr ""
|
|
3117 |
msgid "last saved"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3121 |
#: includes/B2S/Ship/Save.php:448
|
3122 |
msgid "Retweet"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:
|
3126 |
msgid "Re-Share"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:
|
3130 |
-
#: includes/B2S/Post/Item.php:
|
3131 |
msgid "select all"
|
3132 |
msgstr ""
|
3133 |
|
@@ -3153,50 +3162,50 @@ msgstr ""
|
|
3153 |
msgid "shared by %s"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:
|
3157 |
msgid "You want to delete a publish post entry?"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:
|
3161 |
msgid "delete from reporting"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: includes/B2S/Post/Item.php:
|
3165 |
#, php-format
|
3166 |
msgid "is waiting to shared by %s"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: includes/B2S/Post/Item.php:
|
3170 |
msgid "share"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: includes/B2S/Post/Item.php:
|
3174 |
msgid "You want to delete your Social Media post?"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
-
#: includes/B2S/Post/Item.php:
|
3178 |
#, php-format
|
3179 |
msgid "last modified by %s"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: includes/B2S/Post/Item.php:
|
3183 |
msgid "is currently being processed by the network"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: includes/B2S/Post/Item.php:
|
3187 |
#, php-format
|
3188 |
msgid "scheduled by %s"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: includes/B2S/Post/Item.php:
|
3192 |
msgid "You want to edit your scheduled post?"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: includes/B2S/Post/Item.php:
|
3196 |
msgid "edit"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: includes/B2S/Post/Item.php:
|
3200 |
msgid "delete scheduling"
|
3201 |
msgstr ""
|
3202 |
|
@@ -3251,31 +3260,31 @@ msgstr ""
|
|
3251 |
msgid "on"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:
|
3255 |
msgid "Mon"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:
|
3259 |
msgid "Tue"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:
|
3263 |
msgid "Wed"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
3267 |
msgid "Thu"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
3271 |
msgid "Fri"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:
|
3275 |
msgid "Sat"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:
|
3279 |
msgid "Sun"
|
3280 |
msgstr ""
|
3281 |
|
@@ -3348,7 +3357,7 @@ msgid "Authors"
|
|
3348 |
msgstr ""
|
3349 |
|
3350 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3351 |
-
#: includes/B2S/Ship/Item.php:
|
3352 |
msgid "Account"
|
3353 |
msgstr ""
|
3354 |
|
@@ -3625,219 +3634,219 @@ msgstr ""
|
|
3625 |
msgid "Apply image for this image gallery"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: includes/B2S/Ship/Item.php:
|
3629 |
msgid "Network does not support image for profiles"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: includes/B2S/Ship/Item.php:
|
3633 |
msgid "Network defines image by link"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: includes/B2S/Ship/Item.php:
|
3637 |
msgid "Supported HTML tags"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: includes/B2S/Ship/Item.php:
|
3641 |
msgid "Network does not support emojis"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: includes/B2S/Ship/Item.php:
|
3645 |
msgid "Network does not support GIFs"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: includes/B2S/Ship/Item.php:
|
3649 |
msgid "Text only"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: includes/B2S/Ship/Item.php:
|
3653 |
msgid "Network does not support image for pages"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: includes/B2S/Ship/Item.php:
|
3657 |
msgid "Connection expires on 31 March 2019"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: includes/B2S/Ship/Item.php:
|
3661 |
msgid "Connection expires on 2 April 2019"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: includes/B2S/Ship/Item.php:
|
3665 |
msgid "post format"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: includes/B2S/Ship/Item.php:
|
3669 |
msgid "Insert full-text"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: includes/B2S/Ship/Item.php:
|
3673 |
msgid "Delete text"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: includes/B2S/Ship/Item.php:
|
3677 |
-
#: includes/B2S/Ship/Item.php:
|
3678 |
msgid ""
|
3679 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3680 |
"allowed to post identical or substantially similar content to multiple "
|
3681 |
"accounts or multiple duplicate updates on one account."
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: includes/B2S/Ship/Item.php:
|
3685 |
-
#: includes/B2S/Ship/Item.php:
|
3686 |
msgid ""
|
3687 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3688 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3689 |
"duplicate posts."
|
3690 |
msgstr ""
|
3691 |
|
3692 |
-
#: includes/B2S/Ship/Item.php:
|
3693 |
-
#: includes/B2S/Ship/Item.php:
|
3694 |
msgid "Learn more about this"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: includes/B2S/Ship/Item.php:
|
3698 |
msgid ""
|
3699 |
"Please note: XING allows identical posts to be published only once within a "
|
3700 |
"group and no more than three times across different groups."
|
3701 |
msgstr ""
|
3702 |
|
3703 |
-
#: includes/B2S/Ship/Item.php:
|
3704 |
msgid "Read more"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: includes/B2S/Ship/Item.php:
|
3708 |
msgid ""
|
3709 |
"Please keep in mind that users are not allowed to post identical or "
|
3710 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3711 |
"updates on one account."
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: includes/B2S/Ship/Item.php:
|
3715 |
msgid ""
|
3716 |
"Violating these rules can result in suspending your account. Always vary "
|
3717 |
"your content with different images, comments, hashtags or handles to prevent "
|
3718 |
"duplicate posts."
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: includes/B2S/Ship/Item.php:
|
3722 |
msgid "hide calendar"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: includes/B2S/Ship/Item.php:
|
3726 |
-
#: includes/B2S/Ship/Item.php:
|
3727 |
-
#: includes/B2S/Ship/Item.php:
|
3728 |
-
#: includes/B2S/Ship/Item.php:
|
3729 |
-
#: includes/B2S/Ship/Item.php:
|
3730 |
-
#: includes/B2S/Ship/Item.php:
|
3731 |
-
#: includes/B2S/Ship/Item.php:
|
3732 |
-
#: includes/B2S/Ship/Item.php:
|
3733 |
msgid "Write something about your post..."
|
3734 |
msgstr ""
|
3735 |
|
3736 |
-
#: includes/B2S/Ship/Item.php:
|
3737 |
-
#: includes/B2S/Ship/Item.php:
|
3738 |
-
#: includes/B2S/Ship/Item.php:
|
3739 |
msgid ""
|
3740 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3741 |
"network"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
-
#: includes/B2S/Ship/Item.php:
|
3745 |
-
#: includes/B2S/Ship/Item.php:
|
3746 |
-
#: includes/B2S/Ship/Item.php:
|
3747 |
msgid ""
|
3748 |
"You want to change your link image, link title and link description for this "
|
3749 |
"network? Click here."
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: includes/B2S/Ship/Item.php:
|
3753 |
-
#: includes/B2S/Ship/Item.php:
|
3754 |
-
#: includes/B2S/Ship/Item.php:
|
3755 |
msgid "OG Meta title"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
-
#: includes/B2S/Ship/Item.php:
|
3759 |
-
#: includes/B2S/Ship/Item.php:
|
3760 |
-
#: includes/B2S/Ship/Item.php:
|
3761 |
msgid "OG Meta description"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
-
#: includes/B2S/Ship/Item.php:
|
3765 |
-
#: includes/B2S/Ship/Item.php:
|
3766 |
msgid "Do u want to post multiple images?"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: includes/B2S/Ship/Item.php:
|
3770 |
msgid ""
|
3771 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3772 |
"Changes may not be immediately visible on Twitter."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: includes/B2S/Ship/Item.php:
|
3776 |
msgid ""
|
3777 |
"Info: Change Card Meta tags image, title and description for this network"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: includes/B2S/Ship/Item.php:
|
3781 |
msgid "Card Meta title"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
-
#: includes/B2S/Ship/Item.php:
|
3785 |
msgid "Card Meta description"
|
3786 |
msgstr ""
|
3787 |
|
3788 |
-
#: includes/B2S/Ship/Item.php:
|
3789 |
msgid ""
|
3790 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3791 |
"days. Changes may not be immediately visible on XING."
|
3792 |
msgstr ""
|
3793 |
|
3794 |
-
#: includes/B2S/Ship/Item.php:
|
3795 |
msgid "required"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
-
#: includes/B2S/Ship/Item.php:
|
3799 |
msgid "Jobs & Projects"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
-
#: includes/B2S/Ship/Item.php:
|
3803 |
msgid "Events"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
-
#: includes/B2S/Ship/Item.php:
|
3807 |
msgid "Classified Ads"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
-
#: includes/B2S/Ship/Item.php:
|
3811 |
msgid "Offer"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: includes/B2S/Ship/Item.php:
|
3815 |
msgid "Request"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#: includes/B2S/Ship/Item.php:
|
3819 |
msgid "The Headline..."
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: includes/B2S/Ship/Item.php:
|
3823 |
#, php-format
|
3824 |
msgid "max. %s Tags"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: includes/B2S/Ship/Item.php:
|
3828 |
msgid "Hashtags"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: includes/B2S/Ship/Item.php:
|
3832 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
-
#: includes/B2S/Ship/Item.php:
|
3836 |
msgid "Delay"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: includes/B2S/Ship/Item.php:
|
3840 |
-
#: includes/B2S/Ship/Item.php:
|
3841 |
#: views/b2s/partials/post-edit-modal.php:77
|
3842 |
#: views/b2s/partials/post-edit-modal.php:78
|
3843 |
#: views/b2s/partials/post-edit-modal.php:79
|
@@ -3845,19 +3854,19 @@ msgstr ""
|
|
3845 |
msgid "min"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: includes/B2S/Ship/Item.php:
|
3849 |
msgid "Add Retweet"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: includes/B2S/Ship/Item.php:
|
3853 |
msgid "Share Now"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
-
#: includes/B2S/Ship/Item.php:
|
3857 |
msgid "Schedule Recurrent Post"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
-
#: includes/B2S/Ship/Item.php:
|
3861 |
msgid ""
|
3862 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3863 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3867,7 +3876,7 @@ msgid ""
|
|
3867 |
"the new XING."
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: includes/B2S/Ship/Item.php:
|
3871 |
msgid ""
|
3872 |
"Please note: Google will shut down Google+ for all private accounts "
|
3873 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3875,88 +3884,88 @@ msgid ""
|
|
3875 |
"other content here:"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
-
#: includes/B2S/Ship/Item.php:
|
3879 |
msgid "Repeats"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
-
#: includes/B2S/Ship/Item.php:
|
3883 |
msgid "Duration"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: includes/B2S/Ship/Item.php:
|
3887 |
msgid "Number of repeats"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: includes/B2S/Ship/Item.php:
|
3891 |
msgid "Day of month"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: includes/B2S/Ship/Item.php:
|
3895 |
msgid "Repeats every (days)"
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: includes/B2S/Ship/Item.php:
|
3899 |
msgid "Start date"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: includes/B2S/Ship/Item.php:
|
3903 |
msgid "Time to publish"
|
3904 |
msgstr ""
|
3905 |
|
3906 |
-
#: includes/B2S/Ship/Item.php:
|
3907 |
msgid "weekly"
|
3908 |
msgstr ""
|
3909 |
|
3910 |
-
#: includes/B2S/Ship/Item.php:
|
3911 |
msgid "monthly"
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: includes/B2S/Ship/Item.php:
|
3915 |
msgid "own period"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: includes/B2S/Ship/Item.php:
|
3919 |
msgid "Week"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: includes/B2S/Ship/Item.php:
|
3923 |
msgid "Weeks"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: includes/B2S/Ship/Item.php:
|
3927 |
msgid "Month"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: includes/B2S/Ship/Item.php:
|
3931 |
msgid "Months"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: includes/B2S/Ship/Item.php:
|
3935 |
msgid "End Of Month"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: includes/B2S/Ship/Item.php:
|
3939 |
msgid "Timespan"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: includes/B2S/Ship/Item.php:
|
3943 |
#: views/b2s/partials/post-edit-modal.php:66
|
3944 |
msgid "Time"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: includes/B2S/Ship/Item.php:
|
3948 |
msgid "add another post"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: includes/B2S/Ship/Item.php:
|
3952 |
msgid "Copy from original"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: includes/B2S/Ship/Item.php:
|
3956 |
msgid "Apply Settings To All Networks"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: includes/B2S/Ship/Item.php:
|
3960 |
msgid "Save as best time for this network"
|
3961 |
msgstr ""
|
3962 |
|
@@ -5021,6 +5030,10 @@ msgstr ""
|
|
5021 |
msgid "Contact Details"
|
5022 |
msgstr ""
|
5023 |
|
|
|
|
|
|
|
|
|
5024 |
#: views/prg/html/form.php:77
|
5025 |
msgid "Press"
|
5026 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2020-11-10 12:49+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"
|
43 |
msgid "Sniply"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: includes/Loader.php:403
|
47 |
msgid "Blog2Social: Autoposter"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: includes/Loader.php:404
|
51 |
msgid "Blog2Social: Social Media Content Calendar"
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: includes/Loader.php:796
|
55 |
msgid "This post will be shared into your social media from"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: includes/Loader.php:796 includes/Loader.php:798
|
59 |
msgid "show details"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: includes/Loader.php:798
|
63 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/Loader.php:802
|
67 |
msgid ""
|
68 |
"Please make sure that your post, page or custom post type is published or "
|
69 |
"scheduled to be published on this blog before you try to post it with "
|
71 |
"scheduled WP posts will be shared with the posting id link."
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: includes/Loader.php:805 includes/B2S/PostBox.php:146
|
75 |
#: includes/B2S/AutoPost/Item.php:59
|
76 |
msgid ""
|
77 |
"There are no social network accounts assigned to your selected network "
|
79 |
"another network collection."
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: includes/Loader.php:818 views/b2s/html/sidebar.php:45
|
83 |
#: views/b2s/html/sidebar.ship.php:44
|
84 |
msgid "Upgrade to Premium"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: includes/Loader.php:821 includes/Loader.php:955 includes/Loader.php:955
|
88 |
+
#: includes/Loader.php:1029 includes/B2S/RePost/Item.php:25
|
89 |
#: views/b2s/html/sidebar.php:137
|
90 |
msgid "Settings"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: includes/Loader.php:821
|
94 |
msgid "Support"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:19
|
98 |
msgid "Notifications"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:17
|
102 |
#: views/b2s/html/sidebar.php:125
|
103 |
msgid "Shared Posts"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:14
|
107 |
#: views/b2s/html/sidebar.php:119
|
108 |
msgid "Instant Sharing"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:10
|
112 |
#: views/b2s/html/post.navbar.php:12 views/b2s/html/sidebar.php:94
|
113 |
#: views/b2s/html/sidebar.php:116
|
114 |
msgid "Drafts"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:15
|
118 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
119 |
msgid "Scheduled Posts"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: includes/Loader.php:871
|
123 |
msgid "Social Media Post Drafts"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:9
|
127 |
#: views/b2s/html/sidebar.php:113
|
128 |
msgid "Favorites"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/Loader.php:871 views/b2s/settings.php:35
|
132 |
#: views/b2s/html/sidebar.php:75
|
133 |
msgid "Auto-Post"
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: includes/Loader.php:871 views/b2s/html/post.navbar.php:18
|
137 |
#: views/b2s/html/sidebar.php:72
|
138 |
msgid "Re-Share Posts"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: includes/Loader.php:871 views/b2s/curation.php:47 views/b2s/support.php:19
|
142 |
#: views/b2s/support.php:22
|
143 |
msgid "NEW"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/Loader.php:872 includes/B2S/AutoPost/Item.php:250
|
147 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:151
|
148 |
#: includes/B2S/Network/Item.php:154 includes/B2S/Network/Item.php:156
|
149 |
+
#: includes/B2S/Network/Item.php:224 includes/B2S/Network/Item.php:619
|
150 |
#: includes/B2S/Ship/Portale.php:38 includes/B2S/Ship/Portale.php:40
|
151 |
#: includes/B2S/Ship/Portale.php:43 includes/B2S/Ship/Portale.php:45
|
152 |
msgid "Profile"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/Loader.php:872 includes/B2S/AutoPost/Item.php:250
|
156 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:161
|
157 |
+
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:294
|
158 |
+
#: includes/B2S/Network/Item.php:621 includes/B2S/Ship/Portale.php:35
|
159 |
#: includes/B2S/Ship/Portale.php:35
|
160 |
msgid "Page"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/Loader.php:872 includes/B2S/Network/Item.php:164
|
164 |
+
#: includes/B2S/Network/Item.php:361 includes/B2S/Network/Item.php:624
|
165 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
166 |
msgid "Group"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/Loader.php:873
|
170 |
+
msgid "Company-Page (Employer Branding Profile)"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/Loader.php:873
|
174 |
msgid "Business"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/Loader.php:874
|
178 |
#, php-format
|
179 |
msgid ""
|
180 |
"The network could not publish your post. Please see <a target=\"_blank\" "
|
181 |
"href=\"%s\">FAQ</a>"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: includes/Loader.php:875
|
185 |
msgid ""
|
186 |
"Your authorization has expired. Please reconnect your account in the "
|
187 |
"Blog2Social network settings."
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: includes/Loader.php:876
|
191 |
msgid "The network has marked the post as spam or abusive."
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/Loader.php:877
|
195 |
msgid ""
|
196 |
"We don't have the permission to publish your post. Please check your "
|
197 |
"authorization."
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: includes/Loader.php:878
|
201 |
#, php-format
|
202 |
msgid ""
|
203 |
"Your authorization is interrupted. Please check your authorization. Please "
|
204 |
"see <a target=\"_blank\" href=\"%s\">FAQ</a>"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/Loader.php:879
|
208 |
msgid "Your daily limit has been reached."
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/Loader.php:880
|
212 |
msgid ""
|
213 |
"Your post could not be posted, because your image is not available or the "
|
214 |
"image source does not allow to publish"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/Loader.php:881
|
218 |
#, php-format
|
219 |
msgid ""
|
220 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
221 |
"href=\"%s\">FAQ</a>"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/Loader.php:882
|
225 |
#, php-format
|
226 |
msgid ""
|
227 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"%s\">"
|
228 |
"FAQ</a>"
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: includes/Loader.php:883
|
232 |
msgid ""
|
233 |
"Your daily limit for this network has been reached. Please try again later."
|
234 |
msgstr ""
|
235 |
|
236 |
+
#: includes/Loader.php:884
|
237 |
#, php-format
|
238 |
msgid ""
|
239 |
"The network can not publish special characters such as Emoji. Please see <a "
|
240 |
"target=\"_blank\" href=\"%s\">FAQ</a>"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/Loader.php:885
|
244 |
msgid "Your post is a duplicate."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: includes/Loader.php:886
|
248 |
msgid "The network requires a public url."
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: includes/Loader.php:887
|
252 |
msgid ""
|
253 |
"Your blog post was not available for the network at the time of publication."
|
254 |
msgstr ""
|
255 |
|
256 |
+
#: includes/Loader.php:888
|
257 |
msgid "You have already retweeted this post."
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/Loader.php:889
|
261 |
msgid ""
|
262 |
"This XING API is no longer supported by XING. Please connect your XING "
|
263 |
"accounts with the new XING interface to reschedule your posts."
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/Loader.php:890
|
267 |
msgid "An image is required to post on this social network."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/Loader.php:891
|
271 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/Loader.php:892
|
275 |
msgid ""
|
276 |
"Your post could not be posted, because your image can not be processed by "
|
277 |
"the network."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: includes/Loader.php:893
|
281 |
#, php-format
|
282 |
msgid ""
|
283 |
"Instagram published your post without text. Please see <a target=\"_blank\" "
|
284 |
"href=\"%s\">FAQ</a>"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/Loader.php:894
|
288 |
msgid "Your group can not be found by the network."
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/Loader.php:950 includes/Loader.php:995
|
292 |
msgid "Dashboard"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/Loader.php:951
|
296 |
msgid "Share Website & Blog Content"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/Loader.php:951 includes/Loader.php:1002
|
300 |
msgid "Site & Blog Content"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/Loader.php:952
|
304 |
msgid "Create Social Media Posts"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/Loader.php:952 includes/Loader.php:1009
|
308 |
msgid "Social Media Posts"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/Loader.php:953 includes/Loader.php:1016 views/b2s/dashboard.php:30
|
312 |
#: views/b2s/html/post.navbar.php:20 views/b2s/html/sidebar.php:128
|
313 |
msgid "Calendar"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/Loader.php:954 includes/Loader.php:1023
|
317 |
msgid "Networks"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/Loader.php:957 includes/Loader.php:1037
|
321 |
msgid "PR-Service"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/Loader.php:959 includes/Loader.php:1045
|
325 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
326 |
#: views/b2s/html/sidebar.ship.php:66
|
327 |
msgid "Help & Support"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/Loader.php:961
|
331 |
msgid "Premium"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/Loader.php:961 includes/Loader.php:1053
|
335 |
msgid "PREMIUM"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: includes/Loader.php:986 views/b2s/html/sidebar.php:25
|
339 |
#: views/b2s/html/sidebar.ship.php:24
|
340 |
msgid "Blog2Social"
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: includes/Loader.php:1552
|
344 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/Loader.php:1552 includes/System.php:32 includes/System.php:38
|
348 |
#, php-format
|
349 |
msgid ""
|
350 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
351 |
"our FAQ</a>"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: includes/Loader.php:1552 includes/Loader.php:1573 includes/Loader.php:1823
|
355 |
msgid "or"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: includes/Loader.php:1552 includes/Loader.php:1573 includes/Loader.php:1823
|
359 |
msgid "back to install plugins"
|
360 |
msgstr ""
|
361 |
|
395 |
"higher, or ask your server administrator to do it for you."
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: includes/Tools.php:304 views/b2s/html/sidebar.php:30
|
399 |
#: views/b2s/html/sidebar.ship.php:29
|
400 |
msgid "License"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/Tools.php:319
|
404 |
msgid "Greece"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: includes/Tools.php:320
|
408 |
msgid "India"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: includes/Tools.php:321
|
412 |
msgid "United States of America"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/Tools.php:322
|
416 |
msgid "Ireland"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/Tools.php:323
|
420 |
msgid "Italy"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/Tools.php:324
|
424 |
msgid "Switzerland"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: includes/Tools.php:325
|
428 |
msgid "Czechoslovakia"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: includes/Tools.php:326
|
432 |
msgid "Indonesia"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/Tools.php:327
|
436 |
msgid "Spain"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: includes/Tools.php:328
|
440 |
msgid "Canada"
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: includes/Tools.php:329
|
444 |
msgid "Great Britain"
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: includes/Tools.php:330
|
448 |
msgid "Russia"
|
449 |
msgstr ""
|
450 |
|
451 |
+
#: includes/Tools.php:331
|
452 |
msgid "Netherlands"
|
453 |
msgstr ""
|
454 |
|
455 |
+
#: includes/Tools.php:332 includes/Tools.php:346
|
456 |
msgid "Portugal"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: includes/Tools.php:333
|
460 |
msgid "Norway"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: includes/Tools.php:334
|
464 |
msgid "Turkey"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: includes/Tools.php:335
|
468 |
msgid "Australia"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: includes/Tools.php:336
|
472 |
msgid "Austria"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: includes/Tools.php:337
|
476 |
msgid "Poland"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: includes/Tools.php:338
|
480 |
msgid "France"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: includes/Tools.php:339
|
484 |
msgid "Romania"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: includes/Tools.php:340
|
488 |
msgid "Germany"
|
489 |
msgstr ""
|
490 |
|
491 |
+
#: includes/Tools.php:341
|
492 |
msgid "Denmark"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: includes/Tools.php:342
|
496 |
msgid "New Zealand"
|
497 |
msgstr ""
|
498 |
|
499 |
+
#: includes/Tools.php:343
|
500 |
msgid "Finland"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: includes/Tools.php:344
|
504 |
msgid "Hungary"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: includes/Tools.php:345
|
508 |
msgid "Japan"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: includes/Tools.php:347
|
512 |
msgid "Argentina"
|
513 |
msgstr ""
|
514 |
|
515 |
+
#: includes/Tools.php:348
|
516 |
msgid "Korea"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: includes/Tools.php:349
|
520 |
msgid "Sweden"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: includes/Tools.php:350
|
524 |
msgid "Mexico"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: includes/Tools.php:351
|
528 |
msgid "Slovakia"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: includes/Tools.php:352
|
532 |
msgid "Chile"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/Tools.php:353
|
536 |
msgid "Colombia"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: includes/Tools.php:354
|
540 |
msgid "South Africa"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: includes/Tools.php:355
|
544 |
msgid "Philippines"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/Tools.php:358
|
548 |
msgid "is determined automatically"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/Tools.php:365
|
552 |
msgid "Search"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: includes/Tools.php:366
|
556 |
msgid "Recently Used"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: includes/Tools.php:367
|
560 |
msgid "Smileys & People"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: includes/Tools.php:368
|
564 |
msgid "Animals & Nature"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/Tools.php:369
|
568 |
msgid "Food & Drink"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: includes/Tools.php:370
|
572 |
msgid "Activities"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: includes/Tools.php:371
|
576 |
msgid "Travel & Places"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: includes/Tools.php:372
|
580 |
msgid "Objects"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: includes/Tools.php:373
|
584 |
msgid "Symbols"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: includes/Tools.php:374
|
588 |
msgid "Flags"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: includes/Tools.php:375
|
592 |
msgid "No emojis found"
|
593 |
msgstr ""
|
594 |
|
630 |
msgid "Please contact our support!"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: includes/Ajax/Post.php:1874 views/b2s/network.php:7
|
634 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
635 |
+
#: includes/B2S/Network/Item.php:359 includes/B2S/Network/Item.php:485
|
636 |
msgid "Unknown username"
|
637 |
msgstr ""
|
638 |
|
639 |
+
#: includes/Ajax/Post.php:1875 includes/B2S/Network/Item.php:486
|
640 |
#: includes/B2S/Post/Item.php:521 includes/B2S/Post/Item.php:541
|
641 |
+
#: includes/B2S/Post/Item.php:845 includes/B2S/Post/Item.php:903
|
642 |
+
#: includes/B2S/Settings/Item.php:90 includes/B2S/Ship/Item.php:1124
|
643 |
+
#: includes/B2S/Ship/Item.php:1274
|
644 |
msgid "delete"
|
645 |
msgstr ""
|
646 |
|
687 |
#: includes/B2S/AutoPost/Item.php:108 includes/B2S/AutoPost/Item.php:205
|
688 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:178
|
689 |
#: includes/B2S/RePost/Item.php:145 includes/B2S/RePost/Item.php:166
|
690 |
+
#: includes/B2S/Ship/Item.php:1088
|
691 |
msgid "Info"
|
692 |
msgstr ""
|
693 |
|
727 |
msgid "enable Auto-Posting"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:389
|
731 |
msgid "show calendar"
|
732 |
msgstr ""
|
733 |
|
1089 |
#: views/b2s/curation.php:49 views/b2s/network.php:230 views/b2s/ship.php:23
|
1090 |
#: includes/B2S/AutoPost/Item.php:31 includes/B2S/Curation/View.php:56
|
1091 |
#: includes/B2S/Network/Item.php:168 includes/B2S/Network/Item.php:262
|
1092 |
+
#: includes/B2S/Network/Item.php:332 includes/B2S/Network/Item.php:394
|
1093 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:159
|
1094 |
+
#: includes/B2S/Ship/Image.php:85 includes/B2S/Ship/Item.php:1147
|
1095 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/post.navbar.php:18
|
1096 |
#: views/b2s/html/post.navbar.php:20 views/b2s/partials/post-edit-modal.php:9
|
1097 |
#: views/b2s/widgets/posts.php:18
|
1118 |
msgid "continue"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: views/b2s/curation.php:93 includes/B2S/Ship/Item.php:457
|
1122 |
+
#: includes/B2S/Ship/Item.php:479 includes/B2S/Ship/Item.php:486
|
1123 |
+
#: includes/B2S/Ship/Item.php:493 includes/B2S/Ship/Item.php:517
|
1124 |
+
#: includes/B2S/Ship/Item.php:540 includes/B2S/Ship/Item.php:547
|
1125 |
+
#: includes/B2S/Ship/Item.php:554 includes/B2S/Ship/Item.php:577
|
1126 |
+
#: includes/B2S/Ship/Item.php:606 includes/B2S/Ship/Item.php:635
|
1127 |
+
#: includes/B2S/Ship/Item.php:663 includes/B2S/Ship/Item.php:706
|
1128 |
+
#: includes/B2S/Ship/Item.php:727 includes/B2S/Ship/Item.php:734
|
1129 |
+
#: includes/B2S/Ship/Item.php:741 includes/B2S/Ship/Item.php:761
|
1130 |
+
#: includes/B2S/Ship/Item.php:781 includes/B2S/Ship/Item.php:788
|
1131 |
+
#: includes/B2S/Ship/Item.php:795 includes/B2S/Ship/Item.php:812
|
1132 |
+
#: includes/B2S/Ship/Item.php:833 includes/B2S/Ship/Item.php:854
|
1133 |
+
#: includes/B2S/Ship/Item.php:875 includes/B2S/Ship/Item.php:896
|
1134 |
+
#: includes/B2S/Ship/Item.php:940
|
1135 |
msgid "Change image"
|
1136 |
msgstr ""
|
1137 |
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: views/b2s/curation.php:160 views/b2s/post.calendar.php:271
|
1179 |
+
#: views/b2s/ship.php:408 includes/B2S/Ship/Item.php:1148
|
1180 |
msgid "Schedule for specific dates"
|
1181 |
msgstr ""
|
1182 |
|
1278 |
|
1279 |
#: views/b2s/network.php:35 includes/B2S/Network/Item.php:156
|
1280 |
#: includes/B2S/Network/Item.php:161 includes/B2S/Network/Item.php:165
|
1281 |
+
#: includes/B2S/Ship/Image.php:92 includes/B2S/Ship/Item.php:496
|
1282 |
+
#: includes/B2S/Ship/Item.php:557 includes/B2S/Ship/Item.php:744
|
1283 |
+
#: includes/B2S/Ship/Item.php:798 includes/B2S/Ship/Portale.php:32
|
1284 |
#: includes/B2S/Ship/Portale.php:35 includes/B2S/Ship/Portale.php:45
|
1285 |
msgid "PRO"
|
1286 |
msgstr ""
|
1331 |
msgstr ""
|
1332 |
|
1333 |
#: views/b2s/network.php:130 views/b2s/premium.php:36 views/b2s/ship.php:494
|
1334 |
+
#: includes/B2S/Ship/Item.php:1186 views/b2s/partials/post-edit-modal.php:48
|
1335 |
msgid "Learn more"
|
1336 |
msgstr ""
|
1337 |
|
1399 |
msgstr ""
|
1400 |
|
1401 |
#: views/b2s/network.php:242 views/b2s/settings.php:49
|
1402 |
+
#: includes/B2S/Network/Item.php:546 includes/B2S/Settings/Item.php:133
|
1403 |
msgid "save"
|
1404 |
msgstr ""
|
1405 |
|
1466 |
msgid "The name of the post author."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: views/b2s/network.php:318 includes/B2S/Network/Item.php:768
|
1470 |
msgid "Character limit"
|
1471 |
msgstr ""
|
1472 |
|
1685 |
msgid "Upgrade to Blog2Social Business"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: views/b2s/network.php:518 includes/B2S/Network/Item.php:516
|
1689 |
#, php-format
|
1690 |
msgid ""
|
1691 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1753 |
msgstr ""
|
1754 |
|
1755 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1756 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:698
|
1757 |
+
#: includes/B2S/Network/Item.php:701 includes/B2S/Settings/Item.php:239
|
1758 |
#: views/b2s/html/footer.php:177
|
1759 |
msgid "Image with frame"
|
1760 |
msgstr ""
|
1761 |
|
1762 |
#: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
|
1763 |
+
#: views/b2s/repost.php:73 includes/B2S/Network/Item.php:699
|
1764 |
+
#: includes/B2S/Network/Item.php:702 includes/B2S/Settings/Item.php:253
|
1765 |
#: views/b2s/html/footer.php:182
|
1766 |
msgid "Image cut out"
|
1767 |
msgstr ""
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:715
|
1963 |
+
#: includes/B2S/Post/Item.php:868
|
1964 |
msgid "Auto-Posting"
|
1965 |
msgstr ""
|
1966 |
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
2737 |
+
#: includes/B2S/RePost/Item.php:196 includes/B2S/Ship/Item.php:1256
|
2738 |
#: views/b2s/partials/post-edit-modal.php:62
|
2739 |
#: views/b2s/partials/post-edit-modal.php:65
|
2740 |
msgid "Date"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
#: includes/B2S/Network/Item.php:149 includes/B2S/Network/Item.php:224
|
2768 |
+
#: includes/B2S/Ship/Item.php:327 includes/B2S/Ship/Navbar.php:86
|
2769 |
#: includes/B2S/Ship/Portale.php:38
|
2770 |
msgid "Blog"
|
2771 |
msgstr ""
|
2783 |
msgid "You want to connect a network page?"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: includes/B2S/Network/Item.php:164 includes/B2S/Network/Item.php:361
|
2787 |
#: includes/B2S/Ship/Portale.php:31
|
2788 |
msgid "Publication"
|
2789 |
msgstr ""
|
2797 |
msgstr ""
|
2798 |
|
2799 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
2800 |
+
#: includes/B2S/Network/Item.php:352
|
2801 |
msgid "To reactivate this connection,"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
#: includes/B2S/Network/Item.php:215 includes/B2S/Network/Item.php:281
|
2805 |
+
#: includes/B2S/Network/Item.php:352 includes/B2S/Ship/Image.php:31
|
2806 |
msgid "please upgrade"
|
2807 |
msgstr ""
|
2808 |
|
2809 |
#: includes/B2S/Network/Item.php:218 includes/B2S/Network/Item.php:284
|
2810 |
+
#: includes/B2S/Network/Item.php:355
|
2811 |
msgid "Authorization is interrupted since"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
#: includes/B2S/Network/Item.php:222 includes/B2S/Network/Item.php:288
|
2815 |
+
#: includes/B2S/Network/Item.php:359
|
2816 |
msgid "Assigned by"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: includes/B2S/Network/Item.php:260 includes/B2S/Network/Item.php:330
|
2820 |
+
#: includes/B2S/Network/Item.php:392 includes/B2S/Ship/Item.php:1204
|
2821 |
msgid "Days"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: includes/B2S/Network/Item.php:291 includes/B2S/Network/Item.php:796
|
2825 |
+
#, php-format
|
2826 |
+
msgid ""
|
2827 |
+
"Company-Page (Employer Branding Profile, <a href=\"%s\" target=\"_blank\">"
|
2828 |
+
"Old Design until 2020/11/30</a>)"
|
2829 |
+
msgstr ""
|
2830 |
+
|
2831 |
+
#: includes/B2S/Network/Item.php:292 includes/B2S/Network/Item.php:797
|
2832 |
+
msgid "Company-Page (Employer Branding Profile, New Design)"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: includes/B2S/Network/Item.php:473
|
2836 |
msgid "Connection currently assigned to"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: includes/B2S/Network/Item.php:518 views/prg/html/form.php:84
|
2840 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
2841 |
#: views/prg/html/form.php:163
|
2842 |
msgid "Name"
|
2843 |
msgstr ""
|
2844 |
|
2845 |
+
#: includes/B2S/Network/Item.php:519
|
2846 |
msgid "Value"
|
2847 |
msgstr ""
|
2848 |
|
2849 |
+
#: includes/B2S/Network/Item.php:543
|
2850 |
msgid "+ add Parameter"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
+
#: includes/B2S/Network/Item.php:544
|
2854 |
#, php-format
|
2855 |
msgid "Apply for all %s connections"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: includes/B2S/Network/Item.php:545
|
2859 |
msgid "Apply for all connections"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: includes/B2S/Network/Item.php:566
|
2863 |
msgid "Successfully saved"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: includes/B2S/Network/Item.php:567
|
2867 |
msgid "Failed to save"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: includes/B2S/Network/Item.php:568
|
2871 |
msgid "Failed to load the default template"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: includes/B2S/Network/Item.php:608
|
2875 |
msgid ""
|
2876 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
2877 |
"templates that will automatically pre-format the structure of your social "
|
2882 |
"or slogans) to your post templates."
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: includes/B2S/Network/Item.php:609
|
2886 |
msgid "Upgrade to Blog2Social Smart"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: includes/B2S/Network/Item.php:630
|
2890 |
msgid "Activate Instant Caching"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: includes/B2S/Network/Item.php:691
|
2894 |
msgid "Format"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: includes/B2S/Network/Item.php:692 includes/B2S/Network/Item.php:713
|
2898 |
msgid "Load default settings"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: includes/B2S/Network/Item.php:698 includes/B2S/Network/Item.php:701
|
2902 |
+
#: includes/B2S/Ship/Item.php:956 includes/B2S/Ship/Item.php:958
|
2903 |
msgid "Link"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: includes/B2S/Network/Item.php:699 includes/B2S/Network/Item.php:702
|
2907 |
msgid "Image"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: includes/B2S/Network/Item.php:711 includes/B2S/Settings/Item.php:64
|
2911 |
msgid "Content"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: includes/B2S/Network/Item.php:720 includes/B2S/Ship/Item.php:368
|
2915 |
msgid ""
|
2916 |
"Instagram supports up to 30 hashtags. Please reduce the number of hashtags "
|
2917 |
"in your post."
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: includes/B2S/Network/Item.php:732
|
2921 |
msgid "clear"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: includes/B2S/Network/Item.php:742
|
2925 |
msgid "The link will be added automatically at the end of the post."
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: includes/B2S/Network/Item.php:747 includes/B2S/Network/Item.php:788
|
2929 |
+
#: includes/B2S/Network/Item.php:827
|
2930 |
msgid "Network limit"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: includes/B2S/Network/Item.php:747 includes/B2S/Network/Item.php:788
|
2934 |
+
#: includes/B2S/Network/Item.php:788 includes/B2S/Network/Item.php:827
|
2935 |
+
#: includes/B2S/Network/Item.php:827 includes/B2S/Ship/Item.php:212
|
2936 |
+
#: includes/B2S/Ship/Item.php:216 includes/B2S/Ship/Item.php:258
|
2937 |
+
#: includes/B2S/Ship/Item.php:262 includes/B2S/Ship/Item.php:295
|
2938 |
+
#: includes/B2S/Ship/Item.php:299 includes/B2S/Ship/Item.php:1283
|
2939 |
+
#: includes/B2S/Ship/Item.php:1285
|
2940 |
msgid "characters"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: includes/B2S/Network/Item.php:754
|
2944 |
msgid "Add a link-URL to the end of my image post."
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: includes/B2S/Network/Item.php:761
|
2948 |
msgid ""
|
2949 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
2950 |
"Instagram does not turn link-URLs into clickable links)"
|
2951 |
msgstr ""
|
2952 |
|
2953 |
+
#: includes/B2S/Network/Item.php:788 includes/B2S/Network/Item.php:827
|
2954 |
msgid "recommended length"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: includes/B2S/Network/Item.php:853 includes/B2S/Network/Item.php:905
|
2958 |
+
#: includes/B2S/Network/Item.php:974 includes/B2S/Network/Item.php:1026
|
2959 |
+
#: includes/B2S/Network/Item.php:1060 includes/B2S/Network/Item.php:1111
|
2960 |
+
#: includes/B2S/Network/Item.php:1141 includes/B2S/Network/Item.php:1195
|
2961 |
+
#: includes/B2S/Network/Item.php:1214 includes/B2S/Network/Item.php:1248
|
2962 |
+
#: includes/B2S/Network/Item.php:1264 includes/B2S/Network/Item.php:1280
|
2963 |
+
#: includes/B2S/Network/Item.php:1296 includes/B2S/Network/Item.php:1312
|
2964 |
+
#: includes/B2S/Network/Item.php:1331
|
2965 |
msgid "Preview"
|
2966 |
msgstr ""
|
2967 |
|
3126 |
msgid "last saved"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:868
|
3130 |
#: includes/B2S/Ship/Save.php:448
|
3131 |
msgid "Retweet"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: includes/B2S/Post/Item.php:715 includes/B2S/Post/Item.php:868
|
3135 |
msgid "Re-Share"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: includes/B2S/Post/Item.php:721 includes/B2S/Post/Item.php:803
|
3139 |
+
#: includes/B2S/Post/Item.php:874 includes/B2S/RePost/Item.php:130
|
3140 |
msgid "select all"
|
3141 |
msgstr ""
|
3142 |
|
3162 |
msgid "shared by %s"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: includes/B2S/Post/Item.php:758 includes/B2S/Post/Item.php:783
|
3166 |
msgid "You want to delete a publish post entry?"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: includes/B2S/Post/Item.php:759 includes/B2S/Post/Item.php:784
|
3170 |
msgid "delete from reporting"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: includes/B2S/Post/Item.php:806
|
3174 |
#, php-format
|
3175 |
msgid "is waiting to shared by %s"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: includes/B2S/Post/Item.php:836 includes/B2S/Ship/Save.php:429
|
3179 |
msgid "share"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: includes/B2S/Post/Item.php:844
|
3183 |
msgid "You want to delete your Social Media post?"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: includes/B2S/Post/Item.php:887
|
3187 |
#, php-format
|
3188 |
msgid "last modified by %s"
|
3189 |
msgstr ""
|
3190 |
|
3191 |
+
#: includes/B2S/Post/Item.php:889
|
3192 |
msgid "is currently being processed by the network"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
+
#: includes/B2S/Post/Item.php:894
|
3196 |
#, php-format
|
3197 |
msgid "scheduled by %s"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: includes/B2S/Post/Item.php:899
|
3201 |
msgid "You want to edit your scheduled post?"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: includes/B2S/Post/Item.php:900
|
3205 |
msgid "edit"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: includes/B2S/Post/Item.php:912
|
3209 |
msgid "delete scheduling"
|
3210 |
msgstr ""
|
3211 |
|
3260 |
msgid "on"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/B2S/RePost/Item.php:72 includes/B2S/Ship/Item.php:1262
|
3264 |
msgid "Mon"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
+
#: includes/B2S/RePost/Item.php:73 includes/B2S/Ship/Item.php:1263
|
3268 |
msgid "Tue"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: includes/B2S/RePost/Item.php:74 includes/B2S/Ship/Item.php:1264
|
3272 |
msgid "Wed"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1265
|
3276 |
msgid "Thu"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1266
|
3280 |
msgid "Fri"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1267
|
3284 |
msgid "Sat"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1268
|
3288 |
msgid "Sun"
|
3289 |
msgstr ""
|
3290 |
|
3357 |
msgstr ""
|
3358 |
|
3359 |
#: includes/B2S/Settings/Item.php:50 includes/B2S/Settings/Item.php:76
|
3360 |
+
#: includes/B2S/Ship/Item.php:1106
|
3361 |
msgid "Account"
|
3362 |
msgstr ""
|
3363 |
|
3634 |
msgid "Apply image for this image gallery"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: includes/B2S/Ship/Item.php:159
|
3638 |
msgid "Network does not support image for profiles"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
+
#: includes/B2S/Ship/Item.php:160 includes/B2S/Ship/Item.php:228
|
3642 |
msgid "Network defines image by link"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: includes/B2S/Ship/Item.php:162
|
3646 |
msgid "Supported HTML tags"
|
3647 |
msgstr ""
|
3648 |
|
3649 |
+
#: includes/B2S/Ship/Item.php:163 includes/B2S/Ship/Item.php:227
|
3650 |
msgid "Network does not support emojis"
|
3651 |
msgstr ""
|
3652 |
|
3653 |
+
#: includes/B2S/Ship/Item.php:164 includes/B2S/Ship/Item.php:229
|
3654 |
msgid "Network does not support GIFs"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: includes/B2S/Ship/Item.php:211
|
3658 |
msgid "Text only"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: includes/B2S/Ship/Item.php:226
|
3662 |
msgid "Network does not support image for pages"
|
3663 |
msgstr ""
|
3664 |
|
3665 |
+
#: includes/B2S/Ship/Item.php:319
|
3666 |
msgid "Connection expires on 31 March 2019"
|
3667 |
msgstr ""
|
3668 |
|
3669 |
+
#: includes/B2S/Ship/Item.php:323
|
3670 |
msgid "Connection expires on 2 April 2019"
|
3671 |
msgstr ""
|
3672 |
|
3673 |
+
#: includes/B2S/Ship/Item.php:336
|
3674 |
msgid "post format"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: includes/B2S/Ship/Item.php:351 includes/B2S/Ship/Item.php:1291
|
3678 |
msgid "Insert full-text"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: includes/B2S/Ship/Item.php:353 includes/B2S/Ship/Item.php:1293
|
3682 |
msgid "Delete text"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: includes/B2S/Ship/Item.php:360 includes/B2S/Ship/Item.php:755
|
3686 |
+
#: includes/B2S/Ship/Item.php:1157
|
3687 |
msgid ""
|
3688 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3689 |
"allowed to post identical or substantially similar content to multiple "
|
3690 |
"accounts or multiple duplicate updates on one account."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#: includes/B2S/Ship/Item.php:360 includes/B2S/Ship/Item.php:755
|
3694 |
+
#: includes/B2S/Ship/Item.php:1157
|
3695 |
msgid ""
|
3696 |
"Violating these rules can result in Twitter suspending your account. Always "
|
3697 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
3698 |
"duplicate posts."
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: includes/B2S/Ship/Item.php:360 includes/B2S/Ship/Item.php:755
|
3702 |
+
#: includes/B2S/Ship/Item.php:1157
|
3703 |
msgid "Learn more about this"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: includes/B2S/Ship/Item.php:364
|
3707 |
msgid ""
|
3708 |
"Please note: XING allows identical posts to be published only once within a "
|
3709 |
"group and no more than three times across different groups."
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: includes/B2S/Ship/Item.php:364
|
3713 |
msgid "Read more"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: includes/B2S/Ship/Item.php:369
|
3717 |
msgid ""
|
3718 |
"Please keep in mind that users are not allowed to post identical or "
|
3719 |
"substantially similar content to multiple accounts or multiple duplicate "
|
3720 |
"updates on one account."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: includes/B2S/Ship/Item.php:369
|
3724 |
msgid ""
|
3725 |
"Violating these rules can result in suspending your account. Always vary "
|
3726 |
"your content with different images, comments, hashtags or handles to prevent "
|
3727 |
"duplicate posts."
|
3728 |
msgstr ""
|
3729 |
|
3730 |
+
#: includes/B2S/Ship/Item.php:389
|
3731 |
msgid "hide calendar"
|
3732 |
msgstr ""
|
3733 |
|
3734 |
+
#: includes/B2S/Ship/Item.php:446 includes/B2S/Ship/Item.php:506
|
3735 |
+
#: includes/B2S/Ship/Item.php:566 includes/B2S/Ship/Item.php:595
|
3736 |
+
#: includes/B2S/Ship/Item.php:624 includes/B2S/Ship/Item.php:652
|
3737 |
+
#: includes/B2S/Ship/Item.php:680 includes/B2S/Ship/Item.php:711
|
3738 |
+
#: includes/B2S/Ship/Item.php:766 includes/B2S/Ship/Item.php:817
|
3739 |
+
#: includes/B2S/Ship/Item.php:838 includes/B2S/Ship/Item.php:859
|
3740 |
+
#: includes/B2S/Ship/Item.php:880 includes/B2S/Ship/Item.php:901
|
3741 |
+
#: includes/B2S/Ship/Item.php:911
|
3742 |
msgid "Write something about your post..."
|
3743 |
msgstr ""
|
3744 |
|
3745 |
+
#: includes/B2S/Ship/Item.php:461 includes/B2S/Ship/Item.php:581
|
3746 |
+
#: includes/B2S/Ship/Item.php:611 includes/B2S/Ship/Item.php:639
|
3747 |
+
#: includes/B2S/Ship/Item.php:667
|
3748 |
msgid ""
|
3749 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
3750 |
"network"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: includes/B2S/Ship/Item.php:464 includes/B2S/Ship/Item.php:525
|
3754 |
+
#: includes/B2S/Ship/Item.php:584 includes/B2S/Ship/Item.php:614
|
3755 |
+
#: includes/B2S/Ship/Item.php:642 includes/B2S/Ship/Item.php:670
|
3756 |
msgid ""
|
3757 |
"You want to change your link image, link title and link description for this "
|
3758 |
"network? Click here."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: includes/B2S/Ship/Item.php:466 includes/B2S/Ship/Item.php:586
|
3762 |
+
#: includes/B2S/Ship/Item.php:616 includes/B2S/Ship/Item.php:644
|
3763 |
+
#: includes/B2S/Ship/Item.php:672
|
3764 |
msgid "OG Meta title"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: includes/B2S/Ship/Item.php:467 includes/B2S/Ship/Item.php:587
|
3768 |
+
#: includes/B2S/Ship/Item.php:617 includes/B2S/Ship/Item.php:645
|
3769 |
+
#: includes/B2S/Ship/Item.php:673
|
3770 |
msgid "OG Meta description"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: includes/B2S/Ship/Item.php:496 includes/B2S/Ship/Item.php:557
|
3774 |
+
#: includes/B2S/Ship/Item.php:744 includes/B2S/Ship/Item.php:798
|
3775 |
msgid "Do u want to post multiple images?"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: includes/B2S/Ship/Item.php:520
|
3779 |
msgid ""
|
3780 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3781 |
"Changes may not be immediately visible on Twitter."
|
3782 |
msgstr ""
|
3783 |
|
3784 |
+
#: includes/B2S/Ship/Item.php:522
|
3785 |
msgid ""
|
3786 |
"Info: Change Card Meta tags image, title and description for this network"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: includes/B2S/Ship/Item.php:527
|
3790 |
msgid "Card Meta title"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
+
#: includes/B2S/Ship/Item.php:528
|
3794 |
msgid "Card Meta description"
|
3795 |
msgstr ""
|
3796 |
|
3797 |
+
#: includes/B2S/Ship/Item.php:609
|
3798 |
msgid ""
|
3799 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3800 |
"days. Changes may not be immediately visible on XING."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: includes/B2S/Ship/Item.php:927
|
3804 |
msgid "required"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: includes/B2S/Ship/Item.php:1026
|
3808 |
msgid "Jobs & Projects"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: includes/B2S/Ship/Item.php:1027
|
3812 |
msgid "Events"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: includes/B2S/Ship/Item.php:1028
|
3816 |
msgid "Classified Ads"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: includes/B2S/Ship/Item.php:1030
|
3820 |
msgid "Offer"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: includes/B2S/Ship/Item.php:1031
|
3824 |
msgid "Request"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: includes/B2S/Ship/Item.php:1042
|
3828 |
msgid "The Headline..."
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: includes/B2S/Ship/Item.php:1050
|
3832 |
#, php-format
|
3833 |
msgid "max. %s Tags"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: includes/B2S/Ship/Item.php:1052
|
3837 |
msgid "Hashtags"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: includes/B2S/Ship/Item.php:1088
|
3841 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: includes/B2S/Ship/Item.php:1107 views/b2s/partials/post-edit-modal.php:73
|
3845 |
msgid "Delay"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: includes/B2S/Ship/Item.php:1117 includes/B2S/Ship/Item.php:1118
|
3849 |
+
#: includes/B2S/Ship/Item.php:1119 includes/B2S/Ship/Item.php:1120
|
3850 |
#: views/b2s/partials/post-edit-modal.php:77
|
3851 |
#: views/b2s/partials/post-edit-modal.php:78
|
3852 |
#: views/b2s/partials/post-edit-modal.php:79
|
3854 |
msgid "min"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
+
#: includes/B2S/Ship/Item.php:1125
|
3858 |
msgid "Add Retweet"
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: includes/B2S/Ship/Item.php:1145
|
3862 |
msgid "Share Now"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: includes/B2S/Ship/Item.php:1150
|
3866 |
msgid "Schedule Recurrent Post"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: includes/B2S/Ship/Item.php:1186 views/b2s/partials/post-edit-modal.php:47
|
3870 |
msgid ""
|
3871 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3872 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
3876 |
"the new XING."
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: includes/B2S/Ship/Item.php:1190 views/b2s/partials/post-edit-modal.php:51
|
3880 |
msgid ""
|
3881 |
"Please note: Google will shut down Google+ for all private accounts "
|
3882 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3884 |
"other content here:"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: includes/B2S/Ship/Item.php:1193
|
3888 |
msgid "Repeats"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: includes/B2S/Ship/Item.php:1194 includes/B2S/Ship/Item.php:1197
|
3892 |
msgid "Duration"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: includes/B2S/Ship/Item.php:1198
|
3896 |
msgid "Number of repeats"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: includes/B2S/Ship/Item.php:1199
|
3900 |
msgid "Day of month"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: includes/B2S/Ship/Item.php:1200
|
3904 |
msgid "Repeats every (days)"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: includes/B2S/Ship/Item.php:1202
|
3908 |
msgid "Start date"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: includes/B2S/Ship/Item.php:1203
|
3912 |
msgid "Time to publish"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: includes/B2S/Ship/Item.php:1212
|
3916 |
msgid "weekly"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: includes/B2S/Ship/Item.php:1213
|
3920 |
msgid "monthly"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: includes/B2S/Ship/Item.php:1214
|
3924 |
msgid "own period"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: includes/B2S/Ship/Item.php:1220
|
3928 |
msgid "Week"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: includes/B2S/Ship/Item.php:1220
|
3932 |
msgid "Weeks"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: includes/B2S/Ship/Item.php:1229
|
3936 |
msgid "Month"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: includes/B2S/Ship/Item.php:1229
|
3940 |
msgid "Months"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: includes/B2S/Ship/Item.php:1249
|
3944 |
msgid "End Of Month"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
+
#: includes/B2S/Ship/Item.php:1254
|
3948 |
msgid "Timespan"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: includes/B2S/Ship/Item.php:1257 views/b2s/partials/post-edit-modal.php:63
|
3952 |
#: views/b2s/partials/post-edit-modal.php:66
|
3953 |
msgid "Time"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: includes/B2S/Ship/Item.php:1275
|
3957 |
msgid "add another post"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: includes/B2S/Ship/Item.php:1289
|
3961 |
msgid "Copy from original"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: includes/B2S/Ship/Item.php:1305
|
3965 |
msgid "Apply Settings To All Networks"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
+
#: includes/B2S/Ship/Item.php:1306
|
3969 |
msgid "Save as best time for this network"
|
3970 |
msgstr ""
|
3971 |
|
5030 |
msgid "Contact Details"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
+
#: views/prg/html/form.php:74
|
5034 |
+
msgid "Company"
|
5035 |
+
msgstr ""
|
5036 |
+
|
5037 |
#: views/prg/html/form.php:77
|
5038 |
msgid "Press"
|
5039 |
msgstr ""
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: auto post, auto publish, social media scheduling, social media calendar, s
|
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
Tested up to: 5.5
|
8 |
-
Stable tag: 6.5.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -218,6 +218,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
218 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
219 |
|
220 |
== Changelog ==
|
|
|
|
|
221 |
= 6.5.4 =
|
222 |
Usability Optimization
|
223 |
= 6.5.3 =
|
@@ -296,6 +298,8 @@ Usability Optimization
|
|
296 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
297 |
|
298 |
== Upgrade Notice ==
|
|
|
|
|
299 |
= 6.5.4 =
|
300 |
Usability Optimization
|
301 |
= 6.5.3 =
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
Tested up to: 5.5
|
8 |
+
Stable tag: 6.5.5
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
218 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
219 |
|
220 |
== Changelog ==
|
221 |
+
= 6.5.5 =
|
222 |
+
Usability Optimization
|
223 |
= 6.5.4 =
|
224 |
Usability Optimization
|
225 |
= 6.5.3 =
|
298 |
Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
|
299 |
|
300 |
== Upgrade Notice ==
|
301 |
+
= 6.5.5 =
|
302 |
+
Usability Optimization
|
303 |
= 6.5.4 =
|
304 |
Usability Optimization
|
305 |
= 6.5.3 =
|