Version Description
Usabilitiy and Performance Optimization. Bugfix: Heartbeat
Download this release
Release Info
Developer | Blog2Social |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 4.1.1 |
Comparing to | |
See all releases |
Code changes from version 4.1.0 to 4.1.1
- includes/Init.php +7 -3
- includes/MetaBox.php +1 -1
- includes/System.php +19 -2
- index.php +2 -3
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +133 -122
- languages/blog2social-fr_FR.mo +0 -0
- languages/blog2social-fr_FR.po +124 -116
- readme.txt +5 -1
- views/b2s/dashboard.php +1 -1
includes/Init.php
CHANGED
@@ -73,6 +73,8 @@ class B2S_Init {
|
|
73 |
}
|
74 |
|
75 |
public function b2s_delete_sched_post($post_id) {
|
|
|
|
|
76 |
if ((int) $post_id > 0) {
|
77 |
global $wpdb;
|
78 |
//Heartbeat => b2s_delete_sched_post
|
@@ -128,7 +130,7 @@ class B2S_Init {
|
|
128 |
if ((strtolower($_POST['post_status']) == "publish" || strtolower($_POST['post_status']) == "future") && isset($_POST['b2s-post-meta-box-profil-dropdown'])) {
|
129 |
$profilId = (int) $_POST['b2s-post-meta-box-profil-dropdown'];
|
130 |
if (isset($_POST['b2s-post-meta-box-profil-data-' . $profilId]) && !empty($_POST['b2s-post-meta-box-profil-data-' . $profilId])) {
|
131 |
-
$networkData = unserialize(stripslashes($_POST['b2s-post-meta-box-profil-data-' . $profilId]));
|
132 |
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
133 |
$user_timezone = isset($_POST['b2s-user-timezone']) ? $_POST['b2s-user-timezone'] : 0;
|
134 |
$current_utc_date = gmdate('Y-m-d H:i:s');
|
@@ -564,9 +566,11 @@ class B2S_Init {
|
|
564 |
}
|
565 |
}
|
566 |
|
567 |
-
public function addBootAssets() {
|
568 |
wp_enqueue_script('B2SVALIDATEJS');
|
569 |
-
|
|
|
|
|
570 |
}
|
571 |
|
572 |
public function addAssets() {
|
73 |
}
|
74 |
|
75 |
public function b2s_delete_sched_post($post_id) {
|
76 |
+
|
77 |
+
wp_enqueue_script('B2SPOSTSCHEDHEARTBEATJS');
|
78 |
if ((int) $post_id > 0) {
|
79 |
global $wpdb;
|
80 |
//Heartbeat => b2s_delete_sched_post
|
130 |
if ((strtolower($_POST['post_status']) == "publish" || strtolower($_POST['post_status']) == "future") && isset($_POST['b2s-post-meta-box-profil-dropdown'])) {
|
131 |
$profilId = (int) $_POST['b2s-post-meta-box-profil-dropdown'];
|
132 |
if (isset($_POST['b2s-post-meta-box-profil-data-' . $profilId]) && !empty($_POST['b2s-post-meta-box-profil-data-' . $profilId])) {
|
133 |
+
$networkData = unserialize(stripslashes(base64_decode($_POST['b2s-post-meta-box-profil-data-' . $profilId])));
|
134 |
if ($networkData !== false && is_array($networkData) && !empty($networkData)) {
|
135 |
$user_timezone = isset($_POST['b2s-user-timezone']) ? $_POST['b2s-user-timezone'] : 0;
|
136 |
$current_utc_date = gmdate('Y-m-d H:i:s');
|
566 |
}
|
567 |
}
|
568 |
|
569 |
+
public function addBootAssets($hook) {
|
570 |
wp_enqueue_script('B2SVALIDATEJS');
|
571 |
+
if ($hook == 'edit.php') {
|
572 |
+
wp_enqueue_script('B2SPOSTSCHEDHEARTBEATJS');
|
573 |
+
}
|
574 |
}
|
575 |
|
576 |
public function addAssets() {
|
includes/MetaBox.php
CHANGED
@@ -135,7 +135,7 @@ class B2S_MetaBox {
|
|
135 |
foreach ($mandant as $k => $m) {
|
136 |
$content .= '<option value="' . $m->id . '">' . $m->name . '</option>';
|
137 |
$profilData = (isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0])) ? serialize($auth->{$m->id}) : '';
|
138 |
-
$authContent .= "<input type='hidden' id='b2s-post-meta-box-profil-data-" . $m->id . "' name='b2s-post-meta-box-profil-data-" . $m->id . "' value='" . $profilData . "'/>";
|
139 |
}
|
140 |
$content .= '</select></div>';
|
141 |
$content .= $authContent;
|
135 |
foreach ($mandant as $k => $m) {
|
136 |
$content .= '<option value="' . $m->id . '">' . $m->name . '</option>';
|
137 |
$profilData = (isset($auth->{$m->id}) && isset($auth->{$m->id}[0]) && !empty($auth->{$m->id}[0])) ? serialize($auth->{$m->id}) : '';
|
138 |
+
$authContent .= "<input type='hidden' id='b2s-post-meta-box-profil-data-" . $m->id . "' name='b2s-post-meta-box-profil-data-" . $m->id . "' value='" . base64_encode($profilData) . "'/>";
|
139 |
}
|
140 |
$content .= '</select></div>';
|
141 |
$content .= $authContent;
|
includes/System.php
CHANGED
@@ -13,6 +13,9 @@ class B2S_System {
|
|
13 |
if (!$this->checkCurl()) {
|
14 |
$result['curl'] = false;
|
15 |
}
|
|
|
|
|
|
|
16 |
}
|
17 |
if ($action == 'after') {
|
18 |
if (!$this->checkDbTables()) {
|
@@ -26,6 +29,14 @@ class B2S_System {
|
|
26 |
private function checkCurl() {
|
27 |
return function_exists('curl_version');
|
28 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
private function checkDbTables() {
|
31 |
global $wpdb;
|
@@ -50,13 +61,19 @@ class B2S_System {
|
|
50 |
$output .= __('Blog2Social used cURL. cURL is not installed in your PHP installation on your server. Install cURL and activate Blog2Social again.', 'blog2social');
|
51 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
52 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
53 |
-
$output .= __('Please see <a href="https://www.blog2social.com/en/faq/
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
}
|
55 |
if ($error == 'dbTable' && $status == false) {
|
56 |
$output .= __('Blog2Social seems to have no permission to write in your WordPress database. Please make sure to assign Blog2Social the permission to write in the WordPress database.', 'blog2social');
|
57 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
58 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
59 |
-
$output .= __('<a href="https://www.blog2social.com/en/faq/
|
60 |
}
|
61 |
}
|
62 |
}
|
13 |
if (!$this->checkCurl()) {
|
14 |
$result['curl'] = false;
|
15 |
}
|
16 |
+
if(!$this->checkPHP()){
|
17 |
+
$result['php'] = false;
|
18 |
+
}
|
19 |
}
|
20 |
if ($action == 'after') {
|
21 |
if (!$this->checkDbTables()) {
|
29 |
private function checkCurl() {
|
30 |
return function_exists('curl_version');
|
31 |
}
|
32 |
+
|
33 |
+
private function checkPHP(){
|
34 |
+
if (version_compare(phpversion(), '5.5.3', '<')) {
|
35 |
+
return false;
|
36 |
+
}
|
37 |
+
return true;
|
38 |
+
}
|
39 |
+
|
40 |
|
41 |
private function checkDbTables() {
|
42 |
global $wpdb;
|
61 |
$output .= __('Blog2Social used cURL. cURL is not installed in your PHP installation on your server. Install cURL and activate Blog2Social again.', 'blog2social');
|
62 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
63 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
64 |
+
$output .= __('Please see <a href="https://www.blog2social.com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social.html" target="_blank">FAQ</a>', 'blog2social') . '</a>';
|
65 |
+
}
|
66 |
+
if ($error == 'php' && $status == false) {
|
67 |
+
$output .= __('Blog2Social used PHP. Your installed PHP version on your server is not high enough to use Blog2Social. Update your PHP version on 5.5.3 or higher.', 'blog2social');
|
68 |
+
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
69 |
+
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
70 |
+
$output .= __('Please see <a href="https://www.blog2social.com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social.html" target="_blank">FAQ</a>', 'blog2social') . '</a>';
|
71 |
}
|
72 |
if ($error == 'dbTable' && $status == false) {
|
73 |
$output .= __('Blog2Social seems to have no permission to write in your WordPress database. Please make sure to assign Blog2Social the permission to write in the WordPress database.', 'blog2social');
|
74 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
75 |
$output .= (!$removeBreakline) ? '<br>' : ' ';
|
76 |
+
$output .= __('<a href="https://www.blog2social.com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social.html" target="_blank"> Please find more Information and help in our FAQ</a>', 'blog2social') . '</a>.';
|
77 |
}
|
78 |
}
|
79 |
}
|
index.php
CHANGED
@@ -7,13 +7,12 @@
|
|
7 |
* Author: Blog2Social, Adenion
|
8 |
* Text Domain: blog2social
|
9 |
* Domain Path: /languages
|
10 |
-
* Version: 4.1.
|
11 |
* Author URI: https://www.blog2social.com
|
12 |
* License: GPL2+
|
13 |
*/
|
14 |
-
|
15 |
//B2SDefine
|
16 |
-
define('B2S_PLUGIN_VERSION', '
|
17 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
18 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
19 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
7 |
* Author: Blog2Social, Adenion
|
8 |
* Text Domain: blog2social
|
9 |
* Domain Path: /languages
|
10 |
+
* Version: 4.1.1
|
11 |
* Author URI: https://www.blog2social.com
|
12 |
* License: GPL2+
|
13 |
*/
|
|
|
14 |
//B2SDefine
|
15 |
+
define('B2S_PLUGIN_VERSION', '411');
|
16 |
define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
|
17 |
define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
18 |
define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
|
languages/blog2social-de_DE.mo
CHANGED
Binary file
|
languages/blog2social-de_DE.po
CHANGED
@@ -4,7 +4,7 @@ msgstr ""
|
|
4 |
"Stable (latest release)\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
"POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
|
7 |
-
"PO-Revision-Date: Tue
|
8 |
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: German\n"
|
@@ -23,72 +23,35 @@ msgstr ""
|
|
23 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
"X-Loco-Target-Locale: de_DE"
|
25 |
|
26 |
-
#: ../../plugins/blog2social-v-3/includes/
|
27 |
-
|
28 |
-
msgstr "Du brauchst mehr?"
|
29 |
-
|
30 |
-
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:131
|
31 |
-
msgid "Did you know?"
|
32 |
-
msgstr "Wusstest Du schon?"
|
33 |
-
|
34 |
-
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:132
|
35 |
msgid ""
|
36 |
-
"
|
37 |
-
"
|
38 |
-
"
|
39 |
msgstr ""
|
40 |
-
"
|
41 |
-
"
|
42 |
-
"
|
43 |
-
|
44 |
-
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:132
|
45 |
-
msgid "Upgrade to Premium Pro now."
|
46 |
-
msgstr "Upgrade auf Premium PRO"
|
47 |
-
|
48 |
-
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:184
|
49 |
-
msgid "All"
|
50 |
-
msgstr "alle"
|
51 |
|
52 |
-
#: ../../plugins/blog2social-v-3/includes/
|
53 |
-
#: /plugins/blog2social-v-3/views/b2s/html/header.phtml:15
|
54 |
-
msgid "Please see FAQ"
|
55 |
-
msgstr "Siehe FAQ"
|
56 |
-
|
57 |
-
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:54
|
58 |
-
msgid "Post format"
|
59 |
-
msgstr "Beitragsformat"
|
60 |
-
|
61 |
-
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:59
|
62 |
-
msgid "Facebook"
|
63 |
-
msgstr "Facebook"
|
64 |
-
|
65 |
-
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:62
|
66 |
-
msgid "Twitter"
|
67 |
-
msgstr "Twitter"
|
68 |
-
|
69 |
-
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:432
|
70 |
-
msgid "Choose your"
|
71 |
-
msgstr "Wähle Deinen"
|
72 |
-
|
73 |
-
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:434
|
74 |
-
msgid "for:"
|
75 |
-
msgstr "für:"
|
76 |
-
|
77 |
-
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:449
|
78 |
msgid ""
|
79 |
-
"
|
80 |
-
"
|
81 |
msgstr ""
|
82 |
-
"
|
83 |
-
"
|
|
|
84 |
|
85 |
-
#: ../../plugins/blog2social-v-3/
|
86 |
msgid ""
|
87 |
-
"
|
88 |
-
"
|
|
|
89 |
msgstr ""
|
90 |
-
"
|
91 |
-
"
|
|
|
92 |
|
93 |
#: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:42 ../..
|
94 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Navbar.php:32
|
@@ -99,6 +62,10 @@ msgstr "Standard"
|
|
99 |
msgid "max. accounts"
|
100 |
msgstr "max. Accounts"
|
101 |
|
|
|
|
|
|
|
|
|
102 |
#: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:96 ../..
|
103 |
#: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:112 ../..
|
104 |
#: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:114 ../..
|
@@ -107,7 +74,7 @@ msgstr "max. Accounts"
|
|
107 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:214 ../..
|
108 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:261 ../..
|
109 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:35 ../..
|
110 |
-
#: /plugins/blog2social-v-3/includes/Init.php:
|
111 |
msgid "Profile"
|
112 |
msgstr "Profil"
|
113 |
|
@@ -119,7 +86,7 @@ msgstr "Profil"
|
|
119 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:215 ../..
|
120 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:264 ../..
|
121 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:33 ../..
|
122 |
-
#: /plugins/blog2social-v-3/includes/Init.php:
|
123 |
msgid "Page"
|
124 |
msgstr "Seite"
|
125 |
|
@@ -136,7 +103,7 @@ msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
|
136 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:216 ../..
|
137 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:268 ../..
|
138 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:29 ../..
|
139 |
-
#: /plugins/blog2social-v-3/includes/Init.php:
|
140 |
msgid "Group"
|
141 |
msgstr "Gruppe"
|
142 |
|
@@ -259,7 +226,7 @@ msgid "last shared on social media"
|
|
259 |
msgstr "zuletzt auf Social Media geteilt"
|
260 |
|
261 |
#: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:218 ../..
|
262 |
-
#: /plugins/blog2social-v-3/includes/Init.php:
|
263 |
msgid "Share on Social Media"
|
264 |
msgstr "auf Social Media teilen"
|
265 |
|
@@ -409,6 +376,24 @@ msgstr "b2s.pm Link Shortener aktivieren"
|
|
409 |
msgid "allow shortcodes in my post"
|
410 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
411 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:146 ../..
|
413 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:188 ../..
|
414 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:227 ../..
|
@@ -456,6 +441,10 @@ msgstr ""
|
|
456 |
"Fotoalben oder Deiner persönlichen Galerie im Netzwerk gespeichert wird. In "
|
457 |
"Facebook kannst du den Namen Deiner Alben beliebig anpassen."
|
458 |
|
|
|
|
|
|
|
|
|
459 |
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:275 ../..
|
460 |
#: /plugins/blog2social-v-3/views/b2s/post.sched.php:24
|
461 |
msgid "Uhr"
|
@@ -720,20 +709,20 @@ msgstr "Anzahl geteilter Beiträge"
|
|
720 |
msgid "Number of scheduled posts"
|
721 |
msgstr "Anzahl der geplanten Posts"
|
722 |
|
723 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
724 |
msgid "This post will be shared into your social media on"
|
725 |
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
726 |
|
727 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
728 |
-
#: v-3/includes/Init.php:
|
729 |
msgid "show details"
|
730 |
msgstr "siehe Details"
|
731 |
|
732 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
733 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
734 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
735 |
|
736 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
737 |
msgid ""
|
738 |
"Please, make sure that your post are publish on this blog on this moment. "
|
739 |
"Then you can auto post your post with Blog2social."
|
@@ -741,7 +730,7 @@ msgstr ""
|
|
741 |
"Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
|
742 |
" Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
743 |
|
744 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
745 |
#: v-3/includes/MetaBox.php:55
|
746 |
msgid ""
|
747 |
"There are no authorizations for your selected profile. Please, authorize "
|
@@ -750,23 +739,23 @@ msgstr ""
|
|
750 |
"Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
|
751 |
"mit einem Netzwerk oder wähle ein anderes Profil aus. "
|
752 |
|
753 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
754 |
msgid "Upgrade to Premium"
|
755 |
msgstr "Premium freischalten"
|
756 |
|
757 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
758 |
msgid "Your post could not be posted."
|
759 |
msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
|
760 |
|
761 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
762 |
msgid "Your authorization has expired. Please check your authorization."
|
763 |
msgstr "Deine Autorisierung ist abgelaufen. Bitte überprüfe deine Autorisierung."
|
764 |
|
765 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
766 |
msgid "The network has marked the post as spam or abusive."
|
767 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
768 |
|
769 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
770 |
msgid ""
|
771 |
"We don't have the permission to publish your post. Please check your "
|
772 |
"authorization."
|
@@ -774,7 +763,7 @@ msgstr ""
|
|
774 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
775 |
"überprüfe deine Autorisierung."
|
776 |
|
777 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
778 |
msgid ""
|
779 |
"Your authorization is interrupted. Please check your authorization. Please "
|
780 |
"see <a target=\"_blank\" href=\"https://www.blog2social."
|
@@ -784,15 +773,15 @@ msgstr ""
|
|
784 |
"Siehe <a target=\"_blank\" href=\"https://www.blog2social."
|
785 |
"com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
786 |
|
787 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
788 |
msgid "Your limit is reached for today."
|
789 |
msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account für Heute erreicht."
|
790 |
|
791 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
792 |
msgid "Your post could not be posted, because your image is not available."
|
793 |
msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
|
794 |
|
795 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
796 |
msgid ""
|
797 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
798 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
@@ -802,7 +791,7 @@ msgstr ""
|
|
802 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
803 |
"loesungen.html\">FAQ</a>."
|
804 |
|
805 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
806 |
msgid ""
|
807 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
|
808 |
"//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
|
@@ -812,11 +801,11 @@ msgstr ""
|
|
812 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
813 |
"loesungen.html\">FAQ</a>."
|
814 |
|
815 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
816 |
msgid "Your limit has temporarily reached for this network."
|
817 |
msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account kurzzeitig erreicht."
|
818 |
|
819 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
820 |
msgid ""
|
821 |
"The network can not publish special characters such as Emoji. Please see <a "
|
822 |
"target=\"_blank\" href=\"https://www.blog2social."
|
@@ -826,60 +815,65 @@ msgstr ""
|
|
826 |
"//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
|
827 |
"html\">FAQ</a>."
|
828 |
|
829 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
830 |
msgid "Your post is a duplicate."
|
831 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
832 |
|
833 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
834 |
msgid "The network are required a public url to your post."
|
835 |
msgstr "Das Netzwerk fordert, dass Dein Link zu Deinem Beitrag erreichbar ist."
|
836 |
|
837 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
838 |
msgid "The network says, that your group is not exisits."
|
839 |
msgstr "Das Netzwerk konnte Deine angegebene Gruppe nicht finden."
|
840 |
|
841 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
842 |
-
#: v-3/includes/Init.php:
|
843 |
msgid "Dashboard"
|
844 |
msgstr "Dashboard"
|
845 |
|
846 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
847 |
-
#: v-3/includes/Init.php:
|
848 |
msgid "Posts & Sharing"
|
849 |
msgstr "Beiträge"
|
850 |
|
851 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
852 |
-
#: v-3/includes/Init.php:
|
853 |
#: ./../plugins/blog2social-v-3/views/b2s/network.php:17
|
854 |
msgid "Networks"
|
855 |
msgstr "Netzwerke"
|
856 |
|
857 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
858 |
-
#: v-3/includes/Init.php:
|
859 |
#: ./../plugins/blog2social-v-3/views/b2s/ship.php:53 ../../plugins/blog2social-v-
|
860 |
#: 3/views/b2s/ship.php:263
|
861 |
msgid "Settings"
|
862 |
msgstr "Einstellungen"
|
863 |
|
864 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
865 |
-
#: v-3/includes/Init.php:
|
866 |
msgid "PR-Service"
|
867 |
msgstr "PR-Service"
|
868 |
|
869 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
870 |
msgid "Blog2Social"
|
871 |
msgstr "Blog2Social"
|
872 |
|
873 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
874 |
-
#: v-3/includes/Init.php:
|
875 |
msgid "or"
|
876 |
msgstr "oder"
|
877 |
|
878 |
-
#: ../../plugins/blog2social-v-3/includes/Init.php:
|
879 |
-
#: v-3/includes/Init.php:
|
880 |
msgid "back to install plugins"
|
881 |
msgstr "zurück zur Pluginübersicht"
|
882 |
|
|
|
|
|
|
|
|
|
|
|
883 |
#: ../../plugins/blog2social-v-3/includes/MetaBox.php:31
|
884 |
msgid "last auto-post:"
|
885 |
msgstr "letzter Auto-Post:"
|
@@ -1296,7 +1290,7 @@ msgstr "Beitrag über PR-Gateway veröffentlichen"
|
|
1296 |
msgid "on Blog"
|
1297 |
msgstr "auf dem Blog"
|
1298 |
|
1299 |
-
#: ../../plugins/blog2social-v-3/includes/System.php:
|
1300 |
msgid ""
|
1301 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
1302 |
"your server. Install cURL and activate Blog2Social again."
|
@@ -1304,16 +1298,7 @@ msgstr ""
|
|
1304 |
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
1305 |
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
1306 |
|
1307 |
-
#: ../../plugins/blog2social-v-3/includes/System.php:
|
1308 |
-
msgid ""
|
1309 |
-
"Please see <a href=\"https://www.blog2social."
|
1310 |
-
"com/en/faq/category/9/troubleshooting-for-error-messages.html\" "
|
1311 |
-
"target=\"_blank\">FAQ</a>"
|
1312 |
-
msgstr ""
|
1313 |
-
"Siehe <a href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-"
|
1314 |
-
"und-loesungen.html\" target=\"_blank\">FAQ</a>"
|
1315 |
-
|
1316 |
-
#: ../../plugins/blog2social-v-3/includes/System.php:56
|
1317 |
msgid ""
|
1318 |
"Blog2Social seems to have no permission to write in your WordPress database. "
|
1319 |
"Please make sure to assign Blog2Social the permission to write in the "
|
@@ -1323,16 +1308,6 @@ msgstr ""
|
|
1323 |
"Bitte stelle sicher, dass Blog2Social das Recht eingeräumt wird, in Deine "
|
1324 |
"Wordpress Datenbank zu schreiben."
|
1325 |
|
1326 |
-
#: ../../plugins/blog2social-v-3/includes/System.php:59
|
1327 |
-
msgid ""
|
1328 |
-
"<a href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
1329 |
-
"error-messages.html\" target=\"_blank\"> Please find more Information and help "
|
1330 |
-
"in our FAQ</a>"
|
1331 |
-
msgstr ""
|
1332 |
-
"<a href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
1333 |
-
"loesungen.html\" target=\"_blank\"> Weitere Informationen findest Du in unserem "
|
1334 |
-
"FAQ</a>"
|
1335 |
-
|
1336 |
#. Plugin Name of the plugin/theme
|
1337 |
msgid "Social Media Auto Post & Scheduler"
|
1338 |
msgstr "Social Media Auto Post & Scheduler"
|
@@ -1424,8 +1399,8 @@ msgid "Call us: +49 2181 7569-277"
|
|
1424 |
msgstr "Ruf' uns an: +49 2181 7569-277"
|
1425 |
|
1426 |
#: ../../plugins/blog2social-v-3/views/b2s/dashboard.php:62
|
1427 |
-
msgid "(Call times: from 9:00 a.m. to 5:
|
1428 |
-
msgstr "(Anrufzeiten: Montags bis
|
1429 |
|
1430 |
#: ../../plugins/blog2social-v-3/views/b2s/dashboard.php:65
|
1431 |
msgid "Follow us:"
|
@@ -1689,6 +1664,18 @@ msgstr "Meine Zeit-Einstellungen"
|
|
1689 |
msgid "Reset predefined best time settings"
|
1690 |
msgstr "Voreingestellte beste Zeiten zurücksetzen"
|
1691 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1692 |
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:120
|
1693 |
msgid "Select the preferred custom post format for your posts"
|
1694 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
@@ -1974,10 +1961,34 @@ msgstr "Ignorieren & teilen"
|
|
1974 |
msgid "Select image for"
|
1975 |
msgstr "Wähle Bild aus für"
|
1976 |
|
|
|
|
|
|
|
|
|
1977 |
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:432
|
1978 |
msgid "Post Format"
|
1979 |
msgstr "Postformat"
|
1980 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1981 |
#: ../../plugins/blog2social-v-3/views/notice.php:12
|
1982 |
msgid "Connection is broken..."
|
1983 |
msgstr "Vebindung ist unterbrochen..."
|
4 |
"Stable (latest release)\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
"POT-Creation-Date: Thu May 18 2017 09:57:01 GMT+0200\n"
|
7 |
+
"PO-Revision-Date: Tue Jul 04 2017 15:22:30 GMT+0200\n"
|
8 |
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
9 |
"Language-Team: \n"
|
10 |
"Language: German\n"
|
23 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
24 |
"X-Loco-Target-Locale: de_DE"
|
25 |
|
26 |
+
#: ../../plugins/blog2social-v-3/includes/System.php:64 ../../plugins/blog2social-
|
27 |
+
#: v-3/includes/System.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
msgid ""
|
29 |
+
"Please see <a href=\"https://www.blog2social."
|
30 |
+
"com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social."
|
31 |
+
"html\" target=\"_blank\">FAQ</a>"
|
32 |
msgstr ""
|
33 |
+
"Siehe <a href=\"https://www.blog2social."
|
34 |
+
"com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
|
35 |
+
"blog2social.html\" target=\"_blank\">FAQ</a>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
|
37 |
+
#: ../../plugins/blog2social-v-3/includes/System.php:67
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
msgid ""
|
39 |
+
"Blog2Social used PHP. Your installed PHP version on your server is not high "
|
40 |
+
"enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
|
41 |
msgstr ""
|
42 |
+
"Blog2Social nutzt PHP. Deine installierte PHP Version ist nicht hoch genug, "
|
43 |
+
"um Blog2Social zu nutzen. Aktualisere Deine PHP Version auf 5.5.3 oder höher."
|
44 |
+
" "
|
45 |
|
46 |
+
#: ../../plugins/blog2social-v-3/includes/System.php:76
|
47 |
msgid ""
|
48 |
+
"<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
|
49 |
+
"requirements-for-installing-blog2social.html\" target=\"_blank\"> Please find "
|
50 |
+
"more Information and help in our FAQ</a>"
|
51 |
msgstr ""
|
52 |
+
"<a href=\"https://www.blog2social."
|
53 |
+
"com/de/faq/content/1/63/de/systemvoraussetzungen-fuer-die-installation-von-"
|
54 |
+
"blog2social.html\" target=\"_blank\">Siehe FAQ</a>"
|
55 |
|
56 |
#: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:42 ../..
|
57 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Navbar.php:32
|
62 |
msgid "max. accounts"
|
63 |
msgstr "max. Accounts"
|
64 |
|
65 |
+
#: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:91
|
66 |
+
msgid "need more"
|
67 |
+
msgstr "Du brauchst mehr?"
|
68 |
+
|
69 |
#: ../../plugins/blog2social-v-3/includes/B2S/Network/Item.php:96 ../..
|
70 |
#: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:112 ../..
|
71 |
#: /plugins/blog2social-v-3/includes/B2S/Network/Item.php:114 ../..
|
74 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:214 ../..
|
75 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:261 ../..
|
76 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:35 ../..
|
77 |
+
#: /plugins/blog2social-v-3/includes/Init.php:289
|
78 |
msgid "Profile"
|
79 |
msgstr "Profil"
|
80 |
|
86 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:215 ../..
|
87 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:264 ../..
|
88 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:33 ../..
|
89 |
+
#: /plugins/blog2social-v-3/includes/Init.php:289
|
90 |
msgid "Page"
|
91 |
msgstr "Seite"
|
92 |
|
103 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:216 ../..
|
104 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:268 ../..
|
105 |
#: /plugins/blog2social-v-3/includes/B2S/Ship/Portale.php:29 ../..
|
106 |
+
#: /plugins/blog2social-v-3/includes/Init.php:289
|
107 |
msgid "Group"
|
108 |
msgstr "Gruppe"
|
109 |
|
226 |
msgstr "zuletzt auf Social Media geteilt"
|
227 |
|
228 |
#: ../../plugins/blog2social-v-3/includes/B2S/Post/Item.php:218 ../..
|
229 |
+
#: /plugins/blog2social-v-3/includes/Init.php:105
|
230 |
msgid "Share on Social Media"
|
231 |
msgstr "auf Social Media teilen"
|
232 |
|
376 |
msgid "allow shortcodes in my post"
|
377 |
msgstr "berücksichtige Shortcodes in meinen Beiträgen"
|
378 |
|
379 |
+
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:131
|
380 |
+
msgid "Did you know?"
|
381 |
+
msgstr "Wusstest Du schon?"
|
382 |
+
|
383 |
+
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:132
|
384 |
+
msgid ""
|
385 |
+
"Beginning with Premium Pro, you can change the custom post format photo post "
|
386 |
+
"or link post for each individual social media post and channel (profile, "
|
387 |
+
"page, group), deviate from the default settings."
|
388 |
+
msgstr ""
|
389 |
+
"Beginnend mit Premium Pro Version kannst Du das Beitragsformat zwischen "
|
390 |
+
"Bildbeitrag und Linkbeitrag für jeden einzelnen Social Media Post und Kanal "
|
391 |
+
"(Profil, Seite, Gruppe) ändern und von den Standardeinstellungen abweichen."
|
392 |
+
|
393 |
+
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:132
|
394 |
+
msgid "Upgrade to Premium Pro now."
|
395 |
+
msgstr "Upgrade auf Premium PRO"
|
396 |
+
|
397 |
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:146 ../..
|
398 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:188 ../..
|
399 |
#: /plugins/blog2social-v-3/includes/B2S/Settings/Item.php:227 ../..
|
441 |
"Fotoalben oder Deiner persönlichen Galerie im Netzwerk gespeichert wird. In "
|
442 |
"Facebook kannst du den Namen Deiner Alben beliebig anpassen."
|
443 |
|
444 |
+
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:184
|
445 |
+
msgid "All"
|
446 |
+
msgstr "alle"
|
447 |
+
|
448 |
#: ../../plugins/blog2social-v-3/includes/B2S/Settings/Item.php:275 ../..
|
449 |
#: /plugins/blog2social-v-3/views/b2s/post.sched.php:24
|
450 |
msgid "Uhr"
|
709 |
msgid "Number of scheduled posts"
|
710 |
msgstr "Anzahl der geplanten Posts"
|
711 |
|
712 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:261
|
713 |
msgid "This post will be shared into your social media on"
|
714 |
msgstr "Dein Beitrag ist zur Veröffentlichung in den Social Media geplant ab dem"
|
715 |
|
716 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:261 ../../plugins/blog2social-
|
717 |
+
#: v-3/includes/Init.php:263
|
718 |
msgid "show details"
|
719 |
msgstr "siehe Details"
|
720 |
|
721 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:263
|
722 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
723 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
724 |
|
725 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:267
|
726 |
msgid ""
|
727 |
"Please, make sure that your post are publish on this blog on this moment. "
|
728 |
"Then you can auto post your post with Blog2social."
|
730 |
"Bitte stelle sicher, dass Dein Beitrag in diesem Moment veröffentlicht wurde."
|
731 |
" Dann kannst Du Deinen Beitrag automatisch mit Blog2Social posten."
|
732 |
|
733 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:270 ../../plugins/blog2social-
|
734 |
#: v-3/includes/MetaBox.php:55
|
735 |
msgid ""
|
736 |
"There are no authorizations for your selected profile. Please, authorize "
|
739 |
"Dein ausgewähltes Profil hat keine Autorisierungen. Bitte, verbinde Dich "
|
740 |
"mit einem Netzwerk oder wähle ein anderes Profil aus. "
|
741 |
|
742 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:282
|
743 |
msgid "Upgrade to Premium"
|
744 |
msgstr "Premium freischalten"
|
745 |
|
746 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:290
|
747 |
msgid "Your post could not be posted."
|
748 |
msgstr "Dein Post ist nicht vom Netzwerk veröffentlicht worden."
|
749 |
|
750 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:291
|
751 |
msgid "Your authorization has expired. Please check your authorization."
|
752 |
msgstr "Deine Autorisierung ist abgelaufen. Bitte überprüfe deine Autorisierung."
|
753 |
|
754 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:292
|
755 |
msgid "The network has marked the post as spam or abusive."
|
756 |
msgstr "Das Netzwerk hat Deinen Post als Spam oder missbräuchlich markiert."
|
757 |
|
758 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:293
|
759 |
msgid ""
|
760 |
"We don't have the permission to publish your post. Please check your "
|
761 |
"authorization."
|
763 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
764 |
"überprüfe deine Autorisierung."
|
765 |
|
766 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:294
|
767 |
msgid ""
|
768 |
"Your authorization is interrupted. Please check your authorization. Please "
|
769 |
"see <a target=\"_blank\" href=\"https://www.blog2social."
|
773 |
"Siehe <a target=\"_blank\" href=\"https://www.blog2social."
|
774 |
"com/de/faq/category/9/fehlermeldungen-und-loesungen.html\">FAQ</a>."
|
775 |
|
776 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:295
|
777 |
msgid "Your limit is reached for today."
|
778 |
msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account für Heute erreicht."
|
779 |
|
780 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:296
|
781 |
msgid "Your post could not be posted, because your image is not available."
|
782 |
msgstr "Das Netzwerk kann Dein Bild nicht verarbeiten."
|
783 |
|
784 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:297
|
785 |
msgid ""
|
786 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
787 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
791 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
792 |
"loesungen.html\">FAQ</a>."
|
793 |
|
794 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:298
|
795 |
msgid ""
|
796 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
|
797 |
"//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
|
801 |
"href=\"https://www.blog2social.com/de/faq/category/9/fehlermeldungen-und-"
|
802 |
"loesungen.html\">FAQ</a>."
|
803 |
|
804 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:299
|
805 |
msgid "Your limit has temporarily reached for this network."
|
806 |
msgstr "Du hast das Veröffentlichungs-Limit mit Deinem Account kurzzeitig erreicht."
|
807 |
|
808 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:300
|
809 |
msgid ""
|
810 |
"The network can not publish special characters such as Emoji. Please see <a "
|
811 |
"target=\"_blank\" href=\"https://www.blog2social."
|
815 |
"//www.blog2social.com/de/faq/category/9/fehlermeldungen-und-loesungen."
|
816 |
"html\">FAQ</a>."
|
817 |
|
818 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:301
|
819 |
msgid "Your post is a duplicate."
|
820 |
msgstr "Du kannst auf dem Netzwerke keine Duplikate veröffentlichen."
|
821 |
|
822 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:302
|
823 |
msgid "The network are required a public url to your post."
|
824 |
msgstr "Das Netzwerk fordert, dass Dein Link zu Deinem Beitrag erreichbar ist."
|
825 |
|
826 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:303
|
827 |
msgid "The network says, that your group is not exisits."
|
828 |
msgstr "Das Netzwerk konnte Deine angegebene Gruppe nicht finden."
|
829 |
|
830 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:360 ../../plugins/blog2social-
|
831 |
+
#: v-3/includes/Init.php:390
|
832 |
msgid "Dashboard"
|
833 |
msgstr "Dashboard"
|
834 |
|
835 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:361 ../../plugins/blog2social-
|
836 |
+
#: v-3/includes/Init.php:361 ../../plugins/blog2social-v-3/includes/Init.php:397
|
837 |
msgid "Posts & Sharing"
|
838 |
msgstr "Beiträge"
|
839 |
|
840 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:362 ../../plugins/blog2social-
|
841 |
+
#: v-3/includes/Init.php:362 ../../plugins/blog2social-v-3/includes/Init.php:404 .
|
842 |
#: ./../plugins/blog2social-v-3/views/b2s/network.php:17
|
843 |
msgid "Networks"
|
844 |
msgstr "Netzwerke"
|
845 |
|
846 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:363 ../../plugins/blog2social-
|
847 |
+
#: v-3/includes/Init.php:363 ../../plugins/blog2social-v-3/includes/Init.php:410 .
|
848 |
#: ./../plugins/blog2social-v-3/views/b2s/ship.php:53 ../../plugins/blog2social-v-
|
849 |
#: 3/views/b2s/ship.php:263
|
850 |
msgid "Settings"
|
851 |
msgstr "Einstellungen"
|
852 |
|
853 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:364 ../../plugins/blog2social-
|
854 |
+
#: v-3/includes/Init.php:364 ../../plugins/blog2social-v-3/includes/Init.php:416
|
855 |
msgid "PR-Service"
|
856 |
msgstr "PR-Service"
|
857 |
|
858 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:381
|
859 |
msgid "Blog2Social"
|
860 |
msgstr "Blog2Social"
|
861 |
|
862 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:635 ../../plugins/blog2social-
|
863 |
+
#: v-3/includes/Init.php:788
|
864 |
msgid "or"
|
865 |
msgstr "oder"
|
866 |
|
867 |
+
#: ../../plugins/blog2social-v-3/includes/Init.php:635 ../../plugins/blog2social-
|
868 |
+
#: v-3/includes/Init.php:788
|
869 |
msgid "back to install plugins"
|
870 |
msgstr "zurück zur Pluginübersicht"
|
871 |
|
872 |
+
#: ../../plugins/blog2social-v-3/includes/MetaBox.php:24 ../..
|
873 |
+
#: /plugins/blog2social-v-3/views/b2s/html/header.phtml:15
|
874 |
+
msgid "Please see FAQ"
|
875 |
+
msgstr "Siehe FAQ"
|
876 |
+
|
877 |
#: ../../plugins/blog2social-v-3/includes/MetaBox.php:31
|
878 |
msgid "last auto-post:"
|
879 |
msgstr "letzter Auto-Post:"
|
1290 |
msgid "on Blog"
|
1291 |
msgstr "auf dem Blog"
|
1292 |
|
1293 |
+
#: ../../plugins/blog2social-v-3/includes/System.php:61
|
1294 |
msgid ""
|
1295 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
1296 |
"your server. Install cURL and activate Blog2Social again."
|
1298 |
"Blog2Social verwendet cURL. cURL ist nicht in deiner PHP Version auf deinem "
|
1299 |
"Server installiert. Installiere cURL und aktiviere Blog2Social erneut."
|
1300 |
|
1301 |
+
#: ../../plugins/blog2social-v-3/includes/System.php:73
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1302 |
msgid ""
|
1303 |
"Blog2Social seems to have no permission to write in your WordPress database. "
|
1304 |
"Please make sure to assign Blog2Social the permission to write in the "
|
1308 |
"Bitte stelle sicher, dass Blog2Social das Recht eingeräumt wird, in Deine "
|
1309 |
"Wordpress Datenbank zu schreiben."
|
1310 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1311 |
#. Plugin Name of the plugin/theme
|
1312 |
msgid "Social Media Auto Post & Scheduler"
|
1313 |
msgstr "Social Media Auto Post & Scheduler"
|
1399 |
msgstr "Ruf' uns an: +49 2181 7569-277"
|
1400 |
|
1401 |
#: ../../plugins/blog2social-v-3/views/b2s/dashboard.php:62
|
1402 |
+
msgid "(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
|
1403 |
+
msgstr "(Anrufzeiten: Montags bis Freitag von 9:00 bis 17:00 MEZ)"
|
1404 |
|
1405 |
#: ../../plugins/blog2social-v-3/views/b2s/dashboard.php:65
|
1406 |
msgid "Follow us:"
|
1664 |
msgid "Reset predefined best time settings"
|
1665 |
msgstr "Voreingestellte beste Zeiten zurücksetzen"
|
1666 |
|
1667 |
+
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:54
|
1668 |
+
msgid "Post format"
|
1669 |
+
msgstr "Beitragsformat"
|
1670 |
+
|
1671 |
+
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:59
|
1672 |
+
msgid "Facebook"
|
1673 |
+
msgstr "Facebook"
|
1674 |
+
|
1675 |
+
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:62
|
1676 |
+
msgid "Twitter"
|
1677 |
+
msgstr "Twitter"
|
1678 |
+
|
1679 |
#: ../../plugins/blog2social-v-3/views/b2s/settings.php:120
|
1680 |
msgid "Select the preferred custom post format for your posts"
|
1681 |
msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
1961 |
msgid "Select image for"
|
1962 |
msgstr "Wähle Bild aus für"
|
1963 |
|
1964 |
+
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:432
|
1965 |
+
msgid "Choose your"
|
1966 |
+
msgstr "Wähle Deinen"
|
1967 |
+
|
1968 |
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:432
|
1969 |
msgid "Post Format"
|
1970 |
msgstr "Postformat"
|
1971 |
|
1972 |
+
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:434
|
1973 |
+
msgid "for:"
|
1974 |
+
msgstr "für:"
|
1975 |
+
|
1976 |
+
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:449
|
1977 |
+
msgid ""
|
1978 |
+
"Define the default settings for the custom post format for all of your "
|
1979 |
+
"Facebook accounts on the Blog2Social settings section."
|
1980 |
+
msgstr ""
|
1981 |
+
"Definiere das benutzerdefinierte Beitragsformat für alle Deine Twitter-"
|
1982 |
+
"Konten kannst Du unter den Blog2Social Einstellungen definieren."
|
1983 |
+
|
1984 |
+
#: ../../plugins/blog2social-v-3/views/b2s/ship.php:452
|
1985 |
+
msgid ""
|
1986 |
+
"Define the default settings for the custom post format for all of your "
|
1987 |
+
"Twitter accounts on the Blog2Social settings section."
|
1988 |
+
msgstr ""
|
1989 |
+
"Definiere das benutzerdefinierte Beitragsformat für alle Deine Twitter-"
|
1990 |
+
"Konten kannst Du unter den Blog2Social Einstellungen definieren."
|
1991 |
+
|
1992 |
#: ../../plugins/blog2social-v-3/views/notice.php:12
|
1993 |
msgid "Connection is broken..."
|
1994 |
msgstr "Vebindung ist unterbrochen..."
|
languages/blog2social-fr_FR.mo
CHANGED
Binary file
|
languages/blog2social-fr_FR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Blog2Social V3 - Development Modus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2016-10-25 12:18+0200\n"
|
6 |
-
"PO-Revision-Date:
|
7 |
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
8 |
"Language-Team: French (France) <translate@tips02.fr>\n"
|
9 |
"Language: French (France)\n"
|
@@ -22,73 +22,33 @@ msgstr ""
|
|
22 |
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
-
#: ../includes/
|
26 |
-
msgid "need more"
|
27 |
-
msgstr "besoin de plus"
|
28 |
-
|
29 |
-
#: ../includes/B2S/Settings/Item.php:131
|
30 |
-
msgid "Did you know?"
|
31 |
-
msgstr "Le saviez-vous?"
|
32 |
-
|
33 |
-
#: ../includes/B2S/Settings/Item.php:132
|
34 |
msgid ""
|
35 |
-
"
|
36 |
-
"
|
37 |
-
"
|
38 |
msgstr ""
|
39 |
-
"
|
40 |
-
"
|
41 |
-
"sociaux (profil, page, groupe), s'écarter des paramètres par défaut."
|
42 |
|
43 |
-
#: ../includes/
|
44 |
-
msgid "Upgrade to Premium Pro now."
|
45 |
-
msgstr "Passez à Premium Pro dès maintenant."
|
46 |
-
|
47 |
-
#: ../includes/B2S/Settings/Item.php:184
|
48 |
-
msgid "All"
|
49 |
-
msgstr "Tout"
|
50 |
-
|
51 |
-
#: ../includes/MetaBox.php:24 ../views/b2s/html/header.phtml:15
|
52 |
-
msgid "Please see FAQ"
|
53 |
-
msgstr "Voir les FAQ"
|
54 |
-
|
55 |
-
#: ../views/b2s/settings.php:54
|
56 |
-
msgid "Post format"
|
57 |
-
msgstr "Format de publication"
|
58 |
-
|
59 |
-
#: ../views/b2s/settings.php:59
|
60 |
-
msgid "Facebook"
|
61 |
-
msgstr "Facebook"
|
62 |
-
|
63 |
-
#: ../views/b2s/settings.php:62
|
64 |
-
msgid "Twitter"
|
65 |
-
msgstr "Twitter"
|
66 |
-
|
67 |
-
#: ../views/b2s/ship.php:432
|
68 |
-
msgid "Choose your"
|
69 |
-
msgstr "Choisi ton"
|
70 |
-
|
71 |
-
#: ../views/b2s/ship.php:434
|
72 |
-
msgid "for:"
|
73 |
-
msgstr "pour:"
|
74 |
-
|
75 |
-
#: ../views/b2s/ship.php:449
|
76 |
msgid ""
|
77 |
-
"
|
78 |
-
"
|
79 |
msgstr ""
|
80 |
-
"
|
81 |
-
"
|
82 |
-
"
|
83 |
|
84 |
-
#: ../
|
85 |
msgid ""
|
86 |
-
"
|
87 |
-
"
|
|
|
88 |
msgstr ""
|
89 |
-
"
|
90 |
-
"
|
91 |
-
"
|
92 |
|
93 |
#: ../includes/B2S/Network/Item.php:42 ../includes/B2S/Ship/Navbar.php:32
|
94 |
msgid "Default"
|
@@ -98,11 +58,15 @@ msgstr "Standard"
|
|
98 |
msgid "max. accounts"
|
99 |
msgstr "max. comptes"
|
100 |
|
|
|
|
|
|
|
|
|
101 |
#: ../includes/B2S/Network/Item.php:96 ../includes/B2S/Network/Item.php:112 ..
|
102 |
#: /includes/B2S/Network/Item.php:114 ../includes/B2S/Settings/Item.php:184 ..
|
103 |
#: /includes/B2S/Settings/Item.php:197 ../includes/B2S/Settings/Item.php:214 ..
|
104 |
#: /includes/B2S/Settings/Item.php:261 ../includes/B2S/Ship/Portale.php:35 ..
|
105 |
-
#: /includes/Init.php:
|
106 |
msgid "Profile"
|
107 |
msgstr "Profil"
|
108 |
|
@@ -110,7 +74,7 @@ msgstr "Profil"
|
|
110 |
#: /includes/B2S/Network/Item.php:134 ../includes/B2S/Network/Item.php:136 ..
|
111 |
#: /includes/B2S/Settings/Item.php:198 ../includes/B2S/Settings/Item.php:215 ..
|
112 |
#: /includes/B2S/Settings/Item.php:264 ../includes/B2S/Ship/Portale.php:33 ..
|
113 |
-
#: /includes/Init.php:
|
114 |
msgid "Page"
|
115 |
msgstr "Page"
|
116 |
|
@@ -122,7 +86,7 @@ msgstr "Vous voulez connecter une page d'un réseau ?"
|
|
122 |
#: /includes/B2S/Network/Item.php:156 ../includes/B2S/Network/Item.php:158 ..
|
123 |
#: /includes/B2S/Settings/Item.php:199 ../includes/B2S/Settings/Item.php:216 ..
|
124 |
#: /includes/B2S/Settings/Item.php:268 ../includes/B2S/Ship/Portale.php:29 ..
|
125 |
-
#: /includes/Init.php:
|
126 |
msgid "Group"
|
127 |
msgstr "Groupe"
|
128 |
|
@@ -225,7 +189,7 @@ msgstr "Vous n'avez aucun article publié ou planifié."
|
|
225 |
msgid "last shared on social media"
|
226 |
msgstr "dernier partagé on le réseau social"
|
227 |
|
228 |
-
#: ../includes/B2S/Post/Item.php:218 ../includes/Init.php:
|
229 |
msgid "Share on Social Media"
|
230 |
msgstr "Partager sur les réseaux sociaux"
|
231 |
|
@@ -363,6 +327,24 @@ msgstr "utiliser b2s.pm Lien Shortener"
|
|
363 |
msgid "allow shortcodes in my post"
|
364 |
msgstr "permettre à shortcodes dans mon post"
|
365 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
#: ../includes/B2S/Settings/Item.php:146 ../includes/B2S/Settings/Item.php:188 ..
|
367 |
#: /includes/B2S/Settings/Item.php:227 ../views/b2s/settings.php:127
|
368 |
msgid "Link Post"
|
@@ -408,6 +390,10 @@ msgstr ""
|
|
408 |
"personnelles. Dans Facebook, vous pouvez modifier le nom de l'album avec une "
|
409 |
"description de votre choix."
|
410 |
|
|
|
|
|
|
|
|
|
411 |
#: ../includes/B2S/Settings/Item.php:275 ../views/b2s/post.sched.php:24
|
412 |
msgid "Uhr"
|
413 |
msgstr "regarder"
|
@@ -657,19 +643,19 @@ msgstr "Nombre d'articles partagés"
|
|
657 |
msgid "Number of scheduled posts"
|
658 |
msgstr "Nombre d'articles planifiés"
|
659 |
|
660 |
-
#: ../includes/Init.php:
|
661 |
msgid "This post will be shared into your social media on"
|
662 |
msgstr "Ce post sera partagé dans vos médias sociaux sur"
|
663 |
|
664 |
-
#: ../includes/Init.php:
|
665 |
msgid "show details"
|
666 |
msgstr "afficher les détails"
|
667 |
|
668 |
-
#: ../includes/Init.php:
|
669 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
670 |
msgstr "Votre post sera partagé sur les médias sociaux en 2-3 minutes!"
|
671 |
|
672 |
-
#: ../includes/Init.php:
|
673 |
msgid ""
|
674 |
"Please, make sure that your post are publish on this blog on this moment. "
|
675 |
"Then you can auto post your post with Blog2social."
|
@@ -677,7 +663,7 @@ msgstr ""
|
|
677 |
"S'il vous plaît, assurez-vous que votre post sont publier sur ce blog à ce "
|
678 |
"moment. Ensuite, vous pouvez auto publier votre message avec Blog2social."
|
679 |
|
680 |
-
#: ../includes/Init.php:
|
681 |
msgid ""
|
682 |
"There are no authorizations for your selected profile. Please, authorize "
|
683 |
"with a social network or select a other profile."
|
@@ -685,23 +671,23 @@ msgstr ""
|
|
685 |
"Il n'existe aucune autorisation pour votre profil sélectionné. Autoriser "
|
686 |
"avec un réseau social ou sélectionner un autre profil."
|
687 |
|
688 |
-
#: ../includes/Init.php:
|
689 |
msgid "Upgrade to Premium"
|
690 |
msgstr "Passer à la version premium"
|
691 |
|
692 |
-
#: ../includes/Init.php:
|
693 |
msgid "Your post could not be posted."
|
694 |
msgstr "Votre article ne peut être posté."
|
695 |
|
696 |
-
#: ../includes/Init.php:
|
697 |
msgid "Your authorization has expired. Please check your authorization."
|
698 |
msgstr "Votre autorisation a expiré. Vérifiez votre autorisation, svp."
|
699 |
|
700 |
-
#: ../includes/Init.php:
|
701 |
msgid "The network has marked the post as spam or abusive."
|
702 |
msgstr "Le réseau a marqué l'article comme spam ou abusif."
|
703 |
|
704 |
-
#: ../includes/Init.php:
|
705 |
msgid ""
|
706 |
"We don't have the permission to publish your post. Please check your "
|
707 |
"authorization."
|
@@ -709,7 +695,7 @@ msgstr ""
|
|
709 |
"Nous n'avons pas la permission de publier votre article. Vérifiez votre "
|
710 |
"autorisation, svp."
|
711 |
|
712 |
-
#: ../includes/Init.php:
|
713 |
msgid ""
|
714 |
"Your authorization is interrupted. Please check your authorization. Please "
|
715 |
"see <a target=\"_blank\" href=\"https://www.blog2social."
|
@@ -719,15 +705,15 @@ msgstr ""
|
|
719 |
"la <a target=\"_blank\" href=\"https://www.blog2social."
|
720 |
"com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>, svp."
|
721 |
|
722 |
-
#: ../includes/Init.php:
|
723 |
msgid "Your limit is reached for today."
|
724 |
msgstr "Votre limite quotidienne est atteinte."
|
725 |
|
726 |
-
#: ../includes/Init.php:
|
727 |
msgid "Your post could not be posted, because your image is not available."
|
728 |
msgstr "Votre article ne peut pas être publié parce que l'image n'est pas disponible."
|
729 |
|
730 |
-
#: ../includes/Init.php:
|
731 |
msgid ""
|
732 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
733 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
@@ -737,7 +723,7 @@ msgstr ""
|
|
737 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
738 |
"error-messages.html\">FAQ</a>, svp."
|
739 |
|
740 |
-
#: ../includes/Init.php:
|
741 |
msgid ""
|
742 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
|
743 |
"//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
|
@@ -747,11 +733,11 @@ msgstr ""
|
|
747 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
748 |
"error-messages.html\">FAQ</a>, svp."
|
749 |
|
750 |
-
#: ../includes/Init.php:
|
751 |
msgid "Your limit has temporarily reached for this network."
|
752 |
msgstr "Votre limite est temporairement atteinte pour ce réseau."
|
753 |
|
754 |
-
#: ../includes/Init.php:
|
755 |
msgid ""
|
756 |
"The network can not publish special characters such as Emoji. Please see <a "
|
757 |
"target=\"_blank\" href=\"https://www.blog2social."
|
@@ -761,52 +747,56 @@ msgstr ""
|
|
761 |
"target=\"_blank\" href=\"https://www.blog2social."
|
762 |
"com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
763 |
|
764 |
-
#: ../includes/Init.php:
|
765 |
msgid "Your post is a duplicate."
|
766 |
msgstr "Votre message est un duplicata."
|
767 |
|
768 |
-
#: ../includes/Init.php:
|
769 |
msgid "The network are required a public url to your post."
|
770 |
msgstr "Le réseau doit avoir une url publique à votre poste."
|
771 |
|
772 |
-
#: ../includes/Init.php:
|
773 |
msgid "The network says, that your group is not exisits."
|
774 |
msgstr "Le réseau dit que votre groupe n'existe pas."
|
775 |
|
776 |
-
#: ../includes/Init.php:
|
777 |
msgid "Dashboard"
|
778 |
msgstr "Tableau de bord"
|
779 |
|
780 |
-
#: ../includes/Init.php:
|
781 |
msgid "Posts & Sharing"
|
782 |
msgstr "Messages et partage"
|
783 |
|
784 |
-
#: ../includes/Init.php:
|
785 |
#: /views/b2s/network.php:17
|
786 |
msgid "Networks"
|
787 |
msgstr "Réseaux"
|
788 |
|
789 |
-
#: ../includes/Init.php:
|
790 |
#: /views/b2s/ship.php:53 ../views/b2s/ship.php:263
|
791 |
msgid "Settings"
|
792 |
msgstr "Paramètres"
|
793 |
|
794 |
-
#: ../includes/Init.php:
|
795 |
msgid "PR-Service"
|
796 |
msgstr "Service - PR"
|
797 |
|
798 |
-
#: ../includes/Init.php:
|
799 |
msgid "Blog2Social"
|
800 |
msgstr "Blog2Social"
|
801 |
|
802 |
-
#: ../includes/Init.php:
|
803 |
msgid "or"
|
804 |
msgstr "ou"
|
805 |
|
806 |
-
#: ../includes/Init.php:
|
807 |
msgid "back to install plugins"
|
808 |
msgstr "retour à l'installation des plugins"
|
809 |
|
|
|
|
|
|
|
|
|
810 |
#: ../includes/MetaBox.php:31
|
811 |
msgid "last auto-post:"
|
812 |
msgstr "dernier auto-post:"
|
@@ -1153,7 +1143,7 @@ msgstr "Publier sur la passerelle PR"
|
|
1153 |
msgid "on Blog"
|
1154 |
msgstr "sur le blog"
|
1155 |
|
1156 |
-
#: ../includes/System.php:
|
1157 |
msgid ""
|
1158 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
1159 |
"your server. Install cURL and activate Blog2Social again."
|
@@ -1161,17 +1151,7 @@ msgstr ""
|
|
1161 |
"Blog2Social utilisé cURL. CURL n'est pas installé dans votre installation "
|
1162 |
"PHP sur votre serveur. Installez cURL et activez Blog2Social à nouveau."
|
1163 |
|
1164 |
-
#: ../includes/System.php:
|
1165 |
-
msgid ""
|
1166 |
-
"Please see <a href=\"https://www.blog2social."
|
1167 |
-
"com/en/faq/category/9/troubleshooting-for-error-messages.html\" "
|
1168 |
-
"target=\"_blank\">FAQ</a>"
|
1169 |
-
msgstr ""
|
1170 |
-
"Veuillez consulter les <a href=\"https://www.blog2social."
|
1171 |
-
"com/en/faq/category/9/troubleshooting-for-error-messages.html\" "
|
1172 |
-
"target=\"_blank\">FAQ</a>"
|
1173 |
-
|
1174 |
-
#: ../includes/System.php:56
|
1175 |
msgid ""
|
1176 |
"Blog2Social seems to have no permission to write in your WordPress database. "
|
1177 |
"Please make sure to assign Blog2Social the permission to write in the "
|
@@ -1181,16 +1161,6 @@ msgstr ""
|
|
1181 |
"données WordPress. Assurez-vous d'attribuer à Blog2Social la permission "
|
1182 |
"d'écrire dans la base de données WordPress."
|
1183 |
|
1184 |
-
#: ../includes/System.php:59
|
1185 |
-
msgid ""
|
1186 |
-
"<a href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
1187 |
-
"error-messages.html\" target=\"_blank\"> Please find more Information and help "
|
1188 |
-
"in our FAQ</a>"
|
1189 |
-
msgstr ""
|
1190 |
-
"<a href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
1191 |
-
"error-messages.html\" target=\"_blank\"> Veuillez trouver plus d'informations "
|
1192 |
-
"et d'aide dans nos FAQ</a>"
|
1193 |
-
|
1194 |
#. Name of the plugin
|
1195 |
msgid "Social Media Auto Post & Scheduler"
|
1196 |
msgstr "Social Media Auto Post & Scheduler"
|
@@ -1278,8 +1248,8 @@ msgid "Call us: +49 2181 7569-277"
|
|
1278 |
msgstr "Appelez-nous: +49 2181 7569-277"
|
1279 |
|
1280 |
#: ../views/b2s/dashboard.php:62
|
1281 |
-
msgid "(Call times: from 9:00 a.m. to 5:
|
1282 |
-
msgstr "(
|
1283 |
|
1284 |
#: ../views/b2s/dashboard.php:65
|
1285 |
msgid "Follow us:"
|
@@ -1530,6 +1500,18 @@ msgstr "Mes réglages d'heures"
|
|
1530 |
msgid "Reset predefined best time settings"
|
1531 |
msgstr "Réinitialiser les réglages de la meilleure heure"
|
1532 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1533 |
#: ../views/b2s/settings.php:120
|
1534 |
msgid "Select the preferred custom post format for your posts"
|
1535 |
msgstr ""
|
@@ -1820,10 +1802,36 @@ msgstr "Ignorer & partager"
|
|
1820 |
msgid "Select image for"
|
1821 |
msgstr "Sélectionnez l'image pour"
|
1822 |
|
|
|
|
|
|
|
|
|
1823 |
#: ../views/b2s/ship.php:432
|
1824 |
msgid "Post Format"
|
1825 |
msgstr "Format de publication"
|
1826 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1827 |
#: ../views/notice.php:12
|
1828 |
msgid "Connection is broken..."
|
1829 |
msgstr "Connexion rompue..."
|
3 |
"Project-Id-Version: Blog2Social V3 - Development Modus\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2016-10-25 12:18+0200\n"
|
6 |
+
"PO-Revision-Date: Tue Jul 04 2017 15:25:54 GMT+0200\n"
|
7 |
"Last-Translator: admin <s.buerger@adenion.de>\n"
|
8 |
"Language-Team: French (France) <translate@tips02.fr>\n"
|
9 |
"Language: French (France)\n"
|
22 |
"X-Generator: Loco - https://localise.biz/\n"
|
23 |
"X-Poedit-SearchPath-0: .."
|
24 |
|
25 |
+
#: ../includes/System.php:64 ../includes/System.php:70
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgid ""
|
27 |
+
"Please see <a href=\"https://www.blog2social."
|
28 |
+
"com/en/faq/content/1/58/en/system-requirements-for-installing-blog2social."
|
29 |
+
"html\" target=\"_blank\">FAQ</a>"
|
30 |
msgstr ""
|
31 |
+
"voir la <a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
|
32 |
+
"requirements-for-installing-blog2social.html\" target=\"_blank\">FAQ</a>"
|
|
|
33 |
|
34 |
+
#: ../includes/System.php:67
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
msgid ""
|
36 |
+
"Blog2Social used PHP. Your installed PHP version on your server is not high "
|
37 |
+
"enough to use Blog2Social. Update your PHP version on 5.5.3 or higher."
|
38 |
msgstr ""
|
39 |
+
"Blog2Social utilisé PHP. Votre version de PHP installée sur votre serveur "
|
40 |
+
"n'est pas assez élevé pour utiliser Blog2Social. Mettez à jour votre version "
|
41 |
+
"de PHP 5.5.3 ou plus sur."
|
42 |
|
43 |
+
#: ../includes/System.php:76
|
44 |
msgid ""
|
45 |
+
"<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
|
46 |
+
"requirements-for-installing-blog2social.html\" target=\"_blank\"> Please find "
|
47 |
+
"more Information and help in our FAQ</a>"
|
48 |
msgstr ""
|
49 |
+
"<a href=\"https://www.blog2social.com/en/faq/content/1/58/en/system-"
|
50 |
+
"requirements-for-installing-blog2social.html\" target=\"_blank\">voir la "
|
51 |
+
"FAQ</a>"
|
52 |
|
53 |
#: ../includes/B2S/Network/Item.php:42 ../includes/B2S/Ship/Navbar.php:32
|
54 |
msgid "Default"
|
58 |
msgid "max. accounts"
|
59 |
msgstr "max. comptes"
|
60 |
|
61 |
+
#: ../includes/B2S/Network/Item.php:91
|
62 |
+
msgid "need more"
|
63 |
+
msgstr "besoin de plus"
|
64 |
+
|
65 |
#: ../includes/B2S/Network/Item.php:96 ../includes/B2S/Network/Item.php:112 ..
|
66 |
#: /includes/B2S/Network/Item.php:114 ../includes/B2S/Settings/Item.php:184 ..
|
67 |
#: /includes/B2S/Settings/Item.php:197 ../includes/B2S/Settings/Item.php:214 ..
|
68 |
#: /includes/B2S/Settings/Item.php:261 ../includes/B2S/Ship/Portale.php:35 ..
|
69 |
+
#: /includes/Init.php:289
|
70 |
msgid "Profile"
|
71 |
msgstr "Profil"
|
72 |
|
74 |
#: /includes/B2S/Network/Item.php:134 ../includes/B2S/Network/Item.php:136 ..
|
75 |
#: /includes/B2S/Settings/Item.php:198 ../includes/B2S/Settings/Item.php:215 ..
|
76 |
#: /includes/B2S/Settings/Item.php:264 ../includes/B2S/Ship/Portale.php:33 ..
|
77 |
+
#: /includes/Init.php:289
|
78 |
msgid "Page"
|
79 |
msgstr "Page"
|
80 |
|
86 |
#: /includes/B2S/Network/Item.php:156 ../includes/B2S/Network/Item.php:158 ..
|
87 |
#: /includes/B2S/Settings/Item.php:199 ../includes/B2S/Settings/Item.php:216 ..
|
88 |
#: /includes/B2S/Settings/Item.php:268 ../includes/B2S/Ship/Portale.php:29 ..
|
89 |
+
#: /includes/Init.php:289
|
90 |
msgid "Group"
|
91 |
msgstr "Groupe"
|
92 |
|
189 |
msgid "last shared on social media"
|
190 |
msgstr "dernier partagé on le réseau social"
|
191 |
|
192 |
+
#: ../includes/B2S/Post/Item.php:218 ../includes/Init.php:105
|
193 |
msgid "Share on Social Media"
|
194 |
msgstr "Partager sur les réseaux sociaux"
|
195 |
|
327 |
msgid "allow shortcodes in my post"
|
328 |
msgstr "permettre à shortcodes dans mon post"
|
329 |
|
330 |
+
#: ../includes/B2S/Settings/Item.php:131
|
331 |
+
msgid "Did you know?"
|
332 |
+
msgstr "Le saviez-vous?"
|
333 |
+
|
334 |
+
#: ../includes/B2S/Settings/Item.php:132
|
335 |
+
msgid ""
|
336 |
+
"Beginning with Premium Pro, you can change the custom post format photo post "
|
337 |
+
"or link post for each individual social media post and channel (profile, "
|
338 |
+
"page, group), deviate from the default settings."
|
339 |
+
msgstr ""
|
340 |
+
"À partir de Premium Pro, vous pouvez modifier la publication personnalisée "
|
341 |
+
"du post-format ou le lien pour chaque publication et chaque chaîne de médias "
|
342 |
+
"sociaux (profil, page, groupe), s'écarter des paramètres par défaut."
|
343 |
+
|
344 |
+
#: ../includes/B2S/Settings/Item.php:132
|
345 |
+
msgid "Upgrade to Premium Pro now."
|
346 |
+
msgstr "Passez à Premium Pro dès maintenant."
|
347 |
+
|
348 |
#: ../includes/B2S/Settings/Item.php:146 ../includes/B2S/Settings/Item.php:188 ..
|
349 |
#: /includes/B2S/Settings/Item.php:227 ../views/b2s/settings.php:127
|
350 |
msgid "Link Post"
|
390 |
"personnelles. Dans Facebook, vous pouvez modifier le nom de l'album avec une "
|
391 |
"description de votre choix."
|
392 |
|
393 |
+
#: ../includes/B2S/Settings/Item.php:184
|
394 |
+
msgid "All"
|
395 |
+
msgstr "Tout"
|
396 |
+
|
397 |
#: ../includes/B2S/Settings/Item.php:275 ../views/b2s/post.sched.php:24
|
398 |
msgid "Uhr"
|
399 |
msgstr "regarder"
|
643 |
msgid "Number of scheduled posts"
|
644 |
msgstr "Nombre d'articles planifiés"
|
645 |
|
646 |
+
#: ../includes/Init.php:261
|
647 |
msgid "This post will be shared into your social media on"
|
648 |
msgstr "Ce post sera partagé dans vos médias sociaux sur"
|
649 |
|
650 |
+
#: ../includes/Init.php:261 ../includes/Init.php:263
|
651 |
msgid "show details"
|
652 |
msgstr "afficher les détails"
|
653 |
|
654 |
+
#: ../includes/Init.php:263
|
655 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
656 |
msgstr "Votre post sera partagé sur les médias sociaux en 2-3 minutes!"
|
657 |
|
658 |
+
#: ../includes/Init.php:267
|
659 |
msgid ""
|
660 |
"Please, make sure that your post are publish on this blog on this moment. "
|
661 |
"Then you can auto post your post with Blog2social."
|
663 |
"S'il vous plaît, assurez-vous que votre post sont publier sur ce blog à ce "
|
664 |
"moment. Ensuite, vous pouvez auto publier votre message avec Blog2social."
|
665 |
|
666 |
+
#: ../includes/Init.php:270 ../includes/MetaBox.php:55
|
667 |
msgid ""
|
668 |
"There are no authorizations for your selected profile. Please, authorize "
|
669 |
"with a social network or select a other profile."
|
671 |
"Il n'existe aucune autorisation pour votre profil sélectionné. Autoriser "
|
672 |
"avec un réseau social ou sélectionner un autre profil."
|
673 |
|
674 |
+
#: ../includes/Init.php:282
|
675 |
msgid "Upgrade to Premium"
|
676 |
msgstr "Passer à la version premium"
|
677 |
|
678 |
+
#: ../includes/Init.php:290
|
679 |
msgid "Your post could not be posted."
|
680 |
msgstr "Votre article ne peut être posté."
|
681 |
|
682 |
+
#: ../includes/Init.php:291
|
683 |
msgid "Your authorization has expired. Please check your authorization."
|
684 |
msgstr "Votre autorisation a expiré. Vérifiez votre autorisation, svp."
|
685 |
|
686 |
+
#: ../includes/Init.php:292
|
687 |
msgid "The network has marked the post as spam or abusive."
|
688 |
msgstr "Le réseau a marqué l'article comme spam ou abusif."
|
689 |
|
690 |
+
#: ../includes/Init.php:293
|
691 |
msgid ""
|
692 |
"We don't have the permission to publish your post. Please check your "
|
693 |
"authorization."
|
695 |
"Nous n'avons pas la permission de publier votre article. Vérifiez votre "
|
696 |
"autorisation, svp."
|
697 |
|
698 |
+
#: ../includes/Init.php:294
|
699 |
msgid ""
|
700 |
"Your authorization is interrupted. Please check your authorization. Please "
|
701 |
"see <a target=\"_blank\" href=\"https://www.blog2social."
|
705 |
"la <a target=\"_blank\" href=\"https://www.blog2social."
|
706 |
"com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>, svp."
|
707 |
|
708 |
+
#: ../includes/Init.php:295
|
709 |
msgid "Your limit is reached for today."
|
710 |
msgstr "Votre limite quotidienne est atteinte."
|
711 |
|
712 |
+
#: ../includes/Init.php:296
|
713 |
msgid "Your post could not be posted, because your image is not available."
|
714 |
msgstr "Votre article ne peut pas être publié parce que l'image n'est pas disponible."
|
715 |
|
716 |
+
#: ../includes/Init.php:297
|
717 |
msgid ""
|
718 |
"The network has blocked your account. Please see <a target=\"_blank\" "
|
719 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
723 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
724 |
"error-messages.html\">FAQ</a>, svp."
|
725 |
|
726 |
+
#: ../includes/Init.php:298
|
727 |
msgid ""
|
728 |
"The number of images is reached. Please see <a target=\"_blank\" href=\"https:"
|
729 |
"//www.blog2social.com/en/faq/category/9/troubleshooting-for-error-messages."
|
733 |
"href=\"https://www.blog2social.com/en/faq/category/9/troubleshooting-for-"
|
734 |
"error-messages.html\">FAQ</a>, svp."
|
735 |
|
736 |
+
#: ../includes/Init.php:299
|
737 |
msgid "Your limit has temporarily reached for this network."
|
738 |
msgstr "Votre limite est temporairement atteinte pour ce réseau."
|
739 |
|
740 |
+
#: ../includes/Init.php:300
|
741 |
msgid ""
|
742 |
"The network can not publish special characters such as Emoji. Please see <a "
|
743 |
"target=\"_blank\" href=\"https://www.blog2social."
|
747 |
"target=\"_blank\" href=\"https://www.blog2social."
|
748 |
"com/en/faq/category/9/troubleshooting-for-error-messages.html\">FAQ</a>."
|
749 |
|
750 |
+
#: ../includes/Init.php:301
|
751 |
msgid "Your post is a duplicate."
|
752 |
msgstr "Votre message est un duplicata."
|
753 |
|
754 |
+
#: ../includes/Init.php:302
|
755 |
msgid "The network are required a public url to your post."
|
756 |
msgstr "Le réseau doit avoir une url publique à votre poste."
|
757 |
|
758 |
+
#: ../includes/Init.php:303
|
759 |
msgid "The network says, that your group is not exisits."
|
760 |
msgstr "Le réseau dit que votre groupe n'existe pas."
|
761 |
|
762 |
+
#: ../includes/Init.php:360 ../includes/Init.php:390
|
763 |
msgid "Dashboard"
|
764 |
msgstr "Tableau de bord"
|
765 |
|
766 |
+
#: ../includes/Init.php:361 ../includes/Init.php:361 ../includes/Init.php:397
|
767 |
msgid "Posts & Sharing"
|
768 |
msgstr "Messages et partage"
|
769 |
|
770 |
+
#: ../includes/Init.php:362 ../includes/Init.php:362 ../includes/Init.php:404 ..
|
771 |
#: /views/b2s/network.php:17
|
772 |
msgid "Networks"
|
773 |
msgstr "Réseaux"
|
774 |
|
775 |
+
#: ../includes/Init.php:363 ../includes/Init.php:363 ../includes/Init.php:410 ..
|
776 |
#: /views/b2s/ship.php:53 ../views/b2s/ship.php:263
|
777 |
msgid "Settings"
|
778 |
msgstr "Paramètres"
|
779 |
|
780 |
+
#: ../includes/Init.php:364 ../includes/Init.php:364 ../includes/Init.php:416
|
781 |
msgid "PR-Service"
|
782 |
msgstr "Service - PR"
|
783 |
|
784 |
+
#: ../includes/Init.php:381
|
785 |
msgid "Blog2Social"
|
786 |
msgstr "Blog2Social"
|
787 |
|
788 |
+
#: ../includes/Init.php:635 ../includes/Init.php:788
|
789 |
msgid "or"
|
790 |
msgstr "ou"
|
791 |
|
792 |
+
#: ../includes/Init.php:635 ../includes/Init.php:788
|
793 |
msgid "back to install plugins"
|
794 |
msgstr "retour à l'installation des plugins"
|
795 |
|
796 |
+
#: ../includes/MetaBox.php:24 ../views/b2s/html/header.phtml:15
|
797 |
+
msgid "Please see FAQ"
|
798 |
+
msgstr "Voir les FAQ"
|
799 |
+
|
800 |
#: ../includes/MetaBox.php:31
|
801 |
msgid "last auto-post:"
|
802 |
msgstr "dernier auto-post:"
|
1143 |
msgid "on Blog"
|
1144 |
msgstr "sur le blog"
|
1145 |
|
1146 |
+
#: ../includes/System.php:61
|
1147 |
msgid ""
|
1148 |
"Blog2Social used cURL. cURL is not installed in your PHP installation on "
|
1149 |
"your server. Install cURL and activate Blog2Social again."
|
1151 |
"Blog2Social utilisé cURL. CURL n'est pas installé dans votre installation "
|
1152 |
"PHP sur votre serveur. Installez cURL et activez Blog2Social à nouveau."
|
1153 |
|
1154 |
+
#: ../includes/System.php:73
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1155 |
msgid ""
|
1156 |
"Blog2Social seems to have no permission to write in your WordPress database. "
|
1157 |
"Please make sure to assign Blog2Social the permission to write in the "
|
1161 |
"données WordPress. Assurez-vous d'attribuer à Blog2Social la permission "
|
1162 |
"d'écrire dans la base de données WordPress."
|
1163 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1164 |
#. Name of the plugin
|
1165 |
msgid "Social Media Auto Post & Scheduler"
|
1166 |
msgstr "Social Media Auto Post & Scheduler"
|
1248 |
msgstr "Appelez-nous: +49 2181 7569-277"
|
1249 |
|
1250 |
#: ../views/b2s/dashboard.php:62
|
1251 |
+
msgid "(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)"
|
1252 |
+
msgstr "(Heures d'appel: de 9h00 à 5h00. CET les jours ouvrables)"
|
1253 |
|
1254 |
#: ../views/b2s/dashboard.php:65
|
1255 |
msgid "Follow us:"
|
1500 |
msgid "Reset predefined best time settings"
|
1501 |
msgstr "Réinitialiser les réglages de la meilleure heure"
|
1502 |
|
1503 |
+
#: ../views/b2s/settings.php:54
|
1504 |
+
msgid "Post format"
|
1505 |
+
msgstr "Format de publication"
|
1506 |
+
|
1507 |
+
#: ../views/b2s/settings.php:59
|
1508 |
+
msgid "Facebook"
|
1509 |
+
msgstr "Facebook"
|
1510 |
+
|
1511 |
+
#: ../views/b2s/settings.php:62
|
1512 |
+
msgid "Twitter"
|
1513 |
+
msgstr "Twitter"
|
1514 |
+
|
1515 |
#: ../views/b2s/settings.php:120
|
1516 |
msgid "Select the preferred custom post format for your posts"
|
1517 |
msgstr ""
|
1802 |
msgid "Select image for"
|
1803 |
msgstr "Sélectionnez l'image pour"
|
1804 |
|
1805 |
+
#: ../views/b2s/ship.php:432
|
1806 |
+
msgid "Choose your"
|
1807 |
+
msgstr "Choisi ton"
|
1808 |
+
|
1809 |
#: ../views/b2s/ship.php:432
|
1810 |
msgid "Post Format"
|
1811 |
msgstr "Format de publication"
|
1812 |
|
1813 |
+
#: ../views/b2s/ship.php:434
|
1814 |
+
msgid "for:"
|
1815 |
+
msgstr "pour:"
|
1816 |
+
|
1817 |
+
#: ../views/b2s/ship.php:449
|
1818 |
+
msgid ""
|
1819 |
+
"Define the default settings for the custom post format for all of your "
|
1820 |
+
"Facebook accounts on the Blog2Social settings section."
|
1821 |
+
msgstr ""
|
1822 |
+
"Définissez les paramètres par défaut pour le format de publication "
|
1823 |
+
"personnalisé pour tous vos comptes Facebook dans la section des paramètres "
|
1824 |
+
"Blog2Social."
|
1825 |
+
|
1826 |
+
#: ../views/b2s/ship.php:452
|
1827 |
+
msgid ""
|
1828 |
+
"Define the default settings for the custom post format for all of your "
|
1829 |
+
"Twitter accounts on the Blog2Social settings section."
|
1830 |
+
msgstr ""
|
1831 |
+
"Définissez les paramètres par défaut pour le format de publication "
|
1832 |
+
"personnalisé pour tous vos comptes Twitter sur la section des paramètres de "
|
1833 |
+
"Blog2Social."
|
1834 |
+
|
1835 |
#: ../views/notice.php:12
|
1836 |
msgid "Connection is broken..."
|
1837 |
msgstr "Connexion rompue..."
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: auto-post, social media share, auto-publish, scheduling, social media post
|
|
4 |
Donate link: http://www.blog2social.com
|
5 |
Requires at least: 4.2.2
|
6 |
Tested up to: 4.8.0
|
7 |
-
Stable tag: 4.1.
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -279,6 +279,8 @@ We use the official authentification oAUTH methods to third-party applications p
|
|
279 |
9. Adjust the best times to schedule in the best time scheduler.
|
280 |
|
281 |
== Changelog ==
|
|
|
|
|
282 |
= 4.1.0 =
|
283 |
Usabilitiy and Performance Optimization. Select link format or image format individual per posts
|
284 |
= 4.0.0 =
|
@@ -313,6 +315,8 @@ Bug Fix: update method
|
|
313 |
Re-engineered Post dashboard, new one-page preview features: WYSIWYG editors, simplified network selection, new scheduler features: best-times-scheduler, my-times-scheduler, recurring scheduling, multiple accounts per profile (applies to FREE and PREMIUM)
|
314 |
|
315 |
== Upgrade Notice ==
|
|
|
|
|
316 |
= 4.1.0 =
|
317 |
Usabilitiy and Performance Optimization. Select link format or image format individual per posts
|
318 |
= 4.0.0 =
|
4 |
Donate link: http://www.blog2social.com
|
5 |
Requires at least: 4.2.2
|
6 |
Tested up to: 4.8.0
|
7 |
+
Stable tag: 4.1.1
|
8 |
License: GPLv3
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
279 |
9. Adjust the best times to schedule in the best time scheduler.
|
280 |
|
281 |
== Changelog ==
|
282 |
+
= 4.1.1 =
|
283 |
+
Usabilitiy and Performance Optimization. Bugfix: Heartbeat
|
284 |
= 4.1.0 =
|
285 |
Usabilitiy and Performance Optimization. Select link format or image format individual per posts
|
286 |
= 4.0.0 =
|
315 |
Re-engineered Post dashboard, new one-page preview features: WYSIWYG editors, simplified network selection, new scheduler features: best-times-scheduler, my-times-scheduler, recurring scheduling, multiple accounts per profile (applies to FREE and PREMIUM)
|
316 |
|
317 |
== Upgrade Notice ==
|
318 |
+
= 4.1.1 =
|
319 |
+
Usabilitiy and Performance Optimization. Bugfix: Heartbeat
|
320 |
= 4.1.0 =
|
321 |
Usabilitiy and Performance Optimization. Select link format or image format individual per posts
|
322 |
= 4.0.0 =
|
views/b2s/dashboard.php
CHANGED
@@ -59,7 +59,7 @@
|
|
59 |
</a>
|
60 |
<span class="btn btn-success b2s-dashoard-btn-phone hidden-xs btn-xs"><span class="glyphicon glyphicon-earphone" aria-hidden="true"></span> <?php _e('Call us: +49 2181 7569-277', 'blog2social') ?></span>
|
61 |
<br>
|
62 |
-
<div class="b2s-info-sm hidden-xs"><?php _e('(Call times: from 9:00 a.m. to 5:
|
63 |
<?php } ?>
|
64 |
<br><br>
|
65 |
<h6 class="b2s-dashboard-h6 hidden-xs hidden-sm"><?php _e('Follow us:', 'blog2social') ?>
|
59 |
</a>
|
60 |
<span class="btn btn-success b2s-dashoard-btn-phone hidden-xs btn-xs"><span class="glyphicon glyphicon-earphone" aria-hidden="true"></span> <?php _e('Call us: +49 2181 7569-277', 'blog2social') ?></span>
|
61 |
<br>
|
62 |
+
<div class="b2s-info-sm hidden-xs"><?php _e('(Call times: from 9:00 a.m. to 5:00 p.m. CET on working days)', 'blog2social') ?></div>
|
63 |
<?php } ?>
|
64 |
<br><br>
|
65 |
<h6 class="b2s-dashboard-h6 hidden-xs hidden-sm"><?php _e('Follow us:', 'blog2social') ?>
|