Version Description
Usability Optimization
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.8.2 |
Comparing to | |
See all releases |
Code changes from version 6.8.1 to 6.8.2
- assets/css/b2s/curation.css +1 -1
- assets/images/settings/b2s-post-format-24-1-de.png +0 -0
- assets/images/settings/b2s-post-format-24-1-en.png +0 -0
- assets/images/settings/b2s-post-format-24-2-de.png +0 -0
- assets/images/settings/b2s-post-format-24-2-en.png +0 -0
- assets/js/b2s/autopost.js +1 -0
- assets/js/b2s/calendar.js +8 -0
- assets/js/b2s/network.js +1 -1
- assets/js/b2s/post.js +2 -0
- assets/js/b2s/repost.js +2 -0
- assets/js/b2s/settings.js +44 -1
- assets/js/b2s/ship.js +8 -4
- blog2social.php +2 -2
- includes/Ajax/Post.php +22 -5
- includes/B2S/AutoPost.php +12 -2
- includes/B2S/AutoPost/Item.php +22 -2
- includes/B2S/Calendar/Item.php +38 -0
- includes/B2S/Hook/Filter.php +16 -0
- includes/B2S/Network/Item.php +13 -4
- includes/B2S/Post/Item.php +26 -5
- includes/B2S/RePost/Save.php +12 -2
- includes/B2S/Settings/Item.php +15 -2
- includes/B2S/Ship/Item.php +61 -6
- includes/B2S/Ship/Save.php +13 -4
- includes/B2S/Support/Check/System.php +2 -1
- includes/Loader.php +22 -2
- includes/Tools.php +6 -0
- includes/Util.php +7 -2
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +796 -704
- languages/blog2social.pot +763 -699
- readme.txt +5 -1
- views/b2s/curation.php +21 -11
- views/b2s/html/header.php +1 -1
- views/b2s/network.php +7 -0
- views/b2s/post.calendar.php +23 -0
- views/b2s/post.sched.php +5 -0
- views/b2s/repost.php +5 -0
- views/b2s/settings.php +7 -1
- views/b2s/ship.php +5 -0
assets/css/b2s/curation.css
CHANGED
@@ -221,7 +221,7 @@
|
|
221 |
|
222 |
.b2s-network-info-img {
|
223 |
width: 5.5%;
|
224 |
-
margin-left:
|
225 |
}
|
226 |
|
227 |
.b2s-network-info-img-disabled {
|
221 |
|
222 |
.b2s-network-info-img {
|
223 |
width: 5.5%;
|
224 |
+
margin-left: 2px;
|
225 |
}
|
226 |
|
227 |
.b2s-network-info-img-disabled {
|
assets/images/settings/b2s-post-format-24-1-de.png
ADDED
Binary file
|
assets/images/settings/b2s-post-format-24-1-en.png
ADDED
Binary file
|
assets/images/settings/b2s-post-format-24-2-de.png
ADDED
Binary file
|
assets/images/settings/b2s-post-format-24-2-en.png
ADDED
Binary file
|
assets/js/b2s/autopost.js
CHANGED
@@ -6,6 +6,7 @@ jQuery(window).on("load", function () {
|
|
6 |
}
|
7 |
|
8 |
jQuery(".b2s-import-auto-post-type").chosen();
|
|
|
9 |
jQuery(".b2s-auto-post-assign-user").chosen();
|
10 |
|
11 |
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
6 |
}
|
7 |
|
8 |
jQuery(".b2s-import-auto-post-type").chosen();
|
9 |
+
jQuery(".b2s-import-auto-post-categories").chosen();
|
10 |
jQuery(".b2s-auto-post-assign-user").chosen();
|
11 |
|
12 |
jQuery('.b2s-network-item-auth-list[data-network-count="true"]').each(function () {
|
assets/js/b2s/calendar.js
CHANGED
@@ -107,6 +107,12 @@ jQuery(document).ready(function () {
|
|
107 |
} else {
|
108 |
if (calEvent.publish_link != "") {
|
109 |
window.open(calEvent.publish_link, '_blank');
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
}
|
112 |
},
|
@@ -228,6 +234,8 @@ function showEditSchedCalendarPost(b2s_id, post_id, network_auth_id, network_typ
|
|
228 |
if (jQuery('#b2sUserLang').val() == "de") {
|
229 |
dateFormat = "dd.mm.yyyy";
|
230 |
language = "de";
|
|
|
|
|
231 |
showMeridian = false;
|
232 |
}
|
233 |
|
107 |
} else {
|
108 |
if (calEvent.publish_link != "") {
|
109 |
window.open(calEvent.publish_link, '_blank');
|
110 |
+
} else {
|
111 |
+
if(calEvent.errorText != null && calEvent.errorText != "") {
|
112 |
+
console.log(calEvent.errorText);
|
113 |
+
jQuery('.b2s-error-text').html(calEvent.errorText);
|
114 |
+
jQuery('#b2s-show-error-modal').modal('show');
|
115 |
+
}
|
116 |
}
|
117 |
}
|
118 |
},
|
234 |
if (jQuery('#b2sUserLang').val() == "de") {
|
235 |
dateFormat = "dd.mm.yyyy";
|
236 |
language = "de";
|
237 |
+
}
|
238 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
239 |
showMeridian = false;
|
240 |
}
|
241 |
|
assets/js/b2s/network.js
CHANGED
@@ -48,7 +48,7 @@ jQuery(window).on("load", function () {
|
|
48 |
|
49 |
function init() {
|
50 |
var showMeridian = true;
|
51 |
-
if (jQuery('#
|
52 |
showMeridian = false;
|
53 |
}
|
54 |
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
48 |
|
49 |
function init() {
|
50 |
var showMeridian = true;
|
51 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
52 |
showMeridian = false;
|
53 |
}
|
54 |
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
assets/js/b2s/post.js
CHANGED
@@ -735,6 +735,8 @@ function showEditSchedPost(b2s_id, post_id, network_auth_id, network_type, netwo
|
|
735 |
if (jQuery('#b2sUserLang').val() == "de") {
|
736 |
dateFormat = "dd.mm.yyyy";
|
737 |
language = "de";
|
|
|
|
|
738 |
showMeridian = false;
|
739 |
}
|
740 |
|
735 |
if (jQuery('#b2sUserLang').val() == "de") {
|
736 |
dateFormat = "dd.mm.yyyy";
|
737 |
language = "de";
|
738 |
+
}
|
739 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
740 |
showMeridian = false;
|
741 |
}
|
742 |
|
assets/js/b2s/repost.js
CHANGED
@@ -38,6 +38,8 @@ jQuery(window).on("load", function () {
|
|
38 |
if (jQuery('#b2sUserLang').val() == "de") {
|
39 |
dateFormat = "dd.mm.yyyy";
|
40 |
language = "de";
|
|
|
|
|
41 |
showMeridian = false;
|
42 |
}
|
43 |
jQuery('.b2s-re-post-input-time').timepicker({
|
38 |
if (jQuery('#b2sUserLang').val() == "de") {
|
39 |
dateFormat = "dd.mm.yyyy";
|
40 |
language = "de";
|
41 |
+
}
|
42 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
43 |
showMeridian = false;
|
44 |
}
|
45 |
jQuery('.b2s-re-post-input-time').timepicker({
|
assets/js/b2s/settings.js
CHANGED
@@ -2,7 +2,7 @@ jQuery.noConflict();
|
|
2 |
jQuery(window).on("load", function () {
|
3 |
|
4 |
var showMeridian = true;
|
5 |
-
if (jQuery('#
|
6 |
showMeridian = false;
|
7 |
}
|
8 |
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
@@ -453,3 +453,46 @@ jQuery(document).on('click', '.b2sInfoAllowShortcodeModalBtn', function () {
|
|
453 |
jQuery(document).on('click', '.b2sInfoLegacyModeBtn', function () {
|
454 |
jQuery('#b2sInfoLegacyMode').modal('show');
|
455 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
jQuery(window).on("load", function () {
|
3 |
|
4 |
var showMeridian = true;
|
5 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
6 |
showMeridian = false;
|
7 |
}
|
8 |
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
453 |
jQuery(document).on('click', '.b2sInfoLegacyModeBtn', function () {
|
454 |
jQuery('#b2sInfoLegacyMode').modal('show');
|
455 |
});
|
456 |
+
|
457 |
+
jQuery(document).on('change', '.b2s-time-format-toggle', function() {
|
458 |
+
var time_format = 1;
|
459 |
+
if(jQuery(this).is(':checked')) {
|
460 |
+
time_format = 1;
|
461 |
+
} else {
|
462 |
+
time_format = 0;
|
463 |
+
}
|
464 |
+
|
465 |
+
jQuery('.b2s-settings-user-success').hide();
|
466 |
+
jQuery('.b2s-settings-user-error').hide();
|
467 |
+
jQuery(".b2s-loading-area").show();
|
468 |
+
jQuery(".b2s-user-settings-area").hide();
|
469 |
+
jQuery('.b2s-server-connection-fail').hide();
|
470 |
+
jQuery.ajax({
|
471 |
+
url: ajaxurl,
|
472 |
+
type: "POST",
|
473 |
+
dataType: "json",
|
474 |
+
cache: false,
|
475 |
+
data: {
|
476 |
+
'action': 'b2s_user_network_settings',
|
477 |
+
'user_time_format': time_format,
|
478 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
479 |
+
},
|
480 |
+
error: function () {
|
481 |
+
jQuery('.b2s-server-connection-fail').show();
|
482 |
+
return false;
|
483 |
+
},
|
484 |
+
success: function (data) {
|
485 |
+
jQuery(".b2s-loading-area").hide();
|
486 |
+
jQuery(".b2s-user-settings-area").show();
|
487 |
+
if (data.result == true) {
|
488 |
+
jQuery('.b2s-settings-user-success').show();
|
489 |
+
} else {
|
490 |
+
if(data.error == 'nonce') {
|
491 |
+
jQuery('.b2s-nonce-check-fail').show();
|
492 |
+
}
|
493 |
+
jQuery('.b2s-settings-user-error').show();
|
494 |
+
}
|
495 |
+
}
|
496 |
+
});
|
497 |
+
return false;
|
498 |
+
});
|
assets/js/b2s/ship.js
CHANGED
@@ -39,7 +39,7 @@ jQuery(document).on('click', '.btn-toggle-menu', function () {
|
|
39 |
}
|
40 |
});
|
41 |
|
42 |
-
jQuery.sceditor.formats.xhtml.allowedTags = ['h1', 'h2', 'p', 'br', 'i', 'em', 'b', 'a', 'img'];
|
43 |
jQuery.sceditor.command.set(
|
44 |
"h1", {
|
45 |
exec: function () {
|
@@ -896,6 +896,8 @@ jQuery(document).on("click", ".b2s-network-select-btn", function () {
|
|
896 |
if (jQuery('#b2sUserLang').val() == "de") {
|
897 |
dateFormat = "dd.mm.yyyy";
|
898 |
language = "de";
|
|
|
|
|
899 |
showMeridian = false;
|
900 |
}
|
901 |
var today = new Date();
|
@@ -2208,7 +2210,7 @@ jQuery.validator.classRuleSettings.unique = {
|
|
2208 |
unique: true
|
2209 |
};
|
2210 |
jQuery.validator.addMethod("checkTags", function (value, element, test) {
|
2211 |
-
var allowed_tags = ['p', 'h1', 'h2', 'br', 'i', 'em', 'b', 'a', 'img'];
|
2212 |
var tags = value.match(/(<([^>]+)>)/ig);
|
2213 |
if (tags !== null && tags.length > 0) {
|
2214 |
if (jQuery(element).hasClass('b2s-post-item-details-item-message-input-allow-html')) {
|
@@ -2347,7 +2349,7 @@ jQuery('#b2s-network-list-modal').on('show.bs.modal', function (e) {
|
|
2347 |
});
|
2348 |
jQuery(window).on("load", function () {
|
2349 |
var showMeridian = true;
|
2350 |
-
if (jQuery('#
|
2351 |
showMeridian = false;
|
2352 |
}
|
2353 |
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
@@ -2534,6 +2536,8 @@ function init(firstrun) {
|
|
2534 |
if (jQuery('#b2sUserLang').val() == "de") {
|
2535 |
dateFormat = "dd.mm.yyyy";
|
2536 |
language = "de";
|
|
|
|
|
2537 |
showMeridian = false;
|
2538 |
}
|
2539 |
var today = new Date();
|
@@ -2947,7 +2951,7 @@ function releaseChoose(choose, dataNetworkAuthId, dataNetworkCount) {
|
|
2947 |
}
|
2948 |
|
2949 |
var showMeridian = true;
|
2950 |
-
if (jQuery('#
|
2951 |
showMeridian = false;
|
2952 |
}
|
2953 |
|
39 |
}
|
40 |
});
|
41 |
|
42 |
+
jQuery.sceditor.formats.xhtml.allowedTags = ['h1', 'h2', 'p', 'br', 'i', 'em', 'b', 'a', 'img', 'span'];
|
43 |
jQuery.sceditor.command.set(
|
44 |
"h1", {
|
45 |
exec: function () {
|
896 |
if (jQuery('#b2sUserLang').val() == "de") {
|
897 |
dateFormat = "dd.mm.yyyy";
|
898 |
language = "de";
|
899 |
+
}
|
900 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
901 |
showMeridian = false;
|
902 |
}
|
903 |
var today = new Date();
|
2210 |
unique: true
|
2211 |
};
|
2212 |
jQuery.validator.addMethod("checkTags", function (value, element, test) {
|
2213 |
+
var allowed_tags = ['p', 'h1', 'h2', 'br', 'i', 'em', 'b', 'a', 'img', 'span'];
|
2214 |
var tags = value.match(/(<([^>]+)>)/ig);
|
2215 |
if (tags !== null && tags.length > 0) {
|
2216 |
if (jQuery(element).hasClass('b2s-post-item-details-item-message-input-allow-html')) {
|
2349 |
});
|
2350 |
jQuery(window).on("load", function () {
|
2351 |
var showMeridian = true;
|
2352 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
2353 |
showMeridian = false;
|
2354 |
}
|
2355 |
jQuery('.b2s-settings-sched-item-input-time').timepicker({
|
2536 |
if (jQuery('#b2sUserLang').val() == "de") {
|
2537 |
dateFormat = "dd.mm.yyyy";
|
2538 |
language = "de";
|
2539 |
+
}
|
2540 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
2541 |
showMeridian = false;
|
2542 |
}
|
2543 |
var today = new Date();
|
2951 |
}
|
2952 |
|
2953 |
var showMeridian = true;
|
2954 |
+
if (jQuery('#b2sUserTimeFormat').val() == 0) {
|
2955 |
showMeridian = false;
|
2956 |
}
|
2957 |
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 6.8.
|
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.8.2
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '682');
|
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
@@ -181,7 +181,7 @@ class Ajax_Post {
|
|
181 |
if (isset($_POST['profile_data_' . $profilId]) && !empty($_POST['profile_data_' . $profilId])) {
|
182 |
$networkData = json_decode(base64_decode($_POST['profile_data_' . $profilId]));
|
183 |
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
184 |
-
$notAllowNetwork = array(
|
185 |
$tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
186 |
$allowNetworkOnlyImage = array(6, 7, 12, 21);
|
187 |
$allowNetworkOnlyLink = array(9, 15);
|
@@ -190,7 +190,7 @@ class Ajax_Post {
|
|
190 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/QuickPost.php');
|
191 |
$quickPost = new B2S_QuickPost($data['content'], $data['title']);
|
192 |
$defaultShareData = array('default_titel' => sanitize_text_field($data['title']),
|
193 |
-
'image_url' => (!empty($_POST['image_url'])) ? esc_url(trim(urldecode($_POST['image_url']))) : '',
|
194 |
'lang' => trim(strtolower(substr(B2S_LANGUAGE, 0, 2))),
|
195 |
'board' => '',
|
196 |
'group' => '',
|
@@ -212,8 +212,10 @@ class Ajax_Post {
|
|
212 |
//Filter: image network
|
213 |
if ((int) $_POST['postFormat'] == 0) {
|
214 |
if (in_array($value->networkId, $allowNetworkOnlyImage)) {
|
215 |
-
|
216 |
-
|
|
|
|
|
217 |
}
|
218 |
} else if ((int) $_POST['postFormat'] == 1) {
|
219 |
if (in_array($value->networkId, $allowNetworkOnlyLink)) {
|
@@ -854,6 +856,18 @@ class Ajax_Post {
|
|
854 |
echo json_encode(array('result' => true));
|
855 |
wp_die();
|
856 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
857 |
if (isset($_POST['legacy_mode'])) {
|
858 |
$options = new B2S_Options(0, 'B2S_PLUGIN_GENERAL_OPTIONS');
|
859 |
$options->_setOption('legacy_mode', (int) $_POST['legacy_mode']);
|
@@ -879,6 +893,7 @@ class Ajax_Post {
|
|
879 |
//Auto-Poster A
|
880 |
$network_auth_id = isset($_POST['b2s-import-auto-post-network-auth-id']) && is_array($_POST['b2s-import-auto-post-network-auth-id']) ? $_POST['b2s-import-auto-post-network-auth-id'] : array();
|
881 |
$post_type = isset($_POST['b2s-import-auto-post-type-data']) && is_array($_POST['b2s-import-auto-post-type-data']) ? $_POST['b2s-import-auto-post-type-data'] : array();
|
|
|
882 |
|
883 |
$auto_post_import = array('active' => ((isset($_POST['b2s-import-auto-post']) && (int) $_POST['b2s-import-auto-post'] == 1) ? 1 : 0),
|
884 |
'network_auth_id' => $network_auth_id,
|
@@ -886,7 +901,9 @@ class Ajax_Post {
|
|
886 |
'ship_delay_time' => (int) $_POST['b2s-import-auto-post-time-data'],
|
887 |
'post_filter' => ((isset($_POST['b2s-import-auto-post-filter']) && (int) $_POST['b2s-import-auto-post-filter'] == 1) ? 1 : 0),
|
888 |
'post_type_state' => ((isset($_POST['b2s-import-auto-post-type-state']) && (int) $_POST['b2s-import-auto-post-type-state'] == 1) ? 1 : 0),
|
889 |
-
'post_type' => $post_type
|
|
|
|
|
890 |
|
891 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
892 |
$options->_setOption('auto_post_import', $auto_post_import);
|
181 |
if (isset($_POST['profile_data_' . $profilId]) && !empty($_POST['profile_data_' . $profilId])) {
|
182 |
$networkData = json_decode(base64_decode($_POST['profile_data_' . $profilId]));
|
183 |
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
184 |
+
$notAllowNetwork = array(11);
|
185 |
$tosCrossPosting = unserialize(B2S_PLUGIN_NETWORK_CROSSPOSTING_LIMIT);
|
186 |
$allowNetworkOnlyImage = array(6, 7, 12, 21);
|
187 |
$allowNetworkOnlyLink = array(9, 15);
|
190 |
require_once (B2S_PLUGIN_DIR . 'includes/B2S/QuickPost.php');
|
191 |
$quickPost = new B2S_QuickPost($data['content'], $data['title']);
|
192 |
$defaultShareData = array('default_titel' => sanitize_text_field($data['title']),
|
193 |
+
'image_url' => (!empty($_POST['image_url'])) ? esc_url(trim(urldecode($_POST['image_url']))) : ((!empty($_POST['link_image_url']) ? esc_url(trim(urldecode($_POST['link_image_url']))) : '')),
|
194 |
'lang' => trim(strtolower(substr(B2S_LANGUAGE, 0, 2))),
|
195 |
'board' => '',
|
196 |
'group' => '',
|
212 |
//Filter: image network
|
213 |
if ((int) $_POST['postFormat'] == 0) {
|
214 |
if (in_array($value->networkId, $allowNetworkOnlyImage)) {
|
215 |
+
if(empty($defaultShareData['image_url'])) {
|
216 |
+
array_push($content, array('networkDisplayName' => $value->networkUserName, 'networkAuthId' => $value->networkAuthId, 'networkId' => $value->networkId, 'networkType' => $value->networkType, 'html' => $b2sShipSend->getItemHtml($value->networkId, 'IMAGE_FOR_CURATION')));
|
217 |
+
continue;
|
218 |
+
}
|
219 |
}
|
220 |
} else if ((int) $_POST['postFormat'] == 1) {
|
221 |
if (in_array($value->networkId, $allowNetworkOnlyLink)) {
|
856 |
echo json_encode(array('result' => true));
|
857 |
wp_die();
|
858 |
}
|
859 |
+
|
860 |
+
if (isset($_POST['user_time_format']) && (int) $_POST['user_time_format'] >= 0) {
|
861 |
+
$user_time_format = 0;
|
862 |
+
if((int) $_POST['user_time_format'] > 0) {
|
863 |
+
$user_time_format = 1;
|
864 |
+
}
|
865 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
866 |
+
$options->_setOption('user_time_format', (int) $user_time_format);
|
867 |
+
echo json_encode(array('result' => true));
|
868 |
+
wp_die();
|
869 |
+
}
|
870 |
+
|
871 |
if (isset($_POST['legacy_mode'])) {
|
872 |
$options = new B2S_Options(0, 'B2S_PLUGIN_GENERAL_OPTIONS');
|
873 |
$options->_setOption('legacy_mode', (int) $_POST['legacy_mode']);
|
893 |
//Auto-Poster A
|
894 |
$network_auth_id = isset($_POST['b2s-import-auto-post-network-auth-id']) && is_array($_POST['b2s-import-auto-post-network-auth-id']) ? $_POST['b2s-import-auto-post-network-auth-id'] : array();
|
895 |
$post_type = isset($_POST['b2s-import-auto-post-type-data']) && is_array($_POST['b2s-import-auto-post-type-data']) ? $_POST['b2s-import-auto-post-type-data'] : array();
|
896 |
+
$post_categories = isset($_POST['b2s-import-auto-post-categories-data']) && is_array($_POST['b2s-import-auto-post-categories-data']) ? $_POST['b2s-import-auto-post-categories-data'] : array();
|
897 |
|
898 |
$auto_post_import = array('active' => ((isset($_POST['b2s-import-auto-post']) && (int) $_POST['b2s-import-auto-post'] == 1) ? 1 : 0),
|
899 |
'network_auth_id' => $network_auth_id,
|
901 |
'ship_delay_time' => (int) $_POST['b2s-import-auto-post-time-data'],
|
902 |
'post_filter' => ((isset($_POST['b2s-import-auto-post-filter']) && (int) $_POST['b2s-import-auto-post-filter'] == 1) ? 1 : 0),
|
903 |
'post_type_state' => ((isset($_POST['b2s-import-auto-post-type-state']) && (int) $_POST['b2s-import-auto-post-type-state'] == 1) ? 1 : 0),
|
904 |
+
'post_type' => $post_type,
|
905 |
+
'post_categories_state' => ((isset($_POST['b2s-import-auto-post-categories-state']) && (int) $_POST['b2s-import-auto-post-categories-state'] == 1) ? 1 : 0),
|
906 |
+
'post_categories' => $post_categories);
|
907 |
|
908 |
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
909 |
$options->_setOption('auto_post_import', $auto_post_import);
|
includes/B2S/AutoPost.php
CHANGED
@@ -96,6 +96,8 @@ class B2S_AutoPost {
|
|
96 |
if ($networkId == 12 && $this->imageUrl == false) {
|
97 |
return false;
|
98 |
}
|
|
|
|
|
99 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
100 |
|
101 |
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $content_min, (int) $content_max), "\\$");
|
@@ -120,7 +122,6 @@ class B2S_AutoPost {
|
|
120 |
|
121 |
$authorId = get_post_field('post_author', $this->postId);
|
122 |
if (isset($authorId) && !empty($authorId) && (int) $authorId > 0) {
|
123 |
-
$hook_filter = new B2S_Hook_Filter();
|
124 |
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $authorId);
|
125 |
$postData['content'] = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $postData['content']));
|
126 |
} else {
|
@@ -137,6 +138,13 @@ class B2S_AutoPost {
|
|
137 |
}
|
138 |
}
|
139 |
$postData['content'] = preg_replace("/\{PRICE\}/", "", $postData['content']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
|
141 |
if (in_array($networkId, $this->allowHtml)) {
|
142 |
$postData['content'] = preg_replace("/\\n/", "<br>", $postData['content']);
|
@@ -389,7 +397,9 @@ class B2S_AutoPost {
|
|
389 |
'sched_date_utc' => $sched_date_utc,
|
390 |
'network_details_id' => $networkDetailsId,
|
391 |
'post_for_approve' => (int) $shareApprove,
|
392 |
-
'hook_action' => (((int) $shareApprove == 0) ? 1 : 0)
|
|
|
|
|
393 |
$insertId = $wpdb->insert_id;
|
394 |
B2S_Rating::trigger();
|
395 |
return $insertId;
|
96 |
if ($networkId == 12 && $this->imageUrl == false) {
|
97 |
return false;
|
98 |
}
|
99 |
+
$hook_filter = new B2S_Hook_Filter();
|
100 |
+
|
101 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
102 |
|
103 |
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $content_min, (int) $content_max), "\\$");
|
122 |
|
123 |
$authorId = get_post_field('post_author', $this->postId);
|
124 |
if (isset($authorId) && !empty($authorId) && (int) $authorId > 0) {
|
|
|
125 |
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $authorId);
|
126 |
$postData['content'] = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $postData['content']));
|
127 |
} else {
|
138 |
}
|
139 |
}
|
140 |
$postData['content'] = preg_replace("/\{PRICE\}/", "", $postData['content']);
|
141 |
+
|
142 |
+
$taxonomieReplacements = $hook_filter->get_posting_template_set_taxonomies(array(), $this->postId);
|
143 |
+
if(is_array($taxonomieReplacements) && !empty($taxonomieReplacements)) {
|
144 |
+
foreach ($taxonomieReplacements as $taxonomie => $replacement) {
|
145 |
+
$postData['content'] = preg_replace("/\{".$taxonomie."\}/", $replacement, $postData['content']);
|
146 |
+
}
|
147 |
+
}
|
148 |
|
149 |
if (in_array($networkId, $this->allowHtml)) {
|
150 |
$postData['content'] = preg_replace("/\\n/", "<br>", $postData['content']);
|
397 |
'sched_date_utc' => $sched_date_utc,
|
398 |
'network_details_id' => $networkDetailsId,
|
399 |
'post_for_approve' => (int) $shareApprove,
|
400 |
+
'hook_action' => (((int) $shareApprove == 0) ? 1 : 0),
|
401 |
+
'post_format' => (($shareData['post_format'] !== '') ? (((int) $shareData['post_format'] > 0) ? 1 : 0) : null)
|
402 |
+
), array('%d', '%d', '%s', '%s', '%d', '%d', '%s', '%s', '%d', '%d', '%d'));
|
403 |
$insertId = $wpdb->insert_id;
|
404 |
B2S_Rating::trigger();
|
405 |
return $insertId;
|
includes/B2S/AutoPost/Item.php
CHANGED
@@ -4,6 +4,7 @@ class B2S_AutoPost_Item {
|
|
4 |
|
5 |
private $options;
|
6 |
private $postTypesData;
|
|
|
7 |
private $networkAuthData = array();
|
8 |
private $networkAutoPostData;
|
9 |
private $networkAuthCount = false;
|
@@ -12,6 +13,7 @@ class B2S_AutoPost_Item {
|
|
12 |
$this->getSettings();
|
13 |
$this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
14 |
$this->postTypesData = get_post_types(array('public' => true));
|
|
|
15 |
}
|
16 |
|
17 |
private function getSettings() {
|
@@ -282,9 +284,9 @@ class B2S_AutoPost_Item {
|
|
282 |
$html .=' <input id="b2s-import-auto-post-type-state-include" name="b2s-import-auto-post-type-state" value="0" ' . (((isset($data['post_type_state']) && (int) $data['post_type_state'] == 0) || !isset($data['post_type_state'])) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
283 |
$html .='<input id="b2s-import-auto-post-type-state-exclude" name="b2s-import-auto-post-type-state" value="1" ' . ((isset($data['post_type_state']) && (int) $data['post_type_state'] == 1) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
284 |
$html .='</p>';
|
285 |
-
$html .='<select name="b2s-import-auto-post-type-data[]" data-placeholder="Select Post Types" class="b2s-import-auto-post-type" multiple>';
|
286 |
|
287 |
-
$selected = (
|
288 |
|
289 |
foreach ($this->postTypesData as $k => $v) {
|
290 |
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
@@ -294,6 +296,24 @@ class B2S_AutoPost_Item {
|
|
294 |
}
|
295 |
|
296 |
$html .='</select>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
}
|
298 |
return $html;
|
299 |
}
|
4 |
|
5 |
private $options;
|
6 |
private $postTypesData;
|
7 |
+
private $postCategoriesData;
|
8 |
private $networkAuthData = array();
|
9 |
private $networkAutoPostData;
|
10 |
private $networkAuthCount = false;
|
13 |
$this->getSettings();
|
14 |
$this->options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
15 |
$this->postTypesData = get_post_types(array('public' => true));
|
16 |
+
$this->postCategoriesData = get_categories(array('public' => true));
|
17 |
}
|
18 |
|
19 |
private function getSettings() {
|
284 |
$html .=' <input id="b2s-import-auto-post-type-state-include" name="b2s-import-auto-post-type-state" value="0" ' . (((isset($data['post_type_state']) && (int) $data['post_type_state'] == 0) || !isset($data['post_type_state'])) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
285 |
$html .='<input id="b2s-import-auto-post-type-state-exclude" name="b2s-import-auto-post-type-state" value="1" ' . ((isset($data['post_type_state']) && (int) $data['post_type_state'] == 1) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-type-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
286 |
$html .='</p>';
|
287 |
+
$html .='<select name="b2s-import-auto-post-type-data[]" data-placeholder="' . esc_html__('Select Post Types', 'blog2social') . '" class="b2s-import-auto-post-type" multiple>';
|
288 |
|
289 |
+
$selected = (isset($data['post_type']) && is_array($data['post_type'])) ? $data['post_type'] : array();
|
290 |
|
291 |
foreach ($this->postTypesData as $k => $v) {
|
292 |
if ($v != 'attachment' && $v != 'nav_menu_item' && $v != 'revision') {
|
296 |
}
|
297 |
|
298 |
$html .='</select>';
|
299 |
+
|
300 |
+
//Categories
|
301 |
+
$html .='<br>';
|
302 |
+
$html .='<br>';
|
303 |
+
$html .='<p>' . esc_html__('Post Categories', 'blog2social');
|
304 |
+
$html .=' <input id="b2s-import-auto-post-categories-state-include" name="b2s-import-auto-post-categories-state" value="0" ' . (((isset($data['post_categories_state']) && (int) $data['post_categories_state'] == 0) || !isset($data['post_categories_state'])) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-categories-state-include">' . esc_html__('Include (Post only...)', 'blog2social') . '</label> ';
|
305 |
+
$html .='<input id="b2s-import-auto-post-categories-state-exclude" name="b2s-import-auto-post-categories-state" value="1" ' . ((isset($data['post_categories_state']) && (int) $data['post_categories_state'] == 1) ? 'checked' : '') . ' type="radio"><label class="padding-bottom-3" for="b2s-import-auto-post-categories-state-exclude">' . esc_html__('Exclude (Do no post ...)', 'blog2social') . '</label>';
|
306 |
+
$html .='</p>';
|
307 |
+
$html .='<select name="b2s-import-auto-post-categories-data[]" data-placeholder="' . esc_html__('Select Categories', 'blog2social') . '" class="b2s-import-auto-post-categories" multiple>';
|
308 |
+
|
309 |
+
$catSelected = (isset($data['post_categories']) && is_array($data['post_categories'])) ? $data['post_categories'] : array();
|
310 |
+
|
311 |
+
foreach ($this->postCategoriesData as $k => $v) {
|
312 |
+
$selItem = (in_array($v->term_id, $catSelected)) ? 'selected' : '';
|
313 |
+
$html .= '<option ' . $selItem . ' value="' . esc_attr($v->term_id) . '">' . esc_html($v->name) . '</option>';
|
314 |
+
}
|
315 |
+
|
316 |
+
$html .='</select>';
|
317 |
}
|
318 |
return $html;
|
319 |
}
|
includes/B2S/Calendar/Item.php
CHANGED
@@ -29,9 +29,13 @@ class B2S_Calendar_Item {
|
|
29 |
private $relay_delay_min = null;
|
30 |
private $publish_link = null;
|
31 |
private $status = null;
|
|
|
|
|
32 |
private $multi_images = null;
|
|
|
33 |
|
34 |
public function __construct(\StdClass $data = null) {
|
|
|
35 |
if (isset($data)) {
|
36 |
$this
|
37 |
->setSchedData($data->sched_data)
|
@@ -66,6 +70,8 @@ class B2S_Calendar_Item {
|
|
66 |
}
|
67 |
if (isset($data->publish_error_code)) {
|
68 |
$this->setStatus($data->publish_error_code);
|
|
|
|
|
69 |
}
|
70 |
if (isset($data->sched_data)) {
|
71 |
$this->setMultiImages($data->sched_data);
|
@@ -512,6 +518,36 @@ class B2S_Calendar_Item {
|
|
512 |
return $this->status;
|
513 |
}
|
514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
515 |
public function setMultiImages($sched_data = "") {
|
516 |
$multi_images = array();
|
517 |
if (!empty($sched_data)) {
|
@@ -571,6 +607,8 @@ class B2S_Calendar_Item {
|
|
571 |
"user_timezone" => $this->getUserTimezone(),
|
572 |
"profile" => $this->getNetworkDisplayName(),
|
573 |
"status" => $this->getStaus(),
|
|
|
|
|
574 |
"publish_link" => $this->getPublishLink()];
|
575 |
}
|
576 |
|
29 |
private $relay_delay_min = null;
|
30 |
private $publish_link = null;
|
31 |
private $status = null;
|
32 |
+
private $errorCode = null;
|
33 |
+
private $errorText = null;
|
34 |
private $multi_images = null;
|
35 |
+
private $errorTextList = null;
|
36 |
|
37 |
public function __construct(\StdClass $data = null) {
|
38 |
+
$this->errorTextList = unserialize(B2S_PLUGIN_NETWORK_ERROR);
|
39 |
if (isset($data)) {
|
40 |
$this
|
41 |
->setSchedData($data->sched_data)
|
70 |
}
|
71 |
if (isset($data->publish_error_code)) {
|
72 |
$this->setStatus($data->publish_error_code);
|
73 |
+
$this->setErrorCode($data->publish_error_code);
|
74 |
+
$this->setErrorText($data->publish_error_code);
|
75 |
}
|
76 |
if (isset($data->sched_data)) {
|
77 |
$this->setMultiImages($data->sched_data);
|
518 |
return $this->status;
|
519 |
}
|
520 |
|
521 |
+
public function setErrorCode($error = "") {
|
522 |
+
$this->errorCode = $error;
|
523 |
+
return $this;
|
524 |
+
}
|
525 |
+
|
526 |
+
public function getErrorCode() {
|
527 |
+
return $this->errorCode;
|
528 |
+
}
|
529 |
+
|
530 |
+
public function setErrorText($error = "") {
|
531 |
+
if (!empty($error) && isset($this->errorTextList[$error])) {
|
532 |
+
if($this->network_id == 12 && $error == 'DEFAULT') {
|
533 |
+
if($this->network_type == 0) {
|
534 |
+
$this->errorText = sprintf(__('The post cannot be published due to changes on the Instagram interface. More information in the <a href="%s" target="_blank">Instagram guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('instagram_error_private'));
|
535 |
+
} else {
|
536 |
+
$this->errorText = sprintf(__('Your post could not be posted. More information in this <a href="%s" target="_blank">Instagram troubleshoot checklist</a>.', 'blog2social'), B2S_Tools::getSupportLink('instagram_error_business'));
|
537 |
+
}
|
538 |
+
} else {
|
539 |
+
$this->errorText = $this->errorTextList[$error];
|
540 |
+
}
|
541 |
+
} else {
|
542 |
+
$this->errorText = "";
|
543 |
+
}
|
544 |
+
return $this;
|
545 |
+
}
|
546 |
+
|
547 |
+
public function getErrorText() {
|
548 |
+
return $this->errorText;
|
549 |
+
}
|
550 |
+
|
551 |
public function setMultiImages($sched_data = "") {
|
552 |
$multi_images = array();
|
553 |
if (!empty($sched_data)) {
|
607 |
"user_timezone" => $this->getUserTimezone(),
|
608 |
"profile" => $this->getNetworkDisplayName(),
|
609 |
"status" => $this->getStaus(),
|
610 |
+
"errorCode" => $this->getErrorCode(),
|
611 |
+
"errorText" => $this->getErrorText(),
|
612 |
"publish_link" => $this->getPublishLink()];
|
613 |
}
|
614 |
|
includes/B2S/Hook/Filter.php
CHANGED
@@ -37,5 +37,21 @@ class B2S_Hook_Filter {
|
|
37 |
return false;
|
38 |
}
|
39 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
|
41 |
}
|
37 |
return false;
|
38 |
}
|
39 |
}
|
40 |
+
|
41 |
+
function get_posting_template_show_taxonomies($taxonomies = array()) {
|
42 |
+
if(B2S_PLUGIN_USER_VERSION < 3) {
|
43 |
+
return $taxonomies;
|
44 |
+
}
|
45 |
+
$taxonomies_data = apply_filters('b2s_filter_posting_template_show_taxonomies', $taxonomies);
|
46 |
+
return $taxonomies_data;
|
47 |
+
}
|
48 |
+
|
49 |
+
function get_posting_template_set_taxonomies($taxonomies = array(), $postId = 0) {
|
50 |
+
if(B2S_PLUGIN_USER_VERSION < 3) {
|
51 |
+
return $taxonomies;
|
52 |
+
}
|
53 |
+
$taxonomies_data = apply_filters('b2s_filter_posting_template_set_taxonomies', $taxonomies, $postId);
|
54 |
+
return $taxonomies_data;
|
55 |
+
}
|
56 |
|
57 |
}
|
includes/B2S/Network/Item.php
CHANGED
@@ -598,8 +598,8 @@ class B2S_Network_Item {
|
|
598 |
if(!isset($post_template[$networkId][$type])) {
|
599 |
$post_template[$networkId][$type] = $value;
|
600 |
}
|
601 |
-
if($networkId == 24) { //special Telegram disable PostFormat
|
602 |
-
$post_template[$networkId][$type]['format'] =
|
603 |
}
|
604 |
}
|
605 |
$schema = $post_template[$networkId];
|
@@ -787,8 +787,17 @@ class B2S_Network_Item {
|
|
787 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-content b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{CONTENT}</button>'
|
788 |
. ((isset($defaultTemplate[$networkId][$networkType]['disableKeywords']) && $defaultTemplate[$networkId][$networkType]['disableKeywords'] == true) ? '' : '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-keywords b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{KEYWORDS}</button>')
|
789 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-author b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{AUTHOR}</button>'
|
790 |
-
. (($woocommerce_active) ? '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-price b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{PRICE}</button>' : '')
|
791 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
792 |
. '</div>';
|
793 |
$content .= '<textarea class="b2s-edit-template-post-content" style="width: 100%;" data-network-type="' . esc_attr($networkType) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . ' '.(($limit > 0) ? 'maxlength="'.$limit.'"' : '').'>' . esc_html(stripslashes($schema[$networkType]['content'])) . '</textarea>';
|
794 |
$content .= '<input class="b2s-edit-template-content-selection-start" data-network-type="' . esc_attr($networkType) . '" type="hidden" value="0">';
|
598 |
if(!isset($post_template[$networkId][$type])) {
|
599 |
$post_template[$networkId][$type] = $value;
|
600 |
}
|
601 |
+
if($networkId == 24 && $post_template[$networkId][$type]['format'] == false) { //new 6.8.2: format activate again | old: special Telegram disable PostFormat
|
602 |
+
$post_template[$networkId][$type]['format'] = 0;
|
603 |
}
|
604 |
}
|
605 |
$schema = $post_template[$networkId];
|
787 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-content b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{CONTENT}</button>'
|
788 |
. ((isset($defaultTemplate[$networkId][$networkType]['disableKeywords']) && $defaultTemplate[$networkId][$networkType]['disableKeywords'] == true) ? '' : '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-keywords b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{KEYWORDS}</button>')
|
789 |
. '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-author b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{AUTHOR}</button>'
|
790 |
+
. (($woocommerce_active) ? '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-price b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{PRICE}</button>' : '');
|
791 |
+
|
792 |
+
$b2sHook = new B2S_Hook_Filter();
|
793 |
+
$additionalTaxonomies = $b2sHook->get_posting_template_show_taxonomies();
|
794 |
+
if(is_array($additionalTaxonomies) && !empty($additionalTaxonomies)) {
|
795 |
+
foreach ($additionalTaxonomies as $k => $taxonomie) {
|
796 |
+
$content .= '<button type="button" draggable="true" class="btn btn-primary btn-xs b2s-edit-template-content-post-'.esc_html($taxonomie).' b2s-edit-template-content-post-item" data-network-type="' . esc_attr($networkType) . '">{'.esc_html($taxonomie).'}</button>';
|
797 |
+
}
|
798 |
+
}
|
799 |
+
|
800 |
+
$content .= '<button type="button" class="btn btn-primary btn-xs b2s-edit-template-content-clear-btn pull-right" data-network-type="' . esc_attr($networkType) . '">' . esc_html__('clear', 'blog2social') . '</button>'
|
801 |
. '</div>';
|
802 |
$content .= '<textarea class="b2s-edit-template-post-content" style="width: 100%;" data-network-type="' . esc_attr($networkType) . '" ' . ((B2S_PLUGIN_USER_VERSION < 1) ? 'readonly="true"' : '') . ' '.(($limit > 0) ? 'maxlength="'.$limit.'"' : '').'>' . esc_html(stripslashes($schema[$networkType]['content'])) . '</textarea>';
|
803 |
$content .= '<input class="b2s-edit-template-content-selection-start" data-network-type="' . esc_attr($networkType) . '" type="hidden" value="0">';
|
includes/B2S/Post/Item.php
CHANGED
@@ -725,7 +725,7 @@ class B2S_Post_Item {
|
|
725 |
$addSharedByUser = ($sharedByUser > 0) ? (' AND blog_user_id =' . $sharedByUser) : '';
|
726 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
727 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
728 |
-
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`,`blog_user_id`, `sched_date`,`publish_date`,`publish_link`,`sched_type`,`publish_error_code`,`{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`, `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND `{$wpdb->prefix}b2s_posts`.`post_for_approve`= 0 AND (`{$wpdb->prefix}b2s_posts`.`sched_date` = '0000-00-00 00:00:00' OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00')) $addWhere $addNotAdminPosts $addSharedByUser $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
729 |
$result = $wpdb->get_results($sqlData);
|
730 |
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'), 5 => esc_html__('Re-Share', 'blog2social'));
|
731 |
if (!empty($result) && is_array($result)) {
|
@@ -745,8 +745,17 @@ class B2S_Post_Item {
|
|
745 |
$link = (strtolower(substr(B2S_LANGUAGE, 0, 2)) == 'de') ? 'https://www.blog2social.com/de/faq/content/9/115/de/reddit-du-hast-das-veroeffentlichungs_limit-mit-deinem-account-kurzzeitig-erreicht.html' : 'https://www.blog2social.com/en/faq/content/9/115/en/reddit-you-have-temporarily-reached-the-publication-limit-with-your-account.html';
|
746 |
$add = ' ' . esc_html__('Please see', 'blog2social') . ' <a target="_blank" href="' . esc_url($link) . '">' . esc_html__('FAQ', 'blog2social') . '</a>';
|
747 |
}
|
748 |
-
|
749 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
750 |
}
|
751 |
$publishDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : '';
|
752 |
$publishText = (empty($publishDate)) ? __('sharing in progress by %s', 'blog2social') : __('shared by %s', 'blog2social');
|
@@ -765,9 +774,21 @@ class B2S_Post_Item {
|
|
765 |
} else {
|
766 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">';
|
767 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
$content .= '<div class="media-body">
|
769 |
-
<strong>' . esc_html($networkName[$var->network_id]) . '</strong> ' . $error . '
|
770 |
-
<p class="info">' .
|
771 |
<p class="info">' . $publishLink;
|
772 |
|
773 |
$content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-publish-area-drop-btn" data-post-id="' . esc_attr($var->id) . '">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
725 |
$addSharedByUser = ($sharedByUser > 0) ? (' AND blog_user_id =' . $sharedByUser) : '';
|
726 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
727 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
728 |
+
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`,`blog_user_id`, `sched_date`,`publish_date`,`publish_link`,`sched_type`,`publish_error_code`,`sched_details_id`,`post_format`,`{$wpdb->prefix}b2s_posts_sched_details`.`sched_data`,`{$wpdb->prefix}b2s_posts_network_details`.`network_id`,`{$wpdb->prefix}b2s_posts_network_details`.`network_type`, `{$wpdb->prefix}b2s_posts_network_details`.`network_auth_id`, `{$wpdb->prefix}b2s_posts_network_details`.`network_display_name` FROM `{$wpdb->prefix}b2s_posts` LEFT JOIN `{$wpdb->prefix}b2s_posts_network_details` ON `{$wpdb->prefix}b2s_posts`.`network_details_id` = `{$wpdb->prefix}b2s_posts_network_details`.`id` LEFT JOIN `{$wpdb->prefix}b2s_posts_sched_details` ON `{$wpdb->prefix}b2s_posts`.`sched_details_id` = `{$wpdb->prefix}b2s_posts_sched_details`.`id` WHERE `{$wpdb->prefix}b2s_posts`.`hide` = 0 AND `{$wpdb->prefix}b2s_posts`.`post_for_approve`= 0 AND (`{$wpdb->prefix}b2s_posts`.`sched_date` = '0000-00-00 00:00:00' OR (`{$wpdb->prefix}b2s_posts`.`sched_type` = 3 AND `{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00')) $addWhere $addNotAdminPosts $addSharedByUser $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
729 |
$result = $wpdb->get_results($sqlData);
|
730 |
$specialPostingData = array(3 => esc_html__('Auto-Posting', 'blog2social'), 4 => esc_html__('Retweet', 'blog2social'), 5 => esc_html__('Re-Share', 'blog2social'));
|
731 |
if (!empty($result) && is_array($result)) {
|
745 |
$link = (strtolower(substr(B2S_LANGUAGE, 0, 2)) == 'de') ? 'https://www.blog2social.com/de/faq/content/9/115/de/reddit-du-hast-das-veroeffentlichungs_limit-mit-deinem-account-kurzzeitig-erreicht.html' : 'https://www.blog2social.com/en/faq/content/9/115/en/reddit-you-have-temporarily-reached-the-publication-limit-with-your-account.html';
|
746 |
$add = ' ' . esc_html__('Please see', 'blog2social') . ' <a target="_blank" href="' . esc_url($link) . '">' . esc_html__('FAQ', 'blog2social') . '</a>';
|
747 |
}
|
748 |
+
if($var->network_id == 12 && $var->publish_error_code == 'DEFAULT') {
|
749 |
+
if($var->network_type == 0) {
|
750 |
+
$networkError12 = sprintf(__('The post cannot be published due to changes on the Instagram interface. More information in the <a href="%s" target="_blank">Instagram guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('instagram_error_private'));
|
751 |
+
} else {
|
752 |
+
$networkError12 = sprintf(__('Your post could not be posted. More information in this <a href="%s" target="_blank">Instagram troubleshoot checklist</a>.', 'blog2social'), B2S_Tools::getSupportLink('instagram_error_business'));
|
753 |
+
}
|
754 |
+
$error = '<span class="network-text-info text-danger hidden-xs"> <i class="glyphicon glyphicon-remove-circle glyphicon-danger"></i> ' . $networkError12 . $add . '</span>';
|
755 |
+
} else {
|
756 |
+
$errorCode = isset($networkErrorCode[trim($var->publish_error_code)]) ? $var->publish_error_code : 'DEFAULT';
|
757 |
+
$error = '<span class="network-text-info text-danger hidden-xs"> <i class="glyphicon glyphicon-remove-circle glyphicon-danger"></i> ' . $networkErrorCode[$errorCode] . $add . '</span>';
|
758 |
+
}
|
759 |
}
|
760 |
$publishDate = ($var->sched_date == "0000-00-00 00:00:00") ? B2S_Util::getCustomDateFormat($var->publish_date, substr(B2S_LANGUAGE, 0, 2)) : '';
|
761 |
$publishText = (empty($publishDate)) ? __('sharing in progress by %s', 'blog2social') : __('shared by %s', 'blog2social');
|
774 |
} else {
|
775 |
$content .= '<img class="pull-left hidden-xs" src="' . plugins_url('/assets/images/portale/' . $var->network_id . '_flat.png', B2S_PLUGIN_FILE) . '" alt="posttype">';
|
776 |
}
|
777 |
+
|
778 |
+
$addPostFormat = '';
|
779 |
+
if(isset($var->post_format) && $var->post_format != null && (int) $var->post_format >= 0) {
|
780 |
+
$addPostFormat = esc_html__('post format', 'blog2social') . ': ';
|
781 |
+
if((int) $var->post_format == 0) {
|
782 |
+
$addPostFormat .= esc_html__('Link Post', 'blog2social');
|
783 |
+
} else {
|
784 |
+
$addPostFormat .= esc_html__('Image Post', 'blog2social');
|
785 |
+
}
|
786 |
+
$addPostFormat .= ' | ';
|
787 |
+
}
|
788 |
+
|
789 |
$content .= '<div class="media-body">
|
790 |
+
<strong>' . esc_html($networkName[$var->network_id]) . '</strong> <span class="info">('.esc_html($networkType[$var->network_type]) . esc_html((!empty($var->network_display_name) ? (': ' . $var->network_display_name) : '')).')</span> ' . $error . '
|
791 |
+
<p class="info">' . $addPostFormat . sprintf(esc_html($publishText), '<a href="' . esc_url(get_author_posts_url($var->blog_user_id)) . '">' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . '</a>') . ' ' . esc_html($publishDate) . $specialPosting . '</p>
|
792 |
<p class="info">' . $publishLink;
|
793 |
|
794 |
$content .= (B2S_PLUGIN_USER_VERSION > 0) ? '<a href="#" class="b2s-post-publish-area-drop-btn" data-post-id="' . esc_attr($var->id) . '">' : '<a href="#" class="b2sPreFeatureModalBtn" data-title="' . esc_attr__('You want to delete a publish post entry?', 'blog2social') . '">';
|
includes/B2S/RePost/Save.php
CHANGED
@@ -197,6 +197,8 @@ class B2S_RePost_Save {
|
|
197 |
if ($networkId == 12 && $this->imageUrl == false) {
|
198 |
return false;
|
199 |
}
|
|
|
|
|
200 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
201 |
|
202 |
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $content_min, (int) $content_max), "\\$");
|
@@ -222,7 +224,6 @@ class B2S_RePost_Save {
|
|
222 |
|
223 |
$authorId = get_post_field('post_author', $this->postId);
|
224 |
if (isset($authorId) && !empty($authorId) && (int) $authorId > 0) {
|
225 |
-
$hook_filter = new B2S_Hook_Filter();
|
226 |
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $authorId);
|
227 |
$postData['content'] = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $postData['content']));
|
228 |
} else {
|
@@ -239,6 +240,13 @@ class B2S_RePost_Save {
|
|
239 |
}
|
240 |
}
|
241 |
$postData['content'] = preg_replace("/\{PRICE\}/", "", $postData['content']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
|
243 |
if (in_array($networkId, $this->allowHtml)) {
|
244 |
$postData['content'] = preg_replace("/\\n/", "<br>", $postData['content']);
|
@@ -440,7 +448,9 @@ class B2S_RePost_Save {
|
|
440 |
'sched_date_utc' => $sched_date_utc,
|
441 |
'network_details_id' => $networkDetailsId,
|
442 |
'post_for_approve' => (int) $shareApprove,
|
443 |
-
'hook_action' => (((int) $shareApprove == 0) ? 1 : 0)
|
|
|
|
|
444 |
B2S_Rating::trigger();
|
445 |
}
|
446 |
}
|
197 |
if ($networkId == 12 && $this->imageUrl == false) {
|
198 |
return false;
|
199 |
}
|
200 |
+
$hook_filter = new B2S_Hook_Filter();
|
201 |
+
|
202 |
$postData['content'] = $tempOptionPostFormat[$networkId][$networkType]['content'];
|
203 |
|
204 |
$preContent = addcslashes(B2S_Util::getExcerpt($this->content, (int) $content_min, (int) $content_max), "\\$");
|
224 |
|
225 |
$authorId = get_post_field('post_author', $this->postId);
|
226 |
if (isset($authorId) && !empty($authorId) && (int) $authorId > 0) {
|
|
|
227 |
$author_name = $hook_filter->get_wp_user_post_author_display_name((int) $authorId);
|
228 |
$postData['content'] = stripslashes(preg_replace("/\{AUTHOR\}/", addcslashes($author_name, "\\$"), $postData['content']));
|
229 |
} else {
|
240 |
}
|
241 |
}
|
242 |
$postData['content'] = preg_replace("/\{PRICE\}/", "", $postData['content']);
|
243 |
+
|
244 |
+
$taxonomieReplacements = $hook_filter->get_posting_template_set_taxonomies(array(), $this->postId);
|
245 |
+
if(is_array($taxonomieReplacements) && !empty($taxonomieReplacements)) {
|
246 |
+
foreach ($taxonomieReplacements as $taxonomie => $replacement) {
|
247 |
+
$postData['content'] = preg_replace("/\{".$taxonomie."\}/", $replacement, $postData['content']);
|
248 |
+
}
|
249 |
+
}
|
250 |
|
251 |
if (in_array($networkId, $this->allowHtml)) {
|
252 |
$postData['content'] = preg_replace("/\\n/", "<br>", $postData['content']);
|
448 |
'sched_date_utc' => $sched_date_utc,
|
449 |
'network_details_id' => $networkDetailsId,
|
450 |
'post_for_approve' => (int) $shareApprove,
|
451 |
+
'hook_action' => (((int) $shareApprove == 0) ? 1 : 0),
|
452 |
+
'post_format' => (($shareData['post_format'] !== '') ? (((int) $shareData['post_format'] > 0) ? 1 : 0) : null)
|
453 |
+
), array('%d', '%d', '%s', '%s', '%d', '%d', '%s', '%s', '%d', '%d', '%d'));
|
454 |
B2S_Rating::trigger();
|
455 |
}
|
456 |
}
|
includes/B2S/Settings/Item.php
CHANGED
@@ -39,6 +39,10 @@ class B2S_Settings_Item {
|
|
39 |
$isCheckedAllowShortcode = (get_option('B2S_PLUGIN_USER_ALLOW_SHORTCODE_' . B2S_PLUGIN_BLOG_USER_ID) !== false) ? 1 : 0;
|
40 |
|
41 |
$optionUserTimeZone = $this->options->_getOption('user_time_zone');
|
|
|
|
|
|
|
|
|
42 |
$legacyMode = $this->generalOptions->_getOption('legacy_mode');
|
43 |
$isCheckedLegacyMode = ($legacyMode !== false && $legacyMode == 1) ? 1 : 0; //default not active , 1=active 0=not active
|
44 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
@@ -58,6 +62,15 @@ class B2S_Settings_Item {
|
|
58 |
$content .='</div>';
|
59 |
$content .='<br><div class="b2s-settings-time-zone-info">' . esc_html__('Timezone for Scheduling', 'blog2social') . ' (' . esc_html__('User', 'blog2social') . ': ' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . ') <code id="b2s-user-time">' . esc_html(B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2))) . '</code></span></div>';
|
60 |
$content .='</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
$content .='<div class="clearfix"></div>';
|
62 |
$content .='<br>';
|
63 |
$content .='<hr>';
|
@@ -217,7 +230,7 @@ class B2S_Settings_Item {
|
|
217 |
$content .='<hr></div>';
|
218 |
}
|
219 |
|
220 |
-
foreach (array(1, 2, 3, 12, 19, 17) as $n => $networkId) { //FB,TW,LI,IN
|
221 |
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3) ? array(0, 1) : (($networkId == 12) ? array(1) : array(0)));
|
222 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
223 |
if($networkId == 17) {
|
@@ -274,7 +287,7 @@ class B2S_Settings_Item {
|
|
274 |
}
|
275 |
$optionPostFormat = $this->options->_getOption('post_template');
|
276 |
$content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array('post' => array(__('Link Post', 'blog2social'), __('Image Post', 'blog2social')), 'image' => array(__('Image with frame'), __('Image cut out')))) . "'/>";
|
277 |
-
foreach (array(1, 2, 3, 12, 19, 15, 17) as $n => $networkId) { //FB,TW,LI,IN
|
278 |
$postFormatType = ($networkId == 12) ? 'image' : 'post';
|
279 |
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3 || $networkId == 12) ? array(0, 1) : array(0));
|
280 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
39 |
$isCheckedAllowShortcode = (get_option('B2S_PLUGIN_USER_ALLOW_SHORTCODE_' . B2S_PLUGIN_BLOG_USER_ID) !== false) ? 1 : 0;
|
40 |
|
41 |
$optionUserTimeZone = $this->options->_getOption('user_time_zone');
|
42 |
+
$optionUserTimeFormat = $this->options->_getOption('user_time_format');
|
43 |
+
if($optionUserTimeFormat == false) {
|
44 |
+
$optionUserTimeFormat = (strtolower(substr(get_locale(), 0, 2)) == 'de') ? 0 : 1;
|
45 |
+
}
|
46 |
$legacyMode = $this->generalOptions->_getOption('legacy_mode');
|
47 |
$isCheckedLegacyMode = ($legacyMode !== false && $legacyMode == 1) ? 1 : 0; //default not active , 1=active 0=not active
|
48 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
62 |
$content .='</div>';
|
63 |
$content .='<br><div class="b2s-settings-time-zone-info">' . esc_html__('Timezone for Scheduling', 'blog2social') . ' (' . esc_html__('User', 'blog2social') . ': ' . esc_html((!empty($userInfoName) ? $userInfoName : '-')) . ') <code id="b2s-user-time">' . esc_html(B2S_Util::getLocalDate($userTimeZoneOffset, substr(B2S_LANGUAGE, 0, 2))) . '</code></span></div>';
|
64 |
$content .='</div>';
|
65 |
+
|
66 |
+
$content .='<h4 style="display: inline-block;">' . esc_html__('Set time format', 'blog2social') . '</h4> <a style="display: inline-block;" href="#" class="b2s-info-btn hidden-xs b2sInfoTimeZoneModalBtn">' . esc_html__('Info', 'Blog2Social') . '</a>';
|
67 |
+
$content .='<div class="form-inline">';
|
68 |
+
$content .='<div class="col-xs-12 del-padding-left">';
|
69 |
+
$content .='<p>' . esc_html__('Set the time format you like to use for your posts.', 'blog2social') . '</p>';
|
70 |
+
$content .='<input data-size="mini" data-toggle="toggle" data-width="90" data-height="22" data-onstyle="primary" data-on="12h (am/pm)" data-off="24h" ' . (($optionUserTimeFormat == 1) ? 'checked' : '') . ' name="b2s-time-format" class="b2s-time-format-toggle" data-area-type="manuell" value="1" type="checkbox">';
|
71 |
+
$content .='</div>';
|
72 |
+
$content .='</div>';
|
73 |
+
|
74 |
$content .='<div class="clearfix"></div>';
|
75 |
$content .='<br>';
|
76 |
$content .='<hr>';
|
230 |
$content .='<hr></div>';
|
231 |
}
|
232 |
|
233 |
+
foreach (array(1, 2, 3, 12, 19, 17, 24) as $n => $networkId) { //FB,TW,LI,IN
|
234 |
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3) ? array(0, 1) : (($networkId == 12) ? array(1) : array(0)));
|
235 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
236 |
if($networkId == 17) {
|
287 |
}
|
288 |
$optionPostFormat = $this->options->_getOption('post_template');
|
289 |
$content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array('post' => array(__('Link Post', 'blog2social'), __('Image Post', 'blog2social')), 'image' => array(__('Image with frame'), __('Image cut out')))) . "'/>";
|
290 |
+
foreach (array(1, 2, 3, 12, 19, 15, 17, 24) as $n => $networkId) { //FB,TW,LI,IN
|
291 |
$postFormatType = ($networkId == 12) ? 'image' : 'post';
|
292 |
$type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3 || $networkId == 12) ? array(0, 1) : array(0));
|
293 |
foreach ($type as $t => $typeId) { //Profile,Page,Group
|
includes/B2S/Ship/Item.php
CHANGED
@@ -5,7 +5,7 @@ class B2S_Ship_Item {
|
|
5 |
private $allowTitleProfile = array(6, 7, 9, 13, 15, 16, 21, 25);
|
6 |
private $allowTitlePage = array();
|
7 |
private $allowTitleGroup = array();
|
8 |
-
private $setPostFormat = array(1, 2, 3, 12, 19, 17);
|
9 |
private $isCommentProfile = array(1, 3, 8, 10, 17, 19, 15);
|
10 |
private $isCommentPage = array(1);
|
11 |
private $isCommentGroup = array(1);
|
@@ -19,7 +19,7 @@ class B2S_Ship_Item {
|
|
19 |
private $allowNoImageProfile = array(5, 9);
|
20 |
private $allowNoCustomImageProfile = array(8);
|
21 |
private $allowNoCustomImagePage = array();
|
22 |
-
private $allowNoEmoji = array(9, 13, 14, 15, 16,
|
23 |
private $allowNoImagePage = array(8);
|
24 |
private $allowEditUrl = array(1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25);
|
25 |
private $showBoards = array(6, 20);
|
@@ -37,7 +37,7 @@ class B2S_Ship_Item {
|
|
37 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17, 20, 21);
|
38 |
private $limitHashTagCharacter = array(21 => 36);
|
39 |
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 12 => 2000, 18 => 1500, 20 => 500, 21 => 65535);
|
40 |
-
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 18, 20, 21
|
41 |
private $showImageAreaPage = array(10, 12);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
43 |
private $showMarketplace = array(19);
|
@@ -45,7 +45,7 @@ class B2S_Ship_Item {
|
|
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);
|
48 |
-
private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18, 19, 20, 21);
|
49 |
private $maxWeekTimeSelect = 52;
|
50 |
private $networkTosProfile = array(2);
|
51 |
private $networkTosGroup = array(8, 19);
|
@@ -422,7 +422,7 @@ class B2S_Ship_Item {
|
|
422 |
|
423 |
public function getCustomEditArea($networkId, $networkAuthId, $networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, $imageUrl = null, $multi_images = array()) {
|
424 |
$meta = array();
|
425 |
-
if ($networkId == 1 || ($networkId == 8 && $networkType == 0) || $networkId == 19 || $networkId == 3 || $networkId == 2 || $networkId == 15 || $networkId == 17) {
|
426 |
if (trim(strtolower($this->postStatus)) == 'publish' || $this->b2sPostType == 'ex') {
|
427 |
//is calendar edit => scrape post url and not custom post url by override from edit function for meta tags!
|
428 |
//$editPostUrl = $this->viewMode == 'modal') ? (get_permalink($this->postData->ID) !== false ? get_permalink($this->postData->ID) : $this->postData->guid) : $this->postUrl;
|
@@ -679,6 +679,34 @@ class B2S_Ship_Item {
|
|
679 |
$edit .= '</div>';
|
680 |
$edit .= '</div>';
|
681 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
682 |
} else {
|
683 |
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
684 |
$edit .= '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . ' ' . (($networkId == 12) ? 'unique="currency"' : '') . '>' . esc_html($message) . '</textarea>';
|
@@ -699,7 +727,7 @@ class B2S_Ship_Item {
|
|
699 |
}
|
700 |
|
701 |
public function getCustomEditSchedArea($schedCount = 0, $networkId, $networkAuthId, $networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, $infoArea, $imageUrl = null) {
|
702 |
-
if ($networkId == 1 || ($networkId == 8 && $networkType == 0) || $networkId == 19 || $networkId == 3 || $networkId == 2 || $networkId == 15 || $networkId == 17) {
|
703 |
if ($networkId == 1) {
|
704 |
$edit = '<div class="row"><br>';
|
705 |
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
@@ -889,6 +917,26 @@ class B2S_Ship_Item {
|
|
889 |
$edit .= '</div>';
|
890 |
$edit .= '</div>';
|
891 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
892 |
} else {
|
893 |
$edit = '<div class="row"><br>';
|
894 |
if ((in_array($networkId, $this->showImageAreaProfile) && $networkType == 0) || (in_array($networkId, $this->showImageAreaPage) && $networkType == 1) || (in_array($networkId, $this->showImageAreaGroup) && $networkType == 2)) {
|
@@ -1432,6 +1480,13 @@ class B2S_Ship_Item {
|
|
1432 |
}
|
1433 |
}
|
1434 |
$message = preg_replace("/\{PRICE\}/", "", $message);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1435 |
}
|
1436 |
|
1437 |
if (in_array($data->networkId, $this->allowHtml)) {
|
5 |
private $allowTitleProfile = array(6, 7, 9, 13, 15, 16, 21, 25);
|
6 |
private $allowTitlePage = array();
|
7 |
private $allowTitleGroup = array();
|
8 |
+
private $setPostFormat = array(1, 2, 3, 12, 19, 17, 24);
|
9 |
private $isCommentProfile = array(1, 3, 8, 10, 17, 19, 15);
|
10 |
private $isCommentPage = array(1);
|
11 |
private $isCommentGroup = array(1);
|
19 |
private $allowNoImageProfile = array(5, 9);
|
20 |
private $allowNoCustomImageProfile = array(8);
|
21 |
private $allowNoCustomImagePage = array();
|
22 |
+
private $allowNoEmoji = array(9, 13, 14, 15, 16, 21);
|
23 |
private $allowNoImagePage = array(8);
|
24 |
private $allowEditUrl = array(1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 24, 25);
|
25 |
private $showBoards = array(6, 20);
|
37 |
private $allowHashTags = array(1, 2, 3, 6, 10, 12, 17, 20, 21);
|
38 |
private $limitHashTagCharacter = array(21 => 36);
|
39 |
private $limitCharacterProfile = array(1 => 500, 2 => 280, 3 => 1300, 6 => 495, 8 => 420, 9 => 250, 12 => 2000, 18 => 1500, 20 => 500, 21 => 65535);
|
40 |
+
private $showImageAreaProfile = array(6, 7, 10, 12, 16, 18, 20, 21);
|
41 |
private $showImageAreaPage = array(10, 12);
|
42 |
private $showImageAreaGroup = array(8, 10);
|
43 |
private $showMarketplace = array(19);
|
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);
|
48 |
+
private $allowSchedCustomizeContent = array(1, 2, 3, 6, 7, 8, 9, 10, 12, 15, 17, 18, 19, 20, 21, 24);
|
49 |
private $maxWeekTimeSelect = 52;
|
50 |
private $networkTosProfile = array(2);
|
51 |
private $networkTosGroup = array(8, 19);
|
422 |
|
423 |
public function getCustomEditArea($networkId, $networkAuthId, $networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, $imageUrl = null, $multi_images = array()) {
|
424 |
$meta = array();
|
425 |
+
if ($networkId == 1 || ($networkId == 8 && $networkType == 0) || $networkId == 19 || $networkId == 3 || $networkId == 2 || $networkId == 15 || $networkId == 17 || $networkId == 24) {
|
426 |
if (trim(strtolower($this->postStatus)) == 'publish' || $this->b2sPostType == 'ex') {
|
427 |
//is calendar edit => scrape post url and not custom post url by override from edit function for meta tags!
|
428 |
//$editPostUrl = $this->viewMode == 'modal') ? (get_permalink($this->postData->ID) !== false ? get_permalink($this->postData->ID) : $this->postData->guid) : $this->postUrl;
|
679 |
$edit .= '</div>';
|
680 |
$edit .= '</div>';
|
681 |
}
|
682 |
+
if ($networkId == 24) {
|
683 |
+
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
684 |
+
$edit .= '<textarea class="form-control telegram-textarea-input b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_html($message) . '</textarea>';
|
685 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
686 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '"><img src="' . esc_url(plugins_url('/assets/images/b2s-emoji.png', B2S_PLUGIN_FILE)) . '"/></button>';
|
687 |
+
}
|
688 |
+
$edit .= '</div>';
|
689 |
+
$edit .= '<div class="row">';
|
690 |
+
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12' : 'col-xs-12 col-sm-5 col-lg-3') . '">';
|
691 |
+
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
692 |
+
$edit .= '<img src="' . esc_url((isset($meta['image']) && !empty($meta['image']) ? $meta['image'] : $this->defaultImage)) . '" class="b2s-url-image b2s-post-item-details-url-image center-block img-responsive" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-image-change="1" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
693 |
+
$edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr(($imageUrl ? $imageUrl : "")) . '" name="b2s[' . esc_attr($networkAuthId) . '][image_url]">';
|
694 |
+
$edit .= '<div class="clearfix"></div>';
|
695 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" data-network-count="-1" data-meta-type="og" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-post-id="' . esc_attr($this->postId) . '" data-image-url="' . esc_attr($imageUrl) . '">' . esc_html__('Change image', 'blog2social') . '</button>';
|
696 |
+
$edit .= '</div>';
|
697 |
+
$edit .= '<div class="' . ((isset($this->viewMode) && $this->viewMode == 'modal') ? 'col-xs-12"' : 'col-xs-12 col-sm-7 col-lg-9 b2s-post-original-area" data-network-auth-id="' . esc_attr($networkAuthId) . '"') . '>';
|
698 |
+
if (B2S_PLUGIN_USER_VERSION > 0) {
|
699 |
+
$edit .= '<button data-network-count="-1" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-meta-type="og" data-meta-origin="ship" class=" btn btn-xs hidden-xs btn-link b2s-load-info-meta-tag-modal">' . esc_html__('Info: Change Open Graph Meta tags image, title and description for this network', 'blog2social') . '</button>';
|
700 |
+
} else {
|
701 |
+
$edit .= '<a target="_blank" class="btn-label-premium btn-label-premium-xs b2s-load-info-meta-tag-modal" data-meta-type="og" data-meta-origin="ship" href="#"><span class="label label-success">SMART</span></a>';
|
702 |
+
$edit .= '<a href="#" class="btn btn-link btn-xs b2s-load-info-meta-tag-modal" data-meta-type="og" data-meta-origin="ship">' . esc_html__('You want to change your link image, link title and link description for this network? Click here.', 'blog2social') . '</a> ';
|
703 |
+
}
|
704 |
+
$edit .= '<input type="text" class="form-control og-url-title b2s-post-item-details-preview-title change-meta-tag og_title" placeholder="' . esc_attr__('OG Meta title', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][og_title]" data-meta="og_title" data-meta-type="og" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr((isset($meta['title']) && !empty($meta['title']) ? $meta['title'] : '')) . '" />';
|
705 |
+
$edit .= '<input type="text" class="form-control og-url-desc b2s-post-item-details-preview-desc change-meta-tag og_desc" placeholder="' . esc_attr__('OG Meta description', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][og_desc]" data-meta="og_desc" data-meta-type="og" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr((isset($meta['description']) && !empty($meta['description']) ? $meta['description'] : '')) . '" />';
|
706 |
+
$edit .= $this->getUrlHtml($networkId, $networkType, $networkAuthId, $limit, $limitValue, true, 'og-url-input', true, $imageUrl);
|
707 |
+
$edit .= '</div>';
|
708 |
+
$edit .= '</div>';
|
709 |
+
}
|
710 |
} else {
|
711 |
$edit = '<div class="b2s-post-item-details-item-message-area" data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
712 |
$edit .= '<textarea class="form-control b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '"data-network-count="-1" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][content]" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . ' ' . (($networkId == 12) ? 'unique="currency"' : '') . '>' . esc_html($message) . '</textarea>';
|
727 |
}
|
728 |
|
729 |
public function getCustomEditSchedArea($schedCount = 0, $networkId, $networkAuthId, $networkType, $message, $isRequiredTextarea, $textareaOnKeyUp, $limit, $limitValue, $infoArea, $imageUrl = null) {
|
730 |
+
if ($networkId == 1 || ($networkId == 8 && $networkType == 0) || $networkId == 19 || $networkId == 3 || $networkId == 2 || $networkId == 15 || $networkId == 17 || $networkId == 24) {
|
731 |
if ($networkId == 1) {
|
732 |
$edit = '<div class="row"><br>';
|
733 |
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
917 |
$edit .= '</div>';
|
918 |
$edit .= '</div>';
|
919 |
}
|
920 |
+
if ($networkId == 24) {
|
921 |
+
$edit = '<div class="row"><br>';
|
922 |
+
$edit .= '<div class="col-xs-12 col-sm-5 col-lg-3">';
|
923 |
+
$edit .= '<button class="btn btn-primary btn-circle b2s-image-remove-btn" data-network-id="' . esc_attr($networkId) . '" data-network-count="' . esc_attr($schedCount) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" ' . ($imageUrl ? '' : 'style="display:none"') . '><i class="glyphicon glyphicon-trash"></i></button>';
|
924 |
+
$edit .= '<img src="' . esc_url($this->defaultImage) . '" class="b2s-url-image b2s-post-item-details-url-image center-block img-responsive" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-image-change="1" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
925 |
+
$edit .= '<input type="hidden" class="b2s-image-url-hidden-field form-control" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" value="' . esc_attr(($imageUrl ? $imageUrl : "")) . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_image_url][' . esc_attr($schedCount) . ']">';
|
926 |
+
$edit .= '<div class="clearfix"></div>';
|
927 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-image-modal-open" data-meta-type="og" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" data-post-id="' . esc_attr($this->postId) . '" data-image-url="' . esc_attr($imageUrl) . '">' . esc_html__('Change image', 'blog2social') . '</button>';
|
928 |
+
$edit .= '</div>';
|
929 |
+
$edit .= '<div class="col-xs-12 col-sm-7 col-lg-9">';
|
930 |
+
$edit .= $infoArea;
|
931 |
+
$edit .= '<div class="b2s-post-item-details-item-message-area" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '">';
|
932 |
+
$edit .= '<textarea disabled="disabled" class="form-control b2s-textarea-input b2s-post-item-sched-customize-text b2s-post-item-details-item-message-input ' . (in_array($networkId, $this->allowHtml) ? 'b2s-post-item-details-item-message-input-allow-html' : '') . '" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-text-limit="' . esc_attr($limitValue) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '" placeholder="' . esc_attr__('Write something about your post...', 'blog2social') . '" name="b2s[' . esc_attr($networkAuthId) . '][sched_content][' . esc_attr($schedCount) . ']" ' . $isRequiredTextarea . ' ' . $textareaOnKeyUp . '>' . esc_attr($message) . '</textarea>';
|
933 |
+
if (!in_array($networkId, $this->allowNoEmoji)) {
|
934 |
+
$edit .= '<button type="button" class="btn btn-sm b2s-post-item-details-item-message-emoji-btn" data-network-count="' . esc_attr($schedCount) . '" data-network-id="' . esc_attr($networkId) . '" data-network-auth-id="' . esc_attr($networkAuthId) . '"><img src="' . esc_url(plugins_url('/assets/images/b2s-emoji.png', B2S_PLUGIN_FILE)) . '"/></button>';
|
935 |
+
}
|
936 |
+
$edit .= '</div>';
|
937 |
+
$edit .= '</div>';
|
938 |
+
$edit .= '</div>';
|
939 |
+
}
|
940 |
} else {
|
941 |
$edit = '<div class="row"><br>';
|
942 |
if ((in_array($networkId, $this->showImageAreaProfile) && $networkType == 0) || (in_array($networkId, $this->showImageAreaPage) && $networkType == 1) || (in_array($networkId, $this->showImageAreaGroup) && $networkType == 2)) {
|
1480 |
}
|
1481 |
}
|
1482 |
$message = preg_replace("/\{PRICE\}/", "", $message);
|
1483 |
+
|
1484 |
+
$taxonomieReplacements = $this->hook_filter->get_posting_template_set_taxonomies(array(), $this->postId);
|
1485 |
+
if(is_array($taxonomieReplacements) && !empty($taxonomieReplacements)) {
|
1486 |
+
foreach ($taxonomieReplacements as $taxonomie => $replacement) {
|
1487 |
+
$message = preg_replace("/\{".$taxonomie."\}/", $replacement, $message);
|
1488 |
+
}
|
1489 |
+
}
|
1490 |
}
|
1491 |
|
1492 |
if (in_array($data->networkId, $this->allowHtml)) {
|
includes/B2S/Ship/Save.php
CHANGED
@@ -59,7 +59,8 @@ class B2S_Ship_Save {
|
|
59 |
'publish_date' => $data['publish_date'],
|
60 |
'post_for_relay' => ((isset($data['post_for_relay']) && (int) $data['post_for_relay'] == 1) ? 1 : 0),
|
61 |
'post_for_approve' => $shareApprove,
|
62 |
-
'network_details_id' => $networkDetailsId
|
|
|
63 |
);
|
64 |
$wpdb->insert($wpdb->prefix.'b2s_posts', $postData, array('%d', '%d', '%d', '%s', '%d', '%d', '%d'));
|
65 |
B2S_Rating::trigger();
|
@@ -372,7 +373,8 @@ class B2S_Ship_Save {
|
|
372 |
'sched_date_utc' => $schedDate['sched_date_utc'],
|
373 |
'network_details_id' => $networkDetailsId,
|
374 |
'post_for_approve' => $shareApprove,
|
375 |
-
'hook_action' => (($shareApprove == 0) ? 5 : 0)
|
|
|
376 |
), array("id" => $data['b2s_id']), array('%d', '%d', '%s', '%s', '%d', '%d', '%s', '%s', '%d', '%d', '%d'));
|
377 |
} else {
|
378 |
$wpdb->insert($wpdb->prefix.'b2s_posts', array(
|
@@ -387,7 +389,9 @@ class B2S_Ship_Save {
|
|
387 |
'network_details_id' => $networkDetailsId,
|
388 |
'post_for_relay' => ((!empty($relayData) && is_array($relayData)) ? 1 : 0),
|
389 |
'post_for_approve' => $shareApprove,
|
390 |
-
'hook_action' => (($shareApprove == 0) ? 1 : 0)
|
|
|
|
|
391 |
|
392 |
//since V4.8.0 relay posts
|
393 |
if (!empty($relayData) && is_array($relayData)) {
|
@@ -459,7 +463,12 @@ class B2S_Ship_Save {
|
|
459 |
$add = ' ' . esc_html__('Please see', 'blog2social') . ' <a target="_blank" href="' . esc_url($link) . '">' . esc_html__('FAQ', 'blog2social') . '</a>';
|
460 |
}
|
461 |
|
462 |
-
$
|
|
|
|
|
|
|
|
|
|
|
463 |
}
|
464 |
return $html;
|
465 |
}
|
59 |
'publish_date' => $data['publish_date'],
|
60 |
'post_for_relay' => ((isset($data['post_for_relay']) && (int) $data['post_for_relay'] == 1) ? 1 : 0),
|
61 |
'post_for_approve' => $shareApprove,
|
62 |
+
'network_details_id' => $networkDetailsId,
|
63 |
+
'post_format' => ((isset($data['post_format']) && $data['post_format'] != null && $data['post_format'] !== '') ? (((int) $data['post_format'] == 1) ? 1 : 0) : NULL),
|
64 |
);
|
65 |
$wpdb->insert($wpdb->prefix.'b2s_posts', $postData, array('%d', '%d', '%d', '%s', '%d', '%d', '%d'));
|
66 |
B2S_Rating::trigger();
|
373 |
'sched_date_utc' => $schedDate['sched_date_utc'],
|
374 |
'network_details_id' => $networkDetailsId,
|
375 |
'post_for_approve' => $shareApprove,
|
376 |
+
'hook_action' => (($shareApprove == 0) ? 5 : 0),
|
377 |
+
'post_format' => (($data['post_format'] !== '') ? (((int) $data['post_format'] > 0) ? 1 : 0) : null)
|
378 |
), array("id" => $data['b2s_id']), array('%d', '%d', '%s', '%s', '%d', '%d', '%s', '%s', '%d', '%d', '%d'));
|
379 |
} else {
|
380 |
$wpdb->insert($wpdb->prefix.'b2s_posts', array(
|
389 |
'network_details_id' => $networkDetailsId,
|
390 |
'post_for_relay' => ((!empty($relayData) && is_array($relayData)) ? 1 : 0),
|
391 |
'post_for_approve' => $shareApprove,
|
392 |
+
'hook_action' => (($shareApprove == 0) ? 1 : 0),
|
393 |
+
'post_format' => (($data['post_format'] !== '') ? (((int) $data['post_format'] > 0) ? 1 : 0) : null)
|
394 |
+
), array('%d', '%d', '%s', '%s', '%d', '%d', '%s', '%s', '%d', '%d', '%d', '%d'));
|
395 |
|
396 |
//since V4.8.0 relay posts
|
397 |
if (!empty($relayData) && is_array($relayData)) {
|
463 |
$add = ' ' . esc_html__('Please see', 'blog2social') . ' <a target="_blank" href="' . esc_url($link) . '">' . esc_html__('FAQ', 'blog2social') . '</a>';
|
464 |
}
|
465 |
|
466 |
+
if($network_id == 12 && $error == 'DEFAULT') {
|
467 |
+
$networkError12 = sprintf(__('Your post could not be posted. More information in this <a href="%s" target="_blank">Instagram troubleshoot checklist</a>.', 'blog2social'), B2S_Tools::getSupportLink('instagram_error_business'));
|
468 |
+
$html .= '<br><span class="text-danger"><i class="glyphicon glyphicon-remove-circle glyphicon-danger"></i> ' . $networkError12 . $add . '</span>';
|
469 |
+
} else {
|
470 |
+
$html .= '<br><span class="text-danger"><i class="glyphicon glyphicon-remove-circle glyphicon-danger"></i> ' . $errorText[$error] . $add . '</span>';
|
471 |
+
}
|
472 |
}
|
473 |
return $html;
|
474 |
}
|
includes/B2S/Support/Check/System.php
CHANGED
@@ -100,7 +100,8 @@ class B2S_Support_Check_System {
|
|
100 |
$url = $this->getBlogUrl();
|
101 |
$options = $this->getUserOptions();
|
102 |
$version = $this->getUserVersion();
|
103 |
-
$
|
|
|
104 |
return array("systemData" => $this->systemData, "blogData" => $blogData, "pluginData" => $this->pluginData);
|
105 |
}
|
106 |
|
100 |
$url = $this->getBlogUrl();
|
101 |
$options = $this->getUserOptions();
|
102 |
$version = $this->getUserVersion();
|
103 |
+
$theme = get_template();
|
104 |
+
$blogData = array('blogUrl' => $url, 'blogUserId' => B2S_PLUGIN_BLOG_USER_ID, 'options' => $options, 'WP_MEMORY_LIMIT' => WP_MEMORY_LIMIT, "max_execution_time" => ini_get('max_execution_time'), 'version' => $version, 'theme' => $theme);
|
105 |
return array("systemData" => $this->systemData, "blogData" => $blogData, "pluginData" => $this->pluginData);
|
106 |
}
|
107 |
|
includes/Loader.php
CHANGED
@@ -72,7 +72,7 @@ class B2S_Loader {
|
|
72 |
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 0), 'content' => '{CONTENT}', 'format' => 0, 'disableKeywords' => true),
|
73 |
1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 1000), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true),
|
74 |
2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true)),
|
75 |
-
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' =>
|
76 |
25 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 20000, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 20000, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false))
|
77 |
)));
|
78 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
|
@@ -90,7 +90,7 @@ class B2S_Loader {
|
|
90 |
define('B2S_PLUGIN_PAGE_SLUG', serialize(array('blog2social', 'blog2social-post', 'blog2social-calendar', 'blog2social-curation', 'blog2social-network', 'blog2social-settings', 'prg-post', 'blog2social-support', 'blog2social-premium', 'blog2social-sched', 'blog2social-approve', 'blog2social-publish', 'blog2social-notice', 'blog2social-ship', 'blog2social-curation-draft', 'blog2social-draft-post', 'prg-login', 'prg-ship')));
|
91 |
define('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF', json_encode(array(16, 18)));
|
92 |
define('B2S_PLUGIN_NETWORK_ANIMATE_GIF', json_encode(array(1 => array(0 => false, 1 => true), 2 => array(0 => false, 1 => true), 3 => array(0 => true, 1 => true), 4 => array(0 => true), 6 => array(0 => true), 7 => array(0 => false), 11 => array(0 => true), 12 => array(0 => false, 1 => false), 14 => array(0 => true), 15 => array(0 => false), 17 => array(0 => false), 19 => array(0 => true, 1 => true), 21 => array(0 => true), 24 => array(0 => true))));
|
93 |
-
define('B2S_PLUGIN_NETWORK_META_TAGS', json_encode(array('og' => array(1, 3, 15, 19, 17), 'twitter' => array(2))));
|
94 |
define('B2S_PLUGIN_SHORTENER', serialize(array(0 => esc_html__('Bitly', 'blog2social'), 1 => esc_html__('Rebrandly', 'blog2social'), 2 => esc_html__('Sniply', 'blog2social'))));
|
95 |
|
96 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
@@ -250,6 +250,22 @@ class B2S_Loader {
|
|
250 |
}
|
251 |
}
|
252 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
}
|
254 |
if ($filter && isset($autoPostData['network_auth_id']) && !empty($autoPostData['network_auth_id']) && is_array($autoPostData['network_auth_id'])) {
|
255 |
//LIMIT
|
@@ -1660,6 +1676,7 @@ class B2S_Loader {
|
|
1660 |
`hook_action` TINYINT NOT NULL DEFAULT '0',
|
1661 |
`hide` TINYINT NOT NULL DEFAULT '0',
|
1662 |
`v2_id` int(11) NOT NULL DEFAULT '0',
|
|
|
1663 |
PRIMARY KEY (`id`), INDEX `post_id` (`post_id`), INDEX `blog_user_id` (`blog_user_id`) , INDEX `sched_details_id` (`sched_details_id`),
|
1664 |
INDEX `sched_date` (`sched_date`), INDEX `sched_date_utc` (`sched_date_utc`), INDEX `publish_date` (`publish_date`) , INDEX `relay_primary_post_id` (`relay_primary_post_id`) ,
|
1665 |
INDEX `hook_action` (`hook_action`), INDEX `hide` (`hide`)
|
@@ -1691,6 +1708,9 @@ class B2S_Loader {
|
|
1691 |
if (!in_array("relay_delay_min", $b2sPostsColsData)) {
|
1692 |
$wpdb->query("ALTER TABLE {$wpdb->prefix}b2s_posts ADD relay_delay_min int(11) NOT NULL DEFAULT '0'");
|
1693 |
}
|
|
|
|
|
|
|
1694 |
}
|
1695 |
|
1696 |
$keys = $wpdb->get_results('SHOW INDEX FROM `' . $wpdb->prefix . 'b2s_posts`');
|
72 |
19 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 0), 'content' => '{CONTENT}', 'format' => 0, 'disableKeywords' => true),
|
73 |
1 => array('short_text' => array(0 => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 1000), 4 => array('active' => 0, 'range_min' => 880, 'range_max' => 920, 'excerpt_range_min' => 880, 'excerpt_range_max' => 920, 'limit' => 1000)), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true),
|
74 |
2 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 10000), 'content' => '{CONTENT}', 'format' => 1, 'disableKeywords' => true)),
|
75 |
+
24 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 200, 'range_max' => 320, 'excerpt_range_min' => 200, 'excerpt_range_max' => 320, 'limit' => 420), 'content' => '{CONTENT}', 'format' => 0, 'addLink' => true)),
|
76 |
25 => array(0 => array('short_text' => array('active' => 0, 'range_min' => 1000, 'range_max' => 20000, 'excerpt_range_min' => 1000, 'excerpt_range_max' => 20000, 'limit' => 0), 'content' => '{CONTENT}', 'format' => false))
|
77 |
)));
|
78 |
define('B2S_PLUGIN_SYSTEMREQUIREMENT_WORDPRESSVERSION', '4.7.0');
|
90 |
define('B2S_PLUGIN_PAGE_SLUG', serialize(array('blog2social', 'blog2social-post', 'blog2social-calendar', 'blog2social-curation', 'blog2social-network', 'blog2social-settings', 'prg-post', 'blog2social-support', 'blog2social-premium', 'blog2social-sched', 'blog2social-approve', 'blog2social-publish', 'blog2social-notice', 'blog2social-ship', 'blog2social-curation-draft', 'blog2social-draft-post', 'prg-login', 'prg-ship')));
|
91 |
define('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF', json_encode(array(16, 18)));
|
92 |
define('B2S_PLUGIN_NETWORK_ANIMATE_GIF', json_encode(array(1 => array(0 => false, 1 => true), 2 => array(0 => false, 1 => true), 3 => array(0 => true, 1 => true), 4 => array(0 => true), 6 => array(0 => true), 7 => array(0 => false), 11 => array(0 => true), 12 => array(0 => false, 1 => false), 14 => array(0 => true), 15 => array(0 => false), 17 => array(0 => false), 19 => array(0 => true, 1 => true), 21 => array(0 => true), 24 => array(0 => true))));
|
93 |
+
define('B2S_PLUGIN_NETWORK_META_TAGS', json_encode(array('og' => array(1, 3, 15, 19, 17, 24), 'twitter' => array(2))));
|
94 |
define('B2S_PLUGIN_SHORTENER', serialize(array(0 => esc_html__('Bitly', 'blog2social'), 1 => esc_html__('Rebrandly', 'blog2social'), 2 => esc_html__('Sniply', 'blog2social'))));
|
95 |
|
96 |
add_filter('heartbeat_received', array(B2S_Heartbeat::getInstance(), 'init'), 10, 2);
|
250 |
}
|
251 |
}
|
252 |
}
|
253 |
+
if (isset($autoPostData['post_categories']) && is_array($autoPostData['post_categories']) && !empty($autoPostData['post_categories'])) {
|
254 |
+
$postcat = get_the_category($post->ID);
|
255 |
+
if($postcat != false && is_array($postcat) && !empty($postcat)) {
|
256 |
+
foreach ($postcat as $k => $v) {
|
257 |
+
if (isset($autoPostData['post_categories_state']) && (int) $autoPostData['post_categories_state'] == 0) { //include
|
258 |
+
if (!in_array($v->term_id, $autoPostData['post_categories'])) {
|
259 |
+
$filter = false;
|
260 |
+
}
|
261 |
+
} else { //exclude
|
262 |
+
if (in_array($v->term_id, $autoPostData['post_categories'])) {
|
263 |
+
$filter = false;
|
264 |
+
}
|
265 |
+
}
|
266 |
+
}
|
267 |
+
}
|
268 |
+
}
|
269 |
}
|
270 |
if ($filter && isset($autoPostData['network_auth_id']) && !empty($autoPostData['network_auth_id']) && is_array($autoPostData['network_auth_id'])) {
|
271 |
//LIMIT
|
1676 |
`hook_action` TINYINT NOT NULL DEFAULT '0',
|
1677 |
`hide` TINYINT NOT NULL DEFAULT '0',
|
1678 |
`v2_id` int(11) NOT NULL DEFAULT '0',
|
1679 |
+
`post_format` int(11) DEFAULT NULL,
|
1680 |
PRIMARY KEY (`id`), INDEX `post_id` (`post_id`), INDEX `blog_user_id` (`blog_user_id`) , INDEX `sched_details_id` (`sched_details_id`),
|
1681 |
INDEX `sched_date` (`sched_date`), INDEX `sched_date_utc` (`sched_date_utc`), INDEX `publish_date` (`publish_date`) , INDEX `relay_primary_post_id` (`relay_primary_post_id`) ,
|
1682 |
INDEX `hook_action` (`hook_action`), INDEX `hide` (`hide`)
|
1708 |
if (!in_array("relay_delay_min", $b2sPostsColsData)) {
|
1709 |
$wpdb->query("ALTER TABLE {$wpdb->prefix}b2s_posts ADD relay_delay_min int(11) NOT NULL DEFAULT '0'");
|
1710 |
}
|
1711 |
+
if (!in_array("post_format", $b2sPostsColsData)) {
|
1712 |
+
$wpdb->query("ALTER TABLE {$wpdb->prefix}b2s_posts ADD post_format int(11) DEFAULT NULL");
|
1713 |
+
}
|
1714 |
}
|
1715 |
|
1716 |
$keys = $wpdb->get_results('SHOW INDEX FROM `' . $wpdb->prefix . 'b2s_posts`');
|
includes/Tools.php
CHANGED
@@ -304,6 +304,12 @@ class B2S_Tools {
|
|
304 |
if($type == 'connection_guide'){
|
305 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=106&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=108&artlang=de';
|
306 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
}
|
308 |
|
309 |
public static function getAffiliateId() {
|
304 |
if($type == 'connection_guide'){
|
305 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=106&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=108&artlang=de';
|
306 |
}
|
307 |
+
if($type == 'instagram_error_private'){
|
308 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=119&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=119&artlang=de';
|
309 |
+
}
|
310 |
+
if($type == 'instagram_error_business'){
|
311 |
+
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?action=artikel&cat=9&id=119&artlang=en' : 'https://www.blog2social.com/de/faq/index.php?action=artikel&cat=9&id=119&artlang=de';
|
312 |
+
}
|
313 |
}
|
314 |
|
315 |
public static function getAffiliateId() {
|
includes/Util.php
CHANGED
@@ -38,9 +38,14 @@ class B2S_Util {
|
|
38 |
}
|
39 |
|
40 |
public static function getCustomDateFormat($dateTime = '0000-00-00 00:00:00', $lang = 'en', $time = true) {
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
42 |
$ident = 'd.m.Y ' . (($time) ? 'H:i' : '');
|
43 |
-
return date($ident, strtotime($dateTime)) . (($time) ? ' ' . __('
|
44 |
} else {
|
45 |
$ident = 'Y/m/d ' . (($time) ? 'g:i a' : '');
|
46 |
return date($ident, strtotime($dateTime));
|
38 |
}
|
39 |
|
40 |
public static function getCustomDateFormat($dateTime = '0000-00-00 00:00:00', $lang = 'en', $time = true) {
|
41 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
42 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
43 |
+
if($optionUserTimeFormat == false) {
|
44 |
+
$optionUserTimeFormat = ($lang == 'de') ? 0 : 1;
|
45 |
+
}
|
46 |
+
if ($optionUserTimeFormat == 0) {
|
47 |
$ident = 'd.m.Y ' . (($time) ? 'H:i' : '');
|
48 |
+
return date($ident, strtotime($dateTime)) . (($time && $lang == 'de') ? ' ' . __('clock', 'blog2social') : '');
|
49 |
} else {
|
50 |
$ident = 'Y/m/d ' . (($time) ? 'g:i a' : '');
|
51 |
return date($ident, strtotime($dateTime));
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"PO-Revision-Date: 2021-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -13,9 +13,9 @@ msgstr ""
|
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
"POT-Creation-Date: 2021-04-19 07:32+0000\n"
|
16 |
-
"Last-Translator: marius Lol
|
17 |
"Language-Team: Deutsch\n"
|
18 |
-
"X-Loco-Version: 2.3
|
19 |
|
20 |
#: views/b2s/html/header.php:289
|
21 |
msgid " Days"
|
@@ -30,7 +30,7 @@ msgstr ""
|
|
30 |
msgid " today"
|
31 |
msgstr "heute"
|
32 |
|
33 |
-
#: views/b2s/network.php:
|
34 |
msgid ""
|
35 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
36 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
@@ -44,7 +44,7 @@ msgstr ""
|
|
44 |
"und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
|
45 |
"des jeweiligen Social Networks berücksichtigt."
|
46 |
|
47 |
-
#: includes/B2S/Settings/Item.php:
|
48 |
msgid "(SMART)"
|
49 |
msgstr "(SMART)"
|
50 |
|
@@ -52,7 +52,7 @@ msgstr "(SMART)"
|
|
52 |
msgid "+ add Parameter"
|
53 |
msgstr "+ Parameter hinzufügen"
|
54 |
|
55 |
-
#: includes/B2S/Ship/Save.php:
|
56 |
msgid ""
|
57 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
58 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
@@ -65,7 +65,7 @@ msgstr ""
|
|
65 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
66 |
"Facebook-Profil zu senden!"
|
67 |
|
68 |
-
#: includes/B2S/Ship/Save.php:
|
69 |
msgid ""
|
70 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
71 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
@@ -78,7 +78,7 @@ msgstr ""
|
|
78 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
79 |
"Facebook-Profil zu senden!"
|
80 |
|
81 |
-
#: includes/B2S/Ship/Save.php:
|
82 |
msgid ""
|
83 |
"-To share your post immediately, click the \"Share\" button next to your "
|
84 |
"selected Facebook profile below."
|
@@ -86,7 +86,7 @@ msgstr ""
|
|
86 |
"-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
|
87 |
"neben Deinem unten aufgeführten Profil."
|
88 |
|
89 |
-
#: includes/B2S/Ship/Save.php:
|
90 |
msgid ""
|
91 |
"-To share your post immediately, click the \"Share\" button next to your "
|
92 |
"selected Google+ account below."
|
@@ -106,7 +106,7 @@ msgstr "1 x Pressemitteilung"
|
|
106 |
msgid "1x publish report"
|
107 |
msgstr "1 x Veröffentlichungsreport"
|
108 |
|
109 |
-
#: views/b2s/network.php:
|
110 |
#, php-format
|
111 |
msgid ""
|
112 |
"<a href=\"%s\" target=\"_blank\">Get more information on how to add more "
|
@@ -115,7 +115,7 @@ msgstr ""
|
|
115 |
"<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
|
116 |
"weitere Seiten und Gruppen dazu buchen kannst.</a>"
|
117 |
|
118 |
-
#: includes/Loader.php:
|
119 |
#, php-format
|
120 |
msgid ""
|
121 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
@@ -162,7 +162,7 @@ msgstr ""
|
|
162 |
"Schon registriert? Log Dich in Deinen Support Konto ein, um Fragen zu "
|
163 |
"stellen oder an Diskussionen teilzunehmen"
|
164 |
|
165 |
-
#: includes/B2S/Settings/Item.php:
|
166 |
msgid ""
|
167 |
"A photo or image post displays the selected image in the one-page preview of "
|
168 |
"Blog2Social and your comment above the image. The image links to the image "
|
@@ -189,7 +189,7 @@ msgstr ""
|
|
189 |
"definiert. Du kannst diese Einstellungen für Dein Profil jederzeit in den "
|
190 |
"Auto-Poster-Einstellungen deaktivieren."
|
191 |
|
192 |
-
#: views/b2s/network.php:
|
193 |
msgid ""
|
194 |
"Access to this resource on your server is denied! Please check your "
|
195 |
"webserver configuration for caching."
|
@@ -197,8 +197,8 @@ msgstr ""
|
|
197 |
"Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte "
|
198 |
"überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
199 |
|
200 |
-
#: includes/B2S/Settings/Item.php:
|
201 |
-
#: includes/B2S/Ship/Item.php:
|
202 |
msgid "Account"
|
203 |
msgstr "Konto"
|
204 |
|
@@ -214,11 +214,11 @@ msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
|
214 |
msgid "Activate Instant Caching"
|
215 |
msgstr "Instant Caching aktivieren"
|
216 |
|
217 |
-
#: includes/B2S/Settings/Item.php:
|
218 |
msgid "activate Legacy mode"
|
219 |
msgstr "Kompatibilitätsmodus aktivieren"
|
220 |
|
221 |
-
#: views/b2s/settings.php:
|
222 |
msgid "Activate Legacy mode "
|
223 |
msgstr "Kompatibilitätsmodus aktivieren"
|
224 |
|
@@ -230,15 +230,15 @@ msgstr "Lizenz aktivieren"
|
|
230 |
msgid "activated"
|
231 |
msgstr "aktiviert"
|
232 |
|
233 |
-
#: includes/Tools.php:
|
234 |
msgid "Activities"
|
235 |
msgstr "Aktivitäten"
|
236 |
|
237 |
-
#: includes/B2S/Network/Item.php:
|
238 |
msgid "Add a link-URL to the end of my image post."
|
239 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
240 |
|
241 |
-
#: includes/B2S/Network/Item.php:
|
242 |
msgid ""
|
243 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
244 |
"Instagram does not turn link-URLs into clickable links)"
|
@@ -246,7 +246,7 @@ msgstr ""
|
|
246 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
247 |
"Instagram Links nicht als klickbare Links darstellt)"
|
248 |
|
249 |
-
#: includes/B2S/Network/Item.php:
|
250 |
msgid "Add a link-URL to the end of my post."
|
251 |
msgstr "Link automatisch am Ende meines Beitrags einfügen."
|
252 |
|
@@ -258,15 +258,15 @@ msgstr ""
|
|
258 |
"Setze und bearbeite Social-Media-Tags für Open Graph (z.B. Facebook und "
|
259 |
"LinkedIn) und Twitter Cards, um das Aussehen Deiner Link-Posts festzulegen."
|
260 |
|
261 |
-
#: includes/B2S/Ship/Item.php:
|
262 |
msgid "add another post"
|
263 |
msgstr "einen weiteren Post anlegen"
|
264 |
|
265 |
-
#: views/b2s/network.php:
|
266 |
msgid "Add Group"
|
267 |
msgstr "Gruppe hinzufügen"
|
268 |
|
269 |
-
#: views/b2s/ship.php:
|
270 |
msgid "Add more..."
|
271 |
msgstr "mehr hinzufügen"
|
272 |
|
@@ -278,11 +278,11 @@ msgstr ""
|
|
278 |
"Füge mehrere Benutzer und Accounts pro Netzwerk hinzu. Definiere Sharing-"
|
279 |
"Profile für ausgewählte Netzwerk-Bundles."
|
280 |
|
281 |
-
#: includes/B2S/Settings/Item.php:
|
282 |
msgid "Add oEmbed tags"
|
283 |
msgstr "oEmbed Tags hinzufügen"
|
284 |
|
285 |
-
#: includes/B2S/Settings/Item.php:
|
286 |
msgid ""
|
287 |
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
288 |
"and other social networks to display your post or page image, title and "
|
@@ -292,28 +292,28 @@ msgstr ""
|
|
292 |
"Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
|
293 |
"Beitrag/Seite korrekt darstellen können."
|
294 |
|
295 |
-
#: views/b2s/network.php:
|
296 |
msgid "Add Page"
|
297 |
msgstr "Seite hinzufügen"
|
298 |
|
299 |
-
#: views/b2s/post.calendar.php:
|
300 |
-
#: views/b2s/repost.php:
|
301 |
msgid "add post"
|
302 |
msgstr "Beitrag hinzufügen"
|
303 |
|
304 |
-
#: views/b2s/network.php:
|
305 |
msgid "Add Profile"
|
306 |
msgstr "Profil hinzufügen"
|
307 |
|
308 |
-
#: includes/B2S/Ship/Item.php:
|
309 |
msgid "Add Retweet"
|
310 |
msgstr "Retweet hinzufügen"
|
311 |
|
312 |
-
#: views/b2s/ship.php:
|
313 |
msgid "add Schedule"
|
314 |
msgstr "Zeitplan hinzufügen"
|
315 |
|
316 |
-
#: includes/B2S/Settings/Item.php:
|
317 |
msgid ""
|
318 |
"Add the default Open Graph parameters for title, description and image you "
|
319 |
"want Facebook to display, if you share the frontpage of your blog as link "
|
@@ -323,7 +323,7 @@ msgstr ""
|
|
323 |
"die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
|
324 |
"als Link Post teilst (http://www.DeinBlog.de)"
|
325 |
|
326 |
-
#: includes/B2S/Settings/Item.php:
|
327 |
msgid ""
|
328 |
"Add the default Twitter Card parameters for title, description and image you "
|
329 |
"want Twitter to display, if you share the frontpage of your blog as link "
|
@@ -337,7 +337,7 @@ msgstr ""
|
|
337 |
msgid "Add to queue"
|
338 |
msgstr "Zur Warteschlange hinzufügen"
|
339 |
|
340 |
-
#: includes/B2S/Settings/Item.php:
|
341 |
msgid ""
|
342 |
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
343 |
"Twitter to display your post or page image, title and description correctly."
|
@@ -346,7 +346,7 @@ msgstr ""
|
|
346 |
"Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
|
347 |
"darstellen kann."
|
348 |
|
349 |
-
#: includes/B2S/AutoPost/Item.php:
|
350 |
msgid "add/change connection"
|
351 |
msgstr "Verbindung hinzufügen/ändern"
|
352 |
|
@@ -362,7 +362,7 @@ msgstr "gebuchte Seiten"
|
|
362 |
msgid "additional profiles"
|
363 |
msgstr "gebuchte Profile"
|
364 |
|
365 |
-
#: views/b2s/network.php:
|
366 |
msgid "Advanced Network Settings"
|
367 |
msgstr "Erweiterte Netzwerkeinstellungen"
|
368 |
|
@@ -406,11 +406,11 @@ msgstr "kein Status"
|
|
406 |
msgid "All Types"
|
407 |
msgstr "alle Typen"
|
408 |
|
409 |
-
#: includes/B2S/Settings/Item.php:
|
410 |
msgid "allow shortcodes in my post"
|
411 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
412 |
|
413 |
-
#: views/b2s/settings.php:
|
414 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
415 |
msgstr ""
|
416 |
"Berücksichtige Shortcodes in meinen Social Media Beiträgen (z.B. Page-"
|
@@ -425,7 +425,7 @@ msgstr "geteilt"
|
|
425 |
msgid "Also included:"
|
426 |
msgstr "Ebenfalls enthalten:"
|
427 |
|
428 |
-
#: views/b2s/network.php:
|
429 |
msgid ""
|
430 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
431 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
@@ -435,24 +435,24 @@ msgstr ""
|
|
435 |
"einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü "
|
436 |
"(Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. "
|
437 |
|
438 |
-
#: views/b2s/network.php:
|
439 |
-
#: views/b2s/network.php:
|
440 |
-
#: views/b2s/network.php:
|
441 |
msgid "An error occured. Please contact our support."
|
442 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
443 |
|
444 |
-
#: views/b2s/network.php:
|
445 |
-
#: views/b2s/ship.php:
|
446 |
msgid "An error occurred! Please try again."
|
447 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
448 |
|
449 |
-
#: includes/Loader.php:
|
450 |
msgid "An image is required to post on this social network."
|
451 |
msgstr ""
|
452 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
453 |
"erforderlich."
|
454 |
|
455 |
-
#: views/b2s/settings.php:
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"An instruction on how to define your own best times is explained in the "
|
@@ -472,15 +472,15 @@ msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
|
472 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
473 |
msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
|
474 |
|
475 |
-
#: includes/Tools.php:
|
476 |
msgid "Animals & Nature"
|
477 |
msgstr "Tiere & Natur"
|
478 |
|
479 |
-
#: views/b2s/network.php:
|
480 |
msgid "Apply best time settings"
|
481 |
msgstr "Beste Zeiten verwenden"
|
482 |
|
483 |
-
#: views/b2s/autopost.php:87 includes/B2S/AutoPost/Item.php:
|
484 |
msgid "Apply best times"
|
485 |
msgstr "Beste Zeiten berücksichtigen"
|
486 |
|
@@ -510,15 +510,15 @@ msgstr "Bild zur Bildergalerie hinzufügen"
|
|
510 |
msgid "Apply image for this post"
|
511 |
msgstr "Bild für diesen Post übernehmen"
|
512 |
|
513 |
-
#: views/b2s/network.php:
|
514 |
msgid "Apply post template settings"
|
515 |
msgstr "Beitragsvorlagen verwenden"
|
516 |
|
517 |
-
#: includes/B2S/Ship/Item.php:
|
518 |
msgid "Apply Settings To All Networks"
|
519 |
msgstr "Planung für alle Netzwerke übernehmen"
|
520 |
|
521 |
-
#: views/b2s/network.php:
|
522 |
msgid "Apply URL Parameters"
|
523 |
msgstr "URL-Parameter verwenden"
|
524 |
|
@@ -546,15 +546,15 @@ msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
|
546 |
msgid "Are you sure you want to delete this Social Media draft?"
|
547 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
548 |
|
549 |
-
#: includes/Tools.php:
|
550 |
msgid "Argentina"
|
551 |
msgstr "Argentinien"
|
552 |
|
553 |
-
#: views/b2s/network.php:
|
554 |
msgid "assign"
|
555 |
msgstr "zuweisen"
|
556 |
|
557 |
-
#: views/b2s/network.php:
|
558 |
msgid "Assign the connection to other blog users"
|
559 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
560 |
|
@@ -571,7 +571,7 @@ msgstr "um"
|
|
571 |
msgid "at best times"
|
572 |
msgstr "zu den besten Zeiten"
|
573 |
|
574 |
-
#: views/b2s/ship.php:
|
575 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
576 |
msgstr ""
|
577 |
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
@@ -584,11 +584,11 @@ msgstr "zu meinen besten Zeiten"
|
|
584 |
msgid "at scheduled times"
|
585 |
msgstr "zu geplanten Zeiten"
|
586 |
|
587 |
-
#: includes/Tools.php:
|
588 |
msgid "Australia"
|
589 |
msgstr "Australien"
|
590 |
|
591 |
-
#: includes/Tools.php:
|
592 |
msgid "Austria"
|
593 |
msgstr "Österreich"
|
594 |
|
@@ -598,12 +598,12 @@ msgstr "Österreich"
|
|
598 |
msgid "Author"
|
599 |
msgstr "Autor"
|
600 |
|
601 |
-
#: views/b2s/settings.php:
|
602 |
msgid "Author: The author of the post."
|
603 |
msgstr "Author: Der Autor des Beitrags."
|
604 |
|
605 |
-
#: views/b2s/network.php:
|
606 |
-
#: includes/B2S/Settings/Item.php:
|
607 |
msgid "authorize"
|
608 |
msgstr "autorisieren"
|
609 |
|
@@ -619,14 +619,14 @@ msgstr ""
|
|
619 |
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
620 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
621 |
|
622 |
-
#: includes/Loader.php:
|
623 |
#: views/b2s/html/sidebar.php:75
|
624 |
msgid "Auto-Post"
|
625 |
msgstr "Beiträge automatisch teilen"
|
626 |
|
627 |
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:195
|
628 |
-
#: views/b2s/post.calendar.php:
|
629 |
-
#: views/b2s/ship.php:
|
630 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
631 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
632 |
#: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
|
@@ -637,7 +637,7 @@ msgstr ""
|
|
637 |
"Aktualisierung posten und zeitversetzt planen"
|
638 |
|
639 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:730
|
640 |
-
#: includes/B2S/Post/Item.php:
|
641 |
msgid "Auto-Posting"
|
642 |
msgstr "Auto-Posting"
|
643 |
|
@@ -645,11 +645,11 @@ msgstr "Auto-Posting"
|
|
645 |
msgid "autopost"
|
646 |
msgstr "Auto-Post"
|
647 |
|
648 |
-
#: includes/B2S/AutoPost/Item.php:
|
649 |
msgid "Autoposter"
|
650 |
msgstr "Auto-Poster"
|
651 |
|
652 |
-
#: includes/B2S/AutoPost/Item.php:
|
653 |
msgid "Autoposter for Imported Posts"
|
654 |
msgstr "Auto-Poster für importierte Beiträge"
|
655 |
|
@@ -661,7 +661,7 @@ msgstr "Das Autoposter-Limit wurde erreicht."
|
|
661 |
msgid "Available accounts"
|
662 |
msgstr "Verfügbare Accounts"
|
663 |
|
664 |
-
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:
|
665 |
msgid "Available networks"
|
666 |
msgstr "Verfügbare Netzwerke"
|
667 |
|
@@ -669,11 +669,11 @@ msgstr "Verfügbare Netzwerke"
|
|
669 |
msgid "Available networks for autoposting"
|
670 |
msgstr "Verfügbare Netzwerke im Autoposter"
|
671 |
|
672 |
-
#: includes/B2S/AutoPost/Item.php:
|
673 |
msgid "Available networks to select your auto-post connecitons:"
|
674 |
msgstr "Verfügbare Netwerkverbindungen:"
|
675 |
|
676 |
-
#: includes/Loader.php:
|
677 |
msgid "back to install plugins"
|
678 |
msgstr "zurück zur Pluginübersicht"
|
679 |
|
@@ -682,8 +682,8 @@ msgid "Best Time Manager"
|
|
682 |
msgstr "Best Time Manager"
|
683 |
|
684 |
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:197
|
685 |
-
#: views/b2s/post.calendar.php:
|
686 |
-
#: views/b2s/ship.php:
|
687 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
688 |
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
|
689 |
#: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
|
@@ -693,8 +693,8 @@ msgid ""
|
|
693 |
"social media posts"
|
694 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
695 |
|
696 |
-
#: views/b2s/curation.php:185 views/b2s/post.calendar.php:
|
697 |
-
#: views/b2s/ship.php:
|
698 |
msgid "Best Time Scheduler"
|
699 |
msgstr "Beste Zeiten Manager"
|
700 |
|
@@ -727,12 +727,12 @@ msgstr "Bitly"
|
|
727 |
msgid "Blog"
|
728 |
msgstr "Blog"
|
729 |
|
730 |
-
#: includes/Loader.php:
|
731 |
#: views/b2s/html/sidebar.ship.php:24
|
732 |
msgid "Blog2Social"
|
733 |
msgstr "Blog2Social"
|
734 |
|
735 |
-
#: views/b2s/autopost.php:62
|
736 |
msgid ""
|
737 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
738 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -746,6 +746,21 @@ msgstr ""
|
|
746 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
747 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
748 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
749 |
#: views/b2s/html/sidebar.php:180
|
750 |
msgid "Blog2Social Blog News"
|
751 |
msgstr "Blog2Social Blog News"
|
@@ -780,7 +795,7 @@ msgstr ""
|
|
780 |
msgid "Blog2Social is a service of Adenion GmbH"
|
781 |
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
782 |
|
783 |
-
#: includes/Loader.php:
|
784 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
785 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
786 |
|
@@ -801,8 +816,8 @@ msgstr ""
|
|
801 |
"Zwecke. Schon ab 6,58 € pro Monat kannst du mit den PREMIUM-Funktionen "
|
802 |
"durchstarten."
|
803 |
|
804 |
-
#: views/b2s/curation.php:176 views/b2s/post.calendar.php:
|
805 |
-
#: views/b2s/ship.php:
|
806 |
msgid "Blog2Social Premium covers everything you need."
|
807 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
808 |
|
@@ -856,7 +871,7 @@ msgstr ""
|
|
856 |
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
857 |
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
858 |
|
859 |
-
#: views/b2s/network.php:
|
860 |
msgid ""
|
861 |
"Blog2Social uses the official Google My Business API to share your content "
|
862 |
"on your business listing. You can connect Google My Business listings with "
|
@@ -888,7 +903,7 @@ msgstr ""
|
|
888 |
msgid "Blog2Social, Adenion"
|
889 |
msgstr "Blog2Social, Adenion"
|
890 |
|
891 |
-
#: includes/Loader.php:
|
892 |
msgid "Blog2Social: Autoposter"
|
893 |
msgstr "Blog2Social: Auto-Poster"
|
894 |
|
@@ -909,11 +924,11 @@ msgstr "Blog2Social: Social Media Auto Post & Scheduler"
|
|
909 |
msgid "Blog2Social: Social Media Auto-Posting"
|
910 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
911 |
|
912 |
-
#: includes/Loader.php:
|
913 |
msgid "Blog2Social: Social Media Content Calendar"
|
914 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
915 |
|
916 |
-
#: includes/B2S/Settings/Item.php:
|
917 |
msgid "Brand"
|
918 |
msgstr "Brand"
|
919 |
|
@@ -925,7 +940,7 @@ msgstr "Durchstöbere die Blog2Social Support Community"
|
|
925 |
msgid "BUSINESS"
|
926 |
msgstr "BUSINESS"
|
927 |
|
928 |
-
#: includes/Loader.php:
|
929 |
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:327
|
930 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Item.php:331
|
931 |
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
|
@@ -933,7 +948,7 @@ msgstr "BUSINESS"
|
|
933 |
msgid "Business"
|
934 |
msgstr "Business"
|
935 |
|
936 |
-
#: views/b2s/network.php:
|
937 |
msgid "Business: 15 (per user)"
|
938 |
msgstr "Business: 15 (pro Nutzer)"
|
939 |
|
@@ -956,7 +971,7 @@ msgstr ""
|
|
956 |
"Mit der Erstellung eines Kontos erklärst Du Dich einverstanden mit den "
|
957 |
"Blog2Social <a target=\"_blank\" href=\"%s\">Nutzungsbedingungen</a>"
|
958 |
|
959 |
-
#: includes/B2S/AutoPost/Item.php:
|
960 |
msgid ""
|
961 |
"By enabling this feature your previously published social media posts will "
|
962 |
"be sent again to your selected social media channels as soon as the post is "
|
@@ -966,17 +981,17 @@ msgstr ""
|
|
966 |
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
967 |
"Beitrag aktualisiert wird."
|
968 |
|
969 |
-
#: includes/Loader.php:
|
970 |
#: includes/B2S/RePost/Item.php:141 views/b2s/html/post.navbar.php:23
|
971 |
#: views/b2s/html/sidebar.php:128
|
972 |
msgid "Calendar"
|
973 |
msgstr "Kalender"
|
974 |
|
975 |
-
#: includes/B2S/Settings/Item.php:
|
976 |
msgid "Call-to-Action"
|
977 |
msgstr "Call-to-Action"
|
978 |
|
979 |
-
#: includes/Tools.php:
|
980 |
msgid "Canada"
|
981 |
msgstr "Kanada"
|
982 |
|
@@ -996,7 +1011,7 @@ msgstr "Kategorien"
|
|
996 |
msgid "Category"
|
997 |
msgstr "Kategorie"
|
998 |
|
999 |
-
#: includes/B2S/Settings/Item.php:
|
1000 |
msgid "change"
|
1001 |
msgstr "ändern"
|
1002 |
|
@@ -1010,14 +1025,15 @@ msgstr "Änderungen übernehmen"
|
|
1010 |
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
|
1011 |
#: includes/B2S/Ship/Item.php:558 includes/B2S/Ship/Item.php:581
|
1012 |
#: includes/B2S/Ship/Item.php:610 includes/B2S/Ship/Item.php:639
|
1013 |
-
#: includes/B2S/Ship/Item.php:667 includes/B2S/Ship/Item.php:
|
1014 |
-
#: includes/B2S/Ship/Item.php:
|
1015 |
-
#: includes/B2S/Ship/Item.php:
|
1016 |
-
#: includes/B2S/Ship/Item.php:
|
1017 |
-
#: includes/B2S/Ship/Item.php:
|
1018 |
-
#: includes/B2S/Ship/Item.php:
|
1019 |
-
#: includes/B2S/Ship/Item.php:
|
1020 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
1021 |
msgid "Change image"
|
1022 |
msgstr "Bild ändern"
|
1023 |
|
@@ -1027,11 +1043,11 @@ msgstr ""
|
|
1027 |
"Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
|
1028 |
"Netzwerk"
|
1029 |
|
1030 |
-
#: views/b2s/network.php:
|
1031 |
msgid "Change successful"
|
1032 |
msgstr "Change successful"
|
1033 |
|
1034 |
-
#: views/b2s/ship.php:
|
1035 |
msgid "change website address"
|
1036 |
msgstr "Webseiten-Adresse ändern"
|
1037 |
|
@@ -1043,17 +1059,17 @@ msgstr ""
|
|
1043 |
"Eine Bildänderung bei einem Link-Post, beeinflusst das Bild auf allen "
|
1044 |
"Netzwerken mit Link-Post Einstellung für diesen Beitrag."
|
1045 |
|
1046 |
-
#: views/b2s/network.php:
|
1047 |
msgid "Character limit"
|
1048 |
msgstr "Zeichenbegrenzung"
|
1049 |
|
1050 |
-
#: includes/B2S/Network/Item.php:
|
1051 |
-
#: includes/B2S/Network/Item.php:
|
1052 |
-
#: includes/B2S/Network/Item.php:
|
1053 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
1054 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
1055 |
-
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:
|
1056 |
-
#: includes/B2S/Ship/Item.php:
|
1057 |
msgid "characters"
|
1058 |
msgstr "Zeichen"
|
1059 |
|
@@ -1073,26 +1089,26 @@ msgstr ""
|
|
1073 |
"Teilen 30 Tage lang kostenlos und unverbindlich (kein automatisches "
|
1074 |
"Abonnement)"
|
1075 |
|
1076 |
-
#: includes/B2S/Settings/Item.php:
|
1077 |
msgid "Check Settings with Sharing-Debugger"
|
1078 |
msgstr "Einstellungen mit Sharing-Debugger überprüfen"
|
1079 |
|
1080 |
-
#: views/b2s/settings.php:
|
1081 |
msgid "Check, edit or define your social media time settings"
|
1082 |
msgstr ""
|
1083 |
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
1084 |
"Netzwerke"
|
1085 |
|
1086 |
-
#: includes/Tools.php:
|
1087 |
msgid "Chile"
|
1088 |
msgstr "Chile"
|
1089 |
|
1090 |
-
#: views/b2s/post.calendar.php:
|
1091 |
-
#: views/b2s/repost.php:
|
1092 |
msgid "Choose your"
|
1093 |
msgstr "Wähle Deinen"
|
1094 |
|
1095 |
-
#: views/b2s/network.php:
|
1096 |
msgid "Choose your Post Format"
|
1097 |
msgstr "Wähle Dein Postformat "
|
1098 |
|
@@ -1101,11 +1117,11 @@ msgstr "Wähle Dein Postformat "
|
|
1101 |
msgid "City"
|
1102 |
msgstr "Stadt"
|
1103 |
|
1104 |
-
#: includes/B2S/Ship/Item.php:
|
1105 |
msgid "Classified Ads"
|
1106 |
msgstr "Kleinanzeigen"
|
1107 |
|
1108 |
-
#: includes/B2S/Network/Item.php:
|
1109 |
msgid "clear"
|
1110 |
msgstr "löschen"
|
1111 |
|
@@ -1125,16 +1141,19 @@ msgstr ""
|
|
1125 |
"Klicke im Vorschau-Editor auf „Meine Zeiteinstellungen laden\", um Deine "
|
1126 |
"Beiträge automatisch für Deine individuell gewählten besten Zeiten zu planen."
|
1127 |
|
1128 |
-
#: views/b2s/network.php:
|
1129 |
msgid "Click on \"continue\""
|
1130 |
msgstr "Klicke auf “weiter”"
|
1131 |
|
1132 |
-
#:
|
1133 |
-
#: includes/B2S/Network/Item.php:158
|
1134 |
msgid "Clock"
|
1135 |
msgstr "Uhr"
|
1136 |
|
1137 |
-
#: includes/
|
|
|
|
|
|
|
|
|
1138 |
msgid "Colombia"
|
1139 |
msgstr "Kolumbien"
|
1140 |
|
@@ -1146,20 +1165,20 @@ msgstr "Unternehmen"
|
|
1146 |
msgid "Company Description"
|
1147 |
msgstr "Firmenbeschreibung"
|
1148 |
|
1149 |
-
#: includes/Loader.php:
|
1150 |
msgid "Company-Page (Employer Branding Profile)"
|
1151 |
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
1152 |
|
1153 |
-
#: views/b2s/network.php:
|
1154 |
-
#: views/b2s/ship.php:
|
1155 |
msgid "confirm"
|
1156 |
msgstr "bestätigen"
|
1157 |
|
1158 |
-
#: views/b2s/ship.php:
|
1159 |
msgid "connect"
|
1160 |
msgstr "Jetzt mit Netzwerken verbinden"
|
1161 |
|
1162 |
-
#: views/b2s/settings.php:
|
1163 |
msgid ""
|
1164 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1165 |
"share your WordPress blog posts and pages as well as imported posts and "
|
@@ -1169,19 +1188,19 @@ msgstr ""
|
|
1169 |
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
1170 |
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
1171 |
|
1172 |
-
#: views/b2s/ship.php:
|
1173 |
msgid "Connect for"
|
1174 |
msgstr "Netzwerke verbinden für"
|
1175 |
|
1176 |
-
#: views/b2s/network.php:
|
1177 |
msgid "Connect Instagram Business Account"
|
1178 |
msgstr "Instagram Business-Konto verbinden"
|
1179 |
|
1180 |
-
#: views/b2s/network.php:
|
1181 |
msgid "Connect with Pinterest"
|
1182 |
msgstr "Mit Pinterest verbinden"
|
1183 |
|
1184 |
-
#: views/b2s/settings.php:
|
1185 |
msgid "Connect your social media networks"
|
1186 |
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
1187 |
|
@@ -1206,7 +1225,7 @@ msgstr "Vebindung ist unterbrochen..."
|
|
1206 |
msgid "Connection is interrupted since"
|
1207 |
msgstr "Verbindung ist unterbrochen seit"
|
1208 |
|
1209 |
-
#: includes/B2S/AutoPost/Item.php:
|
1210 |
msgid "Connections"
|
1211 |
msgstr "Verbindungen"
|
1212 |
|
@@ -1214,7 +1233,7 @@ msgstr "Verbindungen"
|
|
1214 |
msgid "Contact Details"
|
1215 |
msgstr "Kontaktdaten"
|
1216 |
|
1217 |
-
#: includes/B2S/Network/Item.php:764 includes/B2S/Settings/Item.php:
|
1218 |
msgid "Content"
|
1219 |
msgstr "Inhalt"
|
1220 |
|
@@ -1222,17 +1241,17 @@ msgstr "Inhalt"
|
|
1222 |
msgid "Content Library"
|
1223 |
msgstr "Content-Bibliothek"
|
1224 |
|
1225 |
-
#: views/b2s/settings.php:
|
1226 |
msgid "Content: The content of your post."
|
1227 |
msgstr "Content: Der Inhalt Deines Beitrags."
|
1228 |
|
1229 |
-
#: views/b2s/network.php:
|
1230 |
-
#: views/b2s/network.php:
|
1231 |
-
#: views/b2s/ship.php:
|
1232 |
msgid "Continue"
|
1233 |
msgstr "Fortsetzen"
|
1234 |
|
1235 |
-
#: views/b2s/curation.php:74 views/b2s/network.php:
|
1236 |
msgid "continue"
|
1237 |
msgstr "weiter"
|
1238 |
|
@@ -1240,7 +1259,7 @@ msgstr "weiter"
|
|
1240 |
msgid "Continue deactivation"
|
1241 |
msgstr "Deaktivierung fortsetzen"
|
1242 |
|
1243 |
-
#: includes/B2S/Ship/Item.php:
|
1244 |
msgid "Copy from original"
|
1245 |
msgstr "Originaltext kopieren"
|
1246 |
|
@@ -1248,7 +1267,7 @@ msgstr "Originaltext kopieren"
|
|
1248 |
msgid "Copyright"
|
1249 |
msgstr "Copyright"
|
1250 |
|
1251 |
-
#: views/b2s/network.php:
|
1252 |
msgid "Could not be changed"
|
1253 |
msgstr "Could not be changed"
|
1254 |
|
@@ -1270,7 +1289,7 @@ msgstr "Die richtige Antwort nicht gefunden?"
|
|
1270 |
msgid "Country"
|
1271 |
msgstr "Land"
|
1272 |
|
1273 |
-
#: views/b2s/network.php:
|
1274 |
msgid "create"
|
1275 |
msgstr "erstellen"
|
1276 |
|
@@ -1286,11 +1305,11 @@ msgstr "Account erstellen"
|
|
1286 |
msgid "create account"
|
1287 |
msgstr "neues Konto erstellen"
|
1288 |
|
1289 |
-
#: views/b2s/network.php:
|
1290 |
msgid "Create new network collection"
|
1291 |
msgstr "Neue Netzwerkgruppierung anlegen"
|
1292 |
|
1293 |
-
#: views/b2s/post.calendar.php:
|
1294 |
msgid "Create or share content from other sources"
|
1295 |
msgstr "Erstelle oder teile Beiträge aus beliebigen Quellen"
|
1296 |
|
@@ -1302,7 +1321,7 @@ msgstr "Passwort festlegen"
|
|
1302 |
msgid "Create Post"
|
1303 |
msgstr "Beitrag erstellen"
|
1304 |
|
1305 |
-
#: includes/Loader.php:
|
1306 |
msgid "Create Social Media Posts"
|
1307 |
msgstr "Erstelle Social Media Posts"
|
1308 |
|
@@ -1361,27 +1380,27 @@ msgstr ""
|
|
1361 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
1362 |
"Community zu erzielen"
|
1363 |
|
1364 |
-
#: includes/Tools.php:
|
1365 |
msgid "Czechoslovakia"
|
1366 |
msgstr "Tschechoslowakei"
|
1367 |
|
1368 |
-
#: includes/Loader.php:
|
1369 |
msgid "Dashboard"
|
1370 |
msgstr "Dashboard"
|
1371 |
|
1372 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1373 |
-
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:
|
1374 |
#: views/b2s/partials/post-edit-modal.php:67
|
1375 |
#: views/b2s/partials/post-edit-modal.php:70
|
1376 |
msgid "Date"
|
1377 |
msgstr "Startdatum"
|
1378 |
|
1379 |
-
#: includes/B2S/Ship/Item.php:
|
1380 |
msgid "Day of month"
|
1381 |
msgstr "Tag im Monat"
|
1382 |
|
1383 |
#: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:367
|
1384 |
-
#: includes/B2S/Network/Item.php:433 includes/B2S/Ship/Item.php:
|
1385 |
msgid "Days"
|
1386 |
msgstr "Tage"
|
1387 |
|
@@ -1397,8 +1416,8 @@ msgstr "deaktiviert"
|
|
1397 |
msgid "Debug & Preview"
|
1398 |
msgstr "Link prüfen"
|
1399 |
|
1400 |
-
#: views/b2s/network.php:
|
1401 |
-
#: views/b2s/network.php:
|
1402 |
msgid ""
|
1403 |
"Decide in which post format you want to post your content: Link post or "
|
1404 |
"image post."
|
@@ -1406,7 +1425,7 @@ msgstr ""
|
|
1406 |
"Entscheide, in welchem Format Du Deine Inhalte veröffentlichen möchtest: "
|
1407 |
"Link-Beitrag oder Bild-Beitrag."
|
1408 |
|
1409 |
-
#: views/b2s/network.php:
|
1410 |
msgid ""
|
1411 |
"Decide in wich form you want to post your Content. Either as image with "
|
1412 |
"frame, or as image cut out."
|
@@ -1418,7 +1437,7 @@ msgstr ""
|
|
1418 |
msgid "Default"
|
1419 |
msgstr "Standard"
|
1420 |
|
1421 |
-
#: views/b2s/network.php:
|
1422 |
#, php-format
|
1423 |
msgid ""
|
1424 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1429,7 +1448,7 @@ msgstr ""
|
|
1429 |
"hinzugefügt werden sollen z. B. um Tracking-Links mit UTM-Parametern zu "
|
1430 |
"erstellen. <a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
1431 |
|
1432 |
-
#: views/b2s/network.php:
|
1433 |
msgid ""
|
1434 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1435 |
"individually. Your text will be shortened after the last comma, period, or "
|
@@ -1439,8 +1458,8 @@ msgstr ""
|
|
1439 |
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1440 |
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1441 |
|
1442 |
-
#: views/b2s/post.calendar.php:
|
1443 |
-
#: views/b2s/repost.php:
|
1444 |
msgid ""
|
1445 |
"Define the default settings for the custom post format for all of your "
|
1446 |
"Facebook accounts in the Blog2Social settings."
|
@@ -1448,8 +1467,8 @@ msgstr ""
|
|
1448 |
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1449 |
"den Blog2Social Einstellungen."
|
1450 |
|
1451 |
-
#: views/b2s/post.calendar.php:
|
1452 |
-
#: views/b2s/repost.php:
|
1453 |
msgid ""
|
1454 |
"Define the default settings for the custom post format for all of your "
|
1455 |
"Instagram accounts in the Blog2Social settings."
|
@@ -1457,8 +1476,8 @@ msgstr ""
|
|
1457 |
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1458 |
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1459 |
|
1460 |
-
#: views/b2s/post.calendar.php:
|
1461 |
-
#: views/b2s/repost.php:
|
1462 |
msgid ""
|
1463 |
"Define the default settings for the custom post format for all of your "
|
1464 |
"LinkedIn accounts in the Blog2Social settings."
|
@@ -1466,8 +1485,8 @@ msgstr ""
|
|
1466 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1467 |
"unter den Blog2Social Einstellungen."
|
1468 |
|
1469 |
-
#: views/b2s/post.calendar.php:
|
1470 |
-
#: views/b2s/repost.php:
|
1471 |
msgid ""
|
1472 |
"Define the default settings for the custom post format for all of your "
|
1473 |
"Twitter accounts in the Blog2Social settings."
|
@@ -1479,37 +1498,37 @@ msgstr ""
|
|
1479 |
msgid "Define Twitter post content"
|
1480 |
msgstr "Twitter Beitragsinhalt definieren"
|
1481 |
|
1482 |
-
#: views/b2s/settings.php:
|
1483 |
msgid "Define your post templates for each social media network"
|
1484 |
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
1485 |
|
1486 |
-
#: includes/B2S/Ship/Item.php:
|
1487 |
msgid "Delay"
|
1488 |
msgstr "Verzögerung"
|
1489 |
|
1490 |
-
#: views/b2s/network.php:
|
1491 |
msgid "Delete"
|
1492 |
msgstr "Löschen"
|
1493 |
|
1494 |
-
#: includes/Ajax/Post.php:
|
1495 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
1496 |
-
#: includes/B2S/Post/Item.php:
|
1497 |
-
#: includes/B2S/Settings/Item.php:
|
1498 |
-
#: includes/B2S/Ship/Item.php:
|
1499 |
msgid "delete"
|
1500 |
msgstr "löschen"
|
1501 |
|
1502 |
-
#: views/b2s/network.php:
|
1503 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1504 |
msgstr "Alle geplanten Beiträge für diesen Account unwiderruflich löschen."
|
1505 |
|
1506 |
-
#: views/b2s/network.php:
|
1507 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1508 |
msgstr ""
|
1509 |
"Lösche alle geplanten Beiträge von allen Benutzern, die diese Verbindung "
|
1510 |
"nutzen."
|
1511 |
|
1512 |
-
#: views/b2s/network.php:
|
1513 |
msgid "Delete Authorization"
|
1514 |
msgstr "Autorisierung löschen"
|
1515 |
|
@@ -1522,15 +1541,15 @@ msgstr "Entwurf löschen"
|
|
1522 |
msgid "Delete entries from the reporting"
|
1523 |
msgstr "Einträge aus dem Reporting löschen"
|
1524 |
|
1525 |
-
#: views/b2s/post.sched.php:
|
1526 |
msgid "Delete entries from the scheduling"
|
1527 |
msgstr "Einträge aus der Planung löschen"
|
1528 |
|
1529 |
-
#: includes/B2S/Post/Item.php:
|
1530 |
msgid "delete from reporting"
|
1531 |
msgstr "aus Reporting löschen"
|
1532 |
|
1533 |
-
#: views/b2s/network.php:
|
1534 |
msgid "Delete Profile"
|
1535 |
msgstr "Profil löschen"
|
1536 |
|
@@ -1538,7 +1557,7 @@ msgstr "Profil löschen"
|
|
1538 |
msgid "Delete scheduled posts"
|
1539 |
msgstr "Geplante Beiträge löschen"
|
1540 |
|
1541 |
-
#: includes/B2S/Post/Item.php:
|
1542 |
msgid "delete scheduling"
|
1543 |
msgstr "Planung löschen"
|
1544 |
|
@@ -1554,15 +1573,15 @@ msgstr "Entwurf löschen"
|
|
1554 |
msgid "Delete Social Media Posts"
|
1555 |
msgstr "Social Media Posts löschen"
|
1556 |
|
1557 |
-
#: includes/B2S/Ship/Item.php:357 includes/B2S/Ship/Item.php:
|
1558 |
msgid "Delete text"
|
1559 |
msgstr "Text löschen"
|
1560 |
|
1561 |
-
#: includes/Tools.php:
|
1562 |
msgid "Denmark"
|
1563 |
msgstr "Dänemark"
|
1564 |
|
1565 |
-
#: includes/B2S/Settings/Item.php:
|
1566 |
msgid "Description"
|
1567 |
msgstr "Beschreibung"
|
1568 |
|
@@ -1575,7 +1594,7 @@ msgstr "Beschreibung"
|
|
1575 |
msgid "Details"
|
1576 |
msgstr "Details"
|
1577 |
|
1578 |
-
#: includes/B2S/Settings/Item.php:
|
1579 |
msgid "Did you know?"
|
1580 |
msgstr "Wusstest Du schon?"
|
1581 |
|
@@ -1587,20 +1606,20 @@ msgstr "Vermisst Du etwas?"
|
|
1587 |
msgid "Did you miss something? Tell us!"
|
1588 |
msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
|
1589 |
|
1590 |
-
#: includes/B2S/AutoPost/Item.php:
|
1591 |
msgid "Disconnect"
|
1592 |
msgstr "Verbindung aufheben"
|
1593 |
|
1594 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1595 |
-
#: includes/B2S/Ship/Item.php:
|
1596 |
msgid "Do u want to post multiple images?"
|
1597 |
msgstr "Du möchtest mehrere Bilder posten?"
|
1598 |
|
1599 |
-
#: views/b2s/network.php:
|
1600 |
msgid "Do you really want to delete this authorization"
|
1601 |
msgstr "Soll die Autorisierung wirklich gelöscht werden?"
|
1602 |
|
1603 |
-
#: views/b2s/network.php:
|
1604 |
msgid "Do you really want to delete this profile"
|
1605 |
msgstr "Soll Dein Profil wirklich gelöscht werden?"
|
1606 |
|
@@ -1618,11 +1637,11 @@ msgid "Do you want to delete your scheduled posts?"
|
|
1618 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
1619 |
|
1620 |
#: views/b2s/curation.php:154 views/b2s/post.approve.php:109
|
1621 |
-
#: views/b2s/ship.php:
|
1622 |
msgid "Do you want to mark this post as published ?"
|
1623 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1624 |
|
1625 |
-
#: views/b2s/network.php:
|
1626 |
msgid "Download and activate the Blog2Social extension"
|
1627 |
msgstr "Lade und aktiviere die Blog2Social Extension"
|
1628 |
|
@@ -1631,17 +1650,17 @@ msgstr "Lade und aktiviere die Blog2Social Extension"
|
|
1631 |
msgid "draft"
|
1632 |
msgstr "Entwurf"
|
1633 |
|
1634 |
-
#: includes/Loader.php:
|
1635 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
1636 |
#: views/b2s/html/sidebar.php:116
|
1637 |
msgid "Drafts"
|
1638 |
msgstr "Entwürfe"
|
1639 |
|
1640 |
-
#: includes/B2S/Ship/Item.php:
|
1641 |
msgid "Duration"
|
1642 |
msgstr "Dauer"
|
1643 |
|
1644 |
-
#: views/b2s/network.php:
|
1645 |
#: views/b2s/html/header.php:348 views/prg/html/form.php:141
|
1646 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1647 |
#: views/prg/html/form.php:220
|
@@ -1652,7 +1671,7 @@ msgstr "E-Mail"
|
|
1652 |
msgid "E-Mail or Username"
|
1653 |
msgstr "E-Mail oder Benutzername"
|
1654 |
|
1655 |
-
#: views/b2s/network.php:
|
1656 |
msgid ""
|
1657 |
"Each license has a specified number of accounts you can connect per social "
|
1658 |
"media network."
|
@@ -1660,7 +1679,7 @@ msgstr ""
|
|
1660 |
"Jede Lizenz hat eine bestimmte Anzahl von Konten, die Du pro Social-Media-"
|
1661 |
"Netzwerk verbinden kannst."
|
1662 |
|
1663 |
-
#: includes/B2S/Post/Item.php:
|
1664 |
msgid "edit"
|
1665 |
msgstr "edit"
|
1666 |
|
@@ -1672,12 +1691,12 @@ msgstr "Gruppeneinstellungen bearbeiten"
|
|
1672 |
msgid "Edit Post"
|
1673 |
msgstr "Beitrag bearbeiten"
|
1674 |
|
1675 |
-
#: views/b2s/network.php:
|
1676 |
#: includes/B2S/Network/Item.php:198
|
1677 |
msgid "Edit Post Template"
|
1678 |
msgstr "Beitragsvorlage bearbeiten"
|
1679 |
|
1680 |
-
#: views/b2s/network.php:
|
1681 |
msgid ""
|
1682 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1683 |
"textarea and customize them as you like."
|
@@ -1685,7 +1704,7 @@ msgstr ""
|
|
1685 |
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
1686 |
"das Textfeld und passe sie nach Deinen Wünschen an."
|
1687 |
|
1688 |
-
#: views/b2s/settings.php:
|
1689 |
msgid ""
|
1690 |
"Edit the post templates for each social media network to turn your social "
|
1691 |
"media posts automatically into tailored posts for each network and community."
|
@@ -1708,11 +1727,11 @@ msgstr "Diese E-Mail Adresse ist bereits belegt"
|
|
1708 |
msgid "enable Auto-Posting"
|
1709 |
msgstr "Auto-Posting aktivieren"
|
1710 |
|
1711 |
-
#: includes/B2S/Ship/Item.php:
|
1712 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
1713 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
1714 |
|
1715 |
-
#: includes/B2S/Ship/Item.php:
|
1716 |
msgid "End Of Month"
|
1717 |
msgstr "Monatsende"
|
1718 |
|
@@ -1772,11 +1791,11 @@ msgstr "Gib einen Suchbegriff ein oder stelle eine Frage"
|
|
1772 |
msgid "Event"
|
1773 |
msgstr "Event"
|
1774 |
|
1775 |
-
#: includes/B2S/Ship/Item.php:
|
1776 |
msgid "Events"
|
1777 |
msgstr "Events"
|
1778 |
|
1779 |
-
#: views/b2s/settings.php:
|
1780 |
msgid ""
|
1781 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
1782 |
"post)."
|
@@ -1784,9 +1803,9 @@ msgstr ""
|
|
1784 |
"Textauszug: Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü "
|
1785 |
"deines Beitrags festgelegt)."
|
1786 |
|
1787 |
-
#: includes/B2S/AutoPost/Item.php:
|
1788 |
-
#: includes/B2S/RePost/Item.php:
|
1789 |
-
#: includes/B2S/RePost/Item.php:251
|
1790 |
msgid "Exclude (Do no post ...)"
|
1791 |
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
1792 |
|
@@ -1794,7 +1813,7 @@ msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
|
1794 |
msgid "Export as txt-file"
|
1795 |
msgstr "Als txt-Datei exportieren"
|
1796 |
|
1797 |
-
#: views/b2s/network.php:
|
1798 |
msgid "Facebook groups"
|
1799 |
msgstr "Facebook-Gruppen"
|
1800 |
|
@@ -1825,7 +1844,7 @@ msgstr ""
|
|
1825 |
msgid "Facebook Open Graph Meta Tags"
|
1826 |
msgstr "Facebook Open Graph Meta Tags"
|
1827 |
|
1828 |
-
#: views/b2s/network.php:
|
1829 |
msgid "Facebook pages"
|
1830 |
msgstr "Facebook-Seiten"
|
1831 |
|
@@ -1837,30 +1856,30 @@ msgstr "Fehler beim Laden der Standardeinstellungen"
|
|
1837 |
msgid "Failed to save"
|
1838 |
msgstr "Speichern fehlgeschlagen"
|
1839 |
|
1840 |
-
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:
|
1841 |
msgid "FAQ"
|
1842 |
msgstr "FAQ"
|
1843 |
|
1844 |
-
#: includes/Loader.php:
|
1845 |
#: views/b2s/html/sidebar.php:113
|
1846 |
msgid "Favorites"
|
1847 |
msgstr "Favoriten"
|
1848 |
|
1849 |
-
#: views/b2s/network.php:
|
1850 |
-
#: views/b2s/post.calendar.php:
|
1851 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1852 |
#: views/b2s/html/post.navbar.php:29 views/b2s/html/post.navbar.php:30
|
1853 |
msgid "filter"
|
1854 |
msgstr "Filter"
|
1855 |
|
1856 |
-
#: includes/B2S/AutoPost/Item.php:
|
1857 |
msgid ""
|
1858 |
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1859 |
msgstr ""
|
1860 |
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
1861 |
"automatisch veröffentlicht)"
|
1862 |
|
1863 |
-
#: includes/Tools.php:
|
1864 |
msgid "Finland"
|
1865 |
msgstr "Finnland"
|
1866 |
|
@@ -1874,13 +1893,13 @@ msgstr "Vorname"
|
|
1874 |
msgid "First Steps"
|
1875 |
msgstr "Erste Schritte"
|
1876 |
|
1877 |
-
#: views/b2s/ship.php:
|
1878 |
msgid "First, connect or select network before posting"
|
1879 |
msgstr ""
|
1880 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
1881 |
"Du den Beitrag teilst!"
|
1882 |
|
1883 |
-
#: includes/Tools.php:
|
1884 |
msgid "Flags"
|
1885 |
msgstr "Flaggen"
|
1886 |
|
@@ -1888,7 +1907,7 @@ msgstr "Flaggen"
|
|
1888 |
msgid "Follow us"
|
1889 |
msgstr "Folge uns"
|
1890 |
|
1891 |
-
#: includes/Tools.php:
|
1892 |
msgid "Food & Drink"
|
1893 |
msgstr "Essen & Trinken"
|
1894 |
|
@@ -1897,7 +1916,7 @@ msgstr "Essen & Trinken"
|
|
1897 |
msgid "For example your Wordpress Home Page"
|
1898 |
msgstr "zum Beispiel Deine Blogseite"
|
1899 |
|
1900 |
-
#: views/b2s/network.php:
|
1901 |
msgid ""
|
1902 |
"For example: If you purchase 5 Facebook groups, these additional 5 Facebook "
|
1903 |
"groups are available for all users. So, when 5 users are activated for the "
|
@@ -1909,7 +1928,7 @@ msgstr ""
|
|
1909 |
"oder Business-Lizenz aktiviert sind, kann jeder Nutzer 1 Facebook Gruppe "
|
1910 |
"verbinden, oder 1 Nutzer kann alle 5 Facebook-Gruppen verbinden."
|
1911 |
|
1912 |
-
#: views/b2s/network.php:
|
1913 |
msgid ""
|
1914 |
"For example: With the Pro license, each user can connect 5 Facebook accounts "
|
1915 |
"+ 5 Twitter accounts + 5 Instagram accounts + ..."
|
@@ -1925,14 +1944,14 @@ msgstr ""
|
|
1925 |
"Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
|
1926 |
"bevorzugtes benutzerdefiniertes Postformat auswählen."
|
1927 |
|
1928 |
-
#: includes/B2S/Ship/Save.php:
|
1929 |
msgid ""
|
1930 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
1931 |
msgstr ""
|
1932 |
"Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
|
1933 |
"zur Verfügung"
|
1934 |
|
1935 |
-
#: includes/B2S/Ship/Save.php:
|
1936 |
msgid ""
|
1937 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
1938 |
"Instant Sharing"
|
@@ -1940,8 +1959,8 @@ msgstr ""
|
|
1940 |
"Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht Facebook "
|
1941 |
"Instant Sharing zur Verfügung"
|
1942 |
|
1943 |
-
#: views/b2s/post.calendar.php:
|
1944 |
-
#: views/b2s/repost.php:
|
1945 |
msgid "for:"
|
1946 |
msgstr "für:"
|
1947 |
|
@@ -1957,7 +1976,7 @@ msgstr "Username oder Passwort vergessen?"
|
|
1957 |
msgid "Format"
|
1958 |
msgstr "Format"
|
1959 |
|
1960 |
-
#: includes/Tools.php:
|
1961 |
msgid "France"
|
1962 |
msgstr "Frankreich"
|
1963 |
|
@@ -1965,7 +1984,7 @@ msgstr "Frankreich"
|
|
1965 |
msgid "Frequently asked questions"
|
1966 |
msgstr "Oft gestellte Fragen (FAQ)"
|
1967 |
|
1968 |
-
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:
|
1969 |
msgid "Fri"
|
1970 |
msgstr "Fr"
|
1971 |
|
@@ -1973,11 +1992,11 @@ msgstr "Fr"
|
|
1973 |
msgid "Friday"
|
1974 |
msgstr "Freitag"
|
1975 |
|
1976 |
-
#: includes/B2S/Settings/Item.php:
|
1977 |
msgid "Frontpage Settings"
|
1978 |
msgstr "Frontpage Einstellungen"
|
1979 |
|
1980 |
-
#: views/b2s/settings.php:
|
1981 |
msgid "General"
|
1982 |
msgstr "Allgemein"
|
1983 |
|
@@ -1985,7 +2004,7 @@ msgstr "Allgemein"
|
|
1985 |
msgid "German"
|
1986 |
msgstr "Deutsch"
|
1987 |
|
1988 |
-
#: includes/Tools.php:
|
1989 |
msgid "Germany"
|
1990 |
msgstr "Deutschland"
|
1991 |
|
@@ -2002,7 +2021,7 @@ msgstr ""
|
|
2002 |
"Mehr Informationen erhältst Du in der <a href=\"%s\" target=\"_blank\">"
|
2003 |
"Social-Meta-Tag-Anleitung</a>."
|
2004 |
|
2005 |
-
#: views/b2s/curation.php:
|
2006 |
#, php-format
|
2007 |
msgid ""
|
2008 |
"Get more information on how to share a text post with hashtags, @mentions "
|
@@ -2025,7 +2044,7 @@ msgstr "Jetzt loslegen"
|
|
2025 |
msgid "Get the Blog2Social Browser Extension"
|
2026 |
msgstr "Blog2Social Browser Erweiterung"
|
2027 |
|
2028 |
-
#: views/b2s/ship.php:
|
2029 |
msgid "Give me more information"
|
2030 |
msgstr "Erhalte mehr Infomationen"
|
2031 |
|
@@ -2062,7 +2081,7 @@ msgstr ""
|
|
2062 |
"Die empfohlene Anzahl für das beste Ergebnis sind 5 Hashtags, die thematisch "
|
2063 |
"zum Inhalt Deines Beitrags passen. "
|
2064 |
|
2065 |
-
#: views/b2s/network.php:
|
2066 |
msgid ""
|
2067 |
"Google currently allows access to the API for all companies with up to 9 "
|
2068 |
"locations in their Google My Business Listings. However, Google plans to "
|
@@ -2074,7 +2093,7 @@ msgstr ""
|
|
2074 |
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
2075 |
"Business Brancheneinträgen zu erweitern."
|
2076 |
|
2077 |
-
#: views/b2s/network.php:
|
2078 |
msgid "Google My Business"
|
2079 |
msgstr "Google My Business"
|
2080 |
|
@@ -2085,15 +2104,15 @@ msgstr ""
|
|
2085 |
"Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
|
2086 |
"Infografiken."
|
2087 |
|
2088 |
-
#: includes/Tools.php:
|
2089 |
msgid "Great Britain"
|
2090 |
msgstr "Großbritannien"
|
2091 |
|
2092 |
-
#: includes/Tools.php:
|
2093 |
msgid "Greece"
|
2094 |
msgstr "Griechenland"
|
2095 |
|
2096 |
-
#: includes/Loader.php:
|
2097 |
#: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:676
|
2098 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
2099 |
msgid "Group"
|
@@ -2103,11 +2122,11 @@ msgstr "Gruppe"
|
|
2103 |
msgid "guide for server connection"
|
2104 |
msgstr "Serververbindungs-Guide"
|
2105 |
|
2106 |
-
#: includes/B2S/Network/Item.php:
|
2107 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
2108 |
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
2109 |
|
2110 |
-
#: includes/B2S/Ship/Item.php:
|
2111 |
msgid "Hashtags"
|
2112 |
msgstr "Hashtags"
|
2113 |
|
@@ -2115,7 +2134,7 @@ msgstr "Hashtags"
|
|
2115 |
msgid "Help & Community"
|
2116 |
msgstr "Hilfe & Community"
|
2117 |
|
2118 |
-
#: includes/Loader.php:
|
2119 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
2120 |
#: views/b2s/html/sidebar.ship.php:66
|
2121 |
msgid "Help & Support"
|
@@ -2159,7 +2178,7 @@ msgstr "Wie Du das Problemanalyse-Tool nutzt"
|
|
2159 |
msgid "https://www.blog2social.com"
|
2160 |
msgstr "https://www.blog2social.com"
|
2161 |
|
2162 |
-
#: includes/Tools.php:
|
2163 |
msgid "Hungary"
|
2164 |
msgstr "Ungarn"
|
2165 |
|
@@ -2215,14 +2234,16 @@ msgid ""
|
|
2215 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
2216 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
2217 |
"ask all your questions in the Blog2Social support community where you will "
|
2218 |
-
"receive help from our committed support team."
|
|
|
|
|
2219 |
msgstr ""
|
2220 |
"Wenn Dir Blog2Social gefällt, würden wir uns sehr über eine 5-Sterne-"
|
2221 |
"Bewertung freuen. Wenn es etwas gibt, wofür Du Unterstützung benötigst, "
|
2222 |
"kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
|
2223 |
"erhältst Hilfe von unserem engagierten Support-Team."
|
2224 |
|
2225 |
-
#: views/b2s/ship.php:
|
2226 |
msgid "Ignore & share"
|
2227 |
msgstr "Ignorieren & teilen"
|
2228 |
|
@@ -2234,37 +2255,38 @@ msgstr "Bild"
|
|
2234 |
msgid "image"
|
2235 |
msgstr "Bild"
|
2236 |
|
2237 |
-
#: views/b2s/post.calendar.php:
|
2238 |
-
#: views/b2s/repost.php:
|
2239 |
#: includes/B2S/Network/Item.php:752 includes/B2S/Network/Item.php:755
|
2240 |
-
#: includes/B2S/Settings/Item.php:
|
2241 |
msgid "Image cut out"
|
2242 |
msgstr "Bild zuschneiden"
|
2243 |
|
2244 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
2245 |
-
#: views/b2s/post.calendar.php:
|
2246 |
-
#: views/b2s/repost.php:
|
2247 |
-
#: includes/B2S/
|
|
|
2248 |
msgid "Image Post"
|
2249 |
msgstr "Bild-Beitrag"
|
2250 |
|
2251 |
-
#: includes/B2S/Settings/Item.php:
|
2252 |
#: includes/B2S/Ship/Image.php:94 includes/B2S/Ship/Image.php:96
|
2253 |
msgid "Image upload / Media Gallery"
|
2254 |
msgstr "Bild hochladen / Mediathek"
|
2255 |
|
2256 |
-
#: includes/B2S/Settings/Item.php:
|
2257 |
msgid "Image URL"
|
2258 |
msgstr "Bild Url"
|
2259 |
|
2260 |
-
#: views/b2s/post.calendar.php:
|
2261 |
-
#: views/b2s/repost.php:
|
2262 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2263 |
-
#: includes/B2S/Settings/Item.php:
|
2264 |
msgid "Image with frame"
|
2265 |
msgstr "Bild mit Rahmen"
|
2266 |
|
2267 |
-
#: includes/B2S/AutoPost/Item.php:
|
2268 |
msgid ""
|
2269 |
"Immediate Cross-Posting across all networks: Share an unlimited number of "
|
2270 |
"posts"
|
@@ -2272,7 +2294,7 @@ msgstr ""
|
|
2272 |
"Immediate Cross-Posting über alle Netzwerke hinweg: Teile eine unbegrenzte "
|
2273 |
"Anzahl an Beiträgen"
|
2274 |
|
2275 |
-
#: includes/B2S/AutoPost/Item.php:
|
2276 |
msgid "immediately"
|
2277 |
msgstr "sofort"
|
2278 |
|
@@ -2280,11 +2302,11 @@ msgstr "sofort"
|
|
2280 |
msgid "immediately after publishing"
|
2281 |
msgstr "sofort nach Veröffentlichung"
|
2282 |
|
2283 |
-
#: views/b2s/ship.php:
|
2284 |
msgid "Important infomations about XING groups"
|
2285 |
msgstr "Wichtige Information zu XING-Gruppen"
|
2286 |
|
2287 |
-
#: includes/B2S/AutoPost/Item.php:
|
2288 |
msgid ""
|
2289 |
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
2290 |
"as your primary Twitter account for auto-posting."
|
@@ -2292,18 +2314,31 @@ msgstr ""
|
|
2292 |
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
2293 |
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden"
|
2294 |
|
2295 |
-
#: views/b2s/curation.php:
|
2296 |
#, php-format
|
|
|
|
|
|
|
|
|
2297 |
msgid ""
|
2298 |
"In the <a href=\"%s\">Network Settings</a> you can define network selections "
|
2299 |
-
"to select and save your most
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2300 |
msgstr ""
|
2301 |
"Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
|
2302 |
"Gruppierung festlegen."
|
2303 |
|
2304 |
-
#: includes/B2S/AutoPost/Item.php:
|
2305 |
-
#: includes/B2S/RePost/Item.php:
|
2306 |
-
#: includes/B2S/RePost/Item.php:250
|
2307 |
msgid "Include (Post only...)"
|
2308 |
msgstr "enthält (nur Beiträge, mit ...)"
|
2309 |
|
@@ -2316,21 +2351,21 @@ msgstr "nur <a href=\"%s\" target=\"_blank\">Favoriten</a> hinzufügen"
|
|
2316 |
msgid "include posts with images only"
|
2317 |
msgstr "nur Beiträge mit Bildern hinzufügen"
|
2318 |
|
2319 |
-
#: includes/Tools.php:
|
2320 |
msgid "India"
|
2321 |
msgstr "Indien"
|
2322 |
|
2323 |
-
#: includes/Tools.php:
|
2324 |
msgid "Indonesia"
|
2325 |
msgstr "Indonesien"
|
2326 |
|
2327 |
#: includes/B2S/PostBox.php:165 includes/B2S/PostBox.php:168
|
2328 |
-
#: includes/B2S/PostBox.php:253 views/b2s/network.php:
|
2329 |
-
#: views/b2s/ship.php:
|
2330 |
-
#: includes/B2S/AutoPost/Item.php:
|
2331 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:211
|
2332 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2333 |
-
#: includes/B2S/Ship/Item.php:
|
2334 |
msgid "Info"
|
2335 |
msgstr "Info"
|
2336 |
|
@@ -2341,17 +2376,17 @@ msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
|
2341 |
|
2342 |
#: includes/B2S/Ship/Item.php:465 includes/B2S/Ship/Item.php:585
|
2343 |
#: includes/B2S/Ship/Item.php:615 includes/B2S/Ship/Item.php:643
|
2344 |
-
#: includes/B2S/Ship/Item.php:671
|
2345 |
msgid ""
|
2346 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2347 |
"network"
|
2348 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
2349 |
|
2350 |
-
#: includes/B2S/Ship/Item.php:355 includes/B2S/Ship/Item.php:
|
2351 |
msgid "Insert full-text"
|
2352 |
msgstr "ganzen Text einfügen"
|
2353 |
|
2354 |
-
#: includes/B2S/Settings/Item.php:
|
2355 |
msgid ""
|
2356 |
"Insert white frames to show the whole image in your timeline. All image "
|
2357 |
"information will be shown in your timeline."
|
@@ -2363,7 +2398,7 @@ msgstr ""
|
|
2363 |
msgid "Inspect Post"
|
2364 |
msgstr "Link prüfen"
|
2365 |
|
2366 |
-
#: includes/Loader.php:
|
2367 |
#, php-format
|
2368 |
msgid ""
|
2369 |
"Instagram published your post without text. Please see the following <a "
|
@@ -2372,20 +2407,20 @@ msgstr ""
|
|
2372 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
2373 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
2374 |
|
2375 |
-
#: views/b2s/settings.php:
|
2376 |
msgid "Instant Caching for Facebook Link Posts"
|
2377 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2378 |
|
2379 |
-
#: views/b2s/network.php:
|
2380 |
msgid "Instant Caching for Link Posts"
|
2381 |
msgstr "Instant Caching für Link-Beiträge"
|
2382 |
|
2383 |
-
#: includes/Loader.php:
|
2384 |
#: views/b2s/html/sidebar.php:119
|
2385 |
msgid "Instant Sharing"
|
2386 |
msgstr "Instant Sharing"
|
2387 |
|
2388 |
-
#: views/b2s/network.php:
|
2389 |
msgid "Invalid Data! Please try again."
|
2390 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
2391 |
|
@@ -2397,28 +2432,28 @@ msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
|
2397 |
msgid "Invalid email address"
|
2398 |
msgstr "Ungültige E-Mail Adresse"
|
2399 |
|
2400 |
-
#: includes/Tools.php:
|
2401 |
msgid "Ireland"
|
2402 |
msgstr "Irland"
|
2403 |
|
2404 |
-
#: includes/B2S/Post/Item.php:
|
2405 |
msgid "is currently being processed by the network"
|
2406 |
msgstr "wird vom Netzwerk verarbeitet"
|
2407 |
|
2408 |
-
#: includes/Tools.php:
|
2409 |
msgid "is determined automatically"
|
2410 |
msgstr "wird automatisch ermittelt"
|
2411 |
|
2412 |
-
#: includes/B2S/Post/Item.php:
|
2413 |
#, php-format
|
2414 |
msgid "is waiting to shared by %s"
|
2415 |
msgstr "wartet darauf von %s geteilt zu werden"
|
2416 |
|
2417 |
-
#: includes/Tools.php:
|
2418 |
msgid "Italy"
|
2419 |
msgstr "Italien"
|
2420 |
|
2421 |
-
#: includes/Tools.php:
|
2422 |
msgid "Japan"
|
2423 |
msgstr "Japan"
|
2424 |
|
@@ -2426,7 +2461,7 @@ msgstr "Japan"
|
|
2426 |
msgid "Job"
|
2427 |
msgstr "Job"
|
2428 |
|
2429 |
-
#: includes/B2S/Ship/Item.php:
|
2430 |
msgid "Jobs & Projects"
|
2431 |
msgstr "Stellenangebote & Projekte"
|
2432 |
|
@@ -2451,11 +2486,11 @@ msgstr "Keywords"
|
|
2451 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2452 |
msgstr "Keywords mit Komma getrennt (z.B.: Blog2Social, PR-Gateway)"
|
2453 |
|
2454 |
-
#: views/b2s/settings.php:
|
2455 |
msgid "Keywords: The tags you have set in your post."
|
2456 |
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2457 |
|
2458 |
-
#: includes/Tools.php:
|
2459 |
msgid "Korea"
|
2460 |
msgstr "Korea"
|
2461 |
|
@@ -2463,7 +2498,7 @@ msgstr "Korea"
|
|
2463 |
msgid "Language"
|
2464 |
msgstr "Sprache"
|
2465 |
|
2466 |
-
#: includes/B2S/Post/Item.php:
|
2467 |
#, php-format
|
2468 |
msgid "last modified by %s"
|
2469 |
msgstr "zuletzt von %s bearbeitet"
|
@@ -2496,7 +2531,7 @@ msgstr "letzte Beiträge"
|
|
2496 |
msgid "latest share by %s"
|
2497 |
msgstr "zuletzt von %s geteilt"
|
2498 |
|
2499 |
-
#: includes/B2S/Ship/Save.php:
|
2500 |
msgid "Learn how it works"
|
2501 |
msgstr "mehr erfahren"
|
2502 |
|
@@ -2516,8 +2551,8 @@ msgstr ""
|
|
2516 |
"Erfahre, wie Du individuelle Beste Zeiten für Deine Social Media Planung und "
|
2517 |
"Deinen Auto-Poster einrichten und anwenden kannst."
|
2518 |
|
2519 |
-
#: views/b2s/network.php:
|
2520 |
-
#: includes/B2S/Ship/Item.php:
|
2521 |
msgid "Learn more"
|
2522 |
msgstr "Mehr erfahren"
|
2523 |
|
@@ -2531,16 +2566,16 @@ msgstr ""
|
|
2531 |
"Guide</a>\" mehr Informationen darüber, wie Du Social-Media-Beiträge teilen "
|
2532 |
"kannst."
|
2533 |
|
2534 |
-
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:
|
2535 |
-
#: includes/B2S/Ship/Item.php:
|
2536 |
msgid "Learn more about this"
|
2537 |
msgstr "Erfahre mehr darüber"
|
2538 |
|
2539 |
-
#: views/b2s/network.php:
|
2540 |
msgid "Legend"
|
2541 |
msgstr "Legende"
|
2542 |
|
2543 |
-
#: includes/Tools.php:
|
2544 |
#: views/b2s/html/sidebar.ship.php:29
|
2545 |
msgid "License"
|
2546 |
msgstr "Lizenz"
|
@@ -2550,18 +2585,18 @@ msgid "Licensing"
|
|
2550 |
msgstr "Lizenzen"
|
2551 |
|
2552 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2553 |
-
#: includes/B2S/Ship/Item.php:
|
2554 |
msgid "Link"
|
2555 |
msgstr "Link"
|
2556 |
|
2557 |
-
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:
|
2558 |
-
#: views/b2s/post.sched.php:
|
2559 |
-
#: includes/B2S/
|
2560 |
-
#: views/b2s/html/footer.php:160
|
2561 |
msgid "Link Post"
|
2562 |
msgstr "Link-Beitrag"
|
2563 |
|
2564 |
-
#: views/b2s/network.php:
|
2565 |
msgid "LinkedIn pages"
|
2566 |
msgstr "LinkedIn-Seiten"
|
2567 |
|
@@ -2573,7 +2608,7 @@ msgstr "LinkedIn Post Inspector"
|
|
2573 |
msgid "List"
|
2574 |
msgstr "Liste"
|
2575 |
|
2576 |
-
#: views/b2s/network.php:
|
2577 |
#: views/b2s/partials/post-edit-modal.php:42
|
2578 |
msgid "Load Best Times"
|
2579 |
msgstr "Lade beste Zeiten"
|
@@ -2590,24 +2625,24 @@ msgstr "Lade Standardeinstellungen"
|
|
2590 |
msgid "load Draft"
|
2591 |
msgstr "Entwurf aufrufen"
|
2592 |
|
2593 |
-
#: views/b2s/ship.php:
|
2594 |
msgid "Load My Times Settings"
|
2595 |
msgstr "Meine Zeit-Einstellungen laden"
|
2596 |
|
2597 |
-
#: views/b2s/curation.draft.php:47 views/b2s/network.php:
|
2598 |
-
#: views/b2s/network.php:
|
2599 |
-
#: views/b2s/network.php:
|
2600 |
-
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:
|
2601 |
-
#: views/b2s/post.calendar.php:
|
2602 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
2603 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
2604 |
-
#: views/b2s/post.sched.php:
|
2605 |
-
#: views/b2s/ship.php:
|
2606 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
2607 |
msgid "Loading..."
|
2608 |
msgstr "Wird geladen..."
|
2609 |
|
2610 |
-
#: views/b2s/network.php:
|
2611 |
#, php-format
|
2612 |
msgid ""
|
2613 |
"Login failed. Please check your login data for typos and please check your "
|
@@ -2632,8 +2667,8 @@ msgstr ""
|
|
2632 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
2633 |
"Benutzernamen und Dein Password!"
|
2634 |
|
2635 |
-
#: views/b2s/network.php:
|
2636 |
-
#: views/b2s/ship.php:
|
2637 |
msgid ""
|
2638 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
2639 |
"on your profile."
|
@@ -2645,7 +2680,7 @@ msgstr ""
|
|
2645 |
msgid "Logout"
|
2646 |
msgstr "Ausloggen"
|
2647 |
|
2648 |
-
#: includes/B2S/Ship/Item.php:
|
2649 |
#, php-format
|
2650 |
msgid "max. %s Tags"
|
2651 |
msgstr "max. %s Tags"
|
@@ -2654,16 +2689,16 @@ msgstr "max. %s Tags"
|
|
2654 |
msgid "Message"
|
2655 |
msgstr "Nachricht"
|
2656 |
|
2657 |
-
#: includes/B2S/Settings/Item.php:
|
2658 |
msgid "Meta Tags Settings for Posts and Pages"
|
2659 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
2660 |
|
2661 |
-
#: includes/Tools.php:
|
2662 |
msgid "Mexico"
|
2663 |
msgstr "Mexiko"
|
2664 |
|
2665 |
-
#: includes/B2S/Ship/Item.php:
|
2666 |
-
#: includes/B2S/Ship/Item.php:
|
2667 |
#: views/b2s/partials/post-edit-modal.php:82
|
2668 |
#: views/b2s/partials/post-edit-modal.php:83
|
2669 |
#: views/b2s/partials/post-edit-modal.php:84
|
@@ -2671,11 +2706,11 @@ msgstr "Mexiko"
|
|
2671 |
msgid "min"
|
2672 |
msgstr "min"
|
2673 |
|
2674 |
-
#: includes/B2S/AutoPost/Item.php:
|
2675 |
msgid "minutes"
|
2676 |
msgstr "Minuten"
|
2677 |
|
2678 |
-
#: includes/B2S/Network/Item.php:
|
2679 |
msgid ""
|
2680 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
2681 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
@@ -2684,7 +2719,7 @@ msgstr ""
|
|
2684 |
"Bitte aktiviere serverseitig die PHP \"mbstring\" Erweiterung, um die "
|
2685 |
"Zeichenbegrenzungsfunktion zu nutzen."
|
2686 |
|
2687 |
-
#: views/b2s/network.php:
|
2688 |
msgid "modify"
|
2689 |
msgstr "modify"
|
2690 |
|
@@ -2700,7 +2735,7 @@ msgstr "Pin-Board bearbeiten"
|
|
2700 |
msgid "Modify subreddit"
|
2701 |
msgstr "Modify subreddit"
|
2702 |
|
2703 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
2704 |
msgid "Mon"
|
2705 |
msgstr "Mo"
|
2706 |
|
@@ -2708,15 +2743,15 @@ msgstr "Mo"
|
|
2708 |
msgid "Monday"
|
2709 |
msgstr "Montag"
|
2710 |
|
2711 |
-
#: includes/B2S/Ship/Item.php:
|
2712 |
msgid "Month"
|
2713 |
msgstr "Monat"
|
2714 |
|
2715 |
-
#: includes/B2S/Ship/Item.php:
|
2716 |
msgid "monthly"
|
2717 |
msgstr "monatlich"
|
2718 |
|
2719 |
-
#: includes/B2S/Ship/Item.php:
|
2720 |
msgid "Months"
|
2721 |
msgstr "Monate"
|
2722 |
|
@@ -2728,12 +2763,12 @@ msgstr "Mehr"
|
|
2728 |
msgid "More Information"
|
2729 |
msgstr "Weitere Informationen"
|
2730 |
|
2731 |
-
#: views/b2s/autopost.php:76 views/b2s/repost.php:
|
2732 |
-
#: includes/B2S/AutoPost/Item.php:
|
2733 |
msgid "More information"
|
2734 |
msgstr "Zusätzliche Informationen"
|
2735 |
|
2736 |
-
#: views/b2s/curation.php:
|
2737 |
#, php-format
|
2738 |
msgid ""
|
2739 |
"More information on how to create a network selection in the guide <a "
|
@@ -2748,11 +2783,11 @@ msgstr ""
|
|
2748 |
msgid "More users and accounts"
|
2749 |
msgstr "Mehr Benutzer und Accounts"
|
2750 |
|
2751 |
-
#: views/b2s/network.php:
|
2752 |
msgid "move"
|
2753 |
msgstr "verschieben"
|
2754 |
|
2755 |
-
#: views/b2s/network.php:
|
2756 |
msgid "Move the connection to another network collection."
|
2757 |
msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
2758 |
|
@@ -2764,7 +2799,7 @@ msgstr "Herr"
|
|
2764 |
msgid "Mrs."
|
2765 |
msgstr "Frau"
|
2766 |
|
2767 |
-
#: views/b2s/network.php:
|
2768 |
msgid "My Profile"
|
2769 |
msgstr "Mein Profil"
|
2770 |
|
@@ -2782,8 +2817,8 @@ msgstr "Name"
|
|
2782 |
msgid "Need more?"
|
2783 |
msgstr "Benötigst Du mehr?"
|
2784 |
|
2785 |
-
#: views/b2s/curation.php:173 views/b2s/post.calendar.php:
|
2786 |
-
#: views/b2s/ship.php:
|
2787 |
msgid "Need to schedule your posts?"
|
2788 |
msgstr "Du möchtest Deine Beiträge planen?"
|
2789 |
|
@@ -2791,19 +2826,19 @@ msgstr "Du möchtest Deine Beiträge planen?"
|
|
2791 |
msgid "Needed"
|
2792 |
msgstr "Erforderlich"
|
2793 |
|
2794 |
-
#: includes/Tools.php:
|
2795 |
msgid "Netherlands"
|
2796 |
msgstr "Niederlande"
|
2797 |
|
2798 |
-
#: views/b2s/network.php:
|
2799 |
msgid "Network collection"
|
2800 |
msgstr "Netzwerkgruppierung"
|
2801 |
|
2802 |
-
#: views/b2s/ship.php:
|
2803 |
msgid "network connected"
|
2804 |
msgstr "Netzwerk verbunden"
|
2805 |
|
2806 |
-
#: views/b2s/network.php:
|
2807 |
msgid "Network connections"
|
2808 |
msgstr "Netzwerkverbindungen"
|
2809 |
|
@@ -2827,30 +2862,30 @@ msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
|
2827 |
msgid "Network does not support image for profiles"
|
2828 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
2829 |
|
2830 |
-
#: includes/B2S/Network/Item.php:
|
2831 |
-
#: includes/B2S/Network/Item.php:
|
2832 |
msgid "Network limit"
|
2833 |
msgstr "Netzwerkbegrenzung"
|
2834 |
|
2835 |
-
#: includes/B2S/PostBox.php:146 includes/B2S/AutoPost/Item.php:
|
2836 |
-
#: includes/B2S/AutoPost/Item.php:
|
2837 |
msgid "Network settings"
|
2838 |
msgstr "Netzwerkeinstellungen"
|
2839 |
|
2840 |
-
#: includes/Loader.php:
|
2841 |
msgid "Networks"
|
2842 |
msgstr "Netzwerke"
|
2843 |
|
2844 |
-
#: includes/Loader.php:
|
2845 |
#: views/b2s/support.php:22
|
2846 |
msgid "NEW"
|
2847 |
msgstr "Neu"
|
2848 |
|
2849 |
-
#: includes/B2S/AutoPost/Item.php:
|
2850 |
msgid "new posts"
|
2851 |
msgstr "Neue Beiträge"
|
2852 |
|
2853 |
-
#: includes/Tools.php:
|
2854 |
msgid "New Zealand"
|
2855 |
msgstr "Neuseeland"
|
2856 |
|
@@ -2864,11 +2899,11 @@ msgid "next share by %s"
|
|
2864 |
msgstr "wird als nächstes von %s geteilt"
|
2865 |
|
2866 |
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:160
|
2867 |
-
#: views/b2s/network.php:
|
2868 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
2869 |
#: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
|
2870 |
-
#: views/b2s/post.sched.php:
|
2871 |
-
#: views/b2s/ship.php:
|
2872 |
msgid "NO"
|
2873 |
msgstr "NEIN"
|
2874 |
|
@@ -2885,7 +2920,7 @@ msgstr ""
|
|
2885 |
msgid "No credit card required"
|
2886 |
msgstr "Keine Kreditkarte erforderlich"
|
2887 |
|
2888 |
-
#: includes/Tools.php:
|
2889 |
msgid "No emojis found"
|
2890 |
msgstr "Keine Ergebnisse"
|
2891 |
|
@@ -2903,7 +2938,7 @@ msgstr ""
|
|
2903 |
"Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen "
|
2904 |
"Filterkriterien."
|
2905 |
|
2906 |
-
#: includes/B2S/Settings/Item.php:
|
2907 |
msgid "no URL Shortener"
|
2908 |
msgstr "kein URL Shortener"
|
2909 |
|
@@ -2915,7 +2950,7 @@ msgstr "Keinen Blog-Nutzer gefunden"
|
|
2915 |
msgid "Nope, maybe later"
|
2916 |
msgstr "Nein, vielleicht später"
|
2917 |
|
2918 |
-
#: includes/Tools.php:
|
2919 |
msgid "Norway"
|
2920 |
msgstr "Norwegen"
|
2921 |
|
@@ -2923,11 +2958,11 @@ msgstr "Norwegen"
|
|
2923 |
msgid "not yet shared"
|
2924 |
msgstr "noch nicht geteilt"
|
2925 |
|
2926 |
-
#: views/b2s/ship.php:
|
2927 |
msgid "Note: "
|
2928 |
msgstr "Hinweis: "
|
2929 |
|
2930 |
-
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:
|
2931 |
msgid ""
|
2932 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
2933 |
"Networks do not allow postings from local installations."
|
@@ -2935,7 +2970,11 @@ msgstr ""
|
|
2935 |
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
2936 |
"Fragen wende Dich bitte an unseren Support."
|
2937 |
|
2938 |
-
#:
|
|
|
|
|
|
|
|
|
2939 |
msgid "Notifications"
|
2940 |
msgstr "Benachrichtigungen"
|
2941 |
|
@@ -2945,8 +2984,8 @@ msgid "Number"
|
|
2945 |
msgstr "Nummer"
|
2946 |
|
2947 |
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:84
|
2948 |
-
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:
|
2949 |
-
#: views/b2s/repost.php:
|
2950 |
msgid "Number of entries"
|
2951 |
msgstr "Anzahl der Einträge"
|
2952 |
|
@@ -2954,27 +2993,27 @@ msgstr "Anzahl der Einträge"
|
|
2954 |
msgid "Number of posts"
|
2955 |
msgstr "Anzahl der Beiträge"
|
2956 |
|
2957 |
-
#: includes/B2S/Ship/Item.php:
|
2958 |
msgid "Number of repeats"
|
2959 |
msgstr "Anzahl der Wiederholungen"
|
2960 |
|
2961 |
-
#: includes/Tools.php:
|
2962 |
msgid "Objects"
|
2963 |
msgstr "Objekte"
|
2964 |
|
2965 |
-
#: includes/B2S/Ship/Item.php:
|
2966 |
msgid "Offer"
|
2967 |
msgstr "Angebot"
|
2968 |
|
2969 |
#: includes/B2S/Ship/Item.php:471 includes/B2S/Ship/Item.php:591
|
2970 |
#: includes/B2S/Ship/Item.php:621 includes/B2S/Ship/Item.php:649
|
2971 |
-
#: includes/B2S/Ship/Item.php:677
|
2972 |
msgid "OG Meta description"
|
2973 |
msgstr "OG Beschreibung"
|
2974 |
|
2975 |
#: includes/B2S/Ship/Item.php:470 includes/B2S/Ship/Item.php:590
|
2976 |
#: includes/B2S/Ship/Item.php:620 includes/B2S/Ship/Item.php:648
|
2977 |
-
#: includes/B2S/Ship/Item.php:676
|
2978 |
msgid "OG Meta title"
|
2979 |
msgstr "OG Titel"
|
2980 |
|
@@ -2998,7 +3037,7 @@ msgstr " auf"
|
|
2998 |
msgid "on Blog"
|
2999 |
msgstr "auf dem Blog"
|
3000 |
|
3001 |
-
#: views/b2s/ship.php:
|
3002 |
#: includes/B2S/Post/Item.php:580
|
3003 |
msgid "on blog"
|
3004 |
msgstr "auf dem Blog"
|
@@ -3012,13 +3051,13 @@ msgstr "nur Beiträge die maximal %s mal geteilt wurden"
|
|
3012 |
msgid "Open Graph and Twitter Card Tags"
|
3013 |
msgstr "Open Graph und Twitter Card Tags"
|
3014 |
|
3015 |
-
#: includes/Loader.php:
|
3016 |
msgid "or"
|
3017 |
msgstr "oder"
|
3018 |
|
3019 |
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:206
|
3020 |
-
#: views/b2s/curation.php:245 views/b2s/post.calendar.php:
|
3021 |
-
#: views/b2s/ship.php:
|
3022 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
3023 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
3024 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
@@ -3034,7 +3073,7 @@ msgstr ""
|
|
3034 |
"Testversion von Blog2Social Premium</a> (keine Zahlungsinformationen "
|
3035 |
"erforderlich)"
|
3036 |
|
3037 |
-
#: includes/B2S/Support/Check/System.php:
|
3038 |
msgid "or higher"
|
3039 |
msgstr "oder höher"
|
3040 |
|
@@ -3042,15 +3081,15 @@ msgstr "oder höher"
|
|
3042 |
msgid "Other topics"
|
3043 |
msgstr "Sonstiges"
|
3044 |
|
3045 |
-
#: views/b2s/ship.php:
|
3046 |
msgid "Overwrite Draft"
|
3047 |
msgstr "Entwurf überschreiben"
|
3048 |
|
3049 |
-
#: includes/B2S/Ship/Item.php:
|
3050 |
msgid "own period"
|
3051 |
msgstr "Eigener Zeitraum"
|
3052 |
|
3053 |
-
#: includes/Loader.php:
|
3054 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:190
|
3055 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:327
|
3056 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Portale.php:39
|
@@ -3062,7 +3101,7 @@ msgstr "Seite"
|
|
3062 |
msgid "Pages and groups"
|
3063 |
msgstr "Seiten und Gruppen"
|
3064 |
|
3065 |
-
#: views/b2s/network.php:
|
3066 |
msgid "Password"
|
3067 |
msgstr "Passwort"
|
3068 |
|
@@ -3072,12 +3111,12 @@ msgstr "Passwort"
|
|
3072 |
msgid "Personal"
|
3073 |
msgstr "Privat"
|
3074 |
|
3075 |
-
#: views/b2s/autopost.php:59 views/b2s/settings.php:
|
3076 |
-
#: includes/B2S/Settings/Item.php:
|
3077 |
msgid "Personal Time Zone"
|
3078 |
msgstr "Persönliche Zeitzone"
|
3079 |
|
3080 |
-
#: includes/Tools.php:
|
3081 |
msgid "Philippines"
|
3082 |
msgstr "Philippinen"
|
3083 |
|
@@ -3090,7 +3129,7 @@ msgstr "Telefonnummer"
|
|
3090 |
msgid "Photo Post"
|
3091 |
msgstr "Bild-Beitrag"
|
3092 |
|
3093 |
-
#: views/b2s/network.php:
|
3094 |
msgid "Pinterest has rejected the connection to your blog"
|
3095 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
3096 |
|
@@ -3106,7 +3145,7 @@ msgstr "Tarife & Preise"
|
|
3106 |
msgid "Please contact our support!"
|
3107 |
msgstr "Bitte kontaktiere unseren Support!"
|
3108 |
|
3109 |
-
#: views/b2s/settings.php:
|
3110 |
msgid ""
|
3111 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
3112 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -3119,7 +3158,7 @@ msgstr ""
|
|
3119 |
"sicherzustellen, dass Facebook immer die aktuellen Meta Daten Deines "
|
3120 |
"Blogbeitrags zieht."
|
3121 |
|
3122 |
-
#: views/b2s/network.php:
|
3123 |
msgid ""
|
3124 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
3125 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -3135,8 +3174,8 @@ msgstr ""
|
|
3135 |
msgid "Please enter a valid link"
|
3136 |
msgstr "Bitte gib einen gültigen Link ein"
|
3137 |
|
3138 |
-
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:
|
3139 |
-
#: includes/B2S/Ship/Item.php:
|
3140 |
msgid ""
|
3141 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3142 |
"allowed to post identical or substantially similar content to multiple "
|
@@ -3147,7 +3186,7 @@ msgstr ""
|
|
3147 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3148 |
"mehreren Accounts zu posten."
|
3149 |
|
3150 |
-
#: includes/Loader.php:
|
3151 |
msgid ""
|
3152 |
"Please make sure that your post, page or custom post type is published or "
|
3153 |
"scheduled to be published on this blog before you try to post it with "
|
@@ -3160,7 +3199,7 @@ msgstr ""
|
|
3160 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
3161 |
"werden mit dem Posting-ID-Link geteilt."
|
3162 |
|
3163 |
-
#: views/b2s/network.php:
|
3164 |
#, php-format
|
3165 |
msgid ""
|
3166 |
"Please make sure to log in with your account which manages your groups and "
|
@@ -3171,7 +3210,7 @@ msgstr ""
|
|
3171 |
"verwaltet, und <a href=\"%s\" target=\"_blank\">folgen dieser Anleitung, um "
|
3172 |
"alle Deine Gruppen auszuwählen</a>."
|
3173 |
|
3174 |
-
#: views/b2s/network.php:
|
3175 |
#, php-format
|
3176 |
msgid ""
|
3177 |
"Please make sure to log in with your account which manages your pages and <a "
|
@@ -3181,7 +3220,7 @@ msgstr ""
|
|
3181 |
"Deine Seiten verwaltet und <a href=\"%s\" target=\"_blank\">folge diesem "
|
3182 |
"Guide, um alle Deine Seiten auswählen zu können</a>."
|
3183 |
|
3184 |
-
#: views/b2s/network.php:
|
3185 |
msgid ""
|
3186 |
"Please make sure to use your original Pinterest login data (email and "
|
3187 |
"password). Social Login via Facebook or Google login data will not work here."
|
@@ -3197,7 +3236,7 @@ msgstr ""
|
|
3197 |
msgid "Please Note"
|
3198 |
msgstr "Hinweis"
|
3199 |
|
3200 |
-
#: includes/B2S/Settings/Item.php:
|
3201 |
msgid ""
|
3202 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
3203 |
"pixels and an aspect ratio of 1:1."
|
@@ -3205,7 +3244,7 @@ msgstr ""
|
|
3205 |
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
3206 |
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
3207 |
|
3208 |
-
#: includes/B2S/Ship/Item.php:
|
3209 |
msgid ""
|
3210 |
"Please note: Google will shut down Google+ for all private accounts "
|
3211 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3253,7 +3292,7 @@ msgstr ""
|
|
3253 |
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
3254 |
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
3255 |
|
3256 |
-
#: includes/B2S/Settings/Item.php:
|
3257 |
msgid ""
|
3258 |
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
3259 |
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
@@ -3293,14 +3332,14 @@ msgstr ""
|
|
3293 |
"Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
|
3294 |
"geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
|
3295 |
|
3296 |
-
#: includes/B2S/Ship/Save.php:
|
3297 |
msgid ""
|
3298 |
"Please note: You post has to be marked as public to be posted in a group."
|
3299 |
msgstr ""
|
3300 |
"Um in eine Gruppe zu teilen, muss Dein Beitrag auf Öffentlich gestellt "
|
3301 |
"werden."
|
3302 |
|
3303 |
-
#: includes/B2S/Ship/Item.php:
|
3304 |
msgid ""
|
3305 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3306 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3339,7 +3378,7 @@ msgstr ""
|
|
3339 |
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
3340 |
"manuell deaktiviert hast."
|
3341 |
|
3342 |
-
#: views/b2s/network.php:
|
3343 |
#, php-format
|
3344 |
msgid ""
|
3345 |
"Please note: Your Instagram Business Account will be connected with "
|
@@ -3354,12 +3393,12 @@ msgstr ""
|
|
3354 |
" Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
|
3355 |
"href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden.</a>"
|
3356 |
|
3357 |
-
#: views/b2s/network.php:
|
3358 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
3359 |
msgstr ""
|
3360 |
"Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
|
3361 |
|
3362 |
-
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:
|
3363 |
msgid "Please see"
|
3364 |
msgstr "siehe"
|
3365 |
|
@@ -3367,20 +3406,20 @@ msgstr "siehe"
|
|
3367 |
msgid "Please see FAQ"
|
3368 |
msgstr "Siehe FAQ"
|
3369 |
|
3370 |
-
#: includes/B2S/AutoPost/Item.php:
|
3371 |
msgid "Please select a post type"
|
3372 |
msgstr "Bitte wählen Sie einen Post Type aus"
|
3373 |
|
3374 |
-
#: includes/B2S/AutoPost/Item.php:
|
3375 |
msgid "Please select a social media network"
|
3376 |
msgstr "Bitte wählen Sie ein Netzwerk aus"
|
3377 |
|
3378 |
-
#: views/b2s/network.php:
|
3379 |
msgid "Please select your correct server location and connect again."
|
3380 |
msgstr ""
|
3381 |
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
|
3382 |
|
3383 |
-
#: includes/B2S/Ship/Save.php:
|
3384 |
msgid "Please share your post now"
|
3385 |
msgstr "Bitte teile Deinen Beitrag jetzt."
|
3386 |
|
@@ -3389,21 +3428,21 @@ msgstr "Bitte teile Deinen Beitrag jetzt."
|
|
3389 |
msgid "please upgrade"
|
3390 |
msgstr "Bitte upgraden"
|
3391 |
|
3392 |
-
#: views/b2s/settings.php:
|
3393 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
3394 |
msgstr ""
|
3395 |
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
3396 |
"entlasten."
|
3397 |
|
3398 |
-
#: includes/B2S/Support/Check/System.php:
|
3399 |
msgid "Plugin Warnings:"
|
3400 |
msgstr "Plugin Warnungen:"
|
3401 |
|
3402 |
-
#: includes/Tools.php:
|
3403 |
msgid "Poland"
|
3404 |
msgstr "Polen"
|
3405 |
|
3406 |
-
#: includes/Tools.php:
|
3407 |
msgid "Portugal"
|
3408 |
msgstr "Portugal"
|
3409 |
|
@@ -3416,7 +3455,11 @@ msgstr "Beitrag"
|
|
3416 |
msgid "Post a Press Release"
|
3417 |
msgstr "Pressemitteilung veröffentlichen"
|
3418 |
|
3419 |
-
#:
|
|
|
|
|
|
|
|
|
3420 |
msgid "Post Content"
|
3421 |
msgstr "Post-Inhalt"
|
3422 |
|
@@ -3424,12 +3467,12 @@ msgstr "Post-Inhalt"
|
|
3424 |
msgid "Post every"
|
3425 |
msgstr "Poste alle"
|
3426 |
|
3427 |
-
#: views/b2s/post.calendar.php:
|
3428 |
-
#: views/b2s/repost.php:
|
3429 |
msgid "Post Format"
|
3430 |
msgstr "Postformat"
|
3431 |
|
3432 |
-
#: includes/B2S/Ship/Item.php:340
|
3433 |
msgid "post format"
|
3434 |
msgstr "Postformat"
|
3435 |
|
@@ -3446,8 +3489,8 @@ msgstr ""
|
|
3446 |
"Facebook-Seiten und -Gruppen"
|
3447 |
|
3448 |
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:193
|
3449 |
-
#: views/b2s/post.calendar.php:
|
3450 |
-
#: views/b2s/ship.php:
|
3451 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
3452 |
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
|
3453 |
#: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
|
@@ -3455,11 +3498,11 @@ msgstr ""
|
|
3455 |
msgid "Post on pages and groups"
|
3456 |
msgstr "Poste auf Seiten und in Gruppen"
|
3457 |
|
3458 |
-
#: views/b2s/settings.php:
|
3459 |
msgid "Post Templates"
|
3460 |
msgstr "Beitragsvorlagen"
|
3461 |
|
3462 |
-
#: includes/B2S/AutoPost/Item.php:
|
3463 |
msgid "Post Types"
|
3464 |
msgstr "Posttypen"
|
3465 |
|
@@ -3476,7 +3519,7 @@ msgstr "Veröffentlichung auf Social Media Seiten und Gruppen in Facebook"
|
|
3476 |
msgid "Posts"
|
3477 |
msgstr "Posts"
|
3478 |
|
3479 |
-
#: includes/B2S/AutoPost/Item.php:
|
3480 |
#, php-format
|
3481 |
msgid ""
|
3482 |
"Posts for Facebook Profiles will be shown on your \"Site & Blog Content\" "
|
@@ -3491,7 +3534,7 @@ msgstr ""
|
|
3491 |
"Facebook-Profil gesendet werden. Mehr Informationen erhältst Du in dem <a "
|
3492 |
"href=\"%s\" target=\"_blank\">\"Instant Sharing\"-Guide</a>."
|
3493 |
|
3494 |
-
#: includes/B2S/AutoPost/Item.php:
|
3495 |
msgid "posts per day"
|
3496 |
msgstr "Posts pro Tag"
|
3497 |
|
@@ -3516,15 +3559,15 @@ msgstr ""
|
|
3516 |
"Presseportalen und Nachrichtenseiten für die Veröffentlichung Deines "
|
3517 |
"Beitrags auswählen."
|
3518 |
|
3519 |
-
#: includes/Loader.php:
|
3520 |
msgid "PR-Service"
|
3521 |
msgstr "PR-Service"
|
3522 |
|
3523 |
-
#: includes/Loader.php:
|
3524 |
msgid "PREMIUM"
|
3525 |
msgstr "PREMIUM"
|
3526 |
|
3527 |
-
#: includes/Loader.php:
|
3528 |
msgid "Premium"
|
3529 |
msgstr "Premium"
|
3530 |
|
@@ -3536,19 +3579,19 @@ msgstr "Premium Support"
|
|
3536 |
msgid "Press"
|
3537 |
msgstr "Presse"
|
3538 |
|
3539 |
-
#: includes/B2S/Network/Item.php:
|
3540 |
-
#: includes/B2S/Network/Item.php:
|
3541 |
-
#: includes/B2S/Network/Item.php:
|
3542 |
-
#: includes/B2S/Network/Item.php:
|
3543 |
-
#: includes/B2S/Network/Item.php:
|
3544 |
-
#: includes/B2S/Network/Item.php:
|
3545 |
-
#: includes/B2S/Network/Item.php:
|
3546 |
-
#: includes/B2S/Network/Item.php:
|
3547 |
-
#: includes/B2S/Network/Item.php:
|
3548 |
msgid "Preview"
|
3549 |
msgstr "Vorschau"
|
3550 |
|
3551 |
-
#: views/b2s/settings.php:
|
3552 |
msgid ""
|
3553 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
3554 |
"website/ blog."
|
@@ -3560,17 +3603,17 @@ msgstr ""
|
|
3560 |
msgid "Privacy Policy"
|
3561 |
msgstr "Datenschutzerklärung"
|
3562 |
|
3563 |
-
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:
|
3564 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:190
|
3565 |
#: includes/B2S/Network/Item.php:195 includes/B2S/Ship/Image.php:96
|
3566 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
3567 |
-
#: includes/B2S/Ship/Item.php:
|
3568 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:39
|
3569 |
#: includes/B2S/Ship/Portale.php:51
|
3570 |
msgid "PRO"
|
3571 |
msgstr "PRO"
|
3572 |
|
3573 |
-
#: views/b2s/network.php:
|
3574 |
msgid "Pro: 5 (per user)"
|
3575 |
msgstr "Pro: 5 (pro Nutzer)"
|
3576 |
|
@@ -3578,7 +3621,7 @@ msgstr "Pro: 5 (pro Nutzer)"
|
|
3578 |
msgid "Product"
|
3579 |
msgstr "Produkt"
|
3580 |
|
3581 |
-
#: includes/Loader.php:
|
3582 |
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
|
3583 |
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
3584 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:257
|
@@ -3588,7 +3631,7 @@ msgstr "Produkt"
|
|
3588 |
msgid "Profile"
|
3589 |
msgstr "Profil"
|
3590 |
|
3591 |
-
#: views/b2s/ship.php:
|
3592 |
msgid "Profiles | Pages | Groups"
|
3593 |
msgstr "Profile | Seiten | Gruppen"
|
3594 |
|
@@ -3605,13 +3648,13 @@ msgstr "Veröffentlichen"
|
|
3605 |
msgid "Publish on PR-Gateway"
|
3606 |
msgstr "Beitrag über PR-Gateway veröffentlichen"
|
3607 |
|
3608 |
-
#: includes/B2S/AutoPost/Item.php:
|
3609 |
msgid "publish with a delay of"
|
3610 |
msgstr "Veröffentliche mit einer Verzögerung von"
|
3611 |
|
3612 |
-
#: views/b2s/curation.php:138 views/b2s/post.calendar.php:
|
3613 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:
|
3614 |
-
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:
|
3615 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3616 |
msgid "published"
|
3617 |
msgstr "veröffentlicht"
|
@@ -3636,24 +3679,24 @@ msgstr "BEWERTE ES!"
|
|
3636 |
msgid "Rate it!"
|
3637 |
msgstr "Bewerte uns!"
|
3638 |
|
3639 |
-
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:
|
3640 |
msgid "Re-Share"
|
3641 |
msgstr "Wiederholt geteilt"
|
3642 |
|
3643 |
-
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:
|
3644 |
msgid "re-share"
|
3645 |
msgstr "erneut teilen"
|
3646 |
|
3647 |
-
#: includes/Loader.php:
|
3648 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/sidebar.php:72
|
3649 |
msgid "Re-Share Posts"
|
3650 |
msgstr "Beiträge wiederholt teilen"
|
3651 |
|
3652 |
-
#: views/b2s/ship.php:
|
3653 |
msgid "Re-share this Post"
|
3654 |
msgstr "Diesen Beitrag nochmal teilen"
|
3655 |
|
3656 |
-
#: views/b2s/curation.php:131 views/b2s/ship.php:
|
3657 |
#: includes/B2S/Post/Item.php:454
|
3658 |
msgid "Re-share this post"
|
3659 |
msgstr "Diesen Beitrag nochmal teilen"
|
@@ -3672,15 +3715,15 @@ msgstr "Weiterlesen"
|
|
3672 |
msgid "Rebrandly"
|
3673 |
msgstr "Rebrandly"
|
3674 |
|
3675 |
-
#: includes/Tools.php:
|
3676 |
msgid "Recently Used"
|
3677 |
msgstr "Zuletzt verwendet"
|
3678 |
|
3679 |
-
#: includes/B2S/Network/Item.php:
|
3680 |
msgid "recommended length"
|
3681 |
msgstr "Empfohlene Länge"
|
3682 |
|
3683 |
-
#: views/b2s/ship.php:
|
3684 |
msgid "refresh authorization"
|
3685 |
msgstr "Autorisierung aktualisieren"
|
3686 |
|
@@ -3696,17 +3739,17 @@ msgstr "Regelmäßige Updates und bevorzugter Support per E-Mail und Telefon."
|
|
3696 |
msgid "reload"
|
3697 |
msgstr "neu laden"
|
3698 |
|
3699 |
-
#: includes/B2S/Ship/Item.php:
|
3700 |
msgid "Repeats"
|
3701 |
msgstr "Wiederholen"
|
3702 |
|
3703 |
-
#: includes/B2S/Ship/Item.php:
|
3704 |
msgid "Repeats every (days)"
|
3705 |
msgstr "Wiederholt sich alle X Tage"
|
3706 |
|
3707 |
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:202
|
3708 |
-
#: views/b2s/post.calendar.php:
|
3709 |
-
#: views/b2s/ship.php:
|
3710 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
3711 |
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
|
3712 |
#: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
|
@@ -3735,15 +3778,15 @@ msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
|
|
3735 |
msgid "Reporting with links to already published posts"
|
3736 |
msgstr "Reporting mit Links zu bereits veröffentlichten Beiträgen"
|
3737 |
|
3738 |
-
#: includes/B2S/Ship/Item.php:
|
3739 |
msgid "Request"
|
3740 |
msgstr "Anfrage"
|
3741 |
|
3742 |
-
#: includes/B2S/Ship/Item.php:
|
3743 |
msgid "required"
|
3744 |
msgstr "erforderlich"
|
3745 |
|
3746 |
-
#: views/b2s/ship.php:
|
3747 |
msgid "requires image"
|
3748 |
msgstr "Bild benötigt"
|
3749 |
|
@@ -3751,7 +3794,7 @@ msgstr "Bild benötigt"
|
|
3751 |
msgid "reset"
|
3752 |
msgstr "zurücksetzen"
|
3753 |
|
3754 |
-
#: includes/B2S/Settings/Item.php:
|
3755 |
msgid "Reset all page and post meta data"
|
3756 |
msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
3757 |
|
@@ -3759,13 +3802,13 @@ msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
|
3759 |
msgid "reset password"
|
3760 |
msgstr "Passwort zurücksetzen"
|
3761 |
|
3762 |
-
#: includes/B2S/Support/Check/System.php:
|
3763 |
-
#: includes/B2S/Support/Check/System.php:
|
3764 |
msgid "resolve conflict"
|
3765 |
msgstr "Konflikt beheben"
|
3766 |
|
3767 |
-
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:
|
3768 |
-
#: includes/B2S/Ship/Save.php:
|
3769 |
msgid "Retweet"
|
3770 |
msgstr "Retweet"
|
3771 |
|
@@ -3781,7 +3824,7 @@ msgstr ""
|
|
3781 |
"verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
|
3782 |
"aus Deinem WordPress heraus planen."
|
3783 |
|
3784 |
-
#: includes/Tools.php:
|
3785 |
msgid "Romania"
|
3786 |
msgstr "Rumänien"
|
3787 |
|
@@ -3789,7 +3832,7 @@ msgstr "Rumänien"
|
|
3789 |
msgid "RSS import & auto-post"
|
3790 |
msgstr "RSS-Import & Auto-Poster"
|
3791 |
|
3792 |
-
#: includes/Tools.php:
|
3793 |
msgid "Russia"
|
3794 |
msgstr "Russland"
|
3795 |
|
@@ -3797,7 +3840,7 @@ msgstr "Russland"
|
|
3797 |
msgid "Sales Support"
|
3798 |
msgstr "Kontaktiere unser Vertriebsteam"
|
3799 |
|
3800 |
-
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:
|
3801 |
msgid "Sat"
|
3802 |
msgstr "Sa"
|
3803 |
|
@@ -3805,16 +3848,16 @@ msgstr "Sa"
|
|
3805 |
msgid "Saturday"
|
3806 |
msgstr "Samstag"
|
3807 |
|
3808 |
-
#: includes/B2S/AutoPost/Item.php:
|
3809 |
msgid "Save"
|
3810 |
msgstr " Speichern"
|
3811 |
|
3812 |
-
#: views/b2s/network.php:
|
3813 |
-
#: includes/B2S/Network/Item.php:587 includes/B2S/Settings/Item.php:
|
3814 |
msgid "save"
|
3815 |
msgstr "speichern"
|
3816 |
|
3817 |
-
#: includes/B2S/Ship/Item.php:
|
3818 |
msgid "Save as best time for this network"
|
3819 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
3820 |
|
@@ -3822,7 +3865,7 @@ msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
|
3822 |
msgid "Save As Draft"
|
3823 |
msgstr "als Entwurf speichern"
|
3824 |
|
3825 |
-
#: views/b2s/ship.php:
|
3826 |
#: includes/B2S/Curation/View.php:110
|
3827 |
msgid "Save as Draft"
|
3828 |
msgstr "als Entwurf speichern"
|
@@ -3835,11 +3878,11 @@ msgstr ""
|
|
3835 |
"Speicher beim Surfen Links aus Deinem Browser und teile sie, wann immer Du "
|
3836 |
"möchtest"
|
3837 |
|
3838 |
-
#: views/b2s/ship.php:
|
3839 |
msgid "Save network selection"
|
3840 |
msgstr "Netzwerkauswahl speichern"
|
3841 |
|
3842 |
-
#: views/b2s/autopost.php:27 views/b2s/settings.php:
|
3843 |
msgid "save..."
|
3844 |
msgstr "speichere Daten..."
|
3845 |
|
@@ -3856,8 +3899,8 @@ msgid "Saved as draft."
|
|
3856 |
msgstr "Als Entwurf gespeichert."
|
3857 |
|
3858 |
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:199
|
3859 |
-
#: views/b2s/post.calendar.php:
|
3860 |
-
#: views/b2s/ship.php:
|
3861 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
3862 |
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
|
3863 |
#: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
|
@@ -3885,27 +3928,27 @@ msgstr ""
|
|
3885 |
msgid "Schedule curated content"
|
3886 |
msgstr "Kuratierte Inhalte planen"
|
3887 |
|
3888 |
-
#: views/b2s/curation.php:179 views/b2s/post.calendar.php:
|
3889 |
-
#: views/b2s/ship.php:
|
3890 |
msgid "Schedule for specific dates"
|
3891 |
msgstr "Für bestimmte Termine planen"
|
3892 |
|
3893 |
-
#: views/b2s/curation.php:182 views/b2s/post.calendar.php:
|
3894 |
-
#: views/b2s/ship.php:
|
3895 |
msgid "Schedule post recurrently"
|
3896 |
msgstr "Beitrag mehrfach planen"
|
3897 |
|
3898 |
-
#: includes/B2S/Ship/Item.php:
|
3899 |
msgid "Schedule Recurrent Post"
|
3900 |
msgstr "regelmäßig Planen"
|
3901 |
|
3902 |
-
#: views/b2s/ship.php:
|
3903 |
msgid "Schedule your post"
|
3904 |
msgstr "Beitrag planen"
|
3905 |
|
3906 |
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:198
|
3907 |
-
#: views/b2s/post.calendar.php:
|
3908 |
-
#: views/b2s/ship.php:
|
3909 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
3910 |
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
|
3911 |
#: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
|
@@ -3916,8 +3959,8 @@ msgstr ""
|
|
3916 |
"oder nach einem regelmäßigen Muster"
|
3917 |
|
3918 |
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:196
|
3919 |
-
#: views/b2s/post.calendar.php:
|
3920 |
-
#: views/b2s/ship.php:
|
3921 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
3922 |
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
|
3923 |
#: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
|
@@ -3933,22 +3976,22 @@ msgstr ""
|
|
3933 |
"Plane Deine Beiträge zu den besten Zeiten in jedem Netzwerk: einmal, "
|
3934 |
"mehrmals oder wiederkehrend"
|
3935 |
|
3936 |
-
#: views/b2s/post.calendar.php:
|
3937 |
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:381
|
3938 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3939 |
msgid "scheduled"
|
3940 |
msgstr "geplant"
|
3941 |
|
3942 |
-
#: includes/B2S/AutoPost/Item.php:
|
3943 |
msgid "Scheduled Auto-Posting"
|
3944 |
msgstr "Scheduled Auto-Posting"
|
3945 |
|
3946 |
-
#: includes/B2S/Post/Item.php:
|
3947 |
#, php-format
|
3948 |
msgid "scheduled by %s"
|
3949 |
msgstr "von %s vorgeplant "
|
3950 |
|
3951 |
-
#: includes/B2S/Ship/Save.php:
|
3952 |
msgid "scheduled on"
|
3953 |
msgstr "geplant für"
|
3954 |
|
@@ -3956,12 +3999,12 @@ msgstr "geplant für"
|
|
3956 |
msgid "scheduled post(s)"
|
3957 |
msgstr "geplante Beiträge"
|
3958 |
|
3959 |
-
#: includes/Loader.php:
|
3960 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
3961 |
msgid "Scheduled Posts"
|
3962 |
msgstr "geplante Beiträge"
|
3963 |
|
3964 |
-
#: views/b2s/network.php:
|
3965 |
msgid "scheduled posts"
|
3966 |
msgstr "geplante Beiträge"
|
3967 |
|
@@ -3970,15 +4013,15 @@ msgstr "geplante Beiträge"
|
|
3970 |
msgid "scheduled social media posts"
|
3971 |
msgstr "geplante Beiträge"
|
3972 |
|
3973 |
-
#: views/b2s/ship.php:
|
3974 |
msgid "scroll to bottom"
|
3975 |
msgstr "zum Seitenende"
|
3976 |
|
3977 |
-
#: views/b2s/ship.php:
|
3978 |
msgid "scroll to top"
|
3979 |
msgstr "zum Seitenanfang"
|
3980 |
|
3981 |
-
#: includes/Tools.php:
|
3982 |
msgid "Search"
|
3983 |
msgstr "Suche"
|
3984 |
|
@@ -3999,11 +4042,11 @@ msgstr ""
|
|
3999 |
"Netzwerkfilter. Bearbeite geplante Beiträge oder füge neue Social-Media-"
|
4000 |
"Beiträge per Drag & Drop hinzu."
|
4001 |
|
4002 |
-
#: views/b2s/post.calendar.php:
|
4003 |
msgid "select"
|
4004 |
msgstr "auswählen"
|
4005 |
|
4006 |
-
#: views/b2s/post.calendar.php:
|
4007 |
msgid "Select a post"
|
4008 |
msgstr "Wähle einen Beitrag aus"
|
4009 |
|
@@ -4011,31 +4054,35 @@ msgstr "Wähle einen Beitrag aus"
|
|
4011 |
msgid "Select a user"
|
4012 |
msgstr "Blog-Nutzer auswählen"
|
4013 |
|
4014 |
-
#: includes/B2S/AutoPost/Item.php:
|
4015 |
msgid "Select all"
|
4016 |
msgstr "Alle auswählen"
|
4017 |
|
4018 |
-
#: includes/B2S/Post/Item.php:736 includes/B2S/Post/Item.php:
|
4019 |
-
#: includes/B2S/Post/Item.php:
|
4020 |
msgid "select all"
|
4021 |
msgstr "alle auswählen"
|
4022 |
|
|
|
|
|
|
|
|
|
4023 |
#: views/prg/ship.php:36
|
4024 |
msgid "Select Image"
|
4025 |
msgstr "Bild auswählen"
|
4026 |
|
4027 |
-
#: views/b2s/curation.php:
|
4028 |
msgid "Select image"
|
4029 |
msgstr "Bild auswählen"
|
4030 |
|
4031 |
-
#: views/b2s/post.calendar.php:
|
4032 |
-
#: views/b2s/repost.php:
|
4033 |
msgid "Select image for"
|
4034 |
msgstr "Wähle Bild aus für"
|
4035 |
|
4036 |
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:201
|
4037 |
-
#: views/b2s/post.calendar.php:
|
4038 |
-
#: views/b2s/ship.php:
|
4039 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
4040 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
4041 |
#: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
|
@@ -4054,8 +4101,8 @@ msgstr ""
|
|
4054 |
"erstellen."
|
4055 |
|
4056 |
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:200
|
4057 |
-
#: views/b2s/post.calendar.php:
|
4058 |
-
#: views/b2s/ship.php:
|
4059 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
4060 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
4061 |
#: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
|
@@ -4080,21 +4127,25 @@ msgstr ""
|
|
4080 |
"Wähle zwischen Link- oder Bild-Post pro Netzwerk, um das optimale Format für "
|
4081 |
"Deinen Beitrag zu wählen"
|
4082 |
|
4083 |
-
#: includes/B2S/PostBox.php:253 includes/B2S/AutoPost/Item.php:
|
4084 |
#: includes/B2S/Curation/View.php:73 includes/B2S/RePost/Item.php:159
|
4085 |
msgid "Select network collection:"
|
4086 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
4087 |
|
4088 |
-
#: views/b2s/autopost.php:48 views/b2s/settings.php:
|
4089 |
#: includes/B2S/Ship/Image.php:100
|
4090 |
msgid "Select or upload an image from media gallery"
|
4091 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
4092 |
|
4093 |
-
#: views/b2s/network.php:
|
4094 |
-
#: views/b2s/ship.php:
|
4095 |
msgid "Select Pinboard"
|
4096 |
msgstr "Pinnwand auswählen"
|
4097 |
|
|
|
|
|
|
|
|
|
4098 |
#: views/b2s/html/footer.php:328
|
4099 |
msgid ""
|
4100 |
"Select the content that will be automatically pre-filled in your Twitter "
|
@@ -4110,17 +4161,17 @@ msgstr ""
|
|
4110 |
msgid "Select the preferred custom post format for your posts"
|
4111 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
4112 |
|
4113 |
-
#: includes/B2S/AutoPost/Item.php:
|
4114 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
4115 |
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
4116 |
|
4117 |
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:73
|
4118 |
-
#: views/b2s/repost.php:
|
4119 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
4120 |
msgid "Select Twitter profile:"
|
4121 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
4122 |
|
4123 |
-
#: includes/B2S/AutoPost/Item.php:
|
4124 |
msgid ""
|
4125 |
"Select your preferred network collection for autoposting. This collection "
|
4126 |
"defines the social media accounts on which the autoposter will share your "
|
@@ -4133,11 +4184,20 @@ msgstr ""
|
|
4133 |
msgid "selected date"
|
4134 |
msgstr "ausgewähltes Datum"
|
4135 |
|
4136 |
-
#: views/b2s/network.php:
|
4137 |
msgid "Server-Location"
|
4138 |
msgstr "Serverstandort"
|
4139 |
|
4140 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4141 |
msgid ""
|
4142 |
"Set up your autoposter to automatically share your imported posts, pages and "
|
4143 |
"custom post types on your social media channels."
|
@@ -4145,7 +4205,7 @@ msgstr ""
|
|
4145 |
"Nutze den Auto-Poster, um Deine importierten Beiträge, Seiten und Cutsom "
|
4146 |
"Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
4147 |
|
4148 |
-
#: includes/B2S/AutoPost/Item.php:
|
4149 |
msgid ""
|
4150 |
"Set up your autoposter to automatically share your new or updated posts, "
|
4151 |
"pages and custom post types on your social media channels."
|
@@ -4153,18 +4213,18 @@ msgstr ""
|
|
4153 |
"Nutze den Auto-Poster, um Deine neuen oder aktualisierten Beiträge, Seiten "
|
4154 |
"und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
4155 |
|
4156 |
-
#: includes/Loader.php:
|
4157 |
-
#: includes/Loader.php:
|
4158 |
#: views/b2s/html/sidebar.php:137
|
4159 |
msgid "Settings"
|
4160 |
msgstr "Einstellungen"
|
4161 |
|
4162 |
-
#: views/b2s/ship.php:
|
4163 |
#: includes/B2S/Curation/View.php:113
|
4164 |
msgid "Share"
|
4165 |
msgstr "Teilen"
|
4166 |
|
4167 |
-
#: includes/B2S/Post/Item.php:
|
4168 |
msgid "share"
|
4169 |
msgstr "teilen"
|
4170 |
|
@@ -4198,11 +4258,11 @@ msgstr ""
|
|
4198 |
"Teile importierte RSS-Feeds automatisch, um mehr Variationen für Deine "
|
4199 |
"Inhalte zu erhalten."
|
4200 |
|
4201 |
-
#: views/b2s/ship.php:
|
4202 |
msgid "Share new post on Social Media"
|
4203 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
4204 |
|
4205 |
-
#: includes/B2S/Ship/Item.php:
|
4206 |
msgid "Share Now"
|
4207 |
msgstr "Sofort teilen"
|
4208 |
|
@@ -4215,8 +4275,8 @@ msgid "Share on multiple accounts per network"
|
|
4215 |
msgstr "Teile auf mehreren Netzwerk-Konten "
|
4216 |
|
4217 |
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:194
|
4218 |
-
#: views/b2s/post.calendar.php:
|
4219 |
-
#: views/b2s/ship.php:
|
4220 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
4221 |
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
|
4222 |
#: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
|
@@ -4246,11 +4306,11 @@ msgstr ""
|
|
4246 |
msgid "Share text posts:"
|
4247 |
msgstr "Teile Text-Beiträge:"
|
4248 |
|
4249 |
-
#: includes/B2S/AutoPost/Item.php:
|
4250 |
msgid "share up to"
|
4251 |
msgstr "teile bis zu"
|
4252 |
|
4253 |
-
#: includes/Loader.php:
|
4254 |
msgid "Share Website & Blog Content"
|
4255 |
msgstr "Webseiten- & Blog Content teilen"
|
4256 |
|
@@ -4287,7 +4347,7 @@ msgstr ""
|
|
4287 |
"Teile Deine Beiträge auf Seiten und in Gruppen auf Facebook, LinkedIn, Xing,"
|
4288 |
" VK und Medium."
|
4289 |
|
4290 |
-
#: views/b2s/post.calendar.php:
|
4291 |
msgid "Share your WordPress posts, pages or products"
|
4292 |
msgstr "Teile Deine WordPress-Beiträge, -Seiten oder -Produkte"
|
4293 |
|
@@ -4295,7 +4355,7 @@ msgstr "Teile Deine WordPress-Beiträge, -Seiten oder -Produkte"
|
|
4295 |
msgid "Shared"
|
4296 |
msgstr "Wie oft geteilt?"
|
4297 |
|
4298 |
-
#: includes/B2S/Post/Item.php:
|
4299 |
#, php-format
|
4300 |
msgid "shared by %s"
|
4301 |
msgstr "von %s geteilt"
|
@@ -4304,7 +4364,7 @@ msgstr "von %s geteilt"
|
|
4304 |
msgid "shared by user"
|
4305 |
msgstr "geteilt von Nutzer"
|
4306 |
|
4307 |
-
#: includes/Loader.php:
|
4308 |
#: views/b2s/html/sidebar.php:125
|
4309 |
msgid "Shared Posts"
|
4310 |
msgstr "geteilte Beiträge"
|
@@ -4321,7 +4381,7 @@ msgstr "geteilt auf Netzwerk"
|
|
4321 |
msgid "Sharing"
|
4322 |
msgstr "Teilen"
|
4323 |
|
4324 |
-
#: includes/B2S/Post/Item.php:
|
4325 |
#, php-format
|
4326 |
msgid "sharing in progress by %s"
|
4327 |
msgstr "wird gerade von %s geteilt"
|
@@ -4348,7 +4408,7 @@ msgstr "Poste auf mehrere Accounts pro Netzwerk"
|
|
4348 |
msgid "Sharing-Debugger"
|
4349 |
msgstr "Sharing-Debugger"
|
4350 |
|
4351 |
-
#: includes/B2S/Settings/Item.php:
|
4352 |
msgid "Shortcodes"
|
4353 |
msgstr "Shortcodes"
|
4354 |
|
@@ -4368,7 +4428,7 @@ msgstr "Zeige Aktivität ab"
|
|
4368 |
msgid "Show all"
|
4369 |
msgstr "alle anzeigen"
|
4370 |
|
4371 |
-
#: views/b2s/post.calendar.php:
|
4372 |
msgid "show all"
|
4373 |
msgstr "alles anzeigen"
|
4374 |
|
@@ -4380,7 +4440,7 @@ msgstr "Alle Premium-Features anzeigen"
|
|
4380 |
msgid "show calendar"
|
4381 |
msgstr "Planungskalender anzeigen"
|
4382 |
|
4383 |
-
#: includes/Loader.php:
|
4384 |
msgid "show details"
|
4385 |
msgstr "siehe Details"
|
4386 |
|
@@ -4396,36 +4456,36 @@ msgstr "Versionen und Preise anzeigen"
|
|
4396 |
msgid "Sign in"
|
4397 |
msgstr "Anmelden"
|
4398 |
|
4399 |
-
#: views/b2s/network.php:
|
4400 |
msgid "Sign in to Pinterest"
|
4401 |
msgstr "Melde Dich bei Pinterest an"
|
4402 |
|
4403 |
-
#: includes/Loader.php:
|
4404 |
msgid "Site & Blog Content"
|
4405 |
msgstr "Seiten & Blog Content"
|
4406 |
|
4407 |
-
#: includes/Tools.php:
|
4408 |
msgid "Slovakia"
|
4409 |
msgstr "Slowakei"
|
4410 |
|
4411 |
-
#: views/b2s/network.php:
|
4412 |
-
#: includes/B2S/AutoPost/Item.php:
|
4413 |
#: includes/B2S/Network/Item.php:179 includes/B2S/Network/Item.php:188
|
4414 |
#: includes/B2S/Network/Item.php:198 includes/B2S/Network/Item.php:299
|
4415 |
#: includes/B2S/Network/Item.php:369 includes/B2S/Network/Item.php:435
|
4416 |
-
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:
|
4417 |
-
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:
|
4418 |
#: includes/B2S/Ship/Portale.php:37 views/b2s/html/post.navbar.php:18
|
4419 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/post.navbar.php:23
|
4420 |
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
4421 |
msgid "SMART"
|
4422 |
msgstr "SMART"
|
4423 |
|
4424 |
-
#: views/b2s/network.php:
|
4425 |
msgid "Smart: 3 (per user)"
|
4426 |
msgstr "Smart: 3 (pro Nutzer)"
|
4427 |
|
4428 |
-
#: includes/Tools.php:
|
4429 |
msgid "Smileys & People"
|
4430 |
msgstr "Smileys & Personen"
|
4431 |
|
@@ -4433,7 +4493,7 @@ msgstr "Smileys & Personen"
|
|
4433 |
msgid "Sniply"
|
4434 |
msgstr "Sniply"
|
4435 |
|
4436 |
-
#: views/b2s/ship.php:
|
4437 |
msgid "Social Accounts"
|
4438 |
msgstr "Social Media Konten"
|
4439 |
|
@@ -4450,7 +4510,7 @@ msgstr "Auto-Posting und automatische Planung für Social Media Beiträge"
|
|
4450 |
msgid "Social Media Calendar"
|
4451 |
msgstr "Social Media Kalender"
|
4452 |
|
4453 |
-
#: views/b2s/settings.php:
|
4454 |
msgid "Social Media Networks"
|
4455 |
msgstr "Social-Media-Netzwerke"
|
4456 |
|
@@ -4458,12 +4518,12 @@ msgstr "Social-Media-Netzwerke"
|
|
4458 |
msgid "Social Media Post"
|
4459 |
msgstr "Social Media Post"
|
4460 |
|
4461 |
-
#: includes/Loader.php:
|
4462 |
msgid "Social Media Post Drafts"
|
4463 |
msgstr "Social Media Posts Entwürfe"
|
4464 |
|
4465 |
-
#: includes/Loader.php:
|
4466 |
-
#: views/b2s/curation.php:
|
4467 |
msgid "Social Media Posts"
|
4468 |
msgstr "Social Media Posts"
|
4469 |
|
@@ -4471,15 +4531,15 @@ msgstr "Social Media Posts"
|
|
4471 |
msgid "social media posts ready to be shared"
|
4472 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
4473 |
|
4474 |
-
#: views/b2s/ship.php:
|
4475 |
msgid "Social Media Scheduling & Sharing"
|
4476 |
msgstr "Beitrag auf Social Media planen und teilen"
|
4477 |
|
4478 |
-
#: views/b2s/settings.php:
|
4479 |
msgid "Social Media Time Settings"
|
4480 |
msgstr "Social-Media-Zeiteinstellungen"
|
4481 |
|
4482 |
-
#: views/b2s/settings.php:
|
4483 |
msgid "Social Meta Data"
|
4484 |
msgstr "Social Meta Angaben"
|
4485 |
|
@@ -4491,7 +4551,7 @@ msgstr "Social Meta Tags Einstellungen"
|
|
4491 |
msgid "Social Networks"
|
4492 |
msgstr "Soziale Netzwerke"
|
4493 |
|
4494 |
-
#: views/b2s/settings.php:
|
4495 |
#, php-format
|
4496 |
msgid ""
|
4497 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
@@ -4525,19 +4585,19 @@ msgstr ""
|
|
4525 |
msgid "sort"
|
4526 |
msgstr "sortieren"
|
4527 |
|
4528 |
-
#: views/b2s/post.calendar.php:
|
4529 |
msgid "Sort by network"
|
4530 |
msgstr "Sortiere nach Netzwerk"
|
4531 |
|
4532 |
-
#: includes/Tools.php:
|
4533 |
msgid "South Africa"
|
4534 |
msgstr "Südafrika"
|
4535 |
|
4536 |
-
#: includes/Tools.php:
|
4537 |
msgid "Spain"
|
4538 |
msgstr "Spanien"
|
4539 |
|
4540 |
-
#: includes/B2S/Ship/Item.php:
|
4541 |
msgid "Start date"
|
4542 |
msgstr "Startdatum"
|
4543 |
|
@@ -4583,15 +4643,15 @@ msgstr "Untertitel"
|
|
4583 |
msgid "Successfully saved"
|
4584 |
msgstr "Erfolgreich gespeichert"
|
4585 |
|
4586 |
-
#: includes/B2S/Settings/Item.php:
|
4587 |
msgid "Summary"
|
4588 |
msgstr "Link-Darstellung"
|
4589 |
|
4590 |
-
#: includes/B2S/Settings/Item.php:
|
4591 |
msgid "Summary with large image"
|
4592 |
msgstr "Link-Darstellung mit großem Bild"
|
4593 |
|
4594 |
-
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:
|
4595 |
msgid "Sun"
|
4596 |
msgstr "So"
|
4597 |
|
@@ -4599,7 +4659,7 @@ msgstr "So"
|
|
4599 |
msgid "Sunday"
|
4600 |
msgstr "Sonntag"
|
4601 |
|
4602 |
-
#: includes/Loader.php:
|
4603 |
msgid "Support"
|
4604 |
msgstr "Support"
|
4605 |
|
@@ -4607,23 +4667,23 @@ msgstr "Support"
|
|
4607 |
msgid "Supported HTML tags"
|
4608 |
msgstr "Erlaubte HTML-Elemente"
|
4609 |
|
4610 |
-
#: includes/Tools.php:
|
4611 |
msgid "Sweden"
|
4612 |
msgstr "Schweden"
|
4613 |
|
4614 |
-
#: includes/Tools.php:
|
4615 |
msgid "Switzerland"
|
4616 |
msgstr "Schweiz"
|
4617 |
|
4618 |
-
#: includes/Tools.php:
|
4619 |
msgid "Symbols"
|
4620 |
msgstr "Symbole"
|
4621 |
|
4622 |
-
#: includes/B2S/Settings/Item.php:
|
4623 |
msgid "System"
|
4624 |
msgstr "System"
|
4625 |
|
4626 |
-
#: views/b2s/network.php:
|
4627 |
msgid "Team Management"
|
4628 |
msgstr "Team-Management"
|
4629 |
|
@@ -4647,7 +4707,7 @@ msgstr "nur Text"
|
|
4647 |
msgid "Text Post"
|
4648 |
msgstr "Text-Beitrag"
|
4649 |
|
4650 |
-
#: views/b2s/curation.php:
|
4651 |
msgid ""
|
4652 |
"Text posts enable you to share pure text messages and personal comments with "
|
4653 |
"your followers and readers. You can also customize your posts with "
|
@@ -4692,15 +4752,15 @@ msgstr ""
|
|
4692 |
"Bildgröße des jeweiligen Netzwerkes an. Du kannst bis zu 4 Bilder in einem "
|
4693 |
"Beitrag auf Facebook (Seite und Gruppe) sowie auf Twitter teilen."
|
4694 |
|
4695 |
-
#: views/b2s/network.php:
|
4696 |
msgid "The connection does not exist."
|
4697 |
msgstr "Diese Verbindung existiert nicht."
|
4698 |
|
4699 |
-
#: views/b2s/network.php:
|
4700 |
msgid "The connection has already been assigned to this user."
|
4701 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
4702 |
|
4703 |
-
#: views/b2s/network.php:
|
4704 |
msgid ""
|
4705 |
"The connection is still assigned to other users. Please withdraw the "
|
4706 |
"assigned connection from other users first."
|
@@ -4716,7 +4776,7 @@ msgstr ""
|
|
4716 |
"Die Verbindung zum Server ist fehlgeschlagen. Bitte versuche es erneut. Mehr "
|
4717 |
"Informationen und Lösungsvorschläge findest Du in dem"
|
4718 |
|
4719 |
-
#: views/b2s/ship.php:
|
4720 |
msgid ""
|
4721 |
"The connection to the server failed. Please try again! You can find more "
|
4722 |
"information and solutions in the guide for server connection"
|
@@ -4737,7 +4797,7 @@ msgstr ""
|
|
4737 |
"nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
|
4738 |
"Deinen Webmaster, wenn dieser Fehler erneut erscheint."
|
4739 |
|
4740 |
-
#: includes/Loader.php:
|
4741 |
#, php-format
|
4742 |
msgid ""
|
4743 |
"The connection to your social media account is interrupted. Please check "
|
@@ -4750,11 +4810,11 @@ msgstr ""
|
|
4750 |
"target=\"_blank\" href=\"%s\">Anleitung zur Fehlerbehebung</a> zeigt Dir, "
|
4751 |
"wie Du die Verbindung zu Deinem Social-Media-Account erneuern kannst."
|
4752 |
|
4753 |
-
#: views/b2s/network.php:
|
4754 |
msgid "The content of your post"
|
4755 |
msgstr "Der Inhalt Deines Beitrags."
|
4756 |
|
4757 |
-
#: includes/Loader.php:
|
4758 |
#, php-format
|
4759 |
msgid ""
|
4760 |
"The content of your post could not be approved by the network. Please see "
|
@@ -4763,7 +4823,7 @@ msgstr ""
|
|
4763 |
"Der Inhalt Deines Beitrags konnte vom Netzwerk nicht genehmigt werden. Bitte "
|
4764 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
4765 |
|
4766 |
-
#: includes/B2S/Settings/Item.php:
|
4767 |
msgid "The default card type to use"
|
4768 |
msgstr "Wählen Sie Ihre Standard-Twitter-Card"
|
4769 |
|
@@ -4775,11 +4835,11 @@ msgstr ""
|
|
4775 |
"Die kostenlose Testversion kann nicht gestartet werden. Dieser Blog wurde "
|
4776 |
"bereits für die kostenlose Testversion registriert."
|
4777 |
|
4778 |
-
#: includes/B2S/Ship/Item.php:
|
4779 |
msgid "The Headline..."
|
4780 |
msgstr "Die Überschrift..."
|
4781 |
|
4782 |
-
#: includes/B2S/Settings/Item.php:
|
4783 |
msgid ""
|
4784 |
"The image preview will be cropped automatically to fit the default Instagram "
|
4785 |
"layout for your Instagram timeline. The image will be shown uncropped when "
|
@@ -4790,7 +4850,7 @@ msgstr ""
|
|
4790 |
"Ganzes angezeigt, wenn Du die Vorschauseite für Deinen Instagram-Beitrag "
|
4791 |
"öffnest. "
|
4792 |
|
4793 |
-
#: includes/B2S/Settings/Item.php:
|
4794 |
msgid "The image will be changed"
|
4795 |
msgstr "Das Bild wird geändert"
|
4796 |
|
@@ -4803,7 +4863,7 @@ msgstr ""
|
|
4803 |
msgid "The license has been successfully activated."
|
4804 |
msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
|
4805 |
|
4806 |
-
#: includes/B2S/Settings/Item.php:
|
4807 |
msgid ""
|
4808 |
"The link post format displays posts title, link address and the first one or "
|
4809 |
"two sentences of the post. The networks scan this information from your META "
|
@@ -4826,11 +4886,11 @@ msgstr ""
|
|
4826 |
"ausgewählt hast, zeigen einige Netzwerke das erste Bild an, dass sie auf "
|
4827 |
"Deiner Seite finden."
|
4828 |
|
4829 |
-
#: includes/B2S/Network/Item.php:
|
4830 |
msgid "The link will be added automatically at the end of the post."
|
4831 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
4832 |
|
4833 |
-
#: includes/B2S/Network/Item.php:
|
4834 |
msgid ""
|
4835 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
4836 |
"your page, in order to refer to the original source of the content and to "
|
@@ -4846,8 +4906,8 @@ msgstr ""
|
|
4846 |
"Der Link, dem Du gefolgt bist, ist abgelaufen. Bitte aktualisiere Deine "
|
4847 |
"Seite."
|
4848 |
|
4849 |
-
#: views/b2s/network.php:
|
4850 |
-
#: views/b2s/ship.php:
|
4851 |
msgid ""
|
4852 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
4853 |
"sign in to Pinterest using the Blog2Social browser extension."
|
@@ -4856,11 +4916,11 @@ msgstr ""
|
|
4856 |
"verbinden, melde Dich bitte über die Blog2Social Browser-Extension bei "
|
4857 |
"Pinterest an."
|
4858 |
|
4859 |
-
#: views/b2s/network.php:
|
4860 |
msgid "The name of the post author."
|
4861 |
msgstr "Der Name des Autors Deines Beitrags."
|
4862 |
|
4863 |
-
#: includes/Loader.php:
|
4864 |
#, php-format
|
4865 |
msgid ""
|
4866 |
"The network can not publish special characters such as Emoji. Please see the "
|
@@ -4869,7 +4929,7 @@ msgstr ""
|
|
4869 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Bitte "
|
4870 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
4871 |
|
4872 |
-
#: includes/Loader.php:
|
4873 |
#, php-format
|
4874 |
msgid ""
|
4875 |
"The network could not publish your post. Please see the following <a "
|
@@ -4878,11 +4938,11 @@ msgstr ""
|
|
4878 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
4879 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
4880 |
|
4881 |
-
#: includes/B2S/Network/Item.php:
|
4882 |
msgid "The network does not support hashtags."
|
4883 |
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
4884 |
|
4885 |
-
#: includes/Loader.php:
|
4886 |
#, php-format
|
4887 |
msgid ""
|
4888 |
"The network has blocked your account. Please see the following <a "
|
@@ -4891,7 +4951,7 @@ msgstr ""
|
|
4891 |
"Das Netzwerk hat Dein Konto gesperrt. Bitte beachte die folgende <a "
|
4892 |
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
4893 |
|
4894 |
-
#: includes/Loader.php:
|
4895 |
msgid "The network requires a public url."
|
4896 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
4897 |
|
@@ -4903,7 +4963,7 @@ msgstr ""
|
|
4903 |
"Die Netzwerke Diigo, Bloglovin' und Google My Business unterstützen das GIF "
|
4904 |
"format nicht und stellen stattdessen das Standardbild dar."
|
4905 |
|
4906 |
-
#: includes/Loader.php:
|
4907 |
#, php-format
|
4908 |
msgid ""
|
4909 |
"The number of images is reached. Please see the following <a "
|
@@ -4920,12 +4980,22 @@ msgstr "Der Original-Tweet ist geplant für:"
|
|
4920 |
msgid "The page and post meta data could not be removed."
|
4921 |
msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
4922 |
|
4923 |
-
#: views/b2s/network.php:
|
4924 |
msgid "The parameters could not be saved. Please try again."
|
4925 |
msgstr ""
|
4926 |
"Die Parameter konnten nicht gespeichert werden. Bitte versuchen Sie es noch "
|
4927 |
"einmal."
|
4928 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4929 |
#: views/b2s/html/header.php:227
|
4930 |
msgid ""
|
4931 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
@@ -4947,7 +5017,7 @@ msgstr ""
|
|
4947 |
"internationalen und regionalen Portalen, Social Media und Dokumenten-"
|
4948 |
"Netzwerken."
|
4949 |
|
4950 |
-
#: views/b2s/network.php:
|
4951 |
msgid ""
|
4952 |
"The price of your product, if you have installed WooCommerce on your "
|
4953 |
"website/ blog."
|
@@ -4955,7 +5025,7 @@ msgstr ""
|
|
4955 |
"Preis: Der Preis eines Produkts, wenn Du WooCommerce auf Deiner Website/ "
|
4956 |
"Blog installiert hast."
|
4957 |
|
4958 |
-
#: includes/B2S/AutoPost/Item.php:
|
4959 |
msgid ""
|
4960 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
4961 |
"admin."
|
@@ -4963,13 +5033,13 @@ msgstr ""
|
|
4963 |
"Die Einstellungen für den Auto-Poster wurden für Dich von einem WordPress-"
|
4964 |
"Admin vorgenommen."
|
4965 |
|
4966 |
-
#: views/b2s/network.php:
|
4967 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
4968 |
msgstr ""
|
4969 |
" Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü deines "
|
4970 |
"Beitrags festgelegt)."
|
4971 |
|
4972 |
-
#: views/b2s/network.php:
|
4973 |
msgid "The tags you have set in your post."
|
4974 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
4975 |
|
@@ -4994,7 +5064,7 @@ msgstr ""
|
|
4994 |
"“besten Zeiten” in dem <a href=\"%s\" target=\"_blank\">\"Die besten Zeiten "
|
4995 |
"für Social-Media-Posts”-Guide</a>."
|
4996 |
|
4997 |
-
#: views/b2s/network.php:
|
4998 |
msgid "The title of your post"
|
4999 |
msgstr "Der Titel deines Beitrags."
|
5000 |
|
@@ -5008,19 +5078,19 @@ msgstr ""
|
|
5008 |
"Systemumgebung Deines Blogs ausgelöst werden können. So kannst Du jederzeit "
|
5009 |
"selbstständig Deine Einstellung auf Wordpress einsehen."
|
5010 |
|
5011 |
-
#: views/b2s/network.php:
|
5012 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
5013 |
msgstr ""
|
5014 |
"Der Benutzer, dem die Verbindung zugewiesen ist, hat noch geplante Beiträge."
|
5015 |
|
5016 |
-
#: views/b2s/network.php:
|
5017 |
msgid "There are no other users to whom the connection can be assigned."
|
5018 |
msgstr ""
|
5019 |
"Es sind keine weiteren Benutzer vorhanden, denen die Verbindung zugewiesen "
|
5020 |
"werden kann."
|
5021 |
|
5022 |
-
#: includes/Loader.php:
|
5023 |
-
#: includes/B2S/AutoPost/Item.php:
|
5024 |
msgid ""
|
5025 |
"There are no social network accounts assigned to your selected network "
|
5026 |
"collection. Please assign at least one social network account or select "
|
@@ -5030,7 +5100,7 @@ msgstr ""
|
|
5030 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
5031 |
"eine andere Netzwerkgruppierung aus. "
|
5032 |
|
5033 |
-
#: views/b2s/ship.php:
|
5034 |
msgid ""
|
5035 |
"There is already a saved draft for this WordPress post or page. If you save "
|
5036 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
@@ -5052,7 +5122,7 @@ msgstr ""
|
|
5052 |
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
5053 |
"Pressemitteilung jetzt versendet werden?"
|
5054 |
|
5055 |
-
#: views/b2s/ship.php:
|
5056 |
msgid ""
|
5057 |
"This allows you to adjust your network selection at any time and save it by "
|
5058 |
"clicking on \"Save network selection\"."
|
@@ -5060,7 +5130,7 @@ msgstr ""
|
|
5060 |
"Auf diese Weise kannst Du jederzeit Deine Netzwerkauswahl anpassen und diese "
|
5061 |
"speichern (\"Netzwerkauswahl speichern\")."
|
5062 |
|
5063 |
-
#: views/b2s/network.php:
|
5064 |
msgid "This connection has already been assigned to this user."
|
5065 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
5066 |
|
@@ -5072,7 +5142,7 @@ msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
|
|
5072 |
msgid "This entry was removed successfully."
|
5073 |
msgstr "Dieser Eintrag wurde erfolgreich entfernt."
|
5074 |
|
5075 |
-
#: includes/B2S/Settings/Item.php:
|
5076 |
msgid ""
|
5077 |
"This is a global feature for your blog, which can only be edited by users "
|
5078 |
"with admin rights."
|
@@ -5080,7 +5150,7 @@ msgstr ""
|
|
5080 |
"Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
|
5081 |
"Admin Rechten bearbeitet werden kann."
|
5082 |
|
5083 |
-
#: includes/B2S/Settings/Item.php:
|
5084 |
msgid ""
|
5085 |
"This is a global system setting for your website / blog, which can be "
|
5086 |
"edited by users with admin rights only."
|
@@ -5088,11 +5158,11 @@ msgstr ""
|
|
5088 |
"Dies ist eine globale Einstellung für Deinen Website/ Deinen Blog, die nur "
|
5089 |
"von Nutzern mit Admin-Rechten bearbeitet werden kann. "
|
5090 |
|
5091 |
-
#: includes/B2S/Ship/Save.php:
|
5092 |
msgid "This is how it works:"
|
5093 |
msgstr "Und so funktioniert es:"
|
5094 |
|
5095 |
-
#: views/b2s/network.php:
|
5096 |
msgid "This network connection is still assigned to other users."
|
5097 |
msgstr "Diese Netzwerkverbindung ist anderen Blog-Nutzern zugeordnet."
|
5098 |
|
@@ -5104,16 +5174,16 @@ msgstr "% 1bearbeitet gerade diesen Beitrag."
|
|
5104 |
msgid "This post was edited successfully."
|
5105 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
5106 |
|
5107 |
-
#: includes/Loader.php:
|
5108 |
msgid "This post will be shared into your social media from"
|
5109 |
msgstr ""
|
5110 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
5111 |
|
5112 |
-
#: includes/Loader.php:
|
5113 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
5114 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
5115 |
|
5116 |
-
#: includes/B2S/Network/Item.php:
|
5117 |
msgid ""
|
5118 |
"This social network displays the predefined hashtags as clickable tags at "
|
5119 |
"the end of your post."
|
@@ -5121,16 +5191,16 @@ msgstr ""
|
|
5121 |
"Das Netzwerk veröffentlicht die vordefinierten Hashtags als anklickbare Tags "
|
5122 |
"am Ende Deines Beitrags."
|
5123 |
|
5124 |
-
#: views/b2s/network.php:
|
5125 |
msgid "This user don't have a Business License, or it is not the same"
|
5126 |
msgstr ""
|
5127 |
"Dieser Benutzer hat keine Business-Lizenz oder nutzt nicht dieselbe Lizenz"
|
5128 |
|
5129 |
-
#: views/b2s/network.php:
|
5130 |
msgid "This user has reached the maximum number of connections."
|
5131 |
msgstr "Der Nutzer hat die maximale Anzahl von Verbindungen erreicht."
|
5132 |
|
5133 |
-
#: includes/Loader.php:
|
5134 |
msgid ""
|
5135 |
"This XING API is no longer supported by XING. Please connect your XING "
|
5136 |
"accounts with the new XING interface to reschedule your posts."
|
@@ -5139,7 +5209,7 @@ msgstr ""
|
|
5139 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
5140 |
"zu planen."
|
5141 |
|
5142 |
-
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:
|
5143 |
msgid "Thu"
|
5144 |
msgstr "Do"
|
5145 |
|
@@ -5147,16 +5217,16 @@ msgstr "Do"
|
|
5147 |
msgid "Thursday"
|
5148 |
msgstr "Donnerstag"
|
5149 |
|
5150 |
-
#: includes/B2S/Ship/Item.php:
|
5151 |
#: views/b2s/partials/post-edit-modal.php:71
|
5152 |
msgid "Time"
|
5153 |
msgstr "Mal"
|
5154 |
|
5155 |
-
#: includes/B2S/Ship/Item.php:
|
5156 |
msgid "Time to publish"
|
5157 |
msgstr "Veröffentlichungszeitpunkt"
|
5158 |
|
5159 |
-
#: views/b2s/ship.php:
|
5160 |
msgid "Time zone"
|
5161 |
msgstr "Zeitzone"
|
5162 |
|
@@ -5164,17 +5234,17 @@ msgstr "Zeitzone"
|
|
5164 |
msgid "times"
|
5165 |
msgstr "Mal"
|
5166 |
|
5167 |
-
#: includes/B2S/Ship/Item.php:
|
5168 |
msgid "Timespan"
|
5169 |
msgstr "Zeitspanne"
|
5170 |
|
5171 |
-
#: includes/B2S/Settings/Item.php:
|
5172 |
msgid "Timezone for Scheduling"
|
5173 |
msgstr "Zeitzone für die Planung"
|
5174 |
|
5175 |
-
#: views/b2s/ship.php:
|
5176 |
-
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:
|
5177 |
-
#: includes/B2S/Settings/Item.php:
|
5178 |
#: views/prg/html/form.php:28
|
5179 |
msgid "Title"
|
5180 |
msgstr "Titel"
|
@@ -5183,11 +5253,11 @@ msgstr "Titel"
|
|
5183 |
msgid "title"
|
5184 |
msgstr "Titel"
|
5185 |
|
5186 |
-
#: views/b2s/settings.php:
|
5187 |
msgid "Title: The title of your post."
|
5188 |
msgstr "Titel: Der Titel Deines Beitrags."
|
5189 |
|
5190 |
-
#: views/b2s/autopost.php:76 views/b2s/repost.php:
|
5191 |
msgid ""
|
5192 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
5193 |
"be sent to your primary Twitter profile."
|
@@ -5195,7 +5265,7 @@ msgstr ""
|
|
5195 |
"Um den Geschäftsbedingungen von Twitter zu entsprechen und doppelte Postings "
|
5196 |
"zu vermeiden, werden Autoposts an Dein primäres Twitter-Profil gesendet."
|
5197 |
|
5198 |
-
#: views/b2s/ship.php:
|
5199 |
#, php-format
|
5200 |
msgid ""
|
5201 |
"To define and save more network selections for your posting purposes, you "
|
@@ -5242,7 +5312,7 @@ msgstr "Um die Verbindung wieder zu aktivieren,"
|
|
5242 |
msgid "To select an individual image from your media library,"
|
5243 |
msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
|
5244 |
|
5245 |
-
#: includes/Loader.php:
|
5246 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
5247 |
msgstr ""
|
5248 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
@@ -5257,7 +5327,7 @@ msgstr ""
|
|
5257 |
"oder höher erforderlich. Unser Support unterstützt Dich ab PHP Version 5.5.3."
|
5258 |
" Siehe auch:"
|
5259 |
|
5260 |
-
#: includes/B2S/AutoPost/Item.php:
|
5261 |
msgid "Transfer Auto-Poster settings to other users"
|
5262 |
msgstr "Auto-Poster-Einstellungen an andere Benutzer zuweisen"
|
5263 |
|
@@ -5266,7 +5336,7 @@ msgid "Transfer Auto-Poster settings to other users (Business):"
|
|
5266 |
msgstr ""
|
5267 |
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
5268 |
|
5269 |
-
#: includes/Tools.php:
|
5270 |
msgid "Travel & Places"
|
5271 |
msgstr "Reisen & Orte"
|
5272 |
|
@@ -5278,7 +5348,7 @@ msgstr "Fehlermeldungen und Lösungen"
|
|
5278 |
msgid "Troubleshooting-Tool"
|
5279 |
msgstr "Problemanalyse-Tool"
|
5280 |
|
5281 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
5282 |
msgid "Tue"
|
5283 |
msgstr "Di"
|
5284 |
|
@@ -5286,7 +5356,7 @@ msgstr "Di"
|
|
5286 |
msgid "Tuesday"
|
5287 |
msgstr "Dienstag"
|
5288 |
|
5289 |
-
#: includes/Tools.php:
|
5290 |
msgid "Turkey"
|
5291 |
msgstr "Türkei"
|
5292 |
|
@@ -5329,7 +5399,7 @@ msgstr ""
|
|
5329 |
"Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
|
5330 |
"Erstelle eine Netzwerkgruppierung</a>"
|
5331 |
|
5332 |
-
#: views/b2s/repost.php:
|
5333 |
#, php-format
|
5334 |
msgid ""
|
5335 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
@@ -5339,15 +5409,6 @@ msgstr ""
|
|
5339 |
"Netzwerkauswahl genutzt wird. <a href=\"%s\" target=\"_blank\">So erstellen "
|
5340 |
"Sie eine Netzwerk-Gruppierung</a>"
|
5341 |
|
5342 |
-
#: views/b2s/curation.php:292
|
5343 |
-
#, php-format
|
5344 |
-
msgid ""
|
5345 |
-
"Under the <a href=\"%s\">Network Settings</a> you can define the network "
|
5346 |
-
"selection."
|
5347 |
-
msgstr ""
|
5348 |
-
"Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
|
5349 |
-
"Gruppierung festlegen."
|
5350 |
-
|
5351 |
#: views/prg/html/header.php:28
|
5352 |
msgid ""
|
5353 |
"Unfortunately, your request cannot be processed by Blog2Social. Please try "
|
@@ -5356,7 +5417,7 @@ msgstr ""
|
|
5356 |
"Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
|
5357 |
"versuche es erneut!"
|
5358 |
|
5359 |
-
#: includes/Tools.php:
|
5360 |
msgid "United States of America"
|
5361 |
msgstr "Vereinigte Staaten von Amerika"
|
5362 |
|
@@ -5368,7 +5429,7 @@ msgstr "Unbekannter Fehler"
|
|
5368 |
msgid "Unknown error has occurred. Please try again."
|
5369 |
msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es erneut."
|
5370 |
|
5371 |
-
#: includes/Ajax/Post.php:
|
5372 |
#: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:325
|
5373 |
#: includes/B2S/Network/Item.php:396 includes/B2S/Network/Item.php:526
|
5374 |
msgid "Unknown username"
|
@@ -5382,7 +5443,7 @@ msgstr ""
|
|
5382 |
"Schalte Blog2Social Premium Pro frei, um Bild-Beiträge, Video-Links und Text-"
|
5383 |
"Beiträge aus beliebigen Quellen zu erstellen und zu teilen."
|
5384 |
|
5385 |
-
#: includes/B2S/AutoPost/Item.php:
|
5386 |
msgid "Unselect all"
|
5387 |
msgstr "Alle abwählen"
|
5388 |
|
@@ -5394,12 +5455,12 @@ msgstr "Aktualisiere Blog2Social"
|
|
5394 |
msgid "Update..."
|
5395 |
msgstr "Aktualisierung..."
|
5396 |
|
5397 |
-
#: includes/B2S/AutoPost/Item.php:
|
5398 |
msgid "updated posts"
|
5399 |
msgstr "Aktualisierte Beiträge"
|
5400 |
|
5401 |
-
#: views/b2s/premium.php:31 includes/B2S/AutoPost/Item.php:
|
5402 |
-
#: includes/B2S/AutoPost/Item.php:
|
5403 |
msgid "Upgrade"
|
5404 |
msgstr "Upgrade"
|
5405 |
|
@@ -5407,11 +5468,11 @@ msgstr "Upgrade"
|
|
5407 |
msgid "Upgrade License"
|
5408 |
msgstr "Lizenz upgraden"
|
5409 |
|
5410 |
-
#: views/b2s/network.php:
|
5411 |
msgid "Upgrade to Blog2Social Business"
|
5412 |
msgstr "Upgrade auf Blog2Social Business"
|
5413 |
|
5414 |
-
#: views/b2s/network.php:
|
5415 |
msgid ""
|
5416 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
5417 |
"network collection and assign your social media connections to other blog "
|
@@ -5472,12 +5533,12 @@ msgstr "Upgrade auf BUSINESS"
|
|
5472 |
msgid "Upgrade to PREMIUM"
|
5473 |
msgstr "Jetzt auf Premium upgraden"
|
5474 |
|
5475 |
-
#: includes/Loader.php:
|
5476 |
#: views/b2s/html/sidebar.ship.php:44
|
5477 |
msgid "Upgrade to Premium"
|
5478 |
msgstr "Premium freischalten"
|
5479 |
|
5480 |
-
#: includes/B2S/Settings/Item.php:
|
5481 |
msgid "Upgrade to Premium Pro now."
|
5482 |
msgstr "Upgrade auf Premium PRO"
|
5483 |
|
@@ -5487,8 +5548,8 @@ msgid "Upgrade to PRO and above"
|
|
5487 |
msgstr "Upgrade auf PRO und höher"
|
5488 |
|
5489 |
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:204
|
5490 |
-
#: views/b2s/post.calendar.php:
|
5491 |
-
#: views/b2s/ship.php:
|
5492 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
5493 |
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
|
5494 |
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
@@ -5496,11 +5557,11 @@ msgstr "Upgrade auf PRO und höher"
|
|
5496 |
msgid "Upgrade to SMART and above"
|
5497 |
msgstr "Upgrade auf SMART und höher"
|
5498 |
|
5499 |
-
#: views/b2s/network.php:
|
5500 |
msgid "URL Parameters"
|
5501 |
msgstr "URL-Parameter"
|
5502 |
|
5503 |
-
#: includes/B2S/Settings/Item.php:
|
5504 |
msgid "Url Shortener"
|
5505 |
msgstr "Url Shortener"
|
5506 |
|
@@ -5524,7 +5585,7 @@ msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
|
5524 |
msgstr ""
|
5525 |
"Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
|
5526 |
|
5527 |
-
#: views/b2s/autopost.php:49 views/b2s/settings.php:
|
5528 |
#: includes/B2S/Ship/Image.php:101
|
5529 |
msgid "Use image"
|
5530 |
msgstr "Bild verwenden"
|
@@ -5537,7 +5598,7 @@ msgstr ""
|
|
5537 |
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
5538 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
5539 |
|
5540 |
-
#: views/b2s/settings.php:
|
5541 |
msgid ""
|
5542 |
"Use the pre-defined best time settings or define your own best time settings "
|
5543 |
"for sharing your posts . Posting at the right time can be essential to make "
|
@@ -5548,7 +5609,7 @@ msgstr ""
|
|
5548 |
"geteilt werden sollen. Das Posten zur richtigen Zeit ist essentiell, um mehr "
|
5549 |
"Aufmerksamkeit und Engagement mit Deinen Social Media Beiträgen zu erzielen."
|
5550 |
|
5551 |
-
#: includes/B2S/Settings/Item.php:
|
5552 |
msgid "User"
|
5553 |
msgstr "Benutzer"
|
5554 |
|
@@ -5584,11 +5645,11 @@ msgstr "via Browser-Extension"
|
|
5584 |
msgid "Video Post"
|
5585 |
msgstr "Video-Beitrag"
|
5586 |
|
5587 |
-
#: views/b2s/network.php:
|
5588 |
msgid "View schedule posts"
|
5589 |
msgstr "Geplante Beiträge anzeigen"
|
5590 |
|
5591 |
-
#: includes/B2S/Ship/Save.php:
|
5592 |
msgid "view social media post"
|
5593 |
msgstr "Zeige Social Media Beitrag an"
|
5594 |
|
@@ -5602,8 +5663,8 @@ msgstr ""
|
|
5602 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
5603 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
5604 |
|
5605 |
-
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:
|
5606 |
-
#: includes/B2S/Ship/Item.php:
|
5607 |
msgid ""
|
5608 |
"Violating these rules can result in Twitter suspending your account. Always "
|
5609 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -5613,7 +5674,7 @@ msgstr ""
|
|
5613 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
5614 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
5615 |
|
5616 |
-
#: includes/Loader.php:
|
5617 |
msgid ""
|
5618 |
"We don't have the permission to publish your post. Please check your "
|
5619 |
"authorization."
|
@@ -5642,7 +5703,7 @@ msgstr "Website"
|
|
5642 |
msgid "Website & Blog Content"
|
5643 |
msgstr "Webseiten & Blog Content"
|
5644 |
|
5645 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:
|
5646 |
msgid "Wed"
|
5647 |
msgstr "Mi"
|
5648 |
|
@@ -5650,19 +5711,19 @@ msgstr "Mi"
|
|
5650 |
msgid "Wednesday"
|
5651 |
msgstr "Mittwoch"
|
5652 |
|
5653 |
-
#: includes/B2S/Ship/Item.php:
|
5654 |
msgid "Week"
|
5655 |
msgstr "Woche"
|
5656 |
|
5657 |
-
#: includes/B2S/Ship/Item.php:
|
5658 |
msgid "weekly"
|
5659 |
msgstr "wöchentlich"
|
5660 |
|
5661 |
-
#: includes/B2S/Ship/Item.php:
|
5662 |
msgid "Weeks"
|
5663 |
msgstr "Wochen"
|
5664 |
|
5665 |
-
#: views/b2s/post.calendar.php:
|
5666 |
msgid "What would you like to share?"
|
5667 |
msgstr "Was möchtest Du teilen?"
|
5668 |
|
@@ -5674,7 +5735,7 @@ msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
|
5674 |
msgid "When should your content be shared?"
|
5675 |
msgstr "Wann soll Dein Content geteilt werden?"
|
5676 |
|
5677 |
-
#: views/b2s/network.php:
|
5678 |
#, php-format
|
5679 |
msgid ""
|
5680 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
@@ -5696,8 +5757,8 @@ msgstr ""
|
|
5696 |
"um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
|
5697 |
"Informationen: So verbindest Du Deine Website mit Instagram.</a>"
|
5698 |
|
5699 |
-
#: views/b2s/curation.php:186 views/b2s/post.calendar.php:
|
5700 |
-
#: views/b2s/ship.php:
|
5701 |
msgid ""
|
5702 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
5703 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -5747,8 +5808,8 @@ msgid "With Blog2Social Premium PRO you can post multiple images."
|
|
5747 |
msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
|
5748 |
|
5749 |
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:190
|
5750 |
-
#: views/b2s/post.calendar.php:
|
5751 |
-
#: views/b2s/ship.php:
|
5752 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
5753 |
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
|
5754 |
#: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
|
@@ -5756,7 +5817,7 @@ msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
|
|
5756 |
msgid "With Blog2Social Premium you can:"
|
5757 |
msgstr "Mit Blog2Social kannst Du:"
|
5758 |
|
5759 |
-
#: views/b2s/network.php:
|
5760 |
msgid ""
|
5761 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
5762 |
"your posts on your favourite social media accounts automatically."
|
@@ -5826,6 +5887,17 @@ msgstr ""
|
|
5826 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
5827 |
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
5828 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5829 |
#: views/b2s/curation.php:226
|
5830 |
msgid ""
|
5831 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
@@ -5870,7 +5942,7 @@ msgstr ""
|
|
5870 |
"Media-Netzwerke verbunden, auf denen Inhalte automatisch geteilt werden "
|
5871 |
"sollen, die der Administrator ausgewählt hat."
|
5872 |
|
5873 |
-
#: includes/B2S/Settings/Item.php:
|
5874 |
msgid ""
|
5875 |
"With Premium Pro, you can change the custom post format photo post or link "
|
5876 |
"post for each individual social media post and channel (profile, page, group)"
|
@@ -5881,14 +5953,19 @@ msgstr ""
|
|
5881 |
"Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
|
5882 |
|
5883 |
#: views/b2s/html/header.php:65
|
|
|
|
|
|
|
|
|
5884 |
msgid ""
|
5885 |
"WordPress session timeout: For security reasons, WordPress will let your "
|
5886 |
-
"session expire automatically if your site has been inactive for a while. "
|
5887 |
-
"Please reload this page to go on with your current action
|
5888 |
msgstr ""
|
5889 |
"WordPress Session Timeout: Wordpress beendet aus Sicherheitsgründen "
|
5890 |
"automatisch Deine aktuelle Session, wenn Deine Website eine Zeitlang inaktiv "
|
5891 |
-
"war. Bitte lade diese Seite neu, um mit Deiner aktuellen Arbeit
|
|
|
5892 |
|
5893 |
#: includes/B2S/PostBox.php:144
|
5894 |
msgid ""
|
@@ -5913,11 +5990,12 @@ msgstr "Möchtest Du Retweeten?"
|
|
5913 |
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:510
|
5914 |
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:599
|
5915 |
#: includes/B2S/Ship/Item.php:628 includes/B2S/Ship/Item.php:656
|
5916 |
-
#: includes/B2S/Ship/Item.php:684 includes/B2S/Ship/Item.php:
|
5917 |
-
#: includes/B2S/Ship/Item.php:
|
5918 |
-
#: includes/B2S/Ship/Item.php:
|
5919 |
-
#: includes/B2S/Ship/Item.php:
|
5920 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
5921 |
msgid "Write something about your post..."
|
5922 |
msgstr "Schreibe etwas..."
|
5923 |
|
@@ -5932,15 +6010,15 @@ msgstr ""
|
|
5932 |
"Hurra :) Deine Registrierung für die Blog2Social Community war erfolgreich!"
|
5933 |
|
5934 |
#: views/b2s/curation.php:159 views/b2s/post.approve.php:114
|
5935 |
-
#: views/b2s/ship.php:
|
5936 |
msgid "YES"
|
5937 |
msgstr "JA"
|
5938 |
|
5939 |
-
#: views/b2s/curation.draft.php:91 views/b2s/network.php:
|
5940 |
-
#: views/b2s/network.php:
|
5941 |
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:89
|
5942 |
-
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:
|
5943 |
-
#: views/b2s/repost.php:
|
5944 |
#: views/b2s/widgets/posts.php:68
|
5945 |
msgid "YES, delete"
|
5946 |
msgstr "Ja, löschen"
|
@@ -5979,7 +6057,7 @@ msgstr "Du bist von PR-Gateway abgemeldet!"
|
|
5979 |
msgid "You are sure, you want to delete entries from the reporting?"
|
5980 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
5981 |
|
5982 |
-
#: views/b2s/post.sched.php:
|
5983 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
5984 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
5985 |
|
@@ -5998,7 +6076,7 @@ msgstr ""
|
|
5998 |
"einen effektiven Social Media-Posting-Plan einrichten, um so viele Follower "
|
5999 |
"wie möglich zu erreichen."
|
6000 |
|
6001 |
-
#: views/b2s/network.php:
|
6002 |
msgid ""
|
6003 |
"You can also purchase additional groups and sites as add-on to your active "
|
6004 |
"Blog2Social Premium Pro or Premium Business license:"
|
@@ -6033,7 +6111,7 @@ msgstr ""
|
|
6033 |
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
6034 |
"bearbeitest"
|
6035 |
|
6036 |
-
#: views/b2s/network.php:
|
6037 |
msgid ""
|
6038 |
"You can only share the connection with blog users who use the same license "
|
6039 |
"as you."
|
@@ -6041,7 +6119,7 @@ msgstr ""
|
|
6041 |
"Du kannst Deine Verbindung nur mit Blog-Benutzern teilen, die dieselbe "
|
6042 |
"Lizenz verwenden wie Du."
|
6043 |
|
6044 |
-
#: views/b2s/ship.php:
|
6045 |
msgid ""
|
6046 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
6047 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -6067,7 +6145,7 @@ msgstr ""
|
|
6067 |
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
6068 |
"kannst. "
|
6069 |
|
6070 |
-
#: views/b2s/ship.php:
|
6071 |
msgid ""
|
6072 |
"You can save your current network selection. This network selection will be "
|
6073 |
"loaded automatically next time you open the social media post editor via "
|
@@ -6087,19 +6165,22 @@ msgstr ""
|
|
6087 |
"Du kannst verschiedene Netzwerk-Gruppierungen auswählen und für verschiedene "
|
6088 |
"Zwecke speichern."
|
6089 |
|
6090 |
-
#: views/b2s/curation.php:
|
|
|
|
|
|
|
6091 |
msgid ""
|
6092 |
-
"You can select to share your post as
|
6093 |
-
"post on the following social networks:"
|
6094 |
msgstr ""
|
6095 |
"Du kannst einen Link-Beitrag, einen Video-Link-Beitrag oder einen Bild-"
|
6096 |
"Beitrag auf den folgenden Social-Media-Netzwerken teilen:"
|
6097 |
|
6098 |
-
#: views/b2s/curation.php:
|
6099 |
msgid "You can share a text post on the following networks:"
|
6100 |
msgstr "Du kannst einen Textbeitrag in den folgenden Netzwerken teilen:"
|
6101 |
|
6102 |
-
#: includes/B2S/Settings/Item.php:
|
6103 |
#, php-format
|
6104 |
msgid ""
|
6105 |
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
@@ -6136,11 +6217,11 @@ msgstr ""
|
|
6136 |
"sind, deaktiviere bitte die Social Meta Tags in All in One SEO. Wenn sie "
|
6137 |
"bereits deaktiviert sind, kannst Du diese Meldung ignorieren."
|
6138 |
|
6139 |
-
#: views/b2s/network.php:
|
6140 |
msgid "You don't have a Business License"
|
6141 |
msgstr "Du hast keine Business-Lizenz"
|
6142 |
|
6143 |
-
#: includes/Loader.php:
|
6144 |
msgid "You have already retweeted this post."
|
6145 |
msgstr "Du hast diesen Post bereits retweetet."
|
6146 |
|
@@ -6159,8 +6240,8 @@ msgstr ""
|
|
6159 |
msgid "You have deleted all meta data for posts and pages successfully."
|
6160 |
msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
|
6161 |
|
6162 |
-
#: views/b2s/curation.php:183 views/b2s/post.calendar.php:
|
6163 |
-
#: views/b2s/ship.php:
|
6164 |
msgid ""
|
6165 |
"You have evergreen content you want to re-share from time to time in your "
|
6166 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
@@ -6190,7 +6271,7 @@ msgstr "Du hast keine Entwürfe gespeichert."
|
|
6190 |
msgid "You have not saved any favorites."
|
6191 |
msgstr "Du hast keine Favoriten gespeichert."
|
6192 |
|
6193 |
-
#: views/b2s/network.php:
|
6194 |
msgid ""
|
6195 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
6196 |
"up at least one pinboard to pin on your Pinterest account!"
|
@@ -6198,12 +6279,12 @@ msgstr ""
|
|
6198 |
"Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
|
6199 |
"richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
|
6200 |
|
6201 |
-
#: views/b2s/network.php:
|
6202 |
msgid "You have still set up scheduled posts for this network:"
|
6203 |
msgstr ""
|
6204 |
"Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
6205 |
|
6206 |
-
#: views/b2s/autopost.php:18 views/b2s/settings.php:
|
6207 |
#: includes/B2S/Ship/Image.php:29
|
6208 |
msgid ""
|
6209 |
"You need a higher user role to upload an image on this blog. Please contact "
|
@@ -6220,11 +6301,11 @@ msgstr ""
|
|
6220 |
"Für die Nutzung des Problemanalyse-Tools werden Adminrechte benötigt. Bitte "
|
6221 |
"wende Dich an Deinen Administrator."
|
6222 |
|
6223 |
-
#: views/b2s/network.php:
|
6224 |
msgid "You need at least one network collection"
|
6225 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
6226 |
|
6227 |
-
#: views/b2s/ship.php:
|
6228 |
msgid "You want re-share your blog post?"
|
6229 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
6230 |
|
@@ -6241,6 +6322,7 @@ msgstr ""
|
|
6241 |
#: includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:529
|
6242 |
#: includes/B2S/Ship/Item.php:588 includes/B2S/Ship/Item.php:618
|
6243 |
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:674
|
|
|
6244 |
msgid ""
|
6245 |
"You want to change your link image, link title and link description for this "
|
6246 |
"network? Click here."
|
@@ -6262,8 +6344,8 @@ msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
|
6262 |
msgid "You want to connect a social media group?"
|
6263 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
6264 |
|
6265 |
-
#: views/b2s/network.php:
|
6266 |
-
#: views/b2s/ship.php:
|
6267 |
#, php-format
|
6268 |
msgid ""
|
6269 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
@@ -6282,28 +6364,28 @@ msgstr ""
|
|
6282 |
msgid "You want to create text posts?"
|
6283 |
msgstr "Möchtest Du Text-Posts erstellen?"
|
6284 |
|
6285 |
-
#: views/b2s/network.php:
|
6286 |
msgid "You want to define a new combination of networks?"
|
6287 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
6288 |
|
6289 |
-
#: includes/B2S/Post/Item.php:
|
6290 |
msgid "You want to delete a publish post entry?"
|
6291 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
6292 |
|
6293 |
-
#: includes/B2S/Post/Item.php:
|
6294 |
msgid "You want to delete your Social Media post?"
|
6295 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
6296 |
|
6297 |
-
#: includes/B2S/Post/Item.php:
|
6298 |
msgid "You want to edit your scheduled post?"
|
6299 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
6300 |
|
6301 |
-
#: views/b2s/ship.php:
|
6302 |
msgid "You want to load your time settings?"
|
6303 |
msgstr "Du möchtest Deine Zeiten laden?"
|
6304 |
|
6305 |
-
#: views/b2s/curation.php:180 views/b2s/post.calendar.php:
|
6306 |
-
#: views/b2s/ship.php:
|
6307 |
msgid ""
|
6308 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
6309 |
"desired date and you are ready to go!"
|
@@ -6311,14 +6393,14 @@ msgstr ""
|
|
6311 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
6312 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
6313 |
|
6314 |
-
#: views/b2s/network.php:
|
6315 |
#: views/b2s/html/footer.php:256
|
6316 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
6317 |
msgstr ""
|
6318 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
6319 |
"Manager benutzen?"
|
6320 |
|
6321 |
-
#: views/b2s/settings.php:
|
6322 |
#, php-format
|
6323 |
msgid ""
|
6324 |
"You will find more information about the pre-defined best time settings by "
|
@@ -6328,7 +6410,7 @@ msgstr ""
|
|
6328 |
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
6329 |
"Zeiten\"-Guide</a>."
|
6330 |
|
6331 |
-
#: views/b2s/settings.php:
|
6332 |
#, php-format
|
6333 |
msgid ""
|
6334 |
"You will find more information on how to connect your social media networks "
|
@@ -6339,7 +6421,7 @@ msgstr ""
|
|
6339 |
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
6340 |
"Social-Media-Netzwerke verbinden kannst."
|
6341 |
|
6342 |
-
#: views/b2s/settings.php:
|
6343 |
#, php-format
|
6344 |
msgid ""
|
6345 |
"You will find more information on how to use post templates for your social "
|
@@ -6370,7 +6452,7 @@ msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
|
6370 |
msgid "Your authorization has been removed successfully."
|
6371 |
msgstr "Deine Autorisierung wurde erfolgreich entfernt."
|
6372 |
|
6373 |
-
#: includes/Loader.php:
|
6374 |
msgid ""
|
6375 |
"Your authorization has expired. Please reconnect your account in the "
|
6376 |
"Blog2Social network settings."
|
@@ -6382,11 +6464,11 @@ msgstr ""
|
|
6382 |
msgid "Your authorization was successful."
|
6383 |
msgstr "Deine Autorisierung war erfolgreich."
|
6384 |
|
6385 |
-
#: views/b2s/ship.php:
|
6386 |
msgid "Your blog post is not yet published on your Wordpress!"
|
6387 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
6388 |
|
6389 |
-
#: includes/Loader.php:
|
6390 |
msgid ""
|
6391 |
"Your blog post was not available for the network at the time of publishing."
|
6392 |
msgstr ""
|
@@ -6422,7 +6504,7 @@ msgstr ""
|
|
6422 |
"auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
|
6423 |
"<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
6424 |
|
6425 |
-
#: views/b2s/premium.php:14 includes/B2S/AutoPost/Item.php:
|
6426 |
msgid "Your current license:"
|
6427 |
msgstr "Deine aktuelle Lizenz:"
|
6428 |
|
@@ -6430,14 +6512,14 @@ msgstr "Deine aktuelle Lizenz:"
|
|
6430 |
msgid "Your daily limit for posting automatically has been reached."
|
6431 |
msgstr "Dein tägliches Limit für Autoposter-Beiträge ist erreicht."
|
6432 |
|
6433 |
-
#: includes/Loader.php:
|
6434 |
msgid ""
|
6435 |
"Your daily limit for this network has been reached. Please try again later."
|
6436 |
msgstr ""
|
6437 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
6438 |
"versuche es später noch einmal."
|
6439 |
|
6440 |
-
#: includes/Loader.php:
|
6441 |
msgid "Your daily limit has been reached."
|
6442 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
6443 |
|
@@ -6459,7 +6541,7 @@ msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
|
|
6459 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
6460 |
msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
|
6461 |
|
6462 |
-
#: includes/Loader.php:
|
6463 |
msgid "Your group can not be found by the network."
|
6464 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
6465 |
|
@@ -6490,7 +6572,7 @@ msgid "Your message will now be sent over PR gateway to the press portals!"
|
|
6490 |
msgstr ""
|
6491 |
"Deine Mitteilung wird nun über PR-Gateway an die Presseportale gesendet!"
|
6492 |
|
6493 |
-
#: includes/Loader.php:
|
6494 |
msgid ""
|
6495 |
"Your post could not be posted, because your image can not be processed by "
|
6496 |
"the network."
|
@@ -6498,7 +6580,7 @@ msgstr ""
|
|
6498 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
6499 |
"Netzwerk verarbeitet werden kann"
|
6500 |
|
6501 |
-
#: includes/Loader.php:
|
6502 |
msgid ""
|
6503 |
"Your post could not be posted, because your image is not available or the "
|
6504 |
"image source does not allow to publish"
|
@@ -6506,7 +6588,17 @@ msgstr ""
|
|
6506 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
6507 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
6508 |
|
6509 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6510 |
msgid "Your post is a duplicate."
|
6511 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
6512 |
|
@@ -6532,7 +6624,7 @@ msgstr "Dein Profil wurde erfolgreich gespeichert. "
|
|
6532 |
msgid "Your profiles:"
|
6533 |
msgstr "weitere Profile:"
|
6534 |
|
6535 |
-
#: views/b2s/ship.php:
|
6536 |
msgid ""
|
6537 |
"Your saved networks will be activated for your schedule (green checkmark) in "
|
6538 |
"the right side navigation. You can select or deselect social network "
|
2 |
# This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post & Scheduler - Stable (latest release) package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"PO-Revision-Date: 2021-08-13 12:51+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
"Scheduler - Stable (latest release)\n"
|
14 |
"Report-Msgid-Bugs-To: \n"
|
15 |
"POT-Creation-Date: 2021-04-19 07:32+0000\n"
|
16 |
+
"Last-Translator: marius Lol\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
+
"X-Loco-Version: 2.5.3; wp-5.8-RC3-51433"
|
19 |
|
20 |
#: views/b2s/html/header.php:289
|
21 |
msgid " Days"
|
30 |
msgid " today"
|
31 |
msgstr "heute"
|
32 |
|
33 |
+
#: views/b2s/network.php:330
|
34 |
msgid ""
|
35 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
36 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
44 |
"und/oder \"Inhalt\" innerhalb der darüber hinaus verfügbaren Zeichenanzahl "
|
45 |
"des jeweiligen Social Networks berücksichtigt."
|
46 |
|
47 |
+
#: includes/B2S/Settings/Item.php:201
|
48 |
msgid "(SMART)"
|
49 |
msgstr "(SMART)"
|
50 |
|
52 |
msgid "+ add Parameter"
|
53 |
msgstr "+ Parameter hinzufügen"
|
54 |
|
55 |
+
#: includes/B2S/Ship/Save.php:420
|
56 |
msgid ""
|
57 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
58 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
65 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
66 |
"Facebook-Profil zu senden!"
|
67 |
|
68 |
+
#: includes/B2S/Ship/Save.php:428
|
69 |
msgid ""
|
70 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
71 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
78 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
79 |
"Facebook-Profil zu senden!"
|
80 |
|
81 |
+
#: includes/B2S/Ship/Save.php:419
|
82 |
msgid ""
|
83 |
"-To share your post immediately, click the \"Share\" button next to your "
|
84 |
"selected Facebook profile below."
|
86 |
"-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
|
87 |
"neben Deinem unten aufgeführten Profil."
|
88 |
|
89 |
+
#: includes/B2S/Ship/Save.php:427
|
90 |
msgid ""
|
91 |
"-To share your post immediately, click the \"Share\" button next to your "
|
92 |
"selected Google+ account below."
|
106 |
msgid "1x publish report"
|
107 |
msgstr "1 x Veröffentlichungsreport"
|
108 |
|
109 |
+
#: views/b2s/network.php:723
|
110 |
#, php-format
|
111 |
msgid ""
|
112 |
"<a href=\"%s\" target=\"_blank\">Get more information on how to add more "
|
115 |
"<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
|
116 |
"weitere Seiten und Gruppen dazu buchen kannst.</a>"
|
117 |
|
118 |
+
#: includes/Loader.php:1581 includes/System.php:32 includes/System.php:38
|
119 |
#, php-format
|
120 |
msgid ""
|
121 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
162 |
"Schon registriert? Log Dich in Deinen Support Konto ein, um Fragen zu "
|
163 |
"stellen oder an Diskussionen teilzunehmen"
|
164 |
|
165 |
+
#: includes/B2S/Settings/Item.php:273 views/b2s/html/footer.php:166
|
166 |
msgid ""
|
167 |
"A photo or image post displays the selected image in the one-page preview of "
|
168 |
"Blog2Social and your comment above the image. The image links to the image "
|
189 |
"definiert. Du kannst diese Einstellungen für Dein Profil jederzeit in den "
|
190 |
"Auto-Poster-Einstellungen deaktivieren."
|
191 |
|
192 |
+
#: views/b2s/network.php:392 views/b2s/ship.php:621
|
193 |
msgid ""
|
194 |
"Access to this resource on your server is denied! Please check your "
|
195 |
"webserver configuration for caching."
|
197 |
"Der Zugriff auf diese Ressource auf Ihrem Server ist verweigert! Bitte "
|
198 |
"überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
199 |
|
200 |
+
#: includes/B2S/Settings/Item.php:54 includes/B2S/Settings/Item.php:89
|
201 |
+
#: includes/B2S/Ship/Item.php:1161
|
202 |
msgid "Account"
|
203 |
msgstr "Konto"
|
204 |
|
214 |
msgid "Activate Instant Caching"
|
215 |
msgstr "Instant Caching aktivieren"
|
216 |
|
217 |
+
#: includes/B2S/Settings/Item.php:116
|
218 |
msgid "activate Legacy mode"
|
219 |
msgstr "Kompatibilitätsmodus aktivieren"
|
220 |
|
221 |
+
#: views/b2s/settings.php:169
|
222 |
msgid "Activate Legacy mode "
|
223 |
msgstr "Kompatibilitätsmodus aktivieren"
|
224 |
|
230 |
msgid "activated"
|
231 |
msgstr "aktiviert"
|
232 |
|
233 |
+
#: includes/Tools.php:427
|
234 |
msgid "Activities"
|
235 |
msgstr "Aktivitäten"
|
236 |
|
237 |
+
#: includes/B2S/Network/Item.php:834
|
238 |
msgid "Add a link-URL to the end of my image post."
|
239 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
240 |
|
241 |
+
#: includes/B2S/Network/Item.php:841
|
242 |
msgid ""
|
243 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
244 |
"Instagram does not turn link-URLs into clickable links)"
|
246 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
247 |
"Instagram Links nicht als klickbare Links darstellt)"
|
248 |
|
249 |
+
#: includes/B2S/Network/Item.php:853
|
250 |
msgid "Add a link-URL to the end of my post."
|
251 |
msgstr "Link automatisch am Ende meines Beitrags einfügen."
|
252 |
|
258 |
"Setze und bearbeite Social-Media-Tags für Open Graph (z.B. Facebook und "
|
259 |
"LinkedIn) und Twitter Cards, um das Aussehen Deiner Link-Posts festzulegen."
|
260 |
|
261 |
+
#: includes/B2S/Ship/Item.php:1330
|
262 |
msgid "add another post"
|
263 |
msgstr "einen weiteren Post anlegen"
|
264 |
|
265 |
+
#: views/b2s/network.php:632 views/b2s/ship.php:739
|
266 |
msgid "Add Group"
|
267 |
msgstr "Gruppe hinzufügen"
|
268 |
|
269 |
+
#: views/b2s/ship.php:127
|
270 |
msgid "Add more..."
|
271 |
msgstr "mehr hinzufügen"
|
272 |
|
278 |
"Füge mehrere Benutzer und Accounts pro Netzwerk hinzu. Definiere Sharing-"
|
279 |
"Profile für ausgewählte Netzwerk-Bundles."
|
280 |
|
281 |
+
#: includes/B2S/Settings/Item.php:144
|
282 |
msgid "Add oEmbed tags"
|
283 |
msgstr "oEmbed Tags hinzufügen"
|
284 |
|
285 |
+
#: includes/B2S/Settings/Item.php:140
|
286 |
msgid ""
|
287 |
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
288 |
"and other social networks to display your post or page image, title and "
|
292 |
"Facebook und andere soziale Netzwerke Bilder, Titel und Beschreibung Deines "
|
293 |
"Beitrag/Seite korrekt darstellen können."
|
294 |
|
295 |
+
#: views/b2s/network.php:613 views/b2s/ship.php:720
|
296 |
msgid "Add Page"
|
297 |
msgstr "Seite hinzufügen"
|
298 |
|
299 |
+
#: views/b2s/post.calendar.php:93 views/b2s/post.sched.php:177
|
300 |
+
#: views/b2s/repost.php:70
|
301 |
msgid "add post"
|
302 |
msgstr "Beitrag hinzufügen"
|
303 |
|
304 |
+
#: views/b2s/network.php:651 views/b2s/ship.php:682
|
305 |
msgid "Add Profile"
|
306 |
msgstr "Profil hinzufügen"
|
307 |
|
308 |
+
#: includes/B2S/Ship/Item.php:1180
|
309 |
msgid "Add Retweet"
|
310 |
msgstr "Retweet hinzufügen"
|
311 |
|
312 |
+
#: views/b2s/ship.php:766
|
313 |
msgid "add Schedule"
|
314 |
msgstr "Zeitplan hinzufügen"
|
315 |
|
316 |
+
#: includes/B2S/Settings/Item.php:179
|
317 |
msgid ""
|
318 |
"Add the default Open Graph parameters for title, description and image you "
|
319 |
"want Facebook to display, if you share the frontpage of your blog as link "
|
323 |
"die Open Graph Parameter bei Facebook, wenn Du die Frontpage Deines Blogs "
|
324 |
"als Link Post teilst (http://www.DeinBlog.de)"
|
325 |
|
326 |
+
#: includes/B2S/Settings/Item.php:195
|
327 |
msgid ""
|
328 |
"Add the default Twitter Card parameters for title, description and image you "
|
329 |
"want Twitter to display, if you share the frontpage of your blog as link "
|
337 |
msgid "Add to queue"
|
338 |
msgstr "Zur Warteschlange hinzufügen"
|
339 |
|
340 |
+
#: includes/B2S/Settings/Item.php:142
|
341 |
msgid ""
|
342 |
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
343 |
"Twitter to display your post or page image, title and description correctly."
|
346 |
"Twitter Bilder, Titel und Beschreibung Deines Beitrag/Seite korrekt "
|
347 |
"darstellen kann."
|
348 |
|
349 |
+
#: includes/B2S/AutoPost/Item.php:245
|
350 |
msgid "add/change connection"
|
351 |
msgstr "Verbindung hinzufügen/ändern"
|
352 |
|
362 |
msgid "additional profiles"
|
363 |
msgstr "gebuchte Profile"
|
364 |
|
365 |
+
#: views/b2s/network.php:453
|
366 |
msgid "Advanced Network Settings"
|
367 |
msgstr "Erweiterte Netzwerkeinstellungen"
|
368 |
|
406 |
msgid "All Types"
|
407 |
msgstr "alle Typen"
|
408 |
|
409 |
+
#: includes/B2S/Settings/Item.php:110
|
410 |
msgid "allow shortcodes in my post"
|
411 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
412 |
|
413 |
+
#: views/b2s/settings.php:155
|
414 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
415 |
msgstr ""
|
416 |
"Berücksichtige Shortcodes in meinen Social Media Beiträgen (z.B. Page-"
|
425 |
msgid "Also included:"
|
426 |
msgstr "Ebenfalls enthalten:"
|
427 |
|
428 |
+
#: views/b2s/network.php:329
|
429 |
msgid ""
|
430 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
431 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
435 |
"einen manuellen Textauszug in der Textauszug-Box im Gutenberg Seitenmenü "
|
436 |
"(Dokumenten-Einstellungen) Deines Blogbeitrages eingetragen hast. "
|
437 |
|
438 |
+
#: views/b2s/network.php:467 views/b2s/network.php:482
|
439 |
+
#: views/b2s/network.php:514 views/b2s/network.php:517
|
440 |
+
#: views/b2s/network.php:520
|
441 |
msgid "An error occured. Please contact our support."
|
442 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
443 |
|
444 |
+
#: views/b2s/network.php:366 views/b2s/network.php:384 views/b2s/ship.php:595
|
445 |
+
#: views/b2s/ship.php:613
|
446 |
msgid "An error occurred! Please try again."
|
447 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
448 |
|
449 |
+
#: includes/Loader.php:908
|
450 |
msgid "An image is required to post on this social network."
|
451 |
msgstr ""
|
452 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
453 |
"erforderlich."
|
454 |
|
455 |
+
#: views/b2s/settings.php:106
|
456 |
#, php-format
|
457 |
msgid ""
|
458 |
"An instruction on how to define your own best times is explained in the "
|
472 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
473 |
msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
|
474 |
|
475 |
+
#: includes/Tools.php:425
|
476 |
msgid "Animals & Nature"
|
477 |
msgstr "Tiere & Natur"
|
478 |
|
479 |
+
#: views/b2s/network.php:548
|
480 |
msgid "Apply best time settings"
|
481 |
msgstr "Beste Zeiten verwenden"
|
482 |
|
483 |
+
#: views/b2s/autopost.php:87 includes/B2S/AutoPost/Item.php:91
|
484 |
msgid "Apply best times"
|
485 |
msgstr "Beste Zeiten berücksichtigen"
|
486 |
|
510 |
msgid "Apply image for this post"
|
511 |
msgstr "Bild für diesen Post übernehmen"
|
512 |
|
513 |
+
#: views/b2s/network.php:549
|
514 |
msgid "Apply post template settings"
|
515 |
msgstr "Beitragsvorlagen verwenden"
|
516 |
|
517 |
+
#: includes/B2S/Ship/Item.php:1360
|
518 |
msgid "Apply Settings To All Networks"
|
519 |
msgstr "Planung für alle Netzwerke übernehmen"
|
520 |
|
521 |
+
#: views/b2s/network.php:550
|
522 |
msgid "Apply URL Parameters"
|
523 |
msgstr "URL-Parameter verwenden"
|
524 |
|
546 |
msgid "Are you sure you want to delete this Social Media draft?"
|
547 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
548 |
|
549 |
+
#: includes/Tools.php:404
|
550 |
msgid "Argentina"
|
551 |
msgstr "Argentinien"
|
552 |
|
553 |
+
#: views/b2s/network.php:547 views/b2s/network.php:597
|
554 |
msgid "assign"
|
555 |
msgstr "zuweisen"
|
556 |
|
557 |
+
#: views/b2s/network.php:509 views/b2s/network.php:594
|
558 |
msgid "Assign the connection to other blog users"
|
559 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
560 |
|
571 |
msgid "at best times"
|
572 |
msgstr "zu den besten Zeiten"
|
573 |
|
574 |
+
#: views/b2s/ship.php:364
|
575 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
576 |
msgstr ""
|
577 |
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
584 |
msgid "at scheduled times"
|
585 |
msgstr "zu geplanten Zeiten"
|
586 |
|
587 |
+
#: includes/Tools.php:392
|
588 |
msgid "Australia"
|
589 |
msgstr "Australien"
|
590 |
|
591 |
+
#: includes/Tools.php:393
|
592 |
msgid "Austria"
|
593 |
msgstr "Österreich"
|
594 |
|
598 |
msgid "Author"
|
599 |
msgstr "Autor"
|
600 |
|
601 |
+
#: views/b2s/settings.php:118
|
602 |
msgid "Author: The author of the post."
|
603 |
msgstr "Author: Der Autor des Beitrags."
|
604 |
|
605 |
+
#: views/b2s/network.php:434 views/b2s/ship.php:663 views/b2s/ship.php:667
|
606 |
+
#: includes/B2S/Settings/Item.php:102
|
607 |
msgid "authorize"
|
608 |
msgstr "autorisieren"
|
609 |
|
619 |
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
620 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
621 |
|
622 |
+
#: includes/Loader.php:889 views/b2s/settings.php:40
|
623 |
#: views/b2s/html/sidebar.php:75
|
624 |
msgid "Auto-Post"
|
625 |
msgstr "Beiträge automatisch teilen"
|
626 |
|
627 |
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:195
|
628 |
+
#: views/b2s/post.calendar.php:292 views/b2s/ship.php:318
|
629 |
+
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:33
|
630 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
631 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
632 |
#: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
|
637 |
"Aktualisierung posten und zeitversetzt planen"
|
638 |
|
639 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:730
|
640 |
+
#: includes/B2S/Post/Item.php:892
|
641 |
msgid "Auto-Posting"
|
642 |
msgstr "Auto-Posting"
|
643 |
|
645 |
msgid "autopost"
|
646 |
msgstr "Auto-Post"
|
647 |
|
648 |
+
#: includes/B2S/AutoPost/Item.php:44
|
649 |
msgid "Autoposter"
|
650 |
msgstr "Auto-Poster"
|
651 |
|
652 |
+
#: includes/B2S/AutoPost/Item.php:140
|
653 |
msgid "Autoposter for Imported Posts"
|
654 |
msgstr "Auto-Poster für importierte Beiträge"
|
655 |
|
661 |
msgid "Available accounts"
|
662 |
msgstr "Verfügbare Accounts"
|
663 |
|
664 |
+
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:218
|
665 |
msgid "Available networks"
|
666 |
msgstr "Verfügbare Netzwerke"
|
667 |
|
669 |
msgid "Available networks for autoposting"
|
670 |
msgstr "Verfügbare Netzwerke im Autoposter"
|
671 |
|
672 |
+
#: includes/B2S/AutoPost/Item.php:157
|
673 |
msgid "Available networks to select your auto-post connecitons:"
|
674 |
msgstr "Verfügbare Netwerkverbindungen:"
|
675 |
|
676 |
+
#: includes/Loader.php:1581 includes/Loader.php:1602 includes/Loader.php:1856
|
677 |
msgid "back to install plugins"
|
678 |
msgstr "zurück zur Pluginübersicht"
|
679 |
|
682 |
msgstr "Best Time Manager"
|
683 |
|
684 |
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:197
|
685 |
+
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:320
|
686 |
+
#: views/b2s/ship.php:386 views/b2s/ship.php:432 views/b2s/html/footer.php:35
|
687 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
688 |
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
|
689 |
#: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
|
693 |
"social media posts"
|
694 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
695 |
|
696 |
+
#: views/b2s/curation.php:185 views/b2s/post.calendar.php:282
|
697 |
+
#: views/b2s/ship.php:420
|
698 |
msgid "Best Time Scheduler"
|
699 |
msgstr "Beste Zeiten Manager"
|
700 |
|
727 |
msgid "Blog"
|
728 |
msgstr "Blog"
|
729 |
|
730 |
+
#: includes/Loader.php:1010 views/b2s/html/sidebar.php:25
|
731 |
#: views/b2s/html/sidebar.ship.php:24
|
732 |
msgid "Blog2Social"
|
733 |
msgstr "Blog2Social"
|
734 |
|
735 |
+
#: views/b2s/autopost.php:62
|
736 |
msgid ""
|
737 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
738 |
"defined in the general settings of your WordPress. You can select a user-"
|
746 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
747 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
748 |
|
749 |
+
#: views/b2s/settings.php:200
|
750 |
+
msgid ""
|
751 |
+
"Blog2Social applies the scheduled time settings based on the time zone "
|
752 |
+
"defined in the general settings of your WordPress. YYou can select a user-"
|
753 |
+
"specific time zone that deviates from the Wordpress system time zone for "
|
754 |
+
"your social media scheduling. To do this, select the desired time zone 24h "
|
755 |
+
"or 12h (am/pm), by simply clicking on the button."
|
756 |
+
msgstr ""
|
757 |
+
"Die Zeiteinstellungen zum Planen von Social Media Posts in Blog2Social "
|
758 |
+
"basieren auf der Zeitzone, die in den allgemeinen Einstellungen Deines "
|
759 |
+
"WordPress festgelegt ist. Du kannst aber auch eine andere Zeitzone als Basis "
|
760 |
+
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
761 |
+
"gewünschte Zeitzone 24h oder 12h (am/pm) aus, indem Du einfach auf den "
|
762 |
+
"Button klickst."
|
763 |
+
|
764 |
#: views/b2s/html/sidebar.php:180
|
765 |
msgid "Blog2Social Blog News"
|
766 |
msgstr "Blog2Social Blog News"
|
795 |
msgid "Blog2Social is a service of Adenion GmbH"
|
796 |
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
797 |
|
798 |
+
#: includes/Loader.php:1581
|
799 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
800 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
801 |
|
816 |
"Zwecke. Schon ab 6,58 € pro Monat kannst du mit den PREMIUM-Funktionen "
|
817 |
"durchstarten."
|
818 |
|
819 |
+
#: views/b2s/curation.php:176 views/b2s/post.calendar.php:273
|
820 |
+
#: views/b2s/ship.php:411
|
821 |
msgid "Blog2Social Premium covers everything you need."
|
822 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
823 |
|
871 |
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
872 |
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
873 |
|
874 |
+
#: views/b2s/network.php:130
|
875 |
msgid ""
|
876 |
"Blog2Social uses the official Google My Business API to share your content "
|
877 |
"on your business listing. You can connect Google My Business listings with "
|
903 |
msgid "Blog2Social, Adenion"
|
904 |
msgstr "Blog2Social, Adenion"
|
905 |
|
906 |
+
#: includes/Loader.php:421
|
907 |
msgid "Blog2Social: Autoposter"
|
908 |
msgstr "Blog2Social: Auto-Poster"
|
909 |
|
924 |
msgid "Blog2Social: Social Media Auto-Posting"
|
925 |
msgstr "Blog2Social: Social Media Auto-Posting"
|
926 |
|
927 |
+
#: includes/Loader.php:422
|
928 |
msgid "Blog2Social: Social Media Content Calendar"
|
929 |
msgstr "Blog2Social: Social-Media-Content-Kalender"
|
930 |
|
931 |
+
#: includes/B2S/Settings/Item.php:82 includes/B2S/Settings/Item.php:93
|
932 |
msgid "Brand"
|
933 |
msgstr "Brand"
|
934 |
|
940 |
msgid "BUSINESS"
|
941 |
msgstr "BUSINESS"
|
942 |
|
943 |
+
#: includes/Loader.php:891 includes/B2S/Network/Item.php:188
|
944 |
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:327
|
945 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Item.php:331
|
946 |
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
|
948 |
msgid "Business"
|
949 |
msgstr "Business"
|
950 |
|
951 |
+
#: views/b2s/network.php:704
|
952 |
msgid "Business: 15 (per user)"
|
953 |
msgstr "Business: 15 (pro Nutzer)"
|
954 |
|
971 |
"Mit der Erstellung eines Kontos erklärst Du Dich einverstanden mit den "
|
972 |
"Blog2Social <a target=\"_blank\" href=\"%s\">Nutzungsbedingungen</a>"
|
973 |
|
974 |
+
#: includes/B2S/AutoPost/Item.php:78
|
975 |
msgid ""
|
976 |
"By enabling this feature your previously published social media posts will "
|
977 |
"be sent again to your selected social media channels as soon as the post is "
|
981 |
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
982 |
"Beitrag aktualisiert wird."
|
983 |
|
984 |
+
#: includes/Loader.php:977 includes/Loader.php:1040 views/b2s/dashboard.php:30
|
985 |
#: includes/B2S/RePost/Item.php:141 views/b2s/html/post.navbar.php:23
|
986 |
#: views/b2s/html/sidebar.php:128
|
987 |
msgid "Calendar"
|
988 |
msgstr "Kalender"
|
989 |
|
990 |
+
#: includes/B2S/Settings/Item.php:83 includes/B2S/Settings/Item.php:93
|
991 |
msgid "Call-to-Action"
|
992 |
msgstr "Call-to-Action"
|
993 |
|
994 |
+
#: includes/Tools.php:385
|
995 |
msgid "Canada"
|
996 |
msgstr "Kanada"
|
997 |
|
1011 |
msgid "Category"
|
1012 |
msgstr "Kategorie"
|
1013 |
|
1014 |
+
#: includes/B2S/Settings/Item.php:103
|
1015 |
msgid "change"
|
1016 |
msgstr "ändern"
|
1017 |
|
1025 |
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
|
1026 |
#: includes/B2S/Ship/Item.php:558 includes/B2S/Ship/Item.php:581
|
1027 |
#: includes/B2S/Ship/Item.php:610 includes/B2S/Ship/Item.php:639
|
1028 |
+
#: includes/B2S/Ship/Item.php:667 includes/B2S/Ship/Item.php:695
|
1029 |
+
#: includes/B2S/Ship/Item.php:738 includes/B2S/Ship/Item.php:759
|
1030 |
+
#: includes/B2S/Ship/Item.php:766 includes/B2S/Ship/Item.php:773
|
1031 |
+
#: includes/B2S/Ship/Item.php:793 includes/B2S/Ship/Item.php:813
|
1032 |
+
#: includes/B2S/Ship/Item.php:820 includes/B2S/Ship/Item.php:827
|
1033 |
+
#: includes/B2S/Ship/Item.php:844 includes/B2S/Ship/Item.php:865
|
1034 |
+
#: includes/B2S/Ship/Item.php:886 includes/B2S/Ship/Item.php:907
|
1035 |
+
#: includes/B2S/Ship/Item.php:927 includes/B2S/Ship/Item.php:948
|
1036 |
+
#: includes/B2S/Ship/Item.php:992
|
1037 |
msgid "Change image"
|
1038 |
msgstr "Bild ändern"
|
1039 |
|
1043 |
"Ändere das Bild, den Titel und die Beschreibung für Deinen Post auf diesem "
|
1044 |
"Netzwerk"
|
1045 |
|
1046 |
+
#: views/b2s/network.php:200
|
1047 |
msgid "Change successful"
|
1048 |
msgstr "Change successful"
|
1049 |
|
1050 |
+
#: views/b2s/ship.php:204
|
1051 |
msgid "change website address"
|
1052 |
msgstr "Webseiten-Adresse ändern"
|
1053 |
|
1059 |
"Eine Bildänderung bei einem Link-Post, beeinflusst das Bild auf allen "
|
1060 |
"Netzwerken mit Link-Post Einstellung für diesen Beitrag."
|
1061 |
|
1062 |
+
#: views/b2s/network.php:325 includes/B2S/Network/Item.php:860
|
1063 |
msgid "Character limit"
|
1064 |
msgstr "Zeichenbegrenzung"
|
1065 |
|
1066 |
+
#: includes/B2S/Network/Item.php:827 includes/B2S/Network/Item.php:884
|
1067 |
+
#: includes/B2S/Network/Item.php:884 includes/B2S/Network/Item.php:920
|
1068 |
+
#: includes/B2S/Network/Item.php:920 includes/B2S/Ship/Item.php:215
|
1069 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
1070 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
1071 |
+
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1338
|
1072 |
+
#: includes/B2S/Ship/Item.php:1340
|
1073 |
msgid "characters"
|
1074 |
msgstr "Zeichen"
|
1075 |
|
1089 |
"Teilen 30 Tage lang kostenlos und unverbindlich (kein automatisches "
|
1090 |
"Abonnement)"
|
1091 |
|
1092 |
+
#: includes/B2S/Settings/Item.php:169
|
1093 |
msgid "Check Settings with Sharing-Debugger"
|
1094 |
msgstr "Einstellungen mit Sharing-Debugger überprüfen"
|
1095 |
|
1096 |
+
#: views/b2s/settings.php:108
|
1097 |
msgid "Check, edit or define your social media time settings"
|
1098 |
msgstr ""
|
1099 |
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
1100 |
"Netzwerke"
|
1101 |
|
1102 |
+
#: includes/Tools.php:409
|
1103 |
msgid "Chile"
|
1104 |
msgstr "Chile"
|
1105 |
|
1106 |
+
#: views/b2s/post.calendar.php:116 views/b2s/post.sched.php:134
|
1107 |
+
#: views/b2s/repost.php:118 views/b2s/ship.php:513
|
1108 |
msgid "Choose your"
|
1109 |
msgstr "Wähle Deinen"
|
1110 |
|
1111 |
+
#: views/b2s/network.php:274
|
1112 |
msgid "Choose your Post Format"
|
1113 |
msgstr "Wähle Dein Postformat "
|
1114 |
|
1117 |
msgid "City"
|
1118 |
msgstr "Stadt"
|
1119 |
|
1120 |
+
#: includes/B2S/Ship/Item.php:1083
|
1121 |
msgid "Classified Ads"
|
1122 |
msgstr "Kleinanzeigen"
|
1123 |
|
1124 |
+
#: includes/B2S/Network/Item.php:800
|
1125 |
msgid "clear"
|
1126 |
msgstr "löschen"
|
1127 |
|
1141 |
"Klicke im Vorschau-Editor auf „Meine Zeiteinstellungen laden\", um Deine "
|
1142 |
"Beiträge automatisch für Deine individuell gewählten besten Zeiten zu planen."
|
1143 |
|
1144 |
+
#: views/b2s/network.php:352
|
1145 |
msgid "Click on \"continue\""
|
1146 |
msgstr "Klicke auf “weiter”"
|
1147 |
|
1148 |
+
#: views/b2s/post.sched.php:37 includes/B2S/Network/Item.php:158
|
|
|
1149 |
msgid "Clock"
|
1150 |
msgstr "Uhr"
|
1151 |
|
1152 |
+
#: includes/Util.php:48
|
1153 |
+
msgid "clock"
|
1154 |
+
msgstr "Uhr"
|
1155 |
+
|
1156 |
+
#: includes/Tools.php:410
|
1157 |
msgid "Colombia"
|
1158 |
msgstr "Kolumbien"
|
1159 |
|
1165 |
msgid "Company Description"
|
1166 |
msgstr "Firmenbeschreibung"
|
1167 |
|
1168 |
+
#: includes/Loader.php:891
|
1169 |
msgid "Company-Page (Employer Branding Profile)"
|
1170 |
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
1171 |
|
1172 |
+
#: views/b2s/network.php:435 views/b2s/network.php:437 views/b2s/ship.php:664
|
1173 |
+
#: views/b2s/ship.php:666
|
1174 |
msgid "confirm"
|
1175 |
msgstr "bestätigen"
|
1176 |
|
1177 |
+
#: views/b2s/ship.php:223
|
1178 |
msgid "connect"
|
1179 |
msgstr "Jetzt mit Netzwerken verbinden"
|
1180 |
|
1181 |
+
#: views/b2s/settings.php:77
|
1182 |
msgid ""
|
1183 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1184 |
"share your WordPress blog posts and pages as well as imported posts and "
|
1188 |
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
1189 |
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
1190 |
|
1191 |
+
#: views/b2s/ship.php:290
|
1192 |
msgid "Connect for"
|
1193 |
msgstr "Netzwerke verbinden für"
|
1194 |
|
1195 |
+
#: views/b2s/network.php:670 views/b2s/ship.php:701
|
1196 |
msgid "Connect Instagram Business Account"
|
1197 |
msgstr "Instagram Business-Konto verbinden"
|
1198 |
|
1199 |
+
#: views/b2s/network.php:341 views/b2s/ship.php:575
|
1200 |
msgid "Connect with Pinterest"
|
1201 |
msgstr "Mit Pinterest verbinden"
|
1202 |
|
1203 |
+
#: views/b2s/settings.php:99
|
1204 |
msgid "Connect your social media networks"
|
1205 |
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
1206 |
|
1225 |
msgid "Connection is interrupted since"
|
1226 |
msgstr "Verbindung ist unterbrochen seit"
|
1227 |
|
1228 |
+
#: includes/B2S/AutoPost/Item.php:243 includes/B2S/Network/Item.php:207
|
1229 |
msgid "Connections"
|
1230 |
msgstr "Verbindungen"
|
1231 |
|
1233 |
msgid "Contact Details"
|
1234 |
msgstr "Kontaktdaten"
|
1235 |
|
1236 |
+
#: includes/B2S/Network/Item.php:764 includes/B2S/Settings/Item.php:77
|
1237 |
msgid "Content"
|
1238 |
msgstr "Inhalt"
|
1239 |
|
1241 |
msgid "Content Library"
|
1242 |
msgstr "Content-Bibliothek"
|
1243 |
|
1244 |
+
#: views/b2s/settings.php:115
|
1245 |
msgid "Content: The content of your post."
|
1246 |
msgstr "Content: Der Inhalt Deines Beitrags."
|
1247 |
|
1248 |
+
#: views/b2s/network.php:619 views/b2s/network.php:638
|
1249 |
+
#: views/b2s/network.php:657 views/b2s/network.php:676 views/b2s/ship.php:688
|
1250 |
+
#: views/b2s/ship.php:707 views/b2s/ship.php:726 views/b2s/ship.php:745
|
1251 |
msgid "Continue"
|
1252 |
msgstr "Fortsetzen"
|
1253 |
|
1254 |
+
#: views/b2s/curation.php:74 views/b2s/network.php:438
|
1255 |
msgid "continue"
|
1256 |
msgstr "weiter"
|
1257 |
|
1259 |
msgid "Continue deactivation"
|
1260 |
msgstr "Deaktivierung fortsetzen"
|
1261 |
|
1262 |
+
#: includes/B2S/Ship/Item.php:1344
|
1263 |
msgid "Copy from original"
|
1264 |
msgstr "Originaltext kopieren"
|
1265 |
|
1267 |
msgid "Copyright"
|
1268 |
msgstr "Copyright"
|
1269 |
|
1270 |
+
#: views/b2s/network.php:201
|
1271 |
msgid "Could not be changed"
|
1272 |
msgstr "Could not be changed"
|
1273 |
|
1289 |
msgid "Country"
|
1290 |
msgstr "Land"
|
1291 |
|
1292 |
+
#: views/b2s/network.php:93
|
1293 |
msgid "create"
|
1294 |
msgstr "erstellen"
|
1295 |
|
1305 |
msgid "create account"
|
1306 |
msgstr "neues Konto erstellen"
|
1307 |
|
1308 |
+
#: views/b2s/network.php:38 views/b2s/network.php:41 views/b2s/network.php:87
|
1309 |
msgid "Create new network collection"
|
1310 |
msgstr "Neue Netzwerkgruppierung anlegen"
|
1311 |
|
1312 |
+
#: views/b2s/post.calendar.php:202
|
1313 |
msgid "Create or share content from other sources"
|
1314 |
msgstr "Erstelle oder teile Beiträge aus beliebigen Quellen"
|
1315 |
|
1321 |
msgid "Create Post"
|
1322 |
msgstr "Beitrag erstellen"
|
1323 |
|
1324 |
+
#: includes/Loader.php:976
|
1325 |
msgid "Create Social Media Posts"
|
1326 |
msgstr "Erstelle Social Media Posts"
|
1327 |
|
1380 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
1381 |
"Community zu erzielen"
|
1382 |
|
1383 |
+
#: includes/Tools.php:382
|
1384 |
msgid "Czechoslovakia"
|
1385 |
msgstr "Tschechoslowakei"
|
1386 |
|
1387 |
+
#: includes/Loader.php:974 includes/Loader.php:1019
|
1388 |
msgid "Dashboard"
|
1389 |
msgstr "Dashboard"
|
1390 |
|
1391 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1392 |
+
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:1311
|
1393 |
#: views/b2s/partials/post-edit-modal.php:67
|
1394 |
#: views/b2s/partials/post-edit-modal.php:70
|
1395 |
msgid "Date"
|
1396 |
msgstr "Startdatum"
|
1397 |
|
1398 |
+
#: includes/B2S/Ship/Item.php:1254
|
1399 |
msgid "Day of month"
|
1400 |
msgstr "Tag im Monat"
|
1401 |
|
1402 |
#: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:367
|
1403 |
+
#: includes/B2S/Network/Item.php:433 includes/B2S/Ship/Item.php:1259
|
1404 |
msgid "Days"
|
1405 |
msgstr "Tage"
|
1406 |
|
1416 |
msgid "Debug & Preview"
|
1417 |
msgstr "Link prüfen"
|
1418 |
|
1419 |
+
#: views/b2s/network.php:278 views/b2s/network.php:281
|
1420 |
+
#: views/b2s/network.php:284
|
1421 |
msgid ""
|
1422 |
"Decide in which post format you want to post your content: Link post or "
|
1423 |
"image post."
|
1425 |
"Entscheide, in welchem Format Du Deine Inhalte veröffentlichen möchtest: "
|
1426 |
"Link-Beitrag oder Bild-Beitrag."
|
1427 |
|
1428 |
+
#: views/b2s/network.php:287
|
1429 |
msgid ""
|
1430 |
"Decide in wich form you want to post your Content. Either as image with "
|
1431 |
"frame, or as image cut out."
|
1437 |
msgid "Default"
|
1438 |
msgstr "Standard"
|
1439 |
|
1440 |
+
#: views/b2s/network.php:566 includes/B2S/Network/Item.php:557
|
1441 |
#, php-format
|
1442 |
msgid ""
|
1443 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1448 |
"hinzugefügt werden sollen z. B. um Tracking-Links mit UTM-Parametern zu "
|
1449 |
"erstellen. <a target=\"_blank\" href=\"%s\">Weitere Informationen</a>"
|
1450 |
|
1451 |
+
#: views/b2s/network.php:328
|
1452 |
msgid ""
|
1453 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1454 |
"individually. Your text will be shortened after the last comma, period, or "
|
1458 |
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1459 |
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1460 |
|
1461 |
+
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:155
|
1462 |
+
#: views/b2s/repost.php:139 views/b2s/ship.php:533
|
1463 |
msgid ""
|
1464 |
"Define the default settings for the custom post format for all of your "
|
1465 |
"Facebook accounts in the Blog2Social settings."
|
1467 |
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1468 |
"den Blog2Social Einstellungen."
|
1469 |
|
1470 |
+
#: views/b2s/post.calendar.php:146 views/b2s/post.sched.php:164
|
1471 |
+
#: views/b2s/repost.php:148 views/b2s/ship.php:542
|
1472 |
msgid ""
|
1473 |
"Define the default settings for the custom post format for all of your "
|
1474 |
"Instagram accounts in the Blog2Social settings."
|
1476 |
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1477 |
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1478 |
|
1479 |
+
#: views/b2s/post.calendar.php:143 views/b2s/post.sched.php:161
|
1480 |
+
#: views/b2s/repost.php:145 views/b2s/ship.php:539
|
1481 |
msgid ""
|
1482 |
"Define the default settings for the custom post format for all of your "
|
1483 |
"LinkedIn accounts in the Blog2Social settings."
|
1485 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1486 |
"unter den Blog2Social Einstellungen."
|
1487 |
|
1488 |
+
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:158
|
1489 |
+
#: views/b2s/repost.php:142 views/b2s/ship.php:536
|
1490 |
msgid ""
|
1491 |
"Define the default settings for the custom post format for all of your "
|
1492 |
"Twitter accounts in the Blog2Social settings."
|
1498 |
msgid "Define Twitter post content"
|
1499 |
msgstr "Twitter Beitragsinhalt definieren"
|
1500 |
|
1501 |
+
#: views/b2s/settings.php:123
|
1502 |
msgid "Define your post templates for each social media network"
|
1503 |
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
1504 |
|
1505 |
+
#: includes/B2S/Ship/Item.php:1162 views/b2s/partials/post-edit-modal.php:78
|
1506 |
msgid "Delay"
|
1507 |
msgstr "Verzögerung"
|
1508 |
|
1509 |
+
#: views/b2s/network.php:45 views/b2s/partials/post-edit-modal.php:102
|
1510 |
msgid "Delete"
|
1511 |
msgstr "Löschen"
|
1512 |
|
1513 |
+
#: includes/Ajax/Post.php:1956 includes/B2S/Network/Item.php:527
|
1514 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
1515 |
+
#: includes/B2S/Post/Item.php:869 includes/B2S/Post/Item.php:927
|
1516 |
+
#: includes/B2S/Settings/Item.php:103 includes/B2S/Ship/Item.php:1179
|
1517 |
+
#: includes/B2S/Ship/Item.php:1329
|
1518 |
msgid "delete"
|
1519 |
msgstr "löschen"
|
1520 |
|
1521 |
+
#: views/b2s/network.php:166
|
1522 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1523 |
msgstr "Alle geplanten Beiträge für diesen Account unwiderruflich löschen."
|
1524 |
|
1525 |
+
#: views/b2s/network.php:168
|
1526 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1527 |
msgstr ""
|
1528 |
"Lösche alle geplanten Beiträge von allen Benutzern, die diese Verbindung "
|
1529 |
"nutzen."
|
1530 |
|
1531 |
+
#: views/b2s/network.php:149
|
1532 |
msgid "Delete Authorization"
|
1533 |
msgstr "Autorisierung löschen"
|
1534 |
|
1541 |
msgid "Delete entries from the reporting"
|
1542 |
msgstr "Einträge aus dem Reporting löschen"
|
1543 |
|
1544 |
+
#: views/b2s/post.sched.php:94 views/b2s/repost.php:96
|
1545 |
msgid "Delete entries from the scheduling"
|
1546 |
msgstr "Einträge aus der Planung löschen"
|
1547 |
|
1548 |
+
#: includes/B2S/Post/Item.php:795 includes/B2S/Post/Item.php:808
|
1549 |
msgid "delete from reporting"
|
1550 |
msgstr "aus Reporting löschen"
|
1551 |
|
1552 |
+
#: views/b2s/network.php:109
|
1553 |
msgid "Delete Profile"
|
1554 |
msgstr "Profil löschen"
|
1555 |
|
1557 |
msgid "Delete scheduled posts"
|
1558 |
msgstr "Geplante Beiträge löschen"
|
1559 |
|
1560 |
+
#: includes/B2S/Post/Item.php:936
|
1561 |
msgid "delete scheduling"
|
1562 |
msgstr "Planung löschen"
|
1563 |
|
1573 |
msgid "Delete Social Media Posts"
|
1574 |
msgstr "Social Media Posts löschen"
|
1575 |
|
1576 |
+
#: includes/B2S/Ship/Item.php:357 includes/B2S/Ship/Item.php:1348
|
1577 |
msgid "Delete text"
|
1578 |
msgstr "Text löschen"
|
1579 |
|
1580 |
+
#: includes/Tools.php:398
|
1581 |
msgid "Denmark"
|
1582 |
msgstr "Dänemark"
|
1583 |
|
1584 |
+
#: includes/B2S/Settings/Item.php:183 includes/B2S/Settings/Item.php:204
|
1585 |
msgid "Description"
|
1586 |
msgstr "Beschreibung"
|
1587 |
|
1594 |
msgid "Details"
|
1595 |
msgstr "Details"
|
1596 |
|
1597 |
+
#: includes/B2S/Settings/Item.php:228
|
1598 |
msgid "Did you know?"
|
1599 |
msgstr "Wusstest Du schon?"
|
1600 |
|
1606 |
msgid "Did you miss something? Tell us!"
|
1607 |
msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
|
1608 |
|
1609 |
+
#: includes/B2S/AutoPost/Item.php:49
|
1610 |
msgid "Disconnect"
|
1611 |
msgstr "Verbindung aufheben"
|
1612 |
|
1613 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1614 |
+
#: includes/B2S/Ship/Item.php:776 includes/B2S/Ship/Item.php:830
|
1615 |
msgid "Do u want to post multiple images?"
|
1616 |
msgstr "Du möchtest mehrere Bilder posten?"
|
1617 |
|
1618 |
+
#: views/b2s/network.php:158
|
1619 |
msgid "Do you really want to delete this authorization"
|
1620 |
msgstr "Soll die Autorisierung wirklich gelöscht werden?"
|
1621 |
|
1622 |
+
#: views/b2s/network.php:112
|
1623 |
msgid "Do you really want to delete this profile"
|
1624 |
msgstr "Soll Dein Profil wirklich gelöscht werden?"
|
1625 |
|
1637 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
1638 |
|
1639 |
#: views/b2s/curation.php:154 views/b2s/post.approve.php:109
|
1640 |
+
#: views/b2s/ship.php:478
|
1641 |
msgid "Do you want to mark this post as published ?"
|
1642 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1643 |
|
1644 |
+
#: views/b2s/network.php:347
|
1645 |
msgid "Download and activate the Blog2Social extension"
|
1646 |
msgstr "Lade und aktiviere die Blog2Social Extension"
|
1647 |
|
1650 |
msgid "draft"
|
1651 |
msgstr "Entwurf"
|
1652 |
|
1653 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:13
|
1654 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
1655 |
#: views/b2s/html/sidebar.php:116
|
1656 |
msgid "Drafts"
|
1657 |
msgstr "Entwürfe"
|
1658 |
|
1659 |
+
#: includes/B2S/Ship/Item.php:1249 includes/B2S/Ship/Item.php:1252
|
1660 |
msgid "Duration"
|
1661 |
msgstr "Dauer"
|
1662 |
|
1663 |
+
#: views/b2s/network.php:395 views/b2s/ship.php:624
|
1664 |
#: views/b2s/html/header.php:348 views/prg/html/form.php:141
|
1665 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1666 |
#: views/prg/html/form.php:220
|
1671 |
msgid "E-Mail or Username"
|
1672 |
msgstr "E-Mail oder Benutzername"
|
1673 |
|
1674 |
+
#: views/b2s/network.php:697
|
1675 |
msgid ""
|
1676 |
"Each license has a specified number of accounts you can connect per social "
|
1677 |
"media network."
|
1679 |
"Jede Lizenz hat eine bestimmte Anzahl von Konten, die Du pro Social-Media-"
|
1680 |
"Netzwerk verbinden kannst."
|
1681 |
|
1682 |
+
#: includes/B2S/Post/Item.php:924
|
1683 |
msgid "edit"
|
1684 |
msgstr "edit"
|
1685 |
|
1691 |
msgid "Edit Post"
|
1692 |
msgstr "Beitrag bearbeiten"
|
1693 |
|
1694 |
+
#: views/b2s/network.php:236 includes/B2S/Network/Item.php:198
|
1695 |
#: includes/B2S/Network/Item.php:198
|
1696 |
msgid "Edit Post Template"
|
1697 |
msgstr "Beitragsvorlage bearbeiten"
|
1698 |
|
1699 |
+
#: views/b2s/network.php:302
|
1700 |
msgid ""
|
1701 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1702 |
"textarea and customize them as you like."
|
1704 |
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
1705 |
"das Textfeld und passe sie nach Deinen Wünschen an."
|
1706 |
|
1707 |
+
#: views/b2s/settings.php:111
|
1708 |
msgid ""
|
1709 |
"Edit the post templates for each social media network to turn your social "
|
1710 |
"media posts automatically into tailored posts for each network and community."
|
1727 |
msgid "enable Auto-Posting"
|
1728 |
msgstr "Auto-Posting aktivieren"
|
1729 |
|
1730 |
+
#: includes/B2S/Ship/Item.php:1143
|
1731 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
1732 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
1733 |
|
1734 |
+
#: includes/B2S/Ship/Item.php:1304
|
1735 |
msgid "End Of Month"
|
1736 |
msgstr "Monatsende"
|
1737 |
|
1791 |
msgid "Event"
|
1792 |
msgstr "Event"
|
1793 |
|
1794 |
+
#: includes/B2S/Ship/Item.php:1082
|
1795 |
msgid "Events"
|
1796 |
msgstr "Events"
|
1797 |
|
1798 |
+
#: views/b2s/settings.php:116
|
1799 |
msgid ""
|
1800 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
1801 |
"post)."
|
1803 |
"Textauszug: Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü "
|
1804 |
"deines Beitrags festgelegt)."
|
1805 |
|
1806 |
+
#: includes/B2S/AutoPost/Item.php:285 includes/B2S/AutoPost/Item.php:305
|
1807 |
+
#: includes/B2S/RePost/Item.php:192 includes/B2S/RePost/Item.php:212
|
1808 |
+
#: includes/B2S/RePost/Item.php:232 includes/B2S/RePost/Item.php:251
|
1809 |
msgid "Exclude (Do no post ...)"
|
1810 |
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
1811 |
|
1813 |
msgid "Export as txt-file"
|
1814 |
msgstr "Als txt-Datei exportieren"
|
1815 |
|
1816 |
+
#: views/b2s/network.php:713
|
1817 |
msgid "Facebook groups"
|
1818 |
msgstr "Facebook-Gruppen"
|
1819 |
|
1844 |
msgid "Facebook Open Graph Meta Tags"
|
1845 |
msgstr "Facebook Open Graph Meta Tags"
|
1846 |
|
1847 |
+
#: views/b2s/network.php:715
|
1848 |
msgid "Facebook pages"
|
1849 |
msgstr "Facebook-Seiten"
|
1850 |
|
1856 |
msgid "Failed to save"
|
1857 |
msgstr "Speichern fehlgeschlagen"
|
1858 |
|
1859 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:463
|
1860 |
msgid "FAQ"
|
1861 |
msgstr "FAQ"
|
1862 |
|
1863 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:12
|
1864 |
#: views/b2s/html/sidebar.php:113
|
1865 |
msgid "Favorites"
|
1866 |
msgstr "Favoriten"
|
1867 |
|
1868 |
+
#: views/b2s/network.php:31 views/b2s/network.php:32
|
1869 |
+
#: views/b2s/post.calendar.php:231 views/b2s/post.calendar.php:232
|
1870 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1871 |
#: views/b2s/html/post.navbar.php:29 views/b2s/html/post.navbar.php:30
|
1872 |
msgid "filter"
|
1873 |
msgstr "Filter"
|
1874 |
|
1875 |
+
#: includes/B2S/AutoPost/Item.php:282
|
1876 |
msgid ""
|
1877 |
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1878 |
msgstr ""
|
1879 |
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
1880 |
"automatisch veröffentlicht)"
|
1881 |
|
1882 |
+
#: includes/Tools.php:400
|
1883 |
msgid "Finland"
|
1884 |
msgstr "Finnland"
|
1885 |
|
1893 |
msgid "First Steps"
|
1894 |
msgstr "Erste Schritte"
|
1895 |
|
1896 |
+
#: views/b2s/ship.php:221
|
1897 |
msgid "First, connect or select network before posting"
|
1898 |
msgstr ""
|
1899 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
1900 |
"Du den Beitrag teilst!"
|
1901 |
|
1902 |
+
#: includes/Tools.php:431
|
1903 |
msgid "Flags"
|
1904 |
msgstr "Flaggen"
|
1905 |
|
1907 |
msgid "Follow us"
|
1908 |
msgstr "Folge uns"
|
1909 |
|
1910 |
+
#: includes/Tools.php:426
|
1911 |
msgid "Food & Drink"
|
1912 |
msgstr "Essen & Trinken"
|
1913 |
|
1916 |
msgid "For example your Wordpress Home Page"
|
1917 |
msgstr "zum Beispiel Deine Blogseite"
|
1918 |
|
1919 |
+
#: views/b2s/network.php:720
|
1920 |
msgid ""
|
1921 |
"For example: If you purchase 5 Facebook groups, these additional 5 Facebook "
|
1922 |
"groups are available for all users. So, when 5 users are activated for the "
|
1928 |
"oder Business-Lizenz aktiviert sind, kann jeder Nutzer 1 Facebook Gruppe "
|
1929 |
"verbinden, oder 1 Nutzer kann alle 5 Facebook-Gruppen verbinden."
|
1930 |
|
1931 |
+
#: views/b2s/network.php:707
|
1932 |
msgid ""
|
1933 |
"For example: With the Pro license, each user can connect 5 Facebook accounts "
|
1934 |
"+ 5 Twitter accounts + 5 Instagram accounts + ..."
|
1944 |
"Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
|
1945 |
"bevorzugtes benutzerdefiniertes Postformat auswählen."
|
1946 |
|
1947 |
+
#: includes/B2S/Ship/Save.php:424
|
1948 |
msgid ""
|
1949 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
1950 |
msgstr ""
|
1951 |
"Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
|
1952 |
"zur Verfügung"
|
1953 |
|
1954 |
+
#: includes/B2S/Ship/Save.php:416
|
1955 |
msgid ""
|
1956 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
1957 |
"Instant Sharing"
|
1959 |
"Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht Facebook "
|
1960 |
"Instant Sharing zur Verfügung"
|
1961 |
|
1962 |
+
#: views/b2s/post.calendar.php:118 views/b2s/post.sched.php:136
|
1963 |
+
#: views/b2s/repost.php:120 views/b2s/ship.php:515
|
1964 |
msgid "for:"
|
1965 |
msgstr "für:"
|
1966 |
|
1976 |
msgid "Format"
|
1977 |
msgstr "Format"
|
1978 |
|
1979 |
+
#: includes/Tools.php:395
|
1980 |
msgid "France"
|
1981 |
msgstr "Frankreich"
|
1982 |
|
1984 |
msgid "Frequently asked questions"
|
1985 |
msgstr "Oft gestellte Fragen (FAQ)"
|
1986 |
|
1987 |
+
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:1321
|
1988 |
msgid "Fri"
|
1989 |
msgstr "Fr"
|
1990 |
|
1992 |
msgid "Friday"
|
1993 |
msgstr "Freitag"
|
1994 |
|
1995 |
+
#: includes/B2S/Settings/Item.php:167
|
1996 |
msgid "Frontpage Settings"
|
1997 |
msgstr "Frontpage Einstellungen"
|
1998 |
|
1999 |
+
#: views/b2s/settings.php:37
|
2000 |
msgid "General"
|
2001 |
msgstr "Allgemein"
|
2002 |
|
2004 |
msgid "German"
|
2005 |
msgstr "Deutsch"
|
2006 |
|
2007 |
+
#: includes/Tools.php:397
|
2008 |
msgid "Germany"
|
2009 |
msgstr "Deutschland"
|
2010 |
|
2021 |
"Mehr Informationen erhältst Du in der <a href=\"%s\" target=\"_blank\">"
|
2022 |
"Social-Meta-Tag-Anleitung</a>."
|
2023 |
|
2024 |
+
#: views/b2s/curation.php:295
|
2025 |
#, php-format
|
2026 |
msgid ""
|
2027 |
"Get more information on how to share a text post with hashtags, @mentions "
|
2044 |
msgid "Get the Blog2Social Browser Extension"
|
2045 |
msgstr "Blog2Social Browser Erweiterung"
|
2046 |
|
2047 |
+
#: views/b2s/ship.php:782
|
2048 |
msgid "Give me more information"
|
2049 |
msgstr "Erhalte mehr Infomationen"
|
2050 |
|
2081 |
"Die empfohlene Anzahl für das beste Ergebnis sind 5 Hashtags, die thematisch "
|
2082 |
"zum Inhalt Deines Beitrags passen. "
|
2083 |
|
2084 |
+
#: views/b2s/network.php:133
|
2085 |
msgid ""
|
2086 |
"Google currently allows access to the API for all companies with up to 9 "
|
2087 |
"locations in their Google My Business Listings. However, Google plans to "
|
2093 |
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
2094 |
"Business Brancheneinträgen zu erweitern."
|
2095 |
|
2096 |
+
#: views/b2s/network.php:127 views/b2s/premium.php:127
|
2097 |
msgid "Google My Business"
|
2098 |
msgstr "Google My Business"
|
2099 |
|
2104 |
"Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
|
2105 |
"Infografiken."
|
2106 |
|
2107 |
+
#: includes/Tools.php:386
|
2108 |
msgid "Great Britain"
|
2109 |
msgstr "Großbritannien"
|
2110 |
|
2111 |
+
#: includes/Tools.php:376
|
2112 |
msgid "Greece"
|
2113 |
msgstr "Griechenland"
|
2114 |
|
2115 |
+
#: includes/Loader.php:890 includes/B2S/Network/Item.php:194
|
2116 |
#: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:676
|
2117 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
2118 |
msgid "Group"
|
2122 |
msgid "guide for server connection"
|
2123 |
msgstr "Serververbindungs-Guide"
|
2124 |
|
2125 |
+
#: includes/B2S/Network/Item.php:846
|
2126 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
2127 |
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
2128 |
|
2129 |
+
#: includes/B2S/Ship/Item.php:1107
|
2130 |
msgid "Hashtags"
|
2131 |
msgstr "Hashtags"
|
2132 |
|
2134 |
msgid "Help & Community"
|
2135 |
msgstr "Hilfe & Community"
|
2136 |
|
2137 |
+
#: includes/Loader.php:983 includes/Loader.php:1069
|
2138 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
2139 |
#: views/b2s/html/sidebar.ship.php:66
|
2140 |
msgid "Help & Support"
|
2178 |
msgid "https://www.blog2social.com"
|
2179 |
msgstr "https://www.blog2social.com"
|
2180 |
|
2181 |
+
#: includes/Tools.php:401
|
2182 |
msgid "Hungary"
|
2183 |
msgstr "Ungarn"
|
2184 |
|
2234 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
2235 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
2236 |
"ask all your questions in the Blog2Social support community where you will "
|
2237 |
+
"receive help from our committed support team. You can easily access the "
|
2238 |
+
"Blog2Social Support Community via the Help & Support section in the "
|
2239 |
+
"Blog2Social menu on your WP dashboard."
|
2240 |
msgstr ""
|
2241 |
"Wenn Dir Blog2Social gefällt, würden wir uns sehr über eine 5-Sterne-"
|
2242 |
"Bewertung freuen. Wenn es etwas gibt, wofür Du Unterstützung benötigst, "
|
2243 |
"kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
|
2244 |
"erhältst Hilfe von unserem engagierten Support-Team."
|
2245 |
|
2246 |
+
#: views/b2s/ship.php:371
|
2247 |
msgid "Ignore & share"
|
2248 |
msgstr "Ignorieren & teilen"
|
2249 |
|
2255 |
msgid "image"
|
2256 |
msgstr "Bild"
|
2257 |
|
2258 |
+
#: views/b2s/post.calendar.php:74 views/b2s/post.sched.php:194
|
2259 |
+
#: views/b2s/repost.php:50 views/b2s/repost.php:87
|
2260 |
#: includes/B2S/Network/Item.php:752 includes/B2S/Network/Item.php:755
|
2261 |
+
#: includes/B2S/Settings/Item.php:266 views/b2s/html/footer.php:182
|
2262 |
msgid "Image cut out"
|
2263 |
msgstr "Bild zuschneiden"
|
2264 |
|
2265 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
2266 |
+
#: views/b2s/post.calendar.php:74 views/b2s/post.sched.php:194
|
2267 |
+
#: views/b2s/repost.php:50 views/b2s/repost.php:87
|
2268 |
+
#: includes/B2S/Post/Item.php:784 includes/B2S/Settings/Item.php:266
|
2269 |
+
#: includes/B2S/Settings/Item.php:289
|
2270 |
msgid "Image Post"
|
2271 |
msgstr "Bild-Beitrag"
|
2272 |
|
2273 |
+
#: includes/B2S/Settings/Item.php:186 includes/B2S/Settings/Item.php:207
|
2274 |
#: includes/B2S/Ship/Image.php:94 includes/B2S/Ship/Image.php:96
|
2275 |
msgid "Image upload / Media Gallery"
|
2276 |
msgstr "Bild hochladen / Mediathek"
|
2277 |
|
2278 |
+
#: includes/B2S/Settings/Item.php:184 includes/B2S/Settings/Item.php:205
|
2279 |
msgid "Image URL"
|
2280 |
msgstr "Bild Url"
|
2281 |
|
2282 |
+
#: views/b2s/post.calendar.php:74 views/b2s/post.sched.php:194
|
2283 |
+
#: views/b2s/repost.php:50 views/b2s/repost.php:87
|
2284 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2285 |
+
#: includes/B2S/Settings/Item.php:252 views/b2s/html/footer.php:177
|
2286 |
msgid "Image with frame"
|
2287 |
msgstr "Bild mit Rahmen"
|
2288 |
|
2289 |
+
#: includes/B2S/AutoPost/Item.php:144
|
2290 |
msgid ""
|
2291 |
"Immediate Cross-Posting across all networks: Share an unlimited number of "
|
2292 |
"posts"
|
2294 |
"Immediate Cross-Posting über alle Netzwerke hinweg: Teile eine unbegrenzte "
|
2295 |
"Anzahl an Beiträgen"
|
2296 |
|
2297 |
+
#: includes/B2S/AutoPost/Item.php:161 includes/B2S/Curation/View.php:64
|
2298 |
msgid "immediately"
|
2299 |
msgstr "sofort"
|
2300 |
|
2302 |
msgid "immediately after publishing"
|
2303 |
msgstr "sofort nach Veröffentlichung"
|
2304 |
|
2305 |
+
#: views/b2s/ship.php:496
|
2306 |
msgid "Important infomations about XING groups"
|
2307 |
msgstr "Wichtige Information zu XING-Gruppen"
|
2308 |
|
2309 |
+
#: includes/B2S/AutoPost/Item.php:158
|
2310 |
msgid ""
|
2311 |
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
2312 |
"as your primary Twitter account for auto-posting."
|
2314 |
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
2315 |
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden"
|
2316 |
|
2317 |
+
#: views/b2s/curation.php:375
|
2318 |
#, php-format
|
2319 |
+
#| msgid ""
|
2320 |
+
#| "In the <a href=\"%s\">Network Settings</a> you can define network "
|
2321 |
+
#| "selections to select and save your most used networks for specific posts "
|
2322 |
+
#| "or campaigns."
|
2323 |
msgid ""
|
2324 |
"In the <a href=\"%s\">Network Settings</a> you can define network selections "
|
2325 |
+
"to select and save your most-used networks for specific posts or campaigns."
|
2326 |
+
msgstr ""
|
2327 |
+
"Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
|
2328 |
+
"Gruppierung festlegen."
|
2329 |
+
|
2330 |
+
#: views/b2s/curation.php:297
|
2331 |
+
#, php-format
|
2332 |
+
msgid ""
|
2333 |
+
"In the <a href=\"%s\">Network Settings</a> you can define one or more "
|
2334 |
+
"network selections for your posts."
|
2335 |
msgstr ""
|
2336 |
"Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
|
2337 |
"Gruppierung festlegen."
|
2338 |
|
2339 |
+
#: includes/B2S/AutoPost/Item.php:284 includes/B2S/AutoPost/Item.php:304
|
2340 |
+
#: includes/B2S/RePost/Item.php:191 includes/B2S/RePost/Item.php:211
|
2341 |
+
#: includes/B2S/RePost/Item.php:231 includes/B2S/RePost/Item.php:250
|
2342 |
msgid "Include (Post only...)"
|
2343 |
msgstr "enthält (nur Beiträge, mit ...)"
|
2344 |
|
2351 |
msgid "include posts with images only"
|
2352 |
msgstr "nur Beiträge mit Bildern hinzufügen"
|
2353 |
|
2354 |
+
#: includes/Tools.php:377
|
2355 |
msgid "India"
|
2356 |
msgstr "Indien"
|
2357 |
|
2358 |
+
#: includes/Tools.php:383
|
2359 |
msgid "Indonesia"
|
2360 |
msgstr "Indonesien"
|
2361 |
|
2362 |
#: includes/B2S/PostBox.php:165 includes/B2S/PostBox.php:168
|
2363 |
+
#: includes/B2S/PostBox.php:253 views/b2s/network.php:48 views/b2s/ship.php:80
|
2364 |
+
#: views/b2s/ship.php:170 views/b2s/ship.php:262
|
2365 |
+
#: includes/B2S/AutoPost/Item.php:110 includes/B2S/AutoPost/Item.php:207
|
2366 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:211
|
2367 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2368 |
+
#: includes/B2S/Ship/Item.php:1143
|
2369 |
msgid "Info"
|
2370 |
msgstr "Info"
|
2371 |
|
2376 |
|
2377 |
#: includes/B2S/Ship/Item.php:465 includes/B2S/Ship/Item.php:585
|
2378 |
#: includes/B2S/Ship/Item.php:615 includes/B2S/Ship/Item.php:643
|
2379 |
+
#: includes/B2S/Ship/Item.php:671 includes/B2S/Ship/Item.php:699
|
2380 |
msgid ""
|
2381 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2382 |
"network"
|
2383 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
2384 |
|
2385 |
+
#: includes/B2S/Ship/Item.php:355 includes/B2S/Ship/Item.php:1346
|
2386 |
msgid "Insert full-text"
|
2387 |
msgstr "ganzen Text einfügen"
|
2388 |
|
2389 |
+
#: includes/B2S/Settings/Item.php:260 views/b2s/html/footer.php:178
|
2390 |
msgid ""
|
2391 |
"Insert white frames to show the whole image in your timeline. All image "
|
2392 |
"information will be shown in your timeline."
|
2398 |
msgid "Inspect Post"
|
2399 |
msgstr "Link prüfen"
|
2400 |
|
2401 |
+
#: includes/Loader.php:911
|
2402 |
#, php-format
|
2403 |
msgid ""
|
2404 |
"Instagram published your post without text. Please see the following <a "
|
2407 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
2408 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
2409 |
|
2410 |
+
#: views/b2s/settings.php:183
|
2411 |
msgid "Instant Caching for Facebook Link Posts"
|
2412 |
msgstr "Instant Caching für Facebook Link-Beiträge"
|
2413 |
|
2414 |
+
#: views/b2s/network.php:260
|
2415 |
msgid "Instant Caching for Link Posts"
|
2416 |
msgstr "Instant Caching für Link-Beiträge"
|
2417 |
|
2418 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:17
|
2419 |
#: views/b2s/html/sidebar.php:119
|
2420 |
msgid "Instant Sharing"
|
2421 |
msgstr "Instant Sharing"
|
2422 |
|
2423 |
+
#: views/b2s/network.php:387 views/b2s/ship.php:616
|
2424 |
msgid "Invalid Data! Please try again."
|
2425 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
2426 |
|
2432 |
msgid "Invalid email address"
|
2433 |
msgstr "Ungültige E-Mail Adresse"
|
2434 |
|
2435 |
+
#: includes/Tools.php:379
|
2436 |
msgid "Ireland"
|
2437 |
msgstr "Irland"
|
2438 |
|
2439 |
+
#: includes/B2S/Post/Item.php:913
|
2440 |
msgid "is currently being processed by the network"
|
2441 |
msgstr "wird vom Netzwerk verarbeitet"
|
2442 |
|
2443 |
+
#: includes/Tools.php:415
|
2444 |
msgid "is determined automatically"
|
2445 |
msgstr "wird automatisch ermittelt"
|
2446 |
|
2447 |
+
#: includes/B2S/Post/Item.php:830
|
2448 |
#, php-format
|
2449 |
msgid "is waiting to shared by %s"
|
2450 |
msgstr "wartet darauf von %s geteilt zu werden"
|
2451 |
|
2452 |
+
#: includes/Tools.php:380
|
2453 |
msgid "Italy"
|
2454 |
msgstr "Italien"
|
2455 |
|
2456 |
+
#: includes/Tools.php:402
|
2457 |
msgid "Japan"
|
2458 |
msgstr "Japan"
|
2459 |
|
2461 |
msgid "Job"
|
2462 |
msgstr "Job"
|
2463 |
|
2464 |
+
#: includes/B2S/Ship/Item.php:1081
|
2465 |
msgid "Jobs & Projects"
|
2466 |
msgstr "Stellenangebote & Projekte"
|
2467 |
|
2486 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2487 |
msgstr "Keywords mit Komma getrennt (z.B.: Blog2Social, PR-Gateway)"
|
2488 |
|
2489 |
+
#: views/b2s/settings.php:117
|
2490 |
msgid "Keywords: The tags you have set in your post."
|
2491 |
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2492 |
|
2493 |
+
#: includes/Tools.php:405
|
2494 |
msgid "Korea"
|
2495 |
msgstr "Korea"
|
2496 |
|
2498 |
msgid "Language"
|
2499 |
msgstr "Sprache"
|
2500 |
|
2501 |
+
#: includes/B2S/Post/Item.php:911
|
2502 |
#, php-format
|
2503 |
msgid "last modified by %s"
|
2504 |
msgstr "zuletzt von %s bearbeitet"
|
2531 |
msgid "latest share by %s"
|
2532 |
msgstr "zuletzt von %s geteilt"
|
2533 |
|
2534 |
+
#: includes/B2S/Ship/Save.php:416
|
2535 |
msgid "Learn how it works"
|
2536 |
msgstr "mehr erfahren"
|
2537 |
|
2551 |
"Erfahre, wie Du individuelle Beste Zeiten für Deine Social Media Planung und "
|
2552 |
"Deinen Auto-Poster einrichten und anwenden kannst."
|
2553 |
|
2554 |
+
#: views/b2s/network.php:136 views/b2s/ship.php:500
|
2555 |
+
#: includes/B2S/Ship/Item.php:1241 views/b2s/partials/post-edit-modal.php:53
|
2556 |
msgid "Learn more"
|
2557 |
msgstr "Mehr erfahren"
|
2558 |
|
2566 |
"Guide</a>\" mehr Informationen darüber, wie Du Social-Media-Beiträge teilen "
|
2567 |
"kannst."
|
2568 |
|
2569 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:787
|
2570 |
+
#: includes/B2S/Ship/Item.php:1212
|
2571 |
msgid "Learn more about this"
|
2572 |
msgstr "Erfahre mehr darüber"
|
2573 |
|
2574 |
+
#: views/b2s/network.php:305
|
2575 |
msgid "Legend"
|
2576 |
msgstr "Legende"
|
2577 |
|
2578 |
+
#: includes/Tools.php:361 views/b2s/html/sidebar.php:30
|
2579 |
#: views/b2s/html/sidebar.ship.php:29
|
2580 |
msgid "License"
|
2581 |
msgstr "Lizenz"
|
2585 |
msgstr "Lizenzen"
|
2586 |
|
2587 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2588 |
+
#: includes/B2S/Ship/Item.php:1008 includes/B2S/Ship/Item.php:1010
|
2589 |
msgid "Link"
|
2590 |
msgstr "Link"
|
2591 |
|
2592 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:74
|
2593 |
+
#: views/b2s/post.sched.php:194 views/b2s/repost.php:50 views/b2s/repost.php:87
|
2594 |
+
#: includes/B2S/Post/Item.php:782 includes/B2S/Settings/Item.php:252
|
2595 |
+
#: includes/B2S/Settings/Item.php:289 views/b2s/html/footer.php:160
|
2596 |
msgid "Link Post"
|
2597 |
msgstr "Link-Beitrag"
|
2598 |
|
2599 |
+
#: views/b2s/network.php:717
|
2600 |
msgid "LinkedIn pages"
|
2601 |
msgstr "LinkedIn-Seiten"
|
2602 |
|
2608 |
msgid "List"
|
2609 |
msgstr "Liste"
|
2610 |
|
2611 |
+
#: views/b2s/network.php:55 views/b2s/ship.php:79
|
2612 |
#: views/b2s/partials/post-edit-modal.php:42
|
2613 |
msgid "Load Best Times"
|
2614 |
msgstr "Lade beste Zeiten"
|
2625 |
msgid "load Draft"
|
2626 |
msgstr "Entwurf aufrufen"
|
2627 |
|
2628 |
+
#: views/b2s/ship.php:73 views/b2s/partials/post-edit-modal.php:41
|
2629 |
msgid "Load My Times Settings"
|
2630 |
msgstr "Meine Zeit-Einstellungen laden"
|
2631 |
|
2632 |
+
#: views/b2s/curation.draft.php:47 views/b2s/network.php:67
|
2633 |
+
#: views/b2s/network.php:155 views/b2s/network.php:242
|
2634 |
+
#: views/b2s/network.php:380 views/b2s/network.php:459
|
2635 |
+
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:64
|
2636 |
+
#: views/b2s/post.calendar.php:249 views/b2s/post.draft.php:42
|
2637 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
2638 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
2639 |
+
#: views/b2s/post.sched.php:63 views/b2s/repost.php:32 views/b2s/ship.php:192
|
2640 |
+
#: views/b2s/ship.php:609 views/b2s/ship.php:778 views/b2s/support.php:144
|
2641 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
2642 |
msgid "Loading..."
|
2643 |
msgstr "Wird geladen..."
|
2644 |
|
2645 |
+
#: views/b2s/network.php:389 views/b2s/ship.php:618
|
2646 |
#, php-format
|
2647 |
msgid ""
|
2648 |
"Login failed. Please check your login data for typos and please check your "
|
2667 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
2668 |
"Benutzernamen und Dein Password!"
|
2669 |
|
2670 |
+
#: views/b2s/network.php:367 views/b2s/network.php:393 views/b2s/ship.php:596
|
2671 |
+
#: views/b2s/ship.php:622
|
2672 |
msgid ""
|
2673 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
2674 |
"on your profile."
|
2680 |
msgid "Logout"
|
2681 |
msgstr "Ausloggen"
|
2682 |
|
2683 |
+
#: includes/B2S/Ship/Item.php:1105
|
2684 |
#, php-format
|
2685 |
msgid "max. %s Tags"
|
2686 |
msgstr "max. %s Tags"
|
2689 |
msgid "Message"
|
2690 |
msgstr "Nachricht"
|
2691 |
|
2692 |
+
#: includes/B2S/Settings/Item.php:139
|
2693 |
msgid "Meta Tags Settings for Posts and Pages"
|
2694 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
2695 |
|
2696 |
+
#: includes/Tools.php:407
|
2697 |
msgid "Mexico"
|
2698 |
msgstr "Mexiko"
|
2699 |
|
2700 |
+
#: includes/B2S/Ship/Item.php:1172 includes/B2S/Ship/Item.php:1173
|
2701 |
+
#: includes/B2S/Ship/Item.php:1174 includes/B2S/Ship/Item.php:1175
|
2702 |
#: views/b2s/partials/post-edit-modal.php:82
|
2703 |
#: views/b2s/partials/post-edit-modal.php:83
|
2704 |
#: views/b2s/partials/post-edit-modal.php:84
|
2706 |
msgid "min"
|
2707 |
msgstr "min"
|
2708 |
|
2709 |
+
#: includes/B2S/AutoPost/Item.php:163
|
2710 |
msgid "minutes"
|
2711 |
msgstr "Minuten"
|
2712 |
|
2713 |
+
#: includes/B2S/Network/Item.php:864
|
2714 |
msgid ""
|
2715 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
2716 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
2719 |
"Bitte aktiviere serverseitig die PHP \"mbstring\" Erweiterung, um die "
|
2720 |
"Zeichenbegrenzungsfunktion zu nutzen."
|
2721 |
|
2722 |
+
#: views/b2s/network.php:209
|
2723 |
msgid "modify"
|
2724 |
msgstr "modify"
|
2725 |
|
2735 |
msgid "Modify subreddit"
|
2736 |
msgstr "Modify subreddit"
|
2737 |
|
2738 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1317
|
2739 |
msgid "Mon"
|
2740 |
msgstr "Mo"
|
2741 |
|
2743 |
msgid "Monday"
|
2744 |
msgstr "Montag"
|
2745 |
|
2746 |
+
#: includes/B2S/Ship/Item.php:1284
|
2747 |
msgid "Month"
|
2748 |
msgstr "Monat"
|
2749 |
|
2750 |
+
#: includes/B2S/Ship/Item.php:1268
|
2751 |
msgid "monthly"
|
2752 |
msgstr "monatlich"
|
2753 |
|
2754 |
+
#: includes/B2S/Ship/Item.php:1284
|
2755 |
msgid "Months"
|
2756 |
msgstr "Monate"
|
2757 |
|
2763 |
msgid "More Information"
|
2764 |
msgstr "Weitere Informationen"
|
2765 |
|
2766 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:184
|
2767 |
+
#: includes/B2S/AutoPost/Item.php:158
|
2768 |
msgid "More information"
|
2769 |
msgstr "Zusätzliche Informationen"
|
2770 |
|
2771 |
+
#: views/b2s/curation.php:299 views/b2s/curation.php:377
|
2772 |
#, php-format
|
2773 |
msgid ""
|
2774 |
"More information on how to create a network selection in the guide <a "
|
2783 |
msgid "More users and accounts"
|
2784 |
msgstr "Mehr Benutzer und Accounts"
|
2785 |
|
2786 |
+
#: views/b2s/network.php:489 views/b2s/network.php:584
|
2787 |
msgid "move"
|
2788 |
msgstr "verschieben"
|
2789 |
|
2790 |
+
#: views/b2s/network.php:477 views/b2s/network.php:577
|
2791 |
msgid "Move the connection to another network collection."
|
2792 |
msgstr "Verbindung in eine andere Netzwerk-Gruppierung verschieben"
|
2793 |
|
2799 |
msgid "Mrs."
|
2800 |
msgstr "Frau"
|
2801 |
|
2802 |
+
#: views/b2s/network.php:582 includes/B2S/Ship/Navbar.php:37
|
2803 |
msgid "My Profile"
|
2804 |
msgstr "Mein Profil"
|
2805 |
|
2817 |
msgid "Need more?"
|
2818 |
msgstr "Benötigst Du mehr?"
|
2819 |
|
2820 |
+
#: views/b2s/curation.php:173 views/b2s/post.calendar.php:270
|
2821 |
+
#: views/b2s/ship.php:408
|
2822 |
msgid "Need to schedule your posts?"
|
2823 |
msgstr "Du möchtest Deine Beiträge planen?"
|
2824 |
|
2826 |
msgid "Needed"
|
2827 |
msgstr "Erforderlich"
|
2828 |
|
2829 |
+
#: includes/Tools.php:388
|
2830 |
msgid "Netherlands"
|
2831 |
msgstr "Niederlande"
|
2832 |
|
2833 |
+
#: views/b2s/network.php:474 views/b2s/network.php:574
|
2834 |
msgid "Network collection"
|
2835 |
msgstr "Netzwerkgruppierung"
|
2836 |
|
2837 |
+
#: views/b2s/ship.php:177
|
2838 |
msgid "network connected"
|
2839 |
msgstr "Netzwerk verbunden"
|
2840 |
|
2841 |
+
#: views/b2s/network.php:689
|
2842 |
msgid "Network connections"
|
2843 |
msgstr "Netzwerkverbindungen"
|
2844 |
|
2862 |
msgid "Network does not support image for profiles"
|
2863 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
2864 |
|
2865 |
+
#: includes/B2S/Network/Item.php:827 includes/B2S/Network/Item.php:884
|
2866 |
+
#: includes/B2S/Network/Item.php:920
|
2867 |
msgid "Network limit"
|
2868 |
msgstr "Netzwerkbegrenzung"
|
2869 |
|
2870 |
+
#: includes/B2S/PostBox.php:146 includes/B2S/AutoPost/Item.php:61
|
2871 |
+
#: includes/B2S/AutoPost/Item.php:193 includes/B2S/RePost/Item.php:166
|
2872 |
msgid "Network settings"
|
2873 |
msgstr "Netzwerkeinstellungen"
|
2874 |
|
2875 |
+
#: includes/Loader.php:978 includes/Loader.php:1047
|
2876 |
msgid "Networks"
|
2877 |
msgstr "Netzwerke"
|
2878 |
|
2879 |
+
#: includes/Loader.php:889 views/b2s/curation.php:49 views/b2s/support.php:19
|
2880 |
#: views/b2s/support.php:22
|
2881 |
msgid "NEW"
|
2882 |
msgstr "Neu"
|
2883 |
|
2884 |
+
#: includes/B2S/AutoPost/Item.php:69
|
2885 |
msgid "new posts"
|
2886 |
msgstr "Neue Beiträge"
|
2887 |
|
2888 |
+
#: includes/Tools.php:399
|
2889 |
msgid "New Zealand"
|
2890 |
msgstr "Neuseeland"
|
2891 |
|
2899 |
msgstr "wird als nächstes von %s geteilt"
|
2900 |
|
2901 |
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:160
|
2902 |
+
#: views/b2s/network.php:115 views/b2s/post.approve.php:98
|
2903 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
2904 |
#: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
|
2905 |
+
#: views/b2s/post.sched.php:103 views/b2s/repost.php:105 views/b2s/ship.php:484
|
2906 |
+
#: views/b2s/ship.php:563 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
2907 |
msgid "NO"
|
2908 |
msgstr "NEIN"
|
2909 |
|
2920 |
msgid "No credit card required"
|
2921 |
msgstr "Keine Kreditkarte erforderlich"
|
2922 |
|
2923 |
+
#: includes/Tools.php:432
|
2924 |
msgid "No emojis found"
|
2925 |
msgstr "Keine Ergebnisse"
|
2926 |
|
2938 |
"Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen "
|
2939 |
"Filterkriterien."
|
2940 |
|
2941 |
+
#: includes/B2S/Settings/Item.php:80
|
2942 |
msgid "no URL Shortener"
|
2943 |
msgstr "kein URL Shortener"
|
2944 |
|
2950 |
msgid "Nope, maybe later"
|
2951 |
msgstr "Nein, vielleicht später"
|
2952 |
|
2953 |
+
#: includes/Tools.php:390
|
2954 |
msgid "Norway"
|
2955 |
msgstr "Norwegen"
|
2956 |
|
2958 |
msgid "not yet shared"
|
2959 |
msgstr "noch nicht geteilt"
|
2960 |
|
2961 |
+
#: views/b2s/ship.php:349
|
2962 |
msgid "Note: "
|
2963 |
msgstr "Hinweis: "
|
2964 |
|
2965 |
+
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:202
|
2966 |
msgid ""
|
2967 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
2968 |
"Networks do not allow postings from local installations."
|
2970 |
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
2971 |
"Fragen wende Dich bitte an unseren Support."
|
2972 |
|
2973 |
+
#: views/b2s/post.calendar.php:315
|
2974 |
+
msgid "Notification"
|
2975 |
+
msgstr "Benachrichtigung"
|
2976 |
+
|
2977 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:22
|
2978 |
msgid "Notifications"
|
2979 |
msgstr "Benachrichtigungen"
|
2980 |
|
2984 |
msgstr "Nummer"
|
2985 |
|
2986 |
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:84
|
2987 |
+
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:99
|
2988 |
+
#: views/b2s/repost.php:101 views/b2s/widgets/posts.php:63
|
2989 |
msgid "Number of entries"
|
2990 |
msgstr "Anzahl der Einträge"
|
2991 |
|
2993 |
msgid "Number of posts"
|
2994 |
msgstr "Anzahl der Beiträge"
|
2995 |
|
2996 |
+
#: includes/B2S/Ship/Item.php:1253
|
2997 |
msgid "Number of repeats"
|
2998 |
msgstr "Anzahl der Wiederholungen"
|
2999 |
|
3000 |
+
#: includes/Tools.php:429
|
3001 |
msgid "Objects"
|
3002 |
msgstr "Objekte"
|
3003 |
|
3004 |
+
#: includes/B2S/Ship/Item.php:1085
|
3005 |
msgid "Offer"
|
3006 |
msgstr "Angebot"
|
3007 |
|
3008 |
#: includes/B2S/Ship/Item.php:471 includes/B2S/Ship/Item.php:591
|
3009 |
#: includes/B2S/Ship/Item.php:621 includes/B2S/Ship/Item.php:649
|
3010 |
+
#: includes/B2S/Ship/Item.php:677 includes/B2S/Ship/Item.php:705
|
3011 |
msgid "OG Meta description"
|
3012 |
msgstr "OG Beschreibung"
|
3013 |
|
3014 |
#: includes/B2S/Ship/Item.php:470 includes/B2S/Ship/Item.php:590
|
3015 |
#: includes/B2S/Ship/Item.php:620 includes/B2S/Ship/Item.php:648
|
3016 |
+
#: includes/B2S/Ship/Item.php:676 includes/B2S/Ship/Item.php:704
|
3017 |
msgid "OG Meta title"
|
3018 |
msgstr "OG Titel"
|
3019 |
|
3037 |
msgid "on Blog"
|
3038 |
msgstr "auf dem Blog"
|
3039 |
|
3040 |
+
#: views/b2s/ship.php:59 includes/B2S/Post/Item.php:437
|
3041 |
#: includes/B2S/Post/Item.php:580
|
3042 |
msgid "on blog"
|
3043 |
msgstr "auf dem Blog"
|
3051 |
msgid "Open Graph and Twitter Card Tags"
|
3052 |
msgstr "Open Graph und Twitter Card Tags"
|
3053 |
|
3054 |
+
#: includes/Loader.php:1581 includes/Loader.php:1602 includes/Loader.php:1856
|
3055 |
msgid "or"
|
3056 |
msgstr "oder"
|
3057 |
|
3058 |
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:206
|
3059 |
+
#: views/b2s/curation.php:245 views/b2s/post.calendar.php:303
|
3060 |
+
#: views/b2s/ship.php:329 views/b2s/ship.php:395 views/b2s/ship.php:441
|
3061 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
3062 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
3063 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
3073 |
"Testversion von Blog2Social Premium</a> (keine Zahlungsinformationen "
|
3074 |
"erforderlich)"
|
3075 |
|
3076 |
+
#: includes/B2S/Support/Check/System.php:47
|
3077 |
msgid "or higher"
|
3078 |
msgstr "oder höher"
|
3079 |
|
3081 |
msgid "Other topics"
|
3082 |
msgstr "Sonstiges"
|
3083 |
|
3084 |
+
#: views/b2s/ship.php:557
|
3085 |
msgid "Overwrite Draft"
|
3086 |
msgstr "Entwurf überschreiben"
|
3087 |
|
3088 |
+
#: includes/B2S/Ship/Item.php:1269
|
3089 |
msgid "own period"
|
3090 |
msgstr "Eigener Zeitraum"
|
3091 |
|
3092 |
+
#: includes/Loader.php:890 includes/B2S/AutoPost/Item.php:252
|
3093 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:190
|
3094 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:327
|
3095 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Portale.php:39
|
3101 |
msgid "Pages and groups"
|
3102 |
msgstr "Seiten und Gruppen"
|
3103 |
|
3104 |
+
#: views/b2s/network.php:401 views/b2s/ship.php:630 views/prg/login.php:25
|
3105 |
msgid "Password"
|
3106 |
msgstr "Passwort"
|
3107 |
|
3111 |
msgid "Personal"
|
3112 |
msgstr "Privat"
|
3113 |
|
3114 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:197
|
3115 |
+
#: includes/B2S/Settings/Item.php:57
|
3116 |
msgid "Personal Time Zone"
|
3117 |
msgstr "Persönliche Zeitzone"
|
3118 |
|
3119 |
+
#: includes/Tools.php:412
|
3120 |
msgid "Philippines"
|
3121 |
msgstr "Philippinen"
|
3122 |
|
3129 |
msgid "Photo Post"
|
3130 |
msgstr "Bild-Beitrag"
|
3131 |
|
3132 |
+
#: views/b2s/network.php:390 views/b2s/ship.php:619
|
3133 |
msgid "Pinterest has rejected the connection to your blog"
|
3134 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
3135 |
|
3145 |
msgid "Please contact our support!"
|
3146 |
msgstr "Bitte kontaktiere unseren Support!"
|
3147 |
|
3148 |
+
#: views/b2s/settings.php:186
|
3149 |
msgid ""
|
3150 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
3151 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
3158 |
"sicherzustellen, dass Facebook immer die aktuellen Meta Daten Deines "
|
3159 |
"Blogbeitrags zieht."
|
3160 |
|
3161 |
+
#: views/b2s/network.php:263
|
3162 |
msgid ""
|
3163 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
3164 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
3174 |
msgid "Please enter a valid link"
|
3175 |
msgstr "Bitte gib einen gültigen Link ein"
|
3176 |
|
3177 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:787
|
3178 |
+
#: includes/B2S/Ship/Item.php:1212
|
3179 |
msgid ""
|
3180 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3181 |
"allowed to post identical or substantially similar content to multiple "
|
3186 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3187 |
"mehreren Accounts zu posten."
|
3188 |
|
3189 |
+
#: includes/Loader.php:820
|
3190 |
msgid ""
|
3191 |
"Please make sure that your post, page or custom post type is published or "
|
3192 |
"scheduled to be published on this blog before you try to post it with "
|
3199 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
3200 |
"werden mit dem Posting-ID-Link geteilt."
|
3201 |
|
3202 |
+
#: views/b2s/network.php:637 views/b2s/ship.php:744
|
3203 |
#, php-format
|
3204 |
msgid ""
|
3205 |
"Please make sure to log in with your account which manages your groups and "
|
3210 |
"verwaltet, und <a href=\"%s\" target=\"_blank\">folgen dieser Anleitung, um "
|
3211 |
"alle Deine Gruppen auszuwählen</a>."
|
3212 |
|
3213 |
+
#: views/b2s/network.php:618 views/b2s/ship.php:725
|
3214 |
#, php-format
|
3215 |
msgid ""
|
3216 |
"Please make sure to log in with your account which manages your pages and <a "
|
3220 |
"Deine Seiten verwaltet und <a href=\"%s\" target=\"_blank\">folge diesem "
|
3221 |
"Guide, um alle Deine Seiten auswählen zu können</a>."
|
3222 |
|
3223 |
+
#: views/b2s/network.php:383 views/b2s/ship.php:612
|
3224 |
msgid ""
|
3225 |
"Please make sure to use your original Pinterest login data (email and "
|
3226 |
"password). Social Login via Facebook or Google login data will not work here."
|
3236 |
msgid "Please Note"
|
3237 |
msgstr "Hinweis"
|
3238 |
|
3239 |
+
#: includes/B2S/Settings/Item.php:189
|
3240 |
msgid ""
|
3241 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
3242 |
"pixels and an aspect ratio of 1:1."
|
3244 |
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
3245 |
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
3246 |
|
3247 |
+
#: includes/B2S/Ship/Item.php:1245 views/b2s/partials/post-edit-modal.php:56
|
3248 |
msgid ""
|
3249 |
"Please note: Google will shut down Google+ for all private accounts "
|
3250 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3292 |
"Hinweis: Twitter speichert die Card Parameter eines Links für bis zu 7 Tage. "
|
3293 |
"Änderungen werden daher möglicherweise nicht sofort auf Twitter dargestellt."
|
3294 |
|
3295 |
+
#: includes/B2S/Settings/Item.php:210
|
3296 |
msgid ""
|
3297 |
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
3298 |
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
3332 |
"Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
|
3333 |
"geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
|
3334 |
|
3335 |
+
#: includes/B2S/Ship/Save.php:429
|
3336 |
msgid ""
|
3337 |
"Please note: You post has to be marked as public to be posted in a group."
|
3338 |
msgstr ""
|
3339 |
"Um in eine Gruppe zu teilen, muss Dein Beitrag auf Öffentlich gestellt "
|
3340 |
"werden."
|
3341 |
|
3342 |
+
#: includes/B2S/Ship/Item.php:1241 views/b2s/partials/post-edit-modal.php:52
|
3343 |
msgid ""
|
3344 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3345 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
3378 |
"Deinen Blog2Social <a target=\"_blank\" href=\"%s\">Einstellungen</a> "
|
3379 |
"manuell deaktiviert hast."
|
3380 |
|
3381 |
+
#: views/b2s/network.php:675 views/b2s/ship.php:706
|
3382 |
#, php-format
|
3383 |
msgid ""
|
3384 |
"Please note: Your Instagram Business Account will be connected with "
|
3393 |
" Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
|
3394 |
"href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden.</a>"
|
3395 |
|
3396 |
+
#: views/b2s/network.php:199
|
3397 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
3398 |
msgstr ""
|
3399 |
"Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
|
3400 |
|
3401 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:463
|
3402 |
msgid "Please see"
|
3403 |
msgstr "siehe"
|
3404 |
|
3406 |
msgid "Please see FAQ"
|
3407 |
msgstr "Siehe FAQ"
|
3408 |
|
3409 |
+
#: includes/B2S/AutoPost/Item.php:66
|
3410 |
msgid "Please select a post type"
|
3411 |
msgstr "Bitte wählen Sie einen Post Type aus"
|
3412 |
|
3413 |
+
#: includes/B2S/AutoPost/Item.php:156
|
3414 |
msgid "Please select a social media network"
|
3415 |
msgstr "Bitte wählen Sie ein Netzwerk aus"
|
3416 |
|
3417 |
+
#: views/b2s/network.php:391 views/b2s/ship.php:620
|
3418 |
msgid "Please select your correct server location and connect again."
|
3419 |
msgstr ""
|
3420 |
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
|
3421 |
|
3422 |
+
#: includes/B2S/Ship/Save.php:434
|
3423 |
msgid "Please share your post now"
|
3424 |
msgstr "Bitte teile Deinen Beitrag jetzt."
|
3425 |
|
3428 |
msgid "please upgrade"
|
3429 |
msgstr "Bitte upgraden"
|
3430 |
|
3431 |
+
#: views/b2s/settings.php:172
|
3432 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
3433 |
msgstr ""
|
3434 |
"Plugininhalte werden nacheinander geladen, um den Server Deines Blogs zu "
|
3435 |
"entlasten."
|
3436 |
|
3437 |
+
#: includes/B2S/Support/Check/System.php:93
|
3438 |
msgid "Plugin Warnings:"
|
3439 |
msgstr "Plugin Warnungen:"
|
3440 |
|
3441 |
+
#: includes/Tools.php:394
|
3442 |
msgid "Poland"
|
3443 |
msgstr "Polen"
|
3444 |
|
3445 |
+
#: includes/Tools.php:389 includes/Tools.php:403
|
3446 |
msgid "Portugal"
|
3447 |
msgstr "Portugal"
|
3448 |
|
3455 |
msgid "Post a Press Release"
|
3456 |
msgstr "Pressemitteilung veröffentlichen"
|
3457 |
|
3458 |
+
#: includes/B2S/AutoPost/Item.php:303
|
3459 |
+
msgid "Post Categories"
|
3460 |
+
msgstr "Beitragskategorien"
|
3461 |
+
|
3462 |
+
#: views/b2s/network.php:299
|
3463 |
msgid "Post Content"
|
3464 |
msgstr "Post-Inhalt"
|
3465 |
|
3467 |
msgid "Post every"
|
3468 |
msgstr "Poste alle"
|
3469 |
|
3470 |
+
#: views/b2s/post.calendar.php:116 views/b2s/post.sched.php:134
|
3471 |
+
#: views/b2s/repost.php:118 views/b2s/ship.php:513
|
3472 |
msgid "Post Format"
|
3473 |
msgstr "Postformat"
|
3474 |
|
3475 |
+
#: includes/B2S/Post/Item.php:780 includes/B2S/Ship/Item.php:340
|
3476 |
msgid "post format"
|
3477 |
msgstr "Postformat"
|
3478 |
|
3489 |
"Facebook-Seiten und -Gruppen"
|
3490 |
|
3491 |
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:193
|
3492 |
+
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:316
|
3493 |
+
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:31
|
3494 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
3495 |
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
|
3496 |
#: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
|
3498 |
msgid "Post on pages and groups"
|
3499 |
msgstr "Poste auf Seiten und in Gruppen"
|
3500 |
|
3501 |
+
#: views/b2s/settings.php:55
|
3502 |
msgid "Post Templates"
|
3503 |
msgstr "Beitragsvorlagen"
|
3504 |
|
3505 |
+
#: includes/B2S/AutoPost/Item.php:283 includes/B2S/RePost/Item.php:190
|
3506 |
msgid "Post Types"
|
3507 |
msgstr "Posttypen"
|
3508 |
|
3519 |
msgid "Posts"
|
3520 |
msgstr "Posts"
|
3521 |
|
3522 |
+
#: includes/B2S/AutoPost/Item.php:41
|
3523 |
#, php-format
|
3524 |
msgid ""
|
3525 |
"Posts for Facebook Profiles will be shown on your \"Site & Blog Content\" "
|
3534 |
"Facebook-Profil gesendet werden. Mehr Informationen erhältst Du in dem <a "
|
3535 |
"href=\"%s\" target=\"_blank\">\"Instant Sharing\"-Guide</a>."
|
3536 |
|
3537 |
+
#: includes/B2S/AutoPost/Item.php:147
|
3538 |
msgid "posts per day"
|
3539 |
msgstr "Posts pro Tag"
|
3540 |
|
3559 |
"Presseportalen und Nachrichtenseiten für die Veröffentlichung Deines "
|
3560 |
"Beitrags auswählen."
|
3561 |
|
3562 |
+
#: includes/Loader.php:981 includes/Loader.php:1061
|
3563 |
msgid "PR-Service"
|
3564 |
msgstr "PR-Service"
|
3565 |
|
3566 |
+
#: includes/Loader.php:985 includes/Loader.php:1077
|
3567 |
msgid "PREMIUM"
|
3568 |
msgstr "PREMIUM"
|
3569 |
|
3570 |
+
#: includes/Loader.php:985
|
3571 |
msgid "Premium"
|
3572 |
msgstr "Premium"
|
3573 |
|
3579 |
msgid "Press"
|
3580 |
msgstr "Presse"
|
3581 |
|
3582 |
+
#: includes/B2S/Network/Item.php:946 includes/B2S/Network/Item.php:998
|
3583 |
+
#: includes/B2S/Network/Item.php:1067 includes/B2S/Network/Item.php:1119
|
3584 |
+
#: includes/B2S/Network/Item.php:1153 includes/B2S/Network/Item.php:1204
|
3585 |
+
#: includes/B2S/Network/Item.php:1234 includes/B2S/Network/Item.php:1288
|
3586 |
+
#: includes/B2S/Network/Item.php:1307 includes/B2S/Network/Item.php:1341
|
3587 |
+
#: includes/B2S/Network/Item.php:1357 includes/B2S/Network/Item.php:1378
|
3588 |
+
#: includes/B2S/Network/Item.php:1394 includes/B2S/Network/Item.php:1410
|
3589 |
+
#: includes/B2S/Network/Item.php:1429 includes/B2S/Network/Item.php:1445
|
3590 |
+
#: includes/B2S/Network/Item.php:1488
|
3591 |
msgid "Preview"
|
3592 |
msgstr "Vorschau"
|
3593 |
|
3594 |
+
#: views/b2s/settings.php:119
|
3595 |
msgid ""
|
3596 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
3597 |
"website/ blog."
|
3603 |
msgid "Privacy Policy"
|
3604 |
msgstr "Datenschutzerklärung"
|
3605 |
|
3606 |
+
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:41
|
3607 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:190
|
3608 |
#: includes/B2S/Network/Item.php:195 includes/B2S/Ship/Image.php:96
|
3609 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
3610 |
+
#: includes/B2S/Ship/Item.php:776 includes/B2S/Ship/Item.php:830
|
3611 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:39
|
3612 |
#: includes/B2S/Ship/Portale.php:51
|
3613 |
msgid "PRO"
|
3614 |
msgstr "PRO"
|
3615 |
|
3616 |
+
#: views/b2s/network.php:702
|
3617 |
msgid "Pro: 5 (per user)"
|
3618 |
msgstr "Pro: 5 (pro Nutzer)"
|
3619 |
|
3621 |
msgid "Product"
|
3622 |
msgstr "Produkt"
|
3623 |
|
3624 |
+
#: includes/Loader.php:890 includes/B2S/AutoPost/Item.php:252
|
3625 |
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
|
3626 |
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
3627 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:257
|
3631 |
msgid "Profile"
|
3632 |
msgstr "Profil"
|
3633 |
|
3634 |
+
#: views/b2s/ship.php:129
|
3635 |
msgid "Profiles | Pages | Groups"
|
3636 |
msgstr "Profile | Seiten | Gruppen"
|
3637 |
|
3648 |
msgid "Publish on PR-Gateway"
|
3649 |
msgstr "Beitrag über PR-Gateway veröffentlichen"
|
3650 |
|
3651 |
+
#: includes/B2S/AutoPost/Item.php:162
|
3652 |
msgid "publish with a delay of"
|
3653 |
msgstr "Veröffentliche mit einer Verzögerung von"
|
3654 |
|
3655 |
+
#: views/b2s/curation.php:138 views/b2s/post.calendar.php:42
|
3656 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:779 includes/B2S/Post/Filter.php:59
|
3657 |
+
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:442
|
3658 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3659 |
msgid "published"
|
3660 |
msgstr "veröffentlicht"
|
3679 |
msgid "Rate it!"
|
3680 |
msgstr "Bewerte uns!"
|
3681 |
|
3682 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:892
|
3683 |
msgid "Re-Share"
|
3684 |
msgstr "Wiederholt geteilt"
|
3685 |
|
3686 |
+
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:798
|
3687 |
msgid "re-share"
|
3688 |
msgstr "erneut teilen"
|
3689 |
|
3690 |
+
#: includes/Loader.php:889 views/b2s/settings.php:46
|
3691 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/sidebar.php:72
|
3692 |
msgid "Re-Share Posts"
|
3693 |
msgstr "Beiträge wiederholt teilen"
|
3694 |
|
3695 |
+
#: views/b2s/ship.php:306
|
3696 |
msgid "Re-share this Post"
|
3697 |
msgstr "Diesen Beitrag nochmal teilen"
|
3698 |
|
3699 |
+
#: views/b2s/curation.php:131 views/b2s/ship.php:264 views/b2s/ship.php:266
|
3700 |
#: includes/B2S/Post/Item.php:454
|
3701 |
msgid "Re-share this post"
|
3702 |
msgstr "Diesen Beitrag nochmal teilen"
|
3715 |
msgid "Rebrandly"
|
3716 |
msgstr "Rebrandly"
|
3717 |
|
3718 |
+
#: includes/Tools.php:423
|
3719 |
msgid "Recently Used"
|
3720 |
msgstr "Zuletzt verwendet"
|
3721 |
|
3722 |
+
#: includes/B2S/Network/Item.php:884 includes/B2S/Network/Item.php:920
|
3723 |
msgid "recommended length"
|
3724 |
msgstr "Empfohlene Länge"
|
3725 |
|
3726 |
+
#: views/b2s/ship.php:179
|
3727 |
msgid "refresh authorization"
|
3728 |
msgstr "Autorisierung aktualisieren"
|
3729 |
|
3739 |
msgid "reload"
|
3740 |
msgstr "neu laden"
|
3741 |
|
3742 |
+
#: includes/B2S/Ship/Item.php:1248
|
3743 |
msgid "Repeats"
|
3744 |
msgstr "Wiederholen"
|
3745 |
|
3746 |
+
#: includes/B2S/Ship/Item.php:1255
|
3747 |
msgid "Repeats every (days)"
|
3748 |
msgstr "Wiederholt sich alle X Tage"
|
3749 |
|
3750 |
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:202
|
3751 |
+
#: views/b2s/post.calendar.php:299 views/b2s/ship.php:325
|
3752 |
+
#: views/b2s/ship.php:391 views/b2s/ship.php:437 views/b2s/html/footer.php:40
|
3753 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
3754 |
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
|
3755 |
#: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
|
3778 |
msgid "Reporting with links to already published posts"
|
3779 |
msgstr "Reporting mit Links zu bereits veröffentlichten Beiträgen"
|
3780 |
|
3781 |
+
#: includes/B2S/Ship/Item.php:1086
|
3782 |
msgid "Request"
|
3783 |
msgstr "Anfrage"
|
3784 |
|
3785 |
+
#: includes/B2S/Ship/Item.php:979
|
3786 |
msgid "required"
|
3787 |
msgstr "erforderlich"
|
3788 |
|
3789 |
+
#: views/b2s/ship.php:178
|
3790 |
msgid "requires image"
|
3791 |
msgstr "Bild benötigt"
|
3792 |
|
3794 |
msgid "reset"
|
3795 |
msgstr "zurücksetzen"
|
3796 |
|
3797 |
+
#: includes/B2S/Settings/Item.php:134
|
3798 |
msgid "Reset all page and post meta data"
|
3799 |
msgstr "Lösche alle Seiten und Beitrags Meta Angaben"
|
3800 |
|
3802 |
msgid "reset password"
|
3803 |
msgstr "Passwort zurücksetzen"
|
3804 |
|
3805 |
+
#: includes/B2S/Support/Check/System.php:68
|
3806 |
+
#: includes/B2S/Support/Check/System.php:86
|
3807 |
msgid "resolve conflict"
|
3808 |
msgstr "Konflikt beheben"
|
3809 |
|
3810 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:892
|
3811 |
+
#: includes/B2S/Ship/Save.php:452
|
3812 |
msgid "Retweet"
|
3813 |
msgstr "Retweet"
|
3814 |
|
3824 |
"verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
|
3825 |
"aus Deinem WordPress heraus planen."
|
3826 |
|
3827 |
+
#: includes/Tools.php:396
|
3828 |
msgid "Romania"
|
3829 |
msgstr "Rumänien"
|
3830 |
|
3832 |
msgid "RSS import & auto-post"
|
3833 |
msgstr "RSS-Import & Auto-Poster"
|
3834 |
|
3835 |
+
#: includes/Tools.php:387
|
3836 |
msgid "Russia"
|
3837 |
msgstr "Russland"
|
3838 |
|
3840 |
msgid "Sales Support"
|
3841 |
msgstr "Kontaktiere unser Vertriebsteam"
|
3842 |
|
3843 |
+
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:1322
|
3844 |
msgid "Sat"
|
3845 |
msgstr "Sa"
|
3846 |
|
3848 |
msgid "Saturday"
|
3849 |
msgstr "Samstag"
|
3850 |
|
3851 |
+
#: includes/B2S/AutoPost/Item.php:175
|
3852 |
msgid "Save"
|
3853 |
msgstr " Speichern"
|
3854 |
|
3855 |
+
#: views/b2s/network.php:248 views/b2s/settings.php:70
|
3856 |
+
#: includes/B2S/Network/Item.php:587 includes/B2S/Settings/Item.php:146
|
3857 |
msgid "save"
|
3858 |
msgstr "speichern"
|
3859 |
|
3860 |
+
#: includes/B2S/Ship/Item.php:1361
|
3861 |
msgid "Save as best time for this network"
|
3862 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
3863 |
|
3865 |
msgid "Save As Draft"
|
3866 |
msgstr "als Entwurf speichern"
|
3867 |
|
3868 |
+
#: views/b2s/ship.php:233 views/b2s/ship.php:237
|
3869 |
#: includes/B2S/Curation/View.php:110
|
3870 |
msgid "Save as Draft"
|
3871 |
msgstr "als Entwurf speichern"
|
3878 |
"Speicher beim Surfen Links aus Deinem Browser und teile sie, wann immer Du "
|
3879 |
"möchtest"
|
3880 |
|
3881 |
+
#: views/b2s/ship.php:168 views/b2s/ship.php:340
|
3882 |
msgid "Save network selection"
|
3883 |
msgstr "Netzwerkauswahl speichern"
|
3884 |
|
3885 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:32
|
3886 |
msgid "save..."
|
3887 |
msgstr "speichere Daten..."
|
3888 |
|
3899 |
msgstr "Als Entwurf gespeichert."
|
3900 |
|
3901 |
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:199
|
3902 |
+
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:322
|
3903 |
+
#: views/b2s/ship.php:388 views/b2s/ship.php:434 views/b2s/html/footer.php:37
|
3904 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
3905 |
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
|
3906 |
#: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
|
3928 |
msgid "Schedule curated content"
|
3929 |
msgstr "Kuratierte Inhalte planen"
|
3930 |
|
3931 |
+
#: views/b2s/curation.php:179 views/b2s/post.calendar.php:276
|
3932 |
+
#: views/b2s/ship.php:414 includes/B2S/Ship/Item.php:1203
|
3933 |
msgid "Schedule for specific dates"
|
3934 |
msgstr "Für bestimmte Termine planen"
|
3935 |
|
3936 |
+
#: views/b2s/curation.php:182 views/b2s/post.calendar.php:279
|
3937 |
+
#: views/b2s/ship.php:417
|
3938 |
msgid "Schedule post recurrently"
|
3939 |
msgstr "Beitrag mehrfach planen"
|
3940 |
|
3941 |
+
#: includes/B2S/Ship/Item.php:1205
|
3942 |
msgid "Schedule Recurrent Post"
|
3943 |
msgstr "regelmäßig Planen"
|
3944 |
|
3945 |
+
#: views/b2s/ship.php:368
|
3946 |
msgid "Schedule your post"
|
3947 |
msgstr "Beitrag planen"
|
3948 |
|
3949 |
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:198
|
3950 |
+
#: views/b2s/post.calendar.php:295 views/b2s/ship.php:321
|
3951 |
+
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:36
|
3952 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
3953 |
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
|
3954 |
#: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
|
3959 |
"oder nach einem regelmäßigen Muster"
|
3960 |
|
3961 |
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:196
|
3962 |
+
#: views/b2s/post.calendar.php:293 views/b2s/ship.php:319
|
3963 |
+
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:34
|
3964 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
3965 |
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
|
3966 |
#: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
|
3976 |
"Plane Deine Beiträge zu den besten Zeiten in jedem Netzwerk: einmal, "
|
3977 |
"mehrmals oder wiederkehrend"
|
3978 |
|
3979 |
+
#: views/b2s/post.calendar.php:43 views/b2s/ship.php:18
|
3980 |
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:381
|
3981 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3982 |
msgid "scheduled"
|
3983 |
msgstr "geplant"
|
3984 |
|
3985 |
+
#: includes/B2S/AutoPost/Item.php:145
|
3986 |
msgid "Scheduled Auto-Posting"
|
3987 |
msgstr "Scheduled Auto-Posting"
|
3988 |
|
3989 |
+
#: includes/B2S/Post/Item.php:918
|
3990 |
#, php-format
|
3991 |
msgid "scheduled by %s"
|
3992 |
msgstr "von %s vorgeplant "
|
3993 |
|
3994 |
+
#: includes/B2S/Ship/Save.php:453
|
3995 |
msgid "scheduled on"
|
3996 |
msgstr "geplant für"
|
3997 |
|
3999 |
msgid "scheduled post(s)"
|
4000 |
msgstr "geplante Beiträge"
|
4001 |
|
4002 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:18
|
4003 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
4004 |
msgid "Scheduled Posts"
|
4005 |
msgstr "geplante Beiträge"
|
4006 |
|
4007 |
+
#: views/b2s/network.php:166
|
4008 |
msgid "scheduled posts"
|
4009 |
msgstr "geplante Beiträge"
|
4010 |
|
4013 |
msgid "scheduled social media posts"
|
4014 |
msgstr "geplante Beiträge"
|
4015 |
|
4016 |
+
#: views/b2s/ship.php:67
|
4017 |
msgid "scroll to bottom"
|
4018 |
msgstr "zum Seitenende"
|
4019 |
|
4020 |
+
#: views/b2s/ship.php:231
|
4021 |
msgid "scroll to top"
|
4022 |
msgstr "zum Seitenanfang"
|
4023 |
|
4024 |
+
#: includes/Tools.php:422
|
4025 |
msgid "Search"
|
4026 |
msgstr "Suche"
|
4027 |
|
4042 |
"Netzwerkfilter. Bearbeite geplante Beiträge oder füge neue Social-Media-"
|
4043 |
"Beiträge per Drag & Drop hinzu."
|
4044 |
|
4045 |
+
#: views/b2s/post.calendar.php:192 views/b2s/post.calendar.php:205
|
4046 |
msgid "select"
|
4047 |
msgstr "auswählen"
|
4048 |
|
4049 |
+
#: views/b2s/post.calendar.php:223
|
4050 |
msgid "Select a post"
|
4051 |
msgstr "Wähle einen Beitrag aus"
|
4052 |
|
4054 |
msgid "Select a user"
|
4055 |
msgstr "Blog-Nutzer auswählen"
|
4056 |
|
4057 |
+
#: includes/B2S/AutoPost/Item.php:70 includes/B2S/AutoPost/Item.php:82
|
4058 |
msgid "Select all"
|
4059 |
msgstr "Alle auswählen"
|
4060 |
|
4061 |
+
#: includes/B2S/Post/Item.php:736 includes/B2S/Post/Item.php:827
|
4062 |
+
#: includes/B2S/Post/Item.php:898 includes/B2S/RePost/Item.php:135
|
4063 |
msgid "select all"
|
4064 |
msgstr "alle auswählen"
|
4065 |
|
4066 |
+
#: includes/B2S/AutoPost/Item.php:307
|
4067 |
+
msgid "Select Categories"
|
4068 |
+
msgstr "Beitragskategorien auswählen"
|
4069 |
+
|
4070 |
#: views/prg/ship.php:36
|
4071 |
msgid "Select Image"
|
4072 |
msgstr "Bild auswählen"
|
4073 |
|
4074 |
+
#: views/b2s/curation.php:310 views/b2s/repost.php:195
|
4075 |
msgid "Select image"
|
4076 |
msgstr "Bild auswählen"
|
4077 |
|
4078 |
+
#: views/b2s/post.calendar.php:161 views/b2s/post.sched.php:115
|
4079 |
+
#: views/b2s/repost.php:163 views/b2s/ship.php:454
|
4080 |
msgid "Select image for"
|
4081 |
msgstr "Wähle Bild aus für"
|
4082 |
|
4083 |
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:201
|
4084 |
+
#: views/b2s/post.calendar.php:298 views/b2s/ship.php:324
|
4085 |
+
#: views/b2s/ship.php:390 views/b2s/ship.php:436 views/b2s/html/footer.php:39
|
4086 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
4087 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
4088 |
#: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
|
4101 |
"erstellen."
|
4102 |
|
4103 |
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:200
|
4104 |
+
#: views/b2s/post.calendar.php:297 views/b2s/ship.php:323
|
4105 |
+
#: views/b2s/ship.php:389 views/b2s/ship.php:435 views/b2s/html/footer.php:38
|
4106 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
4107 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
4108 |
#: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
|
4127 |
"Wähle zwischen Link- oder Bild-Post pro Netzwerk, um das optimale Format für "
|
4128 |
"Deinen Beitrag zu wählen"
|
4129 |
|
4130 |
+
#: includes/B2S/PostBox.php:253 includes/B2S/AutoPost/Item.php:186
|
4131 |
#: includes/B2S/Curation/View.php:73 includes/B2S/RePost/Item.php:159
|
4132 |
msgid "Select network collection:"
|
4133 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
4134 |
|
4135 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:144
|
4136 |
#: includes/B2S/Ship/Image.php:100
|
4137 |
msgid "Select or upload an image from media gallery"
|
4138 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
4139 |
|
4140 |
+
#: views/b2s/network.php:371 views/b2s/network.php:426 views/b2s/ship.php:600
|
4141 |
+
#: views/b2s/ship.php:655
|
4142 |
msgid "Select Pinboard"
|
4143 |
msgstr "Pinnwand auswählen"
|
4144 |
|
4145 |
+
#: includes/B2S/AutoPost/Item.php:287
|
4146 |
+
msgid "Select Post Types"
|
4147 |
+
msgstr "Inhaltstypen auswählen"
|
4148 |
+
|
4149 |
#: views/b2s/html/footer.php:328
|
4150 |
msgid ""
|
4151 |
"Select the content that will be automatically pre-filled in your Twitter "
|
4161 |
msgid "Select the preferred custom post format for your posts"
|
4162 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
4163 |
|
4164 |
+
#: includes/B2S/AutoPost/Item.php:160
|
4165 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
4166 |
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
4167 |
|
4168 |
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:73
|
4169 |
+
#: views/b2s/repost.php:181 includes/B2S/AutoPost/Item.php:197
|
4170 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
4171 |
msgid "Select Twitter profile:"
|
4172 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
4173 |
|
4174 |
+
#: includes/B2S/AutoPost/Item.php:62
|
4175 |
msgid ""
|
4176 |
"Select your preferred network collection for autoposting. This collection "
|
4177 |
"defines the social media accounts on which the autoposter will share your "
|
4184 |
msgid "selected date"
|
4185 |
msgstr "ausgewähltes Datum"
|
4186 |
|
4187 |
+
#: views/b2s/network.php:412 views/b2s/ship.php:641
|
4188 |
msgid "Server-Location"
|
4189 |
msgstr "Serverstandort"
|
4190 |
|
4191 |
+
#: includes/B2S/Settings/Item.php:69
|
4192 |
+
msgid "Set the time format you like to use for your posts."
|
4193 |
+
msgstr ""
|
4194 |
+
"Lege das Zeitformat fest, welches für Deine Beiträge genutzt werden soll."
|
4195 |
+
|
4196 |
+
#: includes/B2S/Settings/Item.php:66
|
4197 |
+
msgid "Set time format"
|
4198 |
+
msgstr "Zeitformat einstellen"
|
4199 |
+
|
4200 |
+
#: includes/B2S/AutoPost/Item.php:141
|
4201 |
msgid ""
|
4202 |
"Set up your autoposter to automatically share your imported posts, pages and "
|
4203 |
"custom post types on your social media channels."
|
4205 |
"Nutze den Auto-Poster, um Deine importierten Beiträge, Seiten und Cutsom "
|
4206 |
"Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
4207 |
|
4208 |
+
#: includes/B2S/AutoPost/Item.php:53
|
4209 |
msgid ""
|
4210 |
"Set up your autoposter to automatically share your new or updated posts, "
|
4211 |
"pages and custom post types on your social media channels."
|
4213 |
"Nutze den Auto-Poster, um Deine neuen oder aktualisierten Beiträge, Seiten "
|
4214 |
"und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
4215 |
|
4216 |
+
#: includes/Loader.php:839 includes/Loader.php:979 includes/Loader.php:979
|
4217 |
+
#: includes/Loader.php:1053 includes/B2S/RePost/Item.php:25
|
4218 |
#: views/b2s/html/sidebar.php:137
|
4219 |
msgid "Settings"
|
4220 |
msgstr "Einstellungen"
|
4221 |
|
4222 |
+
#: views/b2s/ship.php:232 views/b2s/ship.php:238
|
4223 |
#: includes/B2S/Curation/View.php:113
|
4224 |
msgid "Share"
|
4225 |
msgstr "Teilen"
|
4226 |
|
4227 |
+
#: includes/B2S/Post/Item.php:860 includes/B2S/Ship/Save.php:433
|
4228 |
msgid "share"
|
4229 |
msgstr "teilen"
|
4230 |
|
4258 |
"Teile importierte RSS-Feeds automatisch, um mehr Variationen für Deine "
|
4259 |
"Inhalte zu erhalten."
|
4260 |
|
4261 |
+
#: views/b2s/ship.php:268
|
4262 |
msgid "Share new post on Social Media"
|
4263 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
4264 |
|
4265 |
+
#: includes/B2S/Ship/Item.php:1200
|
4266 |
msgid "Share Now"
|
4267 |
msgstr "Sofort teilen"
|
4268 |
|
4275 |
msgstr "Teile auf mehreren Netzwerk-Konten "
|
4276 |
|
4277 |
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:194
|
4278 |
+
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:317
|
4279 |
+
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:32
|
4280 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
4281 |
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
|
4282 |
#: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
|
4306 |
msgid "Share text posts:"
|
4307 |
msgstr "Teile Text-Beiträge:"
|
4308 |
|
4309 |
+
#: includes/B2S/AutoPost/Item.php:147
|
4310 |
msgid "share up to"
|
4311 |
msgstr "teile bis zu"
|
4312 |
|
4313 |
+
#: includes/Loader.php:975
|
4314 |
msgid "Share Website & Blog Content"
|
4315 |
msgstr "Webseiten- & Blog Content teilen"
|
4316 |
|
4347 |
"Teile Deine Beiträge auf Seiten und in Gruppen auf Facebook, LinkedIn, Xing,"
|
4348 |
" VK und Medium."
|
4349 |
|
4350 |
+
#: views/b2s/post.calendar.php:189
|
4351 |
msgid "Share your WordPress posts, pages or products"
|
4352 |
msgstr "Teile Deine WordPress-Beiträge, -Seiten oder -Produkte"
|
4353 |
|
4355 |
msgid "Shared"
|
4356 |
msgstr "Wie oft geteilt?"
|
4357 |
|
4358 |
+
#: includes/B2S/Post/Item.php:761
|
4359 |
#, php-format
|
4360 |
msgid "shared by %s"
|
4361 |
msgstr "von %s geteilt"
|
4364 |
msgid "shared by user"
|
4365 |
msgstr "geteilt von Nutzer"
|
4366 |
|
4367 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:20
|
4368 |
#: views/b2s/html/sidebar.php:125
|
4369 |
msgid "Shared Posts"
|
4370 |
msgstr "geteilte Beiträge"
|
4381 |
msgid "Sharing"
|
4382 |
msgstr "Teilen"
|
4383 |
|
4384 |
+
#: includes/B2S/Post/Item.php:761
|
4385 |
#, php-format
|
4386 |
msgid "sharing in progress by %s"
|
4387 |
msgstr "wird gerade von %s geteilt"
|
4408 |
msgid "Sharing-Debugger"
|
4409 |
msgstr "Sharing-Debugger"
|
4410 |
|
4411 |
+
#: includes/B2S/Settings/Item.php:109
|
4412 |
msgid "Shortcodes"
|
4413 |
msgstr "Shortcodes"
|
4414 |
|
4428 |
msgid "Show all"
|
4429 |
msgstr "alle anzeigen"
|
4430 |
|
4431 |
+
#: views/b2s/post.calendar.php:41 includes/B2S/Calendar/Filter.php:127
|
4432 |
msgid "show all"
|
4433 |
msgstr "alles anzeigen"
|
4434 |
|
4440 |
msgid "show calendar"
|
4441 |
msgstr "Planungskalender anzeigen"
|
4442 |
|
4443 |
+
#: includes/Loader.php:814 includes/Loader.php:816
|
4444 |
msgid "show details"
|
4445 |
msgstr "siehe Details"
|
4446 |
|
4456 |
msgid "Sign in"
|
4457 |
msgstr "Anmelden"
|
4458 |
|
4459 |
+
#: views/b2s/network.php:436 views/b2s/ship.php:665
|
4460 |
msgid "Sign in to Pinterest"
|
4461 |
msgstr "Melde Dich bei Pinterest an"
|
4462 |
|
4463 |
+
#: includes/Loader.php:975 includes/Loader.php:1026
|
4464 |
msgid "Site & Blog Content"
|
4465 |
msgstr "Seiten & Blog Content"
|
4466 |
|
4467 |
+
#: includes/Tools.php:408
|
4468 |
msgid "Slovakia"
|
4469 |
msgstr "Slowakei"
|
4470 |
|
4471 |
+
#: views/b2s/network.php:236 views/b2s/ship.php:27
|
4472 |
+
#: includes/B2S/AutoPost/Item.php:33 includes/B2S/Curation/View.php:56
|
4473 |
#: includes/B2S/Network/Item.php:179 includes/B2S/Network/Item.php:188
|
4474 |
#: includes/B2S/Network/Item.php:198 includes/B2S/Network/Item.php:299
|
4475 |
#: includes/B2S/Network/Item.php:369 includes/B2S/Network/Item.php:435
|
4476 |
+
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:172
|
4477 |
+
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:1202
|
4478 |
#: includes/B2S/Ship/Portale.php:37 views/b2s/html/post.navbar.php:18
|
4479 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/post.navbar.php:23
|
4480 |
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
4481 |
msgid "SMART"
|
4482 |
msgstr "SMART"
|
4483 |
|
4484 |
+
#: views/b2s/network.php:700
|
4485 |
msgid "Smart: 3 (per user)"
|
4486 |
msgstr "Smart: 3 (pro Nutzer)"
|
4487 |
|
4488 |
+
#: includes/Tools.php:424
|
4489 |
msgid "Smileys & People"
|
4490 |
msgstr "Smileys & Personen"
|
4491 |
|
4493 |
msgid "Sniply"
|
4494 |
msgstr "Sniply"
|
4495 |
|
4496 |
+
#: views/b2s/ship.php:109
|
4497 |
msgid "Social Accounts"
|
4498 |
msgstr "Social Media Konten"
|
4499 |
|
4510 |
msgid "Social Media Calendar"
|
4511 |
msgstr "Social Media Kalender"
|
4512 |
|
4513 |
+
#: views/b2s/settings.php:49 views/b2s/html/sidebar.php:134
|
4514 |
msgid "Social Media Networks"
|
4515 |
msgstr "Social-Media-Netzwerke"
|
4516 |
|
4518 |
msgid "Social Media Post"
|
4519 |
msgstr "Social Media Post"
|
4520 |
|
4521 |
+
#: includes/Loader.php:889
|
4522 |
msgid "Social Media Post Drafts"
|
4523 |
msgstr "Social Media Posts Entwürfe"
|
4524 |
|
4525 |
+
#: includes/Loader.php:976 includes/Loader.php:1033 views/b2s/curation.php:257
|
4526 |
+
#: views/b2s/curation.php:332
|
4527 |
msgid "Social Media Posts"
|
4528 |
msgstr "Social Media Posts"
|
4529 |
|
4531 |
msgid "social media posts ready to be shared"
|
4532 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
4533 |
|
4534 |
+
#: views/b2s/ship.php:56
|
4535 |
msgid "Social Media Scheduling & Sharing"
|
4536 |
msgstr "Beitrag auf Social Media planen und teilen"
|
4537 |
|
4538 |
+
#: views/b2s/settings.php:52
|
4539 |
msgid "Social Media Time Settings"
|
4540 |
msgstr "Social-Media-Zeiteinstellungen"
|
4541 |
|
4542 |
+
#: views/b2s/settings.php:43
|
4543 |
msgid "Social Meta Data"
|
4544 |
msgstr "Social Meta Angaben"
|
4545 |
|
4551 |
msgid "Social Networks"
|
4552 |
msgstr "Soziale Netzwerke"
|
4553 |
|
4554 |
+
#: views/b2s/settings.php:158
|
4555 |
#, php-format
|
4556 |
msgid ""
|
4557 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
4585 |
msgid "sort"
|
4586 |
msgstr "sortieren"
|
4587 |
|
4588 |
+
#: views/b2s/post.calendar.php:39
|
4589 |
msgid "Sort by network"
|
4590 |
msgstr "Sortiere nach Netzwerk"
|
4591 |
|
4592 |
+
#: includes/Tools.php:411
|
4593 |
msgid "South Africa"
|
4594 |
msgstr "Südafrika"
|
4595 |
|
4596 |
+
#: includes/Tools.php:384
|
4597 |
msgid "Spain"
|
4598 |
msgstr "Spanien"
|
4599 |
|
4600 |
+
#: includes/B2S/Ship/Item.php:1257
|
4601 |
msgid "Start date"
|
4602 |
msgstr "Startdatum"
|
4603 |
|
4643 |
msgid "Successfully saved"
|
4644 |
msgstr "Erfolgreich gespeichert"
|
4645 |
|
4646 |
+
#: includes/B2S/Settings/Item.php:200
|
4647 |
msgid "Summary"
|
4648 |
msgstr "Link-Darstellung"
|
4649 |
|
4650 |
+
#: includes/B2S/Settings/Item.php:201
|
4651 |
msgid "Summary with large image"
|
4652 |
msgstr "Link-Darstellung mit großem Bild"
|
4653 |
|
4654 |
+
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:1323
|
4655 |
msgid "Sun"
|
4656 |
msgstr "So"
|
4657 |
|
4659 |
msgid "Sunday"
|
4660 |
msgstr "Sonntag"
|
4661 |
|
4662 |
+
#: includes/Loader.php:839
|
4663 |
msgid "Support"
|
4664 |
msgstr "Support"
|
4665 |
|
4667 |
msgid "Supported HTML tags"
|
4668 |
msgstr "Erlaubte HTML-Elemente"
|
4669 |
|
4670 |
+
#: includes/Tools.php:406
|
4671 |
msgid "Sweden"
|
4672 |
msgstr "Schweden"
|
4673 |
|
4674 |
+
#: includes/Tools.php:381
|
4675 |
msgid "Switzerland"
|
4676 |
msgstr "Schweiz"
|
4677 |
|
4678 |
+
#: includes/Tools.php:430
|
4679 |
msgid "Symbols"
|
4680 |
msgstr "Symbole"
|
4681 |
|
4682 |
+
#: includes/B2S/Settings/Item.php:114
|
4683 |
msgid "System"
|
4684 |
msgstr "System"
|
4685 |
|
4686 |
+
#: views/b2s/network.php:506 views/b2s/network.php:591
|
4687 |
msgid "Team Management"
|
4688 |
msgstr "Team-Management"
|
4689 |
|
4707 |
msgid "Text Post"
|
4708 |
msgstr "Text-Beitrag"
|
4709 |
|
4710 |
+
#: views/b2s/curation.php:281
|
4711 |
msgid ""
|
4712 |
"Text posts enable you to share pure text messages and personal comments with "
|
4713 |
"your followers and readers. You can also customize your posts with "
|
4752 |
"Bildgröße des jeweiligen Netzwerkes an. Du kannst bis zu 4 Bilder in einem "
|
4753 |
"Beitrag auf Facebook (Seite und Gruppe) sowie auf Twitter teilen."
|
4754 |
|
4755 |
+
#: views/b2s/network.php:532
|
4756 |
msgid "The connection does not exist."
|
4757 |
msgstr "Diese Verbindung existiert nicht."
|
4758 |
|
4759 |
+
#: views/b2s/network.php:529
|
4760 |
msgid "The connection has already been assigned to this user."
|
4761 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
4762 |
|
4763 |
+
#: views/b2s/network.php:167
|
4764 |
msgid ""
|
4765 |
"The connection is still assigned to other users. Please withdraw the "
|
4766 |
"assigned connection from other users first."
|
4776 |
"Die Verbindung zum Server ist fehlgeschlagen. Bitte versuche es erneut. Mehr "
|
4777 |
"Informationen und Lösungsvorschläge findest Du in dem"
|
4778 |
|
4779 |
+
#: views/b2s/ship.php:780
|
4780 |
msgid ""
|
4781 |
"The connection to the server failed. Please try again! You can find more "
|
4782 |
"information and solutions in the guide for server connection"
|
4797 |
"nicht mit dem internet verbinden. Versuche es später erneut oder kontaktiere "
|
4798 |
"Deinen Webmaster, wenn dieser Fehler erneut erscheint."
|
4799 |
|
4800 |
+
#: includes/Loader.php:896
|
4801 |
#, php-format
|
4802 |
msgid ""
|
4803 |
"The connection to your social media account is interrupted. Please check "
|
4810 |
"target=\"_blank\" href=\"%s\">Anleitung zur Fehlerbehebung</a> zeigt Dir, "
|
4811 |
"wie Du die Verbindung zu Deinem Social-Media-Account erneuern kannst."
|
4812 |
|
4813 |
+
#: views/b2s/network.php:309
|
4814 |
msgid "The content of your post"
|
4815 |
msgstr "Der Inhalt Deines Beitrags."
|
4816 |
|
4817 |
+
#: includes/Loader.php:894
|
4818 |
#, php-format
|
4819 |
msgid ""
|
4820 |
"The content of your post could not be approved by the network. Please see "
|
4823 |
"Der Inhalt Deines Beitrags konnte vom Netzwerk nicht genehmigt werden. Bitte "
|
4824 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
4825 |
|
4826 |
+
#: includes/B2S/Settings/Item.php:198
|
4827 |
msgid "The default card type to use"
|
4828 |
msgstr "Wählen Sie Ihre Standard-Twitter-Card"
|
4829 |
|
4835 |
"Die kostenlose Testversion kann nicht gestartet werden. Dieser Blog wurde "
|
4836 |
"bereits für die kostenlose Testversion registriert."
|
4837 |
|
4838 |
+
#: includes/B2S/Ship/Item.php:1097
|
4839 |
msgid "The Headline..."
|
4840 |
msgstr "Die Überschrift..."
|
4841 |
|
4842 |
+
#: includes/B2S/Settings/Item.php:271 views/b2s/html/footer.php:183
|
4843 |
msgid ""
|
4844 |
"The image preview will be cropped automatically to fit the default Instagram "
|
4845 |
"layout for your Instagram timeline. The image will be shown uncropped when "
|
4850 |
"Ganzes angezeigt, wenn Du die Vorschauseite für Deinen Instagram-Beitrag "
|
4851 |
"öffnest. "
|
4852 |
|
4853 |
+
#: includes/B2S/Settings/Item.php:257
|
4854 |
msgid "The image will be changed"
|
4855 |
msgstr "Das Bild wird geändert"
|
4856 |
|
4863 |
msgid "The license has been successfully activated."
|
4864 |
msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
|
4865 |
|
4866 |
+
#: includes/B2S/Settings/Item.php:262 views/b2s/html/footer.php:161
|
4867 |
msgid ""
|
4868 |
"The link post format displays posts title, link address and the first one or "
|
4869 |
"two sentences of the post. The networks scan this information from your META "
|
4886 |
"ausgewählt hast, zeigen einige Netzwerke das erste Bild an, dass sie auf "
|
4887 |
"Deiner Seite finden."
|
4888 |
|
4889 |
+
#: includes/B2S/Network/Item.php:813
|
4890 |
msgid "The link will be added automatically at the end of the post."
|
4891 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
4892 |
|
4893 |
+
#: includes/B2S/Network/Item.php:811
|
4894 |
msgid ""
|
4895 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
4896 |
"your page, in order to refer to the original source of the content and to "
|
4906 |
"Der Link, dem Du gefolgt bist, ist abgelaufen. Bitte aktualisiere Deine "
|
4907 |
"Seite."
|
4908 |
|
4909 |
+
#: views/b2s/network.php:346 views/b2s/network.php:359 views/b2s/ship.php:580
|
4910 |
+
#: views/b2s/ship.php:588
|
4911 |
msgid ""
|
4912 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
4913 |
"sign in to Pinterest using the Blog2Social browser extension."
|
4916 |
"verbinden, melde Dich bitte über die Blog2Social Browser-Extension bei "
|
4917 |
"Pinterest an."
|
4918 |
|
4919 |
+
#: views/b2s/network.php:311
|
4920 |
msgid "The name of the post author."
|
4921 |
msgstr "Der Name des Autors Deines Beitrags."
|
4922 |
|
4923 |
+
#: includes/Loader.php:902
|
4924 |
#, php-format
|
4925 |
msgid ""
|
4926 |
"The network can not publish special characters such as Emoji. Please see the "
|
4929 |
"Das Netzwerk kann keine Sonderzeichen wie Emoji veröffentlichen. Bitte "
|
4930 |
"beachte die folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
4931 |
|
4932 |
+
#: includes/Loader.php:892
|
4933 |
#, php-format
|
4934 |
msgid ""
|
4935 |
"The network could not publish your post. Please see the following <a "
|
4938 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
4939 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
4940 |
|
4941 |
+
#: includes/B2S/Network/Item.php:818
|
4942 |
msgid "The network does not support hashtags."
|
4943 |
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
4944 |
|
4945 |
+
#: includes/Loader.php:899
|
4946 |
#, php-format
|
4947 |
msgid ""
|
4948 |
"The network has blocked your account. Please see the following <a "
|
4951 |
"Das Netzwerk hat Dein Konto gesperrt. Bitte beachte die folgende <a "
|
4952 |
"target=\"_blank\" href=\"%s\">Anleitung</a>"
|
4953 |
|
4954 |
+
#: includes/Loader.php:904
|
4955 |
msgid "The network requires a public url."
|
4956 |
msgstr "Das Netzwerk benötigt eine öffentlich zugängliche URL."
|
4957 |
|
4963 |
"Die Netzwerke Diigo, Bloglovin' und Google My Business unterstützen das GIF "
|
4964 |
"format nicht und stellen stattdessen das Standardbild dar."
|
4965 |
|
4966 |
+
#: includes/Loader.php:900
|
4967 |
#, php-format
|
4968 |
msgid ""
|
4969 |
"The number of images is reached. Please see the following <a "
|
4980 |
msgid "The page and post meta data could not be removed."
|
4981 |
msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
4982 |
|
4983 |
+
#: views/b2s/network.php:466
|
4984 |
msgid "The parameters could not be saved. Please try again."
|
4985 |
msgstr ""
|
4986 |
"Die Parameter konnten nicht gespeichert werden. Bitte versuchen Sie es noch "
|
4987 |
"einmal."
|
4988 |
|
4989 |
+
#: includes/B2S/Calendar/Item.php:534 includes/B2S/Post/Item.php:750
|
4990 |
+
#, php-format
|
4991 |
+
msgid ""
|
4992 |
+
"The post cannot be published due to changes on the Instagram interface. More "
|
4993 |
+
"information in the <a href=\"%s\" target=\"_blank\">Instagram guide</a>."
|
4994 |
+
msgstr ""
|
4995 |
+
"Durch Änderungen der Instagram-Schnittstelle kann der Beitrag nicht "
|
4996 |
+
"veröffentlicht werden. Mehr Informationen in dem <a href=\"%s\" "
|
4997 |
+
"target=\"_blank\">Instagram-Guide</a>."
|
4998 |
+
|
4999 |
#: views/b2s/html/header.php:227
|
5000 |
msgid ""
|
5001 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
5017 |
"internationalen und regionalen Portalen, Social Media und Dokumenten-"
|
5018 |
"Netzwerken."
|
5019 |
|
5020 |
+
#: views/b2s/network.php:312
|
5021 |
msgid ""
|
5022 |
"The price of your product, if you have installed WooCommerce on your "
|
5023 |
"website/ blog."
|
5025 |
"Preis: Der Preis eines Produkts, wenn Du WooCommerce auf Deiner Website/ "
|
5026 |
"Blog installiert hast."
|
5027 |
|
5028 |
+
#: includes/B2S/AutoPost/Item.php:48
|
5029 |
msgid ""
|
5030 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
5031 |
"admin."
|
5033 |
"Die Einstellungen für den Auto-Poster wurden für Dich von einem WordPress-"
|
5034 |
"Admin vorgenommen."
|
5035 |
|
5036 |
+
#: views/b2s/network.php:308
|
5037 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
5038 |
msgstr ""
|
5039 |
" Die Zusammenfassung Deines Beitrags (wird von dir im Seitenmenü deines "
|
5040 |
"Beitrags festgelegt)."
|
5041 |
|
5042 |
+
#: views/b2s/network.php:310
|
5043 |
msgid "The tags you have set in your post."
|
5044 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
5045 |
|
5064 |
"“besten Zeiten” in dem <a href=\"%s\" target=\"_blank\">\"Die besten Zeiten "
|
5065 |
"für Social-Media-Posts”-Guide</a>."
|
5066 |
|
5067 |
+
#: views/b2s/network.php:307
|
5068 |
msgid "The title of your post"
|
5069 |
msgstr "Der Titel deines Beitrags."
|
5070 |
|
5078 |
"Systemumgebung Deines Blogs ausgelöst werden können. So kannst Du jederzeit "
|
5079 |
"selbstständig Deine Einstellung auf Wordpress einsehen."
|
5080 |
|
5081 |
+
#: views/b2s/network.php:163
|
5082 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
5083 |
msgstr ""
|
5084 |
"Der Benutzer, dem die Verbindung zugewiesen ist, hat noch geplante Beiträge."
|
5085 |
|
5086 |
+
#: views/b2s/network.php:544
|
5087 |
msgid "There are no other users to whom the connection can be assigned."
|
5088 |
msgstr ""
|
5089 |
"Es sind keine weiteren Benutzer vorhanden, denen die Verbindung zugewiesen "
|
5090 |
"werden kann."
|
5091 |
|
5092 |
+
#: includes/Loader.php:823 includes/B2S/PostBox.php:146
|
5093 |
+
#: includes/B2S/AutoPost/Item.php:61
|
5094 |
msgid ""
|
5095 |
"There are no social network accounts assigned to your selected network "
|
5096 |
"collection. Please assign at least one social network account or select "
|
5100 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
5101 |
"eine andere Netzwerkgruppierung aus. "
|
5102 |
|
5103 |
+
#: views/b2s/ship.php:560
|
5104 |
msgid ""
|
5105 |
"There is already a saved draft for this WordPress post or page. If you save "
|
5106 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
5122 |
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
5123 |
"Pressemitteilung jetzt versendet werden?"
|
5124 |
|
5125 |
+
#: views/b2s/ship.php:347
|
5126 |
msgid ""
|
5127 |
"This allows you to adjust your network selection at any time and save it by "
|
5128 |
"clicking on \"Save network selection\"."
|
5130 |
"Auf diese Weise kannst Du jederzeit Deine Netzwerkauswahl anpassen und diese "
|
5131 |
"speichern (\"Netzwerkauswahl speichern\")."
|
5132 |
|
5133 |
+
#: views/b2s/network.php:535
|
5134 |
msgid "This connection has already been assigned to this user."
|
5135 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
5136 |
|
5142 |
msgid "This entry was removed successfully."
|
5143 |
msgstr "Dieser Eintrag wurde erfolgreich entfernt."
|
5144 |
|
5145 |
+
#: includes/B2S/Settings/Item.php:136 includes/B2S/Settings/Item.php:165
|
5146 |
msgid ""
|
5147 |
"This is a global feature for your blog, which can only be edited by users "
|
5148 |
"with admin rights."
|
5150 |
"Dies ist eine globale Einstellung für Deinen Blog, die nur von Usern mit "
|
5151 |
"Admin Rechten bearbeitet werden kann."
|
5152 |
|
5153 |
+
#: includes/B2S/Settings/Item.php:115
|
5154 |
msgid ""
|
5155 |
"This is a global system setting for your website / blog, which can be "
|
5156 |
"edited by users with admin rights only."
|
5158 |
"Dies ist eine globale Einstellung für Deinen Website/ Deinen Blog, die nur "
|
5159 |
"von Nutzern mit Admin-Rechten bearbeitet werden kann. "
|
5160 |
|
5161 |
+
#: includes/B2S/Ship/Save.php:418 includes/B2S/Ship/Save.php:426
|
5162 |
msgid "This is how it works:"
|
5163 |
msgstr "Und so funktioniert es:"
|
5164 |
|
5165 |
+
#: views/b2s/network.php:162
|
5166 |
msgid "This network connection is still assigned to other users."
|
5167 |
msgstr "Diese Netzwerkverbindung ist anderen Blog-Nutzern zugeordnet."
|
5168 |
|
5174 |
msgid "This post was edited successfully."
|
5175 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
5176 |
|
5177 |
+
#: includes/Loader.php:814
|
5178 |
msgid "This post will be shared into your social media from"
|
5179 |
msgstr ""
|
5180 |
"Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
5181 |
|
5182 |
+
#: includes/Loader.php:816
|
5183 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
5184 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
5185 |
|
5186 |
+
#: includes/B2S/Network/Item.php:822
|
5187 |
msgid ""
|
5188 |
"This social network displays the predefined hashtags as clickable tags at "
|
5189 |
"the end of your post."
|
5191 |
"Das Netzwerk veröffentlicht die vordefinierten Hashtags als anklickbare Tags "
|
5192 |
"am Ende Deines Beitrags."
|
5193 |
|
5194 |
+
#: views/b2s/network.php:526
|
5195 |
msgid "This user don't have a Business License, or it is not the same"
|
5196 |
msgstr ""
|
5197 |
"Dieser Benutzer hat keine Business-Lizenz oder nutzt nicht dieselbe Lizenz"
|
5198 |
|
5199 |
+
#: views/b2s/network.php:538
|
5200 |
msgid "This user has reached the maximum number of connections."
|
5201 |
msgstr "Der Nutzer hat die maximale Anzahl von Verbindungen erreicht."
|
5202 |
|
5203 |
+
#: includes/Loader.php:907
|
5204 |
msgid ""
|
5205 |
"This XING API is no longer supported by XING. Please connect your XING "
|
5206 |
"accounts with the new XING interface to reschedule your posts."
|
5209 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
5210 |
"zu planen."
|
5211 |
|
5212 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1320
|
5213 |
msgid "Thu"
|
5214 |
msgstr "Do"
|
5215 |
|
5217 |
msgid "Thursday"
|
5218 |
msgstr "Donnerstag"
|
5219 |
|
5220 |
+
#: includes/B2S/Ship/Item.php:1312 views/b2s/partials/post-edit-modal.php:68
|
5221 |
#: views/b2s/partials/post-edit-modal.php:71
|
5222 |
msgid "Time"
|
5223 |
msgstr "Mal"
|
5224 |
|
5225 |
+
#: includes/B2S/Ship/Item.php:1258
|
5226 |
msgid "Time to publish"
|
5227 |
msgstr "Veröffentlichungszeitpunkt"
|
5228 |
|
5229 |
+
#: views/b2s/ship.php:247
|
5230 |
msgid "Time zone"
|
5231 |
msgstr "Zeitzone"
|
5232 |
|
5234 |
msgid "times"
|
5235 |
msgstr "Mal"
|
5236 |
|
5237 |
+
#: includes/B2S/Ship/Item.php:1309
|
5238 |
msgid "Timespan"
|
5239 |
msgstr "Zeitspanne"
|
5240 |
|
5241 |
+
#: includes/B2S/Settings/Item.php:63
|
5242 |
msgid "Timezone for Scheduling"
|
5243 |
msgstr "Zeitzone für die Planung"
|
5244 |
|
5245 |
+
#: views/b2s/ship.php:57 views/prg/ship.php:43 views/prg/ship.php:45
|
5246 |
+
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
|
5247 |
+
#: includes/B2S/Settings/Item.php:203 views/prg/html/form.php:26
|
5248 |
#: views/prg/html/form.php:28
|
5249 |
msgid "Title"
|
5250 |
msgstr "Titel"
|
5253 |
msgid "title"
|
5254 |
msgstr "Titel"
|
5255 |
|
5256 |
+
#: views/b2s/settings.php:114
|
5257 |
msgid "Title: The title of your post."
|
5258 |
msgstr "Titel: Der Titel Deines Beitrags."
|
5259 |
|
5260 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:184
|
5261 |
msgid ""
|
5262 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
5263 |
"be sent to your primary Twitter profile."
|
5265 |
"Um den Geschäftsbedingungen von Twitter zu entsprechen und doppelte Postings "
|
5266 |
"zu vermeiden, werden Autoposts an Dein primäres Twitter-Profil gesendet."
|
5267 |
|
5268 |
+
#: views/b2s/ship.php:349
|
5269 |
#, php-format
|
5270 |
msgid ""
|
5271 |
"To define and save more network selections for your posting purposes, you "
|
5312 |
msgid "To select an individual image from your media library,"
|
5313 |
msgstr "Um ein individuelles Bild aus Deiner Mediathek auszuwählen,"
|
5314 |
|
5315 |
+
#: includes/Loader.php:909
|
5316 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
5317 |
msgstr ""
|
5318 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
5327 |
"oder höher erforderlich. Unser Support unterstützt Dich ab PHP Version 5.5.3."
|
5328 |
" Siehe auch:"
|
5329 |
|
5330 |
+
#: includes/B2S/AutoPost/Item.php:109
|
5331 |
msgid "Transfer Auto-Poster settings to other users"
|
5332 |
msgstr "Auto-Poster-Einstellungen an andere Benutzer zuweisen"
|
5333 |
|
5336 |
msgstr ""
|
5337 |
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
5338 |
|
5339 |
+
#: includes/Tools.php:428
|
5340 |
msgid "Travel & Places"
|
5341 |
msgstr "Reisen & Orte"
|
5342 |
|
5348 |
msgid "Troubleshooting-Tool"
|
5349 |
msgstr "Problemanalyse-Tool"
|
5350 |
|
5351 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1318
|
5352 |
msgid "Tue"
|
5353 |
msgstr "Di"
|
5354 |
|
5356 |
msgid "Tuesday"
|
5357 |
msgstr "Dienstag"
|
5358 |
|
5359 |
+
#: includes/Tools.php:391
|
5360 |
msgid "Turkey"
|
5361 |
msgstr "Türkei"
|
5362 |
|
5399 |
"Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
|
5400 |
"Erstelle eine Netzwerkgruppierung</a>"
|
5401 |
|
5402 |
+
#: views/b2s/repost.php:217
|
5403 |
#, php-format
|
5404 |
msgid ""
|
5405 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
5409 |
"Netzwerkauswahl genutzt wird. <a href=\"%s\" target=\"_blank\">So erstellen "
|
5410 |
"Sie eine Netzwerk-Gruppierung</a>"
|
5411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5412 |
#: views/prg/html/header.php:28
|
5413 |
msgid ""
|
5414 |
"Unfortunately, your request cannot be processed by Blog2Social. Please try "
|
5417 |
"Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
|
5418 |
"versuche es erneut!"
|
5419 |
|
5420 |
+
#: includes/Tools.php:378
|
5421 |
msgid "United States of America"
|
5422 |
msgstr "Vereinigte Staaten von Amerika"
|
5423 |
|
5429 |
msgid "Unknown error has occurred. Please try again."
|
5430 |
msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es erneut."
|
5431 |
|
5432 |
+
#: includes/Ajax/Post.php:1955 views/b2s/network.php:13
|
5433 |
#: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:325
|
5434 |
#: includes/B2S/Network/Item.php:396 includes/B2S/Network/Item.php:526
|
5435 |
msgid "Unknown username"
|
5443 |
"Schalte Blog2Social Premium Pro frei, um Bild-Beiträge, Video-Links und Text-"
|
5444 |
"Beiträge aus beliebigen Quellen zu erstellen und zu teilen."
|
5445 |
|
5446 |
+
#: includes/B2S/AutoPost/Item.php:70 includes/B2S/AutoPost/Item.php:82
|
5447 |
msgid "Unselect all"
|
5448 |
msgstr "Alle abwählen"
|
5449 |
|
5455 |
msgid "Update..."
|
5456 |
msgstr "Aktualisierung..."
|
5457 |
|
5458 |
+
#: includes/B2S/AutoPost/Item.php:81
|
5459 |
msgid "updated posts"
|
5460 |
msgstr "Aktualisierte Beiträge"
|
5461 |
|
5462 |
+
#: views/b2s/premium.php:31 includes/B2S/AutoPost/Item.php:145
|
5463 |
+
#: includes/B2S/AutoPost/Item.php:148 includes/B2S/RePost/Item.php:33
|
5464 |
msgid "Upgrade"
|
5465 |
msgstr "Upgrade"
|
5466 |
|
5468 |
msgid "Upgrade License"
|
5469 |
msgstr "Lizenz upgraden"
|
5470 |
|
5471 |
+
#: views/b2s/network.php:562
|
5472 |
msgid "Upgrade to Blog2Social Business"
|
5473 |
msgstr "Upgrade auf Blog2Social Business"
|
5474 |
|
5475 |
+
#: views/b2s/network.php:561
|
5476 |
msgid ""
|
5477 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
5478 |
"network collection and assign your social media connections to other blog "
|
5533 |
msgid "Upgrade to PREMIUM"
|
5534 |
msgstr "Jetzt auf Premium upgraden"
|
5535 |
|
5536 |
+
#: includes/Loader.php:836 views/b2s/html/sidebar.php:45
|
5537 |
#: views/b2s/html/sidebar.ship.php:44
|
5538 |
msgid "Upgrade to Premium"
|
5539 |
msgstr "Premium freischalten"
|
5540 |
|
5541 |
+
#: includes/B2S/Settings/Item.php:229
|
5542 |
msgid "Upgrade to Premium Pro now."
|
5543 |
msgstr "Upgrade auf Premium PRO"
|
5544 |
|
5548 |
msgstr "Upgrade auf PRO und höher"
|
5549 |
|
5550 |
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:204
|
5551 |
+
#: views/b2s/post.calendar.php:301 views/b2s/ship.php:327
|
5552 |
+
#: views/b2s/ship.php:393 views/b2s/ship.php:439 views/b2s/html/footer.php:42
|
5553 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
5554 |
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
|
5555 |
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
5557 |
msgid "Upgrade to SMART and above"
|
5558 |
msgstr "Upgrade auf SMART und höher"
|
5559 |
|
5560 |
+
#: views/b2s/network.php:465 views/b2s/network.php:565
|
5561 |
msgid "URL Parameters"
|
5562 |
msgstr "URL-Parameter"
|
5563 |
|
5564 |
+
#: includes/B2S/Settings/Item.php:78
|
5565 |
msgid "Url Shortener"
|
5566 |
msgstr "Url Shortener"
|
5567 |
|
5585 |
msgstr ""
|
5586 |
"Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
|
5587 |
|
5588 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:145
|
5589 |
#: includes/B2S/Ship/Image.php:101
|
5590 |
msgid "Use image"
|
5591 |
msgstr "Bild verwenden"
|
5598 |
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
5599 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
5600 |
|
5601 |
+
#: views/b2s/settings.php:102
|
5602 |
msgid ""
|
5603 |
"Use the pre-defined best time settings or define your own best time settings "
|
5604 |
"for sharing your posts . Posting at the right time can be essential to make "
|
5609 |
"geteilt werden sollen. Das Posten zur richtigen Zeit ist essentiell, um mehr "
|
5610 |
"Aufmerksamkeit und Engagement mit Deinen Social Media Beiträgen zu erzielen."
|
5611 |
|
5612 |
+
#: includes/B2S/Settings/Item.php:63
|
5613 |
msgid "User"
|
5614 |
msgstr "Benutzer"
|
5615 |
|
5645 |
msgid "Video Post"
|
5646 |
msgstr "Video-Beitrag"
|
5647 |
|
5648 |
+
#: views/b2s/network.php:180
|
5649 |
msgid "View schedule posts"
|
5650 |
msgstr "Geplante Beiträge anzeigen"
|
5651 |
|
5652 |
+
#: includes/B2S/Ship/Save.php:443
|
5653 |
msgid "view social media post"
|
5654 |
msgstr "Zeige Social Media Beitrag an"
|
5655 |
|
5663 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
5664 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
5665 |
|
5666 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:787
|
5667 |
+
#: includes/B2S/Ship/Item.php:1212
|
5668 |
msgid ""
|
5669 |
"Violating these rules can result in Twitter suspending your account. Always "
|
5670 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
5674 |
"sperrt. Variieren Sie Ihre Tweets mit unterschiedlichen Kommentaren, "
|
5675 |
"Hashtags und Handles um doppelte Beiträge zu vermeiden."
|
5676 |
|
5677 |
+
#: includes/Loader.php:895
|
5678 |
msgid ""
|
5679 |
"We don't have the permission to publish your post. Please check your "
|
5680 |
"authorization."
|
5703 |
msgid "Website & Blog Content"
|
5704 |
msgstr "Webseiten & Blog Content"
|
5705 |
|
5706 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1319
|
5707 |
msgid "Wed"
|
5708 |
msgstr "Mi"
|
5709 |
|
5711 |
msgid "Wednesday"
|
5712 |
msgstr "Mittwoch"
|
5713 |
|
5714 |
+
#: includes/B2S/Ship/Item.php:1275
|
5715 |
msgid "Week"
|
5716 |
msgstr "Woche"
|
5717 |
|
5718 |
+
#: includes/B2S/Ship/Item.php:1267
|
5719 |
msgid "weekly"
|
5720 |
msgstr "wöchentlich"
|
5721 |
|
5722 |
+
#: includes/B2S/Ship/Item.php:1275
|
5723 |
msgid "Weeks"
|
5724 |
msgstr "Wochen"
|
5725 |
|
5726 |
+
#: views/b2s/post.calendar.php:179
|
5727 |
msgid "What would you like to share?"
|
5728 |
msgstr "Was möchtest Du teilen?"
|
5729 |
|
5735 |
msgid "When should your content be shared?"
|
5736 |
msgstr "Wann soll Dein Content geteilt werden?"
|
5737 |
|
5738 |
+
#: views/b2s/network.php:656 views/b2s/ship.php:687
|
5739 |
#, php-format
|
5740 |
msgid ""
|
5741 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
5757 |
"um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
|
5758 |
"Informationen: So verbindest Du Deine Website mit Instagram.</a>"
|
5759 |
|
5760 |
+
#: views/b2s/curation.php:186 views/b2s/post.calendar.php:283
|
5761 |
+
#: views/b2s/ship.php:421
|
5762 |
msgid ""
|
5763 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
5764 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
5808 |
msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
|
5809 |
|
5810 |
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:190
|
5811 |
+
#: views/b2s/post.calendar.php:287 views/b2s/ship.php:313
|
5812 |
+
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:28
|
5813 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
5814 |
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
|
5815 |
#: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
|
5817 |
msgid "With Blog2Social Premium you can:"
|
5818 |
msgstr "Mit Blog2Social kannst Du:"
|
5819 |
|
5820 |
+
#: views/b2s/network.php:694
|
5821 |
msgid ""
|
5822 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
5823 |
"your posts on your favourite social media accounts automatically."
|
5887 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
5888 |
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
5889 |
|
5890 |
+
#: views/b2s/curation.php:356
|
5891 |
+
msgid ""
|
5892 |
+
"With Blog2Social you can share social media posts consisting of text, links, "
|
5893 |
+
"images, and videos automatically with your followers and readers and "
|
5894 |
+
"customize your posts with individual hashtags, @mentions, or emojis."
|
5895 |
+
msgstr ""
|
5896 |
+
"Mit Blog2Social kannst Du Social-Media-Beiträge bestehend aus Links, Video-"
|
5897 |
+
"Links, Bildern und Texten automatisch mit Deinen Followern und Lesern teilen "
|
5898 |
+
"und Deine Beiträge mit individuellen Hashtags, @Mentions oder Emojis "
|
5899 |
+
"anpassen."
|
5900 |
+
|
5901 |
#: views/b2s/curation.php:226
|
5902 |
msgid ""
|
5903 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
5942 |
"Media-Netzwerke verbunden, auf denen Inhalte automatisch geteilt werden "
|
5943 |
"sollen, die der Administrator ausgewählt hat."
|
5944 |
|
5945 |
+
#: includes/B2S/Settings/Item.php:229
|
5946 |
msgid ""
|
5947 |
"With Premium Pro, you can change the custom post format photo post or link "
|
5948 |
"post for each individual social media post and channel (profile, page, group)"
|
5953 |
"Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
|
5954 |
|
5955 |
#: views/b2s/html/header.php:65
|
5956 |
+
#| msgid ""
|
5957 |
+
#| "WordPress session timeout: For security reasons, WordPress will let your "
|
5958 |
+
#| "session expire automatically if your site has been inactive for a while. "
|
5959 |
+
#| "Please reload this page to go on with your current action."
|
5960 |
msgid ""
|
5961 |
"WordPress session timeout: For security reasons, WordPress will let your "
|
5962 |
+
"session expire automatically if your site has been inactive for a while. <a "
|
5963 |
+
"href=\"\">Please reload this page to go on with your current action.</a>"
|
5964 |
msgstr ""
|
5965 |
"WordPress Session Timeout: Wordpress beendet aus Sicherheitsgründen "
|
5966 |
"automatisch Deine aktuelle Session, wenn Deine Website eine Zeitlang inaktiv "
|
5967 |
+
"war. <a href=\"\">Bitte lade diese Seite neu, um mit Deiner aktuellen Arbeit "
|
5968 |
+
"fortzufahren.</a>"
|
5969 |
|
5970 |
#: includes/B2S/PostBox.php:144
|
5971 |
msgid ""
|
5990 |
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:510
|
5991 |
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:599
|
5992 |
#: includes/B2S/Ship/Item.php:628 includes/B2S/Ship/Item.php:656
|
5993 |
+
#: includes/B2S/Ship/Item.php:684 includes/B2S/Ship/Item.php:712
|
5994 |
+
#: includes/B2S/Ship/Item.php:743 includes/B2S/Ship/Item.php:798
|
5995 |
+
#: includes/B2S/Ship/Item.php:849 includes/B2S/Ship/Item.php:870
|
5996 |
+
#: includes/B2S/Ship/Item.php:891 includes/B2S/Ship/Item.php:912
|
5997 |
+
#: includes/B2S/Ship/Item.php:932 includes/B2S/Ship/Item.php:953
|
5998 |
+
#: includes/B2S/Ship/Item.php:963
|
5999 |
msgid "Write something about your post..."
|
6000 |
msgstr "Schreibe etwas..."
|
6001 |
|
6010 |
"Hurra :) Deine Registrierung für die Blog2Social Community war erfolgreich!"
|
6011 |
|
6012 |
#: views/b2s/curation.php:159 views/b2s/post.approve.php:114
|
6013 |
+
#: views/b2s/ship.php:483 views/b2s/ship.php:564
|
6014 |
msgid "YES"
|
6015 |
msgstr "JA"
|
6016 |
|
6017 |
+
#: views/b2s/curation.draft.php:91 views/b2s/network.php:116
|
6018 |
+
#: views/b2s/network.php:179 views/b2s/post.approve.php:99
|
6019 |
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:89
|
6020 |
+
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:104
|
6021 |
+
#: views/b2s/repost.php:106 views/b2s/repost.php:107
|
6022 |
#: views/b2s/widgets/posts.php:68
|
6023 |
msgid "YES, delete"
|
6024 |
msgstr "Ja, löschen"
|
6057 |
msgid "You are sure, you want to delete entries from the reporting?"
|
6058 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
6059 |
|
6060 |
+
#: views/b2s/post.sched.php:97 views/b2s/repost.php:99
|
6061 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
6062 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
6063 |
|
6076 |
"einen effektiven Social Media-Posting-Plan einrichten, um so viele Follower "
|
6077 |
"wie möglich zu erreichen."
|
6078 |
|
6079 |
+
#: views/b2s/network.php:710
|
6080 |
msgid ""
|
6081 |
"You can also purchase additional groups and sites as add-on to your active "
|
6082 |
"Blog2Social Premium Pro or Premium Business license:"
|
6111 |
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
6112 |
"bearbeitest"
|
6113 |
|
6114 |
+
#: views/b2s/network.php:541
|
6115 |
msgid ""
|
6116 |
"You can only share the connection with blog users who use the same license "
|
6117 |
"as you."
|
6119 |
"Du kannst Deine Verbindung nur mit Blog-Benutzern teilen, die dieselbe "
|
6120 |
"Lizenz verwenden wie Du."
|
6121 |
|
6122 |
+
#: views/b2s/ship.php:309
|
6123 |
msgid ""
|
6124 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
6125 |
"different choice of networks, profiles, pages or groups, or with different "
|
6145 |
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
6146 |
"kannst. "
|
6147 |
|
6148 |
+
#: views/b2s/ship.php:343
|
6149 |
msgid ""
|
6150 |
"You can save your current network selection. This network selection will be "
|
6151 |
"loaded automatically next time you open the social media post editor via "
|
6165 |
"Du kannst verschiedene Netzwerk-Gruppierungen auswählen und für verschiedene "
|
6166 |
"Zwecke speichern."
|
6167 |
|
6168 |
+
#: views/b2s/curation.php:357
|
6169 |
+
#| msgid ""
|
6170 |
+
#| "You can select to share your post as link post, video link post, or "
|
6171 |
+
#| "image post on the following social networks:"
|
6172 |
msgid ""
|
6173 |
+
"You can select to share your post as a link post, video link post, or an "
|
6174 |
+
"image post on the following social networks:"
|
6175 |
msgstr ""
|
6176 |
"Du kannst einen Link-Beitrag, einen Video-Link-Beitrag oder einen Bild-"
|
6177 |
"Beitrag auf den folgenden Social-Media-Netzwerken teilen:"
|
6178 |
|
6179 |
+
#: views/b2s/curation.php:282
|
6180 |
msgid "You can share a text post on the following networks:"
|
6181 |
msgstr "Du kannst einen Textbeitrag in den folgenden Netzwerken teilen:"
|
6182 |
|
6183 |
+
#: includes/B2S/Settings/Item.php:79
|
6184 |
#, php-format
|
6185 |
msgid ""
|
6186 |
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
6217 |
"sind, deaktiviere bitte die Social Meta Tags in All in One SEO. Wenn sie "
|
6218 |
"bereits deaktiviert sind, kannst Du diese Meldung ignorieren."
|
6219 |
|
6220 |
+
#: views/b2s/network.php:523
|
6221 |
msgid "You don't have a Business License"
|
6222 |
msgstr "Du hast keine Business-Lizenz"
|
6223 |
|
6224 |
+
#: includes/Loader.php:906
|
6225 |
msgid "You have already retweeted this post."
|
6226 |
msgstr "Du hast diesen Post bereits retweetet."
|
6227 |
|
6240 |
msgid "You have deleted all meta data for posts and pages successfully."
|
6241 |
msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
|
6242 |
|
6243 |
+
#: views/b2s/curation.php:183 views/b2s/post.calendar.php:280
|
6244 |
+
#: views/b2s/ship.php:418
|
6245 |
msgid ""
|
6246 |
"You have evergreen content you want to re-share from time to time in your "
|
6247 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
6271 |
msgid "You have not saved any favorites."
|
6272 |
msgstr "Du hast keine Favoriten gespeichert."
|
6273 |
|
6274 |
+
#: views/b2s/network.php:388 views/b2s/ship.php:617
|
6275 |
msgid ""
|
6276 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
6277 |
"up at least one pinboard to pin on your Pinterest account!"
|
6279 |
"Du hast noch keine Pinnwände in Deinem Pinterest Konto angelegt. Bitte "
|
6280 |
"richte mindestens eine Pinnwand auf Deinem Pinterest Konto ein!"
|
6281 |
|
6282 |
+
#: views/b2s/network.php:161
|
6283 |
msgid "You have still set up scheduled posts for this network:"
|
6284 |
msgstr ""
|
6285 |
"Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
6286 |
|
6287 |
+
#: views/b2s/autopost.php:18 views/b2s/settings.php:23
|
6288 |
#: includes/B2S/Ship/Image.php:29
|
6289 |
msgid ""
|
6290 |
"You need a higher user role to upload an image on this blog. Please contact "
|
6301 |
"Für die Nutzung des Problemanalyse-Tools werden Adminrechte benötigt. Bitte "
|
6302 |
"wende Dich an Deinen Administrator."
|
6303 |
|
6304 |
+
#: views/b2s/network.php:497
|
6305 |
msgid "You need at least one network collection"
|
6306 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
6307 |
|
6308 |
+
#: views/b2s/ship.php:312
|
6309 |
msgid "You want re-share your blog post?"
|
6310 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
6311 |
|
6322 |
#: includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:529
|
6323 |
#: includes/B2S/Ship/Item.php:588 includes/B2S/Ship/Item.php:618
|
6324 |
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:674
|
6325 |
+
#: includes/B2S/Ship/Item.php:702
|
6326 |
msgid ""
|
6327 |
"You want to change your link image, link title and link description for this "
|
6328 |
"network? Click here."
|
6344 |
msgid "You want to connect a social media group?"
|
6345 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
6346 |
|
6347 |
+
#: views/b2s/network.php:385 views/b2s/network.php:386 views/b2s/ship.php:614
|
6348 |
+
#: views/b2s/ship.php:615
|
6349 |
#, php-format
|
6350 |
msgid ""
|
6351 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
6364 |
msgid "You want to create text posts?"
|
6365 |
msgstr "Möchtest Du Text-Posts erstellen?"
|
6366 |
|
6367 |
+
#: views/b2s/network.php:40
|
6368 |
msgid "You want to define a new combination of networks?"
|
6369 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
6370 |
|
6371 |
+
#: includes/B2S/Post/Item.php:794 includes/B2S/Post/Item.php:807
|
6372 |
msgid "You want to delete a publish post entry?"
|
6373 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
6374 |
|
6375 |
+
#: includes/B2S/Post/Item.php:868
|
6376 |
msgid "You want to delete your Social Media post?"
|
6377 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
6378 |
|
6379 |
+
#: includes/B2S/Post/Item.php:923
|
6380 |
msgid "You want to edit your scheduled post?"
|
6381 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
6382 |
|
6383 |
+
#: views/b2s/ship.php:72
|
6384 |
msgid "You want to load your time settings?"
|
6385 |
msgstr "Du möchtest Deine Zeiten laden?"
|
6386 |
|
6387 |
+
#: views/b2s/curation.php:180 views/b2s/post.calendar.php:277
|
6388 |
+
#: views/b2s/ship.php:415
|
6389 |
msgid ""
|
6390 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
6391 |
"desired date and you are ready to go!"
|
6393 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
6394 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
6395 |
|
6396 |
+
#: views/b2s/network.php:54 views/b2s/ship.php:78 views/b2s/ship.php:378
|
6397 |
#: views/b2s/html/footer.php:256
|
6398 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
6399 |
msgstr ""
|
6400 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
6401 |
"Manager benutzen?"
|
6402 |
|
6403 |
+
#: views/b2s/settings.php:104
|
6404 |
#, php-format
|
6405 |
msgid ""
|
6406 |
"You will find more information about the pre-defined best time settings by "
|
6410 |
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
6411 |
"Zeiten\"-Guide</a>."
|
6412 |
|
6413 |
+
#: views/b2s/settings.php:97
|
6414 |
#, php-format
|
6415 |
msgid ""
|
6416 |
"You will find more information on how to connect your social media networks "
|
6421 |
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
6422 |
"Social-Media-Netzwerke verbinden kannst."
|
6423 |
|
6424 |
+
#: views/b2s/settings.php:121
|
6425 |
#, php-format
|
6426 |
msgid ""
|
6427 |
"You will find more information on how to use post templates for your social "
|
6452 |
msgid "Your authorization has been removed successfully."
|
6453 |
msgstr "Deine Autorisierung wurde erfolgreich entfernt."
|
6454 |
|
6455 |
+
#: includes/Loader.php:893
|
6456 |
msgid ""
|
6457 |
"Your authorization has expired. Please reconnect your account in the "
|
6458 |
"Blog2Social network settings."
|
6464 |
msgid "Your authorization was successful."
|
6465 |
msgstr "Deine Autorisierung war erfolgreich."
|
6466 |
|
6467 |
+
#: views/b2s/ship.php:361
|
6468 |
msgid "Your blog post is not yet published on your Wordpress!"
|
6469 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
6470 |
|
6471 |
+
#: includes/Loader.php:905
|
6472 |
msgid ""
|
6473 |
"Your blog post was not available for the network at the time of publishing."
|
6474 |
msgstr ""
|
6504 |
"auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
|
6505 |
"<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
6506 |
|
6507 |
+
#: views/b2s/premium.php:14 includes/B2S/AutoPost/Item.php:142
|
6508 |
msgid "Your current license:"
|
6509 |
msgstr "Deine aktuelle Lizenz:"
|
6510 |
|
6512 |
msgid "Your daily limit for posting automatically has been reached."
|
6513 |
msgstr "Dein tägliches Limit für Autoposter-Beiträge ist erreicht."
|
6514 |
|
6515 |
+
#: includes/Loader.php:901
|
6516 |
msgid ""
|
6517 |
"Your daily limit for this network has been reached. Please try again later."
|
6518 |
msgstr ""
|
6519 |
"Dein tägliches Beitragslimit für dieses Netzwerk wurde erreicht. Bitte "
|
6520 |
"versuche es später noch einmal."
|
6521 |
|
6522 |
+
#: includes/Loader.php:897
|
6523 |
msgid "Your daily limit has been reached."
|
6524 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
6525 |
|
6541 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
6542 |
msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
|
6543 |
|
6544 |
+
#: includes/Loader.php:912
|
6545 |
msgid "Your group can not be found by the network."
|
6546 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
6547 |
|
6572 |
msgstr ""
|
6573 |
"Deine Mitteilung wird nun über PR-Gateway an die Presseportale gesendet!"
|
6574 |
|
6575 |
+
#: includes/Loader.php:910
|
6576 |
msgid ""
|
6577 |
"Your post could not be posted, because your image can not be processed by "
|
6578 |
"the network."
|
6580 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht vom "
|
6581 |
"Netzwerk verarbeitet werden kann"
|
6582 |
|
6583 |
+
#: includes/Loader.php:898
|
6584 |
msgid ""
|
6585 |
"Your post could not be posted, because your image is not available or the "
|
6586 |
"image source does not allow to publish"
|
6588 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
6589 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
6590 |
|
6591 |
+
#: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:752
|
6592 |
+
#: includes/B2S/Ship/Save.php:467
|
6593 |
+
#, php-format
|
6594 |
+
msgid ""
|
6595 |
+
"Your post could not be posted. More information in this <a href=\"%s\" "
|
6596 |
+
"target=\"_blank\">Instagram troubleshoot checklist</a>."
|
6597 |
+
msgstr ""
|
6598 |
+
"Dein Beitrag konnte nicht geteilt werden. Mehr Informationen in der <a "
|
6599 |
+
"href=\"%s\" target=\"_blank\">Instagram-Checkliste für Problemlösungen."
|
6600 |
+
|
6601 |
+
#: includes/Loader.php:903
|
6602 |
msgid "Your post is a duplicate."
|
6603 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
6604 |
|
6624 |
msgid "Your profiles:"
|
6625 |
msgstr "weitere Profile:"
|
6626 |
|
6627 |
+
#: views/b2s/ship.php:345
|
6628 |
msgid ""
|
6629 |
"Your saved networks will be activated for your schedule (green checkmark) in "
|
6630 |
"the right side navigation. You can select or deselect social network "
|
languages/blog2social.pot
CHANGED
@@ -3,7 +3,7 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2021-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -27,7 +27,7 @@ msgstr ""
|
|
27 |
msgid " today"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: views/b2s/network.php:
|
31 |
msgid ""
|
32 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
33 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
@@ -36,7 +36,7 @@ msgid ""
|
|
36 |
"network."
|
37 |
msgstr ""
|
38 |
|
39 |
-
#: includes/B2S/Settings/Item.php:
|
40 |
msgid "(SMART)"
|
41 |
msgstr ""
|
42 |
|
@@ -44,7 +44,7 @@ msgstr ""
|
|
44 |
msgid "+ add Parameter"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/B2S/Ship/Save.php:
|
48 |
msgid ""
|
49 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
50 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
@@ -52,7 +52,7 @@ msgid ""
|
|
52 |
"and you can click on \"Share\" to post it to your Facebook Profile instantly."
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: includes/B2S/Ship/Save.php:
|
56 |
msgid ""
|
57 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
58 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
@@ -60,13 +60,13 @@ msgid ""
|
|
60 |
"tab and you can click on \"Share\" to post it to your account instantly."
|
61 |
msgstr ""
|
62 |
|
63 |
-
#: includes/B2S/Ship/Save.php:
|
64 |
msgid ""
|
65 |
"-To share your post immediately, click the \"Share\" button next to your "
|
66 |
"selected Facebook profile below."
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/B2S/Ship/Save.php:
|
70 |
msgid ""
|
71 |
"-To share your post immediately, click the \"Share\" button next to your "
|
72 |
"selected Google+ account below."
|
@@ -84,14 +84,14 @@ msgstr ""
|
|
84 |
msgid "1x publish report"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: views/b2s/network.php:
|
88 |
#, php-format
|
89 |
msgid ""
|
90 |
"<a href=\"%s\" target=\"_blank\">Get more information on how to add more "
|
91 |
"sites or groups.</a>"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: includes/Loader.php:
|
95 |
#, php-format
|
96 |
msgid ""
|
97 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
@@ -130,7 +130,7 @@ msgid ""
|
|
130 |
"support account</a> to ask questions or join the discussion."
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: includes/B2S/Settings/Item.php:
|
134 |
msgid ""
|
135 |
"A photo or image post displays the selected image in the one-page preview of "
|
136 |
"Blog2Social and your comment above the image. The image links to the image "
|
@@ -147,14 +147,14 @@ msgid ""
|
|
147 |
"any time."
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: views/b2s/network.php:
|
151 |
msgid ""
|
152 |
"Access to this resource on your server is denied! Please check your "
|
153 |
"webserver configuration for caching."
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/B2S/Settings/Item.php:
|
157 |
-
#: includes/B2S/Ship/Item.php:
|
158 |
msgid "Account"
|
159 |
msgstr ""
|
160 |
|
@@ -170,11 +170,11 @@ msgstr ""
|
|
170 |
msgid "Activate Instant Caching"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: includes/B2S/Settings/Item.php:
|
174 |
msgid "activate Legacy mode"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: views/b2s/settings.php:
|
178 |
msgid "Activate Legacy mode "
|
179 |
msgstr ""
|
180 |
|
@@ -186,21 +186,21 @@ msgstr ""
|
|
186 |
msgid "activated"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: includes/Tools.php:
|
190 |
msgid "Activities"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/B2S/Network/Item.php:
|
194 |
msgid "Add a link-URL to the end of my image post."
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/B2S/Network/Item.php:
|
198 |
msgid ""
|
199 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
200 |
"Instagram does not turn link-URLs into clickable links)"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/B2S/Network/Item.php:
|
204 |
msgid "Add a link-URL to the end of my post."
|
205 |
msgstr ""
|
206 |
|
@@ -210,15 +210,15 @@ msgid ""
|
|
210 |
"Twitter Cards to define the look of your link posts."
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: includes/B2S/Ship/Item.php:
|
214 |
msgid "add another post"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: views/b2s/network.php:
|
218 |
msgid "Add Group"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: views/b2s/ship.php:
|
222 |
msgid "Add more..."
|
223 |
msgstr ""
|
224 |
|
@@ -228,46 +228,46 @@ msgid ""
|
|
228 |
"selected network bundles."
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/B2S/Settings/Item.php:
|
232 |
msgid "Add oEmbed tags"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: includes/B2S/Settings/Item.php:
|
236 |
msgid ""
|
237 |
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
238 |
"and other social networks to display your post or page image, title and "
|
239 |
"description correctly."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: views/b2s/network.php:
|
243 |
msgid "Add Page"
|
244 |
msgstr ""
|
245 |
|
246 |
-
#: views/b2s/post.calendar.php:
|
247 |
-
#: views/b2s/repost.php:
|
248 |
msgid "add post"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: views/b2s/network.php:
|
252 |
msgid "Add Profile"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/B2S/Ship/Item.php:
|
256 |
msgid "Add Retweet"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: views/b2s/ship.php:
|
260 |
msgid "add Schedule"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/B2S/Settings/Item.php:
|
264 |
msgid ""
|
265 |
"Add the default Open Graph parameters for title, description and image you "
|
266 |
"want Facebook to display, if you share the frontpage of your blog as link "
|
267 |
"post (http://www.yourblog.com)"
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/B2S/Settings/Item.php:
|
271 |
msgid ""
|
272 |
"Add the default Twitter Card parameters for title, description and image you "
|
273 |
"want Twitter to display, if you share the frontpage of your blog as link "
|
@@ -278,13 +278,13 @@ msgstr ""
|
|
278 |
msgid "Add to queue"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/B2S/Settings/Item.php:
|
282 |
msgid ""
|
283 |
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
284 |
"Twitter to display your post or page image, title and description correctly."
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/B2S/AutoPost/Item.php:
|
288 |
msgid "add/change connection"
|
289 |
msgstr ""
|
290 |
|
@@ -300,7 +300,7 @@ msgstr ""
|
|
300 |
msgid "additional profiles"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: views/b2s/network.php:
|
304 |
msgid "Advanced Network Settings"
|
305 |
msgstr ""
|
306 |
|
@@ -344,11 +344,11 @@ msgstr ""
|
|
344 |
msgid "All Types"
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: includes/B2S/Settings/Item.php:
|
348 |
msgid "allow shortcodes in my post"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: views/b2s/settings.php:
|
352 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
353 |
msgstr ""
|
354 |
|
@@ -361,29 +361,29 @@ msgstr ""
|
|
361 |
msgid "Also included:"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: views/b2s/network.php:
|
365 |
msgid ""
|
366 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
367 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
368 |
"(document settings) of your post."
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: views/b2s/network.php:
|
372 |
-
#: views/b2s/network.php:
|
373 |
-
#: views/b2s/network.php:
|
374 |
msgid "An error occured. Please contact our support."
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: views/b2s/network.php:
|
378 |
-
#: views/b2s/ship.php:
|
379 |
msgid "An error occurred! Please try again."
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: includes/Loader.php:
|
383 |
msgid "An image is required to post on this social network."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: views/b2s/settings.php:
|
387 |
#, php-format
|
388 |
msgid ""
|
389 |
"An instruction on how to define your own best times is explained in the "
|
@@ -400,15 +400,15 @@ msgstr ""
|
|
400 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/Tools.php:
|
404 |
msgid "Animals & Nature"
|
405 |
msgstr ""
|
406 |
|
407 |
-
#: views/b2s/network.php:
|
408 |
msgid "Apply best time settings"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: views/b2s/autopost.php:87 includes/B2S/AutoPost/Item.php:
|
412 |
msgid "Apply best times"
|
413 |
msgstr ""
|
414 |
|
@@ -438,15 +438,15 @@ msgstr ""
|
|
438 |
msgid "Apply image for this post"
|
439 |
msgstr ""
|
440 |
|
441 |
-
#: views/b2s/network.php:
|
442 |
msgid "Apply post template settings"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: includes/B2S/Ship/Item.php:
|
446 |
msgid "Apply Settings To All Networks"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: views/b2s/network.php:
|
450 |
msgid "Apply URL Parameters"
|
451 |
msgstr ""
|
452 |
|
@@ -470,15 +470,15 @@ msgstr ""
|
|
470 |
msgid "Are you sure you want to delete this Social Media draft?"
|
471 |
msgstr ""
|
472 |
|
473 |
-
#: includes/Tools.php:
|
474 |
msgid "Argentina"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: views/b2s/network.php:
|
478 |
msgid "assign"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: views/b2s/network.php:
|
482 |
msgid "Assign the connection to other blog users"
|
483 |
msgstr ""
|
484 |
|
@@ -495,7 +495,7 @@ msgstr ""
|
|
495 |
msgid "at best times"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#: views/b2s/ship.php:
|
499 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
500 |
msgstr ""
|
501 |
|
@@ -507,11 +507,11 @@ msgstr ""
|
|
507 |
msgid "at scheduled times"
|
508 |
msgstr ""
|
509 |
|
510 |
-
#: includes/Tools.php:
|
511 |
msgid "Australia"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: includes/Tools.php:
|
515 |
msgid "Austria"
|
516 |
msgstr ""
|
517 |
|
@@ -521,12 +521,12 @@ msgstr ""
|
|
521 |
msgid "Author"
|
522 |
msgstr ""
|
523 |
|
524 |
-
#: views/b2s/settings.php:
|
525 |
msgid "Author: The author of the post."
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: views/b2s/network.php:
|
529 |
-
#: includes/B2S/Settings/Item.php:
|
530 |
msgid "authorize"
|
531 |
msgstr ""
|
532 |
|
@@ -540,14 +540,14 @@ msgid ""
|
|
540 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: includes/Loader.php:
|
544 |
#: views/b2s/html/sidebar.php:75
|
545 |
msgid "Auto-Post"
|
546 |
msgstr ""
|
547 |
|
548 |
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:195
|
549 |
-
#: views/b2s/post.calendar.php:
|
550 |
-
#: views/b2s/ship.php:
|
551 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
552 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
553 |
#: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
|
@@ -556,7 +556,7 @@ msgid "Auto-post and auto-schedule new and updated blog posts"
|
|
556 |
msgstr ""
|
557 |
|
558 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:730
|
559 |
-
#: includes/B2S/Post/Item.php:
|
560 |
msgid "Auto-Posting"
|
561 |
msgstr ""
|
562 |
|
@@ -564,11 +564,11 @@ msgstr ""
|
|
564 |
msgid "autopost"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: includes/B2S/AutoPost/Item.php:
|
568 |
msgid "Autoposter"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: includes/B2S/AutoPost/Item.php:
|
572 |
msgid "Autoposter for Imported Posts"
|
573 |
msgstr ""
|
574 |
|
@@ -580,7 +580,7 @@ msgstr ""
|
|
580 |
msgid "Available accounts"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:
|
584 |
msgid "Available networks"
|
585 |
msgstr ""
|
586 |
|
@@ -588,11 +588,11 @@ msgstr ""
|
|
588 |
msgid "Available networks for autoposting"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: includes/B2S/AutoPost/Item.php:
|
592 |
msgid "Available networks to select your auto-post connecitons:"
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: includes/Loader.php:
|
596 |
msgid "back to install plugins"
|
597 |
msgstr ""
|
598 |
|
@@ -601,8 +601,8 @@ msgid "Best Time Manager"
|
|
601 |
msgstr ""
|
602 |
|
603 |
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:197
|
604 |
-
#: views/b2s/post.calendar.php:
|
605 |
-
#: views/b2s/ship.php:
|
606 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
607 |
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
|
608 |
#: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
|
@@ -612,8 +612,8 @@ msgid ""
|
|
612 |
"social media posts"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: views/b2s/curation.php:185 views/b2s/post.calendar.php:
|
616 |
-
#: views/b2s/ship.php:
|
617 |
msgid "Best Time Scheduler"
|
618 |
msgstr ""
|
619 |
|
@@ -644,12 +644,12 @@ msgstr ""
|
|
644 |
msgid "Blog"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: includes/Loader.php:
|
648 |
#: views/b2s/html/sidebar.ship.php:24
|
649 |
msgid "Blog2Social"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: views/b2s/autopost.php:62
|
653 |
msgid ""
|
654 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
655 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -658,6 +658,15 @@ msgid ""
|
|
658 |
"drop-down menu."
|
659 |
msgstr ""
|
660 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
661 |
#: views/b2s/html/sidebar.php:180
|
662 |
msgid "Blog2Social Blog News"
|
663 |
msgstr ""
|
@@ -682,7 +691,7 @@ msgstr ""
|
|
682 |
msgid "Blog2Social is a service of Adenion GmbH"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: includes/Loader.php:
|
686 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
687 |
msgstr ""
|
688 |
|
@@ -696,8 +705,8 @@ msgid ""
|
|
696 |
"58 per month to benefit from PREMIUM features."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: views/b2s/curation.php:176 views/b2s/post.calendar.php:
|
700 |
-
#: views/b2s/ship.php:
|
701 |
msgid "Blog2Social Premium covers everything you need."
|
702 |
msgstr ""
|
703 |
|
@@ -735,7 +744,7 @@ msgid ""
|
|
735 |
"your server. Install cURL and activate Blog2Social again."
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: views/b2s/network.php:
|
739 |
msgid ""
|
740 |
"Blog2Social uses the official Google My Business API to share your content "
|
741 |
"on your business listing. You can connect Google My Business listings with "
|
@@ -759,7 +768,7 @@ msgstr ""
|
|
759 |
msgid "Blog2Social, Adenion"
|
760 |
msgstr ""
|
761 |
|
762 |
-
#: includes/Loader.php:
|
763 |
msgid "Blog2Social: Autoposter"
|
764 |
msgstr ""
|
765 |
|
@@ -780,11 +789,11 @@ msgstr ""
|
|
780 |
msgid "Blog2Social: Social Media Auto-Posting"
|
781 |
msgstr ""
|
782 |
|
783 |
-
#: includes/Loader.php:
|
784 |
msgid "Blog2Social: Social Media Content Calendar"
|
785 |
msgstr ""
|
786 |
|
787 |
-
#: includes/B2S/Settings/Item.php:
|
788 |
msgid "Brand"
|
789 |
msgstr ""
|
790 |
|
@@ -796,7 +805,7 @@ msgstr ""
|
|
796 |
msgid "BUSINESS"
|
797 |
msgstr ""
|
798 |
|
799 |
-
#: includes/Loader.php:
|
800 |
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:327
|
801 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Item.php:331
|
802 |
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
|
@@ -804,7 +813,7 @@ msgstr ""
|
|
804 |
msgid "Business"
|
805 |
msgstr ""
|
806 |
|
807 |
-
#: views/b2s/network.php:
|
808 |
msgid "Business: 15 (per user)"
|
809 |
msgstr ""
|
810 |
|
@@ -822,24 +831,24 @@ msgid ""
|
|
822 |
"href=\"%s\">Conditions of Use</a>"
|
823 |
msgstr ""
|
824 |
|
825 |
-
#: includes/B2S/AutoPost/Item.php:
|
826 |
msgid ""
|
827 |
"By enabling this feature your previously published social media posts will "
|
828 |
"be sent again to your selected social media channels as soon as the post is "
|
829 |
"updated."
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: includes/Loader.php:
|
833 |
#: includes/B2S/RePost/Item.php:141 views/b2s/html/post.navbar.php:23
|
834 |
#: views/b2s/html/sidebar.php:128
|
835 |
msgid "Calendar"
|
836 |
msgstr ""
|
837 |
|
838 |
-
#: includes/B2S/Settings/Item.php:
|
839 |
msgid "Call-to-Action"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#: includes/Tools.php:
|
843 |
msgid "Canada"
|
844 |
msgstr ""
|
845 |
|
@@ -859,7 +868,7 @@ msgstr ""
|
|
859 |
msgid "Category"
|
860 |
msgstr ""
|
861 |
|
862 |
-
#: includes/B2S/Settings/Item.php:
|
863 |
msgid "change"
|
864 |
msgstr ""
|
865 |
|
@@ -873,14 +882,15 @@ msgstr ""
|
|
873 |
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
|
874 |
#: includes/B2S/Ship/Item.php:558 includes/B2S/Ship/Item.php:581
|
875 |
#: includes/B2S/Ship/Item.php:610 includes/B2S/Ship/Item.php:639
|
876 |
-
#: includes/B2S/Ship/Item.php:667 includes/B2S/Ship/Item.php:
|
877 |
-
#: includes/B2S/Ship/Item.php:
|
878 |
-
#: includes/B2S/Ship/Item.php:
|
879 |
-
#: includes/B2S/Ship/Item.php:
|
880 |
-
#: includes/B2S/Ship/Item.php:
|
881 |
-
#: includes/B2S/Ship/Item.php:
|
882 |
-
#: includes/B2S/Ship/Item.php:
|
883 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
884 |
msgid "Change image"
|
885 |
msgstr ""
|
886 |
|
@@ -888,11 +898,11 @@ msgstr ""
|
|
888 |
msgid "Change image, title and description for your post on this network"
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: views/b2s/network.php:
|
892 |
msgid "Change successful"
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: views/b2s/ship.php:
|
896 |
msgid "change website address"
|
897 |
msgstr ""
|
898 |
|
@@ -902,17 +912,17 @@ msgid ""
|
|
902 |
"with link-post settings for this post."
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: views/b2s/network.php:
|
906 |
msgid "Character limit"
|
907 |
msgstr ""
|
908 |
|
909 |
-
#: includes/B2S/Network/Item.php:
|
910 |
-
#: includes/B2S/Network/Item.php:
|
911 |
-
#: includes/B2S/Network/Item.php:
|
912 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
913 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
914 |
-
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:
|
915 |
-
#: includes/B2S/Ship/Item.php:
|
916 |
msgid "characters"
|
917 |
msgstr ""
|
918 |
|
@@ -928,24 +938,24 @@ msgid ""
|
|
928 |
"automatic subscription. Basic features of the Free Version are free forever."
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: includes/B2S/Settings/Item.php:
|
932 |
msgid "Check Settings with Sharing-Debugger"
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: views/b2s/settings.php:
|
936 |
msgid "Check, edit or define your social media time settings"
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: includes/Tools.php:
|
940 |
msgid "Chile"
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: views/b2s/post.calendar.php:
|
944 |
-
#: views/b2s/repost.php:
|
945 |
msgid "Choose your"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#: views/b2s/network.php:
|
949 |
msgid "Choose your Post Format"
|
950 |
msgstr ""
|
951 |
|
@@ -954,11 +964,11 @@ msgstr ""
|
|
954 |
msgid "City"
|
955 |
msgstr ""
|
956 |
|
957 |
-
#: includes/B2S/Ship/Item.php:
|
958 |
msgid "Classified Ads"
|
959 |
msgstr ""
|
960 |
|
961 |
-
#: includes/B2S/Network/Item.php:
|
962 |
msgid "clear"
|
963 |
msgstr ""
|
964 |
|
@@ -974,16 +984,19 @@ msgid ""
|
|
974 |
"automatically for your individually chosen best times."
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: views/b2s/network.php:
|
978 |
msgid "Click on \"continue\""
|
979 |
msgstr ""
|
980 |
|
981 |
-
#:
|
982 |
-
#: includes/B2S/Network/Item.php:158
|
983 |
msgid "Clock"
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: includes/
|
|
|
|
|
|
|
|
|
987 |
msgid "Colombia"
|
988 |
msgstr ""
|
989 |
|
@@ -995,39 +1008,39 @@ msgstr ""
|
|
995 |
msgid "Company Description"
|
996 |
msgstr ""
|
997 |
|
998 |
-
#: includes/Loader.php:
|
999 |
msgid "Company-Page (Employer Branding Profile)"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
-
#: views/b2s/network.php:
|
1003 |
-
#: views/b2s/ship.php:
|
1004 |
msgid "confirm"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
-
#: views/b2s/ship.php:
|
1008 |
msgid "connect"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: views/b2s/settings.php:
|
1012 |
msgid ""
|
1013 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1014 |
"share your WordPress blog posts and pages as well as imported posts and "
|
1015 |
"social media posts on. The following networks are available:"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
-
#: views/b2s/ship.php:
|
1019 |
msgid "Connect for"
|
1020 |
msgstr ""
|
1021 |
|
1022 |
-
#: views/b2s/network.php:
|
1023 |
msgid "Connect Instagram Business Account"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
-
#: views/b2s/network.php:
|
1027 |
msgid "Connect with Pinterest"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: views/b2s/settings.php:
|
1031 |
msgid "Connect your social media networks"
|
1032 |
msgstr ""
|
1033 |
|
@@ -1052,7 +1065,7 @@ msgstr ""
|
|
1052 |
msgid "Connection is interrupted since"
|
1053 |
msgstr ""
|
1054 |
|
1055 |
-
#: includes/B2S/AutoPost/Item.php:
|
1056 |
msgid "Connections"
|
1057 |
msgstr ""
|
1058 |
|
@@ -1060,7 +1073,7 @@ msgstr ""
|
|
1060 |
msgid "Contact Details"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: includes/B2S/Network/Item.php:764 includes/B2S/Settings/Item.php:
|
1064 |
msgid "Content"
|
1065 |
msgstr ""
|
1066 |
|
@@ -1068,17 +1081,17 @@ msgstr ""
|
|
1068 |
msgid "Content Library"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#: views/b2s/settings.php:
|
1072 |
msgid "Content: The content of your post."
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: views/b2s/network.php:
|
1076 |
-
#: views/b2s/network.php:
|
1077 |
-
#: views/b2s/ship.php:
|
1078 |
msgid "Continue"
|
1079 |
msgstr ""
|
1080 |
|
1081 |
-
#: views/b2s/curation.php:74 views/b2s/network.php:
|
1082 |
msgid "continue"
|
1083 |
msgstr ""
|
1084 |
|
@@ -1086,7 +1099,7 @@ msgstr ""
|
|
1086 |
msgid "Continue deactivation"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
-
#: includes/B2S/Ship/Item.php:
|
1090 |
msgid "Copy from original"
|
1091 |
msgstr ""
|
1092 |
|
@@ -1094,7 +1107,7 @@ msgstr ""
|
|
1094 |
msgid "Copyright"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: views/b2s/network.php:
|
1098 |
msgid "Could not be changed"
|
1099 |
msgstr ""
|
1100 |
|
@@ -1114,7 +1127,7 @@ msgstr ""
|
|
1114 |
msgid "Country"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: views/b2s/network.php:
|
1118 |
msgid "create"
|
1119 |
msgstr ""
|
1120 |
|
@@ -1130,11 +1143,11 @@ msgstr ""
|
|
1130 |
msgid "create account"
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#: views/b2s/network.php:
|
1134 |
msgid "Create new network collection"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
-
#: views/b2s/post.calendar.php:
|
1138 |
msgid "Create or share content from other sources"
|
1139 |
msgstr ""
|
1140 |
|
@@ -1146,7 +1159,7 @@ msgstr ""
|
|
1146 |
msgid "Create Post"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#: includes/Loader.php:
|
1150 |
msgid "Create Social Media Posts"
|
1151 |
msgstr ""
|
1152 |
|
@@ -1199,27 +1212,27 @@ msgid ""
|
|
1199 |
"engagement with your community."
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/Tools.php:
|
1203 |
msgid "Czechoslovakia"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
-
#: includes/Loader.php:
|
1207 |
msgid "Dashboard"
|
1208 |
msgstr ""
|
1209 |
|
1210 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1211 |
-
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:
|
1212 |
#: views/b2s/partials/post-edit-modal.php:67
|
1213 |
#: views/b2s/partials/post-edit-modal.php:70
|
1214 |
msgid "Date"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: includes/B2S/Ship/Item.php:
|
1218 |
msgid "Day of month"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
#: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:367
|
1222 |
-
#: includes/B2S/Network/Item.php:433 includes/B2S/Ship/Item.php:
|
1223 |
msgid "Days"
|
1224 |
msgstr ""
|
1225 |
|
@@ -1235,14 +1248,14 @@ msgstr ""
|
|
1235 |
msgid "Debug & Preview"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: views/b2s/network.php:
|
1239 |
-
#: views/b2s/network.php:
|
1240 |
msgid ""
|
1241 |
"Decide in which post format you want to post your content: Link post or "
|
1242 |
"image post."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: views/b2s/network.php:
|
1246 |
msgid ""
|
1247 |
"Decide in wich form you want to post your Content. Either as image with "
|
1248 |
"frame, or as image cut out."
|
@@ -1252,7 +1265,7 @@ msgstr ""
|
|
1252 |
msgid "Default"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: views/b2s/network.php:
|
1256 |
#, php-format
|
1257 |
msgid ""
|
1258 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1260,36 +1273,36 @@ msgid ""
|
|
1260 |
"More information</a>"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: views/b2s/network.php:
|
1264 |
msgid ""
|
1265 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1266 |
"individually. Your text will be shortened after the last comma, period, or "
|
1267 |
"space character within your character limit."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: views/b2s/post.calendar.php:
|
1271 |
-
#: views/b2s/repost.php:
|
1272 |
msgid ""
|
1273 |
"Define the default settings for the custom post format for all of your "
|
1274 |
"Facebook accounts in the Blog2Social settings."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#: views/b2s/post.calendar.php:
|
1278 |
-
#: views/b2s/repost.php:
|
1279 |
msgid ""
|
1280 |
"Define the default settings for the custom post format for all of your "
|
1281 |
"Instagram accounts in the Blog2Social settings."
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: views/b2s/post.calendar.php:
|
1285 |
-
#: views/b2s/repost.php:
|
1286 |
msgid ""
|
1287 |
"Define the default settings for the custom post format for all of your "
|
1288 |
"LinkedIn accounts in the Blog2Social settings."
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: views/b2s/post.calendar.php:
|
1292 |
-
#: views/b2s/repost.php:
|
1293 |
msgid ""
|
1294 |
"Define the default settings for the custom post format for all of your "
|
1295 |
"Twitter accounts in the Blog2Social settings."
|
@@ -1299,35 +1312,35 @@ msgstr ""
|
|
1299 |
msgid "Define Twitter post content"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
-
#: views/b2s/settings.php:
|
1303 |
msgid "Define your post templates for each social media network"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: includes/B2S/Ship/Item.php:
|
1307 |
msgid "Delay"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: views/b2s/network.php:
|
1311 |
msgid "Delete"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: includes/Ajax/Post.php:
|
1315 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
1316 |
-
#: includes/B2S/Post/Item.php:
|
1317 |
-
#: includes/B2S/Settings/Item.php:
|
1318 |
-
#: includes/B2S/Ship/Item.php:
|
1319 |
msgid "delete"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: views/b2s/network.php:
|
1323 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: views/b2s/network.php:
|
1327 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: views/b2s/network.php:
|
1331 |
msgid "Delete Authorization"
|
1332 |
msgstr ""
|
1333 |
|
@@ -1340,15 +1353,15 @@ msgstr ""
|
|
1340 |
msgid "Delete entries from the reporting"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
-
#: views/b2s/post.sched.php:
|
1344 |
msgid "Delete entries from the scheduling"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: includes/B2S/Post/Item.php:
|
1348 |
msgid "delete from reporting"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: views/b2s/network.php:
|
1352 |
msgid "Delete Profile"
|
1353 |
msgstr ""
|
1354 |
|
@@ -1356,7 +1369,7 @@ msgstr ""
|
|
1356 |
msgid "Delete scheduled posts"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
-
#: includes/B2S/Post/Item.php:
|
1360 |
msgid "delete scheduling"
|
1361 |
msgstr ""
|
1362 |
|
@@ -1372,15 +1385,15 @@ msgstr ""
|
|
1372 |
msgid "Delete Social Media Posts"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
-
#: includes/B2S/Ship/Item.php:357 includes/B2S/Ship/Item.php:
|
1376 |
msgid "Delete text"
|
1377 |
msgstr ""
|
1378 |
|
1379 |
-
#: includes/Tools.php:
|
1380 |
msgid "Denmark"
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#: includes/B2S/Settings/Item.php:
|
1384 |
msgid "Description"
|
1385 |
msgstr ""
|
1386 |
|
@@ -1393,7 +1406,7 @@ msgstr ""
|
|
1393 |
msgid "Details"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: includes/B2S/Settings/Item.php:
|
1397 |
msgid "Did you know?"
|
1398 |
msgstr ""
|
1399 |
|
@@ -1405,20 +1418,20 @@ msgstr ""
|
|
1405 |
msgid "Did you miss something? Tell us!"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
-
#: includes/B2S/AutoPost/Item.php:
|
1409 |
msgid "Disconnect"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1413 |
-
#: includes/B2S/Ship/Item.php:
|
1414 |
msgid "Do u want to post multiple images?"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
-
#: views/b2s/network.php:
|
1418 |
msgid "Do you really want to delete this authorization"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
-
#: views/b2s/network.php:
|
1422 |
msgid "Do you really want to delete this profile"
|
1423 |
msgstr ""
|
1424 |
|
@@ -1433,11 +1446,11 @@ msgid "Do you want to delete your scheduled posts?"
|
|
1433 |
msgstr ""
|
1434 |
|
1435 |
#: views/b2s/curation.php:154 views/b2s/post.approve.php:109
|
1436 |
-
#: views/b2s/ship.php:
|
1437 |
msgid "Do you want to mark this post as published ?"
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#: views/b2s/network.php:
|
1441 |
msgid "Download and activate the Blog2Social extension"
|
1442 |
msgstr ""
|
1443 |
|
@@ -1446,17 +1459,17 @@ msgstr ""
|
|
1446 |
msgid "draft"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: includes/Loader.php:
|
1450 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
1451 |
#: views/b2s/html/sidebar.php:116
|
1452 |
msgid "Drafts"
|
1453 |
msgstr ""
|
1454 |
|
1455 |
-
#: includes/B2S/Ship/Item.php:
|
1456 |
msgid "Duration"
|
1457 |
msgstr ""
|
1458 |
|
1459 |
-
#: views/b2s/network.php:
|
1460 |
#: views/b2s/html/header.php:348 views/prg/html/form.php:141
|
1461 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1462 |
#: views/prg/html/form.php:220
|
@@ -1467,13 +1480,13 @@ msgstr ""
|
|
1467 |
msgid "E-Mail or Username"
|
1468 |
msgstr ""
|
1469 |
|
1470 |
-
#: views/b2s/network.php:
|
1471 |
msgid ""
|
1472 |
"Each license has a specified number of accounts you can connect per social "
|
1473 |
"media network."
|
1474 |
msgstr ""
|
1475 |
|
1476 |
-
#: includes/B2S/Post/Item.php:
|
1477 |
msgid "edit"
|
1478 |
msgstr ""
|
1479 |
|
@@ -1485,18 +1498,18 @@ msgstr ""
|
|
1485 |
msgid "Edit Post"
|
1486 |
msgstr ""
|
1487 |
|
1488 |
-
#: views/b2s/network.php:
|
1489 |
#: includes/B2S/Network/Item.php:198
|
1490 |
msgid "Edit Post Template"
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: views/b2s/network.php:
|
1494 |
msgid ""
|
1495 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1496 |
"textarea and customize them as you like."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
-
#: views/b2s/settings.php:
|
1500 |
msgid ""
|
1501 |
"Edit the post templates for each social media network to turn your social "
|
1502 |
"media posts automatically into tailored posts for each network and community."
|
@@ -1515,11 +1528,11 @@ msgstr ""
|
|
1515 |
msgid "enable Auto-Posting"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: includes/B2S/Ship/Item.php:
|
1519 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
1520 |
msgstr ""
|
1521 |
|
1522 |
-
#: includes/B2S/Ship/Item.php:
|
1523 |
msgid "End Of Month"
|
1524 |
msgstr ""
|
1525 |
|
@@ -1572,19 +1585,19 @@ msgstr ""
|
|
1572 |
msgid "Event"
|
1573 |
msgstr ""
|
1574 |
|
1575 |
-
#: includes/B2S/Ship/Item.php:
|
1576 |
msgid "Events"
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#: views/b2s/settings.php:
|
1580 |
msgid ""
|
1581 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
1582 |
"post)."
|
1583 |
msgstr ""
|
1584 |
|
1585 |
-
#: includes/B2S/AutoPost/Item.php:
|
1586 |
-
#: includes/B2S/RePost/Item.php:
|
1587 |
-
#: includes/B2S/RePost/Item.php:251
|
1588 |
msgid "Exclude (Do no post ...)"
|
1589 |
msgstr ""
|
1590 |
|
@@ -1592,7 +1605,7 @@ msgstr ""
|
|
1592 |
msgid "Export as txt-file"
|
1593 |
msgstr ""
|
1594 |
|
1595 |
-
#: views/b2s/network.php:
|
1596 |
msgid "Facebook groups"
|
1597 |
msgstr ""
|
1598 |
|
@@ -1613,7 +1626,7 @@ msgstr ""
|
|
1613 |
msgid "Facebook Open Graph Meta Tags"
|
1614 |
msgstr ""
|
1615 |
|
1616 |
-
#: views/b2s/network.php:
|
1617 |
msgid "Facebook pages"
|
1618 |
msgstr ""
|
1619 |
|
@@ -1625,28 +1638,28 @@ msgstr ""
|
|
1625 |
msgid "Failed to save"
|
1626 |
msgstr ""
|
1627 |
|
1628 |
-
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:
|
1629 |
msgid "FAQ"
|
1630 |
msgstr ""
|
1631 |
|
1632 |
-
#: includes/Loader.php:
|
1633 |
#: views/b2s/html/sidebar.php:113
|
1634 |
msgid "Favorites"
|
1635 |
msgstr ""
|
1636 |
|
1637 |
-
#: views/b2s/network.php:
|
1638 |
-
#: views/b2s/post.calendar.php:
|
1639 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1640 |
#: views/b2s/html/post.navbar.php:29 views/b2s/html/post.navbar.php:30
|
1641 |
msgid "filter"
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: includes/B2S/AutoPost/Item.php:
|
1645 |
msgid ""
|
1646 |
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: includes/Tools.php:
|
1650 |
msgid "Finland"
|
1651 |
msgstr ""
|
1652 |
|
@@ -1660,11 +1673,11 @@ msgstr ""
|
|
1660 |
msgid "First Steps"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: views/b2s/ship.php:
|
1664 |
msgid "First, connect or select network before posting"
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: includes/Tools.php:
|
1668 |
msgid "Flags"
|
1669 |
msgstr ""
|
1670 |
|
@@ -1672,7 +1685,7 @@ msgstr ""
|
|
1672 |
msgid "Follow us"
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: includes/Tools.php:
|
1676 |
msgid "Food & Drink"
|
1677 |
msgstr ""
|
1678 |
|
@@ -1681,7 +1694,7 @@ msgstr ""
|
|
1681 |
msgid "For example your Wordpress Home Page"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: views/b2s/network.php:
|
1685 |
msgid ""
|
1686 |
"For example: If you purchase 5 Facebook groups, these additional 5 Facebook "
|
1687 |
"groups are available for all users. So, when 5 users are activated for the "
|
@@ -1689,7 +1702,7 @@ msgid ""
|
|
1689 |
"or one user can connect 5 additional Facebook groups."
|
1690 |
msgstr ""
|
1691 |
|
1692 |
-
#: views/b2s/network.php:
|
1693 |
msgid ""
|
1694 |
"For example: With the Pro license, each user can connect 5 Facebook accounts "
|
1695 |
"+ 5 Twitter accounts + 5 Instagram accounts + ..."
|
@@ -1701,19 +1714,19 @@ msgid ""
|
|
1701 |
"your preferred custom post format."
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: includes/B2S/Ship/Save.php:
|
1705 |
msgid ""
|
1706 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: includes/B2S/Ship/Save.php:
|
1710 |
msgid ""
|
1711 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
1712 |
"Instant Sharing"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: views/b2s/post.calendar.php:
|
1716 |
-
#: views/b2s/repost.php:
|
1717 |
msgid "for:"
|
1718 |
msgstr ""
|
1719 |
|
@@ -1729,7 +1742,7 @@ msgstr ""
|
|
1729 |
msgid "Format"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#: includes/Tools.php:
|
1733 |
msgid "France"
|
1734 |
msgstr ""
|
1735 |
|
@@ -1737,7 +1750,7 @@ msgstr ""
|
|
1737 |
msgid "Frequently asked questions"
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:
|
1741 |
msgid "Fri"
|
1742 |
msgstr ""
|
1743 |
|
@@ -1745,11 +1758,11 @@ msgstr ""
|
|
1745 |
msgid "Friday"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#: includes/B2S/Settings/Item.php:
|
1749 |
msgid "Frontpage Settings"
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#: views/b2s/settings.php:
|
1753 |
msgid "General"
|
1754 |
msgstr ""
|
1755 |
|
@@ -1757,7 +1770,7 @@ msgstr ""
|
|
1757 |
msgid "German"
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#: includes/Tools.php:
|
1761 |
msgid "Germany"
|
1762 |
msgstr ""
|
1763 |
|
@@ -1772,7 +1785,7 @@ msgid ""
|
|
1772 |
"guide</a>."
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: views/b2s/curation.php:
|
1776 |
#, php-format
|
1777 |
msgid ""
|
1778 |
"Get more information on how to share a text post with hashtags, @mentions "
|
@@ -1792,7 +1805,7 @@ msgstr ""
|
|
1792 |
msgid "Get the Blog2Social Browser Extension"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
-
#: views/b2s/ship.php:
|
1796 |
msgid "Give me more information"
|
1797 |
msgstr ""
|
1798 |
|
@@ -1819,7 +1832,7 @@ msgid ""
|
|
1819 |
"thematically relevant to the content of your post."
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: views/b2s/network.php:
|
1823 |
msgid ""
|
1824 |
"Google currently allows access to the API for all companies with up to 9 "
|
1825 |
"locations in their Google My Business Listings. However, Google plans to "
|
@@ -1827,7 +1840,7 @@ msgid ""
|
|
1827 |
"Business listings."
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#: views/b2s/network.php:
|
1831 |
msgid "Google My Business"
|
1832 |
msgstr ""
|
1833 |
|
@@ -1836,15 +1849,15 @@ msgid ""
|
|
1836 |
"Grab more attention for your content with photos, videos, or infographics."
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: includes/Tools.php:
|
1840 |
msgid "Great Britain"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: includes/Tools.php:
|
1844 |
msgid "Greece"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: includes/Loader.php:
|
1848 |
#: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:676
|
1849 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
1850 |
msgid "Group"
|
@@ -1854,11 +1867,11 @@ msgstr ""
|
|
1854 |
msgid "guide for server connection"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: includes/B2S/Network/Item.php:
|
1858 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: includes/B2S/Ship/Item.php:
|
1862 |
msgid "Hashtags"
|
1863 |
msgstr ""
|
1864 |
|
@@ -1866,7 +1879,7 @@ msgstr ""
|
|
1866 |
msgid "Help & Community"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: includes/Loader.php:
|
1870 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
1871 |
#: views/b2s/html/sidebar.ship.php:66
|
1872 |
msgid "Help & Support"
|
@@ -1905,7 +1918,7 @@ msgstr ""
|
|
1905 |
msgid "https://www.blog2social.com"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: includes/Tools.php:
|
1909 |
msgid "Hungary"
|
1910 |
msgstr ""
|
1911 |
|
@@ -1951,10 +1964,12 @@ msgid ""
|
|
1951 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
1952 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
1953 |
"ask all your questions in the Blog2Social support community where you will "
|
1954 |
-
"receive help from our committed support team."
|
|
|
|
|
1955 |
msgstr ""
|
1956 |
|
1957 |
-
#: views/b2s/ship.php:
|
1958 |
msgid "Ignore & share"
|
1959 |
msgstr ""
|
1960 |
|
@@ -1966,43 +1981,44 @@ msgstr ""
|
|
1966 |
msgid "image"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: views/b2s/post.calendar.php:
|
1970 |
-
#: views/b2s/repost.php:
|
1971 |
#: includes/B2S/Network/Item.php:752 includes/B2S/Network/Item.php:755
|
1972 |
-
#: includes/B2S/Settings/Item.php:
|
1973 |
msgid "Image cut out"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1977 |
-
#: views/b2s/post.calendar.php:
|
1978 |
-
#: views/b2s/repost.php:
|
1979 |
-
#: includes/B2S/
|
|
|
1980 |
msgid "Image Post"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: includes/B2S/Settings/Item.php:
|
1984 |
#: includes/B2S/Ship/Image.php:94 includes/B2S/Ship/Image.php:96
|
1985 |
msgid "Image upload / Media Gallery"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
-
#: includes/B2S/Settings/Item.php:
|
1989 |
msgid "Image URL"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
-
#: views/b2s/post.calendar.php:
|
1993 |
-
#: views/b2s/repost.php:
|
1994 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
1995 |
-
#: includes/B2S/Settings/Item.php:
|
1996 |
msgid "Image with frame"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
-
#: includes/B2S/AutoPost/Item.php:
|
2000 |
msgid ""
|
2001 |
"Immediate Cross-Posting across all networks: Share an unlimited number of "
|
2002 |
"posts"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: includes/B2S/AutoPost/Item.php:
|
2006 |
msgid "immediately"
|
2007 |
msgstr ""
|
2008 |
|
@@ -2010,26 +2026,33 @@ msgstr ""
|
|
2010 |
msgid "immediately after publishing"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: views/b2s/ship.php:
|
2014 |
msgid "Important infomations about XING groups"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: includes/B2S/AutoPost/Item.php:
|
2018 |
msgid ""
|
2019 |
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
2020 |
"as your primary Twitter account for auto-posting."
|
2021 |
msgstr ""
|
2022 |
|
2023 |
-
#: views/b2s/curation.php:
|
2024 |
#, php-format
|
2025 |
msgid ""
|
2026 |
"In the <a href=\"%s\">Network Settings</a> you can define network selections "
|
2027 |
-
"to select and save your most
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#:
|
2031 |
-
|
2032 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2033 |
msgid "Include (Post only...)"
|
2034 |
msgstr ""
|
2035 |
|
@@ -2042,21 +2065,21 @@ msgstr ""
|
|
2042 |
msgid "include posts with images only"
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: includes/Tools.php:
|
2046 |
msgid "India"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: includes/Tools.php:
|
2050 |
msgid "Indonesia"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
#: includes/B2S/PostBox.php:165 includes/B2S/PostBox.php:168
|
2054 |
-
#: includes/B2S/PostBox.php:253 views/b2s/network.php:
|
2055 |
-
#: views/b2s/ship.php:
|
2056 |
-
#: includes/B2S/AutoPost/Item.php:
|
2057 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:211
|
2058 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2059 |
-
#: includes/B2S/Ship/Item.php:
|
2060 |
msgid "Info"
|
2061 |
msgstr ""
|
2062 |
|
@@ -2067,17 +2090,17 @@ msgstr ""
|
|
2067 |
|
2068 |
#: includes/B2S/Ship/Item.php:465 includes/B2S/Ship/Item.php:585
|
2069 |
#: includes/B2S/Ship/Item.php:615 includes/B2S/Ship/Item.php:643
|
2070 |
-
#: includes/B2S/Ship/Item.php:671
|
2071 |
msgid ""
|
2072 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2073 |
"network"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
-
#: includes/B2S/Ship/Item.php:355 includes/B2S/Ship/Item.php:
|
2077 |
msgid "Insert full-text"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: includes/B2S/Settings/Item.php:
|
2081 |
msgid ""
|
2082 |
"Insert white frames to show the whole image in your timeline. All image "
|
2083 |
"information will be shown in your timeline."
|
@@ -2087,27 +2110,27 @@ msgstr ""
|
|
2087 |
msgid "Inspect Post"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: includes/Loader.php:
|
2091 |
#, php-format
|
2092 |
msgid ""
|
2093 |
"Instagram published your post without text. Please see the following <a "
|
2094 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: views/b2s/settings.php:
|
2098 |
msgid "Instant Caching for Facebook Link Posts"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
-
#: views/b2s/network.php:
|
2102 |
msgid "Instant Caching for Link Posts"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#: includes/Loader.php:
|
2106 |
#: views/b2s/html/sidebar.php:119
|
2107 |
msgid "Instant Sharing"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: views/b2s/network.php:
|
2111 |
msgid "Invalid Data! Please try again."
|
2112 |
msgstr ""
|
2113 |
|
@@ -2119,28 +2142,28 @@ msgstr ""
|
|
2119 |
msgid "Invalid email address"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: includes/Tools.php:
|
2123 |
msgid "Ireland"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: includes/B2S/Post/Item.php:
|
2127 |
msgid "is currently being processed by the network"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: includes/Tools.php:
|
2131 |
msgid "is determined automatically"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: includes/B2S/Post/Item.php:
|
2135 |
#, php-format
|
2136 |
msgid "is waiting to shared by %s"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
#: includes/Tools.php:
|
2140 |
msgid "Italy"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
-
#: includes/Tools.php:
|
2144 |
msgid "Japan"
|
2145 |
msgstr ""
|
2146 |
|
@@ -2148,7 +2171,7 @@ msgstr ""
|
|
2148 |
msgid "Job"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: includes/B2S/Ship/Item.php:
|
2152 |
msgid "Jobs & Projects"
|
2153 |
msgstr ""
|
2154 |
|
@@ -2168,11 +2191,11 @@ msgstr ""
|
|
2168 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: views/b2s/settings.php:
|
2172 |
msgid "Keywords: The tags you have set in your post."
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: includes/Tools.php:
|
2176 |
msgid "Korea"
|
2177 |
msgstr ""
|
2178 |
|
@@ -2180,7 +2203,7 @@ msgstr ""
|
|
2180 |
msgid "Language"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: includes/B2S/Post/Item.php:
|
2184 |
#, php-format
|
2185 |
msgid "last modified by %s"
|
2186 |
msgstr ""
|
@@ -2213,7 +2236,7 @@ msgstr ""
|
|
2213 |
msgid "latest share by %s"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
-
#: includes/B2S/Ship/Save.php:
|
2217 |
msgid "Learn how it works"
|
2218 |
msgstr ""
|
2219 |
|
@@ -2231,8 +2254,8 @@ msgid ""
|
|
2231 |
"scheduling and auto-poster."
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: views/b2s/network.php:
|
2235 |
-
#: includes/B2S/Ship/Item.php:
|
2236 |
msgid "Learn more"
|
2237 |
msgstr ""
|
2238 |
|
@@ -2243,16 +2266,16 @@ msgid ""
|
|
2243 |
"target=\"_blank\">social media posts guide</a>."
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:
|
2247 |
-
#: includes/B2S/Ship/Item.php:
|
2248 |
msgid "Learn more about this"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: views/b2s/network.php:
|
2252 |
msgid "Legend"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#: includes/Tools.php:
|
2256 |
#: views/b2s/html/sidebar.ship.php:29
|
2257 |
msgid "License"
|
2258 |
msgstr ""
|
@@ -2262,18 +2285,18 @@ msgid "Licensing"
|
|
2262 |
msgstr ""
|
2263 |
|
2264 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2265 |
-
#: includes/B2S/Ship/Item.php:
|
2266 |
msgid "Link"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:
|
2270 |
-
#: views/b2s/post.sched.php:
|
2271 |
-
#: includes/B2S/
|
2272 |
-
#: views/b2s/html/footer.php:160
|
2273 |
msgid "Link Post"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: views/b2s/network.php:
|
2277 |
msgid "LinkedIn pages"
|
2278 |
msgstr ""
|
2279 |
|
@@ -2285,7 +2308,7 @@ msgstr ""
|
|
2285 |
msgid "List"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: views/b2s/network.php:
|
2289 |
#: views/b2s/partials/post-edit-modal.php:42
|
2290 |
msgid "Load Best Times"
|
2291 |
msgstr ""
|
@@ -2302,24 +2325,24 @@ msgstr ""
|
|
2302 |
msgid "load Draft"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: views/b2s/ship.php:
|
2306 |
msgid "Load My Times Settings"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
-
#: views/b2s/curation.draft.php:47 views/b2s/network.php:
|
2310 |
-
#: views/b2s/network.php:
|
2311 |
-
#: views/b2s/network.php:
|
2312 |
-
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:
|
2313 |
-
#: views/b2s/post.calendar.php:
|
2314 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
2315 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
2316 |
-
#: views/b2s/post.sched.php:
|
2317 |
-
#: views/b2s/ship.php:
|
2318 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
2319 |
msgid "Loading..."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: views/b2s/network.php:
|
2323 |
#, php-format
|
2324 |
msgid ""
|
2325 |
"Login failed. Please check your login data for typos and please check your "
|
@@ -2336,8 +2359,8 @@ msgstr ""
|
|
2336 |
msgid "Login failed. Please check your username and a password!"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
#: views/b2s/network.php:
|
2340 |
-
#: views/b2s/ship.php:
|
2341 |
msgid ""
|
2342 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
2343 |
"on your profile."
|
@@ -2347,7 +2370,7 @@ msgstr ""
|
|
2347 |
msgid "Logout"
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: includes/B2S/Ship/Item.php:
|
2351 |
#, php-format
|
2352 |
msgid "max. %s Tags"
|
2353 |
msgstr ""
|
@@ -2356,16 +2379,16 @@ msgstr ""
|
|
2356 |
msgid "Message"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
-
#: includes/B2S/Settings/Item.php:
|
2360 |
msgid "Meta Tags Settings for Posts and Pages"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
-
#: includes/Tools.php:
|
2364 |
msgid "Mexico"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: includes/B2S/Ship/Item.php:
|
2368 |
-
#: includes/B2S/Ship/Item.php:
|
2369 |
#: views/b2s/partials/post-edit-modal.php:82
|
2370 |
#: views/b2s/partials/post-edit-modal.php:83
|
2371 |
#: views/b2s/partials/post-edit-modal.php:84
|
@@ -2373,18 +2396,18 @@ msgstr ""
|
|
2373 |
msgid "min"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: includes/B2S/AutoPost/Item.php:
|
2377 |
msgid "minutes"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: includes/B2S/Network/Item.php:
|
2381 |
msgid ""
|
2382 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
2383 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
2384 |
"ini\" file."
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#: views/b2s/network.php:
|
2388 |
msgid "modify"
|
2389 |
msgstr ""
|
2390 |
|
@@ -2400,7 +2423,7 @@ msgstr ""
|
|
2400 |
msgid "Modify subreddit"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
2404 |
msgid "Mon"
|
2405 |
msgstr ""
|
2406 |
|
@@ -2408,15 +2431,15 @@ msgstr ""
|
|
2408 |
msgid "Monday"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: includes/B2S/Ship/Item.php:
|
2412 |
msgid "Month"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: includes/B2S/Ship/Item.php:
|
2416 |
msgid "monthly"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: includes/B2S/Ship/Item.php:
|
2420 |
msgid "Months"
|
2421 |
msgstr ""
|
2422 |
|
@@ -2428,12 +2451,12 @@ msgstr ""
|
|
2428 |
msgid "More Information"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#: views/b2s/autopost.php:76 views/b2s/repost.php:
|
2432 |
-
#: includes/B2S/AutoPost/Item.php:
|
2433 |
msgid "More information"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#: views/b2s/curation.php:
|
2437 |
#, php-format
|
2438 |
msgid ""
|
2439 |
"More information on how to create a network selection in the guide <a "
|
@@ -2445,11 +2468,11 @@ msgstr ""
|
|
2445 |
msgid "More users and accounts"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
-
#: views/b2s/network.php:
|
2449 |
msgid "move"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
#: views/b2s/network.php:
|
2453 |
msgid "Move the connection to another network collection."
|
2454 |
msgstr ""
|
2455 |
|
@@ -2461,7 +2484,7 @@ msgstr ""
|
|
2461 |
msgid "Mrs."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: views/b2s/network.php:
|
2465 |
msgid "My Profile"
|
2466 |
msgstr ""
|
2467 |
|
@@ -2479,8 +2502,8 @@ msgstr ""
|
|
2479 |
msgid "Need more?"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: views/b2s/curation.php:173 views/b2s/post.calendar.php:
|
2483 |
-
#: views/b2s/ship.php:
|
2484 |
msgid "Need to schedule your posts?"
|
2485 |
msgstr ""
|
2486 |
|
@@ -2488,19 +2511,19 @@ msgstr ""
|
|
2488 |
msgid "Needed"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: includes/Tools.php:
|
2492 |
msgid "Netherlands"
|
2493 |
msgstr ""
|
2494 |
|
2495 |
-
#: views/b2s/network.php:
|
2496 |
msgid "Network collection"
|
2497 |
msgstr ""
|
2498 |
|
2499 |
-
#: views/b2s/ship.php:
|
2500 |
msgid "network connected"
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#: views/b2s/network.php:
|
2504 |
msgid "Network connections"
|
2505 |
msgstr ""
|
2506 |
|
@@ -2524,30 +2547,30 @@ msgstr ""
|
|
2524 |
msgid "Network does not support image for profiles"
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#: includes/B2S/Network/Item.php:
|
2528 |
-
#: includes/B2S/Network/Item.php:
|
2529 |
msgid "Network limit"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
-
#: includes/B2S/PostBox.php:146 includes/B2S/AutoPost/Item.php:
|
2533 |
-
#: includes/B2S/AutoPost/Item.php:
|
2534 |
msgid "Network settings"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: includes/Loader.php:
|
2538 |
msgid "Networks"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
#: includes/Loader.php:
|
2542 |
#: views/b2s/support.php:22
|
2543 |
msgid "NEW"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: includes/B2S/AutoPost/Item.php:
|
2547 |
msgid "new posts"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: includes/Tools.php:
|
2551 |
msgid "New Zealand"
|
2552 |
msgstr ""
|
2553 |
|
@@ -2561,11 +2584,11 @@ msgid "next share by %s"
|
|
2561 |
msgstr ""
|
2562 |
|
2563 |
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:160
|
2564 |
-
#: views/b2s/network.php:
|
2565 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
2566 |
#: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
|
2567 |
-
#: views/b2s/post.sched.php:
|
2568 |
-
#: views/b2s/ship.php:
|
2569 |
msgid "NO"
|
2570 |
msgstr ""
|
2571 |
|
@@ -2579,7 +2602,7 @@ msgstr ""
|
|
2579 |
msgid "No credit card required"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: includes/Tools.php:
|
2583 |
msgid "No emojis found"
|
2584 |
msgstr ""
|
2585 |
|
@@ -2595,7 +2618,7 @@ msgstr ""
|
|
2595 |
msgid "No posts found. Please try again with different filter options."
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: includes/B2S/Settings/Item.php:
|
2599 |
msgid "no URL Shortener"
|
2600 |
msgstr ""
|
2601 |
|
@@ -2607,7 +2630,7 @@ msgstr ""
|
|
2607 |
msgid "Nope, maybe later"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: includes/Tools.php:
|
2611 |
msgid "Norway"
|
2612 |
msgstr ""
|
2613 |
|
@@ -2615,17 +2638,21 @@ msgstr ""
|
|
2615 |
msgid "not yet shared"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: views/b2s/ship.php:
|
2619 |
msgid "Note: "
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:
|
2623 |
msgid ""
|
2624 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
2625 |
"Networks do not allow postings from local installations."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#:
|
|
|
|
|
|
|
|
|
2629 |
msgid "Notifications"
|
2630 |
msgstr ""
|
2631 |
|
@@ -2635,8 +2662,8 @@ msgid "Number"
|
|
2635 |
msgstr ""
|
2636 |
|
2637 |
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:84
|
2638 |
-
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:
|
2639 |
-
#: views/b2s/repost.php:
|
2640 |
msgid "Number of entries"
|
2641 |
msgstr ""
|
2642 |
|
@@ -2644,27 +2671,27 @@ msgstr ""
|
|
2644 |
msgid "Number of posts"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#: includes/B2S/Ship/Item.php:
|
2648 |
msgid "Number of repeats"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#: includes/Tools.php:
|
2652 |
msgid "Objects"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: includes/B2S/Ship/Item.php:
|
2656 |
msgid "Offer"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
#: includes/B2S/Ship/Item.php:471 includes/B2S/Ship/Item.php:591
|
2660 |
#: includes/B2S/Ship/Item.php:621 includes/B2S/Ship/Item.php:649
|
2661 |
-
#: includes/B2S/Ship/Item.php:677
|
2662 |
msgid "OG Meta description"
|
2663 |
msgstr ""
|
2664 |
|
2665 |
#: includes/B2S/Ship/Item.php:470 includes/B2S/Ship/Item.php:590
|
2666 |
#: includes/B2S/Ship/Item.php:620 includes/B2S/Ship/Item.php:648
|
2667 |
-
#: includes/B2S/Ship/Item.php:676
|
2668 |
msgid "OG Meta title"
|
2669 |
msgstr ""
|
2670 |
|
@@ -2688,7 +2715,7 @@ msgstr ""
|
|
2688 |
msgid "on Blog"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: views/b2s/ship.php:
|
2692 |
#: includes/B2S/Post/Item.php:580
|
2693 |
msgid "on blog"
|
2694 |
msgstr ""
|
@@ -2702,13 +2729,13 @@ msgstr ""
|
|
2702 |
msgid "Open Graph and Twitter Card Tags"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
-
#: includes/Loader.php:
|
2706 |
msgid "or"
|
2707 |
msgstr ""
|
2708 |
|
2709 |
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:206
|
2710 |
-
#: views/b2s/curation.php:245 views/b2s/post.calendar.php:
|
2711 |
-
#: views/b2s/ship.php:
|
2712 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
2713 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
2714 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
@@ -2721,7 +2748,7 @@ msgid ""
|
|
2721 |
"Blog2Social Premium</a> (no payment information needed)"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: includes/B2S/Support/Check/System.php:
|
2725 |
msgid "or higher"
|
2726 |
msgstr ""
|
2727 |
|
@@ -2729,15 +2756,15 @@ msgstr ""
|
|
2729 |
msgid "Other topics"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: views/b2s/ship.php:
|
2733 |
msgid "Overwrite Draft"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: includes/B2S/Ship/Item.php:
|
2737 |
msgid "own period"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: includes/Loader.php:
|
2741 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:190
|
2742 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:327
|
2743 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Portale.php:39
|
@@ -2749,7 +2776,7 @@ msgstr ""
|
|
2749 |
msgid "Pages and groups"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: views/b2s/network.php:
|
2753 |
msgid "Password"
|
2754 |
msgstr ""
|
2755 |
|
@@ -2759,12 +2786,12 @@ msgstr ""
|
|
2759 |
msgid "Personal"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: views/b2s/autopost.php:59 views/b2s/settings.php:
|
2763 |
-
#: includes/B2S/Settings/Item.php:
|
2764 |
msgid "Personal Time Zone"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: includes/Tools.php:
|
2768 |
msgid "Philippines"
|
2769 |
msgstr ""
|
2770 |
|
@@ -2777,7 +2804,7 @@ msgstr ""
|
|
2777 |
msgid "Photo Post"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: views/b2s/network.php:
|
2781 |
msgid "Pinterest has rejected the connection to your blog"
|
2782 |
msgstr ""
|
2783 |
|
@@ -2793,7 +2820,7 @@ msgstr ""
|
|
2793 |
msgid "Please contact our support!"
|
2794 |
msgstr ""
|
2795 |
|
2796 |
-
#: views/b2s/settings.php:
|
2797 |
msgid ""
|
2798 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2799 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -2801,7 +2828,7 @@ msgid ""
|
|
2801 |
"Facebook always pulls the current meta data of your blog post."
|
2802 |
msgstr ""
|
2803 |
|
2804 |
-
#: views/b2s/network.php:
|
2805 |
msgid ""
|
2806 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2807 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
@@ -2813,15 +2840,15 @@ msgstr ""
|
|
2813 |
msgid "Please enter a valid link"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:
|
2817 |
-
#: includes/B2S/Ship/Item.php:
|
2818 |
msgid ""
|
2819 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
2820 |
"allowed to post identical or substantially similar content to multiple "
|
2821 |
"accounts or multiple duplicate updates on one account."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: includes/Loader.php:
|
2825 |
msgid ""
|
2826 |
"Please make sure that your post, page or custom post type is published or "
|
2827 |
"scheduled to be published on this blog before you try to post it with "
|
@@ -2829,7 +2856,7 @@ msgid ""
|
|
2829 |
"scheduled WP posts will be shared with the posting id link."
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: views/b2s/network.php:
|
2833 |
#, php-format
|
2834 |
msgid ""
|
2835 |
"Please make sure to log in with your account which manages your groups and "
|
@@ -2837,14 +2864,14 @@ msgid ""
|
|
2837 |
"groups</a>."
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: views/b2s/network.php:
|
2841 |
#, php-format
|
2842 |
msgid ""
|
2843 |
"Please make sure to log in with your account which manages your pages and <a "
|
2844 |
"href=\"%s\" target=\"_blank\">follow this guide to select all your pages</a>."
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: views/b2s/network.php:
|
2848 |
msgid ""
|
2849 |
"Please make sure to use your original Pinterest login data (email and "
|
2850 |
"password). Social Login via Facebook or Google login data will not work here."
|
@@ -2856,13 +2883,13 @@ msgstr ""
|
|
2856 |
msgid "Please Note"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: includes/B2S/Settings/Item.php:
|
2860 |
msgid ""
|
2861 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
2862 |
"pixels and an aspect ratio of 1:1."
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: includes/B2S/Ship/Item.php:
|
2866 |
msgid ""
|
2867 |
"Please note: Google will shut down Google+ for all private accounts "
|
2868 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -2893,7 +2920,7 @@ msgid ""
|
|
2893 |
"Changes may not be immediately visible on Twitter."
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: includes/B2S/Settings/Item.php:
|
2897 |
msgid ""
|
2898 |
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
2899 |
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
@@ -2921,12 +2948,12 @@ msgid ""
|
|
2921 |
"guide</a>."
|
2922 |
msgstr ""
|
2923 |
|
2924 |
-
#: includes/B2S/Ship/Save.php:
|
2925 |
msgid ""
|
2926 |
"Please note: You post has to be marked as public to be posted in a group."
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: includes/B2S/Ship/Item.php:
|
2930 |
msgid ""
|
2931 |
"Please note: Your account is connected via an old XING API that is no longer "
|
2932 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -2952,7 +2979,7 @@ msgid ""
|
|
2952 |
"your <a target=\"_blank\" href=\"%s\">settings</a>"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: views/b2s/network.php:
|
2956 |
#, php-format
|
2957 |
msgid ""
|
2958 |
"Please note: Your Instagram Business Account will be connected with "
|
@@ -2962,11 +2989,11 @@ msgid ""
|
|
2962 |
"<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: views/b2s/network.php:
|
2966 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:
|
2970 |
msgid "Please see"
|
2971 |
msgstr ""
|
2972 |
|
@@ -2974,19 +3001,19 @@ msgstr ""
|
|
2974 |
msgid "Please see FAQ"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: includes/B2S/AutoPost/Item.php:
|
2978 |
msgid "Please select a post type"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: includes/B2S/AutoPost/Item.php:
|
2982 |
msgid "Please select a social media network"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#: views/b2s/network.php:
|
2986 |
msgid "Please select your correct server location and connect again."
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#: includes/B2S/Ship/Save.php:
|
2990 |
msgid "Please share your post now"
|
2991 |
msgstr ""
|
2992 |
|
@@ -2995,19 +3022,19 @@ msgstr ""
|
|
2995 |
msgid "please upgrade"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: views/b2s/settings.php:
|
2999 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: includes/B2S/Support/Check/System.php:
|
3003 |
msgid "Plugin Warnings:"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: includes/Tools.php:
|
3007 |
msgid "Poland"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: includes/Tools.php:
|
3011 |
msgid "Portugal"
|
3012 |
msgstr ""
|
3013 |
|
@@ -3020,7 +3047,11 @@ msgstr ""
|
|
3020 |
msgid "Post a Press Release"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#:
|
|
|
|
|
|
|
|
|
3024 |
msgid "Post Content"
|
3025 |
msgstr ""
|
3026 |
|
@@ -3028,12 +3059,12 @@ msgstr ""
|
|
3028 |
msgid "Post every"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: views/b2s/post.calendar.php:
|
3032 |
-
#: views/b2s/repost.php:
|
3033 |
msgid "Post Format"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: includes/B2S/Ship/Item.php:340
|
3037 |
msgid "post format"
|
3038 |
msgstr ""
|
3039 |
|
@@ -3048,8 +3079,8 @@ msgid ""
|
|
3048 |
msgstr ""
|
3049 |
|
3050 |
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:193
|
3051 |
-
#: views/b2s/post.calendar.php:
|
3052 |
-
#: views/b2s/ship.php:
|
3053 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
3054 |
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
|
3055 |
#: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
|
@@ -3057,11 +3088,11 @@ msgstr ""
|
|
3057 |
msgid "Post on pages and groups"
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: views/b2s/settings.php:
|
3061 |
msgid "Post Templates"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: includes/B2S/AutoPost/Item.php:
|
3065 |
msgid "Post Types"
|
3066 |
msgstr ""
|
3067 |
|
@@ -3078,7 +3109,7 @@ msgstr ""
|
|
3078 |
msgid "Posts"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
-
#: includes/B2S/AutoPost/Item.php:
|
3082 |
#, php-format
|
3083 |
msgid ""
|
3084 |
"Posts for Facebook Profiles will be shown on your \"Site & Blog Content\" "
|
@@ -3088,7 +3119,7 @@ msgid ""
|
|
3088 |
"."
|
3089 |
msgstr ""
|
3090 |
|
3091 |
-
#: includes/B2S/AutoPost/Item.php:
|
3092 |
msgid "posts per day"
|
3093 |
msgstr ""
|
3094 |
|
@@ -3103,15 +3134,15 @@ msgid ""
|
|
3103 |
"publish your post."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: includes/Loader.php:
|
3107 |
msgid "PR-Service"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: includes/Loader.php:
|
3111 |
msgid "PREMIUM"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: includes/Loader.php:
|
3115 |
msgid "Premium"
|
3116 |
msgstr ""
|
3117 |
|
@@ -3123,19 +3154,19 @@ msgstr ""
|
|
3123 |
msgid "Press"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: includes/B2S/Network/Item.php:
|
3127 |
-
#: includes/B2S/Network/Item.php:
|
3128 |
-
#: includes/B2S/Network/Item.php:
|
3129 |
-
#: includes/B2S/Network/Item.php:
|
3130 |
-
#: includes/B2S/Network/Item.php:
|
3131 |
-
#: includes/B2S/Network/Item.php:
|
3132 |
-
#: includes/B2S/Network/Item.php:
|
3133 |
-
#: includes/B2S/Network/Item.php:
|
3134 |
-
#: includes/B2S/Network/Item.php:
|
3135 |
msgid "Preview"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: views/b2s/settings.php:
|
3139 |
msgid ""
|
3140 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
3141 |
"website/ blog."
|
@@ -3145,17 +3176,17 @@ msgstr ""
|
|
3145 |
msgid "Privacy Policy"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:
|
3149 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:190
|
3150 |
#: includes/B2S/Network/Item.php:195 includes/B2S/Ship/Image.php:96
|
3151 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
3152 |
-
#: includes/B2S/Ship/Item.php:
|
3153 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:39
|
3154 |
#: includes/B2S/Ship/Portale.php:51
|
3155 |
msgid "PRO"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: views/b2s/network.php:
|
3159 |
msgid "Pro: 5 (per user)"
|
3160 |
msgstr ""
|
3161 |
|
@@ -3163,7 +3194,7 @@ msgstr ""
|
|
3163 |
msgid "Product"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: includes/Loader.php:
|
3167 |
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
|
3168 |
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
3169 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:257
|
@@ -3173,7 +3204,7 @@ msgstr ""
|
|
3173 |
msgid "Profile"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: views/b2s/ship.php:
|
3177 |
msgid "Profiles | Pages | Groups"
|
3178 |
msgstr ""
|
3179 |
|
@@ -3190,13 +3221,13 @@ msgstr ""
|
|
3190 |
msgid "Publish on PR-Gateway"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
-
#: includes/B2S/AutoPost/Item.php:
|
3194 |
msgid "publish with a delay of"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: views/b2s/curation.php:138 views/b2s/post.calendar.php:
|
3198 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:
|
3199 |
-
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:
|
3200 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3201 |
msgid "published"
|
3202 |
msgstr ""
|
@@ -3221,24 +3252,24 @@ msgstr ""
|
|
3221 |
msgid "Rate it!"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:
|
3225 |
msgid "Re-Share"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:
|
3229 |
msgid "re-share"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: includes/Loader.php:
|
3233 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/sidebar.php:72
|
3234 |
msgid "Re-Share Posts"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
-
#: views/b2s/ship.php:
|
3238 |
msgid "Re-share this Post"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: views/b2s/curation.php:131 views/b2s/ship.php:
|
3242 |
#: includes/B2S/Post/Item.php:454
|
3243 |
msgid "Re-share this post"
|
3244 |
msgstr ""
|
@@ -3255,15 +3286,15 @@ msgstr ""
|
|
3255 |
msgid "Rebrandly"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: includes/Tools.php:
|
3259 |
msgid "Recently Used"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: includes/B2S/Network/Item.php:
|
3263 |
msgid "recommended length"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: views/b2s/ship.php:
|
3267 |
msgid "refresh authorization"
|
3268 |
msgstr ""
|
3269 |
|
@@ -3279,17 +3310,17 @@ msgstr ""
|
|
3279 |
msgid "reload"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: includes/B2S/Ship/Item.php:
|
3283 |
msgid "Repeats"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: includes/B2S/Ship/Item.php:
|
3287 |
msgid "Repeats every (days)"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:202
|
3291 |
-
#: views/b2s/post.calendar.php:
|
3292 |
-
#: views/b2s/ship.php:
|
3293 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
3294 |
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
|
3295 |
#: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
|
@@ -3314,15 +3345,15 @@ msgstr ""
|
|
3314 |
msgid "Reporting with links to already published posts"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: includes/B2S/Ship/Item.php:
|
3318 |
msgid "Request"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: includes/B2S/Ship/Item.php:
|
3322 |
msgid "required"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: views/b2s/ship.php:
|
3326 |
msgid "requires image"
|
3327 |
msgstr ""
|
3328 |
|
@@ -3330,7 +3361,7 @@ msgstr ""
|
|
3330 |
msgid "reset"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: includes/B2S/Settings/Item.php:
|
3334 |
msgid "Reset all page and post meta data"
|
3335 |
msgstr ""
|
3336 |
|
@@ -3338,13 +3369,13 @@ msgstr ""
|
|
3338 |
msgid "reset password"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: includes/B2S/Support/Check/System.php:
|
3342 |
-
#: includes/B2S/Support/Check/System.php:
|
3343 |
msgid "resolve conflict"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:
|
3347 |
-
#: includes/B2S/Ship/Save.php:
|
3348 |
msgid "Retweet"
|
3349 |
msgstr ""
|
3350 |
|
@@ -3356,7 +3387,7 @@ msgid ""
|
|
3356 |
"WordPress."
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: includes/Tools.php:
|
3360 |
msgid "Romania"
|
3361 |
msgstr ""
|
3362 |
|
@@ -3364,7 +3395,7 @@ msgstr ""
|
|
3364 |
msgid "RSS import & auto-post"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: includes/Tools.php:
|
3368 |
msgid "Russia"
|
3369 |
msgstr ""
|
3370 |
|
@@ -3372,7 +3403,7 @@ msgstr ""
|
|
3372 |
msgid "Sales Support"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:
|
3376 |
msgid "Sat"
|
3377 |
msgstr ""
|
3378 |
|
@@ -3380,16 +3411,16 @@ msgstr ""
|
|
3380 |
msgid "Saturday"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: includes/B2S/AutoPost/Item.php:
|
3384 |
msgid "Save"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: views/b2s/network.php:
|
3388 |
-
#: includes/B2S/Network/Item.php:587 includes/B2S/Settings/Item.php:
|
3389 |
msgid "save"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: includes/B2S/Ship/Item.php:
|
3393 |
msgid "Save as best time for this network"
|
3394 |
msgstr ""
|
3395 |
|
@@ -3397,7 +3428,7 @@ msgstr ""
|
|
3397 |
msgid "Save As Draft"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: views/b2s/ship.php:
|
3401 |
#: includes/B2S/Curation/View.php:110
|
3402 |
msgid "Save as Draft"
|
3403 |
msgstr ""
|
@@ -3408,11 +3439,11 @@ msgid ""
|
|
3408 |
"want."
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: views/b2s/ship.php:
|
3412 |
msgid "Save network selection"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: views/b2s/autopost.php:27 views/b2s/settings.php:
|
3416 |
msgid "save..."
|
3417 |
msgstr ""
|
3418 |
|
@@ -3429,8 +3460,8 @@ msgid "Saved as draft."
|
|
3429 |
msgstr ""
|
3430 |
|
3431 |
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:199
|
3432 |
-
#: views/b2s/post.calendar.php:
|
3433 |
-
#: views/b2s/ship.php:
|
3434 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
3435 |
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
|
3436 |
#: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
|
@@ -3454,27 +3485,27 @@ msgstr ""
|
|
3454 |
msgid "Schedule curated content"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: views/b2s/curation.php:179 views/b2s/post.calendar.php:
|
3458 |
-
#: views/b2s/ship.php:
|
3459 |
msgid "Schedule for specific dates"
|
3460 |
msgstr ""
|
3461 |
|
3462 |
-
#: views/b2s/curation.php:182 views/b2s/post.calendar.php:
|
3463 |
-
#: views/b2s/ship.php:
|
3464 |
msgid "Schedule post recurrently"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: includes/B2S/Ship/Item.php:
|
3468 |
msgid "Schedule Recurrent Post"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: views/b2s/ship.php:
|
3472 |
msgid "Schedule your post"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:198
|
3476 |
-
#: views/b2s/post.calendar.php:
|
3477 |
-
#: views/b2s/ship.php:
|
3478 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
3479 |
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
|
3480 |
#: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
|
@@ -3483,8 +3514,8 @@ msgid "Schedule your post for one time, multiple times or recurrently"
|
|
3483 |
msgstr ""
|
3484 |
|
3485 |
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:196
|
3486 |
-
#: views/b2s/post.calendar.php:
|
3487 |
-
#: views/b2s/ship.php:
|
3488 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
3489 |
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
|
3490 |
#: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
|
@@ -3498,22 +3529,22 @@ msgid ""
|
|
3498 |
"multiple times or recurrently"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: views/b2s/post.calendar.php:
|
3502 |
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:381
|
3503 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3504 |
msgid "scheduled"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: includes/B2S/AutoPost/Item.php:
|
3508 |
msgid "Scheduled Auto-Posting"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
-
#: includes/B2S/Post/Item.php:
|
3512 |
#, php-format
|
3513 |
msgid "scheduled by %s"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: includes/B2S/Ship/Save.php:
|
3517 |
msgid "scheduled on"
|
3518 |
msgstr ""
|
3519 |
|
@@ -3521,12 +3552,12 @@ msgstr ""
|
|
3521 |
msgid "scheduled post(s)"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: includes/Loader.php:
|
3525 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
3526 |
msgid "Scheduled Posts"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
-
#: views/b2s/network.php:
|
3530 |
msgid "scheduled posts"
|
3531 |
msgstr ""
|
3532 |
|
@@ -3535,15 +3566,15 @@ msgstr ""
|
|
3535 |
msgid "scheduled social media posts"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: views/b2s/ship.php:
|
3539 |
msgid "scroll to bottom"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: views/b2s/ship.php:
|
3543 |
msgid "scroll to top"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: includes/Tools.php:
|
3547 |
msgid "Search"
|
3548 |
msgstr ""
|
3549 |
|
@@ -3561,11 +3592,11 @@ msgid ""
|
|
3561 |
"Edit scheduled posts or add new social media posts per drag & drop."
|
3562 |
msgstr ""
|
3563 |
|
3564 |
-
#: views/b2s/post.calendar.php:
|
3565 |
msgid "select"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: views/b2s/post.calendar.php:
|
3569 |
msgid "Select a post"
|
3570 |
msgstr ""
|
3571 |
|
@@ -3573,31 +3604,35 @@ msgstr ""
|
|
3573 |
msgid "Select a user"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: includes/B2S/AutoPost/Item.php:
|
3577 |
msgid "Select all"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: includes/B2S/Post/Item.php:736 includes/B2S/Post/Item.php:
|
3581 |
-
#: includes/B2S/Post/Item.php:
|
3582 |
msgid "select all"
|
3583 |
msgstr ""
|
3584 |
|
|
|
|
|
|
|
|
|
3585 |
#: views/prg/ship.php:36
|
3586 |
msgid "Select Image"
|
3587 |
msgstr ""
|
3588 |
|
3589 |
-
#: views/b2s/curation.php:
|
3590 |
msgid "Select image"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#: views/b2s/post.calendar.php:
|
3594 |
-
#: views/b2s/repost.php:
|
3595 |
msgid "Select image for"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:201
|
3599 |
-
#: views/b2s/post.calendar.php:
|
3600 |
-
#: views/b2s/ship.php:
|
3601 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
3602 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
3603 |
#: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
|
@@ -3612,8 +3647,8 @@ msgid ""
|
|
3612 |
msgstr ""
|
3613 |
|
3614 |
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:200
|
3615 |
-
#: views/b2s/post.calendar.php:
|
3616 |
-
#: views/b2s/ship.php:
|
3617 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
3618 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
3619 |
#: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
|
@@ -3633,21 +3668,25 @@ msgid ""
|
|
3633 |
"your post."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: includes/B2S/PostBox.php:253 includes/B2S/AutoPost/Item.php:
|
3637 |
#: includes/B2S/Curation/View.php:73 includes/B2S/RePost/Item.php:159
|
3638 |
msgid "Select network collection:"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
-
#: views/b2s/autopost.php:48 views/b2s/settings.php:
|
3642 |
#: includes/B2S/Ship/Image.php:100
|
3643 |
msgid "Select or upload an image from media gallery"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: views/b2s/network.php:
|
3647 |
-
#: views/b2s/ship.php:
|
3648 |
msgid "Select Pinboard"
|
3649 |
msgstr ""
|
3650 |
|
|
|
|
|
|
|
|
|
3651 |
#: views/b2s/html/footer.php:328
|
3652 |
msgid ""
|
3653 |
"Select the content that will be automatically pre-filled in your Twitter "
|
@@ -3659,17 +3698,17 @@ msgstr ""
|
|
3659 |
msgid "Select the preferred custom post format for your posts"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: includes/B2S/AutoPost/Item.php:
|
3663 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:73
|
3667 |
-
#: views/b2s/repost.php:
|
3668 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
3669 |
msgid "Select Twitter profile:"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: includes/B2S/AutoPost/Item.php:
|
3673 |
msgid ""
|
3674 |
"Select your preferred network collection for autoposting. This collection "
|
3675 |
"defines the social media accounts on which the autoposter will share your "
|
@@ -3680,34 +3719,42 @@ msgstr ""
|
|
3680 |
msgid "selected date"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: views/b2s/network.php:
|
3684 |
msgid "Server-Location"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3688 |
msgid ""
|
3689 |
"Set up your autoposter to automatically share your imported posts, pages and "
|
3690 |
"custom post types on your social media channels."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: includes/B2S/AutoPost/Item.php:
|
3694 |
msgid ""
|
3695 |
"Set up your autoposter to automatically share your new or updated posts, "
|
3696 |
"pages and custom post types on your social media channels."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: includes/Loader.php:
|
3700 |
-
#: includes/Loader.php:
|
3701 |
#: views/b2s/html/sidebar.php:137
|
3702 |
msgid "Settings"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: views/b2s/ship.php:
|
3706 |
#: includes/B2S/Curation/View.php:113
|
3707 |
msgid "Share"
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#: includes/B2S/Post/Item.php:
|
3711 |
msgid "share"
|
3712 |
msgstr ""
|
3713 |
|
@@ -3733,11 +3780,11 @@ msgid ""
|
|
3733 |
"content."
|
3734 |
msgstr ""
|
3735 |
|
3736 |
-
#: views/b2s/ship.php:
|
3737 |
msgid "Share new post on Social Media"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
-
#: includes/B2S/Ship/Item.php:
|
3741 |
msgid "Share Now"
|
3742 |
msgstr ""
|
3743 |
|
@@ -3750,8 +3797,8 @@ msgid "Share on multiple accounts per network"
|
|
3750 |
msgstr ""
|
3751 |
|
3752 |
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:194
|
3753 |
-
#: views/b2s/post.calendar.php:
|
3754 |
-
#: views/b2s/ship.php:
|
3755 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
3756 |
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
|
3757 |
#: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
|
@@ -3779,11 +3826,11 @@ msgstr ""
|
|
3779 |
msgid "Share text posts:"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#: includes/B2S/AutoPost/Item.php:
|
3783 |
msgid "share up to"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
-
#: includes/Loader.php:
|
3787 |
msgid "Share Website & Blog Content"
|
3788 |
msgstr ""
|
3789 |
|
@@ -3811,7 +3858,7 @@ msgid ""
|
|
3811 |
"Medium."
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#: views/b2s/post.calendar.php:
|
3815 |
msgid "Share your WordPress posts, pages or products"
|
3816 |
msgstr ""
|
3817 |
|
@@ -3819,7 +3866,7 @@ msgstr ""
|
|
3819 |
msgid "Shared"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#: includes/B2S/Post/Item.php:
|
3823 |
#, php-format
|
3824 |
msgid "shared by %s"
|
3825 |
msgstr ""
|
@@ -3828,7 +3875,7 @@ msgstr ""
|
|
3828 |
msgid "shared by user"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: includes/Loader.php:
|
3832 |
#: views/b2s/html/sidebar.php:125
|
3833 |
msgid "Shared Posts"
|
3834 |
msgstr ""
|
@@ -3845,7 +3892,7 @@ msgstr ""
|
|
3845 |
msgid "Sharing"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: includes/B2S/Post/Item.php:
|
3849 |
#, php-format
|
3850 |
msgid "sharing in progress by %s"
|
3851 |
msgstr ""
|
@@ -3867,7 +3914,7 @@ msgstr ""
|
|
3867 |
msgid "Sharing-Debugger"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: includes/B2S/Settings/Item.php:
|
3871 |
msgid "Shortcodes"
|
3872 |
msgstr ""
|
3873 |
|
@@ -3887,7 +3934,7 @@ msgstr ""
|
|
3887 |
msgid "Show all"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: views/b2s/post.calendar.php:
|
3891 |
msgid "show all"
|
3892 |
msgstr ""
|
3893 |
|
@@ -3899,7 +3946,7 @@ msgstr ""
|
|
3899 |
msgid "show calendar"
|
3900 |
msgstr ""
|
3901 |
|
3902 |
-
#: includes/Loader.php:
|
3903 |
msgid "show details"
|
3904 |
msgstr ""
|
3905 |
|
@@ -3915,36 +3962,36 @@ msgstr ""
|
|
3915 |
msgid "Sign in"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: views/b2s/network.php:
|
3919 |
msgid "Sign in to Pinterest"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: includes/Loader.php:
|
3923 |
msgid "Site & Blog Content"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
-
#: includes/Tools.php:
|
3927 |
msgid "Slovakia"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: views/b2s/network.php:
|
3931 |
-
#: includes/B2S/AutoPost/Item.php:
|
3932 |
#: includes/B2S/Network/Item.php:179 includes/B2S/Network/Item.php:188
|
3933 |
#: includes/B2S/Network/Item.php:198 includes/B2S/Network/Item.php:299
|
3934 |
#: includes/B2S/Network/Item.php:369 includes/B2S/Network/Item.php:435
|
3935 |
-
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:
|
3936 |
-
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:
|
3937 |
#: includes/B2S/Ship/Portale.php:37 views/b2s/html/post.navbar.php:18
|
3938 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/post.navbar.php:23
|
3939 |
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
3940 |
msgid "SMART"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: views/b2s/network.php:
|
3944 |
msgid "Smart: 3 (per user)"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: includes/Tools.php:
|
3948 |
msgid "Smileys & People"
|
3949 |
msgstr ""
|
3950 |
|
@@ -3952,7 +3999,7 @@ msgstr ""
|
|
3952 |
msgid "Sniply"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: views/b2s/ship.php:
|
3956 |
msgid "Social Accounts"
|
3957 |
msgstr ""
|
3958 |
|
@@ -3969,7 +4016,7 @@ msgstr ""
|
|
3969 |
msgid "Social Media Calendar"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#: views/b2s/settings.php:
|
3973 |
msgid "Social Media Networks"
|
3974 |
msgstr ""
|
3975 |
|
@@ -3977,12 +4024,12 @@ msgstr ""
|
|
3977 |
msgid "Social Media Post"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
-
#: includes/Loader.php:
|
3981 |
msgid "Social Media Post Drafts"
|
3982 |
msgstr ""
|
3983 |
|
3984 |
-
#: includes/Loader.php:
|
3985 |
-
#: views/b2s/curation.php:
|
3986 |
msgid "Social Media Posts"
|
3987 |
msgstr ""
|
3988 |
|
@@ -3990,15 +4037,15 @@ msgstr ""
|
|
3990 |
msgid "social media posts ready to be shared"
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: views/b2s/ship.php:
|
3994 |
msgid "Social Media Scheduling & Sharing"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#: views/b2s/settings.php:
|
3998 |
msgid "Social Media Time Settings"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: views/b2s/settings.php:
|
4002 |
msgid "Social Meta Data"
|
4003 |
msgstr ""
|
4004 |
|
@@ -4010,7 +4057,7 @@ msgstr ""
|
|
4010 |
msgid "Social Networks"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: views/b2s/settings.php:
|
4014 |
#, php-format
|
4015 |
msgid ""
|
4016 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
@@ -4032,19 +4079,19 @@ msgstr ""
|
|
4032 |
msgid "sort"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: views/b2s/post.calendar.php:
|
4036 |
msgid "Sort by network"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: includes/Tools.php:
|
4040 |
msgid "South Africa"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: includes/Tools.php:
|
4044 |
msgid "Spain"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: includes/B2S/Ship/Item.php:
|
4048 |
msgid "Start date"
|
4049 |
msgstr ""
|
4050 |
|
@@ -4090,15 +4137,15 @@ msgstr ""
|
|
4090 |
msgid "Successfully saved"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: includes/B2S/Settings/Item.php:
|
4094 |
msgid "Summary"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: includes/B2S/Settings/Item.php:
|
4098 |
msgid "Summary with large image"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:
|
4102 |
msgid "Sun"
|
4103 |
msgstr ""
|
4104 |
|
@@ -4106,7 +4153,7 @@ msgstr ""
|
|
4106 |
msgid "Sunday"
|
4107 |
msgstr ""
|
4108 |
|
4109 |
-
#: includes/Loader.php:
|
4110 |
msgid "Support"
|
4111 |
msgstr ""
|
4112 |
|
@@ -4114,23 +4161,23 @@ msgstr ""
|
|
4114 |
msgid "Supported HTML tags"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
-
#: includes/Tools.php:
|
4118 |
msgid "Sweden"
|
4119 |
msgstr ""
|
4120 |
|
4121 |
-
#: includes/Tools.php:
|
4122 |
msgid "Switzerland"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#: includes/Tools.php:
|
4126 |
msgid "Symbols"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: includes/B2S/Settings/Item.php:
|
4130 |
msgid "System"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: views/b2s/network.php:
|
4134 |
msgid "Team Management"
|
4135 |
msgstr ""
|
4136 |
|
@@ -4154,7 +4201,7 @@ msgstr ""
|
|
4154 |
msgid "Text Post"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
-
#: views/b2s/curation.php:
|
4158 |
msgid ""
|
4159 |
"Text posts enable you to share pure text messages and personal comments with "
|
4160 |
"your followers and readers. You can also customize your posts with "
|
@@ -4188,15 +4235,15 @@ msgid ""
|
|
4188 |
"Facebook (page and group) and on Twitter."
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: views/b2s/network.php:
|
4192 |
msgid "The connection does not exist."
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: views/b2s/network.php:
|
4196 |
msgid "The connection has already been assigned to this user."
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: views/b2s/network.php:
|
4200 |
msgid ""
|
4201 |
"The connection is still assigned to other users. Please withdraw the "
|
4202 |
"assigned connection from other users first."
|
@@ -4208,7 +4255,7 @@ msgid ""
|
|
4208 |
"information and solutions in the"
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: views/b2s/ship.php:
|
4212 |
msgid ""
|
4213 |
"The connection to the server failed. Please try again! You can find more "
|
4214 |
"information and solutions in the guide for server connection"
|
@@ -4222,7 +4269,7 @@ msgid ""
|
|
4222 |
"webmaster, if this error message persists."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: includes/Loader.php:
|
4226 |
#, php-format
|
4227 |
msgid ""
|
4228 |
"The connection to your social media account is interrupted. Please check "
|
@@ -4231,18 +4278,18 @@ msgid ""
|
|
4231 |
"your social media account."
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: views/b2s/network.php:
|
4235 |
msgid "The content of your post"
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: includes/Loader.php:
|
4239 |
#, php-format
|
4240 |
msgid ""
|
4241 |
"The content of your post could not be approved by the network. Please see "
|
4242 |
"the following <a target=\"_blank\" href=\"%s\">guide</a>."
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: includes/B2S/Settings/Item.php:
|
4246 |
msgid "The default card type to use"
|
4247 |
msgstr ""
|
4248 |
|
@@ -4252,18 +4299,18 @@ msgid ""
|
|
4252 |
"the free trial."
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: includes/B2S/Ship/Item.php:
|
4256 |
msgid "The Headline..."
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: includes/B2S/Settings/Item.php:
|
4260 |
msgid ""
|
4261 |
"The image preview will be cropped automatically to fit the default Instagram "
|
4262 |
"layout for your Instagram timeline. The image will be shown uncropped when "
|
4263 |
"opening the preview page for your Instagram post."
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: includes/B2S/Settings/Item.php:
|
4267 |
msgid "The image will be changed"
|
4268 |
msgstr ""
|
4269 |
|
@@ -4275,7 +4322,7 @@ msgstr ""
|
|
4275 |
msgid "The license has been successfully activated."
|
4276 |
msgstr ""
|
4277 |
|
4278 |
-
#: includes/B2S/Settings/Item.php:
|
4279 |
msgid ""
|
4280 |
"The link post format displays posts title, link address and the first one or "
|
4281 |
"two sentences of the post. The networks scan this information from your META "
|
@@ -4287,11 +4334,11 @@ msgid ""
|
|
4287 |
"first image detected on your page. The image links to your blog post."
|
4288 |
msgstr ""
|
4289 |
|
4290 |
-
#: includes/B2S/Network/Item.php:
|
4291 |
msgid "The link will be added automatically at the end of the post."
|
4292 |
msgstr ""
|
4293 |
|
4294 |
-
#: includes/B2S/Network/Item.php:
|
4295 |
msgid ""
|
4296 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
4297 |
"your page, in order to refer to the original source of the content and to "
|
@@ -4302,43 +4349,43 @@ msgstr ""
|
|
4302 |
msgid "The link you followed has expired. Please refresh your page."
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: views/b2s/network.php:
|
4306 |
-
#: views/b2s/ship.php:
|
4307 |
msgid ""
|
4308 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
4309 |
"sign in to Pinterest using the Blog2Social browser extension."
|
4310 |
msgstr ""
|
4311 |
|
4312 |
-
#: views/b2s/network.php:
|
4313 |
msgid "The name of the post author."
|
4314 |
msgstr ""
|
4315 |
|
4316 |
-
#: includes/Loader.php:
|
4317 |
#, php-format
|
4318 |
msgid ""
|
4319 |
"The network can not publish special characters such as Emoji. Please see the "
|
4320 |
"following <a target=\"_blank\" href=\"%s\">guide</a>."
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: includes/Loader.php:
|
4324 |
#, php-format
|
4325 |
msgid ""
|
4326 |
"The network could not publish your post. Please see the following <a "
|
4327 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: includes/B2S/Network/Item.php:
|
4331 |
msgid "The network does not support hashtags."
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: includes/Loader.php:
|
4335 |
#, php-format
|
4336 |
msgid ""
|
4337 |
"The network has blocked your account. Please see the following <a "
|
4338 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: includes/Loader.php:
|
4342 |
msgid "The network requires a public url."
|
4343 |
msgstr ""
|
4344 |
|
@@ -4348,7 +4395,7 @@ msgid ""
|
|
4348 |
"image format and will display your standard image instead."
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: includes/Loader.php:
|
4352 |
#, php-format
|
4353 |
msgid ""
|
4354 |
"The number of images is reached. Please see the following <a "
|
@@ -4363,10 +4410,17 @@ msgstr ""
|
|
4363 |
msgid "The page and post meta data could not be removed."
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: views/b2s/network.php:
|
4367 |
msgid "The parameters could not be saved. Please try again."
|
4368 |
msgstr ""
|
4369 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4370 |
#: views/b2s/html/header.php:227
|
4371 |
msgid ""
|
4372 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
@@ -4379,23 +4433,23 @@ msgid ""
|
|
4379 |
"and events with one click.Publish your message over 250 portals."
|
4380 |
msgstr ""
|
4381 |
|
4382 |
-
#: views/b2s/network.php:
|
4383 |
msgid ""
|
4384 |
"The price of your product, if you have installed WooCommerce on your "
|
4385 |
"website/ blog."
|
4386 |
msgstr ""
|
4387 |
|
4388 |
-
#: includes/B2S/AutoPost/Item.php:
|
4389 |
msgid ""
|
4390 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
4391 |
"admin."
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: views/b2s/network.php:
|
4395 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: views/b2s/network.php:
|
4399 |
msgid "The tags you have set in your post."
|
4400 |
msgstr ""
|
4401 |
|
@@ -4411,7 +4465,7 @@ msgid ""
|
|
4411 |
"target=\"_blank\">The Best Times to Post on Social Media</a>\"."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: views/b2s/network.php:
|
4415 |
msgid "The title of your post"
|
4416 |
msgstr ""
|
4417 |
|
@@ -4422,23 +4476,23 @@ msgid ""
|
|
4422 |
"Wordpress."
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: views/b2s/network.php:
|
4426 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: views/b2s/network.php:
|
4430 |
msgid "There are no other users to whom the connection can be assigned."
|
4431 |
msgstr ""
|
4432 |
|
4433 |
-
#: includes/Loader.php:
|
4434 |
-
#: includes/B2S/AutoPost/Item.php:
|
4435 |
msgid ""
|
4436 |
"There are no social network accounts assigned to your selected network "
|
4437 |
"collection. Please assign at least one social network account or select "
|
4438 |
"another network collection."
|
4439 |
msgstr ""
|
4440 |
|
4441 |
-
#: views/b2s/ship.php:
|
4442 |
msgid ""
|
4443 |
"There is already a saved draft for this WordPress post or page. If you save "
|
4444 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
@@ -4452,13 +4506,13 @@ msgid ""
|
|
4452 |
"anymore. Do you want your press release to be published now?"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#: views/b2s/ship.php:
|
4456 |
msgid ""
|
4457 |
"This allows you to adjust your network selection at any time and save it by "
|
4458 |
"clicking on \"Save network selection\"."
|
4459 |
msgstr ""
|
4460 |
|
4461 |
-
#: views/b2s/network.php:
|
4462 |
msgid "This connection has already been assigned to this user."
|
4463 |
msgstr ""
|
4464 |
|
@@ -4470,23 +4524,23 @@ msgstr ""
|
|
4470 |
msgid "This entry was removed successfully."
|
4471 |
msgstr ""
|
4472 |
|
4473 |
-
#: includes/B2S/Settings/Item.php:
|
4474 |
msgid ""
|
4475 |
"This is a global feature for your blog, which can only be edited by users "
|
4476 |
"with admin rights."
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#: includes/B2S/Settings/Item.php:
|
4480 |
msgid ""
|
4481 |
"This is a global system setting for your website / blog, which can be "
|
4482 |
"edited by users with admin rights only."
|
4483 |
msgstr ""
|
4484 |
|
4485 |
-
#: includes/B2S/Ship/Save.php:
|
4486 |
msgid "This is how it works:"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
-
#: views/b2s/network.php:
|
4490 |
msgid "This network connection is still assigned to other users."
|
4491 |
msgstr ""
|
4492 |
|
@@ -4498,35 +4552,35 @@ msgstr ""
|
|
4498 |
msgid "This post was edited successfully."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
-
#: includes/Loader.php:
|
4502 |
msgid "This post will be shared into your social media from"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
-
#: includes/Loader.php:
|
4506 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
-
#: includes/B2S/Network/Item.php:
|
4510 |
msgid ""
|
4511 |
"This social network displays the predefined hashtags as clickable tags at "
|
4512 |
"the end of your post."
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: views/b2s/network.php:
|
4516 |
msgid "This user don't have a Business License, or it is not the same"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#: views/b2s/network.php:
|
4520 |
msgid "This user has reached the maximum number of connections."
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#: includes/Loader.php:
|
4524 |
msgid ""
|
4525 |
"This XING API is no longer supported by XING. Please connect your XING "
|
4526 |
"accounts with the new XING interface to reschedule your posts."
|
4527 |
msgstr ""
|
4528 |
|
4529 |
-
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:
|
4530 |
msgid "Thu"
|
4531 |
msgstr ""
|
4532 |
|
@@ -4534,16 +4588,16 @@ msgstr ""
|
|
4534 |
msgid "Thursday"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: includes/B2S/Ship/Item.php:
|
4538 |
#: views/b2s/partials/post-edit-modal.php:71
|
4539 |
msgid "Time"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: includes/B2S/Ship/Item.php:
|
4543 |
msgid "Time to publish"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: views/b2s/ship.php:
|
4547 |
msgid "Time zone"
|
4548 |
msgstr ""
|
4549 |
|
@@ -4551,17 +4605,17 @@ msgstr ""
|
|
4551 |
msgid "times"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: includes/B2S/Ship/Item.php:
|
4555 |
msgid "Timespan"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: includes/B2S/Settings/Item.php:
|
4559 |
msgid "Timezone for Scheduling"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: views/b2s/ship.php:
|
4563 |
-
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:
|
4564 |
-
#: includes/B2S/Settings/Item.php:
|
4565 |
#: views/prg/html/form.php:28
|
4566 |
msgid "Title"
|
4567 |
msgstr ""
|
@@ -4570,17 +4624,17 @@ msgstr ""
|
|
4570 |
msgid "title"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
-
#: views/b2s/settings.php:
|
4574 |
msgid "Title: The title of your post."
|
4575 |
msgstr ""
|
4576 |
|
4577 |
-
#: views/b2s/autopost.php:76 views/b2s/repost.php:
|
4578 |
msgid ""
|
4579 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
4580 |
"be sent to your primary Twitter profile."
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
#: views/b2s/ship.php:
|
4584 |
#, php-format
|
4585 |
msgid ""
|
4586 |
"To define and save more network selections for your posting purposes, you "
|
@@ -4615,7 +4669,7 @@ msgstr ""
|
|
4615 |
msgid "To select an individual image from your media library,"
|
4616 |
msgstr ""
|
4617 |
|
4618 |
-
#: includes/Loader.php:
|
4619 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
4620 |
msgstr ""
|
4621 |
|
@@ -4625,7 +4679,7 @@ msgid ""
|
|
4625 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
4626 |
msgstr ""
|
4627 |
|
4628 |
-
#: includes/B2S/AutoPost/Item.php:
|
4629 |
msgid "Transfer Auto-Poster settings to other users"
|
4630 |
msgstr ""
|
4631 |
|
@@ -4633,7 +4687,7 @@ msgstr ""
|
|
4633 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
4634 |
msgstr ""
|
4635 |
|
4636 |
-
#: includes/Tools.php:
|
4637 |
msgid "Travel & Places"
|
4638 |
msgstr ""
|
4639 |
|
@@ -4645,7 +4699,7 @@ msgstr ""
|
|
4645 |
msgid "Troubleshooting-Tool"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
4649 |
msgid "Tue"
|
4650 |
msgstr ""
|
4651 |
|
@@ -4653,7 +4707,7 @@ msgstr ""
|
|
4653 |
msgid "Tuesday"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
-
#: includes/Tools.php:
|
4657 |
msgid "Turkey"
|
4658 |
msgstr ""
|
4659 |
|
@@ -4682,27 +4736,20 @@ msgid ""
|
|
4682 |
"selection.</a>"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: views/b2s/repost.php:
|
4686 |
#, php-format
|
4687 |
msgid ""
|
4688 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
4689 |
"is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
|
4690 |
msgstr ""
|
4691 |
|
4692 |
-
#: views/b2s/curation.php:292
|
4693 |
-
#, php-format
|
4694 |
-
msgid ""
|
4695 |
-
"Under the <a href=\"%s\">Network Settings</a> you can define the network "
|
4696 |
-
"selection."
|
4697 |
-
msgstr ""
|
4698 |
-
|
4699 |
#: views/prg/html/header.php:28
|
4700 |
msgid ""
|
4701 |
"Unfortunately, your request cannot be processed by Blog2Social. Please try "
|
4702 |
"again!"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
-
#: includes/Tools.php:
|
4706 |
msgid "United States of America"
|
4707 |
msgstr ""
|
4708 |
|
@@ -4714,7 +4761,7 @@ msgstr ""
|
|
4714 |
msgid "Unknown error has occurred. Please try again."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: includes/Ajax/Post.php:
|
4718 |
#: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:325
|
4719 |
#: includes/B2S/Network/Item.php:396 includes/B2S/Network/Item.php:526
|
4720 |
msgid "Unknown username"
|
@@ -4726,7 +4773,7 @@ msgid ""
|
|
4726 |
"and text posts from any source."
|
4727 |
msgstr ""
|
4728 |
|
4729 |
-
#: includes/B2S/AutoPost/Item.php:
|
4730 |
msgid "Unselect all"
|
4731 |
msgstr ""
|
4732 |
|
@@ -4738,12 +4785,12 @@ msgstr ""
|
|
4738 |
msgid "Update..."
|
4739 |
msgstr ""
|
4740 |
|
4741 |
-
#: includes/B2S/AutoPost/Item.php:
|
4742 |
msgid "updated posts"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
-
#: views/b2s/premium.php:31 includes/B2S/AutoPost/Item.php:
|
4746 |
-
#: includes/B2S/AutoPost/Item.php:
|
4747 |
msgid "Upgrade"
|
4748 |
msgstr ""
|
4749 |
|
@@ -4751,11 +4798,11 @@ msgstr ""
|
|
4751 |
msgid "Upgrade License"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: views/b2s/network.php:
|
4755 |
msgid "Upgrade to Blog2Social Business"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
-
#: views/b2s/network.php:
|
4759 |
msgid ""
|
4760 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
4761 |
"network collection and assign your social media connections to other blog "
|
@@ -4800,12 +4847,12 @@ msgstr ""
|
|
4800 |
msgid "Upgrade to PREMIUM"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#: includes/Loader.php:
|
4804 |
#: views/b2s/html/sidebar.ship.php:44
|
4805 |
msgid "Upgrade to Premium"
|
4806 |
msgstr ""
|
4807 |
|
4808 |
-
#: includes/B2S/Settings/Item.php:
|
4809 |
msgid "Upgrade to Premium Pro now."
|
4810 |
msgstr ""
|
4811 |
|
@@ -4815,8 +4862,8 @@ msgid "Upgrade to PRO and above"
|
|
4815 |
msgstr ""
|
4816 |
|
4817 |
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:204
|
4818 |
-
#: views/b2s/post.calendar.php:
|
4819 |
-
#: views/b2s/ship.php:
|
4820 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
4821 |
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
|
4822 |
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
@@ -4824,11 +4871,11 @@ msgstr ""
|
|
4824 |
msgid "Upgrade to SMART and above"
|
4825 |
msgstr ""
|
4826 |
|
4827 |
-
#: views/b2s/network.php:
|
4828 |
msgid "URL Parameters"
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: includes/B2S/Settings/Item.php:
|
4832 |
msgid "Url Shortener"
|
4833 |
msgstr ""
|
4834 |
|
@@ -4845,7 +4892,7 @@ msgstr ""
|
|
4845 |
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
4846 |
msgstr ""
|
4847 |
|
4848 |
-
#: views/b2s/autopost.php:49 views/b2s/settings.php:
|
4849 |
#: includes/B2S/Ship/Image.php:101
|
4850 |
msgid "Use image"
|
4851 |
msgstr ""
|
@@ -4856,14 +4903,14 @@ msgid ""
|
|
4856 |
"your own best time scheme."
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#: views/b2s/settings.php:
|
4860 |
msgid ""
|
4861 |
"Use the pre-defined best time settings or define your own best time settings "
|
4862 |
"for sharing your posts . Posting at the right time can be essential to make "
|
4863 |
"sure your content is most likely be seen."
|
4864 |
msgstr ""
|
4865 |
|
4866 |
-
#: includes/B2S/Settings/Item.php:
|
4867 |
msgid "User"
|
4868 |
msgstr ""
|
4869 |
|
@@ -4899,11 +4946,11 @@ msgstr ""
|
|
4899 |
msgid "Video Post"
|
4900 |
msgstr ""
|
4901 |
|
4902 |
-
#: views/b2s/network.php:
|
4903 |
msgid "View schedule posts"
|
4904 |
msgstr ""
|
4905 |
|
4906 |
-
#: includes/B2S/Ship/Save.php:
|
4907 |
msgid "view social media post"
|
4908 |
msgstr ""
|
4909 |
|
@@ -4914,15 +4961,15 @@ msgid ""
|
|
4914 |
"duplicate posts."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
-
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:
|
4918 |
-
#: includes/B2S/Ship/Item.php:
|
4919 |
msgid ""
|
4920 |
"Violating these rules can result in Twitter suspending your account. Always "
|
4921 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
4922 |
"duplicate posts."
|
4923 |
msgstr ""
|
4924 |
|
4925 |
-
#: includes/Loader.php:
|
4926 |
msgid ""
|
4927 |
"We don't have the permission to publish your post. Please check your "
|
4928 |
"authorization."
|
@@ -4949,7 +4996,7 @@ msgstr ""
|
|
4949 |
msgid "Website & Blog Content"
|
4950 |
msgstr ""
|
4951 |
|
4952 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:
|
4953 |
msgid "Wed"
|
4954 |
msgstr ""
|
4955 |
|
@@ -4957,19 +5004,19 @@ msgstr ""
|
|
4957 |
msgid "Wednesday"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
-
#: includes/B2S/Ship/Item.php:
|
4961 |
msgid "Week"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
-
#: includes/B2S/Ship/Item.php:
|
4965 |
msgid "weekly"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
-
#: includes/B2S/Ship/Item.php:
|
4969 |
msgid "Weeks"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
-
#: views/b2s/post.calendar.php:
|
4973 |
msgid "What would you like to share?"
|
4974 |
msgstr ""
|
4975 |
|
@@ -4981,7 +5028,7 @@ msgstr ""
|
|
4981 |
msgid "When should your content be shared?"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
-
#: views/b2s/network.php:
|
4985 |
#, php-format
|
4986 |
msgid ""
|
4987 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
@@ -4994,8 +5041,8 @@ msgid ""
|
|
4994 |
" How to connect with Instagram.</a>."
|
4995 |
msgstr ""
|
4996 |
|
4997 |
-
#: views/b2s/curation.php:186 views/b2s/post.calendar.php:
|
4998 |
-
#: views/b2s/ship.php:
|
4999 |
msgid ""
|
5000 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
5001 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -5036,8 +5083,8 @@ msgid "With Blog2Social Premium PRO you can post multiple images."
|
|
5036 |
msgstr ""
|
5037 |
|
5038 |
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:190
|
5039 |
-
#: views/b2s/post.calendar.php:
|
5040 |
-
#: views/b2s/ship.php:
|
5041 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
5042 |
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
|
5043 |
#: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
|
@@ -5045,7 +5092,7 @@ msgstr ""
|
|
5045 |
msgid "With Blog2Social Premium you can:"
|
5046 |
msgstr ""
|
5047 |
|
5048 |
-
#: views/b2s/network.php:
|
5049 |
msgid ""
|
5050 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
5051 |
"your posts on your favourite social media accounts automatically."
|
@@ -5086,6 +5133,13 @@ msgid ""
|
|
5086 |
"image for your link post without Twitter Card meta tags."
|
5087 |
msgstr ""
|
5088 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5089 |
#: views/b2s/curation.php:226
|
5090 |
msgid ""
|
5091 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
@@ -5111,7 +5165,7 @@ msgid ""
|
|
5111 |
"content to be shared automatically."
|
5112 |
msgstr ""
|
5113 |
|
5114 |
-
#: includes/B2S/Settings/Item.php:
|
5115 |
msgid ""
|
5116 |
"With Premium Pro, you can change the custom post format photo post or link "
|
5117 |
"post for each individual social media post and channel (profile, page, group)"
|
@@ -5121,8 +5175,8 @@ msgstr ""
|
|
5121 |
#: views/b2s/html/header.php:65
|
5122 |
msgid ""
|
5123 |
"WordPress session timeout: For security reasons, WordPress will let your "
|
5124 |
-
"session expire automatically if your site has been inactive for a while. "
|
5125 |
-
"Please reload this page to go on with your current action
|
5126 |
msgstr ""
|
5127 |
|
5128 |
#: includes/B2S/PostBox.php:144
|
@@ -5144,11 +5198,12 @@ msgstr ""
|
|
5144 |
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:510
|
5145 |
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:599
|
5146 |
#: includes/B2S/Ship/Item.php:628 includes/B2S/Ship/Item.php:656
|
5147 |
-
#: includes/B2S/Ship/Item.php:684 includes/B2S/Ship/Item.php:
|
5148 |
-
#: includes/B2S/Ship/Item.php:
|
5149 |
-
#: includes/B2S/Ship/Item.php:
|
5150 |
-
#: includes/B2S/Ship/Item.php:
|
5151 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
5152 |
msgid "Write something about your post..."
|
5153 |
msgstr ""
|
5154 |
|
@@ -5162,15 +5217,15 @@ msgid "Yay :) You successfully registered for the Blog2Social Community!"
|
|
5162 |
msgstr ""
|
5163 |
|
5164 |
#: views/b2s/curation.php:159 views/b2s/post.approve.php:114
|
5165 |
-
#: views/b2s/ship.php:
|
5166 |
msgid "YES"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
-
#: views/b2s/curation.draft.php:91 views/b2s/network.php:
|
5170 |
-
#: views/b2s/network.php:
|
5171 |
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:89
|
5172 |
-
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:
|
5173 |
-
#: views/b2s/repost.php:
|
5174 |
#: views/b2s/widgets/posts.php:68
|
5175 |
msgid "YES, delete"
|
5176 |
msgstr ""
|
@@ -5204,7 +5259,7 @@ msgstr ""
|
|
5204 |
msgid "You are sure, you want to delete entries from the reporting?"
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#: views/b2s/post.sched.php:
|
5208 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
5209 |
msgstr ""
|
5210 |
|
@@ -5217,7 +5272,7 @@ msgid ""
|
|
5217 |
"to reach as many followers as possible."
|
5218 |
msgstr ""
|
5219 |
|
5220 |
-
#: views/b2s/network.php:
|
5221 |
msgid ""
|
5222 |
"You can also purchase additional groups and sites as add-on to your active "
|
5223 |
"Blog2Social Premium Pro or Premium Business license:"
|
@@ -5241,13 +5296,13 @@ msgid ""
|
|
5241 |
"editing the following fields for"
|
5242 |
msgstr ""
|
5243 |
|
5244 |
-
#: views/b2s/network.php:
|
5245 |
msgid ""
|
5246 |
"You can only share the connection with blog users who use the same license "
|
5247 |
"as you."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
-
#: views/b2s/ship.php:
|
5251 |
msgid ""
|
5252 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
5253 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -5261,7 +5316,7 @@ msgid ""
|
|
5261 |
"according to your current sharing preferences."
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: views/b2s/ship.php:
|
5265 |
msgid ""
|
5266 |
"You can save your current network selection. This network selection will be "
|
5267 |
"loaded automatically next time you open the social media post editor via "
|
@@ -5275,17 +5330,17 @@ msgid ""
|
|
5275 |
"different sharing purposes."
|
5276 |
msgstr ""
|
5277 |
|
5278 |
-
#: views/b2s/curation.php:
|
5279 |
msgid ""
|
5280 |
-
"You can select to share your post as
|
5281 |
-
"post on the following social networks:"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
-
#: views/b2s/curation.php:
|
5285 |
msgid "You can share a text post on the following networks:"
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: includes/B2S/Settings/Item.php:
|
5289 |
#, php-format
|
5290 |
msgid ""
|
5291 |
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
@@ -5307,11 +5362,11 @@ msgid ""
|
|
5307 |
"deactivated, you can ignore this message."
|
5308 |
msgstr ""
|
5309 |
|
5310 |
-
#: views/b2s/network.php:
|
5311 |
msgid "You don't have a Business License"
|
5312 |
msgstr ""
|
5313 |
|
5314 |
-
#: includes/Loader.php:
|
5315 |
msgid "You have already retweeted this post."
|
5316 |
msgstr ""
|
5317 |
|
@@ -5326,8 +5381,8 @@ msgstr ""
|
|
5326 |
msgid "You have deleted all meta data for posts and pages successfully."
|
5327 |
msgstr ""
|
5328 |
|
5329 |
-
#: views/b2s/curation.php:183 views/b2s/post.calendar.php:
|
5330 |
-
#: views/b2s/ship.php:
|
5331 |
msgid ""
|
5332 |
"You have evergreen content you want to re-share from time to time in your "
|
5333 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
@@ -5354,17 +5409,17 @@ msgstr ""
|
|
5354 |
msgid "You have not saved any favorites."
|
5355 |
msgstr ""
|
5356 |
|
5357 |
-
#: views/b2s/network.php:
|
5358 |
msgid ""
|
5359 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
5360 |
"up at least one pinboard to pin on your Pinterest account!"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: views/b2s/network.php:
|
5364 |
msgid "You have still set up scheduled posts for this network:"
|
5365 |
msgstr ""
|
5366 |
|
5367 |
-
#: views/b2s/autopost.php:18 views/b2s/settings.php:
|
5368 |
#: includes/B2S/Ship/Image.php:29
|
5369 |
msgid ""
|
5370 |
"You need a higher user role to upload an image on this blog. Please contact "
|
@@ -5377,11 +5432,11 @@ msgid ""
|
|
5377 |
"administrator."
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: views/b2s/network.php:
|
5381 |
msgid "You need at least one network collection"
|
5382 |
msgstr ""
|
5383 |
|
5384 |
-
#: views/b2s/ship.php:
|
5385 |
msgid "You want re-share your blog post?"
|
5386 |
msgstr ""
|
5387 |
|
@@ -5397,6 +5452,7 @@ msgstr ""
|
|
5397 |
#: includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:529
|
5398 |
#: includes/B2S/Ship/Item.php:588 includes/B2S/Ship/Item.php:618
|
5399 |
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:674
|
|
|
5400 |
msgid ""
|
5401 |
"You want to change your link image, link title and link description for this "
|
5402 |
"network? Click here."
|
@@ -5417,8 +5473,8 @@ msgstr ""
|
|
5417 |
msgid "You want to connect a social media group?"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: views/b2s/network.php:
|
5421 |
-
#: views/b2s/ship.php:
|
5422 |
#, php-format
|
5423 |
msgid ""
|
5424 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
@@ -5433,46 +5489,46 @@ msgstr ""
|
|
5433 |
msgid "You want to create text posts?"
|
5434 |
msgstr ""
|
5435 |
|
5436 |
-
#: views/b2s/network.php:
|
5437 |
msgid "You want to define a new combination of networks?"
|
5438 |
msgstr ""
|
5439 |
|
5440 |
-
#: includes/B2S/Post/Item.php:
|
5441 |
msgid "You want to delete a publish post entry?"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
-
#: includes/B2S/Post/Item.php:
|
5445 |
msgid "You want to delete your Social Media post?"
|
5446 |
msgstr ""
|
5447 |
|
5448 |
-
#: includes/B2S/Post/Item.php:
|
5449 |
msgid "You want to edit your scheduled post?"
|
5450 |
msgstr ""
|
5451 |
|
5452 |
-
#: views/b2s/ship.php:
|
5453 |
msgid "You want to load your time settings?"
|
5454 |
msgstr ""
|
5455 |
|
5456 |
-
#: views/b2s/curation.php:180 views/b2s/post.calendar.php:
|
5457 |
-
#: views/b2s/ship.php:
|
5458 |
msgid ""
|
5459 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
5460 |
"desired date and you are ready to go!"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
-
#: views/b2s/network.php:
|
5464 |
#: views/b2s/html/footer.php:256
|
5465 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
5466 |
msgstr ""
|
5467 |
|
5468 |
-
#: views/b2s/settings.php:
|
5469 |
#, php-format
|
5470 |
msgid ""
|
5471 |
"You will find more information about the pre-defined best time settings by "
|
5472 |
"Blog2Social in this <a href=\"%s\" target=\"_blank\">best time guide</a>."
|
5473 |
msgstr ""
|
5474 |
|
5475 |
-
#: views/b2s/settings.php:
|
5476 |
#, php-format
|
5477 |
msgid ""
|
5478 |
"You will find more information on how to connect your social media networks "
|
@@ -5480,7 +5536,7 @@ msgid ""
|
|
5480 |
"guide</a>."
|
5481 |
msgstr ""
|
5482 |
|
5483 |
-
#: views/b2s/settings.php:
|
5484 |
#, php-format
|
5485 |
msgid ""
|
5486 |
"You will find more information on how to use post templates for your social "
|
@@ -5506,7 +5562,7 @@ msgstr ""
|
|
5506 |
msgid "Your authorization has been removed successfully."
|
5507 |
msgstr ""
|
5508 |
|
5509 |
-
#: includes/Loader.php:
|
5510 |
msgid ""
|
5511 |
"Your authorization has expired. Please reconnect your account in the "
|
5512 |
"Blog2Social network settings."
|
@@ -5516,11 +5572,11 @@ msgstr ""
|
|
5516 |
msgid "Your authorization was successful."
|
5517 |
msgstr ""
|
5518 |
|
5519 |
-
#: views/b2s/ship.php:
|
5520 |
msgid "Your blog post is not yet published on your Wordpress!"
|
5521 |
msgstr ""
|
5522 |
|
5523 |
-
#: includes/Loader.php:
|
5524 |
msgid ""
|
5525 |
"Your blog post was not available for the network at the time of publishing."
|
5526 |
msgstr ""
|
@@ -5547,7 +5603,7 @@ msgid ""
|
|
5547 |
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
5548 |
msgstr ""
|
5549 |
|
5550 |
-
#: views/b2s/premium.php:14 includes/B2S/AutoPost/Item.php:
|
5551 |
msgid "Your current license:"
|
5552 |
msgstr ""
|
5553 |
|
@@ -5555,12 +5611,12 @@ msgstr ""
|
|
5555 |
msgid "Your daily limit for posting automatically has been reached."
|
5556 |
msgstr ""
|
5557 |
|
5558 |
-
#: includes/Loader.php:
|
5559 |
msgid ""
|
5560 |
"Your daily limit for this network has been reached. Please try again later."
|
5561 |
msgstr ""
|
5562 |
|
5563 |
-
#: includes/Loader.php:
|
5564 |
msgid "Your daily limit has been reached."
|
5565 |
msgstr ""
|
5566 |
|
@@ -5580,7 +5636,7 @@ msgstr ""
|
|
5580 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
5581 |
msgstr ""
|
5582 |
|
5583 |
-
#: includes/Loader.php:
|
5584 |
msgid "Your group can not be found by the network."
|
5585 |
msgstr ""
|
5586 |
|
@@ -5606,19 +5662,27 @@ msgstr ""
|
|
5606 |
msgid "Your message will now be sent over PR gateway to the press portals!"
|
5607 |
msgstr ""
|
5608 |
|
5609 |
-
#: includes/Loader.php:
|
5610 |
msgid ""
|
5611 |
"Your post could not be posted, because your image can not be processed by "
|
5612 |
"the network."
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: includes/Loader.php:
|
5616 |
msgid ""
|
5617 |
"Your post could not be posted, because your image is not available or the "
|
5618 |
"image source does not allow to publish"
|
5619 |
msgstr ""
|
5620 |
|
5621 |
-
#: includes/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5622 |
msgid "Your post is a duplicate."
|
5623 |
msgstr ""
|
5624 |
|
@@ -5641,7 +5705,7 @@ msgstr ""
|
|
5641 |
msgid "Your profiles:"
|
5642 |
msgstr ""
|
5643 |
|
5644 |
-
#: views/b2s/ship.php:
|
5645 |
msgid ""
|
5646 |
"Your saved networks will be activated for your schedule (green checkmark) in "
|
5647 |
"the right side navigation. You can select or deselect social network "
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2021-08-13 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"
|
27 |
msgid " today"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: views/b2s/network.php:330
|
31 |
msgid ""
|
32 |
"\"TITLES\" and \"KEYWORDS\" (Hashtags) are not shortened. If you select the "
|
33 |
"\"TITLE\" and \"KEYWORD\" variables for your social media posts, the "
|
36 |
"network."
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: includes/B2S/Settings/Item.php:201
|
40 |
msgid "(SMART)"
|
41 |
msgstr ""
|
42 |
|
44 |
msgid "+ add Parameter"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: includes/B2S/Ship/Save.php:420
|
48 |
msgid ""
|
49 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
50 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
52 |
"and you can click on \"Share\" to post it to your Facebook Profile instantly."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: includes/B2S/Ship/Save.php:428
|
56 |
msgid ""
|
57 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
58 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
60 |
"tab and you can click on \"Share\" to post it to your account instantly."
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: includes/B2S/Ship/Save.php:419
|
64 |
msgid ""
|
65 |
"-To share your post immediately, click the \"Share\" button next to your "
|
66 |
"selected Facebook profile below."
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/B2S/Ship/Save.php:427
|
70 |
msgid ""
|
71 |
"-To share your post immediately, click the \"Share\" button next to your "
|
72 |
"selected Google+ account below."
|
84 |
msgid "1x publish report"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: views/b2s/network.php:723
|
88 |
#, php-format
|
89 |
msgid ""
|
90 |
"<a href=\"%s\" target=\"_blank\">Get more information on how to add more "
|
91 |
"sites or groups.</a>"
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: includes/Loader.php:1581 includes/System.php:32 includes/System.php:38
|
95 |
#, php-format
|
96 |
msgid ""
|
97 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
130 |
"support account</a> to ask questions or join the discussion."
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: includes/B2S/Settings/Item.php:273 views/b2s/html/footer.php:166
|
134 |
msgid ""
|
135 |
"A photo or image post displays the selected image in the one-page preview of "
|
136 |
"Blog2Social and your comment above the image. The image links to the image "
|
147 |
"any time."
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: views/b2s/network.php:392 views/b2s/ship.php:621
|
151 |
msgid ""
|
152 |
"Access to this resource on your server is denied! Please check your "
|
153 |
"webserver configuration for caching."
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: includes/B2S/Settings/Item.php:54 includes/B2S/Settings/Item.php:89
|
157 |
+
#: includes/B2S/Ship/Item.php:1161
|
158 |
msgid "Account"
|
159 |
msgstr ""
|
160 |
|
170 |
msgid "Activate Instant Caching"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/B2S/Settings/Item.php:116
|
174 |
msgid "activate Legacy mode"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: views/b2s/settings.php:169
|
178 |
msgid "Activate Legacy mode "
|
179 |
msgstr ""
|
180 |
|
186 |
msgid "activated"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/Tools.php:427
|
190 |
msgid "Activities"
|
191 |
msgstr ""
|
192 |
|
193 |
+
#: includes/B2S/Network/Item.php:834
|
194 |
msgid "Add a link-URL to the end of my image post."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/B2S/Network/Item.php:841
|
198 |
msgid ""
|
199 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
200 |
"Instagram does not turn link-URLs into clickable links)"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: includes/B2S/Network/Item.php:853
|
204 |
msgid "Add a link-URL to the end of my post."
|
205 |
msgstr ""
|
206 |
|
210 |
"Twitter Cards to define the look of your link posts."
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: includes/B2S/Ship/Item.php:1330
|
214 |
msgid "add another post"
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: views/b2s/network.php:632 views/b2s/ship.php:739
|
218 |
msgid "Add Group"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: views/b2s/ship.php:127
|
222 |
msgid "Add more..."
|
223 |
msgstr ""
|
224 |
|
228 |
"selected network bundles."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: includes/B2S/Settings/Item.php:144
|
232 |
msgid "Add oEmbed tags"
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: includes/B2S/Settings/Item.php:140
|
236 |
msgid ""
|
237 |
"Add Open Graph meta tags to your shared posts or pages, required by Facebook "
|
238 |
"and other social networks to display your post or page image, title and "
|
239 |
"description correctly."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: views/b2s/network.php:613 views/b2s/ship.php:720
|
243 |
msgid "Add Page"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: views/b2s/post.calendar.php:93 views/b2s/post.sched.php:177
|
247 |
+
#: views/b2s/repost.php:70
|
248 |
msgid "add post"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: views/b2s/network.php:651 views/b2s/ship.php:682
|
252 |
msgid "Add Profile"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: includes/B2S/Ship/Item.php:1180
|
256 |
msgid "Add Retweet"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: views/b2s/ship.php:766
|
260 |
msgid "add Schedule"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/B2S/Settings/Item.php:179
|
264 |
msgid ""
|
265 |
"Add the default Open Graph parameters for title, description and image you "
|
266 |
"want Facebook to display, if you share the frontpage of your blog as link "
|
267 |
"post (http://www.yourblog.com)"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/B2S/Settings/Item.php:195
|
271 |
msgid ""
|
272 |
"Add the default Twitter Card parameters for title, description and image you "
|
273 |
"want Twitter to display, if you share the frontpage of your blog as link "
|
278 |
msgid "Add to queue"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/B2S/Settings/Item.php:142
|
282 |
msgid ""
|
283 |
"Add Twitter Card meta tags to your shared posts or pages, required by "
|
284 |
"Twitter to display your post or page image, title and description correctly."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/B2S/AutoPost/Item.php:245
|
288 |
msgid "add/change connection"
|
289 |
msgstr ""
|
290 |
|
300 |
msgid "additional profiles"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: views/b2s/network.php:453
|
304 |
msgid "Advanced Network Settings"
|
305 |
msgstr ""
|
306 |
|
344 |
msgid "All Types"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#: includes/B2S/Settings/Item.php:110
|
348 |
msgid "allow shortcodes in my post"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: views/b2s/settings.php:155
|
352 |
msgid "Allow shortcodes in my social media posts (e.g. Page Builder)"
|
353 |
msgstr ""
|
354 |
|
361 |
msgid "Also included:"
|
362 |
msgstr ""
|
363 |
|
364 |
+
#: views/b2s/network.php:329
|
365 |
msgid ""
|
366 |
"An \"EXCERPT\" will only be added to your social media post if you have "
|
367 |
"added a manual excerpt in the excerpt editing box of the Gutenberg side menu "
|
368 |
"(document settings) of your post."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: views/b2s/network.php:467 views/b2s/network.php:482
|
372 |
+
#: views/b2s/network.php:514 views/b2s/network.php:517
|
373 |
+
#: views/b2s/network.php:520
|
374 |
msgid "An error occured. Please contact our support."
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: views/b2s/network.php:366 views/b2s/network.php:384 views/b2s/ship.php:595
|
378 |
+
#: views/b2s/ship.php:613
|
379 |
msgid "An error occurred! Please try again."
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: includes/Loader.php:908
|
383 |
msgid "An image is required to post on this social network."
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: views/b2s/settings.php:106
|
387 |
#, php-format
|
388 |
msgid ""
|
389 |
"An instruction on how to define your own best times is explained in the "
|
400 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
401 |
msgstr ""
|
402 |
|
403 |
+
#: includes/Tools.php:425
|
404 |
msgid "Animals & Nature"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: views/b2s/network.php:548
|
408 |
msgid "Apply best time settings"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: views/b2s/autopost.php:87 includes/B2S/AutoPost/Item.php:91
|
412 |
msgid "Apply best times"
|
413 |
msgstr ""
|
414 |
|
438 |
msgid "Apply image for this post"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: views/b2s/network.php:549
|
442 |
msgid "Apply post template settings"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/B2S/Ship/Item.php:1360
|
446 |
msgid "Apply Settings To All Networks"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: views/b2s/network.php:550
|
450 |
msgid "Apply URL Parameters"
|
451 |
msgstr ""
|
452 |
|
470 |
msgid "Are you sure you want to delete this Social Media draft?"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: includes/Tools.php:404
|
474 |
msgid "Argentina"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: views/b2s/network.php:547 views/b2s/network.php:597
|
478 |
msgid "assign"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: views/b2s/network.php:509 views/b2s/network.php:594
|
482 |
msgid "Assign the connection to other blog users"
|
483 |
msgstr ""
|
484 |
|
495 |
msgid "at best times"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: views/b2s/ship.php:364
|
499 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
500 |
msgstr ""
|
501 |
|
507 |
msgid "at scheduled times"
|
508 |
msgstr ""
|
509 |
|
510 |
+
#: includes/Tools.php:392
|
511 |
msgid "Australia"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: includes/Tools.php:393
|
515 |
msgid "Austria"
|
516 |
msgstr ""
|
517 |
|
521 |
msgid "Author"
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: views/b2s/settings.php:118
|
525 |
msgid "Author: The author of the post."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: views/b2s/network.php:434 views/b2s/ship.php:663 views/b2s/ship.php:667
|
529 |
+
#: includes/B2S/Settings/Item.php:102
|
530 |
msgid "authorize"
|
531 |
msgstr ""
|
532 |
|
540 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: includes/Loader.php:889 views/b2s/settings.php:40
|
544 |
#: views/b2s/html/sidebar.php:75
|
545 |
msgid "Auto-Post"
|
546 |
msgstr ""
|
547 |
|
548 |
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:195
|
549 |
+
#: views/b2s/post.calendar.php:292 views/b2s/ship.php:318
|
550 |
+
#: views/b2s/ship.php:384 views/b2s/ship.php:430 views/b2s/html/footer.php:33
|
551 |
#: views/b2s/html/footer.php:67 views/b2s/html/footer.php:198
|
552 |
#: views/b2s/html/footer.php:262 views/b2s/html/footer.php:302
|
553 |
#: views/b2s/html/footer.php:357 views/b2s/html/footer.php:396
|
556 |
msgstr ""
|
557 |
|
558 |
#: views/b2s/premium.php:109 includes/B2S/Post/Item.php:730
|
559 |
+
#: includes/B2S/Post/Item.php:892
|
560 |
msgid "Auto-Posting"
|
561 |
msgstr ""
|
562 |
|
564 |
msgid "autopost"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/B2S/AutoPost/Item.php:44
|
568 |
msgid "Autoposter"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: includes/B2S/AutoPost/Item.php:140
|
572 |
msgid "Autoposter for Imported Posts"
|
573 |
msgstr ""
|
574 |
|
580 |
msgid "Available accounts"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:218
|
584 |
msgid "Available networks"
|
585 |
msgstr ""
|
586 |
|
588 |
msgid "Available networks for autoposting"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: includes/B2S/AutoPost/Item.php:157
|
592 |
msgid "Available networks to select your auto-post connecitons:"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: includes/Loader.php:1581 includes/Loader.php:1602 includes/Loader.php:1856
|
596 |
msgid "back to install plugins"
|
597 |
msgstr ""
|
598 |
|
601 |
msgstr ""
|
602 |
|
603 |
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:197
|
604 |
+
#: views/b2s/post.calendar.php:294 views/b2s/ship.php:320
|
605 |
+
#: views/b2s/ship.php:386 views/b2s/ship.php:432 views/b2s/html/footer.php:35
|
606 |
#: views/b2s/html/footer.php:200 views/b2s/html/footer.php:264
|
607 |
#: views/b2s/html/footer.php:304 views/b2s/html/footer.php:359
|
608 |
#: views/b2s/html/footer.php:398 views/b2s/html/footer.php:456
|
612 |
"social media posts"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: views/b2s/curation.php:185 views/b2s/post.calendar.php:282
|
616 |
+
#: views/b2s/ship.php:420
|
617 |
msgid "Best Time Scheduler"
|
618 |
msgstr ""
|
619 |
|
644 |
msgid "Blog"
|
645 |
msgstr ""
|
646 |
|
647 |
+
#: includes/Loader.php:1010 views/b2s/html/sidebar.php:25
|
648 |
#: views/b2s/html/sidebar.ship.php:24
|
649 |
msgid "Blog2Social"
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: views/b2s/autopost.php:62
|
653 |
msgid ""
|
654 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
655 |
"defined in the general settings of your WordPress. You can select a user-"
|
658 |
"drop-down menu."
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: views/b2s/settings.php:200
|
662 |
+
msgid ""
|
663 |
+
"Blog2Social applies the scheduled time settings based on the time zone "
|
664 |
+
"defined in the general settings of your WordPress. YYou can select a user-"
|
665 |
+
"specific time zone that deviates from the Wordpress system time zone for "
|
666 |
+
"your social media scheduling. To do this, select the desired time zone 24h "
|
667 |
+
"or 12h (am/pm), by simply clicking on the button."
|
668 |
+
msgstr ""
|
669 |
+
|
670 |
#: views/b2s/html/sidebar.php:180
|
671 |
msgid "Blog2Social Blog News"
|
672 |
msgstr ""
|
691 |
msgid "Blog2Social is a service of Adenion GmbH"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/Loader.php:1581
|
695 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
696 |
msgstr ""
|
697 |
|
705 |
"58 per month to benefit from PREMIUM features."
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: views/b2s/curation.php:176 views/b2s/post.calendar.php:273
|
709 |
+
#: views/b2s/ship.php:411
|
710 |
msgid "Blog2Social Premium covers everything you need."
|
711 |
msgstr ""
|
712 |
|
744 |
"your server. Install cURL and activate Blog2Social again."
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: views/b2s/network.php:130
|
748 |
msgid ""
|
749 |
"Blog2Social uses the official Google My Business API to share your content "
|
750 |
"on your business listing. You can connect Google My Business listings with "
|
768 |
msgid "Blog2Social, Adenion"
|
769 |
msgstr ""
|
770 |
|
771 |
+
#: includes/Loader.php:421
|
772 |
msgid "Blog2Social: Autoposter"
|
773 |
msgstr ""
|
774 |
|
789 |
msgid "Blog2Social: Social Media Auto-Posting"
|
790 |
msgstr ""
|
791 |
|
792 |
+
#: includes/Loader.php:422
|
793 |
msgid "Blog2Social: Social Media Content Calendar"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: includes/B2S/Settings/Item.php:82 includes/B2S/Settings/Item.php:93
|
797 |
msgid "Brand"
|
798 |
msgstr ""
|
799 |
|
805 |
msgid "BUSINESS"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/Loader.php:891 includes/B2S/Network/Item.php:188
|
809 |
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:327
|
810 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Item.php:331
|
811 |
#: includes/B2S/Ship/Navbar.php:90 includes/B2S/Ship/Portale.php:37
|
813 |
msgid "Business"
|
814 |
msgstr ""
|
815 |
|
816 |
+
#: views/b2s/network.php:704
|
817 |
msgid "Business: 15 (per user)"
|
818 |
msgstr ""
|
819 |
|
831 |
"href=\"%s\">Conditions of Use</a>"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: includes/B2S/AutoPost/Item.php:78
|
835 |
msgid ""
|
836 |
"By enabling this feature your previously published social media posts will "
|
837 |
"be sent again to your selected social media channels as soon as the post is "
|
838 |
"updated."
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: includes/Loader.php:977 includes/Loader.php:1040 views/b2s/dashboard.php:30
|
842 |
#: includes/B2S/RePost/Item.php:141 views/b2s/html/post.navbar.php:23
|
843 |
#: views/b2s/html/sidebar.php:128
|
844 |
msgid "Calendar"
|
845 |
msgstr ""
|
846 |
|
847 |
+
#: includes/B2S/Settings/Item.php:83 includes/B2S/Settings/Item.php:93
|
848 |
msgid "Call-to-Action"
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: includes/Tools.php:385
|
852 |
msgid "Canada"
|
853 |
msgstr ""
|
854 |
|
868 |
msgid "Category"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/B2S/Settings/Item.php:103
|
872 |
msgid "change"
|
873 |
msgstr ""
|
874 |
|
882 |
#: includes/B2S/Ship/Item.php:544 includes/B2S/Ship/Item.php:551
|
883 |
#: includes/B2S/Ship/Item.php:558 includes/B2S/Ship/Item.php:581
|
884 |
#: includes/B2S/Ship/Item.php:610 includes/B2S/Ship/Item.php:639
|
885 |
+
#: includes/B2S/Ship/Item.php:667 includes/B2S/Ship/Item.php:695
|
886 |
+
#: includes/B2S/Ship/Item.php:738 includes/B2S/Ship/Item.php:759
|
887 |
+
#: includes/B2S/Ship/Item.php:766 includes/B2S/Ship/Item.php:773
|
888 |
+
#: includes/B2S/Ship/Item.php:793 includes/B2S/Ship/Item.php:813
|
889 |
+
#: includes/B2S/Ship/Item.php:820 includes/B2S/Ship/Item.php:827
|
890 |
+
#: includes/B2S/Ship/Item.php:844 includes/B2S/Ship/Item.php:865
|
891 |
+
#: includes/B2S/Ship/Item.php:886 includes/B2S/Ship/Item.php:907
|
892 |
+
#: includes/B2S/Ship/Item.php:927 includes/B2S/Ship/Item.php:948
|
893 |
+
#: includes/B2S/Ship/Item.php:992
|
894 |
msgid "Change image"
|
895 |
msgstr ""
|
896 |
|
898 |
msgid "Change image, title and description for your post on this network"
|
899 |
msgstr ""
|
900 |
|
901 |
+
#: views/b2s/network.php:200
|
902 |
msgid "Change successful"
|
903 |
msgstr ""
|
904 |
|
905 |
+
#: views/b2s/ship.php:204
|
906 |
msgid "change website address"
|
907 |
msgstr ""
|
908 |
|
912 |
"with link-post settings for this post."
|
913 |
msgstr ""
|
914 |
|
915 |
+
#: views/b2s/network.php:325 includes/B2S/Network/Item.php:860
|
916 |
msgid "Character limit"
|
917 |
msgstr ""
|
918 |
|
919 |
+
#: includes/B2S/Network/Item.php:827 includes/B2S/Network/Item.php:884
|
920 |
+
#: includes/B2S/Network/Item.php:884 includes/B2S/Network/Item.php:920
|
921 |
+
#: includes/B2S/Network/Item.php:920 includes/B2S/Ship/Item.php:215
|
922 |
#: includes/B2S/Ship/Item.php:219 includes/B2S/Ship/Item.php:262
|
923 |
#: includes/B2S/Ship/Item.php:266 includes/B2S/Ship/Item.php:299
|
924 |
+
#: includes/B2S/Ship/Item.php:303 includes/B2S/Ship/Item.php:1338
|
925 |
+
#: includes/B2S/Ship/Item.php:1340
|
926 |
msgid "characters"
|
927 |
msgstr ""
|
928 |
|
938 |
"automatic subscription. Basic features of the Free Version are free forever."
|
939 |
msgstr ""
|
940 |
|
941 |
+
#: includes/B2S/Settings/Item.php:169
|
942 |
msgid "Check Settings with Sharing-Debugger"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: views/b2s/settings.php:108
|
946 |
msgid "Check, edit or define your social media time settings"
|
947 |
msgstr ""
|
948 |
|
949 |
+
#: includes/Tools.php:409
|
950 |
msgid "Chile"
|
951 |
msgstr ""
|
952 |
|
953 |
+
#: views/b2s/post.calendar.php:116 views/b2s/post.sched.php:134
|
954 |
+
#: views/b2s/repost.php:118 views/b2s/ship.php:513
|
955 |
msgid "Choose your"
|
956 |
msgstr ""
|
957 |
|
958 |
+
#: views/b2s/network.php:274
|
959 |
msgid "Choose your Post Format"
|
960 |
msgstr ""
|
961 |
|
964 |
msgid "City"
|
965 |
msgstr ""
|
966 |
|
967 |
+
#: includes/B2S/Ship/Item.php:1083
|
968 |
msgid "Classified Ads"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: includes/B2S/Network/Item.php:800
|
972 |
msgid "clear"
|
973 |
msgstr ""
|
974 |
|
984 |
"automatically for your individually chosen best times."
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: views/b2s/network.php:352
|
988 |
msgid "Click on \"continue\""
|
989 |
msgstr ""
|
990 |
|
991 |
+
#: views/b2s/post.sched.php:37 includes/B2S/Network/Item.php:158
|
|
|
992 |
msgid "Clock"
|
993 |
msgstr ""
|
994 |
|
995 |
+
#: includes/Util.php:48
|
996 |
+
msgid "clock"
|
997 |
+
msgstr ""
|
998 |
+
|
999 |
+
#: includes/Tools.php:410
|
1000 |
msgid "Colombia"
|
1001 |
msgstr ""
|
1002 |
|
1008 |
msgid "Company Description"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
+
#: includes/Loader.php:891
|
1012 |
msgid "Company-Page (Employer Branding Profile)"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
+
#: views/b2s/network.php:435 views/b2s/network.php:437 views/b2s/ship.php:664
|
1016 |
+
#: views/b2s/ship.php:666
|
1017 |
msgid "confirm"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
+
#: views/b2s/ship.php:223
|
1021 |
msgid "connect"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
+
#: views/b2s/settings.php:77
|
1025 |
msgid ""
|
1026 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1027 |
"share your WordPress blog posts and pages as well as imported posts and "
|
1028 |
"social media posts on. The following networks are available:"
|
1029 |
msgstr ""
|
1030 |
|
1031 |
+
#: views/b2s/ship.php:290
|
1032 |
msgid "Connect for"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: views/b2s/network.php:670 views/b2s/ship.php:701
|
1036 |
msgid "Connect Instagram Business Account"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
+
#: views/b2s/network.php:341 views/b2s/ship.php:575
|
1040 |
msgid "Connect with Pinterest"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: views/b2s/settings.php:99
|
1044 |
msgid "Connect your social media networks"
|
1045 |
msgstr ""
|
1046 |
|
1065 |
msgid "Connection is interrupted since"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: includes/B2S/AutoPost/Item.php:243 includes/B2S/Network/Item.php:207
|
1069 |
msgid "Connections"
|
1070 |
msgstr ""
|
1071 |
|
1073 |
msgid "Contact Details"
|
1074 |
msgstr ""
|
1075 |
|
1076 |
+
#: includes/B2S/Network/Item.php:764 includes/B2S/Settings/Item.php:77
|
1077 |
msgid "Content"
|
1078 |
msgstr ""
|
1079 |
|
1081 |
msgid "Content Library"
|
1082 |
msgstr ""
|
1083 |
|
1084 |
+
#: views/b2s/settings.php:115
|
1085 |
msgid "Content: The content of your post."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: views/b2s/network.php:619 views/b2s/network.php:638
|
1089 |
+
#: views/b2s/network.php:657 views/b2s/network.php:676 views/b2s/ship.php:688
|
1090 |
+
#: views/b2s/ship.php:707 views/b2s/ship.php:726 views/b2s/ship.php:745
|
1091 |
msgid "Continue"
|
1092 |
msgstr ""
|
1093 |
|
1094 |
+
#: views/b2s/curation.php:74 views/b2s/network.php:438
|
1095 |
msgid "continue"
|
1096 |
msgstr ""
|
1097 |
|
1099 |
msgid "Continue deactivation"
|
1100 |
msgstr ""
|
1101 |
|
1102 |
+
#: includes/B2S/Ship/Item.php:1344
|
1103 |
msgid "Copy from original"
|
1104 |
msgstr ""
|
1105 |
|
1107 |
msgid "Copyright"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: views/b2s/network.php:201
|
1111 |
msgid "Could not be changed"
|
1112 |
msgstr ""
|
1113 |
|
1127 |
msgid "Country"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: views/b2s/network.php:93
|
1131 |
msgid "create"
|
1132 |
msgstr ""
|
1133 |
|
1143 |
msgid "create account"
|
1144 |
msgstr ""
|
1145 |
|
1146 |
+
#: views/b2s/network.php:38 views/b2s/network.php:41 views/b2s/network.php:87
|
1147 |
msgid "Create new network collection"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
+
#: views/b2s/post.calendar.php:202
|
1151 |
msgid "Create or share content from other sources"
|
1152 |
msgstr ""
|
1153 |
|
1159 |
msgid "Create Post"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/Loader.php:976
|
1163 |
msgid "Create Social Media Posts"
|
1164 |
msgstr ""
|
1165 |
|
1212 |
"engagement with your community."
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: includes/Tools.php:382
|
1216 |
msgid "Czechoslovakia"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/Loader.php:974 includes/Loader.php:1019
|
1220 |
msgid "Dashboard"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1224 |
+
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:1311
|
1225 |
#: views/b2s/partials/post-edit-modal.php:67
|
1226 |
#: views/b2s/partials/post-edit-modal.php:70
|
1227 |
msgid "Date"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: includes/B2S/Ship/Item.php:1254
|
1231 |
msgid "Day of month"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: includes/B2S/Network/Item.php:297 includes/B2S/Network/Item.php:367
|
1235 |
+
#: includes/B2S/Network/Item.php:433 includes/B2S/Ship/Item.php:1259
|
1236 |
msgid "Days"
|
1237 |
msgstr ""
|
1238 |
|
1248 |
msgid "Debug & Preview"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: views/b2s/network.php:278 views/b2s/network.php:281
|
1252 |
+
#: views/b2s/network.php:284
|
1253 |
msgid ""
|
1254 |
"Decide in which post format you want to post your content: Link post or "
|
1255 |
"image post."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: views/b2s/network.php:287
|
1259 |
msgid ""
|
1260 |
"Decide in wich form you want to post your Content. Either as image with "
|
1261 |
"frame, or as image cut out."
|
1265 |
msgid "Default"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: views/b2s/network.php:566 includes/B2S/Network/Item.php:557
|
1269 |
#, php-format
|
1270 |
msgid ""
|
1271 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1273 |
"More information</a>"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: views/b2s/network.php:328
|
1277 |
msgid ""
|
1278 |
"Define the character limit for the variables \"EXCERPT\" and \"CONTENT\" "
|
1279 |
"individually. Your text will be shortened after the last comma, period, or "
|
1280 |
"space character within your character limit."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: views/b2s/post.calendar.php:137 views/b2s/post.sched.php:155
|
1284 |
+
#: views/b2s/repost.php:139 views/b2s/ship.php:533
|
1285 |
msgid ""
|
1286 |
"Define the default settings for the custom post format for all of your "
|
1287 |
"Facebook accounts in the Blog2Social settings."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: views/b2s/post.calendar.php:146 views/b2s/post.sched.php:164
|
1291 |
+
#: views/b2s/repost.php:148 views/b2s/ship.php:542
|
1292 |
msgid ""
|
1293 |
"Define the default settings for the custom post format for all of your "
|
1294 |
"Instagram accounts in the Blog2Social settings."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: views/b2s/post.calendar.php:143 views/b2s/post.sched.php:161
|
1298 |
+
#: views/b2s/repost.php:145 views/b2s/ship.php:539
|
1299 |
msgid ""
|
1300 |
"Define the default settings for the custom post format for all of your "
|
1301 |
"LinkedIn accounts in the Blog2Social settings."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: views/b2s/post.calendar.php:140 views/b2s/post.sched.php:158
|
1305 |
+
#: views/b2s/repost.php:142 views/b2s/ship.php:536
|
1306 |
msgid ""
|
1307 |
"Define the default settings for the custom post format for all of your "
|
1308 |
"Twitter accounts in the Blog2Social settings."
|
1312 |
msgid "Define Twitter post content"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: views/b2s/settings.php:123
|
1316 |
msgid "Define your post templates for each social media network"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/B2S/Ship/Item.php:1162 views/b2s/partials/post-edit-modal.php:78
|
1320 |
msgid "Delay"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: views/b2s/network.php:45 views/b2s/partials/post-edit-modal.php:102
|
1324 |
msgid "Delete"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/Ajax/Post.php:1956 includes/B2S/Network/Item.php:527
|
1328 |
#: includes/B2S/Post/Item.php:534 includes/B2S/Post/Item.php:554
|
1329 |
+
#: includes/B2S/Post/Item.php:869 includes/B2S/Post/Item.php:927
|
1330 |
+
#: includes/B2S/Settings/Item.php:103 includes/B2S/Ship/Item.php:1179
|
1331 |
+
#: includes/B2S/Ship/Item.php:1329
|
1332 |
msgid "delete"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: views/b2s/network.php:166
|
1336 |
msgid "Delete all scheduled posts for this account irrevocably"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: views/b2s/network.php:168
|
1340 |
msgid "Delete all scheduled posts from all user who use this connection."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: views/b2s/network.php:149
|
1344 |
msgid "Delete Authorization"
|
1345 |
msgstr ""
|
1346 |
|
1353 |
msgid "Delete entries from the reporting"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: views/b2s/post.sched.php:94 views/b2s/repost.php:96
|
1357 |
msgid "Delete entries from the scheduling"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
+
#: includes/B2S/Post/Item.php:795 includes/B2S/Post/Item.php:808
|
1361 |
msgid "delete from reporting"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: views/b2s/network.php:109
|
1365 |
msgid "Delete Profile"
|
1366 |
msgstr ""
|
1367 |
|
1369 |
msgid "Delete scheduled posts"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/B2S/Post/Item.php:936
|
1373 |
msgid "delete scheduling"
|
1374 |
msgstr ""
|
1375 |
|
1385 |
msgid "Delete Social Media Posts"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: includes/B2S/Ship/Item.php:357 includes/B2S/Ship/Item.php:1348
|
1389 |
msgid "Delete text"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: includes/Tools.php:398
|
1393 |
msgid "Denmark"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/B2S/Settings/Item.php:183 includes/B2S/Settings/Item.php:204
|
1397 |
msgid "Description"
|
1398 |
msgstr ""
|
1399 |
|
1406 |
msgid "Details"
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: includes/B2S/Settings/Item.php:228
|
1410 |
msgid "Did you know?"
|
1411 |
msgstr ""
|
1412 |
|
1418 |
msgid "Did you miss something? Tell us!"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: includes/B2S/AutoPost/Item.php:49
|
1422 |
msgid "Disconnect"
|
1423 |
msgstr ""
|
1424 |
|
1425 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
1426 |
+
#: includes/B2S/Ship/Item.php:776 includes/B2S/Ship/Item.php:830
|
1427 |
msgid "Do u want to post multiple images?"
|
1428 |
msgstr ""
|
1429 |
|
1430 |
+
#: views/b2s/network.php:158
|
1431 |
msgid "Do you really want to delete this authorization"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
+
#: views/b2s/network.php:112
|
1435 |
msgid "Do you really want to delete this profile"
|
1436 |
msgstr ""
|
1437 |
|
1446 |
msgstr ""
|
1447 |
|
1448 |
#: views/b2s/curation.php:154 views/b2s/post.approve.php:109
|
1449 |
+
#: views/b2s/ship.php:478
|
1450 |
msgid "Do you want to mark this post as published ?"
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: views/b2s/network.php:347
|
1454 |
msgid "Download and activate the Blog2Social extension"
|
1455 |
msgstr ""
|
1456 |
|
1459 |
msgid "draft"
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:13
|
1463 |
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
1464 |
#: views/b2s/html/sidebar.php:116
|
1465 |
msgid "Drafts"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: includes/B2S/Ship/Item.php:1249 includes/B2S/Ship/Item.php:1252
|
1469 |
msgid "Duration"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
+
#: views/b2s/network.php:395 views/b2s/ship.php:624
|
1473 |
#: views/b2s/html/header.php:348 views/prg/html/form.php:141
|
1474 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1475 |
#: views/prg/html/form.php:220
|
1480 |
msgid "E-Mail or Username"
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: views/b2s/network.php:697
|
1484 |
msgid ""
|
1485 |
"Each license has a specified number of accounts you can connect per social "
|
1486 |
"media network."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: includes/B2S/Post/Item.php:924
|
1490 |
msgid "edit"
|
1491 |
msgstr ""
|
1492 |
|
1498 |
msgid "Edit Post"
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: views/b2s/network.php:236 includes/B2S/Network/Item.php:198
|
1502 |
#: includes/B2S/Network/Item.php:198
|
1503 |
msgid "Edit Post Template"
|
1504 |
msgstr ""
|
1505 |
|
1506 |
+
#: views/b2s/network.php:302
|
1507 |
msgid ""
|
1508 |
"Edit the content of your post. Move elements by drag and drop into the "
|
1509 |
"textarea and customize them as you like."
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#: views/b2s/settings.php:111
|
1513 |
msgid ""
|
1514 |
"Edit the post templates for each social media network to turn your social "
|
1515 |
"media posts automatically into tailored posts for each network and community."
|
1528 |
msgid "enable Auto-Posting"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: includes/B2S/Ship/Item.php:1143
|
1532 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: includes/B2S/Ship/Item.php:1304
|
1536 |
msgid "End Of Month"
|
1537 |
msgstr ""
|
1538 |
|
1585 |
msgid "Event"
|
1586 |
msgstr ""
|
1587 |
|
1588 |
+
#: includes/B2S/Ship/Item.php:1082
|
1589 |
msgid "Events"
|
1590 |
msgstr ""
|
1591 |
|
1592 |
+
#: views/b2s/settings.php:116
|
1593 |
msgid ""
|
1594 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
1595 |
"post)."
|
1596 |
msgstr ""
|
1597 |
|
1598 |
+
#: includes/B2S/AutoPost/Item.php:285 includes/B2S/AutoPost/Item.php:305
|
1599 |
+
#: includes/B2S/RePost/Item.php:192 includes/B2S/RePost/Item.php:212
|
1600 |
+
#: includes/B2S/RePost/Item.php:232 includes/B2S/RePost/Item.php:251
|
1601 |
msgid "Exclude (Do no post ...)"
|
1602 |
msgstr ""
|
1603 |
|
1605 |
msgid "Export as txt-file"
|
1606 |
msgstr ""
|
1607 |
|
1608 |
+
#: views/b2s/network.php:713
|
1609 |
msgid "Facebook groups"
|
1610 |
msgstr ""
|
1611 |
|
1626 |
msgid "Facebook Open Graph Meta Tags"
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: views/b2s/network.php:715
|
1630 |
msgid "Facebook pages"
|
1631 |
msgstr ""
|
1632 |
|
1638 |
msgid "Failed to save"
|
1639 |
msgstr ""
|
1640 |
|
1641 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:463
|
1642 |
msgid "FAQ"
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:12
|
1646 |
#: views/b2s/html/sidebar.php:113
|
1647 |
msgid "Favorites"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#: views/b2s/network.php:31 views/b2s/network.php:32
|
1651 |
+
#: views/b2s/post.calendar.php:231 views/b2s/post.calendar.php:232
|
1652 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1653 |
#: views/b2s/html/post.navbar.php:29 views/b2s/html/post.navbar.php:30
|
1654 |
msgid "filter"
|
1655 |
msgstr ""
|
1656 |
|
1657 |
+
#: includes/B2S/AutoPost/Item.php:282
|
1658 |
msgid ""
|
1659 |
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1660 |
msgstr ""
|
1661 |
|
1662 |
+
#: includes/Tools.php:400
|
1663 |
msgid "Finland"
|
1664 |
msgstr ""
|
1665 |
|
1673 |
msgid "First Steps"
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: views/b2s/ship.php:221
|
1677 |
msgid "First, connect or select network before posting"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: includes/Tools.php:431
|
1681 |
msgid "Flags"
|
1682 |
msgstr ""
|
1683 |
|
1685 |
msgid "Follow us"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: includes/Tools.php:426
|
1689 |
msgid "Food & Drink"
|
1690 |
msgstr ""
|
1691 |
|
1694 |
msgid "For example your Wordpress Home Page"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
+
#: views/b2s/network.php:720
|
1698 |
msgid ""
|
1699 |
"For example: If you purchase 5 Facebook groups, these additional 5 Facebook "
|
1700 |
"groups are available for all users. So, when 5 users are activated for the "
|
1702 |
"or one user can connect 5 additional Facebook groups."
|
1703 |
msgstr ""
|
1704 |
|
1705 |
+
#: views/b2s/network.php:707
|
1706 |
msgid ""
|
1707 |
"For example: With the Pro license, each user can connect 5 Facebook accounts "
|
1708 |
"+ 5 Twitter accounts + 5 Instagram accounts + ..."
|
1714 |
"your preferred custom post format."
|
1715 |
msgstr ""
|
1716 |
|
1717 |
+
#: includes/B2S/Ship/Save.php:424
|
1718 |
msgid ""
|
1719 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
1720 |
msgstr ""
|
1721 |
|
1722 |
+
#: includes/B2S/Ship/Save.php:416
|
1723 |
msgid ""
|
1724 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
1725 |
"Instant Sharing"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: views/b2s/post.calendar.php:118 views/b2s/post.sched.php:136
|
1729 |
+
#: views/b2s/repost.php:120 views/b2s/ship.php:515
|
1730 |
msgid "for:"
|
1731 |
msgstr ""
|
1732 |
|
1742 |
msgid "Format"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
+
#: includes/Tools.php:395
|
1746 |
msgid "France"
|
1747 |
msgstr ""
|
1748 |
|
1750 |
msgid "Frequently asked questions"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
+
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:1321
|
1754 |
msgid "Fri"
|
1755 |
msgstr ""
|
1756 |
|
1758 |
msgid "Friday"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: includes/B2S/Settings/Item.php:167
|
1762 |
msgid "Frontpage Settings"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: views/b2s/settings.php:37
|
1766 |
msgid "General"
|
1767 |
msgstr ""
|
1768 |
|
1770 |
msgid "German"
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: includes/Tools.php:397
|
1774 |
msgid "Germany"
|
1775 |
msgstr ""
|
1776 |
|
1785 |
"guide</a>."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
+
#: views/b2s/curation.php:295
|
1789 |
#, php-format
|
1790 |
msgid ""
|
1791 |
"Get more information on how to share a text post with hashtags, @mentions "
|
1805 |
msgid "Get the Blog2Social Browser Extension"
|
1806 |
msgstr ""
|
1807 |
|
1808 |
+
#: views/b2s/ship.php:782
|
1809 |
msgid "Give me more information"
|
1810 |
msgstr ""
|
1811 |
|
1832 |
"thematically relevant to the content of your post."
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: views/b2s/network.php:133
|
1836 |
msgid ""
|
1837 |
"Google currently allows access to the API for all companies with up to 9 "
|
1838 |
"locations in their Google My Business Listings. However, Google plans to "
|
1840 |
"Business listings."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: views/b2s/network.php:127 views/b2s/premium.php:127
|
1844 |
msgid "Google My Business"
|
1845 |
msgstr ""
|
1846 |
|
1849 |
"Grab more attention for your content with photos, videos, or infographics."
|
1850 |
msgstr ""
|
1851 |
|
1852 |
+
#: includes/Tools.php:386
|
1853 |
msgid "Great Britain"
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: includes/Tools.php:376
|
1857 |
msgid "Greece"
|
1858 |
msgstr ""
|
1859 |
|
1860 |
+
#: includes/Loader.php:890 includes/B2S/Network/Item.php:194
|
1861 |
#: includes/B2S/Network/Item.php:398 includes/B2S/Network/Item.php:676
|
1862 |
#: includes/B2S/Ship/Portale.php:31 includes/B2S/Ship/Portale.php:32
|
1863 |
msgid "Group"
|
1867 |
msgid "guide for server connection"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: includes/B2S/Network/Item.php:846
|
1871 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: includes/B2S/Ship/Item.php:1107
|
1875 |
msgid "Hashtags"
|
1876 |
msgstr ""
|
1877 |
|
1879 |
msgid "Help & Community"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: includes/Loader.php:983 includes/Loader.php:1069
|
1883 |
#: views/b2s/html/header.php:40 views/b2s/html/sidebar.php:140
|
1884 |
#: views/b2s/html/sidebar.ship.php:66
|
1885 |
msgid "Help & Support"
|
1918 |
msgid "https://www.blog2social.com"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
+
#: includes/Tools.php:401
|
1922 |
msgid "Hungary"
|
1923 |
msgstr ""
|
1924 |
|
1964 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
1965 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
1966 |
"ask all your questions in the Blog2Social support community where you will "
|
1967 |
+
"receive help from our committed support team. You can easily access the "
|
1968 |
+
"Blog2Social Support Community via the Help & Support section in the "
|
1969 |
+
"Blog2Social menu on your WP dashboard."
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: views/b2s/ship.php:371
|
1973 |
msgid "Ignore & share"
|
1974 |
msgstr ""
|
1975 |
|
1981 |
msgid "image"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: views/b2s/post.calendar.php:74 views/b2s/post.sched.php:194
|
1985 |
+
#: views/b2s/repost.php:50 views/b2s/repost.php:87
|
1986 |
#: includes/B2S/Network/Item.php:752 includes/B2S/Network/Item.php:755
|
1987 |
+
#: includes/B2S/Settings/Item.php:266 views/b2s/html/footer.php:182
|
1988 |
msgid "Image cut out"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#: views/b2s/curation.php:48 views/b2s/curation.php:51
|
1992 |
+
#: views/b2s/post.calendar.php:74 views/b2s/post.sched.php:194
|
1993 |
+
#: views/b2s/repost.php:50 views/b2s/repost.php:87
|
1994 |
+
#: includes/B2S/Post/Item.php:784 includes/B2S/Settings/Item.php:266
|
1995 |
+
#: includes/B2S/Settings/Item.php:289
|
1996 |
msgid "Image Post"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: includes/B2S/Settings/Item.php:186 includes/B2S/Settings/Item.php:207
|
2000 |
#: includes/B2S/Ship/Image.php:94 includes/B2S/Ship/Image.php:96
|
2001 |
msgid "Image upload / Media Gallery"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: includes/B2S/Settings/Item.php:184 includes/B2S/Settings/Item.php:205
|
2005 |
msgid "Image URL"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: views/b2s/post.calendar.php:74 views/b2s/post.sched.php:194
|
2009 |
+
#: views/b2s/repost.php:50 views/b2s/repost.php:87
|
2010 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2011 |
+
#: includes/B2S/Settings/Item.php:252 views/b2s/html/footer.php:177
|
2012 |
msgid "Image with frame"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: includes/B2S/AutoPost/Item.php:144
|
2016 |
msgid ""
|
2017 |
"Immediate Cross-Posting across all networks: Share an unlimited number of "
|
2018 |
"posts"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
+
#: includes/B2S/AutoPost/Item.php:161 includes/B2S/Curation/View.php:64
|
2022 |
msgid "immediately"
|
2023 |
msgstr ""
|
2024 |
|
2026 |
msgid "immediately after publishing"
|
2027 |
msgstr ""
|
2028 |
|
2029 |
+
#: views/b2s/ship.php:496
|
2030 |
msgid "Important infomations about XING groups"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
+
#: includes/B2S/AutoPost/Item.php:158
|
2034 |
msgid ""
|
2035 |
"In accordance with the new Twitter TOS, one Twitter account can be selected "
|
2036 |
"as your primary Twitter account for auto-posting."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: views/b2s/curation.php:375
|
2040 |
#, php-format
|
2041 |
msgid ""
|
2042 |
"In the <a href=\"%s\">Network Settings</a> you can define network selections "
|
2043 |
+
"to select and save your most-used networks for specific posts or campaigns."
|
2044 |
msgstr ""
|
2045 |
|
2046 |
+
#: views/b2s/curation.php:297
|
2047 |
+
#, php-format
|
2048 |
+
msgid ""
|
2049 |
+
"In the <a href=\"%s\">Network Settings</a> you can define one or more "
|
2050 |
+
"network selections for your posts."
|
2051 |
+
msgstr ""
|
2052 |
+
|
2053 |
+
#: includes/B2S/AutoPost/Item.php:284 includes/B2S/AutoPost/Item.php:304
|
2054 |
+
#: includes/B2S/RePost/Item.php:191 includes/B2S/RePost/Item.php:211
|
2055 |
+
#: includes/B2S/RePost/Item.php:231 includes/B2S/RePost/Item.php:250
|
2056 |
msgid "Include (Post only...)"
|
2057 |
msgstr ""
|
2058 |
|
2065 |
msgid "include posts with images only"
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: includes/Tools.php:377
|
2069 |
msgid "India"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: includes/Tools.php:383
|
2073 |
msgid "Indonesia"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
#: includes/B2S/PostBox.php:165 includes/B2S/PostBox.php:168
|
2077 |
+
#: includes/B2S/PostBox.php:253 views/b2s/network.php:48 views/b2s/ship.php:80
|
2078 |
+
#: views/b2s/ship.php:170 views/b2s/ship.php:262
|
2079 |
+
#: includes/B2S/AutoPost/Item.php:110 includes/B2S/AutoPost/Item.php:207
|
2080 |
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:211
|
2081 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2082 |
+
#: includes/B2S/Ship/Item.php:1143
|
2083 |
msgid "Info"
|
2084 |
msgstr ""
|
2085 |
|
2090 |
|
2091 |
#: includes/B2S/Ship/Item.php:465 includes/B2S/Ship/Item.php:585
|
2092 |
#: includes/B2S/Ship/Item.php:615 includes/B2S/Ship/Item.php:643
|
2093 |
+
#: includes/B2S/Ship/Item.php:671 includes/B2S/Ship/Item.php:699
|
2094 |
msgid ""
|
2095 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2096 |
"network"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: includes/B2S/Ship/Item.php:355 includes/B2S/Ship/Item.php:1346
|
2100 |
msgid "Insert full-text"
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: includes/B2S/Settings/Item.php:260 views/b2s/html/footer.php:178
|
2104 |
msgid ""
|
2105 |
"Insert white frames to show the whole image in your timeline. All image "
|
2106 |
"information will be shown in your timeline."
|
2110 |
msgid "Inspect Post"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
+
#: includes/Loader.php:911
|
2114 |
#, php-format
|
2115 |
msgid ""
|
2116 |
"Instagram published your post without text. Please see the following <a "
|
2117 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: views/b2s/settings.php:183
|
2121 |
msgid "Instant Caching for Facebook Link Posts"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: views/b2s/network.php:260
|
2125 |
msgid "Instant Caching for Link Posts"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:17
|
2129 |
#: views/b2s/html/sidebar.php:119
|
2130 |
msgid "Instant Sharing"
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: views/b2s/network.php:387 views/b2s/ship.php:616
|
2134 |
msgid "Invalid Data! Please try again."
|
2135 |
msgstr ""
|
2136 |
|
2142 |
msgid "Invalid email address"
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: includes/Tools.php:379
|
2146 |
msgid "Ireland"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: includes/B2S/Post/Item.php:913
|
2150 |
msgid "is currently being processed by the network"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: includes/Tools.php:415
|
2154 |
msgid "is determined automatically"
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: includes/B2S/Post/Item.php:830
|
2158 |
#, php-format
|
2159 |
msgid "is waiting to shared by %s"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
+
#: includes/Tools.php:380
|
2163 |
msgid "Italy"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
+
#: includes/Tools.php:402
|
2167 |
msgid "Japan"
|
2168 |
msgstr ""
|
2169 |
|
2171 |
msgid "Job"
|
2172 |
msgstr ""
|
2173 |
|
2174 |
+
#: includes/B2S/Ship/Item.php:1081
|
2175 |
msgid "Jobs & Projects"
|
2176 |
msgstr ""
|
2177 |
|
2191 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: views/b2s/settings.php:117
|
2195 |
msgid "Keywords: The tags you have set in your post."
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: includes/Tools.php:405
|
2199 |
msgid "Korea"
|
2200 |
msgstr ""
|
2201 |
|
2203 |
msgid "Language"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: includes/B2S/Post/Item.php:911
|
2207 |
#, php-format
|
2208 |
msgid "last modified by %s"
|
2209 |
msgstr ""
|
2236 |
msgid "latest share by %s"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: includes/B2S/Ship/Save.php:416
|
2240 |
msgid "Learn how it works"
|
2241 |
msgstr ""
|
2242 |
|
2254 |
"scheduling and auto-poster."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: views/b2s/network.php:136 views/b2s/ship.php:500
|
2258 |
+
#: includes/B2S/Ship/Item.php:1241 views/b2s/partials/post-edit-modal.php:53
|
2259 |
msgid "Learn more"
|
2260 |
msgstr ""
|
2261 |
|
2266 |
"target=\"_blank\">social media posts guide</a>."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:787
|
2270 |
+
#: includes/B2S/Ship/Item.php:1212
|
2271 |
msgid "Learn more about this"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: views/b2s/network.php:305
|
2275 |
msgid "Legend"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: includes/Tools.php:361 views/b2s/html/sidebar.php:30
|
2279 |
#: views/b2s/html/sidebar.ship.php:29
|
2280 |
msgid "License"
|
2281 |
msgstr ""
|
2285 |
msgstr ""
|
2286 |
|
2287 |
#: includes/B2S/Network/Item.php:751 includes/B2S/Network/Item.php:754
|
2288 |
+
#: includes/B2S/Ship/Item.php:1008 includes/B2S/Ship/Item.php:1010
|
2289 |
msgid "Link"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: views/b2s/curation.php:45 views/b2s/post.calendar.php:74
|
2293 |
+
#: views/b2s/post.sched.php:194 views/b2s/repost.php:50 views/b2s/repost.php:87
|
2294 |
+
#: includes/B2S/Post/Item.php:782 includes/B2S/Settings/Item.php:252
|
2295 |
+
#: includes/B2S/Settings/Item.php:289 views/b2s/html/footer.php:160
|
2296 |
msgid "Link Post"
|
2297 |
msgstr ""
|
2298 |
|
2299 |
+
#: views/b2s/network.php:717
|
2300 |
msgid "LinkedIn pages"
|
2301 |
msgstr ""
|
2302 |
|
2308 |
msgid "List"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
+
#: views/b2s/network.php:55 views/b2s/ship.php:79
|
2312 |
#: views/b2s/partials/post-edit-modal.php:42
|
2313 |
msgid "Load Best Times"
|
2314 |
msgstr ""
|
2325 |
msgid "load Draft"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: views/b2s/ship.php:73 views/b2s/partials/post-edit-modal.php:41
|
2329 |
msgid "Load My Times Settings"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: views/b2s/curation.draft.php:47 views/b2s/network.php:67
|
2333 |
+
#: views/b2s/network.php:155 views/b2s/network.php:242
|
2334 |
+
#: views/b2s/network.php:380 views/b2s/network.php:459
|
2335 |
+
#: views/b2s/post.approve.php:51 views/b2s/post.calendar.php:64
|
2336 |
+
#: views/b2s/post.calendar.php:249 views/b2s/post.draft.php:42
|
2337 |
#: views/b2s/post.favorites.php:41 views/b2s/post.notice.php:48
|
2338 |
#: views/b2s/post.php:41 views/b2s/post.publish.php:45
|
2339 |
+
#: views/b2s/post.sched.php:63 views/b2s/repost.php:32 views/b2s/ship.php:192
|
2340 |
+
#: views/b2s/ship.php:609 views/b2s/ship.php:778 views/b2s/support.php:144
|
2341 |
#: views/b2s/support.php:182 views/prg/html/header.php:86
|
2342 |
msgid "Loading..."
|
2343 |
msgstr ""
|
2344 |
|
2345 |
+
#: views/b2s/network.php:389 views/b2s/ship.php:618
|
2346 |
#, php-format
|
2347 |
msgid ""
|
2348 |
"Login failed. Please check your login data for typos and please check your "
|
2359 |
msgid "Login failed. Please check your username and a password!"
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: views/b2s/network.php:367 views/b2s/network.php:393 views/b2s/ship.php:596
|
2363 |
+
#: views/b2s/ship.php:622
|
2364 |
msgid ""
|
2365 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
2366 |
"on your profile."
|
2370 |
msgid "Logout"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: includes/B2S/Ship/Item.php:1105
|
2374 |
#, php-format
|
2375 |
msgid "max. %s Tags"
|
2376 |
msgstr ""
|
2379 |
msgid "Message"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: includes/B2S/Settings/Item.php:139
|
2383 |
msgid "Meta Tags Settings for Posts and Pages"
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: includes/Tools.php:407
|
2387 |
msgid "Mexico"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: includes/B2S/Ship/Item.php:1172 includes/B2S/Ship/Item.php:1173
|
2391 |
+
#: includes/B2S/Ship/Item.php:1174 includes/B2S/Ship/Item.php:1175
|
2392 |
#: views/b2s/partials/post-edit-modal.php:82
|
2393 |
#: views/b2s/partials/post-edit-modal.php:83
|
2394 |
#: views/b2s/partials/post-edit-modal.php:84
|
2396 |
msgid "min"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
+
#: includes/B2S/AutoPost/Item.php:163
|
2400 |
msgid "minutes"
|
2401 |
msgstr ""
|
2402 |
|
2403 |
+
#: includes/B2S/Network/Item.php:864
|
2404 |
msgid ""
|
2405 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
2406 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
2407 |
"ini\" file."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: views/b2s/network.php:209
|
2411 |
msgid "modify"
|
2412 |
msgstr ""
|
2413 |
|
2423 |
msgid "Modify subreddit"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1317
|
2427 |
msgid "Mon"
|
2428 |
msgstr ""
|
2429 |
|
2431 |
msgid "Monday"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: includes/B2S/Ship/Item.php:1284
|
2435 |
msgid "Month"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: includes/B2S/Ship/Item.php:1268
|
2439 |
msgid "monthly"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: includes/B2S/Ship/Item.php:1284
|
2443 |
msgid "Months"
|
2444 |
msgstr ""
|
2445 |
|
2451 |
msgid "More Information"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:184
|
2455 |
+
#: includes/B2S/AutoPost/Item.php:158
|
2456 |
msgid "More information"
|
2457 |
msgstr ""
|
2458 |
|
2459 |
+
#: views/b2s/curation.php:299 views/b2s/curation.php:377
|
2460 |
#, php-format
|
2461 |
msgid ""
|
2462 |
"More information on how to create a network selection in the guide <a "
|
2468 |
msgid "More users and accounts"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: views/b2s/network.php:489 views/b2s/network.php:584
|
2472 |
msgid "move"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: views/b2s/network.php:477 views/b2s/network.php:577
|
2476 |
msgid "Move the connection to another network collection."
|
2477 |
msgstr ""
|
2478 |
|
2484 |
msgid "Mrs."
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: views/b2s/network.php:582 includes/B2S/Ship/Navbar.php:37
|
2488 |
msgid "My Profile"
|
2489 |
msgstr ""
|
2490 |
|
2502 |
msgid "Need more?"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
+
#: views/b2s/curation.php:173 views/b2s/post.calendar.php:270
|
2506 |
+
#: views/b2s/ship.php:408
|
2507 |
msgid "Need to schedule your posts?"
|
2508 |
msgstr ""
|
2509 |
|
2511 |
msgid "Needed"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: includes/Tools.php:388
|
2515 |
msgid "Netherlands"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: views/b2s/network.php:474 views/b2s/network.php:574
|
2519 |
msgid "Network collection"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: views/b2s/ship.php:177
|
2523 |
msgid "network connected"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: views/b2s/network.php:689
|
2527 |
msgid "Network connections"
|
2528 |
msgstr ""
|
2529 |
|
2547 |
msgid "Network does not support image for profiles"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: includes/B2S/Network/Item.php:827 includes/B2S/Network/Item.php:884
|
2551 |
+
#: includes/B2S/Network/Item.php:920
|
2552 |
msgid "Network limit"
|
2553 |
msgstr ""
|
2554 |
|
2555 |
+
#: includes/B2S/PostBox.php:146 includes/B2S/AutoPost/Item.php:61
|
2556 |
+
#: includes/B2S/AutoPost/Item.php:193 includes/B2S/RePost/Item.php:166
|
2557 |
msgid "Network settings"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: includes/Loader.php:978 includes/Loader.php:1047
|
2561 |
msgid "Networks"
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: includes/Loader.php:889 views/b2s/curation.php:49 views/b2s/support.php:19
|
2565 |
#: views/b2s/support.php:22
|
2566 |
msgid "NEW"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
+
#: includes/B2S/AutoPost/Item.php:69
|
2570 |
msgid "new posts"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
+
#: includes/Tools.php:399
|
2574 |
msgid "New Zealand"
|
2575 |
msgstr ""
|
2576 |
|
2584 |
msgstr ""
|
2585 |
|
2586 |
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:160
|
2587 |
+
#: views/b2s/network.php:115 views/b2s/post.approve.php:98
|
2588 |
#: views/b2s/post.approve.php:115 views/b2s/post.draft.php:87
|
2589 |
#: views/b2s/post.notice.php:88 views/b2s/post.publish.php:85
|
2590 |
+
#: views/b2s/post.sched.php:103 views/b2s/repost.php:105 views/b2s/ship.php:484
|
2591 |
+
#: views/b2s/ship.php:563 views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
2592 |
msgid "NO"
|
2593 |
msgstr ""
|
2594 |
|
2602 |
msgid "No credit card required"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
+
#: includes/Tools.php:432
|
2606 |
msgid "No emojis found"
|
2607 |
msgstr ""
|
2608 |
|
2618 |
msgid "No posts found. Please try again with different filter options."
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: includes/B2S/Settings/Item.php:80
|
2622 |
msgid "no URL Shortener"
|
2623 |
msgstr ""
|
2624 |
|
2630 |
msgid "Nope, maybe later"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: includes/Tools.php:390
|
2634 |
msgid "Norway"
|
2635 |
msgstr ""
|
2636 |
|
2638 |
msgid "not yet shared"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: views/b2s/ship.php:349
|
2642 |
msgid "Note: "
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:202
|
2646 |
msgid ""
|
2647 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
2648 |
"Networks do not allow postings from local installations."
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: views/b2s/post.calendar.php:315
|
2652 |
+
msgid "Notification"
|
2653 |
+
msgstr ""
|
2654 |
+
|
2655 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:22
|
2656 |
msgid "Notifications"
|
2657 |
msgstr ""
|
2658 |
|
2662 |
msgstr ""
|
2663 |
|
2664 |
#: views/b2s/post.approve.php:94 views/b2s/post.notice.php:84
|
2665 |
+
#: views/b2s/post.publish.php:81 views/b2s/post.sched.php:99
|
2666 |
+
#: views/b2s/repost.php:101 views/b2s/widgets/posts.php:63
|
2667 |
msgid "Number of entries"
|
2668 |
msgstr ""
|
2669 |
|
2671 |
msgid "Number of posts"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: includes/B2S/Ship/Item.php:1253
|
2675 |
msgid "Number of repeats"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: includes/Tools.php:429
|
2679 |
msgid "Objects"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: includes/B2S/Ship/Item.php:1085
|
2683 |
msgid "Offer"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
#: includes/B2S/Ship/Item.php:471 includes/B2S/Ship/Item.php:591
|
2687 |
#: includes/B2S/Ship/Item.php:621 includes/B2S/Ship/Item.php:649
|
2688 |
+
#: includes/B2S/Ship/Item.php:677 includes/B2S/Ship/Item.php:705
|
2689 |
msgid "OG Meta description"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
#: includes/B2S/Ship/Item.php:470 includes/B2S/Ship/Item.php:590
|
2693 |
#: includes/B2S/Ship/Item.php:620 includes/B2S/Ship/Item.php:648
|
2694 |
+
#: includes/B2S/Ship/Item.php:676 includes/B2S/Ship/Item.php:704
|
2695 |
msgid "OG Meta title"
|
2696 |
msgstr ""
|
2697 |
|
2715 |
msgid "on Blog"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: views/b2s/ship.php:59 includes/B2S/Post/Item.php:437
|
2719 |
#: includes/B2S/Post/Item.php:580
|
2720 |
msgid "on blog"
|
2721 |
msgstr ""
|
2729 |
msgid "Open Graph and Twitter Card Tags"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: includes/Loader.php:1581 includes/Loader.php:1602 includes/Loader.php:1856
|
2733 |
msgid "or"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:206
|
2737 |
+
#: views/b2s/curation.php:245 views/b2s/post.calendar.php:303
|
2738 |
+
#: views/b2s/ship.php:329 views/b2s/ship.php:395 views/b2s/ship.php:441
|
2739 |
#: views/b2s/html/footer.php:44 views/b2s/html/footer.php:75
|
2740 |
#: views/b2s/html/footer.php:93 views/b2s/html/footer.php:111
|
2741 |
#: views/b2s/html/footer.php:140 views/b2s/html/footer.php:209
|
2748 |
"Blog2Social Premium</a> (no payment information needed)"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: includes/B2S/Support/Check/System.php:47
|
2752 |
msgid "or higher"
|
2753 |
msgstr ""
|
2754 |
|
2756 |
msgid "Other topics"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: views/b2s/ship.php:557
|
2760 |
msgid "Overwrite Draft"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: includes/B2S/Ship/Item.php:1269
|
2764 |
msgid "own period"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: includes/Loader.php:890 includes/B2S/AutoPost/Item.php:252
|
2768 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:190
|
2769 |
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:327
|
2770 |
#: includes/B2S/Network/Item.php:673 includes/B2S/Ship/Portale.php:39
|
2776 |
msgid "Pages and groups"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: views/b2s/network.php:401 views/b2s/ship.php:630 views/prg/login.php:25
|
2780 |
msgid "Password"
|
2781 |
msgstr ""
|
2782 |
|
2786 |
msgid "Personal"
|
2787 |
msgstr ""
|
2788 |
|
2789 |
+
#: views/b2s/autopost.php:59 views/b2s/settings.php:197
|
2790 |
+
#: includes/B2S/Settings/Item.php:57
|
2791 |
msgid "Personal Time Zone"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: includes/Tools.php:412
|
2795 |
msgid "Philippines"
|
2796 |
msgstr ""
|
2797 |
|
2804 |
msgid "Photo Post"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: views/b2s/network.php:390 views/b2s/ship.php:619
|
2808 |
msgid "Pinterest has rejected the connection to your blog"
|
2809 |
msgstr ""
|
2810 |
|
2820 |
msgid "Please contact our support!"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: views/b2s/settings.php:186
|
2824 |
msgid ""
|
2825 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2826 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
2828 |
"Facebook always pulls the current meta data of your blog post."
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: views/b2s/network.php:263
|
2832 |
msgid ""
|
2833 |
"Please enable this feature, if you are using varnish caching (HTTP "
|
2834 |
"accelerator to relieve your website). Blog2Social will add a \"no-cache=1\" "
|
2840 |
msgid "Please enter a valid link"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:787
|
2844 |
+
#: includes/B2S/Ship/Item.php:1212
|
2845 |
msgid ""
|
2846 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
2847 |
"allowed to post identical or substantially similar content to multiple "
|
2848 |
"accounts or multiple duplicate updates on one account."
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: includes/Loader.php:820
|
2852 |
msgid ""
|
2853 |
"Please make sure that your post, page or custom post type is published or "
|
2854 |
"scheduled to be published on this blog before you try to post it with "
|
2856 |
"scheduled WP posts will be shared with the posting id link."
|
2857 |
msgstr ""
|
2858 |
|
2859 |
+
#: views/b2s/network.php:637 views/b2s/ship.php:744
|
2860 |
#, php-format
|
2861 |
msgid ""
|
2862 |
"Please make sure to log in with your account which manages your groups and "
|
2864 |
"groups</a>."
|
2865 |
msgstr ""
|
2866 |
|
2867 |
+
#: views/b2s/network.php:618 views/b2s/ship.php:725
|
2868 |
#, php-format
|
2869 |
msgid ""
|
2870 |
"Please make sure to log in with your account which manages your pages and <a "
|
2871 |
"href=\"%s\" target=\"_blank\">follow this guide to select all your pages</a>."
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: views/b2s/network.php:383 views/b2s/ship.php:612
|
2875 |
msgid ""
|
2876 |
"Please make sure to use your original Pinterest login data (email and "
|
2877 |
"password). Social Login via Facebook or Google login data will not work here."
|
2883 |
msgid "Please Note"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: includes/B2S/Settings/Item.php:189
|
2887 |
msgid ""
|
2888 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
2889 |
"pixels and an aspect ratio of 1:1."
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: includes/B2S/Ship/Item.php:1245 views/b2s/partials/post-edit-modal.php:56
|
2893 |
msgid ""
|
2894 |
"Please note: Google will shut down Google+ for all private accounts "
|
2895 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
2920 |
"Changes may not be immediately visible on Twitter."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: includes/B2S/Settings/Item.php:210
|
2924 |
msgid ""
|
2925 |
"Please note: Twitter supports images with a minimum dimension of 144x144 "
|
2926 |
"pixels and a maximum dimension of 4096x4096 pixels and less than 5 BM. The "
|
2948 |
"guide</a>."
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: includes/B2S/Ship/Save.php:429
|
2952 |
msgid ""
|
2953 |
"Please note: You post has to be marked as public to be posted in a group."
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: includes/B2S/Ship/Item.php:1241 views/b2s/partials/post-edit-modal.php:52
|
2957 |
msgid ""
|
2958 |
"Please note: Your account is connected via an old XING API that is no longer "
|
2959 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
2979 |
"your <a target=\"_blank\" href=\"%s\">settings</a>"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: views/b2s/network.php:675 views/b2s/ship.php:706
|
2983 |
#, php-format
|
2984 |
msgid ""
|
2985 |
"Please note: Your Instagram Business Account will be connected with "
|
2989 |
"<a href=\"%s\" target=\"_blank\">Instagram Business guide</a>."
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: views/b2s/network.php:199
|
2993 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: includes/B2S/Post/Item.php:746 includes/B2S/Ship/Save.php:463
|
2997 |
msgid "Please see"
|
2998 |
msgstr ""
|
2999 |
|
3001 |
msgid "Please see FAQ"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: includes/B2S/AutoPost/Item.php:66
|
3005 |
msgid "Please select a post type"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: includes/B2S/AutoPost/Item.php:156
|
3009 |
msgid "Please select a social media network"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: views/b2s/network.php:391 views/b2s/ship.php:620
|
3013 |
msgid "Please select your correct server location and connect again."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: includes/B2S/Ship/Save.php:434
|
3017 |
msgid "Please share your post now"
|
3018 |
msgstr ""
|
3019 |
|
3022 |
msgid "please upgrade"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
+
#: views/b2s/settings.php:172
|
3026 |
msgid "Plugin contents are loaded one at a time to minimize server load."
|
3027 |
msgstr ""
|
3028 |
|
3029 |
+
#: includes/B2S/Support/Check/System.php:93
|
3030 |
msgid "Plugin Warnings:"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: includes/Tools.php:394
|
3034 |
msgid "Poland"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: includes/Tools.php:389 includes/Tools.php:403
|
3038 |
msgid "Portugal"
|
3039 |
msgstr ""
|
3040 |
|
3047 |
msgid "Post a Press Release"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: includes/B2S/AutoPost/Item.php:303
|
3051 |
+
msgid "Post Categories"
|
3052 |
+
msgstr ""
|
3053 |
+
|
3054 |
+
#: views/b2s/network.php:299
|
3055 |
msgid "Post Content"
|
3056 |
msgstr ""
|
3057 |
|
3059 |
msgid "Post every"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: views/b2s/post.calendar.php:116 views/b2s/post.sched.php:134
|
3063 |
+
#: views/b2s/repost.php:118 views/b2s/ship.php:513
|
3064 |
msgid "Post Format"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: includes/B2S/Post/Item.php:780 includes/B2S/Ship/Item.php:340
|
3068 |
msgid "post format"
|
3069 |
msgstr ""
|
3070 |
|
3079 |
msgstr ""
|
3080 |
|
3081 |
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:193
|
3082 |
+
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:316
|
3083 |
+
#: views/b2s/ship.php:382 views/b2s/ship.php:428 views/b2s/html/footer.php:31
|
3084 |
#: views/b2s/html/footer.php:196 views/b2s/html/footer.php:260
|
3085 |
#: views/b2s/html/footer.php:300 views/b2s/html/footer.php:355
|
3086 |
#: views/b2s/html/footer.php:394 views/b2s/html/footer.php:452
|
3088 |
msgid "Post on pages and groups"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: views/b2s/settings.php:55
|
3092 |
msgid "Post Templates"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: includes/B2S/AutoPost/Item.php:283 includes/B2S/RePost/Item.php:190
|
3096 |
msgid "Post Types"
|
3097 |
msgstr ""
|
3098 |
|
3109 |
msgid "Posts"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: includes/B2S/AutoPost/Item.php:41
|
3113 |
#, php-format
|
3114 |
msgid ""
|
3115 |
"Posts for Facebook Profiles will be shown on your \"Site & Blog Content\" "
|
3119 |
"."
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: includes/B2S/AutoPost/Item.php:147
|
3123 |
msgid "posts per day"
|
3124 |
msgstr ""
|
3125 |
|
3134 |
"publish your post."
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: includes/Loader.php:981 includes/Loader.php:1061
|
3138 |
msgid "PR-Service"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: includes/Loader.php:985 includes/Loader.php:1077
|
3142 |
msgid "PREMIUM"
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: includes/Loader.php:985
|
3146 |
msgid "Premium"
|
3147 |
msgstr ""
|
3148 |
|
3154 |
msgid "Press"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: includes/B2S/Network/Item.php:946 includes/B2S/Network/Item.php:998
|
3158 |
+
#: includes/B2S/Network/Item.php:1067 includes/B2S/Network/Item.php:1119
|
3159 |
+
#: includes/B2S/Network/Item.php:1153 includes/B2S/Network/Item.php:1204
|
3160 |
+
#: includes/B2S/Network/Item.php:1234 includes/B2S/Network/Item.php:1288
|
3161 |
+
#: includes/B2S/Network/Item.php:1307 includes/B2S/Network/Item.php:1341
|
3162 |
+
#: includes/B2S/Network/Item.php:1357 includes/B2S/Network/Item.php:1378
|
3163 |
+
#: includes/B2S/Network/Item.php:1394 includes/B2S/Network/Item.php:1410
|
3164 |
+
#: includes/B2S/Network/Item.php:1429 includes/B2S/Network/Item.php:1445
|
3165 |
+
#: includes/B2S/Network/Item.php:1488
|
3166 |
msgid "Preview"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: views/b2s/settings.php:119
|
3170 |
msgid ""
|
3171 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
3172 |
"website/ blog."
|
3176 |
msgid "Privacy Policy"
|
3177 |
msgstr ""
|
3178 |
|
3179 |
+
#: views/b2s/curation.php:51 views/b2s/curation.php:52 views/b2s/network.php:41
|
3180 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:190
|
3181 |
#: includes/B2S/Network/Item.php:195 includes/B2S/Ship/Image.php:96
|
3182 |
#: includes/B2S/Ship/Item.php:500 includes/B2S/Ship/Item.php:561
|
3183 |
+
#: includes/B2S/Ship/Item.php:776 includes/B2S/Ship/Item.php:830
|
3184 |
#: includes/B2S/Ship/Portale.php:32 includes/B2S/Ship/Portale.php:39
|
3185 |
#: includes/B2S/Ship/Portale.php:51
|
3186 |
msgid "PRO"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: views/b2s/network.php:702
|
3190 |
msgid "Pro: 5 (per user)"
|
3191 |
msgstr ""
|
3192 |
|
3194 |
msgid "Product"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: includes/Loader.php:890 includes/B2S/AutoPost/Item.php:252
|
3198 |
#: includes/B2S/Network/Item.php:170 includes/B2S/Network/Item.php:172
|
3199 |
#: includes/B2S/Network/Item.php:175 includes/B2S/Network/Item.php:179
|
3200 |
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:257
|
3204 |
msgid "Profile"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: views/b2s/ship.php:129
|
3208 |
msgid "Profiles | Pages | Groups"
|
3209 |
msgstr ""
|
3210 |
|
3221 |
msgid "Publish on PR-Gateway"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: includes/B2S/AutoPost/Item.php:162
|
3225 |
msgid "publish with a delay of"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: views/b2s/curation.php:138 views/b2s/post.calendar.php:42
|
3229 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:779 includes/B2S/Post/Filter.php:59
|
3230 |
+
#: includes/B2S/Post/Item.php:381 includes/B2S/Ship/Save.php:442
|
3231 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3232 |
msgid "published"
|
3233 |
msgstr ""
|
3252 |
msgid "Rate it!"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:892
|
3256 |
msgid "Re-Share"
|
3257 |
msgstr ""
|
3258 |
|
3259 |
+
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:798
|
3260 |
msgid "re-share"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
+
#: includes/Loader.php:889 views/b2s/settings.php:46
|
3264 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/sidebar.php:72
|
3265 |
msgid "Re-Share Posts"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: views/b2s/ship.php:306
|
3269 |
msgid "Re-share this Post"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: views/b2s/curation.php:131 views/b2s/ship.php:264 views/b2s/ship.php:266
|
3273 |
#: includes/B2S/Post/Item.php:454
|
3274 |
msgid "Re-share this post"
|
3275 |
msgstr ""
|
3286 |
msgid "Rebrandly"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: includes/Tools.php:423
|
3290 |
msgid "Recently Used"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: includes/B2S/Network/Item.php:884 includes/B2S/Network/Item.php:920
|
3294 |
msgid "recommended length"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: views/b2s/ship.php:179
|
3298 |
msgid "refresh authorization"
|
3299 |
msgstr ""
|
3300 |
|
3310 |
msgid "reload"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: includes/B2S/Ship/Item.php:1248
|
3314 |
msgid "Repeats"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: includes/B2S/Ship/Item.php:1255
|
3318 |
msgid "Repeats every (days)"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:202
|
3322 |
+
#: views/b2s/post.calendar.php:299 views/b2s/ship.php:325
|
3323 |
+
#: views/b2s/ship.php:391 views/b2s/ship.php:437 views/b2s/html/footer.php:40
|
3324 |
#: views/b2s/html/footer.php:205 views/b2s/html/footer.php:269
|
3325 |
#: views/b2s/html/footer.php:309 views/b2s/html/footer.php:364
|
3326 |
#: views/b2s/html/footer.php:403 views/b2s/html/footer.php:461
|
3345 |
msgid "Reporting with links to already published posts"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
+
#: includes/B2S/Ship/Item.php:1086
|
3349 |
msgid "Request"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
+
#: includes/B2S/Ship/Item.php:979
|
3353 |
msgid "required"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
+
#: views/b2s/ship.php:178
|
3357 |
msgid "requires image"
|
3358 |
msgstr ""
|
3359 |
|
3361 |
msgid "reset"
|
3362 |
msgstr ""
|
3363 |
|
3364 |
+
#: includes/B2S/Settings/Item.php:134
|
3365 |
msgid "Reset all page and post meta data"
|
3366 |
msgstr ""
|
3367 |
|
3369 |
msgid "reset password"
|
3370 |
msgstr ""
|
3371 |
|
3372 |
+
#: includes/B2S/Support/Check/System.php:68
|
3373 |
+
#: includes/B2S/Support/Check/System.php:86
|
3374 |
msgid "resolve conflict"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: includes/B2S/Post/Item.php:730 includes/B2S/Post/Item.php:892
|
3378 |
+
#: includes/B2S/Ship/Save.php:452
|
3379 |
msgid "Retweet"
|
3380 |
msgstr ""
|
3381 |
|
3387 |
"WordPress."
|
3388 |
msgstr ""
|
3389 |
|
3390 |
+
#: includes/Tools.php:396
|
3391 |
msgid "Romania"
|
3392 |
msgstr ""
|
3393 |
|
3395 |
msgid "RSS import & auto-post"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: includes/Tools.php:387
|
3399 |
msgid "Russia"
|
3400 |
msgstr ""
|
3401 |
|
3403 |
msgid "Sales Support"
|
3404 |
msgstr ""
|
3405 |
|
3406 |
+
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:1322
|
3407 |
msgid "Sat"
|
3408 |
msgstr ""
|
3409 |
|
3411 |
msgid "Saturday"
|
3412 |
msgstr ""
|
3413 |
|
3414 |
+
#: includes/B2S/AutoPost/Item.php:175
|
3415 |
msgid "Save"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: views/b2s/network.php:248 views/b2s/settings.php:70
|
3419 |
+
#: includes/B2S/Network/Item.php:587 includes/B2S/Settings/Item.php:146
|
3420 |
msgid "save"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: includes/B2S/Ship/Item.php:1361
|
3424 |
msgid "Save as best time for this network"
|
3425 |
msgstr ""
|
3426 |
|
3428 |
msgid "Save As Draft"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
+
#: views/b2s/ship.php:233 views/b2s/ship.php:237
|
3432 |
#: includes/B2S/Curation/View.php:110
|
3433 |
msgid "Save as Draft"
|
3434 |
msgstr ""
|
3439 |
"want."
|
3440 |
msgstr ""
|
3441 |
|
3442 |
+
#: views/b2s/ship.php:168 views/b2s/ship.php:340
|
3443 |
msgid "Save network selection"
|
3444 |
msgstr ""
|
3445 |
|
3446 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:32
|
3447 |
msgid "save..."
|
3448 |
msgstr ""
|
3449 |
|
3460 |
msgstr ""
|
3461 |
|
3462 |
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:199
|
3463 |
+
#: views/b2s/post.calendar.php:296 views/b2s/ship.php:322
|
3464 |
+
#: views/b2s/ship.php:388 views/b2s/ship.php:434 views/b2s/html/footer.php:37
|
3465 |
#: views/b2s/html/footer.php:202 views/b2s/html/footer.php:266
|
3466 |
#: views/b2s/html/footer.php:306 views/b2s/html/footer.php:361
|
3467 |
#: views/b2s/html/footer.php:400 views/b2s/html/footer.php:458
|
3485 |
msgid "Schedule curated content"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
+
#: views/b2s/curation.php:179 views/b2s/post.calendar.php:276
|
3489 |
+
#: views/b2s/ship.php:414 includes/B2S/Ship/Item.php:1203
|
3490 |
msgid "Schedule for specific dates"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: views/b2s/curation.php:182 views/b2s/post.calendar.php:279
|
3494 |
+
#: views/b2s/ship.php:417
|
3495 |
msgid "Schedule post recurrently"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: includes/B2S/Ship/Item.php:1205
|
3499 |
msgid "Schedule Recurrent Post"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
+
#: views/b2s/ship.php:368
|
3503 |
msgid "Schedule your post"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:198
|
3507 |
+
#: views/b2s/post.calendar.php:295 views/b2s/ship.php:321
|
3508 |
+
#: views/b2s/ship.php:387 views/b2s/ship.php:433 views/b2s/html/footer.php:36
|
3509 |
#: views/b2s/html/footer.php:201 views/b2s/html/footer.php:265
|
3510 |
#: views/b2s/html/footer.php:305 views/b2s/html/footer.php:360
|
3511 |
#: views/b2s/html/footer.php:399 views/b2s/html/footer.php:457
|
3514 |
msgstr ""
|
3515 |
|
3516 |
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:196
|
3517 |
+
#: views/b2s/post.calendar.php:293 views/b2s/ship.php:319
|
3518 |
+
#: views/b2s/ship.php:385 views/b2s/ship.php:431 views/b2s/html/footer.php:34
|
3519 |
#: views/b2s/html/footer.php:199 views/b2s/html/footer.php:263
|
3520 |
#: views/b2s/html/footer.php:303 views/b2s/html/footer.php:358
|
3521 |
#: views/b2s/html/footer.php:397 views/b2s/html/footer.php:455
|
3529 |
"multiple times or recurrently"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: views/b2s/post.calendar.php:43 views/b2s/ship.php:18
|
3533 |
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:381
|
3534 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3535 |
msgid "scheduled"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
+
#: includes/B2S/AutoPost/Item.php:145
|
3539 |
msgid "Scheduled Auto-Posting"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: includes/B2S/Post/Item.php:918
|
3543 |
#, php-format
|
3544 |
msgid "scheduled by %s"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: includes/B2S/Ship/Save.php:453
|
3548 |
msgid "scheduled on"
|
3549 |
msgstr ""
|
3550 |
|
3552 |
msgid "scheduled post(s)"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:18
|
3556 |
#: views/b2s/html/sidebar.php:122 views/b2s/widgets/posts.php:18
|
3557 |
msgid "Scheduled Posts"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
+
#: views/b2s/network.php:166
|
3561 |
msgid "scheduled posts"
|
3562 |
msgstr ""
|
3563 |
|
3566 |
msgid "scheduled social media posts"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: views/b2s/ship.php:67
|
3570 |
msgid "scroll to bottom"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: views/b2s/ship.php:231
|
3574 |
msgid "scroll to top"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: includes/Tools.php:422
|
3578 |
msgid "Search"
|
3579 |
msgstr ""
|
3580 |
|
3592 |
"Edit scheduled posts or add new social media posts per drag & drop."
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: views/b2s/post.calendar.php:192 views/b2s/post.calendar.php:205
|
3596 |
msgid "select"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: views/b2s/post.calendar.php:223
|
3600 |
msgid "Select a post"
|
3601 |
msgstr ""
|
3602 |
|
3604 |
msgid "Select a user"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: includes/B2S/AutoPost/Item.php:70 includes/B2S/AutoPost/Item.php:82
|
3608 |
msgid "Select all"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: includes/B2S/Post/Item.php:736 includes/B2S/Post/Item.php:827
|
3612 |
+
#: includes/B2S/Post/Item.php:898 includes/B2S/RePost/Item.php:135
|
3613 |
msgid "select all"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
+
#: includes/B2S/AutoPost/Item.php:307
|
3617 |
+
msgid "Select Categories"
|
3618 |
+
msgstr ""
|
3619 |
+
|
3620 |
#: views/prg/ship.php:36
|
3621 |
msgid "Select Image"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: views/b2s/curation.php:310 views/b2s/repost.php:195
|
3625 |
msgid "Select image"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: views/b2s/post.calendar.php:161 views/b2s/post.sched.php:115
|
3629 |
+
#: views/b2s/repost.php:163 views/b2s/ship.php:454
|
3630 |
msgid "Select image for"
|
3631 |
msgstr ""
|
3632 |
|
3633 |
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:201
|
3634 |
+
#: views/b2s/post.calendar.php:298 views/b2s/ship.php:324
|
3635 |
+
#: views/b2s/ship.php:390 views/b2s/ship.php:436 views/b2s/html/footer.php:39
|
3636 |
#: views/b2s/html/footer.php:70 views/b2s/html/footer.php:204
|
3637 |
#: views/b2s/html/footer.php:268 views/b2s/html/footer.php:308
|
3638 |
#: views/b2s/html/footer.php:363 views/b2s/html/footer.php:402
|
3647 |
msgstr ""
|
3648 |
|
3649 |
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:200
|
3650 |
+
#: views/b2s/post.calendar.php:297 views/b2s/ship.php:323
|
3651 |
+
#: views/b2s/ship.php:389 views/b2s/ship.php:435 views/b2s/html/footer.php:38
|
3652 |
#: views/b2s/html/footer.php:69 views/b2s/html/footer.php:203
|
3653 |
#: views/b2s/html/footer.php:267 views/b2s/html/footer.php:307
|
3654 |
#: views/b2s/html/footer.php:362 views/b2s/html/footer.php:401
|
3668 |
"your post."
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: includes/B2S/PostBox.php:253 includes/B2S/AutoPost/Item.php:186
|
3672 |
#: includes/B2S/Curation/View.php:73 includes/B2S/RePost/Item.php:159
|
3673 |
msgid "Select network collection:"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: views/b2s/autopost.php:48 views/b2s/settings.php:144
|
3677 |
#: includes/B2S/Ship/Image.php:100
|
3678 |
msgid "Select or upload an image from media gallery"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: views/b2s/network.php:371 views/b2s/network.php:426 views/b2s/ship.php:600
|
3682 |
+
#: views/b2s/ship.php:655
|
3683 |
msgid "Select Pinboard"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
+
#: includes/B2S/AutoPost/Item.php:287
|
3687 |
+
msgid "Select Post Types"
|
3688 |
+
msgstr ""
|
3689 |
+
|
3690 |
#: views/b2s/html/footer.php:328
|
3691 |
msgid ""
|
3692 |
"Select the content that will be automatically pre-filled in your Twitter "
|
3698 |
msgid "Select the preferred custom post format for your posts"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
+
#: includes/B2S/AutoPost/Item.php:160
|
3702 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:73
|
3706 |
+
#: views/b2s/repost.php:181 includes/B2S/AutoPost/Item.php:197
|
3707 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
3708 |
msgid "Select Twitter profile:"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
+
#: includes/B2S/AutoPost/Item.php:62
|
3712 |
msgid ""
|
3713 |
"Select your preferred network collection for autoposting. This collection "
|
3714 |
"defines the social media accounts on which the autoposter will share your "
|
3719 |
msgid "selected date"
|
3720 |
msgstr ""
|
3721 |
|
3722 |
+
#: views/b2s/network.php:412 views/b2s/ship.php:641
|
3723 |
msgid "Server-Location"
|
3724 |
msgstr ""
|
3725 |
|
3726 |
+
#: includes/B2S/Settings/Item.php:69
|
3727 |
+
msgid "Set the time format you like to use for your posts."
|
3728 |
+
msgstr ""
|
3729 |
+
|
3730 |
+
#: includes/B2S/Settings/Item.php:66
|
3731 |
+
msgid "Set time format"
|
3732 |
+
msgstr ""
|
3733 |
+
|
3734 |
+
#: includes/B2S/AutoPost/Item.php:141
|
3735 |
msgid ""
|
3736 |
"Set up your autoposter to automatically share your imported posts, pages and "
|
3737 |
"custom post types on your social media channels."
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: includes/B2S/AutoPost/Item.php:53
|
3741 |
msgid ""
|
3742 |
"Set up your autoposter to automatically share your new or updated posts, "
|
3743 |
"pages and custom post types on your social media channels."
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: includes/Loader.php:839 includes/Loader.php:979 includes/Loader.php:979
|
3747 |
+
#: includes/Loader.php:1053 includes/B2S/RePost/Item.php:25
|
3748 |
#: views/b2s/html/sidebar.php:137
|
3749 |
msgid "Settings"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: views/b2s/ship.php:232 views/b2s/ship.php:238
|
3753 |
#: includes/B2S/Curation/View.php:113
|
3754 |
msgid "Share"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: includes/B2S/Post/Item.php:860 includes/B2S/Ship/Save.php:433
|
3758 |
msgid "share"
|
3759 |
msgstr ""
|
3760 |
|
3780 |
"content."
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: views/b2s/ship.php:268
|
3784 |
msgid "Share new post on Social Media"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
+
#: includes/B2S/Ship/Item.php:1200
|
3788 |
msgid "Share Now"
|
3789 |
msgstr ""
|
3790 |
|
3797 |
msgstr ""
|
3798 |
|
3799 |
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:194
|
3800 |
+
#: views/b2s/post.calendar.php:291 views/b2s/ship.php:317
|
3801 |
+
#: views/b2s/ship.php:383 views/b2s/ship.php:429 views/b2s/html/footer.php:32
|
3802 |
#: views/b2s/html/footer.php:197 views/b2s/html/footer.php:261
|
3803 |
#: views/b2s/html/footer.php:301 views/b2s/html/footer.php:356
|
3804 |
#: views/b2s/html/footer.php:395 views/b2s/html/footer.php:453
|
3826 |
msgid "Share text posts:"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#: includes/B2S/AutoPost/Item.php:147
|
3830 |
msgid "share up to"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
+
#: includes/Loader.php:975
|
3834 |
msgid "Share Website & Blog Content"
|
3835 |
msgstr ""
|
3836 |
|
3858 |
"Medium."
|
3859 |
msgstr ""
|
3860 |
|
3861 |
+
#: views/b2s/post.calendar.php:189
|
3862 |
msgid "Share your WordPress posts, pages or products"
|
3863 |
msgstr ""
|
3864 |
|
3866 |
msgid "Shared"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: includes/B2S/Post/Item.php:761
|
3870 |
#, php-format
|
3871 |
msgid "shared by %s"
|
3872 |
msgstr ""
|
3875 |
msgid "shared by user"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: includes/Loader.php:889 views/b2s/html/post.navbar.php:20
|
3879 |
#: views/b2s/html/sidebar.php:125
|
3880 |
msgid "Shared Posts"
|
3881 |
msgstr ""
|
3892 |
msgid "Sharing"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: includes/B2S/Post/Item.php:761
|
3896 |
#, php-format
|
3897 |
msgid "sharing in progress by %s"
|
3898 |
msgstr ""
|
3914 |
msgid "Sharing-Debugger"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: includes/B2S/Settings/Item.php:109
|
3918 |
msgid "Shortcodes"
|
3919 |
msgstr ""
|
3920 |
|
3934 |
msgid "Show all"
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: views/b2s/post.calendar.php:41 includes/B2S/Calendar/Filter.php:127
|
3938 |
msgid "show all"
|
3939 |
msgstr ""
|
3940 |
|
3946 |
msgid "show calendar"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: includes/Loader.php:814 includes/Loader.php:816
|
3950 |
msgid "show details"
|
3951 |
msgstr ""
|
3952 |
|
3962 |
msgid "Sign in"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: views/b2s/network.php:436 views/b2s/ship.php:665
|
3966 |
msgid "Sign in to Pinterest"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: includes/Loader.php:975 includes/Loader.php:1026
|
3970 |
msgid "Site & Blog Content"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: includes/Tools.php:408
|
3974 |
msgid "Slovakia"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: views/b2s/network.php:236 views/b2s/ship.php:27
|
3978 |
+
#: includes/B2S/AutoPost/Item.php:33 includes/B2S/Curation/View.php:56
|
3979 |
#: includes/B2S/Network/Item.php:179 includes/B2S/Network/Item.php:188
|
3980 |
#: includes/B2S/Network/Item.php:198 includes/B2S/Network/Item.php:299
|
3981 |
#: includes/B2S/Network/Item.php:369 includes/B2S/Network/Item.php:435
|
3982 |
+
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:172
|
3983 |
+
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:1202
|
3984 |
#: includes/B2S/Ship/Portale.php:37 views/b2s/html/post.navbar.php:18
|
3985 |
#: views/b2s/html/post.navbar.php:21 views/b2s/html/post.navbar.php:23
|
3986 |
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
3987 |
msgid "SMART"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: views/b2s/network.php:700
|
3991 |
msgid "Smart: 3 (per user)"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: includes/Tools.php:424
|
3995 |
msgid "Smileys & People"
|
3996 |
msgstr ""
|
3997 |
|
3999 |
msgid "Sniply"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: views/b2s/ship.php:109
|
4003 |
msgid "Social Accounts"
|
4004 |
msgstr ""
|
4005 |
|
4016 |
msgid "Social Media Calendar"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: views/b2s/settings.php:49 views/b2s/html/sidebar.php:134
|
4020 |
msgid "Social Media Networks"
|
4021 |
msgstr ""
|
4022 |
|
4024 |
msgid "Social Media Post"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: includes/Loader.php:889
|
4028 |
msgid "Social Media Post Drafts"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: includes/Loader.php:976 includes/Loader.php:1033 views/b2s/curation.php:257
|
4032 |
+
#: views/b2s/curation.php:332
|
4033 |
msgid "Social Media Posts"
|
4034 |
msgstr ""
|
4035 |
|
4037 |
msgid "social media posts ready to be shared"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: views/b2s/ship.php:56
|
4041 |
msgid "Social Media Scheduling & Sharing"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: views/b2s/settings.php:52
|
4045 |
msgid "Social Media Time Settings"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: views/b2s/settings.php:43
|
4049 |
msgid "Social Meta Data"
|
4050 |
msgstr ""
|
4051 |
|
4057 |
msgid "Social Networks"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#: views/b2s/settings.php:158
|
4061 |
#, php-format
|
4062 |
msgid ""
|
4063 |
"Some WordPress plugins use short codes, e.g. Page Builder plugins. When a "
|
4079 |
msgid "sort"
|
4080 |
msgstr ""
|
4081 |
|
4082 |
+
#: views/b2s/post.calendar.php:39
|
4083 |
msgid "Sort by network"
|
4084 |
msgstr ""
|
4085 |
|
4086 |
+
#: includes/Tools.php:411
|
4087 |
msgid "South Africa"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: includes/Tools.php:384
|
4091 |
msgid "Spain"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: includes/B2S/Ship/Item.php:1257
|
4095 |
msgid "Start date"
|
4096 |
msgstr ""
|
4097 |
|
4137 |
msgid "Successfully saved"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
+
#: includes/B2S/Settings/Item.php:200
|
4141 |
msgid "Summary"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: includes/B2S/Settings/Item.php:201
|
4145 |
msgid "Summary with large image"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:1323
|
4149 |
msgid "Sun"
|
4150 |
msgstr ""
|
4151 |
|
4153 |
msgid "Sunday"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
+
#: includes/Loader.php:839
|
4157 |
msgid "Support"
|
4158 |
msgstr ""
|
4159 |
|
4161 |
msgid "Supported HTML tags"
|
4162 |
msgstr ""
|
4163 |
|
4164 |
+
#: includes/Tools.php:406
|
4165 |
msgid "Sweden"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: includes/Tools.php:381
|
4169 |
msgid "Switzerland"
|
4170 |
msgstr ""
|
4171 |
|
4172 |
+
#: includes/Tools.php:430
|
4173 |
msgid "Symbols"
|
4174 |
msgstr ""
|
4175 |
|
4176 |
+
#: includes/B2S/Settings/Item.php:114
|
4177 |
msgid "System"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: views/b2s/network.php:506 views/b2s/network.php:591
|
4181 |
msgid "Team Management"
|
4182 |
msgstr ""
|
4183 |
|
4201 |
msgid "Text Post"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: views/b2s/curation.php:281
|
4205 |
msgid ""
|
4206 |
"Text posts enable you to share pure text messages and personal comments with "
|
4207 |
"your followers and readers. You can also customize your posts with "
|
4235 |
"Facebook (page and group) and on Twitter."
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: views/b2s/network.php:532
|
4239 |
msgid "The connection does not exist."
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: views/b2s/network.php:529
|
4243 |
msgid "The connection has already been assigned to this user."
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: views/b2s/network.php:167
|
4247 |
msgid ""
|
4248 |
"The connection is still assigned to other users. Please withdraw the "
|
4249 |
"assigned connection from other users first."
|
4255 |
"information and solutions in the"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: views/b2s/ship.php:780
|
4259 |
msgid ""
|
4260 |
"The connection to the server failed. Please try again! You can find more "
|
4261 |
"information and solutions in the guide for server connection"
|
4269 |
"webmaster, if this error message persists."
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: includes/Loader.php:896
|
4273 |
#, php-format
|
4274 |
msgid ""
|
4275 |
"The connection to your social media account is interrupted. Please check "
|
4278 |
"your social media account."
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: views/b2s/network.php:309
|
4282 |
msgid "The content of your post"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: includes/Loader.php:894
|
4286 |
#, php-format
|
4287 |
msgid ""
|
4288 |
"The content of your post could not be approved by the network. Please see "
|
4289 |
"the following <a target=\"_blank\" href=\"%s\">guide</a>."
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: includes/B2S/Settings/Item.php:198
|
4293 |
msgid "The default card type to use"
|
4294 |
msgstr ""
|
4295 |
|
4299 |
"the free trial."
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: includes/B2S/Ship/Item.php:1097
|
4303 |
msgid "The Headline..."
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: includes/B2S/Settings/Item.php:271 views/b2s/html/footer.php:183
|
4307 |
msgid ""
|
4308 |
"The image preview will be cropped automatically to fit the default Instagram "
|
4309 |
"layout for your Instagram timeline. The image will be shown uncropped when "
|
4310 |
"opening the preview page for your Instagram post."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: includes/B2S/Settings/Item.php:257
|
4314 |
msgid "The image will be changed"
|
4315 |
msgstr ""
|
4316 |
|
4322 |
msgid "The license has been successfully activated."
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: includes/B2S/Settings/Item.php:262 views/b2s/html/footer.php:161
|
4326 |
msgid ""
|
4327 |
"The link post format displays posts title, link address and the first one or "
|
4328 |
"two sentences of the post. The networks scan this information from your META "
|
4334 |
"first image detected on your page. The image links to your blog post."
|
4335 |
msgstr ""
|
4336 |
|
4337 |
+
#: includes/B2S/Network/Item.php:813
|
4338 |
msgid "The link will be added automatically at the end of the post."
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: includes/B2S/Network/Item.php:811
|
4342 |
msgid ""
|
4343 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
4344 |
"your page, in order to refer to the original source of the content and to "
|
4349 |
msgid "The link you followed has expired. Please refresh your page."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: views/b2s/network.php:346 views/b2s/network.php:359 views/b2s/ship.php:580
|
4353 |
+
#: views/b2s/ship.php:588
|
4354 |
msgid ""
|
4355 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
4356 |
"sign in to Pinterest using the Blog2Social browser extension."
|
4357 |
msgstr ""
|
4358 |
|
4359 |
+
#: views/b2s/network.php:311
|
4360 |
msgid "The name of the post author."
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#: includes/Loader.php:902
|
4364 |
#, php-format
|
4365 |
msgid ""
|
4366 |
"The network can not publish special characters such as Emoji. Please see the "
|
4367 |
"following <a target=\"_blank\" href=\"%s\">guide</a>."
|
4368 |
msgstr ""
|
4369 |
|
4370 |
+
#: includes/Loader.php:892
|
4371 |
#, php-format
|
4372 |
msgid ""
|
4373 |
"The network could not publish your post. Please see the following <a "
|
4374 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: includes/B2S/Network/Item.php:818
|
4378 |
msgid "The network does not support hashtags."
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: includes/Loader.php:899
|
4382 |
#, php-format
|
4383 |
msgid ""
|
4384 |
"The network has blocked your account. Please see the following <a "
|
4385 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: includes/Loader.php:904
|
4389 |
msgid "The network requires a public url."
|
4390 |
msgstr ""
|
4391 |
|
4395 |
"image format and will display your standard image instead."
|
4396 |
msgstr ""
|
4397 |
|
4398 |
+
#: includes/Loader.php:900
|
4399 |
#, php-format
|
4400 |
msgid ""
|
4401 |
"The number of images is reached. Please see the following <a "
|
4410 |
msgid "The page and post meta data could not be removed."
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: views/b2s/network.php:466
|
4414 |
msgid "The parameters could not be saved. Please try again."
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: includes/B2S/Calendar/Item.php:534 includes/B2S/Post/Item.php:750
|
4418 |
+
#, php-format
|
4419 |
+
msgid ""
|
4420 |
+
"The post cannot be published due to changes on the Instagram interface. More "
|
4421 |
+
"information in the <a href=\"%s\" target=\"_blank\">Instagram guide</a>."
|
4422 |
+
msgstr ""
|
4423 |
+
|
4424 |
#: views/b2s/html/header.php:227
|
4425 |
msgid ""
|
4426 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
4433 |
"and events with one click.Publish your message over 250 portals."
|
4434 |
msgstr ""
|
4435 |
|
4436 |
+
#: views/b2s/network.php:312
|
4437 |
msgid ""
|
4438 |
"The price of your product, if you have installed WooCommerce on your "
|
4439 |
"website/ blog."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: includes/B2S/AutoPost/Item.php:48
|
4443 |
msgid ""
|
4444 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
4445 |
"admin."
|
4446 |
msgstr ""
|
4447 |
|
4448 |
+
#: views/b2s/network.php:308
|
4449 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
4450 |
msgstr ""
|
4451 |
|
4452 |
+
#: views/b2s/network.php:310
|
4453 |
msgid "The tags you have set in your post."
|
4454 |
msgstr ""
|
4455 |
|
4465 |
"target=\"_blank\">The Best Times to Post on Social Media</a>\"."
|
4466 |
msgstr ""
|
4467 |
|
4468 |
+
#: views/b2s/network.php:307
|
4469 |
msgid "The title of your post"
|
4470 |
msgstr ""
|
4471 |
|
4476 |
"Wordpress."
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: views/b2s/network.php:163
|
4480 |
msgid "The user to whom the connection is assigned still has scheduled posts."
|
4481 |
msgstr ""
|
4482 |
|
4483 |
+
#: views/b2s/network.php:544
|
4484 |
msgid "There are no other users to whom the connection can be assigned."
|
4485 |
msgstr ""
|
4486 |
|
4487 |
+
#: includes/Loader.php:823 includes/B2S/PostBox.php:146
|
4488 |
+
#: includes/B2S/AutoPost/Item.php:61
|
4489 |
msgid ""
|
4490 |
"There are no social network accounts assigned to your selected network "
|
4491 |
"collection. Please assign at least one social network account or select "
|
4492 |
"another network collection."
|
4493 |
msgstr ""
|
4494 |
|
4495 |
+
#: views/b2s/ship.php:560
|
4496 |
msgid ""
|
4497 |
"There is already a saved draft for this WordPress post or page. If you save "
|
4498 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
4506 |
"anymore. Do you want your press release to be published now?"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: views/b2s/ship.php:347
|
4510 |
msgid ""
|
4511 |
"This allows you to adjust your network selection at any time and save it by "
|
4512 |
"clicking on \"Save network selection\"."
|
4513 |
msgstr ""
|
4514 |
|
4515 |
+
#: views/b2s/network.php:535
|
4516 |
msgid "This connection has already been assigned to this user."
|
4517 |
msgstr ""
|
4518 |
|
4524 |
msgid "This entry was removed successfully."
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: includes/B2S/Settings/Item.php:136 includes/B2S/Settings/Item.php:165
|
4528 |
msgid ""
|
4529 |
"This is a global feature for your blog, which can only be edited by users "
|
4530 |
"with admin rights."
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: includes/B2S/Settings/Item.php:115
|
4534 |
msgid ""
|
4535 |
"This is a global system setting for your website / blog, which can be "
|
4536 |
"edited by users with admin rights only."
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: includes/B2S/Ship/Save.php:418 includes/B2S/Ship/Save.php:426
|
4540 |
msgid "This is how it works:"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: views/b2s/network.php:162
|
4544 |
msgid "This network connection is still assigned to other users."
|
4545 |
msgstr ""
|
4546 |
|
4552 |
msgid "This post was edited successfully."
|
4553 |
msgstr ""
|
4554 |
|
4555 |
+
#: includes/Loader.php:814
|
4556 |
msgid "This post will be shared into your social media from"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: includes/Loader.php:816
|
4560 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: includes/B2S/Network/Item.php:822
|
4564 |
msgid ""
|
4565 |
"This social network displays the predefined hashtags as clickable tags at "
|
4566 |
"the end of your post."
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: views/b2s/network.php:526
|
4570 |
msgid "This user don't have a Business License, or it is not the same"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
+
#: views/b2s/network.php:538
|
4574 |
msgid "This user has reached the maximum number of connections."
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: includes/Loader.php:907
|
4578 |
msgid ""
|
4579 |
"This XING API is no longer supported by XING. Please connect your XING "
|
4580 |
"accounts with the new XING interface to reschedule your posts."
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1320
|
4584 |
msgid "Thu"
|
4585 |
msgstr ""
|
4586 |
|
4588 |
msgid "Thursday"
|
4589 |
msgstr ""
|
4590 |
|
4591 |
+
#: includes/B2S/Ship/Item.php:1312 views/b2s/partials/post-edit-modal.php:68
|
4592 |
#: views/b2s/partials/post-edit-modal.php:71
|
4593 |
msgid "Time"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: includes/B2S/Ship/Item.php:1258
|
4597 |
msgid "Time to publish"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
+
#: views/b2s/ship.php:247
|
4601 |
msgid "Time zone"
|
4602 |
msgstr ""
|
4603 |
|
4605 |
msgid "times"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: includes/B2S/Ship/Item.php:1309
|
4609 |
msgid "Timespan"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: includes/B2S/Settings/Item.php:63
|
4613 |
msgid "Timezone for Scheduling"
|
4614 |
msgstr ""
|
4615 |
|
4616 |
+
#: views/b2s/ship.php:57 views/prg/ship.php:43 views/prg/ship.php:45
|
4617 |
+
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
|
4618 |
+
#: includes/B2S/Settings/Item.php:203 views/prg/html/form.php:26
|
4619 |
#: views/prg/html/form.php:28
|
4620 |
msgid "Title"
|
4621 |
msgstr ""
|
4624 |
msgid "title"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
+
#: views/b2s/settings.php:114
|
4628 |
msgid "Title: The title of your post."
|
4629 |
msgstr ""
|
4630 |
|
4631 |
+
#: views/b2s/autopost.php:76 views/b2s/repost.php:184
|
4632 |
msgid ""
|
4633 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
4634 |
"be sent to your primary Twitter profile."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: views/b2s/ship.php:349
|
4638 |
#, php-format
|
4639 |
msgid ""
|
4640 |
"To define and save more network selections for your posting purposes, you "
|
4669 |
msgid "To select an individual image from your media library,"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: includes/Loader.php:909
|
4673 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
4674 |
msgstr ""
|
4675 |
|
4679 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
4680 |
msgstr ""
|
4681 |
|
4682 |
+
#: includes/B2S/AutoPost/Item.php:109
|
4683 |
msgid "Transfer Auto-Poster settings to other users"
|
4684 |
msgstr ""
|
4685 |
|
4687 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
4688 |
msgstr ""
|
4689 |
|
4690 |
+
#: includes/Tools.php:428
|
4691 |
msgid "Travel & Places"
|
4692 |
msgstr ""
|
4693 |
|
4699 |
msgid "Troubleshooting-Tool"
|
4700 |
msgstr ""
|
4701 |
|
4702 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1318
|
4703 |
msgid "Tue"
|
4704 |
msgstr ""
|
4705 |
|
4707 |
msgid "Tuesday"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
+
#: includes/Tools.php:391
|
4711 |
msgid "Turkey"
|
4712 |
msgstr ""
|
4713 |
|
4736 |
"selection.</a>"
|
4737 |
msgstr ""
|
4738 |
|
4739 |
+
#: views/b2s/repost.php:217
|
4740 |
#, php-format
|
4741 |
msgid ""
|
4742 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
4743 |
"is used. <a href=\"%s\" target=\"_blank\">To create a network grouping.</a>"
|
4744 |
msgstr ""
|
4745 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4746 |
#: views/prg/html/header.php:28
|
4747 |
msgid ""
|
4748 |
"Unfortunately, your request cannot be processed by Blog2Social. Please try "
|
4749 |
"again!"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: includes/Tools.php:378
|
4753 |
msgid "United States of America"
|
4754 |
msgstr ""
|
4755 |
|
4761 |
msgid "Unknown error has occurred. Please try again."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: includes/Ajax/Post.php:1955 views/b2s/network.php:13
|
4765 |
#: includes/B2S/Network/Item.php:255 includes/B2S/Network/Item.php:325
|
4766 |
#: includes/B2S/Network/Item.php:396 includes/B2S/Network/Item.php:526
|
4767 |
msgid "Unknown username"
|
4773 |
"and text posts from any source."
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: includes/B2S/AutoPost/Item.php:70 includes/B2S/AutoPost/Item.php:82
|
4777 |
msgid "Unselect all"
|
4778 |
msgstr ""
|
4779 |
|
4785 |
msgid "Update..."
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: includes/B2S/AutoPost/Item.php:81
|
4789 |
msgid "updated posts"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
+
#: views/b2s/premium.php:31 includes/B2S/AutoPost/Item.php:145
|
4793 |
+
#: includes/B2S/AutoPost/Item.php:148 includes/B2S/RePost/Item.php:33
|
4794 |
msgid "Upgrade"
|
4795 |
msgstr ""
|
4796 |
|
4798 |
msgid "Upgrade License"
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: views/b2s/network.php:562
|
4802 |
msgid "Upgrade to Blog2Social Business"
|
4803 |
msgstr ""
|
4804 |
|
4805 |
+
#: views/b2s/network.php:561
|
4806 |
msgid ""
|
4807 |
"Upgrade to Blog2Social Business to easily bundle your connections into "
|
4808 |
"network collection and assign your social media connections to other blog "
|
4847 |
msgid "Upgrade to PREMIUM"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
+
#: includes/Loader.php:836 views/b2s/html/sidebar.php:45
|
4851 |
#: views/b2s/html/sidebar.ship.php:44
|
4852 |
msgid "Upgrade to Premium"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
+
#: includes/B2S/Settings/Item.php:229
|
4856 |
msgid "Upgrade to Premium Pro now."
|
4857 |
msgstr ""
|
4858 |
|
4862 |
msgstr ""
|
4863 |
|
4864 |
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:204
|
4865 |
+
#: views/b2s/post.calendar.php:301 views/b2s/ship.php:327
|
4866 |
+
#: views/b2s/ship.php:393 views/b2s/ship.php:439 views/b2s/html/footer.php:42
|
4867 |
#: views/b2s/html/footer.php:207 views/b2s/html/footer.php:271
|
4868 |
#: views/b2s/html/footer.php:311 views/b2s/html/footer.php:366
|
4869 |
#: views/b2s/html/footer.php:405 views/b2s/html/footer.php:463
|
4871 |
msgid "Upgrade to SMART and above"
|
4872 |
msgstr ""
|
4873 |
|
4874 |
+
#: views/b2s/network.php:465 views/b2s/network.php:565
|
4875 |
msgid "URL Parameters"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: includes/B2S/Settings/Item.php:78
|
4879 |
msgid "Url Shortener"
|
4880 |
msgstr ""
|
4881 |
|
4892 |
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
4893 |
msgstr ""
|
4894 |
|
4895 |
+
#: views/b2s/autopost.php:49 views/b2s/settings.php:145
|
4896 |
#: includes/B2S/Ship/Image.php:101
|
4897 |
msgid "Use image"
|
4898 |
msgstr ""
|
4903 |
"your own best time scheme."
|
4904 |
msgstr ""
|
4905 |
|
4906 |
+
#: views/b2s/settings.php:102
|
4907 |
msgid ""
|
4908 |
"Use the pre-defined best time settings or define your own best time settings "
|
4909 |
"for sharing your posts . Posting at the right time can be essential to make "
|
4910 |
"sure your content is most likely be seen."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: includes/B2S/Settings/Item.php:63
|
4914 |
msgid "User"
|
4915 |
msgstr ""
|
4916 |
|
4946 |
msgid "Video Post"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: views/b2s/network.php:180
|
4950 |
msgid "View schedule posts"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: includes/B2S/Ship/Save.php:443
|
4954 |
msgid "view social media post"
|
4955 |
msgstr ""
|
4956 |
|
4961 |
"duplicate posts."
|
4962 |
msgstr ""
|
4963 |
|
4964 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Item.php:787
|
4965 |
+
#: includes/B2S/Ship/Item.php:1212
|
4966 |
msgid ""
|
4967 |
"Violating these rules can result in Twitter suspending your account. Always "
|
4968 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
4969 |
"duplicate posts."
|
4970 |
msgstr ""
|
4971 |
|
4972 |
+
#: includes/Loader.php:895
|
4973 |
msgid ""
|
4974 |
"We don't have the permission to publish your post. Please check your "
|
4975 |
"authorization."
|
4996 |
msgid "Website & Blog Content"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1319
|
5000 |
msgid "Wed"
|
5001 |
msgstr ""
|
5002 |
|
5004 |
msgid "Wednesday"
|
5005 |
msgstr ""
|
5006 |
|
5007 |
+
#: includes/B2S/Ship/Item.php:1275
|
5008 |
msgid "Week"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: includes/B2S/Ship/Item.php:1267
|
5012 |
msgid "weekly"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: includes/B2S/Ship/Item.php:1275
|
5016 |
msgid "Weeks"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: views/b2s/post.calendar.php:179
|
5020 |
msgid "What would you like to share?"
|
5021 |
msgstr ""
|
5022 |
|
5028 |
msgid "When should your content be shared?"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: views/b2s/network.php:656 views/b2s/ship.php:687
|
5032 |
#, php-format
|
5033 |
msgid ""
|
5034 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
5041 |
" How to connect with Instagram.</a>."
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: views/b2s/curation.php:186 views/b2s/post.calendar.php:283
|
5045 |
+
#: views/b2s/ship.php:421
|
5046 |
msgid ""
|
5047 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
5048 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
5083 |
msgstr ""
|
5084 |
|
5085 |
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:190
|
5086 |
+
#: views/b2s/post.calendar.php:287 views/b2s/ship.php:313
|
5087 |
+
#: views/b2s/ship.php:379 views/b2s/ship.php:425 views/b2s/html/footer.php:28
|
5088 |
#: views/b2s/html/footer.php:193 views/b2s/html/footer.php:257
|
5089 |
#: views/b2s/html/footer.php:297 views/b2s/html/footer.php:352
|
5090 |
#: views/b2s/html/footer.php:391 views/b2s/html/footer.php:449
|
5092 |
msgid "With Blog2Social Premium you can:"
|
5093 |
msgstr ""
|
5094 |
|
5095 |
+
#: views/b2s/network.php:694
|
5096 |
msgid ""
|
5097 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
5098 |
"your posts on your favourite social media accounts automatically."
|
5133 |
"image for your link post without Twitter Card meta tags."
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: views/b2s/curation.php:356
|
5137 |
+
msgid ""
|
5138 |
+
"With Blog2Social you can share social media posts consisting of text, links, "
|
5139 |
+
"images, and videos automatically with your followers and readers and "
|
5140 |
+
"customize your posts with individual hashtags, @mentions, or emojis."
|
5141 |
+
msgstr ""
|
5142 |
+
|
5143 |
#: views/b2s/curation.php:226
|
5144 |
msgid ""
|
5145 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
5165 |
"content to be shared automatically."
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: includes/B2S/Settings/Item.php:229
|
5169 |
msgid ""
|
5170 |
"With Premium Pro, you can change the custom post format photo post or link "
|
5171 |
"post for each individual social media post and channel (profile, page, group)"
|
5175 |
#: views/b2s/html/header.php:65
|
5176 |
msgid ""
|
5177 |
"WordPress session timeout: For security reasons, WordPress will let your "
|
5178 |
+
"session expire automatically if your site has been inactive for a while. <a "
|
5179 |
+
"href=\"\">Please reload this page to go on with your current action.</a>"
|
5180 |
msgstr ""
|
5181 |
|
5182 |
#: includes/B2S/PostBox.php:144
|
5198 |
#: includes/B2S/Ship/Item.php:450 includes/B2S/Ship/Item.php:510
|
5199 |
#: includes/B2S/Ship/Item.php:570 includes/B2S/Ship/Item.php:599
|
5200 |
#: includes/B2S/Ship/Item.php:628 includes/B2S/Ship/Item.php:656
|
5201 |
+
#: includes/B2S/Ship/Item.php:684 includes/B2S/Ship/Item.php:712
|
5202 |
+
#: includes/B2S/Ship/Item.php:743 includes/B2S/Ship/Item.php:798
|
5203 |
+
#: includes/B2S/Ship/Item.php:849 includes/B2S/Ship/Item.php:870
|
5204 |
+
#: includes/B2S/Ship/Item.php:891 includes/B2S/Ship/Item.php:912
|
5205 |
+
#: includes/B2S/Ship/Item.php:932 includes/B2S/Ship/Item.php:953
|
5206 |
+
#: includes/B2S/Ship/Item.php:963
|
5207 |
msgid "Write something about your post..."
|
5208 |
msgstr ""
|
5209 |
|
5217 |
msgstr ""
|
5218 |
|
5219 |
#: views/b2s/curation.php:159 views/b2s/post.approve.php:114
|
5220 |
+
#: views/b2s/ship.php:483 views/b2s/ship.php:564
|
5221 |
msgid "YES"
|
5222 |
msgstr ""
|
5223 |
|
5224 |
+
#: views/b2s/curation.draft.php:91 views/b2s/network.php:116
|
5225 |
+
#: views/b2s/network.php:179 views/b2s/post.approve.php:99
|
5226 |
#: views/b2s/post.draft.php:88 views/b2s/post.notice.php:89
|
5227 |
+
#: views/b2s/post.publish.php:86 views/b2s/post.sched.php:104
|
5228 |
+
#: views/b2s/repost.php:106 views/b2s/repost.php:107
|
5229 |
#: views/b2s/widgets/posts.php:68
|
5230 |
msgid "YES, delete"
|
5231 |
msgstr ""
|
5259 |
msgid "You are sure, you want to delete entries from the reporting?"
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: views/b2s/post.sched.php:97 views/b2s/repost.php:99
|
5263 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
5264 |
msgstr ""
|
5265 |
|
5272 |
"to reach as many followers as possible."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
+
#: views/b2s/network.php:710
|
5276 |
msgid ""
|
5277 |
"You can also purchase additional groups and sites as add-on to your active "
|
5278 |
"Blog2Social Premium Pro or Premium Business license:"
|
5296 |
"editing the following fields for"
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: views/b2s/network.php:541
|
5300 |
msgid ""
|
5301 |
"You can only share the connection with blog users who use the same license "
|
5302 |
"as you."
|
5303 |
msgstr ""
|
5304 |
|
5305 |
+
#: views/b2s/ship.php:309
|
5306 |
msgid ""
|
5307 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
5308 |
"different choice of networks, profiles, pages or groups, or with different "
|
5316 |
"according to your current sharing preferences."
|
5317 |
msgstr ""
|
5318 |
|
5319 |
+
#: views/b2s/ship.php:343
|
5320 |
msgid ""
|
5321 |
"You can save your current network selection. This network selection will be "
|
5322 |
"loaded automatically next time you open the social media post editor via "
|
5330 |
"different sharing purposes."
|
5331 |
msgstr ""
|
5332 |
|
5333 |
+
#: views/b2s/curation.php:357
|
5334 |
msgid ""
|
5335 |
+
"You can select to share your post as a link post, video link post, or an "
|
5336 |
+
"image post on the following social networks:"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
+
#: views/b2s/curation.php:282
|
5340 |
msgid "You can share a text post on the following networks:"
|
5341 |
msgstr ""
|
5342 |
|
5343 |
+
#: includes/B2S/Settings/Item.php:79
|
5344 |
#, php-format
|
5345 |
msgid ""
|
5346 |
"You can use Bit.ly, Rebrandly or Sniply links to shorten the URL of your "
|
5362 |
"deactivated, you can ignore this message."
|
5363 |
msgstr ""
|
5364 |
|
5365 |
+
#: views/b2s/network.php:523
|
5366 |
msgid "You don't have a Business License"
|
5367 |
msgstr ""
|
5368 |
|
5369 |
+
#: includes/Loader.php:906
|
5370 |
msgid "You have already retweeted this post."
|
5371 |
msgstr ""
|
5372 |
|
5381 |
msgid "You have deleted all meta data for posts and pages successfully."
|
5382 |
msgstr ""
|
5383 |
|
5384 |
+
#: views/b2s/curation.php:183 views/b2s/post.calendar.php:280
|
5385 |
+
#: views/b2s/ship.php:418
|
5386 |
msgid ""
|
5387 |
"You have evergreen content you want to re-share from time to time in your "
|
5388 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
5409 |
msgid "You have not saved any favorites."
|
5410 |
msgstr ""
|
5411 |
|
5412 |
+
#: views/b2s/network.php:388 views/b2s/ship.php:617
|
5413 |
msgid ""
|
5414 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
5415 |
"up at least one pinboard to pin on your Pinterest account!"
|
5416 |
msgstr ""
|
5417 |
|
5418 |
+
#: views/b2s/network.php:161
|
5419 |
msgid "You have still set up scheduled posts for this network:"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: views/b2s/autopost.php:18 views/b2s/settings.php:23
|
5423 |
#: includes/B2S/Ship/Image.php:29
|
5424 |
msgid ""
|
5425 |
"You need a higher user role to upload an image on this blog. Please contact "
|
5432 |
"administrator."
|
5433 |
msgstr ""
|
5434 |
|
5435 |
+
#: views/b2s/network.php:497
|
5436 |
msgid "You need at least one network collection"
|
5437 |
msgstr ""
|
5438 |
|
5439 |
+
#: views/b2s/ship.php:312
|
5440 |
msgid "You want re-share your blog post?"
|
5441 |
msgstr ""
|
5442 |
|
5452 |
#: includes/B2S/Ship/Item.php:468 includes/B2S/Ship/Item.php:529
|
5453 |
#: includes/B2S/Ship/Item.php:588 includes/B2S/Ship/Item.php:618
|
5454 |
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:674
|
5455 |
+
#: includes/B2S/Ship/Item.php:702
|
5456 |
msgid ""
|
5457 |
"You want to change your link image, link title and link description for this "
|
5458 |
"network? Click here."
|
5473 |
msgid "You want to connect a social media group?"
|
5474 |
msgstr ""
|
5475 |
|
5476 |
+
#: views/b2s/network.php:385 views/b2s/network.php:386 views/b2s/ship.php:614
|
5477 |
+
#: views/b2s/ship.php:615
|
5478 |
#, php-format
|
5479 |
msgid ""
|
5480 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
5489 |
msgid "You want to create text posts?"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: views/b2s/network.php:40
|
5493 |
msgid "You want to define a new combination of networks?"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
+
#: includes/B2S/Post/Item.php:794 includes/B2S/Post/Item.php:807
|
5497 |
msgid "You want to delete a publish post entry?"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
+
#: includes/B2S/Post/Item.php:868
|
5501 |
msgid "You want to delete your Social Media post?"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
+
#: includes/B2S/Post/Item.php:923
|
5505 |
msgid "You want to edit your scheduled post?"
|
5506 |
msgstr ""
|
5507 |
|
5508 |
+
#: views/b2s/ship.php:72
|
5509 |
msgid "You want to load your time settings?"
|
5510 |
msgstr ""
|
5511 |
|
5512 |
+
#: views/b2s/curation.php:180 views/b2s/post.calendar.php:277
|
5513 |
+
#: views/b2s/ship.php:415
|
5514 |
msgid ""
|
5515 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
5516 |
"desired date and you are ready to go!"
|
5517 |
msgstr ""
|
5518 |
|
5519 |
+
#: views/b2s/network.php:54 views/b2s/ship.php:78 views/b2s/ship.php:378
|
5520 |
#: views/b2s/html/footer.php:256
|
5521 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
5522 |
msgstr ""
|
5523 |
|
5524 |
+
#: views/b2s/settings.php:104
|
5525 |
#, php-format
|
5526 |
msgid ""
|
5527 |
"You will find more information about the pre-defined best time settings by "
|
5528 |
"Blog2Social in this <a href=\"%s\" target=\"_blank\">best time guide</a>."
|
5529 |
msgstr ""
|
5530 |
|
5531 |
+
#: views/b2s/settings.php:97
|
5532 |
#, php-format
|
5533 |
msgid ""
|
5534 |
"You will find more information on how to connect your social media networks "
|
5536 |
"guide</a>."
|
5537 |
msgstr ""
|
5538 |
|
5539 |
+
#: views/b2s/settings.php:121
|
5540 |
#, php-format
|
5541 |
msgid ""
|
5542 |
"You will find more information on how to use post templates for your social "
|
5562 |
msgid "Your authorization has been removed successfully."
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: includes/Loader.php:893
|
5566 |
msgid ""
|
5567 |
"Your authorization has expired. Please reconnect your account in the "
|
5568 |
"Blog2Social network settings."
|
5572 |
msgid "Your authorization was successful."
|
5573 |
msgstr ""
|
5574 |
|
5575 |
+
#: views/b2s/ship.php:361
|
5576 |
msgid "Your blog post is not yet published on your Wordpress!"
|
5577 |
msgstr ""
|
5578 |
|
5579 |
+
#: includes/Loader.php:905
|
5580 |
msgid ""
|
5581 |
"Your blog post was not available for the network at the time of publishing."
|
5582 |
msgstr ""
|
5603 |
"Blog2Social <a target=\"_blank\" href=\"%s\">settings</a>"
|
5604 |
msgstr ""
|
5605 |
|
5606 |
+
#: views/b2s/premium.php:14 includes/B2S/AutoPost/Item.php:142
|
5607 |
msgid "Your current license:"
|
5608 |
msgstr ""
|
5609 |
|
5611 |
msgid "Your daily limit for posting automatically has been reached."
|
5612 |
msgstr ""
|
5613 |
|
5614 |
+
#: includes/Loader.php:901
|
5615 |
msgid ""
|
5616 |
"Your daily limit for this network has been reached. Please try again later."
|
5617 |
msgstr ""
|
5618 |
|
5619 |
+
#: includes/Loader.php:897
|
5620 |
msgid "Your daily limit has been reached."
|
5621 |
msgstr ""
|
5622 |
|
5636 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
5637 |
msgstr ""
|
5638 |
|
5639 |
+
#: includes/Loader.php:912
|
5640 |
msgid "Your group can not be found by the network."
|
5641 |
msgstr ""
|
5642 |
|
5662 |
msgid "Your message will now be sent over PR gateway to the press portals!"
|
5663 |
msgstr ""
|
5664 |
|
5665 |
+
#: includes/Loader.php:910
|
5666 |
msgid ""
|
5667 |
"Your post could not be posted, because your image can not be processed by "
|
5668 |
"the network."
|
5669 |
msgstr ""
|
5670 |
|
5671 |
+
#: includes/Loader.php:898
|
5672 |
msgid ""
|
5673 |
"Your post could not be posted, because your image is not available or the "
|
5674 |
"image source does not allow to publish"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
+
#: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:752
|
5678 |
+
#: includes/B2S/Ship/Save.php:467
|
5679 |
+
#, php-format
|
5680 |
+
msgid ""
|
5681 |
+
"Your post could not be posted. More information in this <a href=\"%s\" "
|
5682 |
+
"target=\"_blank\">Instagram troubleshoot checklist</a>."
|
5683 |
+
msgstr ""
|
5684 |
+
|
5685 |
+
#: includes/Loader.php:903
|
5686 |
msgid "Your post is a duplicate."
|
5687 |
msgstr ""
|
5688 |
|
5705 |
msgid "Your profiles:"
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: views/b2s/ship.php:345
|
5709 |
msgid ""
|
5710 |
"Your saved networks will be activated for your schedule (green checkmark) in "
|
5711 |
"the right side navigation. You can select or deselect social network "
|
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.8
|
8 |
-
Stable tag: 6.8.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -222,6 +222,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
|
|
222 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
223 |
|
224 |
== Changelog ==
|
|
|
|
|
225 |
= 6.8.1 =
|
226 |
Usability Optimization
|
227 |
= 6.8.0 =
|
@@ -282,6 +284,8 @@ Usability Optimization, Rebrandly integration, url parameter settings
|
|
282 |
New Image Posts, Imgur, Animated Gifs and Emojis
|
283 |
|
284 |
== Upgrade Notice ==
|
|
|
|
|
285 |
= 6.8.1 =
|
286 |
Usability Optimization
|
287 |
= 6.8.0 =
|
5 |
Donate link: https://paypal.me/adenion
|
6 |
Requires at least: 4.7.0
|
7 |
Tested up to: 5.8
|
8 |
+
Stable tag: 6.8.2
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
222 |
7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
|
223 |
|
224 |
== Changelog ==
|
225 |
+
= 6.8.2 =
|
226 |
+
Usability Optimization
|
227 |
= 6.8.1 =
|
228 |
Usability Optimization
|
229 |
= 6.8.0 =
|
284 |
New Image Posts, Imgur, Animated Gifs and Emojis
|
285 |
|
286 |
== Upgrade Notice ==
|
287 |
+
= 6.8.2 =
|
288 |
+
Usability Optimization
|
289 |
= 6.8.1 =
|
290 |
Usability Optimization
|
291 |
= 6.8.0 =
|
views/b2s/curation.php
CHANGED
@@ -265,6 +265,10 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
265 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
|
266 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
|
267 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Telegram') ?>" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>">
|
|
|
|
|
|
|
|
|
268 |
|
269 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Flickr') ?>" src="<?php echo plugins_url('/assets/images/portale/7_flat.png', B2S_PLUGIN_FILE) ?>">
|
270 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Diigo') ?>" src="<?php echo plugins_url('/assets/images/portale/9_flat.png', B2S_PLUGIN_FILE) ?>">
|
@@ -272,9 +276,6 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
272 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Instagram') ?>" src="<?php echo plugins_url('/assets/images/portale/12_flat.png', B2S_PLUGIN_FILE) ?>">
|
273 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Reddit') ?>" src="<?php echo plugins_url('/assets/images/portale/15_flat.png', B2S_PLUGIN_FILE) ?>">
|
274 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
|
275 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
|
276 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
|
277 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
|
278 |
</div>
|
279 |
<br>
|
280 |
<p><?php esc_html_e('Text posts enable you to share pure text messages and personal comments with your followers and readers. You can also customize your posts with individual hashtags, @mentions, or emojis.', 'blog2social') ?></p>
|
@@ -286,10 +287,14 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
286 |
<p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
|
287 |
<p class="b2s-bold"><?php esc_attr_e('Google My Business') ?></p>
|
288 |
<p class="b2s-bold"><?php esc_attr_e('Telegram') ?></p>
|
|
|
|
|
|
|
|
|
289 |
<br>
|
290 |
<p><?php echo sprintf(__('Get more information on how to share a text post with hashtags, @mentions and emojis in the <a href="%s" target="_blank">social media posts guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('cc_text_post_info')); ?></p>
|
291 |
<br>
|
292 |
-
<p><?php echo sprintf(__('
|
293 |
<br>
|
294 |
<?php echo sprintf(__('More information on how to create a network selection in the guide <a href="%s" target="_blank">"How can I save a specific selection of networks?"</a>', 'blog2social'), B2S_Tools::getSupportLink('network_grouping')); ?></p>
|
295 |
</div>
|
@@ -340,15 +345,16 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
340 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
|
341 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
|
342 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Telegram') ?>" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>">
|
|
|
|
|
|
|
|
|
343 |
|
344 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
|
345 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
|
346 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
|
347 |
-
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
|
348 |
</div>
|
349 |
<br>
|
350 |
-
<p><?php esc_html_e('With Blog2Social you can share social media posts consisting of
|
351 |
-
<h4><?php esc_html_e('You can select to share your post as
|
352 |
<p class="b2s-bold"><?php esc_attr_e('Facebook (Profile & Seiten)') ?></p>
|
353 |
<p class="b2s-bold"><?php esc_attr_e('Twitter (1 Profil)') ?></p>
|
354 |
<p class="b2s-bold"><?php esc_attr_e('LinkedIn') ?></p>
|
@@ -361,8 +367,12 @@ $selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date
|
|
361 |
<p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
|
362 |
<p class="b2s-bold"><?php esc_attr_e('Google My Business') ?></p>
|
363 |
<p class="b2s-bold"><?php esc_attr_e('Telegram') ?></p>
|
|
|
|
|
|
|
|
|
364 |
<br>
|
365 |
-
<p><?php echo sprintf(__('In the <a href="%s">Network Settings</a> you can define network selections to select and save your most
|
366 |
<br>
|
367 |
<?php echo sprintf(__('More information on how to create a network selection in the guide <a href="%s" target="_blank">"How can I save a specific selection of networks?"</a>', 'blog2social'), B2S_Tools::getSupportLink('network_grouping')); ?></p>
|
368 |
</div>
|
265 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
|
266 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
|
267 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Telegram') ?>" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>">
|
268 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
|
269 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
|
270 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
|
271 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Blogger') ?>" src="<?php echo plugins_url('/assets/images/portale/25_flat.png', B2S_PLUGIN_FILE) ?>">
|
272 |
|
273 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Flickr') ?>" src="<?php echo plugins_url('/assets/images/portale/7_flat.png', B2S_PLUGIN_FILE) ?>">
|
274 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Diigo') ?>" src="<?php echo plugins_url('/assets/images/portale/9_flat.png', B2S_PLUGIN_FILE) ?>">
|
276 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Instagram') ?>" src="<?php echo plugins_url('/assets/images/portale/12_flat.png', B2S_PLUGIN_FILE) ?>">
|
277 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Reddit') ?>" src="<?php echo plugins_url('/assets/images/portale/15_flat.png', B2S_PLUGIN_FILE) ?>">
|
278 |
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
|
|
|
|
|
|
|
279 |
</div>
|
280 |
<br>
|
281 |
<p><?php esc_html_e('Text posts enable you to share pure text messages and personal comments with your followers and readers. You can also customize your posts with individual hashtags, @mentions, or emojis.', 'blog2social') ?></p>
|
287 |
<p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
|
288 |
<p class="b2s-bold"><?php esc_attr_e('Google My Business') ?></p>
|
289 |
<p class="b2s-bold"><?php esc_attr_e('Telegram') ?></p>
|
290 |
+
<p class="b2s-bold"><?php esc_attr_e('Torial') ?></p>
|
291 |
+
<p class="b2s-bold"><?php esc_attr_e('Tumblr') ?></p>
|
292 |
+
<p class="b2s-bold"><?php esc_attr_e('Bloglovin') ?></p>
|
293 |
+
<p class="b2s-bold"><?php esc_attr_e('Blogger') ?></p>
|
294 |
<br>
|
295 |
<p><?php echo sprintf(__('Get more information on how to share a text post with hashtags, @mentions and emojis in the <a href="%s" target="_blank">social media posts guide</a>.', 'blog2social'), B2S_Tools::getSupportLink('cc_text_post_info')); ?></p>
|
296 |
<br>
|
297 |
+
<p><?php echo sprintf(__('In the <a href="%s">Network Settings</a> you can define one or more network selections for your posts.', 'blog2social'), 'admin.php?page=blog2social-network'); ?>
|
298 |
<br>
|
299 |
<?php echo sprintf(__('More information on how to create a network selection in the guide <a href="%s" target="_blank">"How can I save a specific selection of networks?"</a>', 'blog2social'), B2S_Tools::getSupportLink('network_grouping')); ?></p>
|
300 |
</div>
|
345 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('XING') ?>" src="<?php echo plugins_url('/assets/images/portale/19_flat.png', B2S_PLUGIN_FILE) ?>">
|
346 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Google My Business') ?>" src="<?php echo plugins_url('/assets/images/portale/18_flat.png', B2S_PLUGIN_FILE) ?>">
|
347 |
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Telegram') ?>" src="<?php echo plugins_url('/assets/images/portale/24_flat.png', B2S_PLUGIN_FILE) ?>">
|
348 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Tumblr') ?>" src="<?php echo plugins_url('/assets/images/portale/4_flat.png', B2S_PLUGIN_FILE) ?>">
|
349 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Torial') ?>" src="<?php echo plugins_url('/assets/images/portale/14_flat.png', B2S_PLUGIN_FILE) ?>">
|
350 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Bloglovin') ?>" src="<?php echo plugins_url('/assets/images/portale/16_flat.png', B2S_PLUGIN_FILE) ?>">
|
351 |
+
<img class="pull-left hidden-xs b2s-network-info-img" alt="<?php esc_attr_e('Blogger') ?>" src="<?php echo plugins_url('/assets/images/portale/25_flat.png', B2S_PLUGIN_FILE) ?>">
|
352 |
|
353 |
+
<img class="pull-right hidden-xs b2s-network-info-img-disabled" alt="<?php esc_attr_e('Medium') ?>" src="<?php echo plugins_url('/assets/images/portale/11_flat.png', B2S_PLUGIN_FILE) ?>">
|
|
|
|
|
|
|
354 |
</div>
|
355 |
<br>
|
356 |
+
<p><?php esc_html_e('With Blog2Social you can share social media posts consisting of text, links, images, and videos automatically with your followers and readers and customize your posts with individual hashtags, @mentions, or emojis.', 'blog2social') ?></p>
|
357 |
+
<h4><?php esc_html_e('You can select to share your post as a link post, video link post, or an image post on the following social networks:', 'blog2social') ?></h4>
|
358 |
<p class="b2s-bold"><?php esc_attr_e('Facebook (Profile & Seiten)') ?></p>
|
359 |
<p class="b2s-bold"><?php esc_attr_e('Twitter (1 Profil)') ?></p>
|
360 |
<p class="b2s-bold"><?php esc_attr_e('LinkedIn') ?></p>
|
367 |
<p class="b2s-bold"><?php esc_attr_e('XING (Profile & Seiten)') ?></p>
|
368 |
<p class="b2s-bold"><?php esc_attr_e('Google My Business') ?></p>
|
369 |
<p class="b2s-bold"><?php esc_attr_e('Telegram') ?></p>
|
370 |
+
<p class="b2s-bold"><?php esc_attr_e('Tumblr') ?></p>
|
371 |
+
<p class="b2s-bold"><?php esc_attr_e('Torial') ?></p>
|
372 |
+
<p class="b2s-bold"><?php esc_attr_e('Bloglovin') ?></p>
|
373 |
+
<p class="b2s-bold"><?php esc_attr_e('Blogger') ?></p>
|
374 |
<br>
|
375 |
+
<p><?php echo sprintf(__('In the <a href="%s">Network Settings</a> you can define network selections to select and save your most-used networks for specific posts or campaigns.', 'blog2social'), 'admin.php?page=blog2social-network'); ?>
|
376 |
<br>
|
377 |
<?php echo sprintf(__('More information on how to create a network selection in the guide <a href="%s" target="_blank">"How can I save a specific selection of networks?"</a>', 'blog2social'), B2S_Tools::getSupportLink('network_grouping')); ?></p>
|
378 |
</div>
|
views/b2s/html/header.php
CHANGED
@@ -62,7 +62,7 @@ if (!B2S_System::isblockedArea('B2S_USER_POLICY', B2S_PLUGIN_ADMIN)) {
|
|
62 |
</div>
|
63 |
<div class="panel panel-group b2s-nonce-check-fail" style="display: none;">
|
64 |
<div class="panel-body">
|
65 |
-
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php
|
66 |
</div>
|
67 |
</div>
|
68 |
|
62 |
</div>
|
63 |
<div class="panel panel-group b2s-nonce-check-fail" style="display: none;">
|
64 |
<div class="panel-body">
|
65 |
+
<span class="glyphicon glyphicon-remove glyphicon-danger"></span> <?php _e('WordPress session timeout: For security reasons, WordPress will let your session expire automatically if your site has been inactive for a while. <a href="">Please reload this page to go on with your current action.</a>', 'blog2social'); ?>
|
66 |
</div>
|
67 |
</div>
|
68 |
|
views/b2s/network.php
CHANGED
@@ -2,6 +2,12 @@
|
|
2 |
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
require_once B2S_PLUGIN_DIR . 'includes/B2S/Network/Item.php';
|
4 |
require_once B2S_PLUGIN_DIR . 'includes/Tools.php';
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
$b2sSiteUrl = get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/');
|
6 |
$displayName = stripslashes(get_user_by('id', B2S_PLUGIN_BLOG_USER_ID)->display_name);
|
7 |
$displayName = ((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName);
|
@@ -723,6 +729,7 @@ $networkData = $networkItem->getData();
|
|
723 |
</div>
|
724 |
|
725 |
<input type="hidden" id="b2sUserLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
|
|
726 |
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
727 |
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>">
|
728 |
<input type="hidden" id="b2s-redirect-url-sched-post" value="<?php echo $b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-sched'; ?>"/>
|
2 |
wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
3 |
require_once B2S_PLUGIN_DIR . 'includes/B2S/Network/Item.php';
|
4 |
require_once B2S_PLUGIN_DIR . 'includes/Tools.php';
|
5 |
+
require_once B2S_PLUGIN_DIR . 'includes/Options.php';
|
6 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
7 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
8 |
+
if($optionUserTimeFormat == false) {
|
9 |
+
$optionUserTimeFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 0 : 1;
|
10 |
+
}
|
11 |
$b2sSiteUrl = get_option('siteurl') . ((substr(get_option('siteurl'), -1, 1) == '/') ? '' : '/');
|
12 |
$displayName = stripslashes(get_user_by('id', B2S_PLUGIN_BLOG_USER_ID)->display_name);
|
13 |
$displayName = ((empty($displayName) || $displayName == false) ? __("Unknown username", "blog2social") : $displayName);
|
729 |
</div>
|
730 |
|
731 |
<input type="hidden" id="b2sUserLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
732 |
+
<input type="hidden" id="b2sUserTimeFormat" value="<?php echo $optionUserTimeFormat; ?>">
|
733 |
<input type="hidden" id="b2sServerUrl" value="<?php echo B2S_PLUGIN_SERVER_URL; ?>">
|
734 |
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>">
|
735 |
<input type="hidden" id="b2s-redirect-url-sched-post" value="<?php echo $b2sSiteUrl . 'wp-admin/admin.php?page=blog2social-sched'; ?>"/>
|
views/b2s/post.calendar.php
CHANGED
@@ -11,6 +11,10 @@ $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
|
11 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
12 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
13 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
|
|
|
|
|
|
|
|
14 |
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
15 |
?>
|
16 |
|
@@ -85,6 +89,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
85 |
</div>
|
86 |
|
87 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
|
|
88 |
<input type="hidden" id="b2sJSTextAddPost" value="<?php esc_html_e("add post", "blog2social"); ?>">
|
89 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
90 |
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
@@ -300,4 +305,22 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
300 |
</div>
|
301 |
</div>
|
302 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
</div>
|
11 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
12 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
13 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
14 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
15 |
+
if($optionUserTimeFormat == false) {
|
16 |
+
$optionUserTimeFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 0 : 1;
|
17 |
+
}
|
18 |
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
19 |
?>
|
20 |
|
89 |
</div>
|
90 |
|
91 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
92 |
+
<input type="hidden" id="b2sUserTimeFormat" value="<?php echo $optionUserTimeFormat; ?>">
|
93 |
<input type="hidden" id="b2sJSTextAddPost" value="<?php esc_html_e("add post", "blog2social"); ?>">
|
94 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
95 |
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
305 |
</div>
|
306 |
</div>
|
307 |
</div>
|
308 |
+
</div>
|
309 |
+
|
310 |
+
<div id="b2s-show-error-modal" class="modal fade" role="dialog" aria-labelledby="b2s-show-error-modal" aria-hidden="true" data-backdrop="false" style="display:none;z-index: 1070;">
|
311 |
+
<div class="modal-dialog modal-lg">
|
312 |
+
<div class="modal-content">
|
313 |
+
<div class="modal-header">
|
314 |
+
<button type="button" class="b2s-modal-close close" data-modal-name="#b2s-show-error-modal">×</button>
|
315 |
+
<h4 class="modal-title"><?php esc_html_e('Notification', 'blog2social') ?></h4>
|
316 |
+
</div>
|
317 |
+
<div class="modal-body">
|
318 |
+
<div class="row">
|
319 |
+
<div class="col-xs-12">
|
320 |
+
<div class="alert alert-danger b2s-error-text"></div>
|
321 |
+
</div>
|
322 |
+
</div>
|
323 |
+
</div>
|
324 |
+
</div>
|
325 |
+
</div>
|
326 |
</div>
|
views/b2s/post.sched.php
CHANGED
@@ -12,6 +12,10 @@ $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
|
12 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
13 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
14 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
|
|
|
|
|
|
|
|
15 |
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
16 |
?>
|
17 |
|
@@ -169,6 +173,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
169 |
|
170 |
|
171 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
|
|
172 |
<input type="hidden" id="b2sJSTextAddPost" value="<?php echo esc_html_e("add post", "blog2social"); ?>">
|
173 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
174 |
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
12 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
13 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
14 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
15 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
16 |
+
if($optionUserTimeFormat == false) {
|
17 |
+
$optionUserTimeFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 0 : 1;
|
18 |
+
}
|
19 |
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
20 |
?>
|
21 |
|
173 |
|
174 |
|
175 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
176 |
+
<input type="hidden" id="b2sUserTimeFormat" value="<?php echo $optionUserTimeFormat; ?>">
|
177 |
<input type="hidden" id="b2sJSTextAddPost" value="<?php echo esc_html_e("add post", "blog2social"); ?>">
|
178 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
179 |
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
views/b2s/repost.php
CHANGED
@@ -9,6 +9,10 @@ $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
|
9 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
10 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
11 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
|
|
|
|
|
|
|
|
12 |
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
13 |
?>
|
14 |
|
@@ -62,6 +66,7 @@ $metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
|
62 |
|
63 |
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
|
64 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
|
|
65 |
<input type="hidden" id="b2sJSTextAddPost" value="<?php echo esc_html_e("add post", "blog2social"); ?>">
|
66 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
67 |
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
9 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
10 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
11 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
12 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
13 |
+
if($optionUserTimeFormat == false) {
|
14 |
+
$optionUserTimeFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 0 : 1;
|
15 |
+
}
|
16 |
$metaSettings = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
17 |
?>
|
18 |
|
66 |
|
67 |
<input type="hidden" id="b2sUserVersion" value="<?php echo B2S_PLUGIN_USER_VERSION; ?>" />
|
68 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
69 |
+
<input type="hidden" id="b2sUserTimeFormat" value="<?php echo $optionUserTimeFormat; ?>">
|
70 |
<input type="hidden" id="b2sJSTextAddPost" value="<?php echo esc_html_e("add post", "blog2social"); ?>">
|
71 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
72 |
<input type='hidden' id="user_timezone" name="user_timezone" value="<?php echo $userTimeZoneOffset; ?>">
|
views/b2s/settings.php
CHANGED
@@ -3,6 +3,11 @@ wp_nonce_field('b2s_security_nonce', 'b2s_security_nonce');
|
|
3 |
require_once B2S_PLUGIN_DIR . 'includes/B2S/Settings/Item.php';
|
4 |
require_once B2S_PLUGIN_DIR . 'includes/Options.php';
|
5 |
$settingsItem = new B2S_Settings_Item();
|
|
|
|
|
|
|
|
|
|
|
6 |
?>
|
7 |
|
8 |
<div class="b2s-container">
|
@@ -133,6 +138,7 @@ require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.php');
|
|
133 |
</div>
|
134 |
|
135 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
|
|
136 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
137 |
<input type="hidden" id="b2sShowSection" value="<?php echo (isset($_GET['show']) ? esc_attr($_GET['show']) : ''); ?>">
|
138 |
<input type="hidden" id="b2s_wp_media_headline" value="<?php esc_html_e('Select or upload an image from media gallery', 'blog2social') ?>">
|
@@ -191,7 +197,7 @@ require_once (B2S_PLUGIN_DIR . 'views/b2s/html/footer.php');
|
|
191 |
<h4 class="modal-title"><?php esc_html_e('Personal Time Zone', 'blog2social') ?></h4>
|
192 |
</div>
|
193 |
<div class="modal-body">
|
194 |
-
<?php esc_html_e('Blog2Social applies the scheduled time settings based on the time zone defined in the general settings of your WordPress.
|
195 |
</div>
|
196 |
</div>
|
197 |
</div>
|
3 |
require_once B2S_PLUGIN_DIR . 'includes/B2S/Settings/Item.php';
|
4 |
require_once B2S_PLUGIN_DIR . 'includes/Options.php';
|
5 |
$settingsItem = new B2S_Settings_Item();
|
6 |
+
$options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
7 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
8 |
+
if($optionUserTimeFormat == false) {
|
9 |
+
$optionUserTimeFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 0 : 1;
|
10 |
+
}
|
11 |
?>
|
12 |
|
13 |
<div class="b2s-container">
|
138 |
</div>
|
139 |
|
140 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
141 |
+
<input type="hidden" id="b2sUserTimeFormat" value="<?php echo $optionUserTimeFormat; ?>">
|
142 |
<input type="hidden" id="b2sUserLang" value="<?php echo strtolower(substr(get_locale(), 0, 2)); ?>">
|
143 |
<input type="hidden" id="b2sShowSection" value="<?php echo (isset($_GET['show']) ? esc_attr($_GET['show']) : ''); ?>">
|
144 |
<input type="hidden" id="b2s_wp_media_headline" value="<?php esc_html_e('Select or upload an image from media gallery', 'blog2social') ?>">
|
197 |
<h4 class="modal-title"><?php esc_html_e('Personal Time Zone', 'blog2social') ?></h4>
|
198 |
</div>
|
199 |
<div class="modal-body">
|
200 |
+
<?php esc_html_e('Blog2Social applies the scheduled time settings based on the time zone defined in the general settings of your WordPress. YYou can select a user-specific time zone that deviates from the Wordpress system time zone for your social media scheduling. To do this, select the desired time zone 24h or 12h (am/pm), by simply clicking on the button.', 'blog2social') ?>
|
201 |
</div>
|
202 |
</div>
|
203 |
</div>
|
views/b2s/ship.php
CHANGED
@@ -20,6 +20,10 @@ $options = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
|
20 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
21 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
22 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
|
|
|
|
|
|
|
|
23 |
$isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '';
|
24 |
$selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date("Y-m-d", (strtotime($_GET['schedDate'] . ' ' . B2S_Util::getCustomLocaleDateTime($userTimeZoneOffset, 'H:i:s')) + 3600)) : ( (isset($_GET['schedDateTime']) && !empty($_GET['schedDateTime'])) ? date("Y-m-d H:i:s", strtotime(B2S_Util::getUTCForDate($_GET['schedDateTime'], $userTimeZoneOffset * (-1)))) : '' ); //routing from calendar or curated content
|
25 |
$b2sGeneralOptions = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
@@ -758,6 +762,7 @@ if (isset($_GET['type']) && $_GET['type'] == 'draft' && isset($_GET['postId']) &
|
|
758 |
|
759 |
|
760 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
|
|
761 |
<input type="hidden" id="b2sJSTextAddSchedule" value="<?php esc_html_e("add Schedule", "blog2social"); ?>">
|
762 |
<input type="hidden" id="b2sInsertImageType" value="0">
|
763 |
<input type="hidden" id="b2sUserLang" value="<?php echo $userLang; ?>">
|
20 |
$optionUserTimeZone = $options->_getOption('user_time_zone');
|
21 |
$userTimeZone = ($optionUserTimeZone !== false) ? $optionUserTimeZone : get_option('timezone_string');
|
22 |
$userTimeZoneOffset = (empty($userTimeZone)) ? get_option('gmt_offset') : B2S_Util::getOffsetToUtcByTimeZone($userTimeZone);
|
23 |
+
$optionUserTimeFormat = $options->_getOption('user_time_format');
|
24 |
+
if($optionUserTimeFormat == false) {
|
25 |
+
$optionUserTimeFormat = (substr(B2S_LANGUAGE, 0, 2) == 'de') ? 0 : 1;
|
26 |
+
}
|
27 |
$isPremium = (B2S_PLUGIN_USER_VERSION == 0) ? '<span class="label label-success">' . esc_html__("SMART", "blog2social") . '</span>' : '';
|
28 |
$selSchedDate = (isset($_GET['schedDate']) && !empty($_GET['schedDate'])) ? date("Y-m-d", (strtotime($_GET['schedDate'] . ' ' . B2S_Util::getCustomLocaleDateTime($userTimeZoneOffset, 'H:i:s')) + 3600)) : ( (isset($_GET['schedDateTime']) && !empty($_GET['schedDateTime'])) ? date("Y-m-d H:i:s", strtotime(B2S_Util::getUTCForDate($_GET['schedDateTime'], $userTimeZoneOffset * (-1)))) : '' ); //routing from calendar or curated content
|
29 |
$b2sGeneralOptions = get_option('B2S_PLUGIN_GENERAL_OPTIONS');
|
762 |
|
763 |
|
764 |
<input type="hidden" id="b2sLang" value="<?php echo substr(B2S_LANGUAGE, 0, 2); ?>">
|
765 |
+
<input type="hidden" id="b2sUserTimeFormat" value="<?php echo $optionUserTimeFormat; ?>">
|
766 |
<input type="hidden" id="b2sJSTextAddSchedule" value="<?php esc_html_e("add Schedule", "blog2social"); ?>">
|
767 |
<input type="hidden" id="b2sInsertImageType" value="0">
|
768 |
<input type="hidden" id="b2sUserLang" value="<?php echo $userLang; ?>">
|