Version Description
Usability Optimization, Twitter Threads & LinkedIn multi image
Download this release
Release Info
Developer | PR-Gateway |
Plugin | Blog2Social: Social Media Auto Post & Scheduler |
Version | 6.9.3 |
Comparing to | |
See all releases |
Code changes from version 6.9.1 to 6.9.3
- assets/css/b2s/metrics.css +5 -0
- assets/css/b2s/network.css +7 -2
- assets/css/general.css +36 -0
- assets/images/b2s/trial_popup.png +0 -0
- assets/js/b2s/curation.js +85 -48
- assets/js/b2s/general.js +63 -0
- assets/js/b2s/metrics.js +21 -18
- assets/js/b2s/network.js +1 -0
- assets/js/b2s/ship.js +18 -3
- assets/js/b2s/start.js +77 -56
- assets/lib/apexcharts/apexcharts.css +667 -0
- assets/lib/apexcharts/apexcharts.min.js +14 -0
- assets/lib/daterangepicker/daterangepicker.css +410 -0
- assets/lib/daterangepicker/daterangepicker.js +1578 -0
- blog2social.php +2 -2
- includes/Ajax/Post.php +51 -4
- includes/B2S/Api/Network/Pinterest.php +16 -3
- includes/B2S/AutoPost/Item.php +1 -1
- includes/B2S/Heartbeat.php +16 -0
- includes/B2S/Hook/Filter.php +2 -2
- includes/B2S/Network/Item.php +13 -10
- includes/B2S/Post/Item.php +30 -18
- includes/B2S/Ship/Item.php +69 -0
- includes/B2S/Support/community_public_key.pem +9 -0
- includes/Loader.php +27 -24
- includes/Tools.php +10 -1
- includes/Util.php +1 -1
- languages/blog2social-de_DE.mo +0 -0
- languages/blog2social-de_DE.po +1222 -994
- languages/blog2social.pot +1081 -935
assets/css/b2s/metrics.css
CHANGED
@@ -40,4 +40,9 @@ body.modal-open .b2s-container {
|
|
40 |
|
41 |
.padding-right-0 {
|
42 |
padding-right: 0px !important;
|
|
|
|
|
|
|
|
|
|
|
43 |
}
|
40 |
|
41 |
.padding-right-0 {
|
42 |
padding-right: 0px !important;
|
43 |
+
}
|
44 |
+
|
45 |
+
#b2s-metrics-date-picker {
|
46 |
+
width: 110%;
|
47 |
+
margin-left: -10%;
|
48 |
}
|
assets/css/b2s/network.css
CHANGED
@@ -853,11 +853,16 @@ ul.b2s-network-item-auth-list li:last-child{
|
|
853 |
|
854 |
.b2s-edit-template-preview-inner-border-24 {
|
855 |
border: 1px solid gray;
|
856 |
-
border-radius:
|
|
|
|
|
|
|
|
|
|
|
857 |
}
|
858 |
|
859 |
.b2s-edit-template-preview-border-24, .b2s-edit-template-preview-image-border-24 {
|
860 |
-
padding:
|
861 |
}
|
862 |
|
863 |
.b2s-edit-template-preview-link-meta-box-24 {
|
853 |
|
854 |
.b2s-edit-template-preview-inner-border-24 {
|
855 |
border: 1px solid gray;
|
856 |
+
border-radius: 5px;
|
857 |
+
padding: 5px;
|
858 |
+
}
|
859 |
+
|
860 |
+
.b2s-edit-template-preview-image-image-24 {
|
861 |
+
border-radius: 5px;
|
862 |
}
|
863 |
|
864 |
.b2s-edit-template-preview-border-24, .b2s-edit-template-preview-image-border-24 {
|
865 |
+
padding: 4px;
|
866 |
}
|
867 |
|
868 |
.b2s-edit-template-preview-link-meta-box-24 {
|
assets/css/general.css
CHANGED
@@ -7206,6 +7206,7 @@ input[type="checkbox"].error + label{
|
|
7206 |
|
7207 |
.clearfix{
|
7208 |
display: block !important;
|
|
|
7209 |
}
|
7210 |
|
7211 |
.b2s-color-green{
|
@@ -7832,4 +7833,39 @@ CSS CheckBOX
|
|
7832 |
}
|
7833 |
.btn-instapaper:hover {
|
7834 |
color: #fff;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7835 |
}
|
7206 |
|
7207 |
.clearfix{
|
7208 |
display: block !important;
|
7209 |
+
-webkit-perspective: none !important;
|
7210 |
}
|
7211 |
|
7212 |
.b2s-color-green{
|
7833 |
}
|
7834 |
.btn-instapaper:hover {
|
7835 |
color: #fff;
|
7836 |
+
}
|
7837 |
+
|
7838 |
+
.btn-outline-dark {
|
7839 |
+
color: #343a40;
|
7840 |
+
background-color: transparent;
|
7841 |
+
background-image: none;
|
7842 |
+
border-color: #343a40;
|
7843 |
+
}
|
7844 |
+
|
7845 |
+
.btn-outline-dark:hover {
|
7846 |
+
color: #fff;
|
7847 |
+
background-color: #343a40;
|
7848 |
+
border-color: #343a40;
|
7849 |
+
}
|
7850 |
+
|
7851 |
+
@media (min-width: 1560px) {
|
7852 |
+
.b2s-margin-right-20 {
|
7853 |
+
margin-right: 20px;
|
7854 |
+
}
|
7855 |
+
}
|
7856 |
+
|
7857 |
+
.b2s-bold{
|
7858 |
+
font-weight: 600;
|
7859 |
+
}
|
7860 |
+
|
7861 |
+
.padding-lr-40 {
|
7862 |
+
padding: 0px 40px !important;
|
7863 |
+
}
|
7864 |
+
|
7865 |
+
.b2s-dash {
|
7866 |
+
border-top: 5px solid black;
|
7867 |
+
}
|
7868 |
+
|
7869 |
+
.b2s-text-black {
|
7870 |
+
color: black;
|
7871 |
}
|
assets/images/b2s/trial_popup.png
ADDED
Binary file
|
assets/js/b2s/curation.js
CHANGED
@@ -9,6 +9,22 @@ if (typeof wp.heartbeat !== "undefined") {
|
|
9 |
jQuery(window).on("load", function () {
|
10 |
var url_string = window.location.href;
|
11 |
var url_param = new URL(url_string);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
var url = url_param.searchParams.get("url");
|
13 |
var comment = url_param.searchParams.get("comment");
|
14 |
var image_id = url_param.searchParams.get("image_id");
|
@@ -22,19 +38,36 @@ jQuery(window).on("load", function () {
|
|
22 |
jQuery('.b2s-btn-curation-continue').trigger('click');
|
23 |
} else if(typeof comment != "undefined" && comment != "" && comment != null) {
|
24 |
if(typeof image_id != "undefined" && image_id != "" && image_id != null && typeof image_url != "undefined" && image_url != "" && image_url != null) {
|
25 |
-
|
26 |
jQuery('.b2s-post-item-details-url-image').attr('src', image_url);
|
27 |
jQuery('.b2s-image-url-hidden-field').val(image_url);
|
28 |
jQuery('.b2s-image-id-hidden-field').val(image_id);
|
29 |
jQuery('.b2s-image-remove-btn').show();
|
30 |
jQuery('.b2s-post-item-details-item-message-input').val(comment);
|
31 |
} else {
|
32 |
-
|
33 |
jQuery('.b2s-post-item-details-item-message-input').val(comment);
|
34 |
}
|
35 |
}
|
36 |
});
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
jQuery(document).on('click', '.b2s-btn-curation-continue', function () {
|
39 |
jQuery('#b2s-curation-input-url-help').hide();
|
40 |
var re = new RegExp(/^(https?:\/\/)+[a-zA-Z0-9\wÄÖÜÑÁÉÍÓÚÂÃÀÇÊÔÕÆÈËÎÏŒÙÛŸØÅöäüñáéíóúâãàçêôõæèëîïœùûÿøåß-]+(?:\.[a-zA-Z0-9\wÄÖÜÑÁÉÍÓÚÂÃÀÇÊÔÕÆÈËÎÏŒÙÛŸØÅöäüñáéíóúâãàçêôõæèëîïœùûÿøåß-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=%.ÄÖÜÑÁÉÍÓÚÂÃÀÇÊÔÕÆÈËÎÏŒÙÛŸØÅöäüñáéíóúâãàçêôõæèëîïœùûÿøåß]+$/);
|
@@ -125,7 +158,7 @@ function scrapeDetails(url) {
|
|
125 |
jQuery('.b2s-curation-input-area').hide();
|
126 |
jQuery('.b2s-curation-settings-area').hide();
|
127 |
jQuery('.b2s-curation-preview-area').hide();
|
128 |
-
jQuery('.b2s-curation-select').hide();
|
129 |
jQuery('.b2s-server-connection-fail').hide();
|
130 |
jQuery('#b2s-curation-no-auth-info').hide();
|
131 |
jQuery('#b2s-curation-no-review-info').hide();
|
@@ -213,7 +246,7 @@ function scrapeDetails(url) {
|
|
213 |
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
214 |
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
215 |
}
|
216 |
-
jQuery('.b2s-curation-select').show();
|
217 |
if (data.scrapeError == true) {
|
218 |
jQuery('#b2s-post-curation-preview-title').attr('type', 'text');
|
219 |
}
|
@@ -279,7 +312,7 @@ jQuery(document).on('click', '#b2s-btn-curation-share', function () {
|
|
279 |
jQuery('.b2s-curation-preview-area').hide();
|
280 |
jQuery('.b2s-curation-image-area').hide();
|
281 |
jQuery('.b2s-curation-text-area').hide();
|
282 |
-
jQuery('.b2s-curation-select').hide();
|
283 |
|
284 |
jQuery.ajax({
|
285 |
processData: false,
|
@@ -429,7 +462,7 @@ jQuery(document).on('click', '#b2s-btn-curation-customize', function () {
|
|
429 |
jQuery('.b2s-curation-preview-area').hide();
|
430 |
jQuery('.b2s-curation-image-area').hide();
|
431 |
jQuery('.b2s-curation-text-area').hide();
|
432 |
-
jQuery('.b2s-curation-select').hide();
|
433 |
jQuery.ajax({
|
434 |
processData: false,
|
435 |
url: ajaxurl,
|
@@ -453,7 +486,7 @@ jQuery(document).on('click', '#b2s-btn-curation-customize', function () {
|
|
453 |
jQuery('#b2s-curation-no-data-info').show();
|
454 |
jQuery('.b2s-curation-settings-area').show();
|
455 |
jQuery('.b2s-curation-preview-area').show();
|
456 |
-
jQuery('.b2s-curation-select').show();
|
457 |
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
458 |
jQuery('.b2s-curation-link-area').show();
|
459 |
} else if(jQuery('#b2s-curation-post-format').val() == '1') {
|
@@ -553,7 +586,7 @@ jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
|
553 |
jQuery('.b2s-curation-preview-area').hide();
|
554 |
jQuery('.b2s-curation-image-area').hide();
|
555 |
jQuery('.b2s-curation-text-area').hide();
|
556 |
-
jQuery('.b2s-curation-select').hide();
|
557 |
jQuery.ajax({
|
558 |
processData: false,
|
559 |
url: ajaxurl,
|
@@ -589,23 +622,24 @@ jQuery(document).on('click', '#b2s-btn-curation-draft', function () {
|
|
589 |
} else {
|
590 |
jQuery('.b2s-curation-image-area').show();
|
591 |
}
|
592 |
-
jQuery('.b2s-curation-select').show();
|
593 |
|
594 |
}
|
595 |
});
|
596 |
return false;
|
597 |
});
|
598 |
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
|
|
603 |
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
604 |
jQuery('#b2s-curation-post-format').val('0');
|
605 |
-
jQuery('.b2s-curation-
|
606 |
-
jQuery('.b2s-curation-
|
607 |
-
jQuery('.b2s-curation-
|
608 |
-
jQuery('.b2s-curation-
|
609 |
jQuery('.b2s-loading-area').hide();
|
610 |
jQuery('.b2s-curation-link-area').show();
|
611 |
jQuery('.b2s-curation-image-area').hide();
|
@@ -617,18 +651,19 @@ jQuery(document).on('click', '.b2s-curation-format-link', function() {
|
|
617 |
}
|
618 |
jQuery('.b2s-curation-input-area-info-header-text').show();
|
619 |
jQuery('.b2s-curation-input-area-info-header-text-video').hide();
|
620 |
-
}
|
621 |
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
|
|
626 |
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
627 |
jQuery('#b2s-curation-post-format').val('0');
|
628 |
-
jQuery('.b2s-curation-
|
629 |
-
jQuery('.b2s-curation-
|
630 |
-
jQuery('.b2s-curation-
|
631 |
-
jQuery('.b2s-curation-
|
632 |
jQuery('.b2s-loading-area').hide();
|
633 |
jQuery('.b2s-curation-link-area').show();
|
634 |
jQuery('.b2s-curation-image-area').hide();
|
@@ -640,22 +675,23 @@ jQuery(document).on('click', '.b2s-curation-format-video', function() {
|
|
640 |
}
|
641 |
jQuery('.b2s-curation-input-area-info-header-text').hide();
|
642 |
jQuery('.b2s-curation-input-area-info-header-text-video').show();
|
643 |
-
}
|
644 |
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
|
|
649 |
jQuery('#b2s-post-curation-comment-image').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
650 |
jQuery('#b2s-curation-post-format').val('1');
|
651 |
jQuery('.b2s-loading-area').show();
|
652 |
jQuery('.b2s-curation-link-area').hide();
|
653 |
jQuery('.b2s-curation-image-area').hide();
|
654 |
jQuery('.b2s-curation-text-area').hide();
|
655 |
-
jQuery('.b2s-curation-
|
656 |
-
jQuery('.b2s-curation-
|
657 |
-
jQuery('.b2s-curation-
|
658 |
-
jQuery('.b2s-curation-
|
659 |
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
660 |
jQuery.ajax({
|
661 |
url: ajaxurl,
|
@@ -671,7 +707,7 @@ jQuery(document).on('click', '.b2s-curation-format-image', function() {
|
|
671 |
return false;
|
672 |
},
|
673 |
success: function (data) {
|
674 |
-
if(jQuery('.b2s-curation-
|
675 |
if (data.result == true) {
|
676 |
jQuery('.b2s-curation-settings-area').html(data.settings);
|
677 |
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
@@ -704,22 +740,23 @@ jQuery(document).on('click', '.b2s-curation-format-image', function() {
|
|
704 |
jQuery('.b2s-curation-settings-area').show();
|
705 |
}
|
706 |
return false;
|
707 |
-
}
|
708 |
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
|
|
713 |
jQuery('#b2s-post-curation-comment-text').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
714 |
jQuery('#b2s-curation-post-format').val('2');
|
715 |
jQuery('.b2s-loading-area').show();
|
716 |
jQuery('.b2s-curation-link-area').hide();
|
717 |
jQuery('.b2s-curation-image-area').hide();
|
718 |
jQuery('.b2s-curation-text-area').hide();
|
719 |
-
jQuery('.b2s-curation-
|
720 |
-
jQuery('.b2s-curation-
|
721 |
-
jQuery('.b2s-curation-
|
722 |
-
jQuery('.b2s-curation-
|
723 |
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
724 |
jQuery.ajax({
|
725 |
url: ajaxurl,
|
@@ -735,7 +772,7 @@ jQuery(document).on('click', '.b2s-curation-format-text', function() {
|
|
735 |
return false;
|
736 |
},
|
737 |
success: function (data) {
|
738 |
-
if(jQuery('.b2s-curation-
|
739 |
if (data.result == true) {
|
740 |
jQuery('.b2s-curation-settings-area').html(data.settings);
|
741 |
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
@@ -768,7 +805,7 @@ jQuery(document).on('click', '.b2s-curation-format-text', function() {
|
|
768 |
jQuery('.b2s-curation-settings-area').show();
|
769 |
}
|
770 |
return false;
|
771 |
-
}
|
772 |
|
773 |
jQuery(document).on('change', '#b2s-post-curation-comment', function() {
|
774 |
jQuery('#b2s-post-curation-comment-dummy').val(jQuery('#b2s-post-curation-comment').val());
|
@@ -972,7 +1009,7 @@ jQuery(document).on('click', '.b2s-curation-info-premium-btn', function () {
|
|
972 |
jQuery(document).on('click', '.b2s-re-share-btn', function() {
|
973 |
jQuery('.b2s-curation-post-list-area').hide();
|
974 |
jQuery('.b2s-curation-settings-area').show();
|
975 |
-
jQuery('.b2s-curation-select').show();
|
976 |
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
977 |
jQuery('.b2s-curation-preview-area').show();
|
978 |
} else {
|
9 |
jQuery(window).on("load", function () {
|
10 |
var url_string = window.location.href;
|
11 |
var url_param = new URL(url_string);
|
12 |
+
var type = url_param.searchParams.get("type");
|
13 |
+
switch (type) {
|
14 |
+
case "link":
|
15 |
+
activateLink();
|
16 |
+
break;
|
17 |
+
case "image":
|
18 |
+
activateImage();
|
19 |
+
break;
|
20 |
+
case "text":
|
21 |
+
activateText();
|
22 |
+
break;
|
23 |
+
case "video":
|
24 |
+
activateVideo();
|
25 |
+
break;
|
26 |
+
}
|
27 |
+
|
28 |
var url = url_param.searchParams.get("url");
|
29 |
var comment = url_param.searchParams.get("comment");
|
30 |
var image_id = url_param.searchParams.get("image_id");
|
38 |
jQuery('.b2s-btn-curation-continue').trigger('click');
|
39 |
} else if(typeof comment != "undefined" && comment != "" && comment != null) {
|
40 |
if(typeof image_id != "undefined" && image_id != "" && image_id != null && typeof image_url != "undefined" && image_url != "" && image_url != null) {
|
41 |
+
activateImage();
|
42 |
jQuery('.b2s-post-item-details-url-image').attr('src', image_url);
|
43 |
jQuery('.b2s-image-url-hidden-field').val(image_url);
|
44 |
jQuery('.b2s-image-id-hidden-field').val(image_id);
|
45 |
jQuery('.b2s-image-remove-btn').show();
|
46 |
jQuery('.b2s-post-item-details-item-message-input').val(comment);
|
47 |
} else {
|
48 |
+
activateText();
|
49 |
jQuery('.b2s-post-item-details-item-message-input').val(comment);
|
50 |
}
|
51 |
}
|
52 |
});
|
53 |
|
54 |
+
jQuery(document).on('click', '.b2s-curation-link', function() {
|
55 |
+
activateLink();
|
56 |
+
return false;
|
57 |
+
});
|
58 |
+
jQuery(document).on('click', '.b2s-curation-text', function() {
|
59 |
+
activateText();
|
60 |
+
return false;
|
61 |
+
});
|
62 |
+
jQuery(document).on('click', '.b2s-curation-image', function() {
|
63 |
+
activateImage();
|
64 |
+
return false;
|
65 |
+
});
|
66 |
+
jQuery(document).on('click', '.b2s-curation-video', function() {
|
67 |
+
activateVideo();
|
68 |
+
return false;
|
69 |
+
});
|
70 |
+
|
71 |
jQuery(document).on('click', '.b2s-btn-curation-continue', function () {
|
72 |
jQuery('#b2s-curation-input-url-help').hide();
|
73 |
var re = new RegExp(/^(https?:\/\/)+[a-zA-Z0-9\wÄÖÜÑÁÉÍÓÚÂÃÀÇÊÔÕÆÈËÎÏŒÙÛŸØÅöäüñáéíóúâãàçêôõæèëîïœùûÿøåß-]+(?:\.[a-zA-Z0-9\wÄÖÜÑÁÉÍÓÚÂÃÀÇÊÔÕÆÈËÎÏŒÙÛŸØÅöäüñáéíóúâãàçêôõæèëîïœùûÿøåß-]+)+[\w\-\._~:/?#[\]@!\$&'\(\)\*\+,;=%.ÄÖÜÑÁÉÍÓÚÂÃÀÇÊÔÕÆÈËÎÏŒÙÛŸØÅöäüñáéíóúâãàçêôõæèëîïœùûÿøåß]+$/);
|
158 |
jQuery('.b2s-curation-input-area').hide();
|
159 |
jQuery('.b2s-curation-settings-area').hide();
|
160 |
jQuery('.b2s-curation-preview-area').hide();
|
161 |
+
// jQuery('.b2s-curation-select').hide();
|
162 |
jQuery('.b2s-server-connection-fail').hide();
|
163 |
jQuery('#b2s-curation-no-auth-info').hide();
|
164 |
jQuery('#b2s-curation-no-review-info').hide();
|
246 |
jQuery('#b2s-btn-curation-customize').prop("disabled", true);
|
247 |
jQuery('#b2s-btn-curation-share').prop("disabled", true);
|
248 |
}
|
249 |
+
// jQuery('.b2s-curation-select').show();
|
250 |
if (data.scrapeError == true) {
|
251 |
jQuery('#b2s-post-curation-preview-title').attr('type', 'text');
|
252 |
}
|
312 |
jQuery('.b2s-curation-preview-area').hide();
|
313 |
jQuery('.b2s-curation-image-area').hide();
|
314 |
jQuery('.b2s-curation-text-area').hide();
|
315 |
+
// jQuery('.b2s-curation-select').hide();
|
316 |
|
317 |
jQuery.ajax({
|
318 |
processData: false,
|
462 |
jQuery('.b2s-curation-preview-area').hide();
|
463 |
jQuery('.b2s-curation-image-area').hide();
|
464 |
jQuery('.b2s-curation-text-area').hide();
|
465 |
+
// jQuery('.b2s-curation-select').hide();
|
466 |
jQuery.ajax({
|
467 |
processData: false,
|
468 |
url: ajaxurl,
|
486 |
jQuery('#b2s-curation-no-data-info').show();
|
487 |
jQuery('.b2s-curation-settings-area').show();
|
488 |
jQuery('.b2s-curation-preview-area').show();
|
489 |
+
// jQuery('.b2s-curation-select').show();
|
490 |
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
491 |
jQuery('.b2s-curation-link-area').show();
|
492 |
} else if(jQuery('#b2s-curation-post-format').val() == '1') {
|
586 |
jQuery('.b2s-curation-preview-area').hide();
|
587 |
jQuery('.b2s-curation-image-area').hide();
|
588 |
jQuery('.b2s-curation-text-area').hide();
|
589 |
+
// jQuery('.b2s-curation-select').hide();
|
590 |
jQuery.ajax({
|
591 |
processData: false,
|
592 |
url: ajaxurl,
|
622 |
} else {
|
623 |
jQuery('.b2s-curation-image-area').show();
|
624 |
}
|
625 |
+
// jQuery('.b2s-curation-select').show();
|
626 |
|
627 |
}
|
628 |
});
|
629 |
return false;
|
630 |
});
|
631 |
|
632 |
+
function activateLink() {
|
633 |
+
jQuery('.b2s-curation-title').hide();
|
634 |
+
jQuery('#b2s-curation-title-link').show();
|
635 |
+
jQuery('.b2s-curation-subtitle').hide();
|
636 |
+
jQuery('#b2s-curation-subtitle-link').show();
|
637 |
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
638 |
jQuery('#b2s-curation-post-format').val('0');
|
639 |
+
jQuery('.b2s-curation-link').removeClass('btn-outline-dark').addClass('btn-primary');
|
640 |
+
jQuery('.b2s-curation-video').removeClass('btn-primary').addClass('btn-outline-dark');
|
641 |
+
jQuery('.b2s-curation-image').removeClass('btn-primary').addClass('btn-outline-dark');
|
642 |
+
jQuery('.b2s-curation-text').removeClass('btn-primary').addClass('btn-outline-dark');
|
643 |
jQuery('.b2s-loading-area').hide();
|
644 |
jQuery('.b2s-curation-link-area').show();
|
645 |
jQuery('.b2s-curation-image-area').hide();
|
651 |
}
|
652 |
jQuery('.b2s-curation-input-area-info-header-text').show();
|
653 |
jQuery('.b2s-curation-input-area-info-header-text-video').hide();
|
654 |
+
};
|
655 |
|
656 |
+
function activateVideo() {
|
657 |
+
jQuery('.b2s-curation-title').hide();
|
658 |
+
jQuery('#b2s-curation-title-video').show();
|
659 |
+
jQuery('.b2s-curation-subtitle').hide();
|
660 |
+
jQuery('#b2s-curation-subtitle-video').show();
|
661 |
jQuery('#b2s-post-curation-comment').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
662 |
jQuery('#b2s-curation-post-format').val('0');
|
663 |
+
jQuery('.b2s-curation-video').removeClass('btn-outline-dark').addClass('btn-primary');
|
664 |
+
jQuery('.b2s-curation-link').removeClass('btn-primary').addClass('btn-outline-dark');
|
665 |
+
jQuery('.b2s-curation-image').removeClass('btn-primary').addClass('btn-outline-dark');
|
666 |
+
jQuery('.b2s-curation-text').removeClass('btn-primary').addClass('btn-outline-dark');
|
667 |
jQuery('.b2s-loading-area').hide();
|
668 |
jQuery('.b2s-curation-link-area').show();
|
669 |
jQuery('.b2s-curation-image-area').hide();
|
675 |
}
|
676 |
jQuery('.b2s-curation-input-area-info-header-text').hide();
|
677 |
jQuery('.b2s-curation-input-area-info-header-text-video').show();
|
678 |
+
};
|
679 |
|
680 |
+
function activateImage() {
|
681 |
+
jQuery('.b2s-curation-title').hide();
|
682 |
+
jQuery('#b2s-curation-title-image').show();
|
683 |
+
jQuery('.b2s-curation-subtitle').hide();
|
684 |
+
jQuery('#b2s-curation-subtitle-image').show();
|
685 |
jQuery('#b2s-post-curation-comment-image').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
686 |
jQuery('#b2s-curation-post-format').val('1');
|
687 |
jQuery('.b2s-loading-area').show();
|
688 |
jQuery('.b2s-curation-link-area').hide();
|
689 |
jQuery('.b2s-curation-image-area').hide();
|
690 |
jQuery('.b2s-curation-text-area').hide();
|
691 |
+
jQuery('.b2s-curation-image').removeClass('btn-outline-dark').addClass('btn-primary');
|
692 |
+
jQuery('.b2s-curation-link').removeClass('btn-primary').addClass('btn-outline-dark');
|
693 |
+
jQuery('.b2s-curation-video').removeClass('btn-primary').addClass('btn-outline-dark');
|
694 |
+
jQuery('.b2s-curation-text').removeClass('btn-primary').addClass('btn-outline-dark');
|
695 |
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
696 |
jQuery.ajax({
|
697 |
url: ajaxurl,
|
707 |
return false;
|
708 |
},
|
709 |
success: function (data) {
|
710 |
+
if(jQuery('.b2s-curation-image').hasClass('btn-primary')) {
|
711 |
if (data.result == true) {
|
712 |
jQuery('.b2s-curation-settings-area').html(data.settings);
|
713 |
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
740 |
jQuery('.b2s-curation-settings-area').show();
|
741 |
}
|
742 |
return false;
|
743 |
+
};
|
744 |
|
745 |
+
function activateText() {
|
746 |
+
jQuery('.b2s-curation-title').hide();
|
747 |
+
jQuery('#b2s-curation-title-text').show();
|
748 |
+
jQuery('.b2s-curation-subtitle').hide();
|
749 |
+
jQuery('#b2s-curation-subtitle-text').show();
|
750 |
jQuery('#b2s-post-curation-comment-text').val(jQuery('#b2s-post-curation-comment-dummy').val());
|
751 |
jQuery('#b2s-curation-post-format').val('2');
|
752 |
jQuery('.b2s-loading-area').show();
|
753 |
jQuery('.b2s-curation-link-area').hide();
|
754 |
jQuery('.b2s-curation-image-area').hide();
|
755 |
jQuery('.b2s-curation-text-area').hide();
|
756 |
+
jQuery('.b2s-curation-text').removeClass('btn-outline-dark').addClass('btn-primary');
|
757 |
+
jQuery('.b2s-curation-link').removeClass('btn-primary').addClass('btn-outline-dark');
|
758 |
+
jQuery('.b2s-curation-video').removeClass('btn-primary').addClass('btn-outline-dark');
|
759 |
+
jQuery('.b2s-curation-image').removeClass('btn-primary').addClass('btn-outline-dark');
|
760 |
if(jQuery('.b2s-curation-settings-area').html().length == 0) {
|
761 |
jQuery.ajax({
|
762 |
url: ajaxurl,
|
772 |
return false;
|
773 |
},
|
774 |
success: function (data) {
|
775 |
+
if(jQuery('.b2s-curation-text').hasClass('btn-primary')) {
|
776 |
if (data.result == true) {
|
777 |
jQuery('.b2s-curation-settings-area').html(data.settings);
|
778 |
jQuery('#b2s-post-curation-profile-select [value="0"]').prop('selected', true).trigger('change');
|
805 |
jQuery('.b2s-curation-settings-area').show();
|
806 |
}
|
807 |
return false;
|
808 |
+
};
|
809 |
|
810 |
jQuery(document).on('change', '#b2s-post-curation-comment', function() {
|
811 |
jQuery('#b2s-post-curation-comment-dummy').val(jQuery('#b2s-post-curation-comment').val());
|
1009 |
jQuery(document).on('click', '.b2s-re-share-btn', function() {
|
1010 |
jQuery('.b2s-curation-post-list-area').hide();
|
1011 |
jQuery('.b2s-curation-settings-area').show();
|
1012 |
+
// jQuery('.b2s-curation-select').show();
|
1013 |
if(jQuery('#b2s-curation-post-format').val() == '0') {
|
1014 |
jQuery('.b2s-curation-preview-area').show();
|
1015 |
} else {
|
assets/js/b2s/general.js
CHANGED
@@ -14,6 +14,13 @@ jQuery(window).on("load", function () {
|
|
14 |
if(jQuery('#b2s-metrics-banner-show').val() == '0' && jQuery('.b2s-metrics-starting-modal').length == 0) {
|
15 |
jQuery('#b2s-metrics-banner-modal').modal('show');
|
16 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
});
|
18 |
|
19 |
jQuery(document).on('click', '.b2s-show-feedback-modal', function () {
|
@@ -376,4 +383,60 @@ jQuery(document).on('click', '.b2s-metrics-banner-close', function() {
|
|
376 |
return true;
|
377 |
}
|
378 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
});
|
14 |
if(jQuery('#b2s-metrics-banner-show').val() == '0' && jQuery('.b2s-metrics-starting-modal').length == 0) {
|
15 |
jQuery('#b2s-metrics-banner-modal').modal('show');
|
16 |
}
|
17 |
+
|
18 |
+
if(jQuery('#b2s-trial-seven-day-modal').length > 0) {
|
19 |
+
jQuery('#b2s-trial-seven-day-modal').modal('show');
|
20 |
+
}
|
21 |
+
if(jQuery('#b2s-final-trail-modal').length > 0) {
|
22 |
+
jQuery('#b2s-final-trail-modal').modal('show');
|
23 |
+
}
|
24 |
});
|
25 |
|
26 |
jQuery(document).on('click', '.b2s-show-feedback-modal', function () {
|
383 |
return true;
|
384 |
}
|
385 |
});
|
386 |
+
});
|
387 |
+
|
388 |
+
jQuery(document).on('click', '.b2s-continue-trial-btn', function() {
|
389 |
+
jQuery('#b2s-trial-seven-day-modal').modal('hide');
|
390 |
+
jQuery.ajax({
|
391 |
+
url: ajaxurl,
|
392 |
+
type: "POST",
|
393 |
+
dataType: "json",
|
394 |
+
cache: false,
|
395 |
+
data: {
|
396 |
+
'action': 'b2s_continue_trial_option',
|
397 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
398 |
+
},
|
399 |
+
error: function () {
|
400 |
+
jQuery('.b2s-server-connection-fail').show();
|
401 |
+
return false;
|
402 |
+
},
|
403 |
+
success: function (data) {
|
404 |
+
if (data.result == false) {
|
405 |
+
if (data.error == 'nonce') {
|
406 |
+
jQuery('.b2s-nonce-check-fail').show();
|
407 |
+
} else {
|
408 |
+
jQuery('.b2s-server-connection-fail').show();
|
409 |
+
}
|
410 |
+
}
|
411 |
+
return true;
|
412 |
+
}
|
413 |
+
});
|
414 |
+
});
|
415 |
+
|
416 |
+
jQuery(document).on('click', '.b2s-hide-final-trial-btn', function() {
|
417 |
+
jQuery('#b2s-final-trail-modal').modal('hide');
|
418 |
+
jQuery.ajax({
|
419 |
+
url: ajaxurl,
|
420 |
+
type: "POST",
|
421 |
+
dataType: "json",
|
422 |
+
cache: false,
|
423 |
+
data: {
|
424 |
+
'action': 'b2s_final_trial_option',
|
425 |
+
'b2s_security_nonce': jQuery('#b2s_security_nonce').val()
|
426 |
+
},
|
427 |
+
error: function () {
|
428 |
+
jQuery('.b2s-server-connection-fail').show();
|
429 |
+
return false;
|
430 |
+
},
|
431 |
+
success: function (data) {
|
432 |
+
if (data.result == false) {
|
433 |
+
if (data.error == 'nonce') {
|
434 |
+
jQuery('.b2s-nonce-check-fail').show();
|
435 |
+
} else {
|
436 |
+
jQuery('.b2s-server-connection-fail').show();
|
437 |
+
}
|
438 |
+
}
|
439 |
+
return true;
|
440 |
+
}
|
441 |
+
});
|
442 |
});
|
assets/js/b2s/metrics.js
CHANGED
@@ -18,28 +18,31 @@ jQuery(window).on("load", function () {
|
|
18 |
var today = new Date();
|
19 |
var startDate = new Date();
|
20 |
startDate.setTime(startDate.getTime() - ((24*60*60*1000) * 30));//today -30 days
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
date.forEach(function(item){
|
32 |
-
filterDates.push(item.getFullYear() + '-' + (String(item.getMonth()+1).padStart(2, "0")) + '-' + (String(item.getDate()).padStart(2, "0")));
|
33 |
-
});
|
34 |
},
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
}
|
|
|
|
|
|
|
38 |
});
|
39 |
|
40 |
-
metricsDatePicker.b2sdatepicker().data('b2sdatepicker').selectedDates = [startDate, today];
|
41 |
-
metricsDatePicker.b2sdatepicker().data('b2sdatepicker').update();
|
42 |
-
|
43 |
loadInsights();
|
44 |
});
|
45 |
|
18 |
var today = new Date();
|
19 |
var startDate = new Date();
|
20 |
startDate.setTime(startDate.getTime() - ((24*60*60*1000) * 30));//today -30 days
|
21 |
+
|
22 |
+
var dateFormat = 'DD.MM.YYYY';
|
23 |
+
if(jQuery('#b2sUserLang').val() == 'en') {
|
24 |
+
dateFormat = 'YYYY-MM-DD';
|
25 |
+
}
|
26 |
+
|
27 |
+
jQuery('#b2s-metrics-date-picker').daterangepicker({
|
28 |
+
ranges: {
|
29 |
+
'Last 7 Days': [moment().subtract(6, 'days'), moment()],
|
30 |
+
'Last 30 Days': [moment().subtract(29, 'days'), moment()]
|
|
|
|
|
|
|
31 |
},
|
32 |
+
"showCustomRangeLabel": false,
|
33 |
+
"alwaysShowCalendars": true,
|
34 |
+
"startDate": startDate,
|
35 |
+
"endDate": today,
|
36 |
+
"maxDate": today,
|
37 |
+
"opens": "left",
|
38 |
+
"locale": {
|
39 |
+
format: dateFormat
|
40 |
}
|
41 |
+
}, function(start, end, label) {
|
42 |
+
filterDates = [start.format('YYYY-MM-DD'), end.format('YYYY-MM-DD')];
|
43 |
+
loadInsights();
|
44 |
});
|
45 |
|
|
|
|
|
|
|
46 |
loadInsights();
|
47 |
});
|
48 |
|
assets/js/b2s/network.js
CHANGED
@@ -1231,6 +1231,7 @@ jQuery(document).on('click', '.b2s-edit-template-save-btn', function () {
|
|
1231 |
setTimeout(function () {
|
1232 |
jQuery('.b2s-edit-template-save-success').fadeOut();
|
1233 |
}, 3000);
|
|
|
1234 |
} else {
|
1235 |
if (data.error == 'nonce') {
|
1236 |
jQuery('.b2s-nonce-check-fail').show();
|
1231 |
setTimeout(function () {
|
1232 |
jQuery('.b2s-edit-template-save-success').fadeOut();
|
1233 |
}, 3000);
|
1234 |
+
jQuery('#b2s-edit-template').modal('hide');
|
1235 |
} else {
|
1236 |
if (data.error == 'nonce') {
|
1237 |
jQuery('.b2s-nonce-check-fail').show();
|
assets/js/b2s/ship.js
CHANGED
@@ -16,6 +16,9 @@ jQuery(window).on("load", function () {
|
|
16 |
if (jQuery('.toggelbutton').is(':visible') && !jQuery("#b2s-wrapper").hasClass("toggled")) {
|
17 |
jQuery('.btn-toggle-menu').trigger('click');
|
18 |
}
|
|
|
|
|
|
|
19 |
});
|
20 |
|
21 |
//Stop duplicate posts by page refreshing during the post process
|
@@ -3160,7 +3163,7 @@ function networkLimitAll(networkAuthId, networkId, limit) {
|
|
3160 |
}
|
3161 |
|
3162 |
function networkCount(networkAuthId) {
|
3163 |
-
|
3164 |
var networkCountId = -1; //default;
|
3165 |
if (jQuery(':focus').length > 0) {
|
3166 |
var attr = jQuery(':focus').attr('data-network-count');
|
@@ -3176,6 +3179,9 @@ function networkCount(networkAuthId) {
|
|
3176 |
url = "http://" + url;
|
3177 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3178 |
}
|
|
|
|
|
|
|
3179 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3180 |
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 19) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3181 |
url = jQuery("#b2sDefault_url").val();
|
@@ -3185,6 +3191,15 @@ function networkCount(networkAuthId) {
|
|
3185 |
if (typeof text !== 'undefined' && jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').length == 0) {
|
3186 |
var textLength = text.length;
|
3187 |
jQuery(".b2s-post-item-countChar[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").html(textLength);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3188 |
}
|
3189 |
if (jQuery(".b2s-post-item-details-item-message-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == "12") { //instagram
|
3190 |
var matches = text.match(/(#[^# ]{1,})/g);
|
@@ -3195,7 +3210,7 @@ function networkCount(networkAuthId) {
|
|
3195 |
jQuery('.b2s-content-info[data-network-auth-id="' + networkAuthId + '"]').hide();
|
3196 |
jQuery(".b2s-post-item-details-item-message-input[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").removeClass("warning");
|
3197 |
}
|
3198 |
-
}
|
3199 |
}
|
3200 |
|
3201 |
|
@@ -4292,7 +4307,7 @@ function changePostFormat(networkId, networkType, postFormat, networkAuthId, pos
|
|
4292 |
checkGifAnimation(networkAuthId, networkId);
|
4293 |
|
4294 |
//Multi Image
|
4295 |
-
if (postFormat == 1 && ((networkId == 1 && (networkType == 1 || networkType == 2)) || (networkId == 2)) && jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() != 1) {
|
4296 |
jQuery('.b2s-multi-image-area[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').show();
|
4297 |
} else {
|
4298 |
jQuery('.b2s-multi-image-area[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').hide();
|
16 |
if (jQuery('.toggelbutton').is(':visible') && !jQuery("#b2s-wrapper").hasClass("toggled")) {
|
17 |
jQuery('.btn-toggle-menu').trigger('click');
|
18 |
}
|
19 |
+
if(jQuery('#b2sOpenDraftIncompleteModal').val() == '1') {
|
20 |
+
jQuery('#b2sDraftIncompleteModal').modal('show');
|
21 |
+
}
|
22 |
});
|
23 |
|
24 |
//Stop duplicate posts by page refreshing during the post process
|
3163 |
}
|
3164 |
|
3165 |
function networkCount(networkAuthId) {
|
3166 |
+
var twitterLimit = 280;
|
3167 |
var networkCountId = -1; //default;
|
3168 |
if (jQuery(':focus').length > 0) {
|
3169 |
var attr = jQuery(':focus').attr('data-network-count');
|
3179 |
url = "http://" + url;
|
3180 |
jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").val(url);
|
3181 |
}
|
3182 |
+
if (jQuery(".b2s-post-item-details-item-message-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == "2") { //twitter
|
3183 |
+
twitterLimit = twitterLimit - 26;
|
3184 |
+
}
|
3185 |
} else if (jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").hasClass("required_network_url")) {
|
3186 |
if (!((jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 1 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 3 || jQuery(".b2s-post-item-details-item-url-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == 19) && jQuery('.b2s-post-item-details-post-format[data-network-auth-id=' + networkAuthId + ']').val() == 1)) { //Facebook & Linkedin Imagepost don't require Link
|
3187 |
url = jQuery("#b2sDefault_url").val();
|
3191 |
if (typeof text !== 'undefined' && jQuery('.b2s-post-item-details-item-message-input-allow-html[data-network-auth-id="' + networkAuthId + '"]').length == 0) {
|
3192 |
var textLength = text.length;
|
3193 |
jQuery(".b2s-post-item-countChar[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").html(textLength);
|
3194 |
+
if (jQuery(".b2s-post-item-details-item-message-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == "2") {
|
3195 |
+
var threadCount = Math.ceil(textLength / twitterLimit);
|
3196 |
+
jQuery(".b2s-post-item-count-threads[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").html(threadCount);
|
3197 |
+
if(threadCount >= 2) {
|
3198 |
+
jQuery(".b2s-post-item-show-thread-count[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").show();
|
3199 |
+
} else {
|
3200 |
+
jQuery(".b2s-post-item-show-thread-count[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").hide();
|
3201 |
+
}
|
3202 |
+
}
|
3203 |
}
|
3204 |
if (jQuery(".b2s-post-item-details-item-message-input[data-network-auth-id='" + networkAuthId + "']").attr('data-network-id') == "12") { //instagram
|
3205 |
var matches = text.match(/(#[^# ]{1,})/g);
|
3210 |
jQuery('.b2s-content-info[data-network-auth-id="' + networkAuthId + '"]').hide();
|
3211 |
jQuery(".b2s-post-item-details-item-message-input[data-network-count='" + networkCountId + "'][data-network-auth-id='" + networkAuthId + "']").removeClass("warning");
|
3212 |
}
|
3213 |
+
}
|
3214 |
}
|
3215 |
|
3216 |
|
4307 |
checkGifAnimation(networkAuthId, networkId);
|
4308 |
|
4309 |
//Multi Image
|
4310 |
+
if (postFormat == 1 && ((networkId == 1 && (networkType == 1 || networkType == 2)) || (networkId == 2) || (networkId == 3 && (networkType == 0 || networkType == 1))) && jQuery('.b2s-post-item-details-release-input-date-select[data-network-auth-id="' + networkAuthId + '"]').val() != 1) {
|
4311 |
jQuery('.b2s-multi-image-area[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').show();
|
4312 |
} else {
|
4313 |
jQuery('.b2s-multi-image-area[data-network-auth-id="' + networkAuthId + '"][data-network-count="-1"]').hide();
|
assets/js/b2s/start.js
CHANGED
@@ -166,11 +166,6 @@ function getWidgetContent() {
|
|
166 |
|
167 |
/* Aktivity-Chart*/
|
168 |
function drawBasic() {
|
169 |
-
jQuery('#chart_div').html("<div class=\"b2s-loading-area\">\n" +
|
170 |
-
" <br>\n" +
|
171 |
-
" <div class=\"b2s-loader-impulse b2s-loader-impulse-md\"></div>\n" +
|
172 |
-
" <div class=\"clearfix\"></div>\n" +
|
173 |
-
" </div>");
|
174 |
var legacyMode = jQuery('#isLegacyMode').val();
|
175 |
if (legacyMode == "1") {
|
176 |
legacyMode = false; // loading is sync (stack)
|
@@ -193,12 +188,8 @@ function drawBasic() {
|
|
193 |
if (content.error == 'nonce') {
|
194 |
jQuery('.b2s-nonce-check-fail').show();
|
195 |
} else {
|
196 |
-
jQuery('#chart_div').html("<canvas id=\"b2s_activity_chart\" style=\"max-width:690px !important; max-height:320px !important;\"></canvas>");
|
197 |
-
var ctx = document.getElementById("b2s_activity_chart").getContext('2d');
|
198 |
var published = [];
|
199 |
-
var published_colors = [];
|
200 |
var scheduled = [];
|
201 |
-
var scheduled_colors = [];
|
202 |
function dateToYMD(date) {
|
203 |
var d = date.getUTCDate();
|
204 |
var m = date.getUTCMonth() + 1;
|
@@ -220,69 +211,99 @@ function drawBasic() {
|
|
220 |
var date = new Date(published[published.length - 1].x.toString());
|
221 |
var newDate = new Date(date.setTime(date.getTime() + 86400000));
|
222 |
published.push({x: dateToYMD(newDate), y: 0});
|
223 |
-
published_colors.push('rgba(121,178,50,0.8)');
|
224 |
-
scheduled_colors.push('rgba(192,192,192,0.8)');
|
225 |
scheduled.push({x: dateToYMD(newDate), y: 0});
|
226 |
diff = parseInt((new Date(published[published.length - 1].x).getTime() - new Date(this).getTime()) / (24 * 3600 * 1000));
|
227 |
}
|
228 |
}
|
229 |
|
230 |
published.push({x: this.toString(), y: content[this][0]});
|
231 |
-
published_colors.push('rgba(121,178,50,0.8)');
|
232 |
-
scheduled_colors.push('rgba(192,192,192,0.8)');
|
233 |
scheduled.push({x: this.toString(), y: content[this][1]});
|
234 |
});
|
235 |
-
var
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
}
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
253 |
},
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
265 |
}
|
266 |
},
|
267 |
-
|
268 |
-
|
269 |
-
type: "time",
|
270 |
-
time: {
|
271 |
-
unit: unit
|
272 |
-
}
|
273 |
-
}
|
274 |
-
],
|
275 |
-
yAxes: [{
|
276 |
-
ticks: {
|
277 |
-
beginAtZero: true
|
278 |
-
}
|
279 |
-
}]
|
280 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
}
|
282 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
}
|
284 |
}
|
285 |
});
|
|
|
286 |
}
|
287 |
|
288 |
|
166 |
|
167 |
/* Aktivity-Chart*/
|
168 |
function drawBasic() {
|
|
|
|
|
|
|
|
|
|
|
169 |
var legacyMode = jQuery('#isLegacyMode').val();
|
170 |
if (legacyMode == "1") {
|
171 |
legacyMode = false; // loading is sync (stack)
|
188 |
if (content.error == 'nonce') {
|
189 |
jQuery('.b2s-nonce-check-fail').show();
|
190 |
} else {
|
|
|
|
|
191 |
var published = [];
|
|
|
192 |
var scheduled = [];
|
|
|
193 |
function dateToYMD(date) {
|
194 |
var d = date.getUTCDate();
|
195 |
var m = date.getUTCMonth() + 1;
|
211 |
var date = new Date(published[published.length - 1].x.toString());
|
212 |
var newDate = new Date(date.setTime(date.getTime() + 86400000));
|
213 |
published.push({x: dateToYMD(newDate), y: 0});
|
|
|
|
|
214 |
scheduled.push({x: dateToYMD(newDate), y: 0});
|
215 |
diff = parseInt((new Date(published[published.length - 1].x).getTime() - new Date(this).getTime()) / (24 * 3600 * 1000));
|
216 |
}
|
217 |
}
|
218 |
|
219 |
published.push({x: this.toString(), y: content[this][0]});
|
|
|
|
|
220 |
scheduled.push({x: this.toString(), y: content[this][1]});
|
221 |
});
|
222 |
+
var options = {
|
223 |
+
series: [],
|
224 |
+
chart: {
|
225 |
+
redrawOnParentResize: true,
|
226 |
+
type: 'bar',
|
227 |
+
height: 450,
|
228 |
+
animations: {
|
229 |
+
enabled: true,
|
230 |
+
easing: 'easeout',
|
231 |
+
speed: 500,
|
232 |
+
dynamicAnimation: {
|
233 |
+
enabled: true,
|
234 |
+
speed: 300
|
235 |
+
}
|
236 |
+
},
|
237 |
+
toolbar: {
|
238 |
+
show: true,
|
239 |
+
tools: {
|
240 |
+
download: true,
|
241 |
+
zoom: true,
|
242 |
+
zoomin: true,
|
243 |
+
zoomout: true,
|
244 |
+
pan: false,
|
245 |
+
reset: true
|
246 |
+
}
|
247 |
+
}
|
248 |
+
},
|
249 |
+
plotOptions: {
|
250 |
+
bar: {
|
251 |
+
horizontal: false,
|
252 |
+
columnWidth: '90%'
|
253 |
+
}
|
254 |
},
|
255 |
+
dataLabels: {
|
256 |
+
enabled: false
|
257 |
+
},
|
258 |
+
colors: ['#79b232CC', '#c0c0c0CC'],
|
259 |
+
|
260 |
+
legend: {
|
261 |
+
position: 'top',
|
262 |
+
horizontalAlign: 'left'
|
263 |
+
},
|
264 |
+
|
265 |
+
xaxis: {
|
266 |
+
type: 'datetime',
|
267 |
+
labels: {
|
268 |
+
tickAmount: 2,
|
269 |
+
range: 5,
|
270 |
+
datetimeFormatter: {
|
271 |
+
year: 'yyyy',
|
272 |
+
month: 'MMM yy',
|
273 |
+
day: 'dd MMM',
|
274 |
+
hour: 'dd MMM'
|
275 |
}
|
276 |
},
|
277 |
+
axisTicks: {
|
278 |
+
show: false
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
}
|
280 |
+
},
|
281 |
+
yaxis: {
|
282 |
+
forceNiceScale: false,
|
283 |
+
labels: {
|
284 |
+
formatter: function (val) {
|
285 |
+
return val.toFixed(0);
|
286 |
+
}
|
287 |
+
}
|
288 |
+
},
|
289 |
+
noData: {
|
290 |
+
text: 'keine Daten vorhanden...'
|
291 |
}
|
292 |
+
};
|
293 |
+
var chart = new ApexCharts(document.querySelector("#chart_div"),options);
|
294 |
+
chart.render();
|
295 |
+
|
296 |
+
chart.updateSeries([{
|
297 |
+
name: 'Ver�ffentlicht',
|
298 |
+
data: published
|
299 |
+
},{
|
300 |
+
name: 'Geplant',
|
301 |
+
data: scheduled
|
302 |
+
}]);
|
303 |
}
|
304 |
}
|
305 |
});
|
306 |
+
document.getElementById('chart_div').style.marginTop = '15px';
|
307 |
}
|
308 |
|
309 |
|
assets/lib/apexcharts/apexcharts.css
ADDED
@@ -0,0 +1,667 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.apexcharts-canvas {
|
2 |
+
position: relative;
|
3 |
+
user-select: none;
|
4 |
+
/* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */
|
5 |
+
}
|
6 |
+
|
7 |
+
|
8 |
+
/* scrollbar is not visible by default for legend, hence forcing the visibility */
|
9 |
+
.apexcharts-canvas ::-webkit-scrollbar {
|
10 |
+
-webkit-appearance: none;
|
11 |
+
width: 6px;
|
12 |
+
}
|
13 |
+
|
14 |
+
.apexcharts-canvas ::-webkit-scrollbar-thumb {
|
15 |
+
border-radius: 4px;
|
16 |
+
background-color: rgba(0, 0, 0, .5);
|
17 |
+
box-shadow: 0 0 1px rgba(255, 255, 255, .5);
|
18 |
+
-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
|
19 |
+
}
|
20 |
+
|
21 |
+
|
22 |
+
.apexcharts-inner {
|
23 |
+
position: relative;
|
24 |
+
}
|
25 |
+
|
26 |
+
.apexcharts-text tspan {
|
27 |
+
font-family: inherit;
|
28 |
+
}
|
29 |
+
|
30 |
+
.legend-mouseover-inactive {
|
31 |
+
transition: 0.15s ease all;
|
32 |
+
opacity: 0.20;
|
33 |
+
}
|
34 |
+
|
35 |
+
.apexcharts-series-collapsed {
|
36 |
+
opacity: 0;
|
37 |
+
}
|
38 |
+
|
39 |
+
.apexcharts-tooltip {
|
40 |
+
border-radius: 5px;
|
41 |
+
box-shadow: 2px 2px 6px -4px #999;
|
42 |
+
cursor: default;
|
43 |
+
font-size: 14px;
|
44 |
+
left: 62px;
|
45 |
+
opacity: 0;
|
46 |
+
pointer-events: none;
|
47 |
+
position: absolute;
|
48 |
+
top: 20px;
|
49 |
+
display: flex;
|
50 |
+
flex-direction: column;
|
51 |
+
overflow: hidden;
|
52 |
+
white-space: nowrap;
|
53 |
+
z-index: 12;
|
54 |
+
transition: 0.15s ease all;
|
55 |
+
}
|
56 |
+
|
57 |
+
.apexcharts-tooltip.apexcharts-active {
|
58 |
+
opacity: 1;
|
59 |
+
transition: 0.15s ease all;
|
60 |
+
}
|
61 |
+
|
62 |
+
.apexcharts-tooltip.apexcharts-theme-light {
|
63 |
+
border: 1px solid #e3e3e3;
|
64 |
+
background: rgba(255, 255, 255, 0.96);
|
65 |
+
}
|
66 |
+
|
67 |
+
.apexcharts-tooltip.apexcharts-theme-dark {
|
68 |
+
color: #fff;
|
69 |
+
background: rgba(30, 30, 30, 0.8);
|
70 |
+
}
|
71 |
+
|
72 |
+
.apexcharts-tooltip * {
|
73 |
+
font-family: inherit;
|
74 |
+
}
|
75 |
+
|
76 |
+
|
77 |
+
.apexcharts-tooltip-title {
|
78 |
+
padding: 6px;
|
79 |
+
font-size: 15px;
|
80 |
+
margin-bottom: 4px;
|
81 |
+
}
|
82 |
+
|
83 |
+
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
|
84 |
+
background: #ECEFF1;
|
85 |
+
border-bottom: 1px solid #ddd;
|
86 |
+
}
|
87 |
+
|
88 |
+
.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {
|
89 |
+
background: rgba(0, 0, 0, 0.7);
|
90 |
+
border-bottom: 1px solid #333;
|
91 |
+
}
|
92 |
+
|
93 |
+
.apexcharts-tooltip-text-value,
|
94 |
+
.apexcharts-tooltip-text-z-value {
|
95 |
+
display: inline-block;
|
96 |
+
font-weight: 600;
|
97 |
+
margin-left: 5px;
|
98 |
+
}
|
99 |
+
|
100 |
+
.apexcharts-tooltip-text-z-label:empty,
|
101 |
+
.apexcharts-tooltip-text-z-value:empty {
|
102 |
+
display: none;
|
103 |
+
}
|
104 |
+
|
105 |
+
.apexcharts-tooltip-text-value,
|
106 |
+
.apexcharts-tooltip-text-z-value {
|
107 |
+
font-weight: 600;
|
108 |
+
}
|
109 |
+
|
110 |
+
.apexcharts-tooltip-marker {
|
111 |
+
min-width: 12px;
|
112 |
+
min-height: 12px;
|
113 |
+
position: relative;
|
114 |
+
top: 0px;
|
115 |
+
margin-right: 10px;
|
116 |
+
border-radius: 50%;
|
117 |
+
}
|
118 |
+
|
119 |
+
.apexcharts-tooltip-series-group {
|
120 |
+
padding: 0 10px;
|
121 |
+
display: none;
|
122 |
+
text-align: left;
|
123 |
+
justify-content: left;
|
124 |
+
align-items: center;
|
125 |
+
}
|
126 |
+
|
127 |
+
.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker {
|
128 |
+
opacity: 1;
|
129 |
+
}
|
130 |
+
|
131 |
+
.apexcharts-tooltip-series-group.apexcharts-active,
|
132 |
+
.apexcharts-tooltip-series-group:last-child {
|
133 |
+
padding-bottom: 4px;
|
134 |
+
}
|
135 |
+
|
136 |
+
.apexcharts-tooltip-series-group-hidden {
|
137 |
+
opacity: 0;
|
138 |
+
height: 0;
|
139 |
+
line-height: 0;
|
140 |
+
padding: 0 !important;
|
141 |
+
}
|
142 |
+
|
143 |
+
.apexcharts-tooltip-y-group {
|
144 |
+
padding: 6px 0 5px;
|
145 |
+
}
|
146 |
+
|
147 |
+
.apexcharts-tooltip-box, .apexcharts-custom-tooltip {
|
148 |
+
padding: 4px 8px;
|
149 |
+
}
|
150 |
+
|
151 |
+
.apexcharts-tooltip-boxPlot {
|
152 |
+
display: flex;
|
153 |
+
flex-direction: column-reverse;
|
154 |
+
}
|
155 |
+
|
156 |
+
.apexcharts-tooltip-box>div {
|
157 |
+
margin: 4px 0;
|
158 |
+
}
|
159 |
+
|
160 |
+
.apexcharts-tooltip-box span.value {
|
161 |
+
font-weight: bold;
|
162 |
+
}
|
163 |
+
|
164 |
+
.apexcharts-tooltip-rangebar {
|
165 |
+
padding: 5px 8px;
|
166 |
+
}
|
167 |
+
|
168 |
+
.apexcharts-tooltip-rangebar .category {
|
169 |
+
font-weight: 600;
|
170 |
+
color: #777;
|
171 |
+
}
|
172 |
+
|
173 |
+
.apexcharts-tooltip-rangebar .series-name {
|
174 |
+
font-weight: bold;
|
175 |
+
display: block;
|
176 |
+
margin-bottom: 5px;
|
177 |
+
}
|
178 |
+
|
179 |
+
.apexcharts-xaxistooltip {
|
180 |
+
opacity: 0;
|
181 |
+
padding: 9px 10px;
|
182 |
+
pointer-events: none;
|
183 |
+
color: #373d3f;
|
184 |
+
font-size: 13px;
|
185 |
+
text-align: center;
|
186 |
+
border-radius: 2px;
|
187 |
+
position: absolute;
|
188 |
+
z-index: 10;
|
189 |
+
background: #ECEFF1;
|
190 |
+
border: 1px solid #90A4AE;
|
191 |
+
transition: 0.15s ease all;
|
192 |
+
}
|
193 |
+
|
194 |
+
.apexcharts-xaxistooltip.apexcharts-theme-dark {
|
195 |
+
background: rgba(0, 0, 0, 0.7);
|
196 |
+
border: 1px solid rgba(0, 0, 0, 0.5);
|
197 |
+
color: #fff;
|
198 |
+
}
|
199 |
+
|
200 |
+
.apexcharts-xaxistooltip:after,
|
201 |
+
.apexcharts-xaxistooltip:before {
|
202 |
+
left: 50%;
|
203 |
+
border: solid transparent;
|
204 |
+
content: " ";
|
205 |
+
height: 0;
|
206 |
+
width: 0;
|
207 |
+
position: absolute;
|
208 |
+
pointer-events: none;
|
209 |
+
}
|
210 |
+
|
211 |
+
.apexcharts-xaxistooltip:after {
|
212 |
+
border-color: rgba(236, 239, 241, 0);
|
213 |
+
border-width: 6px;
|
214 |
+
margin-left: -6px;
|
215 |
+
}
|
216 |
+
|
217 |
+
.apexcharts-xaxistooltip:before {
|
218 |
+
border-color: rgba(144, 164, 174, 0);
|
219 |
+
border-width: 7px;
|
220 |
+
margin-left: -7px;
|
221 |
+
}
|
222 |
+
|
223 |
+
.apexcharts-xaxistooltip-bottom:after,
|
224 |
+
.apexcharts-xaxistooltip-bottom:before {
|
225 |
+
bottom: 100%;
|
226 |
+
}
|
227 |
+
|
228 |
+
.apexcharts-xaxistooltip-top:after,
|
229 |
+
.apexcharts-xaxistooltip-top:before {
|
230 |
+
top: 100%;
|
231 |
+
}
|
232 |
+
|
233 |
+
.apexcharts-xaxistooltip-bottom:after {
|
234 |
+
border-bottom-color: #ECEFF1;
|
235 |
+
}
|
236 |
+
|
237 |
+
.apexcharts-xaxistooltip-bottom:before {
|
238 |
+
border-bottom-color: #90A4AE;
|
239 |
+
}
|
240 |
+
|
241 |
+
.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after {
|
242 |
+
border-bottom-color: rgba(0, 0, 0, 0.5);
|
243 |
+
}
|
244 |
+
|
245 |
+
.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before {
|
246 |
+
border-bottom-color: rgba(0, 0, 0, 0.5);
|
247 |
+
}
|
248 |
+
|
249 |
+
.apexcharts-xaxistooltip-top:after {
|
250 |
+
border-top-color: #ECEFF1
|
251 |
+
}
|
252 |
+
|
253 |
+
.apexcharts-xaxistooltip-top:before {
|
254 |
+
border-top-color: #90A4AE;
|
255 |
+
}
|
256 |
+
|
257 |
+
.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after {
|
258 |
+
border-top-color: rgba(0, 0, 0, 0.5);
|
259 |
+
}
|
260 |
+
|
261 |
+
.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before {
|
262 |
+
border-top-color: rgba(0, 0, 0, 0.5);
|
263 |
+
}
|
264 |
+
|
265 |
+
.apexcharts-xaxistooltip.apexcharts-active {
|
266 |
+
opacity: 1;
|
267 |
+
transition: 0.15s ease all;
|
268 |
+
}
|
269 |
+
|
270 |
+
.apexcharts-yaxistooltip {
|
271 |
+
opacity: 0;
|
272 |
+
padding: 4px 10px;
|
273 |
+
pointer-events: none;
|
274 |
+
color: #373d3f;
|
275 |
+
font-size: 13px;
|
276 |
+
text-align: center;
|
277 |
+
border-radius: 2px;
|
278 |
+
position: absolute;
|
279 |
+
z-index: 10;
|
280 |
+
background: #ECEFF1;
|
281 |
+
border: 1px solid #90A4AE;
|
282 |
+
}
|
283 |
+
|
284 |
+
.apexcharts-yaxistooltip.apexcharts-theme-dark {
|
285 |
+
background: rgba(0, 0, 0, 0.7);
|
286 |
+
border: 1px solid rgba(0, 0, 0, 0.5);
|
287 |
+
color: #fff;
|
288 |
+
}
|
289 |
+
|
290 |
+
.apexcharts-yaxistooltip:after,
|
291 |
+
.apexcharts-yaxistooltip:before {
|
292 |
+
top: 50%;
|
293 |
+
border: solid transparent;
|
294 |
+
content: " ";
|
295 |
+
height: 0;
|
296 |
+
width: 0;
|
297 |
+
position: absolute;
|
298 |
+
pointer-events: none;
|
299 |
+
}
|
300 |
+
|
301 |
+
.apexcharts-yaxistooltip:after {
|
302 |
+
border-color: rgba(236, 239, 241, 0);
|
303 |
+
border-width: 6px;
|
304 |
+
margin-top: -6px;
|
305 |
+
}
|
306 |
+
|
307 |
+
.apexcharts-yaxistooltip:before {
|
308 |
+
border-color: rgba(144, 164, 174, 0);
|
309 |
+
border-width: 7px;
|
310 |
+
margin-top: -7px;
|
311 |
+
}
|
312 |
+
|
313 |
+
.apexcharts-yaxistooltip-left:after,
|
314 |
+
.apexcharts-yaxistooltip-left:before {
|
315 |
+
left: 100%;
|
316 |
+
}
|
317 |
+
|
318 |
+
.apexcharts-yaxistooltip-right:after,
|
319 |
+
.apexcharts-yaxistooltip-right:before {
|
320 |
+
right: 100%;
|
321 |
+
}
|
322 |
+
|
323 |
+
.apexcharts-yaxistooltip-left:after {
|
324 |
+
border-left-color: #ECEFF1;
|
325 |
+
}
|
326 |
+
|
327 |
+
.apexcharts-yaxistooltip-left:before {
|
328 |
+
border-left-color: #90A4AE;
|
329 |
+
}
|
330 |
+
|
331 |
+
.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after {
|
332 |
+
border-left-color: rgba(0, 0, 0, 0.5);
|
333 |
+
}
|
334 |
+
|
335 |
+
.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before {
|
336 |
+
border-left-color: rgba(0, 0, 0, 0.5);
|
337 |
+
}
|
338 |
+
|
339 |
+
.apexcharts-yaxistooltip-right:after {
|
340 |
+
border-right-color: #ECEFF1;
|
341 |
+
}
|
342 |
+
|
343 |
+
.apexcharts-yaxistooltip-right:before {
|
344 |
+
border-right-color: #90A4AE;
|
345 |
+
}
|
346 |
+
|
347 |
+
.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after {
|
348 |
+
border-right-color: rgba(0, 0, 0, 0.5);
|
349 |
+
}
|
350 |
+
|
351 |
+
.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before {
|
352 |
+
border-right-color: rgba(0, 0, 0, 0.5);
|
353 |
+
}
|
354 |
+
|
355 |
+
.apexcharts-yaxistooltip.apexcharts-active {
|
356 |
+
opacity: 1;
|
357 |
+
}
|
358 |
+
|
359 |
+
.apexcharts-yaxistooltip-hidden {
|
360 |
+
display: none;
|
361 |
+
}
|
362 |
+
|
363 |
+
.apexcharts-xcrosshairs,
|
364 |
+
.apexcharts-ycrosshairs {
|
365 |
+
pointer-events: none;
|
366 |
+
opacity: 0;
|
367 |
+
transition: 0.15s ease all;
|
368 |
+
}
|
369 |
+
|
370 |
+
.apexcharts-xcrosshairs.apexcharts-active,
|
371 |
+
.apexcharts-ycrosshairs.apexcharts-active {
|
372 |
+
opacity: 1;
|
373 |
+
transition: 0.15s ease all;
|
374 |
+
}
|
375 |
+
|
376 |
+
.apexcharts-ycrosshairs-hidden {
|
377 |
+
opacity: 0;
|
378 |
+
}
|
379 |
+
|
380 |
+
.apexcharts-selection-rect {
|
381 |
+
cursor: move;
|
382 |
+
}
|
383 |
+
|
384 |
+
.svg_select_boundingRect, .svg_select_points_rot {
|
385 |
+
pointer-events: none;
|
386 |
+
opacity: 0;
|
387 |
+
visibility: hidden;
|
388 |
+
}
|
389 |
+
.apexcharts-selection-rect + g .svg_select_boundingRect,
|
390 |
+
.apexcharts-selection-rect + g .svg_select_points_rot {
|
391 |
+
opacity: 0;
|
392 |
+
visibility: hidden;
|
393 |
+
}
|
394 |
+
|
395 |
+
.apexcharts-selection-rect + g .svg_select_points_l,
|
396 |
+
.apexcharts-selection-rect + g .svg_select_points_r {
|
397 |
+
cursor: ew-resize;
|
398 |
+
opacity: 1;
|
399 |
+
visibility: visible;
|
400 |
+
}
|
401 |
+
|
402 |
+
.svg_select_points {
|
403 |
+
fill: #efefef;
|
404 |
+
stroke: #333;
|
405 |
+
rx: 2;
|
406 |
+
}
|
407 |
+
|
408 |
+
.apexcharts-svg.apexcharts-zoomable.hovering-zoom {
|
409 |
+
cursor: crosshair
|
410 |
+
}
|
411 |
+
|
412 |
+
.apexcharts-svg.apexcharts-zoomable.hovering-pan {
|
413 |
+
cursor: move
|
414 |
+
}
|
415 |
+
|
416 |
+
.apexcharts-zoom-icon,
|
417 |
+
.apexcharts-zoomin-icon,
|
418 |
+
.apexcharts-zoomout-icon,
|
419 |
+
.apexcharts-reset-icon,
|
420 |
+
.apexcharts-pan-icon,
|
421 |
+
.apexcharts-selection-icon,
|
422 |
+
.apexcharts-menu-icon,
|
423 |
+
.apexcharts-toolbar-custom-icon {
|
424 |
+
cursor: pointer;
|
425 |
+
width: 20px;
|
426 |
+
height: 20px;
|
427 |
+
line-height: 24px;
|
428 |
+
color: #6E8192;
|
429 |
+
text-align: center;
|
430 |
+
}
|
431 |
+
|
432 |
+
.apexcharts-zoom-icon svg,
|
433 |
+
.apexcharts-zoomin-icon svg,
|
434 |
+
.apexcharts-zoomout-icon svg,
|
435 |
+
.apexcharts-reset-icon svg,
|
436 |
+
.apexcharts-menu-icon svg {
|
437 |
+
fill: #6E8192;
|
438 |
+
}
|
439 |
+
|
440 |
+
.apexcharts-selection-icon svg {
|
441 |
+
fill: #444;
|
442 |
+
transform: scale(0.76)
|
443 |
+
}
|
444 |
+
|
445 |
+
.apexcharts-theme-dark .apexcharts-zoom-icon svg,
|
446 |
+
.apexcharts-theme-dark .apexcharts-zoomin-icon svg,
|
447 |
+
.apexcharts-theme-dark .apexcharts-zoomout-icon svg,
|
448 |
+
.apexcharts-theme-dark .apexcharts-reset-icon svg,
|
449 |
+
.apexcharts-theme-dark .apexcharts-pan-icon svg,
|
450 |
+
.apexcharts-theme-dark .apexcharts-selection-icon svg,
|
451 |
+
.apexcharts-theme-dark .apexcharts-menu-icon svg,
|
452 |
+
.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg {
|
453 |
+
fill: #f3f4f5;
|
454 |
+
}
|
455 |
+
|
456 |
+
.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg,
|
457 |
+
.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,
|
458 |
+
.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg {
|
459 |
+
fill: #008FFB;
|
460 |
+
}
|
461 |
+
|
462 |
+
.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,
|
463 |
+
.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,
|
464 |
+
.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,
|
465 |
+
.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,
|
466 |
+
.apexcharts-theme-light .apexcharts-reset-icon:hover svg,
|
467 |
+
.apexcharts-theme-light .apexcharts-menu-icon:hover svg {
|
468 |
+
fill: #333;
|
469 |
+
}
|
470 |
+
|
471 |
+
.apexcharts-selection-icon,
|
472 |
+
.apexcharts-menu-icon {
|
473 |
+
position: relative;
|
474 |
+
}
|
475 |
+
|
476 |
+
.apexcharts-reset-icon {
|
477 |
+
margin-left: 5px;
|
478 |
+
}
|
479 |
+
|
480 |
+
.apexcharts-zoom-icon,
|
481 |
+
.apexcharts-reset-icon,
|
482 |
+
.apexcharts-menu-icon {
|
483 |
+
transform: scale(0.85);
|
484 |
+
}
|
485 |
+
|
486 |
+
.apexcharts-zoomin-icon,
|
487 |
+
.apexcharts-zoomout-icon {
|
488 |
+
transform: scale(0.7)
|
489 |
+
}
|
490 |
+
|
491 |
+
.apexcharts-zoomout-icon {
|
492 |
+
margin-right: 3px;
|
493 |
+
}
|
494 |
+
|
495 |
+
.apexcharts-pan-icon {
|
496 |
+
transform: scale(0.62);
|
497 |
+
position: relative;
|
498 |
+
left: 1px;
|
499 |
+
top: 0px;
|
500 |
+
}
|
501 |
+
|
502 |
+
.apexcharts-pan-icon svg {
|
503 |
+
fill: #fff;
|
504 |
+
stroke: #6E8192;
|
505 |
+
stroke-width: 2;
|
506 |
+
}
|
507 |
+
|
508 |
+
.apexcharts-pan-icon.apexcharts-selected svg {
|
509 |
+
stroke: #008FFB;
|
510 |
+
}
|
511 |
+
|
512 |
+
.apexcharts-pan-icon:not(.apexcharts-selected):hover svg {
|
513 |
+
stroke: #333;
|
514 |
+
}
|
515 |
+
|
516 |
+
.apexcharts-toolbar {
|
517 |
+
position: absolute;
|
518 |
+
z-index: 11;
|
519 |
+
max-width: 176px;
|
520 |
+
text-align: right;
|
521 |
+
border-radius: 3px;
|
522 |
+
padding: 0px 6px 2px 6px;
|
523 |
+
display: flex;
|
524 |
+
justify-content: space-between;
|
525 |
+
align-items: center;
|
526 |
+
}
|
527 |
+
|
528 |
+
.apexcharts-menu {
|
529 |
+
background: #fff;
|
530 |
+
position: absolute;
|
531 |
+
top: 100%;
|
532 |
+
border: 1px solid #ddd;
|
533 |
+
border-radius: 3px;
|
534 |
+
padding: 3px;
|
535 |
+
right: 10px;
|
536 |
+
opacity: 0;
|
537 |
+
min-width: 110px;
|
538 |
+
transition: 0.15s ease all;
|
539 |
+
pointer-events: none;
|
540 |
+
}
|
541 |
+
|
542 |
+
.apexcharts-menu.apexcharts-menu-open {
|
543 |
+
opacity: 1;
|
544 |
+
pointer-events: all;
|
545 |
+
transition: 0.15s ease all;
|
546 |
+
}
|
547 |
+
|
548 |
+
.apexcharts-menu-item {
|
549 |
+
padding: 6px 7px;
|
550 |
+
font-size: 12px;
|
551 |
+
cursor: pointer;
|
552 |
+
}
|
553 |
+
|
554 |
+
.apexcharts-theme-light .apexcharts-menu-item:hover {
|
555 |
+
background: #eee;
|
556 |
+
}
|
557 |
+
|
558 |
+
.apexcharts-theme-dark .apexcharts-menu {
|
559 |
+
background: rgba(0, 0, 0, 0.7);
|
560 |
+
color: #fff;
|
561 |
+
}
|
562 |
+
|
563 |
+
@media screen and (min-width: 768px) {
|
564 |
+
.apexcharts-canvas:hover .apexcharts-toolbar {
|
565 |
+
opacity: 1;
|
566 |
+
}
|
567 |
+
}
|
568 |
+
|
569 |
+
.apexcharts-datalabel.apexcharts-element-hidden {
|
570 |
+
opacity: 0;
|
571 |
+
}
|
572 |
+
|
573 |
+
.apexcharts-pie-label,
|
574 |
+
.apexcharts-datalabels,
|
575 |
+
.apexcharts-datalabel,
|
576 |
+
.apexcharts-datalabel-label,
|
577 |
+
.apexcharts-datalabel-value {
|
578 |
+
cursor: default;
|
579 |
+
pointer-events: none;
|
580 |
+
}
|
581 |
+
|
582 |
+
.apexcharts-pie-label-delay {
|
583 |
+
opacity: 0;
|
584 |
+
animation-name: opaque;
|
585 |
+
animation-duration: 0.3s;
|
586 |
+
animation-fill-mode: forwards;
|
587 |
+
animation-timing-function: ease;
|
588 |
+
}
|
589 |
+
|
590 |
+
.apexcharts-canvas .apexcharts-element-hidden {
|
591 |
+
opacity: 0;
|
592 |
+
}
|
593 |
+
|
594 |
+
.apexcharts-hide .apexcharts-series-points {
|
595 |
+
opacity: 0;
|
596 |
+
}
|
597 |
+
|
598 |
+
.apexcharts-gridline,
|
599 |
+
.apexcharts-annotation-rect,
|
600 |
+
.apexcharts-tooltip .apexcharts-marker,
|
601 |
+
.apexcharts-area-series .apexcharts-area,
|
602 |
+
.apexcharts-line,
|
603 |
+
.apexcharts-zoom-rect,
|
604 |
+
.apexcharts-toolbar svg,
|
605 |
+
.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
|
606 |
+
.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,
|
607 |
+
.apexcharts-radar-series path,
|
608 |
+
.apexcharts-radar-series polygon {
|
609 |
+
pointer-events: none;
|
610 |
+
}
|
611 |
+
|
612 |
+
|
613 |
+
/* markers */
|
614 |
+
|
615 |
+
.apexcharts-marker {
|
616 |
+
transition: 0.15s ease all;
|
617 |
+
}
|
618 |
+
|
619 |
+
@keyframes opaque {
|
620 |
+
0% {
|
621 |
+
opacity: 0;
|
622 |
+
}
|
623 |
+
100% {
|
624 |
+
opacity: 1;
|
625 |
+
}
|
626 |
+
}
|
627 |
+
|
628 |
+
|
629 |
+
/* Resize generated styles */
|
630 |
+
|
631 |
+
@keyframes resizeanim {
|
632 |
+
from {
|
633 |
+
opacity: 0;
|
634 |
+
}
|
635 |
+
to {
|
636 |
+
opacity: 0;
|
637 |
+
}
|
638 |
+
}
|
639 |
+
|
640 |
+
.resize-triggers {
|
641 |
+
animation: 1ms resizeanim;
|
642 |
+
visibility: hidden;
|
643 |
+
opacity: 0;
|
644 |
+
}
|
645 |
+
|
646 |
+
.resize-triggers,
|
647 |
+
.resize-triggers>div,
|
648 |
+
.contract-trigger:before {
|
649 |
+
content: " ";
|
650 |
+
display: block;
|
651 |
+
position: absolute;
|
652 |
+
top: 0;
|
653 |
+
left: 0;
|
654 |
+
height: 100%;
|
655 |
+
width: 100%;
|
656 |
+
overflow: hidden;
|
657 |
+
}
|
658 |
+
|
659 |
+
.resize-triggers>div {
|
660 |
+
background: #eee;
|
661 |
+
overflow: auto;
|
662 |
+
}
|
663 |
+
|
664 |
+
.contract-trigger:before {
|
665 |
+
width: 200%;
|
666 |
+
height: 200%;
|
667 |
+
}
|
assets/lib/apexcharts/apexcharts.min.js
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*!
|
2 |
+
* ApexCharts v3.26.2
|
3 |
+
* (c) 2018-2021 Juned Chhipa
|
4 |
+
* Released under the MIT License.
|
5 |
+
*/
|
6 |
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).ApexCharts=e()}(this,(function(){"use strict";function t(e){return(t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(e)}function e(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){for(var i=0;i<e.length;i++){var a=e[i];a.enumerable=a.enumerable||!1,a.configurable=!0,"value"in a&&(a.writable=!0),Object.defineProperty(t,a.key,a)}}function a(t,e,a){return e&&i(t.prototype,e),a&&i(t,a),t}function s(t,e,i){return e in t?Object.defineProperty(t,e,{value:i,enumerable:!0,configurable:!0,writable:!0}):t[e]=i,t}function r(t,e){var i=Object.keys(t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(t);e&&(a=a.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),i.push.apply(i,a)}return i}function n(t){for(var e=1;e<arguments.length;e++){var i=null!=arguments[e]?arguments[e]:{};e%2?r(Object(i),!0).forEach((function(e){s(t,e,i[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(i)):r(Object(i)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(i,e))}))}return t}function o(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&h(t,e)}function l(t){return(l=Object.setPrototypeOf?Object.getPrototypeOf:function(t){return t.__proto__||Object.getPrototypeOf(t)})(t)}function h(t,e){return(h=Object.setPrototypeOf||function(t,e){return t.__proto__=e,t})(t,e)}function c(t,e){return!e||"object"!=typeof e&&"function"!=typeof e?function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t):e}function d(t){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Date.prototype.toString.call(Reflect.construct(Date,[],(function(){}))),!0}catch(t){return!1}}();return function(){var i,a=l(t);if(e){var s=l(this).constructor;i=Reflect.construct(a,arguments,s)}else i=a.apply(this,arguments);return c(this,i)}}function g(t){return function(t){if(Array.isArray(t))return u(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return u(t,e);var i=Object.prototype.toString.call(t).slice(8,-1);"Object"===i&&t.constructor&&(i=t.constructor.name);if("Map"===i||"Set"===i)return Array.from(t);if("Arguments"===i||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(i))return u(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var i=0,a=new Array(e);i<e;i++)a[i]=t[i];return a}var f=function(){function i(){e(this,i)}return a(i,[{key:"shadeRGBColor",value:function(t,e){var i=e.split(","),a=t<0?0:255,s=t<0?-1*t:t,r=parseInt(i[0].slice(4),10),n=parseInt(i[1],10),o=parseInt(i[2],10);return"rgb("+(Math.round((a-r)*s)+r)+","+(Math.round((a-n)*s)+n)+","+(Math.round((a-o)*s)+o)+")"}},{key:"shadeHexColor",value:function(t,e){var i=parseInt(e.slice(1),16),a=t<0?0:255,s=t<0?-1*t:t,r=i>>16,n=i>>8&255,o=255&i;return"#"+(16777216+65536*(Math.round((a-r)*s)+r)+256*(Math.round((a-n)*s)+n)+(Math.round((a-o)*s)+o)).toString(16).slice(1)}},{key:"shadeColor",value:function(t,e){return i.isColorHex(e)?this.shadeHexColor(t,e):this.shadeRGBColor(t,e)}}],[{key:"bind",value:function(t,e){return function(){return t.apply(e,arguments)}}},{key:"isObject",value:function(e){return e&&"object"===t(e)&&!Array.isArray(e)&&null!=e}},{key:"listToArray",value:function(t){var e,i=[];for(e=0;e<t.length;e++)i[e]=t[e];return i}},{key:"extend",value:function(t,e){var i=this;"function"!=typeof Object.assign&&(Object.assign=function(t){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var e=Object(t),i=1;i<arguments.length;i++){var a=arguments[i];if(null!=a)for(var s in a)a.hasOwnProperty(s)&&(e[s]=a[s])}return e});var a=Object.assign({},t);return this.isObject(t)&&this.isObject(e)&&Object.keys(e).forEach((function(r){i.isObject(e[r])&&r in t?a[r]=i.extend(t[r],e[r]):Object.assign(a,s({},r,e[r]))})),a}},{key:"extendArray",value:function(t,e){var a=[];return t.map((function(t){a.push(i.extend(e,t))})),t=a}},{key:"monthMod",value:function(t){return t%12}},{key:"clone",value:function(e){if("[object Array]"===Object.prototype.toString.call(e)){for(var i=[],a=0;a<e.length;a++)i[a]=this.clone(e[a]);return i}if("[object Null]"===Object.prototype.toString.call(e))return null;if("[object Date]"===Object.prototype.toString.call(e))return e;if("object"===t(e)){var s={};for(var r in e)e.hasOwnProperty(r)&&(s[r]=this.clone(e[r]));return s}return e}},{key:"log10",value:function(t){return Math.log(t)/Math.LN10}},{key:"roundToBase10",value:function(t){return Math.pow(10,Math.floor(Math.log10(t)))}},{key:"roundToBase",value:function(t,e){return Math.pow(e,Math.floor(Math.log(t)/Math.log(e)))}},{key:"parseNumber",value:function(t){return null===t?t:parseFloat(t)}},{key:"randomId",value:function(){return(Math.random()+1).toString(36).substring(4)}},{key:"noExponents",value:function(t){var e=String(t).split(/[eE]/);if(1===e.length)return e[0];var i="",a=t<0?"-":"",s=e[0].replace(".",""),r=Number(e[1])+1;if(r<0){for(i=a+"0.";r++;)i+="0";return i+s.replace(/^-/,"")}for(r-=s.length;r--;)i+="0";return s+i}},{key:"getDimensions",value:function(t){var e=getComputedStyle(t,null),i=t.clientHeight,a=t.clientWidth;return i-=parseFloat(e.paddingTop)+parseFloat(e.paddingBottom),[a-=parseFloat(e.paddingLeft)+parseFloat(e.paddingRight),i]}},{key:"getBoundingClientRect",value:function(t){var e=t.getBoundingClientRect();return{top:e.top,right:e.right,bottom:e.bottom,left:e.left,width:t.clientWidth,height:t.clientHeight,x:e.left,y:e.top}}},{key:"getLargestStringFromArr",value:function(t){return t.reduce((function(t,e){return Array.isArray(e)&&(e=e.reduce((function(t,e){return t.length>e.length?t:e}))),t.length>e.length?t:e}),0)}},{key:"hexToRgba",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"#999999",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.6;"#"!==t.substring(0,1)&&(t="#999999");var i=t.replace("#","");i=i.match(new RegExp("(.{"+i.length/3+"})","g"));for(var a=0;a<i.length;a++)i[a]=parseInt(1===i[a].length?i[a]+i[a]:i[a],16);return void 0!==e&&i.push(e),"rgba("+i.join(",")+")"}},{key:"getOpacityFromRGBA",value:function(t){return parseFloat(t.replace(/^.*,(.+)\)/,"$1"))}},{key:"rgb2hex",value:function(t){return(t=t.match(/^rgba?[\s+]?\([\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?,[\s+]?(\d+)[\s+]?/i))&&4===t.length?"#"+("0"+parseInt(t[1],10).toString(16)).slice(-2)+("0"+parseInt(t[2],10).toString(16)).slice(-2)+("0"+parseInt(t[3],10).toString(16)).slice(-2):""}},{key:"isColorHex",value:function(t){return/(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)|(^#[0-9A-F]{8}$)/i.test(t)}},{key:"getPolygonPos",value:function(t,e){for(var i=[],a=2*Math.PI/e,s=0;s<e;s++){var r={};r.x=t*Math.sin(s*a),r.y=-t*Math.cos(s*a),i.push(r)}return i}},{key:"polarToCartesian",value:function(t,e,i,a){var s=(a-90)*Math.PI/180;return{x:t+i*Math.cos(s),y:e+i*Math.sin(s)}}},{key:"escapeString",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"x",i=t.toString().slice();return i=i.replace(/[` ~!@#$%^&*()_|+\-=?;:'",.<>{}[\]\\/]/gi,e)}},{key:"negToZero",value:function(t){return t<0?0:t}},{key:"moveIndexInArray",value:function(t,e,i){if(i>=t.length)for(var a=i-t.length+1;a--;)t.push(void 0);return t.splice(i,0,t.splice(e,1)[0]),t}},{key:"extractNumber",value:function(t){return parseFloat(t.replace(/[^\d.]*/g,""))}},{key:"findAncestor",value:function(t,e){for(;(t=t.parentElement)&&!t.classList.contains(e););return t}},{key:"setELstyles",value:function(t,e){for(var i in e)e.hasOwnProperty(i)&&(t.style.key=e[i])}},{key:"isNumber",value:function(t){return!isNaN(t)&&parseFloat(Number(t))===t&&!isNaN(parseInt(t,10))}},{key:"isFloat",value:function(t){return Number(t)===t&&t%1!=0}},{key:"isSafari",value:function(){return/^((?!chrome|android).)*safari/i.test(navigator.userAgent)}},{key:"isFirefox",value:function(){return navigator.userAgent.toLowerCase().indexOf("firefox")>-1}},{key:"isIE11",value:function(){if(-1!==window.navigator.userAgent.indexOf("MSIE")||window.navigator.appVersion.indexOf("Trident/")>-1)return!0}},{key:"isIE",value:function(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);if(t.indexOf("Trident/")>0){var i=t.indexOf("rv:");return parseInt(t.substring(i+3,t.indexOf(".",i)),10)}var a=t.indexOf("Edge/");return a>0&&parseInt(t.substring(a+5,t.indexOf(".",a)),10)}}]),i}(),p=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.setEasingFunctions()}return a(t,[{key:"setEasingFunctions",value:function(){var t;if(!this.w.globals.easing){switch(this.w.config.chart.animations.easing){case"linear":t="-";break;case"easein":t="<";break;case"easeout":t=">";break;case"easeinout":t="<>";break;case"swing":t=function(t){var e=1.70158;return(t-=1)*t*((e+1)*t+e)+1};break;case"bounce":t=function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375};break;case"elastic":t=function(t){return t===!!t?t:Math.pow(2,-10*t)*Math.sin((t-.075)*(2*Math.PI)/.3)+1};break;default:t="<>"}this.w.globals.easing=t}}},{key:"animateLine",value:function(t,e,i,a){t.attr(e).animate(a).attr(i)}},{key:"animateMarker",value:function(t,e,i,a,s,r){e||(e=0),t.attr({r:e,width:e,height:e}).animate(a,s).attr({r:i,width:i.width,height:i.height}).afterAll((function(){r()}))}},{key:"animateCircle",value:function(t,e,i,a,s){t.attr({r:e.r,cx:e.cx,cy:e.cy}).animate(a,s).attr({r:i.r,cx:i.cx,cy:i.cy})}},{key:"animateRect",value:function(t,e,i,a,s){t.attr(e).animate(a).attr(i).afterAll((function(){return s()}))}},{key:"animatePathsGradually",value:function(t){var e=t.el,i=t.realIndex,a=t.j,s=t.fill,r=t.pathFrom,n=t.pathTo,o=t.speed,l=t.delay,h=this.w,c=0;h.config.chart.animations.animateGradually.enabled&&(c=h.config.chart.animations.animateGradually.delay),h.config.chart.animations.dynamicAnimation.enabled&&h.globals.dataChanged&&"bar"!==h.config.chart.type&&(c=0),this.morphSVG(e,i,a,"line"!==h.config.chart.type||h.globals.comboCharts?s:"stroke",r,n,o,l*c)}},{key:"showDelayedElements",value:function(){this.w.globals.delayedElements.forEach((function(t){t.el.classList.remove("apexcharts-element-hidden")}))}},{key:"animationCompleted",value:function(t){var e=this.w;e.globals.animationEnded||(e.globals.animationEnded=!0,this.showDelayedElements(),"function"==typeof e.config.chart.events.animationEnd&&e.config.chart.events.animationEnd(this.ctx,{el:t,w:e}))}},{key:"morphSVG",value:function(t,e,i,a,s,r,n,o){var l=this,h=this.w;s||(s=t.attr("pathFrom")),r||(r=t.attr("pathTo"));var c=function(t){return"radar"===h.config.chart.type&&(n=1),"M 0 ".concat(h.globals.gridHeight)};(!s||s.indexOf("undefined")>-1||s.indexOf("NaN")>-1)&&(s=c()),(!r||r.indexOf("undefined")>-1||r.indexOf("NaN")>-1)&&(r=c()),h.globals.shouldAnimate||(n=1),t.plot(s).animate(1,h.globals.easing,o).plot(s).animate(n,h.globals.easing,o).plot(r).afterAll((function(){f.isNumber(i)?i===h.globals.series[h.globals.maxValsInArrayIndex].length-2&&h.globals.shouldAnimate&&l.animationCompleted(t):"none"!==a&&h.globals.shouldAnimate&&(!h.globals.comboCharts&&e===h.globals.series.length-1||h.globals.comboCharts)&&l.animationCompleted(t),l.showDelayedElements()}))}}]),t}(),x=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"getDefaultFilter",value:function(t,e){var i=this.w;t.unfilter(!0),(new window.SVG.Filter).size("120%","180%","-5%","-40%"),"none"!==i.config.states.normal.filter?this.applyFilter(t,e,i.config.states.normal.filter.type,i.config.states.normal.filter.value):i.config.chart.dropShadow.enabled&&this.dropShadow(t,i.config.chart.dropShadow,e)}},{key:"addNormalFilter",value:function(t,e){var i=this.w;i.config.chart.dropShadow.enabled&&!t.node.classList.contains("apexcharts-marker")&&this.dropShadow(t,i.config.chart.dropShadow,e)}},{key:"addLightenFilter",value:function(t,e,i){var a=this,s=this.w,r=i.intensity;t.unfilter(!0);new window.SVG.Filter;t.filter((function(t){var i=s.config.chart.dropShadow;(i.enabled?a.addShadow(t,e,i):t).componentTransfer({rgb:{type:"linear",slope:1.5,intercept:r}})})),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)}},{key:"addDarkenFilter",value:function(t,e,i){var a=this,s=this.w,r=i.intensity;t.unfilter(!0);new window.SVG.Filter;t.filter((function(t){var i=s.config.chart.dropShadow;(i.enabled?a.addShadow(t,e,i):t).componentTransfer({rgb:{type:"linear",slope:r}})})),t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)}},{key:"applyFilter",value:function(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:.5;switch(i){case"none":this.addNormalFilter(t,e);break;case"lighten":this.addLightenFilter(t,e,{intensity:a});break;case"darken":this.addDarkenFilter(t,e,{intensity:a})}}},{key:"addShadow",value:function(t,e,i){var a=i.blur,s=i.top,r=i.left,n=i.color,o=i.opacity,l=t.flood(Array.isArray(n)?n[e]:n,o).composite(t.sourceAlpha,"in").offset(r,s).gaussianBlur(a).merge(t.source);return t.blend(t.source,l)}},{key:"dropShadow",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,a=e.top,s=e.left,r=e.blur,n=e.color,o=e.opacity,l=e.noUserSpaceOnUse,h=this.w;return t.unfilter(!0),f.isIE()&&"radialBar"===h.config.chart.type||(n=Array.isArray(n)?n[i]:n,t.filter((function(t){var e=null;e=f.isSafari()||f.isFirefox()||f.isIE()?t.flood(n,o).composite(t.sourceAlpha,"in").offset(s,a).gaussianBlur(r):t.flood(n,o).composite(t.sourceAlpha,"in").offset(s,a).gaussianBlur(r).merge(t.source),t.blend(t.source,e)})),l||t.filterer.node.setAttribute("filterUnits","userSpaceOnUse"),this._scaleFilterSize(t.filterer.node)),t}},{key:"setSelectionFilter",value:function(t,e,i){var a=this.w;if(void 0!==a.globals.selectedDataPoints[e]&&a.globals.selectedDataPoints[e].indexOf(i)>-1){t.node.setAttribute("selected",!0);var s=a.config.states.active.filter;"none"!==s&&this.applyFilter(t,e,s.type,s.value)}}},{key:"_scaleFilterSize",value:function(t){!function(e){for(var i in e)e.hasOwnProperty(i)&&t.setAttribute(i,e[i])}({width:"200%",height:"200%",x:"-50%",y:"-50%"})}}]),t}(),b=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawLine",value:function(t,e,i,a){var s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"#a8a8a8",r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0,n=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,o=this.w,l=o.globals.dom.Paper.line().attr({x1:t,y1:e,x2:i,y2:a,stroke:s,"stroke-dasharray":r,"stroke-width":n});return l}},{key:"drawRect",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"#fefefe",n=arguments.length>6&&void 0!==arguments[6]?arguments[6]:1,o=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,l=arguments.length>8&&void 0!==arguments[8]?arguments[8]:null,h=arguments.length>9&&void 0!==arguments[9]?arguments[9]:0,c=this.w,d=c.globals.dom.Paper.rect();return d.attr({x:t,y:e,width:i>0?i:0,height:a>0?a:0,rx:s,ry:s,opacity:n,"stroke-width":null!==o?o:0,stroke:null!==l?l:"none","stroke-dasharray":h}),d.node.setAttribute("fill",r),d}},{key:"drawPolygon",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"#e1e1e1",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"none",s=this.w,r=s.globals.dom.Paper.polygon(t).attr({fill:a,stroke:e,"stroke-width":i});return r}},{key:"drawCircle",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;t<0&&(t=0);var a=i.globals.dom.Paper.circle(2*t);return null!==e&&a.attr(e),a}},{key:"drawPath",value:function(t){var e=t.d,i=void 0===e?"":e,a=t.stroke,s=void 0===a?"#a8a8a8":a,r=t.strokeWidth,n=void 0===r?1:r,o=t.fill,l=t.fillOpacity,h=void 0===l?1:l,c=t.strokeOpacity,d=void 0===c?1:c,g=t.classes,u=t.strokeLinecap,f=void 0===u?null:u,p=t.strokeDashArray,x=void 0===p?0:p,b=this.w;return null===f&&(f=b.config.stroke.lineCap),(i.indexOf("undefined")>-1||i.indexOf("NaN")>-1)&&(i="M 0 ".concat(b.globals.gridHeight)),b.globals.dom.Paper.path(i).attr({fill:o,"fill-opacity":h,stroke:s,"stroke-opacity":d,"stroke-linecap":f,"stroke-width":n,"stroke-dasharray":x,class:g})}},{key:"group",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=e.globals.dom.Paper.group();return null!==t&&i.attr(t),i}},{key:"move",value:function(t,e){var i=["M",t,e].join(" ");return i}},{key:"line",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=null;return null===i?a=["L",t,e].join(" "):"H"===i?a=["H",t].join(" "):"V"===i&&(a=["V",e].join(" ")),a}},{key:"curve",value:function(t,e,i,a,s,r){var n=["C",t,e,i,a,s,r].join(" ");return n}},{key:"quadraticCurve",value:function(t,e,i,a){return["Q",t,e,i,a].join(" ")}},{key:"arc",value:function(t,e,i,a,s,r,n){var o=arguments.length>7&&void 0!==arguments[7]&&arguments[7],l="A";o&&(l="a");var h=[l,t,e,i,a,s,r,n].join(" ");return h}},{key:"renderPaths",value:function(t){var e,i=t.j,a=t.realIndex,s=t.pathFrom,r=t.pathTo,o=t.stroke,l=t.strokeWidth,h=t.strokeLinecap,c=t.fill,d=t.animationDelay,g=t.initialSpeed,u=t.dataChangeSpeed,f=t.className,b=t.shouldClipToGrid,m=void 0===b||b,v=t.bindEventsOnPaths,y=void 0===v||v,w=t.drawShadow,k=void 0===w||w,A=this.w,S=new x(this.ctx),C=new p(this.ctx),L=this.w.config.chart.animations.enabled,P=L&&this.w.config.chart.animations.dynamicAnimation.enabled,T=!!(L&&!A.globals.resized||P&&A.globals.dataChanged&&A.globals.shouldAnimate);T?e=s:(e=r,A.globals.animationEnded=!0);var z=A.config.stroke.dashArray,I=0;I=Array.isArray(z)?z[a]:A.config.stroke.dashArray;var M=this.drawPath({d:e,stroke:o,strokeWidth:l,fill:c,fillOpacity:1,classes:f,strokeLinecap:h,strokeDashArray:I});if(M.attr("index",a),m&&M.attr({"clip-path":"url(#gridRectMask".concat(A.globals.cuid,")")}),"none"!==A.config.states.normal.filter.type)S.getDefaultFilter(M,a);else if(A.config.chart.dropShadow.enabled&&k&&(!A.config.chart.dropShadow.enabledOnSeries||A.config.chart.dropShadow.enabledOnSeries&&-1!==A.config.chart.dropShadow.enabledOnSeries.indexOf(a))){var E=A.config.chart.dropShadow;S.dropShadow(M,E,a)}y&&(M.node.addEventListener("mouseenter",this.pathMouseEnter.bind(this,M)),M.node.addEventListener("mouseleave",this.pathMouseLeave.bind(this,M)),M.node.addEventListener("mousedown",this.pathMouseDown.bind(this,M))),M.attr({pathTo:r,pathFrom:s});var X={el:M,j:i,realIndex:a,pathFrom:s,pathTo:r,fill:c,strokeWidth:l,delay:d};return!L||A.globals.resized||A.globals.dataChanged?!A.globals.resized&&A.globals.dataChanged||C.showDelayedElements():C.animatePathsGradually(n(n({},X),{},{speed:g})),A.globals.dataChanged&&P&&T&&C.animatePathsGradually(n(n({},X),{},{speed:u})),M}},{key:"drawPattern",value:function(t,e,i){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"#a8a8a8",s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,r=this.w,n=r.globals.dom.Paper.pattern(e,i,(function(r){"horizontalLines"===t?r.line(0,0,i,0).stroke({color:a,width:s+1}):"verticalLines"===t?r.line(0,0,0,e).stroke({color:a,width:s+1}):"slantedLines"===t?r.line(0,0,e,i).stroke({color:a,width:s}):"squares"===t?r.rect(e,i).fill("none").stroke({color:a,width:s}):"circles"===t&&r.circle(e).fill("none").stroke({color:a,width:s})}));return n}},{key:"drawGradient",value:function(t,e,i,a,s){var r,n=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,o=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null,l=arguments.length>7&&void 0!==arguments[7]?arguments[7]:null,h=arguments.length>8&&void 0!==arguments[8]?arguments[8]:0,c=this.w;e.length<9&&0===e.indexOf("#")&&(e=f.hexToRgba(e,a)),i.length<9&&0===i.indexOf("#")&&(i=f.hexToRgba(i,s));var d=0,g=1,u=1,p=null;null!==o&&(d=void 0!==o[0]?o[0]/100:0,g=void 0!==o[1]?o[1]/100:1,u=void 0!==o[2]?o[2]/100:1,p=void 0!==o[3]?o[3]/100:null);var x=!("donut"!==c.config.chart.type&&"pie"!==c.config.chart.type&&"polarArea"!==c.config.chart.type&&"bubble"!==c.config.chart.type);if(r=null===l||0===l.length?c.globals.dom.Paper.gradient(x?"radial":"linear",(function(t){t.at(d,e,a),t.at(g,i,s),t.at(u,i,s),null!==p&&t.at(p,e,a)})):c.globals.dom.Paper.gradient(x?"radial":"linear",(function(t){(Array.isArray(l[h])?l[h]:l).forEach((function(e){t.at(e.offset/100,e.color,e.opacity)}))})),x){var b=c.globals.gridWidth/2,m=c.globals.gridHeight/2;"bubble"!==c.config.chart.type?r.attr({gradientUnits:"userSpaceOnUse",cx:b,cy:m,r:n}):r.attr({cx:.5,cy:.5,r:.8,fx:.2,fy:.2})}else"vertical"===t?r.from(0,0).to(0,1):"diagonal"===t?r.from(0,0).to(1,1):"horizontal"===t?r.from(0,1).to(1,1):"diagonal2"===t&&r.from(1,0).to(0,1);return r}},{key:"drawText",value:function(t){var e,i=t.x,a=t.y,s=t.text,r=t.textAnchor,n=t.fontSize,o=t.fontFamily,l=t.fontWeight,h=t.foreColor,c=t.opacity,d=t.cssClass,g=void 0===d?"":d,u=t.isPlainText,f=void 0===u||u,p=this.w;return void 0===s&&(s=""),r||(r="start"),h&&h.length||(h=p.config.chart.foreColor),o=o||p.config.chart.fontFamily,l=l||"regular",(e=Array.isArray(s)?p.globals.dom.Paper.text((function(t){for(var e=0;e<s.length;e++)0===e?t.tspan(s[e]):t.tspan(s[e]).newLine()})):f?p.globals.dom.Paper.plain(s):p.globals.dom.Paper.text((function(t){return t.tspan(s)}))).attr({x:i,y:a,"text-anchor":r,"dominant-baseline":"auto","font-size":n,"font-family":o,"font-weight":l,fill:h,class:"apexcharts-text "+g}),e.node.style.fontFamily=o,e.node.style.opacity=c,e}},{key:"drawMarker",value:function(t,e,i){t=t||0;var a=i.pSize||0,s=null;if("square"===i.shape||"rect"===i.shape){var r=void 0===i.pRadius?a/2:i.pRadius;null!==e&&a||(a=0,r=0);var n=1.2*a+r,o=this.drawRect(n,n,n,n,r);o.attr({x:t-n/2,y:e-n/2,cx:t,cy:e,class:i.class?i.class:"",fill:i.pointFillColor,"fill-opacity":i.pointFillOpacity?i.pointFillOpacity:1,stroke:i.pointStrokeColor,"stroke-width":i.pointStrokeWidth?i.pointStrokeWidth:0,"stroke-opacity":i.pointStrokeOpacity?i.pointStrokeOpacity:1}),s=o}else"circle"!==i.shape&&i.shape||(f.isNumber(e)||(a=0,e=0),s=this.drawCircle(a,{cx:t,cy:e,class:i.class?i.class:"",stroke:i.pointStrokeColor,fill:i.pointFillColor,"fill-opacity":i.pointFillOpacity?i.pointFillOpacity:1,"stroke-width":i.pointStrokeWidth?i.pointStrokeWidth:0,"stroke-opacity":i.pointStrokeOpacity?i.pointStrokeOpacity:1}));return s}},{key:"pathMouseEnter",value:function(t,e){var i=this.w,a=new x(this.ctx),s=parseInt(t.node.getAttribute("index"),10),r=parseInt(t.node.getAttribute("j"),10);if("function"==typeof i.config.chart.events.dataPointMouseEnter&&i.config.chart.events.dataPointMouseEnter(e,this.ctx,{seriesIndex:s,dataPointIndex:r,w:i}),this.ctx.events.fireEvent("dataPointMouseEnter",[e,this.ctx,{seriesIndex:s,dataPointIndex:r,w:i}]),("none"===i.config.states.active.filter.type||"true"!==t.node.getAttribute("selected"))&&"none"!==i.config.states.hover.filter.type&&"none"!==i.config.states.active.filter.type&&!i.globals.isTouchDevice){var n=i.config.states.hover.filter;a.applyFilter(t,s,n.type,n.value)}}},{key:"pathMouseLeave",value:function(t,e){var i=this.w,a=new x(this.ctx),s=parseInt(t.node.getAttribute("index"),10),r=parseInt(t.node.getAttribute("j"),10);"function"==typeof i.config.chart.events.dataPointMouseLeave&&i.config.chart.events.dataPointMouseLeave(e,this.ctx,{seriesIndex:s,dataPointIndex:r,w:i}),this.ctx.events.fireEvent("dataPointMouseLeave",[e,this.ctx,{seriesIndex:s,dataPointIndex:r,w:i}]),"none"!==i.config.states.active.filter.type&&"true"===t.node.getAttribute("selected")||"none"!==i.config.states.hover.filter.type&&a.getDefaultFilter(t,s)}},{key:"pathMouseDown",value:function(t,e){var i=this.w,a=new x(this.ctx),s=parseInt(t.node.getAttribute("index"),10),r=parseInt(t.node.getAttribute("j"),10),n="false";if("true"===t.node.getAttribute("selected")){if(t.node.setAttribute("selected","false"),i.globals.selectedDataPoints[s].indexOf(r)>-1){var o=i.globals.selectedDataPoints[s].indexOf(r);i.globals.selectedDataPoints[s].splice(o,1)}}else{if(!i.config.states.active.allowMultipleDataPointsSelection&&i.globals.selectedDataPoints.length>0){i.globals.selectedDataPoints=[];var l=i.globals.dom.Paper.select(".apexcharts-series path").members,h=i.globals.dom.Paper.select(".apexcharts-series circle, .apexcharts-series rect").members,c=function(t){Array.prototype.forEach.call(t,(function(t){t.node.setAttribute("selected","false"),a.getDefaultFilter(t,s)}))};c(l),c(h)}t.node.setAttribute("selected","true"),n="true",void 0===i.globals.selectedDataPoints[s]&&(i.globals.selectedDataPoints[s]=[]),i.globals.selectedDataPoints[s].push(r)}if("true"===n){var d=i.config.states.active.filter;"none"!==d&&a.applyFilter(t,s,d.type,d.value)}else"none"!==i.config.states.active.filter.type&&a.getDefaultFilter(t,s);"function"==typeof i.config.chart.events.dataPointSelection&&i.config.chart.events.dataPointSelection(e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:s,dataPointIndex:r,w:i}),e&&this.ctx.events.fireEvent("dataPointSelection",[e,this.ctx,{selectedDataPoints:i.globals.selectedDataPoints,seriesIndex:s,dataPointIndex:r,w:i}])}},{key:"rotateAroundCenter",value:function(t){var e=t.getBBox();return{x:e.x+e.width/2,y:e.y+e.height/2}}},{key:"getTextRects",value:function(t,e,i,a){var s=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],r=this.w,n=this.drawText({x:-200,y:-200,text:t,textAnchor:"start",fontSize:e,fontFamily:i,foreColor:"#fff",opacity:0});a&&n.attr("transform",a),r.globals.dom.Paper.add(n);var o=n.bbox();return s||(o=n.node.getBoundingClientRect()),n.remove(),{width:o.width,height:o.height}}},{key:"placeTextWithEllipsis",value:function(t,e,i){if("function"==typeof t.getComputedTextLength&&(t.textContent=e,e.length>0&&t.getComputedTextLength()>=i/1.1)){for(var a=e.length-3;a>0;a-=3)if(t.getSubStringLength(0,a)<=i/1.1)return void(t.textContent=e.substring(0,a)+"...");t.textContent="."}}}],[{key:"setAttrs",value:function(t,e){for(var i in e)e.hasOwnProperty(i)&&t.setAttribute(i,e[i])}}]),t}(),m=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i}return a(t,[{key:"setOrientations",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.w;if("vertical"===t.label.orientation){var a=null!==e?e:0,s=i.globals.dom.baseEl.querySelector(".apexcharts-xaxis-annotations .apexcharts-xaxis-annotation-label[rel='".concat(a,"']"));if(null!==s){var r=s.getBoundingClientRect();s.setAttribute("x",parseFloat(s.getAttribute("x"))-r.height+4),"top"===t.label.position?s.setAttribute("y",parseFloat(s.getAttribute("y"))+r.width):s.setAttribute("y",parseFloat(s.getAttribute("y"))-r.width);var n=this.annoCtx.graphics.rotateAroundCenter(s),o=n.x,l=n.y;s.setAttribute("transform","rotate(-90 ".concat(o," ").concat(l,")"))}}}},{key:"addBackgroundToAnno",value:function(t,e){var i=this.w;if(!t||!e.label.text||e.label.text&&!e.label.text.trim())return null;var a=i.globals.dom.baseEl.querySelector(".apexcharts-grid").getBoundingClientRect(),s=t.getBoundingClientRect(),r=e.label.style.padding.left,n=e.label.style.padding.right,o=e.label.style.padding.top,l=e.label.style.padding.bottom;"vertical"===e.label.orientation&&(o=e.label.style.padding.left,l=e.label.style.padding.right,r=e.label.style.padding.top,n=e.label.style.padding.bottom);var h=s.left-a.left-r,c=s.top-a.top-o,d=this.annoCtx.graphics.drawRect(h-i.globals.barPadForNumericAxis,c,s.width+r+n,s.height+o+l,e.label.borderRadius,e.label.style.background,1,e.label.borderWidth,e.label.borderColor,0);return e.id&&d.node.classList.add(e.id),d}},{key:"annotationsBackground",value:function(){var t=this,e=this.w,i=function(i,a,s){var r=e.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations .apexcharts-").concat(s,"-annotation-label[rel='").concat(a,"']"));if(r){var n=r.parentNode,o=t.addBackgroundToAnno(r,i);o&&n.insertBefore(o.node,r)}};e.config.annotations.xaxis.map((function(t,e){i(t,e,"xaxis")})),e.config.annotations.yaxis.map((function(t,e){i(t,e,"yaxis")})),e.config.annotations.points.map((function(t,e){i(t,e,"point")}))}},{key:"getStringX",value:function(t){var e=this.w,i=t;e.config.xaxis.convertedCatToNumeric&&e.globals.categoryLabels.length&&(t=e.globals.categoryLabels.indexOf(t)+1);var a=e.globals.labels.indexOf(t),s=e.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g text:nth-child("+(a+1)+")");return s&&(i=parseFloat(s.getAttribute("x"))),i}}]),t}(),v=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i,this.invertAxis=this.annoCtx.invertAxis}return a(t,[{key:"addXaxisAnnotation",value:function(t,e,i){var a=this.w,s=this.invertAxis?a.globals.minY:a.globals.minX,r=this.invertAxis?a.globals.maxY:a.globals.maxX,n=this.invertAxis?a.globals.yRange[0]:a.globals.xRange,o=(t.x-s)/(n/a.globals.gridWidth);this.annoCtx.inversedReversedAxis&&(o=(r-t.x)/(n/a.globals.gridWidth));var l=t.label.text;"category"!==a.config.xaxis.type&&!a.config.xaxis.convertedCatToNumeric||this.invertAxis||a.globals.dataFormatXNumeric||(o=this.annoCtx.helpers.getStringX(t.x));var h=t.strokeDashArray;if(f.isNumber(o)){if(null===t.x2||void 0===t.x2){var c=this.annoCtx.graphics.drawLine(o+t.offsetX,0+t.offsetY,o+t.offsetX,a.globals.gridHeight+t.offsetY,t.borderColor,h,t.borderWidth);e.appendChild(c.node),t.id&&c.node.classList.add(t.id)}else{var d=(t.x2-s)/(n/a.globals.gridWidth);if(this.annoCtx.inversedReversedAxis&&(d=(r-t.x2)/(n/a.globals.gridWidth)),"category"!==a.config.xaxis.type&&!a.config.xaxis.convertedCatToNumeric||this.invertAxis||a.globals.dataFormatXNumeric||(d=this.annoCtx.helpers.getStringX(t.x2)),d<o){var g=o;o=d,d=g}var u=this.annoCtx.graphics.drawRect(o+t.offsetX,0+t.offsetY,d-o,a.globals.gridHeight+t.offsetY,0,t.fillColor,t.opacity,1,t.borderColor,h);u.node.classList.add("apexcharts-annotation-rect"),u.attr("clip-path","url(#gridRectMask".concat(a.globals.cuid,")")),e.appendChild(u.node),t.id&&u.node.classList.add(t.id)}var p="top"===t.label.position?4:a.globals.gridHeight,x=this.annoCtx.graphics.getTextRects(l,parseFloat(t.label.style.fontSize)),b=this.annoCtx.graphics.drawText({x:o+t.label.offsetX,y:p+t.label.offsetY-("vertical"===t.label.orientation?"top"===t.label.position?x.width/2-12:-x.width/2:0),text:l,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-xaxis-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});b.attr({rel:i}),e.appendChild(b.node),this.annoCtx.helpers.setOrientations(t,i)}}},{key:"drawXAxisAnnotations",value:function(){var t=this,e=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-xaxis-annotations"});return e.config.annotations.xaxis.map((function(e,a){t.addXaxisAnnotation(e,i.node,a)})),i}}]),t}(),y=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"getStackedSeriesTotals",value:function(){var t=this.w,e=[];if(0===t.globals.series.length)return e;for(var i=0;i<t.globals.series[t.globals.maxValsInArrayIndex].length;i++){for(var a=0,s=0;s<t.globals.series.length;s++)void 0!==t.globals.series[s][i]&&(a+=t.globals.series[s][i]);e.push(a)}return t.globals.stackedSeriesTotals=e,e}},{key:"getSeriesTotalByIndex",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return null===t?this.w.config.series.reduce((function(t,e){return t+e}),0):this.w.globals.series[t].reduce((function(t,e){return t+e}),0)}},{key:"isSeriesNull",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return 0===(null===t?this.w.config.series.filter((function(t){return null!==t})):this.w.config.series[t].data.filter((function(t){return null!==t}))).length}},{key:"seriesHaveSameValues",value:function(t){return this.w.globals.series[t].every((function(t,e,i){return t===i[0]}))}},{key:"getCategoryLabels",value:function(t){var e=this.w,i=t.slice();return e.config.xaxis.convertedCatToNumeric&&(i=t.map((function(t,i){return e.config.xaxis.labels.formatter(t-e.globals.minX+1)}))),i}},{key:"getLargestSeries",value:function(){var t=this.w;t.globals.maxValsInArrayIndex=t.globals.series.map((function(t){return t.length})).indexOf(Math.max.apply(Math,t.globals.series.map((function(t){return t.length}))))}},{key:"getLargestMarkerSize",value:function(){var t=this.w,e=0;return t.globals.markers.size.forEach((function(t){e=Math.max(e,t)})),t.globals.markers.largestSize=e,e}},{key:"getSeriesTotals",value:function(){var t=this.w;t.globals.seriesTotals=t.globals.series.map((function(t,e){var i=0;if(Array.isArray(t))for(var a=0;a<t.length;a++)i+=t[a];else i+=t;return i}))}},{key:"getSeriesTotalsXRange",value:function(t,e){var i=this.w;return i.globals.series.map((function(a,s){for(var r=0,n=0;n<a.length;n++)i.globals.seriesX[s][n]>t&&i.globals.seriesX[s][n]<e&&(r+=a[n]);return r}))}},{key:"getPercentSeries",value:function(){var t=this.w;t.globals.seriesPercent=t.globals.series.map((function(e,i){var a=[];if(Array.isArray(e))for(var s=0;s<e.length;s++){var r=t.globals.stackedSeriesTotals[s],n=0;r&&(n=100*e[s]/r),a.push(n)}else{var o=100*e/t.globals.seriesTotals.reduce((function(t,e){return t+e}),0);a.push(o)}return a}))}},{key:"getCalculatedRatios",value:function(){var t,e,i,a,s=this.w.globals,r=[],n=0,o=[],l=.1,h=0;if(s.yRange=[],s.isMultipleYAxis)for(var c=0;c<s.minYArr.length;c++)s.yRange.push(Math.abs(s.minYArr[c]-s.maxYArr[c])),o.push(0);else s.yRange.push(Math.abs(s.minY-s.maxY));s.xRange=Math.abs(s.maxX-s.minX),s.zRange=Math.abs(s.maxZ-s.minZ);for(var d=0;d<s.yRange.length;d++)r.push(s.yRange[d]/s.gridHeight);if(e=s.xRange/s.gridWidth,i=Math.abs(s.initialMaxX-s.initialMinX)/s.gridWidth,t=s.yRange/s.gridWidth,a=s.xRange/s.gridHeight,(n=s.zRange/s.gridHeight*16)||(n=1),s.minY!==Number.MIN_VALUE&&0!==Math.abs(s.minY)&&(s.hasNegs=!0),s.isMultipleYAxis){o=[];for(var g=0;g<r.length;g++)o.push(-s.minYArr[g]/r[g])}else o.push(-s.minY/r[0]),s.minY!==Number.MIN_VALUE&&0!==Math.abs(s.minY)&&(l=-s.minY/t,h=s.minX/e);return{yRatio:r,invertedYRatio:t,zRatio:n,xRatio:e,initialXRatio:i,invertedXRatio:a,baseLineInvertedY:l,baseLineY:o,baseLineX:h}}},{key:"getLogSeries",value:function(t){var e=this,i=this.w;return i.globals.seriesLog=t.map((function(t,a){return i.config.yaxis[a]&&i.config.yaxis[a].logarithmic?t.map((function(t){return null===t?null:e.getLogVal(t,a)})):t})),i.globals.invalidLogScale?t:i.globals.seriesLog}},{key:"getLogVal",value:function(t,e){var i=this.w;return(Math.log(t)-Math.log(i.globals.minYArr[e]))/(Math.log(i.globals.maxYArr[e])-Math.log(i.globals.minYArr[e]))}},{key:"getLogYRatios",value:function(t){var e=this,i=this.w,a=this.w.globals;return a.yLogRatio=t.slice(),a.logYRange=a.yRange.map((function(t,s){if(i.config.yaxis[s]&&e.w.config.yaxis[s].logarithmic){var r,n=-Number.MAX_VALUE,o=Number.MIN_VALUE;return a.seriesLog.forEach((function(t,e){t.forEach((function(t){i.config.yaxis[e]&&i.config.yaxis[e].logarithmic&&(n=Math.max(t,n),o=Math.min(t,o))}))})),r=Math.pow(a.yRange[s],Math.abs(o-n)/a.yRange[s]),a.yLogRatio[s]=r/a.gridHeight,r}})),a.invalidLogScale?t.slice():a.yLogRatio}}],[{key:"checkComboSeries",value:function(t){var e=!1,i=0,a=0;return t.length&&void 0!==t[0].type&&t.forEach((function(t){"bar"!==t.type&&"column"!==t.type&&"candlestick"!==t.type&&"boxPlot"!==t.type||i++,void 0!==t.type&&a++})),a>1&&(e=!0),{comboBarCount:i,comboCharts:e}}},{key:"extendArrayProps",value:function(t,e,i){return e.yaxis&&(e=t.extendYAxis(e,i)),e.annotations&&(e.annotations.yaxis&&(e=t.extendYAxisAnnotations(e)),e.annotations.xaxis&&(e=t.extendXAxisAnnotations(e)),e.annotations.points&&(e=t.extendPointAnnotations(e))),e}}]),t}(),w=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i}return a(t,[{key:"addYaxisAnnotation",value:function(t,e,i){var a,s=this.w,r=t.strokeDashArray,n=this._getY1Y2("y1",t),o=t.label.text;if(null===t.y2||void 0===t.y2){var l=this.annoCtx.graphics.drawLine(0+t.offsetX,n+t.offsetY,this._getYAxisAnnotationWidth(t),n+t.offsetY,t.borderColor,r,t.borderWidth);e.appendChild(l.node),t.id&&l.node.classList.add(t.id)}else{if((a=this._getY1Y2("y2",t))>n){var h=n;n=a,a=h}var c=this.annoCtx.graphics.drawRect(0+t.offsetX,a+t.offsetY,this._getYAxisAnnotationWidth(t),n-a,0,t.fillColor,t.opacity,1,t.borderColor,r);c.node.classList.add("apexcharts-annotation-rect"),c.attr("clip-path","url(#gridRectMask".concat(s.globals.cuid,")")),e.appendChild(c.node),t.id&&c.node.classList.add(t.id)}var d="right"===t.label.position?s.globals.gridWidth:0,g=this.annoCtx.graphics.drawText({x:d+t.label.offsetX,y:(a||n)+t.label.offsetY-3,text:o,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-yaxis-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});g.attr({rel:i}),e.appendChild(g.node)}},{key:"_getY1Y2",value:function(t,e){var i,a="y1"===t?e.y:e.y2,s=this.w;if(this.annoCtx.invertAxis){var r=s.globals.labels.indexOf(a);s.config.xaxis.convertedCatToNumeric&&(r=s.globals.categoryLabels.indexOf(a));var n=s.globals.dom.baseEl.querySelector(".apexcharts-yaxis-texts-g text:nth-child("+(r+1)+")");n&&(i=parseFloat(n.getAttribute("y")))}else{var o;if(s.config.yaxis[e.yAxisIndex].logarithmic)o=(a=new y(this.annoCtx.ctx).getLogVal(a,e.yAxisIndex))/s.globals.yLogRatio[e.yAxisIndex];else o=(a-s.globals.minYArr[e.yAxisIndex])/(s.globals.yRange[e.yAxisIndex]/s.globals.gridHeight);i=s.globals.gridHeight-o,s.config.yaxis[e.yAxisIndex]&&s.config.yaxis[e.yAxisIndex].reversed&&(i=o)}return i}},{key:"_getYAxisAnnotationWidth",value:function(t){var e=this.w;e.globals.gridWidth;return(t.width.indexOf("%")>-1?e.globals.gridWidth*parseInt(t.width,10)/100:parseInt(t.width,10))+t.offsetX}},{key:"drawYAxisAnnotations",value:function(){var t=this,e=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-yaxis-annotations"});return e.config.annotations.yaxis.map((function(e,a){t.addYaxisAnnotation(e,i.node,a)})),i}}]),t}(),k=function(){function t(i){e(this,t),this.w=i.w,this.annoCtx=i}return a(t,[{key:"addPointAnnotation",value:function(t,e,i){var a=this.w,s=0,r=0,n=0;this.annoCtx.invertAxis&&console.warn("Point annotation is not supported in horizontal bar charts.");var o,l=parseFloat(t.y);if("string"==typeof t.x){var h=a.globals.labels.indexOf(t.x);a.config.xaxis.convertedCatToNumeric&&(h=a.globals.categoryLabels.indexOf(t.x)),s=this.annoCtx.helpers.getStringX(t.x),null===t.y&&(l=a.globals.series[t.seriesIndex][h])}else s=(t.x-a.globals.minX)/(a.globals.xRange/a.globals.gridWidth);a.config.yaxis[t.yAxisIndex].logarithmic?o=(l=new y(this.annoCtx.ctx).getLogVal(l,t.yAxisIndex))/a.globals.yLogRatio[t.yAxisIndex]:o=(l-a.globals.minYArr[t.yAxisIndex])/(a.globals.yRange[t.yAxisIndex]/a.globals.gridHeight);if(r=a.globals.gridHeight-o-parseFloat(t.label.style.fontSize)-t.marker.size,n=a.globals.gridHeight-o,a.config.yaxis[t.yAxisIndex]&&a.config.yaxis[t.yAxisIndex].reversed&&(r=o+parseFloat(t.label.style.fontSize)+t.marker.size,n=o),f.isNumber(s)){var c={pSize:t.marker.size,pointStrokeWidth:t.marker.strokeWidth,pointFillColor:t.marker.fillColor,pointStrokeColor:t.marker.strokeColor,shape:t.marker.shape,pRadius:t.marker.radius,class:"apexcharts-point-annotation-marker ".concat(t.marker.cssClass," ").concat(t.id?t.id:"")},d=this.annoCtx.graphics.drawMarker(s+t.marker.offsetX,n+t.marker.offsetY,c);e.appendChild(d.node);var g=t.label.text?t.label.text:"",u=this.annoCtx.graphics.drawText({x:s+t.label.offsetX,y:r+t.label.offsetY,text:g,textAnchor:t.label.textAnchor,fontSize:t.label.style.fontSize,fontFamily:t.label.style.fontFamily,fontWeight:t.label.style.fontWeight,foreColor:t.label.style.color,cssClass:"apexcharts-point-annotation-label ".concat(t.label.style.cssClass," ").concat(t.id?t.id:"")});if(u.attr({rel:i}),e.appendChild(u.node),t.customSVG.SVG){var p=this.annoCtx.graphics.group({class:"apexcharts-point-annotations-custom-svg "+t.customSVG.cssClass});p.attr({transform:"translate(".concat(s+t.customSVG.offsetX,", ").concat(r+t.customSVG.offsetY,")")}),p.node.innerHTML=t.customSVG.SVG,e.appendChild(p.node)}if(t.image.path){var x=t.image.width?t.image.width:20,b=t.image.height?t.image.height:20;this.annoCtx.addImage({x:s+t.image.offsetX-x/2,y:r+t.image.offsetY-b/2,width:x,height:b,path:t.image.path,appendTo:".apexcharts-point-annotations"})}}}},{key:"drawPointAnnotations",value:function(){var t=this,e=this.w,i=this.annoCtx.graphics.group({class:"apexcharts-point-annotations"});return e.config.annotations.points.map((function(e,a){t.addPointAnnotation(e,i.node,a)})),i}}]),t}();var A={name:"en",options:{months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],toolbar:{exportToSVG:"Download SVG",exportToPNG:"Download PNG",exportToCSV:"Download CSV",menu:"Menu",selection:"Selection",selectionZoom:"Selection Zoom",zoomIn:"Zoom In",zoomOut:"Zoom Out",pan:"Panning",reset:"Reset Zoom"}}},S=function(){function t(){e(this,t),this.yAxis={show:!0,showAlways:!1,showForNullSeries:!0,seriesName:void 0,opposite:!1,reversed:!1,logarithmic:!1,tickAmount:void 0,forceNiceScale:!1,max:void 0,min:void 0,floating:!1,decimalsInFloat:void 0,labels:{show:!0,minWidth:0,maxWidth:160,offsetX:0,offsetY:0,align:void 0,rotate:0,padding:20,style:{colors:[],fontSize:"11px",fontWeight:400,fontFamily:void 0,cssClass:""},formatter:void 0},axisBorder:{show:!1,color:"#e0e0e0",width:1,offsetX:0,offsetY:0},axisTicks:{show:!1,color:"#e0e0e0",width:6,offsetX:0,offsetY:0},title:{text:void 0,rotate:-90,offsetY:0,offsetX:0,style:{color:void 0,fontSize:"11px",fontWeight:900,fontFamily:void 0,cssClass:""}},tooltip:{enabled:!1,offsetX:0},crosshairs:{show:!0,position:"front",stroke:{color:"#b6b6b6",width:1,dashArray:0}}},this.pointAnnotation={x:0,y:null,yAxisIndex:0,seriesIndex:0,marker:{size:4,fillColor:"#fff",strokeWidth:2,strokeColor:"#333",shape:"circle",offsetX:0,offsetY:0,radius:2,cssClass:""},label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",offsetX:0,offsetY:0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}},customSVG:{SVG:void 0,cssClass:void 0,offsetX:0,offsetY:0},image:{path:void 0,width:20,height:20,offsetX:0,offsetY:0}},this.yAxisAnnotation={y:0,y2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,width:"100%",yAxisIndex:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"end",position:"right",offsetX:0,offsetY:-3,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.xAxisAnnotation={x:0,x2:null,strokeDashArray:1,fillColor:"#c2c2c2",borderColor:"#c2c2c2",borderWidth:1,opacity:.3,offsetX:0,offsetY:0,label:{borderColor:"#c2c2c2",borderWidth:1,borderRadius:2,text:void 0,textAnchor:"middle",orientation:"vertical",position:"top",offsetX:0,offsetY:0,style:{background:"#fff",color:void 0,fontSize:"11px",fontFamily:void 0,fontWeight:400,cssClass:"",padding:{left:5,right:5,top:2,bottom:2}}}},this.text={x:0,y:0,text:"",textAnchor:"start",foreColor:void 0,fontSize:"13px",fontFamily:void 0,fontWeight:400,appendTo:".apexcharts-annotations",backgroundColor:"transparent",borderColor:"#c2c2c2",borderRadius:0,borderWidth:0,paddingLeft:4,paddingRight:4,paddingTop:2,paddingBottom:2}}return a(t,[{key:"init",value:function(){return{annotations:{position:"front",yaxis:[this.yAxisAnnotation],xaxis:[this.xAxisAnnotation],points:[this.pointAnnotation],texts:[],images:[],shapes:[]},chart:{animations:{enabled:!0,easing:"easeinout",speed:800,animateGradually:{delay:150,enabled:!0},dynamicAnimation:{enabled:!0,speed:350}},background:"transparent",locales:[A],defaultLocale:"en",dropShadow:{enabled:!1,enabledOnSeries:void 0,top:2,left:2,blur:4,color:"#000",opacity:.35},events:{animationEnd:void 0,beforeMount:void 0,mounted:void 0,updated:void 0,click:void 0,mouseMove:void 0,legendClick:void 0,markerClick:void 0,selection:void 0,dataPointSelection:void 0,dataPointMouseEnter:void 0,dataPointMouseLeave:void 0,beforeZoom:void 0,beforeResetZoom:void 0,zoomed:void 0,scrolled:void 0,brushScrolled:void 0},foreColor:"#373d3f",fontFamily:"Helvetica, Arial, sans-serif",height:"auto",parentHeightOffset:15,redrawOnParentResize:!0,redrawOnWindowResize:!0,id:void 0,group:void 0,offsetX:0,offsetY:0,selection:{enabled:!1,type:"x",fill:{color:"#24292e",opacity:.1},stroke:{width:1,color:"#24292e",opacity:.4,dashArray:3},xaxis:{min:void 0,max:void 0},yaxis:{min:void 0,max:void 0}},sparkline:{enabled:!1},brush:{enabled:!1,autoScaleYaxis:!0,target:void 0},stacked:!1,stackType:"normal",toolbar:{show:!0,offsetX:0,offsetY:0,tools:{download:!0,selection:!0,zoom:!0,zoomin:!0,zoomout:!0,pan:!0,reset:!0,customIcons:[]},export:{csv:{filename:void 0,columnDelimiter:",",headerCategory:"category",headerValue:"value",dateFormatter:function(t){return new Date(t).toDateString()}},png:{filename:void 0},svg:{filename:void 0}},autoSelected:"zoom"},type:"line",width:"100%",zoom:{enabled:!0,type:"x",autoScaleYaxis:!1,zoomedArea:{fill:{color:"#90CAF9",opacity:.4},stroke:{color:"#0D47A1",opacity:.4,width:1}}}},plotOptions:{area:{fillTo:"origin"},bar:{horizontal:!1,columnWidth:"70%",barHeight:"70%",distributed:!1,borderRadius:0,rangeBarOverlap:!0,rangeBarGroupRows:!1,colors:{ranges:[],backgroundBarColors:[],backgroundBarOpacity:1,backgroundBarRadius:0},dataLabels:{position:"top",maxItems:100,hideOverflowingLabels:!0,orientation:"horizontal"}},bubble:{minBubbleRadius:void 0,maxBubbleRadius:void 0},candlestick:{colors:{upward:"#00B746",downward:"#EF403C"},wick:{useFillColor:!0}},boxPlot:{colors:{upper:"#00E396",lower:"#008FFB"}},heatmap:{radius:2,enableShades:!0,shadeIntensity:.5,reverseNegativeShade:!1,distributed:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},treemap:{enableShades:!0,shadeIntensity:.5,distributed:!1,reverseNegativeShade:!1,useFillColorAsStroke:!1,colorScale:{inverse:!1,ranges:[],min:void 0,max:void 0}},radialBar:{inverseOrder:!1,startAngle:0,endAngle:360,offsetX:0,offsetY:0,hollow:{margin:5,size:"50%",background:"transparent",image:void 0,imageWidth:150,imageHeight:150,imageOffsetX:0,imageOffsetY:0,imageClipped:!0,position:"front",dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},track:{show:!0,startAngle:void 0,endAngle:void 0,background:"#f2f2f2",strokeWidth:"97%",opacity:1,margin:5,dropShadow:{enabled:!1,top:0,left:0,blur:3,color:"#000",opacity:.5}},dataLabels:{show:!0,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:0,formatter:function(t){return t}},value:{show:!0,fontSize:"14px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:16,formatter:function(t){return t+"%"}},total:{show:!1,label:"Total",fontSize:"16px",fontWeight:600,fontFamily:void 0,color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce((function(t,e){return t+e}),0)/t.globals.series.length+"%"}}}},pie:{customScale:1,offsetX:0,offsetY:0,startAngle:0,endAngle:360,expandOnClick:!0,dataLabels:{offset:0,minAngleToShowLabel:10},donut:{size:"65%",background:"transparent",labels:{show:!1,name:{show:!0,fontSize:"16px",fontFamily:void 0,fontWeight:600,color:void 0,offsetY:-10,formatter:function(t){return t}},value:{show:!0,fontSize:"20px",fontFamily:void 0,fontWeight:400,color:void 0,offsetY:10,formatter:function(t){return t}},total:{show:!1,showAlways:!1,label:"Total",fontSize:"16px",fontWeight:400,fontFamily:void 0,color:void 0,formatter:function(t){return t.globals.seriesTotals.reduce((function(t,e){return t+e}),0)}}}}},polarArea:{rings:{strokeWidth:1,strokeColor:"#e8e8e8"},spokes:{strokeWidth:1,connectorColors:"#e8e8e8"}},radar:{size:void 0,offsetX:0,offsetY:0,polygons:{strokeWidth:1,strokeColors:"#e8e8e8",connectorColors:"#e8e8e8",fill:{colors:void 0}}}},colors:void 0,dataLabels:{enabled:!0,enabledOnSeries:void 0,formatter:function(t){return null!==t?t:""},textAnchor:"middle",distributed:!1,offsetX:0,offsetY:0,style:{fontSize:"12px",fontFamily:void 0,fontWeight:600,colors:void 0},background:{enabled:!0,foreColor:"#fff",borderRadius:2,padding:4,opacity:.9,borderWidth:1,borderColor:"#fff",dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},dropShadow:{enabled:!1,top:1,left:1,blur:1,color:"#000",opacity:.45}},fill:{type:"solid",colors:void 0,opacity:.85,gradient:{shade:"dark",type:"horizontal",shadeIntensity:.5,gradientToColors:void 0,inverseColors:!0,opacityFrom:1,opacityTo:1,stops:[0,50,100],colorStops:[]},image:{src:[],width:void 0,height:void 0},pattern:{style:"squares",width:6,height:6,strokeWidth:2}},grid:{show:!0,borderColor:"#e0e0e0",strokeDashArray:0,position:"back",xaxis:{lines:{show:!1}},yaxis:{lines:{show:!0}},row:{colors:void 0,opacity:.5},column:{colors:void 0,opacity:.5},padding:{top:0,right:10,bottom:0,left:12}},labels:[],legend:{show:!0,showForSingleSeries:!1,showForNullSeries:!0,showForZeroSeries:!0,floating:!1,position:"bottom",horizontalAlign:"center",inverseOrder:!1,fontSize:"12px",fontFamily:void 0,fontWeight:400,width:void 0,height:void 0,formatter:void 0,tooltipHoverFormatter:void 0,offsetX:-20,offsetY:4,labels:{colors:void 0,useSeriesColors:!1},markers:{width:12,height:12,strokeWidth:0,fillColors:void 0,strokeColor:"#fff",radius:12,customHTML:void 0,offsetX:0,offsetY:0,onClick:void 0},itemMargin:{horizontal:5,vertical:2},onItemClick:{toggleDataSeries:!0},onItemHover:{highlightDataSeries:!0}},markers:{discrete:[],size:0,colors:void 0,strokeColors:"#fff",strokeWidth:2,strokeOpacity:.9,strokeDashArray:0,fillOpacity:1,shape:"circle",width:8,height:8,radius:2,offsetX:0,offsetY:0,onClick:void 0,onDblClick:void 0,showNullDataPoints:!0,hover:{size:void 0,sizeOffset:3}},noData:{text:void 0,align:"center",verticalAlign:"middle",offsetX:0,offsetY:0,style:{color:void 0,fontSize:"14px",fontFamily:void 0}},responsive:[],series:void 0,states:{normal:{filter:{type:"none",value:0}},hover:{filter:{type:"lighten",value:.1}},active:{allowMultipleDataPointsSelection:!1,filter:{type:"darken",value:.5}}},title:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:0,floating:!1,style:{fontSize:"14px",fontWeight:900,fontFamily:void 0,color:void 0}},subtitle:{text:void 0,align:"left",margin:5,offsetX:0,offsetY:30,floating:!1,style:{fontSize:"12px",fontWeight:400,fontFamily:void 0,color:void 0}},stroke:{show:!0,curve:"smooth",lineCap:"butt",width:2,colors:void 0,dashArray:0},tooltip:{enabled:!0,enabledOnSeries:void 0,shared:!0,followCursor:!1,intersect:!1,inverseOrder:!1,custom:void 0,fillSeriesColor:!1,theme:"light",style:{fontSize:"12px",fontFamily:void 0},onDatasetHover:{highlightDataSeries:!1},x:{show:!0,format:"dd MMM",formatter:void 0},y:{formatter:void 0,title:{formatter:function(t){return t?t+": ":""}}},z:{formatter:void 0,title:"Size: "},marker:{show:!0,fillColors:void 0},items:{display:"flex"},fixed:{enabled:!1,position:"topRight",offsetX:0,offsetY:0}},xaxis:{type:"category",categories:[],convertedCatToNumeric:!1,offsetX:0,offsetY:0,labels:{show:!0,rotate:-45,rotateAlways:!1,hideOverlappingLabels:!0,trim:!1,minHeight:void 0,maxHeight:120,showDuplicates:!0,style:{colors:[],fontSize:"12px",fontWeight:400,fontFamily:void 0,cssClass:""},offsetX:0,offsetY:0,format:void 0,formatter:void 0,datetimeUTC:!0,datetimeFormatter:{year:"yyyy",month:"MMM 'yy",day:"dd MMM",hour:"HH:mm",minute:"HH:mm:ss",second:"HH:mm:ss"}},axisBorder:{show:!0,color:"#e0e0e0",width:"100%",height:1,offsetX:0,offsetY:0},axisTicks:{show:!0,color:"#e0e0e0",height:6,offsetX:0,offsetY:0},tickAmount:void 0,tickPlacement:"on",min:void 0,max:void 0,range:void 0,floating:!1,decimalsInFloat:void 0,position:"bottom",title:{text:void 0,offsetX:0,offsetY:0,style:{color:void 0,fontSize:"12px",fontWeight:900,fontFamily:void 0,cssClass:""}},crosshairs:{show:!0,width:1,position:"back",opacity:.9,stroke:{color:"#b6b6b6",width:1,dashArray:3},fill:{type:"solid",color:"#B1B9C4",gradient:{colorFrom:"#D8E3F0",colorTo:"#BED1E6",stops:[0,100],opacityFrom:.4,opacityTo:.5}},dropShadow:{enabled:!1,left:0,top:0,blur:1,opacity:.4}},tooltip:{enabled:!0,offsetY:0,formatter:void 0,style:{fontSize:"12px",fontFamily:void 0}}},yaxis:this.yAxis,theme:{mode:"light",palette:"palette1",monochrome:{enabled:!1,color:"#008FFB",shadeTo:"light",shadeIntensity:.65}}}}}]),t}(),C=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.graphics=new b(this.ctx),this.w.globals.isBarHorizontal&&(this.invertAxis=!0),this.helpers=new m(this),this.xAxisAnnotations=new v(this),this.yAxisAnnotations=new w(this),this.pointsAnnotations=new k(this),this.w.globals.isBarHorizontal&&this.w.config.yaxis[0].reversed&&(this.inversedReversedAxis=!0),this.xDivision=this.w.globals.gridWidth/this.w.globals.dataPoints}return a(t,[{key:"drawAxesAnnotations",value:function(){var t=this.w;if(t.globals.axisCharts){for(var e=this.yAxisAnnotations.drawYAxisAnnotations(),i=this.xAxisAnnotations.drawXAxisAnnotations(),a=this.pointsAnnotations.drawPointAnnotations(),s=t.config.chart.animations.enabled,r=[e,i,a],n=[i.node,e.node,a.node],o=0;o<3;o++)t.globals.dom.elGraphical.add(r[o]),!s||t.globals.resized||t.globals.dataChanged||"scatter"!==t.config.chart.type&&"bubble"!==t.config.chart.type&&t.globals.dataPoints>1&&n[o].classList.add("apexcharts-element-hidden"),t.globals.delayedElements.push({el:n[o],index:0});this.helpers.annotationsBackground()}}},{key:"drawImageAnnos",value:function(){var t=this;this.w.config.annotations.images.map((function(e,i){t.addImage(e,i)}))}},{key:"drawTextAnnos",value:function(){var t=this;this.w.config.annotations.texts.map((function(e,i){t.addText(e,i)}))}},{key:"addXaxisAnnotation",value:function(t,e,i){this.xAxisAnnotations.addXaxisAnnotation(t,e,i)}},{key:"addYaxisAnnotation",value:function(t,e,i){this.yAxisAnnotations.addYaxisAnnotation(t,e,i)}},{key:"addPointAnnotation",value:function(t,e,i){this.pointsAnnotations.addPointAnnotation(t,e,i)}},{key:"addText",value:function(t,e){var i=t.x,a=t.y,s=t.text,r=t.textAnchor,n=t.foreColor,o=t.fontSize,l=t.fontFamily,h=t.fontWeight,c=t.cssClass,d=t.backgroundColor,g=t.borderWidth,u=t.strokeDashArray,f=t.borderRadius,p=t.borderColor,x=t.appendTo,b=void 0===x?".apexcharts-annotations":x,m=t.paddingLeft,v=void 0===m?4:m,y=t.paddingRight,w=void 0===y?4:y,k=t.paddingBottom,A=void 0===k?2:k,S=t.paddingTop,C=void 0===S?2:S,L=this.w,P=this.graphics.drawText({x:i,y:a,text:s,textAnchor:r||"start",fontSize:o||"12px",fontWeight:h||"regular",fontFamily:l||L.config.chart.fontFamily,foreColor:n||L.config.chart.foreColor,cssClass:c}),T=L.globals.dom.baseEl.querySelector(b);T&&T.appendChild(P.node);var z=P.bbox();if(s){var I=this.graphics.drawRect(z.x-v,z.y-C,z.width+v+w,z.height+A+C,f,d||"transparent",1,g,p,u);T.insertBefore(I.node,P.node)}}},{key:"addImage",value:function(t,e){var i=this.w,a=t.path,s=t.x,r=void 0===s?0:s,n=t.y,o=void 0===n?0:n,l=t.width,h=void 0===l?20:l,c=t.height,d=void 0===c?20:c,g=t.appendTo,u=void 0===g?".apexcharts-annotations":g,f=i.globals.dom.Paper.image(a);f.size(h,d).move(r,o);var p=i.globals.dom.baseEl.querySelector(u);p&&p.appendChild(f.node)}},{key:"addXaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"xaxis",contextMethod:i.addXaxisAnnotation}),i}},{key:"addYaxisAnnotationExternal",value:function(t,e,i){return this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"yaxis",contextMethod:i.addYaxisAnnotation}),i}},{key:"addPointAnnotationExternal",value:function(t,e,i){return void 0===this.invertAxis&&(this.invertAxis=i.w.globals.isBarHorizontal),this.addAnnotationExternal({params:t,pushToMemory:e,context:i,type:"point",contextMethod:i.addPointAnnotation}),i}},{key:"addAnnotationExternal",value:function(t){var e=t.params,i=t.pushToMemory,a=t.context,s=t.type,r=t.contextMethod,n=a,o=n.w,l=o.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations")),h=l.childNodes.length+1,c=new S,d=Object.assign({},"xaxis"===s?c.xAxisAnnotation:"yaxis"===s?c.yAxisAnnotation:c.pointAnnotation),g=f.extend(d,e);switch(s){case"xaxis":this.addXaxisAnnotation(g,l,h);break;case"yaxis":this.addYaxisAnnotation(g,l,h);break;case"point":this.addPointAnnotation(g,l,h)}var u=o.globals.dom.baseEl.querySelector(".apexcharts-".concat(s,"-annotations .apexcharts-").concat(s,"-annotation-label[rel='").concat(h,"']")),p=this.helpers.addBackgroundToAnno(u,g);return p&&l.insertBefore(p.node,u),i&&o.globals.memory.methodsToExec.push({context:n,id:g.id?g.id:f.randomId(),method:r,label:"addAnnotation",params:e}),a}},{key:"clearAnnotations",value:function(t){var e=t.w,i=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-annotations, .apexcharts-xaxis-annotations, .apexcharts-point-annotations");e.globals.memory.methodsToExec.map((function(t,i){"addText"!==t.label&&"addAnnotation"!==t.label||e.globals.memory.methodsToExec.splice(i,1)})),i=f.listToArray(i),Array.prototype.forEach.call(i,(function(t){for(;t.firstChild;)t.removeChild(t.firstChild)}))}},{key:"removeAnnotation",value:function(t,e){var i=t.w,a=i.globals.dom.baseEl.querySelectorAll(".".concat(e));a&&(i.globals.memory.methodsToExec.map((function(t,a){t.id===e&&i.globals.memory.methodsToExec.splice(a,1)})),Array.prototype.forEach.call(a,(function(t){t.parentElement.removeChild(t)})))}}]),t}(),L=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.opts=null,this.seriesIndex=0}return a(t,[{key:"clippedImgArea",value:function(t){var e=this.w,i=e.config,a=parseInt(e.globals.gridWidth,10),s=parseInt(e.globals.gridHeight,10),r=a>s?a:s,n=t.image,o=0,l=0;void 0===t.width&&void 0===t.height?void 0!==i.fill.image.width&&void 0!==i.fill.image.height?(o=i.fill.image.width+1,l=i.fill.image.height):(o=r+1,l=r):(o=t.width,l=t.height);var h=document.createElementNS(e.globals.SVGNS,"pattern");b.setAttrs(h,{id:t.patternID,patternUnits:t.patternUnits?t.patternUnits:"userSpaceOnUse",width:o+"px",height:l+"px"});var c=document.createElementNS(e.globals.SVGNS,"image");h.appendChild(c),c.setAttributeNS(window.SVG.xlink,"href",n),b.setAttrs(c,{x:0,y:0,preserveAspectRatio:"none",width:o+"px",height:l+"px"}),c.style.opacity=t.opacity,e.globals.dom.elDefs.node.appendChild(h)}},{key:"getSeriesIndex",value:function(t){var e=this.w;return("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&e.config.plotOptions.bar.distributed||"heatmap"===e.config.chart.type||"treemap"===e.config.chart.type?this.seriesIndex=t.seriesNumber:this.seriesIndex=t.seriesNumber%e.globals.series.length,this.seriesIndex}},{key:"fillPath",value:function(t){var e=this.w;this.opts=t;var i,a,s,r=this.w.config;this.seriesIndex=this.getSeriesIndex(t);var n=this.getFillColors()[this.seriesIndex];void 0!==e.globals.seriesColors[this.seriesIndex]&&(n=e.globals.seriesColors[this.seriesIndex]),"function"==typeof n&&(n=n({seriesIndex:this.seriesIndex,dataPointIndex:t.dataPointIndex,value:t.value,w:e}));var o=this.getFillType(this.seriesIndex),l=Array.isArray(r.fill.opacity)?r.fill.opacity[this.seriesIndex]:r.fill.opacity;t.color&&(n=t.color);var h=n;if(-1===n.indexOf("rgb")?n.length<9&&(h=f.hexToRgba(n,l)):n.indexOf("rgba")>-1&&(l=f.getOpacityFromRGBA(n)),t.opacity&&(l=t.opacity),"pattern"===o&&(a=this.handlePatternFill(a,n,l,h)),"gradient"===o&&(s=this.handleGradientFill(n,l,this.seriesIndex)),"image"===o){var c=r.fill.image.src,d=t.patternID?t.patternID:"";this.clippedImgArea({opacity:l,image:Array.isArray(c)?t.seriesNumber<c.length?c[t.seriesNumber]:c[0]:c,width:t.width?t.width:void 0,height:t.height?t.height:void 0,patternUnits:t.patternUnits,patternID:"pattern".concat(e.globals.cuid).concat(t.seriesNumber+1).concat(d)}),i="url(#pattern".concat(e.globals.cuid).concat(t.seriesNumber+1).concat(d,")")}else i="gradient"===o?s:"pattern"===o?a:h;return t.solid&&(i=h),i}},{key:"getFillType",value:function(t){var e=this.w;return Array.isArray(e.config.fill.type)?e.config.fill.type[t]:e.config.fill.type}},{key:"getFillColors",value:function(){var t=this.w,e=t.config,i=this.opts,a=[];return t.globals.comboCharts?"line"===t.config.series[this.seriesIndex].type?Array.isArray(t.globals.stroke.colors)?a=t.globals.stroke.colors:a.push(t.globals.stroke.colors):Array.isArray(t.globals.fill.colors)?a=t.globals.fill.colors:a.push(t.globals.fill.colors):"line"===e.chart.type?Array.isArray(t.globals.stroke.colors)?a=t.globals.stroke.colors:a.push(t.globals.stroke.colors):Array.isArray(t.globals.fill.colors)?a=t.globals.fill.colors:a.push(t.globals.fill.colors),void 0!==i.fillColors&&(a=[],Array.isArray(i.fillColors)?a=i.fillColors.slice():a.push(i.fillColors)),a}},{key:"handlePatternFill",value:function(t,e,i,a){var s=this.w.config,r=this.opts,n=new b(this.ctx),o=void 0===s.fill.pattern.strokeWidth?Array.isArray(s.stroke.width)?s.stroke.width[this.seriesIndex]:s.stroke.width:Array.isArray(s.fill.pattern.strokeWidth)?s.fill.pattern.strokeWidth[this.seriesIndex]:s.fill.pattern.strokeWidth,l=e;Array.isArray(s.fill.pattern.style)?t=void 0!==s.fill.pattern.style[r.seriesNumber]?n.drawPattern(s.fill.pattern.style[r.seriesNumber],s.fill.pattern.width,s.fill.pattern.height,l,o,i):a:t=n.drawPattern(s.fill.pattern.style,s.fill.pattern.width,s.fill.pattern.height,l,o,i);return t}},{key:"handleGradientFill",value:function(t,e,i){var a,s=this.w.config,r=this.opts,n=new b(this.ctx),o=new f,l=s.fill.gradient.type,h=t,c=void 0===s.fill.gradient.opacityFrom?e:Array.isArray(s.fill.gradient.opacityFrom)?s.fill.gradient.opacityFrom[i]:s.fill.gradient.opacityFrom;h.indexOf("rgba")>-1&&(c=f.getOpacityFromRGBA(h));var d=void 0===s.fill.gradient.opacityTo?e:Array.isArray(s.fill.gradient.opacityTo)?s.fill.gradient.opacityTo[i]:s.fill.gradient.opacityTo;if(void 0===s.fill.gradient.gradientToColors||0===s.fill.gradient.gradientToColors.length)a="dark"===s.fill.gradient.shade?o.shadeColor(-1*parseFloat(s.fill.gradient.shadeIntensity),t.indexOf("rgb")>-1?f.rgb2hex(t):t):o.shadeColor(parseFloat(s.fill.gradient.shadeIntensity),t.indexOf("rgb")>-1?f.rgb2hex(t):t);else if(s.fill.gradient.gradientToColors[r.seriesNumber]){var g=s.fill.gradient.gradientToColors[r.seriesNumber];a=g,g.indexOf("rgba")>-1&&(d=f.getOpacityFromRGBA(g))}else a=t;if(s.fill.gradient.inverseColors){var u=h;h=a,a=u}return h.indexOf("rgb")>-1&&(h=f.rgb2hex(h)),a.indexOf("rgb")>-1&&(a=f.rgb2hex(a)),n.drawGradient(l,h,a,c,d,r.size,s.fill.gradient.stops,s.fill.gradient.colorStops,i)}}]),t}(),P=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"setGlobalMarkerSize",value:function(){var t=this.w;if(t.globals.markers.size=Array.isArray(t.config.markers.size)?t.config.markers.size:[t.config.markers.size],t.globals.markers.size.length>0){if(t.globals.markers.size.length<t.globals.series.length+1)for(var e=0;e<=t.globals.series.length;e++)void 0===t.globals.markers.size[e]&&t.globals.markers.size.push(t.globals.markers.size[0])}else t.globals.markers.size=t.config.series.map((function(e){return t.config.markers.size}))}},{key:"plotChartMarkers",value:function(t,e,i,a){var s,r=arguments.length>4&&void 0!==arguments[4]&&arguments[4],n=this.w,o=e,l=t,h=null,c=new b(this.ctx);if((n.globals.markers.size[e]>0||r)&&(h=c.group({class:r?"":"apexcharts-series-markers"})).attr("clip-path","url(#gridRectMarkerMask".concat(n.globals.cuid,")")),Array.isArray(l.x))for(var d=0;d<l.x.length;d++){var g=i;1===i&&0===d&&(g=0),1===i&&1===d&&(g=1);var u="apexcharts-marker";"line"!==n.config.chart.type&&"area"!==n.config.chart.type||n.globals.comboCharts||n.config.tooltip.intersect||(u+=" no-pointer-events");var p=Array.isArray(n.config.markers.size)?n.globals.markers.size[e]>0:n.config.markers.size>0;if(p||r){f.isNumber(l.y[d])?u+=" w".concat(f.randomId()):u="apexcharts-nullpoint";var m=this.getMarkerConfig(u,e,g);n.config.series[o].data[g]&&(n.config.series[o].data[g].fillColor&&(m.pointFillColor=n.config.series[o].data[g].fillColor),n.config.series[o].data[g].strokeColor&&(m.pointStrokeColor=n.config.series[o].data[g].strokeColor)),a&&(m.pSize=a),(s=c.drawMarker(l.x[d],l.y[d],m)).attr("rel",g),s.attr("j",g),s.attr("index",e),s.node.setAttribute("default-marker-size",m.pSize);var v=new x(this.ctx);v.setSelectionFilter(s,e,g),this.addEvents(s),h&&h.add(s)}else void 0===n.globals.pointsArray[e]&&(n.globals.pointsArray[e]=[]),n.globals.pointsArray[e].push([l.x[d],l.y[d]])}return h}},{key:"getMarkerConfig",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.getMarkerStyle(e),r=a.globals.markers.size[e],n=a.config.markers;return null!==i&&n.discrete.length&&n.discrete.map((function(t){t.seriesIndex===e&&t.dataPointIndex===i&&(s.pointStrokeColor=t.strokeColor,s.pointFillColor=t.fillColor,r=t.size)})),{pSize:r,pRadius:n.radius,width:Array.isArray(n.width)?n.width[e]:n.width,height:Array.isArray(n.height)?n.height[e]:n.height,pointStrokeWidth:Array.isArray(n.strokeWidth)?n.strokeWidth[e]:n.strokeWidth,pointStrokeColor:s.pointStrokeColor,pointFillColor:s.pointFillColor,shape:Array.isArray(n.shape)?n.shape[e]:n.shape,class:t,pointStrokeOpacity:Array.isArray(n.strokeOpacity)?n.strokeOpacity[e]:n.strokeOpacity,pointStrokeDashArray:Array.isArray(n.strokeDashArray)?n.strokeDashArray[e]:n.strokeDashArray,pointFillOpacity:Array.isArray(n.fillOpacity)?n.fillOpacity[e]:n.fillOpacity,seriesIndex:e}}},{key:"addEvents",value:function(t){var e=this.w,i=new b(this.ctx);t.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this.ctx,t)),t.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this.ctx,t)),t.node.addEventListener("mousedown",i.pathMouseDown.bind(this.ctx,t)),t.node.addEventListener("click",e.config.markers.onClick),t.node.addEventListener("dblclick",e.config.markers.onDblClick),t.node.addEventListener("touchstart",i.pathMouseDown.bind(this.ctx,t),{passive:!0})}},{key:"getMarkerStyle",value:function(t){var e=this.w,i=e.globals.markers.colors,a=e.config.markers.strokeColor||e.config.markers.strokeColors;return{pointStrokeColor:Array.isArray(a)?a[t]:a,pointFillColor:Array.isArray(i)?i[t]:i}}}]),t}(),T=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled}return a(t,[{key:"draw",value:function(t,e,i){var a=this.w,s=new b(this.ctx),r=i.realIndex,n=i.pointsPos,o=i.zRatio,l=i.elParent,h=s.group({class:"apexcharts-series-markers apexcharts-series-".concat(a.config.chart.type)});if(h.attr("clip-path","url(#gridRectMarkerMask".concat(a.globals.cuid,")")),Array.isArray(n.x))for(var c=0;c<n.x.length;c++){var d=e+1,g=!0;0===e&&0===c&&(d=0),0===e&&1===c&&(d=1);var u=0,f=a.globals.markers.size[r];if(o!==1/0){f=a.globals.seriesZ[r][d]/o;var p=a.config.plotOptions.bubble;p.minBubbleRadius&&f<p.minBubbleRadius&&(f=p.minBubbleRadius),p.maxBubbleRadius&&f>p.maxBubbleRadius&&(f=p.maxBubbleRadius)}a.config.chart.animations.enabled||(u=f);var x=n.x[c],m=n.y[c];if(u=u||0,null!==m&&void 0!==a.globals.series[r][d]||(g=!1),g){var v=this.drawPoint(x,m,u,f,r,d,e);h.add(v)}l.add(h)}}},{key:"drawPoint",value:function(t,e,i,a,s,r,n){var o,l=this.w,h=s,c=new p(this.ctx),d=new x(this.ctx),g=new L(this.ctx),u=new P(this.ctx),f=new b(this.ctx),m=u.getMarkerConfig("apexcharts-marker",h),v=g.fillPath({seriesNumber:s,dataPointIndex:r,patternUnits:"objectBoundingBox",value:l.globals.series[s][n]});if("circle"===m.shape?o=f.drawCircle(i):"square"!==m.shape&&"rect"!==m.shape||(o=f.drawRect(0,0,m.width-m.pointStrokeWidth/2,m.height-m.pointStrokeWidth/2,m.pRadius)),l.config.series[h].data[r]&&l.config.series[h].data[r].fillColor&&(v=l.config.series[h].data[r].fillColor),o.attr({x:t-m.width/2-m.pointStrokeWidth/2,y:e-m.height/2-m.pointStrokeWidth/2,cx:t,cy:e,fill:v,"fill-opacity":m.pointFillOpacity,stroke:m.pointStrokeColor,r:a,"stroke-width":m.pointStrokeWidth,"stroke-dasharray":m.pointStrokeDashArray,"stroke-opacity":m.pointStrokeOpacity}),l.config.chart.dropShadow.enabled){var y=l.config.chart.dropShadow;d.dropShadow(o,y,s)}if(!this.initialAnim||l.globals.dataChanged||l.globals.resized)l.globals.animationEnded=!0;else{var w=l.config.chart.animations.speed;c.animateMarker(o,0,"circle"===m.shape?a:{width:m.width,height:m.height},w,l.globals.easing,(function(){window.setTimeout((function(){c.animationCompleted(o)}),100)}))}if(l.globals.dataChanged&&"circle"===m.shape)if(this.dynamicAnim){var k,A,S,C,T=l.config.chart.animations.dynamicAnimation.speed;null!=(C=l.globals.previousPaths[s]&&l.globals.previousPaths[s][n])&&(k=C.x,A=C.y,S=void 0!==C.r?C.r:a);for(var z=0;z<l.globals.collapsedSeries.length;z++)l.globals.collapsedSeries[z].index===s&&(T=1,a=0);0===t&&0===e&&(a=0),c.animateCircle(o,{cx:k,cy:A,r:S},{cx:t,cy:e,r:a},T,l.globals.easing)}else o.attr({r:a});return o.attr({rel:r,j:r,index:s,"default-marker-size":a}),d.setSelectionFilter(o,s,r),u.addEvents(o),o.node.classList.add("apexcharts-marker"),o}},{key:"centerTextInBubble",value:function(t){var e=this.w;return{y:t+=parseInt(e.config.dataLabels.style.fontSize,10)/4}}}]),t}(),z=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"dataLabelsCorrection",value:function(t,e,i,a,s,r,n){var o=this.w,l=!1,h=new b(this.ctx).getTextRects(i,n),c=h.width,d=h.height;e<0&&(e=0),e>o.globals.gridHeight+d&&(e=o.globals.gridHeight+d/2),void 0===o.globals.dataLabelsRects[a]&&(o.globals.dataLabelsRects[a]=[]),o.globals.dataLabelsRects[a].push({x:t,y:e,width:c,height:d});var g=o.globals.dataLabelsRects[a].length-2,u=void 0!==o.globals.lastDrawnDataLabelsIndexes[a]?o.globals.lastDrawnDataLabelsIndexes[a][o.globals.lastDrawnDataLabelsIndexes[a].length-1]:0;if(void 0!==o.globals.dataLabelsRects[a][g]){var f=o.globals.dataLabelsRects[a][u];(t>f.x+f.width+2||e>f.y+f.height+2||t+c<f.x)&&(l=!0)}return(0===s||r)&&(l=!0),{x:t,y:e,textRects:h,drawnextLabel:l}}},{key:"drawDataLabel",value:function(t,e,i){var a=this,s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:2,r=this.w,n=new b(this.ctx),o=r.config.dataLabels,l=0,h=0,c=i,d=null;if(!o.enabled||!Array.isArray(t.x))return d;d=n.group({class:"apexcharts-data-labels"});for(var g=0;g<t.x.length;g++)if(l=t.x[g]+o.offsetX,h=t.y[g]+o.offsetY+s,!isNaN(l)){1===i&&0===g&&(c=0),1===i&&1===g&&(c=1);var u=r.globals.series[e][c],f="",p=function(t){return r.config.dataLabels.formatter(t,{ctx:a.ctx,seriesIndex:e,dataPointIndex:c,w:r})};if("bubble"===r.config.chart.type){f=p(u=r.globals.seriesZ[e][c]),h=t.y[g];var x=new T(this.ctx),m=x.centerTextInBubble(h,e,c);h=m.y}else void 0!==u&&(f=p(u));this.plotDataLabelsText({x:l,y:h,text:f,i:e,j:c,parent:d,offsetCorrection:!0,dataLabelsConfig:r.config.dataLabels})}return d}},{key:"plotDataLabelsText",value:function(t){var e=this.w,i=new b(this.ctx),a=t.x,s=t.y,r=t.i,n=t.j,o=t.text,l=t.textAnchor,h=t.fontSize,c=t.parent,d=t.dataLabelsConfig,g=t.color,u=t.alwaysDrawDataLabel,f=t.offsetCorrection;if(!(Array.isArray(e.config.dataLabels.enabledOnSeries)&&e.config.dataLabels.enabledOnSeries.indexOf(r)<0)){var p={x:a,y:s,drawnextLabel:!0};f&&(p=this.dataLabelsCorrection(a,s,o,r,n,u,parseInt(d.style.fontSize,10))),e.globals.zoomed||(a=p.x,s=p.y),p.textRects&&(a<-10-p.textRects.width||a>e.globals.gridWidth+p.textRects.width+10)&&(o="");var m=e.globals.dataLabels.style.colors[r];(("bar"===e.config.chart.type||"rangeBar"===e.config.chart.type)&&e.config.plotOptions.bar.distributed||e.config.dataLabels.distributed)&&(m=e.globals.dataLabels.style.colors[n]),"function"==typeof m&&(m=m({series:e.globals.series,seriesIndex:r,dataPointIndex:n,w:e})),g&&(m=g);var v=d.offsetX,y=d.offsetY;if("bar"!==e.config.chart.type&&"rangeBar"!==e.config.chart.type||(v=0,y=0),p.drawnextLabel){var w=i.drawText({width:100,height:parseInt(d.style.fontSize,10),x:a+v,y:s+y,foreColor:m,textAnchor:l||d.textAnchor,text:o,fontSize:h||d.style.fontSize,fontFamily:d.style.fontFamily,fontWeight:d.style.fontWeight||"normal"});if(w.attr({class:"apexcharts-datalabel",cx:a,cy:s}),d.dropShadow.enabled){var k=d.dropShadow;new x(this.ctx).dropShadow(w,k)}c.add(w),void 0===e.globals.lastDrawnDataLabelsIndexes[r]&&(e.globals.lastDrawnDataLabelsIndexes[r]=[]),e.globals.lastDrawnDataLabelsIndexes[r].push(n)}}}},{key:"addBackgroundToDataLabel",value:function(t,e){var i=this.w,a=i.config.dataLabels.background,s=a.padding,r=a.padding/2,n=e.width,o=e.height,l=new b(this.ctx).drawRect(e.x-s,e.y-r/2,n+2*s,o+r,a.borderRadius,"transparent"===i.config.chart.background?"#fff":i.config.chart.background,a.opacity,a.borderWidth,a.borderColor);a.dropShadow.enabled&&new x(this.ctx).dropShadow(l,a.dropShadow);return l}},{key:"dataLabelsBackground",value:function(){var t=this.w;if("bubble"!==t.config.chart.type)for(var e=t.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels text"),i=0;i<e.length;i++){var a=e[i],s=a.getBBox(),r=null;if(s.width&&s.height&&(r=this.addBackgroundToDataLabel(a,s)),r){a.parentNode.insertBefore(r.node,a);var n=a.getAttribute("fill");t.config.chart.animations.enabled&&!t.globals.resized&&!t.globals.dataChanged?r.animate().attr({fill:n}):r.attr({fill:n}),a.setAttribute("fill",t.config.dataLabels.background.foreColor)}}}},{key:"bringForward",value:function(){for(var t=this.w,e=t.globals.dom.baseEl.querySelectorAll(".apexcharts-datalabels"),i=t.globals.dom.baseEl.querySelector(".apexcharts-plot-series:last-child"),a=0;a<e.length;a++)i&&i.insertBefore(e[a],i.nextSibling)}}]),t}(),I=function(){function t(i){e(this,t),this.w=i.w,this.barCtx=i}return a(t,[{key:"handleBarDataLabels",value:function(t){var e=t.x,i=t.y,a=t.y1,s=t.y2,r=t.i,n=t.j,o=t.realIndex,l=t.series,h=t.barHeight,c=t.barWidth,d=t.barYPosition,g=t.visibleSeries,u=t.renderedPath,f=this.w,p=new b(this.barCtx.ctx),x=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[o]:this.barCtx.strokeWidth,m=e+parseFloat(c*g),v=i+parseFloat(h*g);f.globals.isXNumeric&&!f.globals.isBarHorizontal&&(m=e+parseFloat(c*(g+1)),v=i+parseFloat(h*(g+1))-x);var y=e,w=i,k={},A=f.config.dataLabels,S=this.barCtx.barOptions.dataLabels;void 0!==d&&this.barCtx.isTimelineBar&&(v=d,w=d);var C=A.offsetX,L=A.offsetY,P={width:0,height:0};if(f.config.dataLabels.enabled){var T=this.barCtx.series[r][n];P=p.getTextRects(f.globals.yLabelFormatters[0](T),parseFloat(A.style.fontSize))}var z={x:e,y:i,i:r,j:n,renderedPath:u,bcx:m,bcy:v,barHeight:h,barWidth:c,textRects:P,strokeWidth:x,dataLabelsX:y,dataLabelsY:w,barDataLabelsConfig:S,offX:C,offY:L};return k=this.barCtx.isHorizontal?this.calculateBarsDataLabelsPosition(z):this.calculateColumnsDataLabelsPosition(z),u.attr({cy:k.bcy,cx:k.bcx,j:n,val:l[r][n],barHeight:h,barWidth:c}),this.drawCalculatedDataLabels({x:k.dataLabelsX,y:k.dataLabelsY,val:this.barCtx.isTimelineBar?[a,s]:l[r][n],i:o,j:n,barWidth:c,barHeight:h,textRects:P,dataLabelsConfig:A})}},{key:"calculateColumnsDataLabelsPosition",value:function(t){var e,i=this.w,a=t.i,s=t.j,r=t.y,n=t.bcx,o=t.barWidth,l=t.barHeight,h=t.textRects,c=t.dataLabelsY,d=t.barDataLabelsConfig,g=t.strokeWidth,u=t.offX,f=t.offY;l=Math.abs(l);var p="vertical"===i.config.plotOptions.bar.dataLabels.orientation;n-=g/2;var x=i.globals.gridWidth/i.globals.dataPoints;if(e=i.globals.isXNumeric?n-o/2+u:n-x+o/2+u,p){e=e+h.height/2-g/2-2}var b=this.barCtx.series[a][s]<0,m=r;switch(this.barCtx.isReversed&&(m=r-l+(b?2*l:0),r-=l),d.position){case"center":c=p?b?m+l/2+f:m+l/2-f:b?m-l/2+h.height/2+f:m+l/2+h.height/2-f;break;case"bottom":c=p?b?m+l+f:m+l-f:b?m-l+h.height+g+f:m+l-h.height/2+g-f;break;case"top":c=p?b?m+f:m-f:b?m-h.height/2-f:m+h.height+f}return i.config.chart.stacked||(c<0?c=0+g:c+h.height/3>i.globals.gridHeight&&(c=i.globals.gridHeight-g)),{bcx:n,bcy:r,dataLabelsX:e,dataLabelsY:c}}},{key:"calculateBarsDataLabelsPosition",value:function(t){var e=this.w,i=t.x,a=t.i,s=t.j,r=t.bcy,n=t.barHeight,o=t.barWidth,l=t.textRects,h=t.dataLabelsX,c=t.strokeWidth,d=t.barDataLabelsConfig,g=t.offX,u=t.offY,f=e.globals.gridHeight/e.globals.dataPoints;o=Math.abs(o);var p=r-(this.barCtx.isTimelineBar?0:f)+n/2+l.height/2+u-3,x=this.barCtx.series[a][s]<0,b=i;switch(this.barCtx.isReversed&&(b=i+o-(x?2*o:0),i=e.globals.gridWidth-o),d.position){case"center":h=x?b+o/2-g:Math.max(l.width/2,b-o/2)+g;break;case"bottom":h=x?b+o-c-Math.round(l.width/2)-g:b-o+c+Math.round(l.width/2)+g;break;case"top":h=x?b-c+Math.round(l.width/2)-g:b-c-Math.round(l.width/2)+g}return e.config.chart.stacked||(h<0?h=h+l.width+c:h+l.width/2>e.globals.gridWidth&&(h=e.globals.gridWidth-l.width-c)),{bcx:i,bcy:r,dataLabelsX:h,dataLabelsY:p}}},{key:"drawCalculatedDataLabels",value:function(t){var e=t.x,i=t.y,a=t.val,s=t.i,r=t.j,o=t.textRects,l=t.barHeight,h=t.barWidth,c=t.dataLabelsConfig,d=this.w,g="rotate(0)";"vertical"===d.config.plotOptions.bar.dataLabels.orientation&&(g="rotate(-90, ".concat(e,", ").concat(i,")"));var u=new z(this.barCtx.ctx),f=new b(this.barCtx.ctx),p=c.formatter,x=null,m=d.globals.collapsedSeriesIndices.indexOf(s)>-1;if(c.enabled&&!m){x=f.group({class:"apexcharts-data-labels",transform:g});var v="";void 0!==a&&(v=p(a,{seriesIndex:s,dataPointIndex:r,w:d})),0===a&&d.config.chart.stacked&&(v="");var y=d.globals.series[s][r]<=0,w=d.config.plotOptions.bar.dataLabels.position;if("vertical"===d.config.plotOptions.bar.dataLabels.orientation&&("top"===w&&(c.textAnchor=y?"end":"start"),"center"===w&&(c.textAnchor="middle"),"bottom"===w&&(c.textAnchor=y?"end":"start")),this.barCtx.isTimelineBar&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels)h<f.getTextRects(v,parseFloat(c.style.fontSize)).width&&(v="");d.config.chart.stacked&&this.barCtx.barOptions.dataLabels.hideOverflowingLabels&&(this.barCtx.isHorizontal?(h>0&&o.width/1.6>h||h<0&&o.width/1.6<h)&&(v=""):o.height/1.6>l&&(v=""));var k=n({},c);this.barCtx.isHorizontal&&a<0&&("start"===c.textAnchor?k.textAnchor="end":"end"===c.textAnchor&&(k.textAnchor="start")),u.plotDataLabelsText({x:e,y:i,text:v,i:s,j:r,parent:x,dataLabelsConfig:k,alwaysDrawDataLabel:!0,offsetCorrection:!0})}return x}}]),t}(),M=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.legendInactiveClass="legend-mouseover-inactive"}return a(t,[{key:"getAllSeriesEls",value:function(){return this.w.globals.dom.baseEl.getElementsByClassName("apexcharts-series")}},{key:"getSeriesByName",value:function(t){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner .apexcharts-series[seriesName='".concat(f.escapeString(t),"']"))}},{key:"isSeriesHidden",value:function(t){var e=this.getSeriesByName(t),i=parseInt(e.getAttribute("data:realIndex"),10);return{isHidden:e.classList.contains("apexcharts-series-collapsed"),realIndex:i}}},{key:"addCollapsedClassToSeries",value:function(t,e){var i=this.w;function a(i){for(var a=0;a<i.length;a++)i[a].index===e&&t.node.classList.add("apexcharts-series-collapsed")}a(i.globals.collapsedSeries),a(i.globals.ancillaryCollapsedSeries)}},{key:"toggleSeries",value:function(t){var e=this.isSeriesHidden(t);return this.ctx.legend.legendHelpers.toggleDataSeries(e.realIndex,e.isHidden),e.isHidden}},{key:"showSeries",value:function(t){var e=this.isSeriesHidden(t);e.isHidden&&this.ctx.legend.legendHelpers.toggleDataSeries(e.realIndex,!0)}},{key:"hideSeries",value:function(t){var e=this.isSeriesHidden(t);e.isHidden||this.ctx.legend.legendHelpers.toggleDataSeries(e.realIndex,!1)}},{key:"resetSeries",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=this.w,s=f.clone(a.globals.initialSeries);a.globals.previousPaths=[],i?(a.globals.collapsedSeries=[],a.globals.ancillaryCollapsedSeries=[],a.globals.collapsedSeriesIndices=[],a.globals.ancillaryCollapsedSeriesIndices=[]):s=this.emptyCollapsedSeries(s),a.config.series=s,t&&(e&&(a.globals.zoomed=!1,this.ctx.updateHelpers.revertDefaultAxisMinMax()),this.ctx.updateHelpers._updateSeries(s,a.config.chart.animations.dynamicAnimation.enabled))}},{key:"emptyCollapsedSeries",value:function(t){for(var e=this.w,i=0;i<t.length;i++)e.globals.collapsedSeriesIndices.indexOf(i)>-1&&(t[i].data=[]);return t}},{key:"toggleSeriesOnHover",value:function(t,e){var i=this.w,a=i.globals.dom.baseEl.querySelectorAll(".apexcharts-series, .apexcharts-datalabels");if("mousemove"===t.type){var s=parseInt(e.getAttribute("rel"),10)-1,r=null,n=null;i.globals.axisCharts||"radialBar"===i.config.chart.type?i.globals.axisCharts?(r=i.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(s,"']")),n=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels[data\\:realIndex='".concat(s,"']"))):r=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"']")):r=i.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(s+1,"'] path"));for(var o=0;o<a.length;o++)a[o].classList.add(this.legendInactiveClass);null!==r&&(i.globals.axisCharts||r.parentNode.classList.remove(this.legendInactiveClass),r.classList.remove(this.legendInactiveClass),null!==n&&n.classList.remove(this.legendInactiveClass))}else if("mouseout"===t.type)for(var l=0;l<a.length;l++)a[l].classList.remove(this.legendInactiveClass)}},{key:"highlightRangeInSeries",value:function(t,e){var i=this,a=this.w,s=a.globals.dom.baseEl.getElementsByClassName("apexcharts-heatmap-rect"),r=function(t){for(var e=0;e<s.length;e++)s[e].classList[t](i.legendInactiveClass)};if("mousemove"===t.type){var n=parseInt(e.getAttribute("rel"),10)-1;r("add"),function(t){for(var e=0;e<s.length;e++){var a=parseInt(s[e].getAttribute("val"),10);a>=t.from&&a<=t.to&&s[e].classList.remove(i.legendInactiveClass)}}(a.config.plotOptions.heatmap.colorScale.ranges[n])}else"mouseout"===t.type&&r("remove")}},{key:"getActiveConfigSeriesIndex",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"asc",i=this.w,a=0;if(i.config.series.length>1)for(var s=i.config.series.map((function(e,a){var s=!1;return t&&(s="bar"===i.config.series[a].type||"column"===i.config.series[a].type),e.data&&e.data.length>0&&!s?a:-1})),r="asc"===e?0:s.length-1;"asc"===e?r<s.length:r>=0;"asc"===e?r++:r--)if(-1!==s[r]){a=s[r];break}return a}},{key:"getPreviousPaths",value:function(){var t=this.w;function e(e,i,a){for(var s=e[i].childNodes,r={type:a,paths:[],realIndex:e[i].getAttribute("data:realIndex")},n=0;n<s.length;n++)if(s[n].hasAttribute("pathTo")){var o=s[n].getAttribute("pathTo");r.paths.push({d:o})}t.globals.previousPaths.push(r)}t.globals.previousPaths=[];["line","area","bar","rangebar","candlestick","radar"].forEach((function(i){for(var a,s=(a=i,t.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(a,"-series .apexcharts-series"))),r=0;r<s.length;r++)e(s,r,i)})),this.handlePrevBubbleScatterPaths("bubble"),this.handlePrevBubbleScatterPaths("scatter");var i=t.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t.config.chart.type," .apexcharts-series"));if(i.length>0)for(var a=function(e){for(var i=t.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t.config.chart.type," .apexcharts-series[data\\:realIndex='").concat(e,"'] rect")),a=[],s=function(t){var e=function(e){return i[t].getAttribute(e)},s={x:parseFloat(e("x")),y:parseFloat(e("y")),width:parseFloat(e("width")),height:parseFloat(e("height"))};a.push({rect:s,color:i[t].getAttribute("color")})},r=0;r<i.length;r++)s(r);t.globals.previousPaths.push(a)},s=0;s<i.length;s++)a(s);t.globals.axisCharts||(t.globals.previousPaths=t.globals.series)}},{key:"handlePrevBubbleScatterPaths",value:function(t){var e=this.w,i=e.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t,"-series .apexcharts-series"));if(i.length>0)for(var a=0;a<i.length;a++){for(var s=e.globals.dom.baseEl.querySelectorAll(".apexcharts-".concat(t,"-series .apexcharts-series[data\\:realIndex='").concat(a,"'] circle")),r=[],n=0;n<s.length;n++)r.push({x:s[n].getAttribute("cx"),y:s[n].getAttribute("cy"),r:s[n].getAttribute("r")});e.globals.previousPaths.push(r)}}},{key:"clearPreviousPaths",value:function(){var t=this.w;t.globals.previousPaths=[],t.globals.allSeriesCollapsed=!1}},{key:"handleNoData",value:function(){var t=this.w,e=t.config.noData,i=new b(this.ctx),a=t.globals.svgWidth/2,s=t.globals.svgHeight/2,r="middle";if(t.globals.noData=!0,t.globals.animationEnded=!0,"left"===e.align?(a=10,r="start"):"right"===e.align&&(a=t.globals.svgWidth-10,r="end"),"top"===e.verticalAlign?s=50:"bottom"===e.verticalAlign&&(s=t.globals.svgHeight-50),a+=e.offsetX,s=s+parseInt(e.style.fontSize,10)+2+e.offsetY,void 0!==e.text&&""!==e.text){var n=i.drawText({x:a,y:s,text:e.text,textAnchor:r,fontSize:e.style.fontSize,fontFamily:e.style.fontFamily,foreColor:e.style.color,opacity:1,class:"apexcharts-text-nodata"});t.globals.dom.Paper.add(n)}}},{key:"setNullSeriesToZeroValues",value:function(t){for(var e=this.w,i=0;i<t.length;i++)if(0===t[i].length)for(var a=0;a<t[e.globals.maxValsInArrayIndex].length;a++)t[i].push(0);return t}},{key:"hasAllSeriesEqualX",value:function(){for(var t=!0,e=this.w,i=this.filteredSeriesX(),a=0;a<i.length-1;a++)if(i[a][0]!==i[a+1][0]){t=!1;break}return e.globals.allSeriesHasEqualX=t,t}},{key:"filteredSeriesX",value:function(){var t=this.w.globals.seriesX.map((function(t){return t.length>0?t:[]}));return t}}]),t}(),E=function(){function t(i){e(this,t),this.w=i.w,this.barCtx=i}return a(t,[{key:"initVariables",value:function(t){var e=this.w;this.barCtx.series=t,this.barCtx.totalItems=0,this.barCtx.seriesLen=0,this.barCtx.visibleI=-1,this.barCtx.visibleItems=1;for(var i=0;i<t.length;i++)if(t[i].length>0&&(this.barCtx.seriesLen=this.barCtx.seriesLen+1,this.barCtx.totalItems+=t[i].length),e.globals.isXNumeric)for(var a=0;a<t[i].length;a++)e.globals.seriesX[i][a]>e.globals.minX&&e.globals.seriesX[i][a]<e.globals.maxX&&this.barCtx.visibleItems++;else this.barCtx.visibleItems=e.globals.dataPoints;0===this.barCtx.seriesLen&&(this.barCtx.seriesLen=1),this.barCtx.zeroSerieses=[],this.barCtx.radiusOnSeriesNumber=t.length-1,e.globals.comboCharts||this.checkZeroSeries({series:t})}},{key:"initialPositions",value:function(){var t,e,i,a,s,r,n,o,l=this.w,h=l.globals.dataPoints;this.barCtx.isTimelineBar&&(h=l.globals.labels.length);var c=this.barCtx.seriesLen;if(l.config.plotOptions.bar.rangeBarGroupRows&&(c=1),this.barCtx.isHorizontal)s=(i=l.globals.gridHeight/h)/c,l.globals.isXNumeric&&(s=(i=l.globals.gridHeight/this.barCtx.totalItems)/this.barCtx.seriesLen),s=s*parseInt(this.barCtx.barOptions.barHeight,10)/100,o=this.barCtx.baseLineInvertedY+l.globals.padHorizontal+(this.barCtx.isReversed?l.globals.gridWidth:0)-(this.barCtx.isReversed?2*this.barCtx.baseLineInvertedY:0),e=(i-s*this.barCtx.seriesLen)/2;else{if(a=l.globals.gridWidth/this.barCtx.visibleItems,l.config.xaxis.convertedCatToNumeric&&(a=l.globals.gridWidth/l.globals.dataPoints),r=a/this.barCtx.seriesLen*parseInt(this.barCtx.barOptions.columnWidth,10)/100,l.globals.isXNumeric){var d=this.barCtx.xRatio;l.config.xaxis.convertedCatToNumeric&&(d=this.barCtx.initialXRatio),l.globals.minXDiff&&.5!==l.globals.minXDiff&&l.globals.minXDiff/d>0&&(a=l.globals.minXDiff/d),(r=a/this.barCtx.seriesLen*parseInt(this.barCtx.barOptions.columnWidth,10)/100)<1&&(r=1)}n=l.globals.gridHeight-this.barCtx.baseLineY[this.barCtx.yaxisIndex]-(this.barCtx.isReversed?l.globals.gridHeight:0)+(this.barCtx.isReversed?2*this.barCtx.baseLineY[this.barCtx.yaxisIndex]:0),t=l.globals.padHorizontal+(a-r*this.barCtx.seriesLen)/2}return{x:t,y:e,yDivision:i,xDivision:a,barHeight:s,barWidth:r,zeroH:n,zeroW:o}}},{key:"getPathFillColor",value:function(t,e,i,a){var s=this.w,r=new L(this.barCtx.ctx),n=null,o=this.barCtx.barOptions.distributed?i:e;this.barCtx.barOptions.colors.ranges.length>0&&this.barCtx.barOptions.colors.ranges.map((function(a){t[e][i]>=a.from&&t[e][i]<=a.to&&(n=a.color)}));return s.config.series[e].data[i]&&s.config.series[e].data[i].fillColor&&(n=s.config.series[e].data[i].fillColor),r.fillPath({seriesNumber:this.barCtx.barOptions.distributed?o:a,dataPointIndex:i,color:n,value:t[e][i]})}},{key:"getStrokeWidth",value:function(t,e,i){var a=0,s=this.w;return void 0===this.barCtx.series[t][e]||null===this.barCtx.series[t][e]?this.barCtx.isNullValue=!0:this.barCtx.isNullValue=!1,s.config.stroke.show&&(this.barCtx.isNullValue||(a=Array.isArray(this.barCtx.strokeWidth)?this.barCtx.strokeWidth[i]:this.barCtx.strokeWidth)),a}},{key:"barBackground",value:function(t){var e=t.j,i=t.i,a=t.x1,s=t.x2,r=t.y1,n=t.y2,o=t.elSeries,l=this.w,h=new b(this.barCtx.ctx),c=new M(this.barCtx.ctx).getActiveConfigSeriesIndex();if(this.barCtx.barOptions.colors.backgroundBarColors.length>0&&c===i){e>=this.barCtx.barOptions.colors.backgroundBarColors.length&&(e-=this.barCtx.barOptions.colors.backgroundBarColors.length);var d=this.barCtx.barOptions.colors.backgroundBarColors[e],g=h.drawRect(void 0!==a?a:0,void 0!==r?r:0,void 0!==s?s:l.globals.gridWidth,void 0!==n?n:l.globals.gridHeight,this.barCtx.barOptions.colors.backgroundBarRadius,d,this.barCtx.barOptions.colors.backgroundBarOpacity);o.add(g),g.node.classList.add("apexcharts-backgroundBar")}}},{key:"getColumnPaths",value:function(t){var e=t.barWidth,i=t.barXPosition,a=t.yRatio,s=t.y1,r=t.y2,n=t.strokeWidth,o=t.series,l=t.realIndex,h=t.i,c=t.j,d=t.w,g=new b(this.barCtx.ctx);(n=Array.isArray(n)?n[l]:n)||(n=0);var u={barWidth:e,strokeWidth:n,yRatio:a,barXPosition:i,y1:s,y2:r},f=this.getRoundedBars(d,u,o,h,c),p=i,x=i+e,m=g.move(p,s),v=g.move(p,s),y=g.line(x-n,s);return d.globals.previousPaths.length>0&&(v=this.barCtx.getPreviousPath(l,c,!1)),m=m+g.line(p,f.y2)+f.pathWithRadius+g.line(x-n,f.y2)+y+y+"z",v=v+g.line(p,s)+y+y+y+y+y+g.line(p,s),d.config.chart.stacked&&(this.barCtx.yArrj.push(f.y2),this.barCtx.yArrjF.push(Math.abs(s-f.y2)),this.barCtx.yArrjVal.push(this.barCtx.series[h][c])),{pathTo:m,pathFrom:v}}},{key:"getBarpaths",value:function(t){var e=t.barYPosition,i=t.barHeight,a=t.x1,s=t.x2,r=t.strokeWidth,n=t.series,o=t.realIndex,l=t.i,h=t.j,c=t.w,d=new b(this.barCtx.ctx);(r=Array.isArray(r)?r[o]:r)||(r=0);var g={barHeight:i,strokeWidth:r,barYPosition:e,x2:s,x1:a},u=this.getRoundedBars(c,g,n,l,h),f=d.move(a,e),p=d.move(a,e);c.globals.previousPaths.length>0&&(p=this.barCtx.getPreviousPath(o,h,!1));var x=e,m=e+i,v=d.line(a,m-r);return f=f+d.line(u.x2,x)+u.pathWithRadius+d.line(u.x2,m-r)+v+v+"z",p=p+d.line(a,x)+v+v+v+v+v+d.line(a,x),c.config.chart.stacked&&(this.barCtx.xArrj.push(u.x2),this.barCtx.xArrjF.push(Math.abs(a-u.x2)),this.barCtx.xArrjVal.push(this.barCtx.series[l][h])),{pathTo:f,pathFrom:p}}},{key:"getRoundedBars",value:function(t,e,i,a,s){var r=new b(this.barCtx.ctx),n=t.config.plotOptions.bar.borderRadius;if(t.config.chart.stacked&&i.length>1&&a!==this.barCtx.radiusOnSeriesNumber&&(n=0),this.barCtx.isHorizontal){var o="",l=e.x2;if(Math.abs(e.x1-e.x2)<n&&(n=Math.abs(e.x1-e.x2)),void 0!==i[a][s]||null!==i[a][s]){var h=this.barCtx.isReversed?i[a][s]>0:i[a][s]<0;h&&(n*=-1),l-=n,o=r.quadraticCurve(l+n,e.barYPosition,l+n,e.barYPosition+(h?-1*n:n))+r.line(l+n,e.barYPosition+e.barHeight-e.strokeWidth-(h?-1*n:n))+r.quadraticCurve(l+n,e.barYPosition+e.barHeight-e.strokeWidth,l,e.barYPosition+e.barHeight-e.strokeWidth)}return{pathWithRadius:o,x2:l}}var c="",d=e.y2;if(Math.abs(e.y1-e.y2)<n&&(n=Math.abs(e.y1-e.y2)),void 0!==i[a][s]||null!==i[a][s]){var g=i[a][s]<0;g&&(n*=-1),d+=n,c=r.quadraticCurve(e.barXPosition,d-n,e.barXPosition+(g?-1*n:n),d-n)+r.line(e.barXPosition+e.barWidth-e.strokeWidth-(g?-1*n:n),d-n)+r.quadraticCurve(e.barXPosition+e.barWidth-e.strokeWidth,d-n,e.barXPosition+e.barWidth-e.strokeWidth,d)}return{pathWithRadius:c,y2:d}}},{key:"checkZeroSeries",value:function(t){for(var e=t.series,i=this.w,a=0;a<e.length;a++){for(var s=0,r=0;r<e[i.globals.maxValsInArrayIndex].length;r++)s+=e[a][r];0===s&&this.barCtx.zeroSerieses.push(a)}for(var n=e.length-1;n>=0;n--)this.barCtx.zeroSerieses.indexOf(n)>-1&&n===this.radiusOnSeriesNumber&&(this.barCtx.radiusOnSeriesNumber-=1);for(var o=e.length-1;o>=0;o--)i.globals.collapsedSeriesIndices.indexOf(this.barCtx.radiusOnSeriesNumber)>-1&&(this.barCtx.radiusOnSeriesNumber-=1)}}]),t}(),X=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w;var s=this.w;this.barOptions=s.config.plotOptions.bar,this.isHorizontal=this.barOptions.horizontal,this.strokeWidth=s.config.stroke.width,this.isNullValue=!1,this.isTimelineBar="datetime"===s.config.xaxis.type&&s.globals.seriesRangeBarTimeline.length,this.xyRatios=a,null!==this.xyRatios&&(this.xRatio=a.xRatio,this.initialXRatio=a.initialXRatio,this.yRatio=a.yRatio,this.invertedXRatio=a.invertedXRatio,this.invertedYRatio=a.invertedYRatio,this.baseLineY=a.baseLineY,this.baseLineInvertedY=a.baseLineInvertedY),this.yaxisIndex=0,this.seriesLen=0,this.barHelpers=new E(this)}return a(t,[{key:"draw",value:function(t,e){var i=this.w,a=new b(this.ctx),s=new y(this.ctx,i);t=s.getLogSeries(t),this.series=t,this.yRatio=s.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t);var r=a.group({class:"apexcharts-bar-series apexcharts-plot-series"});i.config.dataLabels.enabled&&this.totalItems>this.barOptions.dataLabels.maxItems&&console.warn("WARNING: DataLabels are enabled but there are too many to display. This may cause performance issue when rendering.");for(var o=0,l=0;o<t.length;o++,l++){var h,c,d,g,u=void 0,p=void 0,x=[],m=[],v=i.globals.comboCharts?e[o]:o,w=a.group({class:"apexcharts-series",rel:o+1,seriesName:f.escapeString(i.globals.seriesNames[v]),"data:realIndex":v});this.ctx.series.addCollapsedClassToSeries(w,v),t[o].length>0&&(this.visibleI=this.visibleI+1);var k=0,A=0;this.yRatio.length>1&&(this.yaxisIndex=v),this.isReversed=i.config.yaxis[this.yaxisIndex]&&i.config.yaxis[this.yaxisIndex].reversed;var S=this.barHelpers.initialPositions();p=S.y,k=S.barHeight,c=S.yDivision,g=S.zeroW,u=S.x,A=S.barWidth,h=S.xDivision,d=S.zeroH,this.horizontal||m.push(u+A/2);for(var C=a.group({class:"apexcharts-datalabels","data:realIndex":v}),L=0;L<i.globals.dataPoints;L++){var P=this.barHelpers.getStrokeWidth(o,L,v),T=null,z={indexes:{i:o,j:L,realIndex:v,bc:l},x:u,y:p,strokeWidth:P,elSeries:w};this.isHorizontal?(T=this.drawBarPaths(n(n({},z),{},{barHeight:k,zeroW:g,yDivision:c})),A=this.series[o][L]/this.invertedYRatio):(T=this.drawColumnPaths(n(n({},z),{},{xDivision:h,barWidth:A,zeroH:d})),k=this.series[o][L]/this.yRatio[this.yaxisIndex]),p=T.y,u=T.x,L>0&&m.push(u+A/2),x.push(p);var I=this.barHelpers.getPathFillColor(t,o,L,v);this.renderSeries({realIndex:v,pathFill:I,j:L,i:o,pathFrom:T.pathFrom,pathTo:T.pathTo,strokeWidth:P,elSeries:w,x:u,y:p,series:t,barHeight:k,barWidth:A,elDataLabelsWrap:C,visibleSeries:this.visibleI,type:"bar"})}i.globals.seriesXvalues[v]=m,i.globals.seriesYvalues[v]=x,r.add(w)}return r}},{key:"renderSeries",value:function(t){var e=t.realIndex,i=t.pathFill,a=t.lineFill,s=t.j,r=t.i,n=t.pathFrom,o=t.pathTo,l=t.strokeWidth,h=t.elSeries,c=t.x,d=t.y,g=t.y1,u=t.y2,f=t.series,p=t.barHeight,m=t.barWidth,v=t.barYPosition,y=t.elDataLabelsWrap,w=t.visibleSeries,k=t.type,A=this.w,S=new b(this.ctx);a||(a=this.barOptions.distributed?A.globals.stroke.colors[s]:A.globals.stroke.colors[e]),A.config.series[r].data[s]&&A.config.series[r].data[s].strokeColor&&(a=A.config.series[r].data[s].strokeColor),this.isNullValue&&(i="none");var C=s/A.config.chart.animations.animateGradually.delay*(A.config.chart.animations.speed/A.globals.dataPoints)/2.4,L=S.renderPaths({i:r,j:s,realIndex:e,pathFrom:n,pathTo:o,stroke:a,strokeWidth:l,strokeLineCap:A.config.stroke.lineCap,fill:i,animationDelay:C,initialSpeed:A.config.chart.animations.speed,dataChangeSpeed:A.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(k,"-area")});L.attr("clip-path","url(#gridRectMask".concat(A.globals.cuid,")")),void 0!==g&&void 0!==u&&(L.attr("data-range-y1",g),L.attr("data-range-y2",u)),new x(this.ctx).setSelectionFilter(L,e,s),h.add(L);var P=new I(this).handleBarDataLabels({x:c,y:d,y1:g,y2:u,i:r,j:s,series:f,realIndex:e,barHeight:p,barWidth:m,barYPosition:v,renderedPath:L,visibleSeries:w});return null!==P&&y.add(P),h.add(y),h}},{key:"drawBarPaths",value:function(t){var e=t.indexes,i=t.barHeight,a=t.strokeWidth,s=t.zeroW,r=t.x,n=t.y,o=t.yDivision,l=t.elSeries,h=this.w,c=e.i,d=e.j;h.globals.isXNumeric&&(n=(h.globals.seriesX[c][d]-h.globals.minX)/this.invertedXRatio-i);var g=n+i*this.visibleI;r=void 0===this.series[c][d]||null===this.series[c][d]?s:s+this.series[c][d]/this.invertedYRatio-2*(this.isReversed?this.series[c][d]/this.invertedYRatio:0);var u=this.barHelpers.getBarpaths({barYPosition:g,barHeight:i,x1:s,x2:r,strokeWidth:a,series:this.series,realIndex:e.realIndex,i:c,j:d,w:h});return h.globals.isXNumeric||(n+=o),this.barHelpers.barBackground({j:d,i:c,y1:g-i*this.visibleI,y2:i*this.seriesLen,elSeries:l}),{pathTo:u.pathTo,pathFrom:u.pathFrom,x:r,y:n,barYPosition:g}}},{key:"drawColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,n=t.zeroH,o=t.strokeWidth,l=t.elSeries,h=this.w,c=e.realIndex,d=e.i,g=e.j,u=e.bc;if(h.globals.isXNumeric){var f=c;h.globals.seriesX[c].length||(f=h.globals.maxValsInArrayIndex),i=(h.globals.seriesX[f][g]-h.globals.minX)/this.xRatio-r*this.seriesLen/2}var p=i+r*this.visibleI;a=void 0===this.series[d][g]||null===this.series[d][g]?n:n-this.series[d][g]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[d][g]/this.yRatio[this.yaxisIndex]:0);var x=this.barHelpers.getColumnPaths({barXPosition:p,barWidth:r,y1:n,y2:a,strokeWidth:o,series:this.series,realIndex:e.realIndex,i:d,j:g,w:h});return h.globals.isXNumeric||(i+=s),this.barHelpers.barBackground({bc:u,j:g,i:d,x1:p-o/2-r*this.visibleI,x2:r*this.seriesLen+o/2,elSeries:l}),{pathTo:x.pathTo,pathFrom:x.pathFrom,x:i,y:a,barXPosition:p}}},{key:"getPreviousPath",value:function(t,e){for(var i,a=this.w,s=0;s<a.globals.previousPaths.length;s++){var r=a.globals.previousPaths[s];r.paths&&r.paths.length>0&&parseInt(r.realIndex,10)===parseInt(t,10)&&void 0!==a.globals.previousPaths[s].paths[e]&&(i=a.globals.previousPaths[s].paths[e].d)}return i}}]),t}(),Y=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.months31=[1,3,5,7,8,10,12],this.months30=[2,4,6,9,11],this.daysCntOfYear=[0,31,59,90,120,151,181,212,243,273,304,334]}return a(t,[{key:"isValidDate",value:function(t){return!isNaN(this.parseDate(t))}},{key:"getTimeStamp",value:function(t){return Date.parse(t)?this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(t).toISOString().substr(0,25)).getTime():new Date(t).getTime():t}},{key:"getDate",value:function(t){return this.w.config.xaxis.labels.datetimeUTC?new Date(new Date(t).toUTCString()):new Date(t)}},{key:"parseDate",value:function(t){var e=Date.parse(t);if(!isNaN(e))return this.getTimeStamp(t);var i=Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "));return i=this.getTimeStamp(i)}},{key:"parseDateWithTimezone",value:function(t){return Date.parse(t.replace(/-/g,"/").replace(/[a-z]+/gi," "))}},{key:"formatDate",value:function(t,e){var i=this.w.globals.locale,a=this.w.config.xaxis.labels.datetimeUTC,s=["\0"].concat(g(i.months)),r=["\x01"].concat(g(i.shortMonths)),n=["\x02"].concat(g(i.days)),o=["\x03"].concat(g(i.shortDays));function l(t,e){var i=t+"";for(e=e||2;i.length<e;)i="0"+i;return i}var h=a?t.getUTCFullYear():t.getFullYear();e=(e=(e=e.replace(/(^|[^\\])yyyy+/g,"$1"+h)).replace(/(^|[^\\])yy/g,"$1"+h.toString().substr(2,2))).replace(/(^|[^\\])y/g,"$1"+h);var c=(a?t.getUTCMonth():t.getMonth())+1;e=(e=(e=(e=e.replace(/(^|[^\\])MMMM+/g,"$1"+s[0])).replace(/(^|[^\\])MMM/g,"$1"+r[0])).replace(/(^|[^\\])MM/g,"$1"+l(c))).replace(/(^|[^\\])M/g,"$1"+c);var d=a?t.getUTCDate():t.getDate();e=(e=(e=(e=e.replace(/(^|[^\\])dddd+/g,"$1"+n[0])).replace(/(^|[^\\])ddd/g,"$1"+o[0])).replace(/(^|[^\\])dd/g,"$1"+l(d))).replace(/(^|[^\\])d/g,"$1"+d);var u=a?t.getUTCHours():t.getHours(),f=u>12?u-12:0===u?12:u;e=(e=(e=(e=e.replace(/(^|[^\\])HH+/g,"$1"+l(u))).replace(/(^|[^\\])H/g,"$1"+u)).replace(/(^|[^\\])hh+/g,"$1"+l(f))).replace(/(^|[^\\])h/g,"$1"+f);var p=a?t.getUTCMinutes():t.getMinutes();e=(e=e.replace(/(^|[^\\])mm+/g,"$1"+l(p))).replace(/(^|[^\\])m/g,"$1"+p);var x=a?t.getUTCSeconds():t.getSeconds();e=(e=e.replace(/(^|[^\\])ss+/g,"$1"+l(x))).replace(/(^|[^\\])s/g,"$1"+x);var b=a?t.getUTCMilliseconds():t.getMilliseconds();e=e.replace(/(^|[^\\])fff+/g,"$1"+l(b,3)),b=Math.round(b/10),e=e.replace(/(^|[^\\])ff/g,"$1"+l(b)),b=Math.round(b/10);var m=u<12?"AM":"PM";e=(e=(e=e.replace(/(^|[^\\])f/g,"$1"+b)).replace(/(^|[^\\])TT+/g,"$1"+m)).replace(/(^|[^\\])T/g,"$1"+m.charAt(0));var v=m.toLowerCase();e=(e=e.replace(/(^|[^\\])tt+/g,"$1"+v)).replace(/(^|[^\\])t/g,"$1"+v.charAt(0));var y=-t.getTimezoneOffset(),w=a||!y?"Z":y>0?"+":"-";if(!a){var k=(y=Math.abs(y))%60;w+=l(Math.floor(y/60))+":"+l(k)}e=e.replace(/(^|[^\\])K/g,"$1"+w);var A=(a?t.getUTCDay():t.getDay())+1;return e=(e=(e=(e=(e=e.replace(new RegExp(n[0],"g"),n[A])).replace(new RegExp(o[0],"g"),o[A])).replace(new RegExp(s[0],"g"),s[c])).replace(new RegExp(r[0],"g"),r[c])).replace(/\\(.)/g,"$1")}},{key:"getTimeUnitsfromTimestamp",value:function(t,e,i){var a=this.w;void 0!==a.config.xaxis.min&&(t=a.config.xaxis.min),void 0!==a.config.xaxis.max&&(e=a.config.xaxis.max);var s=this.getDate(t),r=this.getDate(e),n=this.formatDate(s,"yyyy MM dd HH mm ss fff").split(" "),o=this.formatDate(r,"yyyy MM dd HH mm ss fff").split(" ");return{minMillisecond:parseInt(n[6],10),maxMillisecond:parseInt(o[6],10),minSecond:parseInt(n[5],10),maxSecond:parseInt(o[5],10),minMinute:parseInt(n[4],10),maxMinute:parseInt(o[4],10),minHour:parseInt(n[3],10),maxHour:parseInt(o[3],10),minDate:parseInt(n[2],10),maxDate:parseInt(o[2],10),minMonth:parseInt(n[1],10)-1,maxMonth:parseInt(o[1],10)-1,minYear:parseInt(n[0],10),maxYear:parseInt(o[0],10)}}},{key:"isLeapYear",value:function(t){return t%4==0&&t%100!=0||t%400==0}},{key:"calculcateLastDaysOfMonth",value:function(t,e,i){return this.determineDaysOfMonths(t,e)-i}},{key:"determineDaysOfYear",value:function(t){var e=365;return this.isLeapYear(t)&&(e=366),e}},{key:"determineRemainingDaysOfYear",value:function(t,e,i){var a=this.daysCntOfYear[e]+i;return e>1&&this.isLeapYear()&&a++,a}},{key:"determineDaysOfMonths",value:function(t,e){var i=30;switch(t=f.monthMod(t),!0){case this.months30.indexOf(t)>-1:2===t&&(i=this.isLeapYear(e)?29:28);break;case this.months31.indexOf(t)>-1:default:i=31}return i}}]),t}(),F=function(t){o(s,t);var i=d(s);function s(){return e(this,s),i.apply(this,arguments)}return a(s,[{key:"draw",value:function(t,e){var i=this.w,a=new b(this.ctx);this.rangeBarOptions=this.w.config.plotOptions.rangeBar,this.series=t,this.seriesRangeStart=i.globals.seriesRangeStart,this.seriesRangeEnd=i.globals.seriesRangeEnd,this.barHelpers.initVariables(t);for(var s=a.group({class:"apexcharts-rangebar-series apexcharts-plot-series"}),r=0;r<t.length;r++){var o,l,h,c=void 0,d=void 0,g=void 0,u=i.globals.comboCharts?e[r]:r,p=a.group({class:"apexcharts-series",seriesName:f.escapeString(i.globals.seriesNames[u]),rel:r+1,"data:realIndex":u});t[r].length>0&&(this.visibleI=this.visibleI+1);var x=0,m=0;this.yRatio.length>1&&(this.yaxisIndex=u);var v=this.barHelpers.initialPositions();d=v.y,h=v.zeroW,c=v.x,m=v.barWidth,o=v.xDivision,l=v.zeroH;for(var y=a.group({class:"apexcharts-datalabels","data:realIndex":u}),w=0;w<i.globals.dataPoints;w++){var k=this.barHelpers.getStrokeWidth(r,w,u),A=this.seriesRangeStart[r][w],S=this.seriesRangeEnd[r][w],C=null,L=null,P={x:c,y:d,strokeWidth:k,elSeries:p};if(g=v.yDivision,x=v.barHeight,this.isHorizontal){L=d+x*this.visibleI;var T=this.seriesLen;i.config.plotOptions.bar.rangeBarGroupRows&&(T=1);var z=(g-x*T)/2;if(void 0===i.config.series[r].data[w])break;if(this.isTimelineBar&&i.config.series[r].data[w].x){var I=this.detectOverlappingBars({i:r,j:w,barYPosition:L,srty:z,barHeight:x,yDivision:g,initPositions:v});x=I.barHeight,L=I.barYPosition}m=(C=this.drawRangeBarPaths(n({indexes:{i:r,j:w,realIndex:u},barHeight:x,barYPosition:L,zeroW:h,yDivision:g,y1:A,y2:S},P))).barWidth}else x=(C=this.drawRangeColumnPaths(n({indexes:{i:r,j:w,realIndex:u},zeroH:l,barWidth:m,xDivision:o},P))).barHeight;d=C.y,c=C.x;var M=this.barHelpers.getPathFillColor(t,r,w,u),E=i.globals.stroke.colors[u];this.renderSeries({realIndex:u,pathFill:M,lineFill:E,j:w,i:r,x:c,y:d,y1:A,y2:S,pathFrom:C.pathFrom,pathTo:C.pathTo,strokeWidth:k,elSeries:p,series:t,barHeight:x,barYPosition:L,barWidth:m,elDataLabelsWrap:y,visibleSeries:this.visibleI,type:"rangebar"})}s.add(p)}return s}},{key:"detectOverlappingBars",value:function(t){var e=t.i,i=t.j,a=t.barYPosition,s=t.srty,r=t.barHeight,n=t.yDivision,o=t.initPositions,l=this.w,h=[],c=l.config.series[e].data[i].rangeName,d=l.config.series[e].data[i].x,g=l.globals.labels.indexOf(d),u=l.globals.seriesRangeBarTimeline[e].findIndex((function(t){return t.x===d&&t.overlaps.length>0}));return a=l.config.plotOptions.bar.rangeBarGroupRows?s+n*g:s+r*this.visibleI+n*g,u>-1&&!l.config.plotOptions.bar.rangeBarOverlap&&(h=l.globals.seriesRangeBarTimeline[e][u].overlaps).indexOf(c)>-1&&(a=(r=o.barHeight/h.length)*this.visibleI+n*(100-parseInt(this.barOptions.barHeight,10))/100/2+r*(this.visibleI+h.indexOf(c))+n*g),{barYPosition:a,barHeight:r}}},{key:"drawRangeColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=(t.strokeWidth,t.xDivision),s=t.barWidth,r=t.zeroH,n=this.w,o=e.i,l=e.j,h=this.yRatio[this.yaxisIndex],c=e.realIndex,d=this.getRangeValue(c,l),g=Math.min(d.start,d.end),u=Math.max(d.start,d.end);n.globals.isXNumeric&&(i=(n.globals.seriesX[o][l]-n.globals.minX)/this.xRatio-s/2);var f=i+s*this.visibleI;void 0===this.series[o][l]||null===this.series[o][l]?g=r:(g=r-g/h,u=r-u/h);var p=Math.abs(u-g),x=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:s,y1:g,y2:u,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,realIndex:e.realIndex,i:c,j:l,w:n});return n.globals.isXNumeric||(i+=a),{pathTo:x.pathTo,pathFrom:x.pathFrom,barHeight:p,x:i,y:u,barXPosition:f}}},{key:"drawRangeBarPaths",value:function(t){var e=t.indexes,i=t.y,a=t.y1,s=t.y2,r=t.yDivision,n=t.barHeight,o=t.barYPosition,l=t.zeroW,h=this.w,c=l+a/this.invertedYRatio,d=l+s/this.invertedYRatio,g=Math.abs(d-c),u=this.barHelpers.getBarpaths({barYPosition:o,barHeight:n,x1:c,x2:d,strokeWidth:this.strokeWidth,series:this.seriesRangeEnd,i:e.realIndex,realIndex:e.realIndex,j:e.j,w:h});return h.globals.isXNumeric||(i+=r),{pathTo:u.pathTo,pathFrom:u.pathFrom,barWidth:g,x:d,y:i}}},{key:"getRangeValue",value:function(t,e){var i=this.w;return{start:i.globals.seriesRangeStart[t][e],end:i.globals.seriesRangeEnd[t][e]}}},{key:"getTooltipValues",value:function(t){var e=t.ctx,i=t.seriesIndex,a=t.dataPointIndex,s=t.y1,r=t.y2,n=t.w,o=n.globals.seriesRangeStart[i][a],l=n.globals.seriesRangeEnd[i][a],h=n.globals.labels[a],c=n.config.series[i].name?n.config.series[i].name:"",d=n.config.tooltip.y.formatter,g=n.config.tooltip.y.title.formatter,u={w:n,seriesIndex:i,dataPointIndex:a,start:o,end:l};"function"==typeof g&&(c=g(c,u)),Number.isFinite(s)&&Number.isFinite(r)&&(o=s,l=r,n.config.series[i].data[a].x&&(h=n.config.series[i].data[a].x+":"),"function"==typeof d&&(h=d(h,u)));var f="",p="",x=n.globals.colors[i];if(void 0===n.config.tooltip.x.formatter)if("datetime"===n.config.xaxis.type){var b=new Y(e);f=b.formatDate(b.getDate(o),n.config.tooltip.x.format),p=b.formatDate(b.getDate(l),n.config.tooltip.x.format)}else f=o,p=l;else f=n.config.tooltip.x.formatter(o),p=n.config.tooltip.x.formatter(l);return{start:o,end:l,startVal:f,endVal:p,ylabel:h,color:x,seriesName:c}}},{key:"buildCustomTooltipHTML",value:function(t){var e=t.color,i=t.seriesName;return'<div class="apexcharts-tooltip-rangebar"><div> <span class="series-name" style="color: '+e+'">'+(i||"")+'</span></div><div> <span class="category">'+t.ylabel+' </span> <span class="value start-value">'+t.start+'</span> <span class="separator">-</span> <span class="value end-value">'+t.end+"</span></div></div>"}}]),s}(X),R=function(){function t(i){e(this,t),this.opts=i}return a(t,[{key:"line",value:function(){return{chart:{animations:{easing:"swing"}},dataLabels:{enabled:!1},stroke:{width:5,curve:"straight"},markers:{size:0,hover:{sizeOffset:6}},xaxis:{crosshairs:{width:1}}}}},{key:"sparkline",value:function(t){this.opts.yaxis[0].show=!1,this.opts.yaxis[0].title.text="",this.opts.yaxis[0].axisBorder.show=!1,this.opts.yaxis[0].axisTicks.show=!1,this.opts.yaxis[0].floating=!0;return f.extend(t,{grid:{show:!1,padding:{left:0,right:0,top:0,bottom:0}},legend:{show:!1},xaxis:{labels:{show:!1},tooltip:{enabled:!1},axisBorder:{show:!1},axisTicks:{show:!1}},chart:{toolbar:{show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1}})}},{key:"bar",value:function(){return{chart:{stacked:!1,animations:{easing:"swing"}},plotOptions:{bar:{dataLabels:{position:"center"}}},dataLabels:{style:{colors:["#fff"]},background:{enabled:!1}},stroke:{width:0,lineCap:"round"},fill:{opacity:.85},legend:{markers:{shape:"square",radius:2,size:8}},tooltip:{shared:!1,intersect:!0},xaxis:{tooltip:{enabled:!1},tickPlacement:"between",crosshairs:{width:"barWidth",position:"back",fill:{type:"gradient"},dropShadow:{enabled:!1},stroke:{width:0}}}}}},{key:"candlestick",value:function(){var t=this;return{stroke:{width:1,colors:["#333"]},fill:{opacity:1},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(e){var i=e.seriesIndex,a=e.dataPointIndex,s=e.w;return t._getBoxTooltip(s,i,a,["Open","High","","Low","Close"],"candlestick")}},states:{active:{filter:{type:"none"}}},xaxis:{crosshairs:{width:1}}}}},{key:"boxPlot",value:function(){var t=this;return{chart:{animations:{dynamicAnimation:{enabled:!1}}},stroke:{width:1,colors:["#24292e"]},dataLabels:{enabled:!1},tooltip:{shared:!0,custom:function(e){var i=e.seriesIndex,a=e.dataPointIndex,s=e.w;return t._getBoxTooltip(s,i,a,["Minimum","Q1","Median","Q3","Maximum"],"boxPlot")}},markers:{size:5,strokeWidth:1,strokeColors:"#111"},xaxis:{crosshairs:{width:1}}}}},{key:"rangeBar",value:function(){return{stroke:{width:0,lineCap:"square"},plotOptions:{bar:{borderRadius:0,dataLabels:{position:"center"}}},dataLabels:{enabled:!1,formatter:function(t,e){e.ctx;var i=e.seriesIndex,a=e.dataPointIndex,s=e.w,r=s.globals.seriesRangeStart[i][a];return s.globals.seriesRangeEnd[i][a]-r},background:{enabled:!1},style:{colors:["#fff"]}},tooltip:{shared:!1,followCursor:!0,custom:function(t){return t.w.config.plotOptions&&t.w.config.plotOptions.bar&&t.w.config.plotOptions.bar.horizontal?function(t){var e=new F(t.ctx,null),i=e.getTooltipValues(t),a=i.color,s=i.seriesName,r=i.ylabel,n=i.startVal,o=i.endVal;return e.buildCustomTooltipHTML({color:a,seriesName:s,ylabel:r,start:n,end:o})}(t):function(t){var e=new F(t.ctx,null),i=e.getTooltipValues(t),a=i.color,s=i.seriesName,r=i.ylabel,n=i.start,o=i.end;return e.buildCustomTooltipHTML({color:a,seriesName:s,ylabel:r,start:n,end:o})}(t)}},xaxis:{tickPlacement:"between",tooltip:{enabled:!1},crosshairs:{stroke:{width:0}}}}}},{key:"area",value:function(){return{stroke:{width:4},fill:{type:"gradient",gradient:{inverseColors:!1,shade:"light",type:"vertical",opacityFrom:.65,opacityTo:.5,stops:[0,100,100]}},markers:{size:0,hover:{sizeOffset:6}},tooltip:{followCursor:!1}}}},{key:"brush",value:function(t){return f.extend(t,{chart:{toolbar:{autoSelected:"selection",show:!1},zoom:{enabled:!1}},dataLabels:{enabled:!1},stroke:{width:1},tooltip:{enabled:!1},xaxis:{tooltip:{enabled:!1}}})}},{key:"stacked100",value:function(t){t.dataLabels=t.dataLabels||{},t.dataLabels.formatter=t.dataLabels.formatter||void 0;var e=t.dataLabels.formatter;return t.yaxis.forEach((function(e,i){t.yaxis[i].min=0,t.yaxis[i].max=100})),"bar"===t.chart.type&&(t.dataLabels.formatter=e||function(t){return"number"==typeof t&&t?t.toFixed(0)+"%":t}),t}},{key:"convertCatToNumeric",value:function(t){return t.xaxis.convertedCatToNumeric=!0,t}},{key:"convertCatToNumericXaxis",value:function(t,e,i){t.xaxis.type="numeric",t.xaxis.labels=t.xaxis.labels||{},t.xaxis.labels.formatter=t.xaxis.labels.formatter||function(t){return f.isNumber(t)?Math.floor(t):t};var a=t.xaxis.labels.formatter,s=t.xaxis.categories&&t.xaxis.categories.length?t.xaxis.categories:t.labels;return i&&i.length&&(s=i.map((function(t){return Array.isArray(t)?t:String(t)}))),s&&s.length&&(t.xaxis.labels.formatter=function(t){return f.isNumber(t)?a(s[Math.floor(t)-1]):a(t)}),t.xaxis.categories=[],t.labels=[],t.xaxis.tickAmount=t.xaxis.tickAmount||"dataPoints",t}},{key:"bubble",value:function(){return{dataLabels:{style:{colors:["#fff"]}},tooltip:{shared:!1,intersect:!0},xaxis:{crosshairs:{width:0}},fill:{type:"solid",gradient:{shade:"light",inverse:!0,shadeIntensity:.55,opacityFrom:.4,opacityTo:.8}}}}},{key:"scatter",value:function(){return{dataLabels:{enabled:!1},tooltip:{shared:!1,intersect:!0},markers:{size:6,strokeWidth:1,hover:{sizeOffset:2}}}}},{key:"heatmap",value:function(){return{chart:{stacked:!1},fill:{opacity:1},dataLabels:{style:{colors:["#fff"]}},stroke:{colors:["#fff"]},tooltip:{followCursor:!0,marker:{show:!1},x:{show:!1}},legend:{position:"top",markers:{shape:"square",size:10,offsetY:2}},grid:{padding:{right:20}}}}},{key:"treemap",value:function(){return{chart:{zoom:{enabled:!1}},dataLabels:{style:{fontSize:14,fontWeight:600,colors:["#fff"]}},stroke:{show:!0,width:2,colors:["#fff"]},legend:{show:!1},fill:{gradient:{stops:[0,100]}},tooltip:{followCursor:!0,x:{show:!1}},grid:{padding:{left:0,right:0}},xaxis:{crosshairs:{show:!1},tooltip:{enabled:!1}}}}},{key:"pie",value:function(){return{chart:{toolbar:{show:!1}},plotOptions:{pie:{donut:{labels:{show:!1}}}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",stops:[0,100]}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"donut",value:function(){return{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},style:{colors:["#fff"]},background:{enabled:!1},dropShadow:{enabled:!0}},stroke:{colors:["#fff"]},fill:{opacity:1,gradient:{shade:"light",shadeIntensity:.35,stops:[80,100],opacityFrom:1,opacityTo:1}},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"polarArea",value:function(){return this.opts.yaxis[0].tickAmount=this.opts.yaxis[0].tickAmount?this.opts.yaxis[0].tickAmount:6,{chart:{toolbar:{show:!1}},dataLabels:{formatter:function(t){return t.toFixed(1)+"%"},enabled:!1},stroke:{show:!0,width:2},fill:{opacity:.7},tooltip:{theme:"dark",fillSeriesColor:!0},legend:{position:"right"}}}},{key:"radar",value:function(){return this.opts.yaxis[0].labels.offsetY=this.opts.yaxis[0].labels.offsetY?this.opts.yaxis[0].labels.offsetY:6,{dataLabels:{enabled:!1,style:{fontSize:"11px"}},stroke:{width:2},markers:{size:3,strokeWidth:1,strokeOpacity:1},fill:{opacity:.2},tooltip:{shared:!1,intersect:!0,followCursor:!0},grid:{show:!1},xaxis:{labels:{formatter:function(t){return t},style:{colors:["#a8a8a8"],fontSize:"11px"}},tooltip:{enabled:!1},crosshairs:{show:!1}}}}},{key:"radialBar",value:function(){return{chart:{animations:{dynamicAnimation:{enabled:!0,speed:800}},toolbar:{show:!1}},fill:{gradient:{shade:"dark",shadeIntensity:.4,inverseColors:!1,type:"diagonal2",opacityFrom:1,opacityTo:1,stops:[70,98,100]}},legend:{show:!1,position:"right"},tooltip:{enabled:!1,fillSeriesColor:!0}}}},{key:"_getBoxTooltip",value:function(t,e,i,a,s){var r=t.globals.seriesCandleO[e][i],n=t.globals.seriesCandleH[e][i],o=t.globals.seriesCandleM[e][i],l=t.globals.seriesCandleL[e][i],h=t.globals.seriesCandleC[e][i];return t.config.series[e].type&&t.config.series[e].type!==s?'<div class="apexcharts-custom-tooltip">\n '.concat(t.config.series[e].name?t.config.series[e].name:"series-"+(e+1),": <strong>").concat(t.globals.series[e][i],"</strong>\n </div>"):'<div class="apexcharts-tooltip-box apexcharts-tooltip-'.concat(t.config.chart.type,'">')+"<div>".concat(a[0],': <span class="value">')+r+"</span></div>"+"<div>".concat(a[1],': <span class="value">')+n+"</span></div>"+(o?"<div>".concat(a[2],': <span class="value">')+o+"</span></div>":"")+"<div>".concat(a[3],': <span class="value">')+l+"</span></div>"+"<div>".concat(a[4],': <span class="value">')+h+"</span></div></div>"}}]),t}(),D=function(){function i(t){e(this,i),this.opts=t}return a(i,[{key:"init",value:function(e){var i=e.responsiveOverride,a=this.opts,s=new S,r=new R(a);this.chartType=a.chart.type,"histogram"===this.chartType&&(a.chart.type="bar",a=f.extend({plotOptions:{bar:{columnWidth:"99.99%"}}},a)),a=this.extendYAxis(a),a=this.extendAnnotations(a);var n=s.init(),o={};if(a&&"object"===t(a)){var l={};l=-1!==["line","area","bar","candlestick","boxPlot","rangeBar","histogram","bubble","scatter","heatmap","treemap","pie","polarArea","donut","radar","radialBar"].indexOf(a.chart.type)?r[a.chart.type]():r.line(),a.chart.brush&&a.chart.brush.enabled&&(l=r.brush(l)),a.chart.stacked&&"100%"===a.chart.stackType&&(a=r.stacked100(a)),this.checkForDarkTheme(window.Apex),this.checkForDarkTheme(a),a.xaxis=a.xaxis||window.Apex.xaxis||{},i||(a.xaxis.convertedCatToNumeric=!1),((a=this.checkForCatToNumericXAxis(this.chartType,l,a)).chart.sparkline&&a.chart.sparkline.enabled||window.Apex.chart&&window.Apex.chart.sparkline&&window.Apex.chart.sparkline.enabled)&&(l=r.sparkline(l)),o=f.extend(n,l)}var h=f.extend(o,window.Apex);return n=f.extend(h,a),n=this.handleUserInputErrors(n)}},{key:"checkForCatToNumericXAxis",value:function(t,e,i){var a=new R(i),s="bar"===t&&i.plotOptions&&i.plotOptions.bar&&i.plotOptions.bar.horizontal,r="pie"===t||"polarArea"===t||"donut"===t||"radar"===t||"radialBar"===t||"heatmap"===t,n="datetime"!==i.xaxis.type&&"numeric"!==i.xaxis.type,o=i.xaxis.tickPlacement?i.xaxis.tickPlacement:e.xaxis&&e.xaxis.tickPlacement;return s||r||!n||"between"===o||(i=a.convertCatToNumeric(i)),i}},{key:"extendYAxis",value:function(t,e){var i=new S;(void 0===t.yaxis||!t.yaxis||Array.isArray(t.yaxis)&&0===t.yaxis.length)&&(t.yaxis={}),t.yaxis.constructor!==Array&&window.Apex.yaxis&&window.Apex.yaxis.constructor!==Array&&(t.yaxis=f.extend(t.yaxis,window.Apex.yaxis)),t.yaxis.constructor!==Array?t.yaxis=[f.extend(i.yAxis,t.yaxis)]:t.yaxis=f.extendArray(t.yaxis,i.yAxis);var a=!1;t.yaxis.forEach((function(t){t.logarithmic&&(a=!0)}));var s=t.series;return e&&!s&&(s=e.config.series),a&&s.length!==t.yaxis.length&&s.length&&(t.yaxis=s.map((function(e,a){if(e.name||(s[a].name="series-".concat(a+1)),t.yaxis[a])return t.yaxis[a].seriesName=s[a].name,t.yaxis[a];var r=f.extend(i.yAxis,t.yaxis[0]);return r.show=!1,r}))),a&&s.length>1&&s.length!==t.yaxis.length&&console.warn("A multi-series logarithmic chart should have equal number of series and y-axes. Please make sure to equalize both."),t}},{key:"extendAnnotations",value:function(t){return void 0===t.annotations&&(t.annotations={},t.annotations.yaxis=[],t.annotations.xaxis=[],t.annotations.points=[]),t=this.extendYAxisAnnotations(t),t=this.extendXAxisAnnotations(t),t=this.extendPointAnnotations(t)}},{key:"extendYAxisAnnotations",value:function(t){var e=new S;return t.annotations.yaxis=f.extendArray(void 0!==t.annotations.yaxis?t.annotations.yaxis:[],e.yAxisAnnotation),t}},{key:"extendXAxisAnnotations",value:function(t){var e=new S;return t.annotations.xaxis=f.extendArray(void 0!==t.annotations.xaxis?t.annotations.xaxis:[],e.xAxisAnnotation),t}},{key:"extendPointAnnotations",value:function(t){var e=new S;return t.annotations.points=f.extendArray(void 0!==t.annotations.points?t.annotations.points:[],e.pointAnnotation),t}},{key:"checkForDarkTheme",value:function(t){t.theme&&"dark"===t.theme.mode&&(t.tooltip||(t.tooltip={}),"light"!==t.tooltip.theme&&(t.tooltip.theme="dark"),t.chart.foreColor||(t.chart.foreColor="#f6f7f8"),t.chart.background||(t.chart.background="#424242"),t.theme.palette||(t.theme.palette="palette4"))}},{key:"handleUserInputErrors",value:function(t){var e=t;if(e.tooltip.shared&&e.tooltip.intersect)throw new Error("tooltip.shared cannot be enabled when tooltip.intersect is true. Turn off any other option by setting it to false.");if("bar"===e.chart.type&&e.plotOptions.bar.horizontal){if(e.yaxis.length>1)throw new Error("Multiple Y Axis for bars are not supported. Switch to column chart by setting plotOptions.bar.horizontal=false");e.yaxis[0].reversed&&(e.yaxis[0].opposite=!0),e.xaxis.tooltip.enabled=!1,e.yaxis[0].tooltip.enabled=!1,e.chart.zoom.enabled=!1}return"bar"!==e.chart.type&&"rangeBar"!==e.chart.type||e.tooltip.shared&&"barWidth"===e.xaxis.crosshairs.width&&e.series.length>1&&(console.warn('crosshairs.width = "barWidth" is only supported in single series, not in a multi-series barChart.'),e.xaxis.crosshairs.width="tickWidth"),"candlestick"!==e.chart.type&&"boxPlot"!==e.chart.type||e.yaxis[0].reversed&&(console.warn("Reversed y-axis in ".concat(e.chart.type," chart is not supported.")),e.yaxis[0].reversed=!1),e.chart.group&&0===e.yaxis[0].labels.minWidth&&console.warn("It looks like you have multiple charts in synchronization. You must provide yaxis.labels.minWidth which must be EQUAL for all grouped charts to prevent incorrect behaviour."),Array.isArray(e.stroke.width)&&"line"!==e.chart.type&&"area"!==e.chart.type&&(console.warn("stroke.width option accepts array only for line and area charts. Reverted back to Number"),e.stroke.width=e.stroke.width[0]),e}}]),i}(),H=function(){function t(){e(this,t)}return a(t,[{key:"initGlobalVars",value:function(t){t.series=[],t.seriesCandleO=[],t.seriesCandleH=[],t.seriesCandleM=[],t.seriesCandleL=[],t.seriesCandleC=[],t.seriesRangeStart=[],t.seriesRangeEnd=[],t.seriesRangeBarTimeline=[],t.seriesPercent=[],t.seriesX=[],t.seriesZ=[],t.seriesNames=[],t.seriesTotals=[],t.seriesLog=[],t.seriesColors=[],t.stackedSeriesTotals=[],t.seriesXvalues=[],t.seriesYvalues=[],t.labels=[],t.categoryLabels=[],t.timescaleLabels=[],t.noLabelsProvided=!1,t.resizeTimer=null,t.selectionResizeTimer=null,t.delayedElements=[],t.pointsArray=[],t.dataLabelsRects=[],t.isXNumeric=!1,t.xaxisLabelsCount=0,t.skipLastTimelinelabel=!1,t.skipFirstTimelinelabel=!1,t.isDataXYZ=!1,t.isMultiLineX=!1,t.isMultipleYAxis=!1,t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE,t.minYArr=[],t.maxYArr=[],t.maxX=-Number.MAX_VALUE,t.minX=Number.MAX_VALUE,t.initialMaxX=-Number.MAX_VALUE,t.initialMinX=Number.MAX_VALUE,t.maxDate=0,t.minDate=Number.MAX_VALUE,t.minZ=Number.MAX_VALUE,t.maxZ=-Number.MAX_VALUE,t.minXDiff=Number.MAX_VALUE,t.yAxisScale=[],t.xAxisScale=null,t.xAxisTicksPositions=[],t.yLabelsCoords=[],t.yTitleCoords=[],t.barPadForNumericAxis=0,t.padHorizontal=0,t.xRange=0,t.yRange=[],t.zRange=0,t.dataPoints=0,t.xTickAmount=0}},{key:"globalVars",value:function(t){return{chartID:null,cuid:null,events:{beforeMount:[],mounted:[],updated:[],clicked:[],selection:[],dataPointSelection:[],zoomed:[],scrolled:[]},colors:[],clientX:null,clientY:null,fill:{colors:[]},stroke:{colors:[]},dataLabels:{style:{colors:[]}},radarPolygons:{fill:{colors:[]}},markers:{colors:[],size:t.markers.size,largestSize:0},animationEnded:!1,isTouchDevice:"ontouchstart"in window||navigator.msMaxTouchPoints,isDirty:!1,isExecCalled:!1,initialConfig:null,initialSeries:[],lastXAxis:[],lastYAxis:[],columnSeries:null,labels:[],timescaleLabels:[],noLabelsProvided:!1,allSeriesCollapsed:!1,collapsedSeries:[],collapsedSeriesIndices:[],ancillaryCollapsedSeries:[],ancillaryCollapsedSeriesIndices:[],risingSeries:[],dataFormatXNumeric:!1,capturedSeriesIndex:-1,capturedDataPointIndex:-1,selectedDataPoints:[],goldenPadding:35,invalidLogScale:!1,ignoreYAxisIndexes:[],yAxisSameScaleIndices:[],maxValsInArrayIndex:0,radialSize:0,selection:void 0,zoomEnabled:"zoom"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.zoom&&t.chart.zoom.enabled,panEnabled:"pan"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.pan,selectionEnabled:"selection"===t.chart.toolbar.autoSelected&&t.chart.toolbar.tools.selection,yaxis:null,mousedown:!1,lastClientPosition:{},visibleXRange:void 0,yValueDecimal:0,total:0,SVGNS:"http://www.w3.org/2000/svg",svgWidth:0,svgHeight:0,noData:!1,locale:{},dom:{},memory:{methodsToExec:[]},shouldAnimate:!0,skipLastTimelinelabel:!1,skipFirstTimelinelabel:!1,delayedElements:[],axisCharts:!0,isDataXYZ:!1,resized:!1,resizeTimer:null,comboCharts:!1,dataChanged:!1,previousPaths:[],allSeriesHasEqualX:!0,pointsArray:[],dataLabelsRects:[],lastDrawnDataLabelsIndexes:[],hasNullValues:!1,easing:null,zoomed:!1,gridWidth:0,gridHeight:0,rotateXLabels:!1,defaultLabels:!1,xLabelFormatter:void 0,yLabelFormatters:[],xaxisTooltipFormatter:void 0,ttKeyFormatter:void 0,ttVal:void 0,ttZFormatter:void 0,LINE_HEIGHT_RATIO:1.618,xAxisLabelsHeight:0,xAxisLabelsWidth:0,yAxisLabelsWidth:0,scaleX:1,scaleY:1,translateX:0,translateY:0,translateYAxisX:[],yAxisWidths:[],translateXAxisY:0,translateXAxisX:0,tooltip:null}}},{key:"init",value:function(t){var e=this.globalVars(t);return this.initGlobalVars(e),e.initialConfig=f.extend({},t),e.initialSeries=f.clone(t.series),e.lastXAxis=f.clone(e.initialConfig.xaxis),e.lastYAxis=f.clone(e.initialConfig.yaxis),e}}]),t}(),N=function(){function t(i){e(this,t),this.opts=i}return a(t,[{key:"init",value:function(){var t=new D(this.opts).init({responsiveOverride:!1});return{config:t,globals:(new H).init(t)}}}]),t}(),O=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.twoDSeries=[],this.threeDSeries=[],this.twoDSeriesX=[],this.coreUtils=new y(this.ctx)}return a(t,[{key:"isMultiFormat",value:function(){return this.isFormatXY()||this.isFormat2DArray()}},{key:"isFormatXY",value:function(){var t=this.w.config.series.slice(),e=new M(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&null!==t[this.activeSeriesIndex].data[0]&&void 0!==t[this.activeSeriesIndex].data[0].x&&null!==t[this.activeSeriesIndex].data[0])return!0}},{key:"isFormat2DArray",value:function(){var t=this.w.config.series.slice(),e=new M(this.ctx);if(this.activeSeriesIndex=e.getActiveConfigSeriesIndex(),void 0!==t[this.activeSeriesIndex].data&&t[this.activeSeriesIndex].data.length>0&&void 0!==t[this.activeSeriesIndex].data[0]&&null!==t[this.activeSeriesIndex].data[0]&&t[this.activeSeriesIndex].data[0].constructor===Array)return!0}},{key:"handleFormat2DArray",value:function(t,e){for(var i=this.w.config,a=this.w.globals,s="boxPlot"===i.chart.type||"boxPlot"===i.series[e].type,r=0;r<t[e].data.length;r++)if(void 0!==t[e].data[r][1]&&(Array.isArray(t[e].data[r][1])&&4===t[e].data[r][1].length&&!s?this.twoDSeries.push(f.parseNumber(t[e].data[r][1][3])):t[e].data[r].length>=5?this.twoDSeries.push(f.parseNumber(t[e].data[r][4])):this.twoDSeries.push(f.parseNumber(t[e].data[r][1])),a.dataFormatXNumeric=!0),"datetime"===i.xaxis.type){var n=new Date(t[e].data[r][0]);n=new Date(n).getTime(),this.twoDSeriesX.push(n)}else this.twoDSeriesX.push(t[e].data[r][0]);for(var o=0;o<t[e].data.length;o++)void 0!==t[e].data[o][2]&&(this.threeDSeries.push(t[e].data[o][2]),a.isDataXYZ=!0)}},{key:"handleFormatXY",value:function(t,e){var i=this.w.config,a=this.w.globals,s=new Y(this.ctx),r=e;a.collapsedSeriesIndices.indexOf(e)>-1&&(r=this.activeSeriesIndex);for(var n=0;n<t[e].data.length;n++)void 0!==t[e].data[n].y&&(Array.isArray(t[e].data[n].y)?this.twoDSeries.push(f.parseNumber(t[e].data[n].y[t[e].data[n].y.length-1])):this.twoDSeries.push(f.parseNumber(t[e].data[n].y)));for(var o=0;o<t[r].data.length;o++){var l="string"==typeof t[r].data[o].x,h=Array.isArray(t[r].data[o].x),c=!h&&!!s.isValidDate(t[r].data[o].x.toString());if(l||c)if(l||i.xaxis.convertedCatToNumeric){var d=a.isBarHorizontal&&a.isRangeData;"datetime"!==i.xaxis.type||d?(this.fallbackToCategory=!0,this.twoDSeriesX.push(t[r].data[o].x)):this.twoDSeriesX.push(s.parseDate(t[r].data[o].x))}else"datetime"===i.xaxis.type?this.twoDSeriesX.push(s.parseDate(t[r].data[o].x.toString())):(a.dataFormatXNumeric=!0,a.isXNumeric=!0,this.twoDSeriesX.push(parseFloat(t[r].data[o].x)));else h?(this.fallbackToCategory=!0,this.twoDSeriesX.push(t[r].data[o].x)):(a.isXNumeric=!0,a.dataFormatXNumeric=!0,this.twoDSeriesX.push(t[r].data[o].x))}if(t[e].data[0]&&void 0!==t[e].data[0].z){for(var g=0;g<t[e].data.length;g++)this.threeDSeries.push(t[e].data[g].z);a.isDataXYZ=!0}}},{key:"handleRangeData",value:function(t,e){var i=this.w.config,a=this.w.globals,s={};return this.isFormat2DArray()?s=this.handleRangeDataFormat("array",t,e):this.isFormatXY()&&(s=this.handleRangeDataFormat("xy",t,e)),a.seriesRangeStart.push(s.start),a.seriesRangeEnd.push(s.end),"datetime"===i.xaxis.type&&a.seriesRangeBarTimeline.push(s.rangeUniques),a.seriesRangeBarTimeline.forEach((function(t,e){t&&t.forEach((function(t,e){t.y.forEach((function(e,i){for(var a=0;a<t.y.length;a++)if(i!==a){var s=e.y1,r=e.y2,n=t.y[a].y1;s<=t.y[a].y2&&n<=r&&(t.overlaps.indexOf(e.rangeName)<0&&t.overlaps.push(e.rangeName),t.overlaps.indexOf(t.y[a].rangeName)<0&&t.overlaps.push(t.y[a].rangeName))}}))}))})),s}},{key:"handleCandleStickBoxData",value:function(t,e){var i=this.w.globals,a={};return this.isFormat2DArray()?a=this.handleCandleStickBoxDataFormat("array",t,e):this.isFormatXY()&&(a=this.handleCandleStickBoxDataFormat("xy",t,e)),i.seriesCandleO[e]=a.o,i.seriesCandleH[e]=a.h,i.seriesCandleM[e]=a.m,i.seriesCandleL[e]=a.l,i.seriesCandleC[e]=a.c,a}},{key:"handleRangeDataFormat",value:function(t,e,i){var a=[],s=[],r=e[i].data.filter((function(t,e,i){return e===i.findIndex((function(e){return e.x===t.x}))})).map((function(t,e){return{x:t.x,overlaps:[],y:[]}})),n="Please provide [Start, End] values in valid format. Read more https://apexcharts.com/docs/series/#rangecharts",o=new M(this.ctx).getActiveConfigSeriesIndex();if("array"===t){if(2!==e[o].data[0][1].length)throw new Error(n);for(var l=0;l<e[i].data.length;l++)a.push(e[i].data[l][1][0]),s.push(e[i].data[l][1][1])}else if("xy"===t){if(2!==e[o].data[0].y.length)throw new Error(n);for(var h=function(t){var n=f.randomId(),o=e[i].data[t].x,l={y1:e[i].data[t].y[0],y2:e[i].data[t].y[1],rangeName:n};e[i].data[t].rangeName=n;var h=r.findIndex((function(t){return t.x===o}));r[h].y.push(l),a.push(l.y1),s.push(l.y2)},c=0;c<e[i].data.length;c++)h(c)}return{start:a,end:s,rangeUniques:r}}},{key:"handleCandleStickBoxDataFormat",value:function(t,e,i){var a=this.w,s="boxPlot"===a.config.chart.type||"boxPlot"===a.config.series[i].type,r=[],n=[],o=[],l=[],h=[];if("array"===t)if(s&&6===e[i].data[0].length||!s&&5===e[i].data[0].length)for(var c=0;c<e[i].data.length;c++)r.push(e[i].data[c][1]),n.push(e[i].data[c][2]),s?(o.push(e[i].data[c][3]),l.push(e[i].data[c][4]),h.push(e[i].data[c][5])):(l.push(e[i].data[c][3]),h.push(e[i].data[c][4]));else for(var d=0;d<e[i].data.length;d++)Array.isArray(e[i].data[d][1])&&(r.push(e[i].data[d][1][0]),n.push(e[i].data[d][1][1]),s?(o.push(e[i].data[d][1][2]),l.push(e[i].data[d][1][3]),h.push(e[i].data[d][1][4])):(l.push(e[i].data[d][1][2]),h.push(e[i].data[d][1][3])));else if("xy"===t)for(var g=0;g<e[i].data.length;g++)Array.isArray(e[i].data[g].y)&&(r.push(e[i].data[g].y[0]),n.push(e[i].data[g].y[1]),s?(o.push(e[i].data[g].y[2]),l.push(e[i].data[g].y[3]),h.push(e[i].data[g].y[4])):(l.push(e[i].data[g].y[2]),h.push(e[i].data[g].y[3])));return{o:r,h:n,m:o,l:l,c:h}}},{key:"parseDataAxisCharts",value:function(t){var e=this,i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.ctx,a=this.w.config,s=this.w.globals,r=new Y(i),n=a.labels.length>0?a.labels.slice():a.xaxis.categories.slice();s.isTimelineBar="rangeBar"===a.chart.type&&"datetime"===a.xaxis.type;for(var o=function(){for(var t=0;t<n.length;t++)if("string"==typeof n[t]){if(!r.isValidDate(n[t]))throw new Error("You have provided invalid Date format. Please provide a valid JavaScript Date");e.twoDSeriesX.push(r.parseDate(n[t]))}else e.twoDSeriesX.push(n[t])},l=0;l<t.length;l++){if(this.twoDSeries=[],this.twoDSeriesX=[],this.threeDSeries=[],void 0===t[l].data)return void console.error("It is a possibility that you may have not included 'data' property in series.");if("rangeBar"!==a.chart.type&&"rangeArea"!==a.chart.type&&"rangeBar"!==t[l].type&&"rangeArea"!==t[l].type||(s.isRangeData=!0,this.handleRangeData(t,l)),this.isMultiFormat())this.isFormat2DArray()?this.handleFormat2DArray(t,l):this.isFormatXY()&&this.handleFormatXY(t,l),"candlestick"!==a.chart.type&&"candlestick"!==t[l].type&&"boxPlot"!==a.chart.type&&"boxPlot"!==t[l].type||this.handleCandleStickBoxData(t,l),s.series.push(this.twoDSeries),s.labels.push(this.twoDSeriesX),s.seriesX.push(this.twoDSeriesX),l!==this.activeSeriesIndex||this.fallbackToCategory||(s.isXNumeric=!0);else{"datetime"===a.xaxis.type?(s.isXNumeric=!0,o(),s.seriesX.push(this.twoDSeriesX)):"numeric"===a.xaxis.type&&(s.isXNumeric=!0,n.length>0&&(this.twoDSeriesX=n,s.seriesX.push(this.twoDSeriesX))),s.labels.push(this.twoDSeriesX);var h=t[l].data.map((function(t){return f.parseNumber(t)}));s.series.push(h)}s.seriesZ.push(this.threeDSeries),void 0!==t[l].name?s.seriesNames.push(t[l].name):s.seriesNames.push("series-"+parseInt(l+1,10)),void 0!==t[l].color?s.seriesColors.push(t[l].color):s.seriesColors.push(void 0)}return this.w}},{key:"parseDataNonAxisCharts",value:function(t){var e=this.w.globals,i=this.w.config;e.series=t.slice(),e.seriesNames=i.labels.slice();for(var a=0;a<e.series.length;a++)void 0===e.seriesNames[a]&&e.seriesNames.push("series-"+(a+1));return this.w}},{key:"handleExternalLabelsData",value:function(t){var e=this.w.config,i=this.w.globals;if(e.xaxis.categories.length>0)i.labels=e.xaxis.categories;else if(e.labels.length>0)i.labels=e.labels.slice();else if(this.fallbackToCategory){if(i.labels=i.labels[0],i.seriesRangeBarTimeline.length&&(i.seriesRangeBarTimeline.map((function(t){t.forEach((function(t){i.labels.indexOf(t.x)<0&&t.x&&i.labels.push(t.x)}))})),i.labels=i.labels.filter((function(t,e,i){return i.indexOf(t)===e}))),e.xaxis.convertedCatToNumeric)new R(e).convertCatToNumericXaxis(e,this.ctx,i.seriesX[0]),this._generateExternalLabels(t)}else this._generateExternalLabels(t)}},{key:"_generateExternalLabels",value:function(t){var e=this.w.globals,i=this.w.config,a=[];if(e.axisCharts){if(e.series.length>0)for(var s=0;s<e.series[e.maxValsInArrayIndex].length;s++)a.push(s+1);e.seriesX=[];for(var r=0;r<t.length;r++)e.seriesX.push(a);e.isXNumeric=!0}if(0===a.length){a=e.axisCharts?[]:e.series.map((function(t,e){return e+1}));for(var n=0;n<t.length;n++)e.seriesX.push(a)}e.labels=a,i.xaxis.convertedCatToNumeric&&(e.categoryLabels=a.map((function(t){return i.xaxis.labels.formatter(t)}))),e.noLabelsProvided=!0}},{key:"parseData",value:function(t){var e=this.w,i=e.config,a=e.globals;if(this.excludeCollapsedSeriesInYAxis(),this.fallbackToCategory=!1,this.ctx.core.resetGlobals(),this.ctx.core.isMultipleY(),a.axisCharts?this.parseDataAxisCharts(t):this.parseDataNonAxisCharts(t),this.coreUtils.getLargestSeries(),"bar"===i.chart.type&&i.chart.stacked){var s=new M(this.ctx);a.series=s.setNullSeriesToZeroValues(a.series)}this.coreUtils.getSeriesTotals(),a.axisCharts&&this.coreUtils.getStackedSeriesTotals(),this.coreUtils.getPercentSeries(),a.dataFormatXNumeric||a.isXNumeric&&("numeric"!==i.xaxis.type||0!==i.labels.length||0!==i.xaxis.categories.length)||this.handleExternalLabelsData(t);for(var r=this.coreUtils.getCategoryLabels(a.labels),n=0;n<r.length;n++)if(Array.isArray(r[n])){a.isMultiLineX=!0;break}}},{key:"excludeCollapsedSeriesInYAxis",value:function(){var t=this,e=this.w;e.globals.ignoreYAxisIndexes=e.globals.collapsedSeries.map((function(i,a){if(t.w.globals.isMultipleYAxis&&!e.config.chart.stacked)return i.index}))}}]),t}(),W=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.tooltipKeyFormat="dd MMM"}return a(t,[{key:"xLabelFormat",value:function(t,e,i,a){var s=this.w;if("datetime"===s.config.xaxis.type&&void 0===s.config.xaxis.labels.formatter&&void 0===s.config.tooltip.x.formatter){var r=new Y(this.ctx);return r.formatDate(r.getDate(e),s.config.tooltip.x.format)}return t(e,i,a)}},{key:"defaultGeneralFormatter",value:function(t){return Array.isArray(t)?t.map((function(t){return t})):t}},{key:"defaultYFormatter",value:function(t,e,i){var a=this.w;return f.isNumber(t)&&(t=0!==a.globals.yValueDecimal?t.toFixed(void 0!==e.decimalsInFloat?e.decimalsInFloat:a.globals.yValueDecimal):a.globals.maxYArr[i]-a.globals.minYArr[i]<5?t.toFixed(1):t.toFixed(0)),t}},{key:"setLabelFormatters",value:function(){var t=this,e=this.w;return e.globals.xaxisTooltipFormatter=function(e){return t.defaultGeneralFormatter(e)},e.globals.ttKeyFormatter=function(e){return t.defaultGeneralFormatter(e)},e.globals.ttZFormatter=function(t){return t},e.globals.legendFormatter=function(e){return t.defaultGeneralFormatter(e)},void 0!==e.config.xaxis.labels.formatter?e.globals.xLabelFormatter=e.config.xaxis.labels.formatter:e.globals.xLabelFormatter=function(t){if(f.isNumber(t)){if(!e.config.xaxis.convertedCatToNumeric&&"numeric"===e.config.xaxis.type){if(f.isNumber(e.config.xaxis.decimalsInFloat))return t.toFixed(e.config.xaxis.decimalsInFloat);var i=e.globals.maxX-e.globals.minX;return i>0&&i<100?t.toFixed(1):t.toFixed(0)}if(e.globals.isBarHorizontal)if(e.globals.maxY-e.globals.minYArr<4)return t.toFixed(1);return t.toFixed(0)}return t},"function"==typeof e.config.tooltip.x.formatter?e.globals.ttKeyFormatter=e.config.tooltip.x.formatter:e.globals.ttKeyFormatter=e.globals.xLabelFormatter,"function"==typeof e.config.xaxis.tooltip.formatter&&(e.globals.xaxisTooltipFormatter=e.config.xaxis.tooltip.formatter),(Array.isArray(e.config.tooltip.y)||void 0!==e.config.tooltip.y.formatter)&&(e.globals.ttVal=e.config.tooltip.y),void 0!==e.config.tooltip.z.formatter&&(e.globals.ttZFormatter=e.config.tooltip.z.formatter),void 0!==e.config.legend.formatter&&(e.globals.legendFormatter=e.config.legend.formatter),e.config.yaxis.forEach((function(i,a){void 0!==i.labels.formatter?e.globals.yLabelFormatters[a]=i.labels.formatter:e.globals.yLabelFormatters[a]=function(s){return e.globals.xyCharts?Array.isArray(s)?s.map((function(e){return t.defaultYFormatter(e,i,a)})):t.defaultYFormatter(s,i,a):s}})),e.globals}},{key:"heatmapLabelFormatters",value:function(){var t=this.w;if("heatmap"===t.config.chart.type){t.globals.yAxisScale[0].result=t.globals.seriesNames.slice();var e=t.globals.seriesNames.reduce((function(t,e){return t.length>e.length?t:e}),0);t.globals.yAxisScale[0].niceMax=e,t.globals.yAxisScale[0].niceMin=e}}}]),t}(),B=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"getLabel",value:function(t,e,i,a){var s=arguments.length>4&&void 0!==arguments[4]?arguments[4]:[],r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"12px",n=this.w,o=void 0===t[a]?"":t[a],l=o,h=n.globals.xLabelFormatter,c=n.config.xaxis.labels.formatter,d=!1,g=new W(this.ctx),u=o;l=g.xLabelFormat(h,o,u,{i:a,dateFormatter:new Y(this.ctx).formatDate,w:n}),void 0!==c&&(l=c(o,t[a],{i:a,dateFormatter:new Y(this.ctx).formatDate,w:n}));var f=function(t){var i=null;return e.forEach((function(t){"month"===t.unit?i="year":"day"===t.unit?i="month":"hour"===t.unit?i="day":"minute"===t.unit&&(i="hour")})),i===t};e.length>0?(d=f(e[a].unit),i=e[a].position,l=e[a].value):"datetime"===n.config.xaxis.type&&void 0===c&&(l=""),void 0===l&&(l=""),l=Array.isArray(l)?l:l.toString();var p=new b(this.ctx),x={};x=n.globals.rotateXLabels?p.getTextRects(l,parseInt(r,10),null,"rotate(".concat(n.config.xaxis.labels.rotate," 0 0)"),!1):p.getTextRects(l,parseInt(r,10));var m=!n.config.xaxis.labels.showDuplicates&&this.ctx.timeScale;return!Array.isArray(l)&&(0===l.indexOf("NaN")||0===l.toLowerCase().indexOf("invalid")||l.toLowerCase().indexOf("infinity")>=0||s.indexOf(l)>=0&&m)&&(l=""),{x:i,text:l,textRect:x,isBold:d}}},{key:"checkLabelBasedOnTickamount",value:function(t,e,i){var a=this.w,s=a.config.xaxis.tickAmount;return"dataPoints"===s&&(s=Math.round(a.globals.gridWidth/120)),s>i||t%Math.round(i/(s+1))==0||(e.text=""),e}},{key:"checkForOverflowingLabels",value:function(t,e,i,a,s){var r=this.w;if(0===t&&r.globals.skipFirstTimelinelabel&&(e.text=""),t===i-1&&r.globals.skipLastTimelinelabel&&(e.text=""),r.config.xaxis.labels.hideOverlappingLabels&&a.length>0){var n=s[s.length-1];e.x<n.textRect.width/(r.globals.rotateXLabels?Math.abs(r.config.xaxis.labels.rotate)/12:1.01)+n.x&&(e.text="")}return e}},{key:"checkForReversedLabels",value:function(t,e){var i=this.w;return i.config.yaxis[t]&&i.config.yaxis[t].reversed&&e.reverse(),e}},{key:"isYAxisHidden",value:function(t){var e=this.w,i=new y(this.ctx);return!e.config.yaxis[t].show||!e.config.yaxis[t].showForNullSeries&&i.isSeriesNull(t)&&-1===e.globals.collapsedSeriesIndices.indexOf(t)}},{key:"getYAxisForeColor",value:function(t,e){var i=this.w;return Array.isArray(t)&&i.globals.yAxisScale[e]&&this.ctx.theme.pushExtraColors(t,i.globals.yAxisScale[e].result.length,!1),t}},{key:"drawYAxisTicks",value:function(t,e,i,a,s,r,n){var o=this.w,l=new b(this.ctx),h=o.globals.translateY;if(a.show&&e>0){!0===o.config.yaxis[s].opposite&&(t+=a.width);for(var c=e;c>=0;c--){var d=h+e/10+o.config.yaxis[s].labels.offsetY-1;o.globals.isBarHorizontal&&(d=r*c),"heatmap"===o.config.chart.type&&(d+=r/2);var g=l.drawLine(t+i.offsetX-a.width+a.offsetX,d+a.offsetY,t+i.offsetX+a.offsetX,d+a.offsetY,a.color);n.add(g),h+=r}}}}]),t}(),V=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"fixSvgStringForIe11",value:function(t){if(!f.isIE11())return t;var e=0,i=t.replace(/xmlns="http:\/\/www.w3.org\/2000\/svg"/g,(function(t){return 2===++e?'xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.com/svgjs"':t}));return i=(i=i.replace(/xmlns:NS\d+=""/g,"")).replace(/NS\d+:(\w+:\w+=")/g,"$1")}},{key:"getSvgString",value:function(){var t=this.w.globals.dom.Paper.svg();return this.fixSvgStringForIe11(t)}},{key:"cleanup",value:function(){var t=this.w,e=t.globals.dom.baseEl.getElementsByClassName("apexcharts-xcrosshairs"),i=t.globals.dom.baseEl.getElementsByClassName("apexcharts-ycrosshairs"),a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-zoom-rect, .apexcharts-selection-rect");Array.prototype.forEach.call(a,(function(t){t.setAttribute("width",0)})),e&&e[0]&&(e[0].setAttribute("x",-500),e[0].setAttribute("x1",-500),e[0].setAttribute("x2",-500)),i&&i[0]&&(i[0].setAttribute("y",-100),i[0].setAttribute("y1",-100),i[0].setAttribute("y2",-100))}},{key:"svgUrl",value:function(){this.cleanup();var t=this.getSvgString(),e=new Blob([t],{type:"image/svg+xml;charset=utf-8"});return URL.createObjectURL(e)}},{key:"dataURI",value:function(){var t=this;return new Promise((function(e){var i=t.w;t.cleanup();var a=document.createElement("canvas");a.width=i.globals.svgWidth,a.height=parseInt(i.globals.dom.elWrap.style.height,10);var s="transparent"===i.config.chart.background?"#fff":i.config.chart.background,r=a.getContext("2d");r.fillStyle=s,r.fillRect(0,0,a.width,a.height);var n=t.getSvgString();if(window.canvg&&f.isIE11()){var o=window.canvg.Canvg.fromString(r,n,{ignoreClear:!0,ignoreDimensions:!0});o.start();var l=a.msToBlob();o.stop(),e({blob:l})}else{var h="data:image/svg+xml,"+encodeURIComponent(n),c=new Image;c.crossOrigin="anonymous",c.onload=function(){if(r.drawImage(c,0,0),a.msToBlob){var t=a.msToBlob();e({blob:t})}else{var i=a.toDataURL("image/png");e({imgURI:i})}},c.src=h}}))}},{key:"exportToSVG",value:function(){this.triggerDownload(this.svgUrl(),this.w.config.chart.toolbar.export.svg.filename,".svg")}},{key:"exportToPng",value:function(){var t=this;this.dataURI().then((function(e){var i=e.imgURI,a=e.blob;a?navigator.msSaveOrOpenBlob(a,t.w.globals.chartID+".png"):t.triggerDownload(i,t.w.config.chart.toolbar.export.png.filename,".png")}))}},{key:"exportToCSV",value:function(t){var e=this,i=t.series,a=t.columnDelimiter,s=t.lineDelimiter,r=void 0===s?"\n":s,n=this.w,o=[],l=[],h="data:text/csv;charset=utf-8,\ufeff",c=new O(this.ctx),d=new B(this.ctx),g=function(t){var i="";if(n.globals.axisCharts){if("category"===n.config.xaxis.type||n.config.xaxis.convertedCatToNumeric)if(n.globals.isBarHorizontal){var s=n.globals.yLabelFormatters[0],r=new M(e.ctx).getActiveConfigSeriesIndex();i=s(n.globals.labels[t],{seriesIndex:r,dataPointIndex:t,w:n})}else i=d.getLabel(n.globals.labels,n.globals.timescaleLabels,0,t).text;"datetime"===n.config.xaxis.type&&(n.config.xaxis.categories.length?i=n.config.xaxis.categories[t]:n.config.labels.length&&(i=n.config.labels[t]))}else i=n.config.labels[t];return Array.isArray(i)&&(i=i.join(" ")),f.isNumber(i)?i:i.split(a).join("")};o.push(n.config.chart.toolbar.export.csv.headerCategory),i.map((function(t,e){var i=t.name?t.name:"series-".concat(e);n.globals.axisCharts&&o.push(i.split(a).join("")?i.split(a).join(""):"series-".concat(e))})),n.globals.axisCharts||(o.push(n.config.chart.toolbar.export.csv.headerValue),l.push(o.join(a))),i.map((function(t,e){n.globals.axisCharts?function(t,e){if(o.length&&0===e&&l.push(o.join(a)),t.data&&t.data.length)for(var s=0;s<t.data.length;s++){o=[];var r=g(s);if(r||(c.isFormatXY()?r=i[e].data[s].x:c.isFormat2DArray()&&(r=i[e].data[s]?i[e].data[s][0]:"")),0===e){o.push((d=r,"datetime"===n.config.xaxis.type&&String(d).length>=10?n.config.chart.toolbar.export.csv.dateFormatter(r):f.isNumber(r)?r:r.split(a).join("")));for(var h=0;h<n.globals.series.length;h++)o.push(n.globals.series[h][s])}("candlestick"===n.config.chart.type||t.type&&"candlestick"===t.type)&&(o.pop(),o.push(n.globals.seriesCandleO[e][s]),o.push(n.globals.seriesCandleH[e][s]),o.push(n.globals.seriesCandleL[e][s]),o.push(n.globals.seriesCandleC[e][s])),("boxPlot"===n.config.chart.type||t.type&&"boxPlot"===t.type)&&(o.pop(),o.push(n.globals.seriesCandleO[e][s]),o.push(n.globals.seriesCandleH[e][s]),o.push(n.globals.seriesCandleM[e][s]),o.push(n.globals.seriesCandleL[e][s]),o.push(n.globals.seriesCandleC[e][s])),"rangeBar"===n.config.chart.type&&(o.pop(),o.push(n.globals.seriesRangeStart[e][s]),o.push(n.globals.seriesRangeEnd[e][s])),o.length&&l.push(o.join(a))}var d}(t,e):((o=[]).push(n.globals.labels[e].split(a).join("")),o.push(n.globals.series[e]),l.push(o.join(a)))})),h+=l.join(r),this.triggerDownload(encodeURI(h),n.config.chart.toolbar.export.csv.filename,".csv")}},{key:"triggerDownload",value:function(t,e,i){var a=document.createElement("a");a.href=t,a.download=(e||this.w.globals.chartID)+i,document.body.appendChild(a),a.click(),document.body.removeChild(a)}}]),t}(),_=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.axesUtils=new B(i),this.xaxisLabels=a.globals.labels.slice(),a.globals.timescaleLabels.length>0&&!a.globals.isBarHorizontal&&(this.xaxisLabels=a.globals.timescaleLabels.slice()),this.drawnLabels=[],this.drawnLabelsRects=[],"top"===a.config.xaxis.position?this.offY=0:this.offY=a.globals.gridHeight+1,this.offY=this.offY+a.config.xaxis.axisBorder.offsetY,this.isCategoryBarHorizontal="bar"===a.config.chart.type&&a.config.plotOptions.bar.horizontal,this.xaxisFontSize=a.config.xaxis.labels.style.fontSize,this.xaxisFontFamily=a.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=a.config.xaxis.labels.style.colors,this.xaxisBorderWidth=a.config.xaxis.axisBorder.width,this.isCategoryBarHorizontal&&(this.xaxisBorderWidth=a.config.yaxis[0].axisBorder.width.toString()),this.xaxisBorderWidth.indexOf("%")>-1?this.xaxisBorderWidth=a.globals.gridWidth*parseInt(this.xaxisBorderWidth,10)/100:this.xaxisBorderWidth=parseInt(this.xaxisBorderWidth,10),this.xaxisBorderHeight=a.config.xaxis.axisBorder.height,this.yaxis=a.config.yaxis[0]}return a(t,[{key:"drawXaxis",value:function(){var t,e=this,i=this.w,a=new b(this.ctx),s=a.group({class:"apexcharts-xaxis",transform:"translate(".concat(i.config.xaxis.offsetX,", ").concat(i.config.xaxis.offsetY,")")}),r=a.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(i.globals.translateXAxisX,", ").concat(i.globals.translateXAxisY,")")});s.add(r);for(var n=i.globals.padHorizontal,o=[],l=0;l<this.xaxisLabels.length;l++)o.push(this.xaxisLabels[l]);var h=o.length;if(i.globals.isXNumeric){var c=h>1?h-1:h;t=i.globals.gridWidth/c,n=n+t/2+i.config.xaxis.labels.offsetX}else t=i.globals.gridWidth/o.length,n=n+t+i.config.xaxis.labels.offsetX;for(var d=function(s){var l=n-t/2+i.config.xaxis.labels.offsetX;0===s&&1===h&&t/2===n&&1===i.globals.dataPoints&&(l=i.globals.gridWidth/2);var c=e.axesUtils.getLabel(o,i.globals.timescaleLabels,l,s,e.drawnLabels,e.xaxisFontSize),d=28;i.globals.rotateXLabels&&(d=22);if((c=void 0!==i.config.xaxis.tickAmount&&"dataPoints"!==i.config.xaxis.tickAmount&&"datetime"!==i.config.xaxis.type?e.axesUtils.checkLabelBasedOnTickamount(s,c,h):e.axesUtils.checkForOverflowingLabels(s,c,h,e.drawnLabels,e.drawnLabelsRects)).text&&i.globals.xaxisLabelsCount++,i.config.xaxis.labels.show){var g=a.drawText({x:c.x,y:e.offY+i.config.xaxis.labels.offsetY+d-("top"===i.config.xaxis.position?i.globals.xAxisHeight+i.config.xaxis.axisTicks.height-2:0),text:c.text,textAnchor:"middle",fontWeight:c.isBold?600:i.config.xaxis.labels.style.fontWeight,fontSize:e.xaxisFontSize,fontFamily:e.xaxisFontFamily,foreColor:Array.isArray(e.xaxisForeColors)?i.config.xaxis.convertedCatToNumeric?e.xaxisForeColors[i.globals.minX+s-1]:e.xaxisForeColors[s]:e.xaxisForeColors,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+i.config.xaxis.labels.style.cssClass});r.add(g);var u=document.createElementNS(i.globals.SVGNS,"title");u.textContent=Array.isArray(c.text)?c.text.join(" "):c.text,g.node.appendChild(u),""!==c.text&&(e.drawnLabels.push(c.text),e.drawnLabelsRects.push(c))}n+=t},g=0;g<=h-1;g++)d(g);if(void 0!==i.config.xaxis.title.text){var u=a.group({class:"apexcharts-xaxis-title"}),f=a.drawText({x:i.globals.gridWidth/2+i.config.xaxis.title.offsetX,y:this.offY+parseFloat(this.xaxisFontSize)+i.globals.xAxisLabelsHeight+i.config.xaxis.title.offsetY,text:i.config.xaxis.title.text,textAnchor:"middle",fontSize:i.config.xaxis.title.style.fontSize,fontFamily:i.config.xaxis.title.style.fontFamily,fontWeight:i.config.xaxis.title.style.fontWeight,foreColor:i.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+i.config.xaxis.title.style.cssClass});u.add(f),s.add(u)}if(i.config.xaxis.axisBorder.show){var p=i.globals.barPadForNumericAxis,x=a.drawLine(i.globals.padHorizontal+i.config.xaxis.axisBorder.offsetX-p,this.offY,this.xaxisBorderWidth+p,this.offY,i.config.xaxis.axisBorder.color,0,this.xaxisBorderHeight);s.add(x)}return s}},{key:"drawXaxisInversed",value:function(t){var e,i,a=this,s=this.w,r=new b(this.ctx),n=s.config.yaxis[0].opposite?s.globals.translateYAxisX[t]:0,o=r.group({class:"apexcharts-yaxis apexcharts-xaxis-inversed",rel:t}),l=r.group({class:"apexcharts-yaxis-texts-g apexcharts-xaxis-inversed-texts-g",transform:"translate("+n+", 0)"});o.add(l);var h=[];if(s.config.yaxis[t].show)for(var c=0;c<this.xaxisLabels.length;c++)h.push(this.xaxisLabels[c]);e=s.globals.gridHeight/h.length,i=-e/2.2;var d=s.globals.yLabelFormatters[0],g=s.config.yaxis[0].labels;if(g.show)for(var u=function(n){var o=void 0===h[n]?"":h[n];o=d(o,{seriesIndex:t,dataPointIndex:n,w:s});var c=a.axesUtils.getYAxisForeColor(g.style.colors,t),u=0;Array.isArray(o)&&(u=o.length/2*parseInt(g.style.fontSize,10));var f=r.drawText({x:g.offsetX-15,y:i+e+g.offsetY-u,text:o,textAnchor:a.yaxis.opposite?"start":"end",foreColor:Array.isArray(c)?c[n]:c,fontSize:g.style.fontSize,fontFamily:g.style.fontFamily,fontWeight:g.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+g.style.cssClass});l.add(f);var p=document.createElementNS(s.globals.SVGNS,"title");if(p.textContent=o.text,f.node.appendChild(p),0!==s.config.yaxis[t].labels.rotate){var x=r.rotateAroundCenter(f.node);f.node.setAttribute("transform","rotate(".concat(s.config.yaxis[t].labels.rotate," 0 ").concat(x.y,")"))}i+=e},f=0;f<=h.length-1;f++)u(f);if(void 0!==s.config.yaxis[0].title.text){var p=r.group({class:"apexcharts-yaxis-title apexcharts-xaxis-title-inversed",transform:"translate("+n+", 0)"}),x=r.drawText({x:0,y:s.globals.gridHeight/2,text:s.config.yaxis[0].title.text,textAnchor:"middle",foreColor:s.config.yaxis[0].title.style.color,fontSize:s.config.yaxis[0].title.style.fontSize,fontWeight:s.config.yaxis[0].title.style.fontWeight,fontFamily:s.config.yaxis[0].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+s.config.yaxis[0].title.style.cssClass});p.add(x),o.add(p)}var m=0;this.isCategoryBarHorizontal&&s.config.yaxis[0].opposite&&(m=s.globals.gridWidth);var v=s.config.xaxis.axisBorder;if(v.show){var y=r.drawLine(s.globals.padHorizontal+v.offsetX+m,1+v.offsetY,s.globals.padHorizontal+v.offsetX+m,s.globals.gridHeight+v.offsetY,v.color,0);o.add(y)}return s.config.yaxis[0].axisTicks.show&&this.axesUtils.drawYAxisTicks(m,h.length,s.config.yaxis[0].axisBorder,s.config.yaxis[0].axisTicks,0,e,o),o}},{key:"drawXaxisTicks",value:function(t,e){var i=this.w,a=t;if(!(t<0||t-2>i.globals.gridWidth)){var s=this.offY+i.config.xaxis.axisTicks.offsetY,r=s+i.config.xaxis.axisTicks.height;if("top"===i.config.xaxis.position&&(r=s-i.config.xaxis.axisTicks.height),i.config.xaxis.axisTicks.show){var n=new b(this.ctx).drawLine(t+i.config.xaxis.axisTicks.offsetX,s+i.config.xaxis.offsetY,a+i.config.xaxis.axisTicks.offsetX,r+i.config.xaxis.offsetY,i.config.xaxis.axisTicks.color);e.add(n),n.node.classList.add("apexcharts-xaxis-tick")}}}},{key:"getXAxisTicksPositions",value:function(){var t=this.w,e=[],i=this.xaxisLabels.length,a=t.globals.padHorizontal;if(t.globals.timescaleLabels.length>0)for(var s=0;s<i;s++)a=this.xaxisLabels[s].position,e.push(a);else for(var r=i,n=0;n<r;n++){var o=r;t.globals.isXNumeric&&"bar"!==t.config.chart.type&&(o-=1),a+=t.globals.gridWidth/o,e.push(a)}return e}},{key:"xAxisLabelCorrections",value:function(){var t=this.w,e=new b(this.ctx),i=t.globals.dom.baseEl.querySelector(".apexcharts-xaxis-texts-g"),a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-xaxis-texts-g text"),s=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis-inversed text"),r=t.globals.dom.baseEl.querySelectorAll(".apexcharts-xaxis-inversed-texts-g text tspan");if(t.globals.rotateXLabels||t.config.xaxis.labels.rotateAlways)for(var n=0;n<a.length;n++){var o=e.rotateAroundCenter(a[n]);o.y=o.y-1,o.x=o.x+1,a[n].setAttribute("transform","rotate(".concat(t.config.xaxis.labels.rotate," ").concat(o.x," ").concat(o.y,")")),a[n].setAttribute("text-anchor","end");i.setAttribute("transform","translate(0, ".concat(-10,")"));var l=a[n].childNodes;t.config.xaxis.labels.trim&&Array.prototype.forEach.call(l,(function(i){e.placeTextWithEllipsis(i,i.textContent,t.globals.xAxisLabelsHeight-("bottom"===t.config.legend.position?20:10))}))}else!function(){for(var i=t.globals.gridWidth/(t.globals.labels.length+1),s=0;s<a.length;s++){var r=a[s].childNodes;t.config.xaxis.labels.trim&&"datetime"!==t.config.xaxis.type&&Array.prototype.forEach.call(r,(function(t){e.placeTextWithEllipsis(t,t.textContent,i)}))}}();if(s.length>0){var h=s[s.length-1].getBBox(),c=s[0].getBBox();h.x<-20&&s[s.length-1].parentNode.removeChild(s[s.length-1]),c.x+c.width>t.globals.gridWidth&&!t.globals.isBarHorizontal&&s[0].parentNode.removeChild(s[0]);for(var d=0;d<r.length;d++)e.placeTextWithEllipsis(r[d],r[d].textContent,t.config.yaxis[0].labels.maxWidth-2*parseFloat(t.config.yaxis[0].title.style.fontSize)-20)}}}]),t}(),G=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.xaxisLabels=a.globals.labels.slice(),this.axesUtils=new B(i),this.isTimelineBar="datetime"===a.config.xaxis.type&&a.globals.seriesRangeBarTimeline.length,a.globals.timescaleLabels.length>0&&(this.xaxisLabels=a.globals.timescaleLabels.slice())}return a(t,[{key:"drawGridArea",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,e=this.w,i=new b(this.ctx);null===t&&(t=i.group({class:"apexcharts-grid"}));var a=i.drawLine(e.globals.padHorizontal,1,e.globals.padHorizontal,e.globals.gridHeight,"transparent"),s=i.drawLine(e.globals.padHorizontal,e.globals.gridHeight,e.globals.gridWidth,e.globals.gridHeight,"transparent");return t.add(s),t.add(a),t}},{key:"drawGrid",value:function(){var t=null;return this.w.globals.axisCharts&&(t=this.renderGrid(),this.drawGridArea(t.el)),t}},{key:"createGridMask",value:function(){var t=this.w,e=t.globals,i=new b(this.ctx),a=Array.isArray(t.config.stroke.width)?0:t.config.stroke.width;if(Array.isArray(t.config.stroke.width)){var s=0;t.config.stroke.width.forEach((function(t){s=Math.max(s,t)})),a=s}e.dom.elGridRectMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMask.setAttribute("id","gridRectMask".concat(e.cuid)),e.dom.elGridRectMarkerMask=document.createElementNS(e.SVGNS,"clipPath"),e.dom.elGridRectMarkerMask.setAttribute("id","gridRectMarkerMask".concat(e.cuid));var r=t.config.chart.type,n=0,o=0;("bar"===r||"rangeBar"===r||"candlestick"===r||"boxPlot"===r||t.globals.comboBarCount>0)&&t.globals.isXNumeric&&!t.globals.isBarHorizontal&&(n=t.config.grid.padding.left,o=t.config.grid.padding.right,e.barPadForNumericAxis>n&&(n=e.barPadForNumericAxis,o=e.barPadForNumericAxis)),e.dom.elGridRect=i.drawRect(-a/2-n-2,-a/2,e.gridWidth+a+o+n+4,e.gridHeight+a,0,"#fff"),new y(this).getLargestMarkerSize();var l=t.globals.markers.largestSize+1;e.dom.elGridRectMarker=i.drawRect(2*-l,2*-l,e.gridWidth+4*l,e.gridHeight+4*l,0,"#fff"),e.dom.elGridRectMask.appendChild(e.dom.elGridRect.node),e.dom.elGridRectMarkerMask.appendChild(e.dom.elGridRectMarker.node);var h=e.dom.baseEl.querySelector("defs");h.appendChild(e.dom.elGridRectMask),h.appendChild(e.dom.elGridRectMarkerMask)}},{key:"_drawGridLines",value:function(t){var e=t.i,i=t.x1,a=t.y1,s=t.x2,r=t.y2,n=t.xCount,o=t.parent,l=this.w;0===e&&l.globals.skipFirstTimelinelabel||e===n-1&&l.globals.skipLastTimelinelabel&&!l.config.xaxis.labels.formatter||"radar"===l.config.chart.type||(l.config.grid.xaxis.lines.show&&this._drawGridLine({x1:i,y1:a,x2:s,y2:r,parent:o}),new _(this.ctx).drawXaxisTicks(i,this.elg))}},{key:"_drawGridLine",value:function(t){var e=t.x1,i=t.y1,a=t.x2,s=t.y2,r=t.parent,n=this.w,o=r.node.classList.contains("apexcharts-gridlines-horizontal"),l=n.config.grid.strokeDashArray,h=n.globals.barPadForNumericAxis,c=new b(this).drawLine(e-(o?h:0),i,a+(o?h:0),s,n.config.grid.borderColor,l);c.node.classList.add("apexcharts-gridline"),r.add(c)}},{key:"_drawGridBandRect",value:function(t){var e=t.c,i=t.x1,a=t.y1,s=t.x2,r=t.y2,n=t.type,o=this.w,l=new b(this.ctx),h=o.globals.barPadForNumericAxis;if("column"!==n||"datetime"!==o.config.xaxis.type){var c=o.config.grid[n].colors[e],d=l.drawRect(i-("row"===n?h:0),a,s+("row"===n?2*h:0),r,0,c,o.config.grid[n].opacity);this.elg.add(d),d.attr("clip-path","url(#gridRectMask".concat(o.globals.cuid,")")),d.node.classList.add("apexcharts-grid-".concat(n))}}},{key:"_drawXYLines",value:function(t){var e=this,i=t.xCount,a=t.tickAmount,s=this.w;if(s.config.grid.xaxis.lines.show||s.config.xaxis.axisTicks.show){var r,n=s.globals.padHorizontal,o=s.globals.gridHeight;s.globals.timescaleLabels.length?function(t){for(var a=t.xC,s=t.x1,r=t.y1,n=t.x2,o=t.y2,l=0;l<a;l++)s=e.xaxisLabels[l].position,n=e.xaxisLabels[l].position,e._drawGridLines({i:l,x1:s,y1:r,x2:n,y2:o,xCount:i,parent:e.elgridLinesV})}({xC:i,x1:n,y1:0,x2:r,y2:o}):(s.globals.isXNumeric&&(i=s.globals.xAxisScale.result.length),s.config.xaxis.convertedCatToNumeric&&(i=s.globals.xaxisLabelsCount),function(t){var a=t.xC,r=t.x1,n=t.y1,o=t.x2,l=t.y2;if(void 0!==s.config.xaxis.tickAmount&&"dataPoints"!==s.config.xaxis.tickAmount)s.globals.dom.baseEl.querySelectorAll(".apexcharts-text.apexcharts-xaxis-label tspan:not(:empty)").forEach((function(t,a){var s=t.getBBox();e._drawGridLines({i:a,x1:s.x+s.width/2,y1:n,x2:s.x+s.width/2,y2:l,xCount:i,parent:e.elgridLinesV})}));else for(var h=0;h<a+(s.globals.isXNumeric?0:1);h++)0===h&&1===a&&1===s.globals.dataPoints&&(o=r=s.globals.gridWidth/2),e._drawGridLines({i:h,x1:r,y1:n,x2:o,y2:l,xCount:i,parent:e.elgridLinesV}),o=r+=s.globals.gridWidth/(s.globals.isXNumeric?a-1:a)}({xC:i,x1:n,y1:0,x2:r,y2:o}))}if(s.config.grid.yaxis.lines.show){var l=0,h=0,c=s.globals.gridWidth,d=a+1;this.isTimelineBar&&(d=s.globals.labels.length);for(var g=0;g<d+(this.isTimelineBar?1:0);g++)this._drawGridLine({x1:0,y1:l,x2:c,y2:h,parent:this.elgridLinesH}),h=l+=s.globals.gridHeight/(this.isTimelineBar?d:a)}}},{key:"_drawInvertedXYLines",value:function(t){var e=t.xCount,i=this.w;if(i.config.grid.xaxis.lines.show||i.config.xaxis.axisTicks.show)for(var a,s=i.globals.padHorizontal,r=i.globals.gridHeight,n=0;n<e+1;n++){i.config.grid.xaxis.lines.show&&this._drawGridLine({x1:s,y1:0,x2:a,y2:r,parent:this.elgridLinesV}),new _(this.ctx).drawXaxisTicks(s,this.elg),a=s=s+i.globals.gridWidth/e+.3}if(i.config.grid.yaxis.lines.show)for(var o=0,l=0,h=i.globals.gridWidth,c=0;c<i.globals.dataPoints+1;c++)this._drawGridLine({x1:0,y1:o,x2:h,y2:l,parent:this.elgridLinesH}),l=o+=i.globals.gridHeight/i.globals.dataPoints}},{key:"renderGrid",value:function(){var t=this.w,e=new b(this.ctx);this.elg=e.group({class:"apexcharts-grid"}),this.elgridLinesH=e.group({class:"apexcharts-gridlines-horizontal"}),this.elgridLinesV=e.group({class:"apexcharts-gridlines-vertical"}),this.elg.add(this.elgridLinesH),this.elg.add(this.elgridLinesV),t.config.grid.show||(this.elgridLinesV.hide(),this.elgridLinesH.hide());for(var i,a=t.globals.yAxisScale.length?t.globals.yAxisScale[0].result.length-1:5,s=0;s<t.globals.series.length&&(void 0!==t.globals.yAxisScale[s]&&(a=t.globals.yAxisScale[s].result.length-1),!(a>2));s++);return!t.globals.isBarHorizontal||this.isTimelineBar?(i=this.xaxisLabels.length,this.isTimelineBar&&(a=t.globals.labels.length,t.config.xaxis.tickAmount&&t.config.xaxis.labels.formatter&&(i=t.config.xaxis.tickAmount)),this._drawXYLines({xCount:i,tickAmount:a})):(i=a,a=t.globals.xTickAmount,this._drawInvertedXYLines({xCount:i,tickAmount:a})),this.drawGridBands(i,a),{el:this.elg,xAxisTickWidth:t.globals.gridWidth/i}}},{key:"drawGridBands",value:function(t,e){var i=this.w;if(void 0!==i.config.grid.row.colors&&i.config.grid.row.colors.length>0)for(var a=0,s=i.globals.gridHeight/e,r=i.globals.gridWidth,n=0,o=0;n<e;n++,o++)o>=i.config.grid.row.colors.length&&(o=0),this._drawGridBandRect({c:o,x1:0,y1:a,x2:r,y2:s,type:"row"}),a+=i.globals.gridHeight/e;if(void 0!==i.config.grid.column.colors&&i.config.grid.column.colors.length>0)for(var l=i.globals.isBarHorizontal||"category"!==i.config.xaxis.type&&!i.config.xaxis.convertedCatToNumeric?t:t-1,h=i.globals.padHorizontal,c=i.globals.padHorizontal+i.globals.gridWidth/l,d=i.globals.gridHeight,g=0,u=0;g<t;g++,u++)u>=i.config.grid.column.colors.length&&(u=0),this._drawGridBandRect({c:u,x1:h,y1:0,x2:c,y2:d,type:"column"}),h+=i.globals.gridWidth/l}}]),t}(),j=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"niceScale",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,s=arguments.length>4?arguments[4]:void 0,r=this.w,n=Math.abs(e-t);if("dataPoints"===(i=this._adjustTicksForSmallRange(i,a,n))&&(i=r.globals.dataPoints-1),t===Number.MIN_VALUE&&0===e||!f.isNumber(t)&&!f.isNumber(e)||t===Number.MIN_VALUE&&e===-Number.MAX_VALUE){t=0,e=i;var o=this.linearScale(t,e,i);return o}t>e?(console.warn("axis.min cannot be greater than axis.max"),e=t+.1):t===e&&(t=0===t?0:t-.5,e=0===e?2:e+.5);var l=[];n<1&&s&&("candlestick"===r.config.chart.type||"candlestick"===r.config.series[a].type||"boxPlot"===r.config.chart.type||"boxPlot"===r.config.series[a].type||r.globals.isRangeData)&&(e*=1.01);var h=i+1;h<2?h=2:h>2&&(h-=2);var c=n/h,d=Math.floor(f.log10(c)),g=Math.pow(10,d),u=Math.round(c/g);u<1&&(u=1);var p=u*g,x=p*Math.floor(t/p),b=p*Math.ceil(e/p),m=x;if(s&&n>2){for(;l.push(m),!((m+=p)>b););return{result:l,niceMin:l[0],niceMax:l[l.length-1]}}var v=t;(l=[]).push(v);for(var y=Math.abs(e-t)/i,w=0;w<=i;w++)v+=y,l.push(v);return l[l.length-2]>=e&&l.pop(),{result:l,niceMin:l[0],niceMax:l[l.length-1]}}},{key:"linearScale",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:10,a=arguments.length>3?arguments[3]:void 0,s=Math.abs(e-t);"dataPoints"===(i=this._adjustTicksForSmallRange(i,a,s))&&(i=this.w.globals.dataPoints-1);var r=s/i;i===Number.MAX_VALUE&&(i=10,r=1);for(var n=[],o=t;i>=0;)n.push(o),o+=r,i-=1;return{result:n,niceMin:n[0],niceMax:n[n.length-1]}}},{key:"logarithmicScale",value:function(t){for(var e=[],i=Math.ceil(Math.log10(t))+1,a=0;a<i;a++)e.push(Math.pow(10,a));return{result:e,niceMin:e[0],niceMax:e[e.length-1]}}},{key:"_adjustTicksForSmallRange",value:function(t,e,i){var a=t;if(void 0!==e&&this.w.config.yaxis[e].labels.formatter&&void 0===this.w.config.yaxis[e].tickAmount){var s=this.w.config.yaxis[e].labels.formatter(1);f.isNumber(Number(s))&&!f.isFloat(s)&&(a=Math.ceil(i))}return a<t?a:t}},{key:"setYScaleForIndex",value:function(t,e,i){var a=this.w.globals,s=this.w.config,r=a.isBarHorizontal?s.xaxis:s.yaxis[t];void 0===a.yAxisScale[t]&&(a.yAxisScale[t]=[]);var n=Math.abs(i-e);if(r.logarithmic&&n<=5&&(a.invalidLogScale=!0),r.logarithmic&&n>5)a.allSeriesCollapsed=!1,a.yAxisScale[t]=this.logarithmicScale(i);else if(i!==-Number.MAX_VALUE&&f.isNumber(i))if(a.allSeriesCollapsed=!1,void 0===r.min&&void 0===r.max||r.forceNiceScale){var o=void 0===s.yaxis[t].max&&void 0===s.yaxis[t].min||s.yaxis[t].forceNiceScale;a.yAxisScale[t]=this.niceScale(e,i,r.tickAmount?r.tickAmount:n<5&&n>1?n+1:5,t,o)}else a.yAxisScale[t]=this.linearScale(e,i,r.tickAmount,t);else a.yAxisScale[t]=this.linearScale(0,5,5)}},{key:"setXScale",value:function(t,e){var i=this.w,a=i.globals,s=i.config.xaxis,r=Math.abs(e-t);return e!==-Number.MAX_VALUE&&f.isNumber(e)?a.xAxisScale=this.linearScale(t,e,s.tickAmount?s.tickAmount:r<5&&r>1?r+1:5,0):a.xAxisScale=this.linearScale(0,5,5),a.xAxisScale}},{key:"setMultipleYScales",value:function(){var t=this,e=this.w.globals,i=this.w.config,a=e.minYArr.concat([]),s=e.maxYArr.concat([]),r=[];i.yaxis.forEach((function(e,n){var o=n;i.series.forEach((function(t,i){t.name===e.seriesName&&(o=i,n!==i?r.push({index:i,similarIndex:n,alreadyExists:!0}):r.push({index:i}))}));var l=a[o],h=s[o];t.setYScaleForIndex(n,l,h)})),this.sameScaleInMultipleAxes(a,s,r)}},{key:"sameScaleInMultipleAxes",value:function(t,e,i){var a=this,s=this.w.config,r=this.w.globals,n=[];i.forEach((function(t){t.alreadyExists&&(void 0===n[t.index]&&(n[t.index]=[]),n[t.index].push(t.index),n[t.index].push(t.similarIndex))})),r.yAxisSameScaleIndices=n,n.forEach((function(t,e){n.forEach((function(i,a){var s,r;e!==a&&(s=t,r=i,s.filter((function(t){return-1!==r.indexOf(t)}))).length>0&&(n[e]=n[e].concat(n[a]))}))}));var o=n.map((function(t){return t.filter((function(e,i){return t.indexOf(e)===i}))})).map((function(t){return t.sort()}));n=n.filter((function(t){return!!t}));var l=o.slice(),h=l.map((function(t){return JSON.stringify(t)}));l=l.filter((function(t,e){return h.indexOf(JSON.stringify(t))===e}));var c=[],d=[];t.forEach((function(t,i){l.forEach((function(a,s){a.indexOf(i)>-1&&(void 0===c[s]&&(c[s]=[],d[s]=[]),c[s].push({key:i,value:t}),d[s].push({key:i,value:e[i]}))}))}));var g=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,Number.MIN_VALUE),u=Array.apply(null,Array(l.length)).map(Number.prototype.valueOf,-Number.MAX_VALUE);c.forEach((function(t,e){t.forEach((function(t,i){g[e]=Math.min(t.value,g[e])}))})),d.forEach((function(t,e){t.forEach((function(t,i){u[e]=Math.max(t.value,u[e])}))})),t.forEach((function(t,e){d.forEach((function(t,i){var n=g[i],o=u[i];s.chart.stacked&&(o=0,t.forEach((function(t,e){t.value!==-Number.MAX_VALUE&&(o+=t.value),n!==Number.MIN_VALUE&&(n+=c[i][e].value)}))),t.forEach((function(i,l){t[l].key===e&&(void 0!==s.yaxis[e].min&&(n="function"==typeof s.yaxis[e].min?s.yaxis[e].min(r.minY):s.yaxis[e].min),void 0!==s.yaxis[e].max&&(o="function"==typeof s.yaxis[e].max?s.yaxis[e].max(r.maxY):s.yaxis[e].max),a.setYScaleForIndex(e,n,o))}))}))}))}},{key:"autoScaleY",value:function(t,e,i){t||(t=this);var a=t.w;if(a.globals.isMultipleYAxis||a.globals.collapsedSeries.length)return console.warn("autoScaleYaxis is not supported in a multi-yaxis chart."),e;var s=a.globals.seriesX[0],r=a.config.chart.stacked;return e.forEach((function(t,n){for(var o=0,l=0;l<s.length;l++)if(s[l]>=i.xaxis.min){o=l;break}var h,c,d=a.globals.minYArr[n],g=a.globals.maxYArr[n],u=a.globals.stackedSeriesTotals;a.globals.series.forEach((function(n,l){var f=n[o];r?(f=u[o],h=c=f,u.forEach((function(t,e){s[e]<=i.xaxis.max&&s[e]>=i.xaxis.min&&(t>c&&null!==t&&(c=t),n[e]<h&&null!==n[e]&&(h=n[e]))}))):(h=c=f,n.forEach((function(t,e){if(s[e]<=i.xaxis.max&&s[e]>=i.xaxis.min){var r=t,n=t;a.globals.series.forEach((function(i,a){null!==t&&(r=Math.min(i[e],r),n=Math.max(i[e],n))})),n>c&&null!==n&&(c=n),r<h&&null!==r&&(h=r)}}))),void 0===h&&void 0===c&&(h=d,c=g),(c*=c<0?.9:1.1)<0&&c<g&&(c=g),(h*=h<0?1.1:.9)<0&&h>d&&(h=d),e.length>1?(e[l].min=void 0===t.min?h:t.min,e[l].max=void 0===t.max?c:t.max):(e[0].min=void 0===t.min?h:t.min,e[0].max=void 0===t.max?c:t.max)}))})),e}}]),t}(),U=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.scales=new j(i)}return a(t,[{key:"init",value:function(){this.setYRange(),this.setXRange(),this.setZRange()}},{key:"getMinYMaxY",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:-Number.MAX_VALUE,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w.config,r=this.w.globals,n=-Number.MAX_VALUE,o=Number.MIN_VALUE;null===a&&(a=t+1);var l=r.series,h=l,c=l;"candlestick"===s.chart.type?(h=r.seriesCandleL,c=r.seriesCandleH):"boxPlot"===s.chart.type?(h=r.seriesCandleO,c=r.seriesCandleC):r.isRangeData&&(h=r.seriesRangeStart,c=r.seriesRangeEnd);for(var d=t;d<a;d++){r.dataPoints=Math.max(r.dataPoints,l[d].length);for(var g=0;g<r.series[d].length;g++){var u=l[d][g];null!==u&&f.isNumber(u)?(void 0!==c[d][g]&&(n=Math.max(n,c[d][g])),void 0!==h[d][g]&&(e=Math.min(e,h[d][g]),i=Math.max(i,h[d][g])),"candlestick"!==this.w.config.chart.type&&"boxPlot"!==this.w.config.chart.type||(void 0!==r.seriesCandleC[d][g]&&(n=Math.max(n,r.seriesCandleO[d][g]),n=Math.max(n,r.seriesCandleH[d][g]),n=Math.max(n,r.seriesCandleL[d][g]),n=Math.max(n,r.seriesCandleC[d][g]),"boxPlot"===this.w.config.chart.type&&(n=Math.max(n,r.seriesCandleM[d][g]))),!s.series[d].type||"candlestick"===s.series[d].type&&"boxPlot"===s.series[d].type||(n=Math.max(n,r.series[d][g]),e=Math.min(e,r.series[d][g])),i=n),f.isFloat(u)&&(u=f.noExponents(u),r.yValueDecimal=Math.max(r.yValueDecimal,u.toString().split(".")[1].length)),o>h[d][g]&&h[d][g]<0&&(o=h[d][g])):r.hasNullValues=!0}}return"rangeBar"===s.chart.type&&r.seriesRangeStart.length&&r.isBarHorizontal&&"datetime"===s.xaxis.type&&(o=e),"bar"===s.chart.type&&(o<0&&n<0&&(n=0),o===Number.MIN_VALUE&&(o=0)),{minY:o,maxY:n,lowestY:e,highestY:i}}},{key:"setYRange",value:function(){var t=this.w.globals,e=this.w.config;t.maxY=-Number.MAX_VALUE,t.minY=Number.MIN_VALUE;var i=Number.MAX_VALUE;if(t.isMultipleYAxis)for(var a=0;a<t.series.length;a++){var s=this.getMinYMaxY(a,i,null,a+1);t.minYArr.push(s.minY),t.maxYArr.push(s.maxY),i=s.lowestY}var r=this.getMinYMaxY(0,i,null,t.series.length);if(t.minY=r.minY,t.maxY=r.maxY,i=r.lowestY,e.chart.stacked&&this._setStackedMinMax(),("line"===e.chart.type||"area"===e.chart.type||"candlestick"===e.chart.type||"boxPlot"===e.chart.type||"rangeBar"===e.chart.type&&!t.isBarHorizontal)&&t.minY===Number.MIN_VALUE&&i!==-Number.MAX_VALUE&&i!==t.maxY){var n=t.maxY-i;(i>=0&&i<=10||void 0!==e.yaxis[0].min||void 0!==e.yaxis[0].max)&&(n=0),t.minY=i-5*n/100,i>0&&t.minY<0&&(t.minY=0),t.maxY=t.maxY+5*n/100}if(e.yaxis.forEach((function(e,i){void 0!==e.max&&("number"==typeof e.max?t.maxYArr[i]=e.max:"function"==typeof e.max&&(t.maxYArr[i]=e.max(t.isMultipleYAxis?t.maxYArr[i]:t.maxY)),t.maxY=t.maxYArr[i]),void 0!==e.min&&("number"==typeof e.min?t.minYArr[i]=e.min:"function"==typeof e.min&&(t.minYArr[i]=e.min(t.isMultipleYAxis?t.minYArr[i]===Number.MIN_VALUE?0:t.minYArr[i]:t.minY)),t.minY=t.minYArr[i])})),t.isBarHorizontal){["min","max"].forEach((function(i){void 0!==e.xaxis[i]&&"number"==typeof e.xaxis[i]&&("min"===i?t.minY=e.xaxis[i]:t.maxY=e.xaxis[i])}))}return t.isMultipleYAxis?(this.scales.setMultipleYScales(),t.minY=i,t.yAxisScale.forEach((function(e,i){t.minYArr[i]=e.niceMin,t.maxYArr[i]=e.niceMax}))):(this.scales.setYScaleForIndex(0,t.minY,t.maxY),t.minY=t.yAxisScale[0].niceMin,t.maxY=t.yAxisScale[0].niceMax,t.minYArr[0]=t.yAxisScale[0].niceMin,t.maxYArr[0]=t.yAxisScale[0].niceMax),{minY:t.minY,maxY:t.maxY,minYArr:t.minYArr,maxYArr:t.maxYArr,yAxisScale:t.yAxisScale}}},{key:"setXRange",value:function(){var t=this.w.globals,e=this.w.config,i="numeric"===e.xaxis.type||"datetime"===e.xaxis.type||"category"===e.xaxis.type&&!t.noLabelsProvided||t.noLabelsProvided||t.isXNumeric;if(t.isXNumeric&&function(){for(var e=0;e<t.series.length;e++)if(t.labels[e])for(var i=0;i<t.labels[e].length;i++)null!==t.labels[e][i]&&f.isNumber(t.labels[e][i])&&(t.maxX=Math.max(t.maxX,t.labels[e][i]),t.initialMaxX=Math.max(t.maxX,t.labels[e][i]),t.minX=Math.min(t.minX,t.labels[e][i]),t.initialMinX=Math.min(t.minX,t.labels[e][i]))}(),t.noLabelsProvided&&0===e.xaxis.categories.length&&(t.maxX=t.labels[t.labels.length-1],t.initialMaxX=t.labels[t.labels.length-1],t.minX=1,t.initialMinX=1),t.isXNumeric||t.noLabelsProvided||t.dataFormatXNumeric){var a;if(void 0===e.xaxis.tickAmount?(a=Math.round(t.svgWidth/150),"numeric"===e.xaxis.type&&t.dataPoints<30&&(a=t.dataPoints-1),a>t.dataPoints&&0!==t.dataPoints&&(a=t.dataPoints-1)):"dataPoints"===e.xaxis.tickAmount?(t.series.length>1&&(a=t.series[t.maxValsInArrayIndex].length-1),t.isXNumeric&&(a=t.maxX-t.minX-1)):a=e.xaxis.tickAmount,t.xTickAmount=a,void 0!==e.xaxis.max&&"number"==typeof e.xaxis.max&&(t.maxX=e.xaxis.max),void 0!==e.xaxis.min&&"number"==typeof e.xaxis.min&&(t.minX=e.xaxis.min),void 0!==e.xaxis.range&&(t.minX=t.maxX-e.xaxis.range),t.minX!==Number.MAX_VALUE&&t.maxX!==-Number.MAX_VALUE)if(e.xaxis.convertedCatToNumeric&&!t.dataFormatXNumeric){for(var s=[],r=t.minX-1;r<t.maxX;r++)s.push(r+1);t.xAxisScale={result:s,niceMin:s[0],niceMax:s[s.length-1]}}else t.xAxisScale=this.scales.setXScale(t.minX,t.maxX);else t.xAxisScale=this.scales.linearScale(1,a,a),t.noLabelsProvided&&t.labels.length>0&&(t.xAxisScale=this.scales.linearScale(1,t.labels.length,a-1),t.seriesX=t.labels.slice());i&&(t.labels=t.xAxisScale.result.slice())}return t.isBarHorizontal&&t.labels.length&&(t.xTickAmount=t.labels.length),this._handleSingleDataPoint(),this._getMinXDiff(),{minX:t.minX,maxX:t.maxX}}},{key:"setZRange",value:function(){var t=this.w.globals;if(t.isDataXYZ)for(var e=0;e<t.series.length;e++)if(void 0!==t.seriesZ[e])for(var i=0;i<t.seriesZ[e].length;i++)null!==t.seriesZ[e][i]&&f.isNumber(t.seriesZ[e][i])&&(t.maxZ=Math.max(t.maxZ,t.seriesZ[e][i]),t.minZ=Math.min(t.minZ,t.seriesZ[e][i]))}},{key:"_handleSingleDataPoint",value:function(){var t=this.w.globals,e=this.w.config;if(t.minX===t.maxX){var i=new Y(this.ctx);if("datetime"===e.xaxis.type){var a=i.getDate(t.minX);a.setUTCDate(a.getDate()-2),t.minX=new Date(a).getTime();var s=i.getDate(t.maxX);s.setUTCDate(s.getDate()+2),t.maxX=new Date(s).getTime()}else("numeric"===e.xaxis.type||"category"===e.xaxis.type&&!t.noLabelsProvided)&&(t.minX=t.minX-2,t.initialMinX=t.minX,t.maxX=t.maxX+2,t.initialMaxX=t.maxX)}}},{key:"_getMinXDiff",value:function(){var t=this.w.globals;t.isXNumeric&&t.seriesX.forEach((function(e,i){1===e.length&&e.push(t.seriesX[t.maxValsInArrayIndex][t.seriesX[t.maxValsInArrayIndex].length-1]);var a=e.slice();a.sort((function(t,e){return t-e})),a.forEach((function(e,i){if(i>0){var s=e-a[i-1];s>0&&(t.minXDiff=Math.min(s,t.minXDiff))}})),1===t.dataPoints&&t.minXDiff===Number.MAX_VALUE&&(t.minXDiff=.5)}))}},{key:"_setStackedMinMax",value:function(){var t=this.w.globals,e=[],i=[];if(t.series.length)for(var a=0;a<t.series[t.maxValsInArrayIndex].length;a++)for(var s=0,r=0,n=0;n<t.series.length;n++)null!==t.series[n][a]&&f.isNumber(t.series[n][a])&&(t.series[n][a]>0?s=s+parseFloat(t.series[n][a])+1e-4:r+=parseFloat(t.series[n][a])),n===t.series.length-1&&(e.push(s),i.push(r));for(var o=0;o<e.length;o++)t.maxY=Math.max(t.maxY,e[o]),t.minY=Math.min(t.minY,i[o])}}]),t}(),q=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.xaxisFontSize=a.config.xaxis.labels.style.fontSize,this.axisFontFamily=a.config.xaxis.labels.style.fontFamily,this.xaxisForeColors=a.config.xaxis.labels.style.colors,this.isCategoryBarHorizontal="bar"===a.config.chart.type&&a.config.plotOptions.bar.horizontal,this.xAxisoffX=0,"bottom"===a.config.xaxis.position&&(this.xAxisoffX=a.globals.gridHeight),this.drawnLabels=[],this.axesUtils=new B(i)}return a(t,[{key:"drawYaxis",value:function(t){var e=this,i=this.w,a=new b(this.ctx),s=i.config.yaxis[t].labels.style,r=s.fontSize,n=s.fontFamily,o=s.fontWeight,l=a.group({class:"apexcharts-yaxis",rel:t,transform:"translate("+i.globals.translateYAxisX[t]+", 0)"});if(this.axesUtils.isYAxisHidden(t))return l;var h=a.group({class:"apexcharts-yaxis-texts-g"});l.add(h);var c=i.globals.yAxisScale[t].result.length-1,d=i.globals.gridHeight/c,g=i.globals.translateY,u=i.globals.yLabelFormatters[t],f=i.globals.yAxisScale[t].result.slice();f=this.axesUtils.checkForReversedLabels(t,f);var p="";if(i.config.yaxis[t].labels.show)for(var x=function(l){var x=f[l];x=u(x,l);var b=i.config.yaxis[t].labels.padding;i.config.yaxis[t].opposite&&0!==i.config.yaxis.length&&(b*=-1);var m=e.axesUtils.getYAxisForeColor(s.colors,t),v=a.drawText({x:b,y:g+c/10+i.config.yaxis[t].labels.offsetY+1,text:x,textAnchor:i.config.yaxis[t].opposite?"start":"end",fontSize:r,fontFamily:n,fontWeight:o,foreColor:Array.isArray(m)?m[l]:m,isPlainText:!1,cssClass:"apexcharts-yaxis-label "+s.cssClass});if(l===c&&(p=v),h.add(v),0!==i.config.yaxis[t].labels.rotate){var y=a.rotateAroundCenter(p.node),w=a.rotateAroundCenter(v.node);v.node.setAttribute("transform","rotate(".concat(i.config.yaxis[t].labels.rotate," ").concat(y.x," ").concat(w.y,")"))}g+=d},m=c;m>=0;m--)x(m);if(void 0!==i.config.yaxis[t].title.text){var v=a.group({class:"apexcharts-yaxis-title"}),y=0;i.config.yaxis[t].opposite&&(y=i.globals.translateYAxisX[t]);var w=a.drawText({x:y,y:i.globals.gridHeight/2+i.globals.translateY+i.config.yaxis[t].title.offsetY,text:i.config.yaxis[t].title.text,textAnchor:"end",foreColor:i.config.yaxis[t].title.style.color,fontSize:i.config.yaxis[t].title.style.fontSize,fontWeight:i.config.yaxis[t].title.style.fontWeight,fontFamily:i.config.yaxis[t].title.style.fontFamily,cssClass:"apexcharts-yaxis-title-text "+i.config.yaxis[t].title.style.cssClass});v.add(w),l.add(v)}var k=i.config.yaxis[t].axisBorder,A=31+k.offsetX;if(i.config.yaxis[t].opposite&&(A=-31-k.offsetX),k.show){var S=a.drawLine(A,i.globals.translateY+k.offsetY-2,A,i.globals.gridHeight+i.globals.translateY+k.offsetY+2,k.color,0,k.width);l.add(S)}return i.config.yaxis[t].axisTicks.show&&this.axesUtils.drawYAxisTicks(A,c,k,i.config.yaxis[t].axisTicks,t,d,l),l}},{key:"drawYaxisInversed",value:function(t){var e=this.w,i=new b(this.ctx),a=i.group({class:"apexcharts-xaxis apexcharts-yaxis-inversed"}),s=i.group({class:"apexcharts-xaxis-texts-g",transform:"translate(".concat(e.globals.translateXAxisX,", ").concat(e.globals.translateXAxisY,")")});a.add(s);var r=e.globals.yAxisScale[t].result.length-1,n=e.globals.gridWidth/r+.1,o=n+e.config.xaxis.labels.offsetX,l=e.globals.xLabelFormatter,h=e.globals.yAxisScale[t].result.slice(),c=e.globals.timescaleLabels;c.length>0&&(this.xaxisLabels=c.slice(),r=(h=c.slice()).length),h=this.axesUtils.checkForReversedLabels(t,h);var d=c.length;if(e.config.xaxis.labels.show)for(var g=d?0:r;d?g<d:g>=0;d?g++:g--){var u=h[g];u=l(u,g);var f=e.globals.gridWidth+e.globals.padHorizontal-(o-n+e.config.xaxis.labels.offsetX);if(c.length){var p=this.axesUtils.getLabel(h,c,f,g,this.drawnLabels,this.xaxisFontSize);f=p.x,u=p.text,this.drawnLabels.push(p.text),0===g&&e.globals.skipFirstTimelinelabel&&(u=""),g===h.length-1&&e.globals.skipLastTimelinelabel&&(u="")}var x=i.drawText({x:f,y:this.xAxisoffX+e.config.xaxis.labels.offsetY+30-("top"===e.config.xaxis.position?e.globals.xAxisHeight+e.config.xaxis.axisTicks.height-2:0),text:u,textAnchor:"middle",foreColor:Array.isArray(this.xaxisForeColors)?this.xaxisForeColors[t]:this.xaxisForeColors,fontSize:this.xaxisFontSize,fontFamily:this.xaxisFontFamily,fontWeight:e.config.xaxis.labels.style.fontWeight,isPlainText:!1,cssClass:"apexcharts-xaxis-label "+e.config.xaxis.labels.style.cssClass});s.add(x),x.tspan(u);var m=document.createElementNS(e.globals.SVGNS,"title");m.textContent=u,x.node.appendChild(m),o+=n}return this.inversedYAxisTitleText(a),this.inversedYAxisBorder(a),a}},{key:"inversedYAxisBorder",value:function(t){var e=this.w,i=new b(this.ctx),a=e.config.xaxis.axisBorder;if(a.show){var s=0;"bar"===e.config.chart.type&&e.globals.isXNumeric&&(s-=15);var r=i.drawLine(e.globals.padHorizontal+s+a.offsetX,this.xAxisoffX,e.globals.gridWidth,this.xAxisoffX,a.color,0,a.height);t.add(r)}}},{key:"inversedYAxisTitleText",value:function(t){var e=this.w,i=new b(this.ctx);if(void 0!==e.config.xaxis.title.text){var a=i.group({class:"apexcharts-xaxis-title apexcharts-yaxis-title-inversed"}),s=i.drawText({x:e.globals.gridWidth/2+e.config.xaxis.title.offsetX,y:this.xAxisoffX+parseFloat(this.xaxisFontSize)+parseFloat(e.config.xaxis.title.style.fontSize)+e.config.xaxis.title.offsetY+20,text:e.config.xaxis.title.text,textAnchor:"middle",fontSize:e.config.xaxis.title.style.fontSize,fontFamily:e.config.xaxis.title.style.fontFamily,fontWeight:e.config.xaxis.title.style.fontWeight,foreColor:e.config.xaxis.title.style.color,cssClass:"apexcharts-xaxis-title-text "+e.config.xaxis.title.style.cssClass});a.add(s),t.add(a)}}},{key:"yAxisTitleRotate",value:function(t,e){var i=this.w,a=new b(this.ctx),s={width:0,height:0},r={width:0,height:0},n=i.globals.dom.baseEl.querySelector(" .apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-texts-g"));null!==n&&(s=n.getBoundingClientRect());var o=i.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(t,"'] .apexcharts-yaxis-title text"));if(null!==o&&(r=o.getBoundingClientRect()),null!==o){var l=this.xPaddingForYAxisTitle(t,s,r,e);o.setAttribute("x",l.xPos-(e?10:0))}if(null!==o){var h=a.rotateAroundCenter(o);o.setAttribute("transform","rotate(".concat(e?-1*i.config.yaxis[t].title.rotate:i.config.yaxis[t].title.rotate," ").concat(h.x," ").concat(h.y,")"))}}},{key:"xPaddingForYAxisTitle",value:function(t,e,i,a){var s=this.w,r=0,n=0,o=10;return void 0===s.config.yaxis[t].title.text||t<0?{xPos:n,padd:0}:(a?(n=e.width+s.config.yaxis[t].title.offsetX+i.width/2+o/2,0===(r+=1)&&(n-=o/2)):(n=-1*e.width+s.config.yaxis[t].title.offsetX+o/2+i.width/2,s.globals.isBarHorizontal&&(o=25,n=-1*e.width-s.config.yaxis[t].title.offsetX-o)),{xPos:n,padd:o})}},{key:"setYAxisXPosition",value:function(t,e){var i=this.w,a=0,s=0,r=18,n=1;i.config.yaxis.length>1&&(this.multipleYs=!0),i.config.yaxis.map((function(o,l){var h=i.globals.ignoreYAxisIndexes.indexOf(l)>-1||!o.show||o.floating||0===t[l].width,c=t[l].width+e[l].width;o.opposite?i.globals.isBarHorizontal?(s=i.globals.gridWidth+i.globals.translateX-1,i.globals.translateYAxisX[l]=s-o.labels.offsetX):(s=i.globals.gridWidth+i.globals.translateX+n,h||(n=n+c+20),i.globals.translateYAxisX[l]=s-o.labels.offsetX+20):(a=i.globals.translateX-r,h||(r=r+c+20),i.globals.translateYAxisX[l]=a+o.labels.offsetX)}))}},{key:"setYAxisTextAlignments",value:function(){var t=this.w,e=t.globals.dom.baseEl.getElementsByClassName("apexcharts-yaxis");(e=f.listToArray(e)).forEach((function(e,i){var a=t.config.yaxis[i];if(a&&void 0!==a.labels.align){var s=t.globals.dom.baseEl.querySelector(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-texts-g")),r=t.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxis[rel='".concat(i,"'] .apexcharts-yaxis-label"));r=f.listToArray(r);var n=s.getBoundingClientRect();"left"===a.labels.align?(r.forEach((function(t,e){t.setAttribute("text-anchor","start")})),a.opposite||s.setAttribute("transform","translate(-".concat(n.width,", 0)"))):"center"===a.labels.align?(r.forEach((function(t,e){t.setAttribute("text-anchor","middle")})),s.setAttribute("transform","translate(".concat(n.width/2*(a.opposite?1:-1),", 0)"))):"right"===a.labels.align&&(r.forEach((function(t,e){t.setAttribute("text-anchor","end")})),a.opposite&&s.setAttribute("transform","translate(".concat(n.width,", 0)")))}}))}}]),t}(),Z=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.documentEvent=f.bind(this.documentEvent,this)}return a(t,[{key:"addEventListener",value:function(t,e){var i=this.w;i.globals.events.hasOwnProperty(t)?i.globals.events[t].push(e):i.globals.events[t]=[e]}},{key:"removeEventListener",value:function(t,e){var i=this.w;if(i.globals.events.hasOwnProperty(t)){var a=i.globals.events[t].indexOf(e);-1!==a&&i.globals.events[t].splice(a,1)}}},{key:"fireEvent",value:function(t,e){var i=this.w;if(i.globals.events.hasOwnProperty(t)){e&&e.length||(e=[]);for(var a=i.globals.events[t],s=a.length,r=0;r<s;r++)a[r].apply(null,e)}}},{key:"setupEventHandlers",value:function(){var t=this,e=this.w,i=this.ctx,a=e.globals.dom.baseEl.querySelector(e.globals.chartClass);this.ctx.eventList.forEach((function(t){a.addEventListener(t,(function(t){var a=Object.assign({},e,{seriesIndex:e.globals.capturedSeriesIndex,dataPointIndex:e.globals.capturedDataPointIndex});"mousemove"===t.type||"touchmove"===t.type?"function"==typeof e.config.chart.events.mouseMove&&e.config.chart.events.mouseMove(t,i,a):("mouseup"===t.type&&1===t.which||"touchend"===t.type)&&("function"==typeof e.config.chart.events.click&&e.config.chart.events.click(t,i,a),i.ctx.events.fireEvent("click",[t,i,a]))}),{capture:!1,passive:!0})})),this.ctx.eventList.forEach((function(i){e.globals.dom.baseEl.addEventListener(i,t.documentEvent,{passive:!0})})),this.ctx.core.setupBrushHandler()}},{key:"documentEvent",value:function(t){var e=this.w,i=t.target.className;if("click"===t.type){var a=e.globals.dom.baseEl.querySelector(".apexcharts-menu");a&&a.classList.contains("apexcharts-menu-open")&&"apexcharts-menu-icon"!==i&&a.classList.remove("apexcharts-menu-open")}e.globals.clientX="touchmove"===t.type?t.touches[0].clientX:t.clientX,e.globals.clientY="touchmove"===t.type?t.touches[0].clientY:t.clientY}}]),t}(),$=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"setCurrentLocaleValues",value:function(t){var e=this.w.config.chart.locales;window.Apex.chart&&window.Apex.chart.locales&&window.Apex.chart.locales.length>0&&(e=this.w.config.chart.locales.concat(window.Apex.chart.locales));var i=e.filter((function(e){return e.name===t}))[0];if(!i)throw new Error("Wrong locale name provided. Please make sure you set the correct locale name in options");var a=f.extend(A,i);this.w.globals.locale=a.options}}]),t}(),J=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawAxis",value:function(t,e){var i,a,s=this.w.globals,r=this.w.config,n=new _(this.ctx),o=new q(this.ctx);s.axisCharts&&"radar"!==t&&(s.isBarHorizontal?(a=o.drawYaxisInversed(0),i=n.drawXaxisInversed(0),s.dom.elGraphical.add(i),s.dom.elGraphical.add(a)):(i=n.drawXaxis(),s.dom.elGraphical.add(i),r.yaxis.map((function(t,e){-1===s.ignoreYAxisIndexes.indexOf(e)&&(a=o.drawYaxis(e),s.dom.Paper.add(a))}))))}}]),t}(),Q=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawXCrosshairs",value:function(){var t=this.w,e=new b(this.ctx),i=new x(this.ctx),a=t.config.xaxis.crosshairs.fill.gradient,s=t.config.xaxis.crosshairs.dropShadow,r=t.config.xaxis.crosshairs.fill.type,n=a.colorFrom,o=a.colorTo,l=a.opacityFrom,h=a.opacityTo,c=a.stops,d=s.enabled,g=s.left,u=s.top,p=s.blur,m=s.color,v=s.opacity,y=t.config.xaxis.crosshairs.fill.color;if(t.config.xaxis.crosshairs.show){"gradient"===r&&(y=e.drawGradient("vertical",n,o,l,h,null,c,null));var w=e.drawRect();1===t.config.xaxis.crosshairs.width&&(w=e.drawLine()),w.attr({class:"apexcharts-xcrosshairs",x:0,y:0,y2:t.globals.gridHeight,width:f.isNumber(t.config.xaxis.crosshairs.width)?t.config.xaxis.crosshairs.width:0,height:t.globals.gridHeight,fill:y,filter:"none","fill-opacity":t.config.xaxis.crosshairs.opacity,stroke:t.config.xaxis.crosshairs.stroke.color,"stroke-width":t.config.xaxis.crosshairs.stroke.width,"stroke-dasharray":t.config.xaxis.crosshairs.stroke.dashArray}),d&&(w=i.dropShadow(w,{left:g,top:u,blur:p,color:m,opacity:v})),t.globals.dom.elGraphical.add(w)}}},{key:"drawYCrosshairs",value:function(){var t=this.w,e=new b(this.ctx),i=t.config.yaxis[0].crosshairs,a=t.globals.barPadForNumericAxis;if(t.config.yaxis[0].crosshairs.show){var s=e.drawLine(-a,0,t.globals.gridWidth+a,0,i.stroke.color,i.stroke.dashArray,i.stroke.width);s.attr({class:"apexcharts-ycrosshairs"}),t.globals.dom.elGraphical.add(s)}var r=e.drawLine(-a,0,t.globals.gridWidth+a,0,i.stroke.color,0,0);r.attr({class:"apexcharts-ycrosshairs-hidden"}),t.globals.dom.elGraphical.add(r)}}]),t}(),K=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"checkResponsiveConfig",value:function(t){var e=this,i=this.w,a=i.config;if(0!==a.responsive.length){var s=a.responsive.slice();s.sort((function(t,e){return t.breakpoint>e.breakpoint?1:e.breakpoint>t.breakpoint?-1:0})).reverse();var r=new D({}),n=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},a=s[0].breakpoint,n=window.innerWidth>0?window.innerWidth:screen.width;if(n>a){var o=y.extendArrayProps(r,i.globals.initialConfig,i);t=f.extend(o,t),t=f.extend(i.config,t),e.overrideResponsiveOptions(t)}else for(var l=0;l<s.length;l++)n<s[l].breakpoint&&(t=y.extendArrayProps(r,s[l].options,i),t=f.extend(i.config,t),e.overrideResponsiveOptions(t))};if(t){var o=y.extendArrayProps(r,t,i);o=f.extend(i.config,o),n(o=f.extend(o,t))}else n({})}}},{key:"overrideResponsiveOptions",value:function(t){var e=new D(t).init({responsiveOverride:!0});this.w.config=e}}]),t}(),tt=function(){function t(i){e(this,t),this.ctx=i,this.colors=[],this.w=i.w;var a=this.w;this.isColorFn=!1,this.isHeatmapDistributed="treemap"===a.config.chart.type&&a.config.plotOptions.treemap.distributed||"heatmap"===a.config.chart.type&&a.config.plotOptions.heatmap.distributed,this.isBarDistributed=a.config.plotOptions.bar.distributed&&("bar"===a.config.chart.type||"rangeBar"===a.config.chart.type)}return a(t,[{key:"init",value:function(){this.setDefaultColors()}},{key:"setDefaultColors",value:function(){var t=this,e=this.w,i=new f;if(e.globals.dom.elWrap.classList.add("apexcharts-theme-".concat(e.config.theme.mode)),void 0===e.config.colors?e.globals.colors=this.predefined():(e.globals.colors=e.config.colors,Array.isArray(e.config.colors)&&e.config.colors.length>0&&"function"==typeof e.config.colors[0]&&(e.globals.colors=e.config.series.map((function(i,a){var s=e.config.colors[a];return s||(s=e.config.colors[0]),"function"==typeof s?(t.isColorFn=!0,s({value:e.globals.axisCharts?e.globals.series[a][0]?e.globals.series[a][0]:0:e.globals.series[a],seriesIndex:a,dataPointIndex:a,w:e})):s})))),e.globals.seriesColors.map((function(t,i){t&&(e.globals.colors[i]=t)})),e.config.theme.monochrome.enabled){var a=[],s=e.globals.series.length;(this.isBarDistributed||this.isHeatmapDistributed)&&(s=e.globals.series[0].length*e.globals.series.length);for(var r=e.config.theme.monochrome.color,n=1/(s/e.config.theme.monochrome.shadeIntensity),o=e.config.theme.monochrome.shadeTo,l=0,h=0;h<s;h++){var c=void 0;"dark"===o?(c=i.shadeColor(-1*l,r),l+=n):(c=i.shadeColor(l,r),l+=n),a.push(c)}e.globals.colors=a.slice()}var d=e.globals.colors.slice();this.pushExtraColors(e.globals.colors);["fill","stroke"].forEach((function(i){void 0===e.config[i].colors?e.globals[i].colors=t.isColorFn?e.config.colors:d:e.globals[i].colors=e.config[i].colors.slice(),t.pushExtraColors(e.globals[i].colors)})),void 0===e.config.dataLabels.style.colors?e.globals.dataLabels.style.colors=d:e.globals.dataLabels.style.colors=e.config.dataLabels.style.colors.slice(),this.pushExtraColors(e.globals.dataLabels.style.colors,50),void 0===e.config.plotOptions.radar.polygons.fill.colors?e.globals.radarPolygons.fill.colors=["dark"===e.config.theme.mode?"#424242":"none"]:e.globals.radarPolygons.fill.colors=e.config.plotOptions.radar.polygons.fill.colors.slice(),this.pushExtraColors(e.globals.radarPolygons.fill.colors,20),void 0===e.config.markers.colors?e.globals.markers.colors=d:e.globals.markers.colors=e.config.markers.colors.slice(),this.pushExtraColors(e.globals.markers.colors)}},{key:"pushExtraColors",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=e||a.globals.series.length;if(null===i&&(i=this.isBarDistributed||this.isHeatmapDistributed||"heatmap"===a.config.chart.type&&a.config.plotOptions.heatmap.colorScale.inverse),i&&a.globals.series.length&&(s=a.globals.series[a.globals.maxValsInArrayIndex].length*a.globals.series.length),t.length<s)for(var r=s-t.length,n=0;n<r;n++)t.push(t[n])}},{key:"updateThemeOptions",value:function(t){t.chart=t.chart||{},t.tooltip=t.tooltip||{};var e=t.theme.mode||"light",i=t.theme.palette?t.theme.palette:"dark"===e?"palette4":"palette1",a=t.chart.foreColor?t.chart.foreColor:"dark"===e?"#f6f7f8":"#373d3f";return t.tooltip.theme=e,t.chart.foreColor=a,t.theme.palette=i,t}},{key:"predefined",value:function(){switch(this.w.config.theme.palette){case"palette1":this.colors=["#008FFB","#00E396","#FEB019","#FF4560","#775DD0"];break;case"palette2":this.colors=["#3f51b5","#03a9f4","#4caf50","#f9ce1d","#FF9800"];break;case"palette3":this.colors=["#33b2df","#546E7A","#d4526e","#13d8aa","#A5978B"];break;case"palette4":this.colors=["#4ecdc4","#c7f464","#81D4FA","#fd6a6a","#546E7A"];break;case"palette5":this.colors=["#2b908f","#f9a3a4","#90ee7e","#fa4443","#69d2e7"];break;case"palette6":this.colors=["#449DD1","#F86624","#EA3546","#662E9B","#C5D86D"];break;case"palette7":this.colors=["#D7263D","#1B998B","#2E294E","#F46036","#E2C044"];break;case"palette8":this.colors=["#662E9B","#F86624","#F9C80E","#EA3546","#43BCCD"];break;case"palette9":this.colors=["#5C4742","#A5978B","#8D5B4C","#5A2A27","#C4BBAF"];break;case"palette10":this.colors=["#A300D6","#7D02EB","#5653FE","#2983FF","#00B1F2"];break;default:this.colors=["#008FFB","#00E396","#FEB019","#FF4560","#775DD0"]}return this.colors}}]),t}(),et=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"draw",value:function(){this.drawTitleSubtitle("title"),this.drawTitleSubtitle("subtitle")}},{key:"drawTitleSubtitle",value:function(t){var e=this.w,i="title"===t?e.config.title:e.config.subtitle,a=e.globals.svgWidth/2,s=i.offsetY,r="middle";if("left"===i.align?(a=10,r="start"):"right"===i.align&&(a=e.globals.svgWidth-10,r="end"),a+=i.offsetX,s=s+parseInt(i.style.fontSize,10)+i.margin/2,void 0!==i.text){var n=new b(this.ctx).drawText({x:a,y:s,text:i.text,textAnchor:r,fontSize:i.style.fontSize,fontFamily:i.style.fontFamily,fontWeight:i.style.fontWeight,foreColor:i.style.color,opacity:1});n.node.setAttribute("class","apexcharts-".concat(t,"-text")),e.globals.dom.Paper.add(n)}}}]),t}(),it=function(){function t(i){e(this,t),this.w=i.w,this.dCtx=i}return a(t,[{key:"getTitleSubtitleCoords",value:function(t){var e=this.w,i=0,a=0,s="title"===t?e.config.title.floating:e.config.subtitle.floating,r=e.globals.dom.baseEl.querySelector(".apexcharts-".concat(t,"-text"));if(null!==r&&!s){var n=r.getBoundingClientRect();i=n.width,a=e.globals.axisCharts?n.height+5:n.height}return{width:i,height:a}}},{key:"getLegendsRect",value:function(){var t=this.w,e=t.globals.dom.baseEl.querySelector(".apexcharts-legend");t.config.legend.height||"top"!==t.config.legend.position&&"bottom"!==t.config.legend.position||(e.style.maxHeight=t.globals.svgHeight/2+"px");var i=Object.assign({},f.getBoundingClientRect(e));return null!==e&&!t.config.legend.floating&&t.config.legend.show?this.dCtx.lgRect={x:i.x,y:i.y,height:i.height,width:0===i.height?0:i.width}:this.dCtx.lgRect={x:0,y:0,height:0,width:0},"left"!==t.config.legend.position&&"right"!==t.config.legend.position||1.5*this.dCtx.lgRect.width>t.globals.svgWidth&&(this.dCtx.lgRect.width=t.globals.svgWidth/1.5),this.dCtx.lgRect}},{key:"getLargestStringFromMultiArr",value:function(t,e){var i=t;if(this.w.globals.isMultiLineX){var a=e.map((function(t,e){return Array.isArray(t)?t.length:1})),s=Math.max.apply(Math,g(a));i=e[a.indexOf(s)]}return i}}]),t}(),at=function(){function t(i){e(this,t),this.w=i.w,this.dCtx=i}return a(t,[{key:"getxAxisLabelsCoords",value:function(){var t,e=this.w,i=e.globals.labels.slice();if(e.config.xaxis.convertedCatToNumeric&&0===i.length&&(i=e.globals.categoryLabels),e.globals.timescaleLabels.length>0){var a=this.getxAxisTimeScaleLabelsCoords();t={width:a.width,height:a.height},e.globals.rotateXLabels=!1}else{this.dCtx.lgWidthForSideLegends="left"!==e.config.legend.position&&"right"!==e.config.legend.position||e.config.legend.floating?0:this.dCtx.lgRect.width;var s=e.globals.xLabelFormatter,r=f.getLargestStringFromArr(i),n=this.dCtx.dimHelpers.getLargestStringFromMultiArr(r,i);e.globals.isBarHorizontal&&(n=r=e.globals.yAxisScale[0].result.reduce((function(t,e){return t.length>e.length?t:e}),0));var o=new W(this.dCtx.ctx),l=r;r=o.xLabelFormat(s,r,l,{i:void 0,dateFormatter:new Y(this.dCtx.ctx).formatDate,w:e}),n=o.xLabelFormat(s,n,l,{i:void 0,dateFormatter:new Y(this.dCtx.ctx).formatDate,w:e}),(e.config.xaxis.convertedCatToNumeric&&void 0===r||""===String(r).trim())&&(n=r="1");var h=new b(this.dCtx.ctx),c=h.getTextRects(r,e.config.xaxis.labels.style.fontSize),d=c;if(r!==n&&(d=h.getTextRects(n,e.config.xaxis.labels.style.fontSize)),(t={width:c.width>=d.width?c.width:d.width,height:c.height>=d.height?c.height:d.height}).width*i.length>e.globals.svgWidth-this.dCtx.lgWidthForSideLegends-this.dCtx.yAxisWidth-this.dCtx.gridPad.left-this.dCtx.gridPad.right&&0!==e.config.xaxis.labels.rotate||e.config.xaxis.labels.rotateAlways){if(!e.globals.isBarHorizontal){e.globals.rotateXLabels=!0;var g=function(t){return h.getTextRects(t,e.config.xaxis.labels.style.fontSize,e.config.xaxis.labels.style.fontFamily,"rotate(".concat(e.config.xaxis.labels.rotate," 0 0)"),!1)};c=g(r),r!==n&&(d=g(n)),t.height=(c.height>d.height?c.height:d.height)/1.5,t.width=c.width>d.width?c.width:d.width}}else e.globals.rotateXLabels=!1}return e.config.xaxis.labels.show||(t={width:0,height:0}),{width:t.width,height:t.height}}},{key:"getxAxisTitleCoords",value:function(){var t=this.w,e=0,i=0;if(void 0!==t.config.xaxis.title.text){var a=new b(this.dCtx.ctx).getTextRects(t.config.xaxis.title.text,t.config.xaxis.title.style.fontSize);e=a.width,i=a.height}return{width:e,height:i}}},{key:"getxAxisTimeScaleLabelsCoords",value:function(){var t,e=this.w;this.dCtx.timescaleLabels=e.globals.timescaleLabels.slice();var i=this.dCtx.timescaleLabels.map((function(t){return t.value})),a=i.reduce((function(t,e){return void 0===t?(console.error("You have possibly supplied invalid Date format. Please supply a valid JavaScript Date"),0):t.length>e.length?t:e}),0);return 1.05*(t=new b(this.dCtx.ctx).getTextRects(a,e.config.xaxis.labels.style.fontSize)).width*i.length>e.globals.gridWidth&&0!==e.config.xaxis.labels.rotate&&(e.globals.overlappingXLabels=!0),t}},{key:"additionalPaddingXLabels",value:function(t){var e=this,i=this.w,a=i.globals,s=i.config,r=s.xaxis.type,n=t.width;a.skipLastTimelinelabel=!1,a.skipFirstTimelinelabel=!1;var o=i.config.yaxis[0].opposite&&i.globals.isBarHorizontal,l=function(t,o){(function(t){return-1!==a.collapsedSeriesIndices.indexOf(t)})(o)||function(t){if(e.dCtx.timescaleLabels&&e.dCtx.timescaleLabels.length){var o=e.dCtx.timescaleLabels[0],l=e.dCtx.timescaleLabels[e.dCtx.timescaleLabels.length-1].position+n/1.75-e.dCtx.yAxisWidthRight,h=o.position-n/1.75+e.dCtx.yAxisWidthLeft,c="right"===i.config.legend.position&&e.dCtx.lgRect.width>0?e.dCtx.lgRect.width:0;l>a.svgWidth-a.translateX-c&&(a.skipLastTimelinelabel=!0),h<-(t.show&&!t.floating||"bar"!==s.chart.type&&"candlestick"!==s.chart.type&&"rangeBar"!==s.chart.type&&"boxPlot"!==s.chart.type?10:n/1.75)&&(a.skipFirstTimelinelabel=!0)}else"datetime"===r?e.dCtx.gridPad.right<n&&!a.rotateXLabels&&(a.skipLastTimelinelabel=!0):"datetime"!==r&&e.dCtx.gridPad.right<n/2-e.dCtx.yAxisWidthRight&&!a.rotateXLabels&&("between"!==i.config.xaxis.tickPlacement||i.globals.isBarHorizontal)&&(e.dCtx.xPadRight=n/2+1)}(t)};s.yaxis.forEach((function(t,i){o?(e.dCtx.gridPad.left<n&&(e.dCtx.xPadLeft=n/2+1),e.dCtx.xPadRight=n/2+1):l(t,i)}))}}]),t}(),st=function(){function t(i){e(this,t),this.w=i.w,this.dCtx=i}return a(t,[{key:"getyAxisLabelsCoords",value:function(){var t=this,e=this.w,i=[],a=10,s=new B(this.dCtx.ctx);return e.config.yaxis.map((function(r,n){var o=e.globals.yAxisScale[n];if(!s.isYAxisHidden(n)&&r.labels.show&&o.result.length){var l=e.globals.yLabelFormatters[n],h=o.niceMin===Number.MIN_VALUE?0:o.niceMin,c=String(h).length>String(o.niceMax).length?h:o.niceMax,d=l(c,{seriesIndex:n,dataPointIndex:-1,w:e}),g=d;if(void 0!==d&&0!==d.length||(d=c),e.globals.isBarHorizontal){a=0;var u=e.globals.labels.slice();d=l(d=f.getLargestStringFromArr(u),{seriesIndex:n,dataPointIndex:-1,w:e}),g=t.dCtx.dimHelpers.getLargestStringFromMultiArr(d,u)}var p=new b(t.dCtx.ctx),x="rotate(".concat(r.labels.rotate," 0 0)"),m=p.getTextRects(d,r.labels.style.fontSize,r.labels.style.fontFamily,x,!1),v=m;d!==g&&(v=p.getTextRects(g,r.labels.style.fontSize,r.labels.style.fontFamily,x,!1)),i.push({width:(v.width>m.width?v.width:m.width)+a,height:v.height>m.height?v.height:m.height})}else i.push({width:0,height:0})})),i}},{key:"getyAxisTitleCoords",value:function(){var t=this,e=this.w,i=[];return e.config.yaxis.map((function(e,a){if(e.show&&void 0!==e.title.text){var s=new b(t.dCtx.ctx),r="rotate(".concat(e.title.rotate," 0 0)"),n=s.getTextRects(e.title.text,e.title.style.fontSize,e.title.style.fontFamily,r,!1);i.push({width:n.width,height:n.height})}else i.push({width:0,height:0})})),i}},{key:"getTotalYAxisWidth",value:function(){var t=this.w,e=0,i=0,a=0,s=t.globals.yAxisScale.length>1?10:0,r=new B(this.dCtx.ctx),n=function(n,o){var l=t.config.yaxis[o].floating,h=0;n.width>0&&!l?(h=n.width+s,function(e){return t.globals.ignoreYAxisIndexes.indexOf(e)>-1}(o)&&(h=h-n.width-s)):h=l||r.isYAxisHidden(o)?0:5,t.config.yaxis[o].opposite?a+=h:i+=h,e+=h};return t.globals.yLabelsCoords.map((function(t,e){n(t,e)})),t.globals.yTitleCoords.map((function(t,e){n(t,e)})),t.globals.isBarHorizontal&&!t.config.yaxis[0].floating&&(e=t.globals.yLabelsCoords[0].width+t.globals.yTitleCoords[0].width+15),this.dCtx.yAxisWidthLeft=i,this.dCtx.yAxisWidthRight=a,e}}]),t}(),rt=function(){function t(i){e(this,t),this.w=i.w,this.dCtx=i}return a(t,[{key:"gridPadForColumnsInNumericAxis",value:function(t){var e=this.w;if(e.globals.noData||e.globals.allSeriesCollapsed)return 0;var i=function(t){return"bar"===t||"rangeBar"===t||"candlestick"===t||"boxPlot"===t},a=e.config.chart.type,s=0,r=i(a)?e.config.series.length:1;if(e.globals.comboBarCount>0&&(r=e.globals.comboBarCount),e.globals.collapsedSeries.forEach((function(t){i(t.type)&&(r-=1)})),e.config.chart.stacked&&(r=1),(i(a)||e.globals.comboBarCount>0)&&e.globals.isXNumeric&&!e.globals.isBarHorizontal&&r>0){var n,o,l=Math.abs(e.globals.initialMaxX-e.globals.initialMinX);l<=3&&(l=e.globals.dataPoints),n=l/t,e.globals.minXDiff&&e.globals.minXDiff/n>0&&(o=e.globals.minXDiff/n),o>t/2&&(o/=2),(s=o/r*parseInt(e.config.plotOptions.bar.columnWidth,10)/100)<1&&(s=1),s=s/(r>1?1:1.5)+5,e.globals.barPadForNumericAxis=s}return s}},{key:"gridPadFortitleSubtitle",value:function(){var t=this,e=this.w,i=e.globals,a=this.dCtx.isSparkline||!e.globals.axisCharts?0:10;["title","subtitle"].forEach((function(i){void 0!==e.config[i].text?a+=e.config[i].margin:a+=t.dCtx.isSparkline||!e.globals.axisCharts?0:5})),!e.config.legend.show||"bottom"!==e.config.legend.position||e.config.legend.floating||e.globals.axisCharts||(a+=10);var s=this.dCtx.dimHelpers.getTitleSubtitleCoords("title"),r=this.dCtx.dimHelpers.getTitleSubtitleCoords("subtitle");i.gridHeight=i.gridHeight-s.height-r.height-a,i.translateY=i.translateY+s.height+r.height+a}},{key:"setGridXPosForDualYAxis",value:function(t,e){var i=this.w,a=new B(this.dCtx.ctx);i.config.yaxis.map((function(s,r){-1!==i.globals.ignoreYAxisIndexes.indexOf(r)||s.floating||a.isYAxisHidden(r)||(s.opposite&&(i.globals.translateX=i.globals.translateX-(e[r].width+t[r].width)-parseInt(i.config.yaxis[r].labels.style.fontSize,10)/1.2-12),i.globals.translateX<2&&(i.globals.translateX=2))}))}}]),t}(),nt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.lgRect={},this.yAxisWidth=0,this.yAxisWidthLeft=0,this.yAxisWidthRight=0,this.xAxisHeight=0,this.isSparkline=this.w.config.chart.sparkline.enabled,this.dimHelpers=new it(this),this.dimYAxis=new st(this),this.dimXAxis=new at(this),this.dimGrid=new rt(this),this.lgWidthForSideLegends=0,this.gridPad=this.w.config.grid.padding,this.xPadRight=0,this.xPadLeft=0}return a(t,[{key:"plotCoords",value:function(){var t=this.w.globals;this.lgRect=this.dimHelpers.getLegendsRect(),t.axisCharts?this.setDimensionsForAxisCharts():this.setDimensionsForNonAxisCharts(),this.dimGrid.gridPadFortitleSubtitle(),t.gridHeight=t.gridHeight-this.gridPad.top-this.gridPad.bottom,t.gridWidth=t.gridWidth-this.gridPad.left-this.gridPad.right-this.xPadRight-this.xPadLeft;var e=this.dimGrid.gridPadForColumnsInNumericAxis(t.gridWidth);t.gridWidth=t.gridWidth-2*e,t.translateX=t.translateX+this.gridPad.left+this.xPadLeft+(e>0?e+4:0),t.translateY=t.translateY+this.gridPad.top}},{key:"setDimensionsForAxisCharts",value:function(){var t=this,e=this.w,i=e.globals,a=this.dimYAxis.getyAxisLabelsCoords(),s=this.dimYAxis.getyAxisTitleCoords();e.globals.yLabelsCoords=[],e.globals.yTitleCoords=[],e.config.yaxis.map((function(t,i){e.globals.yLabelsCoords.push({width:a[i].width,index:i}),e.globals.yTitleCoords.push({width:s[i].width,index:i})})),this.yAxisWidth=this.dimYAxis.getTotalYAxisWidth();var r=this.dimXAxis.getxAxisLabelsCoords(),n=this.dimXAxis.getxAxisTitleCoords();this.conditionalChecksForAxisCoords(r,n),i.translateXAxisY=e.globals.rotateXLabels?this.xAxisHeight/8:-4,i.translateXAxisX=e.globals.rotateXLabels&&e.globals.isXNumeric&&e.config.xaxis.labels.rotate<=-45?-this.xAxisWidth/4:0,e.globals.isBarHorizontal&&(i.rotateXLabels=!1,i.translateXAxisY=parseInt(e.config.xaxis.labels.style.fontSize,10)/1.5*-1),i.translateXAxisY=i.translateXAxisY+e.config.xaxis.labels.offsetY,i.translateXAxisX=i.translateXAxisX+e.config.xaxis.labels.offsetX;var o=this.yAxisWidth,l=this.xAxisHeight;i.xAxisLabelsHeight=this.xAxisHeight-n.height,i.xAxisLabelsWidth=this.xAxisWidth,i.xAxisHeight=this.xAxisHeight;var h=10;("radar"===e.config.chart.type||this.isSparkline)&&(o=0,l=i.goldenPadding),this.isSparkline&&(this.lgRect={height:0,width:0}),(this.isSparkline||"treemap"===e.config.chart.type)&&(o=0,l=0,h=0),this.isSparkline||this.dimXAxis.additionalPaddingXLabels(r);var c=function(){i.translateX=o,i.gridHeight=i.svgHeight-t.lgRect.height-l-(t.isSparkline||"treemap"===e.config.chart.type?0:e.globals.rotateXLabels?10:15),i.gridWidth=i.svgWidth-o};switch("top"===e.config.xaxis.position&&(h=i.xAxisHeight-e.config.xaxis.axisTicks.height-5),e.config.legend.position){case"bottom":i.translateY=h,c();break;case"top":i.translateY=this.lgRect.height+h,c();break;case"left":i.translateY=h,i.translateX=this.lgRect.width+o,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-this.lgRect.width-o;break;case"right":i.translateY=h,i.translateX=o,i.gridHeight=i.svgHeight-l-12,i.gridWidth=i.svgWidth-this.lgRect.width-o-5;break;default:throw new Error("Legend position not supported")}this.dimGrid.setGridXPosForDualYAxis(s,a),new q(this.ctx).setYAxisXPosition(a,s)}},{key:"setDimensionsForNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=t.config,a=0;t.config.legend.show&&!t.config.legend.floating&&(a=20);var s="pie"===i.chart.type||"polarArea"===i.chart.type||"donut"===i.chart.type?"pie":"radialBar",r=i.plotOptions[s].offsetY,n=i.plotOptions[s].offsetX;if(!i.legend.show||i.legend.floating)return e.gridHeight=e.svgHeight-i.grid.padding.left+i.grid.padding.right,e.gridWidth=e.gridHeight,e.translateY=r,void(e.translateX=n+(e.svgWidth-e.gridWidth)/2);switch(i.legend.position){case"bottom":e.gridHeight=e.svgHeight-this.lgRect.height-e.goldenPadding,e.gridWidth=e.svgWidth,e.translateY=r-10,e.translateX=n+(e.svgWidth-e.gridWidth)/2;break;case"top":e.gridHeight=e.svgHeight-this.lgRect.height-e.goldenPadding,e.gridWidth=e.svgWidth,e.translateY=this.lgRect.height+r+10,e.translateX=n+(e.svgWidth-e.gridWidth)/2;break;case"left":e.gridWidth=e.svgWidth-this.lgRect.width-a,e.gridHeight="auto"!==i.chart.height?e.svgHeight:e.gridWidth,e.translateY=r,e.translateX=n+this.lgRect.width+a;break;case"right":e.gridWidth=e.svgWidth-this.lgRect.width-a-5,e.gridHeight="auto"!==i.chart.height?e.svgHeight:e.gridWidth,e.translateY=r,e.translateX=n+10;break;default:throw new Error("Legend position not supported")}}},{key:"conditionalChecksForAxisCoords",value:function(t,e){var i=this.w;this.xAxisHeight=(t.height+e.height)*(i.globals.isMultiLineX?1.2:i.globals.LINE_HEIGHT_RATIO)+(i.globals.rotateXLabels?22:10),this.xAxisWidth=t.width,this.xAxisHeight-e.height>i.config.xaxis.labels.maxHeight&&(this.xAxisHeight=i.config.xaxis.labels.maxHeight),i.config.xaxis.labels.minHeight&&this.xAxisHeight<i.config.xaxis.labels.minHeight&&(this.xAxisHeight=i.config.xaxis.labels.minHeight),i.config.xaxis.floating&&(this.xAxisHeight=0);var a=0,s=0;i.config.yaxis.forEach((function(t){a+=t.labels.minWidth,s+=t.labels.maxWidth})),this.yAxisWidth<a&&(this.yAxisWidth=a),this.yAxisWidth>s&&(this.yAxisWidth=s)}}]),t}(),ot=function(){function t(i){e(this,t),this.w=i.w,this.lgCtx=i}return a(t,[{key:"getLegendStyles",value:function(){var t=document.createElement("style");t.setAttribute("type","text/css");var e=document.createTextNode("\t\n \t\n .apexcharts-legend {\t\n display: flex;\t\n overflow: auto;\t\n padding: 0 10px;\t\n }\t\n .apexcharts-legend.position-bottom, .apexcharts-legend.position-top {\t\n flex-wrap: wrap\t\n }\t\n .apexcharts-legend.position-right, .apexcharts-legend.position-left {\t\n flex-direction: column;\t\n bottom: 0;\t\n }\t\n .apexcharts-legend.position-bottom.apexcharts-align-left, .apexcharts-legend.position-top.apexcharts-align-left, .apexcharts-legend.position-right, .apexcharts-legend.position-left {\t\n justify-content: flex-start;\t\n }\t\n .apexcharts-legend.position-bottom.apexcharts-align-center, .apexcharts-legend.position-top.apexcharts-align-center {\t\n justify-content: center; \t\n }\t\n .apexcharts-legend.position-bottom.apexcharts-align-right, .apexcharts-legend.position-top.apexcharts-align-right {\t\n justify-content: flex-end;\t\n }\t\n .apexcharts-legend-series {\t\n cursor: pointer;\t\n line-height: normal;\t\n }\t\n .apexcharts-legend.position-bottom .apexcharts-legend-series, .apexcharts-legend.position-top .apexcharts-legend-series{\t\n display: flex;\t\n align-items: center;\t\n }\t\n .apexcharts-legend-text {\t\n position: relative;\t\n font-size: 14px;\t\n }\t\n .apexcharts-legend-text *, .apexcharts-legend-marker * {\t\n pointer-events: none;\t\n }\t\n .apexcharts-legend-marker {\t\n position: relative;\t\n display: inline-block;\t\n cursor: pointer;\t\n margin-right: 3px;\t\n border-style: solid;\n }\t\n \t\n .apexcharts-legend.apexcharts-align-right .apexcharts-legend-series, .apexcharts-legend.apexcharts-align-left .apexcharts-legend-series{\t\n display: inline-block;\t\n }\t\n .apexcharts-legend-series.apexcharts-no-click {\t\n cursor: auto;\t\n }\t\n .apexcharts-legend .apexcharts-hidden-zero-series, .apexcharts-legend .apexcharts-hidden-null-series {\t\n display: none !important;\t\n }\t\n .apexcharts-inactive-legend {\t\n opacity: 0.45;\t\n }");return t.appendChild(e),t}},{key:"getLegendBBox",value:function(){var t=this.w.globals.dom.baseEl.querySelector(".apexcharts-legend").getBoundingClientRect(),e=t.width;return{clwh:t.height,clww:e}}},{key:"appendToForeignObject",value:function(){var t=this.w.globals;t.dom.elLegendForeign=document.createElementNS(t.SVGNS,"foreignObject");var e=t.dom.elLegendForeign;e.setAttribute("x",0),e.setAttribute("y",0),e.setAttribute("width",t.svgWidth),e.setAttribute("height",t.svgHeight),t.dom.elLegendWrap.setAttribute("xmlns","http://www.w3.org/1999/xhtml"),e.appendChild(t.dom.elLegendWrap),e.appendChild(this.getLegendStyles()),t.dom.Paper.node.insertBefore(e,t.dom.elGraphical.node)}},{key:"toggleDataSeries",value:function(t,e){var i=this,a=this.w;if(a.globals.axisCharts||"radialBar"===a.config.chart.type){a.globals.resized=!0;var s=null,r=null;if(a.globals.risingSeries=[],a.globals.axisCharts?(s=a.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(t,"']")),r=parseInt(s.getAttribute("data:realIndex"),10)):(s=a.globals.dom.baseEl.querySelector(".apexcharts-series[rel='".concat(t+1,"']")),r=parseInt(s.getAttribute("rel"),10)-1),e)[{cs:a.globals.collapsedSeries,csi:a.globals.collapsedSeriesIndices},{cs:a.globals.ancillaryCollapsedSeries,csi:a.globals.ancillaryCollapsedSeriesIndices}].forEach((function(t){i.riseCollapsedSeries(t.cs,t.csi,r)}));else this.hideSeries({seriesEl:s,realIndex:r})}else{var n=a.globals.dom.Paper.select(" .apexcharts-series[rel='".concat(t+1,"'] path")),o=a.config.chart.type;if("pie"===o||"polarArea"===o||"donut"===o){var l=a.config.plotOptions.pie.donut.labels;new b(this.lgCtx.ctx).pathMouseDown(n.members[0],null),this.lgCtx.ctx.pie.printDataLabelsInner(n.members[0].node,l)}n.fire("click")}}},{key:"hideSeries",value:function(t){var e=t.seriesEl,i=t.realIndex,a=this.w,s=f.clone(a.config.series);if(a.globals.axisCharts){var r=!1;if(a.config.yaxis[i]&&a.config.yaxis[i].show&&a.config.yaxis[i].showAlways&&(r=!0,a.globals.ancillaryCollapsedSeriesIndices.indexOf(i)<0&&(a.globals.ancillaryCollapsedSeries.push({index:i,data:s[i].data.slice(),type:e.parentNode.className.baseVal.split("-")[1]}),a.globals.ancillaryCollapsedSeriesIndices.push(i))),!r){a.globals.collapsedSeries.push({index:i,data:s[i].data.slice(),type:e.parentNode.className.baseVal.split("-")[1]}),a.globals.collapsedSeriesIndices.push(i);var n=a.globals.risingSeries.indexOf(i);a.globals.risingSeries.splice(n,1)}}else a.globals.collapsedSeries.push({index:i,data:s[i]}),a.globals.collapsedSeriesIndices.push(i);for(var o=e.childNodes,l=0;l<o.length;l++)o[l].classList.contains("apexcharts-series-markers-wrap")&&(o[l].classList.contains("apexcharts-hide")?o[l].classList.remove("apexcharts-hide"):o[l].classList.add("apexcharts-hide"));a.globals.allSeriesCollapsed=a.globals.collapsedSeries.length===a.config.series.length,s=this._getSeriesBasedOnCollapsedState(s),this.lgCtx.ctx.updateHelpers._updateSeries(s,a.config.chart.animations.dynamicAnimation.enabled)}},{key:"riseCollapsedSeries",value:function(t,e,i){var a=this.w,s=f.clone(a.config.series);if(t.length>0){for(var r=0;r<t.length;r++)t[r].index===i&&(a.globals.axisCharts?(s[i].data=t[r].data.slice(),t.splice(r,1),e.splice(r,1),a.globals.risingSeries.push(i)):(s[i]=t[r].data,t.splice(r,1),e.splice(r,1),a.globals.risingSeries.push(i)));s=this._getSeriesBasedOnCollapsedState(s),this.lgCtx.ctx.updateHelpers._updateSeries(s,a.config.chart.animations.dynamicAnimation.enabled)}}},{key:"_getSeriesBasedOnCollapsedState",value:function(t){var e=this.w;return e.globals.axisCharts?t.forEach((function(i,a){e.globals.collapsedSeriesIndices.indexOf(a)>-1&&(t[a].data=[])})):t.forEach((function(i,a){e.globals.collapsedSeriesIndices.indexOf(a)>-1&&(t[a]=0)})),t}}]),t}(),lt=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w,this.onLegendClick=this.onLegendClick.bind(this),this.onLegendHovered=this.onLegendHovered.bind(this),this.isBarsDistributed="bar"===this.w.config.chart.type&&this.w.config.plotOptions.bar.distributed&&1===this.w.config.series.length,this.legendHelpers=new ot(this)}return a(t,[{key:"init",value:function(){var t=this.w,e=t.globals,i=t.config;if((i.legend.showForSingleSeries&&1===e.series.length||this.isBarsDistributed||e.series.length>1||!e.axisCharts)&&i.legend.show){for(;e.dom.elLegendWrap.firstChild;)e.dom.elLegendWrap.removeChild(e.dom.elLegendWrap.firstChild);this.drawLegends(),f.isIE11()?document.getElementsByTagName("head")[0].appendChild(this.legendHelpers.getLegendStyles()):this.legendHelpers.appendToForeignObject(),"bottom"===i.legend.position||"top"===i.legend.position?this.legendAlignHorizontal():"right"!==i.legend.position&&"left"!==i.legend.position||this.legendAlignVertical()}}},{key:"drawLegends",value:function(){var t=this,e=this.w,i=e.config.legend.fontFamily,a=e.globals.seriesNames,s=e.globals.colors.slice();if("heatmap"===e.config.chart.type){var r=e.config.plotOptions.heatmap.colorScale.ranges;a=r.map((function(t){return t.name?t.name:t.from+" - "+t.to})),s=r.map((function(t){return t.color}))}else this.isBarsDistributed&&(a=e.globals.labels.slice());for(var n=e.globals.legendFormatter,o=e.config.legend.inverseOrder,l=o?a.length-1:0;o?l>=0:l<=a.length-1;o?l--:l++){var h=n(a[l],{seriesIndex:l,w:e}),c=!1,d=!1;if(e.globals.collapsedSeries.length>0)for(var g=0;g<e.globals.collapsedSeries.length;g++)e.globals.collapsedSeries[g].index===l&&(c=!0);if(e.globals.ancillaryCollapsedSeriesIndices.length>0)for(var u=0;u<e.globals.ancillaryCollapsedSeriesIndices.length;u++)e.globals.ancillaryCollapsedSeriesIndices[u]===l&&(d=!0);var p=document.createElement("span");p.classList.add("apexcharts-legend-marker");var x=e.config.legend.markers.offsetX,m=e.config.legend.markers.offsetY,v=e.config.legend.markers.height,w=e.config.legend.markers.width,k=e.config.legend.markers.strokeWidth,A=e.config.legend.markers.strokeColor,S=e.config.legend.markers.radius,C=p.style;C.background=s[l],C.color=s[l],C.setProperty("background",s[l],"important"),e.config.legend.markers.fillColors&&e.config.legend.markers.fillColors[l]&&(C.background=e.config.legend.markers.fillColors[l]),void 0!==e.globals.seriesColors[l]&&(C.background=e.globals.seriesColors[l],C.color=e.globals.seriesColors[l]),C.height=Array.isArray(v)?parseFloat(v[l])+"px":parseFloat(v)+"px",C.width=Array.isArray(w)?parseFloat(w[l])+"px":parseFloat(w)+"px",C.left=Array.isArray(x)?x[l]:x,C.top=Array.isArray(m)?m[l]:m,C.borderWidth=Array.isArray(k)?k[l]:k,C.borderColor=Array.isArray(A)?A[l]:A,C.borderRadius=Array.isArray(S)?parseFloat(S[l])+"px":parseFloat(S)+"px",e.config.legend.markers.customHTML&&(Array.isArray(e.config.legend.markers.customHTML)?e.config.legend.markers.customHTML[l]&&(p.innerHTML=e.config.legend.markers.customHTML[l]()):p.innerHTML=e.config.legend.markers.customHTML()),b.setAttrs(p,{rel:l+1,"data:collapsed":c||d}),(c||d)&&p.classList.add("apexcharts-inactive-legend");var L=document.createElement("div"),P=document.createElement("span");P.classList.add("apexcharts-legend-text"),P.innerHTML=Array.isArray(h)?h.join(" "):h;var T=e.config.legend.labels.useSeriesColors?e.globals.colors[l]:e.config.legend.labels.colors;T||(T=e.config.chart.foreColor),P.style.color=T,P.style.fontSize=parseFloat(e.config.legend.fontSize)+"px",P.style.fontWeight=e.config.legend.fontWeight,P.style.fontFamily=i||e.config.chart.fontFamily,b.setAttrs(P,{rel:l+1,i:l,"data:default-text":encodeURIComponent(h),"data:collapsed":c||d}),L.appendChild(p),L.appendChild(P);var z=new y(this.ctx);if(!e.config.legend.showForZeroSeries)0===z.getSeriesTotalByIndex(l)&&z.seriesHaveSameValues(l)&&!z.isSeriesNull(l)&&-1===e.globals.collapsedSeriesIndices.indexOf(l)&&-1===e.globals.ancillaryCollapsedSeriesIndices.indexOf(l)&&L.classList.add("apexcharts-hidden-zero-series");e.config.legend.showForNullSeries||z.isSeriesNull(l)&&-1===e.globals.collapsedSeriesIndices.indexOf(l)&&-1===e.globals.ancillaryCollapsedSeriesIndices.indexOf(l)&&L.classList.add("apexcharts-hidden-null-series"),e.globals.dom.elLegendWrap.appendChild(L),e.globals.dom.elLegendWrap.classList.add("apexcharts-align-".concat(e.config.legend.horizontalAlign)),e.globals.dom.elLegendWrap.classList.add("position-"+e.config.legend.position),L.classList.add("apexcharts-legend-series"),L.style.margin="".concat(e.config.legend.itemMargin.vertical,"px ").concat(e.config.legend.itemMargin.horizontal,"px"),e.globals.dom.elLegendWrap.style.width=e.config.legend.width?e.config.legend.width+"px":"",e.globals.dom.elLegendWrap.style.height=e.config.legend.height?e.config.legend.height+"px":"",b.setAttrs(L,{rel:l+1,seriesName:f.escapeString(a[l]),"data:collapsed":c||d}),(c||d)&&L.classList.add("apexcharts-inactive-legend"),e.config.legend.onItemClick.toggleDataSeries||L.classList.add("apexcharts-no-click")}e.globals.dom.elWrap.addEventListener("click",t.onLegendClick,!0),e.config.legend.onItemHover.highlightDataSeries&&(e.globals.dom.elWrap.addEventListener("mousemove",t.onLegendHovered,!0),e.globals.dom.elWrap.addEventListener("mouseout",t.onLegendHovered,!0))}},{key:"setLegendWrapXY",value:function(t,e){var i=this.w,a=i.globals.dom.baseEl.querySelector(".apexcharts-legend"),s=a.getBoundingClientRect(),r=0,n=0;if("bottom"===i.config.legend.position)n+=i.globals.svgHeight-s.height/2;else if("top"===i.config.legend.position){var o=new nt(this.ctx),l=o.dimHelpers.getTitleSubtitleCoords("title").height,h=o.dimHelpers.getTitleSubtitleCoords("subtitle").height;n=n+(l>0?l-10:0)+(h>0?h-10:0)}a.style.position="absolute",r=r+t+i.config.legend.offsetX,n=n+e+i.config.legend.offsetY,a.style.left=r+"px",a.style.top=n+"px","bottom"===i.config.legend.position?(a.style.top="auto",a.style.bottom=5-i.config.legend.offsetY+"px"):"right"===i.config.legend.position&&(a.style.left="auto",a.style.right=25+i.config.legend.offsetX+"px");["width","height"].forEach((function(t){a.style[t]&&(a.style[t]=parseInt(i.config.legend[t],10)+"px")}))}},{key:"legendAlignHorizontal",value:function(){var t=this.w;t.globals.dom.baseEl.querySelector(".apexcharts-legend").style.right=0;var e=this.legendHelpers.getLegendBBox(),i=new nt(this.ctx),a=i.dimHelpers.getTitleSubtitleCoords("title"),s=i.dimHelpers.getTitleSubtitleCoords("subtitle"),r=0;"bottom"===t.config.legend.position?r=-e.clwh/1.8:"top"===t.config.legend.position&&(r=a.height+s.height+t.config.title.margin+t.config.subtitle.margin-10),this.setLegendWrapXY(20,r)}},{key:"legendAlignVertical",value:function(){var t=this.w,e=this.legendHelpers.getLegendBBox(),i=0;"left"===t.config.legend.position&&(i=20),"right"===t.config.legend.position&&(i=t.globals.svgWidth-e.clww-10),this.setLegendWrapXY(i,20)}},{key:"onLegendHovered",value:function(t){var e=this.w,i=t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker");if("heatmap"===e.config.chart.type||this.isBarsDistributed){if(i){var a=parseInt(t.target.getAttribute("rel"),10)-1;this.ctx.events.fireEvent("legendHover",[this.ctx,a,this.w]),new M(this.ctx).highlightRangeInSeries(t,t.target)}}else!t.target.classList.contains("apexcharts-inactive-legend")&&i&&new M(this.ctx).toggleSeriesOnHover(t,t.target)}},{key:"onLegendClick",value:function(t){var e=this.w;if(t.target.classList.contains("apexcharts-legend-text")||t.target.classList.contains("apexcharts-legend-marker")){var i=parseInt(t.target.getAttribute("rel"),10)-1,a="true"===t.target.getAttribute("data:collapsed"),s=this.w.config.chart.events.legendClick;"function"==typeof s&&s(this.ctx,i,this.w),this.ctx.events.fireEvent("legendClick",[this.ctx,i,this.w]);var r=this.w.config.legend.markers.onClick;"function"==typeof r&&t.target.classList.contains("apexcharts-legend-marker")&&(r(this.ctx,i,this.w),this.ctx.events.fireEvent("legendMarkerClick",[this.ctx,i,this.w])),"treemap"!==e.config.chart.type&&"heatmap"!==e.config.chart.type&&!this.isBarsDistributed&&e.config.legend.onItemClick.toggleDataSeries&&this.legendHelpers.toggleDataSeries(i,a)}}}]),t}(),ht=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.ev=this.w.config.chart.events,this.selectedClass="apexcharts-selected",this.localeValues=this.w.globals.locale.toolbar,this.minX=a.globals.minX,this.maxX=a.globals.maxX}return a(t,[{key:"createToolbar",value:function(){var t=this,e=this.w,i=function(){return document.createElement("div")},a=i();if(a.setAttribute("class","apexcharts-toolbar"),a.style.top=e.config.chart.toolbar.offsetY+"px",a.style.right=3-e.config.chart.toolbar.offsetX+"px",e.globals.dom.elWrap.appendChild(a),this.elZoom=i(),this.elZoomIn=i(),this.elZoomOut=i(),this.elPan=i(),this.elSelection=i(),this.elZoomReset=i(),this.elMenuIcon=i(),this.elMenu=i(),this.elCustomIcons=[],this.t=e.config.chart.toolbar.tools,Array.isArray(this.t.customIcons))for(var s=0;s<this.t.customIcons.length;s++)this.elCustomIcons.push(i());var r=[],n=function(i,a,s){var n=i.toLowerCase();t.t[n]&&e.config.chart.zoom.enabled&&r.push({el:a,icon:"string"==typeof t.t[n]?t.t[n]:s,title:t.localeValues[i],class:"apexcharts-".concat(n,"-icon")})};n("zoomIn",this.elZoomIn,'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">\n <path d="M0 0h24v24H0z" fill="none"/>\n <path d="M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/>\n</svg>\n'),n("zoomOut",this.elZoomOut,'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">\n <path d="M0 0h24v24H0z" fill="none"/>\n <path d="M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z"/>\n</svg>\n');var o=function(i){t.t[i]&&e.config.chart[i].enabled&&r.push({el:"zoom"===i?t.elZoom:t.elSelection,icon:"string"==typeof t.t[i]?t.t[i]:"zoom"===i?'<svg xmlns="http://www.w3.org/2000/svg" fill="#000000" height="24" viewBox="0 0 24 24" width="24">\n <path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/>\n <path d="M0 0h24v24H0V0z" fill="none"/>\n <path d="M12 10h-2v2H9v-2H7V9h2V7h1v2h2v1z"/>\n</svg>':'<svg fill="#6E8192" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M0 0h24v24H0z" fill="none"/>\n <path d="M3 5h2V3c-1.1 0-2 .9-2 2zm0 8h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zm6 0v2h2c0-1.1-.9-2-2-2zM5 21v-2H3c0 1.1.9 2 2 2zm-2-4h2v-2H3v2zM9 3H7v2h2V3zm2 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0 8c1.1 0 2-.9 2-2h-2v2zm0-12h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2z"/>\n</svg>',title:t.localeValues["zoom"===i?"selectionZoom":"selection"],class:e.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-".concat(i,"-icon")})};o("zoom"),o("selection"),this.t.pan&&e.config.chart.zoom.enabled&&r.push({el:this.elPan,icon:"string"==typeof this.t.pan?this.t.pan:'<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="#000000" height="24" viewBox="0 0 24 24" width="24">\n <defs>\n <path d="M0 0h24v24H0z" id="a"/>\n </defs>\n <clipPath id="b">\n <use overflow="visible" xlink:href="#a"/>\n </clipPath>\n <path clip-path="url(#b)" d="M23 5.5V20c0 2.2-1.8 4-4 4h-7.3c-1.08 0-2.1-.43-2.85-1.19L1 14.83s1.26-1.23 1.3-1.25c.22-.19.49-.29.79-.29.22 0 .42.06.6.16.04.01 4.31 2.46 4.31 2.46V4c0-.83.67-1.5 1.5-1.5S11 3.17 11 4v7h1V1.5c0-.83.67-1.5 1.5-1.5S15 .67 15 1.5V11h1V2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V11h1V5.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5z"/>\n</svg>',title:this.localeValues.pan,class:e.globals.isTouchDevice?"apexcharts-element-hidden":"apexcharts-pan-icon"}),n("reset",this.elZoomReset,'<svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">\n <path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/>\n <path d="M0 0h24v24H0z" fill="none"/>\n</svg>'),this.t.download&&r.push({el:this.elMenuIcon,icon:"string"==typeof this.t.download?this.t.download:'<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg>',title:this.localeValues.menu,class:"apexcharts-menu-icon"});for(var l=0;l<this.elCustomIcons.length;l++)r.push({el:this.elCustomIcons[l],icon:this.t.customIcons[l].icon,title:this.t.customIcons[l].title,index:this.t.customIcons[l].index,class:"apexcharts-toolbar-custom-icon "+this.t.customIcons[l].class});r.forEach((function(t,e){t.index&&f.moveIndexInArray(r,e,t.index)}));for(var h=0;h<r.length;h++)b.setAttrs(r[h].el,{class:r[h].class,title:r[h].title}),r[h].el.innerHTML=r[h].icon,a.appendChild(r[h].el);this._createHamburgerMenu(a),e.globals.zoomEnabled?this.elZoom.classList.add(this.selectedClass):e.globals.panEnabled?this.elPan.classList.add(this.selectedClass):e.globals.selectionEnabled&&this.elSelection.classList.add(this.selectedClass),this.addToolbarEventListeners()}},{key:"_createHamburgerMenu",value:function(t){this.elMenuItems=[],t.appendChild(this.elMenu),b.setAttrs(this.elMenu,{class:"apexcharts-menu"});var e=[{name:"exportSVG",title:this.localeValues.exportToSVG},{name:"exportPNG",title:this.localeValues.exportToPNG},{name:"exportCSV",title:this.localeValues.exportToCSV}];this.w.globals.allSeriesHasEqualX||e.splice(2,1);for(var i=0;i<e.length;i++)this.elMenuItems.push(document.createElement("div")),this.elMenuItems[i].innerHTML=e[i].title,b.setAttrs(this.elMenuItems[i],{class:"apexcharts-menu-item ".concat(e[i].name),title:e[i].title}),this.elMenu.appendChild(this.elMenuItems[i])}},{key:"addToolbarEventListeners",value:function(){var t=this;this.elZoomReset.addEventListener("click",this.handleZoomReset.bind(this)),this.elSelection.addEventListener("click",this.toggleZoomSelection.bind(this,"selection")),this.elZoom.addEventListener("click",this.toggleZoomSelection.bind(this,"zoom")),this.elZoomIn.addEventListener("click",this.handleZoomIn.bind(this)),this.elZoomOut.addEventListener("click",this.handleZoomOut.bind(this)),this.elPan.addEventListener("click",this.togglePanning.bind(this)),this.elMenuIcon.addEventListener("click",this.toggleMenu.bind(this)),this.elMenuItems.forEach((function(e){e.classList.contains("exportSVG")?e.addEventListener("click",t.handleDownload.bind(t,"svg")):e.classList.contains("exportPNG")?e.addEventListener("click",t.handleDownload.bind(t,"png")):e.classList.contains("exportCSV")&&e.addEventListener("click",t.handleDownload.bind(t,"csv"))}));for(var e=0;e<this.t.customIcons.length;e++)this.elCustomIcons[e].addEventListener("click",this.t.customIcons[e].click.bind(this,this.ctx,this.ctx.w))}},{key:"toggleZoomSelection",value:function(t){this.ctx.getSyncedCharts().forEach((function(e){e.ctx.toolbar.toggleOtherControls();var i="selection"===t?e.ctx.toolbar.elSelection:e.ctx.toolbar.elZoom,a="selection"===t?"selectionEnabled":"zoomEnabled";e.w.globals[a]=!e.w.globals[a],i.classList.contains(e.ctx.toolbar.selectedClass)?i.classList.remove(e.ctx.toolbar.selectedClass):i.classList.add(e.ctx.toolbar.selectedClass)}))}},{key:"getToolbarIconsReference",value:function(){var t=this.w;this.elZoom||(this.elZoom=t.globals.dom.baseEl.querySelector(".apexcharts-zoom-icon")),this.elPan||(this.elPan=t.globals.dom.baseEl.querySelector(".apexcharts-pan-icon")),this.elSelection||(this.elSelection=t.globals.dom.baseEl.querySelector(".apexcharts-selection-icon"))}},{key:"enableZoomPanFromToolbar",value:function(t){this.toggleOtherControls(),"pan"===t?this.w.globals.panEnabled=!0:this.w.globals.zoomEnabled=!0;var e="pan"===t?this.elPan:this.elZoom,i="pan"===t?this.elZoom:this.elPan;e&&e.classList.add(this.selectedClass),i&&i.classList.remove(this.selectedClass)}},{key:"togglePanning",value:function(){this.ctx.getSyncedCharts().forEach((function(t){t.ctx.toolbar.toggleOtherControls(),t.w.globals.panEnabled=!t.w.globals.panEnabled,t.ctx.toolbar.elPan.classList.contains(t.ctx.toolbar.selectedClass)?t.ctx.toolbar.elPan.classList.remove(t.ctx.toolbar.selectedClass):t.ctx.toolbar.elPan.classList.add(t.ctx.toolbar.selectedClass)}))}},{key:"toggleOtherControls",value:function(){var t=this,e=this.w;e.globals.panEnabled=!1,e.globals.zoomEnabled=!1,e.globals.selectionEnabled=!1,this.getToolbarIconsReference(),[this.elPan,this.elSelection,this.elZoom].forEach((function(e){e&&e.classList.remove(t.selectedClass)}))}},{key:"handleZoomIn",value:function(){var t=this.w;t.globals.isTimelineBar&&(this.minX=t.globals.minY,this.maxX=t.globals.maxY);var e=(this.minX+this.maxX)/2,i=(this.minX+e)/2,a=(this.maxX+e)/2,s=this._getNewMinXMaxX(i,a);t.globals.disableZoomIn||this.zoomUpdateOptions(s.minX,s.maxX)}},{key:"handleZoomOut",value:function(){var t=this.w;if(t.globals.isTimelineBar&&(this.minX=t.globals.minY,this.maxX=t.globals.maxY),!("datetime"===t.config.xaxis.type&&new Date(this.minX).getUTCFullYear()<1e3)){var e=(this.minX+this.maxX)/2,i=this.minX-(e-this.minX),a=this.maxX-(e-this.maxX),s=this._getNewMinXMaxX(i,a);t.globals.disableZoomOut||this.zoomUpdateOptions(s.minX,s.maxX)}}},{key:"_getNewMinXMaxX",value:function(t,e){var i=this.w.config.xaxis.convertedCatToNumeric;return{minX:i?Math.floor(t):t,maxX:i?Math.floor(e):e}}},{key:"zoomUpdateOptions",value:function(t,e){var i=this.w;if(void 0!==t||void 0!==e){if(!(i.config.xaxis.convertedCatToNumeric&&(t<1&&(t=1,e=i.globals.dataPoints),e-t<2))){var a={min:t,max:e},s=this.getBeforeZoomRange(a);s&&(a=s.xaxis);var r={xaxis:a},n=f.clone(i.globals.initialConfig.yaxis);if(i.config.chart.zoom.autoScaleYaxis)n=new j(this.ctx).autoScaleY(this.ctx,n,{xaxis:a});i.config.chart.group||(r.yaxis=n),this.w.globals.zoomed=!0,this.ctx.updateHelpers._updateOptions(r,!1,this.w.config.chart.animations.dynamicAnimation.enabled),this.zoomCallback(a,n)}}else this.handleZoomReset()}},{key:"zoomCallback",value:function(t,e){"function"==typeof this.ev.zoomed&&this.ev.zoomed(this.ctx,{xaxis:t,yaxis:e})}},{key:"getBeforeZoomRange",value:function(t,e){var i=null;return"function"==typeof this.ev.beforeZoom&&(i=this.ev.beforeZoom(this,{xaxis:t,yaxis:e})),i}},{key:"toggleMenu",value:function(){var t=this;window.setTimeout((function(){t.elMenu.classList.contains("apexcharts-menu-open")?t.elMenu.classList.remove("apexcharts-menu-open"):t.elMenu.classList.add("apexcharts-menu-open")}),0)}},{key:"handleDownload",value:function(t){var e=this.w,i=new V(this.ctx);switch(t){case"svg":i.exportToSVG(this.ctx);break;case"png":i.exportToPng(this.ctx);break;case"csv":i.exportToCSV({series:e.config.series,columnDelimiter:e.config.chart.toolbar.export.csv.columnDelimiter})}}},{key:"handleZoomReset",value:function(t){this.ctx.getSyncedCharts().forEach((function(t){var e=t.w;if(e.globals.lastXAxis.min=void 0,e.globals.lastXAxis.max=void 0,t.updateHelpers.revertDefaultAxisMinMax(),"function"==typeof e.config.chart.events.beforeResetZoom){var i=e.config.chart.events.beforeResetZoom(t,e);i&&t.updateHelpers.revertDefaultAxisMinMax(i)}"function"==typeof e.config.chart.events.zoomed&&t.ctx.toolbar.zoomCallback({min:e.config.xaxis.min,max:e.config.xaxis.max}),e.globals.zoomed=!1;var a=t.ctx.series.emptyCollapsedSeries(f.clone(e.globals.initialSeries));t.updateHelpers._updateSeries(a,e.config.chart.animations.dynamicAnimation.enabled)}))}},{key:"destroy",value:function(){this.elZoom=null,this.elZoomIn=null,this.elZoomOut=null,this.elPan=null,this.elSelection=null,this.elZoomReset=null,this.elMenuIcon=null}}]),t}(),ct=function(t){o(s,t);var i=d(s);function s(t){var a;return e(this,s),(a=i.call(this,t)).ctx=t,a.w=t.w,a.dragged=!1,a.graphics=new b(a.ctx),a.eventList=["mousedown","mouseleave","mousemove","touchstart","touchmove","mouseup","touchend"],a.clientX=0,a.clientY=0,a.startX=0,a.endX=0,a.dragX=0,a.startY=0,a.endY=0,a.dragY=0,a.moveDirection="none",a}return a(s,[{key:"init",value:function(t){var e=this,i=t.xyRatios,a=this.w,s=this;this.xyRatios=i,this.zoomRect=this.graphics.drawRect(0,0,0,0),this.selectionRect=this.graphics.drawRect(0,0,0,0),this.gridRect=a.globals.dom.baseEl.querySelector(".apexcharts-grid"),this.zoomRect.node.classList.add("apexcharts-zoom-rect"),this.selectionRect.node.classList.add("apexcharts-selection-rect"),a.globals.dom.elGraphical.add(this.zoomRect),a.globals.dom.elGraphical.add(this.selectionRect),"x"===a.config.chart.selection.type?this.slDraggableRect=this.selectionRect.draggable({minX:0,minY:0,maxX:a.globals.gridWidth,maxY:a.globals.gridHeight}).on("dragmove",this.selectionDragging.bind(this,"dragging")):"y"===a.config.chart.selection.type?this.slDraggableRect=this.selectionRect.draggable({minX:0,maxX:a.globals.gridWidth}).on("dragmove",this.selectionDragging.bind(this,"dragging")):this.slDraggableRect=this.selectionRect.draggable().on("dragmove",this.selectionDragging.bind(this,"dragging")),this.preselectedSelection(),this.hoverArea=a.globals.dom.baseEl.querySelector("".concat(a.globals.chartClass," .apexcharts-svg")),this.hoverArea.classList.add("apexcharts-zoomable"),this.eventList.forEach((function(t){e.hoverArea.addEventListener(t,s.svgMouseEvents.bind(s,i),{capture:!1,passive:!0})}))}},{key:"destroy",value:function(){this.slDraggableRect&&(this.slDraggableRect.draggable(!1),this.slDraggableRect.off(),this.selectionRect.off()),this.selectionRect=null,this.zoomRect=null,this.gridRect=null}},{key:"svgMouseEvents",value:function(t,e){var i=this.w,a=this,s=this.ctx.toolbar,r=i.globals.zoomEnabled?i.config.chart.zoom.type:i.config.chart.selection.type,n=i.config.chart.toolbar.autoSelected;e.shiftKey?(this.shiftWasPressed=!0,s.enableZoomPanFromToolbar("pan"===n?"zoom":"pan")):this.shiftWasPressed&&(s.enableZoomPanFromToolbar(n),this.shiftWasPressed=!1);var o=e.target.classList;if(!(o.contains("apexcharts-selection-rect")||o.contains("apexcharts-legend-marker")||o.contains("apexcharts-legend-text")||e.target.parentNode.classList.contains("apexcharts-toolbar"))){if(a.clientX="touchmove"===e.type||"touchstart"===e.type?e.touches[0].clientX:"touchend"===e.type?e.changedTouches[0].clientX:e.clientX,a.clientY="touchmove"===e.type||"touchstart"===e.type?e.touches[0].clientY:"touchend"===e.type?e.changedTouches[0].clientY:e.clientY,"mousedown"===e.type&&1===e.which){var l=a.gridRect.getBoundingClientRect();a.startX=a.clientX-l.left,a.startY=a.clientY-l.top,a.dragged=!1,a.w.globals.mousedown=!0}if(("mousemove"===e.type&&1===e.which||"touchmove"===e.type)&&(a.dragged=!0,i.globals.panEnabled?(i.globals.selection=null,a.w.globals.mousedown&&a.panDragging({context:a,zoomtype:r,xyRatios:t})):(a.w.globals.mousedown&&i.globals.zoomEnabled||a.w.globals.mousedown&&i.globals.selectionEnabled)&&(a.selection=a.selectionDrawing({context:a,zoomtype:r}))),"mouseup"===e.type||"touchend"===e.type||"mouseleave"===e.type){var h=a.gridRect.getBoundingClientRect();a.w.globals.mousedown&&(a.endX=a.clientX-h.left,a.endY=a.clientY-h.top,a.dragX=Math.abs(a.endX-a.startX),a.dragY=Math.abs(a.endY-a.startY),(i.globals.zoomEnabled||i.globals.selectionEnabled)&&a.selectionDrawn({context:a,zoomtype:r}),i.globals.panEnabled&&i.config.xaxis.convertedCatToNumeric&&a.delayedPanScrolled()),i.globals.zoomEnabled&&a.hideSelectionRect(this.selectionRect),a.dragged=!1,a.w.globals.mousedown=!1}this.makeSelectionRectDraggable()}}},{key:"makeSelectionRectDraggable",value:function(){var t=this.w;if(this.selectionRect){var e=this.selectionRect.node.getBoundingClientRect();e.width>0&&e.height>0&&this.slDraggableRect.selectize({points:"l, r",pointSize:8,pointType:"rect"}).resize({constraint:{minX:0,minY:0,maxX:t.globals.gridWidth,maxY:t.globals.gridHeight}}).on("resizing",this.selectionDragging.bind(this,"resizing"))}}},{key:"preselectedSelection",value:function(){var t=this.w,e=this.xyRatios;if(!t.globals.zoomEnabled)if(void 0!==t.globals.selection&&null!==t.globals.selection)this.drawSelectionRect(t.globals.selection);else if(void 0!==t.config.chart.selection.xaxis.min&&void 0!==t.config.chart.selection.xaxis.max){var i=(t.config.chart.selection.xaxis.min-t.globals.minX)/e.xRatio,a={x:i,y:0,width:t.globals.gridWidth-(t.globals.maxX-t.config.chart.selection.xaxis.max)/e.xRatio-i,height:t.globals.gridHeight,translateX:0,translateY:0,selectionEnabled:!0};this.drawSelectionRect(a),this.makeSelectionRectDraggable(),"function"==typeof t.config.chart.events.selection&&t.config.chart.events.selection(this.ctx,{xaxis:{min:t.config.chart.selection.xaxis.min,max:t.config.chart.selection.xaxis.max},yaxis:{}})}}},{key:"drawSelectionRect",value:function(t){var e=t.x,i=t.y,a=t.width,s=t.height,r=t.translateX,n=void 0===r?0:r,o=t.translateY,l=void 0===o?0:o,h=this.w,c=this.zoomRect,d=this.selectionRect;if(this.dragged||null!==h.globals.selection){var g={transform:"translate("+n+", "+l+")"};h.globals.zoomEnabled&&this.dragged&&(a<0&&(a=1),c.attr({x:e,y:i,width:a,height:s,fill:h.config.chart.zoom.zoomedArea.fill.color,"fill-opacity":h.config.chart.zoom.zoomedArea.fill.opacity,stroke:h.config.chart.zoom.zoomedArea.stroke.color,"stroke-width":h.config.chart.zoom.zoomedArea.stroke.width,"stroke-opacity":h.config.chart.zoom.zoomedArea.stroke.opacity}),b.setAttrs(c.node,g)),h.globals.selectionEnabled&&(d.attr({x:e,y:i,width:a>0?a:0,height:s>0?s:0,fill:h.config.chart.selection.fill.color,"fill-opacity":h.config.chart.selection.fill.opacity,stroke:h.config.chart.selection.stroke.color,"stroke-width":h.config.chart.selection.stroke.width,"stroke-dasharray":h.config.chart.selection.stroke.dashArray,"stroke-opacity":h.config.chart.selection.stroke.opacity}),b.setAttrs(d.node,g))}}},{key:"hideSelectionRect",value:function(t){t&&t.attr({x:0,y:0,width:0,height:0})}},{key:"selectionDrawing",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,r=this.gridRect.getBoundingClientRect(),n=s.startX-1,o=s.startY,l=!1,h=!1,c=s.clientX-r.left-n,d=s.clientY-r.top-o,g={};return Math.abs(c+n)>a.globals.gridWidth?c=a.globals.gridWidth-n:s.clientX-r.left<0&&(c=n),n>s.clientX-r.left&&(l=!0,c=Math.abs(c)),o>s.clientY-r.top&&(h=!0,d=Math.abs(d)),g="x"===i?{x:l?n-c:n,y:0,width:c,height:a.globals.gridHeight}:"y"===i?{x:0,y:h?o-d:o,width:a.globals.gridWidth,height:d}:{x:l?n-c:n,y:h?o-d:o,width:c,height:d},s.drawSelectionRect(g),s.selectionDragging("resizing"),g}},{key:"selectionDragging",value:function(t,e){var i=this,a=this.w,s=this.xyRatios,r=this.selectionRect,n=0;"resizing"===t&&(n=30);var o=function(t){return parseFloat(r.node.getAttribute(t))},l={x:o("x"),y:o("y"),width:o("width"),height:o("height")};a.globals.selection=l,"function"==typeof a.config.chart.events.selection&&a.globals.selectionEnabled&&(clearTimeout(this.w.globals.selectionResizeTimer),this.w.globals.selectionResizeTimer=window.setTimeout((function(){var t=i.gridRect.getBoundingClientRect(),e=r.node.getBoundingClientRect(),n={xaxis:{min:a.globals.xAxisScale.niceMin+(e.left-t.left)*s.xRatio,max:a.globals.xAxisScale.niceMin+(e.right-t.left)*s.xRatio},yaxis:{min:a.globals.yAxisScale[0].niceMin+(t.bottom-e.bottom)*s.yRatio[0],max:a.globals.yAxisScale[0].niceMax-(e.top-t.top)*s.yRatio[0]}};a.config.chart.events.selection(i.ctx,n),a.config.chart.brush.enabled&&void 0!==a.config.chart.events.brushScrolled&&a.config.chart.events.brushScrolled(i.ctx,n)}),n))}},{key:"selectionDrawn",value:function(t){var e=t.context,i=t.zoomtype,a=this.w,s=e,r=this.xyRatios,n=this.ctx.toolbar;if(s.startX>s.endX){var o=s.startX;s.startX=s.endX,s.endX=o}if(s.startY>s.endY){var l=s.startY;s.startY=s.endY,s.endY=l}var h=void 0,c=void 0;a.globals.isTimelineBar?(h=a.globals.yAxisScale[0].niceMin+s.startX*r.invertedYRatio,c=a.globals.yAxisScale[0].niceMin+s.endX*r.invertedYRatio):(h=a.globals.xAxisScale.niceMin+s.startX*r.xRatio,c=a.globals.xAxisScale.niceMin+s.endX*r.xRatio);var d=[],g=[];if(a.config.yaxis.forEach((function(t,e){d.push(a.globals.yAxisScale[e].niceMax-r.yRatio[e]*s.startY),g.push(a.globals.yAxisScale[e].niceMax-r.yRatio[e]*s.endY)})),s.dragged&&(s.dragX>10||s.dragY>10)&&h!==c)if(a.globals.zoomEnabled){var u=f.clone(a.globals.initialConfig.yaxis),p=f.clone(a.globals.initialConfig.xaxis);if(a.globals.zoomed=!0,a.config.xaxis.convertedCatToNumeric&&(h=Math.floor(h),c=Math.floor(c),h<1&&(h=1,c=a.globals.dataPoints),c-h<2&&(c=h+1)),"xy"!==i&&"x"!==i||(p={min:h,max:c}),"xy"!==i&&"y"!==i||u.forEach((function(t,e){u[e].min=g[e],u[e].max=d[e]})),a.config.chart.zoom.autoScaleYaxis){var x=new j(s.ctx);u=x.autoScaleY(s.ctx,u,{xaxis:p})}if(n){var b=n.getBeforeZoomRange(p,u);b&&(p=b.xaxis?b.xaxis:p,u=b.yaxis?b.yaxis:u)}var m={xaxis:p};a.config.chart.group||(m.yaxis=u),s.ctx.updateHelpers._updateOptions(m,!1,s.w.config.chart.animations.dynamicAnimation.enabled),"function"==typeof a.config.chart.events.zoomed&&n.zoomCallback(p,u)}else if(a.globals.selectionEnabled){var v,y=null;v={min:h,max:c},"xy"!==i&&"y"!==i||(y=f.clone(a.config.yaxis)).forEach((function(t,e){y[e].min=g[e],y[e].max=d[e]})),a.globals.selection=s.selection,"function"==typeof a.config.chart.events.selection&&a.config.chart.events.selection(s.ctx,{xaxis:v,yaxis:y})}}},{key:"panDragging",value:function(t){var e=t.context,i=this.w,a=e;if(void 0!==i.globals.lastClientPosition.x){var s=i.globals.lastClientPosition.x-a.clientX,r=i.globals.lastClientPosition.y-a.clientY;Math.abs(s)>Math.abs(r)&&s>0?this.moveDirection="left":Math.abs(s)>Math.abs(r)&&s<0?this.moveDirection="right":Math.abs(r)>Math.abs(s)&&r>0?this.moveDirection="up":Math.abs(r)>Math.abs(s)&&r<0&&(this.moveDirection="down")}i.globals.lastClientPosition={x:a.clientX,y:a.clientY};var n=i.globals.isTimelineBar?i.globals.minY:i.globals.minX,o=i.globals.isTimelineBar?i.globals.maxY:i.globals.maxX;i.config.xaxis.convertedCatToNumeric||a.panScrolled(n,o)}},{key:"delayedPanScrolled",value:function(){var t=this.w,e=t.globals.minX,i=t.globals.maxX,a=(t.globals.maxX-t.globals.minX)/2;"left"===this.moveDirection?(e=t.globals.minX+a,i=t.globals.maxX+a):"right"===this.moveDirection&&(e=t.globals.minX-a,i=t.globals.maxX-a),e=Math.floor(e),i=Math.floor(i),this.updateScrolledChart({xaxis:{min:e,max:i}},e,i)}},{key:"panScrolled",value:function(t,e){var i=this.w,a=this.xyRatios,s=f.clone(i.globals.initialConfig.yaxis),r=a.xRatio,n=i.globals.minX,o=i.globals.maxX;i.globals.isTimelineBar&&(r=a.invertedYRatio,n=i.globals.minY,o=i.globals.maxY),"left"===this.moveDirection?(t=n+i.globals.gridWidth/15*r,e=o+i.globals.gridWidth/15*r):"right"===this.moveDirection&&(t=n-i.globals.gridWidth/15*r,e=o-i.globals.gridWidth/15*r),i.globals.isTimelineBar||(t<i.globals.initialMinX||e>i.globals.initialMaxX)&&(t=n,e=o);var l={min:t,max:e};i.config.chart.zoom.autoScaleYaxis&&(s=new j(this.ctx).autoScaleY(this.ctx,s,{xaxis:l}));var h={xaxis:{min:t,max:e}};i.config.chart.group||(h.yaxis=s),this.updateScrolledChart(h,t,e)}},{key:"updateScrolledChart",value:function(t,e,i){var a=this.w;this.ctx.updateHelpers._updateOptions(t,!1,!1),"function"==typeof a.config.chart.events.scrolled&&a.config.chart.events.scrolled(this.ctx,{xaxis:{min:e,max:i}})}}]),s}(ht),dt=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i,this.ctx=i.ctx}return a(t,[{key:"getNearestValues",value:function(t){var e=t.hoverArea,i=t.elGrid,a=t.clientX,s=t.clientY,r=this.w,n=r.globals.gridWidth,o=r.globals.gridHeight,l=n/(r.globals.dataPoints-1),h=o/r.globals.dataPoints,c=i.getBoundingClientRect(),d=this.hasBars();!r.globals.comboCharts&&!d||r.config.xaxis.convertedCatToNumeric||(l=n/r.globals.dataPoints);var g=a-c.left-r.globals.barPadForNumericAxis,u=s-c.top;g<0||u<0||g>r.globals.gridWidth||u>r.globals.gridHeight?(e.classList.remove("hovering-zoom"),e.classList.remove("hovering-pan")):r.globals.zoomEnabled?(e.classList.remove("hovering-pan"),e.classList.add("hovering-zoom")):r.globals.panEnabled&&(e.classList.remove("hovering-zoom"),e.classList.add("hovering-pan"));var p=Math.round(g/l),x=Math.floor(u/h);d&&!r.config.xaxis.convertedCatToNumeric&&(p=Math.ceil(g/l),p-=1);for(var b,m=null,v=null,y=[],w=0;w<r.globals.seriesXvalues.length;w++)y.push([r.globals.seriesXvalues[w][0]-1e-6].concat(r.globals.seriesXvalues[w]));return y=y.map((function(t){return t.filter((function(t){return t}))})),b=r.globals.seriesYvalues.map((function(t){return t.filter((function(t){return f.isNumber(t)}))})),r.globals.isXNumeric&&(m=(v=this.closestInMultiArray(g,u,y,b)).index,p=v.j,null!==m&&(y=r.globals.seriesXvalues[m],p=(v=this.closestInArray(g,y)).index)),r.globals.capturedSeriesIndex=null===m?-1:m,(!p||p<1)&&(p=0),r.globals.capturedDataPointIndex=p,{capturedSeries:m,j:r.globals.isBarHorizontal?x:p,hoverX:g,hoverY:u}}},{key:"closestInMultiArray",value:function(t,e,i,a){var s=this.w,r=0,n=null,o=-1;s.globals.series.length>1?r=this.getFirstActiveXArray(i):n=0;var l=a[r][0],h=i[r][0],c=Math.abs(t-h),d=Math.abs(e-l),g=d+c;return a.map((function(s,r){s.map((function(s,l){var h=Math.abs(e-a[r][l]),u=Math.abs(t-i[r][l]),f=u+h;f<g&&(g=f,c=u,d=h,n=r,o=l)}))})),{index:n,j:o}}},{key:"getFirstActiveXArray",value:function(t){for(var e=0,i=t.map((function(t,e){return t.length>0?e:-1})),a=0;a<i.length;a++)if(-1!==i[a]){e=i[a];break}return e}},{key:"closestInArray",value:function(t,e){for(var i=e[0],a=null,s=Math.abs(t-i),r=0;r<e.length;r++){var n=Math.abs(t-e[r]);n<s&&(s=n,a=r)}return{index:a}}},{key:"isXoverlap",value:function(t){var e=[],i=this.w.globals.seriesX.filter((function(t){return void 0!==t[0]}));if(i.length>0)for(var a=0;a<i.length-1;a++)void 0!==i[a][t]&&void 0!==i[a+1][t]&&i[a][t]!==i[a+1][t]&&e.push("unEqual");return 0===e.length}},{key:"isInitialSeriesSameLen",value:function(){for(var t=!0,e=this.w.globals.initialSeries,i=0;i<e.length-1;i++)if(e[i].data.length!==e[i+1].data.length){t=!1;break}return t}},{key:"getBarsHeight",value:function(t){return g(t).reduce((function(t,e){return t+e.getBBox().height}),0)}},{key:"getElMarkers",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(" .apexcharts-series-markers")}},{key:"getAllMarkers",value:function(){var t=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers-wrap");(t=g(t)).sort((function(t,e){return Number(e.getAttribute("data:realIndex"))<Number(t.getAttribute("data:realIndex"))?0:-1}));var e=[];return t.forEach((function(t){e.push(t.querySelector(".apexcharts-marker"))})),e}},{key:"hasMarkers",value:function(){return this.getElMarkers().length>0}},{key:"getElBars",value:function(){return this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-bar-series, .apexcharts-candlestick-series, .apexcharts-boxPlot-series, .apexcharts-rangebar-series")}},{key:"hasBars",value:function(){return this.getElBars().length>0}},{key:"getHoverMarkerSize",value:function(t){var e=this.w,i=e.config.markers.hover.size;return void 0===i&&(i=e.globals.markers.size[t]+e.config.markers.hover.sizeOffset),i}},{key:"toggleAllTooltipSeriesGroups",value:function(t){var e=this.w,i=this.ttCtx;0===i.allTooltipSeriesGroups.length&&(i.allTooltipSeriesGroups=e.globals.dom.baseEl.querySelectorAll(".apexcharts-tooltip-series-group"));for(var a=i.allTooltipSeriesGroups,s=0;s<a.length;s++)"enable"===t?(a[s].classList.add("apexcharts-active"),a[s].style.display=e.config.tooltip.items.display):(a[s].classList.remove("apexcharts-active"),a[s].style.display="none")}}]),t}(),gt=function(){function t(i){e(this,t),this.w=i.w,this.ctx=i.ctx,this.ttCtx=i,this.tooltipUtil=new dt(i)}return a(t,[{key:"drawSeriesTexts",value:function(t){var e=t.shared,i=void 0===e||e,a=t.ttItems,s=t.i,r=void 0===s?0:s,n=t.j,o=void 0===n?null:n,l=t.y1,h=t.y2,c=t.e,d=this.w;void 0!==d.config.tooltip.custom?this.handleCustomTooltip({i:r,j:o,y1:l,y2:h,w:d}):this.toggleActiveInactiveSeries(i);var g=this.getValuesToPrint({i:r,j:o});this.printLabels({i:r,j:o,values:g,ttItems:a,shared:i,e:c});var u=this.ttCtx.getElTooltip();this.ttCtx.tooltipRect.ttWidth=u.getBoundingClientRect().width,this.ttCtx.tooltipRect.ttHeight=u.getBoundingClientRect().height}},{key:"printLabels",value:function(t){var e,i=this,a=t.i,s=t.j,r=t.values,o=t.ttItems,l=t.shared,h=t.e,c=this.w,d=r.xVal,g=r.zVal,u=r.xAxisTTVal,f="",p=c.globals.colors[a];null!==s&&c.config.plotOptions.bar.distributed&&(p=c.globals.colors[s]);for(var x=function(t,r){var x=i.getFormatters(a);f=i.getSeriesName({fn:x.yLbTitleFormatter,index:a,seriesIndex:a,j:s}),"treemap"===c.config.chart.type&&(f=x.yLbTitleFormatter(String(c.config.series[a].data[s].x),{series:c.globals.series,seriesIndex:a,dataPointIndex:s,w:c}));var b=c.config.tooltip.inverseOrder?r:t;if(c.globals.axisCharts){var m=function(t){return x.yLbFormatter(c.globals.series[t][s],{series:c.globals.series,seriesIndex:t,dataPointIndex:s,w:c})};l?(x=i.getFormatters(b),f=i.getSeriesName({fn:x.yLbTitleFormatter,index:b,seriesIndex:a,j:s}),p=c.globals.colors[b],e=m(b)):(h&&h.target&&h.target.getAttribute("fill")&&(p=h.target.getAttribute("fill")),e=m(a))}null===s&&(e=x.yLbFormatter(c.globals.series[a],n(n({},c),{},{seriesIndex:a,dataPointIndex:a}))),i.DOMHandling({i:a,t:b,j:s,ttItems:o,values:{val:e,xVal:d,xAxisTTVal:u,zVal:g},seriesName:f,shared:l,pColor:p})},b=0,m=c.globals.series.length-1;b<c.globals.series.length;b++,m--)x(b,m)}},{key:"getFormatters",value:function(t){var e,i=this.w,a=i.globals.yLabelFormatters[t];return void 0!==i.globals.ttVal?Array.isArray(i.globals.ttVal)?(a=i.globals.ttVal[t]&&i.globals.ttVal[t].formatter,e=i.globals.ttVal[t]&&i.globals.ttVal[t].title&&i.globals.ttVal[t].title.formatter):(a=i.globals.ttVal.formatter,"function"==typeof i.globals.ttVal.title.formatter&&(e=i.globals.ttVal.title.formatter)):e=i.config.tooltip.y.title.formatter,"function"!=typeof a&&(a=i.globals.yLabelFormatters[0]?i.globals.yLabelFormatters[0]:function(t){return t}),"function"!=typeof e&&(e=function(t){return t}),{yLbFormatter:a,yLbTitleFormatter:e}}},{key:"getSeriesName",value:function(t){var e=t.fn,i=t.index,a=t.seriesIndex,s=t.j,r=this.w;return e(String(r.globals.seriesNames[i]),{series:r.globals.series,seriesIndex:a,dataPointIndex:s,w:r})}},{key:"DOMHandling",value:function(t){t.i;var e=t.t,i=(t.j,t.ttItems),a=t.values,s=t.seriesName,r=t.shared,n=t.pColor,o=this.w,l=this.ttCtx,h=a.val,c=a.xVal,d=a.xAxisTTVal,g=a.zVal,u=null;u=i[e].children,o.config.tooltip.fillSeriesColor&&(i[e].style.backgroundColor=n,u[0].style.display="none"),l.showTooltipTitle&&(null===l.tooltipTitle&&(l.tooltipTitle=o.globals.dom.baseEl.querySelector(".apexcharts-tooltip-title")),l.tooltipTitle.innerHTML=c),l.blxaxisTooltip&&(l.xaxisTooltipText.innerHTML=""!==d?d:c);var f=i[e].querySelector(".apexcharts-tooltip-text-label");f&&(f.innerHTML=s||"");var p=i[e].querySelector(".apexcharts-tooltip-text-value");(p&&(p.innerHTML=void 0!==h?h:""),u[0]&&u[0].classList.contains("apexcharts-tooltip-marker")&&(o.config.tooltip.marker.fillColors&&Array.isArray(o.config.tooltip.marker.fillColors)&&(n=o.config.tooltip.marker.fillColors[e]),u[0].style.backgroundColor=n),o.config.tooltip.marker.show||(u[0].style.display="none"),null!==g)&&(i[e].querySelector(".apexcharts-tooltip-text-z-label").innerHTML=o.config.tooltip.z.title,i[e].querySelector(".apexcharts-tooltip-text-z-value").innerHTML=void 0!==g?g:"");r&&u[0]&&(null==h||o.globals.collapsedSeriesIndices.indexOf(e)>-1?u[0].parentNode.style.display="none":u[0].parentNode.style.display=o.config.tooltip.items.display)}},{key:"toggleActiveInactiveSeries",value:function(t){var e=this.w;if(t)this.tooltipUtil.toggleAllTooltipSeriesGroups("enable");else{this.tooltipUtil.toggleAllTooltipSeriesGroups("disable");var i=e.globals.dom.baseEl.querySelector(".apexcharts-tooltip-series-group");i&&(i.classList.add("apexcharts-active"),i.style.display=e.config.tooltip.items.display)}}},{key:"getValuesToPrint",value:function(t){var e=t.i,i=t.j,a=this.w,s=this.ctx.series.filteredSeriesX(),r="",n="",o=null,l=null,h={series:a.globals.series,seriesIndex:e,dataPointIndex:i,w:a},c=a.globals.ttZFormatter;null===i?l=a.globals.series[e]:a.globals.isXNumeric&&"treemap"!==a.config.chart.type?(r=s[e][i],0===s[e].length&&(r=s[this.tooltipUtil.getFirstActiveXArray(s)][i])):r=void 0!==a.globals.labels[i]?a.globals.labels[i]:"";var d=r;a.globals.isXNumeric&&"datetime"===a.config.xaxis.type?r=new W(this.ctx).xLabelFormat(a.globals.ttKeyFormatter,d,d,{i:void 0,dateFormatter:new Y(this.ctx).formatDate,w:this.w}):r=a.globals.isBarHorizontal?a.globals.yLabelFormatters[0](d,h):a.globals.xLabelFormatter(d,h);return void 0!==a.config.tooltip.x.formatter&&(r=a.globals.ttKeyFormatter(d,h)),a.globals.seriesZ.length>0&&a.globals.seriesZ[e].length>0&&(o=c(a.globals.seriesZ[e][i],a)),n="function"==typeof a.config.xaxis.tooltip.formatter?a.globals.xaxisTooltipFormatter(d,h):r,{val:Array.isArray(l)?l.join(" "):l,xVal:Array.isArray(r)?r.join(" "):r,xAxisTTVal:Array.isArray(n)?n.join(" "):n,zVal:o}}},{key:"handleCustomTooltip",value:function(t){var e=t.i,i=t.j,a=t.y1,s=t.y2,r=t.w,n=this.ttCtx.getElTooltip(),o=r.config.tooltip.custom;Array.isArray(o)&&o[e]&&(o=o[e]),n.innerHTML=o({ctx:this.ctx,series:r.globals.series,seriesIndex:e,dataPointIndex:i,y1:a,y2:s,w:r})}}]),t}(),ut=function(){function t(i){e(this,t),this.ttCtx=i,this.ctx=i.ctx,this.w=i.w}return a(t,[{key:"moveXCrosshairs",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,i=this.ttCtx,a=this.w,s=i.getElXCrosshairs(),r=t-i.xcrosshairsWidth/2,n=a.globals.labels.slice().length;if(null!==e&&(r=a.globals.gridWidth/n*e),null!==s&&(s.setAttribute("x",r),s.setAttribute("x1",r),s.setAttribute("x2",r),s.setAttribute("y2",a.globals.gridHeight),s.classList.add("apexcharts-active")),r<0&&(r=0),r>a.globals.gridWidth&&(r=a.globals.gridWidth),i.blxaxisTooltip){var o=r;"tickWidth"!==a.config.xaxis.crosshairs.width&&"barWidth"!==a.config.xaxis.crosshairs.width||(o=r+i.xcrosshairsWidth/2),this.moveXAxisTooltip(o)}}},{key:"moveYCrosshairs",value:function(t){var e=this.ttCtx;null!==e.ycrosshairs&&b.setAttrs(e.ycrosshairs,{y1:t,y2:t}),null!==e.ycrosshairsHidden&&b.setAttrs(e.ycrosshairsHidden,{y1:t,y2:t})}},{key:"moveXAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;if(null!==i.xaxisTooltip){i.xaxisTooltip.classList.add("apexcharts-active");var a=i.xaxisOffY+e.config.xaxis.tooltip.offsetY+e.globals.translateY+1+e.config.xaxis.offsetY;if(t-=i.xaxisTooltip.getBoundingClientRect().width/2,!isNaN(t)){t+=e.globals.translateX;var s;s=new b(this.ctx).getTextRects(i.xaxisTooltipText.innerHTML),i.xaxisTooltipText.style.minWidth=s.width+"px",i.xaxisTooltip.style.left=t+"px",i.xaxisTooltip.style.top=a+"px"}}}},{key:"moveYAxisTooltip",value:function(t){var e=this.w,i=this.ttCtx;null===i.yaxisTTEls&&(i.yaxisTTEls=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));var a=parseInt(i.ycrosshairsHidden.getAttribute("y1"),10),s=e.globals.translateY+a,r=i.yaxisTTEls[t].getBoundingClientRect().height,n=e.globals.translateYAxisX[t]-2;e.config.yaxis[t].opposite&&(n-=26),s-=r/2,-1===e.globals.ignoreYAxisIndexes.indexOf(t)?(i.yaxisTTEls[t].classList.add("apexcharts-active"),i.yaxisTTEls[t].style.top=s+"px",i.yaxisTTEls[t].style.left=n+e.config.yaxis[t].tooltip.offsetX+"px"):i.yaxisTTEls[t].classList.remove("apexcharts-active")}},{key:"moveTooltip",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=this.w,s=this.ttCtx,r=s.getElTooltip(),n=s.tooltipRect,o=null!==i?parseFloat(i):1,l=parseFloat(t)+o+5,h=parseFloat(e)+o/2;if(l>a.globals.gridWidth/2&&(l=l-n.ttWidth-o-15),l>a.globals.gridWidth-n.ttWidth-10&&(l=a.globals.gridWidth-n.ttWidth),l<-20&&(l=-20),a.config.tooltip.followCursor){var c=s.getElGrid(),d=c.getBoundingClientRect();h=s.e.clientY+a.globals.translateY-d.top-n.ttHeight/2}else a.globals.isBarHorizontal?h-=n.ttHeight:(n.ttHeight/2+h>a.globals.gridHeight&&(h=a.globals.gridHeight-n.ttHeight+a.globals.translateY),h<0&&(h=0));isNaN(l)||(l+=a.globals.translateX,r.style.left=l+"px",r.style.top=h+"px")}},{key:"moveMarkers",value:function(t,e){var i=this.w,a=this.ttCtx;if(i.globals.markers.size[t]>0)for(var s=i.globals.dom.baseEl.querySelectorAll(" .apexcharts-series[data\\:realIndex='".concat(t,"'] .apexcharts-marker")),r=0;r<s.length;r++)parseInt(s[r].getAttribute("rel"),10)===e&&(a.marker.resetPointsSize(),a.marker.enlargeCurrentPoint(e,s[r]));else a.marker.resetPointsSize(),this.moveDynamicPointOnHover(e,t)}},{key:"moveDynamicPointOnHover",value:function(t,e){var i,a,s=this.w,r=this.ttCtx,n=s.globals.pointsArray,o=r.tooltipUtil.getHoverMarkerSize(e),l=s.config.series[e].type;if(!l||"column"!==l&&"candlestick"!==l&&"boxPlot"!==l){i=n[e][t][0],a=n[e][t][1]?n[e][t][1]:0;var h=s.globals.dom.baseEl.querySelector(".apexcharts-series[data\\:realIndex='".concat(e,"'] .apexcharts-series-markers circle"));h&&a<s.globals.gridHeight&&a>0&&(h.setAttribute("r",o),h.setAttribute("cx",i),h.setAttribute("cy",a)),this.moveXCrosshairs(i),r.fixedTooltip||this.moveTooltip(i,a,o)}}},{key:"moveDynamicPointsOnHover",value:function(t){var e,i=this.ttCtx,a=i.w,s=0,r=0,n=a.globals.pointsArray;e=new M(this.ctx).getActiveConfigSeriesIndex(!0);var o=i.tooltipUtil.getHoverMarkerSize(e);n[e]&&(s=n[e][t][0],r=n[e][t][1]);var l=i.tooltipUtil.getAllMarkers();if(null!==l)for(var h=0;h<a.globals.series.length;h++){var c=n[h];if(a.globals.comboCharts&&void 0===c&&l.splice(h,0,null),c&&c.length){var d=n[h][t][1];l[h].setAttribute("cx",s),null!==d&&!isNaN(d)&&d<a.globals.gridHeight&&d>0?(l[h]&&l[h].setAttribute("r",o),l[h]&&l[h].setAttribute("cy",d)):l[h]&&l[h].setAttribute("r",0)}}if(this.moveXCrosshairs(s),!i.fixedTooltip){var g=r||a.globals.gridHeight;this.moveTooltip(s,g,o)}}},{key:"moveStickyTooltipOverBars",value:function(t){var e=this.w,i=this.ttCtx,a=e.globals.columnSeries?e.globals.columnSeries.length:e.globals.series.length,s=a>=2&&a%2==0?Math.floor(a/2):Math.floor(a/2)+1;e.globals.isBarHorizontal&&(s=new M(this.ctx).getActiveConfigSeriesIndex(!1,"desc")+1);var r=e.globals.dom.baseEl.querySelector(".apexcharts-bar-series .apexcharts-series[rel='".concat(s,"'] path[j='").concat(t,"'], .apexcharts-candlestick-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"'], .apexcharts-boxPlot-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"'], .apexcharts-rangebar-series .apexcharts-series[rel='").concat(s,"'] path[j='").concat(t,"']")),n=r?parseFloat(r.getAttribute("cx")):0,o=r?parseFloat(r.getAttribute("cy")):0,l=r?parseFloat(r.getAttribute("barWidth")):0,h=r?parseFloat(r.getAttribute("barHeight")):0,c=i.getElGrid().getBoundingClientRect();if(e.globals.isXNumeric?(n-=a%2!=0?l/2:0,r&&(r.classList.contains("apexcharts-candlestick-area")||r.classList.contains("apexcharts-boxPlot-area"))&&e.globals.comboCharts&&(n-=l/2)):e.globals.isBarHorizontal||(n=i.xAxisTicksPositions[t-1]+i.dataPointsDividedWidth/2,isNaN(n)&&(n=i.xAxisTicksPositions[t]-i.dataPointsDividedWidth/2)),e.globals.isBarHorizontal?o+=h/3:o=i.e.clientY-c.top-i.tooltipRect.ttHeight/2,e.globals.isBarHorizontal||this.moveXCrosshairs(n),!i.fixedTooltip){var d=o||e.globals.gridHeight;this.moveTooltip(n,d)}}}]),t}(),ft=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i,this.ctx=i.ctx,this.tooltipPosition=new ut(i)}return a(t,[{key:"drawDynamicPoints",value:function(){var t=this.w,e=new b(this.ctx),i=new P(this.ctx),a=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series");a=g(a),t.config.chart.stacked&&a.sort((function(t,e){return parseFloat(t.getAttribute("data:realIndex"))-parseFloat(e.getAttribute("data:realIndex"))}));for(var s=0;s<a.length;s++){var r=a[s].querySelector(".apexcharts-series-markers-wrap");if(null!==r){var n=void 0,o="apexcharts-marker w".concat((Math.random()+1).toString(36).substring(4));"line"!==t.config.chart.type&&"area"!==t.config.chart.type||t.globals.comboCharts||t.config.tooltip.intersect||(o+=" no-pointer-events");var l=i.getMarkerConfig(o,s);(n=e.drawMarker(0,0,l)).node.setAttribute("default-marker-size",0);var h=document.createElementNS(t.globals.SVGNS,"g");h.classList.add("apexcharts-series-markers"),h.appendChild(n.node),r.appendChild(h)}}}},{key:"enlargeCurrentPoint",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,s=this.w;"bubble"!==s.config.chart.type&&this.newPointSize(t,e);var r=e.getAttribute("cx"),n=e.getAttribute("cy");if(null!==i&&null!==a&&(r=i,n=a),this.tooltipPosition.moveXCrosshairs(r),!this.fixedTooltip){if("radar"===s.config.chart.type){var o=this.ttCtx.getElGrid(),l=o.getBoundingClientRect();r=this.ttCtx.e.clientX-l.left}this.tooltipPosition.moveTooltip(r,n,s.config.markers.hover.size)}}},{key:"enlargePoints",value:function(t){for(var e=this.w,i=this,a=this.ttCtx,s=t,r=e.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),n=e.config.markers.hover.size,o=0;o<r.length;o++){var l=r[o].getAttribute("rel"),h=r[o].getAttribute("index");if(void 0===n&&(n=e.globals.markers.size[h]+e.config.markers.hover.sizeOffset),s===parseInt(l,10)){i.newPointSize(s,r[o]);var c=r[o].getAttribute("cx"),d=r[o].getAttribute("cy");i.tooltipPosition.moveXCrosshairs(c),a.fixedTooltip||i.tooltipPosition.moveTooltip(c,d,n)}else i.oldPointSize(r[o])}}},{key:"newPointSize",value:function(t,e){var i=this.w,a=i.config.markers.hover.size,s=0===t?e.parentNode.firstChild:e.parentNode.lastChild;if("0"!==s.getAttribute("default-marker-size")){var r=parseInt(s.getAttribute("index"),10);void 0===a&&(a=i.globals.markers.size[r]+i.config.markers.hover.sizeOffset),a<0&&(a=0),s.setAttribute("r",a)}}},{key:"oldPointSize",value:function(t){var e=parseFloat(t.getAttribute("default-marker-size"));t.setAttribute("r",e)}},{key:"resetPointsSize",value:function(){for(var t=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series:not(.apexcharts-series-collapsed) .apexcharts-marker"),e=0;e<t.length;e++){var i=parseFloat(t[e].getAttribute("default-marker-size"));f.isNumber(i)&&i>=0?t[e].setAttribute("r",i):t[e].setAttribute("r",0)}}}]),t}(),pt=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i}return a(t,[{key:"getAttr",value:function(t,e){return parseFloat(t.target.getAttribute(e))}},{key:"handleHeatTreeTooltip",value:function(t){var e=t.e,i=t.opt,a=t.x,s=t.y,r=t.type,n=this.ttCtx,o=this.w;if(e.target.classList.contains("apexcharts-".concat(r,"-rect"))){var l=this.getAttr(e,"i"),h=this.getAttr(e,"j"),c=this.getAttr(e,"cx"),d=this.getAttr(e,"cy"),g=this.getAttr(e,"width"),u=this.getAttr(e,"height");if(n.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:l,j:h,shared:!1,e:e}),o.globals.capturedSeriesIndex=l,o.globals.capturedDataPointIndex=h,a=c+n.tooltipRect.ttWidth/2+g,s=d+n.tooltipRect.ttHeight/2-u/2,n.tooltipPosition.moveXCrosshairs(c+g/2),a>o.globals.gridWidth/2&&(a=c-n.tooltipRect.ttWidth/2+g),n.w.config.tooltip.followCursor){var f=o.globals.dom.elWrap.getBoundingClientRect();a=o.globals.clientX-f.left-n.tooltipRect.ttWidth/2,s=o.globals.clientY-f.top-n.tooltipRect.ttHeight-5}}return{x:a,y:s}}},{key:"handleMarkerTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=t.x,n=t.y,o=this.w,l=this.ttCtx;if(a.target.classList.contains("apexcharts-marker")){var h=parseInt(s.paths.getAttribute("cx"),10),c=parseInt(s.paths.getAttribute("cy"),10),d=parseFloat(s.paths.getAttribute("val"));if(i=parseInt(s.paths.getAttribute("rel"),10),e=parseInt(s.paths.parentNode.parentNode.parentNode.getAttribute("rel"),10)-1,l.intersect){var g=f.findAncestor(s.paths,"apexcharts-series");g&&(e=parseInt(g.getAttribute("data:realIndex"),10))}if(l.tooltipLabels.drawSeriesTexts({ttItems:s.ttItems,i:e,j:i,shared:!l.showOnIntersect&&o.config.tooltip.shared,e:a}),"mouseup"===a.type&&l.markerClick(a,e,i),o.globals.capturedSeriesIndex=e,o.globals.capturedDataPointIndex=i,r=h,n=c+o.globals.translateY-1.4*l.tooltipRect.ttHeight,l.w.config.tooltip.followCursor){var u=l.getElGrid().getBoundingClientRect();n=l.e.clientY+o.globals.translateY-u.top}d<0&&(n=c),l.marker.enlargeCurrentPoint(i,s.paths,r,n)}return{x:r,y:n}}},{key:"handleBarTooltip",value:function(t){var e,i,a=t.e,s=t.opt,r=this.w,n=this.ttCtx,o=n.getElTooltip(),l=0,h=0,c=0,d=this.getBarTooltipXY({e:a,opt:s});e=d.i;var g=d.barHeight,u=d.j;r.globals.capturedSeriesIndex=e,r.globals.capturedDataPointIndex=u,r.globals.isBarHorizontal&&n.tooltipUtil.hasBars()||!r.config.tooltip.shared?(h=d.x,c=d.y,i=Array.isArray(r.config.stroke.width)?r.config.stroke.width[e]:r.config.stroke.width,l=h):r.globals.comboCharts||r.config.tooltip.shared||(l/=2),isNaN(c)?c=r.globals.svgHeight-n.tooltipRect.ttHeight:c<0&&(c=0);var f=parseInt(s.paths.parentNode.getAttribute("data:realIndex"),10),p=r.globals.isMultipleYAxis?r.config.yaxis[f]&&r.config.yaxis[f].reversed:r.config.yaxis[0].reversed;if(h+n.tooltipRect.ttWidth>r.globals.gridWidth&&!p?h-=n.tooltipRect.ttWidth:h<0&&(h=0),n.w.config.tooltip.followCursor){var x=n.getElGrid().getBoundingClientRect();c=n.e.clientY-x.top}null===n.tooltip&&(n.tooltip=r.globals.dom.baseEl.querySelector(".apexcharts-tooltip")),r.config.tooltip.shared||(r.globals.comboBarCount>0?n.tooltipPosition.moveXCrosshairs(l+i/2):n.tooltipPosition.moveXCrosshairs(l)),!n.fixedTooltip&&(!r.config.tooltip.shared||r.globals.isBarHorizontal&&n.tooltipUtil.hasBars())&&(p&&(h-=n.tooltipRect.ttWidth)<0&&(h=0),o.style.left=h+r.globals.translateX+"px",!p||r.globals.isBarHorizontal&&n.tooltipUtil.hasBars()||(c=c+g-2*(r.globals.series[e][u]<0?g:0)),n.tooltipRect.ttHeight+c>r.globals.gridHeight?(c=r.globals.gridHeight-n.tooltipRect.ttHeight+r.globals.translateY,o.style.top=c+"px"):o.style.top=c+r.globals.translateY-n.tooltipRect.ttHeight/2+"px")}},{key:"getBarTooltipXY",value:function(t){var e=t.e,i=t.opt,a=this.w,s=null,r=this.ttCtx,n=0,o=0,l=0,h=0,c=0,d=e.target.classList;if(d.contains("apexcharts-bar-area")||d.contains("apexcharts-candlestick-area")||d.contains("apexcharts-boxPlot-area")||d.contains("apexcharts-rangebar-area")){var g=e.target,u=g.getBoundingClientRect(),f=i.elGrid.getBoundingClientRect(),p=u.height;c=u.height;var x=u.width,b=parseInt(g.getAttribute("cx"),10),m=parseInt(g.getAttribute("cy"),10);h=parseFloat(g.getAttribute("barWidth"));var v="touchmove"===e.type?e.touches[0].clientX:e.clientX;s=parseInt(g.getAttribute("j"),10),n=parseInt(g.parentNode.getAttribute("rel"),10)-1;var y=g.getAttribute("data-range-y1"),w=g.getAttribute("data-range-y2");a.globals.comboCharts&&(n=parseInt(g.parentNode.getAttribute("data:realIndex"),10)),r.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:n,j:s,y1:y?parseInt(y,10):null,y2:w?parseInt(w,10):null,shared:!r.showOnIntersect&&a.config.tooltip.shared,e:e}),a.config.tooltip.followCursor?a.globals.isBarHorizontal?(o=v-f.left+15,l=m-r.dataPointsDividedHeight+p/2-r.tooltipRect.ttHeight/2):(o=a.globals.isXNumeric?b-x/2:b-r.dataPointsDividedWidth+x/2,l=e.clientY-f.top-r.tooltipRect.ttHeight/2-15):a.globals.isBarHorizontal?((o=b)<r.xyRatios.baseLineInvertedY&&(o=b-r.tooltipRect.ttWidth),l=m-r.dataPointsDividedHeight+p/2-r.tooltipRect.ttHeight/2):(o=a.globals.isXNumeric?b-x/2:b-r.dataPointsDividedWidth+x/2,l=m)}return{x:o,y:l,barHeight:c,barWidth:h,i:n,j:s}}}]),t}(),xt=function(){function t(i){e(this,t),this.w=i.w,this.ttCtx=i}return a(t,[{key:"drawXaxisTooltip",value:function(){var t=this.w,e=this.ttCtx,i="bottom"===t.config.xaxis.position;e.xaxisOffY=i?t.globals.gridHeight+1:-t.globals.xAxisHeight-t.config.xaxis.axisTicks.height+3;var a=i?"apexcharts-xaxistooltip apexcharts-xaxistooltip-bottom":"apexcharts-xaxistooltip apexcharts-xaxistooltip-top",s=t.globals.dom.elWrap;e.blxaxisTooltip&&(null===t.globals.dom.baseEl.querySelector(".apexcharts-xaxistooltip")&&(e.xaxisTooltip=document.createElement("div"),e.xaxisTooltip.setAttribute("class",a+" apexcharts-theme-"+t.config.tooltip.theme),s.appendChild(e.xaxisTooltip),e.xaxisTooltipText=document.createElement("div"),e.xaxisTooltipText.classList.add("apexcharts-xaxistooltip-text"),e.xaxisTooltipText.style.fontFamily=t.config.xaxis.tooltip.style.fontFamily||t.config.chart.fontFamily,e.xaxisTooltipText.style.fontSize=t.config.xaxis.tooltip.style.fontSize,e.xaxisTooltip.appendChild(e.xaxisTooltipText)))}},{key:"drawYaxisTooltip",value:function(){for(var t=this.w,e=this.ttCtx,i=function(i){var a=t.config.yaxis[i].opposite||t.config.yaxis[i].crosshairs.opposite;e.yaxisOffX=a?t.globals.gridWidth+1:1;var s="apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i,a?" apexcharts-yaxistooltip-right":" apexcharts-yaxistooltip-left");t.globals.yAxisSameScaleIndices.map((function(e,a){e.map((function(e,a){a===i&&(s+=t.config.yaxis[a].show?" ":" apexcharts-yaxistooltip-hidden")}))}));var r=t.globals.dom.elWrap;null===t.globals.dom.baseEl.querySelector(".apexcharts-yaxistooltip apexcharts-yaxistooltip-".concat(i))&&(e.yaxisTooltip=document.createElement("div"),e.yaxisTooltip.setAttribute("class",s+" apexcharts-theme-"+t.config.tooltip.theme),r.appendChild(e.yaxisTooltip),0===i&&(e.yaxisTooltipText=[]),e.yaxisTooltipText[i]=document.createElement("div"),e.yaxisTooltipText[i].classList.add("apexcharts-yaxistooltip-text"),e.yaxisTooltip.appendChild(e.yaxisTooltipText[i]))},a=0;a<t.config.yaxis.length;a++)i(a)}},{key:"setXCrosshairWidth",value:function(){var t=this.w,e=this.ttCtx,i=e.getElXCrosshairs();if(e.xcrosshairsWidth=parseInt(t.config.xaxis.crosshairs.width,10),t.globals.comboCharts){var a=t.globals.dom.baseEl.querySelector(".apexcharts-bar-area");if(null!==a&&"barWidth"===t.config.xaxis.crosshairs.width){var s=parseFloat(a.getAttribute("barWidth"));e.xcrosshairsWidth=s}else if("tickWidth"===t.config.xaxis.crosshairs.width){var r=t.globals.labels.length;e.xcrosshairsWidth=t.globals.gridWidth/r}}else if("tickWidth"===t.config.xaxis.crosshairs.width){var n=t.globals.labels.length;e.xcrosshairsWidth=t.globals.gridWidth/n}else if("barWidth"===t.config.xaxis.crosshairs.width){var o=t.globals.dom.baseEl.querySelector(".apexcharts-bar-area");if(null!==o){var l=parseFloat(o.getAttribute("barWidth"));e.xcrosshairsWidth=l}else e.xcrosshairsWidth=1}t.globals.isBarHorizontal&&(e.xcrosshairsWidth=0),null!==i&&e.xcrosshairsWidth>0&&i.setAttribute("width",e.xcrosshairsWidth)}},{key:"handleYCrosshair",value:function(){var t=this.w,e=this.ttCtx;e.ycrosshairs=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs"),e.ycrosshairsHidden=t.globals.dom.baseEl.querySelector(".apexcharts-ycrosshairs-hidden")}},{key:"drawYaxisTooltipText",value:function(t,e,i){var a=this.ttCtx,s=this.w,r=s.globals.yLabelFormatters[t];if(a.yaxisTooltips[t]){var n=a.getElGrid().getBoundingClientRect(),o=(e-n.top)*i.yRatio[t],l=s.globals.maxYArr[t]-s.globals.minYArr[t],h=s.globals.minYArr[t]+(l-o);a.tooltipPosition.moveYCrosshairs(e-n.top),a.yaxisTooltipText[t].innerHTML=r(h),a.tooltipPosition.moveYAxisTooltip(t)}}}]),t}(),bt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.tConfig=a.config.tooltip,this.tooltipUtil=new dt(this),this.tooltipLabels=new gt(this),this.tooltipPosition=new ut(this),this.marker=new ft(this),this.intersect=new pt(this),this.axesTooltip=new xt(this),this.showOnIntersect=this.tConfig.intersect,this.showTooltipTitle=this.tConfig.x.show,this.fixedTooltip=this.tConfig.fixed.enabled,this.xaxisTooltip=null,this.yaxisTTEls=null,this.isBarShared=!a.globals.isBarHorizontal&&this.tConfig.shared}return a(t,[{key:"getElTooltip",value:function(t){return t||(t=this),t.w.globals.dom.baseEl.querySelector(".apexcharts-tooltip")}},{key:"getElXCrosshairs",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-xcrosshairs")}},{key:"getElGrid",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-grid")}},{key:"drawTooltip",value:function(t){var e=this.w;this.xyRatios=t,this.blxaxisTooltip=e.config.xaxis.tooltip.enabled&&e.globals.axisCharts,this.yaxisTooltips=e.config.yaxis.map((function(t,i){return!!(t.show&&t.tooltip.enabled&&e.globals.axisCharts)})),this.allTooltipSeriesGroups=[],e.globals.axisCharts||(this.showTooltipTitle=!1);var i=document.createElement("div");if(i.classList.add("apexcharts-tooltip"),i.classList.add("apexcharts-theme-".concat(this.tConfig.theme)),e.globals.dom.elWrap.appendChild(i),e.globals.axisCharts){this.axesTooltip.drawXaxisTooltip(),this.axesTooltip.drawYaxisTooltip(),this.axesTooltip.setXCrosshairWidth(),this.axesTooltip.handleYCrosshair();var a=new _(this.ctx);this.xAxisTicksPositions=a.getXAxisTicksPositions()}if(!e.globals.comboCharts&&!this.tConfig.intersect&&"rangeBar"!==e.config.chart.type||this.tConfig.shared||(this.showOnIntersect=!0),0!==e.config.markers.size&&0!==e.globals.markers.largestSize||this.marker.drawDynamicPoints(this),e.globals.collapsedSeries.length!==e.globals.series.length){this.dataPointsDividedHeight=e.globals.gridHeight/e.globals.dataPoints,this.dataPointsDividedWidth=e.globals.gridWidth/e.globals.dataPoints,this.showTooltipTitle&&(this.tooltipTitle=document.createElement("div"),this.tooltipTitle.classList.add("apexcharts-tooltip-title"),this.tooltipTitle.style.fontFamily=this.tConfig.style.fontFamily||e.config.chart.fontFamily,this.tooltipTitle.style.fontSize=this.tConfig.style.fontSize,i.appendChild(this.tooltipTitle));var s=e.globals.series.length;(e.globals.xyCharts||e.globals.comboCharts)&&this.tConfig.shared&&(s=this.showOnIntersect?1:e.globals.series.length),this.legendLabels=e.globals.dom.baseEl.querySelectorAll(".apexcharts-legend-text"),this.ttItems=this.createTTElements(s),this.addSVGEvents()}}},{key:"createTTElements",value:function(t){for(var e=this.w,i=[],a=this.getElTooltip(),s=0;s<t;s++){var r=document.createElement("div");r.classList.add("apexcharts-tooltip-series-group"),r.style.order=e.config.tooltip.inverseOrder?t-s:s+1,this.tConfig.shared&&this.tConfig.enabledOnSeries&&Array.isArray(this.tConfig.enabledOnSeries)&&this.tConfig.enabledOnSeries.indexOf(s)<0&&r.classList.add("apexcharts-tooltip-series-group-hidden");var n=document.createElement("span");n.classList.add("apexcharts-tooltip-marker"),n.style.backgroundColor=e.globals.colors[s],r.appendChild(n);var o=document.createElement("div");o.classList.add("apexcharts-tooltip-text"),o.style.fontFamily=this.tConfig.style.fontFamily||e.config.chart.fontFamily,o.style.fontSize=this.tConfig.style.fontSize;var l=document.createElement("div");l.classList.add("apexcharts-tooltip-y-group");var h=document.createElement("span");h.classList.add("apexcharts-tooltip-text-label"),l.appendChild(h);var c=document.createElement("span");c.classList.add("apexcharts-tooltip-text-value"),l.appendChild(c);var d=document.createElement("div");d.classList.add("apexcharts-tooltip-z-group");var g=document.createElement("span");g.classList.add("apexcharts-tooltip-text-z-label"),d.appendChild(g);var u=document.createElement("span");u.classList.add("apexcharts-tooltip-text-z-value"),d.appendChild(u),o.appendChild(l),o.appendChild(d),r.appendChild(o),a.appendChild(r),i.push(r)}return i}},{key:"addSVGEvents",value:function(){var t=this.w,e=t.config.chart.type,i=this.getElTooltip(),a=!("bar"!==e&&"candlestick"!==e&&"boxPlot"!==e&&"rangeBar"!==e),s="area"===e||"line"===e||"scatter"===e||"bubble"===e||"radar"===e,r=t.globals.dom.Paper.node,n=this.getElGrid();n&&(this.seriesBound=n.getBoundingClientRect());var o,l=[],h=[],c={hoverArea:r,elGrid:n,tooltipEl:i,tooltipY:l,tooltipX:h,ttItems:this.ttItems};if(t.globals.axisCharts&&(s?o=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series[data\\:longestSeries='true'] .apexcharts-marker"):a?o=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series .apexcharts-bar-area, .apexcharts-series .apexcharts-candlestick-area, .apexcharts-series .apexcharts-boxPlot-area, .apexcharts-series .apexcharts-rangebar-area"):"heatmap"!==e&&"treemap"!==e||(o=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series .apexcharts-heatmap, .apexcharts-series .apexcharts-treemap")),o&&o.length))for(var d=0;d<o.length;d++)l.push(o[d].getAttribute("cy")),h.push(o[d].getAttribute("cx"));if(t.globals.xyCharts&&!this.showOnIntersect||t.globals.comboCharts&&!this.showOnIntersect||a&&this.tooltipUtil.hasBars()&&this.tConfig.shared)this.addPathsEventListeners([r],c);else if(a&&!t.globals.comboCharts||s&&this.showOnIntersect)this.addDatapointEventsListeners(c);else if(!t.globals.axisCharts||"heatmap"===e||"treemap"===e){var g=t.globals.dom.baseEl.querySelectorAll(".apexcharts-series");this.addPathsEventListeners(g,c)}if(this.showOnIntersect){var u=t.globals.dom.baseEl.querySelectorAll(".apexcharts-line-series .apexcharts-marker, .apexcharts-area-series .apexcharts-marker");u.length>0&&this.addPathsEventListeners(u,c),this.tooltipUtil.hasBars()&&!this.tConfig.shared&&this.addDatapointEventsListeners(c)}}},{key:"drawFixedTooltipRect",value:function(){var t=this.w,e=this.getElTooltip(),i=e.getBoundingClientRect(),a=i.width+10,s=i.height+10,r=this.tConfig.fixed.offsetX,n=this.tConfig.fixed.offsetY,o=this.tConfig.fixed.position.toLowerCase();return o.indexOf("right")>-1&&(r=r+t.globals.svgWidth-a+10),o.indexOf("bottom")>-1&&(n=n+t.globals.svgHeight-s-10),e.style.left=r+"px",e.style.top=n+"px",{x:r,y:n,ttWidth:a,ttHeight:s}}},{key:"addDatapointEventsListeners",value:function(t){var e=this.w.globals.dom.baseEl.querySelectorAll(".apexcharts-series-markers .apexcharts-marker, .apexcharts-bar-area, .apexcharts-candlestick-area, .apexcharts-boxPlot-area, .apexcharts-rangebar-area");this.addPathsEventListeners(e,t)}},{key:"addPathsEventListeners",value:function(t,e){for(var i=this,a=function(a){var s={paths:t[a],tooltipEl:e.tooltipEl,tooltipY:e.tooltipY,tooltipX:e.tooltipX,elGrid:e.elGrid,hoverArea:e.hoverArea,ttItems:e.ttItems};["mousemove","mouseup","touchmove","mouseout","touchend"].map((function(e){return t[a].addEventListener(e,i.seriesHover.bind(i,s),{capture:!1,passive:!0})}))},s=0;s<t.length;s++)a(s)}},{key:"seriesHover",value:function(t,e){var i=this,a=[],s=this.w;s.config.chart.group&&(a=this.ctx.getGroupedCharts()),s.globals.axisCharts&&(s.globals.minX===-1/0&&s.globals.maxX===1/0||0===s.globals.dataPoints)||(a.length?a.forEach((function(a){var s=i.getElTooltip(a),r={paths:t.paths,tooltipEl:s,tooltipY:t.tooltipY,tooltipX:t.tooltipX,elGrid:t.elGrid,hoverArea:t.hoverArea,ttItems:a.w.globals.tooltip.ttItems};a.w.globals.minX===i.w.globals.minX&&a.w.globals.maxX===i.w.globals.maxX&&a.w.globals.tooltip.seriesHoverByContext({chartCtx:a,ttCtx:a.w.globals.tooltip,opt:r,e:e})})):this.seriesHoverByContext({chartCtx:this.ctx,ttCtx:this.w.globals.tooltip,opt:t,e:e}))}},{key:"seriesHoverByContext",value:function(t){var e=t.chartCtx,i=t.ttCtx,a=t.opt,s=t.e,r=e.w,n=this.getElTooltip();(i.tooltipRect={x:0,y:0,ttWidth:n.getBoundingClientRect().width,ttHeight:n.getBoundingClientRect().height},i.e=s,!i.tooltipUtil.hasBars()||r.globals.comboCharts||i.isBarShared)||this.tConfig.onDatasetHover.highlightDataSeries&&new M(e).toggleSeriesOnHover(s,s.target.parentNode);i.fixedTooltip&&i.drawFixedTooltipRect(),r.globals.axisCharts?i.axisChartsTooltips({e:s,opt:a,tooltipRect:i.tooltipRect}):i.nonAxisChartsTooltips({e:s,opt:a,tooltipRect:i.tooltipRect})}},{key:"axisChartsTooltips",value:function(t){var e,i,a=t.e,s=t.opt,r=this.w,n=s.elGrid.getBoundingClientRect(),o="touchmove"===a.type?a.touches[0].clientX:a.clientX,l="touchmove"===a.type?a.touches[0].clientY:a.clientY;if(this.clientY=l,this.clientX=o,r.globals.capturedSeriesIndex=-1,r.globals.capturedDataPointIndex=-1,l<n.top||l>n.top+n.height)this.handleMouseOut(s);else{if(Array.isArray(this.tConfig.enabledOnSeries)&&!r.config.tooltip.shared){var h=parseInt(s.paths.getAttribute("index"),10);if(this.tConfig.enabledOnSeries.indexOf(h)<0)return void this.handleMouseOut(s)}var c=this.getElTooltip(),d=this.getElXCrosshairs(),g=r.globals.xyCharts||"bar"===r.config.chart.type&&!r.globals.isBarHorizontal&&this.tooltipUtil.hasBars()&&this.tConfig.shared||r.globals.comboCharts&&this.tooltipUtil.hasBars();if("mousemove"===a.type||"touchmove"===a.type||"mouseup"===a.type){null!==d&&d.classList.add("apexcharts-active");var u=this.yaxisTooltips.filter((function(t){return!0===t}));if(null!==this.ycrosshairs&&u.length&&this.ycrosshairs.classList.add("apexcharts-active"),g&&!this.showOnIntersect)this.handleStickyTooltip(a,o,l,s);else if("heatmap"===r.config.chart.type||"treemap"===r.config.chart.type){var f=this.intersect.handleHeatTreeTooltip({e:a,opt:s,x:e,y:i,type:r.config.chart.type});e=f.x,i=f.y,c.style.left=e+"px",c.style.top=i+"px"}else this.tooltipUtil.hasBars()&&this.intersect.handleBarTooltip({e:a,opt:s}),this.tooltipUtil.hasMarkers()&&this.intersect.handleMarkerTooltip({e:a,opt:s,x:e,y:i});if(this.yaxisTooltips.length)for(var p=0;p<r.config.yaxis.length;p++)this.axesTooltip.drawYaxisTooltipText(p,l,this.xyRatios);s.tooltipEl.classList.add("apexcharts-active")}else"mouseout"!==a.type&&"touchend"!==a.type||this.handleMouseOut(s)}}},{key:"nonAxisChartsTooltips",value:function(t){var e=t.e,i=t.opt,a=t.tooltipRect,s=this.w,r=i.paths.getAttribute("rel"),n=this.getElTooltip(),o=s.globals.dom.elWrap.getBoundingClientRect();if("mousemove"===e.type||"touchmove"===e.type){n.classList.add("apexcharts-active"),this.tooltipLabels.drawSeriesTexts({ttItems:i.ttItems,i:parseInt(r,10)-1,shared:!1});var l=s.globals.clientX-o.left-a.ttWidth/2,h=s.globals.clientY-o.top-a.ttHeight-10;if(n.style.left=l+"px",n.style.top=h+"px",s.config.legend.tooltipHoverFormatter){var c=r-1,d=(0,s.config.legend.tooltipHoverFormatter)(this.legendLabels[c].getAttribute("data:default-text"),{seriesIndex:c,dataPointIndex:c,w:s});this.legendLabels[c].innerHTML=d}}else"mouseout"!==e.type&&"touchend"!==e.type||(n.classList.remove("apexcharts-active"),s.config.legend.tooltipHoverFormatter&&this.legendLabels.forEach((function(t){var e=t.getAttribute("data:default-text");t.innerHTML=decodeURIComponent(e)})))}},{key:"handleStickyTooltip",value:function(t,e,i,a){var s=this.w,r=this.tooltipUtil.getNearestValues({context:this,hoverArea:a.hoverArea,elGrid:a.elGrid,clientX:e,clientY:i}),n=r.j,o=r.capturedSeries;r.hoverX<0||r.hoverX>s.globals.gridWidth?this.handleMouseOut(a):null!==o?this.handleStickyCapturedSeries(t,o,a,n):(this.tooltipUtil.isXoverlap(n)||s.globals.isBarHorizontal)&&this.create(t,this,0,n,a.ttItems)}},{key:"handleStickyCapturedSeries",value:function(t,e,i,a){var s=this.w;null===s.globals.series[e][a]?this.handleMouseOut(i):void 0!==s.globals.series[e][a]?this.tConfig.shared&&this.tooltipUtil.isXoverlap(a)&&this.tooltipUtil.isInitialSeriesSameLen()?this.create(t,this,e,a,i.ttItems):this.create(t,this,e,a,i.ttItems,!1):this.tooltipUtil.isXoverlap(a)&&this.create(t,this,0,a,i.ttItems)}},{key:"deactivateHoverFilter",value:function(){for(var t=this.w,e=new b(this.ctx),i=t.globals.dom.Paper.select(".apexcharts-bar-area"),a=0;a<i.length;a++)e.pathMouseLeave(i[a])}},{key:"handleMouseOut",value:function(t){var e=this.w,i=this.getElXCrosshairs();if(t.tooltipEl.classList.remove("apexcharts-active"),this.deactivateHoverFilter(),"bubble"!==e.config.chart.type&&this.marker.resetPointsSize(),null!==i&&i.classList.remove("apexcharts-active"),null!==this.ycrosshairs&&this.ycrosshairs.classList.remove("apexcharts-active"),this.blxaxisTooltip&&this.xaxisTooltip.classList.remove("apexcharts-active"),this.yaxisTooltips.length){null===this.yaxisTTEls&&(this.yaxisTTEls=e.globals.dom.baseEl.querySelectorAll(".apexcharts-yaxistooltip"));for(var a=0;a<this.yaxisTTEls.length;a++)this.yaxisTTEls[a].classList.remove("apexcharts-active")}e.config.legend.tooltipHoverFormatter&&this.legendLabels.forEach((function(t){var e=t.getAttribute("data:default-text");t.innerHTML=decodeURIComponent(e)}))}},{key:"markerClick",value:function(t,e,i){var a=this.w;"function"==typeof a.config.chart.events.markerClick&&a.config.chart.events.markerClick(t,this.ctx,{seriesIndex:e,dataPointIndex:i,w:a}),this.ctx.events.fireEvent("markerClick",[t,this.ctx,{seriesIndex:e,dataPointIndex:i,w:a}])}},{key:"create",value:function(t,e,i,a,s){var r=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,n=this.w,o=e;"mouseup"===t.type&&this.markerClick(t,i,a),null===r&&(r=this.tConfig.shared);var l=this.tooltipUtil.hasMarkers(),h=this.tooltipUtil.getElBars();if(n.config.legend.tooltipHoverFormatter){var c=n.config.legend.tooltipHoverFormatter,d=Array.from(this.legendLabels);d.forEach((function(t){var e=t.getAttribute("data:default-text");t.innerHTML=decodeURIComponent(e)}));for(var g=0;g<d.length;g++){var u=d[g],f=parseInt(u.getAttribute("i"),10),p=decodeURIComponent(u.getAttribute("data:default-text")),x=c(p,{seriesIndex:r?f:i,dataPointIndex:a,w:n});if(r)u.innerHTML=n.globals.collapsedSeriesIndices.indexOf(f)<0?x:p;else if(u.innerHTML=f===i?x:p,i===f)break}}if(r){if(o.tooltipLabels.drawSeriesTexts({ttItems:s,i:i,j:a,shared:!this.showOnIntersect&&this.tConfig.shared}),l&&(n.globals.markers.largestSize>0?o.marker.enlargePoints(a):o.tooltipPosition.moveDynamicPointsOnHover(a)),this.tooltipUtil.hasBars()&&(this.barSeriesHeight=this.tooltipUtil.getBarsHeight(h),this.barSeriesHeight>0)){var m=new b(this.ctx),v=n.globals.dom.Paper.select(".apexcharts-bar-area[j='".concat(a,"']"));this.deactivateHoverFilter(),this.tooltipPosition.moveStickyTooltipOverBars(a);for(var y=0;y<v.length;y++)m.pathMouseEnter(v[y])}}else o.tooltipLabels.drawSeriesTexts({shared:!1,ttItems:s,i:i,j:a}),this.tooltipUtil.hasBars()&&o.tooltipPosition.moveStickyTooltipOverBars(a),l&&o.tooltipPosition.moveMarkers(i,a)}}]),t}(),mt=function(t){o(s,t);var i=d(s);function s(){return e(this,s),i.apply(this,arguments)}return a(s,[{key:"draw",value:function(t,e){var i=this,a=this.w;this.graphics=new b(this.ctx),this.bar=new X(this.ctx,this.xyRatios);var s=new y(this.ctx,a);t=s.getLogSeries(t),this.yRatio=s.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t),"100%"===a.config.chart.stackType&&(t=a.globals.seriesPercent.slice()),this.series=t,this.totalItems=0,this.prevY=[],this.prevX=[],this.prevYF=[],this.prevXF=[],this.prevYVal=[],this.prevXVal=[],this.xArrj=[],this.xArrjF=[],this.xArrjVal=[],this.yArrj=[],this.yArrjF=[],this.yArrjVal=[];for(var r=0;r<t.length;r++)t[r].length>0&&(this.totalItems+=t[r].length);for(var o=this.graphics.group({class:"apexcharts-bar-series apexcharts-plot-series"}),l=0,h=0,c=function(s,r){var c=void 0,d=void 0,g=void 0,u=void 0,p=[],x=[],b=a.globals.comboCharts?e[s]:s;i.yRatio.length>1&&(i.yaxisIndex=b),i.isReversed=a.config.yaxis[i.yaxisIndex]&&a.config.yaxis[i.yaxisIndex].reversed;var m=i.graphics.group({class:"apexcharts-series",seriesName:f.escapeString(a.globals.seriesNames[b]),rel:s+1,"data:realIndex":b});i.ctx.series.addCollapsedClassToSeries(m,b);var v=i.graphics.group({class:"apexcharts-datalabels","data:realIndex":b}),y=0,w=0,k=i.initialPositions(l,h,c,d,g,u);h=k.y,y=k.barHeight,d=k.yDivision,u=k.zeroW,l=k.x,w=k.barWidth,c=k.xDivision,g=k.zeroH,i.yArrj=[],i.yArrjF=[],i.yArrjVal=[],i.xArrj=[],i.xArrjF=[],i.xArrjVal=[],1===i.prevY.length&&i.prevY[0].every((function(t){return isNaN(t)}))&&(i.prevY[0]=i.prevY[0].map((function(t){return g})),i.prevYF[0]=i.prevYF[0].map((function(t){return 0})));for(var A=0;A<a.globals.dataPoints;A++){var S=i.barHelpers.getStrokeWidth(s,A,b),C={indexes:{i:s,j:A,realIndex:b,bc:r},strokeWidth:S,x:l,y:h,elSeries:m},L=null;i.isHorizontal?(L=i.drawStackedBarPaths(n(n({},C),{},{zeroW:u,barHeight:y,yDivision:d})),w=i.series[s][A]/i.invertedYRatio):(L=i.drawStackedColumnPaths(n(n({},C),{},{xDivision:c,barWidth:w,zeroH:g})),y=i.series[s][A]/i.yRatio[i.yaxisIndex]),h=L.y,l=L.x,p.push(l),x.push(h);var P=i.barHelpers.getPathFillColor(t,s,A,b);m=i.renderSeries({realIndex:b,pathFill:P,j:A,i:s,pathFrom:L.pathFrom,pathTo:L.pathTo,strokeWidth:S,elSeries:m,x:l,y:h,series:t,barHeight:y,barWidth:w,elDataLabelsWrap:v,type:"bar",visibleSeries:0})}a.globals.seriesXvalues[b]=p,a.globals.seriesYvalues[b]=x,i.prevY.push(i.yArrj),i.prevYF.push(i.yArrjF),i.prevYVal.push(i.yArrjVal),i.prevX.push(i.xArrj),i.prevXF.push(i.xArrjF),i.prevXVal.push(i.xArrjVal),o.add(m)},d=0,g=0;d<t.length;d++,g++)c(d,g);return o}},{key:"initialPositions",value:function(t,e,i,a,s,r){var n,o,l=this.w;return this.isHorizontal?(n=(n=a=l.globals.gridHeight/l.globals.dataPoints)*parseInt(l.config.plotOptions.bar.barHeight,10)/100,r=this.baseLineInvertedY+l.globals.padHorizontal+(this.isReversed?l.globals.gridWidth:0)-(this.isReversed?2*this.baseLineInvertedY:0),e=(a-n)/2):(o=i=l.globals.gridWidth/l.globals.dataPoints,o=l.globals.isXNumeric&&l.globals.dataPoints>1?(i=l.globals.minXDiff/this.xRatio)*parseInt(this.barOptions.columnWidth,10)/100:o*parseInt(l.config.plotOptions.bar.columnWidth,10)/100,s=this.baseLineY[this.yaxisIndex]+(this.isReversed?l.globals.gridHeight:0)-(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),t=l.globals.padHorizontal+(i-o)/2),{x:t,y:e,yDivision:a,xDivision:i,barHeight:n,barWidth:o,zeroH:s,zeroW:r}}},{key:"drawStackedBarPaths",value:function(t){for(var e,i=t.indexes,a=t.barHeight,s=t.strokeWidth,r=t.zeroW,n=t.x,o=t.y,l=t.yDivision,h=t.elSeries,c=this.w,d=o,g=i.i,u=i.j,f=0,p=0;p<this.prevXF.length;p++)f+=this.prevXF[p][u];if(g>0){var x=r;this.prevXVal[g-1][u]<0?x=this.series[g][u]>=0?this.prevX[g-1][u]+f-2*(this.isReversed?f:0):this.prevX[g-1][u]:this.prevXVal[g-1][u]>=0&&(x=this.series[g][u]>=0?this.prevX[g-1][u]:this.prevX[g-1][u]-f+2*(this.isReversed?f:0)),e=x}else e=r;n=null===this.series[g][u]?e:e+this.series[g][u]/this.invertedYRatio-2*(this.isReversed?this.series[g][u]/this.invertedYRatio:0);var b=this.barHelpers.getBarpaths({barYPosition:d,barHeight:a,x1:e,x2:n,strokeWidth:s,series:this.series,realIndex:i.realIndex,i:g,j:u,w:c});return this.barHelpers.barBackground({j:u,i:g,y1:d,y2:a,elSeries:h}),o+=l,{pathTo:b.pathTo,pathFrom:b.pathFrom,x:n,y:o}}},{key:"drawStackedColumnPaths",value:function(t){var e=t.indexes,i=t.x,a=t.y,s=t.xDivision,r=t.barWidth,n=t.zeroH,o=(t.strokeWidth,t.elSeries),l=this.w,h=e.i,c=e.j,d=e.bc;if(l.globals.isXNumeric){var g=l.globals.seriesX[h][c];g||(g=0),i=(g-l.globals.minX)/this.xRatio-r/2}for(var u,f=i,p=0,x=0;x<this.prevYF.length;x++)p+=isNaN(this.prevYF[x][c])?0:this.prevYF[x][c];if(h>0&&!l.globals.isXNumeric||h>0&&l.globals.isXNumeric&&l.globals.seriesX[h-1][c]===l.globals.seriesX[h][c]){var b,m,v=Math.min(this.yRatio.length+1,h+1);if(void 0!==this.prevY[h-1])for(var y=1;y<v;y++)if(!isNaN(this.prevY[h-y][c])){m=this.prevY[h-y][c];break}for(var w=1;w<v;w++){if(this.prevYVal[h-w][c]<0){b=this.series[h][c]>=0?m-p+2*(this.isReversed?p:0):m;break}if(this.prevYVal[h-w][c]>=0){b=this.series[h][c]>=0?m:m+p-2*(this.isReversed?p:0);break}}void 0===b&&(b=l.globals.gridHeight),u=this.prevYF[0].every((function(t){return 0===t}))&&this.prevYF.slice(1,h).every((function(t){return t.every((function(t){return isNaN(t)}))}))?l.globals.gridHeight-n:b}else u=l.globals.gridHeight-n;a=u-this.series[h][c]/this.yRatio[this.yaxisIndex]+2*(this.isReversed?this.series[h][c]/this.yRatio[this.yaxisIndex]:0);var k=this.barHelpers.getColumnPaths({barXPosition:f,barWidth:r,y1:u,y2:a,yRatio:this.yRatio[this.yaxisIndex],strokeWidth:this.strokeWidth,series:this.series,realIndex:e.realIndex,i:h,j:c,w:l});return this.barHelpers.barBackground({bc:d,j:c,i:h,x1:f,x2:r,elSeries:o}),i+=s,{pathTo:k.pathTo,pathFrom:k.pathFrom,x:l.globals.isXNumeric?i-s:i,y:a}}}]),s}(X),vt=function(t){o(s,t);var i=d(s);function s(){return e(this,s),i.apply(this,arguments)}return a(s,[{key:"draw",value:function(t,e){var i=this,a=this.w,s=new b(this.ctx),r=new L(this.ctx);this.candlestickOptions=this.w.config.plotOptions.candlestick,this.boxOptions=this.w.config.plotOptions.boxPlot;var n=new y(this.ctx,a);t=n.getLogSeries(t),this.series=t,this.yRatio=n.getLogYRatios(this.yRatio),this.barHelpers.initVariables(t);for(var o=s.group({class:"apexcharts-".concat(a.config.chart.type,"-series apexcharts-plot-series")}),l=function(n){i.isBoxPlot="boxPlot"===a.config.chart.type||"boxPlot"===a.config.series[n].type;var l,h,c=void 0,d=void 0,g=[],u=[],p=a.globals.comboCharts?e[n]:n,x=s.group({class:"apexcharts-series",seriesName:f.escapeString(a.globals.seriesNames[p]),rel:n+1,"data:realIndex":p});t[n].length>0&&(i.visibleI=i.visibleI+1);var b,m;i.yRatio.length>1&&(i.yaxisIndex=p);var v=i.barHelpers.initialPositions();d=v.y,b=v.barHeight,c=v.x,m=v.barWidth,l=v.xDivision,h=v.zeroH,u.push(c+m/2);for(var y=s.group({class:"apexcharts-datalabels","data:realIndex":p}),w=function(e){var s=i.barHelpers.getStrokeWidth(n,e,p),o=i.drawBoxPaths({indexes:{i:n,j:e,realIndex:p},x:c,y:d,xDivision:l,barWidth:m,zeroH:h,strokeWidth:s,elSeries:x});d=o.y,c=o.x,e>0&&u.push(c+m/2),g.push(d),o.pathTo.forEach((function(l,h){var g=!i.isBoxPlot&&i.candlestickOptions.wick.useFillColor?o.color[h]:a.globals.stroke.colors[n],u=r.fillPath({seriesNumber:p,dataPointIndex:e,color:o.color[h],value:t[n][e]});i.renderSeries({realIndex:p,pathFill:u,lineFill:g,j:e,i:n,pathFrom:o.pathFrom,pathTo:l,strokeWidth:s,elSeries:x,x:c,y:d,series:t,barHeight:b,barWidth:m,elDataLabelsWrap:y,visibleSeries:i.visibleI,type:a.config.chart.type})}))},k=0;k<a.globals.dataPoints;k++)w(k);a.globals.seriesXvalues[p]=u,a.globals.seriesYvalues[p]=g,o.add(x)},h=0;h<t.length;h++)l(h);return o}},{key:"drawBoxPaths",value:function(t){var e=t.indexes,i=t.x,a=(t.y,t.xDivision),s=t.barWidth,r=t.zeroH,n=t.strokeWidth,o=this.w,l=new b(this.ctx),h=e.i,c=e.j,d=!0,g=o.config.plotOptions.candlestick.colors.upward,u=o.config.plotOptions.candlestick.colors.downward,f="";this.isBoxPlot&&(f=[this.boxOptions.colors.lower,this.boxOptions.colors.upper]);var p=this.yRatio[this.yaxisIndex],x=e.realIndex,m=this.getOHLCValue(x,c),v=r,y=r;m.o>m.c&&(d=!1);var w=Math.min(m.o,m.c),k=Math.max(m.o,m.c),A=m.m;o.globals.isXNumeric&&(i=(o.globals.seriesX[x][c]-o.globals.minX)/this.xRatio-s/2);var S=i+s*this.visibleI;void 0===this.series[h][c]||null===this.series[h][c]?(w=r,k=r):(w=r-w/p,k=r-k/p,v=r-m.h/p,y=r-m.l/p,A=r-m.m/p);var C=l.move(S,r),L=l.move(S+s/2,w);return o.globals.previousPaths.length>0&&(L=this.getPreviousPath(x,c,!0)),C=this.isBoxPlot?[l.move(S,w)+l.line(S+s/2,w)+l.line(S+s/2,v)+l.line(S+s/4,v)+l.line(S+s-s/4,v)+l.line(S+s/2,v)+l.line(S+s/2,w)+l.line(S+s,w)+l.line(S+s,A)+l.line(S,A)+l.line(S,w+n/2),l.move(S,A)+l.line(S+s,A)+l.line(S+s,k)+l.line(S+s/2,k)+l.line(S+s/2,y)+l.line(S+s-s/4,y)+l.line(S+s/4,y)+l.line(S+s/2,y)+l.line(S+s/2,k)+l.line(S,k)+l.line(S,A)+"z"]:[l.move(S,k)+l.line(S+s/2,k)+l.line(S+s/2,v)+l.line(S+s/2,k)+l.line(S+s,k)+l.line(S+s,w)+l.line(S+s/2,w)+l.line(S+s/2,y)+l.line(S+s/2,w)+l.line(S,w)+l.line(S,k-n/2)],L+=l.move(S,w),o.globals.isXNumeric||(i+=a),{pathTo:C,pathFrom:L,x:i,y:k,barXPosition:S,color:this.isBoxPlot?f:d?[g]:[u]}}},{key:"getOHLCValue",value:function(t,e){var i=this.w;return{o:this.isBoxPlot?i.globals.seriesCandleH[t][e]:i.globals.seriesCandleO[t][e],h:this.isBoxPlot?i.globals.seriesCandleO[t][e]:i.globals.seriesCandleH[t][e],m:i.globals.seriesCandleM[t][e],l:this.isBoxPlot?i.globals.seriesCandleC[t][e]:i.globals.seriesCandleL[t][e],c:this.isBoxPlot?i.globals.seriesCandleL[t][e]:i.globals.seriesCandleC[t][e]}}}]),s}(X),yt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"checkColorRange",value:function(){var t=this.w,e=!1,i=t.config.plotOptions[t.config.chart.type];return i.colorScale.ranges.length>0&&i.colorScale.ranges.map((function(t,i){t.from<=0&&(e=!0)})),e}},{key:"getShadeColor",value:function(t,e,i,a){var s=this.w,r=1,n=s.config.plotOptions[t].shadeIntensity,o=this.determineColor(t,e,i);s.globals.hasNegs||a?r=s.config.plotOptions[t].reverseNegativeShade?o.percent<0?o.percent/100*(1.25*n):(1-o.percent/100)*(1.25*n):o.percent<=0?1-(1+o.percent/100)*n:(1-o.percent/100)*n:(r=1-o.percent/100,"treemap"===t&&(r=(1-o.percent/100)*(1.25*n)));var l=o.color,h=new f;return s.config.plotOptions[t].enableShades&&(l="dark"===this.w.config.theme.mode?f.hexToRgba(h.shadeColor(-1*r,o.color),s.config.fill.opacity):f.hexToRgba(h.shadeColor(r,o.color),s.config.fill.opacity)),{color:l,colorProps:o}}},{key:"determineColor",value:function(t,e,i){var a=this.w,s=a.globals.series[e][i],r=a.config.plotOptions[t],n=r.colorScale.inverse?i:e;a.config.plotOptions[t].distributed&&(n=i);var o=a.globals.colors[n],l=null,h=Math.min.apply(Math,g(a.globals.series[e])),c=Math.max.apply(Math,g(a.globals.series[e]));r.distributed||"heatmap"!==t||(h=a.globals.minY,c=a.globals.maxY),void 0!==r.colorScale.min&&(h=r.colorScale.min<a.globals.minY?r.colorScale.min:a.globals.minY,c=r.colorScale.max>a.globals.maxY?r.colorScale.max:a.globals.maxY);var d=Math.abs(c)+Math.abs(h),u=100*s/(0===d?d-1e-6:d);r.colorScale.ranges.length>0&&r.colorScale.ranges.map((function(t,e){if(s>=t.from&&s<=t.to){o=t.color,l=t.foreColor?t.foreColor:null,h=t.from,c=t.to;var i=Math.abs(c)+Math.abs(h);u=100*s/(0===i?i-1e-6:i)}}));return{color:o,foreColor:l,percent:u}}},{key:"calculateDataLabels",value:function(t){var e=t.text,i=t.x,a=t.y,s=t.i,r=t.j,n=t.colorProps,o=t.fontSize,l=this.w.config.dataLabels,h=new b(this.ctx),c=new z(this.ctx),d=null;if(l.enabled){d=h.group({class:"apexcharts-data-labels"});var g=l.offsetX,u=l.offsetY,f=i+g,p=a+parseFloat(l.style.fontSize)/3+u;c.plotDataLabelsText({x:f,y:p,text:e,i:s,j:r,color:n.foreColor,parent:d,fontSize:o,dataLabelsConfig:l})}return d}},{key:"addListeners",value:function(t){var e=new b(this.ctx);t.node.addEventListener("mouseenter",e.pathMouseEnter.bind(this,t)),t.node.addEventListener("mouseleave",e.pathMouseLeave.bind(this,t)),t.node.addEventListener("mousedown",e.pathMouseDown.bind(this,t))}}]),t}(),wt=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w,this.xRatio=a.xRatio,this.yRatio=a.yRatio,this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.helpers=new yt(i),this.rectRadius=this.w.config.plotOptions.heatmap.radius,this.strokeWidth=this.w.config.stroke.show?this.w.config.stroke.width:0}return a(t,[{key:"draw",value:function(t){var e=this.w,i=new b(this.ctx),a=i.group({class:"apexcharts-heatmap"});a.attr("clip-path","url(#gridRectMask".concat(e.globals.cuid,")"));var s=e.globals.gridWidth/e.globals.dataPoints,r=e.globals.gridHeight/e.globals.series.length,n=0,o=!1;this.negRange=this.helpers.checkColorRange();var l=t.slice();e.config.yaxis[0].reversed&&(o=!0,l.reverse());for(var h=o?0:l.length-1;o?h<l.length:h>=0;o?h++:h--){var c=i.group({class:"apexcharts-series apexcharts-heatmap-series",seriesName:f.escapeString(e.globals.seriesNames[h]),rel:h+1,"data:realIndex":h});if(this.ctx.series.addCollapsedClassToSeries(c,h),e.config.chart.dropShadow.enabled){var d=e.config.chart.dropShadow;new x(this.ctx).dropShadow(c,d,h)}for(var g=0,u=e.config.plotOptions.heatmap.shadeIntensity,p=0;p<l[h].length;p++){var m=this.helpers.getShadeColor(e.config.chart.type,h,p,this.negRange),v=m.color,y=m.colorProps;if("image"===e.config.fill.type)v=new L(this.ctx).fillPath({seriesNumber:h,dataPointIndex:p,opacity:e.globals.hasNegs?y.percent<0?1-(1+y.percent/100):u+y.percent/100:y.percent/100,patternID:f.randomId(),width:e.config.fill.image.width?e.config.fill.image.width:s,height:e.config.fill.image.height?e.config.fill.image.height:r});var w=this.rectRadius,k=i.drawRect(g,n,s,r,w);if(k.attr({cx:g,cy:n}),k.node.classList.add("apexcharts-heatmap-rect"),c.add(k),k.attr({fill:v,i:h,index:h,j:p,val:l[h][p],"stroke-width":this.strokeWidth,stroke:e.config.plotOptions.heatmap.useFillColorAsStroke?v:e.globals.stroke.colors[0],color:v}),this.helpers.addListeners(k),e.config.chart.animations.enabled&&!e.globals.dataChanged){var A=1;e.globals.resized||(A=e.config.chart.animations.speed),this.animateHeatMap(k,g,n,s,r,A)}if(e.globals.dataChanged){var S=1;if(this.dynamicAnim.enabled&&e.globals.shouldAnimate){S=this.dynamicAnim.speed;var C=e.globals.previousPaths[h]&&e.globals.previousPaths[h][p]&&e.globals.previousPaths[h][p].color;C||(C="rgba(255, 255, 255, 0)"),this.animateHeatColor(k,f.isColorHex(C)?C:f.rgb2hex(C),f.isColorHex(v)?v:f.rgb2hex(v),S)}}var P=(0,e.config.dataLabels.formatter)(e.globals.series[h][p],{value:e.globals.series[h][p],seriesIndex:h,dataPointIndex:p,w:e}),T=this.helpers.calculateDataLabels({text:P,x:g+s/2,y:n+r/2,i:h,j:p,colorProps:y,series:l});null!==T&&c.add(T),g+=s}n+=r,a.add(c)}var z=e.globals.yAxisScale[0].result.slice();e.config.yaxis[0].reversed?z.unshift(""):z.push(""),e.globals.yAxisScale[0].result=z;var I=e.globals.gridHeight/e.globals.series.length;return e.config.yaxis[0].labels.offsetY=-I/2,a}},{key:"animateHeatMap",value:function(t,e,i,a,s,r){var n=new p(this.ctx);n.animateRect(t,{x:e+a/2,y:i+s/2,width:0,height:0},{x:e,y:i,width:a,height:s},r,(function(){n.animationCompleted(t)}))}},{key:"animateHeatColor",value:function(t,e,i,a){t.attr({fill:e}).animate(a).attr({fill:i})}}]),t}(),kt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"drawYAxisTexts",value:function(t,e,i,a){var s=this.w,r=s.config.yaxis[0],n=s.globals.yLabelFormatters[0];return new b(this.ctx).drawText({x:t+r.labels.offsetX,y:e+r.labels.offsetY,text:n(a,i),textAnchor:"middle",fontSize:r.labels.style.fontSize,fontFamily:r.labels.style.fontFamily,foreColor:Array.isArray(r.labels.style.colors)?r.labels.style.colors[i]:r.labels.style.colors})}}]),t}(),At=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w;var a=this.w;this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animBeginArr=[0],this.animDur=0,this.donutDataLabels=this.w.config.plotOptions.pie.donut.labels,this.lineColorArr=void 0!==a.globals.stroke.colors?a.globals.stroke.colors:a.globals.colors,this.defaultSize=Math.min(a.globals.gridWidth,a.globals.gridHeight),this.centerY=this.defaultSize/2,this.centerX=a.globals.gridWidth/2,"radialBar"===a.config.chart.type?this.fullAngle=360:this.fullAngle=Math.abs(a.config.plotOptions.pie.endAngle-a.config.plotOptions.pie.startAngle),this.initialAngle=a.config.plotOptions.pie.startAngle%this.fullAngle,a.globals.radialSize=this.defaultSize/2.05-a.config.stroke.width-(a.config.chart.sparkline.enabled?0:a.config.chart.dropShadow.blur),this.donutSize=a.globals.radialSize*parseInt(a.config.plotOptions.pie.donut.size,10)/100,this.maxY=0,this.sliceLabels=[],this.sliceSizes=[],this.prevSectorAngleArr=[]}return a(t,[{key:"draw",value:function(t){var e=this,i=this.w,a=new b(this.ctx);if(this.ret=a.group({class:"apexcharts-pie"}),i.globals.noData)return this.ret;for(var s=0,r=0;r<t.length;r++)s+=f.negToZero(t[r]);var n=[],o=a.group();0===s&&(s=1e-5),t.forEach((function(t){e.maxY=Math.max(e.maxY,t)})),i.config.yaxis[0].max&&(this.maxY=i.config.yaxis[0].max),"back"===i.config.grid.position&&"polarArea"===this.chartType&&this.drawPolarElements(this.ret);for(var l=0;l<t.length;l++){var h=this.fullAngle*f.negToZero(t[l])/s;n.push(h),"polarArea"===this.chartType?(n[l]=this.fullAngle/t.length,this.sliceSizes.push(i.globals.radialSize*t[l]/this.maxY)):this.sliceSizes.push(i.globals.radialSize)}if(i.globals.dataChanged){for(var c,d=0,g=0;g<i.globals.previousPaths.length;g++)d+=f.negToZero(i.globals.previousPaths[g]);for(var u=0;u<i.globals.previousPaths.length;u++)c=this.fullAngle*f.negToZero(i.globals.previousPaths[u])/d,this.prevSectorAngleArr.push(c)}this.donutSize<0&&(this.donutSize=0);var p=i.config.plotOptions.pie.customScale,x=i.globals.gridWidth/2,m=i.globals.gridHeight/2,v=x-i.globals.gridWidth/2*p,y=m-i.globals.gridHeight/2*p;if("donut"===this.chartType){var w=a.drawCircle(this.donutSize);w.attr({cx:this.centerX,cy:this.centerY,fill:i.config.plotOptions.pie.donut.background?i.config.plotOptions.pie.donut.background:"transparent"}),o.add(w)}var k=this.drawArcs(n,t);if(this.sliceLabels.forEach((function(t){k.add(t)})),o.attr({transform:"translate(".concat(v,", ").concat(y,") scale(").concat(p,")")}),o.add(k),this.ret.add(o),this.donutDataLabels.show){var A=this.renderInnerDataLabels(this.donutDataLabels,{hollowSize:this.donutSize,centerX:this.centerX,centerY:this.centerY,opacity:this.donutDataLabels.show,translateX:v,translateY:y});this.ret.add(A)}return"front"===i.config.grid.position&&"polarArea"===this.chartType&&this.drawPolarElements(this.ret),this.ret}},{key:"drawArcs",value:function(t,e){var i=this.w,a=new x(this.ctx),s=new b(this.ctx),r=new L(this.ctx),n=s.group({class:"apexcharts-slices"}),o=this.initialAngle,l=this.initialAngle,h=this.initialAngle,c=this.initialAngle;this.strokeWidth=i.config.stroke.show?i.config.stroke.width:0;for(var d=0;d<t.length;d++){var g=s.group({class:"apexcharts-series apexcharts-pie-series",seriesName:f.escapeString(i.globals.seriesNames[d]),rel:d+1,"data:realIndex":d});n.add(g),l=c,h=(o=h)+t[d],c=l+this.prevSectorAngleArr[d];var u=h<o?this.fullAngle+h-o:h-o,p=r.fillPath({seriesNumber:d,size:this.sliceSizes[d],value:e[d]}),m=this.getChangedPath(l,c),v=s.drawPath({d:m,stroke:Array.isArray(this.lineColorArr)?this.lineColorArr[d]:this.lineColorArr,strokeWidth:0,fill:p,fillOpacity:i.config.fill.opacity,classes:"apexcharts-pie-area apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(d)});if(v.attr({index:0,j:d}),a.setSelectionFilter(v,0,d),i.config.chart.dropShadow.enabled){var y=i.config.chart.dropShadow;a.dropShadow(v,y,d)}this.addListeners(v,this.donutDataLabels),b.setAttrs(v.node,{"data:angle":u,"data:startAngle":o,"data:strokeWidth":this.strokeWidth,"data:value":e[d]});var w={x:0,y:0};"pie"===this.chartType||"polarArea"===this.chartType?w=f.polarToCartesian(this.centerX,this.centerY,i.globals.radialSize/1.25+i.config.plotOptions.pie.dataLabels.offset,(o+u/2)%this.fullAngle):"donut"===this.chartType&&(w=f.polarToCartesian(this.centerX,this.centerY,(i.globals.radialSize+this.donutSize)/2+i.config.plotOptions.pie.dataLabels.offset,(o+u/2)%this.fullAngle)),g.add(v);var k=0;if(!this.initialAnim||i.globals.resized||i.globals.dataChanged?this.animBeginArr.push(0):(0===(k=u/this.fullAngle*i.config.chart.animations.speed)&&(k=1),this.animDur=k+this.animDur,this.animBeginArr.push(this.animDur)),this.dynamicAnim&&i.globals.dataChanged?this.animatePaths(v,{size:this.sliceSizes[d],endAngle:h,startAngle:o,prevStartAngle:l,prevEndAngle:c,animateStartingPos:!0,i:d,animBeginArr:this.animBeginArr,shouldSetPrevPaths:!0,dur:i.config.chart.animations.dynamicAnimation.speed}):this.animatePaths(v,{size:this.sliceSizes[d],endAngle:h,startAngle:o,i:d,totalItems:t.length-1,animBeginArr:this.animBeginArr,dur:k}),i.config.plotOptions.pie.expandOnClick&&"polarArea"!==this.chartType&&v.click(this.pieClicked.bind(this,d)),void 0!==i.globals.selectedDataPoints[0]&&i.globals.selectedDataPoints[0].indexOf(d)>-1&&this.pieClicked(d),i.config.dataLabels.enabled){var A=w.x,S=w.y,C=100*u/this.fullAngle+"%";if(0!==u&&i.config.plotOptions.pie.dataLabels.minAngleToShowLabel<t[d]){var P=i.config.dataLabels.formatter;void 0!==P&&(C=P(i.globals.seriesPercent[d][0],{seriesIndex:d,w:i}));var T=i.globals.dataLabels.style.colors[d],z=s.group({class:"apexcharts-datalabels"}),I=s.drawText({x:A,y:S,text:C,textAnchor:"middle",fontSize:i.config.dataLabels.style.fontSize,fontFamily:i.config.dataLabels.style.fontFamily,fontWeight:i.config.dataLabels.style.fontWeight,foreColor:T});if(z.add(I),i.config.dataLabels.dropShadow.enabled){var M=i.config.dataLabels.dropShadow;a.dropShadow(I,M)}I.node.classList.add("apexcharts-pie-label"),i.config.chart.animations.animate&&!1===i.globals.resized&&(I.node.classList.add("apexcharts-pie-label-delay"),I.node.style.animationDelay=i.config.chart.animations.speed/940+"s"),this.sliceLabels.push(z)}}}return n}},{key:"addListeners",value:function(t,e){var i=new b(this.ctx);t.node.addEventListener("mouseenter",i.pathMouseEnter.bind(this,t)),t.node.addEventListener("mouseleave",i.pathMouseLeave.bind(this,t)),t.node.addEventListener("mouseleave",this.revertDataLabelsInner.bind(this,t.node,e)),t.node.addEventListener("mousedown",i.pathMouseDown.bind(this,t)),this.donutDataLabels.total.showAlways||(t.node.addEventListener("mouseenter",this.printDataLabelsInner.bind(this,t.node,e)),t.node.addEventListener("mousedown",this.printDataLabelsInner.bind(this,t.node,e)))}},{key:"animatePaths",value:function(t,e){var i=this.w,a=e.endAngle<e.startAngle?this.fullAngle+e.endAngle-e.startAngle:e.endAngle-e.startAngle,s=a,r=e.startAngle,n=e.startAngle;void 0!==e.prevStartAngle&&void 0!==e.prevEndAngle&&(r=e.prevEndAngle,s=e.prevEndAngle<e.prevStartAngle?this.fullAngle+e.prevEndAngle-e.prevStartAngle:e.prevEndAngle-e.prevStartAngle),e.i===i.config.series.length-1&&(a+n>this.fullAngle?e.endAngle=e.endAngle-(a+n):a+n<this.fullAngle&&(e.endAngle=e.endAngle+(this.fullAngle-(a+n)))),a===this.fullAngle&&(a=this.fullAngle-.01),this.animateArc(t,r,n,a,s,e)}},{key:"animateArc",value:function(t,e,i,a,s,r){var n,o=this,l=this.w,h=new p(this.ctx),c=r.size;(isNaN(e)||isNaN(s))&&(e=i,s=a,r.dur=0);var d=a,g=i,u=e<i?this.fullAngle+e-i:e-i;l.globals.dataChanged&&r.shouldSetPrevPaths&&r.prevEndAngle&&(n=o.getPiePath({me:o,startAngle:r.prevStartAngle,angle:r.prevEndAngle<r.prevStartAngle?this.fullAngle+r.prevEndAngle-r.prevStartAngle:r.prevEndAngle-r.prevStartAngle,size:c}),t.attr({d:n})),0!==r.dur?t.animate(r.dur,l.globals.easing,r.animBeginArr[r.i]).afterAll((function(){"pie"!==o.chartType&&"donut"!==o.chartType&&"polarArea"!==o.chartType||this.animate(l.config.chart.animations.dynamicAnimation.speed).attr({"stroke-width":o.strokeWidth}),r.i===l.config.series.length-1&&h.animationCompleted(t)})).during((function(l){d=u+(a-u)*l,r.animateStartingPos&&(d=s+(a-s)*l,g=e-s+(i-(e-s))*l),n=o.getPiePath({me:o,startAngle:g,angle:d,size:c}),t.node.setAttribute("data:pathOrig",n),t.attr({d:n})})):(n=o.getPiePath({me:o,startAngle:g,angle:a,size:c}),r.isTrack||(l.globals.animationEnded=!0),t.node.setAttribute("data:pathOrig",n),t.attr({d:n,"stroke-width":o.strokeWidth}))}},{key:"pieClicked",value:function(t){var e,i=this.w,a=this,s=a.sliceSizes[t]+(i.config.plotOptions.pie.expandOnClick?4:0),r=i.globals.dom.Paper.select(".apexcharts-".concat(a.chartType.toLowerCase(),"-slice-").concat(t)).members[0];if("true"!==r.attr("data:pieClicked")){var n=i.globals.dom.baseEl.getElementsByClassName("apexcharts-pie-area");Array.prototype.forEach.call(n,(function(t){t.setAttribute("data:pieClicked","false");var e=t.getAttribute("data:pathOrig");t.setAttribute("d",e)})),r.attr("data:pieClicked","true");var o=parseInt(r.attr("data:startAngle"),10),l=parseInt(r.attr("data:angle"),10);e=a.getPiePath({me:a,startAngle:o,angle:l,size:s}),360!==l&&r.plot(e)}else{r.attr({"data:pieClicked":"false"}),this.revertDataLabelsInner(r.node,this.donutDataLabels);var h=r.attr("data:pathOrig");r.attr({d:h})}}},{key:"getChangedPath",value:function(t,e){var i="";return this.dynamicAnim&&this.w.globals.dataChanged&&(i=this.getPiePath({me:this,startAngle:t,angle:e-t,size:this.size})),i}},{key:"getPiePath",value:function(t){var e=t.me,i=t.startAngle,a=t.angle,s=t.size,r=i,n=Math.PI*(r-90)/180,o=a+i;Math.ceil(o)>=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle&&(o=this.fullAngle+this.w.config.plotOptions.pie.startAngle%this.fullAngle-.01),Math.ceil(o)>this.fullAngle&&(o-=this.fullAngle);var l=Math.PI*(o-90)/180,h=e.centerX+s*Math.cos(n),c=e.centerY+s*Math.sin(n),d=e.centerX+s*Math.cos(l),g=e.centerY+s*Math.sin(l),u=f.polarToCartesian(e.centerX,e.centerY,e.donutSize,o),p=f.polarToCartesian(e.centerX,e.centerY,e.donutSize,r),x=a>180?1:0,b=["M",h,c,"A",s,s,0,x,1,d,g];return"donut"===e.chartType?[].concat(b,["L",u.x,u.y,"A",e.donutSize,e.donutSize,0,x,0,p.x,p.y,"L",h,c,"z"]).join(" "):"pie"===e.chartType||"polarArea"===e.chartType?[].concat(b,["L",e.centerX,e.centerY,"L",h,c]).join(" "):[].concat(b).join(" ")}},{key:"drawPolarElements",value:function(t){var e=this.w,i=new j(this.ctx),a=new b(this.ctx),s=new kt(this.ctx),r=a.group(),n=a.group(),o=i.niceScale(0,Math.ceil(this.maxY),e.config.yaxis[0].tickAmount,0,!0),l=o.result.reverse(),h=o.result.length;this.maxY=o.niceMax;for(var c=e.globals.radialSize,d=c/(h-1),g=0;g<h-1;g++){var u=a.drawCircle(c);if(u.attr({cx:this.centerX,cy:this.centerY,fill:"none","stroke-width":e.config.plotOptions.polarArea.rings.strokeWidth,stroke:e.config.plotOptions.polarArea.rings.strokeColor}),e.config.yaxis[0].show){var f=s.drawYAxisTexts(this.centerX,this.centerY-c+parseInt(e.config.yaxis[0].labels.style.fontSize,10)/2,g,l[g]);n.add(f)}r.add(u),c-=d}this.drawSpokes(t),t.add(r),t.add(n)}},{key:"renderInnerDataLabels",value:function(t,e){var i=this.w,a=new b(this.ctx),s=a.group({class:"apexcharts-datalabels-group",transform:"translate(".concat(e.translateX?e.translateX:0,", ").concat(e.translateY?e.translateY:0,") scale(").concat(i.config.plotOptions.pie.customScale,")")}),r=t.total.show;s.node.style.opacity=e.opacity;var n,o,l=e.centerX,h=e.centerY;n=void 0===t.name.color?i.globals.colors[0]:t.name.color;var c=t.name.fontSize,d=t.name.fontFamily,g=t.value.fontWeight;o=void 0===t.value.color?i.config.chart.foreColor:t.value.color;var u=t.value.formatter,f="",p="";if(r?(n=t.total.color,c=t.total.fontSize,d=t.total.fontFamily,g=t.total.fontWeight,p=t.total.label,f=t.total.formatter(i)):1===i.globals.series.length&&(f=u(i.globals.series[0],i),p=i.globals.seriesNames[0]),p&&(p=t.name.formatter(p,t.total.show,i)),t.name.show){var x=a.drawText({x:l,y:h+parseFloat(t.name.offsetY),text:p,textAnchor:"middle",foreColor:n,fontSize:c,fontWeight:g,fontFamily:d});x.node.classList.add("apexcharts-datalabel-label"),s.add(x)}if(t.value.show){var m=t.name.show?parseFloat(t.value.offsetY)+16:t.value.offsetY,v=a.drawText({x:l,y:h+m,text:f,textAnchor:"middle",foreColor:o,fontWeight:t.value.fontWeight,fontSize:t.value.fontSize,fontFamily:t.value.fontFamily});v.node.classList.add("apexcharts-datalabel-value"),s.add(v)}return s}},{key:"printInnerLabels",value:function(t,e,i,a){var s,r=this.w;a?s=void 0===t.name.color?r.globals.colors[parseInt(a.parentNode.getAttribute("rel"),10)-1]:t.name.color:r.globals.series.length>1&&t.total.show&&(s=t.total.color);var n=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-label"),o=r.globals.dom.baseEl.querySelector(".apexcharts-datalabel-value");i=(0,t.value.formatter)(i,r),a||"function"!=typeof t.total.formatter||(i=t.total.formatter(r));var l=e===t.total.label;e=t.name.formatter(e,l,r),null!==n&&(n.textContent=e),null!==o&&(o.textContent=i),null!==n&&(n.style.fill=s)}},{key:"printDataLabelsInner",value:function(t,e){var i=this.w,a=t.getAttribute("data:value"),s=i.globals.seriesNames[parseInt(t.parentNode.getAttribute("rel"),10)-1];i.globals.series.length>1&&this.printInnerLabels(e,s,a,t);var r=i.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group");null!==r&&(r.style.opacity=1)}},{key:"drawSpokes",value:function(t){var e=this,i=this.w,a=new b(this.ctx),s=i.config.plotOptions.polarArea.spokes;if(0!==s.strokeWidth){for(var r=[],n=360/i.globals.series.length,o=0;o<i.globals.series.length;o++)r.push(f.polarToCartesian(this.centerX,this.centerY,i.globals.radialSize,i.config.plotOptions.pie.startAngle+n*o));r.forEach((function(i,r){var n=a.drawLine(i.x,i.y,e.centerX,e.centerY,Array.isArray(s.connectorColors)?s.connectorColors[r]:s.connectorColors);t.add(n)}))}}},{key:"revertDataLabelsInner",value:function(t,e,i){var a=this,s=this.w,r=s.globals.dom.baseEl.querySelector(".apexcharts-datalabels-group"),n=!1,o=s.globals.dom.baseEl.getElementsByClassName("apexcharts-pie-area"),l=function(t){var i=t.makeSliceOut,s=t.printLabel;Array.prototype.forEach.call(o,(function(t){"true"===t.getAttribute("data:pieClicked")&&(i&&(n=!0),s&&a.printDataLabelsInner(t,e))}))};if(l({makeSliceOut:!0,printLabel:!1}),e.total.show&&s.globals.series.length>1)n&&!e.total.showAlways?l({makeSliceOut:!1,printLabel:!0}):this.printInnerLabels(e,e.total.label,e.total.formatter(s));else if(l({makeSliceOut:!1,printLabel:!0}),!n)if(s.globals.selectedDataPoints.length&&s.globals.series.length>1)if(s.globals.selectedDataPoints[0].length>0){var h=s.globals.selectedDataPoints[0],c=s.globals.dom.baseEl.querySelector(".apexcharts-".concat(this.chartType.toLowerCase(),"-slice-").concat(h));this.printDataLabelsInner(c,e)}else r&&s.globals.selectedDataPoints.length&&0===s.globals.selectedDataPoints[0].length&&(r.style.opacity=0);else r&&s.globals.series.length>1&&(r.style.opacity=0)}}]),t}(),St=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.chartType=this.w.config.chart.type,this.initialAnim=this.w.config.chart.animations.enabled,this.dynamicAnim=this.initialAnim&&this.w.config.chart.animations.dynamicAnimation.enabled,this.animDur=0;var a=this.w;this.graphics=new b(this.ctx),this.lineColorArr=void 0!==a.globals.stroke.colors?a.globals.stroke.colors:a.globals.colors,this.defaultSize=a.globals.svgHeight<a.globals.svgWidth?a.globals.gridHeight+1.5*a.globals.goldenPadding:a.globals.gridWidth,this.isLog=a.config.yaxis[0].logarithmic,this.coreUtils=new y(this.ctx),this.maxValue=this.isLog?this.coreUtils.getLogVal(a.globals.maxY,0):a.globals.maxY,this.minValue=this.isLog?this.coreUtils.getLogVal(this.w.globals.minY,0):a.globals.minY,this.polygons=a.config.plotOptions.radar.polygons,this.strokeWidth=a.config.stroke.show?a.config.stroke.width:0,this.size=this.defaultSize/2.1-this.strokeWidth-a.config.chart.dropShadow.blur,a.config.xaxis.labels.show&&(this.size=this.size-a.globals.xAxisLabelsWidth/1.75),void 0!==a.config.plotOptions.radar.size&&(this.size=a.config.plotOptions.radar.size),this.dataRadiusOfPercent=[],this.dataRadius=[],this.angleArr=[],this.yaxisLabelsTextsPos=[]}return a(t,[{key:"draw",value:function(t){var e=this,i=this.w,a=new L(this.ctx),s=[],r=new z(this.ctx);t.length&&(this.dataPointsLen=t[i.globals.maxValsInArrayIndex].length),this.disAngle=2*Math.PI/this.dataPointsLen;var o=i.globals.gridWidth/2,l=i.globals.gridHeight/2,h=o+i.config.plotOptions.radar.offsetX,c=l+i.config.plotOptions.radar.offsetY,d=this.graphics.group({class:"apexcharts-radar-series apexcharts-plot-series",transform:"translate(".concat(h||0,", ").concat(c||0,")")}),g=[],u=null,p=null;if(this.yaxisLabels=this.graphics.group({class:"apexcharts-yaxis"}),t.forEach((function(t,o){var l=t.length===i.globals.dataPoints,h=e.graphics.group().attr({class:"apexcharts-series","data:longestSeries":l,seriesName:f.escapeString(i.globals.seriesNames[o]),rel:o+1,"data:realIndex":o});e.dataRadiusOfPercent[o]=[],e.dataRadius[o]=[],e.angleArr[o]=[],t.forEach((function(t,i){var a=Math.abs(e.maxValue-e.minValue);t+=Math.abs(e.minValue),e.isLog&&(t=e.coreUtils.getLogVal(t,0)),e.dataRadiusOfPercent[o][i]=t/a,e.dataRadius[o][i]=e.dataRadiusOfPercent[o][i]*e.size,e.angleArr[o][i]=i*e.disAngle})),g=e.getDataPointsPos(e.dataRadius[o],e.angleArr[o]);var c=e.createPaths(g,{x:0,y:0});u=e.graphics.group({class:"apexcharts-series-markers-wrap apexcharts-element-hidden"}),p=e.graphics.group({class:"apexcharts-datalabels","data:realIndex":o}),i.globals.delayedElements.push({el:u.node,index:o});var d={i:o,realIndex:o,animationDelay:o,initialSpeed:i.config.chart.animations.speed,dataChangeSpeed:i.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-radar",shouldClipToGrid:!1,bindEventsOnPaths:!1,stroke:i.globals.stroke.colors[o],strokeLineCap:i.config.stroke.lineCap},b=null;i.globals.previousPaths.length>0&&(b=e.getPreviousPath(o));for(var m=0;m<c.linePathsTo.length;m++){var v=e.graphics.renderPaths(n(n({},d),{},{pathFrom:null===b?c.linePathsFrom[m]:b,pathTo:c.linePathsTo[m],strokeWidth:Array.isArray(e.strokeWidth)?e.strokeWidth[o]:e.strokeWidth,fill:"none",drawShadow:!1}));h.add(v);var y=a.fillPath({seriesNumber:o}),w=e.graphics.renderPaths(n(n({},d),{},{pathFrom:null===b?c.areaPathsFrom[m]:b,pathTo:c.areaPathsTo[m],strokeWidth:0,fill:y,drawShadow:!1}));if(i.config.chart.dropShadow.enabled){var k=new x(e.ctx),A=i.config.chart.dropShadow;k.dropShadow(w,Object.assign({},A,{noUserSpaceOnUse:!0}),o)}h.add(w)}t.forEach((function(t,a){var s=new P(e.ctx).getMarkerConfig("apexcharts-marker",o,a),l=e.graphics.drawMarker(g[a].x,g[a].y,s);l.attr("rel",a),l.attr("j",a),l.attr("index",o),l.node.setAttribute("default-marker-size",s.pSize);var c=e.graphics.group({class:"apexcharts-series-markers"});c&&c.add(l),u.add(c),h.add(u);var d=i.config.dataLabels;if(d.enabled){var f=d.formatter(i.globals.series[o][a],{seriesIndex:o,dataPointIndex:a,w:i});r.plotDataLabelsText({x:g[a].x,y:g[a].y,text:f,textAnchor:"middle",i:o,j:o,parent:p,offsetCorrection:!1,dataLabelsConfig:n({},d)})}h.add(p)})),s.push(h)})),this.drawPolygons({parent:d}),i.config.xaxis.labels.show){var b=this.drawXAxisTexts();d.add(b)}return s.forEach((function(t){d.add(t)})),d.add(this.yaxisLabels),d}},{key:"drawPolygons",value:function(t){for(var e=this,i=this.w,a=t.parent,s=new kt(this.ctx),r=i.globals.yAxisScale[0].result.reverse(),n=r.length,o=[],l=this.size/(n-1),h=0;h<n;h++)o[h]=l*h;o.reverse();var c=[],d=[];o.forEach((function(t,i){var a=f.getPolygonPos(t,e.dataPointsLen),s="";a.forEach((function(t,a){if(0===i){var r=e.graphics.drawLine(t.x,t.y,0,0,Array.isArray(e.polygons.connectorColors)?e.polygons.connectorColors[a]:e.polygons.connectorColors);d.push(r)}0===a&&e.yaxisLabelsTextsPos.push({x:t.x,y:t.y}),s+=t.x+","+t.y+" "})),c.push(s)})),c.forEach((function(t,s){var r=e.polygons.strokeColors,n=e.polygons.strokeWidth,o=e.graphics.drawPolygon(t,Array.isArray(r)?r[s]:r,Array.isArray(n)?n[s]:n,i.globals.radarPolygons.fill.colors[s]);a.add(o)})),d.forEach((function(t){a.add(t)})),i.config.yaxis[0].show&&this.yaxisLabelsTextsPos.forEach((function(t,i){var a=s.drawYAxisTexts(t.x,t.y,i,r[i]);e.yaxisLabels.add(a)}))}},{key:"drawXAxisTexts",value:function(){var t=this,e=this.w,i=e.config.xaxis.labels,a=this.graphics.group({class:"apexcharts-xaxis"}),s=f.getPolygonPos(this.size,this.dataPointsLen);return e.globals.labels.forEach((function(r,o){var l=e.config.xaxis.labels.formatter,h=new z(t.ctx);if(s[o]){var c=t.getTextPos(s[o],t.size),d=l(r,{seriesIndex:-1,dataPointIndex:o,w:e});h.plotDataLabelsText({x:c.newX,y:c.newY,text:d,textAnchor:c.textAnchor,i:o,j:o,parent:a,color:Array.isArray(i.style.colors)&&i.style.colors[o]?i.style.colors[o]:"#a8a8a8",dataLabelsConfig:n({textAnchor:c.textAnchor,dropShadow:{enabled:!1}},i),offsetCorrection:!1})}})),a}},{key:"createPaths",value:function(t,e){var i=this,a=[],s=[],r=[],n=[];if(t.length){s=[this.graphics.move(e.x,e.y)],n=[this.graphics.move(e.x,e.y)];var o=this.graphics.move(t[0].x,t[0].y),l=this.graphics.move(t[0].x,t[0].y);t.forEach((function(e,a){o+=i.graphics.line(e.x,e.y),l+=i.graphics.line(e.x,e.y),a===t.length-1&&(o+="Z",l+="Z")})),a.push(o),r.push(l)}return{linePathsFrom:s,linePathsTo:a,areaPathsFrom:n,areaPathsTo:r}}},{key:"getTextPos",value:function(t,e){var i="middle",a=t.x,s=t.y;return Math.abs(t.x)>=10?t.x>0?(i="start",a+=10):t.x<0&&(i="end",a-=10):i="middle",Math.abs(t.y)>=e-10&&(t.y<0?s-=10:t.y>0&&(s+=10)),{textAnchor:i,newX:a,newY:s}}},{key:"getPreviousPath",value:function(t){for(var e=this.w,i=null,a=0;a<e.globals.previousPaths.length;a++){var s=e.globals.previousPaths[a];s.paths.length>0&&parseInt(s.realIndex,10)===parseInt(t,10)&&void 0!==e.globals.previousPaths[a].paths[0]&&(i=e.globals.previousPaths[a].paths[0].d)}return i}},{key:"getDataPointsPos",value:function(t,e){var i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.dataPointsLen;t=t||[],e=e||[];for(var a=[],s=0;s<i;s++){var r={};r.x=t[s]*Math.sin(e[s]),r.y=-t[s]*Math.cos(e[s]),a.push(r)}return a}}]),t}(),Ct=function(t){o(s,t);var i=d(s);function s(t){var a;e(this,s),(a=i.call(this,t)).ctx=t,a.w=t.w,a.animBeginArr=[0],a.animDur=0;var r=a.w;return a.startAngle=r.config.plotOptions.radialBar.startAngle,a.endAngle=r.config.plotOptions.radialBar.endAngle,a.totalAngle=Math.abs(r.config.plotOptions.radialBar.endAngle-r.config.plotOptions.radialBar.startAngle),a.trackStartAngle=r.config.plotOptions.radialBar.track.startAngle,a.trackEndAngle=r.config.plotOptions.radialBar.track.endAngle,a.radialDataLabels=r.config.plotOptions.radialBar.dataLabels,a.trackStartAngle||(a.trackStartAngle=a.startAngle),a.trackEndAngle||(a.trackEndAngle=a.endAngle),360===a.endAngle&&(a.endAngle=359.99),a.margin=parseInt(r.config.plotOptions.radialBar.track.margin,10),a}return a(s,[{key:"draw",value:function(t){var e=this.w,i=new b(this.ctx),a=i.group({class:"apexcharts-radialbar"});if(e.globals.noData)return a;var s=i.group(),r=this.defaultSize/2,n=e.globals.gridWidth/2,o=this.defaultSize/2.05;e.config.chart.sparkline.enabled||(o=o-e.config.stroke.width-e.config.chart.dropShadow.blur);var l=e.globals.fill.colors;if(e.config.plotOptions.radialBar.track.show){var h=this.drawTracks({size:o,centerX:n,centerY:r,colorArr:l,series:t});s.add(h)}var c=this.drawArcs({size:o,centerX:n,centerY:r,colorArr:l,series:t}),d=360;e.config.plotOptions.radialBar.startAngle<0&&(d=this.totalAngle);var g=(360-d)/360;if(e.globals.radialSize=o-o*g,this.radialDataLabels.value.show){var u=Math.max(this.radialDataLabels.value.offsetY,this.radialDataLabels.name.offsetY);e.globals.radialSize+=u*g}return s.add(c.g),"front"===e.config.plotOptions.radialBar.hollow.position&&(c.g.add(c.elHollow),c.dataLabels&&c.g.add(c.dataLabels)),a.add(s),a}},{key:"drawTracks",value:function(t){var e=this.w,i=new b(this.ctx),a=i.group({class:"apexcharts-tracks"}),s=new x(this.ctx),r=new L(this.ctx),n=this.getStrokeWidth(t);t.size=t.size-n/2;for(var o=0;o<t.series.length;o++){var l=i.group({class:"apexcharts-radialbar-track apexcharts-track"});a.add(l),l.attr({rel:o+1}),t.size=t.size-n-this.margin;var h=e.config.plotOptions.radialBar.track,c=r.fillPath({seriesNumber:0,size:t.size,fillColors:Array.isArray(h.background)?h.background[o]:h.background,solid:!0}),d=this.trackStartAngle,g=this.trackEndAngle;Math.abs(g)+Math.abs(d)>=360&&(g=360-Math.abs(this.startAngle)-.1);var u=i.drawPath({d:"",stroke:c,strokeWidth:n*parseInt(h.strokeWidth,10)/100,fill:"none",strokeOpacity:h.opacity,classes:"apexcharts-radialbar-area"});if(h.dropShadow.enabled){var f=h.dropShadow;s.dropShadow(u,f)}l.add(u),u.attr("id","apexcharts-radialbarTrack-"+o),this.animatePaths(u,{centerX:t.centerX,centerY:t.centerY,endAngle:g,startAngle:d,size:t.size,i:o,totalItems:2,animBeginArr:0,dur:0,isTrack:!0,easing:e.globals.easing})}return a}},{key:"drawArcs",value:function(t){var e=this.w,i=new b(this.ctx),a=new L(this.ctx),s=new x(this.ctx),r=i.group(),n=this.getStrokeWidth(t);t.size=t.size-n/2;var o=e.config.plotOptions.radialBar.hollow.background,l=t.size-n*t.series.length-this.margin*t.series.length-n*parseInt(e.config.plotOptions.radialBar.track.strokeWidth,10)/100/2,h=l-e.config.plotOptions.radialBar.hollow.margin;void 0!==e.config.plotOptions.radialBar.hollow.image&&(o=this.drawHollowImage(t,r,l,o));var c=this.drawHollow({size:h,centerX:t.centerX,centerY:t.centerY,fill:o||"transparent"});if(e.config.plotOptions.radialBar.hollow.dropShadow.enabled){var d=e.config.plotOptions.radialBar.hollow.dropShadow;s.dropShadow(c,d)}var g=1;!this.radialDataLabels.total.show&&e.globals.series.length>1&&(g=0);var u=null;this.radialDataLabels.show&&(u=this.renderInnerDataLabels(this.radialDataLabels,{hollowSize:l,centerX:t.centerX,centerY:t.centerY,opacity:g})),"back"===e.config.plotOptions.radialBar.hollow.position&&(r.add(c),u&&r.add(u));var p=!1;e.config.plotOptions.radialBar.inverseOrder&&(p=!0);for(var m=p?t.series.length-1:0;p?m>=0:m<t.series.length;p?m--:m++){var v=i.group({class:"apexcharts-series apexcharts-radial-series",seriesName:f.escapeString(e.globals.seriesNames[m])});r.add(v),v.attr({rel:m+1,"data:realIndex":m}),this.ctx.series.addCollapsedClassToSeries(v,m),t.size=t.size-n-this.margin;var y=a.fillPath({seriesNumber:m,size:t.size,value:t.series[m]}),w=this.startAngle,k=void 0,A=f.negToZero(t.series[m]>100?100:t.series[m])/100,S=Math.round(this.totalAngle*A)+this.startAngle,C=void 0;e.globals.dataChanged&&(k=this.startAngle,C=Math.round(this.totalAngle*f.negToZero(e.globals.previousPaths[m])/100)+k),Math.abs(S)+Math.abs(w)>=360&&(S-=.01),Math.abs(C)+Math.abs(k)>=360&&(C-=.01);var P=S-w,T=Array.isArray(e.config.stroke.dashArray)?e.config.stroke.dashArray[m]:e.config.stroke.dashArray,z=i.drawPath({d:"",stroke:y,strokeWidth:n,fill:"none",fillOpacity:e.config.fill.opacity,classes:"apexcharts-radialbar-area apexcharts-radialbar-slice-"+m,strokeDashArray:T});if(b.setAttrs(z.node,{"data:angle":P,"data:value":t.series[m]}),e.config.chart.dropShadow.enabled){var I=e.config.chart.dropShadow;s.dropShadow(z,I,m)}s.setSelectionFilter(z,0,m),this.addListeners(z,this.radialDataLabels),v.add(z),z.attr({index:0,j:m});var M=0;!this.initialAnim||e.globals.resized||e.globals.dataChanged||(M=(S-w)/360*e.config.chart.animations.speed,this.animDur=M/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),e.globals.dataChanged&&(M=(S-w)/360*e.config.chart.animations.dynamicAnimation.speed,this.animDur=M/(1.2*t.series.length)+this.animDur,this.animBeginArr.push(this.animDur)),this.animatePaths(z,{centerX:t.centerX,centerY:t.centerY,endAngle:S,startAngle:w,prevEndAngle:C,prevStartAngle:k,size:t.size,i:m,totalItems:2,animBeginArr:this.animBeginArr,dur:M,shouldSetPrevPaths:!0,easing:e.globals.easing})}return{g:r,elHollow:c,dataLabels:u}}},{key:"drawHollow",value:function(t){var e=new b(this.ctx).drawCircle(2*t.size);return e.attr({class:"apexcharts-radialbar-hollow",cx:t.centerX,cy:t.centerY,r:t.size,fill:t.fill}),e}},{key:"drawHollowImage",value:function(t,e,i,a){var s=this.w,r=new L(this.ctx),n=f.randomId(),o=s.config.plotOptions.radialBar.hollow.image;if(s.config.plotOptions.radialBar.hollow.imageClipped)r.clippedImgArea({width:i,height:i,image:o,patternID:"pattern".concat(s.globals.cuid).concat(n)}),a="url(#pattern".concat(s.globals.cuid).concat(n,")");else{var l=s.config.plotOptions.radialBar.hollow.imageWidth,h=s.config.plotOptions.radialBar.hollow.imageHeight;if(void 0===l&&void 0===h){var c=s.globals.dom.Paper.image(o).loaded((function(e){this.move(t.centerX-e.width/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-e.height/2+s.config.plotOptions.radialBar.hollow.imageOffsetY)}));e.add(c)}else{var d=s.globals.dom.Paper.image(o).loaded((function(e){this.move(t.centerX-l/2+s.config.plotOptions.radialBar.hollow.imageOffsetX,t.centerY-h/2+s.config.plotOptions.radialBar.hollow.imageOffsetY),this.size(l,h)}));e.add(d)}}return a}},{key:"getStrokeWidth",value:function(t){var e=this.w;return t.size*(100-parseInt(e.config.plotOptions.radialBar.hollow.size,10))/100/(t.series.length+1)-this.margin}}]),s}(At),Lt=function(){function t(i){e(this,t),this.w=i.w,this.lineCtx=i}return a(t,[{key:"sameValueSeriesFix",value:function(t,e){var i=this.w;if("line"===i.config.chart.type&&("gradient"===i.config.fill.type||"gradient"===i.config.fill.type[t])&&new y(this.lineCtx.ctx,i).seriesHaveSameValues(t)){var a=e[t].slice();a[a.length-1]=a[a.length-1]+1e-6,e[t]=a}return e}},{key:"calculatePoints",value:function(t){var e=t.series,i=t.realIndex,a=t.x,s=t.y,r=t.i,n=t.j,o=t.prevY,l=this.w,h=[],c=[];if(0===n){var d=this.lineCtx.categoryAxisCorrection+l.config.markers.offsetX;l.globals.isXNumeric&&(d=(l.globals.seriesX[i][0]-l.globals.minX)/this.lineCtx.xRatio+l.config.markers.offsetX),h.push(d),c.push(f.isNumber(e[r][0])?o+l.config.markers.offsetY:null),h.push(a+l.config.markers.offsetX),c.push(f.isNumber(e[r][n+1])?s+l.config.markers.offsetY:null)}else h.push(a+l.config.markers.offsetX),c.push(f.isNumber(e[r][n+1])?s+l.config.markers.offsetY:null);return{x:h,y:c}}},{key:"checkPreviousPaths",value:function(t){for(var e=t.pathFromLine,i=t.pathFromArea,a=t.realIndex,s=this.w,r=0;r<s.globals.previousPaths.length;r++){var n=s.globals.previousPaths[r];("line"===n.type||"area"===n.type)&&n.paths.length>0&&parseInt(n.realIndex,10)===parseInt(a,10)&&("line"===n.type?(this.lineCtx.appendPathFrom=!1,e=s.globals.previousPaths[r].paths[0].d):"area"===n.type&&(this.lineCtx.appendPathFrom=!1,i=s.globals.previousPaths[r].paths[0].d,s.config.stroke.show&&s.globals.previousPaths[r].paths[1]&&(e=s.globals.previousPaths[r].paths[1].d)))}return{pathFromLine:e,pathFromArea:i}}},{key:"determineFirstPrevY",value:function(t){var e=t.i,i=t.series,a=t.prevY,s=t.lineYPosition,r=this.w;if(void 0!==i[e][0])a=(s=r.config.chart.stacked&&e>0?this.lineCtx.prevSeriesY[e-1][0]:this.lineCtx.zeroY)-i[e][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]+2*(this.lineCtx.isReversed?i[e][0]/this.lineCtx.yRatio[this.lineCtx.yaxisIndex]:0);else if(r.config.chart.stacked&&e>0&&void 0===i[e][0])for(var n=e-1;n>=0;n--)if(null!==i[n][0]&&void 0!==i[n][0]){a=s=this.lineCtx.prevSeriesY[n][0];break}return{prevY:a,lineYPosition:s}}}]),t}(),Pt=function(){function t(i,a,s){e(this,t),this.ctx=i,this.w=i.w,this.xyRatios=a,this.pointsChart=!("bubble"!==this.w.config.chart.type&&"scatter"!==this.w.config.chart.type)||s,this.scatter=new T(this.ctx),this.noNegatives=this.w.globals.minX===Number.MAX_VALUE,this.lineHelpers=new Lt(this),this.markers=new P(this.ctx),this.prevSeriesY=[],this.categoryAxisCorrection=0,this.yaxisIndex=0}return a(t,[{key:"draw",value:function(t,e,i){var a=this.w,s=new b(this.ctx),r=a.globals.comboCharts?e:a.config.chart.type,n=s.group({class:"apexcharts-".concat(r,"-series apexcharts-plot-series")}),o=new y(this.ctx,a);this.yRatio=this.xyRatios.yRatio,this.zRatio=this.xyRatios.zRatio,this.xRatio=this.xyRatios.xRatio,this.baseLineY=this.xyRatios.baseLineY,t=o.getLogSeries(t),this.yRatio=o.getLogYRatios(this.yRatio);for(var l=[],h=0;h<t.length;h++){t=this.lineHelpers.sameValueSeriesFix(h,t);var c=a.globals.comboCharts?i[h]:h;this._initSerieVariables(t,h,c);var d=[],g=[],u=a.globals.padHorizontal+this.categoryAxisCorrection;this.ctx.series.addCollapsedClassToSeries(this.elSeries,c),a.globals.isXNumeric&&a.globals.seriesX.length>0&&(u=(a.globals.seriesX[c][0]-a.globals.minX)/this.xRatio),g.push(u);var f,p=u,x=p,m=this.zeroY;m=this.lineHelpers.determineFirstPrevY({i:h,series:t,prevY:m,lineYPosition:0}).prevY,d.push(m),f=m;var v=this._calculatePathsFrom({series:t,i:h,realIndex:c,prevX:x,prevY:m}),w=this._iterateOverDataPoints({series:t,realIndex:c,i:h,x:u,y:1,pX:p,pY:f,pathsFrom:v,linePaths:[],areaPaths:[],seriesIndex:i,lineYPosition:0,xArrj:g,yArrj:d});this._handlePaths({type:r,realIndex:c,i:h,paths:w}),this.elSeries.add(this.elPointsMain),this.elSeries.add(this.elDataLabelsWrap),l.push(this.elSeries)}if(a.config.chart.stacked)for(var k=l.length;k>0;k--)n.add(l[k-1]);else for(var A=0;A<l.length;A++)n.add(l[A]);return n}},{key:"_initSerieVariables",value:function(t,e,i){var a=this.w,s=new b(this.ctx);this.xDivision=a.globals.gridWidth/(a.globals.dataPoints-("on"===a.config.xaxis.tickPlacement?1:0)),this.strokeWidth=Array.isArray(a.config.stroke.width)?a.config.stroke.width[i]:a.config.stroke.width,this.yRatio.length>1&&(this.yaxisIndex=i),this.isReversed=a.config.yaxis[this.yaxisIndex]&&a.config.yaxis[this.yaxisIndex].reversed,this.zeroY=a.globals.gridHeight-this.baseLineY[this.yaxisIndex]-(this.isReversed?a.globals.gridHeight:0)+(this.isReversed?2*this.baseLineY[this.yaxisIndex]:0),this.areaBottomY=this.zeroY,(this.zeroY>a.globals.gridHeight||"end"===a.config.plotOptions.area.fillTo)&&(this.areaBottomY=a.globals.gridHeight),this.categoryAxisCorrection=this.xDivision/2,this.elSeries=s.group({class:"apexcharts-series",seriesName:f.escapeString(a.globals.seriesNames[i])}),this.elPointsMain=s.group({class:"apexcharts-series-markers-wrap","data:realIndex":i}),this.elDataLabelsWrap=s.group({class:"apexcharts-datalabels","data:realIndex":i});var r=t[e].length===a.globals.dataPoints;this.elSeries.attr({"data:longestSeries":r,rel:e+1,"data:realIndex":i}),this.appendPathFrom=!0}},{key:"_calculatePathsFrom",value:function(t){var e,i,a,s,r=t.series,n=t.i,o=t.realIndex,l=t.prevX,h=t.prevY,c=this.w,d=new b(this.ctx);if(null===r[n][0]){for(var g=0;g<r[n].length;g++)if(null!==r[n][g]){l=this.xDivision*g,h=this.zeroY-r[n][g]/this.yRatio[this.yaxisIndex],e=d.move(l,h),i=d.move(l,this.areaBottomY);break}}else e=d.move(l,h),i=d.move(l,this.areaBottomY)+d.line(l,h);if(a=d.move(-1,this.zeroY)+d.line(-1,this.zeroY),s=d.move(-1,this.zeroY)+d.line(-1,this.zeroY),c.globals.previousPaths.length>0){var u=this.lineHelpers.checkPreviousPaths({pathFromLine:a,pathFromArea:s,realIndex:o});a=u.pathFromLine,s=u.pathFromArea}return{prevX:l,prevY:h,linePath:e,areaPath:i,pathFromLine:a,pathFromArea:s}}},{key:"_handlePaths",value:function(t){var e=t.type,i=t.realIndex,a=t.i,s=t.paths,r=this.w,o=new b(this.ctx),l=new L(this.ctx);this.prevSeriesY.push(s.yArrj),r.globals.seriesXvalues[i]=s.xArrj,r.globals.seriesYvalues[i]=s.yArrj,this.pointsChart||r.globals.delayedElements.push({el:this.elPointsMain.node,index:i});var h={i:a,realIndex:i,animationDelay:a,initialSpeed:r.config.chart.animations.speed,dataChangeSpeed:r.config.chart.animations.dynamicAnimation.speed,className:"apexcharts-".concat(e)};if("area"===e)for(var c=l.fillPath({seriesNumber:i}),d=0;d<s.areaPaths.length;d++){var g=o.renderPaths(n(n({},h),{},{pathFrom:s.pathFromArea,pathTo:s.areaPaths[d],stroke:"none",strokeWidth:0,strokeLineCap:null,fill:c}));this.elSeries.add(g)}if(r.config.stroke.show&&!this.pointsChart){var u=null;u="line"===e?l.fillPath({seriesNumber:i,i:a}):r.globals.stroke.colors[i];for(var f=0;f<s.linePaths.length;f++){var p=o.renderPaths(n(n({},h),{},{pathFrom:s.pathFromLine,pathTo:s.linePaths[f],stroke:u,strokeWidth:this.strokeWidth,strokeLineCap:r.config.stroke.lineCap,fill:"none"}));this.elSeries.add(p)}}}},{key:"_iterateOverDataPoints",value:function(t){for(var e=t.series,i=t.realIndex,a=t.i,s=t.x,r=t.y,n=t.pX,o=t.pY,l=t.pathsFrom,h=t.linePaths,c=t.areaPaths,d=t.seriesIndex,g=t.lineYPosition,u=t.xArrj,p=t.yArrj,x=this.w,m=new b(this.ctx),v=this.yRatio,y=l.prevY,w=l.linePath,k=l.areaPath,A=l.pathFromLine,S=l.pathFromArea,C=f.isNumber(x.globals.minYArr[i])?x.globals.minYArr[i]:x.globals.minY,L=x.globals.dataPoints>1?x.globals.dataPoints-1:x.globals.dataPoints,P=0;P<L;P++){var T=void 0===e[a][P+1]||null===e[a][P+1];if(x.globals.isXNumeric){var z=x.globals.seriesX[i][P+1];void 0===x.globals.seriesX[i][P+1]&&(z=x.globals.seriesX[i][L-1]),s=(z-x.globals.minX)/this.xRatio}else s+=this.xDivision;if(x.config.chart.stacked)if(a>0&&x.globals.collapsedSeries.length<x.config.series.length-1){g=this.prevSeriesY[function(t){for(var e=t,i=0;i<x.globals.series.length;i++)if(x.globals.collapsedSeriesIndices.indexOf(t)>-1){e--;break}return e>=0?e:0}(a-1)][P+1]}else g=this.zeroY;else g=this.zeroY;r=T?g-C/v[this.yaxisIndex]+2*(this.isReversed?C/v[this.yaxisIndex]:0):g-e[a][P+1]/v[this.yaxisIndex]+2*(this.isReversed?e[a][P+1]/v[this.yaxisIndex]:0),u.push(s),p.push(r);var I=this.lineHelpers.calculatePoints({series:e,x:s,y:r,realIndex:i,i:a,j:P,prevY:y}),M=this._createPaths({series:e,i:a,realIndex:i,j:P,x:s,y:r,pX:n,pY:o,linePath:w,areaPath:k,linePaths:h,areaPaths:c,seriesIndex:d});c=M.areaPaths,h=M.linePaths,n=M.pX,o=M.pY,k=M.areaPath,w=M.linePath,this.appendPathFrom&&(A+=m.line(s,this.zeroY),S+=m.line(s,this.zeroY)),this.handleNullDataPoints(e,I,a,P,i),this._handleMarkersAndLabels({pointsPos:I,series:e,x:s,y:r,prevY:y,i:a,j:P,realIndex:i})}return{yArrj:p,xArrj:u,pathFromArea:S,areaPaths:c,pathFromLine:A,linePaths:h}}},{key:"_handleMarkersAndLabels",value:function(t){var e=t.pointsPos,i=(t.series,t.x,t.y,t.prevY,t.i),a=t.j,s=t.realIndex,r=this.w,n=new z(this.ctx);if(this.pointsChart)this.scatter.draw(this.elSeries,a,{realIndex:s,pointsPos:e,zRatio:this.zRatio,elParent:this.elPointsMain});else{r.globals.series[i].length>1&&this.elPointsMain.node.classList.add("apexcharts-element-hidden");var o=this.markers.plotChartMarkers(e,s,a+1);null!==o&&this.elPointsMain.add(o)}var l=n.drawDataLabel(e,s,a+1,null);null!==l&&this.elDataLabelsWrap.add(l)}},{key:"_createPaths",value:function(t){var e=t.series,i=t.i,a=t.realIndex,s=t.j,r=t.x,n=t.y,o=t.pX,l=t.pY,h=t.linePath,c=t.areaPath,d=t.linePaths,g=t.areaPaths,u=t.seriesIndex,f=this.w,p=new b(this.ctx),x=f.config.stroke.curve,m=this.areaBottomY;if(Array.isArray(f.config.stroke.curve)&&(x=Array.isArray(u)?f.config.stroke.curve[u[i]]:f.config.stroke.curve[i]),"smooth"===x){var v=.35*(r-o);f.globals.hasNullValues?(null!==e[i][s]&&(null!==e[i][s+1]?(h=p.move(o,l)+p.curve(o+v,l,r-v,n,r+1,n),c=p.move(o+1,l)+p.curve(o+v,l,r-v,n,r+1,n)+p.line(r,m)+p.line(o,m)+"z"):(h=p.move(o,l),c=p.move(o,l)+"z")),d.push(h),g.push(c)):(h+=p.curve(o+v,l,r-v,n,r,n),c+=p.curve(o+v,l,r-v,n,r,n)),o=r,l=n,s===e[i].length-2&&(c=c+p.curve(o,l,r,n,r,m)+p.move(r,n)+"z",f.globals.hasNullValues||(d.push(h),g.push(c)))}else{if(null===e[i][s+1]){h+=p.move(r,n);var y=f.globals.isXNumeric?(f.globals.seriesX[a][s]-f.globals.minX)/this.xRatio:r-this.xDivision;c=c+p.line(y,m)+p.move(r,n)+"z"}null===e[i][s]&&(h+=p.move(r,n),c+=p.move(r,m)),"stepline"===x?(h=h+p.line(r,null,"H")+p.line(null,n,"V"),c=c+p.line(r,null,"H")+p.line(null,n,"V")):"straight"===x&&(h+=p.line(r,n),c+=p.line(r,n)),s===e[i].length-2&&(c=c+p.line(r,m)+p.move(r,n)+"z",d.push(h),g.push(c))}return{linePaths:d,areaPaths:g,pX:o,pY:l,linePath:h,areaPath:c}}},{key:"handleNullDataPoints",value:function(t,e,i,a,s){var r=this.w;if(null===t[i][a]&&r.config.markers.showNullDataPoints||1===t[i].length){var n=this.markers.plotChartMarkers(e,s,a+1,this.strokeWidth-r.config.markers.strokeWidth/2,!0);null!==n&&this.elPointsMain.add(n)}}}]),t}();window.TreemapSquared={},window.TreemapSquared.generate=function(){function t(e,i,a,s){this.xoffset=e,this.yoffset=i,this.height=s,this.width=a,this.shortestEdge=function(){return Math.min(this.height,this.width)},this.getCoordinates=function(t){var e,i=[],a=this.xoffset,s=this.yoffset,n=r(t)/this.height,o=r(t)/this.width;if(this.width>=this.height)for(e=0;e<t.length;e++)i.push([a,s,a+n,s+t[e]/n]),s+=t[e]/n;else for(e=0;e<t.length;e++)i.push([a,s,a+t[e]/o,s+o]),a+=t[e]/o;return i},this.cutArea=function(e){var i;if(this.width>=this.height){var a=e/this.height,s=this.width-a;i=new t(this.xoffset+a,this.yoffset,s,this.height)}else{var r=e/this.width,n=this.height-r;i=new t(this.xoffset,this.yoffset+r,this.width,n)}return i}}function e(e,a,s,n,o){return n=void 0===n?0:n,o=void 0===o?0:o,function(t){var e,i,a=[];for(e=0;e<t.length;e++)for(i=0;i<t[e].length;i++)a.push(t[e][i]);return a}(i(function(t,e){var i,a=[],s=e/r(t);for(i=0;i<t.length;i++)a[i]=t[i]*s;return a}(e,a*s),[],new t(n,o,a,s),[]))}function i(t,e,s,n){var o,l,h;if(0!==t.length)return o=s.shortestEdge(),function(t,e,i){var s;if(0===t.length)return!0;(s=t.slice()).push(e);var r=a(t,i),n=a(s,i);return r>=n}(e,l=t[0],o)?(e.push(l),i(t.slice(1),e,s,n)):(h=s.cutArea(r(e),n),n.push(s.getCoordinates(e)),i(t,[],h,n)),n;n.push(s.getCoordinates(e))}function a(t,e){var i=Math.min.apply(Math,t),a=Math.max.apply(Math,t),s=r(t);return Math.max(Math.pow(e,2)*a/Math.pow(s,2),Math.pow(s,2)/(Math.pow(e,2)*i))}function s(t){return t&&t.constructor===Array}function r(t){var e,i=0;for(e=0;e<t.length;e++)i+=t[e];return i}function n(t){var e,i=0;if(s(t[0]))for(e=0;e<t.length;e++)i+=n(t[e]);else i=r(t);return i}return function t(i,a,r,o,l){o=void 0===o?0:o,l=void 0===l?0:l;var h,c,d=[],g=[];if(s(i[0])){for(c=0;c<i.length;c++)d[c]=n(i[c]);for(h=e(d,a,r,o,l),c=0;c<i.length;c++)g.push(t(i[c],h[c][2]-h[c][0],h[c][3]-h[c][1],h[c][0],h[c][1]))}else g=e(i,a,r,o,l);return g}}();var Tt,zt,It=function(){function t(i,a){e(this,t),this.ctx=i,this.w=i.w,this.strokeWidth=this.w.config.stroke.width,this.helpers=new yt(i),this.dynamicAnim=this.w.config.chart.animations.dynamicAnimation,this.labels=[]}return a(t,[{key:"draw",value:function(t){var e=this,i=this.w,a=new b(this.ctx),s=new L(this.ctx),r=a.group({class:"apexcharts-treemap"});if(i.globals.noData)return r;var n=[];return t.forEach((function(t){var e=t.map((function(t){return Math.abs(t)}));n.push(e)})),this.negRange=this.helpers.checkColorRange(),i.config.series.forEach((function(t,i){t.data.forEach((function(t){Array.isArray(e.labels[i])||(e.labels[i]=[]),e.labels[i].push(t.x)}))})),window.TreemapSquared.generate(n,i.globals.gridWidth,i.globals.gridHeight).forEach((function(n,o){var l=a.group({class:"apexcharts-series apexcharts-treemap-series",seriesName:f.escapeString(i.globals.seriesNames[o]),rel:o+1,"data:realIndex":o});if(i.config.chart.dropShadow.enabled){var h=i.config.chart.dropShadow;new x(e.ctx).dropShadow(r,h,o)}var c=a.group({class:"apexcharts-data-labels"});n.forEach((function(r,n){var h=r[0],c=r[1],d=r[2],g=r[3],u=a.drawRect(h,c,d-h,g-c,0,"#fff",1,e.strokeWidth,i.config.plotOptions.treemap.useFillColorAsStroke?p:i.globals.stroke.colors[o]);u.attr({cx:h,cy:c,index:o,i:o,j:n,width:d-h,height:g-c});var f=e.helpers.getShadeColor(i.config.chart.type,o,n,e.negRange),p=f.color;void 0!==i.config.series[o].data[n]&&i.config.series[o].data[n].fillColor&&(p=i.config.series[o].data[n].fillColor);var x=s.fillPath({color:p,seriesNumber:o,dataPointIndex:n});u.node.classList.add("apexcharts-treemap-rect"),u.attr({fill:x}),e.helpers.addListeners(u);var b={x:h+(d-h)/2,y:c+(g-c)/2,width:0,height:0},m={x:h,y:c,width:d-h,height:g-c};if(i.config.chart.animations.enabled&&!i.globals.dataChanged){var v=1;i.globals.resized||(v=i.config.chart.animations.speed),e.animateTreemap(u,b,m,v)}if(i.globals.dataChanged){var y=1;e.dynamicAnim.enabled&&i.globals.shouldAnimate&&(y=e.dynamicAnim.speed,i.globals.previousPaths[o]&&i.globals.previousPaths[o][n]&&i.globals.previousPaths[o][n].rect&&(b=i.globals.previousPaths[o][n].rect),e.animateTreemap(u,b,m,y))}var w=e.getFontSize(r),k=i.config.dataLabels.formatter(e.labels[o][n],{value:i.globals.series[o][n],seriesIndex:o,dataPointIndex:n,w:i}),A=e.helpers.calculateDataLabels({text:k,x:(h+d)/2,y:(c+g)/2+e.strokeWidth/2+w/3,i:o,j:n,colorProps:f,fontSize:w,series:t});i.config.dataLabels.enabled&&A&&e.rotateToFitLabel(A,k,h,c,d,g),l.add(u),null!==A&&l.add(A)})),l.add(c),r.add(l)})),r}},{key:"getFontSize",value:function(t){var e=this.w;var i,a,s,r,n=function t(e){var i,a=0;if(Array.isArray(e[0]))for(i=0;i<e.length;i++)a+=t(e[i]);else for(i=0;i<e.length;i++)a+=e[i].length;return a}(this.labels)/function t(e){var i,a=0;if(Array.isArray(e[0]))for(i=0;i<e.length;i++)a+=t(e[i]);else for(i=0;i<e.length;i++)a+=1;return a}(this.labels);return i=t[2]-t[0],a=t[3]-t[1],s=i*a,r=Math.pow(s,.5),Math.min(r/n,parseInt(e.config.dataLabels.style.fontSize,10))}},{key:"rotateToFitLabel",value:function(t,e,i,a,s,r){var n=new b(this.ctx),o=n.getTextRects(e);if(o.width+5>s-i&&o.width<=r-a){var l=n.rotateAroundCenter(t.node);t.node.setAttribute("transform","rotate(-90 ".concat(l.x," ").concat(l.y,")"))}}},{key:"animateTreemap",value:function(t,e,i,a){var s=new p(this.ctx);s.animateRect(t,{x:e.x,y:e.y,width:e.width,height:e.height},{x:i.x,y:i.y,width:i.width,height:i.height},a,(function(){s.animationCompleted(t)}))}}]),t}(),Mt=86400,Et=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w,this.timeScaleArray=[],this.utc=this.w.config.xaxis.labels.datetimeUTC}return a(t,[{key:"calculateTimeScaleTicks",value:function(t,e){var i=this,a=this.w;if(a.globals.allSeriesCollapsed)return a.globals.labels=[],a.globals.timescaleLabels=[],[];var s=new Y(this.ctx),r=(e-t)/864e5;this.determineInterval(r),a.globals.disableZoomIn=!1,a.globals.disableZoomOut=!1,r<.00011574074074074075?a.globals.disableZoomIn=!0:r>5e4&&(a.globals.disableZoomOut=!0);var o=s.getTimeUnitsfromTimestamp(t,e,this.utc),l=a.globals.gridWidth/r,h=l/24,c=h/60,d=c/60,g=Math.floor(24*r),u=Math.floor(1440*r),f=Math.floor(r*Mt),p=Math.floor(r),x=Math.floor(r/30),b=Math.floor(r/365),m={minMillisecond:o.minMillisecond,minSecond:o.minSecond,minMinute:o.minMinute,minHour:o.minHour,minDate:o.minDate,minMonth:o.minMonth,minYear:o.minYear},v={firstVal:m,currentMillisecond:m.minMillisecond,currentSecond:m.minSecond,currentMinute:m.minMinute,currentHour:m.minHour,currentMonthDate:m.minDate,currentDate:m.minDate,currentMonth:m.minMonth,currentYear:m.minYear,daysWidthOnXAxis:l,hoursWidthOnXAxis:h,minutesWidthOnXAxis:c,secondsWidthOnXAxis:d,numberOfSeconds:f,numberOfMinutes:u,numberOfHours:g,numberOfDays:p,numberOfMonths:x,numberOfYears:b};switch(this.tickInterval){case"years":this.generateYearScale(v);break;case"months":case"half_year":this.generateMonthScale(v);break;case"months_days":case"months_fortnight":case"days":case"week_days":this.generateDayScale(v);break;case"hours":this.generateHourScale(v);break;case"minutes_fives":case"minutes":this.generateMinuteScale(v);break;case"seconds_tens":case"seconds_fives":case"seconds":this.generateSecondScale(v)}var y=this.timeScaleArray.map((function(t){var e={position:t.position,unit:t.unit,year:t.year,day:t.day?t.day:1,hour:t.hour?t.hour:0,month:t.month+1};return"month"===t.unit?n(n({},e),{},{day:1,value:t.value+1}):"day"===t.unit||"hour"===t.unit?n(n({},e),{},{value:t.value}):"minute"===t.unit?n(n({},e),{},{value:t.value,minute:t.value}):"second"===t.unit?n(n({},e),{},{value:t.value,minute:t.minute,second:t.second}):t}));return y.filter((function(t){var e=1,s=Math.ceil(a.globals.gridWidth/120),r=t.value;void 0!==a.config.xaxis.tickAmount&&(s=a.config.xaxis.tickAmount),y.length>s&&(e=Math.floor(y.length/s));var n=!1,o=!1;switch(i.tickInterval){case"years":"year"===t.unit&&(n=!0);break;case"half_year":e=7,"year"===t.unit&&(n=!0);break;case"months":e=1,"year"===t.unit&&(n=!0);break;case"months_fortnight":e=15,"year"!==t.unit&&"month"!==t.unit||(n=!0),30===r&&(o=!0);break;case"months_days":e=10,"month"===t.unit&&(n=!0),30===r&&(o=!0);break;case"week_days":e=8,"month"===t.unit&&(n=!0);break;case"days":e=1,"month"===t.unit&&(n=!0);break;case"hours":"day"===t.unit&&(n=!0);break;case"minutes_fives":r%5!=0&&(o=!0);break;case"seconds_tens":r%10!=0&&(o=!0);break;case"seconds_fives":r%5!=0&&(o=!0)}if("hours"===i.tickInterval||"minutes_fives"===i.tickInterval||"seconds_tens"===i.tickInterval||"seconds_fives"===i.tickInterval){if(!o)return!0}else if((r%e==0||n)&&!o)return!0}))}},{key:"recalcDimensionsBasedOnFormat",value:function(t,e){var i=this.w,a=this.formatDates(t),s=this.removeOverlappingTS(a);i.globals.timescaleLabels=s.slice(),new nt(this.ctx).plotCoords()}},{key:"determineInterval",value:function(t){var e=24*t,i=60*e;switch(!0){case t/365>5:this.tickInterval="years";break;case t>800:this.tickInterval="half_year";break;case t>180:this.tickInterval="months";break;case t>90:this.tickInterval="months_fortnight";break;case t>60:this.tickInterval="months_days";break;case t>30:this.tickInterval="week_days";break;case t>2:this.tickInterval="days";break;case e>2.4:this.tickInterval="hours";break;case i>15:this.tickInterval="minutes_fives";break;case i>5:this.tickInterval="minutes";break;case i>1:this.tickInterval="seconds_tens";break;case 60*i>20:this.tickInterval="seconds_fives";break;default:this.tickInterval="seconds"}}},{key:"generateYearScale",value:function(t){var e=t.firstVal,i=t.currentMonth,a=t.currentYear,s=t.daysWidthOnXAxis,r=t.numberOfYears,n=e.minYear,o=0,l=new Y(this.ctx),h="year";if(e.minDate>1||e.minMonth>0){var c=l.determineRemainingDaysOfYear(e.minYear,e.minMonth,e.minDate);o=(l.determineDaysOfYear(e.minYear)-c+1)*s,n=e.minYear+1,this.timeScaleArray.push({position:o,value:n,unit:h,year:n,month:f.monthMod(i+1)})}else 1===e.minDate&&0===e.minMonth&&this.timeScaleArray.push({position:o,value:n,unit:h,year:a,month:f.monthMod(i+1)});for(var d=n,g=o,u=0;u<r;u++)d++,g=l.determineDaysOfYear(d-1)*s+g,this.timeScaleArray.push({position:g,value:d,unit:h,year:d,month:1})}},{key:"generateMonthScale",value:function(t){var e=t.firstVal,i=t.currentMonthDate,a=t.currentMonth,s=t.currentYear,r=t.daysWidthOnXAxis,n=t.numberOfMonths,o=a,l=0,h=new Y(this.ctx),c="month",d=0;if(e.minDate>1){l=(h.determineDaysOfMonths(a+1,e.minYear)-i+1)*r,o=f.monthMod(a+1);var g=s+d,u=f.monthMod(o),p=o;0===o&&(c="year",p=g,u=1,g+=d+=1),this.timeScaleArray.push({position:l,value:p,unit:c,year:g,month:u})}else this.timeScaleArray.push({position:l,value:o,unit:c,year:s,month:f.monthMod(a)});for(var x=o+1,b=l,m=0,v=1;m<n;m++,v++){0===(x=f.monthMod(x))?(c="year",d+=1):c="month";var y=this._getYear(s,x,d);b=h.determineDaysOfMonths(x,y)*r+b;var w=0===x?y:x;this.timeScaleArray.push({position:b,value:w,unit:c,year:y,month:0===x?1:x}),x++}}},{key:"generateDayScale",value:function(t){var e=t.firstVal,i=t.currentMonth,a=t.currentYear,s=t.hoursWidthOnXAxis,r=t.numberOfDays,n=new Y(this.ctx),o="day",l=e.minDate+1,h=l,c=function(t,e,i){return t>n.determineDaysOfMonths(e+1,i)?(h=1,o="month",g=e+=1,e):e},d=(24-e.minHour)*s,g=l,u=c(h,i,a);0===e.minHour&&1===e.minDate?(d=0,g=f.monthMod(e.minMonth),o="month",h=e.minDate,r++):1!==e.minDate&&0===e.minHour&&0===e.minMinute&&(d=0,l=e.minDate,g=l,u=c(h=l,i,a)),this.timeScaleArray.push({position:d,value:g,unit:o,year:this._getYear(a,u,0),month:f.monthMod(u),day:h});for(var p=d,x=0;x<r;x++){o="day",u=c(h+=1,u,this._getYear(a,u,0));var b=this._getYear(a,u,0);p=24*s+p;var m=1===h?f.monthMod(u):h;this.timeScaleArray.push({position:p,value:m,unit:o,year:b,month:f.monthMod(u),day:m})}}},{key:"generateHourScale",value:function(t){var e=t.firstVal,i=t.currentDate,a=t.currentMonth,s=t.currentYear,r=t.minutesWidthOnXAxis,n=t.numberOfHours,o=new Y(this.ctx),l="hour",h=function(t,e){return t>o.determineDaysOfMonths(e+1,s)&&(x=1,e+=1),{month:e,date:x}},c=function(t,e){return t>o.determineDaysOfMonths(e+1,s)?e+=1:e},d=60-(e.minMinute+e.minSecond/60),g=d*r,u=e.minHour+1,p=u+1;60===d&&(g=0,p=(u=e.minHour)+1);var x=i,b=c(x,a);this.timeScaleArray.push({position:g,value:u,unit:l,day:x,hour:p,year:s,month:f.monthMod(b)});for(var m=g,v=0;v<n;v++){if(l="hour",p>=24)p=0,l="day",b=h(x+=1,b).month,b=c(x,b);var y=this._getYear(s,b,0);m=0===p&&0===v?d*r:60*r+m;var w=0===p?x:p;this.timeScaleArray.push({position:m,value:w,unit:l,hour:p,day:x,year:y,month:f.monthMod(b)}),p++}}},{key:"generateMinuteScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,r=t.currentDate,n=t.currentMonth,o=t.currentYear,l=t.minutesWidthOnXAxis,h=t.secondsWidthOnXAxis,c=t.numberOfMinutes,d=a+1,g=r,u=n,p=o,x=s,b=(60-i-e/1e3)*h,m=0;m<c;m++)d>=60&&(d=0,24===(x+=1)&&(x=0)),this.timeScaleArray.push({position:b,value:d,unit:"minute",hour:x,minute:d,day:g,year:this._getYear(p,u,0),month:f.monthMod(u)}),b+=l,d++}},{key:"generateSecondScale",value:function(t){for(var e=t.currentMillisecond,i=t.currentSecond,a=t.currentMinute,s=t.currentHour,r=t.currentDate,n=t.currentMonth,o=t.currentYear,l=t.secondsWidthOnXAxis,h=t.numberOfSeconds,c=i+1,d=a,g=r,u=n,p=o,x=s,b=(1e3-e)/1e3*l,m=0;m<h;m++)c>=60&&(c=0,++d>=60&&(d=0,24===++x&&(x=0))),this.timeScaleArray.push({position:b,value:c,unit:"second",hour:x,minute:d,second:c,day:g,year:this._getYear(p,u,0),month:f.monthMod(u)}),b+=l,c++}},{key:"createRawDateString",value:function(t,e){var i=t.year;return 0===t.month&&(t.month=1),i+="-"+("0"+t.month.toString()).slice(-2),"day"===t.unit?i+="day"===t.unit?"-"+("0"+e).slice(-2):"-01":i+="-"+("0"+(t.day?t.day:"1")).slice(-2),"hour"===t.unit?i+="hour"===t.unit?"T"+("0"+e).slice(-2):"T00":i+="T"+("0"+(t.hour?t.hour:"0")).slice(-2),"minute"===t.unit?i+=":"+("0"+e).slice(-2):i+=":"+(t.minute?("0"+t.minute).slice(-2):"00"),"second"===t.unit?i+=":"+("0"+e).slice(-2):i+=":00",this.utc&&(i+=".000Z"),i}},{key:"formatDates",value:function(t){var e=this,i=this.w;return t.map((function(t){var a=t.value.toString(),s=new Y(e.ctx),r=e.createRawDateString(t,a),n=s.getDate(s.parseDate(r));if(e.utc||(n=s.getDate(s.parseDateWithTimezone(r))),void 0===i.config.xaxis.labels.format){var o="dd MMM",l=i.config.xaxis.labels.datetimeFormatter;"year"===t.unit&&(o=l.year),"month"===t.unit&&(o=l.month),"day"===t.unit&&(o=l.day),"hour"===t.unit&&(o=l.hour),"minute"===t.unit&&(o=l.minute),"second"===t.unit&&(o=l.second),a=s.formatDate(n,o)}else a=s.formatDate(n,i.config.xaxis.labels.format);return{dateString:r,position:t.position,value:a,unit:t.unit,year:t.year,month:t.month}}))}},{key:"removeOverlappingTS",value:function(t){var e,i=this,a=new b(this.ctx),s=!1;t.length>0&&t[0].value&&t.every((function(e){return e.value.length===t[0].value.length}))&&(s=!0,e=a.getTextRects(t[0].value).width);var r=0,n=t.map((function(n,o){if(o>0&&i.w.config.xaxis.labels.hideOverlappingLabels){var l=s?e:a.getTextRects(t[r].value).width,h=t[r].position;return n.position>h+l+10?(r=o,n):null}return n}));return n=n.filter((function(t){return null!==t}))}},{key:"_getYear",value:function(t,e,i){return t+Math.floor(e/12)+i}}]),t}(),Xt=function(){function t(i,a){e(this,t),this.ctx=a,this.w=a.w,this.el=i}return a(t,[{key:"setupElements",value:function(){var t=this.w.globals,e=this.w.config,i=e.chart.type;t.axisCharts=["line","area","bar","rangeBar","candlestick","boxPlot","scatter","bubble","radar","heatmap","treemap"].indexOf(i)>-1,t.xyCharts=["line","area","bar","rangeBar","candlestick","boxPlot","scatter","bubble"].indexOf(i)>-1,t.isBarHorizontal=("bar"===e.chart.type||"rangeBar"===e.chart.type)&&e.plotOptions.bar.horizontal,t.chartClass=".apexcharts"+t.chartID,t.dom.baseEl=this.el,t.dom.elWrap=document.createElement("div"),b.setAttrs(t.dom.elWrap,{id:t.chartClass.substring(1),class:"apexcharts-canvas "+t.chartClass.substring(1)}),this.el.appendChild(t.dom.elWrap),t.dom.Paper=new window.SVG.Doc(t.dom.elWrap),t.dom.Paper.attr({class:"apexcharts-svg","xmlns:data":"ApexChartsNS",transform:"translate(".concat(e.chart.offsetX,", ").concat(e.chart.offsetY,")")}),t.dom.Paper.node.style.background=e.chart.background,this.setSVGDimensions(),t.dom.elGraphical=t.dom.Paper.group().attr({class:"apexcharts-inner apexcharts-graphical"}),t.dom.elAnnotations=t.dom.Paper.group().attr({class:"apexcharts-annotations"}),t.dom.elDefs=t.dom.Paper.defs(),t.dom.elLegendWrap=document.createElement("div"),t.dom.elLegendWrap.classList.add("apexcharts-legend"),t.dom.elWrap.appendChild(t.dom.elLegendWrap),t.dom.Paper.add(t.dom.elGraphical),t.dom.elGraphical.add(t.dom.elDefs)}},{key:"plotChartType",value:function(t,e){var i=this.w,a=i.config,s=i.globals,r={series:[],i:[]},n={series:[],i:[]},o={series:[],i:[]},l={series:[],i:[]},h={series:[],i:[]},c={series:[],i:[]},d={series:[],i:[]};s.series.map((function(e,g){var u=0;void 0!==t[g].type?("column"===t[g].type||"bar"===t[g].type?(s.series.length>1&&a.plotOptions.bar.horizontal&&console.warn("Horizontal bars are not supported in a mixed/combo chart. Please turn off `plotOptions.bar.horizontal`"),h.series.push(e),h.i.push(g),u++,i.globals.columnSeries=h.series):"area"===t[g].type?(n.series.push(e),n.i.push(g),u++):"line"===t[g].type?(r.series.push(e),r.i.push(g),u++):"scatter"===t[g].type?(o.series.push(e),o.i.push(g)):"bubble"===t[g].type?(l.series.push(e),l.i.push(g),u++):"candlestick"===t[g].type?(c.series.push(e),c.i.push(g),u++):"boxPlot"===t[g].type?(d.series.push(e),d.i.push(g),u++):console.warn("You have specified an unrecognized chart type. Available types for this property are line/area/column/bar/scatter/bubble"),u>1&&(s.comboCharts=!0)):(r.series.push(e),r.i.push(g))}));var g=new Pt(this.ctx,e),u=new vt(this.ctx,e);this.ctx.pie=new At(this.ctx);var f=new Ct(this.ctx);this.ctx.rangeBar=new F(this.ctx,e);var p=new St(this.ctx),x=[];if(s.comboCharts){if(n.series.length>0&&x.push(g.draw(n.series,"area",n.i)),h.series.length>0)if(i.config.chart.stacked){var b=new mt(this.ctx,e);x.push(b.draw(h.series,h.i))}else this.ctx.bar=new X(this.ctx,e),x.push(this.ctx.bar.draw(h.series,h.i));if(r.series.length>0&&x.push(g.draw(r.series,"line",r.i)),c.series.length>0&&x.push(u.draw(c.series,c.i)),d.series.length>0&&x.push(u.draw(d.series,d.i)),o.series.length>0){var m=new Pt(this.ctx,e,!0);x.push(m.draw(o.series,"scatter",o.i))}if(l.series.length>0){var v=new Pt(this.ctx,e,!0);x.push(v.draw(l.series,"bubble",l.i))}}else switch(a.chart.type){case"line":x=g.draw(s.series,"line");break;case"area":x=g.draw(s.series,"area");break;case"bar":if(a.chart.stacked)x=new mt(this.ctx,e).draw(s.series);else this.ctx.bar=new X(this.ctx,e),x=this.ctx.bar.draw(s.series);break;case"candlestick":x=new vt(this.ctx,e).draw(s.series);break;case"boxPlot":x=new vt(this.ctx,e).draw(s.series);break;case"rangeBar":x=this.ctx.rangeBar.draw(s.series);break;case"heatmap":x=new wt(this.ctx,e).draw(s.series);break;case"treemap":x=new It(this.ctx,e).draw(s.series);break;case"pie":case"donut":case"polarArea":x=this.ctx.pie.draw(s.series);break;case"radialBar":x=f.draw(s.series);break;case"radar":x=p.draw(s.series);break;default:x=g.draw(s.series)}return x}},{key:"setSVGDimensions",value:function(){var t=this.w.globals,e=this.w.config;t.svgWidth=e.chart.width,t.svgHeight=e.chart.height;var i=f.getDimensions(this.el),a=e.chart.width.toString().split(/[0-9]+/g).pop();"%"===a?f.isNumber(i[0])&&(0===i[0].width&&(i=f.getDimensions(this.el.parentNode)),t.svgWidth=i[0]*parseInt(e.chart.width,10)/100):"px"!==a&&""!==a||(t.svgWidth=parseInt(e.chart.width,10));var s=e.chart.height.toString().split(/[0-9]+/g).pop();if("auto"!==t.svgHeight&&""!==t.svgHeight)if("%"===s){var r=f.getDimensions(this.el.parentNode);t.svgHeight=r[1]*parseInt(e.chart.height,10)/100}else t.svgHeight=parseInt(e.chart.height,10);else t.axisCharts?t.svgHeight=t.svgWidth/1.61:t.svgHeight=t.svgWidth/1.2;if(t.svgWidth<0&&(t.svgWidth=0),t.svgHeight<0&&(t.svgHeight=0),b.setAttrs(t.dom.Paper.node,{width:t.svgWidth,height:t.svgHeight}),"%"!==s){var n=e.chart.sparkline.enabled?0:t.axisCharts?e.chart.parentHeightOffset:0;t.dom.Paper.node.parentNode.parentNode.style.minHeight=t.svgHeight+n+"px"}t.dom.elWrap.style.width=t.svgWidth+"px",t.dom.elWrap.style.height=t.svgHeight+"px"}},{key:"shiftGraphPosition",value:function(){var t=this.w.globals,e=t.translateY,i={transform:"translate("+t.translateX+", "+e+")"};b.setAttrs(t.dom.elGraphical.node,i)}},{key:"resizeNonAxisCharts",value:function(){var t=this.w,e=t.globals,i=0,a=t.config.chart.sparkline.enabled?1:15;a+=t.config.grid.padding.bottom,"top"!==t.config.legend.position&&"bottom"!==t.config.legend.position||!t.config.legend.show||t.config.legend.floating||(i=new lt(this.ctx).legendHelpers.getLegendBBox().clwh+10);var s=t.globals.dom.baseEl.querySelector(".apexcharts-radialbar, .apexcharts-pie"),r=2.05*t.globals.radialSize;if(s&&!t.config.chart.sparkline.enabled){var n=f.getBoundingClientRect(s);r=n.bottom;var o=n.bottom-n.top;r=Math.max(2.05*t.globals.radialSize,o)}var l=r+e.translateY+i+a;e.dom.elLegendForeign&&e.dom.elLegendForeign.setAttribute("height",l),e.dom.elWrap.style.height=l+"px",b.setAttrs(e.dom.Paper.node,{height:l}),e.dom.Paper.node.parentNode.parentNode.style.minHeight=l+"px"}},{key:"coreCalculations",value:function(){new U(this.ctx).init()}},{key:"resetGlobals",value:function(){var t=this,e=function(){return t.w.config.series.map((function(t){return[]}))},i=new H,a=this.w.globals;i.initGlobalVars(a),a.seriesXvalues=e(),a.seriesYvalues=e()}},{key:"isMultipleY",value:function(){if(this.w.config.yaxis.constructor===Array&&this.w.config.yaxis.length>1)return this.w.globals.isMultipleYAxis=!0,!0}},{key:"xySettings",value:function(){var t=null,e=this.w;if(e.globals.axisCharts){if("back"===e.config.xaxis.crosshairs.position)new Q(this.ctx).drawXCrosshairs();if("back"===e.config.yaxis[0].crosshairs.position)new Q(this.ctx).drawYCrosshairs();if("datetime"===e.config.xaxis.type&&void 0===e.config.xaxis.labels.formatter){this.ctx.timeScale=new Et(this.ctx);var i=[];isFinite(e.globals.minX)&&isFinite(e.globals.maxX)&&!e.globals.isBarHorizontal?i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minX,e.globals.maxX):e.globals.isBarHorizontal&&(i=this.ctx.timeScale.calculateTimeScaleTicks(e.globals.minY,e.globals.maxY)),this.ctx.timeScale.recalcDimensionsBasedOnFormat(i)}t=new y(this.ctx).getCalculatedRatios()}return t}},{key:"updateSourceChart",value:function(t){this.ctx.w.globals.selection=void 0,this.ctx.updateHelpers._updateOptions({chart:{selection:{xaxis:{min:t.w.globals.minX,max:t.w.globals.maxX}}}},!1,!1)}},{key:"setupBrushHandler",value:function(){var t=this,e=this.w;if(e.config.chart.brush.enabled&&"function"!=typeof e.config.chart.events.selection){var i=e.config.chart.brush.targets||[e.config.chart.brush.target];i.forEach((function(e){var i=ApexCharts.getChartByID(e);i.w.globals.brushSource=t.ctx,"function"!=typeof i.w.config.chart.events.zoomed&&(i.w.config.chart.events.zoomed=function(){t.updateSourceChart(i)}),"function"!=typeof i.w.config.chart.events.scrolled&&(i.w.config.chart.events.scrolled=function(){t.updateSourceChart(i)})})),e.config.chart.events.selection=function(t,a){i.forEach((function(t){var i=ApexCharts.getChartByID(t),s=f.clone(e.config.yaxis);if(e.config.chart.brush.autoScaleYaxis&&1===i.w.globals.series.length){var r=new j(i);s=r.autoScaleY(i,s,a)}var o=i.w.config.yaxis.reduce((function(t,e,a){return[].concat(g(t),[n(n({},i.w.config.yaxis[a]),{},{min:s[0].min,max:s[0].max})])}),[]);i.ctx.updateHelpers._updateOptions({xaxis:{min:a.xaxis.min,max:a.xaxis.max},yaxis:o},!1,!1,!1,!1)}))}}}}]),t}(),Yt=function(){function i(t){e(this,i),this.ctx=t,this.w=t.w}return a(i,[{key:"_updateOptions",value:function(e){var i=this,a=arguments.length>1&&void 0!==arguments[1]&&arguments[1],s=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],r=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],n=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o=[this.ctx];r&&(o=this.ctx.getSyncedCharts()),this.ctx.w.globals.isExecCalled&&(o=[this.ctx],this.ctx.w.globals.isExecCalled=!1),o.forEach((function(r){var o=r.w;return o.globals.shouldAnimate=s,a||(o.globals.resized=!0,o.globals.dataChanged=!0,s&&r.series.getPreviousPaths()),e&&"object"===t(e)&&(r.config=new D(e),e=y.extendArrayProps(r.config,e,o),r.w.globals.chartID!==i.ctx.w.globals.chartID&&delete e.series,o.config=f.extend(o.config,e),n&&(o.globals.lastXAxis=e.xaxis?f.clone(e.xaxis):[],o.globals.lastYAxis=e.yaxis?f.clone(e.yaxis):[],o.globals.initialConfig=f.extend({},o.config),o.globals.initialSeries=f.clone(o.config.series))),r.update(e)}))}},{key:"_updateSeries",value:function(t,e){var i,a=this,s=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=this.w;return r.globals.shouldAnimate=e,r.globals.dataChanged=!0,e&&this.ctx.series.getPreviousPaths(),r.globals.axisCharts?(0===(i=t.map((function(t,e){return a._extendSeries(t,e)}))).length&&(i=[{data:[]}]),r.config.series=i):r.config.series=t.slice(),s&&(r.globals.initialSeries=f.clone(r.config.series)),this.ctx.update()}},{key:"_extendSeries",value:function(t,e){var i=this.w,a=i.config.series[e];return n(n({},i.config.series[e]),{},{name:t.name?t.name:a&&a.name,color:t.color?t.color:a&&a.color,type:t.type?t.type:a&&a.type,data:t.data?t.data:a&&a.data})}},{key:"toggleDataPointSelection",value:function(t,e){var i=this.w,a=null,s=".apexcharts-series[data\\:realIndex='".concat(t,"']");return i.globals.axisCharts?a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(e,"'], ").concat(s," circle[j='").concat(e,"'], ").concat(s," rect[j='").concat(e,"']")).members[0]:void 0===e&&(a=i.globals.dom.Paper.select("".concat(s," path[j='").concat(t,"']")).members[0],"pie"!==i.config.chart.type&&"polarArea"!==i.config.chart.type&&"donut"!==i.config.chart.type||this.ctx.pie.pieClicked(t)),a?(new b(this.ctx).pathMouseDown(a,null),a.node?a.node:null):(console.warn("toggleDataPointSelection: Element not found"),null)}},{key:"forceXAxisUpdate",value:function(t){var e=this.w;if(["min","max"].forEach((function(i){void 0!==t.xaxis[i]&&(e.config.xaxis[i]=t.xaxis[i],e.globals.lastXAxis[i]=t.xaxis[i])})),t.xaxis.categories&&t.xaxis.categories.length&&(e.config.xaxis.categories=t.xaxis.categories),e.config.xaxis.convertedCatToNumeric){var i=new R(t);t=i.convertCatToNumericXaxis(t,this.ctx)}return t}},{key:"forceYAxisUpdate",value:function(t){var e=this.w;return e.config.chart.stacked&&"100%"===e.config.chart.stackType&&(Array.isArray(t.yaxis)?t.yaxis.forEach((function(e,i){t.yaxis[i].min=0,t.yaxis[i].max=100})):(t.yaxis.min=0,t.yaxis.max=100)),t}},{key:"revertDefaultAxisMinMax",value:function(t){var e=this,i=this.w,a=i.globals.lastXAxis,s=i.globals.lastYAxis;t&&t.xaxis&&(a=t.xaxis),t&&t.yaxis&&(s=t.yaxis),i.config.xaxis.min=a.min,i.config.xaxis.max=a.max;var r=function(t){void 0!==s[t]&&(i.config.yaxis[t].min=s[t].min,i.config.yaxis[t].max=s[t].max)};i.config.yaxis.map((function(t,a){i.globals.zoomed||void 0!==s[a]?r(a):void 0!==e.ctx.opts.yaxis[a]&&(t.min=e.ctx.opts.yaxis[a].min,t.max=e.ctx.opts.yaxis[a].max)}))}}]),i}();Tt="undefined"!=typeof window?window:void 0,zt=function(e,i){var a=(void 0!==this?this:e).SVG=function(t){if(a.supported)return t=new a.Doc(t),a.parser.draw||a.prepare(),t};if(a.ns="http://www.w3.org/2000/svg",a.xmlns="http://www.w3.org/2000/xmlns/",a.xlink="http://www.w3.org/1999/xlink",a.svgjs="http://svgjs.com/svgjs",a.supported=!0,!a.supported)return!1;a.did=1e3,a.eid=function(t){return"Svgjs"+d(t)+a.did++},a.create=function(t){var e=i.createElementNS(this.ns,t);return e.setAttribute("id",this.eid(t)),e},a.extend=function(){var t,e;e=(t=[].slice.call(arguments)).pop();for(var i=t.length-1;i>=0;i--)if(t[i])for(var s in e)t[i].prototype[s]=e[s];a.Set&&a.Set.inherit&&a.Set.inherit()},a.invent=function(t){var e="function"==typeof t.create?t.create:function(){this.constructor.call(this,a.create(t.create))};return t.inherit&&(e.prototype=new t.inherit),t.extend&&a.extend(e,t.extend),t.construct&&a.extend(t.parent||a.Container,t.construct),e},a.adopt=function(t){return t?t.instance?t.instance:((i="svg"==t.nodeName?t.parentNode instanceof e.SVGElement?new a.Nested:new a.Doc:"linearGradient"==t.nodeName?new a.Gradient("linear"):"radialGradient"==t.nodeName?new a.Gradient("radial"):a[d(t.nodeName)]?new(a[d(t.nodeName)]):new a.Element(t)).type=t.nodeName,i.node=t,t.instance=i,i instanceof a.Doc&&i.namespace().defs(),i.setData(JSON.parse(t.getAttribute("svgjs:data"))||{}),i):null;var i},a.prepare=function(){var t=i.getElementsByTagName("body")[0],e=(t?new a.Doc(t):a.adopt(i.documentElement).nested()).size(2,0);a.parser={body:t||i.documentElement,draw:e.style("opacity:0;position:absolute;left:-100%;top:-100%;overflow:hidden").node,poly:e.polyline().node,path:e.path().node,native:a.create("svg")}},a.parser={native:a.create("svg")},i.addEventListener("DOMContentLoaded",(function(){a.parser.draw||a.prepare()}),!1),a.regex={numberAndUnit:/^([+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?)([a-z%]*)$/i,hex:/^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i,rgb:/rgb\((\d+),(\d+),(\d+)\)/,reference:/#([a-z0-9\-_]+)/i,transforms:/\)\s*,?\s*/,whitespace:/\s/g,isHex:/^#[a-f0-9]{3,6}$/i,isRgb:/^rgb\(/,isCss:/[^:]+:[^;]+;?/,isBlank:/^(\s+)?$/,isNumber:/^[+-]?(\d+(\.\d*)?|\.\d+)(e[+-]?\d+)?$/i,isPercent:/^-?[\d\.]+%$/,isImage:/\.(jpg|jpeg|png|gif|svg)(\?[^=]+.*)?/i,delimiter:/[\s,]+/,hyphen:/([^e])\-/gi,pathLetters:/[MLHVCSQTAZ]/gi,isPathLetter:/[MLHVCSQTAZ]/i,numbersWithDots:/((\d?\.\d+(?:e[+-]?\d+)?)((?:\.\d+(?:e[+-]?\d+)?)+))+/gi,dots:/\./g},a.utils={map:function(t,e){for(var i=t.length,a=[],s=0;s<i;s++)a.push(e(t[s]));return a},filter:function(t,e){for(var i=t.length,a=[],s=0;s<i;s++)e(t[s])&&a.push(t[s]);return a},filterSVGElements:function(t){return this.filter(t,(function(t){return t instanceof e.SVGElement}))}},a.defaults={attrs:{"fill-opacity":1,"stroke-opacity":1,"stroke-width":0,"stroke-linejoin":"miter","stroke-linecap":"butt",fill:"#000000",stroke:"#000000",opacity:1,x:0,y:0,cx:0,cy:0,width:0,height:0,r:0,rx:0,ry:0,offset:0,"stop-opacity":1,"stop-color":"#000000","font-size":16,"font-family":"Helvetica, Arial, sans-serif","text-anchor":"start"}},a.Color=function(e){var i,s;this.r=0,this.g=0,this.b=0,e&&("string"==typeof e?a.regex.isRgb.test(e)?(i=a.regex.rgb.exec(e.replace(a.regex.whitespace,"")),this.r=parseInt(i[1]),this.g=parseInt(i[2]),this.b=parseInt(i[3])):a.regex.isHex.test(e)&&(i=a.regex.hex.exec(4==(s=e).length?["#",s.substring(1,2),s.substring(1,2),s.substring(2,3),s.substring(2,3),s.substring(3,4),s.substring(3,4)].join(""):s),this.r=parseInt(i[1],16),this.g=parseInt(i[2],16),this.b=parseInt(i[3],16)):"object"===t(e)&&(this.r=e.r,this.g=e.g,this.b=e.b))},a.extend(a.Color,{toString:function(){return this.toHex()},toHex:function(){return"#"+g(this.r)+g(this.g)+g(this.b)},toRgb:function(){return"rgb("+[this.r,this.g,this.b].join()+")"},brightness:function(){return this.r/255*.3+this.g/255*.59+this.b/255*.11},morph:function(t){return this.destination=new a.Color(t),this},at:function(t){return this.destination?(t=t<0?0:t>1?1:t,new a.Color({r:~~(this.r+(this.destination.r-this.r)*t),g:~~(this.g+(this.destination.g-this.g)*t),b:~~(this.b+(this.destination.b-this.b)*t)})):this}}),a.Color.test=function(t){return t+="",a.regex.isHex.test(t)||a.regex.isRgb.test(t)},a.Color.isRgb=function(t){return t&&"number"==typeof t.r&&"number"==typeof t.g&&"number"==typeof t.b},a.Color.isColor=function(t){return a.Color.isRgb(t)||a.Color.test(t)},a.Array=function(t,e){0==(t=(t||[]).valueOf()).length&&e&&(t=e.valueOf()),this.value=this.parse(t)},a.extend(a.Array,{toString:function(){return this.value.join(" ")},valueOf:function(){return this.value},parse:function(t){return t=t.valueOf(),Array.isArray(t)?t:this.split(t)}}),a.PointArray=function(t,e){a.Array.call(this,t,e||[[0,0]])},a.PointArray.prototype=new a.Array,a.PointArray.prototype.constructor=a.PointArray;for(var s={M:function(t,e,i){return e.x=i.x=t[0],e.y=i.y=t[1],["M",e.x,e.y]},L:function(t,e){return e.x=t[0],e.y=t[1],["L",t[0],t[1]]},H:function(t,e){return e.x=t[0],["H",t[0]]},V:function(t,e){return e.y=t[0],["V",t[0]]},C:function(t,e){return e.x=t[4],e.y=t[5],["C",t[0],t[1],t[2],t[3],t[4],t[5]]},Q:function(t,e){return e.x=t[2],e.y=t[3],["Q",t[0],t[1],t[2],t[3]]},Z:function(t,e,i){return e.x=i.x,e.y=i.y,["Z"]}},r="mlhvqtcsaz".split(""),n=0,o=r.length;n<o;++n)s[r[n]]=function(t){return function(e,i,a){if("H"==t)e[0]=e[0]+i.x;else if("V"==t)e[0]=e[0]+i.y;else if("A"==t)e[5]=e[5]+i.x,e[6]=e[6]+i.y;else for(var r=0,n=e.length;r<n;++r)e[r]=e[r]+(r%2?i.y:i.x);return s[t](e,i,a)}}(r[n].toUpperCase());a.PathArray=function(t,e){a.Array.call(this,t,e||[["M",0,0]])},a.PathArray.prototype=new a.Array,a.PathArray.prototype.constructor=a.PathArray,a.extend(a.PathArray,{toString:function(){return function(t){for(var e=0,i=t.length,a="";e<i;e++)a+=t[e][0],null!=t[e][1]&&(a+=t[e][1],null!=t[e][2]&&(a+=" ",a+=t[e][2],null!=t[e][3]&&(a+=" ",a+=t[e][3],a+=" ",a+=t[e][4],null!=t[e][5]&&(a+=" ",a+=t[e][5],a+=" ",a+=t[e][6],null!=t[e][7]&&(a+=" ",a+=t[e][7])))));return a+" "}(this.value)},move:function(t,e){var i=this.bbox();return i.x,i.y,this},at:function(t){if(!this.destination)return this;for(var e=this.value,i=this.destination.value,s=[],r=new a.PathArray,n=0,o=e.length;n<o;n++){s[n]=[e[n][0]];for(var l=1,h=e[n].length;l<h;l++)s[n][l]=e[n][l]+(i[n][l]-e[n][l])*t;"A"===s[n][0]&&(s[n][4]=+(0!=s[n][4]),s[n][5]=+(0!=s[n][5]))}return r.value=s,r},parse:function(t){if(t instanceof a.PathArray)return t.valueOf();var e,i={M:2,L:2,H:1,V:1,C:6,S:4,Q:4,T:2,A:7,Z:0};t="string"==typeof t?t.replace(a.regex.numbersWithDots,h).replace(a.regex.pathLetters," $& ").replace(a.regex.hyphen,"$1 -").trim().split(a.regex.delimiter):t.reduce((function(t,e){return[].concat.call(t,e)}),[]);var r=[],n=new a.Point,o=new a.Point,l=0,c=t.length;do{a.regex.isPathLetter.test(t[l])?(e=t[l],++l):"M"==e?e="L":"m"==e&&(e="l"),r.push(s[e].call(null,t.slice(l,l+=i[e.toUpperCase()]).map(parseFloat),n,o))}while(c>l);return r},bbox:function(){return a.parser.draw||a.prepare(),a.parser.path.setAttribute("d",this.toString()),a.parser.path.getBBox()}}),a.Number=a.invent({create:function(t,e){this.value=0,this.unit=e||"","number"==typeof t?this.value=isNaN(t)?0:isFinite(t)?t:t<0?-34e37:34e37:"string"==typeof t?(e=t.match(a.regex.numberAndUnit))&&(this.value=parseFloat(e[1]),"%"==e[5]?this.value/=100:"s"==e[5]&&(this.value*=1e3),this.unit=e[5]):t instanceof a.Number&&(this.value=t.valueOf(),this.unit=t.unit)},extend:{toString:function(){return("%"==this.unit?~~(1e8*this.value)/1e6:"s"==this.unit?this.value/1e3:this.value)+this.unit},toJSON:function(){return this.toString()},valueOf:function(){return this.value},plus:function(t){return t=new a.Number(t),new a.Number(this+t,this.unit||t.unit)},minus:function(t){return t=new a.Number(t),new a.Number(this-t,this.unit||t.unit)},times:function(t){return t=new a.Number(t),new a.Number(this*t,this.unit||t.unit)},divide:function(t){return t=new a.Number(t),new a.Number(this/t,this.unit||t.unit)},to:function(t){var e=new a.Number(this);return"string"==typeof t&&(e.unit=t),e},morph:function(t){return this.destination=new a.Number(t),t.relative&&(this.destination.value+=this.value),this},at:function(t){return this.destination?new a.Number(this.destination).minus(this).times(t).plus(this):this}}}),a.Element=a.invent({create:function(t){this._stroke=a.defaults.attrs.stroke,this._event=null,this.dom={},(this.node=t)&&(this.type=t.nodeName,this.node.instance=this,this._stroke=t.getAttribute("stroke")||this._stroke)},extend:{x:function(t){return this.attr("x",t)},y:function(t){return this.attr("y",t)},cx:function(t){return null==t?this.x()+this.width()/2:this.x(t-this.width()/2)},cy:function(t){return null==t?this.y()+this.height()/2:this.y(t-this.height()/2)},move:function(t,e){return this.x(t).y(e)},center:function(t,e){return this.cx(t).cy(e)},width:function(t){return this.attr("width",t)},height:function(t){return this.attr("height",t)},size:function(t,e){var i=u(this,t,e);return this.width(new a.Number(i.width)).height(new a.Number(i.height))},clone:function(t){this.writeDataToDom();var e=x(this.node.cloneNode(!0));return t?t.add(e):this.after(e),e},remove:function(){return this.parent()&&this.parent().removeElement(this),this},replace:function(t){return this.after(t).remove(),t},addTo:function(t){return t.put(this)},putIn:function(t){return t.add(this)},id:function(t){return this.attr("id",t)},show:function(){return this.style("display","")},hide:function(){return this.style("display","none")},visible:function(){return"none"!=this.style("display")},toString:function(){return this.attr("id")},classes:function(){var t=this.attr("class");return null==t?[]:t.trim().split(a.regex.delimiter)},hasClass:function(t){return-1!=this.classes().indexOf(t)},addClass:function(t){if(!this.hasClass(t)){var e=this.classes();e.push(t),this.attr("class",e.join(" "))}return this},removeClass:function(t){return this.hasClass(t)&&this.attr("class",this.classes().filter((function(e){return e!=t})).join(" ")),this},toggleClass:function(t){return this.hasClass(t)?this.removeClass(t):this.addClass(t)},reference:function(t){return a.get(this.attr(t))},parent:function(t){var i=this;if(!i.node.parentNode)return null;if(i=a.adopt(i.node.parentNode),!t)return i;for(;i&&i.node instanceof e.SVGElement;){if("string"==typeof t?i.matches(t):i instanceof t)return i;if(!i.node.parentNode||"#document"==i.node.parentNode.nodeName)return null;i=a.adopt(i.node.parentNode)}},doc:function(){return this instanceof a.Doc?this:this.parent(a.Doc)},parents:function(t){var e=[],i=this;do{if(!(i=i.parent(t))||!i.node)break;e.push(i)}while(i.parent);return e},matches:function(t){return function(t,e){return(t.matches||t.matchesSelector||t.msMatchesSelector||t.mozMatchesSelector||t.webkitMatchesSelector||t.oMatchesSelector).call(t,e)}(this.node,t)},native:function(){return this.node},svg:function(t){var e=i.createElement("svg");if(!(t&&this instanceof a.Parent))return e.appendChild(t=i.createElement("svg")),this.writeDataToDom(),t.appendChild(this.node.cloneNode(!0)),e.innerHTML.replace(/^<svg>/,"").replace(/<\/svg>$/,"");e.innerHTML="<svg>"+t.replace(/\n/,"").replace(/<([\w:-]+)([^<]+?)\/>/g,"<$1$2></$1>")+"</svg>";for(var s=0,r=e.firstChild.childNodes.length;s<r;s++)this.node.appendChild(e.firstChild.firstChild);return this},writeDataToDom:function(){return(this.each||this.lines)&&(this.each?this:this.lines()).each((function(){this.writeDataToDom()})),this.node.removeAttribute("svgjs:data"),Object.keys(this.dom).length&&this.node.setAttribute("svgjs:data",JSON.stringify(this.dom)),this},setData:function(t){return this.dom=t,this},is:function(t){return function(t,e){return t instanceof e}(this,t)}}}),a.easing={"-":function(t){return t},"<>":function(t){return-Math.cos(t*Math.PI)/2+.5},">":function(t){return Math.sin(t*Math.PI/2)},"<":function(t){return 1-Math.cos(t*Math.PI/2)}},a.morph=function(t){return function(e,i){return new a.MorphObj(e,i).at(t)}},a.Situation=a.invent({create:function(t){this.init=!1,this.reversed=!1,this.reversing=!1,this.duration=new a.Number(t.duration).valueOf(),this.delay=new a.Number(t.delay).valueOf(),this.start=+new Date+this.delay,this.finish=this.start+this.duration,this.ease=t.ease,this.loop=0,this.loops=!1,this.animations={},this.attrs={},this.styles={},this.transforms=[],this.once={}}}),a.FX=a.invent({create:function(t){this._target=t,this.situations=[],this.active=!1,this.situation=null,this.paused=!1,this.lastPos=0,this.pos=0,this.absPos=0,this._speed=1},extend:{animate:function(e,i,s){"object"===t(e)&&(i=e.ease,s=e.delay,e=e.duration);var r=new a.Situation({duration:e||1e3,delay:s||0,ease:a.easing[i||"-"]||i});return this.queue(r),this},target:function(t){return t&&t instanceof a.Element?(this._target=t,this):this._target},timeToAbsPos:function(t){return(t-this.situation.start)/(this.situation.duration/this._speed)},absPosToTime:function(t){return this.situation.duration/this._speed*t+this.situation.start},startAnimFrame:function(){this.stopAnimFrame(),this.animationFrame=e.requestAnimationFrame(function(){this.step()}.bind(this))},stopAnimFrame:function(){e.cancelAnimationFrame(this.animationFrame)},start:function(){return!this.active&&this.situation&&(this.active=!0,this.startCurrent()),this},startCurrent:function(){return this.situation.start=+new Date+this.situation.delay/this._speed,this.situation.finish=this.situation.start+this.situation.duration/this._speed,this.initAnimations().step()},queue:function(t){return("function"==typeof t||t instanceof a.Situation)&&this.situations.push(t),this.situation||(this.situation=this.situations.shift()),this},dequeue:function(){return this.stop(),this.situation=this.situations.shift(),this.situation&&(this.situation instanceof a.Situation?this.start():this.situation.call(this)),this},initAnimations:function(){var t,e=this.situation;if(e.init)return this;for(var i in e.animations){t=this.target()[i](),Array.isArray(t)||(t=[t]),Array.isArray(e.animations[i])||(e.animations[i]=[e.animations[i]]);for(var s=t.length;s--;)e.animations[i][s]instanceof a.Number&&(t[s]=new a.Number(t[s])),e.animations[i][s]=t[s].morph(e.animations[i][s])}for(var i in e.attrs)e.attrs[i]=new a.MorphObj(this.target().attr(i),e.attrs[i]);for(var i in e.styles)e.styles[i]=new a.MorphObj(this.target().style(i),e.styles[i]);return e.initialTransformation=this.target().matrixify(),e.init=!0,this},clearQueue:function(){return this.situations=[],this},clearCurrent:function(){return this.situation=null,this},stop:function(t,e){var i=this.active;return this.active=!1,e&&this.clearQueue(),t&&this.situation&&(!i&&this.startCurrent(),this.atEnd()),this.stopAnimFrame(),this.clearCurrent()},after:function(t){var e=this.last();return this.target().on("finished.fx",(function i(a){a.detail.situation==e&&(t.call(this,e),this.off("finished.fx",i))})),this._callStart()},during:function(t){var e=this.last(),i=function(i){i.detail.situation==e&&t.call(this,i.detail.pos,a.morph(i.detail.pos),i.detail.eased,e)};return this.target().off("during.fx",i).on("during.fx",i),this.after((function(){this.off("during.fx",i)})),this._callStart()},afterAll:function(t){var e=function e(i){t.call(this),this.off("allfinished.fx",e)};return this.target().off("allfinished.fx",e).on("allfinished.fx",e),this._callStart()},last:function(){return this.situations.length?this.situations[this.situations.length-1]:this.situation},add:function(t,e,i){return this.last()[i||"animations"][t]=e,this._callStart()},step:function(t){var e,i,a;t||(this.absPos=this.timeToAbsPos(+new Date)),!1!==this.situation.loops?(e=Math.max(this.absPos,0),i=Math.floor(e),!0===this.situation.loops||i<this.situation.loops?(this.pos=e-i,a=this.situation.loop,this.situation.loop=i):(this.absPos=this.situation.loops,this.pos=1,a=this.situation.loop-1,this.situation.loop=this.situation.loops),this.situation.reversing&&(this.situation.reversed=this.situation.reversed!=Boolean((this.situation.loop-a)%2))):(this.absPos=Math.min(this.absPos,1),this.pos=this.absPos),this.pos<0&&(this.pos=0),this.situation.reversed&&(this.pos=1-this.pos);var s=this.situation.ease(this.pos);for(var r in this.situation.once)r>this.lastPos&&r<=s&&(this.situation.once[r].call(this.target(),this.pos,s),delete this.situation.once[r]);return this.active&&this.target().fire("during",{pos:this.pos,eased:s,fx:this,situation:this.situation}),this.situation?(this.eachAt(),1==this.pos&&!this.situation.reversed||this.situation.reversed&&0==this.pos?(this.stopAnimFrame(),this.target().fire("finished",{fx:this,situation:this.situation}),this.situations.length||(this.target().fire("allfinished"),this.situations.length||(this.target().off(".fx"),this.active=!1)),this.active?this.dequeue():this.clearCurrent()):!this.paused&&this.active&&this.startAnimFrame(),this.lastPos=s,this):this},eachAt:function(){var t,e=this,i=this.target(),s=this.situation;for(var r in s.animations)t=[].concat(s.animations[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),i[r].apply(i,t);for(var r in s.attrs)t=[r].concat(s.attrs[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),i.attr.apply(i,t);for(var r in s.styles)t=[r].concat(s.styles[r]).map((function(t){return"string"!=typeof t&&t.at?t.at(s.ease(e.pos),e.pos):t})),i.style.apply(i,t);if(s.transforms.length){t=s.initialTransformation,r=0;for(var n=s.transforms.length;r<n;r++){var o=s.transforms[r];o instanceof a.Matrix?t=o.relative?t.multiply((new a.Matrix).morph(o).at(s.ease(this.pos))):t.morph(o).at(s.ease(this.pos)):(o.relative||o.undo(t.extract()),t=t.multiply(o.at(s.ease(this.pos))))}i.matrix(t)}return this},once:function(t,e,i){var a=this.last();return i||(t=a.ease(t)),a.once[t]=e,this},_callStart:function(){return setTimeout(function(){this.start()}.bind(this),0),this}},parent:a.Element,construct:{animate:function(t,e,i){return(this.fx||(this.fx=new a.FX(this))).animate(t,e,i)},delay:function(t){return(this.fx||(this.fx=new a.FX(this))).delay(t)},stop:function(t,e){return this.fx&&this.fx.stop(t,e),this},finish:function(){return this.fx&&this.fx.finish(),this}}}),a.MorphObj=a.invent({create:function(t,e){return a.Color.isColor(e)?new a.Color(t).morph(e):a.regex.delimiter.test(t)?a.regex.pathLetters.test(t)?new a.PathArray(t).morph(e):new a.Array(t).morph(e):a.regex.numberAndUnit.test(e)?new a.Number(t).morph(e):(this.value=t,void(this.destination=e))},extend:{at:function(t,e){return e<1?this.value:this.destination},valueOf:function(){return this.value}}}),a.extend(a.FX,{attr:function(e,i,a){if("object"===t(e))for(var s in e)this.attr(s,e[s]);else this.add(e,i,"attrs");return this},plot:function(t,e,i,a){return 4==arguments.length?this.plot([t,e,i,a]):this.add("plot",new(this.target().morphArray)(t))}}),a.Box=a.invent({create:function(e,i,s,r){if(!("object"!==t(e)||e instanceof a.Element))return a.Box.call(this,null!=e.left?e.left:e.x,null!=e.top?e.top:e.y,e.width,e.height);4==arguments.length&&(this.x=e,this.y=i,this.width=s,this.height=r),b(this)}}),a.BBox=a.invent({create:function(t){if(a.Box.apply(this,[].slice.call(arguments)),t instanceof a.Element){var e;try{if(!i.documentElement.contains){for(var s=t.node;s.parentNode;)s=s.parentNode;if(s!=i)throw new Error("Element not in the dom")}e=t.node.getBBox()}catch(i){if(t instanceof a.Shape){a.parser.draw||a.prepare();var r=t.clone(a.parser.draw.instance).show();e=r.node.getBBox(),r.remove()}else e={x:t.node.clientLeft,y:t.node.clientTop,width:t.node.clientWidth,height:t.node.clientHeight}}a.Box.call(this,e)}},inherit:a.Box,parent:a.Element,construct:{bbox:function(){return new a.BBox(this)}}}),a.BBox.prototype.constructor=a.BBox,a.Matrix=a.invent({create:function(e){var i=p([1,0,0,1,0,0]);e=e instanceof a.Element?e.matrixify():"string"==typeof e?p(e.split(a.regex.delimiter).map(parseFloat)):6==arguments.length?p([].slice.call(arguments)):Array.isArray(e)?p(e):"object"===t(e)?e:i;for(var s=v.length-1;s>=0;--s)this[v[s]]=null!=e[v[s]]?e[v[s]]:i[v[s]]},extend:{extract:function(){var t=f(this,0,1),e=(f(this,1,0),180/Math.PI*Math.atan2(t.y,t.x)-90);return{x:this.e,y:this.f,transformedX:(this.e*Math.cos(e*Math.PI/180)+this.f*Math.sin(e*Math.PI/180))/Math.sqrt(this.a*this.a+this.b*this.b),transformedY:(this.f*Math.cos(e*Math.PI/180)+this.e*Math.sin(-e*Math.PI/180))/Math.sqrt(this.c*this.c+this.d*this.d),rotation:e,a:this.a,b:this.b,c:this.c,d:this.d,e:this.e,f:this.f,matrix:new a.Matrix(this)}},clone:function(){return new a.Matrix(this)},morph:function(t){return this.destination=new a.Matrix(t),this},multiply:function(t){return new a.Matrix(this.native().multiply(function(t){return t instanceof a.Matrix||(t=new a.Matrix(t)),t}(t).native()))},inverse:function(){return new a.Matrix(this.native().inverse())},translate:function(t,e){return new a.Matrix(this.native().translate(t||0,e||0))},native:function(){for(var t=a.parser.native.createSVGMatrix(),e=v.length-1;e>=0;e--)t[v[e]]=this[v[e]];return t},toString:function(){return"matrix("+m(this.a)+","+m(this.b)+","+m(this.c)+","+m(this.d)+","+m(this.e)+","+m(this.f)+")"}},parent:a.Element,construct:{ctm:function(){return new a.Matrix(this.node.getCTM())},screenCTM:function(){if(this instanceof a.Nested){var t=this.rect(1,1),e=t.node.getScreenCTM();return t.remove(),new a.Matrix(e)}return new a.Matrix(this.node.getScreenCTM())}}}),a.Point=a.invent({create:function(e,i){var a;a=Array.isArray(e)?{x:e[0],y:e[1]}:"object"===t(e)?{x:e.x,y:e.y}:null!=e?{x:e,y:null!=i?i:e}:{x:0,y:0},this.x=a.x,this.y=a.y},extend:{clone:function(){return new a.Point(this)},morph:function(t,e){return this.destination=new a.Point(t,e),this}}}),a.extend(a.Element,{point:function(t,e){return new a.Point(t,e).transform(this.screenCTM().inverse())}}),a.extend(a.Element,{attr:function(e,i,s){if(null==e){for(e={},s=(i=this.node.attributes).length-1;s>=0;s--)e[i[s].nodeName]=a.regex.isNumber.test(i[s].nodeValue)?parseFloat(i[s].nodeValue):i[s].nodeValue;return e}if("object"===t(e))for(var r in e)this.attr(r,e[r]);else if(null===i)this.node.removeAttribute(e);else{if(null==i)return null==(i=this.node.getAttribute(e))?a.defaults.attrs[e]:a.regex.isNumber.test(i)?parseFloat(i):i;"stroke-width"==e?this.attr("stroke",parseFloat(i)>0?this._stroke:null):"stroke"==e&&(this._stroke=i),"fill"!=e&&"stroke"!=e||(a.regex.isImage.test(i)&&(i=this.doc().defs().image(i,0,0)),i instanceof a.Image&&(i=this.doc().defs().pattern(0,0,(function(){this.add(i)})))),"number"==typeof i?i=new a.Number(i):a.Color.isColor(i)?i=new a.Color(i):Array.isArray(i)&&(i=new a.Array(i)),"leading"==e?this.leading&&this.leading(i):"string"==typeof s?this.node.setAttributeNS(s,e,i.toString()):this.node.setAttribute(e,i.toString()),!this.rebuild||"font-size"!=e&&"x"!=e||this.rebuild(e,i)}return this}}),a.extend(a.Element,{transform:function(e,i){var s;return"object"!==t(e)?(s=new a.Matrix(this).extract(),"string"==typeof e?s[e]:s):(s=new a.Matrix(this),i=!!i||!!e.relative,null!=e.a&&(s=i?s.multiply(new a.Matrix(e)):new a.Matrix(e)),this.attr("transform",s))}}),a.extend(a.Element,{untransform:function(){return this.attr("transform",null)},matrixify:function(){return(this.attr("transform")||"").split(a.regex.transforms).slice(0,-1).map((function(t){var e=t.trim().split("(");return[e[0],e[1].split(a.regex.delimiter).map((function(t){return parseFloat(t)}))]})).reduce((function(t,e){return"matrix"==e[0]?t.multiply(p(e[1])):t[e[0]].apply(t,e[1])}),new a.Matrix)},toParent:function(t){if(this==t)return this;var e=this.screenCTM(),i=t.screenCTM().inverse();return this.addTo(t).untransform().transform(i.multiply(e)),this},toDoc:function(){return this.toParent(this.doc())}}),a.Transformation=a.invent({create:function(e,i){if(arguments.length>1&&"boolean"!=typeof i)return this.constructor.call(this,[].slice.call(arguments));if(Array.isArray(e))for(var a=0,s=this.arguments.length;a<s;++a)this[this.arguments[a]]=e[a];else if("object"===t(e))for(a=0,s=this.arguments.length;a<s;++a)this[this.arguments[a]]=e[this.arguments[a]];this.inversed=!1,!0===i&&(this.inversed=!0)}}),a.Translate=a.invent({parent:a.Matrix,inherit:a.Transformation,create:function(t,e){this.constructor.apply(this,[].slice.call(arguments))},extend:{arguments:["transformedX","transformedY"],method:"translate"}}),a.extend(a.Element,{style:function(e,i){if(0==arguments.length)return this.node.style.cssText||"";if(arguments.length<2)if("object"===t(e))for(var s in e)this.style(s,e[s]);else{if(!a.regex.isCss.test(e))return this.node.style[c(e)];for(e=e.split(/\s*;\s*/).filter((function(t){return!!t})).map((function(t){return t.split(/\s*:\s*/)}));i=e.pop();)this.style(i[0],i[1])}else this.node.style[c(e)]=null===i||a.regex.isBlank.test(i)?"":i;return this}}),a.Parent=a.invent({create:function(t){this.constructor.call(this,t)},inherit:a.Element,extend:{children:function(){return a.utils.map(a.utils.filterSVGElements(this.node.childNodes),(function(t){return a.adopt(t)}))},add:function(t,e){return null==e?this.node.appendChild(t.node):t.node!=this.node.childNodes[e]&&this.node.insertBefore(t.node,this.node.childNodes[e]),this},put:function(t,e){return this.add(t,e),t},has:function(t){return this.index(t)>=0},index:function(t){return[].slice.call(this.node.childNodes).indexOf(t.node)},get:function(t){return a.adopt(this.node.childNodes[t])},first:function(){return this.get(0)},last:function(){return this.get(this.node.childNodes.length-1)},each:function(t,e){for(var i=this.children(),s=0,r=i.length;s<r;s++)i[s]instanceof a.Element&&t.apply(i[s],[s,i]),e&&i[s]instanceof a.Container&&i[s].each(t,e);return this},removeElement:function(t){return this.node.removeChild(t.node),this},clear:function(){for(;this.node.hasChildNodes();)this.node.removeChild(this.node.lastChild);return delete this._defs,this},defs:function(){return this.doc().defs()}}}),a.extend(a.Parent,{ungroup:function(t,e){return 0===e||this instanceof a.Defs||this.node==a.parser.draw||(t=t||(this instanceof a.Doc?this:this.parent(a.Parent)),e=e||1/0,this.each((function(){return this instanceof a.Defs?this:this instanceof a.Parent?this.ungroup(t,e-1):this.toParent(t)})),this.node.firstChild||this.remove()),this},flatten:function(t,e){return this.ungroup(t,e)}}),a.Container=a.invent({create:function(t){this.constructor.call(this,t)},inherit:a.Parent}),a.ViewBox=a.invent({parent:a.Container,construct:{}}),["click","dblclick","mousedown","mouseup","mouseover","mouseout","mousemove","touchstart","touchmove","touchleave","touchend","touchcancel"].forEach((function(t){a.Element.prototype[t]=function(e){return a.on(this.node,t,e),this}})),a.listeners=[],a.handlerMap=[],a.listenerId=0,a.on=function(t,e,i,s,r){var n=i.bind(s||t.instance||t),o=(a.handlerMap.indexOf(t)+1||a.handlerMap.push(t))-1,l=e.split(".")[0],h=e.split(".")[1]||"*";a.listeners[o]=a.listeners[o]||{},a.listeners[o][l]=a.listeners[o][l]||{},a.listeners[o][l][h]=a.listeners[o][l][h]||{},i._svgjsListenerId||(i._svgjsListenerId=++a.listenerId),a.listeners[o][l][h][i._svgjsListenerId]=n,t.addEventListener(l,n,r||{passive:!0})},a.off=function(t,e,i){var s=a.handlerMap.indexOf(t),r=e&&e.split(".")[0],n=e&&e.split(".")[1],o="";if(-1!=s)if(i){if("function"==typeof i&&(i=i._svgjsListenerId),!i)return;a.listeners[s][r]&&a.listeners[s][r][n||"*"]&&(t.removeEventListener(r,a.listeners[s][r][n||"*"][i],!1),delete a.listeners[s][r][n||"*"][i])}else if(n&&r){if(a.listeners[s][r]&&a.listeners[s][r][n]){for(var l in a.listeners[s][r][n])a.off(t,[r,n].join("."),l);delete a.listeners[s][r][n]}}else if(n)for(var h in a.listeners[s])for(var o in a.listeners[s][h])n===o&&a.off(t,[h,n].join("."));else if(r){if(a.listeners[s][r]){for(var o in a.listeners[s][r])a.off(t,[r,o].join("."));delete a.listeners[s][r]}}else{for(var h in a.listeners[s])a.off(t,h);delete a.listeners[s],delete a.handlerMap[s]}},a.extend(a.Element,{on:function(t,e,i,s){return a.on(this.node,t,e,i,s),this},off:function(t,e){return a.off(this.node,t,e),this},fire:function(t,i){return t instanceof e.Event?this.node.dispatchEvent(t):this.node.dispatchEvent(t=new a.CustomEvent(t,{detail:i,cancelable:!0})),this._event=t,this},event:function(){return this._event}}),a.Defs=a.invent({create:"defs",inherit:a.Container}),a.G=a.invent({create:"g",inherit:a.Container,extend:{x:function(t){return null==t?this.transform("x"):this.transform({x:t-this.x()},!0)}},construct:{group:function(){return this.put(new a.G)}}}),a.Doc=a.invent({create:function(t){t&&("svg"==(t="string"==typeof t?i.getElementById(t):t).nodeName?this.constructor.call(this,t):(this.constructor.call(this,a.create("svg")),t.appendChild(this.node),this.size("100%","100%")),this.namespace().defs())},inherit:a.Container,extend:{namespace:function(){return this.attr({xmlns:a.ns,version:"1.1"}).attr("xmlns:xlink",a.xlink,a.xmlns).attr("xmlns:svgjs",a.svgjs,a.xmlns)},defs:function(){var t;return this._defs||((t=this.node.getElementsByTagName("defs")[0])?this._defs=a.adopt(t):this._defs=new a.Defs,this.node.appendChild(this._defs.node)),this._defs},parent:function(){return this.node.parentNode&&"#document"!=this.node.parentNode.nodeName?this.node.parentNode:null},remove:function(){return this.parent()&&this.parent().removeChild(this.node),this},clear:function(){for(;this.node.hasChildNodes();)this.node.removeChild(this.node.lastChild);return delete this._defs,a.parser.draw&&!a.parser.draw.parentNode&&this.node.appendChild(a.parser.draw),this},clone:function(t){this.writeDataToDom();var e=this.node,i=x(e.cloneNode(!0));return t?(t.node||t).appendChild(i.node):e.parentNode.insertBefore(i.node,e.nextSibling),i}}}),a.extend(a.Element,{}),a.Gradient=a.invent({create:function(t){this.constructor.call(this,a.create(t+"Gradient")),this.type=t},inherit:a.Container,extend:{at:function(t,e,i){return this.put(new a.Stop).update(t,e,i)},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},fill:function(){return"url(#"+this.id()+")"},toString:function(){return this.fill()},attr:function(t,e,i){return"transform"==t&&(t="gradientTransform"),a.Container.prototype.attr.call(this,t,e,i)}},construct:{gradient:function(t,e){return this.defs().gradient(t,e)}}}),a.extend(a.Gradient,a.FX,{from:function(t,e){return"radial"==(this._target||this).type?this.attr({fx:new a.Number(t),fy:new a.Number(e)}):this.attr({x1:new a.Number(t),y1:new a.Number(e)})},to:function(t,e){return"radial"==(this._target||this).type?this.attr({cx:new a.Number(t),cy:new a.Number(e)}):this.attr({x2:new a.Number(t),y2:new a.Number(e)})}}),a.extend(a.Defs,{gradient:function(t,e){return this.put(new a.Gradient(t)).update(e)}}),a.Stop=a.invent({create:"stop",inherit:a.Element,extend:{update:function(t){return("number"==typeof t||t instanceof a.Number)&&(t={offset:arguments[0],color:arguments[1],opacity:arguments[2]}),null!=t.opacity&&this.attr("stop-opacity",t.opacity),null!=t.color&&this.attr("stop-color",t.color),null!=t.offset&&this.attr("offset",new a.Number(t.offset)),this}}}),a.Pattern=a.invent({create:"pattern",inherit:a.Container,extend:{fill:function(){return"url(#"+this.id()+")"},update:function(t){return this.clear(),"function"==typeof t&&t.call(this,this),this},toString:function(){return this.fill()},attr:function(t,e,i){return"transform"==t&&(t="patternTransform"),a.Container.prototype.attr.call(this,t,e,i)}},construct:{pattern:function(t,e,i){return this.defs().pattern(t,e,i)}}}),a.extend(a.Defs,{pattern:function(t,e,i){return this.put(new a.Pattern).update(i).attr({x:0,y:0,width:t,height:e,patternUnits:"userSpaceOnUse"})}}),a.Shape=a.invent({create:function(t){this.constructor.call(this,t)},inherit:a.Element}),a.Symbol=a.invent({create:"symbol",inherit:a.Container,construct:{symbol:function(){return this.put(new a.Symbol)}}}),a.Use=a.invent({create:"use",inherit:a.Shape,extend:{element:function(t,e){return this.attr("href",(e||"")+"#"+t,a.xlink)}},construct:{use:function(t,e){return this.put(new a.Use).element(t,e)}}}),a.Rect=a.invent({create:"rect",inherit:a.Shape,construct:{rect:function(t,e){return this.put(new a.Rect).size(t,e)}}}),a.Circle=a.invent({create:"circle",inherit:a.Shape,construct:{circle:function(t){return this.put(new a.Circle).rx(new a.Number(t).divide(2)).move(0,0)}}}),a.extend(a.Circle,a.FX,{rx:function(t){return this.attr("r",t)},ry:function(t){return this.rx(t)}}),a.Ellipse=a.invent({create:"ellipse",inherit:a.Shape,construct:{ellipse:function(t,e){return this.put(new a.Ellipse).size(t,e).move(0,0)}}}),a.extend(a.Ellipse,a.Rect,a.FX,{rx:function(t){return this.attr("rx",t)},ry:function(t){return this.attr("ry",t)}}),a.extend(a.Circle,a.Ellipse,{x:function(t){return null==t?this.cx()-this.rx():this.cx(t+this.rx())},y:function(t){return null==t?this.cy()-this.ry():this.cy(t+this.ry())},cx:function(t){return null==t?this.attr("cx"):this.attr("cx",t)},cy:function(t){return null==t?this.attr("cy"):this.attr("cy",t)},width:function(t){return null==t?2*this.rx():this.rx(new a.Number(t).divide(2))},height:function(t){return null==t?2*this.ry():this.ry(new a.Number(t).divide(2))},size:function(t,e){var i=u(this,t,e);return this.rx(new a.Number(i.width).divide(2)).ry(new a.Number(i.height).divide(2))}}),a.Line=a.invent({create:"line",inherit:a.Shape,extend:{array:function(){return new a.PointArray([[this.attr("x1"),this.attr("y1")],[this.attr("x2"),this.attr("y2")]])},plot:function(t,e,i,s){return null==t?this.array():(t=void 0!==e?{x1:t,y1:e,x2:i,y2:s}:new a.PointArray(t).toLine(),this.attr(t))},move:function(t,e){return this.attr(this.array().move(t,e).toLine())},size:function(t,e){var i=u(this,t,e);return this.attr(this.array().size(i.width,i.height).toLine())}},construct:{line:function(t,e,i,s){return a.Line.prototype.plot.apply(this.put(new a.Line),null!=t?[t,e,i,s]:[0,0,0,0])}}}),a.Polyline=a.invent({create:"polyline",inherit:a.Shape,construct:{polyline:function(t){return this.put(new a.Polyline).plot(t||new a.PointArray)}}}),a.Polygon=a.invent({create:"polygon",inherit:a.Shape,construct:{polygon:function(t){return this.put(new a.Polygon).plot(t||new a.PointArray)}}}),a.extend(a.Polyline,a.Polygon,{array:function(){return this._array||(this._array=new a.PointArray(this.attr("points")))},plot:function(t){return null==t?this.array():this.clear().attr("points","string"==typeof t?t:this._array=new a.PointArray(t))},clear:function(){return delete this._array,this},move:function(t,e){return this.attr("points",this.array().move(t,e))},size:function(t,e){var i=u(this,t,e);return this.attr("points",this.array().size(i.width,i.height))}}),a.extend(a.Line,a.Polyline,a.Polygon,{morphArray:a.PointArray,x:function(t){return null==t?this.bbox().x:this.move(t,this.bbox().y)},y:function(t){return null==t?this.bbox().y:this.move(this.bbox().x,t)},width:function(t){var e=this.bbox();return null==t?e.width:this.size(t,e.height)},height:function(t){var e=this.bbox();return null==t?e.height:this.size(e.width,t)}}),a.Path=a.invent({create:"path",inherit:a.Shape,extend:{morphArray:a.PathArray,array:function(){return this._array||(this._array=new a.PathArray(this.attr("d")))},plot:function(t){return null==t?this.array():this.clear().attr("d","string"==typeof t?t:this._array=new a.PathArray(t))},clear:function(){return delete this._array,this}},construct:{path:function(t){return this.put(new a.Path).plot(t||new a.PathArray)}}}),a.Image=a.invent({create:"image",inherit:a.Shape,extend:{load:function(t){if(!t)return this;var i=this,s=new e.Image;return a.on(s,"load",(function(){a.off(s);var e=i.parent(a.Pattern);null!==e&&(0==i.width()&&0==i.height()&&i.size(s.width,s.height),e&&0==e.width()&&0==e.height()&&e.size(i.width(),i.height()),"function"==typeof i._loaded&&i._loaded.call(i,{width:s.width,height:s.height,ratio:s.width/s.height,url:t}))})),a.on(s,"error",(function(t){a.off(s),"function"==typeof i._error&&i._error.call(i,t)})),this.attr("href",s.src=this.src=t,a.xlink)},loaded:function(t){return this._loaded=t,this},error:function(t){return this._error=t,this}},construct:{image:function(t,e,i){return this.put(new a.Image).load(t).size(e||0,i||e||0)}}}),a.Text=a.invent({create:function(){this.constructor.call(this,a.create("text")),this.dom.leading=new a.Number(1.3),this._rebuild=!0,this._build=!1,this.attr("font-family",a.defaults.attrs["font-family"])},inherit:a.Shape,extend:{x:function(t){return null==t?this.attr("x"):this.attr("x",t)},text:function(t){if(void 0===t){t="";for(var e=this.node.childNodes,i=0,s=e.length;i<s;++i)0!=i&&3!=e[i].nodeType&&1==a.adopt(e[i]).dom.newLined&&(t+="\n"),t+=e[i].textContent;return t}if(this.clear().build(!0),"function"==typeof t)t.call(this,this);else{i=0;for(var r=(t=t.split("\n")).length;i<r;i++)this.tspan(t[i]).newLine()}return this.build(!1).rebuild()},size:function(t){return this.attr("font-size",t).rebuild()},leading:function(t){return null==t?this.dom.leading:(this.dom.leading=new a.Number(t),this.rebuild())},lines:function(){var t=(this.textPath&&this.textPath()||this).node,e=a.utils.map(a.utils.filterSVGElements(t.childNodes),(function(t){return a.adopt(t)}));return new a.Set(e)},rebuild:function(t){if("boolean"==typeof t&&(this._rebuild=t),this._rebuild){var e=this,i=0,s=this.dom.leading*new a.Number(this.attr("font-size"));this.lines().each((function(){this.dom.newLined&&(e.textPath()||this.attr("x",e.attr("x")),"\n"==this.text()?i+=s:(this.attr("dy",s+i),i=0))})),this.fire("rebuild")}return this},build:function(t){return this._build=!!t,this},setData:function(t){return this.dom=t,this.dom.leading=new a.Number(t.leading||1.3),this}},construct:{text:function(t){return this.put(new a.Text).text(t)},plain:function(t){return this.put(new a.Text).plain(t)}}}),a.Tspan=a.invent({create:"tspan",inherit:a.Shape,extend:{text:function(t){return null==t?this.node.textContent+(this.dom.newLined?"\n":""):("function"==typeof t?t.call(this,this):this.plain(t),this)},dx:function(t){return this.attr("dx",t)},dy:function(t){return this.attr("dy",t)},newLine:function(){var t=this.parent(a.Text);return this.dom.newLined=!0,this.dy(t.dom.leading*t.attr("font-size")).attr("x",t.x())}}}),a.extend(a.Text,a.Tspan,{plain:function(t){return!1===this._build&&this.clear(),this.node.appendChild(i.createTextNode(t)),this},tspan:function(t){var e=(this.textPath&&this.textPath()||this).node,i=new a.Tspan;return!1===this._build&&this.clear(),e.appendChild(i.node),i.text(t)},clear:function(){for(var t=(this.textPath&&this.textPath()||this).node;t.hasChildNodes();)t.removeChild(t.lastChild);return this},length:function(){return this.node.getComputedTextLength()}}),a.TextPath=a.invent({create:"textPath",inherit:a.Parent,parent:a.Text,construct:{morphArray:a.PathArray,array:function(){var t=this.track();return t?t.array():null},plot:function(t){var e=this.track(),i=null;return e&&(i=e.plot(t)),null==t?i:this},track:function(){var t=this.textPath();if(t)return t.reference("href")},textPath:function(){if(this.node.firstChild&&"textPath"==this.node.firstChild.nodeName)return a.adopt(this.node.firstChild)}}}),a.Nested=a.invent({create:function(){this.constructor.call(this,a.create("svg")),this.style("overflow","visible")},inherit:a.Container,construct:{nested:function(){return this.put(new a.Nested)}}});var l={stroke:["color","width","opacity","linecap","linejoin","miterlimit","dasharray","dashoffset"],fill:["color","opacity","rule"],prefix:function(t,e){return"color"==e?t:t+"-"+e}};function h(t,e,i,s){return i+s.replace(a.regex.dots," .")}function c(t){return t.toLowerCase().replace(/-(.)/g,(function(t,e){return e.toUpperCase()}))}function d(t){return t.charAt(0).toUpperCase()+t.slice(1)}function g(t){var e=t.toString(16);return 1==e.length?"0"+e:e}function u(t,e,i){if(null==e||null==i){var a=t.bbox();null==e?e=a.width/a.height*i:null==i&&(i=a.height/a.width*e)}return{width:e,height:i}}function f(t,e,i){return{x:e*t.a+i*t.c+0,y:e*t.b+i*t.d+0}}function p(t){return{a:t[0],b:t[1],c:t[2],d:t[3],e:t[4],f:t[5]}}function x(t){for(var i=t.childNodes.length-1;i>=0;i--)t.childNodes[i]instanceof e.SVGElement&&x(t.childNodes[i]);return a.adopt(t).id(a.eid(t.nodeName))}function b(t){return null==t.x&&(t.x=0,t.y=0,t.width=0,t.height=0),t.w=t.width,t.h=t.height,t.x2=t.x+t.width,t.y2=t.y+t.height,t.cx=t.x+t.width/2,t.cy=t.y+t.height/2,t}function m(t){return Math.abs(t)>1e-37?t:0}["fill","stroke"].forEach((function(t){var e={};e[t]=function(e){if(void 0===e)return this;if("string"==typeof e||a.Color.isRgb(e)||e&&"function"==typeof e.fill)this.attr(t,e);else for(var i=l[t].length-1;i>=0;i--)null!=e[l[t][i]]&&this.attr(l.prefix(t,l[t][i]),e[l[t][i]]);return this},a.extend(a.Element,a.FX,e)})),a.extend(a.Element,a.FX,{translate:function(t,e){return this.transform({x:t,y:e})},matrix:function(t){return this.attr("transform",new a.Matrix(6==arguments.length?[].slice.call(arguments):t))},opacity:function(t){return this.attr("opacity",t)},dx:function(t){return this.x(new a.Number(t).plus(this instanceof a.FX?0:this.x()),!0)},dy:function(t){return this.y(new a.Number(t).plus(this instanceof a.FX?0:this.y()),!0)}}),a.extend(a.Path,{length:function(){return this.node.getTotalLength()},pointAt:function(t){return this.node.getPointAtLength(t)}}),a.Set=a.invent({create:function(t){Array.isArray(t)?this.members=t:this.clear()},extend:{add:function(){for(var t=[].slice.call(arguments),e=0,i=t.length;e<i;e++)this.members.push(t[e]);return this},remove:function(t){var e=this.index(t);return e>-1&&this.members.splice(e,1),this},each:function(t){for(var e=0,i=this.members.length;e<i;e++)t.apply(this.members[e],[e,this.members]);return this},clear:function(){return this.members=[],this},length:function(){return this.members.length},has:function(t){return this.index(t)>=0},index:function(t){return this.members.indexOf(t)},get:function(t){return this.members[t]},first:function(){return this.get(0)},last:function(){return this.get(this.members.length-1)},valueOf:function(){return this.members}},construct:{set:function(t){return new a.Set(t)}}}),a.FX.Set=a.invent({create:function(t){this.set=t}}),a.Set.inherit=function(){var t=[];for(var e in a.Shape.prototype)"function"==typeof a.Shape.prototype[e]&&"function"!=typeof a.Set.prototype[e]&&t.push(e);for(var e in t.forEach((function(t){a.Set.prototype[t]=function(){for(var e=0,i=this.members.length;e<i;e++)this.members[e]&&"function"==typeof this.members[e][t]&&this.members[e][t].apply(this.members[e],arguments);return"animate"==t?this.fx||(this.fx=new a.FX.Set(this)):this}})),t=[],a.FX.prototype)"function"==typeof a.FX.prototype[e]&&"function"!=typeof a.FX.Set.prototype[e]&&t.push(e);t.forEach((function(t){a.FX.Set.prototype[t]=function(){for(var e=0,i=this.set.members.length;e<i;e++)this.set.members[e].fx[t].apply(this.set.members[e].fx,arguments);return this}}))},a.extend(a.Element,{}),a.extend(a.Element,{remember:function(e,i){if("object"===t(arguments[0]))for(var a in e)this.remember(a,e[a]);else{if(1==arguments.length)return this.memory()[e];this.memory()[e]=i}return this},forget:function(){if(0==arguments.length)this._memory={};else for(var t=arguments.length-1;t>=0;t--)delete this.memory()[arguments[t]];return this},memory:function(){return this._memory||(this._memory={})}}),a.get=function(t){var e=i.getElementById(function(t){var e=(t||"").toString().match(a.regex.reference);if(e)return e[1]}(t)||t);return a.adopt(e)},a.select=function(t,e){return new a.Set(a.utils.map((e||i).querySelectorAll(t),(function(t){return a.adopt(t)})))},a.extend(a.Parent,{select:function(t){return a.select(t,this.node)}});var v="abcdef".split("");if("function"!=typeof e.CustomEvent){var y=function(t,e){e=e||{bubbles:!1,cancelable:!1,detail:void 0};var a=i.createEvent("CustomEvent");return a.initCustomEvent(t,e.bubbles,e.cancelable,e.detail),a};y.prototype=e.Event.prototype,a.CustomEvent=y}else a.CustomEvent=e.CustomEvent;return a},"function"==typeof define&&define.amd?define((function(){return zt(Tt,Tt.document)})):"object"===("undefined"==typeof exports?"undefined":t(exports))&&"undefined"!=typeof module?module.exports=Tt.document?zt(Tt,Tt.document):function(t){return zt(t,t.document)}:Tt.SVG=zt(Tt,Tt.document),
|
7 |
+
/*! svg.filter.js - v2.0.2 - 2016-02-24
|
8 |
+
* https://github.com/wout/svg.filter.js
|
9 |
+
* Copyright (c) 2016 Wout Fierens; Licensed MIT */
|
10 |
+
function(){SVG.Filter=SVG.invent({create:"filter",inherit:SVG.Parent,extend:{source:"SourceGraphic",sourceAlpha:"SourceAlpha",background:"BackgroundImage",backgroundAlpha:"BackgroundAlpha",fill:"FillPaint",stroke:"StrokePaint",autoSetIn:!0,put:function(t,e){return this.add(t,e),!t.attr("in")&&this.autoSetIn&&t.attr("in",this.source),t.attr("result")||t.attr("result",t),t},blend:function(t,e,i){return this.put(new SVG.BlendEffect(t,e,i))},colorMatrix:function(t,e){return this.put(new SVG.ColorMatrixEffect(t,e))},convolveMatrix:function(t){return this.put(new SVG.ConvolveMatrixEffect(t))},componentTransfer:function(t){return this.put(new SVG.ComponentTransferEffect(t))},composite:function(t,e,i){return this.put(new SVG.CompositeEffect(t,e,i))},flood:function(t,e){return this.put(new SVG.FloodEffect(t,e))},offset:function(t,e){return this.put(new SVG.OffsetEffect(t,e))},image:function(t){return this.put(new SVG.ImageEffect(t))},merge:function(){var t=[void 0];for(var e in arguments)t.push(arguments[e]);return this.put(new(SVG.MergeEffect.bind.apply(SVG.MergeEffect,t)))},gaussianBlur:function(t,e){return this.put(new SVG.GaussianBlurEffect(t,e))},morphology:function(t,e){return this.put(new SVG.MorphologyEffect(t,e))},diffuseLighting:function(t,e,i){return this.put(new SVG.DiffuseLightingEffect(t,e,i))},displacementMap:function(t,e,i,a,s){return this.put(new SVG.DisplacementMapEffect(t,e,i,a,s))},specularLighting:function(t,e,i,a){return this.put(new SVG.SpecularLightingEffect(t,e,i,a))},tile:function(){return this.put(new SVG.TileEffect)},turbulence:function(t,e,i,a,s){return this.put(new SVG.TurbulenceEffect(t,e,i,a,s))},toString:function(){return"url(#"+this.attr("id")+")"}}}),SVG.extend(SVG.Defs,{filter:function(t){var e=this.put(new SVG.Filter);return"function"==typeof t&&t.call(e,e),e}}),SVG.extend(SVG.Container,{filter:function(t){return this.defs().filter(t)}}),SVG.extend(SVG.Element,SVG.G,SVG.Nested,{filter:function(t){return this.filterer=t instanceof SVG.Element?t:this.doc().filter(t),this.doc()&&this.filterer.doc()!==this.doc()&&this.doc().defs().add(this.filterer),this.attr("filter",this.filterer),this.filterer},unfilter:function(t){return this.filterer&&!0===t&&this.filterer.remove(),delete this.filterer,this.attr("filter",null)}}),SVG.Effect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",t)},result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){return this.result()}}}),SVG.ParentEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Parent,extend:{in:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in")+'"]').get(0)||this.attr("in"):this.attr("in",t)},result:function(t){return null==t?this.attr("result"):this.attr("result",t)},toString:function(){return this.result()}}});var t={blend:function(t,e){return this.parent()&&this.parent().blend(this,t,e)},colorMatrix:function(t,e){return this.parent()&&this.parent().colorMatrix(t,e).in(this)},convolveMatrix:function(t){return this.parent()&&this.parent().convolveMatrix(t).in(this)},componentTransfer:function(t){return this.parent()&&this.parent().componentTransfer(t).in(this)},composite:function(t,e){return this.parent()&&this.parent().composite(this,t,e)},flood:function(t,e){return this.parent()&&this.parent().flood(t,e)},offset:function(t,e){return this.parent()&&this.parent().offset(t,e).in(this)},image:function(t){return this.parent()&&this.parent().image(t)},merge:function(){return this.parent()&&this.parent().merge.apply(this.parent(),[this].concat(arguments))},gaussianBlur:function(t,e){return this.parent()&&this.parent().gaussianBlur(t,e).in(this)},morphology:function(t,e){return this.parent()&&this.parent().morphology(t,e).in(this)},diffuseLighting:function(t,e,i){return this.parent()&&this.parent().diffuseLighting(t,e,i).in(this)},displacementMap:function(t,e,i,a){return this.parent()&&this.parent().displacementMap(this,t,e,i,a)},specularLighting:function(t,e,i,a){return this.parent()&&this.parent().specularLighting(t,e,i,a).in(this)},tile:function(){return this.parent()&&this.parent().tile().in(this)},turbulence:function(t,e,i,a,s){return this.parent()&&this.parent().turbulence(t,e,i,a,s).in(this)}};SVG.extend(SVG.Effect,t),SVG.extend(SVG.ParentEffect,t),SVG.ChildEffect=SVG.invent({create:function(){this.constructor.call(this)},inherit:SVG.Element,extend:{in:function(t){this.attr("in",t)}}});var e={blend:function(t,e,i){this.attr({in:t,in2:e,mode:i||"normal"})},colorMatrix:function(t,e){"matrix"==t&&(e=s(e)),this.attr({type:t,values:void 0===e?null:e})},convolveMatrix:function(t){t=s(t),this.attr({order:Math.sqrt(t.split(" ").length),kernelMatrix:t})},composite:function(t,e,i){this.attr({in:t,in2:e,operator:i})},flood:function(t,e){this.attr("flood-color",t),null!=e&&this.attr("flood-opacity",e)},offset:function(t,e){this.attr({dx:t,dy:e})},image:function(t){this.attr("href",t,SVG.xlink)},displacementMap:function(t,e,i,a,s){this.attr({in:t,in2:e,scale:i,xChannelSelector:a,yChannelSelector:s})},gaussianBlur:function(t,e){null!=t||null!=e?this.attr("stdDeviation",r(Array.prototype.slice.call(arguments))):this.attr("stdDeviation","0 0")},morphology:function(t,e){this.attr({operator:t,radius:e})},tile:function(){},turbulence:function(t,e,i,a,s){this.attr({numOctaves:e,seed:i,stitchTiles:a,baseFrequency:t,type:s})}},i={merge:function(){var t;if(arguments[0]instanceof SVG.Set){var e=this;arguments[0].each((function(t){this instanceof SVG.MergeNode?e.put(this):(this instanceof SVG.Effect||this instanceof SVG.ParentEffect)&&e.put(new SVG.MergeNode(this))}))}else{t=Array.isArray(arguments[0])?arguments[0]:arguments;for(var i=0;i<t.length;i++)t[i]instanceof SVG.MergeNode?this.put(t[i]):this.put(new SVG.MergeNode(t[i]))}},componentTransfer:function(t){if(this.rgb=new SVG.Set,["r","g","b","a"].forEach(function(t){this[t]=new(SVG["Func"+t.toUpperCase()])("identity"),this.rgb.add(this[t]),this.node.appendChild(this[t].node)}.bind(this)),t)for(var e in t.rgb&&(["r","g","b"].forEach(function(e){this[e].attr(t.rgb)}.bind(this)),delete t.rgb),t)this[e].attr(t[e])},diffuseLighting:function(t,e,i){this.attr({surfaceScale:t,diffuseConstant:e,kernelUnitLength:i})},specularLighting:function(t,e,i,a){this.attr({surfaceScale:t,diffuseConstant:e,specularExponent:i,kernelUnitLength:a})}},a={distantLight:function(t,e){this.attr({azimuth:t,elevation:e})},pointLight:function(t,e,i){this.attr({x:t,y:e,z:i})},spotLight:function(t,e,i,a,s,r){this.attr({x:t,y:e,z:i,pointsAtX:a,pointsAtY:s,pointsAtZ:r})},mergeNode:function(t){this.attr("in",t)}};function s(t){return Array.isArray(t)&&(t=new SVG.Array(t)),t.toString().replace(/^\s+/,"").replace(/\s+$/,"").replace(/\s+/g," ")}function r(t){if(!Array.isArray(t))return t;for(var e=0,i=t.length,a=[];e<i;e++)a.push(t[e]);return a.join(" ")}function n(){var t=function(){};for(var e in"function"==typeof arguments[arguments.length-1]&&(t=arguments[arguments.length-1],Array.prototype.splice.call(arguments,arguments.length-1,1)),arguments)for(var i in arguments[e])t(arguments[e][i],i,arguments[e])}["r","g","b","a"].forEach((function(t){a["Func"+t.toUpperCase()]=function(t){switch(this.attr("type",t),t){case"table":this.attr("tableValues",arguments[1]);break;case"linear":this.attr("slope",arguments[1]),this.attr("intercept",arguments[2]);break;case"gamma":this.attr("amplitude",arguments[1]),this.attr("exponent",arguments[2]),this.attr("offset",arguments[2])}}})),n(e,(function(t,e){var i=e.charAt(0).toUpperCase()+e.slice(1);SVG[i+"Effect"]=SVG.invent({create:function(){this.constructor.call(this,SVG.create("fe"+i)),t.apply(this,arguments),this.result(this.attr("id")+"Out")},inherit:SVG.Effect,extend:{}})})),n(i,(function(t,e){var i=e.charAt(0).toUpperCase()+e.slice(1);SVG[i+"Effect"]=SVG.invent({create:function(){this.constructor.call(this,SVG.create("fe"+i)),t.apply(this,arguments),this.result(this.attr("id")+"Out")},inherit:SVG.ParentEffect,extend:{}})})),n(a,(function(t,e){var i=e.charAt(0).toUpperCase()+e.slice(1);SVG[i]=SVG.invent({create:function(){this.constructor.call(this,SVG.create("fe"+i)),t.apply(this,arguments)},inherit:SVG.ChildEffect,extend:{}})})),SVG.extend(SVG.MergeEffect,{in:function(t){return t instanceof SVG.MergeNode?this.add(t,0):this.add(new SVG.MergeNode(t),0),this}}),SVG.extend(SVG.CompositeEffect,SVG.BlendEffect,SVG.DisplacementMapEffect,{in2:function(t){return null==t?this.parent()&&this.parent().select('[result="'+this.attr("in2")+'"]').get(0)||this.attr("in2"):this.attr("in2",t)}}),SVG.filter={sepiatone:[.343,.669,.119,0,0,.249,.626,.13,0,0,.172,.334,.111,0,0,0,0,0,1,0]}}.call(void 0),function(){function t(t,s,r,n,o,l,h){for(var c=t.slice(s,r||h),d=n.slice(o,l||h),g=0,u={pos:[0,0],start:[0,0]},f={pos:[0,0],start:[0,0]};;){if(c[g]=e.call(u,c[g]),d[g]=e.call(f,d[g]),c[g][0]!=d[g][0]||"M"==c[g][0]||"A"==c[g][0]&&(c[g][4]!=d[g][4]||c[g][5]!=d[g][5])?(Array.prototype.splice.apply(c,[g,1].concat(a.call(u,c[g]))),Array.prototype.splice.apply(d,[g,1].concat(a.call(f,d[g])))):(c[g]=i.call(u,c[g]),d[g]=i.call(f,d[g])),++g==c.length&&g==d.length)break;g==c.length&&c.push(["C",u.pos[0],u.pos[1],u.pos[0],u.pos[1],u.pos[0],u.pos[1]]),g==d.length&&d.push(["C",f.pos[0],f.pos[1],f.pos[0],f.pos[1],f.pos[0],f.pos[1]])}return{start:c,dest:d}}function e(t){switch(t[0]){case"z":case"Z":t[0]="L",t[1]=this.start[0],t[2]=this.start[1];break;case"H":t[0]="L",t[2]=this.pos[1];break;case"V":t[0]="L",t[2]=t[1],t[1]=this.pos[0];break;case"T":t[0]="Q",t[3]=t[1],t[4]=t[2],t[1]=this.reflection[1],t[2]=this.reflection[0];break;case"S":t[0]="C",t[6]=t[4],t[5]=t[3],t[4]=t[2],t[3]=t[1],t[2]=this.reflection[1],t[1]=this.reflection[0]}return t}function i(t){var e=t.length;return this.pos=[t[e-2],t[e-1]],-1!="SCQT".indexOf(t[0])&&(this.reflection=[2*this.pos[0]-t[e-4],2*this.pos[1]-t[e-3]]),t}function a(t){var e=[t];switch(t[0]){case"M":return this.pos=this.start=[t[1],t[2]],e;case"L":t[5]=t[3]=t[1],t[6]=t[4]=t[2],t[1]=this.pos[0],t[2]=this.pos[1];break;case"Q":t[6]=t[4],t[5]=t[3],t[4]=1*t[4]/3+2*t[2]/3,t[3]=1*t[3]/3+2*t[1]/3,t[2]=1*this.pos[1]/3+2*t[2]/3,t[1]=1*this.pos[0]/3+2*t[1]/3;break;case"A":t=(e=function(t,e){var i,a,s,r,n,o,l,h,c,d,g,u,f,p,x,b,m,v,y,w,k,A,S,C,L,P,T=Math.abs(e[1]),z=Math.abs(e[2]),I=e[3]%360,M=e[4],E=e[5],X=e[6],Y=e[7],F=new SVG.Point(t),R=new SVG.Point(X,Y),D=[];if(0===T||0===z||F.x===R.x&&F.y===R.y)return[["C",F.x,F.y,R.x,R.y,R.x,R.y]];i=new SVG.Point((F.x-R.x)/2,(F.y-R.y)/2).transform((new SVG.Matrix).rotate(I)),(a=i.x*i.x/(T*T)+i.y*i.y/(z*z))>1&&(T*=a=Math.sqrt(a),z*=a);s=(new SVG.Matrix).rotate(I).scale(1/T,1/z).rotate(-I),F=F.transform(s),R=R.transform(s),r=[R.x-F.x,R.y-F.y],o=r[0]*r[0]+r[1]*r[1],n=Math.sqrt(o),r[0]/=n,r[1]/=n,l=o<4?Math.sqrt(1-o/4):0,M===E&&(l*=-1);h=new SVG.Point((R.x+F.x)/2+l*-r[1],(R.y+F.y)/2+l*r[0]),c=new SVG.Point(F.x-h.x,F.y-h.y),d=new SVG.Point(R.x-h.x,R.y-h.y),g=Math.acos(c.x/Math.sqrt(c.x*c.x+c.y*c.y)),c.y<0&&(g*=-1);u=Math.acos(d.x/Math.sqrt(d.x*d.x+d.y*d.y)),d.y<0&&(u*=-1);E&&g>u&&(u+=2*Math.PI);!E&&g<u&&(u-=2*Math.PI);for(p=Math.ceil(2*Math.abs(g-u)/Math.PI),b=[],m=g,f=(u-g)/p,x=4*Math.tan(f/4)/3,k=0;k<=p;k++)y=Math.cos(m),v=Math.sin(m),w=new SVG.Point(h.x+y,h.y+v),b[k]=[new SVG.Point(w.x+x*v,w.y-x*y),w,new SVG.Point(w.x-x*v,w.y+x*y)],m+=f;for(b[0][0]=b[0][1].clone(),b[b.length-1][2]=b[b.length-1][1].clone(),s=(new SVG.Matrix).rotate(I).scale(T,z).rotate(-I),k=0,A=b.length;k<A;k++)b[k][0]=b[k][0].transform(s),b[k][1]=b[k][1].transform(s),b[k][2]=b[k][2].transform(s);for(k=1,A=b.length;k<A;k++)S=(w=b[k-1][2]).x,C=w.y,L=(w=b[k][0]).x,P=w.y,X=(w=b[k][1]).x,Y=w.y,D.push(["C",S,C,L,P,X,Y]);return D}(this.pos,t))[0]}return t[0]="C",this.pos=[t[5],t[6]],this.reflection=[2*t[5]-t[3],2*t[6]-t[4]],e}function s(t,e){if(!1===e)return!1;for(var i=e,a=t.length;i<a;++i)if("M"==t[i][0])return i;return!1}SVG.extend(SVG.PathArray,{morph:function(e){for(var i=this.value,a=this.parse(e),r=0,n=0,o=!1,l=!1;!1!==r||!1!==n;){var h;o=s(i,!1!==r&&r+1),l=s(a,!1!==n&&n+1),!1===r&&(r=0==(h=new SVG.PathArray(c.start).bbox()).height||0==h.width?i.push(i[0])-1:i.push(["M",h.x+h.width/2,h.y+h.height/2])-1),!1===n&&(n=0==(h=new SVG.PathArray(c.dest).bbox()).height||0==h.width?a.push(a[0])-1:a.push(["M",h.x+h.width/2,h.y+h.height/2])-1);var c=t(i,r,o,a,n,l);i=i.slice(0,r).concat(c.start,!1===o?[]:i.slice(o)),a=a.slice(0,n).concat(c.dest,!1===l?[]:a.slice(l)),r=!1!==o&&r+c.start.length,n=!1!==l&&n+c.dest.length}return this.value=i,this.destination=new SVG.PathArray,this.destination.value=a,this}})}(),
|
11 |
+
/*! svg.draggable.js - v2.2.2 - 2019-01-08
|
12 |
+
* https://github.com/svgdotjs/svg.draggable.js
|
13 |
+
* Copyright (c) 2019 Wout Fierens; Licensed MIT */
|
14 |
+
function(){function t(t){t.remember("_draggable",this),this.el=t}t.prototype.init=function(t,e){var i=this;this.constraint=t,this.value=e,this.el.on("mousedown.drag",(function(t){i.start(t)})),this.el.on("touchstart.drag",(function(t){i.start(t)}))},t.prototype.transformPoint=function(t,e){var i=(t=t||window.event).changedTouches&&t.changedTouches[0]||t;return this.p.x=i.clientX-(e||0),this.p.y=i.clientY,this.p.matrixTransform(this.m)},t.prototype.getBBox=function(){var t=this.el.bbox();return this.el instanceof SVG.Nested&&(t=this.el.rbox()),(this.el instanceof SVG.G||this.el instanceof SVG.Use||this.el instanceof SVG.Nested)&&(t.x=this.el.x(),t.y=this.el.y()),t},t.prototype.start=function(t){if("click"!=t.type&&"mousedown"!=t.type&&"mousemove"!=t.type||1==(t.which||t.buttons)){var e=this;if(this.el.fire("beforedrag",{event:t,handler:this}),!this.el.event().defaultPrevented){t.preventDefault(),t.stopPropagation(),this.parent=this.parent||this.el.parent(SVG.Nested)||this.el.parent(SVG.Doc),this.p=this.parent.node.createSVGPoint(),this.m=this.el.node.getScreenCTM().inverse();var i,a=this.getBBox();if(this.el instanceof SVG.Text)switch(i=this.el.node.getComputedTextLength(),this.el.attr("text-anchor")){case"middle":i/=2;break;case"start":i=0}this.startPoints={point:this.transformPoint(t,i),box:a,transform:this.el.transform()},SVG.on(window,"mousemove.drag",(function(t){e.drag(t)})),SVG.on(window,"touchmove.drag",(function(t){e.drag(t)})),SVG.on(window,"mouseup.drag",(function(t){e.end(t)})),SVG.on(window,"touchend.drag",(function(t){e.end(t)})),this.el.fire("dragstart",{event:t,p:this.startPoints.point,m:this.m,handler:this})}}},t.prototype.drag=function(t){var e=this.getBBox(),i=this.transformPoint(t),a=this.startPoints.box.x+i.x-this.startPoints.point.x,s=this.startPoints.box.y+i.y-this.startPoints.point.y,r=this.constraint,n=i.x-this.startPoints.point.x,o=i.y-this.startPoints.point.y;if(this.el.fire("dragmove",{event:t,p:i,m:this.m,handler:this}),this.el.event().defaultPrevented)return i;if("function"==typeof r){var l=r.call(this.el,a,s,this.m);"boolean"==typeof l&&(l={x:l,y:l}),!0===l.x?this.el.x(a):!1!==l.x&&this.el.x(l.x),!0===l.y?this.el.y(s):!1!==l.y&&this.el.y(l.y)}else"object"==typeof r&&(null!=r.minX&&a<r.minX?n=(a=r.minX)-this.startPoints.box.x:null!=r.maxX&&a>r.maxX-e.width&&(n=(a=r.maxX-e.width)-this.startPoints.box.x),null!=r.minY&&s<r.minY?o=(s=r.minY)-this.startPoints.box.y:null!=r.maxY&&s>r.maxY-e.height&&(o=(s=r.maxY-e.height)-this.startPoints.box.y),null!=r.snapToGrid&&(a-=a%r.snapToGrid,s-=s%r.snapToGrid,n-=n%r.snapToGrid,o-=o%r.snapToGrid),this.el instanceof SVG.G?this.el.matrix(this.startPoints.transform).transform({x:n,y:o},!0):this.el.move(a,s));return i},t.prototype.end=function(t){var e=this.drag(t);this.el.fire("dragend",{event:t,p:e,m:this.m,handler:this}),SVG.off(window,"mousemove.drag"),SVG.off(window,"touchmove.drag"),SVG.off(window,"mouseup.drag"),SVG.off(window,"touchend.drag")},SVG.extend(SVG.Element,{draggable:function(e,i){"function"!=typeof e&&"object"!=typeof e||(i=e,e=!0);var a=this.remember("_draggable")||new t(this);return(e=void 0===e||e)?a.init(i||{},e):(this.off("mousedown.drag"),this.off("touchstart.drag")),this}})}.call(void 0),function(){function t(t){this.el=t,t.remember("_selectHandler",this),this.pointSelection={isSelected:!1},this.rectSelection={isSelected:!1},this.pointsList={lt:[0,0],rt:["width",0],rb:["width","height"],lb:[0,"height"],t:["width",0],r:["width","height"],b:["width","height"],l:[0,"height"]},this.pointCoord=function(t,e,i){var a="string"!=typeof t?t:e[t];return i?a/2:a},this.pointCoords=function(t,e){var i=this.pointsList[t];return{x:this.pointCoord(i[0],e,"t"===t||"b"===t),y:this.pointCoord(i[1],e,"r"===t||"l"===t)}}}t.prototype.init=function(t,e){var i=this.el.bbox();this.options={};var a=this.el.selectize.defaults.points;for(var s in this.el.selectize.defaults)this.options[s]=this.el.selectize.defaults[s],void 0!==e[s]&&(this.options[s]=e[s]);var r=["points","pointsExclude"];for(var s in r){var n=this.options[r[s]];"string"==typeof n?n=n.length>0?n.split(/\s*,\s*/i):[]:"boolean"==typeof n&&"points"===r[s]&&(n=n?a:[]),this.options[r[s]]=n}this.options.points=[a,this.options.points].reduce((function(t,e){return t.filter((function(t){return e.indexOf(t)>-1}))})),this.options.points=[this.options.points,this.options.pointsExclude].reduce((function(t,e){return t.filter((function(t){return e.indexOf(t)<0}))})),this.parent=this.el.parent(),this.nested=this.nested||this.parent.group(),this.nested.matrix(new SVG.Matrix(this.el).translate(i.x,i.y)),this.options.deepSelect&&-1!==["line","polyline","polygon"].indexOf(this.el.type)?this.selectPoints(t):this.selectRect(t),this.observe(),this.cleanup()},t.prototype.selectPoints=function(t){return this.pointSelection.isSelected=t,this.pointSelection.set||(this.pointSelection.set=this.parent.set(),this.drawPoints()),this},t.prototype.getPointArray=function(){var t=this.el.bbox();return this.el.array().valueOf().map((function(e){return[e[0]-t.x,e[1]-t.y]}))},t.prototype.drawPoints=function(){for(var t=this,e=this.getPointArray(),i=0,a=e.length;i<a;++i){var s=function(e){return function(i){(i=i||window.event).preventDefault?i.preventDefault():i.returnValue=!1,i.stopPropagation();var a=i.pageX||i.touches[0].pageX,s=i.pageY||i.touches[0].pageY;t.el.fire("point",{x:a,y:s,i:e,event:i})}}(i),r=this.drawPoint(e[i][0],e[i][1]).addClass(this.options.classPoints).addClass(this.options.classPoints+"_point").on("touchstart",s).on("mousedown",s);this.pointSelection.set.add(r)}},t.prototype.drawPoint=function(t,e){var i=this.options.pointType;switch(i){case"circle":return this.drawCircle(t,e);case"rect":return this.drawRect(t,e);default:if("function"==typeof i)return i.call(this,t,e);throw new Error("Unknown "+i+" point type!")}},t.prototype.drawCircle=function(t,e){return this.nested.circle(this.options.pointSize).center(t,e)},t.prototype.drawRect=function(t,e){return this.nested.rect(this.options.pointSize,this.options.pointSize).center(t,e)},t.prototype.updatePointSelection=function(){var t=this.getPointArray();this.pointSelection.set.each((function(e){this.cx()===t[e][0]&&this.cy()===t[e][1]||this.center(t[e][0],t[e][1])}))},t.prototype.updateRectSelection=function(){var t=this,e=this.el.bbox();if(this.rectSelection.set.get(0).attr({width:e.width,height:e.height}),this.options.points.length&&this.options.points.map((function(i,a){var s=t.pointCoords(i,e);t.rectSelection.set.get(a+1).center(s.x,s.y)})),this.options.rotationPoint){var i=this.rectSelection.set.length();this.rectSelection.set.get(i-1).center(e.width/2,20)}},t.prototype.selectRect=function(t){var e=this,i=this.el.bbox();function a(t){return function(i){(i=i||window.event).preventDefault?i.preventDefault():i.returnValue=!1,i.stopPropagation();var a=i.pageX||i.touches[0].pageX,s=i.pageY||i.touches[0].pageY;e.el.fire(t,{x:a,y:s,event:i})}}if(this.rectSelection.isSelected=t,this.rectSelection.set=this.rectSelection.set||this.parent.set(),this.rectSelection.set.get(0)||this.rectSelection.set.add(this.nested.rect(i.width,i.height).addClass(this.options.classRect)),this.options.points.length&&this.rectSelection.set.length()<2){this.options.points.map((function(t,s){var r=e.pointCoords(t,i),n=e.drawPoint(r.x,r.y).attr("class",e.options.classPoints+"_"+t).on("mousedown",a(t)).on("touchstart",a(t));e.rectSelection.set.add(n)})),this.rectSelection.set.each((function(){this.addClass(e.options.classPoints)}))}if(this.options.rotationPoint&&(this.options.points&&!this.rectSelection.set.get(9)||!this.options.points&&!this.rectSelection.set.get(1))){var s=function(t){(t=t||window.event).preventDefault?t.preventDefault():t.returnValue=!1,t.stopPropagation();var i=t.pageX||t.touches[0].pageX,a=t.pageY||t.touches[0].pageY;e.el.fire("rot",{x:i,y:a,event:t})},r=this.drawPoint(i.width/2,20).attr("class",this.options.classPoints+"_rot").on("touchstart",s).on("mousedown",s);this.rectSelection.set.add(r)}},t.prototype.handler=function(){var t=this.el.bbox();this.nested.matrix(new SVG.Matrix(this.el).translate(t.x,t.y)),this.rectSelection.isSelected&&this.updateRectSelection(),this.pointSelection.isSelected&&this.updatePointSelection()},t.prototype.observe=function(){var t=this;if(MutationObserver)if(this.rectSelection.isSelected||this.pointSelection.isSelected)this.observerInst=this.observerInst||new MutationObserver((function(){t.handler()})),this.observerInst.observe(this.el.node,{attributes:!0});else try{this.observerInst.disconnect(),delete this.observerInst}catch(t){}else this.el.off("DOMAttrModified.select"),(this.rectSelection.isSelected||this.pointSelection.isSelected)&&this.el.on("DOMAttrModified.select",(function(){t.handler()}))},t.prototype.cleanup=function(){!this.rectSelection.isSelected&&this.rectSelection.set&&(this.rectSelection.set.each((function(){this.remove()})),this.rectSelection.set.clear(),delete this.rectSelection.set),!this.pointSelection.isSelected&&this.pointSelection.set&&(this.pointSelection.set.each((function(){this.remove()})),this.pointSelection.set.clear(),delete this.pointSelection.set),this.pointSelection.isSelected||this.rectSelection.isSelected||(this.nested.remove(),delete this.nested)},SVG.extend(SVG.Element,{selectize:function(e,i){return"object"==typeof e&&(i=e,e=!0),(this.remember("_selectHandler")||new t(this)).init(void 0===e||e,i||{}),this}}),SVG.Element.prototype.selectize.defaults={points:["lt","rt","rb","lb","t","r","b","l"],pointsExclude:[],classRect:"svg_select_boundingRect",classPoints:"svg_select_points",pointSize:7,rotationPoint:!0,deepSelect:!1,pointType:"circle"}}(),function(){(function(){function t(t){t.remember("_resizeHandler",this),this.el=t,this.parameters={},this.lastUpdateCall=null,this.p=t.doc().node.createSVGPoint()}t.prototype.transformPoint=function(t,e,i){return this.p.x=t-(this.offset.x-window.pageXOffset),this.p.y=e-(this.offset.y-window.pageYOffset),this.p.matrixTransform(i||this.m)},t.prototype._extractPosition=function(t){return{x:null!=t.clientX?t.clientX:t.touches[0].clientX,y:null!=t.clientY?t.clientY:t.touches[0].clientY}},t.prototype.init=function(t){var e=this;if(this.stop(),"stop"!==t){for(var i in this.options={},this.el.resize.defaults)this.options[i]=this.el.resize.defaults[i],void 0!==t[i]&&(this.options[i]=t[i]);this.el.on("lt.resize",(function(t){e.resize(t||window.event)})),this.el.on("rt.resize",(function(t){e.resize(t||window.event)})),this.el.on("rb.resize",(function(t){e.resize(t||window.event)})),this.el.on("lb.resize",(function(t){e.resize(t||window.event)})),this.el.on("t.resize",(function(t){e.resize(t||window.event)})),this.el.on("r.resize",(function(t){e.resize(t||window.event)})),this.el.on("b.resize",(function(t){e.resize(t||window.event)})),this.el.on("l.resize",(function(t){e.resize(t||window.event)})),this.el.on("rot.resize",(function(t){e.resize(t||window.event)})),this.el.on("point.resize",(function(t){e.resize(t||window.event)})),this.update()}},t.prototype.stop=function(){return this.el.off("lt.resize"),this.el.off("rt.resize"),this.el.off("rb.resize"),this.el.off("lb.resize"),this.el.off("t.resize"),this.el.off("r.resize"),this.el.off("b.resize"),this.el.off("l.resize"),this.el.off("rot.resize"),this.el.off("point.resize"),this},t.prototype.resize=function(t){var e=this;this.m=this.el.node.getScreenCTM().inverse(),this.offset={x:window.pageXOffset,y:window.pageYOffset};var i=this._extractPosition(t.detail.event);if(this.parameters={type:this.el.type,p:this.transformPoint(i.x,i.y),x:t.detail.x,y:t.detail.y,box:this.el.bbox(),rotation:this.el.transform().rotation},"text"===this.el.type&&(this.parameters.fontSize=this.el.attr()["font-size"]),void 0!==t.detail.i){var a=this.el.array().valueOf();this.parameters.i=t.detail.i,this.parameters.pointCoords=[a[t.detail.i][0],a[t.detail.i][1]]}switch(t.type){case"lt":this.calc=function(t,e){var i=this.snapToGrid(t,e);if(this.parameters.box.width-i[0]>0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y+i[1]).size(this.parameters.box.width-i[0],this.parameters.box.height-i[1])}};break;case"rt":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).size(this.parameters.box.width+i[0],this.parameters.box.height-i[1])}};break;case"rb":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x-i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize+i[0]);i=this.checkAspectRatio(i),this.el.move(this.parameters.box.x,this.parameters.box.y).size(this.parameters.box.width+i[0],this.parameters.box.height+i[1])}};break;case"lb":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0&&this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return this.el.move(this.parameters.box.x+i[0],this.parameters.box.y),void this.el.attr("font-size",this.parameters.fontSize-i[0]);i=this.checkAspectRatio(i,!0),this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).size(this.parameters.box.width-i[0],this.parameters.box.height+i[1])}};break;case"t":this.calc=function(t,e){var i=this.snapToGrid(t,e,2);if(this.parameters.box.height-i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y+i[1]).height(this.parameters.box.height-i[1])}};break;case"r":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.width+i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).width(this.parameters.box.width+i[0])}};break;case"b":this.calc=function(t,e){var i=this.snapToGrid(t,e,0);if(this.parameters.box.height+i[1]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x,this.parameters.box.y).height(this.parameters.box.height+i[1])}};break;case"l":this.calc=function(t,e){var i=this.snapToGrid(t,e,1);if(this.parameters.box.width-i[0]>0){if("text"===this.parameters.type)return;this.el.move(this.parameters.box.x+i[0],this.parameters.box.y).width(this.parameters.box.width-i[0])}};break;case"rot":this.calc=function(t,e){var i=t+this.parameters.p.x,a=e+this.parameters.p.y,s=Math.atan2(this.parameters.p.y-this.parameters.box.y-this.parameters.box.height/2,this.parameters.p.x-this.parameters.box.x-this.parameters.box.width/2),r=Math.atan2(a-this.parameters.box.y-this.parameters.box.height/2,i-this.parameters.box.x-this.parameters.box.width/2),n=this.parameters.rotation+180*(r-s)/Math.PI+this.options.snapToAngle/2;this.el.center(this.parameters.box.cx,this.parameters.box.cy).rotate(n-n%this.options.snapToAngle,this.parameters.box.cx,this.parameters.box.cy)};break;case"point":this.calc=function(t,e){var i=this.snapToGrid(t,e,this.parameters.pointCoords[0],this.parameters.pointCoords[1]),a=this.el.array().valueOf();a[this.parameters.i][0]=this.parameters.pointCoords[0]+i[0],a[this.parameters.i][1]=this.parameters.pointCoords[1]+i[1],this.el.plot(a)}}this.el.fire("resizestart",{dx:this.parameters.x,dy:this.parameters.y,event:t}),SVG.on(window,"touchmove.resize",(function(t){e.update(t||window.event)})),SVG.on(window,"touchend.resize",(function(){e.done()})),SVG.on(window,"mousemove.resize",(function(t){e.update(t||window.event)})),SVG.on(window,"mouseup.resize",(function(){e.done()}))},t.prototype.update=function(t){if(t){var e=this._extractPosition(t),i=this.transformPoint(e.x,e.y),a=i.x-this.parameters.p.x,s=i.y-this.parameters.p.y;this.lastUpdateCall=[a,s],this.calc(a,s),this.el.fire("resizing",{dx:a,dy:s,event:t})}else this.lastUpdateCall&&this.calc(this.lastUpdateCall[0],this.lastUpdateCall[1])},t.prototype.done=function(){this.lastUpdateCall=null,SVG.off(window,"mousemove.resize"),SVG.off(window,"mouseup.resize"),SVG.off(window,"touchmove.resize"),SVG.off(window,"touchend.resize"),this.el.fire("resizedone")},t.prototype.snapToGrid=function(t,e,i,a){var s;return void 0!==a?s=[(i+t)%this.options.snapToGrid,(a+e)%this.options.snapToGrid]:(i=null==i?3:i,s=[(this.parameters.box.x+t+(1&i?0:this.parameters.box.width))%this.options.snapToGrid,(this.parameters.box.y+e+(2&i?0:this.parameters.box.height))%this.options.snapToGrid]),t<0&&(s[0]-=this.options.snapToGrid),e<0&&(s[1]-=this.options.snapToGrid),t-=Math.abs(s[0])<this.options.snapToGrid/2?s[0]:s[0]-(t<0?-this.options.snapToGrid:this.options.snapToGrid),e-=Math.abs(s[1])<this.options.snapToGrid/2?s[1]:s[1]-(e<0?-this.options.snapToGrid:this.options.snapToGrid),this.constraintToBox(t,e,i,a)},t.prototype.constraintToBox=function(t,e,i,a){var s,r,n=this.options.constraint||{};return void 0!==a?(s=i,r=a):(s=this.parameters.box.x+(1&i?0:this.parameters.box.width),r=this.parameters.box.y+(2&i?0:this.parameters.box.height)),void 0!==n.minX&&s+t<n.minX&&(t=n.minX-s),void 0!==n.maxX&&s+t>n.maxX&&(t=n.maxX-s),void 0!==n.minY&&r+e<n.minY&&(e=n.minY-r),void 0!==n.maxY&&r+e>n.maxY&&(e=n.maxY-r),[t,e]},t.prototype.checkAspectRatio=function(t,e){if(!this.options.saveAspectRatio)return t;var i=t.slice(),a=this.parameters.box.width/this.parameters.box.height,s=this.parameters.box.width+t[0],r=this.parameters.box.height-t[1],n=s/r;return n<a?(i[1]=s/a-this.parameters.box.height,e&&(i[1]=-i[1])):n>a&&(i[0]=this.parameters.box.width-r*a,e&&(i[0]=-i[0])),i},SVG.extend(SVG.Element,{resize:function(e){return(this.remember("_resizeHandler")||new t(this)).init(e||{}),this}}),SVG.Element.prototype.resize.defaults={snapToAngle:.1,snapToGrid:1,constraint:{},saveAspectRatio:!1}}).call(this)}();!function(t,e){void 0===e&&(e={});var i=e.insertAt;if(t&&"undefined"!=typeof document){var a=document.head||document.getElementsByTagName("head")[0],s=document.createElement("style");s.type="text/css","top"===i&&a.firstChild?a.insertBefore(s,a.firstChild):a.appendChild(s),s.styleSheet?s.styleSheet.cssText=t:s.appendChild(document.createTextNode(t))}}('.apexcharts-canvas {\n position: relative;\n user-select: none;\n /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */\n}\n\n\n/* scrollbar is not visible by default for legend, hence forcing the visibility */\n.apexcharts-canvas ::-webkit-scrollbar {\n -webkit-appearance: none;\n width: 6px;\n}\n\n.apexcharts-canvas ::-webkit-scrollbar-thumb {\n border-radius: 4px;\n background-color: rgba(0, 0, 0, .5);\n box-shadow: 0 0 1px rgba(255, 255, 255, .5);\n -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);\n}\n\n\n.apexcharts-inner {\n position: relative;\n}\n\n.apexcharts-text tspan {\n font-family: inherit;\n}\n\n.legend-mouseover-inactive {\n transition: 0.15s ease all;\n opacity: 0.20;\n}\n\n.apexcharts-series-collapsed {\n opacity: 0;\n}\n\n.apexcharts-tooltip {\n border-radius: 5px;\n box-shadow: 2px 2px 6px -4px #999;\n cursor: default;\n font-size: 14px;\n left: 62px;\n opacity: 0;\n pointer-events: none;\n position: absolute;\n top: 20px;\n display: flex;\n flex-direction: column;\n overflow: hidden;\n white-space: nowrap;\n z-index: 12;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-tooltip.apexcharts-theme-light {\n border: 1px solid #e3e3e3;\n background: rgba(255, 255, 255, 0.96);\n}\n\n.apexcharts-tooltip.apexcharts-theme-dark {\n color: #fff;\n background: rgba(30, 30, 30, 0.8);\n}\n\n.apexcharts-tooltip * {\n font-family: inherit;\n}\n\n\n.apexcharts-tooltip-title {\n padding: 6px;\n font-size: 15px;\n margin-bottom: 4px;\n}\n\n.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {\n background: #ECEFF1;\n border-bottom: 1px solid #ddd;\n}\n\n.apexcharts-tooltip.apexcharts-theme-dark .apexcharts-tooltip-title {\n background: rgba(0, 0, 0, 0.7);\n border-bottom: 1px solid #333;\n}\n\n.apexcharts-tooltip-text-value,\n.apexcharts-tooltip-text-z-value {\n display: inline-block;\n font-weight: 600;\n margin-left: 5px;\n}\n\n.apexcharts-tooltip-text-z-label:empty,\n.apexcharts-tooltip-text-z-value:empty {\n display: none;\n}\n\n.apexcharts-tooltip-text-value,\n.apexcharts-tooltip-text-z-value {\n font-weight: 600;\n}\n\n.apexcharts-tooltip-marker {\n min-width: 12px;\n min-height: 12px;\n position: relative;\n top: 0px;\n margin-right: 10px;\n border-radius: 50%;\n}\n\n.apexcharts-tooltip-series-group {\n padding: 0 10px;\n display: none;\n text-align: left;\n justify-content: left;\n align-items: center;\n}\n\n.apexcharts-tooltip-series-group.apexcharts-active .apexcharts-tooltip-marker {\n opacity: 1;\n}\n\n.apexcharts-tooltip-series-group.apexcharts-active,\n.apexcharts-tooltip-series-group:last-child {\n padding-bottom: 4px;\n}\n\n.apexcharts-tooltip-series-group-hidden {\n opacity: 0;\n height: 0;\n line-height: 0;\n padding: 0 !important;\n}\n\n.apexcharts-tooltip-y-group {\n padding: 6px 0 5px;\n}\n\n.apexcharts-tooltip-box, .apexcharts-custom-tooltip {\n padding: 4px 8px;\n}\n\n.apexcharts-tooltip-boxPlot {\n display: flex;\n flex-direction: column-reverse;\n}\n\n.apexcharts-tooltip-box>div {\n margin: 4px 0;\n}\n\n.apexcharts-tooltip-box span.value {\n font-weight: bold;\n}\n\n.apexcharts-tooltip-rangebar {\n padding: 5px 8px;\n}\n\n.apexcharts-tooltip-rangebar .category {\n font-weight: 600;\n color: #777;\n}\n\n.apexcharts-tooltip-rangebar .series-name {\n font-weight: bold;\n display: block;\n margin-bottom: 5px;\n}\n\n.apexcharts-xaxistooltip {\n opacity: 0;\n padding: 9px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n background: #ECEFF1;\n border: 1px solid #90A4AE;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xaxistooltip.apexcharts-theme-dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-xaxistooltip:after,\n.apexcharts-xaxistooltip:before {\n left: 50%;\n border: solid transparent;\n content: " ";\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n}\n\n.apexcharts-xaxistooltip:after {\n border-color: rgba(236, 239, 241, 0);\n border-width: 6px;\n margin-left: -6px;\n}\n\n.apexcharts-xaxistooltip:before {\n border-color: rgba(144, 164, 174, 0);\n border-width: 7px;\n margin-left: -7px;\n}\n\n.apexcharts-xaxistooltip-bottom:after,\n.apexcharts-xaxistooltip-bottom:before {\n bottom: 100%;\n}\n\n.apexcharts-xaxistooltip-top:after,\n.apexcharts-xaxistooltip-top:before {\n top: 100%;\n}\n\n.apexcharts-xaxistooltip-bottom:after {\n border-bottom-color: #ECEFF1;\n}\n\n.apexcharts-xaxistooltip-bottom:before {\n border-bottom-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:after {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-bottom.apexcharts-theme-dark:before {\n border-bottom-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top:after {\n border-top-color: #ECEFF1\n}\n\n.apexcharts-xaxistooltip-top:before {\n border-top-color: #90A4AE;\n}\n\n.apexcharts-xaxistooltip-top.apexcharts-theme-dark:after {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip-top.apexcharts-theme-dark:before {\n border-top-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-xaxistooltip.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-yaxistooltip {\n opacity: 0;\n padding: 4px 10px;\n pointer-events: none;\n color: #373d3f;\n font-size: 13px;\n text-align: center;\n border-radius: 2px;\n position: absolute;\n z-index: 10;\n background: #ECEFF1;\n border: 1px solid #90A4AE;\n}\n\n.apexcharts-yaxistooltip.apexcharts-theme-dark {\n background: rgba(0, 0, 0, 0.7);\n border: 1px solid rgba(0, 0, 0, 0.5);\n color: #fff;\n}\n\n.apexcharts-yaxistooltip:after,\n.apexcharts-yaxistooltip:before {\n top: 50%;\n border: solid transparent;\n content: " ";\n height: 0;\n width: 0;\n position: absolute;\n pointer-events: none;\n}\n\n.apexcharts-yaxistooltip:after {\n border-color: rgba(236, 239, 241, 0);\n border-width: 6px;\n margin-top: -6px;\n}\n\n.apexcharts-yaxistooltip:before {\n border-color: rgba(144, 164, 174, 0);\n border-width: 7px;\n margin-top: -7px;\n}\n\n.apexcharts-yaxistooltip-left:after,\n.apexcharts-yaxistooltip-left:before {\n left: 100%;\n}\n\n.apexcharts-yaxistooltip-right:after,\n.apexcharts-yaxistooltip-right:before {\n right: 100%;\n}\n\n.apexcharts-yaxistooltip-left:after {\n border-left-color: #ECEFF1;\n}\n\n.apexcharts-yaxistooltip-left:before {\n border-left-color: #90A4AE;\n}\n\n.apexcharts-yaxistooltip-left.apexcharts-theme-dark:after {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-left.apexcharts-theme-dark:before {\n border-left-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right:after {\n border-right-color: #ECEFF1;\n}\n\n.apexcharts-yaxistooltip-right:before {\n border-right-color: #90A4AE;\n}\n\n.apexcharts-yaxistooltip-right.apexcharts-theme-dark:after {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip-right.apexcharts-theme-dark:before {\n border-right-color: rgba(0, 0, 0, 0.5);\n}\n\n.apexcharts-yaxistooltip.apexcharts-active {\n opacity: 1;\n}\n\n.apexcharts-yaxistooltip-hidden {\n display: none;\n}\n\n.apexcharts-xcrosshairs,\n.apexcharts-ycrosshairs {\n pointer-events: none;\n opacity: 0;\n transition: 0.15s ease all;\n}\n\n.apexcharts-xcrosshairs.apexcharts-active,\n.apexcharts-ycrosshairs.apexcharts-active {\n opacity: 1;\n transition: 0.15s ease all;\n}\n\n.apexcharts-ycrosshairs-hidden {\n opacity: 0;\n}\n\n.apexcharts-selection-rect {\n cursor: move;\n}\n\n.svg_select_boundingRect, .svg_select_points_rot {\n pointer-events: none;\n opacity: 0;\n visibility: hidden;\n}\n.apexcharts-selection-rect + g .svg_select_boundingRect,\n.apexcharts-selection-rect + g .svg_select_points_rot {\n opacity: 0;\n visibility: hidden;\n}\n\n.apexcharts-selection-rect + g .svg_select_points_l,\n.apexcharts-selection-rect + g .svg_select_points_r {\n cursor: ew-resize;\n opacity: 1;\n visibility: visible;\n}\n\n.svg_select_points {\n fill: #efefef;\n stroke: #333;\n rx: 2;\n}\n\n.apexcharts-svg.apexcharts-zoomable.hovering-zoom {\n cursor: crosshair\n}\n\n.apexcharts-svg.apexcharts-zoomable.hovering-pan {\n cursor: move\n}\n\n.apexcharts-zoom-icon,\n.apexcharts-zoomin-icon,\n.apexcharts-zoomout-icon,\n.apexcharts-reset-icon,\n.apexcharts-pan-icon,\n.apexcharts-selection-icon,\n.apexcharts-menu-icon,\n.apexcharts-toolbar-custom-icon {\n cursor: pointer;\n width: 20px;\n height: 20px;\n line-height: 24px;\n color: #6E8192;\n text-align: center;\n}\n\n.apexcharts-zoom-icon svg,\n.apexcharts-zoomin-icon svg,\n.apexcharts-zoomout-icon svg,\n.apexcharts-reset-icon svg,\n.apexcharts-menu-icon svg {\n fill: #6E8192;\n}\n\n.apexcharts-selection-icon svg {\n fill: #444;\n transform: scale(0.76)\n}\n\n.apexcharts-theme-dark .apexcharts-zoom-icon svg,\n.apexcharts-theme-dark .apexcharts-zoomin-icon svg,\n.apexcharts-theme-dark .apexcharts-zoomout-icon svg,\n.apexcharts-theme-dark .apexcharts-reset-icon svg,\n.apexcharts-theme-dark .apexcharts-pan-icon svg,\n.apexcharts-theme-dark .apexcharts-selection-icon svg,\n.apexcharts-theme-dark .apexcharts-menu-icon svg,\n.apexcharts-theme-dark .apexcharts-toolbar-custom-icon svg {\n fill: #f3f4f5;\n}\n\n.apexcharts-canvas .apexcharts-zoom-icon.apexcharts-selected svg,\n.apexcharts-canvas .apexcharts-selection-icon.apexcharts-selected svg,\n.apexcharts-canvas .apexcharts-reset-zoom-icon.apexcharts-selected svg {\n fill: #008FFB;\n}\n\n.apexcharts-theme-light .apexcharts-selection-icon:not(.apexcharts-selected):hover svg,\n.apexcharts-theme-light .apexcharts-zoom-icon:not(.apexcharts-selected):hover svg,\n.apexcharts-theme-light .apexcharts-zoomin-icon:hover svg,\n.apexcharts-theme-light .apexcharts-zoomout-icon:hover svg,\n.apexcharts-theme-light .apexcharts-reset-icon:hover svg,\n.apexcharts-theme-light .apexcharts-menu-icon:hover svg {\n fill: #333;\n}\n\n.apexcharts-selection-icon,\n.apexcharts-menu-icon {\n position: relative;\n}\n\n.apexcharts-reset-icon {\n margin-left: 5px;\n}\n\n.apexcharts-zoom-icon,\n.apexcharts-reset-icon,\n.apexcharts-menu-icon {\n transform: scale(0.85);\n}\n\n.apexcharts-zoomin-icon,\n.apexcharts-zoomout-icon {\n transform: scale(0.7)\n}\n\n.apexcharts-zoomout-icon {\n margin-right: 3px;\n}\n\n.apexcharts-pan-icon {\n transform: scale(0.62);\n position: relative;\n left: 1px;\n top: 0px;\n}\n\n.apexcharts-pan-icon svg {\n fill: #fff;\n stroke: #6E8192;\n stroke-width: 2;\n}\n\n.apexcharts-pan-icon.apexcharts-selected svg {\n stroke: #008FFB;\n}\n\n.apexcharts-pan-icon:not(.apexcharts-selected):hover svg {\n stroke: #333;\n}\n\n.apexcharts-toolbar {\n position: absolute;\n z-index: 11;\n max-width: 176px;\n text-align: right;\n border-radius: 3px;\n padding: 0px 6px 2px 6px;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.apexcharts-menu {\n background: #fff;\n position: absolute;\n top: 100%;\n border: 1px solid #ddd;\n border-radius: 3px;\n padding: 3px;\n right: 10px;\n opacity: 0;\n min-width: 110px;\n transition: 0.15s ease all;\n pointer-events: none;\n}\n\n.apexcharts-menu.apexcharts-menu-open {\n opacity: 1;\n pointer-events: all;\n transition: 0.15s ease all;\n}\n\n.apexcharts-menu-item {\n padding: 6px 7px;\n font-size: 12px;\n cursor: pointer;\n}\n\n.apexcharts-theme-light .apexcharts-menu-item:hover {\n background: #eee;\n}\n\n.apexcharts-theme-dark .apexcharts-menu {\n background: rgba(0, 0, 0, 0.7);\n color: #fff;\n}\n\n@media screen and (min-width: 768px) {\n .apexcharts-canvas:hover .apexcharts-toolbar {\n opacity: 1;\n }\n}\n\n.apexcharts-datalabel.apexcharts-element-hidden {\n opacity: 0;\n}\n\n.apexcharts-pie-label,\n.apexcharts-datalabels,\n.apexcharts-datalabel,\n.apexcharts-datalabel-label,\n.apexcharts-datalabel-value {\n cursor: default;\n pointer-events: none;\n}\n\n.apexcharts-pie-label-delay {\n opacity: 0;\n animation-name: opaque;\n animation-duration: 0.3s;\n animation-fill-mode: forwards;\n animation-timing-function: ease;\n}\n\n.apexcharts-canvas .apexcharts-element-hidden {\n opacity: 0;\n}\n\n.apexcharts-hide .apexcharts-series-points {\n opacity: 0;\n}\n\n.apexcharts-gridline,\n.apexcharts-annotation-rect,\n.apexcharts-tooltip .apexcharts-marker,\n.apexcharts-area-series .apexcharts-area,\n.apexcharts-line,\n.apexcharts-zoom-rect,\n.apexcharts-toolbar svg,\n.apexcharts-area-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-line-series .apexcharts-series-markers .apexcharts-marker.no-pointer-events,\n.apexcharts-radar-series path,\n.apexcharts-radar-series polygon {\n pointer-events: none;\n}\n\n\n/* markers */\n\n.apexcharts-marker {\n transition: 0.15s ease all;\n}\n\n@keyframes opaque {\n 0% {\n opacity: 0;\n }\n 100% {\n opacity: 1;\n }\n}\n\n\n/* Resize generated styles */\n\n@keyframes resizeanim {\n from {\n opacity: 0;\n }\n to {\n opacity: 0;\n }\n}\n\n.resize-triggers {\n animation: 1ms resizeanim;\n visibility: hidden;\n opacity: 0;\n}\n\n.resize-triggers,\n.resize-triggers>div,\n.contract-trigger:before {\n content: " ";\n display: block;\n position: absolute;\n top: 0;\n left: 0;\n height: 100%;\n width: 100%;\n overflow: hidden;\n}\n\n.resize-triggers>div {\n background: #eee;\n overflow: auto;\n}\n\n.contract-trigger:before {\n width: 200%;\n height: 200%;\n}'),function(){function t(t){var e=t.__resizeTriggers__,i=e.firstElementChild,a=e.lastElementChild,s=i?i.firstElementChild:null;a&&(a.scrollLeft=a.scrollWidth,a.scrollTop=a.scrollHeight),s&&(s.style.width=i.offsetWidth+1+"px",s.style.height=i.offsetHeight+1+"px"),i&&(i.scrollLeft=i.scrollWidth,i.scrollTop=i.scrollHeight)}function e(e){var i=this;t(this),this.__resizeRAF__&&r(this.__resizeRAF__),this.__resizeRAF__=s((function(){(function(t){return t.offsetWidth!=t.__resizeLast__.width||t.offsetHeight!=t.__resizeLast__.height})(i)&&(i.__resizeLast__.width=i.offsetWidth,i.__resizeLast__.height=i.offsetHeight,i.__resizeListeners__.forEach((function(t){t.call(e)})))}))}var i,a,s=(i=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||function(t){return window.setTimeout(t,20)},function(t){return i(t)}),r=(a=window.cancelAnimationFrame||window.mozCancelAnimationFrame||window.webkitCancelAnimationFrame||window.clearTimeout,function(t){return a(t)}),n=!1,o="animationstart",l="Webkit Moz O ms".split(" "),h="webkitAnimationStart animationstart oAnimationStart MSAnimationStart".split(" "),c=document.createElement("fakeelement");if(void 0!==c.style.animationName&&(n=!0),!1===n)for(var d=0;d<l.length;d++)if(void 0!==c.style[l[d]+"AnimationName"]){o=h[d];break}window.addResizeListener=function(i,a){i.__resizeTriggers__||("static"==getComputedStyle(i).position&&(i.style.position="relative"),i.__resizeLast__={},i.__resizeListeners__=[],(i.__resizeTriggers__=document.createElement("div")).className="resize-triggers",i.__resizeTriggers__.innerHTML='<div class="expand-trigger"><div></div></div><div class="contract-trigger"></div>',i.appendChild(i.__resizeTriggers__),t(i),i.addEventListener("scroll",e,!0),o&&i.__resizeTriggers__.addEventListener(o,(function(e){"resizeanim"==e.animationName&&t(i)}))),i.__resizeListeners__.push(a)},window.removeResizeListener=function(t,i){t&&(t.__resizeListeners__.splice(t.__resizeListeners__.indexOf(i),1),t.__resizeListeners__.length||(t.removeEventListener("scroll",e),t.__resizeTriggers__.parentNode&&(t.__resizeTriggers__=!t.removeChild(t.__resizeTriggers__))))}}(),void 0===window.Apex&&(window.Apex={});var Ft=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"initModules",value:function(){this.ctx.publicMethods=["updateOptions","updateSeries","appendData","appendSeries","toggleSeries","showSeries","hideSeries","setLocale","resetSeries","zoomX","toggleDataPointSelection","dataURI","addXaxisAnnotation","addYaxisAnnotation","addPointAnnotation","clearAnnotations","removeAnnotation","paper","destroy"],this.ctx.eventList=["click","mousedown","mousemove","touchstart","touchmove","mouseup","touchend"],this.ctx.animations=new p(this.ctx),this.ctx.axes=new J(this.ctx),this.ctx.core=new Xt(this.ctx.el,this.ctx),this.ctx.config=new D({}),this.ctx.data=new O(this.ctx),this.ctx.grid=new G(this.ctx),this.ctx.graphics=new b(this.ctx),this.ctx.coreUtils=new y(this.ctx),this.ctx.crosshairs=new Q(this.ctx),this.ctx.events=new Z(this.ctx),this.ctx.exports=new V(this.ctx),this.ctx.localization=new $(this.ctx),this.ctx.options=new S,this.ctx.responsive=new K(this.ctx),this.ctx.series=new M(this.ctx),this.ctx.theme=new tt(this.ctx),this.ctx.formatters=new W(this.ctx),this.ctx.titleSubtitle=new et(this.ctx),this.ctx.legend=new lt(this.ctx),this.ctx.toolbar=new ht(this.ctx),this.ctx.dimensions=new nt(this.ctx),this.ctx.updateHelpers=new Yt(this.ctx),this.ctx.zoomPanSelection=new ct(this.ctx),this.ctx.w.globals.tooltip=new bt(this.ctx)}}]),t}(),Rt=function(){function t(i){e(this,t),this.ctx=i,this.w=i.w}return a(t,[{key:"clear",value:function(t){var e=t.isUpdating;this.ctx.zoomPanSelection&&this.ctx.zoomPanSelection.destroy(),this.ctx.toolbar&&this.ctx.toolbar.destroy(),this.ctx.animations=null,this.ctx.axes=null,this.ctx.annotations=null,this.ctx.core=null,this.ctx.data=null,this.ctx.grid=null,this.ctx.series=null,this.ctx.responsive=null,this.ctx.theme=null,this.ctx.formatters=null,this.ctx.titleSubtitle=null,this.ctx.legend=null,this.ctx.dimensions=null,this.ctx.options=null,this.ctx.crosshairs=null,this.ctx.zoomPanSelection=null,this.ctx.updateHelpers=null,this.ctx.toolbar=null,this.ctx.localization=null,this.ctx.w.globals.tooltip=null,this.clearDomElements({isUpdating:e})}},{key:"killSVG",value:function(t){t.each((function(t,e){this.removeClass("*"),this.off(),this.stop()}),!0),t.ungroup(),t.clear()}},{key:"clearDomElements",value:function(t){var e=this,i=t.isUpdating,a=this.w.globals.dom.Paper.node;a.parentNode&&a.parentNode.parentNode&&!i&&(a.parentNode.parentNode.style.minHeight="unset");var s=this.w.globals.dom.baseEl;s&&this.ctx.eventList.forEach((function(t){s.removeEventListener(t,e.ctx.events.documentEvent)}));var r=this.w.globals.dom;if(null!==this.ctx.el)for(;this.ctx.el.firstChild;)this.ctx.el.removeChild(this.ctx.el.firstChild);this.killSVG(r.Paper),r.Paper.remove(),r.elWrap=null,r.elGraphical=null,r.elAnnotations=null,r.elLegendWrap=null,r.baseEl=null,r.elGridRect=null,r.elGridRectMask=null,r.elGridRectMarkerMask=null,r.elDefs=null}}]),t}();return function(){function t(i,a){e(this,t),this.opts=a,this.ctx=this,this.w=new N(a).init(),this.el=i,this.w.globals.cuid=f.randomId(),this.w.globals.chartID=this.w.config.chart.id?f.escapeString(this.w.config.chart.id):this.w.globals.cuid,new Ft(this).initModules(),this.create=f.bind(this.create,this),this.windowResizeHandler=this._windowResizeHandler.bind(this),this.parentResizeHandler=this._parentResizeCallback.bind(this)}return a(t,[{key:"render",value:function(){var t=this;return new Promise((function(e,i){if(null!==t.el){void 0===Apex._chartInstances&&(Apex._chartInstances=[]),t.w.config.chart.id&&Apex._chartInstances.push({id:t.w.globals.chartID,group:t.w.config.chart.group,chart:t}),t.setLocale(t.w.config.chart.defaultLocale);var a=t.w.config.chart.events.beforeMount;"function"==typeof a&&a(t,t.w),t.events.fireEvent("beforeMount",[t,t.w]),window.addEventListener("resize",t.windowResizeHandler),window.addResizeListener(t.el.parentNode,t.parentResizeHandler);var s=t.create(t.w.config.series,{});if(!s)return e(t);t.mount(s).then((function(){"function"==typeof t.w.config.chart.events.mounted&&t.w.config.chart.events.mounted(t,t.w),t.events.fireEvent("mounted",[t,t.w]),e(s)})).catch((function(t){i(t)}))}else i(new Error("Element not found"))}))}},{key:"create",value:function(t,e){var i=this.w;new Ft(this).initModules();var a=this.w.globals;(a.noData=!1,a.animationEnded=!1,this.responsive.checkResponsiveConfig(e),i.config.xaxis.convertedCatToNumeric)&&new R(i.config).convertCatToNumericXaxis(i.config,this.ctx);if(null===this.el)return a.animationEnded=!0,null;if(this.core.setupElements(),"treemap"===i.config.chart.type&&(i.config.grid.show=!1,i.config.yaxis[0].show=!1),0===a.svgWidth)return a.animationEnded=!0,null;var s=y.checkComboSeries(t);a.comboCharts=s.comboCharts,a.comboBarCount=s.comboBarCount;var r=t.every((function(t){return t.data&&0===t.data.length}));(0===t.length||r)&&this.series.handleNoData(),this.events.setupEventHandlers(),this.data.parseData(t),this.theme.init(),new P(this).setGlobalMarkerSize(),this.formatters.setLabelFormatters(),this.titleSubtitle.draw(),a.noData&&a.collapsedSeries.length!==a.series.length&&!i.config.legend.showForSingleSeries||this.legend.init(),this.series.hasAllSeriesEqualX(),a.axisCharts&&(this.core.coreCalculations(),"category"!==i.config.xaxis.type&&this.formatters.setLabelFormatters(),this.ctx.toolbar.minX=i.globals.minX,this.ctx.toolbar.maxX=i.globals.maxX),this.formatters.heatmapLabelFormatters(),this.dimensions.plotCoords();var n=this.core.xySettings();this.grid.createGridMask();var o=this.core.plotChartType(t,n),l=new z(this);l.bringForward(),i.config.dataLabels.background.enabled&&l.dataLabelsBackground(),this.core.shiftGraphPosition();var h={plot:{left:i.globals.translateX,top:i.globals.translateY,width:i.globals.gridWidth,height:i.globals.gridHeight}};return{elGraph:o,xyRatios:n,elInner:i.globals.dom.elGraphical,dimensions:h}}},{key:"mount",value:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,i=this,a=i.w;return new Promise((function(s,r){if(null===i.el)return r(new Error("Not enough data to display or target element not found"));(null===e||a.globals.allSeriesCollapsed)&&i.series.handleNoData(),"treemap"!==a.config.chart.type&&i.axes.drawAxis(a.config.chart.type,e.xyRatios),i.grid=new G(i);var n=i.grid.drawGrid();i.annotations=new C(i),i.annotations.drawImageAnnos(),i.annotations.drawTextAnnos(),"back"===a.config.grid.position&&n&&a.globals.dom.elGraphical.add(n.el);var o=new _(t.ctx),l=new q(t.ctx);if(null!==n&&(o.xAxisLabelCorrections(n.xAxisTickWidth),l.setYAxisTextAlignments(),a.config.yaxis.map((function(t,e){-1===a.globals.ignoreYAxisIndexes.indexOf(e)&&l.yAxisTitleRotate(e,t.opposite)}))),"back"===a.config.annotations.position&&(a.globals.dom.Paper.add(a.globals.dom.elAnnotations),i.annotations.drawAxesAnnotations()),Array.isArray(e.elGraph))for(var h=0;h<e.elGraph.length;h++)a.globals.dom.elGraphical.add(e.elGraph[h]);else a.globals.dom.elGraphical.add(e.elGraph);if("front"===a.config.grid.position&&n&&a.globals.dom.elGraphical.add(n.el),"front"===a.config.xaxis.crosshairs.position&&i.crosshairs.drawXCrosshairs(),"front"===a.config.yaxis[0].crosshairs.position&&i.crosshairs.drawYCrosshairs(),"front"===a.config.annotations.position&&(a.globals.dom.Paper.add(a.globals.dom.elAnnotations),i.annotations.drawAxesAnnotations()),!a.globals.noData){if(a.config.tooltip.enabled&&!a.globals.noData&&i.w.globals.tooltip.drawTooltip(e.xyRatios),a.globals.axisCharts&&(a.globals.isXNumeric||a.config.xaxis.convertedCatToNumeric||a.globals.isTimelineBar))(a.config.chart.zoom.enabled||a.config.chart.selection&&a.config.chart.selection.enabled||a.config.chart.pan&&a.config.chart.pan.enabled)&&i.zoomPanSelection.init({xyRatios:e.xyRatios});else{var c=a.config.chart.toolbar.tools;["zoom","zoomin","zoomout","selection","pan","reset"].forEach((function(t){c[t]=!1}))}a.config.chart.toolbar.show&&!a.globals.allSeriesCollapsed&&i.toolbar.createToolbar()}a.globals.memory.methodsToExec.length>0&&a.globals.memory.methodsToExec.forEach((function(t){t.method(t.params,!1,t.context)})),a.globals.axisCharts||a.globals.noData||i.core.resizeNonAxisCharts(),s(i)}))}},{key:"destroy",value:function(){window.removeEventListener("resize",this.windowResizeHandler),window.removeResizeListener(this.el.parentNode,this.parentResizeHandler);var t=this.w.config.chart.id;t&&Apex._chartInstances.forEach((function(e,i){e.id===f.escapeString(t)&&Apex._chartInstances.splice(i,1)})),new Rt(this.ctx).clear({isUpdating:!1})}},{key:"updateOptions",value:function(t){var e=this,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],a=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],s=!(arguments.length>3&&void 0!==arguments[3])||arguments[3],r=!(arguments.length>4&&void 0!==arguments[4])||arguments[4],n=this.w;return n.globals.selection=void 0,t.series&&(this.series.resetSeries(!1,!0,!1),t.series.length&&t.series[0].data&&(t.series=t.series.map((function(t,i){return e.updateHelpers._extendSeries(t,i)}))),this.updateHelpers.revertDefaultAxisMinMax()),t.xaxis&&(t=this.updateHelpers.forceXAxisUpdate(t)),t.yaxis&&(t=this.updateHelpers.forceYAxisUpdate(t)),n.globals.collapsedSeriesIndices.length>0&&this.series.clearPreviousPaths(),t.theme&&(t=this.theme.updateThemeOptions(t)),this.updateHelpers._updateOptions(t,i,a,s,r)}},{key:"updateSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];return this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(t,e,i)}},{key:"appendSeries",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=!(arguments.length>2&&void 0!==arguments[2])||arguments[2],a=this.w.config.series.slice();return a.push(t),this.series.resetSeries(!1),this.updateHelpers.revertDefaultAxisMinMax(),this.updateHelpers._updateSeries(a,e,i)}},{key:"appendData",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=this;i.w.globals.dataChanged=!0,i.series.getPreviousPaths();for(var a=i.w.config.series.slice(),s=0;s<a.length;s++)if(null!==t[s]&&void 0!==t[s])for(var r=0;r<t[s].data.length;r++)a[s].data.push(t[s].data[r]);return i.w.config.series=a,e&&(i.w.globals.initialSeries=f.clone(i.w.config.series)),this.update()}},{key:"update",value:function(t){var e=this;return new Promise((function(i,a){new Rt(e.ctx).clear({isUpdating:!0});var s=e.create(e.w.config.series,t);if(!s)return i(e);e.mount(s).then((function(){"function"==typeof e.w.config.chart.events.updated&&e.w.config.chart.events.updated(e,e.w),e.events.fireEvent("updated",[e,e.w]),e.w.globals.isDirty=!0,i(e)})).catch((function(t){a(t)}))}))}},{key:"getSyncedCharts",value:function(){var t=this.getGroupedCharts(),e=[this];return t.length&&(e=[],t.forEach((function(t){e.push(t)}))),e}},{key:"getGroupedCharts",value:function(){var t=this;return Apex._chartInstances.filter((function(t){if(t.group)return!0})).map((function(e){return t.w.config.chart.group===e.group?e.chart:t}))}},{key:"toggleSeries",value:function(t){return this.series.toggleSeries(t)}},{key:"showSeries",value:function(t){this.series.showSeries(t)}},{key:"hideSeries",value:function(t){this.series.hideSeries(t)}},{key:"resetSeries",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0],e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];this.series.resetSeries(t,e)}},{key:"addEventListener",value:function(t,e){this.events.addEventListener(t,e)}},{key:"removeEventListener",value:function(t,e){this.events.removeEventListener(t,e)}},{key:"addXaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addXaxisAnnotationExternal(t,e,a)}},{key:"addYaxisAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addYaxisAnnotationExternal(t,e,a)}},{key:"addPointAnnotation",value:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1],i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,a=this;i&&(a=i),a.annotations.addPointAnnotationExternal(t,e,a)}},{key:"clearAnnotations",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:void 0,e=this;t&&(e=t),e.annotations.clearAnnotations(e)}},{key:"removeAnnotation",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0,i=this;e&&(i=e),i.annotations.removeAnnotation(i,t)}},{key:"getChartArea",value:function(){return this.w.globals.dom.baseEl.querySelector(".apexcharts-inner")}},{key:"getSeriesTotalXRange",value:function(t,e){return this.coreUtils.getSeriesTotalsXRange(t,e)}},{key:"getHighestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=new U(this.ctx);return e.getMinYMaxY(t).highestY}},{key:"getLowestValueInSeries",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=new U(this.ctx);return e.getMinYMaxY(t).lowestY}},{key:"getSeriesTotal",value:function(){return this.w.globals.seriesTotals}},{key:"toggleDataPointSelection",value:function(t,e){return this.updateHelpers.toggleDataPointSelection(t,e)}},{key:"zoomX",value:function(t,e){this.ctx.toolbar.zoomUpdateOptions(t,e)}},{key:"setLocale",value:function(t){this.localization.setCurrentLocaleValues(t)}},{key:"dataURI",value:function(){return new V(this.ctx).dataURI()}},{key:"paper",value:function(){return this.w.globals.dom.Paper}},{key:"_parentResizeCallback",value:function(){this.w.globals.animationEnded&&this.w.config.chart.redrawOnParentResize&&this._windowResize()}},{key:"_windowResize",value:function(){var t=this;clearTimeout(this.w.globals.resizeTimer),this.w.globals.resizeTimer=window.setTimeout((function(){t.w.globals.resized=!0,t.w.globals.dataChanged=!1,t.ctx.update()}),150)}},{key:"_windowResizeHandler",value:function(){var t=this.w.config.chart.redrawOnWindowResize;"function"==typeof t&&(t=t()),t&&this._windowResize()}}],[{key:"getChartByID",value:function(t){var e=f.escapeString(t),i=Apex._chartInstances.filter((function(t){return t.id===e}))[0];return i&&i.chart}},{key:"initOnLoad",value:function(){for(var e=document.querySelectorAll("[data-apexcharts]"),i=0;i<e.length;i++){new t(e[i],JSON.parse(e[i].getAttribute("data-options"))).render()}}},{key:"exec",value:function(t,e){var i=this.getChartByID(t);if(i){i.w.globals.isExecCalled=!0;var a=null;if(-1!==i.publicMethods.indexOf(e)){for(var s=arguments.length,r=new Array(s>2?s-2:0),n=2;n<s;n++)r[n-2]=arguments[n];a=i[e].apply(i,r)}return a}}},{key:"merge",value:function(t,e){return f.extend(t,e)}}]),t}()}));
|
assets/lib/daterangepicker/daterangepicker.css
ADDED
@@ -0,0 +1,410 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.daterangepicker {
|
2 |
+
position: absolute;
|
3 |
+
color: inherit;
|
4 |
+
background-color: #fff;
|
5 |
+
border-radius: 4px;
|
6 |
+
border: 1px solid #ddd;
|
7 |
+
width: 278px;
|
8 |
+
max-width: none;
|
9 |
+
padding: 0;
|
10 |
+
margin-top: 7px;
|
11 |
+
top: 100px;
|
12 |
+
left: 20px;
|
13 |
+
z-index: 3001;
|
14 |
+
display: none;
|
15 |
+
font-family: arial;
|
16 |
+
font-size: 15px;
|
17 |
+
line-height: 1em;
|
18 |
+
}
|
19 |
+
|
20 |
+
.daterangepicker:before, .daterangepicker:after {
|
21 |
+
position: absolute;
|
22 |
+
display: inline-block;
|
23 |
+
border-bottom-color: rgba(0, 0, 0, 0.2);
|
24 |
+
content: '';
|
25 |
+
}
|
26 |
+
|
27 |
+
.daterangepicker:before {
|
28 |
+
top: -7px;
|
29 |
+
border-right: 7px solid transparent;
|
30 |
+
border-left: 7px solid transparent;
|
31 |
+
border-bottom: 7px solid #ccc;
|
32 |
+
}
|
33 |
+
|
34 |
+
.daterangepicker:after {
|
35 |
+
top: -6px;
|
36 |
+
border-right: 6px solid transparent;
|
37 |
+
border-bottom: 6px solid #fff;
|
38 |
+
border-left: 6px solid transparent;
|
39 |
+
}
|
40 |
+
|
41 |
+
.daterangepicker.opensleft:before {
|
42 |
+
right: 9px;
|
43 |
+
}
|
44 |
+
|
45 |
+
.daterangepicker.opensleft:after {
|
46 |
+
right: 10px;
|
47 |
+
}
|
48 |
+
|
49 |
+
.daterangepicker.openscenter:before {
|
50 |
+
left: 0;
|
51 |
+
right: 0;
|
52 |
+
width: 0;
|
53 |
+
margin-left: auto;
|
54 |
+
margin-right: auto;
|
55 |
+
}
|
56 |
+
|
57 |
+
.daterangepicker.openscenter:after {
|
58 |
+
left: 0;
|
59 |
+
right: 0;
|
60 |
+
width: 0;
|
61 |
+
margin-left: auto;
|
62 |
+
margin-right: auto;
|
63 |
+
}
|
64 |
+
|
65 |
+
.daterangepicker.opensright:before {
|
66 |
+
left: 9px;
|
67 |
+
}
|
68 |
+
|
69 |
+
.daterangepicker.opensright:after {
|
70 |
+
left: 10px;
|
71 |
+
}
|
72 |
+
|
73 |
+
.daterangepicker.drop-up {
|
74 |
+
margin-top: -7px;
|
75 |
+
}
|
76 |
+
|
77 |
+
.daterangepicker.drop-up:before {
|
78 |
+
top: initial;
|
79 |
+
bottom: -7px;
|
80 |
+
border-bottom: initial;
|
81 |
+
border-top: 7px solid #ccc;
|
82 |
+
}
|
83 |
+
|
84 |
+
.daterangepicker.drop-up:after {
|
85 |
+
top: initial;
|
86 |
+
bottom: -6px;
|
87 |
+
border-bottom: initial;
|
88 |
+
border-top: 6px solid #fff;
|
89 |
+
}
|
90 |
+
|
91 |
+
.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
|
92 |
+
float: none;
|
93 |
+
}
|
94 |
+
|
95 |
+
.daterangepicker.single .drp-selected {
|
96 |
+
display: none;
|
97 |
+
}
|
98 |
+
|
99 |
+
.daterangepicker.show-calendar .drp-calendar {
|
100 |
+
display: block;
|
101 |
+
}
|
102 |
+
|
103 |
+
.daterangepicker.show-calendar .drp-buttons {
|
104 |
+
display: block;
|
105 |
+
}
|
106 |
+
|
107 |
+
.daterangepicker.auto-apply .drp-buttons {
|
108 |
+
display: none;
|
109 |
+
}
|
110 |
+
|
111 |
+
.daterangepicker .drp-calendar {
|
112 |
+
display: none;
|
113 |
+
max-width: 270px;
|
114 |
+
}
|
115 |
+
|
116 |
+
.daterangepicker .drp-calendar.left {
|
117 |
+
padding: 8px 0 8px 8px;
|
118 |
+
}
|
119 |
+
|
120 |
+
.daterangepicker .drp-calendar.right {
|
121 |
+
padding: 8px;
|
122 |
+
}
|
123 |
+
|
124 |
+
.daterangepicker .drp-calendar.single .calendar-table {
|
125 |
+
border: none;
|
126 |
+
}
|
127 |
+
|
128 |
+
.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
|
129 |
+
color: #fff;
|
130 |
+
border: solid black;
|
131 |
+
border-width: 0 2px 2px 0;
|
132 |
+
border-radius: 0;
|
133 |
+
display: inline-block;
|
134 |
+
padding: 3px;
|
135 |
+
}
|
136 |
+
|
137 |
+
.daterangepicker .calendar-table .next span {
|
138 |
+
transform: rotate(-45deg);
|
139 |
+
-webkit-transform: rotate(-45deg);
|
140 |
+
}
|
141 |
+
|
142 |
+
.daterangepicker .calendar-table .prev span {
|
143 |
+
transform: rotate(135deg);
|
144 |
+
-webkit-transform: rotate(135deg);
|
145 |
+
}
|
146 |
+
|
147 |
+
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
|
148 |
+
white-space: nowrap;
|
149 |
+
text-align: center;
|
150 |
+
vertical-align: middle;
|
151 |
+
min-width: 32px;
|
152 |
+
width: 32px;
|
153 |
+
height: 24px;
|
154 |
+
line-height: 24px;
|
155 |
+
font-size: 12px;
|
156 |
+
border-radius: 4px;
|
157 |
+
border: 1px solid transparent;
|
158 |
+
white-space: nowrap;
|
159 |
+
cursor: pointer;
|
160 |
+
}
|
161 |
+
|
162 |
+
.daterangepicker .calendar-table {
|
163 |
+
border: 1px solid #fff;
|
164 |
+
border-radius: 4px;
|
165 |
+
background-color: #fff;
|
166 |
+
}
|
167 |
+
|
168 |
+
.daterangepicker .calendar-table table {
|
169 |
+
width: 100%;
|
170 |
+
margin: 0;
|
171 |
+
border-spacing: 0;
|
172 |
+
border-collapse: collapse;
|
173 |
+
}
|
174 |
+
|
175 |
+
.daterangepicker td.available:hover, .daterangepicker th.available:hover {
|
176 |
+
background-color: #eee;
|
177 |
+
border-color: transparent;
|
178 |
+
color: inherit;
|
179 |
+
}
|
180 |
+
|
181 |
+
.daterangepicker td.week, .daterangepicker th.week {
|
182 |
+
font-size: 80%;
|
183 |
+
color: #ccc;
|
184 |
+
}
|
185 |
+
|
186 |
+
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
|
187 |
+
background-color: #fff;
|
188 |
+
border-color: transparent;
|
189 |
+
color: #999;
|
190 |
+
}
|
191 |
+
|
192 |
+
.daterangepicker td.in-range {
|
193 |
+
background-color: #ebf4f8;
|
194 |
+
border-color: transparent;
|
195 |
+
color: #000;
|
196 |
+
border-radius: 0;
|
197 |
+
}
|
198 |
+
|
199 |
+
.daterangepicker td.start-date {
|
200 |
+
border-radius: 4px 0 0 4px;
|
201 |
+
}
|
202 |
+
|
203 |
+
.daterangepicker td.end-date {
|
204 |
+
border-radius: 0 4px 4px 0;
|
205 |
+
}
|
206 |
+
|
207 |
+
.daterangepicker td.start-date.end-date {
|
208 |
+
border-radius: 4px;
|
209 |
+
}
|
210 |
+
|
211 |
+
.daterangepicker td.active, .daterangepicker td.active:hover {
|
212 |
+
background-color: #357ebd;
|
213 |
+
border-color: transparent;
|
214 |
+
color: #fff;
|
215 |
+
}
|
216 |
+
|
217 |
+
.daterangepicker th.month {
|
218 |
+
width: auto;
|
219 |
+
}
|
220 |
+
|
221 |
+
.daterangepicker td.disabled, .daterangepicker option.disabled {
|
222 |
+
color: #999;
|
223 |
+
cursor: not-allowed;
|
224 |
+
text-decoration: line-through;
|
225 |
+
}
|
226 |
+
|
227 |
+
.daterangepicker select.monthselect, .daterangepicker select.yearselect {
|
228 |
+
font-size: 12px;
|
229 |
+
padding: 1px;
|
230 |
+
height: auto;
|
231 |
+
margin: 0;
|
232 |
+
cursor: default;
|
233 |
+
}
|
234 |
+
|
235 |
+
.daterangepicker select.monthselect {
|
236 |
+
margin-right: 2%;
|
237 |
+
width: 56%;
|
238 |
+
}
|
239 |
+
|
240 |
+
.daterangepicker select.yearselect {
|
241 |
+
width: 40%;
|
242 |
+
}
|
243 |
+
|
244 |
+
.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
|
245 |
+
width: 50px;
|
246 |
+
margin: 0 auto;
|
247 |
+
background: #eee;
|
248 |
+
border: 1px solid #eee;
|
249 |
+
padding: 2px;
|
250 |
+
outline: 0;
|
251 |
+
font-size: 12px;
|
252 |
+
}
|
253 |
+
|
254 |
+
.daterangepicker .calendar-time {
|
255 |
+
text-align: center;
|
256 |
+
margin: 4px auto 0 auto;
|
257 |
+
line-height: 30px;
|
258 |
+
position: relative;
|
259 |
+
}
|
260 |
+
|
261 |
+
.daterangepicker .calendar-time select.disabled {
|
262 |
+
color: #ccc;
|
263 |
+
cursor: not-allowed;
|
264 |
+
}
|
265 |
+
|
266 |
+
.daterangepicker .drp-buttons {
|
267 |
+
clear: both;
|
268 |
+
text-align: right;
|
269 |
+
padding: 8px;
|
270 |
+
border-top: 1px solid #ddd;
|
271 |
+
display: none;
|
272 |
+
line-height: 12px;
|
273 |
+
vertical-align: middle;
|
274 |
+
}
|
275 |
+
|
276 |
+
.daterangepicker .drp-selected {
|
277 |
+
display: inline-block;
|
278 |
+
font-size: 12px;
|
279 |
+
padding-right: 8px;
|
280 |
+
}
|
281 |
+
|
282 |
+
.daterangepicker .drp-buttons .btn {
|
283 |
+
margin-left: 8px;
|
284 |
+
font-size: 12px;
|
285 |
+
font-weight: bold;
|
286 |
+
padding: 4px 8px;
|
287 |
+
}
|
288 |
+
|
289 |
+
.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
|
290 |
+
border-right: 1px solid #ddd;
|
291 |
+
}
|
292 |
+
|
293 |
+
.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
|
294 |
+
border-left: 1px solid #ddd;
|
295 |
+
}
|
296 |
+
|
297 |
+
.daterangepicker.show-ranges.rtl .drp-calendar.right {
|
298 |
+
border-right: 1px solid #ddd;
|
299 |
+
}
|
300 |
+
|
301 |
+
.daterangepicker.show-ranges.ltr .drp-calendar.left {
|
302 |
+
border-left: 1px solid #ddd;
|
303 |
+
}
|
304 |
+
|
305 |
+
.daterangepicker .ranges {
|
306 |
+
float: none;
|
307 |
+
text-align: left;
|
308 |
+
margin: 0;
|
309 |
+
}
|
310 |
+
|
311 |
+
.daterangepicker.show-calendar .ranges {
|
312 |
+
margin-top: 8px;
|
313 |
+
}
|
314 |
+
|
315 |
+
.daterangepicker .ranges ul {
|
316 |
+
list-style: none;
|
317 |
+
margin: 0 auto;
|
318 |
+
padding: 0;
|
319 |
+
width: 100%;
|
320 |
+
}
|
321 |
+
|
322 |
+
.daterangepicker .ranges li {
|
323 |
+
font-size: 12px;
|
324 |
+
padding: 8px 12px;
|
325 |
+
cursor: pointer;
|
326 |
+
}
|
327 |
+
|
328 |
+
.daterangepicker .ranges li:hover {
|
329 |
+
background-color: #eee;
|
330 |
+
}
|
331 |
+
|
332 |
+
.daterangepicker .ranges li.active {
|
333 |
+
background-color: #08c;
|
334 |
+
color: #fff;
|
335 |
+
}
|
336 |
+
|
337 |
+
/* Larger Screen Styling */
|
338 |
+
@media (min-width: 564px) {
|
339 |
+
.daterangepicker {
|
340 |
+
width: auto;
|
341 |
+
}
|
342 |
+
|
343 |
+
.daterangepicker .ranges ul {
|
344 |
+
width: 140px;
|
345 |
+
}
|
346 |
+
|
347 |
+
.daterangepicker.single .ranges ul {
|
348 |
+
width: 100%;
|
349 |
+
}
|
350 |
+
|
351 |
+
.daterangepicker.single .drp-calendar.left {
|
352 |
+
clear: none;
|
353 |
+
}
|
354 |
+
|
355 |
+
.daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
|
356 |
+
float: left;
|
357 |
+
}
|
358 |
+
|
359 |
+
.daterangepicker {
|
360 |
+
direction: ltr;
|
361 |
+
text-align: left;
|
362 |
+
}
|
363 |
+
|
364 |
+
.daterangepicker .drp-calendar.left {
|
365 |
+
clear: left;
|
366 |
+
margin-right: 0;
|
367 |
+
}
|
368 |
+
|
369 |
+
.daterangepicker .drp-calendar.left .calendar-table {
|
370 |
+
border-right: none;
|
371 |
+
border-top-right-radius: 0;
|
372 |
+
border-bottom-right-radius: 0;
|
373 |
+
}
|
374 |
+
|
375 |
+
.daterangepicker .drp-calendar.right {
|
376 |
+
margin-left: 0;
|
377 |
+
}
|
378 |
+
|
379 |
+
.daterangepicker .drp-calendar.right .calendar-table {
|
380 |
+
border-left: none;
|
381 |
+
border-top-left-radius: 0;
|
382 |
+
border-bottom-left-radius: 0;
|
383 |
+
}
|
384 |
+
|
385 |
+
.daterangepicker .drp-calendar.left .calendar-table {
|
386 |
+
padding-right: 8px;
|
387 |
+
}
|
388 |
+
|
389 |
+
.daterangepicker .ranges, .daterangepicker .drp-calendar {
|
390 |
+
float: left;
|
391 |
+
}
|
392 |
+
}
|
393 |
+
|
394 |
+
@media (min-width: 730px) {
|
395 |
+
.daterangepicker .ranges {
|
396 |
+
width: auto;
|
397 |
+
}
|
398 |
+
|
399 |
+
.daterangepicker .ranges {
|
400 |
+
float: left;
|
401 |
+
}
|
402 |
+
|
403 |
+
.daterangepicker.rtl .ranges {
|
404 |
+
float: right;
|
405 |
+
}
|
406 |
+
|
407 |
+
.daterangepicker .drp-calendar.left {
|
408 |
+
clear: none !important;
|
409 |
+
}
|
410 |
+
}
|
assets/lib/daterangepicker/daterangepicker.js
ADDED
@@ -0,0 +1,1578 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* @version: 3.1
|
3 |
+
* @author: Dan Grossman http://www.dangrossman.info/
|
4 |
+
* @copyright: Copyright (c) 2012-2019 Dan Grossman. All rights reserved.
|
5 |
+
* @license: Licensed under the MIT license. See http://www.opensource.org/licenses/mit-license.php
|
6 |
+
* @website: http://www.daterangepicker.com/
|
7 |
+
*/
|
8 |
+
// Following the UMD template https://github.com/umdjs/umd/blob/master/templates/returnExportsGlobal.js
|
9 |
+
(function (root, factory) {
|
10 |
+
if (typeof define === 'function' && define.amd) {
|
11 |
+
// AMD. Make globaly available as well
|
12 |
+
define(['moment', 'jquery'], function (moment, jquery) {
|
13 |
+
if (!jquery.fn) jquery.fn = {}; // webpack server rendering
|
14 |
+
if (typeof moment !== 'function' && moment.hasOwnProperty('default')) moment = moment['default']
|
15 |
+
return factory(moment, jquery);
|
16 |
+
});
|
17 |
+
} else if (typeof module === 'object' && module.exports) {
|
18 |
+
// Node / Browserify
|
19 |
+
//isomorphic issue
|
20 |
+
var jQuery = (typeof window != 'undefined') ? window.jQuery : undefined;
|
21 |
+
if (!jQuery) {
|
22 |
+
jQuery = require('jquery');
|
23 |
+
if (!jQuery.fn) jQuery.fn = {};
|
24 |
+
}
|
25 |
+
var moment = (typeof window != 'undefined' && typeof window.moment != 'undefined') ? window.moment : require('moment');
|
26 |
+
module.exports = factory(moment, jQuery);
|
27 |
+
} else {
|
28 |
+
// Browser globals
|
29 |
+
root.daterangepicker = factory(root.moment, root.jQuery);
|
30 |
+
}
|
31 |
+
}(typeof window !== 'undefined' ? window : this, function(moment, $) {
|
32 |
+
var DateRangePicker = function(element, options, cb) {
|
33 |
+
|
34 |
+
//default settings for options
|
35 |
+
this.parentEl = 'body';
|
36 |
+
this.element = $(element);
|
37 |
+
this.startDate = moment().startOf('day');
|
38 |
+
this.endDate = moment().endOf('day');
|
39 |
+
this.minDate = false;
|
40 |
+
this.maxDate = false;
|
41 |
+
this.maxSpan = false;
|
42 |
+
this.autoApply = false;
|
43 |
+
this.singleDatePicker = false;
|
44 |
+
this.showDropdowns = false;
|
45 |
+
this.minYear = moment().subtract(100, 'year').format('YYYY');
|
46 |
+
this.maxYear = moment().add(100, 'year').format('YYYY');
|
47 |
+
this.showWeekNumbers = false;
|
48 |
+
this.showISOWeekNumbers = false;
|
49 |
+
this.showCustomRangeLabel = true;
|
50 |
+
this.timePicker = false;
|
51 |
+
this.timePicker24Hour = false;
|
52 |
+
this.timePickerIncrement = 1;
|
53 |
+
this.timePickerSeconds = false;
|
54 |
+
this.linkedCalendars = true;
|
55 |
+
this.autoUpdateInput = true;
|
56 |
+
this.alwaysShowCalendars = false;
|
57 |
+
this.ranges = {};
|
58 |
+
|
59 |
+
this.opens = 'right';
|
60 |
+
if (this.element.hasClass('pull-right'))
|
61 |
+
this.opens = 'left';
|
62 |
+
|
63 |
+
this.drops = 'down';
|
64 |
+
if (this.element.hasClass('dropup'))
|
65 |
+
this.drops = 'up';
|
66 |
+
|
67 |
+
this.buttonClasses = 'btn btn-sm';
|
68 |
+
this.applyButtonClasses = 'btn-primary';
|
69 |
+
this.cancelButtonClasses = 'btn-default';
|
70 |
+
|
71 |
+
this.locale = {
|
72 |
+
direction: 'ltr',
|
73 |
+
format: moment.localeData().longDateFormat('L'),
|
74 |
+
separator: ' - ',
|
75 |
+
applyLabel: 'Apply',
|
76 |
+
cancelLabel: 'Cancel',
|
77 |
+
weekLabel: 'W',
|
78 |
+
customRangeLabel: 'Custom Range',
|
79 |
+
daysOfWeek: moment.weekdaysMin(),
|
80 |
+
monthNames: moment.monthsShort(),
|
81 |
+
firstDay: moment.localeData().firstDayOfWeek()
|
82 |
+
};
|
83 |
+
|
84 |
+
this.callback = function() { };
|
85 |
+
|
86 |
+
//some state information
|
87 |
+
this.isShowing = false;
|
88 |
+
this.leftCalendar = {};
|
89 |
+
this.rightCalendar = {};
|
90 |
+
|
91 |
+
//custom options from user
|
92 |
+
if (typeof options !== 'object' || options === null)
|
93 |
+
options = {};
|
94 |
+
|
95 |
+
//allow setting options with data attributes
|
96 |
+
//data-api options will be overwritten with custom javascript options
|
97 |
+
options = $.extend(this.element.data(), options);
|
98 |
+
|
99 |
+
//html template for the picker UI
|
100 |
+
if (typeof options.template !== 'string' && !(options.template instanceof $))
|
101 |
+
options.template =
|
102 |
+
'<div class="daterangepicker">' +
|
103 |
+
'<div class="ranges"></div>' +
|
104 |
+
'<div class="drp-calendar left">' +
|
105 |
+
'<div class="calendar-table"></div>' +
|
106 |
+
'<div class="calendar-time"></div>' +
|
107 |
+
'</div>' +
|
108 |
+
'<div class="drp-calendar right">' +
|
109 |
+
'<div class="calendar-table"></div>' +
|
110 |
+
'<div class="calendar-time"></div>' +
|
111 |
+
'</div>' +
|
112 |
+
'<div class="drp-buttons">' +
|
113 |
+
'<span class="drp-selected"></span>' +
|
114 |
+
'<button class="cancelBtn" type="button"></button>' +
|
115 |
+
'<button class="applyBtn" disabled="disabled" type="button"></button> ' +
|
116 |
+
'</div>' +
|
117 |
+
'</div>';
|
118 |
+
|
119 |
+
this.parentEl = (options.parentEl && $(options.parentEl).length) ? $(options.parentEl) : $(this.parentEl);
|
120 |
+
this.container = $(options.template).appendTo(this.parentEl);
|
121 |
+
|
122 |
+
//
|
123 |
+
// handle all the possible options overriding defaults
|
124 |
+
//
|
125 |
+
|
126 |
+
if (typeof options.locale === 'object') {
|
127 |
+
|
128 |
+
if (typeof options.locale.direction === 'string')
|
129 |
+
this.locale.direction = options.locale.direction;
|
130 |
+
|
131 |
+
if (typeof options.locale.format === 'string')
|
132 |
+
this.locale.format = options.locale.format;
|
133 |
+
|
134 |
+
if (typeof options.locale.separator === 'string')
|
135 |
+
this.locale.separator = options.locale.separator;
|
136 |
+
|
137 |
+
if (typeof options.locale.daysOfWeek === 'object')
|
138 |
+
this.locale.daysOfWeek = options.locale.daysOfWeek.slice();
|
139 |
+
|
140 |
+
if (typeof options.locale.monthNames === 'object')
|
141 |
+
this.locale.monthNames = options.locale.monthNames.slice();
|
142 |
+
|
143 |
+
if (typeof options.locale.firstDay === 'number')
|
144 |
+
this.locale.firstDay = options.locale.firstDay;
|
145 |
+
|
146 |
+
if (typeof options.locale.applyLabel === 'string')
|
147 |
+
this.locale.applyLabel = options.locale.applyLabel;
|
148 |
+
|
149 |
+
if (typeof options.locale.cancelLabel === 'string')
|
150 |
+
this.locale.cancelLabel = options.locale.cancelLabel;
|
151 |
+
|
152 |
+
if (typeof options.locale.weekLabel === 'string')
|
153 |
+
this.locale.weekLabel = options.locale.weekLabel;
|
154 |
+
|
155 |
+
if (typeof options.locale.customRangeLabel === 'string'){
|
156 |
+
//Support unicode chars in the custom range name.
|
157 |
+
var elem = document.createElement('textarea');
|
158 |
+
elem.innerHTML = options.locale.customRangeLabel;
|
159 |
+
var rangeHtml = elem.value;
|
160 |
+
this.locale.customRangeLabel = rangeHtml;
|
161 |
+
}
|
162 |
+
}
|
163 |
+
this.container.addClass(this.locale.direction);
|
164 |
+
|
165 |
+
if (typeof options.startDate === 'string')
|
166 |
+
this.startDate = moment(options.startDate, this.locale.format);
|
167 |
+
|
168 |
+
if (typeof options.endDate === 'string')
|
169 |
+
this.endDate = moment(options.endDate, this.locale.format);
|
170 |
+
|
171 |
+
if (typeof options.minDate === 'string')
|
172 |
+
this.minDate = moment(options.minDate, this.locale.format);
|
173 |
+
|
174 |
+
if (typeof options.maxDate === 'string')
|
175 |
+
this.maxDate = moment(options.maxDate, this.locale.format);
|
176 |
+
|
177 |
+
if (typeof options.startDate === 'object')
|
178 |
+
this.startDate = moment(options.startDate);
|
179 |
+
|
180 |
+
if (typeof options.endDate === 'object')
|
181 |
+
this.endDate = moment(options.endDate);
|
182 |
+
|
183 |
+
if (typeof options.minDate === 'object')
|
184 |
+
this.minDate = moment(options.minDate);
|
185 |
+
|
186 |
+
if (typeof options.maxDate === 'object')
|
187 |
+
this.maxDate = moment(options.maxDate);
|
188 |
+
|
189 |
+
// sanity check for bad options
|
190 |
+
if (this.minDate && this.startDate.isBefore(this.minDate))
|
191 |
+
this.startDate = this.minDate.clone();
|
192 |
+
|
193 |
+
// sanity check for bad options
|
194 |
+
if (this.maxDate && this.endDate.isAfter(this.maxDate))
|
195 |
+
this.endDate = this.maxDate.clone();
|
196 |
+
|
197 |
+
if (typeof options.applyButtonClasses === 'string')
|
198 |
+
this.applyButtonClasses = options.applyButtonClasses;
|
199 |
+
|
200 |
+
if (typeof options.applyClass === 'string') //backwards compat
|
201 |
+
this.applyButtonClasses = options.applyClass;
|
202 |
+
|
203 |
+
if (typeof options.cancelButtonClasses === 'string')
|
204 |
+
this.cancelButtonClasses = options.cancelButtonClasses;
|
205 |
+
|
206 |
+
if (typeof options.cancelClass === 'string') //backwards compat
|
207 |
+
this.cancelButtonClasses = options.cancelClass;
|
208 |
+
|
209 |
+
if (typeof options.maxSpan === 'object')
|
210 |
+
this.maxSpan = options.maxSpan;
|
211 |
+
|
212 |
+
if (typeof options.dateLimit === 'object') //backwards compat
|
213 |
+
this.maxSpan = options.dateLimit;
|
214 |
+
|
215 |
+
if (typeof options.opens === 'string')
|
216 |
+
this.opens = options.opens;
|
217 |
+
|
218 |
+
if (typeof options.drops === 'string')
|
219 |
+
this.drops = options.drops;
|
220 |
+
|
221 |
+
if (typeof options.showWeekNumbers === 'boolean')
|
222 |
+
this.showWeekNumbers = options.showWeekNumbers;
|
223 |
+
|
224 |
+
if (typeof options.showISOWeekNumbers === 'boolean')
|
225 |
+
this.showISOWeekNumbers = options.showISOWeekNumbers;
|
226 |
+
|
227 |
+
if (typeof options.buttonClasses === 'string')
|
228 |
+
this.buttonClasses = options.buttonClasses;
|
229 |
+
|
230 |
+
if (typeof options.buttonClasses === 'object')
|
231 |
+
this.buttonClasses = options.buttonClasses.join(' ');
|
232 |
+
|
233 |
+
if (typeof options.showDropdowns === 'boolean')
|
234 |
+
this.showDropdowns = options.showDropdowns;
|
235 |
+
|
236 |
+
if (typeof options.minYear === 'number')
|
237 |
+
this.minYear = options.minYear;
|
238 |
+
|
239 |
+
if (typeof options.maxYear === 'number')
|
240 |
+
this.maxYear = options.maxYear;
|
241 |
+
|
242 |
+
if (typeof options.showCustomRangeLabel === 'boolean')
|
243 |
+
this.showCustomRangeLabel = options.showCustomRangeLabel;
|
244 |
+
|
245 |
+
if (typeof options.singleDatePicker === 'boolean') {
|
246 |
+
this.singleDatePicker = options.singleDatePicker;
|
247 |
+
if (this.singleDatePicker)
|
248 |
+
this.endDate = this.startDate.clone();
|
249 |
+
}
|
250 |
+
|
251 |
+
if (typeof options.timePicker === 'boolean')
|
252 |
+
this.timePicker = options.timePicker;
|
253 |
+
|
254 |
+
if (typeof options.timePickerSeconds === 'boolean')
|
255 |
+
this.timePickerSeconds = options.timePickerSeconds;
|
256 |
+
|
257 |
+
if (typeof options.timePickerIncrement === 'number')
|
258 |
+
this.timePickerIncrement = options.timePickerIncrement;
|
259 |
+
|
260 |
+
if (typeof options.timePicker24Hour === 'boolean')
|
261 |
+
this.timePicker24Hour = options.timePicker24Hour;
|
262 |
+
|
263 |
+
if (typeof options.autoApply === 'boolean')
|
264 |
+
this.autoApply = options.autoApply;
|
265 |
+
|
266 |
+
if (typeof options.autoUpdateInput === 'boolean')
|
267 |
+
this.autoUpdateInput = options.autoUpdateInput;
|
268 |
+
|
269 |
+
if (typeof options.linkedCalendars === 'boolean')
|
270 |
+
this.linkedCalendars = options.linkedCalendars;
|
271 |
+
|
272 |
+
if (typeof options.isInvalidDate === 'function')
|
273 |
+
this.isInvalidDate = options.isInvalidDate;
|
274 |
+
|
275 |
+
if (typeof options.isCustomDate === 'function')
|
276 |
+
this.isCustomDate = options.isCustomDate;
|
277 |
+
|
278 |
+
if (typeof options.alwaysShowCalendars === 'boolean')
|
279 |
+
this.alwaysShowCalendars = options.alwaysShowCalendars;
|
280 |
+
|
281 |
+
// update day names order to firstDay
|
282 |
+
if (this.locale.firstDay != 0) {
|
283 |
+
var iterator = this.locale.firstDay;
|
284 |
+
while (iterator > 0) {
|
285 |
+
this.locale.daysOfWeek.push(this.locale.daysOfWeek.shift());
|
286 |
+
iterator--;
|
287 |
+
}
|
288 |
+
}
|
289 |
+
|
290 |
+
var start, end, range;
|
291 |
+
|
292 |
+
//if no start/end dates set, check if an input element contains initial values
|
293 |
+
if (typeof options.startDate === 'undefined' && typeof options.endDate === 'undefined') {
|
294 |
+
if ($(this.element).is(':text')) {
|
295 |
+
var val = $(this.element).val(),
|
296 |
+
split = val.split(this.locale.separator);
|
297 |
+
|
298 |
+
start = end = null;
|
299 |
+
|
300 |
+
if (split.length == 2) {
|
301 |
+
start = moment(split[0], this.locale.format);
|
302 |
+
end = moment(split[1], this.locale.format);
|
303 |
+
} else if (this.singleDatePicker && val !== "") {
|
304 |
+
start = moment(val, this.locale.format);
|
305 |
+
end = moment(val, this.locale.format);
|
306 |
+
}
|
307 |
+
if (start !== null && end !== null) {
|
308 |
+
this.setStartDate(start);
|
309 |
+
this.setEndDate(end);
|
310 |
+
}
|
311 |
+
}
|
312 |
+
}
|
313 |
+
|
314 |
+
if (typeof options.ranges === 'object') {
|
315 |
+
for (range in options.ranges) {
|
316 |
+
|
317 |
+
if (typeof options.ranges[range][0] === 'string')
|
318 |
+
start = moment(options.ranges[range][0], this.locale.format);
|
319 |
+
else
|
320 |
+
start = moment(options.ranges[range][0]);
|
321 |
+
|
322 |
+
if (typeof options.ranges[range][1] === 'string')
|
323 |
+
end = moment(options.ranges[range][1], this.locale.format);
|
324 |
+
else
|
325 |
+
end = moment(options.ranges[range][1]);
|
326 |
+
|
327 |
+
// If the start or end date exceed those allowed by the minDate or maxSpan
|
328 |
+
// options, shorten the range to the allowable period.
|
329 |
+
if (this.minDate && start.isBefore(this.minDate))
|
330 |
+
start = this.minDate.clone();
|
331 |
+
|
332 |
+
var maxDate = this.maxDate;
|
333 |
+
if (this.maxSpan && maxDate && start.clone().add(this.maxSpan).isAfter(maxDate))
|
334 |
+
maxDate = start.clone().add(this.maxSpan);
|
335 |
+
if (maxDate && end.isAfter(maxDate))
|
336 |
+
end = maxDate.clone();
|
337 |
+
|
338 |
+
// If the end of the range is before the minimum or the start of the range is
|
339 |
+
// after the maximum, don't display this range option at all.
|
340 |
+
if ((this.minDate && end.isBefore(this.minDate, this.timepicker ? 'minute' : 'day'))
|
341 |
+
|| (maxDate && start.isAfter(maxDate, this.timepicker ? 'minute' : 'day')))
|
342 |
+
continue;
|
343 |
+
|
344 |
+
//Support unicode chars in the range names.
|
345 |
+
var elem = document.createElement('textarea');
|
346 |
+
elem.innerHTML = range;
|
347 |
+
var rangeHtml = elem.value;
|
348 |
+
|
349 |
+
this.ranges[rangeHtml] = [start, end];
|
350 |
+
}
|
351 |
+
|
352 |
+
var list = '<ul>';
|
353 |
+
for (range in this.ranges) {
|
354 |
+
list += '<li data-range-key="' + range + '">' + range + '</li>';
|
355 |
+
}
|
356 |
+
if (this.showCustomRangeLabel) {
|
357 |
+
list += '<li data-range-key="' + this.locale.customRangeLabel + '">' + this.locale.customRangeLabel + '</li>';
|
358 |
+
}
|
359 |
+
list += '</ul>';
|
360 |
+
this.container.find('.ranges').prepend(list);
|
361 |
+
}
|
362 |
+
|
363 |
+
if (typeof cb === 'function') {
|
364 |
+
this.callback = cb;
|
365 |
+
}
|
366 |
+
|
367 |
+
if (!this.timePicker) {
|
368 |
+
this.startDate = this.startDate.startOf('day');
|
369 |
+
this.endDate = this.endDate.endOf('day');
|
370 |
+
this.container.find('.calendar-time').hide();
|
371 |
+
}
|
372 |
+
|
373 |
+
//can't be used together for now
|
374 |
+
if (this.timePicker && this.autoApply)
|
375 |
+
this.autoApply = false;
|
376 |
+
|
377 |
+
if (this.autoApply) {
|
378 |
+
this.container.addClass('auto-apply');
|
379 |
+
}
|
380 |
+
|
381 |
+
if (typeof options.ranges === 'object')
|
382 |
+
this.container.addClass('show-ranges');
|
383 |
+
|
384 |
+
if (this.singleDatePicker) {
|
385 |
+
this.container.addClass('single');
|
386 |
+
this.container.find('.drp-calendar.left').addClass('single');
|
387 |
+
this.container.find('.drp-calendar.left').show();
|
388 |
+
this.container.find('.drp-calendar.right').hide();
|
389 |
+
if (!this.timePicker && this.autoApply) {
|
390 |
+
this.container.addClass('auto-apply');
|
391 |
+
}
|
392 |
+
}
|
393 |
+
|
394 |
+
if ((typeof options.ranges === 'undefined' && !this.singleDatePicker) || this.alwaysShowCalendars) {
|
395 |
+
this.container.addClass('show-calendar');
|
396 |
+
}
|
397 |
+
|
398 |
+
this.container.addClass('opens' + this.opens);
|
399 |
+
|
400 |
+
//apply CSS classes and labels to buttons
|
401 |
+
this.container.find('.applyBtn, .cancelBtn').addClass(this.buttonClasses);
|
402 |
+
if (this.applyButtonClasses.length)
|
403 |
+
this.container.find('.applyBtn').addClass(this.applyButtonClasses);
|
404 |
+
if (this.cancelButtonClasses.length)
|
405 |
+
this.container.find('.cancelBtn').addClass(this.cancelButtonClasses);
|
406 |
+
this.container.find('.applyBtn').html(this.locale.applyLabel);
|
407 |
+
this.container.find('.cancelBtn').html(this.locale.cancelLabel);
|
408 |
+
|
409 |
+
//
|
410 |
+
// event listeners
|
411 |
+
//
|
412 |
+
|
413 |
+
this.container.find('.drp-calendar')
|
414 |
+
.on('click.daterangepicker', '.prev', $.proxy(this.clickPrev, this))
|
415 |
+
.on('click.daterangepicker', '.next', $.proxy(this.clickNext, this))
|
416 |
+
.on('mousedown.daterangepicker', 'td.available', $.proxy(this.clickDate, this))
|
417 |
+
.on('mouseenter.daterangepicker', 'td.available', $.proxy(this.hoverDate, this))
|
418 |
+
.on('change.daterangepicker', 'select.yearselect', $.proxy(this.monthOrYearChanged, this))
|
419 |
+
.on('change.daterangepicker', 'select.monthselect', $.proxy(this.monthOrYearChanged, this))
|
420 |
+
.on('change.daterangepicker', 'select.hourselect,select.minuteselect,select.secondselect,select.ampmselect', $.proxy(this.timeChanged, this));
|
421 |
+
|
422 |
+
this.container.find('.ranges')
|
423 |
+
.on('click.daterangepicker', 'li', $.proxy(this.clickRange, this));
|
424 |
+
|
425 |
+
this.container.find('.drp-buttons')
|
426 |
+
.on('click.daterangepicker', 'button.applyBtn', $.proxy(this.clickApply, this))
|
427 |
+
.on('click.daterangepicker', 'button.cancelBtn', $.proxy(this.clickCancel, this));
|
428 |
+
|
429 |
+
if (this.element.is('input') || this.element.is('button')) {
|
430 |
+
this.element.on({
|
431 |
+
'click.daterangepicker': $.proxy(this.show, this),
|
432 |
+
'focus.daterangepicker': $.proxy(this.show, this),
|
433 |
+
'keyup.daterangepicker': $.proxy(this.elementChanged, this),
|
434 |
+
'keydown.daterangepicker': $.proxy(this.keydown, this) //IE 11 compatibility
|
435 |
+
});
|
436 |
+
} else {
|
437 |
+
this.element.on('click.daterangepicker', $.proxy(this.toggle, this));
|
438 |
+
this.element.on('keydown.daterangepicker', $.proxy(this.toggle, this));
|
439 |
+
}
|
440 |
+
|
441 |
+
//
|
442 |
+
// if attached to a text input, set the initial value
|
443 |
+
//
|
444 |
+
|
445 |
+
this.updateElement();
|
446 |
+
|
447 |
+
};
|
448 |
+
|
449 |
+
DateRangePicker.prototype = {
|
450 |
+
|
451 |
+
constructor: DateRangePicker,
|
452 |
+
|
453 |
+
setStartDate: function(startDate) {
|
454 |
+
if (typeof startDate === 'string')
|
455 |
+
this.startDate = moment(startDate, this.locale.format);
|
456 |
+
|
457 |
+
if (typeof startDate === 'object')
|
458 |
+
this.startDate = moment(startDate);
|
459 |
+
|
460 |
+
if (!this.timePicker)
|
461 |
+
this.startDate = this.startDate.startOf('day');
|
462 |
+
|
463 |
+
if (this.timePicker && this.timePickerIncrement)
|
464 |
+
this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
|
465 |
+
|
466 |
+
if (this.minDate && this.startDate.isBefore(this.minDate)) {
|
467 |
+
this.startDate = this.minDate.clone();
|
468 |
+
if (this.timePicker && this.timePickerIncrement)
|
469 |
+
this.startDate.minute(Math.round(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
|
470 |
+
}
|
471 |
+
|
472 |
+
if (this.maxDate && this.startDate.isAfter(this.maxDate)) {
|
473 |
+
this.startDate = this.maxDate.clone();
|
474 |
+
if (this.timePicker && this.timePickerIncrement)
|
475 |
+
this.startDate.minute(Math.floor(this.startDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
|
476 |
+
}
|
477 |
+
|
478 |
+
if (!this.isShowing)
|
479 |
+
this.updateElement();
|
480 |
+
|
481 |
+
this.updateMonthsInView();
|
482 |
+
},
|
483 |
+
|
484 |
+
setEndDate: function(endDate) {
|
485 |
+
if (typeof endDate === 'string')
|
486 |
+
this.endDate = moment(endDate, this.locale.format);
|
487 |
+
|
488 |
+
if (typeof endDate === 'object')
|
489 |
+
this.endDate = moment(endDate);
|
490 |
+
|
491 |
+
if (!this.timePicker)
|
492 |
+
this.endDate = this.endDate.endOf('day');
|
493 |
+
|
494 |
+
if (this.timePicker && this.timePickerIncrement)
|
495 |
+
this.endDate.minute(Math.round(this.endDate.minute() / this.timePickerIncrement) * this.timePickerIncrement);
|
496 |
+
|
497 |
+
if (this.endDate.isBefore(this.startDate))
|
498 |
+
this.endDate = this.startDate.clone();
|
499 |
+
|
500 |
+
if (this.maxDate && this.endDate.isAfter(this.maxDate))
|
501 |
+
this.endDate = this.maxDate.clone();
|
502 |
+
|
503 |
+
if (this.maxSpan && this.startDate.clone().add(this.maxSpan).isBefore(this.endDate))
|
504 |
+
this.endDate = this.startDate.clone().add(this.maxSpan);
|
505 |
+
|
506 |
+
this.previousRightTime = this.endDate.clone();
|
507 |
+
|
508 |
+
this.container.find('.drp-selected').html(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format));
|
509 |
+
|
510 |
+
if (!this.isShowing)
|
511 |
+
this.updateElement();
|
512 |
+
|
513 |
+
this.updateMonthsInView();
|
514 |
+
},
|
515 |
+
|
516 |
+
isInvalidDate: function() {
|
517 |
+
return false;
|
518 |
+
},
|
519 |
+
|
520 |
+
isCustomDate: function() {
|
521 |
+
return false;
|
522 |
+
},
|
523 |
+
|
524 |
+
updateView: function() {
|
525 |
+
if (this.timePicker) {
|
526 |
+
this.renderTimePicker('left');
|
527 |
+
this.renderTimePicker('right');
|
528 |
+
if (!this.endDate) {
|
529 |
+
this.container.find('.right .calendar-time select').prop('disabled', true).addClass('disabled');
|
530 |
+
} else {
|
531 |
+
this.container.find('.right .calendar-time select').prop('disabled', false).removeClass('disabled');
|
532 |
+
}
|
533 |
+
}
|
534 |
+
if (this.endDate)
|
535 |
+
this.container.find('.drp-selected').html(this.startDate.format(this.locale.format) + this.locale.separator + this.endDate.format(this.locale.format));
|
536 |
+
this.updateMonthsInView();
|
537 |
+
this.updateCalendars();
|
538 |
+
this.updateFormInputs();
|
539 |
+
},
|
540 |
+
|
541 |
+
updateMonthsInView: function() {
|
542 |
+
if (this.endDate) {
|
543 |
+
|
544 |
+
//if both dates are visible already, do nothing
|
545 |
+
if (!this.singleDatePicker && this.leftCalendar.month && this.rightCalendar.month &&
|
546 |
+
(this.startDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.startDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM'))
|
547 |
+
&&
|
548 |
+
(this.endDate.format('YYYY-MM') == this.leftCalendar.month.format('YYYY-MM') || this.endDate.format('YYYY-MM') == this.rightCalendar.month.format('YYYY-MM'))
|
549 |
+
) {
|
550 |
+
return;
|
551 |
+
}
|
552 |
+
|
553 |
+
this.leftCalendar.month = this.startDate.clone().date(2);
|
554 |
+
if (!this.linkedCalendars && (this.endDate.month() != this.startDate.month() || this.endDate.year() != this.startDate.year())) {
|
555 |
+
this.rightCalendar.month = this.endDate.clone().date(2);
|
556 |
+
} else {
|
557 |
+
this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month');
|
558 |
+
}
|
559 |
+
|
560 |
+
} else {
|
561 |
+
if (this.leftCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM') && this.rightCalendar.month.format('YYYY-MM') != this.startDate.format('YYYY-MM')) {
|
562 |
+
this.leftCalendar.month = this.startDate.clone().date(2);
|
563 |
+
this.rightCalendar.month = this.startDate.clone().date(2).add(1, 'month');
|
564 |
+
}
|
565 |
+
}
|
566 |
+
if (this.maxDate && this.linkedCalendars && !this.singleDatePicker && this.rightCalendar.month > this.maxDate) {
|
567 |
+
this.rightCalendar.month = this.maxDate.clone().date(2);
|
568 |
+
this.leftCalendar.month = this.maxDate.clone().date(2).subtract(1, 'month');
|
569 |
+
}
|
570 |
+
},
|
571 |
+
|
572 |
+
updateCalendars: function() {
|
573 |
+
|
574 |
+
if (this.timePicker) {
|
575 |
+
var hour, minute, second;
|
576 |
+
if (this.endDate) {
|
577 |
+
hour = parseInt(this.container.find('.left .hourselect').val(), 10);
|
578 |
+
minute = parseInt(this.container.find('.left .minuteselect').val(), 10);
|
579 |
+
if (isNaN(minute)) {
|
580 |
+
minute = parseInt(this.container.find('.left .minuteselect option:last').val(), 10);
|
581 |
+
}
|
582 |
+
second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0;
|
583 |
+
if (!this.timePicker24Hour) {
|
584 |
+
var ampm = this.container.find('.left .ampmselect').val();
|
585 |
+
if (ampm === 'PM' && hour < 12)
|
586 |
+
hour += 12;
|
587 |
+
if (ampm === 'AM' && hour === 12)
|
588 |
+
hour = 0;
|
589 |
+
}
|
590 |
+
} else {
|
591 |
+
hour = parseInt(this.container.find('.right .hourselect').val(), 10);
|
592 |
+
minute = parseInt(this.container.find('.right .minuteselect').val(), 10);
|
593 |
+
if (isNaN(minute)) {
|
594 |
+
minute = parseInt(this.container.find('.right .minuteselect option:last').val(), 10);
|
595 |
+
}
|
596 |
+
second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0;
|
597 |
+
if (!this.timePicker24Hour) {
|
598 |
+
var ampm = this.container.find('.right .ampmselect').val();
|
599 |
+
if (ampm === 'PM' && hour < 12)
|
600 |
+
hour += 12;
|
601 |
+
if (ampm === 'AM' && hour === 12)
|
602 |
+
hour = 0;
|
603 |
+
}
|
604 |
+
}
|
605 |
+
this.leftCalendar.month.hour(hour).minute(minute).second(second);
|
606 |
+
this.rightCalendar.month.hour(hour).minute(minute).second(second);
|
607 |
+
}
|
608 |
+
|
609 |
+
this.renderCalendar('left');
|
610 |
+
this.renderCalendar('right');
|
611 |
+
|
612 |
+
//highlight any predefined range matching the current start and end dates
|
613 |
+
this.container.find('.ranges li').removeClass('active');
|
614 |
+
if (this.endDate == null) return;
|
615 |
+
|
616 |
+
this.calculateChosenLabel();
|
617 |
+
},
|
618 |
+
|
619 |
+
renderCalendar: function(side) {
|
620 |
+
|
621 |
+
//
|
622 |
+
// Build the matrix of dates that will populate the calendar
|
623 |
+
//
|
624 |
+
|
625 |
+
var calendar = side == 'left' ? this.leftCalendar : this.rightCalendar;
|
626 |
+
var month = calendar.month.month();
|
627 |
+
var year = calendar.month.year();
|
628 |
+
var hour = calendar.month.hour();
|
629 |
+
var minute = calendar.month.minute();
|
630 |
+
var second = calendar.month.second();
|
631 |
+
var daysInMonth = moment([year, month]).daysInMonth();
|
632 |
+
var firstDay = moment([year, month, 1]);
|
633 |
+
var lastDay = moment([year, month, daysInMonth]);
|
634 |
+
var lastMonth = moment(firstDay).subtract(1, 'month').month();
|
635 |
+
var lastYear = moment(firstDay).subtract(1, 'month').year();
|
636 |
+
var daysInLastMonth = moment([lastYear, lastMonth]).daysInMonth();
|
637 |
+
var dayOfWeek = firstDay.day();
|
638 |
+
|
639 |
+
//initialize a 6 rows x 7 columns array for the calendar
|
640 |
+
var calendar = [];
|
641 |
+
calendar.firstDay = firstDay;
|
642 |
+
calendar.lastDay = lastDay;
|
643 |
+
|
644 |
+
for (var i = 0; i < 6; i++) {
|
645 |
+
calendar[i] = [];
|
646 |
+
}
|
647 |
+
|
648 |
+
//populate the calendar with date objects
|
649 |
+
var startDay = daysInLastMonth - dayOfWeek + this.locale.firstDay + 1;
|
650 |
+
if (startDay > daysInLastMonth)
|
651 |
+
startDay -= 7;
|
652 |
+
|
653 |
+
if (dayOfWeek == this.locale.firstDay)
|
654 |
+
startDay = daysInLastMonth - 6;
|
655 |
+
|
656 |
+
var curDate = moment([lastYear, lastMonth, startDay, 12, minute, second]);
|
657 |
+
|
658 |
+
var col, row;
|
659 |
+
for (var i = 0, col = 0, row = 0; i < 42; i++, col++, curDate = moment(curDate).add(24, 'hour')) {
|
660 |
+
if (i > 0 && col % 7 === 0) {
|
661 |
+
col = 0;
|
662 |
+
row++;
|
663 |
+
}
|
664 |
+
calendar[row][col] = curDate.clone().hour(hour).minute(minute).second(second);
|
665 |
+
curDate.hour(12);
|
666 |
+
|
667 |
+
if (this.minDate && calendar[row][col].format('YYYY-MM-DD') == this.minDate.format('YYYY-MM-DD') && calendar[row][col].isBefore(this.minDate) && side == 'left') {
|
668 |
+
calendar[row][col] = this.minDate.clone();
|
669 |
+
}
|
670 |
+
|
671 |
+
if (this.maxDate && calendar[row][col].format('YYYY-MM-DD') == this.maxDate.format('YYYY-MM-DD') && calendar[row][col].isAfter(this.maxDate) && side == 'right') {
|
672 |
+
calendar[row][col] = this.maxDate.clone();
|
673 |
+
}
|
674 |
+
|
675 |
+
}
|
676 |
+
|
677 |
+
//make the calendar object available to hoverDate/clickDate
|
678 |
+
if (side == 'left') {
|
679 |
+
this.leftCalendar.calendar = calendar;
|
680 |
+
} else {
|
681 |
+
this.rightCalendar.calendar = calendar;
|
682 |
+
}
|
683 |
+
|
684 |
+
//
|
685 |
+
// Display the calendar
|
686 |
+
//
|
687 |
+
|
688 |
+
var minDate = side == 'left' ? this.minDate : this.startDate;
|
689 |
+
var maxDate = this.maxDate;
|
690 |
+
var selected = side == 'left' ? this.startDate : this.endDate;
|
691 |
+
var arrow = this.locale.direction == 'ltr' ? {left: 'chevron-left', right: 'chevron-right'} : {left: 'chevron-right', right: 'chevron-left'};
|
692 |
+
|
693 |
+
var html = '<table class="table-condensed">';
|
694 |
+
html += '<thead>';
|
695 |
+
html += '<tr>';
|
696 |
+
|
697 |
+
// add empty cell for week number
|
698 |
+
if (this.showWeekNumbers || this.showISOWeekNumbers)
|
699 |
+
html += '<th></th>';
|
700 |
+
|
701 |
+
if ((!minDate || minDate.isBefore(calendar.firstDay)) && (!this.linkedCalendars || side == 'left')) {
|
702 |
+
html += '<th class="prev available"><span></span></th>';
|
703 |
+
} else {
|
704 |
+
html += '<th></th>';
|
705 |
+
}
|
706 |
+
|
707 |
+
var dateHtml = this.locale.monthNames[calendar[1][1].month()] + calendar[1][1].format(" YYYY");
|
708 |
+
|
709 |
+
if (this.showDropdowns) {
|
710 |
+
var currentMonth = calendar[1][1].month();
|
711 |
+
var currentYear = calendar[1][1].year();
|
712 |
+
var maxYear = (maxDate && maxDate.year()) || (this.maxYear);
|
713 |
+
var minYear = (minDate && minDate.year()) || (this.minYear);
|
714 |
+
var inMinYear = currentYear == minYear;
|
715 |
+
var inMaxYear = currentYear == maxYear;
|
716 |
+
|
717 |
+
var monthHtml = '<select class="monthselect">';
|
718 |
+
for (var m = 0; m < 12; m++) {
|
719 |
+
if ((!inMinYear || (minDate && m >= minDate.month())) && (!inMaxYear || (maxDate && m <= maxDate.month()))) {
|
720 |
+
monthHtml += "<option value='" + m + "'" +
|
721 |
+
(m === currentMonth ? " selected='selected'" : "") +
|
722 |
+
">" + this.locale.monthNames[m] + "</option>";
|
723 |
+
} else {
|
724 |
+
monthHtml += "<option value='" + m + "'" +
|
725 |
+
(m === currentMonth ? " selected='selected'" : "") +
|
726 |
+
" disabled='disabled'>" + this.locale.monthNames[m] + "</option>";
|
727 |
+
}
|
728 |
+
}
|
729 |
+
monthHtml += "</select>";
|
730 |
+
|
731 |
+
var yearHtml = '<select class="yearselect">';
|
732 |
+
for (var y = minYear; y <= maxYear; y++) {
|
733 |
+
yearHtml += '<option value="' + y + '"' +
|
734 |
+
(y === currentYear ? ' selected="selected"' : '') +
|
735 |
+
'>' + y + '</option>';
|
736 |
+
}
|
737 |
+
yearHtml += '</select>';
|
738 |
+
|
739 |
+
dateHtml = monthHtml + yearHtml;
|
740 |
+
}
|
741 |
+
|
742 |
+
html += '<th colspan="5" class="month">' + dateHtml + '</th>';
|
743 |
+
if ((!maxDate || maxDate.isAfter(calendar.lastDay)) && (!this.linkedCalendars || side == 'right' || this.singleDatePicker)) {
|
744 |
+
html += '<th class="next available"><span></span></th>';
|
745 |
+
} else {
|
746 |
+
html += '<th></th>';
|
747 |
+
}
|
748 |
+
|
749 |
+
html += '</tr>';
|
750 |
+
html += '<tr>';
|
751 |
+
|
752 |
+
// add week number label
|
753 |
+
if (this.showWeekNumbers || this.showISOWeekNumbers)
|
754 |
+
html += '<th class="week">' + this.locale.weekLabel + '</th>';
|
755 |
+
|
756 |
+
$.each(this.locale.daysOfWeek, function(index, dayOfWeek) {
|
757 |
+
html += '<th>' + dayOfWeek + '</th>';
|
758 |
+
});
|
759 |
+
|
760 |
+
html += '</tr>';
|
761 |
+
html += '</thead>';
|
762 |
+
html += '<tbody>';
|
763 |
+
|
764 |
+
//adjust maxDate to reflect the maxSpan setting in order to
|
765 |
+
//grey out end dates beyond the maxSpan
|
766 |
+
if (this.endDate == null && this.maxSpan) {
|
767 |
+
var maxLimit = this.startDate.clone().add(this.maxSpan).endOf('day');
|
768 |
+
if (!maxDate || maxLimit.isBefore(maxDate)) {
|
769 |
+
maxDate = maxLimit;
|
770 |
+
}
|
771 |
+
}
|
772 |
+
|
773 |
+
for (var row = 0; row < 6; row++) {
|
774 |
+
html += '<tr>';
|
775 |
+
|
776 |
+
// add week number
|
777 |
+
if (this.showWeekNumbers)
|
778 |
+
html += '<td class="week">' + calendar[row][0].week() + '</td>';
|
779 |
+
else if (this.showISOWeekNumbers)
|
780 |
+
html += '<td class="week">' + calendar[row][0].isoWeek() + '</td>';
|
781 |
+
|
782 |
+
for (var col = 0; col < 7; col++) {
|
783 |
+
|
784 |
+
var classes = [];
|
785 |
+
|
786 |
+
//highlight today's date
|
787 |
+
if (calendar[row][col].isSame(new Date(), "day"))
|
788 |
+
classes.push('today');
|
789 |
+
|
790 |
+
//highlight weekends
|
791 |
+
if (calendar[row][col].isoWeekday() > 5)
|
792 |
+
classes.push('weekend');
|
793 |
+
|
794 |
+
//grey out the dates in other months displayed at beginning and end of this calendar
|
795 |
+
if (calendar[row][col].month() != calendar[1][1].month())
|
796 |
+
classes.push('off', 'ends');
|
797 |
+
|
798 |
+
//don't allow selection of dates before the minimum date
|
799 |
+
if (this.minDate && calendar[row][col].isBefore(this.minDate, 'day'))
|
800 |
+
classes.push('off', 'disabled');
|
801 |
+
|
802 |
+
//don't allow selection of dates after the maximum date
|
803 |
+
if (maxDate && calendar[row][col].isAfter(maxDate, 'day'))
|
804 |
+
classes.push('off', 'disabled');
|
805 |
+
|
806 |
+
//don't allow selection of date if a custom function decides it's invalid
|
807 |
+
if (this.isInvalidDate(calendar[row][col]))
|
808 |
+
classes.push('off', 'disabled');
|
809 |
+
|
810 |
+
//highlight the currently selected start date
|
811 |
+
if (calendar[row][col].format('YYYY-MM-DD') == this.startDate.format('YYYY-MM-DD'))
|
812 |
+
classes.push('active', 'start-date');
|
813 |
+
|
814 |
+
//highlight the currently selected end date
|
815 |
+
if (this.endDate != null && calendar[row][col].format('YYYY-MM-DD') == this.endDate.format('YYYY-MM-DD'))
|
816 |
+
classes.push('active', 'end-date');
|
817 |
+
|
818 |
+
//highlight dates in-between the selected dates
|
819 |
+
if (this.endDate != null && calendar[row][col] > this.startDate && calendar[row][col] < this.endDate)
|
820 |
+
classes.push('in-range');
|
821 |
+
|
822 |
+
//apply custom classes for this date
|
823 |
+
var isCustom = this.isCustomDate(calendar[row][col]);
|
824 |
+
if (isCustom !== false) {
|
825 |
+
if (typeof isCustom === 'string')
|
826 |
+
classes.push(isCustom);
|
827 |
+
else
|
828 |
+
Array.prototype.push.apply(classes, isCustom);
|
829 |
+
}
|
830 |
+
|
831 |
+
var cname = '', disabled = false;
|
832 |
+
for (var i = 0; i < classes.length; i++) {
|
833 |
+
cname += classes[i] + ' ';
|
834 |
+
if (classes[i] == 'disabled')
|
835 |
+
disabled = true;
|
836 |
+
}
|
837 |
+
if (!disabled)
|
838 |
+
cname += 'available';
|
839 |
+
|
840 |
+
html += '<td class="' + cname.replace(/^\s+|\s+$/g, '') + '" data-title="' + 'r' + row + 'c' + col + '">' + calendar[row][col].date() + '</td>';
|
841 |
+
|
842 |
+
}
|
843 |
+
html += '</tr>';
|
844 |
+
}
|
845 |
+
|
846 |
+
html += '</tbody>';
|
847 |
+
html += '</table>';
|
848 |
+
|
849 |
+
this.container.find('.drp-calendar.' + side + ' .calendar-table').html(html);
|
850 |
+
|
851 |
+
},
|
852 |
+
|
853 |
+
renderTimePicker: function(side) {
|
854 |
+
|
855 |
+
// Don't bother updating the time picker if it's currently disabled
|
856 |
+
// because an end date hasn't been clicked yet
|
857 |
+
if (side == 'right' && !this.endDate) return;
|
858 |
+
|
859 |
+
var html, selected, minDate, maxDate = this.maxDate;
|
860 |
+
|
861 |
+
if (this.maxSpan && (!this.maxDate || this.startDate.clone().add(this.maxSpan).isBefore(this.maxDate)))
|
862 |
+
maxDate = this.startDate.clone().add(this.maxSpan);
|
863 |
+
|
864 |
+
if (side == 'left') {
|
865 |
+
selected = this.startDate.clone();
|
866 |
+
minDate = this.minDate;
|
867 |
+
} else if (side == 'right') {
|
868 |
+
selected = this.endDate.clone();
|
869 |
+
minDate = this.startDate;
|
870 |
+
|
871 |
+
//Preserve the time already selected
|
872 |
+
var timeSelector = this.container.find('.drp-calendar.right .calendar-time');
|
873 |
+
if (timeSelector.html() != '') {
|
874 |
+
|
875 |
+
selected.hour(!isNaN(selected.hour()) ? selected.hour() : timeSelector.find('.hourselect option:selected').val());
|
876 |
+
selected.minute(!isNaN(selected.minute()) ? selected.minute() : timeSelector.find('.minuteselect option:selected').val());
|
877 |
+
selected.second(!isNaN(selected.second()) ? selected.second() : timeSelector.find('.secondselect option:selected').val());
|
878 |
+
|
879 |
+
if (!this.timePicker24Hour) {
|
880 |
+
var ampm = timeSelector.find('.ampmselect option:selected').val();
|
881 |
+
if (ampm === 'PM' && selected.hour() < 12)
|
882 |
+
selected.hour(selected.hour() + 12);
|
883 |
+
if (ampm === 'AM' && selected.hour() === 12)
|
884 |
+
selected.hour(0);
|
885 |
+
}
|
886 |
+
|
887 |
+
}
|
888 |
+
|
889 |
+
if (selected.isBefore(this.startDate))
|
890 |
+
selected = this.startDate.clone();
|
891 |
+
|
892 |
+
if (maxDate && selected.isAfter(maxDate))
|
893 |
+
selected = maxDate.clone();
|
894 |
+
|
895 |
+
}
|
896 |
+
|
897 |
+
//
|
898 |
+
// hours
|
899 |
+
//
|
900 |
+
|
901 |
+
html = '<select class="hourselect">';
|
902 |
+
|
903 |
+
var start = this.timePicker24Hour ? 0 : 1;
|
904 |
+
var end = this.timePicker24Hour ? 23 : 12;
|
905 |
+
|
906 |
+
for (var i = start; i <= end; i++) {
|
907 |
+
var i_in_24 = i;
|
908 |
+
if (!this.timePicker24Hour)
|
909 |
+
i_in_24 = selected.hour() >= 12 ? (i == 12 ? 12 : i + 12) : (i == 12 ? 0 : i);
|
910 |
+
|
911 |
+
var time = selected.clone().hour(i_in_24);
|
912 |
+
var disabled = false;
|
913 |
+
if (minDate && time.minute(59).isBefore(minDate))
|
914 |
+
disabled = true;
|
915 |
+
if (maxDate && time.minute(0).isAfter(maxDate))
|
916 |
+
disabled = true;
|
917 |
+
|
918 |
+
if (i_in_24 == selected.hour() && !disabled) {
|
919 |
+
html += '<option value="' + i + '" selected="selected">' + i + '</option>';
|
920 |
+
} else if (disabled) {
|
921 |
+
html += '<option value="' + i + '" disabled="disabled" class="disabled">' + i + '</option>';
|
922 |
+
} else {
|
923 |
+
html += '<option value="' + i + '">' + i + '</option>';
|
924 |
+
}
|
925 |
+
}
|
926 |
+
|
927 |
+
html += '</select> ';
|
928 |
+
|
929 |
+
//
|
930 |
+
// minutes
|
931 |
+
//
|
932 |
+
|
933 |
+
html += ': <select class="minuteselect">';
|
934 |
+
|
935 |
+
for (var i = 0; i < 60; i += this.timePickerIncrement) {
|
936 |
+
var padded = i < 10 ? '0' + i : i;
|
937 |
+
var time = selected.clone().minute(i);
|
938 |
+
|
939 |
+
var disabled = false;
|
940 |
+
if (minDate && time.second(59).isBefore(minDate))
|
941 |
+
disabled = true;
|
942 |
+
if (maxDate && time.second(0).isAfter(maxDate))
|
943 |
+
disabled = true;
|
944 |
+
|
945 |
+
if (selected.minute() == i && !disabled) {
|
946 |
+
html += '<option value="' + i + '" selected="selected">' + padded + '</option>';
|
947 |
+
} else if (disabled) {
|
948 |
+
html += '<option value="' + i + '" disabled="disabled" class="disabled">' + padded + '</option>';
|
949 |
+
} else {
|
950 |
+
html += '<option value="' + i + '">' + padded + '</option>';
|
951 |
+
}
|
952 |
+
}
|
953 |
+
|
954 |
+
html += '</select> ';
|
955 |
+
|
956 |
+
//
|
957 |
+
// seconds
|
958 |
+
//
|
959 |
+
|
960 |
+
if (this.timePickerSeconds) {
|
961 |
+
html += ': <select class="secondselect">';
|
962 |
+
|
963 |
+
for (var i = 0; i < 60; i++) {
|
964 |
+
var padded = i < 10 ? '0' + i : i;
|
965 |
+
var time = selected.clone().second(i);
|
966 |
+
|
967 |
+
var disabled = false;
|
968 |
+
if (minDate && time.isBefore(minDate))
|
969 |
+
disabled = true;
|
970 |
+
if (maxDate && time.isAfter(maxDate))
|
971 |
+
disabled = true;
|
972 |
+
|
973 |
+
if (selected.second() == i && !disabled) {
|
974 |
+
html += '<option value="' + i + '" selected="selected">' + padded + '</option>';
|
975 |
+
} else if (disabled) {
|
976 |
+
html += '<option value="' + i + '" disabled="disabled" class="disabled">' + padded + '</option>';
|
977 |
+
} else {
|
978 |
+
html += '<option value="' + i + '">' + padded + '</option>';
|
979 |
+
}
|
980 |
+
}
|
981 |
+
|
982 |
+
html += '</select> ';
|
983 |
+
}
|
984 |
+
|
985 |
+
//
|
986 |
+
// AM/PM
|
987 |
+
//
|
988 |
+
|
989 |
+
if (!this.timePicker24Hour) {
|
990 |
+
html += '<select class="ampmselect">';
|
991 |
+
|
992 |
+
var am_html = '';
|
993 |
+
var pm_html = '';
|
994 |
+
|
995 |
+
if (minDate && selected.clone().hour(12).minute(0).second(0).isBefore(minDate))
|
996 |
+
am_html = ' disabled="disabled" class="disabled"';
|
997 |
+
|
998 |
+
if (maxDate && selected.clone().hour(0).minute(0).second(0).isAfter(maxDate))
|
999 |
+
pm_html = ' disabled="disabled" class="disabled"';
|
1000 |
+
|
1001 |
+
if (selected.hour() >= 12) {
|
1002 |
+
html += '<option value="AM"' + am_html + '>AM</option><option value="PM" selected="selected"' + pm_html + '>PM</option>';
|
1003 |
+
} else {
|
1004 |
+
html += '<option value="AM" selected="selected"' + am_html + '>AM</option><option value="PM"' + pm_html + '>PM</option>';
|
1005 |
+
}
|
1006 |
+
|
1007 |
+
html += '</select>';
|
1008 |
+
}
|
1009 |
+
|
1010 |
+
this.container.find('.drp-calendar.' + side + ' .calendar-time').html(html);
|
1011 |
+
|
1012 |
+
},
|
1013 |
+
|
1014 |
+
updateFormInputs: function() {
|
1015 |
+
|
1016 |
+
if (this.singleDatePicker || (this.endDate && (this.startDate.isBefore(this.endDate) || this.startDate.isSame(this.endDate)))) {
|
1017 |
+
this.container.find('button.applyBtn').prop('disabled', false);
|
1018 |
+
} else {
|
1019 |
+
this.container.find('button.applyBtn').prop('disabled', true);
|
1020 |
+
}
|
1021 |
+
|
1022 |
+
},
|
1023 |
+
|
1024 |
+
move: function() {
|
1025 |
+
var parentOffset = { top: 0, left: 0 },
|
1026 |
+
containerTop,
|
1027 |
+
drops = this.drops;
|
1028 |
+
|
1029 |
+
var parentRightEdge = $(window).width();
|
1030 |
+
if (!this.parentEl.is('body')) {
|
1031 |
+
parentOffset = {
|
1032 |
+
top: this.parentEl.offset().top - this.parentEl.scrollTop(),
|
1033 |
+
left: this.parentEl.offset().left - this.parentEl.scrollLeft()
|
1034 |
+
};
|
1035 |
+
parentRightEdge = this.parentEl[0].clientWidth + this.parentEl.offset().left;
|
1036 |
+
}
|
1037 |
+
|
1038 |
+
switch (drops) {
|
1039 |
+
case 'auto':
|
1040 |
+
containerTop = this.element.offset().top + this.element.outerHeight() - parentOffset.top;
|
1041 |
+
if (containerTop + this.container.outerHeight() >= this.parentEl[0].scrollHeight) {
|
1042 |
+
containerTop = this.element.offset().top - this.container.outerHeight() - parentOffset.top;
|
1043 |
+
drops = 'up';
|
1044 |
+
}
|
1045 |
+
break;
|
1046 |
+
case 'up':
|
1047 |
+
containerTop = this.element.offset().top - this.container.outerHeight() - parentOffset.top;
|
1048 |
+
break;
|
1049 |
+
default:
|
1050 |
+
containerTop = this.element.offset().top + this.element.outerHeight() - parentOffset.top;
|
1051 |
+
break;
|
1052 |
+
}
|
1053 |
+
|
1054 |
+
// Force the container to it's actual width
|
1055 |
+
this.container.css({
|
1056 |
+
top: 0,
|
1057 |
+
left: 0,
|
1058 |
+
right: 'auto'
|
1059 |
+
});
|
1060 |
+
var containerWidth = this.container.outerWidth();
|
1061 |
+
|
1062 |
+
this.container.toggleClass('drop-up', drops == 'up');
|
1063 |
+
|
1064 |
+
if (this.opens == 'left') {
|
1065 |
+
var containerRight = parentRightEdge - this.element.offset().left - this.element.outerWidth();
|
1066 |
+
if (containerWidth + containerRight > $(window).width()) {
|
1067 |
+
this.container.css({
|
1068 |
+
top: containerTop,
|
1069 |
+
right: 'auto',
|
1070 |
+
left: 9
|
1071 |
+
});
|
1072 |
+
} else {
|
1073 |
+
this.container.css({
|
1074 |
+
top: containerTop,
|
1075 |
+
right: containerRight,
|
1076 |
+
left: 'auto'
|
1077 |
+
});
|
1078 |
+
}
|
1079 |
+
} else if (this.opens == 'center') {
|
1080 |
+
var containerLeft = this.element.offset().left - parentOffset.left + this.element.outerWidth() / 2
|
1081 |
+
- containerWidth / 2;
|
1082 |
+
if (containerLeft < 0) {
|
1083 |
+
this.container.css({
|
1084 |
+
top: containerTop,
|
1085 |
+
right: 'auto',
|
1086 |
+
left: 9
|
1087 |
+
});
|
1088 |
+
} else if (containerLeft + containerWidth > $(window).width()) {
|
1089 |
+
this.container.css({
|
1090 |
+
top: containerTop,
|
1091 |
+
left: 'auto',
|
1092 |
+
right: 0
|
1093 |
+
});
|
1094 |
+
} else {
|
1095 |
+
this.container.css({
|
1096 |
+
top: containerTop,
|
1097 |
+
left: containerLeft,
|
1098 |
+
right: 'auto'
|
1099 |
+
});
|
1100 |
+
}
|
1101 |
+
} else {
|
1102 |
+
var containerLeft = this.element.offset().left - parentOffset.left;
|
1103 |
+
if (containerLeft + containerWidth > $(window).width()) {
|
1104 |
+
this.container.css({
|
1105 |
+
top: containerTop,
|
1106 |
+
left: 'auto',
|
1107 |
+
right: 0
|
1108 |
+
});
|
1109 |
+
} else {
|
1110 |
+
this.container.css({
|
1111 |
+
top: containerTop,
|
1112 |
+
left: containerLeft,
|
1113 |
+
right: 'auto'
|
1114 |
+
});
|
1115 |
+
}
|
1116 |
+
}
|
1117 |
+
},
|
1118 |
+
|
1119 |
+
show: function(e) {
|
1120 |
+
if (this.isShowing) return;
|
1121 |
+
|
1122 |
+
// Create a click proxy that is private to this instance of datepicker, for unbinding
|
1123 |
+
this._outsideClickProxy = $.proxy(function(e) { this.outsideClick(e); }, this);
|
1124 |
+
|
1125 |
+
// Bind global datepicker mousedown for hiding and
|
1126 |
+
$(document)
|
1127 |
+
.on('mousedown.daterangepicker', this._outsideClickProxy)
|
1128 |
+
// also support mobile devices
|
1129 |
+
.on('touchend.daterangepicker', this._outsideClickProxy)
|
1130 |
+
// also explicitly play nice with Bootstrap dropdowns, which stopPropagation when clicking them
|
1131 |
+
.on('click.daterangepicker', '[data-toggle=dropdown]', this._outsideClickProxy)
|
1132 |
+
// and also close when focus changes to outside the picker (eg. tabbing between controls)
|
1133 |
+
.on('focusin.daterangepicker', this._outsideClickProxy);
|
1134 |
+
|
1135 |
+
// Reposition the picker if the window is resized while it's open
|
1136 |
+
$(window).on('resize.daterangepicker', $.proxy(function(e) { this.move(e); }, this));
|
1137 |
+
|
1138 |
+
this.oldStartDate = this.startDate.clone();
|
1139 |
+
this.oldEndDate = this.endDate.clone();
|
1140 |
+
this.previousRightTime = this.endDate.clone();
|
1141 |
+
|
1142 |
+
this.updateView();
|
1143 |
+
this.container.show();
|
1144 |
+
this.move();
|
1145 |
+
this.element.trigger('show.daterangepicker', this);
|
1146 |
+
this.isShowing = true;
|
1147 |
+
},
|
1148 |
+
|
1149 |
+
hide: function(e) {
|
1150 |
+
if (!this.isShowing) return;
|
1151 |
+
|
1152 |
+
//incomplete date selection, revert to last values
|
1153 |
+
if (!this.endDate) {
|
1154 |
+
this.startDate = this.oldStartDate.clone();
|
1155 |
+
this.endDate = this.oldEndDate.clone();
|
1156 |
+
}
|
1157 |
+
|
1158 |
+
//if a new date range was selected, invoke the user callback function
|
1159 |
+
if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate))
|
1160 |
+
this.callback(this.startDate.clone(), this.endDate.clone(), this.chosenLabel);
|
1161 |
+
|
1162 |
+
//if picker is attached to a text input, update it
|
1163 |
+
this.updateElement();
|
1164 |
+
|
1165 |
+
$(document).off('.daterangepicker');
|
1166 |
+
$(window).off('.daterangepicker');
|
1167 |
+
this.container.hide();
|
1168 |
+
this.element.trigger('hide.daterangepicker', this);
|
1169 |
+
this.isShowing = false;
|
1170 |
+
},
|
1171 |
+
|
1172 |
+
toggle: function(e) {
|
1173 |
+
if (this.isShowing) {
|
1174 |
+
this.hide();
|
1175 |
+
} else {
|
1176 |
+
this.show();
|
1177 |
+
}
|
1178 |
+
},
|
1179 |
+
|
1180 |
+
outsideClick: function(e) {
|
1181 |
+
var target = $(e.target);
|
1182 |
+
// if the page is clicked anywhere except within the daterangerpicker/button
|
1183 |
+
// itself then call this.hide()
|
1184 |
+
if (
|
1185 |
+
// ie modal dialog fix
|
1186 |
+
e.type == "focusin" ||
|
1187 |
+
target.closest(this.element).length ||
|
1188 |
+
target.closest(this.container).length ||
|
1189 |
+
target.closest('.calendar-table').length
|
1190 |
+
) return;
|
1191 |
+
this.hide();
|
1192 |
+
this.element.trigger('outsideClick.daterangepicker', this);
|
1193 |
+
},
|
1194 |
+
|
1195 |
+
showCalendars: function() {
|
1196 |
+
this.container.addClass('show-calendar');
|
1197 |
+
this.move();
|
1198 |
+
this.element.trigger('showCalendar.daterangepicker', this);
|
1199 |
+
},
|
1200 |
+
|
1201 |
+
hideCalendars: function() {
|
1202 |
+
this.container.removeClass('show-calendar');
|
1203 |
+
this.element.trigger('hideCalendar.daterangepicker', this);
|
1204 |
+
},
|
1205 |
+
|
1206 |
+
clickRange: function(e) {
|
1207 |
+
var label = e.target.getAttribute('data-range-key');
|
1208 |
+
this.chosenLabel = label;
|
1209 |
+
if (label == this.locale.customRangeLabel) {
|
1210 |
+
this.showCalendars();
|
1211 |
+
} else {
|
1212 |
+
var dates = this.ranges[label];
|
1213 |
+
this.startDate = dates[0];
|
1214 |
+
this.endDate = dates[1];
|
1215 |
+
|
1216 |
+
if (!this.timePicker) {
|
1217 |
+
this.startDate.startOf('day');
|
1218 |
+
this.endDate.endOf('day');
|
1219 |
+
}
|
1220 |
+
|
1221 |
+
if (!this.alwaysShowCalendars)
|
1222 |
+
this.hideCalendars();
|
1223 |
+
this.clickApply();
|
1224 |
+
}
|
1225 |
+
},
|
1226 |
+
|
1227 |
+
clickPrev: function(e) {
|
1228 |
+
var cal = $(e.target).parents('.drp-calendar');
|
1229 |
+
if (cal.hasClass('left')) {
|
1230 |
+
this.leftCalendar.month.subtract(1, 'month');
|
1231 |
+
if (this.linkedCalendars)
|
1232 |
+
this.rightCalendar.month.subtract(1, 'month');
|
1233 |
+
} else {
|
1234 |
+
this.rightCalendar.month.subtract(1, 'month');
|
1235 |
+
}
|
1236 |
+
this.updateCalendars();
|
1237 |
+
},
|
1238 |
+
|
1239 |
+
clickNext: function(e) {
|
1240 |
+
var cal = $(e.target).parents('.drp-calendar');
|
1241 |
+
if (cal.hasClass('left')) {
|
1242 |
+
this.leftCalendar.month.add(1, 'month');
|
1243 |
+
} else {
|
1244 |
+
this.rightCalendar.month.add(1, 'month');
|
1245 |
+
if (this.linkedCalendars)
|
1246 |
+
this.leftCalendar.month.add(1, 'month');
|
1247 |
+
}
|
1248 |
+
this.updateCalendars();
|
1249 |
+
},
|
1250 |
+
|
1251 |
+
hoverDate: function(e) {
|
1252 |
+
|
1253 |
+
//ignore dates that can't be selected
|
1254 |
+
if (!$(e.target).hasClass('available')) return;
|
1255 |
+
|
1256 |
+
var title = $(e.target).attr('data-title');
|
1257 |
+
var row = title.substr(1, 1);
|
1258 |
+
var col = title.substr(3, 1);
|
1259 |
+
var cal = $(e.target).parents('.drp-calendar');
|
1260 |
+
var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col];
|
1261 |
+
|
1262 |
+
//highlight the dates between the start date and the date being hovered as a potential end date
|
1263 |
+
var leftCalendar = this.leftCalendar;
|
1264 |
+
var rightCalendar = this.rightCalendar;
|
1265 |
+
var startDate = this.startDate;
|
1266 |
+
if (!this.endDate) {
|
1267 |
+
this.container.find('.drp-calendar tbody td').each(function(index, el) {
|
1268 |
+
|
1269 |
+
//skip week numbers, only look at dates
|
1270 |
+
if ($(el).hasClass('week')) return;
|
1271 |
+
|
1272 |
+
var title = $(el).attr('data-title');
|
1273 |
+
var row = title.substr(1, 1);
|
1274 |
+
var col = title.substr(3, 1);
|
1275 |
+
var cal = $(el).parents('.drp-calendar');
|
1276 |
+
var dt = cal.hasClass('left') ? leftCalendar.calendar[row][col] : rightCalendar.calendar[row][col];
|
1277 |
+
|
1278 |
+
if ((dt.isAfter(startDate) && dt.isBefore(date)) || dt.isSame(date, 'day')) {
|
1279 |
+
$(el).addClass('in-range');
|
1280 |
+
} else {
|
1281 |
+
$(el).removeClass('in-range');
|
1282 |
+
}
|
1283 |
+
|
1284 |
+
});
|
1285 |
+
}
|
1286 |
+
|
1287 |
+
},
|
1288 |
+
|
1289 |
+
clickDate: function(e) {
|
1290 |
+
|
1291 |
+
if (!$(e.target).hasClass('available')) return;
|
1292 |
+
|
1293 |
+
var title = $(e.target).attr('data-title');
|
1294 |
+
var row = title.substr(1, 1);
|
1295 |
+
var col = title.substr(3, 1);
|
1296 |
+
var cal = $(e.target).parents('.drp-calendar');
|
1297 |
+
var date = cal.hasClass('left') ? this.leftCalendar.calendar[row][col] : this.rightCalendar.calendar[row][col];
|
1298 |
+
|
1299 |
+
//
|
1300 |
+
// this function needs to do a few things:
|
1301 |
+
// * alternate between selecting a start and end date for the range,
|
1302 |
+
// * if the time picker is enabled, apply the hour/minute/second from the select boxes to the clicked date
|
1303 |
+
// * if autoapply is enabled, and an end date was chosen, apply the selection
|
1304 |
+
// * if single date picker mode, and time picker isn't enabled, apply the selection immediately
|
1305 |
+
// * if one of the inputs above the calendars was focused, cancel that manual input
|
1306 |
+
//
|
1307 |
+
|
1308 |
+
if (this.endDate || date.isBefore(this.startDate, 'day')) { //picking start
|
1309 |
+
if (this.timePicker) {
|
1310 |
+
var hour = parseInt(this.container.find('.left .hourselect').val(), 10);
|
1311 |
+
if (!this.timePicker24Hour) {
|
1312 |
+
var ampm = this.container.find('.left .ampmselect').val();
|
1313 |
+
if (ampm === 'PM' && hour < 12)
|
1314 |
+
hour += 12;
|
1315 |
+
if (ampm === 'AM' && hour === 12)
|
1316 |
+
hour = 0;
|
1317 |
+
}
|
1318 |
+
var minute = parseInt(this.container.find('.left .minuteselect').val(), 10);
|
1319 |
+
if (isNaN(minute)) {
|
1320 |
+
minute = parseInt(this.container.find('.left .minuteselect option:last').val(), 10);
|
1321 |
+
}
|
1322 |
+
var second = this.timePickerSeconds ? parseInt(this.container.find('.left .secondselect').val(), 10) : 0;
|
1323 |
+
date = date.clone().hour(hour).minute(minute).second(second);
|
1324 |
+
}
|
1325 |
+
this.endDate = null;
|
1326 |
+
this.setStartDate(date.clone());
|
1327 |
+
} else if (!this.endDate && date.isBefore(this.startDate)) {
|
1328 |
+
//special case: clicking the same date for start/end,
|
1329 |
+
//but the time of the end date is before the start date
|
1330 |
+
this.setEndDate(this.startDate.clone());
|
1331 |
+
} else { // picking end
|
1332 |
+
if (this.timePicker) {
|
1333 |
+
var hour = parseInt(this.container.find('.right .hourselect').val(), 10);
|
1334 |
+
if (!this.timePicker24Hour) {
|
1335 |
+
var ampm = this.container.find('.right .ampmselect').val();
|
1336 |
+
if (ampm === 'PM' && hour < 12)
|
1337 |
+
hour += 12;
|
1338 |
+
if (ampm === 'AM' && hour === 12)
|
1339 |
+
hour = 0;
|
1340 |
+
}
|
1341 |
+
var minute = parseInt(this.container.find('.right .minuteselect').val(), 10);
|
1342 |
+
if (isNaN(minute)) {
|
1343 |
+
minute = parseInt(this.container.find('.right .minuteselect option:last').val(), 10);
|
1344 |
+
}
|
1345 |
+
var second = this.timePickerSeconds ? parseInt(this.container.find('.right .secondselect').val(), 10) : 0;
|
1346 |
+
date = date.clone().hour(hour).minute(minute).second(second);
|
1347 |
+
}
|
1348 |
+
this.setEndDate(date.clone());
|
1349 |
+
if (this.autoApply) {
|
1350 |
+
this.calculateChosenLabel();
|
1351 |
+
this.clickApply();
|
1352 |
+
}
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
if (this.singleDatePicker) {
|
1356 |
+
this.setEndDate(this.startDate);
|
1357 |
+
if (!this.timePicker && this.autoApply)
|
1358 |
+
this.clickApply();
|
1359 |
+
}
|
1360 |
+
|
1361 |
+
this.updateView();
|
1362 |
+
|
1363 |
+
//This is to cancel the blur event handler if the mouse was in one of the inputs
|
1364 |
+
e.stopPropagation();
|
1365 |
+
|
1366 |
+
},
|
1367 |
+
|
1368 |
+
calculateChosenLabel: function () {
|
1369 |
+
var customRange = true;
|
1370 |
+
var i = 0;
|
1371 |
+
for (var range in this.ranges) {
|
1372 |
+
if (this.timePicker) {
|
1373 |
+
var format = this.timePickerSeconds ? "YYYY-MM-DD HH:mm:ss" : "YYYY-MM-DD HH:mm";
|
1374 |
+
//ignore times when comparing dates if time picker seconds is not enabled
|
1375 |
+
if (this.startDate.format(format) == this.ranges[range][0].format(format) && this.endDate.format(format) == this.ranges[range][1].format(format)) {
|
1376 |
+
customRange = false;
|
1377 |
+
this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').attr('data-range-key');
|
1378 |
+
break;
|
1379 |
+
}
|
1380 |
+
} else {
|
1381 |
+
//ignore times when comparing dates if time picker is not enabled
|
1382 |
+
if (this.startDate.format('YYYY-MM-DD') == this.ranges[range][0].format('YYYY-MM-DD') && this.endDate.format('YYYY-MM-DD') == this.ranges[range][1].format('YYYY-MM-DD')) {
|
1383 |
+
customRange = false;
|
1384 |
+
this.chosenLabel = this.container.find('.ranges li:eq(' + i + ')').addClass('active').attr('data-range-key');
|
1385 |
+
break;
|
1386 |
+
}
|
1387 |
+
}
|
1388 |
+
i++;
|
1389 |
+
}
|
1390 |
+
if (customRange) {
|
1391 |
+
if (this.showCustomRangeLabel) {
|
1392 |
+
this.chosenLabel = this.container.find('.ranges li:last').addClass('active').attr('data-range-key');
|
1393 |
+
} else {
|
1394 |
+
this.chosenLabel = null;
|
1395 |
+
}
|
1396 |
+
this.showCalendars();
|
1397 |
+
}
|
1398 |
+
},
|
1399 |
+
|
1400 |
+
clickApply: function(e) {
|
1401 |
+
this.hide();
|
1402 |
+
this.element.trigger('apply.daterangepicker', this);
|
1403 |
+
},
|
1404 |
+
|
1405 |
+
clickCancel: function(e) {
|
1406 |
+
this.startDate = this.oldStartDate;
|
1407 |
+
this.endDate = this.oldEndDate;
|
1408 |
+
this.hide();
|
1409 |
+
this.element.trigger('cancel.daterangepicker', this);
|
1410 |
+
},
|
1411 |
+
|
1412 |
+
monthOrYearChanged: function(e) {
|
1413 |
+
var isLeft = $(e.target).closest('.drp-calendar').hasClass('left'),
|
1414 |
+
leftOrRight = isLeft ? 'left' : 'right',
|
1415 |
+
cal = this.container.find('.drp-calendar.'+leftOrRight);
|
1416 |
+
|
1417 |
+
// Month must be Number for new moment versions
|
1418 |
+
var month = parseInt(cal.find('.monthselect').val(), 10);
|
1419 |
+
var year = cal.find('.yearselect').val();
|
1420 |
+
|
1421 |
+
if (!isLeft) {
|
1422 |
+
if (year < this.startDate.year() || (year == this.startDate.year() && month < this.startDate.month())) {
|
1423 |
+
month = this.startDate.month();
|
1424 |
+
year = this.startDate.year();
|
1425 |
+
}
|
1426 |
+
}
|
1427 |
+
|
1428 |
+
if (this.minDate) {
|
1429 |
+
if (year < this.minDate.year() || (year == this.minDate.year() && month < this.minDate.month())) {
|
1430 |
+
month = this.minDate.month();
|
1431 |
+
year = this.minDate.year();
|
1432 |
+
}
|
1433 |
+
}
|
1434 |
+
|
1435 |
+
if (this.maxDate) {
|
1436 |
+
if (year > this.maxDate.year() || (year == this.maxDate.year() && month > this.maxDate.month())) {
|
1437 |
+
month = this.maxDate.month();
|
1438 |
+
year = this.maxDate.year();
|
1439 |
+
}
|
1440 |
+
}
|
1441 |
+
|
1442 |
+
if (isLeft) {
|
1443 |
+
this.leftCalendar.month.month(month).year(year);
|
1444 |
+
if (this.linkedCalendars)
|
1445 |
+
this.rightCalendar.month = this.leftCalendar.month.clone().add(1, 'month');
|
1446 |
+
} else {
|
1447 |
+
this.rightCalendar.month.month(month).year(year);
|
1448 |
+
if (this.linkedCalendars)
|
1449 |
+
this.leftCalendar.month = this.rightCalendar.month.clone().subtract(1, 'month');
|
1450 |
+
}
|
1451 |
+
this.updateCalendars();
|
1452 |
+
},
|
1453 |
+
|
1454 |
+
timeChanged: function(e) {
|
1455 |
+
|
1456 |
+
var cal = $(e.target).closest('.drp-calendar'),
|
1457 |
+
isLeft = cal.hasClass('left');
|
1458 |
+
|
1459 |
+
var hour = parseInt(cal.find('.hourselect').val(), 10);
|
1460 |
+
var minute = parseInt(cal.find('.minuteselect').val(), 10);
|
1461 |
+
if (isNaN(minute)) {
|
1462 |
+
minute = parseInt(cal.find('.minuteselect option:last').val(), 10);
|
1463 |
+
}
|
1464 |
+
var second = this.timePickerSeconds ? parseInt(cal.find('.secondselect').val(), 10) : 0;
|
1465 |
+
|
1466 |
+
if (!this.timePicker24Hour) {
|
1467 |
+
var ampm = cal.find('.ampmselect').val();
|
1468 |
+
if (ampm === 'PM' && hour < 12)
|
1469 |
+
hour += 12;
|
1470 |
+
if (ampm === 'AM' && hour === 12)
|
1471 |
+
hour = 0;
|
1472 |
+
}
|
1473 |
+
|
1474 |
+
if (isLeft) {
|
1475 |
+
var start = this.startDate.clone();
|
1476 |
+
start.hour(hour);
|
1477 |
+
start.minute(minute);
|
1478 |
+
start.second(second);
|
1479 |
+
this.setStartDate(start);
|
1480 |
+
if (this.singleDatePicker) {
|
1481 |
+
this.endDate = this.startDate.clone();
|
1482 |
+
} else if (this.endDate && this.endDate.format('YYYY-MM-DD') == start.format('YYYY-MM-DD') && this.endDate.isBefore(start)) {
|
1483 |
+
this.setEndDate(start.clone());
|
1484 |
+
}
|
1485 |
+
} else if (this.endDate) {
|
1486 |
+
var end = this.endDate.clone();
|
1487 |
+
end.hour(hour);
|
1488 |
+
end.minute(minute);
|
1489 |
+
end.second(second);
|
1490 |
+
this.setEndDate(end);
|
1491 |
+
}
|
1492 |
+
|
1493 |
+
//update the calendars so all clickable dates reflect the new time component
|
1494 |
+
this.updateCalendars();
|
1495 |
+
|
1496 |
+
//update the form inputs above the calendars with the new time
|
1497 |
+
this.updateFormInputs();
|
1498 |
+
|
1499 |
+
//re-render the time pickers because changing one selection can affect what's enabled in another
|
1500 |
+
this.renderTimePicker('left');
|
1501 |
+
this.renderTimePicker('right');
|
1502 |
+
|
1503 |
+
},
|
1504 |
+
|
1505 |
+
elementChanged: function() {
|
1506 |
+
if (!this.element.is('input')) return;
|
1507 |
+
if (!this.element.val().length) return;
|
1508 |
+
|
1509 |
+
var dateString = this.element.val().split(this.locale.separator),
|
1510 |
+
start = null,
|
1511 |
+
end = null;
|
1512 |
+
|
1513 |
+
if (dateString.length === 2) {
|
1514 |
+
start = moment(dateString[0], this.locale.format);
|
1515 |
+
end = moment(dateString[1], this.locale.format);
|
1516 |
+
}
|
1517 |
+
|
1518 |
+
if (this.singleDatePicker || start === null || end === null) {
|
1519 |
+
start = moment(this.element.val(), this.locale.format);
|
1520 |
+
end = start;
|
1521 |
+
}
|
1522 |
+
|
1523 |
+
if (!start.isValid() || !end.isValid()) return;
|
1524 |
+
|
1525 |
+
this.setStartDate(start);
|
1526 |
+
this.setEndDate(end);
|
1527 |
+
this.updateView();
|
1528 |
+
},
|
1529 |
+
|
1530 |
+
keydown: function(e) {
|
1531 |
+
//hide on tab or enter
|
1532 |
+
if ((e.keyCode === 9) || (e.keyCode === 13)) {
|
1533 |
+
this.hide();
|
1534 |
+
}
|
1535 |
+
|
1536 |
+
//hide on esc and prevent propagation
|
1537 |
+
if (e.keyCode === 27) {
|
1538 |
+
e.preventDefault();
|
1539 |
+
e.stopPropagation();
|
1540 |
+
|
1541 |
+
this.hide();
|
1542 |
+
}
|
1543 |
+
},
|
1544 |
+
|
1545 |
+
updateElement: function() {
|
1546 |
+
if (this.element.is('input') && this.autoUpdateInput) {
|
1547 |
+
var newValue = this.startDate.format(this.locale.format);
|
1548 |
+
if (!this.singleDatePicker) {
|
1549 |
+
newValue += this.locale.separator + this.endDate.format(this.locale.format);
|
1550 |
+
}
|
1551 |
+
if (newValue !== this.element.val()) {
|
1552 |
+
this.element.val(newValue).trigger('change');
|
1553 |
+
}
|
1554 |
+
}
|
1555 |
+
},
|
1556 |
+
|
1557 |
+
remove: function() {
|
1558 |
+
this.container.remove();
|
1559 |
+
this.element.off('.daterangepicker');
|
1560 |
+
this.element.removeData();
|
1561 |
+
}
|
1562 |
+
|
1563 |
+
};
|
1564 |
+
|
1565 |
+
$.fn.daterangepicker = function(options, callback) {
|
1566 |
+
var implementOptions = $.extend(true, {}, $.fn.daterangepicker.defaultOptions, options);
|
1567 |
+
this.each(function() {
|
1568 |
+
var el = $(this);
|
1569 |
+
if (el.data('daterangepicker'))
|
1570 |
+
el.data('daterangepicker').remove();
|
1571 |
+
el.data('daterangepicker', new DateRangePicker(el, implementOptions, callback));
|
1572 |
+
});
|
1573 |
+
return this;
|
1574 |
+
};
|
1575 |
+
|
1576 |
+
return DateRangePicker;
|
1577 |
+
|
1578 |
+
}));
|
blog2social.php
CHANGED
@@ -6,12 +6,12 @@
|
|
6 |
* Author: Blog2Social, Adenion
|
7 |
* Text Domain: blog2social
|
8 |
* Domain Path: /languages
|
9 |
-
* Version: 6.9.
|
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.9.3
|
10 |
* Author URI: https://www.blog2social.com
|
11 |
* License: GPL2+
|
12 |
*/
|
13 |
|
14 |
+
define('B2S_PLUGIN_VERSION', '693');
|
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
@@ -66,6 +66,8 @@ class Ajax_Post {
|
|
66 |
add_action('wp_ajax_b2s_network_check_user_data', array($this, 'networkCheckUserData'));
|
67 |
add_action('wp_ajax_b2s_metrics_starting_confirm', array($this, 'metricsStartingConfirm'));
|
68 |
add_action('wp_ajax_b2s_metrics_banner_close', array($this, 'metricsBannerClose'));
|
|
|
|
|
69 |
}
|
70 |
|
71 |
public function curationDraft() {
|
@@ -873,6 +875,13 @@ class Ajax_Post {
|
|
873 |
if (isset($_POST['legacy_mode'])) {
|
874 |
$options = new B2S_Options(0, 'B2S_PLUGIN_GENERAL_OPTIONS');
|
875 |
$options->_setOption('legacy_mode', (int) $_POST['legacy_mode']);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
876 |
echo json_encode(array('result' => true, 'content' => (((int) $_POST['legacy_mode'] == 1) ? 0 : 1)));
|
877 |
wp_die();
|
878 |
}
|
@@ -2349,7 +2358,7 @@ class Ajax_Post {
|
|
2349 |
}
|
2350 |
//only posted x times - Posts (1 post to 1 auth) within 5 minutes counts as posted one time
|
2351 |
if (isset($_POST['b2s-re-post-already-planed-active']) && (int) $_POST['b2s-re-post-already-planed-active'] == 1 && isset($_POST['b2s-re-post-already-planed-count']) && (int) $_POST['b2s-re-post-already-planed-count'] >= 0) {
|
2352 |
-
$where .= " AND posts.ID NOT IN (SELECT post_id FROM (SELECT post_id FROM
|
2353 |
}
|
2354 |
//categories
|
2355 |
if (isset($_POST['b2s-re-post-categories-active']) && (int) $_POST['b2s-re-post-categories-active'] == 1 && isset($_POST['b2s-re-post-categories-data']) && !empty($_POST['b2s-re-post-categories-data']) && is_array($_POST['b2s-re-post-categories-data'])) {
|
@@ -2540,7 +2549,19 @@ class Ajax_Post {
|
|
2540 |
public function communityRegister() {
|
2541 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
2542 |
if (isset($_POST['username']) && !empty($_POST['username']) && isset($_POST['password']) && !empty($_POST['password']) && isset($_POST['email']) && !empty($_POST['email'])) {
|
2543 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2544 |
$repsonse = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, $postData, 15), true);
|
2545 |
if (is_array($repsonse) && !empty($repsonse) && isset($repsonse['result'])) {
|
2546 |
if ($repsonse['result'] == true) {
|
@@ -2574,8 +2595,8 @@ class Ajax_Post {
|
|
2574 |
}
|
2575 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Api/Network/Pinterest.php');
|
2576 |
$pt = new B2S_Api_Network_Pinterest();
|
2577 |
-
|
2578 |
-
|
2579 |
if (isset($getBoards['error']) && (int) $getBoards['error'] == 0 && isset($getBoards['data']) && !empty($getBoards['data'])) {
|
2580 |
$html = '';
|
2581 |
foreach ($getBoards['data'] as $k => $v) {
|
@@ -2618,5 +2639,31 @@ class Ajax_Post {
|
|
2618 |
wp_die();
|
2619 |
}
|
2620 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2621 |
|
2622 |
}
|
66 |
add_action('wp_ajax_b2s_network_check_user_data', array($this, 'networkCheckUserData'));
|
67 |
add_action('wp_ajax_b2s_metrics_starting_confirm', array($this, 'metricsStartingConfirm'));
|
68 |
add_action('wp_ajax_b2s_metrics_banner_close', array($this, 'metricsBannerClose'));
|
69 |
+
add_action('wp_ajax_b2s_continue_trial_option', array($this, 'continueTrialOption'));
|
70 |
+
add_action('wp_ajax_b2s_final_trial_option', array($this, 'hideFinalTrialOption'));
|
71 |
}
|
72 |
|
73 |
public function curationDraft() {
|
875 |
if (isset($_POST['legacy_mode'])) {
|
876 |
$options = new B2S_Options(0, 'B2S_PLUGIN_GENERAL_OPTIONS');
|
877 |
$options->_setOption('legacy_mode', (int) $_POST['legacy_mode']);
|
878 |
+
|
879 |
+
if((int) $_POST['legacy_mode'] >= 1) {
|
880 |
+
$options->_setOption('og_active', 0);
|
881 |
+
$options->_setOption('card_active', 0);
|
882 |
+
$options->_setOption('oembed_active', 0);
|
883 |
+
}
|
884 |
+
|
885 |
echo json_encode(array('result' => true, 'content' => (((int) $_POST['legacy_mode'] == 1) ? 0 : 1)));
|
886 |
wp_die();
|
887 |
}
|
2358 |
}
|
2359 |
//only posted x times - Posts (1 post to 1 auth) within 5 minutes counts as posted one time
|
2360 |
if (isset($_POST['b2s-re-post-already-planed-active']) && (int) $_POST['b2s-re-post-already-planed-active'] == 1 && isset($_POST['b2s-re-post-already-planed-count']) && (int) $_POST['b2s-re-post-already-planed-count'] >= 0) {
|
2361 |
+
$where .= " AND posts.ID NOT IN (SELECT post_id FROM (SELECT post_id FROM {$wpdb->prefix}b2s_posts WHERE blog_user_id = " . (int) B2S_PLUGIN_BLOG_USER_ID . " AND publish_date != '0000-00-00 00:00:00' AND publish_error_code = '' AND hide = 0 GROUP BY UNIX_TIMESTAMP(publish_date) DIV 300 ORDER BY `{$wpdb->prefix}b2s_posts`.`post_id` ASC) AS b2s_post_results GROUP BY post_id HAVING count(*) > " . (int) $_POST['b2s-re-post-already-planed-count'] . ") ";
|
2362 |
}
|
2363 |
//categories
|
2364 |
if (isset($_POST['b2s-re-post-categories-active']) && (int) $_POST['b2s-re-post-categories-active'] == 1 && isset($_POST['b2s-re-post-categories-data']) && !empty($_POST['b2s-re-post-categories-data']) && is_array($_POST['b2s-re-post-categories-data'])) {
|
2549 |
public function communityRegister() {
|
2550 |
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
2551 |
if (isset($_POST['username']) && !empty($_POST['username']) && isset($_POST['password']) && !empty($_POST['password']) && isset($_POST['email']) && !empty($_POST['email'])) {
|
2552 |
+
$username = '';
|
2553 |
+
$password = '';
|
2554 |
+
$encrypted = false;
|
2555 |
+
$publicKey = B2S_PLUGIN_DIR . '/includes/B2S/Support/community_public_key.pem';
|
2556 |
+
if (function_exists('openssl_public_encrypt') && file_exists($publicKey)) {
|
2557 |
+
$getPublicKey = file_get_contents($publicKey);
|
2558 |
+
openssl_public_encrypt(sanitize_text_field($_POST['username']), $username, $getPublicKey);
|
2559 |
+
openssl_public_encrypt(sanitize_text_field($_POST['password']), $password, $getPublicKey);
|
2560 |
+
$encrypted = true;
|
2561 |
+
$username = base64_encode($username);
|
2562 |
+
$password = base64_encode($password);
|
2563 |
+
}
|
2564 |
+
$postData = array('action' => 'registerCommunity', 'token' => B2S_PLUGIN_TOKEN, 'username' => $username, 'email' => $_POST['email'], 'password' => $password, 'encrypted' => $encrypted);
|
2565 |
$repsonse = json_decode(B2S_Api_Post::post(B2S_PLUGIN_API_ENDPOINT, $postData, 15), true);
|
2566 |
if (is_array($repsonse) && !empty($repsonse) && isset($repsonse['result'])) {
|
2567 |
if ($repsonse['result'] == true) {
|
2595 |
}
|
2596 |
require_once(B2S_PLUGIN_DIR . 'includes/B2S/Api/Network/Pinterest.php');
|
2597 |
$pt = new B2S_Api_Network_Pinterest();
|
2598 |
+
$pt->cookie = $wpCookie;
|
2599 |
+
$getBoards = $pt->getPinBoards();
|
2600 |
if (isset($getBoards['error']) && (int) $getBoards['error'] == 0 && isset($getBoards['data']) && !empty($getBoards['data'])) {
|
2601 |
$html = '';
|
2602 |
foreach ($getBoards['data'] as $k => $v) {
|
2639 |
wp_die();
|
2640 |
}
|
2641 |
}
|
2642 |
+
|
2643 |
+
public function continueTrialOption() {
|
2644 |
+
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
2645 |
+
require_once (B2S_PLUGIN_DIR . '/includes/Options.php');
|
2646 |
+
$option = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
2647 |
+
$option->_setOption('hide_7_day_trail', true);
|
2648 |
+
echo json_encode(array('result' => true));
|
2649 |
+
wp_die();
|
2650 |
+
} else {
|
2651 |
+
echo json_encode(array('result' => false, 'error_reason' => 'nonce'));
|
2652 |
+
wp_die();
|
2653 |
+
}
|
2654 |
+
}
|
2655 |
+
|
2656 |
+
public function hideFinalTrialOption() {
|
2657 |
+
if (isset($_POST['b2s_security_nonce']) && (int) wp_verify_nonce($_POST['b2s_security_nonce'], 'b2s_security_nonce') > 0) {
|
2658 |
+
require_once (B2S_PLUGIN_DIR . '/includes/Options.php');
|
2659 |
+
$option = new B2S_Options(B2S_PLUGIN_BLOG_USER_ID);
|
2660 |
+
$option->_setOption('hide_final_trail', true);
|
2661 |
+
echo json_encode(array('result' => true));
|
2662 |
+
wp_die();
|
2663 |
+
} else {
|
2664 |
+
echo json_encode(array('result' => false, 'error_reason' => 'nonce'));
|
2665 |
+
wp_die();
|
2666 |
+
}
|
2667 |
+
}
|
2668 |
|
2669 |
}
|
includes/B2S/Api/Network/Pinterest.php
CHANGED
@@ -111,7 +111,7 @@ class B2S_Api_Network_Pinterest {
|
|
111 |
}
|
112 |
if (empty($csrfToken)) {
|
113 |
$error_data = trim(str_replace(array("\r\n", "\r", "\n"), " | ", strip_tags($this->cutFromTo($content, '</head>', '</body>'))));
|
114 |
-
return array('error' => 1, 'error_pos' => 2, 'location' => $this->route . 'login/', 'error_data' => 'CSRF verification failed - RESPONSE: ' . serialize($error_data) . ' COOKIE: ' . serialize($cookie));
|
115 |
}
|
116 |
$headerData = $this->setHeader($this->route . 'login/', $this->route, 'POST', true);
|
117 |
$headerData['X-APP-VERSION'] = $appVersion;
|
@@ -137,7 +137,7 @@ class B2S_Api_Network_Pinterest {
|
|
137 |
$content = $result['body'];
|
138 |
$response = json_decode($content, true);
|
139 |
} else {
|
140 |
-
return array('error' => 1, 'error_pos' => 5, 'error_data' => serialize($result));
|
141 |
}
|
142 |
if (is_array($response) && empty($response['resource_response']['error'])) {
|
143 |
$this->cookie = $result['cookies'];
|
@@ -170,6 +170,14 @@ class B2S_Api_Network_Pinterest {
|
|
170 |
//$this->setRoute();
|
171 |
$headerData = $this->setHeader($this->route, $this->route, 'JSON', true, false);
|
172 |
$headerData['X-APP-VERSION'] = $this->appVersion;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
$pinBoardUrl = $this->route . 'resource/BoardPickerBoardsResource/get/';
|
174 |
$requestData = array('headers' => $headerData, 'cookies' => $this->cookie, 'timeout' => $this->timeout);
|
175 |
$result = wp_remote_get($pinBoardUrl, $requestData);
|
@@ -178,6 +186,11 @@ class B2S_Api_Network_Pinterest {
|
|
178 |
}
|
179 |
$content = $result['body'];
|
180 |
$response = json_decode($content, true);
|
|
|
|
|
|
|
|
|
|
|
181 |
if (!empty($response['resource_data_cache']) || !empty($response['resource_response'])) {
|
182 |
if (!empty($response['resource_data_cache'])) {
|
183 |
$boardsData = $response['resource_data_cache'];
|
@@ -202,5 +215,5 @@ class B2S_Api_Network_Pinterest {
|
|
202 |
}
|
203 |
return array('error' => 4, 'error_pos' => 1, 'error_data' => 'unknown_error');
|
204 |
}
|
205 |
-
|
206 |
}
|
111 |
}
|
112 |
if (empty($csrfToken)) {
|
113 |
$error_data = trim(str_replace(array("\r\n", "\r", "\n"), " | ", strip_tags($this->cutFromTo($content, '</head>', '</body>'))));
|
114 |
+
return array('error' => 1, 'error_pos' => 2, 'location' => $this->route . 'login/', 'error_data' => 'CSRF verification failed - RESPONSE: ' . serialize($error_data) . ' COOKIE: ' . serialize($cookie), 'error_code' => 'invalid');
|
115 |
}
|
116 |
$headerData = $this->setHeader($this->route . 'login/', $this->route, 'POST', true);
|
117 |
$headerData['X-APP-VERSION'] = $appVersion;
|
137 |
$content = $result['body'];
|
138 |
$response = json_decode($content, true);
|
139 |
} else {
|
140 |
+
return array('error' => 1, 'error_pos' => 5, 'error_data' => serialize($result), 'error_code' => 'invalid');
|
141 |
}
|
142 |
if (is_array($response) && empty($response['resource_response']['error'])) {
|
143 |
$this->cookie = $result['cookies'];
|
170 |
//$this->setRoute();
|
171 |
$headerData = $this->setHeader($this->route, $this->route, 'JSON', true, false);
|
172 |
$headerData['X-APP-VERSION'] = $this->appVersion;
|
173 |
+
if(is_array($this->cookie) && !empty($this->cookie)) {
|
174 |
+
foreach($this->cookie as $cookie) {
|
175 |
+
if(isset($cookie->name) && !empty($cookie->name) && $cookie->name == "_auth" && isset($cookie->domain) && !empty($cookie->domain)) {
|
176 |
+
$this->route = 'https://' . $cookie->domain . '/';
|
177 |
+
break;
|
178 |
+
}
|
179 |
+
}
|
180 |
+
}
|
181 |
$pinBoardUrl = $this->route . 'resource/BoardPickerBoardsResource/get/';
|
182 |
$requestData = array('headers' => $headerData, 'cookies' => $this->cookie, 'timeout' => $this->timeout);
|
183 |
$result = wp_remote_get($pinBoardUrl, $requestData);
|
186 |
}
|
187 |
$content = $result['body'];
|
188 |
$response = json_decode($content, true);
|
189 |
+
if($response == null || !is_array($response) || empty($response)) {
|
190 |
+
if(isset($result['response']) && !empty($result['response']) && isset($result['response']['code']) && $result['response']['code'] == 403) {
|
191 |
+
return array('error' => 403, 'error_pos' => 1, 'error_data' => 'access_denied', 'error_code' => 'limit');
|
192 |
+
}
|
193 |
+
}
|
194 |
if (!empty($response['resource_data_cache']) || !empty($response['resource_response'])) {
|
195 |
if (!empty($response['resource_data_cache'])) {
|
196 |
$boardsData = $response['resource_data_cache'];
|
215 |
}
|
216 |
return array('error' => 4, 'error_pos' => 1, 'error_data' => 'unknown_error');
|
217 |
}
|
218 |
+
|
219 |
}
|
includes/B2S/AutoPost/Item.php
CHANGED
@@ -229,7 +229,7 @@ class B2S_AutoPost_Item {
|
|
229 |
private function getNetworkAutoPostData($data = array()) {
|
230 |
$html = '';
|
231 |
if (!empty($this->networkAutoPostData)) {
|
232 |
-
$selected = (
|
233 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
234 |
$html .= '<ul class="list-group b2s-network-details-container-list">';
|
235 |
foreach ($this->networkAutoPostData as $k => $v) {
|
229 |
private function getNetworkAutoPostData($data = array()) {
|
230 |
$html = '';
|
231 |
if (!empty($this->networkAutoPostData)) {
|
232 |
+
$selected = (isset($data['network_auth_id']) && is_array($data['network_auth_id'])) ? $data['network_auth_id'] : array();
|
233 |
$networkName = unserialize(B2S_PLUGIN_NETWORK);
|
234 |
$html .= '<ul class="list-group b2s-network-details-container-list">';
|
235 |
foreach ($this->networkAutoPostData as $k => $v) {
|
includes/B2S/Heartbeat.php
CHANGED
@@ -225,6 +225,22 @@ class B2S_Heartbeat {
|
|
225 |
'post_for_approve' => (int) $shareApprove,
|
226 |
'hook_action' => 0);
|
227 |
$wpdb->update($wpdb->prefix.'b2s_posts', $updateData, array('id' => $v->id), array('%s', '%s', '%s', '%s', '%s', '%d', '%d'), array('%d'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
}
|
229 |
}
|
230 |
}
|
225 |
'post_for_approve' => (int) $shareApprove,
|
226 |
'hook_action' => 0);
|
227 |
$wpdb->update($wpdb->prefix.'b2s_posts', $updateData, array('id' => $v->id), array('%s', '%s', '%s', '%s', '%s', '%d', '%d'), array('%d'));
|
228 |
+
|
229 |
+
if (isset($v->external_post_id) && !empty($v->external_post_id)) {
|
230 |
+
$netowkDetailsData = $wpdb->get_results($wpdb->prepare("SELECT network_details_id, blog_user_id FROM {$wpdb->prefix}b2s_posts WHERE id= %d", $v->id), ARRAY_A);
|
231 |
+
if (isset($netowkDetailsData[0]) && isset($netowkDetailsData[0]['network_details_id']) && (int) $netowkDetailsData[0]['network_details_id'] > 0 && isset($netowkDetailsData[0]['blog_user_id']) && (int) $netowkDetailsData[0]['blog_user_id'] > 0) {
|
232 |
+
$insightData = array(
|
233 |
+
'network_post_id' => $v->external_post_id,
|
234 |
+
'insight' => '',
|
235 |
+
'blog_user_id' => (int) $netowkDetailsData[0]['blog_user_id'],
|
236 |
+
'b2s_posts_id' => (int) $v->id,
|
237 |
+
'b2s_posts_network_details_id' => (int) $netowkDetailsData[0]['network_details_id'],
|
238 |
+
'last_update' => date('Y-m-d H:i:s', strtotime(date('Y-m-d H:i:s') . ' -1 day')),
|
239 |
+
'active' => 1
|
240 |
+
);
|
241 |
+
$wpdb->insert($wpdb->prefix.'b2s_posts_insights', $insightData, array('%s', '%s', '%d', '%d', '%d', '%s', '%d'));
|
242 |
+
}
|
243 |
+
}
|
244 |
}
|
245 |
}
|
246 |
}
|
includes/B2S/Hook/Filter.php
CHANGED
@@ -39,7 +39,7 @@ class B2S_Hook_Filter {
|
|
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);
|
@@ -47,7 +47,7 @@ class B2S_Hook_Filter {
|
|
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);
|
39 |
}
|
40 |
|
41 |
function get_posting_template_show_taxonomies($taxonomies = array()) {
|
42 |
+
if(!defined('B2S_PLUGIN_USER_VERSION') || (defined('B2S_PLUGIN_USER_VERSION') && B2S_PLUGIN_USER_VERSION < 3)) {
|
43 |
return $taxonomies;
|
44 |
}
|
45 |
$taxonomies_data = apply_filters('b2s_filter_posting_template_show_taxonomies', $taxonomies);
|
47 |
}
|
48 |
|
49 |
function get_posting_template_set_taxonomies($taxonomies = array(), $postId = 0) {
|
50 |
+
if(!defined('B2S_PLUGIN_USER_VERSION') || (defined('B2S_PLUGIN_USER_VERSION') && B2S_PLUGIN_USER_VERSION < 3)) {
|
51 |
return $taxonomies;
|
52 |
}
|
53 |
$taxonomies_data = apply_filters('b2s_filter_posting_template_set_taxonomies', $taxonomies, $postId);
|
includes/B2S/Network/Item.php
CHANGED
@@ -104,8 +104,9 @@ class B2S_Network_Item {
|
|
104 |
if (!isset($convertAuthData[$mandant][$portal->id]) || empty($convertAuthData[$mandant][$portal->id])) {
|
105 |
$convertAuthData[$mandant][$portal->id] = array();
|
106 |
}
|
|
|
107 |
$maxNetworkAccount = ($auth_count !== false && is_array($auth_count)) ? ((isset($auth_count[$portal->id])) ? $auth_count[$portal->id] : $auth_count[0]) : false;
|
108 |
-
|
109 |
if (isset($this->addon_count) && is_object($this->addon_count) && isset($this->addon_count->{$portal->id}) && isset($this->addon_count->{$portal->id}->total) && (int) $this->addon_count->{$portal->id}->total > 0) {
|
110 |
$maxNetworkAccount = (int) $maxNetworkAccount + (int) $this->addon_count->{$portal->id}->total;
|
111 |
}
|
@@ -897,13 +898,13 @@ class B2S_Network_Item {
|
|
897 |
$content .= '</div>';
|
898 |
$content .= '</div>';
|
899 |
}
|
900 |
-
if ($networkId == 24) {
|
901 |
-
$content .= '<div class="row b2s-edit-template-enable-link-area" style="display:' . (($schema[$networkType]['format'] == 1) ? 'block' : 'none') . '" data-network-type="' . esc_attr($networkType) . '">';
|
902 |
-
$content .= '<div class="col-md-12">';
|
903 |
-
$content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" ' . ((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"') . ' id="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"><label for="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"> ' . esc_html__('Add a link-URL to the end of my post.', 'blog2social') . '</label>';
|
904 |
-
$content .= '</div>';
|
905 |
-
$content .= '</div>';
|
906 |
-
}
|
907 |
$content .= '<br>';
|
908 |
$content .= '<div class="row">';
|
909 |
$content .= '<div class="col-md-12 media-heading">';
|
@@ -1499,8 +1500,8 @@ class B2S_Network_Item {
|
|
1499 |
$preview .= '<div class="col-sm-1">';
|
1500 |
$preview .= '<img class="b2s-edit-template-preview-profile-img-24" src="' . plugins_url('/assets/images/b2s@64.png', B2S_PLUGIN_FILE) . '">';
|
1501 |
$preview .= '</div>';
|
1502 |
-
$preview .= '<div class="col-sm-10 col-sm-push-1
|
1503 |
-
$preview .= '<div class="b2s-edit-template-link-preview" data-network-type="' . esc_attr($networkType) . '" ' . (((int) $schema[$networkType]['format'] == 0) ? '' : 'style="display: none;"') . '>';
|
1504 |
$preview .= '<div class="row">';
|
1505 |
$preview .= '<div class="col-sm-12 b2s-edit-template-preview-content-24">';
|
1506 |
$preview .= '<span class="b2s-edit-template-preview-content" data-network-type="' . esc_attr($networkType) . '">' . preg_replace("/\n/", "<br>", esc_html($schema[$networkType]['content'])) . '</span>';
|
@@ -1522,12 +1523,14 @@ class B2S_Network_Item {
|
|
1522 |
$preview .= '</div>';
|
1523 |
$preview .= '<div class="row">';
|
1524 |
$preview .= '<div class="col-sm-12 b2s-edit-template-preview-image-border-24">';
|
|
|
1525 |
$preview .= '<span class="b2s-edit-template-preview-content" data-network-type="' . esc_attr($networkType) . '">' . preg_replace("/\n/", "<br>", esc_html($schema[$networkType]['content'])) . '</span>';
|
1526 |
$preview .= '</div>';
|
1527 |
$preview .= '</div>';
|
1528 |
$preview .= '</div>';
|
1529 |
$preview .= '</div>';
|
1530 |
$preview .= '</div>';
|
|
|
1531 |
|
1532 |
$preview .= '</div>';
|
1533 |
$preview .= '</div>';
|
104 |
if (!isset($convertAuthData[$mandant][$portal->id]) || empty($convertAuthData[$mandant][$portal->id])) {
|
105 |
$convertAuthData[$mandant][$portal->id] = array();
|
106 |
}
|
107 |
+
$auth_count = (array) $auth_count;
|
108 |
$maxNetworkAccount = ($auth_count !== false && is_array($auth_count)) ? ((isset($auth_count[$portal->id])) ? $auth_count[$portal->id] : $auth_count[0]) : false;
|
109 |
+
|
110 |
if (isset($this->addon_count) && is_object($this->addon_count) && isset($this->addon_count->{$portal->id}) && isset($this->addon_count->{$portal->id}->total) && (int) $this->addon_count->{$portal->id}->total > 0) {
|
111 |
$maxNetworkAccount = (int) $maxNetworkAccount + (int) $this->addon_count->{$portal->id}->total;
|
112 |
}
|
898 |
$content .= '</div>';
|
899 |
$content .= '</div>';
|
900 |
}
|
901 |
+
// if ($networkId == 24) {
|
902 |
+
// $content .= '<div class="row b2s-edit-template-enable-link-area" style="display:' . (($schema[$networkType]['format'] == 1) ? 'block' : 'none') . '" data-network-type="' . esc_attr($networkType) . '">';
|
903 |
+
// $content .= '<div class="col-md-12">';
|
904 |
+
// $content .= '<input class="b2s-edit-template-enable-link" data-network-type="' . esc_attr($networkType) . '" type="checkbox" ' . ((isset($schema[$networkType]['addLink']) && $schema[$networkType]['addLink'] == false) ? '' : 'checked="checked"') . ' id="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"><label for="b2s-edit-template-enable-link[' . esc_attr($networkType) . ']"> ' . esc_html__('Add a link-URL to the end of my post.', 'blog2social') . '</label>';
|
905 |
+
// $content .= '</div>';
|
906 |
+
// $content .= '</div>';
|
907 |
+
// }
|
908 |
$content .= '<br>';
|
909 |
$content .= '<div class="row">';
|
910 |
$content .= '<div class="col-md-12 media-heading">';
|
1500 |
$preview .= '<div class="col-sm-1">';
|
1501 |
$preview .= '<img class="b2s-edit-template-preview-profile-img-24" src="' . plugins_url('/assets/images/b2s@64.png', B2S_PLUGIN_FILE) . '">';
|
1502 |
$preview .= '</div>';
|
1503 |
+
$preview .= '<div class="col-sm-10 col-sm-push-1">';
|
1504 |
+
$preview .= '<div class="b2s-edit-template-link-preview b2s-edit-template-preview-inner-border-24" data-network-type="' . esc_attr($networkType) . '" ' . (((int) $schema[$networkType]['format'] == 0) ? '' : 'style="display: none;"') . '>';
|
1505 |
$preview .= '<div class="row">';
|
1506 |
$preview .= '<div class="col-sm-12 b2s-edit-template-preview-content-24">';
|
1507 |
$preview .= '<span class="b2s-edit-template-preview-content" data-network-type="' . esc_attr($networkType) . '">' . preg_replace("/\n/", "<br>", esc_html($schema[$networkType]['content'])) . '</span>';
|
1523 |
$preview .= '</div>';
|
1524 |
$preview .= '<div class="row">';
|
1525 |
$preview .= '<div class="col-sm-12 b2s-edit-template-preview-image-border-24">';
|
1526 |
+
$preview .= '<div class="b2s-edit-template-preview-inner-border-24">';
|
1527 |
$preview .= '<span class="b2s-edit-template-preview-content" data-network-type="' . esc_attr($networkType) . '">' . preg_replace("/\n/", "<br>", esc_html($schema[$networkType]['content'])) . '</span>';
|
1528 |
$preview .= '</div>';
|
1529 |
$preview .= '</div>';
|
1530 |
$preview .= '</div>';
|
1531 |
$preview .= '</div>';
|
1532 |
$preview .= '</div>';
|
1533 |
+
$preview .= '</div>';
|
1534 |
|
1535 |
$preview .= '</div>';
|
1536 |
$preview .= '</div>';
|
includes/B2S/Post/Item.php
CHANGED
@@ -137,9 +137,9 @@ class B2S_Post_Item {
|
|
137 |
if ($this->searchPostSharedById > 0 && $this->type != 'draft' && $this->type != 'draft-post') {
|
138 |
if($this->type == 'all' || $this->type == 'favorites') {
|
139 |
$leftJoin3 = "LEFT JOIN `{$wpdb->prefix}b2s_posts` b2s on posts.ID = b2s.post_id";
|
140 |
-
$leftJoinWhere .= " AND b2s.blog_user_id = ".$this->searchPostSharedById;
|
141 |
} else {
|
142 |
-
$leftJoinWhere .= " AND filter.blog_user_id = ".$this->searchPostSharedById;
|
143 |
}
|
144 |
}
|
145 |
|
@@ -218,7 +218,7 @@ class B2S_Post_Item {
|
|
218 |
$sqlPosts = "SELECT DISTINCT posts.`ID`, posts.`post_author`,posts.`post_type`,posts.`post_title`, " . $select . ", filter.`id`
|
219 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
220 |
INNER JOIN(
|
221 |
-
SELECT a.`id`,$selectInnerJoin, a.`blog_user_id`, a.`post_id` $sharedToNetworkSelect
|
222 |
FROM `{$wpdb->prefix}b2s_posts` a $addInnerJoinLeftJoin $addInnerJoinLeftJoinNetwork $sharedToNetworkJoin
|
223 |
WHERE $addInnnerJoinLeftJoinWhere $addInnnerJoinLeftJoinWhereNetwork $addSearchBlogPostId $addSearchShowByDate $where
|
224 |
) filter
|
@@ -232,7 +232,7 @@ class B2S_Post_Item {
|
|
232 |
$sqlPostsTotal = "SELECT DISTINCT COUNT(posts.`ID`)
|
233 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
234 |
INNER JOIN(
|
235 |
-
SELECT a.`post_id`, a.`blog_user_id`
|
236 |
FROM `{$wpdb->prefix}b2s_posts` a
|
237 |
WHERE $addSearchShowByDate $where
|
238 |
) filter
|
@@ -245,7 +245,7 @@ class B2S_Post_Item {
|
|
245 |
$sqlPostsTotal = "SELECT DISTINCT posts.`ID`, DATE_FORMAT(filter.`sched_date`,'%Y-%m-%d') AS sched
|
246 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
247 |
INNER JOIN(
|
248 |
-
SELECT a.`post_id`, a.`sched_date`, a.`blog_user_id`
|
249 |
FROM `{$wpdb->prefix}b2s_posts` a $addInnerJoinLeftJoin $addInnerJoinLeftJoinNetwork
|
250 |
WHERE $addInnnerJoinLeftJoinWhere $addInnnerJoinLeftJoinWhereNetwork $addSearchShowByDate $where
|
251 |
) filter
|
@@ -309,10 +309,16 @@ class B2S_Post_Item {
|
|
309 |
|
310 |
$sqlPosts = "SELECT {$wpdb->prefix}b2s_posts_drafts.`ID` AS draft_id, posts.`ID`, {$wpdb->prefix}b2s_posts_drafts.`post_id`, {$wpdb->prefix}b2s_posts_drafts.`last_save_date`, {$wpdb->prefix}b2s_posts_drafts.`data`, posts.post_author, posts.post_type, posts.post_title
|
311 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_drafts ON {$wpdb->prefix}b2s_posts_drafts.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3 $leftJoin4
|
312 |
-
WHERE {$wpdb->prefix}b2s_posts_drafts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID
|
313 |
-
|
314 |
-
|
315 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
$startDate $endDate
|
317 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
318 |
ORDER BY `last_save_date` " . $sortType . "
|
@@ -321,10 +327,16 @@ class B2S_Post_Item {
|
|
321 |
|
322 |
$sqlPostsTotal = "SELECT COUNT(*)
|
323 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_drafts ON {$wpdb->prefix}b2s_posts_drafts.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3 $leftJoin4
|
324 |
-
WHERE {$wpdb->prefix}b2s_posts_drafts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID
|
325 |
-
|
326 |
-
|
327 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
$startDate $endDate
|
329 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere";
|
330 |
$this->postTotal = $wpdb->get_var($sqlPostsTotal);
|
@@ -649,7 +661,7 @@ class B2S_Post_Item {
|
|
649 |
private function getLastPost($post_id = 0) {
|
650 |
if ($post_id > 0) {
|
651 |
global $wpdb;
|
652 |
-
$addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(
|
653 |
$order = ($this->type == 'publish' || $this->type == 'notice') ? " `publish_date` DESC" : " `sched_date` ASC ";
|
654 |
$addWhere = ($this->type == 'notice') ? ' AND `publish_error_code` != "" ' : ' AND `publish_error_code` = "" ';
|
655 |
$where = ($this->type == 'publish' || $this->type == 'notice') ? " `post_for_approve`= 0 AND (`sched_date`= '0000-00-00 00:00:00' OR (`sched_type` = 3 AND `publish_date` != '0000-00-00 00:00:00')) " . $addWhere : " (`sched_type` != 3 OR (`sched_type` = 3 AND `publish_date` = '0000-00-00 00:00:00')) AND ((`sched_date_utc` != '0000-00-00 00:00:00' AND `post_for_approve` = 0) OR (`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `post_for_approve` = 1)) AND `publish_date` = '0000-00-00 00:00:00'";
|
@@ -674,7 +686,7 @@ class B2S_Post_Item {
|
|
674 |
private function getLastPublish($post_id = 0) {
|
675 |
if ($post_id > 0) {
|
676 |
global $wpdb;
|
677 |
-
$addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(
|
678 |
$order = "`publish_date` DESC";
|
679 |
$where = "(`sched_date`= '0000-00-00 00:00:00' OR (`sched_type` = 3 AND `publish_date` != '0000-00-00 00:00:00')) ";
|
680 |
$fields = "publish_date";
|
@@ -728,8 +740,8 @@ class B2S_Post_Item {
|
|
728 |
public function getPublishPostDataHtml($post_id = 0, $type = 'publish', $showByDate = '', $sharedByUser = 0, $sharedOnNetwork = 0) {
|
729 |
if ($post_id > 0) {
|
730 |
global $wpdb;
|
731 |
-
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (
|
732 |
-
$addSharedByUser = ($sharedByUser > 0) ? (
|
733 |
$addSharedOnNetwork = ($sharedOnNetwork > 0) ? (' AND network_id =' . $sharedOnNetwork) : '';
|
734 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
735 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
@@ -866,7 +878,7 @@ class B2S_Post_Item {
|
|
866 |
public function getApprovePostDataHtml($post_id = 0, $showByDate = '') {
|
867 |
if ($post_id > 0) {
|
868 |
global $wpdb;
|
869 |
-
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (
|
870 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND (DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' OR DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "') " : '';
|
871 |
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`, `{$wpdb->prefix}b2s_posts`.`post_id`, `{$wpdb->prefix}b2s_posts`.`blog_user_id`, `{$wpdb->prefix}b2s_posts`.`sched_date`,`{$wpdb->prefix}b2s_posts`.`publish_date`,`{$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`, `{$wpdb->prefix}b2s_posts_sched_details`.`sched_data` 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` = 1 AND (`{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00' OR `{$wpdb->prefix}b2s_posts`.`sched_date_utc` <= '" . gmdate('Y-m-d H:i:s') . "') $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`sched_date` DESC,`{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
872 |
$result = $wpdb->get_results($sqlData);
|
137 |
if ($this->searchPostSharedById > 0 && $this->type != 'draft' && $this->type != 'draft-post') {
|
138 |
if($this->type == 'all' || $this->type == 'favorites') {
|
139 |
$leftJoin3 = "LEFT JOIN `{$wpdb->prefix}b2s_posts` b2s on posts.ID = b2s.post_id";
|
140 |
+
$leftJoinWhere .= " AND b2s.hide = 0 AND b2s.blog_user_id = ".$this->searchPostSharedById;
|
141 |
} else {
|
142 |
+
$leftJoinWhere .= " AND filter.hide = 0 AND filter.blog_user_id = ".$this->searchPostSharedById;
|
143 |
}
|
144 |
}
|
145 |
|
218 |
$sqlPosts = "SELECT DISTINCT posts.`ID`, posts.`post_author`,posts.`post_type`,posts.`post_title`, " . $select . ", filter.`id`
|
219 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
220 |
INNER JOIN(
|
221 |
+
SELECT a.`id`,$selectInnerJoin, a.`blog_user_id`, a.`hide`, a.`post_id` $sharedToNetworkSelect
|
222 |
FROM `{$wpdb->prefix}b2s_posts` a $addInnerJoinLeftJoin $addInnerJoinLeftJoinNetwork $sharedToNetworkJoin
|
223 |
WHERE $addInnnerJoinLeftJoinWhere $addInnnerJoinLeftJoinWhereNetwork $addSearchBlogPostId $addSearchShowByDate $where
|
224 |
) filter
|
232 |
$sqlPostsTotal = "SELECT DISTINCT COUNT(posts.`ID`)
|
233 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
234 |
INNER JOIN(
|
235 |
+
SELECT a.`post_id`, a.`blog_user_id`, a.`hide`
|
236 |
FROM `{$wpdb->prefix}b2s_posts` a
|
237 |
WHERE $addSearchShowByDate $where
|
238 |
) filter
|
245 |
$sqlPostsTotal = "SELECT DISTINCT posts.`ID`, DATE_FORMAT(filter.`sched_date`,'%Y-%m-%d') AS sched
|
246 |
FROM `$wpdb->posts` posts $leftJoin $leftJoin2
|
247 |
INNER JOIN(
|
248 |
+
SELECT a.`post_id`, a.`sched_date`, a.`blog_user_id`, a.`hide`
|
249 |
FROM `{$wpdb->prefix}b2s_posts` a $addInnerJoinLeftJoin $addInnerJoinLeftJoinNetwork
|
250 |
WHERE $addInnnerJoinLeftJoinWhere $addInnnerJoinLeftJoinWhereNetwork $addSearchShowByDate $where
|
251 |
) filter
|
309 |
|
310 |
$sqlPosts = "SELECT {$wpdb->prefix}b2s_posts_drafts.`ID` AS draft_id, posts.`ID`, {$wpdb->prefix}b2s_posts_drafts.`post_id`, {$wpdb->prefix}b2s_posts_drafts.`last_save_date`, {$wpdb->prefix}b2s_posts_drafts.`data`, posts.post_author, posts.post_type, posts.post_title
|
311 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_drafts ON {$wpdb->prefix}b2s_posts_drafts.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3 $leftJoin4
|
312 |
+
WHERE {$wpdb->prefix}b2s_posts_drafts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID;
|
313 |
+
if(!empty($this->searchPostType)) {
|
314 |
+
if ($this->searchPostType == 'b2s_ex_post') {
|
315 |
+
$sqlPosts .= " AND {$wpdb->prefix}b2s_posts_drafts.`save_origin` = 1 ";
|
316 |
+
} else {
|
317 |
+
$sqlPosts .= " AND {$wpdb->prefix}b2s_posts_drafts.`save_origin` = 0 "
|
318 |
+
. " AND $addSearchType ";
|
319 |
+
}
|
320 |
+
}
|
321 |
+
$sqlPosts .= " AND $postTypes
|
322 |
$startDate $endDate
|
323 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere
|
324 |
ORDER BY `last_save_date` " . $sortType . "
|
327 |
|
328 |
$sqlPostsTotal = "SELECT COUNT(*)
|
329 |
FROM `$wpdb->posts` posts LEFT JOIN {$wpdb->prefix}b2s_posts_drafts ON {$wpdb->prefix}b2s_posts_drafts.post_id = posts.ID $leftJoin $leftJoin2 $leftJoin3 $leftJoin4
|
330 |
+
WHERE {$wpdb->prefix}b2s_posts_drafts.`blog_user_id` = " . B2S_PLUGIN_BLOG_USER_ID;
|
331 |
+
if(!empty($this->searchPostType)) {
|
332 |
+
if (!empty($this->searchPostType) && $this->searchPostType == 'b2s_ex_post') {
|
333 |
+
$sqlPosts .= " AND {$wpdb->prefix}b2s_posts_drafts.`save_origin` = 1 ";
|
334 |
+
} else {
|
335 |
+
$sqlPosts .= " AND {$wpdb->prefix}b2s_posts_drafts.`save_origin` = 0 "
|
336 |
+
. " AND $addSearchType ";
|
337 |
+
}
|
338 |
+
}
|
339 |
+
$sqlPosts .= " AND $postTypes
|
340 |
$startDate $endDate
|
341 |
$addSearchAuthorId $addSearchPostTitle $addNotAdmin $leftJoinWhere";
|
342 |
$this->postTotal = $wpdb->get_var($sqlPostsTotal);
|
661 |
private function getLastPost($post_id = 0) {
|
662 |
if ($post_id > 0) {
|
663 |
global $wpdb;
|
664 |
+
$addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(" AND `{$wpdb->prefix}b2s_posts`.`blog_user_id` = %d", B2S_PLUGIN_BLOG_USER_ID) : '';
|
665 |
$order = ($this->type == 'publish' || $this->type == 'notice') ? " `publish_date` DESC" : " `sched_date` ASC ";
|
666 |
$addWhere = ($this->type == 'notice') ? ' AND `publish_error_code` != "" ' : ' AND `publish_error_code` = "" ';
|
667 |
$where = ($this->type == 'publish' || $this->type == 'notice') ? " `post_for_approve`= 0 AND (`sched_date`= '0000-00-00 00:00:00' OR (`sched_type` = 3 AND `publish_date` != '0000-00-00 00:00:00')) " . $addWhere : " (`sched_type` != 3 OR (`sched_type` = 3 AND `publish_date` = '0000-00-00 00:00:00')) AND ((`sched_date_utc` != '0000-00-00 00:00:00' AND `post_for_approve` = 0) OR (`sched_date_utc` >= '" . gmdate('Y-m-d H:i:s') . "' AND `post_for_approve` = 1)) AND `publish_date` = '0000-00-00 00:00:00'";
|
686 |
private function getLastPublish($post_id = 0) {
|
687 |
if ($post_id > 0) {
|
688 |
global $wpdb;
|
689 |
+
$addNotAdmin = (B2S_PLUGIN_ADMIN == false) ? $wpdb->prepare(" AND `{$wpdb->prefix}b2s_posts`.`blog_user_id` = %d", B2S_PLUGIN_BLOG_USER_ID) : '';
|
690 |
$order = "`publish_date` DESC";
|
691 |
$where = "(`sched_date`= '0000-00-00 00:00:00' OR (`sched_type` = 3 AND `publish_date` != '0000-00-00 00:00:00')) ";
|
692 |
$fields = "publish_date";
|
740 |
public function getPublishPostDataHtml($post_id = 0, $type = 'publish', $showByDate = '', $sharedByUser = 0, $sharedOnNetwork = 0) {
|
741 |
if ($post_id > 0) {
|
742 |
global $wpdb;
|
743 |
+
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (" AND `{$wpdb->prefix}b2s_posts`.blog_user_id =" . B2S_PLUGIN_BLOG_USER_ID) : '';
|
744 |
+
$addSharedByUser = ($sharedByUser > 0) ? (" AND `{$wpdb->prefix}b2s_posts`.blog_user_id =" . $sharedByUser) : '';
|
745 |
$addSharedOnNetwork = ($sharedOnNetwork > 0) ? (' AND network_id =' . $sharedOnNetwork) : '';
|
746 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' " : '';
|
747 |
$addWhere = ($type == 'notice') ? ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` != "" ' : ' AND `' . $wpdb->prefix . 'b2s_posts`.`publish_error_code` = "" ';
|
878 |
public function getApprovePostDataHtml($post_id = 0, $showByDate = '') {
|
879 |
if ($post_id > 0) {
|
880 |
global $wpdb;
|
881 |
+
$addNotAdminPosts = (!B2S_PLUGIN_ADMIN) ? (" AND `{$wpdb->prefix}b2s_posts`.blog_user_id =" . B2S_PLUGIN_BLOG_USER_ID) : '';
|
882 |
$addSearchShowByDate = (!empty($showByDate)) ? " AND (DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`sched_date`,'%%Y-%%m-%%d') = '" . $showByDate . "' OR DATE_FORMAT(`{$wpdb->prefix}b2s_posts`.`publish_date`,'%%Y-%%m-%%d') = '" . $showByDate . "') " : '';
|
883 |
$sqlData = $wpdb->prepare("SELECT `{$wpdb->prefix}b2s_posts`.`id`, `{$wpdb->prefix}b2s_posts`.`post_id`, `{$wpdb->prefix}b2s_posts`.`blog_user_id`, `{$wpdb->prefix}b2s_posts`.`sched_date`,`{$wpdb->prefix}b2s_posts`.`publish_date`,`{$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`, `{$wpdb->prefix}b2s_posts_sched_details`.`sched_data` 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` = 1 AND (`{$wpdb->prefix}b2s_posts`.`publish_date` != '0000-00-00 00:00:00' OR `{$wpdb->prefix}b2s_posts`.`sched_date_utc` <= '" . gmdate('Y-m-d H:i:s') . "') $addNotAdminPosts $addSearchShowByDate AND `{$wpdb->prefix}b2s_posts`.`post_id` = %d ORDER BY `{$wpdb->prefix}b2s_posts`.`sched_date` DESC,`{$wpdb->prefix}b2s_posts`.`publish_date` DESC", $post_id);
|
884 |
$result = $wpdb->get_results($sqlData);
|
includes/B2S/Ship/Item.php
CHANGED
@@ -157,6 +157,10 @@ class B2S_Ship_Item {
|
|
157 |
if (isset($this->limitCharacterProfile[$data->networkId]) && (int) $this->limitCharacterProfile[$data->networkId] > 0) {
|
158 |
$limitValue = $this->limitCharacterProfile[$data->networkId];
|
159 |
$limit = true;
|
|
|
|
|
|
|
|
|
160 |
}
|
161 |
$infoImage = (in_array($data->networkId, $this->allowNoImageProfile)) ? esc_html__('Network does not support image for profiles', 'blog2social') . '!' : '';
|
162 |
$infoImage .= (in_array($data->networkId, $this->allowNoCustomImageProfile)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network defines image by link', 'blog2social') . '!' : '';
|
@@ -226,6 +230,9 @@ class B2S_Ship_Item {
|
|
226 |
} else {
|
227 |
$textareaOnKeyUp = 'onkeyup="networkCount(\'' . esc_attr($data->networkAuthId) . '\');"';
|
228 |
$textareaLimitInfo = '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . (int) esc_html($countCharacter) . '</span> ' . esc_html__('characters', 'blog2social') . '</span>';
|
|
|
|
|
|
|
229 |
}
|
230 |
|
231 |
break;
|
@@ -628,6 +635,36 @@ class B2S_Ship_Item {
|
|
628 |
$edit .= $this->getUrlHtml($networkId, $networkType, $networkAuthId, $limit, $limitValue, true, 'og-url-input', true);
|
629 |
$edit .= '</div>';
|
630 |
$edit .= '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
631 |
}
|
632 |
|
633 |
if ($networkId == 4) {
|
@@ -910,6 +947,38 @@ class B2S_Ship_Item {
|
|
910 |
$edit .= '</div>';
|
911 |
$edit .= '</div>';
|
912 |
$edit .= '</div>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
913 |
}
|
914 |
|
915 |
if ($networkId == 8 || $networkId == 19) {
|
157 |
if (isset($this->limitCharacterProfile[$data->networkId]) && (int) $this->limitCharacterProfile[$data->networkId] > 0) {
|
158 |
$limitValue = $this->limitCharacterProfile[$data->networkId];
|
159 |
$limit = true;
|
160 |
+
if($data->networkId == 2 && defined('B2S_PLUGIN_USER_VERSION') && B2S_PLUGIN_USER_VERSION >= 2) {
|
161 |
+
$limitValue = 0;
|
162 |
+
$limit = false;
|
163 |
+
}
|
164 |
}
|
165 |
$infoImage = (in_array($data->networkId, $this->allowNoImageProfile)) ? esc_html__('Network does not support image for profiles', 'blog2social') . '!' : '';
|
166 |
$infoImage .= (in_array($data->networkId, $this->allowNoCustomImageProfile)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network defines image by link', 'blog2social') . '!' : '';
|
230 |
} else {
|
231 |
$textareaOnKeyUp = 'onkeyup="networkCount(\'' . esc_attr($data->networkAuthId) . '\');"';
|
232 |
$textareaLimitInfo = '<span class="b2s-post-item-countChar" data-network-count="-1" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">' . (int) esc_html($countCharacter) . '</span> ' . esc_html__('characters', 'blog2social') . '</span>';
|
233 |
+
if($data->networkId == 2) {
|
234 |
+
$textareaLimitInfo .= '<span class="b2s-post-item-show-thread-count" data-network-count="-1" data-network-auth-id="' . esc_attr($data->networkAuthId) . '"> - <span class="b2s-post-item-count-threads" data-network-count="-1" data-network-auth-id="' . esc_attr($data->networkAuthId) . '">1</span> ' . esc_html__('Threads', 'blog2social') . '</span>';
|
235 |
+
}
|
236 |
}
|
237 |
|
238 |
break;
|
635 |
$edit .= $this->getUrlHtml($networkId, $networkType, $networkAuthId, $limit, $limitValue, true, 'og-url-input', true);
|
636 |
$edit .= '</div>';
|
637 |
$edit .= '</div>';
|
638 |
+
|
639 |
+
$edit .= '<div class="col-sm-12 b2s-multi-image-area" data-network-auth-id="' . $networkAuthId . '" data-network-count="-1">';
|
640 |
+
$edit .= '<div class="row b2s-margin-top-20">';
|
641 |
+
$edit .= '<div class="col-sm-3 text-center">';
|
642 |
+
if (B2S_PLUGIN_USER_VERSION > 1) {
|
643 |
+
$edit .= '<a ' . ((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0])) ? 'style="display:none;"' : '') . ' class="btn btn-primary btn-circle b2s-add-multi-image" data-image-count="1" data-network-count="-1" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-picture"></i></a>';
|
644 |
+
$edit .= '<button ' . ((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0])) ? '' : 'style="display:none;"') . ' class="btn btn-primary btn-circle b2s-multi-image-remove-btn" data-image-count="1" data-network-count="-1" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-trash"></i></button>';
|
645 |
+
$edit .= '<img ' . ((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0])) ? '' : 'style="display:none;"') . ' src="' . esc_attr(((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0])) ? $multi_images[0] : "")) . '" class="b2s-image-border b2s-post-item-details-url-image-multi center-block img-responsive" data-image-count="1" data-network-count="-1" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
646 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-multi-image-modal-open" data-image-count="1" ' . ((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0])) ? '' : 'style="display:none;"') . ' data-network-count="-1" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-image-count="1">' . esc_html__('Change image', 'blog2social') . '</button>';
|
647 |
+
$edit .= '<input type="hidden" class="b2s-add-multi-image-hidden-field" name="b2s[' . $networkAuthId . '][multi_image_1]" data-image-count="1" data-network-count="-1" data-network-auth-id="' . $networkAuthId . '" value="' . esc_attr(((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0])) ? $multi_images[0] : "")) . '">';
|
648 |
+
$edit .= '</div>';
|
649 |
+
$edit .= '<div class="col-sm-3 text-center">';
|
650 |
+
$edit .= '<a ' . ((!empty($multi_images) && isset($multi_images[0]) && !empty($multi_images[0]) && (!isset($multi_images[1]) || empty($multi_images[1]))) ? '' : 'style="display:none;"') . ' class="btn btn-primary btn-circle b2s-add-multi-image" data-network-count="-1" data-image-count="2" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-picture"></i></a>';
|
651 |
+
$edit .= '<button ' . ((!empty($multi_images) && isset($multi_images[1]) && !empty($multi_images[1])) ? '' : 'style="display:none;"') . ' class="btn btn-primary btn-circle b2s-multi-image-remove-btn" data-image-count="2" data-network-count="-1" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-trash"></i></button>';
|
652 |
+
$edit .= '<img ' . ((!empty($multi_images) && isset($multi_images[1]) && !empty($multi_images[1])) ? '' : 'style="display:none;"') . ' src="' . esc_attr(((!empty($multi_images) && isset($multi_images[1]) && !empty($multi_images[1])) ? $multi_images[1] : "")) . '" class="b2s-image-border b2s-post-item-details-url-image-multi center-block img-responsive" data-image-count="2" data-network-count="-1" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
653 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-multi-image-modal-open" data-image-count="2" ' . ((!empty($multi_images) && isset($multi_images[1]) && !empty($multi_images[1])) ? '' : 'style="display:none;"') . ' data-network-count="-1" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-image-count="1">' . esc_html__('Change image', 'blog2social') . '</button>';
|
654 |
+
$edit .= '<input type="hidden" class="b2s-add-multi-image-hidden-field" name="b2s[' . $networkAuthId . '][multi_image_2]" data-image-count="2" data-network-count="-1" data-network-auth-id="' . $networkAuthId . '" value="' . esc_attr(((!empty($multi_images) && isset($multi_images[1]) && !empty($multi_images[1])) ? $multi_images[1] : "")) . '">';
|
655 |
+
$edit .= '</div>';
|
656 |
+
$edit .= '<div class="col-sm-3 text-center">';
|
657 |
+
$edit .= '<a ' . ((!empty($multi_images) && isset($multi_images[1]) && !empty($multi_images[1]) && (!isset($multi_images[2]) || empty($multi_images[2]))) ? '' : 'style="display:none;"') . ' class="btn btn-primary btn-circle b2s-add-multi-image" data-network-count="-1" data-image-count="3" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-picture"></i></a>';
|
658 |
+
$edit .= '<button ' . ((!empty($multi_images) && isset($multi_images[2]) && !empty($multi_images[2])) ? '' : 'style="display:none;"') . ' class="btn btn-primary btn-circle b2s-multi-image-remove-btn" data-image-count="3" data-network-count="-1" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-trash"></i></button>';
|
659 |
+
$edit .= '<img ' . ((!empty($multi_images) && isset($multi_images[2]) && !empty($multi_images[2])) ? '' : 'style="display:none;"') . ' src="' . esc_attr(((!empty($multi_images) && isset($multi_images[2]) && !empty($multi_images[2])) ? $multi_images[2] : "")) . '" class="b2s-image-border b2s-post-item-details-url-image-multi center-block img-responsive" data-image-count="3" data-network-count="-1" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
660 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-multi-image-modal-open" data-image-count="3" ' . ((!empty($multi_images) && isset($multi_images[2]) && !empty($multi_images[2])) ? '' : 'style="display:none;"') . ' data-network-count="-1" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-image-count="1">' . esc_html__('Change image', 'blog2social') . '</button>';
|
661 |
+
$edit .= '<input type="hidden" class="b2s-add-multi-image-hidden-field" name="b2s[' . $networkAuthId . '][multi_image_3]" data-image-count="3" data-network-count="-1" data-network-auth-id="' . $networkAuthId . '" value="' . esc_attr(((!empty($multi_images) && isset($multi_images[2]) && !empty($multi_images[2])) ? $multi_images[2] : "")) . '">';
|
662 |
+
} else {
|
663 |
+
$edit .= '<a class="btn btn-primary btn-circle b2sProFeatureModalBtn" data-title="' . esc_html__('Do u want to post multiple images?', 'blog2social') . '" data-type="multi-image">+</a><span class="label label-success">' . esc_html__("PRO", "blog2social") . '</span>';
|
664 |
+
}
|
665 |
+
$edit .= '</div>';
|
666 |
+
$edit .= '</div>';
|
667 |
+
$edit .= '</div>';
|
668 |
}
|
669 |
|
670 |
if ($networkId == 4) {
|
947 |
$edit .= '</div>';
|
948 |
$edit .= '</div>';
|
949 |
$edit .= '</div>';
|
950 |
+
|
951 |
+
if ($networkType == 0 || $networkType == 1) {
|
952 |
+
$edit .= '<div class="col-sm-12 b2s-multi-image-area" data-network-auth-id="' . $networkAuthId . '" data-network-count="' . $schedCount . '">';
|
953 |
+
$edit .= '<div class="row b2s-margin-top-20">';
|
954 |
+
$edit .= '<div class="col-sm-3 text-center">';
|
955 |
+
if (B2S_PLUGIN_USER_VERSION > 1) {
|
956 |
+
$edit .= '<a class="btn btn-primary btn-circle b2s-add-multi-image" data-image-count="1" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-picture"></i></a>';
|
957 |
+
$edit .= '<button style="display:none;" class="btn btn-primary btn-circle b2s-multi-image-remove-btn" data-image-count="1" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-trash"></i></button>';
|
958 |
+
$edit .= '<img style="display:none;" src="" class="b2s-image-border b2s-post-item-details-url-image-multi center-block img-responsive" data-image-count="1" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
959 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-multi-image-modal-open" style="display:none;" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-image-count="1">' . esc_html__('Change image', 'blog2social') . '</button>';
|
960 |
+
$edit .= '<input type="hidden" class="b2s-add-multi-image-hidden-field" name="b2s[' . $networkAuthId . '][sched_multi_image_1][' . esc_attr($schedCount) . ']" data-image-count="1" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '">';
|
961 |
+
$edit .= '</div>';
|
962 |
+
$edit .= '<div class="col-sm-3 text-center">';
|
963 |
+
$edit .= '<a style="display:none;" class="btn btn-primary btn-circle b2s-add-multi-image" data-image-count="2" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-picture"></i></a>';
|
964 |
+
$edit .= '<button style="display:none;" class="btn btn-primary btn-circle b2s-multi-image-remove-btn" data-image-count="2" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-trash"></i></button>';
|
965 |
+
$edit .= '<img style="display:none;" src="" class="b2s-image-border b2s-post-item-details-url-image-multi center-block img-responsive" data-image-count="2" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
966 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-multi-image-modal-open" style="display:none;" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-image-count="2">' . esc_html__('Change image', 'blog2social') . '</button>';
|
967 |
+
$edit .= '<input type="hidden" class="b2s-add-multi-image-hidden-field" name="b2s[' . $networkAuthId . '][sched_multi_image_2][' . esc_attr($schedCount) . ']" data-image-count="2" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '">';
|
968 |
+
$edit .= '</div>';
|
969 |
+
$edit .= '<div class="col-sm-3 text-center">';
|
970 |
+
$edit .= '<a style="display:none;" class="btn btn-primary btn-circle b2s-add-multi-image" data-image-count="3" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-picture"></i></a>';
|
971 |
+
$edit .= '<button style="display:none;" class="btn btn-primary btn-circle b2s-multi-image-remove-btn" data-image-count="3" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '"><i class="glyphicon glyphicon-trash"></i></button>';
|
972 |
+
$edit .= '<img style="display:none;" src="" class="b2s-image-border b2s-post-item-details-url-image-multi center-block img-responsive" data-image-count="3" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-image-change="1" data-network-auth-id="' . $networkAuthId . '">';
|
973 |
+
$edit .= '<button class="btn btn-link btn-xs center-block b2s-select-multi-image-modal-open" style="display:none;" data-network-count="' . $schedCount . '" data-network-id="' . $networkId . '" data-network-auth-id="' . $networkAuthId . '" data-image-count="3">' . esc_html__('Change image', 'blog2social') . '</button>';
|
974 |
+
$edit .= '<input type="hidden" class="b2s-add-multi-image-hidden-field" name="b2s[' . $networkAuthId . '][sched_multi_image_3][' . esc_attr($schedCount) . ']" data-image-count="3" data-network-count="' . $schedCount . '" data-network-auth-id="' . $networkAuthId . '">';
|
975 |
+
} else {
|
976 |
+
$edit .= '<a class="btn btn-primary btn-circle b2sProFeatureModalBtn" data-title="' . esc_html__('Do u want to post multiple images?', 'blog2social') . '" data-type="multi-image">+</a><span class="label label-success">' . esc_html__("PRO", "blog2social") . '</span>';
|
977 |
+
}
|
978 |
+
$edit .= '</div>';
|
979 |
+
$edit .= '</div>';
|
980 |
+
$edit .= '</div>';
|
981 |
+
}
|
982 |
}
|
983 |
|
984 |
if ($networkId == 8 || $networkId == 19) {
|
includes/B2S/Support/community_public_key.pem
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
-----BEGIN PUBLIC KEY-----
|
2 |
+
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmxsiWvwCGAugBRqZ2022
|
3 |
+
Jt92Xsq5quPqfX/ZNacd5zPpH8WYOhXw/79mj9PL5Wuwp4TfXEfM1+hYUzYB9KvL
|
4 |
+
EsxlfDlUP07Ir1UFm+Q1hbU82ADhICHb5JynzxXZ1ezXwSNcLSkuECjGihkaZJud
|
5 |
+
alS9igc1z8MebrCw0k70UuT6e+IWYTQWjv/ACh2H4nTb0AHnd01Omq6aBxcyG6zZ
|
6 |
+
WwRy+fQIPyQvAsFudFcs2+2VF4tyTNWPDD4OI3nHVlSW9gSmG0kZ3LU41IBQhqZt
|
7 |
+
lKwl+eWl/PskxFnR6w/JtHd8MPBrhiiSVa/x2LafjP3AHPbddZSJl/00UaVTvk3B
|
8 |
+
vQIDAQAB
|
9 |
+
-----END PUBLIC KEY-----
|
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' => 0
|
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 |
26 => 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)),
|
78 |
27 => 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))
|
@@ -323,7 +323,7 @@ class B2S_Loader {
|
|
323 |
if (!empty($conData)) {
|
324 |
$options->_setOption('auto_post_import_condition', $conData);
|
325 |
}
|
326 |
-
|
327 |
if ($limit) {
|
328 |
global $wpdb;
|
329 |
$hook_filter = new B2S_Hook_Filter();
|
@@ -354,7 +354,7 @@ class B2S_Loader {
|
|
354 |
'board' => '', 'group' => '', 'url' => $url, 'user_timezone' => $userTimeZoneOffset);
|
355 |
|
356 |
$defaultBlogPostData = array('post_id' => (int) $post->ID, 'blog_user_id' => (int) $post->post_author, 'user_timezone' => $userTimeZoneOffset, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
357 |
-
|
358 |
$autoShare = new B2S_AutoPost((int) $post->ID, $defaultBlogPostData, $current_user_date, false, $title, $content, $excerpt, $url, $image_url, $keywords, trim(strtolower(substr(B2S_LANGUAGE, 0, 2))), $optionPostFormat, true, $userVersion);
|
359 |
|
360 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
@@ -914,7 +914,7 @@ class B2S_Loader {
|
|
914 |
}
|
915 |
|
916 |
public function defineText() {
|
917 |
-
define('B2S_PLUGIN_PAGE_TITLE', serialize(array('blog2social-notice' => esc_html__('Notifications', 'blog2social'), 'blog2social-publish' => esc_html__('Shared Posts', 'blog2social'), 'blog2social-approve' => esc_html__('Instant Sharing', 'blog2social'), 'blog2social-draft-post' => esc_html__('Drafts', 'blog2social'), 'blog2social-sched' => esc_html__('Scheduled Posts', 'blog2social'), 'blog2social-curation-draft' => esc_html__('Social Media Post Drafts', 'blog2social'), 'blog2social-favorites' => esc_html__('Favorites', 'blog2social'), 'blog2social-autopost' => esc_html__('Auto-Post', 'blog2social'), 'blog2social-repost' => esc_html__('Re-Share Posts', 'blog2social') . ' <span class="label label-success label-sm">' . esc_html__("NEW", "blog2social") . '</span>', 'blog2social-metrics' => esc_html__('Social Media Metrics', 'blog2social') . ' <
|
918 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
919 |
define('B2S_PLUGIN_NETWORK_TYPE_INDIVIDUAL', serialize(array(
|
920 |
4 => array(0 => __('Blog', 'blog2social')),
|
@@ -1022,13 +1022,13 @@ class B2S_Loader {
|
|
1022 |
add_menu_page('Blog2Social', 'Blog2Social', 'blog2social_access', 'blog2social', null, plugins_url('/assets/images/b2s_icon.png', B2S_PLUGIN_FILE));
|
1023 |
//$parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function
|
1024 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Dashboard', 'blog2social'), esc_html__('Dashboard', 'blog2social'), 'blog2social_access', 'blog2social', array($this, 'b2sstart'));
|
1025 |
-
$subPages[] = add_submenu_page('blog2social', esc_html__('
|
1026 |
-
$subPages[] = add_submenu_page('blog2social', esc_html__('
|
1027 |
-
$subPages[] = add_submenu_page(
|
1028 |
if((defined("B2S_PLUGIN_USER_VERSION") && B2S_PLUGIN_USER_VERSION >= 3 && (!defined("B2S_PLUGIN_TRAIL_END") || (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()))) || (defined('B2S_PLUGIN_PERMISSION_INSIGHTS') && B2S_PLUGIN_PERMISSION_INSIGHTS == 1)) {
|
1029 |
-
$subPages[] = add_submenu_page('blog2social', '', esc_html__('Social Media Metrics', 'blog2social')
|
1030 |
}
|
1031 |
-
$subPages[] = add_submenu_page('blog2social', esc_html__('
|
1032 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Settings', 'blog2social'), esc_html__('Settings', 'blog2social'), 'blog2social_access', 'blog2social-settings', array($this, 'b2sSettings'));
|
1033 |
if (!B2S_System::isblockedArea('B2S_MENU_ITEM_WP_PR_SERVICE', B2S_PLUGIN_ADMIN)) {
|
1034 |
$subPages[] = add_submenu_page('blog2social', esc_html__('PR-Service', 'blog2social'), esc_html__('PR-Service', 'blog2social'), 'blog2social_access', 'prg-post', array($this, 'prgPost'));
|
@@ -1073,43 +1073,37 @@ class B2S_Loader {
|
|
1073 |
'href' => $seo_url . 'blog2social',
|
1074 |
'parent' => 'blog2social'
|
1075 |
));
|
1076 |
-
|
1077 |
$wp_admin_bar->add_node(array(
|
1078 |
-
'id' => 'blog2social-
|
1079 |
-
'title' => esc_html__('
|
1080 |
-
'href' => $seo_url . 'blog2social-
|
1081 |
'parent' => 'blog2social'
|
1082 |
));
|
1083 |
|
1084 |
$wp_admin_bar->add_node(array(
|
1085 |
-
'id' => 'blog2social-
|
1086 |
'title' => esc_html__('Social Media Posts', 'blog2social'),
|
1087 |
-
'href' => $seo_url . 'blog2social-
|
1088 |
'parent' => 'blog2social'
|
1089 |
));
|
1090 |
|
1091 |
if((defined("B2S_PLUGIN_USER_VERSION") && B2S_PLUGIN_USER_VERSION >= 3 && (!defined("B2S_PLUGIN_TRAIL_END") || (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()))) || (defined('B2S_PLUGIN_PERMISSION_INSIGHTS') && B2S_PLUGIN_PERMISSION_INSIGHTS == 1)) {
|
1092 |
$wp_admin_bar->add_node(array(
|
1093 |
'id' => 'blog2social-metrics',
|
1094 |
-
'title' => esc_html__('Social Media Metrics', 'blog2social')
|
1095 |
'href' => $seo_url . 'blog2social-metrics',
|
1096 |
'parent' => 'blog2social'
|
1097 |
));
|
1098 |
}
|
1099 |
-
|
1100 |
$wp_admin_bar->add_node(array(
|
1101 |
'id' => 'blog2social-calendar',
|
1102 |
'title' => esc_html__('Calendar', 'blog2social'),
|
1103 |
'href' => $seo_url . 'blog2social-calendar',
|
1104 |
'parent' => 'blog2social'
|
1105 |
));
|
1106 |
-
|
1107 |
-
$wp_admin_bar->add_node(array(
|
1108 |
-
'id' => 'blog2social-network',
|
1109 |
-
'title' => esc_html__('Networks', 'blog2social'),
|
1110 |
-
'href' => $seo_url . 'blog2social-network',
|
1111 |
-
'parent' => 'blog2social'
|
1112 |
-
));
|
1113 |
$wp_admin_bar->add_node(array(
|
1114 |
'id' => 'blog2social-settings',
|
1115 |
'title' => esc_html__('Settings', 'blog2social'),
|
@@ -1153,6 +1147,7 @@ class B2S_Loader {
|
|
1153 |
wp_enqueue_style('B2SCALENDARCSS');
|
1154 |
wp_enqueue_style('B2SDATEPICKERCSS');
|
1155 |
wp_enqueue_style('B2STIMEPICKERCSS');
|
|
|
1156 |
wp_enqueue_script('B2SDATEPICKERJS');
|
1157 |
wp_enqueue_script('B2SDATEPICKERDEJS');
|
1158 |
wp_enqueue_script('B2SDATEPICKERENJS');
|
@@ -1164,6 +1159,7 @@ class B2S_Loader {
|
|
1164 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1165 |
wp_enqueue_script('B2SWYSIWYGJS');
|
1166 |
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
|
|
1167 |
wp_enqueue_script('B2SSHIPJS');
|
1168 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1169 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
@@ -1211,6 +1207,9 @@ class B2S_Loader {
|
|
1211 |
wp_enqueue_style('B2SPOSTPUBLISHCSS');
|
1212 |
wp_enqueue_style('B2SCALENDARCSS');
|
1213 |
|
|
|
|
|
|
|
1214 |
wp_enqueue_style('B2SAIRDATEPICKERCSS');
|
1215 |
wp_enqueue_script('B2SAIRDATEPICKERJS');
|
1216 |
wp_enqueue_script('B2SAIRDATEPICKERDEJS');
|
@@ -1636,6 +1635,8 @@ class B2S_Loader {
|
|
1636 |
wp_register_style('B2SREPOSTCSS', plugins_url('assets/css/b2s/repost.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1637 |
wp_register_style('B2SMETRICSCSS', plugins_url('assets/css/b2s/metrics.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1638 |
wp_register_style('B2SCOLORISCSS', plugins_url('assets/lib/coloris/coloris.min.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
|
|
|
|
1639 |
|
1640 |
wp_register_script('B2SNETWORKJS', plugins_url('assets/js/b2s/network.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1641 |
wp_register_script('B2SSETTINGSJS', plugins_url('assets/js/b2s/settings.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
@@ -1681,6 +1682,8 @@ class B2S_Loader {
|
|
1681 |
wp_register_script('B2SEMOJIBUTTONJS', plugins_url('assets/lib/emoji-button/emoji-button.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1682 |
wp_register_script('B2SMETRICSJS', plugins_url('assets/js/b2s/metrics.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1683 |
wp_register_script('B2SCOLORISJS', plugins_url('assets/lib/coloris/coloris.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
|
|
|
|
1684 |
}
|
1685 |
|
1686 |
public function initCaps() {
|
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)),
|
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 |
26 => 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)),
|
78 |
27 => 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))
|
323 |
if (!empty($conData)) {
|
324 |
$options->_setOption('auto_post_import_condition', $conData);
|
325 |
}
|
326 |
+
|
327 |
if ($limit) {
|
328 |
global $wpdb;
|
329 |
$hook_filter = new B2S_Hook_Filter();
|
354 |
'board' => '', 'group' => '', 'url' => $url, 'user_timezone' => $userTimeZoneOffset);
|
355 |
|
356 |
$defaultBlogPostData = array('post_id' => (int) $post->ID, 'blog_user_id' => (int) $post->post_author, 'user_timezone' => $userTimeZoneOffset, 'sched_type' => $sched_type, 'sched_date' => $sched_date, 'sched_date_utc' => $sched_date_utc);
|
357 |
+
|
358 |
$autoShare = new B2S_AutoPost((int) $post->ID, $defaultBlogPostData, $current_user_date, false, $title, $content, $excerpt, $url, $image_url, $keywords, trim(strtolower(substr(B2S_LANGUAGE, 0, 2))), $optionPostFormat, true, $userVersion);
|
359 |
|
360 |
//TOS Twitter 032018 - none multiple Accounts - User select once
|
914 |
}
|
915 |
|
916 |
public function defineText() {
|
917 |
+
define('B2S_PLUGIN_PAGE_TITLE', serialize(array('blog2social-notice' => esc_html__('Notifications', 'blog2social'), 'blog2social-publish' => esc_html__('Shared Posts', 'blog2social'), 'blog2social-approve' => esc_html__('Instant Sharing', 'blog2social'), 'blog2social-draft-post' => esc_html__('Drafts', 'blog2social'), 'blog2social-sched' => esc_html__('Scheduled Posts', 'blog2social'), 'blog2social-curation-draft' => esc_html__('Social Media Post Drafts', 'blog2social'), 'blog2social-favorites' => esc_html__('Favorites', 'blog2social'), 'blog2social-autopost' => esc_html__('Auto-Post', 'blog2social'), 'blog2social-repost' => esc_html__('Re-Share Posts', 'blog2social') . ' <span class="label label-success label-sm">' . esc_html__("NEW", "blog2social") . '</span>', 'blog2social-metrics' => esc_html__('Social Media Metrics', 'blog2social') . ' <button class="btn btn-link b2s-metrics-info-btn">' . esc_html__("Info", "blog2social") . '</button>')));
|
918 |
define('B2S_PLUGIN_NETWORK_TYPE', serialize(array(esc_html__('Profile', 'blog2social'), esc_html__('Page', 'blog2social'), esc_html__('Group', 'blog2social'))));
|
919 |
define('B2S_PLUGIN_NETWORK_TYPE_INDIVIDUAL', serialize(array(
|
920 |
4 => array(0 => __('Blog', 'blog2social')),
|
1022 |
add_menu_page('Blog2Social', 'Blog2Social', 'blog2social_access', 'blog2social', null, plugins_url('/assets/images/b2s_icon.png', B2S_PLUGIN_FILE));
|
1023 |
//$parent_slug, $page_title, $menu_title, $capability, $menu_slug, $function
|
1024 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Dashboard', 'blog2social'), esc_html__('Dashboard', 'blog2social'), 'blog2social_access', 'blog2social', array($this, 'b2sstart'));
|
1025 |
+
$subPages[] = add_submenu_page('blog2social', esc_html__('Networks', 'blog2social'), esc_html__('Networks', 'blog2social'), 'blog2social_access', 'blog2social-network', array($this, 'b2sNetwork'));
|
1026 |
+
$subPages[] = add_submenu_page('blog2social', esc_html__('Social Media Posts', 'blog2social'), esc_html__('Social Media Posts', 'blog2social'), 'blog2social_access', 'blog2social-post', array($this, 'b2sPost'));
|
1027 |
+
$subPages[] = add_submenu_page(null, 'Create Social Media Posts', 'Social Media Posts', 'blog2social_access', 'blog2social-curation', array($this, 'b2sContentCuration'));
|
1028 |
if((defined("B2S_PLUGIN_USER_VERSION") && B2S_PLUGIN_USER_VERSION >= 3 && (!defined("B2S_PLUGIN_TRAIL_END") || (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()))) || (defined('B2S_PLUGIN_PERMISSION_INSIGHTS') && B2S_PLUGIN_PERMISSION_INSIGHTS == 1)) {
|
1029 |
+
$subPages[] = add_submenu_page('blog2social', '', esc_html__('Social Media Metrics', 'blog2social'), 'blog2social_access', 'blog2social-metrics', array($this, 'b2sMetrics'));
|
1030 |
}
|
1031 |
+
$subPages[] = add_submenu_page('blog2social', esc_html__('Calendar', 'blog2social'), esc_html__('Calendar', 'blog2social'), 'blog2social_access', 'blog2social-calendar', array($this, 'b2sPostCalendar'));
|
1032 |
$subPages[] = add_submenu_page('blog2social', esc_html__('Settings', 'blog2social'), esc_html__('Settings', 'blog2social'), 'blog2social_access', 'blog2social-settings', array($this, 'b2sSettings'));
|
1033 |
if (!B2S_System::isblockedArea('B2S_MENU_ITEM_WP_PR_SERVICE', B2S_PLUGIN_ADMIN)) {
|
1034 |
$subPages[] = add_submenu_page('blog2social', esc_html__('PR-Service', 'blog2social'), esc_html__('PR-Service', 'blog2social'), 'blog2social_access', 'prg-post', array($this, 'prgPost'));
|
1073 |
'href' => $seo_url . 'blog2social',
|
1074 |
'parent' => 'blog2social'
|
1075 |
));
|
1076 |
+
|
1077 |
$wp_admin_bar->add_node(array(
|
1078 |
+
'id' => 'blog2social-network',
|
1079 |
+
'title' => esc_html__('Networks', 'blog2social'),
|
1080 |
+
'href' => $seo_url . 'blog2social-network',
|
1081 |
'parent' => 'blog2social'
|
1082 |
));
|
1083 |
|
1084 |
$wp_admin_bar->add_node(array(
|
1085 |
+
'id' => 'blog2social-post',
|
1086 |
'title' => esc_html__('Social Media Posts', 'blog2social'),
|
1087 |
+
'href' => $seo_url . 'blog2social-post',
|
1088 |
'parent' => 'blog2social'
|
1089 |
));
|
1090 |
|
1091 |
if((defined("B2S_PLUGIN_USER_VERSION") && B2S_PLUGIN_USER_VERSION >= 3 && (!defined("B2S_PLUGIN_TRAIL_END") || (defined("B2S_PLUGIN_TRAIL_END") && strtotime(B2S_PLUGIN_TRAIL_END) < time()))) || (defined('B2S_PLUGIN_PERMISSION_INSIGHTS') && B2S_PLUGIN_PERMISSION_INSIGHTS == 1)) {
|
1092 |
$wp_admin_bar->add_node(array(
|
1093 |
'id' => 'blog2social-metrics',
|
1094 |
+
'title' => esc_html__('Social Media Metrics', 'blog2social'),
|
1095 |
'href' => $seo_url . 'blog2social-metrics',
|
1096 |
'parent' => 'blog2social'
|
1097 |
));
|
1098 |
}
|
1099 |
+
|
1100 |
$wp_admin_bar->add_node(array(
|
1101 |
'id' => 'blog2social-calendar',
|
1102 |
'title' => esc_html__('Calendar', 'blog2social'),
|
1103 |
'href' => $seo_url . 'blog2social-calendar',
|
1104 |
'parent' => 'blog2social'
|
1105 |
));
|
1106 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
1107 |
$wp_admin_bar->add_node(array(
|
1108 |
'id' => 'blog2social-settings',
|
1109 |
'title' => esc_html__('Settings', 'blog2social'),
|
1147 |
wp_enqueue_style('B2SCALENDARCSS');
|
1148 |
wp_enqueue_style('B2SDATEPICKERCSS');
|
1149 |
wp_enqueue_style('B2STIMEPICKERCSS');
|
1150 |
+
wp_enqueue_style('B2SAPEXCHARTSCSS');
|
1151 |
wp_enqueue_script('B2SDATEPICKERJS');
|
1152 |
wp_enqueue_script('B2SDATEPICKERDEJS');
|
1153 |
wp_enqueue_script('B2SDATEPICKERENJS');
|
1159 |
wp_enqueue_style('B2SWYSIWYGCSS');
|
1160 |
wp_enqueue_script('B2SWYSIWYGJS');
|
1161 |
wp_enqueue_script('B2SEMOJIBUTTONJS');
|
1162 |
+
wp_enqueue_script('B2SAPEXCHARTSJS');
|
1163 |
wp_enqueue_script('B2SSHIPJS');
|
1164 |
if (substr(B2S_LANGUAGE, 0, 2) == 'de') {
|
1165 |
wp_enqueue_script('B2SWYSIWYGLANGDEJS');
|
1207 |
wp_enqueue_style('B2SPOSTPUBLISHCSS');
|
1208 |
wp_enqueue_style('B2SCALENDARCSS');
|
1209 |
|
1210 |
+
wp_enqueue_script('B2SMOMENT');
|
1211 |
+
wp_enqueue_style('B2SDATERANGEPICKERCSS');
|
1212 |
+
wp_enqueue_script('B2SDATERANGEPICKERJS');
|
1213 |
wp_enqueue_style('B2SAIRDATEPICKERCSS');
|
1214 |
wp_enqueue_script('B2SAIRDATEPICKERJS');
|
1215 |
wp_enqueue_script('B2SAIRDATEPICKERDEJS');
|
1635 |
wp_register_style('B2SREPOSTCSS', plugins_url('assets/css/b2s/repost.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1636 |
wp_register_style('B2SMETRICSCSS', plugins_url('assets/css/b2s/metrics.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1637 |
wp_register_style('B2SCOLORISCSS', plugins_url('assets/lib/coloris/coloris.min.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1638 |
+
wp_register_style('B2SDATERANGEPICKERCSS', plugins_url('assets/lib/daterangepicker/daterangepicker.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1639 |
+
wp_register_style('B2SAPEXCHARTSCSS', plugins_url('assets/lib/apexcharts/apexcharts.css', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1640 |
|
1641 |
wp_register_script('B2SNETWORKJS', plugins_url('assets/js/b2s/network.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1642 |
wp_register_script('B2SSETTINGSJS', plugins_url('assets/js/b2s/settings.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1682 |
wp_register_script('B2SEMOJIBUTTONJS', plugins_url('assets/lib/emoji-button/emoji-button.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1683 |
wp_register_script('B2SMETRICSJS', plugins_url('assets/js/b2s/metrics.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1684 |
wp_register_script('B2SCOLORISJS', plugins_url('assets/lib/coloris/coloris.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1685 |
+
wp_register_script('B2SDATERANGEPICKERJS', plugins_url('assets/lib/daterangepicker/daterangepicker.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1686 |
+
wp_register_script('B2SAPEXCHARTSJS', plugins_url('assets/lib/apexcharts/apexcharts.min.js', B2S_PLUGIN_FILE), array(), B2S_PLUGIN_VERSION);
|
1687 |
}
|
1688 |
|
1689 |
public function initCaps() {
|
includes/Tools.php
CHANGED
@@ -408,7 +408,16 @@ class B2S_Tools {
|
|
408 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?solution_id=1185' : 'https://www.blog2social.com/de/faq/index.php?solution_id=1182';
|
409 |
}
|
410 |
if($type == 'metrics_feedback'){
|
411 |
-
return ($lang == 'de') ? 'https://docs.google.com/forms/d/e/1FAIpQLSeif2AifR7lbSwYchCg08HysfgLuhMCtktf1qrE75UVxJlpUQ/viewform?usp=sf_link' : 'https://docs.google.com/forms/d/e/1FAIpQLSetoOeysUKSKK15ZgbvOVIfTovM67MNzPyncL7n6OvEwlZp0A/viewform?usp=sf_link
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
412 |
}
|
413 |
return false;
|
414 |
}
|
408 |
return ($lang == 'en') ? 'https://www.blog2social.com/en/faq/index.php?solution_id=1185' : 'https://www.blog2social.com/de/faq/index.php?solution_id=1182';
|
409 |
}
|
410 |
if($type == 'metrics_feedback'){
|
411 |
+
return ($lang == 'de') ? 'https://docs.google.com/forms/d/e/1FAIpQLSeif2AifR7lbSwYchCg08HysfgLuhMCtktf1qrE75UVxJlpUQ/viewform?usp=sf_link' : 'https://docs.google.com/forms/d/e/1FAIpQLSetoOeysUKSKK15ZgbvOVIfTovM67MNzPyncL7n6OvEwlZp0A/viewform?usp=sf_link';
|
412 |
+
}
|
413 |
+
if($type == 'b2s_premium_upgrade'){
|
414 |
+
return ($lang == 'de') ? 'https://b2s.li/blog2social-premium-kaufen' : 'https://b2s.li/upgrade-to-blog2social-premium';
|
415 |
+
}
|
416 |
+
if($type == 'b2s_license_advice'){
|
417 |
+
return ($lang == 'de') ? 'https://service.blog2social.com/de/question?o=faq' : 'https://service.blog2social.com/en/question?o=faq';
|
418 |
+
}
|
419 |
+
if($type == 'b2s_reviews'){
|
420 |
+
return ($lang == 'de') ? 'https://www.blog2social.com/de/blog/testberichte/' : 'https://www.blog2social.com/en/blog/reviews/';
|
421 |
}
|
422 |
return false;
|
423 |
}
|
includes/Util.php
CHANGED
@@ -150,7 +150,7 @@ class B2S_Util {
|
|
150 |
$args = array(
|
151 |
'timeout' => '20',
|
152 |
'redirection' => '5',
|
153 |
-
'user-agent' => "Mozilla/5.0 (Windows NT
|
154 |
);
|
155 |
$response = wp_remote_get($url, $args);
|
156 |
if (!is_wp_error($response)) {
|
150 |
$args = array(
|
151 |
'timeout' => '20',
|
152 |
'redirection' => '5',
|
153 |
+
'user-agent' => "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0"
|
154 |
);
|
155 |
$response = wp_remote_get($url, $args);
|
156 |
if (!is_wp_error($response)) {
|
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: 2022-
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -17,20 +17,30 @@ msgstr ""
|
|
17 |
"Language-Team: Deutsch\n"
|
18 |
"X-Loco-Version: 2.5.3; wp-5.9"
|
19 |
|
20 |
-
#: views/b2s/html/header.php:
|
21 |
msgid " Days"
|
22 |
msgstr "Tage"
|
23 |
|
24 |
-
#: views/b2s/html/header.php:
|
25 |
msgid " or upgade your Blog2Social license to extend your quota."
|
26 |
msgstr ""
|
27 |
" oder upgrade Deine Blog2Social Lizenz, um Deine Warteschlange zu erweitern."
|
28 |
|
29 |
-
#: views/b2s/html/header.php:
|
30 |
msgid " today"
|
31 |
msgstr "heute"
|
32 |
|
33 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "\"Social Media Posts\" consisting of a link, video, image or text."
|
35 |
msgstr ""
|
36 |
"\"Social Media Posts\" bestehend aus Link, Video, Bild oder Text teilen."
|
@@ -53,11 +63,11 @@ msgstr ""
|
|
53 |
msgid "(SMART)"
|
54 |
msgstr "(SMART)"
|
55 |
|
56 |
-
#: includes/B2S/Network/Item.php:
|
57 |
msgid "+ add Parameter"
|
58 |
msgstr "+ Parameter hinzufügen"
|
59 |
|
60 |
-
#: includes/B2S/Ship/Save.php:
|
61 |
msgid ""
|
62 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
63 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
@@ -70,7 +80,7 @@ msgstr ""
|
|
70 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
71 |
"Facebook-Profil zu senden!"
|
72 |
|
73 |
-
#: includes/B2S/Ship/Save.php:
|
74 |
msgid ""
|
75 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
76 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
@@ -83,7 +93,7 @@ msgstr ""
|
|
83 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
84 |
"Facebook-Profil zu senden!"
|
85 |
|
86 |
-
#: includes/B2S/Ship/Save.php:
|
87 |
msgid ""
|
88 |
"-To share your post immediately, click the \"Share\" button next to your "
|
89 |
"selected Facebook profile below."
|
@@ -91,7 +101,7 @@ msgstr ""
|
|
91 |
"-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
|
92 |
"neben Deinem unten aufgeführten Profil."
|
93 |
|
94 |
-
#: includes/B2S/Ship/Save.php:
|
95 |
msgid ""
|
96 |
"-To share your post immediately, click the \"Share\" button next to your "
|
97 |
"selected Google+ account below."
|
@@ -99,14 +109,14 @@ msgstr ""
|
|
99 |
"Um den Beitrag sofort zu teilen, klicke einfach auf den Teilen Button neben "
|
100 |
"Deinem unten aufgeführten Konto."
|
101 |
|
102 |
-
#: views/b2s/autopost.php:
|
103 |
msgid ""
|
104 |
"1. for auto-posting your original Wordpress content (posts, pages and media)"
|
105 |
msgstr ""
|
106 |
"1. für das Auto-Posting Deiner eigenen WordPress-Inhalte (Beiträge, Seiten "
|
107 |
"und Medien)."
|
108 |
|
109 |
-
#: views/b2s/autopost.php:
|
110 |
#, php-format
|
111 |
msgid ""
|
112 |
"1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
|
@@ -115,7 +125,7 @@ msgstr ""
|
|
115 |
"1. mit einer gültigen Blog2Social Premium Lizenz aktiviert ist (<a "
|
116 |
"href=\"%s\" target=\"_blank\">Wie aktiviere ich meinen Lizenzschlüssel?</a>) "
|
117 |
|
118 |
-
#: views/b2s/network.php:680 views/b2s/ship.php:
|
119 |
msgid "1. Your Instagram account is set to \"Business\" and not \"Creator\"."
|
120 |
msgstr ""
|
121 |
"1. Dein Instagram-Konto ist auf “Business” und nicht auf “Creator” "
|
@@ -133,7 +143,7 @@ msgstr "1 x Pressemitteilung"
|
|
133 |
msgid "1x publish report"
|
134 |
msgstr "1 x Veröffentlichungsreport"
|
135 |
|
136 |
-
#: views/b2s/autopost.php:
|
137 |
msgid ""
|
138 |
"2. for auto-posting imported posts (imported RSS feeds or posts created / "
|
139 |
"imported with another plugin). "
|
@@ -141,7 +151,7 @@ msgstr ""
|
|
141 |
"2. für das Auto-Posting importierter Beiträge (importierte RSS-Feeds oder "
|
142 |
"Beiträge, die mit einem anderen Plugin erstellt/importiert wurden). "
|
143 |
|
144 |
-
#: views/b2s/autopost.php:
|
145 |
msgid ""
|
146 |
"2. has the selected social media networks connected or assigned (Blog2Social "
|
147 |
"-> Networks)"
|
@@ -149,15 +159,15 @@ msgstr ""
|
|
149 |
"2. die ausgewählten Social-Media-Netzwerke verbunden oder zugewiesen hat "
|
150 |
"(Blog2Social -> Netzwerke)"
|
151 |
|
152 |
-
#: views/b2s/network.php:682 views/b2s/ship.php:
|
153 |
msgid "2. Your Instagram account is linked to a Facebook page."
|
154 |
msgstr "2. Dein Instagram-Konto ist mit einer Facebook-Seite verknüpft."
|
155 |
|
156 |
-
#: views/b2s/network.php:684 views/b2s/ship.php:
|
157 |
msgid "3. Blog2Social has the permission to publish your posts."
|
158 |
msgstr "3. Blog2Social hat die Erlaubnis, Deine Beiträge zu veröffentlichen."
|
159 |
|
160 |
-
#: views/b2s/autopost.php:
|
161 |
msgid "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
|
162 |
msgstr ""
|
163 |
"3. mit den richtigen Auto-Poster-Einstellungen aktiviert ist (Auto-Poster "
|
@@ -172,7 +182,7 @@ msgstr ""
|
|
172 |
"<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
|
173 |
"weitere Seiten und Gruppen dazu buchen kannst.</a>"
|
174 |
|
175 |
-
#: views/b2s/autopost.php:
|
176 |
#, php-format
|
177 |
msgid ""
|
178 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
@@ -182,7 +192,7 @@ msgstr ""
|
|
182 |
"<a href=\"%s\" target=\"_blank\">Importierte Beiträge mit dem Auto-Poster "
|
183 |
"teilen- Checkliste für Problemlösungen</a>"
|
184 |
|
185 |
-
#: views/b2s/autopost.php:
|
186 |
#, php-format
|
187 |
msgid ""
|
188 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
@@ -191,7 +201,7 @@ msgstr ""
|
|
191 |
"<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für "
|
192 |
"importierte Beiträge ein</a>"
|
193 |
|
194 |
-
#: views/b2s/autopost.php:
|
195 |
#, php-format
|
196 |
msgid ""
|
197 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
@@ -201,7 +211,7 @@ msgstr ""
|
|
201 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
202 |
"original WordPress posts</a>"
|
203 |
|
204 |
-
#: views/b2s/autopost.php:
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
@@ -210,7 +220,7 @@ msgstr ""
|
|
210 |
"<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für Deine "
|
211 |
"WordPress-Inhalte ein</a>"
|
212 |
|
213 |
-
#: includes/Loader.php:
|
214 |
#, php-format
|
215 |
msgid ""
|
216 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
@@ -219,7 +229,7 @@ msgstr ""
|
|
219 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
220 |
"in unserem FAQs.</a>"
|
221 |
|
222 |
-
#: views/b2s/autopost.php:
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
"<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-Poster-"
|
@@ -228,7 +238,7 @@ msgstr ""
|
|
228 |
"<a href=\"%s\" target=\"_blank\">Importierte Beiträge mit dem Auto-Poster "
|
229 |
"teilen- Checkliste für Problemlösungen</a>"
|
230 |
|
231 |
-
#: views/b2s/autopost.php:
|
232 |
#, php-format
|
233 |
msgid ""
|
234 |
"<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
|
@@ -266,7 +276,7 @@ msgid ""
|
|
266 |
"Blog2Social to continue to use the latest version of the plugin."
|
267 |
msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
|
268 |
|
269 |
-
#: views/b2s/support.php:
|
270 |
#, php-format
|
271 |
msgid ""
|
272 |
"<b>Already registered?</b> <a href=\"%s\" target=\"_blank\">Login to your "
|
@@ -302,11 +312,11 @@ msgstr ""
|
|
302 |
"definiert. Du kannst diese Einstellungen für Dein Profil jederzeit in den "
|
303 |
"Auto-Poster-Einstellungen deaktivieren."
|
304 |
|
305 |
-
#: views/b2s/ship.php:
|
306 |
msgid "About Xing guidelines for crossposting in groups"
|
307 |
msgstr "Informationen zu Xing-Richtlinien für Crossposting in Gruppen"
|
308 |
|
309 |
-
#: views/b2s/network.php:395 views/b2s/ship.php:
|
310 |
msgid ""
|
311 |
"Access to this resource on your server is denied! Please check your "
|
312 |
"webserver configuration for caching."
|
@@ -315,7 +325,7 @@ msgstr ""
|
|
315 |
"überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
316 |
|
317 |
#: includes/B2S/Settings/Item.php:54 includes/B2S/Settings/Item.php:89
|
318 |
-
#: includes/B2S/Ship/Item.php:
|
319 |
msgid "Account"
|
320 |
msgstr "Konto"
|
321 |
|
@@ -327,7 +337,7 @@ msgstr "Aktiviere Blog2Social PREMIUM BUSINESS."
|
|
327 |
msgid "Activate Blog2Social PREMIUM PRO."
|
328 |
msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
329 |
|
330 |
-
#: includes/B2S/Network/Item.php:
|
331 |
msgid "Activate Instant Caching"
|
332 |
msgstr "Instant Caching aktivieren"
|
333 |
|
@@ -339,7 +349,7 @@ msgstr "Kompatibilitätsmodus aktivieren"
|
|
339 |
msgid "Activate Legacy mode "
|
340 |
msgstr "Kompatibilitätsmodus aktivieren"
|
341 |
|
342 |
-
#: views/b2s/premium.php:
|
343 |
msgid "Activate License"
|
344 |
msgstr "Lizenz aktivieren"
|
345 |
|
@@ -347,15 +357,30 @@ msgstr "Lizenz aktivieren"
|
|
347 |
msgid "activated"
|
348 |
msgstr "aktiviert"
|
349 |
|
350 |
-
#: includes/Tools.php:
|
351 |
msgid "Activities"
|
352 |
msgstr "Aktivitäten"
|
353 |
|
354 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
355 |
msgid "Add a link-URL to the end of my image post."
|
356 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
357 |
|
358 |
-
#: includes/B2S/Network/Item.php:
|
359 |
msgid ""
|
360 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
361 |
"Instagram does not turn link-URLs into clickable links)"
|
@@ -363,11 +388,15 @@ msgstr ""
|
|
363 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
364 |
"Instagram Links nicht als klickbare Links darstellt)"
|
365 |
|
366 |
-
#:
|
367 |
-
msgid "
|
368 |
-
|
|
|
|
|
|
|
|
|
369 |
|
370 |
-
#: views/b2s/premium.php:
|
371 |
msgid ""
|
372 |
"Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and "
|
373 |
"Twitter Cards to define the look of your link posts."
|
@@ -375,19 +404,19 @@ msgstr ""
|
|
375 |
"Setze und bearbeite Social-Media-Tags für Open Graph (z.B. Facebook und "
|
376 |
"LinkedIn) und Twitter Cards, um das Aussehen Deiner Link-Posts festzulegen."
|
377 |
|
378 |
-
#: includes/B2S/Ship/Item.php:
|
379 |
msgid "add another post"
|
380 |
msgstr "einen weiteren Post anlegen"
|
381 |
|
382 |
-
#: views/b2s/network.php:635 views/b2s/ship.php:
|
383 |
msgid "Add Group"
|
384 |
msgstr "Gruppe hinzufügen"
|
385 |
|
386 |
-
#: views/b2s/ship.php:
|
387 |
msgid "Add more..."
|
388 |
msgstr "mehr hinzufügen"
|
389 |
|
390 |
-
#: views/b2s/premium.php:
|
391 |
msgid ""
|
392 |
"Add multiple users and accounts per network. Define sharing-profiles for "
|
393 |
"selected network bundles."
|
@@ -421,24 +450,24 @@ msgstr ""
|
|
421 |
msgid "Add Open Graph Object Type."
|
422 |
msgstr "Open Graph Objekttyp hinzufügen."
|
423 |
|
424 |
-
#: views/b2s/network.php:616 views/b2s/ship.php:
|
425 |
msgid "Add Page"
|
426 |
msgstr "Seite hinzufügen"
|
427 |
|
428 |
-
#: views/b2s/post.calendar.php:
|
429 |
-
#: views/b2s/repost.php:
|
430 |
msgid "add post"
|
431 |
msgstr "Beitrag hinzufügen"
|
432 |
|
433 |
-
#: views/b2s/network.php:654 views/b2s/ship.php:
|
434 |
msgid "Add Profile"
|
435 |
msgstr "Profil hinzufügen"
|
436 |
|
437 |
-
#: includes/B2S/Ship/Item.php:
|
438 |
msgid "Add Retweet"
|
439 |
msgstr "Retweet hinzufügen"
|
440 |
|
441 |
-
#: views/b2s/ship.php:
|
442 |
msgid "add Schedule"
|
443 |
msgstr "Zeitplan hinzufügen"
|
444 |
|
@@ -479,15 +508,15 @@ msgstr ""
|
|
479 |
msgid "add/change connection"
|
480 |
msgstr "Verbindung hinzufügen/ändern"
|
481 |
|
482 |
-
#: includes/B2S/Network/Item.php:
|
483 |
msgid "additional groups"
|
484 |
msgstr "gebuchte Gruppen"
|
485 |
|
486 |
-
#: includes/B2S/Network/Item.php:
|
487 |
msgid "additional pages"
|
488 |
msgstr "gebuchte Seiten"
|
489 |
|
490 |
-
#: includes/B2S/Network/Item.php:
|
491 |
msgid "additional profiles"
|
492 |
msgstr "gebuchte Profile"
|
493 |
|
@@ -499,11 +528,11 @@ msgstr "Erweiterte Netzwerkeinstellungen"
|
|
499 |
msgid "Advanced settings"
|
500 |
msgstr "Erweiterte Einstellungen"
|
501 |
|
502 |
-
#: views/b2s/support.php:
|
503 |
msgid "Affiliate Program"
|
504 |
msgstr "Affiliate-Programm"
|
505 |
|
506 |
-
#: views/b2s/metrics.php:
|
507 |
msgid ""
|
508 |
"After 24 hours, your post will be updated for the first time and you can see "
|
509 |
"the metrics under the menu item \"Social Media Metrics\". The social media "
|
@@ -515,7 +544,7 @@ msgstr ""
|
|
515 |
"Posts werden 30 Tage lang beobachtet. Nach 30 Tagen wird der letzte Stand "
|
516 |
"dauerhaft festgehalten und ist jederzeit im Archiv abrufbar. "
|
517 |
|
518 |
-
#: views/b2s/metrics.php:
|
519 |
msgid "all"
|
520 |
msgstr "alle"
|
521 |
|
@@ -535,23 +564,15 @@ msgstr "alle Kategorien & Schlagwörter"
|
|
535 |
msgid "all post types"
|
536 |
msgstr "alle Typen"
|
537 |
|
538 |
-
#: views/b2s/
|
539 |
-
msgid "All Posts"
|
540 |
-
msgstr "Alle Beiträge"
|
541 |
-
|
542 |
-
#: views/b2s/metrics.php:127
|
543 |
msgid "All posts"
|
544 |
msgstr "Alle Beiträge"
|
545 |
|
546 |
-
#: views/b2s/html/sidebar.php:110
|
547 |
-
msgid "all Posts"
|
548 |
-
msgstr "Alle Beiträge"
|
549 |
-
|
550 |
#: includes/B2S/Post/Filter.php:60
|
551 |
msgid "all posts"
|
552 |
msgstr "alle Beiträge"
|
553 |
|
554 |
-
#: views/b2s/autopost.php:
|
555 |
msgid ""
|
556 |
"All settings and social networks for the auto-poster can be defined for each "
|
557 |
"WordPress user individually."
|
@@ -602,8 +623,8 @@ msgstr ""
|
|
602 |
msgid "An error occured. Please contact our support."
|
603 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
604 |
|
605 |
-
#: views/b2s/network.php:369 views/b2s/network.php:387 views/b2s/ship.php:
|
606 |
-
#: views/b2s/ship.php:
|
607 |
msgid "An error occurred! Please try again."
|
608 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
609 |
|
@@ -613,7 +634,7 @@ msgstr ""
|
|
613 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
614 |
"erforderlich."
|
615 |
|
616 |
-
#: views/b2s/settings.php:
|
617 |
#, php-format
|
618 |
msgid ""
|
619 |
"An instruction on how to define your own best times is explained in the "
|
@@ -628,12 +649,12 @@ msgstr ""
|
|
628 |
msgid "An unknown error occurred!"
|
629 |
msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
630 |
|
631 |
-
#: views/b2s/html/header.php:
|
632 |
#, php-format
|
633 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
634 |
msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
|
635 |
|
636 |
-
#: includes/Tools.php:
|
637 |
msgid "Animals & Nature"
|
638 |
msgstr "Tiere & Natur"
|
639 |
|
@@ -641,16 +662,16 @@ msgstr "Tiere & Natur"
|
|
641 |
msgid "Apply best time settings"
|
642 |
msgstr "Beste Zeiten verwenden"
|
643 |
|
644 |
-
#: views/b2s/autopost.php:
|
645 |
msgid "Apply best times"
|
646 |
msgstr "Beste Zeiten berücksichtigen"
|
647 |
|
648 |
-
#: includes/B2S/Network/Item.php:
|
649 |
#, php-format
|
650 |
msgid "Apply for all %s connections"
|
651 |
msgstr "Für alle %s Verbindungen übernehmen"
|
652 |
|
653 |
-
#: includes/B2S/Network/Item.php:
|
654 |
msgid "Apply for all connections"
|
655 |
msgstr "Für alle Verbindungen übernehmen"
|
656 |
|
@@ -675,7 +696,7 @@ msgstr "Bild für diesen Post übernehmen"
|
|
675 |
msgid "Apply post template settings"
|
676 |
msgstr "Beitragsvorlagen verwenden"
|
677 |
|
678 |
-
#: includes/B2S/Ship/Item.php:
|
679 |
msgid "Apply Settings To All Networks"
|
680 |
msgstr "Planung für alle Netzwerke übernehmen"
|
681 |
|
@@ -683,11 +704,11 @@ msgstr "Planung für alle Netzwerke übernehmen"
|
|
683 |
msgid "Apply URL Parameters"
|
684 |
msgstr "URL-Parameter verwenden"
|
685 |
|
686 |
-
#: views/b2s/metrics.php:
|
687 |
msgid "Archive"
|
688 |
msgstr "Archiv"
|
689 |
|
690 |
-
#: views/b2s/support.php:
|
691 |
msgid ""
|
692 |
"Are you are experiencing incorrect images and/or titles being pulled by "
|
693 |
"Facebook or other social media platforms? Social Debugger or code validator "
|
@@ -699,7 +720,7 @@ msgstr ""
|
|
699 |
"Vorschau, wie der Social Media-Post bei der Veröffentlichung aussehen wird, "
|
700 |
"und helfen dabei, Inkonsistenzen und Fehler zu beheben."
|
701 |
|
702 |
-
#: views/b2s/post.approve.php:
|
703 |
msgid "Are you sure you want to delete these Social Media posts?"
|
704 |
msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
705 |
|
@@ -707,11 +728,11 @@ msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
|
707 |
msgid "Are you sure you want to delete this draft?"
|
708 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
709 |
|
710 |
-
#: views/b2s/post.draft.php:
|
711 |
msgid "Are you sure you want to delete this Social Media draft?"
|
712 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
713 |
|
714 |
-
#: includes/Tools.php:
|
715 |
msgid "Argentina"
|
716 |
msgstr "Argentinien"
|
717 |
|
@@ -723,8 +744,8 @@ msgstr "zuweisen"
|
|
723 |
msgid "Assign the connection to other blog users"
|
724 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
725 |
|
726 |
-
#: includes/B2S/Network/Item.php:
|
727 |
-
#: includes/B2S/Network/Item.php:
|
728 |
msgid "Assigned by"
|
729 |
msgstr "Zugewiesen von"
|
730 |
|
@@ -736,7 +757,7 @@ msgstr "um"
|
|
736 |
msgid "at best times"
|
737 |
msgstr "zu den besten Zeiten"
|
738 |
|
739 |
-
#: views/b2s/ship.php:
|
740 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
741 |
msgstr ""
|
742 |
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
@@ -749,25 +770,25 @@ msgstr "zu meinen besten Zeiten"
|
|
749 |
msgid "at scheduled times"
|
750 |
msgstr "zu geplanten Zeiten"
|
751 |
|
752 |
-
#: includes/Tools.php:
|
753 |
msgid "Australia"
|
754 |
msgstr "Australien"
|
755 |
|
756 |
-
#: includes/Tools.php:
|
757 |
msgid "Austria"
|
758 |
msgstr "Österreich"
|
759 |
|
760 |
-
#: includes/B2S/Post/Item.php:
|
761 |
-
#: includes/B2S/Post/Item.php:
|
762 |
#: includes/PRG/Post/Item.php:121
|
763 |
msgid "Author"
|
764 |
msgstr "Autor"
|
765 |
|
766 |
-
#: views/b2s/settings.php:
|
767 |
msgid "Author: The author of the post."
|
768 |
msgstr "Author: Der Autor des Beitrags."
|
769 |
|
770 |
-
#: views/b2s/network.php:437 views/b2s/ship.php:
|
771 |
#: includes/B2S/Settings/Item.php:102
|
772 |
msgid "authorize"
|
773 |
msgstr "autorisieren"
|
@@ -784,14 +805,14 @@ msgstr ""
|
|
784 |
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
785 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
786 |
|
787 |
-
#: includes/Loader.php:917 views/b2s/settings.php:
|
788 |
-
#: views/b2s/html/sidebar.php:
|
789 |
msgid "Auto-Post"
|
790 |
msgstr "Beiträge automatisch teilen"
|
791 |
|
792 |
-
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:
|
793 |
-
#: views/b2s/dashboard.php:
|
794 |
-
#: views/b2s/ship.php:
|
795 |
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:67
|
796 |
#: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
|
797 |
#: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
|
@@ -802,8 +823,8 @@ msgstr ""
|
|
802 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
803 |
"Aktualisierung posten und zeitversetzt planen"
|
804 |
|
805 |
-
#: views/b2s/premium.php:
|
806 |
-
#: includes/B2S/Post/Item.php:
|
807 |
msgid "Auto-Posting"
|
808 |
msgstr "Auto-Posting"
|
809 |
|
@@ -819,19 +840,19 @@ msgstr "Auto-Poster"
|
|
819 |
msgid "Autoposter for Imported Posts"
|
820 |
msgstr "Auto-Poster für importierte Beiträge"
|
821 |
|
822 |
-
#: views/b2s/html/header.php:
|
823 |
msgid "Autoposter limit has been reached"
|
824 |
msgstr "Das Autoposter-Limit wurde erreicht."
|
825 |
|
826 |
-
#: views/b2s/support.php:
|
827 |
msgid "Autoposting, Sharing und Re-Sharing"
|
828 |
msgstr "Automatisieren, Planen und Teilen"
|
829 |
|
830 |
-
#: includes/B2S/Network/Item.php:
|
831 |
msgid "Available accounts"
|
832 |
msgstr "Verfügbare Accounts"
|
833 |
|
834 |
-
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:
|
835 |
msgid "Available networks"
|
836 |
msgstr "Verfügbare Netzwerke"
|
837 |
|
@@ -843,11 +864,11 @@ msgstr "Verfügbare Netzwerke im Autoposter"
|
|
843 |
msgid "Available networks to select your auto-post connecitons:"
|
844 |
msgstr "Verfügbare Netwerkverbindungen:"
|
845 |
|
846 |
-
#: includes/Loader.php:
|
847 |
msgid "back to install plugins"
|
848 |
msgstr "zurück zur Pluginübersicht"
|
849 |
|
850 |
-
#: views/b2s/html/header.php:
|
851 |
msgid ""
|
852 |
"Benefit from the new Social Media Metrics and use the analysis of your "
|
853 |
"social media posts for your further social media strategy."
|
@@ -855,13 +876,13 @@ msgstr ""
|
|
855 |
"Profitiere von den neuen Social-Media-Kennzahlen und nutze die Analyse "
|
856 |
"Deiner Social-Media-Beiträge für Deine weitere Social-Media-Strategie."
|
857 |
|
858 |
-
#: includes/B2S/Network/Item.php:
|
859 |
msgid "Best Time Manager"
|
860 |
msgstr "Best Time Manager"
|
861 |
|
862 |
-
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:
|
863 |
-
#: views/b2s/dashboard.php:
|
864 |
-
#: views/b2s/ship.php:
|
865 |
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
|
866 |
#: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
|
867 |
#: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
|
@@ -871,8 +892,8 @@ msgid ""
|
|
871 |
"social media posts"
|
872 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
873 |
|
874 |
-
#: views/b2s/curation.php:
|
875 |
-
#: views/b2s/post.calendar.php:
|
876 |
msgid "Best Time Scheduler"
|
877 |
msgstr "Beste Zeiten Manager"
|
878 |
|
@@ -883,21 +904,20 @@ msgstr ""
|
|
883 |
"Beste Zeiten Manager: Plane Deine Veröffentlichungen mehrmals oder "
|
884 |
"regelmäßig."
|
885 |
|
886 |
-
#: views/b2s/html/header.php:
|
887 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
888 |
msgstr "Beste Zeitenplaner: Plane einmal, mehrmals oder wiederkehrend."
|
889 |
|
890 |
-
#: includes/B2S/Network/Item.php:
|
891 |
msgid "Best times"
|
892 |
msgstr "Beste Zeiten"
|
893 |
|
894 |
-
#: views/b2s/premium.php:
|
895 |
msgid "Best Times Manager"
|
896 |
msgstr "Beste Zeiten Manager"
|
897 |
|
898 |
-
#:
|
899 |
-
#: views/b2s/
|
900 |
-
#: views/b2s/html/sidebar.php:135
|
901 |
msgid "BETA"
|
902 |
msgstr "BETA"
|
903 |
|
@@ -906,11 +926,11 @@ msgid "Bitly"
|
|
906 |
msgstr "Bitly"
|
907 |
|
908 |
#: includes/Loader.php:920 includes/Loader.php:929
|
909 |
-
#: includes/B2S/Ship/Item.php:
|
910 |
msgid "Blog"
|
911 |
msgstr "Blog"
|
912 |
|
913 |
-
#: includes/Loader.php:1063 views/b2s/html/sidebar.php:
|
914 |
#: views/b2s/html/sidebar.ship.php:24
|
915 |
msgid "Blog2Social"
|
916 |
msgstr "Blog2Social"
|
@@ -936,7 +956,7 @@ msgstr ""
|
|
936 |
"gewünschte Zeitzone 24h oder 12h (am/pm) aus, indem Du einfach auf den "
|
937 |
"Button klickst."
|
938 |
|
939 |
-
#: views/b2s/autopost.php:
|
940 |
msgid ""
|
941 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
942 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -950,7 +970,7 @@ msgstr ""
|
|
950 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
951 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
952 |
|
953 |
-
#: views/b2s/html/sidebar.php:
|
954 |
msgid "Blog2Social Blog News"
|
955 |
msgstr "Blog2Social Blog News"
|
956 |
|
@@ -978,7 +998,7 @@ msgstr ""
|
|
978 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
979 |
"zu tun."
|
980 |
|
981 |
-
#: views/b2s/html/header.php:
|
982 |
msgid ""
|
983 |
"Blog2Social has detected another plugin that is setting Social Meta tags for "
|
984 |
"your blog posts. To ensure that your Social Meta tags are set correctly for "
|
@@ -991,15 +1011,15 @@ msgstr ""
|
|
991 |
"eingestellt sind, deaktiviere bitte die Einstellungen für Facebook Open "
|
992 |
"Graph und Twitter Card Tags in Deinen anderen Plugins."
|
993 |
|
994 |
-
#: views/b2s/html/header.php:
|
995 |
msgid "Blog2Social is a service of Adenion GmbH"
|
996 |
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
997 |
|
998 |
-
#: includes/Loader.php:
|
999 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
1000 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
1001 |
|
1002 |
-
#: views/b2s/html/header.php:
|
1003 |
msgid ""
|
1004 |
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
1005 |
"autopilot, automatically schedule your social media posts with the Best Time "
|
@@ -1016,8 +1036,8 @@ msgstr ""
|
|
1016 |
"Zwecke. Schon ab 6,58 € pro Monat kannst du mit den PREMIUM-Funktionen "
|
1017 |
"durchstarten."
|
1018 |
|
1019 |
-
#: views/b2s/curation.php:
|
1020 |
-
#: views/b2s/post.calendar.php:
|
1021 |
msgid "Blog2Social Premium covers everything you need."
|
1022 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1023 |
|
@@ -1059,7 +1079,7 @@ msgstr ""
|
|
1059 |
"Vorschau-Editor auf „Lade beste Zeiten“, um Deine Beiträge automatisch für "
|
1060 |
"die besten Zeiten in jedem sozialen Netzwerk zu planen."
|
1061 |
|
1062 |
-
#: views/b2s/html/header.php:
|
1063 |
msgid "Blog2Social Troubleshooting-Tool"
|
1064 |
msgstr "Blog2Social Problemanalyse-Tool"
|
1065 |
|
@@ -1136,17 +1156,17 @@ msgstr "Pinnwand"
|
|
1136 |
msgid "Brand"
|
1137 |
msgstr "Brand"
|
1138 |
|
1139 |
-
#: views/b2s/support.php:
|
1140 |
msgid "Browse the Blog2Social support community"
|
1141 |
msgstr "Durchstöbere die Blog2Social Support Community"
|
1142 |
|
1143 |
-
#: includes/B2S/Network/Item.php:
|
1144 |
msgid "BUSINESS"
|
1145 |
msgstr "BUSINESS"
|
1146 |
|
1147 |
#: includes/Loader.php:923 includes/Loader.php:931
|
1148 |
-
#: includes/B2S/Network/Item.php:
|
1149 |
-
#: includes/B2S/Ship/Item.php:
|
1150 |
msgid "Business"
|
1151 |
msgstr "Business"
|
1152 |
|
@@ -1164,7 +1184,7 @@ msgstr ""
|
|
1164 |
"aufgeführten Netzwerke geändert. Dies gilt auch für deine vorgeplanten Posts "
|
1165 |
"in diesem Format."
|
1166 |
|
1167 |
-
#: views/b2s/html/header.php:
|
1168 |
#, php-format
|
1169 |
msgid ""
|
1170 |
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
@@ -1183,9 +1203,8 @@ msgstr ""
|
|
1183 |
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
1184 |
"Beitrag aktualisiert wird."
|
1185 |
|
1186 |
-
#: includes/Loader.php:
|
1187 |
-
#: includes/B2S/RePost/Item.php:141 views/b2s/html/
|
1188 |
-
#: views/b2s/html/sidebar.php:128
|
1189 |
msgid "Calendar"
|
1190 |
msgstr "Kalender"
|
1191 |
|
@@ -1193,15 +1212,15 @@ msgstr "Kalender"
|
|
1193 |
msgid "Call-to-Action"
|
1194 |
msgstr "Call-to-Action"
|
1195 |
|
1196 |
-
#: includes/Tools.php:
|
1197 |
msgid "Canada"
|
1198 |
msgstr "Kanada"
|
1199 |
|
1200 |
-
#: includes/B2S/Ship/Item.php:
|
1201 |
msgid "Card Meta description"
|
1202 |
msgstr "Card Beschreibung"
|
1203 |
|
1204 |
-
#: includes/B2S/Ship/Item.php:
|
1205 |
msgid "Card Meta title"
|
1206 |
msgstr "Card Titel"
|
1207 |
|
@@ -1221,21 +1240,24 @@ msgstr "ändern"
|
|
1221 |
msgid "Change details"
|
1222 |
msgstr "Änderungen übernehmen"
|
1223 |
|
1224 |
-
#: views/b2s/curation.php:
|
1225 |
-
#: includes/B2S/Ship/Item.php:
|
1226 |
-
#: includes/B2S/Ship/Item.php:
|
1227 |
-
#: includes/B2S/Ship/Item.php:
|
1228 |
-
#: includes/B2S/Ship/Item.php:
|
1229 |
-
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:
|
1230 |
-
#: includes/B2S/Ship/Item.php:
|
1231 |
-
#: includes/B2S/Ship/Item.php:
|
1232 |
-
#: includes/B2S/Ship/Item.php:
|
1233 |
-
#: includes/B2S/Ship/Item.php:
|
1234 |
-
#: includes/B2S/Ship/Item.php:
|
1235 |
-
#: includes/B2S/Ship/Item.php:
|
1236 |
-
#: includes/B2S/Ship/Item.php:
|
1237 |
-
#: includes/B2S/Ship/Item.php:
|
1238 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
|
|
|
|
1239 |
msgid "Change image"
|
1240 |
msgstr "Bild ändern"
|
1241 |
|
@@ -1249,7 +1271,7 @@ msgstr ""
|
|
1249 |
msgid "Change successful"
|
1250 |
msgstr "Change successful"
|
1251 |
|
1252 |
-
#: views/b2s/ship.php:
|
1253 |
msgid "change website address"
|
1254 |
msgstr "Webseiten-Adresse ändern"
|
1255 |
|
@@ -1265,25 +1287,25 @@ msgstr ""
|
|
1265 |
msgid "Channel"
|
1266 |
msgstr "Kanal"
|
1267 |
|
1268 |
-
#: views/b2s/network.php:328 includes/B2S/Network/Item.php:
|
1269 |
msgid "Character limit"
|
1270 |
msgstr "Zeichenbegrenzung"
|
1271 |
|
1272 |
-
#: includes/B2S/Network/Item.php:
|
1273 |
-
#: includes/B2S/Network/Item.php:
|
1274 |
-
#: includes/B2S/Network/Item.php:
|
1275 |
-
#: includes/B2S/Ship/Item.php:
|
1276 |
-
#: includes/B2S/Ship/Item.php:
|
1277 |
-
#: includes/B2S/Ship/Item.php:
|
1278 |
-
#: includes/B2S/Ship/Item.php:
|
1279 |
msgid "characters"
|
1280 |
msgstr "Zeichen"
|
1281 |
|
1282 |
-
#: views/b2s/dashboard.php:
|
1283 |
msgid "Chart"
|
1284 |
msgstr "Diagramm"
|
1285 |
|
1286 |
-
#: views/b2s/html/header.php:
|
1287 |
msgid ""
|
1288 |
"Check out Blog2Social Premium with more awesome features for scheduling and "
|
1289 |
"sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
|
@@ -1299,24 +1321,24 @@ msgstr ""
|
|
1299 |
msgid "Check Settings with Sharing-Debugger"
|
1300 |
msgstr "Einstellungen mit Sharing-Debugger überprüfen"
|
1301 |
|
1302 |
-
#: views/b2s/metrics.php:
|
1303 |
#, fuzzy
|
1304 |
#| msgid "Check social media metrics"
|
1305 |
msgid "Check Social Media Metrics"
|
1306 |
msgstr "Social-Media-Kennzahlen einsehen"
|
1307 |
|
1308 |
-
#: views/b2s/settings.php:
|
1309 |
msgid "Check, edit or define your social media time settings"
|
1310 |
msgstr ""
|
1311 |
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
1312 |
"Netzwerke"
|
1313 |
|
1314 |
-
#: includes/Tools.php:
|
1315 |
msgid "Chile"
|
1316 |
msgstr "Chile"
|
1317 |
|
1318 |
-
#: views/b2s/dashboard.php:
|
1319 |
-
#: views/b2s/post.sched.php:
|
1320 |
msgid "Choose your"
|
1321 |
msgstr "Wähle Deinen"
|
1322 |
|
@@ -1329,15 +1351,15 @@ msgstr "Wähle Dein Postformat "
|
|
1329 |
msgid "City"
|
1330 |
msgstr "Stadt"
|
1331 |
|
1332 |
-
#: includes/B2S/Ship/Item.php:
|
1333 |
msgid "Classified Ads"
|
1334 |
msgstr "Kleinanzeigen"
|
1335 |
|
1336 |
-
#: includes/B2S/Network/Item.php:
|
1337 |
msgid "clear"
|
1338 |
msgstr "löschen"
|
1339 |
|
1340 |
-
#: views/b2s/support.php:
|
1341 |
msgid ""
|
1342 |
"Click here to find the right license for your needs or to contact the sales "
|
1343 |
"team for any payment issues."
|
@@ -1357,7 +1379,7 @@ msgstr ""
|
|
1357 |
msgid "Click on \"continue\""
|
1358 |
msgstr "Klicke auf “weiter”"
|
1359 |
|
1360 |
-
#: views/b2s/post.sched.php:
|
1361 |
msgid "Clock"
|
1362 |
msgstr "Uhr"
|
1363 |
|
@@ -1365,15 +1387,15 @@ msgstr "Uhr"
|
|
1365 |
msgid "clock"
|
1366 |
msgstr "Uhr"
|
1367 |
|
1368 |
-
#: includes/Tools.php:
|
1369 |
msgid "Colombia"
|
1370 |
msgstr "Kolumbien"
|
1371 |
|
1372 |
-
#: views/b2s/metrics.php:
|
1373 |
msgid "Comments"
|
1374 |
msgstr "Kommentare"
|
1375 |
|
1376 |
-
#: views/b2s/metrics.php:
|
1377 |
msgid "Comments: A count of how many times the post has been replied to."
|
1378 |
msgstr ""
|
1379 |
"Kommentare: Eine Aufzählung, wie oft auf den Beitrag mit einem Kommentar "
|
@@ -1395,25 +1417,25 @@ msgstr "Firmenbeschreibung"
|
|
1395 |
msgid "Company-Page (Employer Branding Profile)"
|
1396 |
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
1397 |
|
1398 |
-
#: views/b2s/metrics.php:
|
1399 |
msgid "Comparison of Social Media Metrics"
|
1400 |
msgstr "Vergleich der Social-Media-Kennzahlen"
|
1401 |
|
1402 |
-
#: views/b2s/network.php:438 views/b2s/network.php:440 views/b2s/ship.php:
|
1403 |
-
#: views/b2s/ship.php:
|
1404 |
msgid "confirm"
|
1405 |
msgstr "bestätigen"
|
1406 |
|
1407 |
-
#: views/b2s/ship.php:
|
1408 |
msgid "connect"
|
1409 |
msgstr "Jetzt mit Netzwerken verbinden"
|
1410 |
|
1411 |
-
#: includes/B2S/Network/Item.php:
|
1412 |
-
#: includes/B2S/Network/Item.php:
|
1413 |
-
#: includes/B2S/Network/Item.php:
|
1414 |
-
#: includes/B2S/Network/Item.php:
|
1415 |
-
#: includes/B2S/Network/Item.php:
|
1416 |
-
#: includes/B2S/Network/Item.php:
|
1417 |
#: includes/B2S/Ship/Portale.php:37 includes/B2S/Ship/Portale.php:37
|
1418 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:46
|
1419 |
#: includes/B2S/Ship/Portale.php:48 includes/B2S/Ship/Portale.php:48
|
@@ -1424,7 +1446,7 @@ msgstr "Jetzt mit Netzwerken verbinden"
|
|
1424 |
msgid "Connect %s"
|
1425 |
msgstr "%s verbinden"
|
1426 |
|
1427 |
-
#: views/b2s/settings.php:
|
1428 |
msgid ""
|
1429 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1430 |
"share your WordPress blog posts and pages as well as imported posts and "
|
@@ -1434,35 +1456,35 @@ msgstr ""
|
|
1434 |
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
1435 |
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
1436 |
|
1437 |
-
#: views/b2s/ship.php:
|
1438 |
msgid "Connect for"
|
1439 |
msgstr "Netzwerke verbinden für"
|
1440 |
|
1441 |
-
#: views/b2s/network.php:673 views/b2s/ship.php:
|
1442 |
msgid "Connect Instagram Business Account"
|
1443 |
msgstr "Instagram Business-Konto verbinden"
|
1444 |
|
1445 |
-
#: views/b2s/network.php:344 views/b2s/ship.php:
|
1446 |
msgid "Connect with Pinterest"
|
1447 |
msgstr "Mit Pinterest verbinden"
|
1448 |
|
1449 |
-
#: views/b2s/settings.php:
|
1450 |
msgid "Connect your social media networks"
|
1451 |
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
1452 |
|
1453 |
-
#: views/b2s/support.php:
|
1454 |
msgid "Connecting Social Networks"
|
1455 |
msgstr "Autorisierung mit sozialen Netzwerken"
|
1456 |
|
1457 |
-
#: includes/B2S/Network/Item.php:
|
1458 |
msgid "Connection currently assigned to"
|
1459 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
1460 |
|
1461 |
-
#: includes/B2S/Ship/Item.php:
|
1462 |
msgid "Connection expires on 2 April 2019"
|
1463 |
msgstr "Die Verbindung endet am 2. April 2019."
|
1464 |
|
1465 |
-
#: includes/B2S/Ship/Item.php:
|
1466 |
msgid "Connection expires on 31 March 2019"
|
1467 |
msgstr "Die Verbindung endet am 31. März 2019."
|
1468 |
|
@@ -1470,12 +1492,12 @@ msgstr "Die Verbindung endet am 31. März 2019."
|
|
1470 |
msgid "Connection is broken..."
|
1471 |
msgstr "Vebindung ist unterbrochen..."
|
1472 |
|
1473 |
-
#: includes/B2S/Network/Item.php:
|
1474 |
-
#: includes/B2S/Network/Item.php:
|
1475 |
msgid "Connection is interrupted since"
|
1476 |
msgstr "Verbindung ist unterbrochen seit"
|
1477 |
|
1478 |
-
#: includes/B2S/AutoPost/Item.php:246 includes/B2S/Network/Item.php:
|
1479 |
msgid "Connections"
|
1480 |
msgstr "Verbindungen"
|
1481 |
|
@@ -1483,25 +1505,21 @@ msgstr "Verbindungen"
|
|
1483 |
msgid "Contact Details"
|
1484 |
msgstr "Kontaktdaten"
|
1485 |
|
1486 |
-
#: includes/B2S/Network/Item.php:
|
1487 |
msgid "Content"
|
1488 |
msgstr "Inhalt"
|
1489 |
|
1490 |
-
#: views/b2s/
|
1491 |
-
msgid "Content Library"
|
1492 |
-
msgstr "Content-Bibliothek"
|
1493 |
-
|
1494 |
-
#: views/b2s/settings.php:118
|
1495 |
msgid "Content: The content of your post."
|
1496 |
msgstr "Content: Der Inhalt Deines Beitrags."
|
1497 |
|
1498 |
#: views/b2s/network.php:622 views/b2s/network.php:641
|
1499 |
-
#: views/b2s/network.php:660 views/b2s/network.php:688 views/b2s/ship.php:
|
1500 |
-
#: views/b2s/ship.php:
|
1501 |
msgid "Continue"
|
1502 |
msgstr "Fortsetzen"
|
1503 |
|
1504 |
-
#: views/b2s/curation.php:
|
1505 |
msgid "continue"
|
1506 |
msgstr "weiter"
|
1507 |
|
@@ -1509,11 +1527,11 @@ msgstr "weiter"
|
|
1509 |
msgid "Continue deactivation"
|
1510 |
msgstr "Deaktivierung fortsetzen"
|
1511 |
|
1512 |
-
#: views/b2s/support.php:
|
1513 |
msgid "Contracting and Licensing"
|
1514 |
msgstr "Blog2Social Vertrag / Blog2Social Lizenz"
|
1515 |
|
1516 |
-
#: includes/B2S/Ship/Item.php:
|
1517 |
msgid "Copy from original"
|
1518 |
msgstr "Originaltext kopieren"
|
1519 |
|
@@ -1531,11 +1549,11 @@ msgstr ""
|
|
1531 |
"Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite "
|
1532 |
"und versuche es erneut. "
|
1533 |
|
1534 |
-
#: views/b2s/html/header.php:
|
1535 |
msgid "Could not save draft"
|
1536 |
msgstr "Der Entwurf konnte nicht gespeichert werden"
|
1537 |
|
1538 |
-
#: views/b2s/support.php:
|
1539 |
msgid "Couldn't find your answer?"
|
1540 |
msgstr "Die richtige Antwort nicht gefunden?"
|
1541 |
|
@@ -1547,11 +1565,11 @@ msgstr "Land"
|
|
1547 |
msgid "create"
|
1548 |
msgstr "erstellen"
|
1549 |
|
1550 |
-
#: views/b2s/curation.php:
|
1551 |
msgid "Create a new post"
|
1552 |
msgstr "Neuen Social Media Post erstellen"
|
1553 |
|
1554 |
-
#: views/b2s/metrics.php:
|
1555 |
msgid ""
|
1556 |
"Create a new social media post for which you want to track the metrics. You "
|
1557 |
"can share:"
|
@@ -1559,7 +1577,7 @@ msgstr ""
|
|
1559 |
"Erstelle einen neuen Social-Media-Post, für den Du die Kennzahlen tracken "
|
1560 |
"möchtest. Du kannst:"
|
1561 |
|
1562 |
-
#: views/b2s/support.php:
|
1563 |
msgid "Create Account"
|
1564 |
msgstr "Account erstellen"
|
1565 |
|
@@ -1567,42 +1585,43 @@ msgstr "Account erstellen"
|
|
1567 |
msgid "create account"
|
1568 |
msgstr "neues Konto erstellen"
|
1569 |
|
1570 |
-
#: views/b2s/metrics.php:
|
1571 |
#, fuzzy
|
1572 |
#| msgid "Create and share a social media post"
|
1573 |
msgid "Create and Share a Social Media Post"
|
1574 |
msgstr "Social Media Post erstellen und teilen"
|
1575 |
|
1576 |
-
#: views/b2s/network.php:
|
1577 |
msgid "Create new network collection"
|
1578 |
msgstr "Neue Netzwerkgruppierung anlegen"
|
1579 |
|
1580 |
-
#: views/b2s/dashboard.php:
|
1581 |
msgid "Create or share content from other sources"
|
1582 |
msgstr "Erstelle oder teile Beiträge aus beliebigen Quellen"
|
1583 |
|
1584 |
-
#: views/b2s/support.php:
|
1585 |
msgid "Create password"
|
1586 |
msgstr "Passwort festlegen"
|
1587 |
|
1588 |
-
#: views/b2s/
|
1589 |
-
msgid "Create Post"
|
1590 |
-
msgstr "Beitrag erstellen"
|
1591 |
-
|
1592 |
-
#: includes/Loader.php:1026
|
1593 |
-
msgid "Create Social Media Posts"
|
1594 |
-
msgstr "Erstelle Social Media Posts"
|
1595 |
-
|
1596 |
-
#: views/b2s/support.php:60
|
1597 |
msgid "Create your support account to ask questions and get help"
|
1598 |
msgstr ""
|
1599 |
"Erstelle Deinen Support Account, um Fragen zu stellen und Hilfe zu erhalten"
|
1600 |
|
1601 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1602 |
msgid "curated post"
|
1603 |
msgstr "kuratierter Beitrag"
|
1604 |
|
1605 |
-
#: views/b2s/support.php:
|
1606 |
msgid "Current"
|
1607 |
msgstr "Aktuell"
|
1608 |
|
@@ -1610,11 +1629,11 @@ msgstr "Aktuell"
|
|
1610 |
msgid "currently scheduled"
|
1611 |
msgstr "geplant"
|
1612 |
|
1613 |
-
#: views/b2s/premium.php:
|
1614 |
msgid "Custom format"
|
1615 |
msgstr "Benutzerdefiniertes Format"
|
1616 |
|
1617 |
-
#: views/b2s/premium.php:
|
1618 |
msgid "Custom image"
|
1619 |
msgstr "Benutzerdefinierte Bilder"
|
1620 |
|
@@ -1652,11 +1671,11 @@ msgstr ""
|
|
1652 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
1653 |
"Community zu erzielen"
|
1654 |
|
1655 |
-
#: views/b2s/support.php:
|
1656 |
msgid "Customizing Social Media Posts"
|
1657 |
msgstr "Individualisierung der Social Media Posts"
|
1658 |
|
1659 |
-
#: includes/Tools.php:
|
1660 |
msgid "Czechoslovakia"
|
1661 |
msgstr "Tschechoslowakei"
|
1662 |
|
@@ -1665,18 +1684,18 @@ msgid "Dashboard"
|
|
1665 |
msgstr "Dashboard"
|
1666 |
|
1667 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1668 |
-
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:
|
1669 |
#: views/b2s/partials/post-edit-modal.php:67
|
1670 |
#: views/b2s/partials/post-edit-modal.php:70
|
1671 |
msgid "Date"
|
1672 |
msgstr "Startdatum"
|
1673 |
|
1674 |
-
#: includes/B2S/Ship/Item.php:
|
1675 |
msgid "Day of month"
|
1676 |
msgstr "Tag im Monat"
|
1677 |
|
1678 |
-
#: includes/B2S/Network/Item.php:
|
1679 |
-
#: includes/B2S/Network/Item.php:
|
1680 |
msgid "Days"
|
1681 |
msgstr "Tage"
|
1682 |
|
@@ -1688,7 +1707,7 @@ msgstr "Tage um"
|
|
1688 |
msgid "deactivated"
|
1689 |
msgstr "deaktiviert"
|
1690 |
|
1691 |
-
#: views/b2s/support.php:
|
1692 |
msgid "Debug & Preview"
|
1693 |
msgstr "Link prüfen"
|
1694 |
|
@@ -1713,7 +1732,7 @@ msgstr ""
|
|
1713 |
msgid "Default"
|
1714 |
msgstr "Standard"
|
1715 |
|
1716 |
-
#: views/b2s/network.php:569 includes/B2S/Network/Item.php:
|
1717 |
#, php-format
|
1718 |
msgid ""
|
1719 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1734,8 +1753,8 @@ msgstr ""
|
|
1734 |
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1735 |
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1736 |
|
1737 |
-
#: views/b2s/dashboard.php:
|
1738 |
-
#: views/b2s/post.sched.php:
|
1739 |
msgid ""
|
1740 |
"Define the default settings for the custom post format for all of your "
|
1741 |
"Facebook accounts in the Blog2Social settings."
|
@@ -1743,8 +1762,8 @@ msgstr ""
|
|
1743 |
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1744 |
"den Blog2Social Einstellungen."
|
1745 |
|
1746 |
-
#: views/b2s/dashboard.php:
|
1747 |
-
#: views/b2s/post.sched.php:
|
1748 |
msgid ""
|
1749 |
"Define the default settings for the custom post format for all of your "
|
1750 |
"Instagram accounts in the Blog2Social settings."
|
@@ -1752,8 +1771,8 @@ msgstr ""
|
|
1752 |
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1753 |
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1754 |
|
1755 |
-
#: views/b2s/dashboard.php:
|
1756 |
-
#: views/b2s/post.sched.php:
|
1757 |
msgid ""
|
1758 |
"Define the default settings for the custom post format for all of your "
|
1759 |
"LinkedIn accounts in the Blog2Social settings."
|
@@ -1761,8 +1780,8 @@ msgstr ""
|
|
1761 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1762 |
"unter den Blog2Social Einstellungen."
|
1763 |
|
1764 |
-
#: views/b2s/dashboard.php:
|
1765 |
-
#: views/b2s/post.sched.php:
|
1766 |
msgid ""
|
1767 |
"Define the default settings for the custom post format for all of your "
|
1768 |
"Twitter accounts in the Blog2Social settings."
|
@@ -1774,23 +1793,23 @@ msgstr ""
|
|
1774 |
msgid "Define Twitter post content"
|
1775 |
msgstr "Twitter Beitragsinhalt definieren"
|
1776 |
|
1777 |
-
#: views/b2s/settings.php:
|
1778 |
msgid "Define your post templates for each social media network"
|
1779 |
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
1780 |
|
1781 |
-
#: includes/B2S/Ship/Item.php:
|
1782 |
msgid "Delay"
|
1783 |
msgstr "Verzögerung"
|
1784 |
|
1785 |
-
#: views/b2s/network.php:
|
1786 |
msgid "Delete"
|
1787 |
msgstr "Löschen"
|
1788 |
|
1789 |
-
#: includes/Ajax/Post.php:
|
1790 |
-
#: includes/B2S/Post/Item.php:
|
1791 |
-
#: includes/B2S/Post/Item.php:
|
1792 |
-
#: includes/B2S/Settings/Item.php:103 includes/B2S/Ship/Item.php:
|
1793 |
-
#: includes/B2S/Ship/Item.php:
|
1794 |
msgid "delete"
|
1795 |
msgstr "löschen"
|
1796 |
|
@@ -1812,16 +1831,16 @@ msgstr "Autorisierung löschen"
|
|
1812 |
msgid "Delete Draft"
|
1813 |
msgstr "Entwurf löschen"
|
1814 |
|
1815 |
-
#: views/b2s/metrics.php:
|
1816 |
-
#: views/b2s/post.publish.php:
|
1817 |
msgid "Delete entries from the reporting"
|
1818 |
msgstr "Einträge aus dem Reporting löschen"
|
1819 |
|
1820 |
-
#: views/b2s/post.sched.php:
|
1821 |
msgid "Delete entries from the scheduling"
|
1822 |
msgstr "Einträge aus der Planung löschen"
|
1823 |
|
1824 |
-
#: includes/B2S/Post/Item.php:
|
1825 |
msgid "delete from reporting"
|
1826 |
msgstr "aus Reporting löschen"
|
1827 |
|
@@ -1833,7 +1852,7 @@ msgstr "Profil löschen"
|
|
1833 |
msgid "Delete scheduled posts"
|
1834 |
msgstr "Geplante Beiträge löschen"
|
1835 |
|
1836 |
-
#: includes/B2S/Post/Item.php:
|
1837 |
msgid "delete scheduling"
|
1838 |
msgstr "Planung löschen"
|
1839 |
|
@@ -1841,19 +1860,19 @@ msgstr "Planung löschen"
|
|
1841 |
msgid "delete selected posts"
|
1842 |
msgstr "markierte Beiträge löschen"
|
1843 |
|
1844 |
-
#: views/b2s/post.draft.php:
|
1845 |
msgid "Delete Social Media Draft"
|
1846 |
msgstr "Entwurf löschen"
|
1847 |
|
1848 |
-
#: views/b2s/post.approve.php:
|
1849 |
msgid "Delete Social Media Posts"
|
1850 |
msgstr "Social Media Posts löschen"
|
1851 |
|
1852 |
-
#: includes/B2S/Ship/Item.php:
|
1853 |
msgid "Delete text"
|
1854 |
msgstr "Text löschen"
|
1855 |
|
1856 |
-
#: includes/Tools.php:
|
1857 |
msgid "Denmark"
|
1858 |
msgstr "Dänemark"
|
1859 |
|
@@ -1865,8 +1884,8 @@ msgstr "Beschreibung"
|
|
1865 |
msgid "description"
|
1866 |
msgstr "Beschreibung"
|
1867 |
|
1868 |
-
#: includes/B2S/Post/Item.php:
|
1869 |
-
#: includes/B2S/Post/Item.php:
|
1870 |
msgid "Details"
|
1871 |
msgstr "Details"
|
1872 |
|
@@ -1878,16 +1897,28 @@ msgstr "Wusstest Du schon?"
|
|
1878 |
msgid "Did you miss something?"
|
1879 |
msgstr "Vermisst Du etwas?"
|
1880 |
|
1881 |
-
#: views/b2s/html/header.php:
|
1882 |
msgid "Did you miss something? Tell us!"
|
1883 |
msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
|
1884 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1885 |
#: includes/B2S/AutoPost/Item.php:52
|
1886 |
msgid "Disconnect"
|
1887 |
msgstr "Verbindung aufheben"
|
1888 |
|
1889 |
-
#: includes/B2S/Ship/Item.php:
|
1890 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
1891 |
msgid "Do u want to post multiple images?"
|
1892 |
msgstr "Du möchtest mehrere Bilder posten?"
|
1893 |
|
@@ -1912,8 +1943,8 @@ msgstr ""
|
|
1912 |
msgid "Do you want to delete your scheduled posts?"
|
1913 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
1914 |
|
1915 |
-
#: views/b2s/curation.php:
|
1916 |
-
#: views/b2s/ship.php:
|
1917 |
msgid "Do you want to mark this post as published ?"
|
1918 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1919 |
|
@@ -1922,22 +1953,20 @@ msgid "Download and activate the Blog2Social extension"
|
|
1922 |
msgstr "Lade und aktiviere die Blog2Social Extension"
|
1923 |
|
1924 |
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:59
|
1925 |
-
#: includes/B2S/Post/Item.php:
|
1926 |
msgid "draft"
|
1927 |
msgstr "Entwurf"
|
1928 |
|
1929 |
-
#: includes/Loader.php:917 views/b2s/html/
|
1930 |
-
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
1931 |
-
#: views/b2s/html/sidebar.php:116
|
1932 |
msgid "Drafts"
|
1933 |
msgstr "Entwürfe"
|
1934 |
|
1935 |
-
#: includes/B2S/Ship/Item.php:
|
1936 |
msgid "Duration"
|
1937 |
msgstr "Dauer"
|
1938 |
|
1939 |
-
#: views/b2s/network.php:398 views/b2s/ship.php:
|
1940 |
-
#: views/b2s/html/header.php:
|
1941 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1942 |
#: views/prg/html/form.php:220
|
1943 |
msgid "E-Mail"
|
@@ -1955,7 +1984,7 @@ msgstr ""
|
|
1955 |
"Jede Lizenz hat eine bestimmte Anzahl von Konten, die Du pro Social-Media-"
|
1956 |
"Netzwerk verbinden kannst."
|
1957 |
|
1958 |
-
#: includes/B2S/Post/Item.php:
|
1959 |
msgid "edit"
|
1960 |
msgstr "edit"
|
1961 |
|
@@ -1967,8 +1996,8 @@ msgstr "Gruppeneinstellungen bearbeiten"
|
|
1967 |
msgid "Edit Post"
|
1968 |
msgstr "Beitrag bearbeiten"
|
1969 |
|
1970 |
-
#: views/b2s/network.php:239 includes/B2S/Network/Item.php:
|
1971 |
-
#: includes/B2S/Network/Item.php:
|
1972 |
msgid "Edit Post Template"
|
1973 |
msgstr "Beitragsvorlage bearbeiten"
|
1974 |
|
@@ -1980,7 +2009,7 @@ msgstr ""
|
|
1980 |
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
1981 |
"das Textfeld und passe sie nach Deinen Wünschen an."
|
1982 |
|
1983 |
-
#: views/b2s/settings.php:
|
1984 |
msgid ""
|
1985 |
"Edit the post templates for each social media network to turn your social "
|
1986 |
"media posts automatically into tailored posts for each network and community."
|
@@ -1991,11 +2020,11 @@ msgstr ""
|
|
1991 |
"Netzwerk und jede Community zu verwandeln. Du kannst den Inhalt Deines "
|
1992 |
"Beitrags mit den folgenden Variablen bearbeiten:"
|
1993 |
|
1994 |
-
#: views/b2s/support.php:
|
1995 |
msgid "Email address"
|
1996 |
msgstr "E-Mail-Adresse"
|
1997 |
|
1998 |
-
#: views/b2s/support.php:
|
1999 |
msgid "Email address is taken."
|
2000 |
msgstr "Diese E-Mail Adresse ist bereits belegt"
|
2001 |
|
@@ -2007,15 +2036,15 @@ msgstr "Unternehmensseite"
|
|
2007 |
msgid "enable Auto-Posting"
|
2008 |
msgstr "Auto-Posting aktivieren"
|
2009 |
|
2010 |
-
#: includes/B2S/Ship/Item.php:
|
2011 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
2012 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
2013 |
|
2014 |
-
#: includes/B2S/Ship/Item.php:
|
2015 |
msgid "End Of Month"
|
2016 |
msgstr "Monatsende"
|
2017 |
|
2018 |
-
#: views/b2s/premium.php:
|
2019 |
msgid "End of Trial"
|
2020 |
msgstr "Ende der Testzeit"
|
2021 |
|
@@ -2027,7 +2056,7 @@ msgstr "Enddatum"
|
|
2027 |
msgid "English"
|
2028 |
msgstr "Englisch"
|
2029 |
|
2030 |
-
#: views/b2s/curation.php:
|
2031 |
msgid ""
|
2032 |
"Enter a link you want to share on your social media networks. You can also "
|
2033 |
"share a video link, for example from YouTube or from Vimeo (also see Video "
|
@@ -2037,13 +2066,13 @@ msgstr ""
|
|
2037 |
"möchtest. Du kannst auch einen Video-Link teilen, zum Beispiel aus YouTube "
|
2038 |
"oder Vimeo (siehe auch Video-Beitrag)."
|
2039 |
|
2040 |
-
#: views/b2s/support.php:
|
2041 |
msgid "Enter a URL to see how your link preview will look on social media."
|
2042 |
msgstr ""
|
2043 |
"Gib eine URL ein, um zu sehen, wie die Link-Vorschau auf Social Media "
|
2044 |
"aussehen wird"
|
2045 |
|
2046 |
-
#: views/b2s/curation.php:
|
2047 |
msgid ""
|
2048 |
"Enter a video link you want to share on your social media networks, for "
|
2049 |
"example from YouTube or from Vimeo."
|
@@ -2051,19 +2080,19 @@ msgstr ""
|
|
2051 |
"Füge einen Video-Link ein, zum Beispiel aus YouTube oder Vimeo, den Du auf "
|
2052 |
"Deinen Social-Media-Netzwerken teilen möchtest."
|
2053 |
|
2054 |
-
#: views/b2s/support.php:
|
2055 |
msgid "Enter at least 8 characters"
|
2056 |
msgstr "Bitte gib mindestens 8 Zeichen ein"
|
2057 |
|
2058 |
-
#: views/b2s/premium.php:
|
2059 |
msgid "Enter license key and change your version"
|
2060 |
msgstr "Lizenzschlüssel eingeben und Version ändern"
|
2061 |
|
2062 |
-
#: views/b2s/curation.php:
|
2063 |
msgid "Enter link"
|
2064 |
msgstr "Link eingeben"
|
2065 |
|
2066 |
-
#: views/b2s/support.php:
|
2067 |
msgid "Enter your question or keyword here"
|
2068 |
msgstr "Gib einen Suchbegriff ein oder stelle eine Frage"
|
2069 |
|
@@ -2071,11 +2100,11 @@ msgstr "Gib einen Suchbegriff ein oder stelle eine Frage"
|
|
2071 |
msgid "Event"
|
2072 |
msgstr "Event"
|
2073 |
|
2074 |
-
#: includes/B2S/Ship/Item.php:
|
2075 |
msgid "Events"
|
2076 |
msgstr "Events"
|
2077 |
|
2078 |
-
#: views/b2s/settings.php:
|
2079 |
msgid ""
|
2080 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2081 |
"post)."
|
@@ -2090,7 +2119,7 @@ msgstr ""
|
|
2090 |
msgid "Exclude (Do no post ...)"
|
2091 |
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
2092 |
|
2093 |
-
#: views/b2s/support.php:
|
2094 |
msgid "Export as txt-file"
|
2095 |
msgstr "Als txt-Datei exportieren"
|
2096 |
|
@@ -2121,7 +2150,7 @@ msgstr ""
|
|
2121 |
"ein zufällig gewähltes Bild bei Link-Beiträgen an. Bitte stelle sicher, dass "
|
2122 |
"Dein Bild die Anforderungen an die Bildgröße für Facebook erfüllt."
|
2123 |
|
2124 |
-
#: views/b2s/support.php:
|
2125 |
msgid "Facebook Open Graph Meta Tags"
|
2126 |
msgstr "Facebook Open Graph Meta Tags"
|
2127 |
|
@@ -2129,32 +2158,32 @@ msgstr "Facebook Open Graph Meta Tags"
|
|
2129 |
msgid "Facebook pages"
|
2130 |
msgstr "Facebook-Seiten"
|
2131 |
|
2132 |
-
#: includes/B2S/Network/Item.php:
|
2133 |
msgid "Failed to load the default template"
|
2134 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
2135 |
|
2136 |
-
#: includes/B2S/Network/Item.php:
|
2137 |
msgid "Failed to save"
|
2138 |
msgstr "Speichern fehlgeschlagen"
|
2139 |
|
2140 |
-
#: includes/B2S/Post/Item.php:
|
2141 |
msgid "FAQ"
|
2142 |
msgstr "FAQ"
|
2143 |
|
2144 |
-
#: includes/Loader.php:917 views/b2s/metrics.php:
|
2145 |
-
#: views/b2s/html/
|
2146 |
msgid "Favorites"
|
2147 |
msgstr "Favoriten"
|
2148 |
|
2149 |
-
#: views/b2s/metrics.php:
|
2150 |
msgid "Feedback"
|
2151 |
msgstr "Feedback"
|
2152 |
|
2153 |
-
#: views/b2s/dashboard.php:
|
2154 |
-
#: views/b2s/network.php:
|
2155 |
-
#: views/b2s/post.calendar.php:
|
2156 |
#: views/prg/post.php:26 views/prg/post.php:27
|
2157 |
-
#: views/b2s/html/post.navbar.php:
|
2158 |
msgid "filter"
|
2159 |
msgstr "Filter"
|
2160 |
|
@@ -2165,36 +2194,36 @@ msgstr ""
|
|
2165 |
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
2166 |
"automatisch veröffentlicht)"
|
2167 |
|
2168 |
-
#: includes/Tools.php:
|
2169 |
msgid "Finland"
|
2170 |
msgstr "Finnland"
|
2171 |
|
2172 |
-
#: views/b2s/html/header.php:
|
2173 |
#: views/prg/html/form.php:100 views/prg/html/form.php:168
|
2174 |
#: views/prg/html/form.php:177
|
2175 |
msgid "First Name"
|
2176 |
msgstr "Vorname"
|
2177 |
|
2178 |
-
#: views/b2s/ship.php:
|
2179 |
msgid "First, connect or select network before posting"
|
2180 |
msgstr ""
|
2181 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2182 |
"Du den Beitrag teilst!"
|
2183 |
|
2184 |
-
#: includes/Tools.php:
|
2185 |
msgid "Flags"
|
2186 |
msgstr "Flaggen"
|
2187 |
|
2188 |
-
#: views/b2s/dashboard.php:
|
2189 |
msgid "Follow us"
|
2190 |
msgstr "Folge uns"
|
2191 |
|
2192 |
-
#: includes/Tools.php:
|
2193 |
msgid "Food & Drink"
|
2194 |
msgstr "Essen & Trinken"
|
2195 |
|
2196 |
-
#: views/b2s/support.php:
|
2197 |
-
#: views/b2s/support.php:
|
2198 |
msgid "For example your Wordpress Home Page"
|
2199 |
msgstr "zum Beispiel Deine Blogseite"
|
2200 |
|
@@ -2226,14 +2255,14 @@ msgstr ""
|
|
2226 |
"Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
|
2227 |
"bevorzugtes benutzerdefiniertes Postformat auswählen."
|
2228 |
|
2229 |
-
#: includes/B2S/Ship/Save.php:
|
2230 |
msgid ""
|
2231 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
2232 |
msgstr ""
|
2233 |
"Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
|
2234 |
"zur Verfügung"
|
2235 |
|
2236 |
-
#: includes/B2S/Ship/Save.php:
|
2237 |
msgid ""
|
2238 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
2239 |
"Instant Sharing"
|
@@ -2241,36 +2270,36 @@ msgstr ""
|
|
2241 |
"Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht Facebook "
|
2242 |
"Instant Sharing zur Verfügung"
|
2243 |
|
2244 |
-
#: views/b2s/dashboard.php:
|
2245 |
-
#: views/b2s/post.sched.php:
|
2246 |
msgid "for:"
|
2247 |
msgstr "für:"
|
2248 |
|
2249 |
-
#: views/b2s/support.php:
|
2250 |
msgid "Forgot Password?"
|
2251 |
msgstr "Passwort vergessen?"
|
2252 |
|
2253 |
-
#: views/b2s/support.php:
|
2254 |
msgid "Forgot username or password?"
|
2255 |
msgstr "Username oder Passwort vergessen?"
|
2256 |
|
2257 |
-
#: includes/B2S/Network/Item.php:
|
2258 |
msgid "Format"
|
2259 |
msgstr "Format"
|
2260 |
|
2261 |
-
#: includes/B2S/Network/Item.php:
|
2262 |
msgid "Frame colour:"
|
2263 |
msgstr "Rahmenfarbe:"
|
2264 |
|
2265 |
-
#: includes/Tools.php:
|
2266 |
msgid "France"
|
2267 |
msgstr "Frankreich"
|
2268 |
|
2269 |
-
#: views/b2s/support.php:
|
2270 |
msgid "Frequently asked questions"
|
2271 |
msgstr "Oft gestellte Fragen (FAQ)"
|
2272 |
|
2273 |
-
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:
|
2274 |
msgid "Fri"
|
2275 |
msgstr "Fr"
|
2276 |
|
@@ -2282,7 +2311,7 @@ msgstr "Freitag"
|
|
2282 |
msgid "Frontpage Settings"
|
2283 |
msgstr "Frontpage Einstellungen"
|
2284 |
|
2285 |
-
#: views/b2s/settings.php:
|
2286 |
msgid "General"
|
2287 |
msgstr "Allgemein"
|
2288 |
|
@@ -2290,15 +2319,20 @@ msgstr "Allgemein"
|
|
2290 |
msgid "German"
|
2291 |
msgstr "Deutsch"
|
2292 |
|
2293 |
-
#: includes/Tools.php:
|
2294 |
msgid "Germany"
|
2295 |
msgstr "Deutschland"
|
2296 |
|
2297 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
2298 |
msgid "Get more information about the benefits of Blog2Social Premium"
|
2299 |
msgstr "Erfahre mehr über die Vorteile von Blog2Social-Premium"
|
2300 |
|
2301 |
-
#: views/b2s/html/header.php:
|
2302 |
#, php-format
|
2303 |
msgid ""
|
2304 |
"Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
|
@@ -2307,7 +2341,7 @@ msgstr ""
|
|
2307 |
"Mehr Informationen erhältst Du in der <a href=\"%s\" target=\"_blank\">"
|
2308 |
"Social-Meta-Tag-Anleitung</a>."
|
2309 |
|
2310 |
-
#: views/b2s/curation.php:
|
2311 |
#, php-format
|
2312 |
msgid ""
|
2313 |
"Get more information on how to share a text post with hashtags, @mentions "
|
@@ -2322,29 +2356,29 @@ msgstr ""
|
|
2322 |
msgid "Get Social Media News"
|
2323 |
msgstr "Social Media News"
|
2324 |
|
2325 |
-
#: views/b2s/html/header.php:
|
2326 |
msgid "Get Started"
|
2327 |
msgstr "Jetzt loslegen"
|
2328 |
|
2329 |
-
#: views/b2s/curation.draft.php:
|
2330 |
msgid "Get the Blog2Social Browser Extension"
|
2331 |
msgstr "Blog2Social Browser Erweiterung"
|
2332 |
|
2333 |
-
#: views/b2s/ship.php:
|
2334 |
msgid "Give me more information"
|
2335 |
msgstr "Erhalte mehr Infomationen"
|
2336 |
|
2337 |
-
#: views/b2s/premium.php:
|
2338 |
msgid "Go Premium and get even smarter with social media automation"
|
2339 |
msgstr ""
|
2340 |
"Das sind die Vorteile, von denen Sie mit Blog2Social Premium profitieren "
|
2341 |
"können"
|
2342 |
|
2343 |
-
#: views/b2s/support.php:
|
2344 |
msgid "Go to the Blog2Social Community"
|
2345 |
msgstr "Zur Blog2Social Community"
|
2346 |
|
2347 |
-
#: includes/B2S/Ship/Item.php:
|
2348 |
msgid ""
|
2349 |
"Good to know: Instagram does not allow to publish identical or substantially "
|
2350 |
"similar content on one or more accounts. Vary your content by using other "
|
@@ -2357,7 +2391,7 @@ msgstr ""
|
|
2357 |
"Hashtags oder Handles und versorge Deine Follower so mit abwechslungsreichem "
|
2358 |
"und inspirierendem Content."
|
2359 |
|
2360 |
-
#: includes/B2S/Network/Item.php:
|
2361 |
msgid ""
|
2362 |
"Good to know: Instagram supports up to 30 hashtags in a post. The number "
|
2363 |
"recommended for best results is 5 hashtags. Make sure that your hashtags are "
|
@@ -2379,51 +2413,51 @@ msgstr ""
|
|
2379 |
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
2380 |
"Business Brancheneinträgen zu erweitern."
|
2381 |
|
2382 |
-
#: views/b2s/network.php:127 views/b2s/premium.php:
|
2383 |
msgid "Google My Business"
|
2384 |
msgstr "Google My Business"
|
2385 |
|
2386 |
-
#: views/b2s/curation.php:
|
2387 |
msgid ""
|
2388 |
"Grab more attention for your content with photos, videos, or infographics."
|
2389 |
msgstr ""
|
2390 |
"Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
|
2391 |
"Infografiken."
|
2392 |
|
2393 |
-
#: includes/Tools.php:
|
2394 |
msgid "Great Britain"
|
2395 |
msgstr "Großbritannien"
|
2396 |
|
2397 |
-
#: includes/Tools.php:
|
2398 |
msgid "Greece"
|
2399 |
msgstr "Griechenland"
|
2400 |
|
2401 |
-
#: includes/Loader.php:918 includes/B2S/Network/Item.php:
|
2402 |
msgid "Group"
|
2403 |
msgstr "Gruppe"
|
2404 |
|
2405 |
-
#: includes/B2S/Network/Item.php:
|
2406 |
msgid "Guide"
|
2407 |
msgstr "Leitfaden"
|
2408 |
|
2409 |
-
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:
|
2410 |
msgid "guide for server connection"
|
2411 |
msgstr "Serververbindungs-Guide"
|
2412 |
|
2413 |
-
#: includes/B2S/Network/Item.php:
|
2414 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
2415 |
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
2416 |
|
2417 |
-
#: includes/B2S/Ship/Item.php:
|
2418 |
msgid "Hashtags"
|
2419 |
msgstr "Hashtags"
|
2420 |
|
2421 |
-
#: views/b2s/support.php:
|
2422 |
msgid "Help & Community"
|
2423 |
msgstr "Hilfe & Community"
|
2424 |
|
2425 |
-
#: includes/Loader.php:1036 includes/Loader.php:
|
2426 |
-
#: views/b2s/html/header.php:
|
2427 |
#: views/b2s/html/sidebar.ship.php:66
|
2428 |
msgid "Help & Support"
|
2429 |
msgstr "Hilfe & Support"
|
@@ -2432,15 +2466,15 @@ msgstr "Hilfe & Support"
|
|
2432 |
msgid "Help us make Blog2Social even better!"
|
2433 |
msgstr "Hilf uns, Blog2Social noch besser zu machen!"
|
2434 |
|
2435 |
-
#: views/b2s/support.php:
|
2436 |
msgid "Helpful Network Settings"
|
2437 |
msgstr "Hilfreiche Netzwerkeinstellungen"
|
2438 |
|
2439 |
-
#: views/b2s/metrics.php:
|
2440 |
msgid "Here's how to start tracking your social media posts:"
|
2441 |
msgstr "So startest Du mit dem Tracking der Deiner Social-Media-Posts:"
|
2442 |
|
2443 |
-
#: views/b2s/html/header.php:
|
2444 |
#, php-format
|
2445 |
msgid ""
|
2446 |
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
@@ -2457,19 +2491,23 @@ msgstr ""
|
|
2457 |
msgid "hide"
|
2458 |
msgstr "ausblenden"
|
2459 |
|
2460 |
-
#: includes/B2S/Ship/Item.php:
|
2461 |
msgid "hide calendar"
|
2462 |
msgstr "Planungskalender verbergen"
|
2463 |
|
2464 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
2465 |
msgid "How can we help?"
|
2466 |
msgstr "Wie können wir helfen?"
|
2467 |
|
2468 |
-
#: views/b2s/metrics.php:
|
2469 |
msgid "How to check the Social Media Metrics?"
|
2470 |
msgstr "Wie kann ich die Social-Media-Kennzahlen einsehen? "
|
2471 |
|
2472 |
-
#: views/b2s/support.php:
|
2473 |
msgid "How to use the Troubleshooting tool"
|
2474 |
msgstr "Wie Du das Problemanalyse-Tool nutzt"
|
2475 |
|
@@ -2478,29 +2516,45 @@ msgstr "Wie Du das Problemanalyse-Tool nutzt"
|
|
2478 |
msgid "https://www.blog2social.com"
|
2479 |
msgstr "https://www.blog2social.com"
|
2480 |
|
2481 |
-
#: includes/Tools.php:
|
2482 |
msgid "Hungary"
|
2483 |
msgstr "Ungarn"
|
2484 |
|
2485 |
-
#: views/b2s/support.php:
|
2486 |
#, php-format
|
2487 |
msgid "I agree to the <a href=\"%s\" target=\"_blank\">community rules</a>"
|
2488 |
msgstr ""
|
2489 |
"Ich habe die <a href=\"%s\" target=\"_blank\">Community-Regeln</a> zur "
|
2490 |
"Kenntnis genommen und willige ein."
|
2491 |
|
2492 |
-
#: views/b2s/html/header.php:
|
2493 |
msgid "I agree to the Adenion Privacy Policy"
|
2494 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
2495 |
|
2496 |
-
#: views/b2s/html/header.php:
|
2497 |
msgid "I already did it"
|
2498 |
msgstr "Habe ich schon erledigt"
|
2499 |
|
2500 |
-
#: views/b2s/html/header.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2501 |
msgid "I need some more time to decide"
|
2502 |
msgstr "Ich brauche etwas mehr Zeit, um mich zu entscheiden"
|
2503 |
|
|
|
|
|
|
|
|
|
2504 |
#: views/b2s/html/footer.php:502
|
2505 |
msgid ""
|
2506 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
@@ -2529,7 +2583,7 @@ msgstr ""
|
|
2529 |
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
2530 |
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
2531 |
|
2532 |
-
#: views/b2s/html/sidebar.php:
|
2533 |
msgid ""
|
2534 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
2535 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
@@ -2541,11 +2595,11 @@ msgstr ""
|
|
2541 |
"kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
|
2542 |
"erhältst Hilfe von unserem engagierten Support-Team."
|
2543 |
|
2544 |
-
#: views/b2s/ship.php:
|
2545 |
msgid "Ignore & share"
|
2546 |
msgstr "Ignorieren & teilen"
|
2547 |
|
2548 |
-
#: includes/B2S/Network/Item.php:
|
2549 |
msgid "Image"
|
2550 |
msgstr "Bild"
|
2551 |
|
@@ -2553,19 +2607,18 @@ msgstr "Bild"
|
|
2553 |
msgid "image"
|
2554 |
msgstr "Bild"
|
2555 |
|
2556 |
-
#: views/b2s/post.calendar.php:
|
2557 |
-
#: views/b2s/repost.php:
|
2558 |
-
#: includes/B2S/Network/Item.php:
|
2559 |
#: includes/B2S/Settings/Item.php:294 views/b2s/html/footer.php:182
|
2560 |
#: views/b2s/widgets/calendar.php:72
|
2561 |
msgid "Image cut out"
|
2562 |
msgstr "Bild zuschneiden"
|
2563 |
|
2564 |
-
#: views/b2s/
|
2565 |
-
#: views/b2s/
|
2566 |
-
#:
|
2567 |
-
#: includes/B2S/
|
2568 |
-
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:379
|
2569 |
#: views/b2s/widgets/calendar.php:72
|
2570 |
msgid "Image Post"
|
2571 |
msgstr "Bild-Beitrag"
|
@@ -2579,9 +2632,9 @@ msgstr "Bild hochladen / Mediathek"
|
|
2579 |
msgid "Image URL"
|
2580 |
msgstr "Bild Url"
|
2581 |
|
2582 |
-
#: views/b2s/post.calendar.php:
|
2583 |
-
#: views/b2s/repost.php:
|
2584 |
-
#: includes/B2S/Network/Item.php:
|
2585 |
#: includes/B2S/Settings/Item.php:280 views/b2s/html/footer.php:177
|
2586 |
#: views/b2s/widgets/calendar.php:72
|
2587 |
msgid "Image with frame"
|
@@ -2603,15 +2656,15 @@ msgstr "sofort"
|
|
2603 |
msgid "immediately after publishing"
|
2604 |
msgstr "sofort nach Veröffentlichung"
|
2605 |
|
2606 |
-
#: views/b2s/metrics.php:
|
2607 |
msgid "Imported posts"
|
2608 |
msgstr "Importierte Beiträge"
|
2609 |
|
2610 |
-
#: views/b2s/metrics.php:
|
2611 |
msgid "Impressions"
|
2612 |
msgstr "Impressionen"
|
2613 |
|
2614 |
-
#: views/b2s/metrics.php:
|
2615 |
msgid "Impressions: A count of how many times the post has been viewed."
|
2616 |
msgstr "Impressions: Eine Aufzählung, wie oft der Beitrag angesehen wurde."
|
2617 |
|
@@ -2623,7 +2676,7 @@ msgstr ""
|
|
2623 |
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
2624 |
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden"
|
2625 |
|
2626 |
-
#: views/b2s/curation.php:
|
2627 |
#, php-format
|
2628 |
#| msgid ""
|
2629 |
#| "In the <a href=\"%s\">Network Settings</a> you can define network "
|
@@ -2636,7 +2689,7 @@ msgstr ""
|
|
2636 |
"Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
|
2637 |
"Gruppierung festlegen."
|
2638 |
|
2639 |
-
#: views/b2s/curation.php:
|
2640 |
#, php-format
|
2641 |
msgid ""
|
2642 |
"In the <a href=\"%s\">Network Settings</a> you can define one or more "
|
@@ -2661,40 +2714,40 @@ msgstr "nur <a href=\"%s\" target=\"_blank\">Favoriten</a> hinzufügen"
|
|
2661 |
msgid "include posts with images only"
|
2662 |
msgstr "nur Beiträge mit Bildern hinzufügen"
|
2663 |
|
2664 |
-
#: includes/Tools.php:
|
2665 |
msgid "India"
|
2666 |
msgstr "Indien"
|
2667 |
|
2668 |
-
#: includes/Tools.php:
|
2669 |
msgid "Indonesia"
|
2670 |
msgstr "Indonesien"
|
2671 |
|
2672 |
#: includes/Loader.php:917 includes/B2S/PostBox.php:165
|
2673 |
#: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
|
2674 |
-
#: views/b2s/autopost.php:
|
2675 |
-
#: views/b2s/metrics.php:
|
2676 |
-
#: views/b2s/ship.php:
|
2677 |
#: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
|
2678 |
-
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:
|
2679 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2680 |
-
#: includes/B2S/Ship/Item.php:
|
2681 |
msgid "Info"
|
2682 |
msgstr "Info"
|
2683 |
|
2684 |
-
#: includes/B2S/Ship/Item.php:
|
2685 |
msgid ""
|
2686 |
"Info: Change Card Meta tags image, title and description for this network"
|
2687 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
2688 |
|
2689 |
-
#: includes/B2S/Ship/Item.php:
|
2690 |
-
#: includes/B2S/Ship/Item.php:
|
2691 |
-
#: includes/B2S/Ship/Item.php:
|
2692 |
msgid ""
|
2693 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2694 |
"network"
|
2695 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
2696 |
|
2697 |
-
#: includes/B2S/Ship/Item.php:
|
2698 |
msgid "Insert full-text"
|
2699 |
msgstr "ganzen Text einfügen"
|
2700 |
|
@@ -2706,7 +2759,7 @@ msgstr ""
|
|
2706 |
"Füge weiße Rahmen ein, um das gesamte Bild in Deiner Zeitleiste anzuzeigen. "
|
2707 |
"Alle Bildinformationen werden in Deiner Zeitleiste angezeigt."
|
2708 |
|
2709 |
-
#: views/b2s/support.php:
|
2710 |
msgid "Inspect Post"
|
2711 |
msgstr "Link prüfen"
|
2712 |
|
@@ -2719,7 +2772,7 @@ msgstr ""
|
|
2719 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
2720 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
2721 |
|
2722 |
-
#: views/b2s/support.php:
|
2723 |
msgid "Installation"
|
2724 |
msgstr "Installation"
|
2725 |
|
@@ -2731,56 +2784,76 @@ msgstr "Instant Caching für Facebook Link-Beiträge"
|
|
2731 |
msgid "Instant Caching for Link Posts"
|
2732 |
msgstr "Instant Caching für Link-Beiträge"
|
2733 |
|
2734 |
-
#: includes/Loader.php:917 views/b2s/html/
|
2735 |
-
#: views/b2s/html/sidebar.php:119
|
2736 |
msgid "Instant Sharing"
|
2737 |
msgstr "Instant Sharing"
|
2738 |
|
2739 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2740 |
msgid "Invalid Data! Please try again."
|
2741 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
2742 |
|
2743 |
-
#: views/b2s/curation.php:
|
2744 |
msgid "Invalid data. Please check your data."
|
2745 |
msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
2746 |
|
2747 |
-
#: views/b2s/support.php:
|
2748 |
msgid "Invalid email address"
|
2749 |
msgstr "Ungültige E-Mail Adresse"
|
2750 |
|
2751 |
-
#: includes/Tools.php:
|
2752 |
msgid "Ireland"
|
2753 |
msgstr "Irland"
|
2754 |
|
2755 |
-
#: includes/B2S/Post/Item.php:
|
2756 |
msgid "is currently being processed by the network"
|
2757 |
msgstr "wird vom Netzwerk verarbeitet"
|
2758 |
|
2759 |
-
#: includes/Tools.php:
|
2760 |
msgid "is determined automatically"
|
2761 |
msgstr "wird automatisch ermittelt"
|
2762 |
|
2763 |
-
#: includes/B2S/Post/Item.php:
|
2764 |
#, php-format
|
2765 |
msgid "is waiting to shared by %s"
|
2766 |
msgstr "wartet darauf von %s geteilt zu werden"
|
2767 |
|
2768 |
-
#: includes/Tools.php:
|
2769 |
msgid "Italy"
|
2770 |
msgstr "Italien"
|
2771 |
|
2772 |
-
#: includes/Tools.php:
|
2773 |
msgid "Japan"
|
2774 |
msgstr "Japan"
|
2775 |
|
|
|
|
|
|
|
|
|
2776 |
#: views/b2s/html/footer.php:11 views/prg/html/footer.php:11
|
2777 |
msgid "Job"
|
2778 |
msgstr "Job"
|
2779 |
|
2780 |
-
#: includes/B2S/Ship/Item.php:
|
2781 |
msgid "Jobs & Projects"
|
2782 |
msgstr "Stellenangebote & Projekte"
|
2783 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2784 |
#: views/b2s/html/footer.php:441
|
2785 |
msgid ""
|
2786 |
"Keep your social media feed updated automatically with your best content and "
|
@@ -2802,11 +2875,11 @@ msgstr "Keywords"
|
|
2802 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2803 |
msgstr "Keywords mit Komma getrennt (z.B.: Blog2Social, PR-Gateway)"
|
2804 |
|
2805 |
-
#: views/b2s/settings.php:
|
2806 |
msgid "Keywords: The tags you have set in your post."
|
2807 |
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2808 |
|
2809 |
-
#: includes/Tools.php:
|
2810 |
msgid "Korea"
|
2811 |
msgstr "Korea"
|
2812 |
|
@@ -2814,18 +2887,18 @@ msgstr "Korea"
|
|
2814 |
msgid "Language"
|
2815 |
msgstr "Sprache"
|
2816 |
|
2817 |
-
#: includes/B2S/Post/Item.php:
|
2818 |
#, php-format
|
2819 |
msgid "last modified by %s"
|
2820 |
msgstr "zuletzt von %s bearbeitet"
|
2821 |
|
2822 |
-
#: views/b2s/html/header.php:
|
2823 |
#: views/prg/html/form.php:103 views/prg/html/form.php:169
|
2824 |
#: views/prg/html/form.php:180
|
2825 |
msgid "Last Name"
|
2826 |
msgstr "Nachname"
|
2827 |
|
2828 |
-
#: includes/B2S/Post/Item.php:
|
2829 |
msgid "last saved"
|
2830 |
msgstr "zuletzt gespeichert:"
|
2831 |
|
@@ -2833,8 +2906,8 @@ msgstr "zuletzt gespeichert:"
|
|
2833 |
msgid "Last shared"
|
2834 |
msgstr "Letzte Veröffentlichung"
|
2835 |
|
2836 |
-
#: includes/B2S/Post/Item.php:
|
2837 |
-
#: includes/B2S/Post/Item.php:
|
2838 |
msgid "last shared on social media"
|
2839 |
msgstr "zuletzt auf Social Media geteilt"
|
2840 |
|
@@ -2842,20 +2915,20 @@ msgstr "zuletzt auf Social Media geteilt"
|
|
2842 |
msgid "Latest Posts"
|
2843 |
msgstr "letzte Beiträge"
|
2844 |
|
2845 |
-
#: includes/B2S/Metrics/Item.php:
|
2846 |
#, php-format
|
2847 |
msgid "latest share by %s"
|
2848 |
msgstr "zuletzt von %s geteilt"
|
2849 |
|
2850 |
-
#: includes/B2S/Ship/Save.php:
|
2851 |
msgid "Learn how it works"
|
2852 |
msgstr "mehr erfahren"
|
2853 |
|
2854 |
-
#: views/b2s/support.php:
|
2855 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2856 |
msgstr "So kannst Du Deine Open Graph Tags bearbeiten und anpassen."
|
2857 |
|
2858 |
-
#: views/b2s/support.php:
|
2859 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2860 |
msgstr "So kannst Du Deine Twitter Card Tags bearbeiten und anpassen."
|
2861 |
|
@@ -2867,12 +2940,12 @@ msgstr ""
|
|
2867 |
"Erfahre, wie Du individuelle Beste Zeiten für Deine Social Media Planung und "
|
2868 |
"Deinen Auto-Poster einrichten und anwenden kannst."
|
2869 |
|
2870 |
-
#: views/b2s/network.php:136 includes/B2S/Ship/Item.php:
|
2871 |
#: views/b2s/partials/post-edit-modal.php:53
|
2872 |
msgid "Learn more"
|
2873 |
msgstr "Mehr erfahren"
|
2874 |
|
2875 |
-
#: views/b2s/curation.php:
|
2876 |
#, php-format
|
2877 |
msgid ""
|
2878 |
"Learn more about how to share social media posts in the <a href=\"%s\" "
|
@@ -2882,12 +2955,12 @@ msgstr ""
|
|
2882 |
"Guide</a>\" mehr Informationen darüber, wie Du Social-Media-Beiträge teilen "
|
2883 |
"kannst."
|
2884 |
|
2885 |
-
#: views/b2s/ship.php:
|
2886 |
msgid "Learn more about the Xing guidelines."
|
2887 |
msgstr "Erfahre mehr über die Xing-Richtlinien."
|
2888 |
|
2889 |
-
#: includes/B2S/Ship/Item.php:
|
2890 |
-
#: includes/B2S/Ship/Item.php:
|
2891 |
msgid "Learn more about this"
|
2892 |
msgstr "Erfahre mehr darüber"
|
2893 |
|
@@ -2895,26 +2968,26 @@ msgstr "Erfahre mehr darüber"
|
|
2895 |
msgid "Legend"
|
2896 |
msgstr "Legende"
|
2897 |
|
2898 |
-
#: includes/Tools.php:
|
2899 |
#: views/b2s/html/sidebar.ship.php:29
|
2900 |
msgid "License"
|
2901 |
msgstr "Lizenz"
|
2902 |
|
2903 |
-
#: views/b2s/metrics.php:
|
2904 |
msgid "Likes"
|
2905 |
msgstr "Likes"
|
2906 |
|
2907 |
-
#: views/b2s/metrics.php:
|
2908 |
msgid "Likes: A count of how many times the post has been liked."
|
2909 |
msgstr ""
|
2910 |
"Likes: Eine Aufzählung, wie viele “Gefällt mir”-Angaben ein Beitrag hat."
|
2911 |
|
2912 |
-
#: includes/B2S/Network/Item.php:
|
2913 |
-
#: includes/B2S/Ship/Item.php:
|
2914 |
msgid "Link"
|
2915 |
msgstr "Link"
|
2916 |
|
2917 |
-
#: views/b2s/metrics.php:
|
2918 |
msgid ""
|
2919 |
"Link clicks: A count of link clicks, to further content. (Available for "
|
2920 |
"Twitter)"
|
@@ -2922,10 +2995,10 @@ msgstr ""
|
|
2922 |
"Link-Aufrufe: Eine Aufzählung der Link-Klicks, zu weiterführendem Content. "
|
2923 |
"(Für Twitter verfügbar)"
|
2924 |
|
2925 |
-
#: views/b2s/
|
2926 |
-
#: views/b2s/
|
2927 |
-
#: includes/B2S/Post/Item.php:
|
2928 |
-
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:
|
2929 |
#: views/b2s/html/footer.php:160 views/b2s/widgets/calendar.php:72
|
2930 |
msgid "Link Post"
|
2931 |
msgstr "Link-Beitrag"
|
@@ -2934,45 +3007,45 @@ msgstr "Link-Beitrag"
|
|
2934 |
msgid "LinkedIn pages"
|
2935 |
msgstr "LinkedIn-Seiten"
|
2936 |
|
2937 |
-
#: views/b2s/support.php:
|
2938 |
msgid "LinkedIn Post Inspector"
|
2939 |
msgstr "LinkedIn Post Inspector"
|
2940 |
|
2941 |
-
#: views/b2s/dashboard.php:
|
2942 |
msgid "List"
|
2943 |
msgstr "Liste"
|
2944 |
|
2945 |
-
#: views/b2s/network.php:
|
2946 |
#: views/b2s/partials/post-edit-modal.php:42
|
2947 |
msgid "Load Best Times"
|
2948 |
msgstr "Lade beste Zeiten"
|
2949 |
|
2950 |
-
#: views/b2s/curation.php:
|
2951 |
msgid "Load data..."
|
2952 |
msgstr "Daten werden geladen..."
|
2953 |
|
2954 |
-
#: includes/B2S/Network/Item.php:
|
2955 |
msgid "Load default settings"
|
2956 |
msgstr "Lade Standardeinstellungen"
|
2957 |
|
2958 |
-
#: includes/B2S/Post/Item.php:
|
2959 |
msgid "load Draft"
|
2960 |
-
msgstr "Entwurf
|
2961 |
|
2962 |
-
#: views/b2s/ship.php:
|
2963 |
msgid "Load My Times Settings"
|
2964 |
msgstr "Meine Zeit-Einstellungen laden"
|
2965 |
|
2966 |
-
#: views/b2s/curation.draft.php:
|
2967 |
-
#: views/b2s/metrics.php:38 views/b2s/network.php:
|
2968 |
#: views/b2s/network.php:245 views/b2s/network.php:383
|
2969 |
-
#: views/b2s/network.php:462 views/b2s/post.approve.php:
|
2970 |
-
#: views/b2s/post.calendar.php:
|
2971 |
-
#: views/b2s/post.draft.php:
|
2972 |
-
#: views/b2s/post.notice.php:
|
2973 |
-
#: views/b2s/post.publish.php:
|
2974 |
-
#: views/b2s/repost.php:
|
2975 |
-
#: views/b2s/ship.php:
|
2976 |
#: views/prg/html/header.php:86
|
2977 |
msgid "Loading..."
|
2978 |
msgstr "Wird geladen..."
|
@@ -2981,7 +3054,7 @@ msgstr "Wird geladen..."
|
|
2981 |
msgid "Location"
|
2982 |
msgstr "Standort"
|
2983 |
|
2984 |
-
#: views/b2s/network.php:392 views/b2s/ship.php:
|
2985 |
#, php-format
|
2986 |
msgid ""
|
2987 |
"Login failed. Please check your login data for typos and please check your "
|
@@ -3006,8 +3079,8 @@ msgstr ""
|
|
3006 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
3007 |
"Benutzernamen und Dein Password!"
|
3008 |
|
3009 |
-
#: views/b2s/network.php:370 views/b2s/network.php:396 views/b2s/ship.php:
|
3010 |
-
#: views/b2s/ship.php:
|
3011 |
msgid ""
|
3012 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
3013 |
"on your profile."
|
@@ -3019,7 +3092,7 @@ msgstr ""
|
|
3019 |
msgid "Logout"
|
3020 |
msgstr "Ausloggen"
|
3021 |
|
3022 |
-
#: includes/B2S/Ship/Item.php:
|
3023 |
#, php-format
|
3024 |
msgid "max. %s Tags"
|
3025 |
msgstr "max. %s Tags"
|
@@ -3032,12 +3105,12 @@ msgstr "Nachricht"
|
|
3032 |
msgid "Meta Tags Settings for Posts and Pages"
|
3033 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
3034 |
|
3035 |
-
#: includes/Tools.php:
|
3036 |
msgid "Mexico"
|
3037 |
msgstr "Mexiko"
|
3038 |
|
3039 |
-
#: includes/B2S/Ship/Item.php:
|
3040 |
-
#: includes/B2S/Ship/Item.php:
|
3041 |
#: views/b2s/partials/post-edit-modal.php:82
|
3042 |
#: views/b2s/partials/post-edit-modal.php:83
|
3043 |
#: views/b2s/partials/post-edit-modal.php:84
|
@@ -3049,7 +3122,7 @@ msgstr "min"
|
|
3049 |
msgid "minutes"
|
3050 |
msgstr "Minuten"
|
3051 |
|
3052 |
-
#: includes/B2S/Network/Item.php:
|
3053 |
msgid ""
|
3054 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
3055 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
@@ -3074,7 +3147,7 @@ msgstr "Pin-Board bearbeiten"
|
|
3074 |
msgid "Modify subreddit"
|
3075 |
msgstr "Modify subreddit"
|
3076 |
|
3077 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
3078 |
msgid "Mon"
|
3079 |
msgstr "Mo"
|
3080 |
|
@@ -3082,19 +3155,19 @@ msgstr "Mo"
|
|
3082 |
msgid "Monday"
|
3083 |
msgstr "Montag"
|
3084 |
|
3085 |
-
#: includes/B2S/Ship/Item.php:
|
3086 |
msgid "Month"
|
3087 |
msgstr "Monat"
|
3088 |
|
3089 |
-
#: includes/B2S/Ship/Item.php:
|
3090 |
msgid "monthly"
|
3091 |
msgstr "monatlich"
|
3092 |
|
3093 |
-
#: includes/B2S/Ship/Item.php:
|
3094 |
msgid "Months"
|
3095 |
msgstr "Monate"
|
3096 |
|
3097 |
-
#: views/b2s/support.php:
|
3098 |
msgid "More"
|
3099 |
msgstr "Mehr"
|
3100 |
|
@@ -3102,12 +3175,12 @@ msgstr "Mehr"
|
|
3102 |
msgid "More Information"
|
3103 |
msgstr "Weitere Informationen"
|
3104 |
|
3105 |
-
#: views/b2s/autopost.php:
|
3106 |
#: includes/B2S/AutoPost/Item.php:161
|
3107 |
msgid "More information"
|
3108 |
msgstr "Zusätzliche Informationen"
|
3109 |
|
3110 |
-
#: views/b2s/curation.php:
|
3111 |
#, php-format
|
3112 |
msgid ""
|
3113 |
"More information on how to create a network selection in the guide <a "
|
@@ -3118,23 +3191,23 @@ msgstr ""
|
|
3118 |
"in dem Guide <a href=\"%s\" target=\"_blank\">\"Kann ich eine bestimmte "
|
3119 |
"Auswahl von Netzwerken speichern?\"</a>."
|
3120 |
|
3121 |
-
#: views/b2s/premium.php:
|
3122 |
msgid "More users and accounts"
|
3123 |
msgstr "Mehr Benutzer und Accounts"
|
3124 |
|
3125 |
-
#: views/b2s/metrics.php:
|
3126 |
msgid "Most Comments"
|
3127 |
msgstr "Die meisten Kommentare"
|
3128 |
|
3129 |
-
#: views/b2s/metrics.php:
|
3130 |
msgid "Most Impressions"
|
3131 |
msgstr "Die meisten Impressionen"
|
3132 |
|
3133 |
-
#: views/b2s/metrics.php:
|
3134 |
msgid "Most Likes"
|
3135 |
msgstr "Die meisten Likes"
|
3136 |
|
3137 |
-
#: views/b2s/metrics.php:
|
3138 |
msgid "Most Reshares"
|
3139 |
msgstr "Die meisten Re-Shares"
|
3140 |
|
@@ -3158,11 +3231,11 @@ msgstr "Frau"
|
|
3158 |
msgid "My Profile"
|
3159 |
msgstr "Mein Profil"
|
3160 |
|
3161 |
-
#: includes/B2S/Network/Item.php:68 includes/B2S/Network/Item.php:
|
3162 |
msgid "My profile"
|
3163 |
msgstr "Mein Profil"
|
3164 |
|
3165 |
-
#: includes/B2S/Network/Item.php:
|
3166 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3167 |
#: views/prg/html/form.php:163
|
3168 |
msgid "Name"
|
@@ -3172,16 +3245,16 @@ msgstr "Name"
|
|
3172 |
msgid "Need more?"
|
3173 |
msgstr "Benötigst Du mehr?"
|
3174 |
|
3175 |
-
#: views/b2s/curation.php:
|
3176 |
-
#: views/b2s/post.calendar.php:
|
3177 |
msgid "Need to schedule your posts?"
|
3178 |
msgstr "Du möchtest Deine Beiträge planen?"
|
3179 |
|
3180 |
-
#: views/b2s/support.php:
|
3181 |
msgid "Needed"
|
3182 |
msgstr "Erforderlich"
|
3183 |
|
3184 |
-
#: includes/Tools.php:
|
3185 |
msgid "Netherlands"
|
3186 |
msgstr "Niederlande"
|
3187 |
|
@@ -3189,7 +3262,7 @@ msgstr "Niederlande"
|
|
3189 |
msgid "Network collection"
|
3190 |
msgstr "Netzwerkgruppierung"
|
3191 |
|
3192 |
-
#: views/b2s/ship.php:
|
3193 |
msgid "network connected"
|
3194 |
msgstr "Netzwerk verbunden"
|
3195 |
|
@@ -3197,28 +3270,28 @@ msgstr "Netzwerk verbunden"
|
|
3197 |
msgid "Network connections"
|
3198 |
msgstr "Netzwerkverbindungen"
|
3199 |
|
3200 |
-
#: includes/B2S/Ship/Item.php:
|
3201 |
msgid "Network defines image by link"
|
3202 |
msgstr "Netzwerk wählt selber das Bild aus"
|
3203 |
|
3204 |
-
#: includes/B2S/Ship/Item.php:
|
3205 |
msgid "Network does not support emojis"
|
3206 |
msgstr "Netzwerk unterstützt keine Emojis"
|
3207 |
|
3208 |
-
#: includes/B2S/Ship/Item.php:
|
3209 |
msgid "Network does not support GIFs"
|
3210 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
3211 |
|
3212 |
-
#: includes/B2S/Ship/Item.php:
|
3213 |
msgid "Network does not support image for pages"
|
3214 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
3215 |
|
3216 |
-
#: includes/B2S/Ship/Item.php:
|
3217 |
msgid "Network does not support image for profiles"
|
3218 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
3219 |
|
3220 |
-
#: includes/B2S/Network/Item.php:
|
3221 |
-
#: includes/B2S/Network/Item.php:
|
3222 |
msgid "Network limit"
|
3223 |
msgstr "Netzwerkbegrenzung"
|
3224 |
|
@@ -3227,17 +3300,16 @@ msgstr "Netzwerkbegrenzung"
|
|
3227 |
msgid "Network settings"
|
3228 |
msgstr "Netzwerkeinstellungen"
|
3229 |
|
3230 |
-
#: includes/Loader.php:
|
3231 |
msgid "Networks"
|
3232 |
msgstr "Netzwerke"
|
3233 |
|
3234 |
-
#: includes/Loader.php:917 views/b2s/
|
3235 |
-
#: views/b2s/support.php:22
|
3236 |
msgid "NEW"
|
3237 |
msgstr "Neu"
|
3238 |
|
3239 |
-
#: includes/B2S/Network/Item.php:
|
3240 |
-
#: includes/B2S/Network/Item.php:
|
3241 |
msgid "New"
|
3242 |
msgstr "Neu"
|
3243 |
|
@@ -3245,7 +3317,7 @@ msgstr "Neu"
|
|
3245 |
msgid "new posts"
|
3246 |
msgstr "Neue Beiträge"
|
3247 |
|
3248 |
-
#: includes/Tools.php:
|
3249 |
msgid "New Zealand"
|
3250 |
msgstr "Neuseeland"
|
3251 |
|
@@ -3253,22 +3325,22 @@ msgstr "Neuseeland"
|
|
3253 |
msgid "newest first"
|
3254 |
msgstr "neuste zuerst"
|
3255 |
|
3256 |
-
#: includes/B2S/Post/Item.php:
|
3257 |
#, php-format
|
3258 |
msgid "next share by %s"
|
3259 |
msgstr "wird als nächstes von %s geteilt"
|
3260 |
|
3261 |
-
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:
|
3262 |
-
#: views/b2s/metrics.php:
|
3263 |
-
#: views/b2s/post.approve.php:
|
3264 |
-
#: views/b2s/post.draft.php:
|
3265 |
-
#: views/b2s/post.publish.php:
|
3266 |
-
#: views/b2s/repost.php:
|
3267 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
3268 |
msgid "NO"
|
3269 |
msgstr "NEIN"
|
3270 |
|
3271 |
-
#: views/b2s/curation.php:
|
3272 |
msgid ""
|
3273 |
"No connected networks. Please make sure to connect at least one social media "
|
3274 |
"account."
|
@@ -3277,11 +3349,11 @@ msgstr ""
|
|
3277 |
"mindestens einen Social Media Account in Blog2Social unter Netzwerke "
|
3278 |
"verbunden hast."
|
3279 |
|
3280 |
-
#: views/b2s/html/header.php:
|
3281 |
msgid "No credit card required"
|
3282 |
msgstr "Keine Kreditkarte erforderlich"
|
3283 |
|
3284 |
-
#: includes/Tools.php:
|
3285 |
msgid "No emojis found"
|
3286 |
msgstr "Keine Ergebnisse"
|
3287 |
|
@@ -3289,11 +3361,11 @@ msgstr "Keine Ergebnisse"
|
|
3289 |
msgid "No images are included in your post."
|
3290 |
msgstr "In dem Beitrag sind keine Bilder hinterlegt"
|
3291 |
|
3292 |
-
#: views/b2s/curation.php:
|
3293 |
msgid "No link preview available. Please check your link."
|
3294 |
msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
|
3295 |
|
3296 |
-
#: views/b2s/html/header.php:
|
3297 |
msgid "No posts found. Please try again with different filter options."
|
3298 |
msgstr ""
|
3299 |
"Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen "
|
@@ -3303,15 +3375,15 @@ msgstr ""
|
|
3303 |
msgid "no URL Shortener"
|
3304 |
msgstr "kein URL Shortener"
|
3305 |
|
3306 |
-
#: views/b2s/premium.php:
|
3307 |
msgid "No User found"
|
3308 |
msgstr "Keinen Blog-Nutzer gefunden"
|
3309 |
|
3310 |
-
#: views/b2s/html/header.php:
|
3311 |
msgid "Nope, maybe later"
|
3312 |
msgstr "Nein, vielleicht später"
|
3313 |
|
3314 |
-
#: includes/Tools.php:
|
3315 |
msgid "Norway"
|
3316 |
msgstr "Norwegen"
|
3317 |
|
@@ -3319,11 +3391,11 @@ msgstr "Norwegen"
|
|
3319 |
msgid "not yet shared"
|
3320 |
msgstr "noch nicht geteilt"
|
3321 |
|
3322 |
-
#: views/b2s/ship.php:
|
3323 |
msgid "Note: "
|
3324 |
msgstr "Hinweis: "
|
3325 |
|
3326 |
-
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:
|
3327 |
msgid ""
|
3328 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
3329 |
"Networks do not allow postings from local installations."
|
@@ -3331,11 +3403,11 @@ msgstr ""
|
|
3331 |
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
3332 |
"Fragen wende Dich bitte an unseren Support."
|
3333 |
|
3334 |
-
#: views/b2s/dashboard.php:
|
3335 |
msgid "Notification"
|
3336 |
msgstr "Benachrichtigung"
|
3337 |
|
3338 |
-
#: includes/Loader.php:917 views/b2s/html/
|
3339 |
msgid "Notifications"
|
3340 |
msgstr "Benachrichtigungen"
|
3341 |
|
@@ -3344,9 +3416,9 @@ msgstr "Benachrichtigungen"
|
|
3344 |
msgid "Number"
|
3345 |
msgstr "Nummer"
|
3346 |
|
3347 |
-
#: views/b2s/metrics.php:
|
3348 |
-
#: views/b2s/post.notice.php:
|
3349 |
-
#: views/b2s/post.sched.php:
|
3350 |
#: views/b2s/widgets/posts.php:63
|
3351 |
msgid "Number of entries"
|
3352 |
msgstr "Anzahl der Einträge"
|
@@ -3355,39 +3427,39 @@ msgstr "Anzahl der Einträge"
|
|
3355 |
msgid "Number of posts"
|
3356 |
msgstr "Anzahl der Beiträge"
|
3357 |
|
3358 |
-
#: includes/B2S/Ship/Item.php:
|
3359 |
msgid "Number of repeats"
|
3360 |
msgstr "Anzahl der Wiederholungen"
|
3361 |
|
3362 |
-
#: includes/Tools.php:
|
3363 |
msgid "Objects"
|
3364 |
msgstr "Objekte"
|
3365 |
|
3366 |
-
#: includes/B2S/Ship/Item.php:
|
3367 |
msgid "Offer"
|
3368 |
msgstr "Angebot"
|
3369 |
|
3370 |
-
#: includes/B2S/Ship/Item.php:
|
3371 |
-
#: includes/B2S/Ship/Item.php:
|
3372 |
-
#: includes/B2S/Ship/Item.php:
|
3373 |
msgid "OG Meta description"
|
3374 |
msgstr "OG Beschreibung"
|
3375 |
|
3376 |
-
#: includes/B2S/Ship/Item.php:
|
3377 |
-
#: includes/B2S/Ship/Item.php:
|
3378 |
-
#: includes/B2S/Ship/Item.php:
|
3379 |
msgid "OG Meta title"
|
3380 |
msgstr "OG Titel"
|
3381 |
|
3382 |
-
#: views/b2s/html/header.php:
|
3383 |
msgid "OK"
|
3384 |
msgstr "OK"
|
3385 |
|
3386 |
-
#: views/b2s/metrics.php:
|
3387 |
msgid "Ok, I want to get started!"
|
3388 |
msgstr "Verstanden, ich möchte loslegen!"
|
3389 |
|
3390 |
-
#: views/b2s/html/header.php:
|
3391 |
msgid "Ok, you deserve it"
|
3392 |
msgstr "Okay, ihr habt euch das verdient"
|
3393 |
|
@@ -3403,12 +3475,12 @@ msgstr " auf"
|
|
3403 |
msgid "on Blog"
|
3404 |
msgstr "auf dem Blog"
|
3405 |
|
3406 |
-
#: views/b2s/ship.php:
|
3407 |
-
#: includes/B2S/Post/Item.php:
|
3408 |
msgid "on blog"
|
3409 |
msgstr "auf dem Blog"
|
3410 |
|
3411 |
-
#: views/b2s/metrics.php:
|
3412 |
msgid "Only active"
|
3413 |
msgstr "Aktive Beiträge"
|
3414 |
|
@@ -3417,18 +3489,18 @@ msgstr "Aktive Beiträge"
|
|
3417 |
msgid "only posts that have been shared no more than %s times"
|
3418 |
msgstr "nur Beiträge die maximal %s mal geteilt wurden"
|
3419 |
|
3420 |
-
#: views/b2s/premium.php:
|
3421 |
msgid "Open Graph and Twitter Card Tags"
|
3422 |
msgstr "Open Graph und Twitter Card Tags"
|
3423 |
|
3424 |
-
#: includes/Loader.php:
|
3425 |
msgid "or"
|
3426 |
msgstr "oder"
|
3427 |
|
3428 |
-
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:
|
3429 |
-
#: views/b2s/curation.php:
|
3430 |
-
#: views/b2s/post.calendar.php:
|
3431 |
-
#: views/b2s/ship.php:
|
3432 |
#: views/b2s/html/footer.php:75 views/b2s/html/footer.php:93
|
3433 |
#: views/b2s/html/footer.php:111 views/b2s/html/footer.php:140
|
3434 |
#: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
|
@@ -3448,38 +3520,38 @@ msgstr ""
|
|
3448 |
msgid "or higher"
|
3449 |
msgstr "oder höher"
|
3450 |
|
3451 |
-
#: views/b2s/ship.php:
|
3452 |
msgid "Overwrite Draft"
|
3453 |
msgstr "Entwurf überschreiben"
|
3454 |
|
3455 |
-
#: includes/B2S/Ship/Item.php:
|
3456 |
msgid "own period"
|
3457 |
msgstr "Eigener Zeitraum"
|
3458 |
|
3459 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
3460 |
-
#: includes/B2S/Network/Item.php:
|
3461 |
msgid "Page"
|
3462 |
msgstr "Seite"
|
3463 |
|
3464 |
-
#: views/b2s/premium.php:
|
3465 |
msgid "Pages and groups"
|
3466 |
msgstr "Seiten und Gruppen"
|
3467 |
|
3468 |
-
#: views/b2s/network.php:404 views/b2s/ship.php:
|
3469 |
msgid "Password"
|
3470 |
msgstr "Passwort"
|
3471 |
|
3472 |
-
#: includes/B2S/Network/Item.php:
|
3473 |
#: includes/B2S/Ship/Navbar.php:91
|
3474 |
msgid "Personal"
|
3475 |
msgstr "Privat"
|
3476 |
|
3477 |
-
#: views/b2s/autopost.php:
|
3478 |
#: includes/B2S/Settings/Item.php:57
|
3479 |
msgid "Personal Time Zone"
|
3480 |
msgstr "Persönliche Zeitzone"
|
3481 |
|
3482 |
-
#: includes/Tools.php:
|
3483 |
msgid "Philippines"
|
3484 |
msgstr "Philippinen"
|
3485 |
|
@@ -3492,15 +3564,15 @@ msgstr "Telefonnummer"
|
|
3492 |
msgid "Photo Post"
|
3493 |
msgstr "Bild-Beitrag"
|
3494 |
|
3495 |
-
#: views/b2s/network.php:393 views/b2s/ship.php:
|
3496 |
msgid "Pinterest has rejected the connection to your blog"
|
3497 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
3498 |
|
3499 |
-
#: views/b2s/support.php:
|
3500 |
msgid "Pinterest Rich Pins Validator"
|
3501 |
msgstr "Pinterest Rich Pins Validator"
|
3502 |
|
3503 |
-
#: views/b2s/html/sidebar.php:
|
3504 |
msgid "Plans & Prices"
|
3505 |
msgstr "Tarife & Preise"
|
3506 |
|
@@ -3544,12 +3616,12 @@ msgstr ""
|
|
3544 |
"Beiträgen den “no-cache=1” Parameter an die Beitrags-URL, um sicherzustellen,"
|
3545 |
" dass das Netzwerk immer die aktuellen Meta Daten Deines Blogbeitrags zieht."
|
3546 |
|
3547 |
-
#: views/b2s/curation.php:
|
3548 |
msgid "Please enter a valid link"
|
3549 |
msgstr "Bitte gib einen gültigen Link ein"
|
3550 |
|
3551 |
-
#: includes/B2S/Ship/Item.php:
|
3552 |
-
#: includes/B2S/Ship/Item.php:
|
3553 |
msgid ""
|
3554 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3555 |
"allowed to post identical or substantially similar content to multiple "
|
@@ -3560,7 +3632,7 @@ msgstr ""
|
|
3560 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3561 |
"mehreren Accounts zu posten."
|
3562 |
|
3563 |
-
#: views/b2s/autopost.php:
|
3564 |
msgid ""
|
3565 |
"Please make sure that each WordPress user or author whose posts should be "
|
3566 |
"auto-posted"
|
@@ -3592,7 +3664,7 @@ msgstr ""
|
|
3592 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
3593 |
"werden mit dem Posting-ID-Link geteilt."
|
3594 |
|
3595 |
-
#: views/b2s/network.php:640 views/b2s/ship.php:
|
3596 |
#, php-format
|
3597 |
msgid ""
|
3598 |
"Please make sure to log in with your account which manages your groups and "
|
@@ -3603,7 +3675,7 @@ msgstr ""
|
|
3603 |
"verwaltet, und <a href=\"%s\" target=\"_blank\">folgen dieser Anleitung, um "
|
3604 |
"alle Deine Gruppen auszuwählen</a>."
|
3605 |
|
3606 |
-
#: views/b2s/network.php:621 views/b2s/ship.php:
|
3607 |
#, php-format
|
3608 |
msgid ""
|
3609 |
"Please make sure to log in with your account which manages your pages and <a "
|
@@ -3613,7 +3685,7 @@ msgstr ""
|
|
3613 |
"Deine Seiten verwaltet und <a href=\"%s\" target=\"_blank\">folge diesem "
|
3614 |
"Guide, um alle Deine Seiten auswählen zu können</a>."
|
3615 |
|
3616 |
-
#: views/b2s/network.php:386 views/b2s/ship.php:
|
3617 |
msgid ""
|
3618 |
"Please make sure to use your original Pinterest login data (email and "
|
3619 |
"password). Social Login via Facebook or Google login data will not work here."
|
@@ -3629,6 +3701,10 @@ msgstr ""
|
|
3629 |
msgid "Please Note"
|
3630 |
msgstr "Hinweis"
|
3631 |
|
|
|
|
|
|
|
|
|
3632 |
#: includes/B2S/Settings/Item.php:189
|
3633 |
msgid ""
|
3634 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
@@ -3637,7 +3713,7 @@ msgstr ""
|
|
3637 |
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
3638 |
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
3639 |
|
3640 |
-
#: includes/B2S/Ship/Item.php:
|
3641 |
msgid ""
|
3642 |
"Please note: Google will shut down Google+ for all private accounts "
|
3643 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3677,7 +3753,7 @@ msgstr ""
|
|
3677 |
"Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter "
|
3678 |
"Deine aktuellen Änderungen aktualisiert."
|
3679 |
|
3680 |
-
#: views/b2s/network.php:678 views/b2s/ship.php:
|
3681 |
msgid ""
|
3682 |
"Please note: In order to connect your Instagram account to Blog2Social, "
|
3683 |
"please ensure the following:"
|
@@ -3685,7 +3761,7 @@ msgstr ""
|
|
3685 |
"Hinweis: Damit Du Dein Instagram-Konto mit Blog2Social verbinden kannst, "
|
3686 |
"stelle bitte folgendes sicher:"
|
3687 |
|
3688 |
-
#: views/b2s/metrics.php:
|
3689 |
msgid ""
|
3690 |
"Please note: The metrics for the social media posts are updated every 24 "
|
3691 |
"hours. The social media posts are monitored for 30 days. After 30 days, the "
|
@@ -3697,7 +3773,7 @@ msgstr ""
|
|
3697 |
"Tagen wird der letzte Stand dauerhaft festgehalten und ist jederzeit im "
|
3698 |
"Archiv abrufbar."
|
3699 |
|
3700 |
-
#: includes/B2S/Ship/Item.php:
|
3701 |
msgid ""
|
3702 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3703 |
"Changes may not be immediately visible on Twitter."
|
@@ -3717,7 +3793,7 @@ msgstr ""
|
|
3717 |
"Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt die "
|
3718 |
"Bildformate JPG, PNG, WEBP und GIF. "
|
3719 |
|
3720 |
-
#: includes/B2S/Ship/Item.php:
|
3721 |
msgid ""
|
3722 |
"Please note: XING allows identical posts to be published only once within a "
|
3723 |
"group and no more than three times across different groups."
|
@@ -3726,7 +3802,7 @@ msgstr ""
|
|
3726 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
3727 |
"Gruppen."
|
3728 |
|
3729 |
-
#: includes/B2S/Ship/Item.php:
|
3730 |
msgid ""
|
3731 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3732 |
"days. Changes may not be immediately visible on XING."
|
@@ -3735,7 +3811,7 @@ msgstr ""
|
|
3735 |
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
3736 |
"dargestellt."
|
3737 |
|
3738 |
-
#: views/b2s/autopost.php:
|
3739 |
#, php-format
|
3740 |
msgid ""
|
3741 |
"Please note: You can also set up your own \"best times\". You will learn how "
|
@@ -3745,14 +3821,14 @@ msgstr ""
|
|
3745 |
"Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
|
3746 |
"geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
|
3747 |
|
3748 |
-
#: includes/B2S/Ship/Save.php:
|
3749 |
msgid ""
|
3750 |
"Please note: You post has to be marked as public to be posted in a group."
|
3751 |
msgstr ""
|
3752 |
"Um in eine Gruppe zu teilen, muss Dein Beitrag auf Öffentlich gestellt "
|
3753 |
"werden."
|
3754 |
|
3755 |
-
#: includes/B2S/Ship/Item.php:
|
3756 |
msgid ""
|
3757 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3758 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3796,7 +3872,7 @@ msgid "Please re-authorize your account with Blog2Social and try again"
|
|
3796 |
msgstr ""
|
3797 |
"Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
|
3798 |
|
3799 |
-
#: includes/B2S/Post/Item.php:
|
3800 |
msgid "Please see"
|
3801 |
msgstr "siehe"
|
3802 |
|
@@ -3812,17 +3888,17 @@ msgstr "Bitte wählen Sie einen Post Type aus"
|
|
3812 |
msgid "Please select a social media network"
|
3813 |
msgstr "Bitte wählen Sie ein Netzwerk aus"
|
3814 |
|
3815 |
-
#: views/b2s/network.php:394 views/b2s/ship.php:
|
3816 |
msgid "Please select your correct server location and connect again."
|
3817 |
msgstr ""
|
3818 |
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
|
3819 |
|
3820 |
-
#: includes/B2S/Ship/Save.php:
|
3821 |
msgid "Please share your post now"
|
3822 |
msgstr "Bitte teile Deinen Beitrag jetzt."
|
3823 |
|
3824 |
-
#: includes/B2S/Network/Item.php:
|
3825 |
-
#: includes/B2S/Network/Item.php:
|
3826 |
msgid "please upgrade"
|
3827 |
msgstr "Bitte upgraden"
|
3828 |
|
@@ -3836,11 +3912,11 @@ msgstr ""
|
|
3836 |
msgid "Plugin Warnings:"
|
3837 |
msgstr "Plugin Warnungen:"
|
3838 |
|
3839 |
-
#: includes/Tools.php:
|
3840 |
msgid "Poland"
|
3841 |
msgstr "Polen"
|
3842 |
|
3843 |
-
#: includes/Tools.php:
|
3844 |
msgid "Portugal"
|
3845 |
msgstr "Portugal"
|
3846 |
|
@@ -3865,24 +3941,28 @@ msgstr "Post-Inhalt"
|
|
3865 |
msgid "Post every"
|
3866 |
msgstr "Poste alle"
|
3867 |
|
3868 |
-
#: views/b2s/dashboard.php:
|
3869 |
-
#: views/b2s/post.sched.php:
|
3870 |
msgid "Post Format"
|
3871 |
msgstr "Postformat"
|
3872 |
|
3873 |
-
#: includes/B2S/Post/Item.php:
|
3874 |
msgid "post format"
|
3875 |
msgstr "Postformat"
|
3876 |
|
3877 |
-
#: views/b2s/metrics.php:
|
3878 |
msgid "Post Interactions"
|
3879 |
msgstr "Beitrags-Interaktionen"
|
3880 |
|
3881 |
-
#: views/b2s/html/header.php:
|
3882 |
msgid "Post is published successfully on your blog!"
|
3883 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog veröffentlicht!"
|
3884 |
|
3885 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
3886 |
msgid "Post Metrics"
|
3887 |
msgstr "Beitrags-Kennzahlen"
|
3888 |
|
@@ -3894,18 +3974,18 @@ msgstr ""
|
|
3894 |
"Veröffentliche Posts auf LinkedIn-Seiten, XING-Seiten und -Gruppen sowie "
|
3895 |
"Facebook-Seiten und -Gruppen"
|
3896 |
|
3897 |
-
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:
|
3898 |
-
#: views/b2s/dashboard.php:
|
3899 |
-
#: views/b2s/ship.php:
|
3900 |
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
|
3901 |
#: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
|
3902 |
#: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
|
3903 |
#: views/b2s/html/footer.php:452 views/b2s/html/footer.php:545
|
3904 |
-
#: views/b2s/html/header.php:
|
3905 |
msgid "Post on pages and groups"
|
3906 |
msgstr "Poste auf Seiten und in Gruppen"
|
3907 |
|
3908 |
-
#: views/b2s/settings.php:
|
3909 |
msgid "Post Templates"
|
3910 |
msgstr "Beitragsvorlagen"
|
3911 |
|
@@ -3913,7 +3993,7 @@ msgstr "Beitragsvorlagen"
|
|
3913 |
msgid "Post Types"
|
3914 |
msgstr "Posttypen"
|
3915 |
|
3916 |
-
#: views/b2s/html/header.php:
|
3917 |
msgid "Post was scheduled successfully on your blog!"
|
3918 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
|
3919 |
|
@@ -3922,7 +4002,7 @@ msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
|
|
3922 |
msgid "Posting to social media pages and groups in Facebook"
|
3923 |
msgstr "Veröffentlichung auf Social Media Seiten und Gruppen in Facebook"
|
3924 |
|
3925 |
-
#: views/b2s/metrics.php:
|
3926 |
msgid "Posts"
|
3927 |
msgstr "Posts"
|
3928 |
|
@@ -3966,11 +4046,11 @@ msgstr ""
|
|
3966 |
"Presseportalen und Nachrichtenseiten für die Veröffentlichung Deines "
|
3967 |
"Beitrags auswählen."
|
3968 |
|
3969 |
-
#: includes/Loader.php:1034 includes/Loader.php:
|
3970 |
msgid "PR-Service"
|
3971 |
msgstr "PR-Service"
|
3972 |
|
3973 |
-
#: includes/Loader.php:1038 includes/Loader.php:
|
3974 |
msgid "PREMIUM"
|
3975 |
msgstr "PREMIUM"
|
3976 |
|
@@ -3978,7 +4058,7 @@ msgstr "PREMIUM"
|
|
3978 |
msgid "Premium"
|
3979 |
msgstr "Premium"
|
3980 |
|
3981 |
-
#: views/b2s/premium.php:
|
3982 |
msgid "Premium support"
|
3983 |
msgstr "Premium Support"
|
3984 |
|
@@ -3986,20 +4066,20 @@ msgstr "Premium Support"
|
|
3986 |
msgid "Press"
|
3987 |
msgstr "Presse"
|
3988 |
|
3989 |
-
#: includes/B2S/Network/Item.php:
|
3990 |
-
#: includes/B2S/Network/Item.php:
|
3991 |
-
#: includes/B2S/Network/Item.php:
|
3992 |
-
#: includes/B2S/Network/Item.php:
|
3993 |
-
#: includes/B2S/Network/Item.php:
|
3994 |
-
#: includes/B2S/Network/Item.php:
|
3995 |
-
#: includes/B2S/Network/Item.php:
|
3996 |
-
#: includes/B2S/Network/Item.php:
|
3997 |
-
#: includes/B2S/Network/Item.php:
|
3998 |
-
#: includes/B2S/Network/Item.php:
|
3999 |
msgid "Preview"
|
4000 |
msgstr "Vorschau"
|
4001 |
|
4002 |
-
#: views/b2s/settings.php:
|
4003 |
msgid ""
|
4004 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
4005 |
"website/ blog."
|
@@ -4011,13 +4091,13 @@ msgstr ""
|
|
4011 |
msgid "Privacy Policy"
|
4012 |
msgstr "Datenschutzerklärung"
|
4013 |
|
4014 |
-
#: views/b2s/
|
4015 |
-
#: includes/B2S/Network/Item.php:
|
4016 |
-
#: includes/B2S/
|
4017 |
-
#: includes/B2S/Ship/Item.php:
|
4018 |
-
#: includes/B2S/Ship/Item.php:
|
4019 |
-
#: includes/B2S/Ship/
|
4020 |
-
#: includes/B2S/Ship/Portale.php:65
|
4021 |
msgid "PRO"
|
4022 |
msgstr "PRO"
|
4023 |
|
@@ -4030,11 +4110,11 @@ msgid "Product"
|
|
4030 |
msgstr "Produkt"
|
4031 |
|
4032 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
4033 |
-
#: includes/B2S/Network/Item.php:
|
4034 |
msgid "Profile"
|
4035 |
msgstr "Profil"
|
4036 |
|
4037 |
-
#: views/b2s/ship.php:
|
4038 |
msgid "Profiles | Pages | Groups"
|
4039 |
msgstr "Profile | Seiten | Gruppen"
|
4040 |
|
@@ -4054,19 +4134,19 @@ msgstr "Beitrag über PR-Gateway veröffentlichen"
|
|
4054 |
msgid "publish with a delay of"
|
4055 |
msgstr "Veröffentliche mit einer Verzögerung von"
|
4056 |
|
4057 |
-
#: views/b2s/curation.php:
|
4058 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:
|
4059 |
-
#: includes/B2S/Post/Item.php:
|
4060 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
4061 |
#: views/b2s/widgets/calendar.php:44
|
4062 |
msgid "published"
|
4063 |
msgstr "veröffentlicht"
|
4064 |
|
4065 |
-
#: views/b2s/metrics.php:
|
4066 |
msgid "Published On"
|
4067 |
msgstr "Veröffentlicht am"
|
4068 |
|
4069 |
-
#: views/b2s/metrics.php:
|
4070 |
msgid "Published Posts"
|
4071 |
msgstr "Veröffentlichte Beiträge"
|
4072 |
|
@@ -4078,37 +4158,37 @@ msgstr "veröffentlichte Beiträge"
|
|
4078 |
msgid "Queue"
|
4079 |
msgstr "Warteschlange"
|
4080 |
|
4081 |
-
#: includes/Notice.php:19 views/b2s/html/sidebar.php:
|
4082 |
msgid "RATE BLOG2SOCIAL"
|
4083 |
msgstr "Blog2Social jetzt bewerten"
|
4084 |
|
4085 |
-
#: views/b2s/html/header.php:
|
4086 |
msgid "RATE IT!"
|
4087 |
msgstr "BEWERTE ES!"
|
4088 |
|
4089 |
-
#: includes/Notice.php:17 views/b2s/html/sidebar.php:
|
4090 |
msgid "Rate it!"
|
4091 |
msgstr "Bewerte uns!"
|
4092 |
|
4093 |
-
#: includes/B2S/Post/Item.php:
|
4094 |
msgid "Re-Share"
|
4095 |
msgstr "Wiederholt geteilt"
|
4096 |
|
4097 |
-
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:
|
4098 |
msgid "re-share"
|
4099 |
msgstr "erneut teilen"
|
4100 |
|
4101 |
-
#: includes/Loader.php:917 views/b2s/settings.php:
|
4102 |
-
#: views/b2s/html/
|
4103 |
msgid "Re-Share Posts"
|
4104 |
msgstr "Beiträge wiederholt teilen"
|
4105 |
|
4106 |
-
#: views/b2s/ship.php:
|
4107 |
msgid "Re-share this Post"
|
4108 |
msgstr "Diesen Beitrag nochmal teilen"
|
4109 |
|
4110 |
-
#: views/b2s/curation.php:
|
4111 |
-
#: includes/B2S/Metrics/Item.php:
|
4112 |
msgid "Re-share this post"
|
4113 |
msgstr "Diesen Beitrag nochmal teilen"
|
4114 |
|
@@ -4118,7 +4198,7 @@ msgstr ""
|
|
4118 |
"Teile Deinen Blog-Content automatisiert und wiederholt auf Deinen Social-"
|
4119 |
"Media-Kanälen."
|
4120 |
|
4121 |
-
#: views/b2s/metrics.php:
|
4122 |
msgid ""
|
4123 |
"Re-Shares/ Re-Tweets: A count of how many times the post has been reshared "
|
4124 |
"or retweeted."
|
@@ -4126,7 +4206,7 @@ msgstr ""
|
|
4126 |
"Re-Shares/ Re-Tweets: Eine Aufzählung, wie oft der Beitrag von einem "
|
4127 |
"Follower erneut geteilt oder retweetet wurde."
|
4128 |
|
4129 |
-
#: includes/B2S/Ship/Item.php:
|
4130 |
msgid "Read more"
|
4131 |
msgstr "Weiterlesen"
|
4132 |
|
@@ -4134,15 +4214,15 @@ msgstr "Weiterlesen"
|
|
4134 |
msgid "Rebrandly"
|
4135 |
msgstr "Rebrandly"
|
4136 |
|
4137 |
-
#: includes/Tools.php:
|
4138 |
msgid "Recently Used"
|
4139 |
msgstr "Zuletzt verwendet"
|
4140 |
|
4141 |
-
#: includes/B2S/Network/Item.php:
|
4142 |
msgid "recommended length"
|
4143 |
msgstr "Empfohlene Länge"
|
4144 |
|
4145 |
-
#: views/b2s/ship.php:
|
4146 |
msgid "refresh authorization"
|
4147 |
msgstr "Autorisierung aktualisieren"
|
4148 |
|
@@ -4150,29 +4230,29 @@ msgstr "Autorisierung aktualisieren"
|
|
4150 |
msgid "Register here to open your PR-Gateway account."
|
4151 |
msgstr "Registriere Dich hier, um ein PR-Gateway-Konto zu eröffnen."
|
4152 |
|
4153 |
-
#: views/b2s/premium.php:
|
4154 |
msgid "Regular updates and priority support per e-mail and phone."
|
4155 |
msgstr "Regelmäßige Updates und bevorzugter Support per E-Mail und Telefon."
|
4156 |
|
4157 |
-
#: views/b2s/support.php:
|
4158 |
msgid "reload"
|
4159 |
msgstr "neu laden"
|
4160 |
|
4161 |
-
#: includes/B2S/Ship/Item.php:
|
4162 |
msgid "Repeats"
|
4163 |
msgstr "Wiederholen"
|
4164 |
|
4165 |
-
#: includes/B2S/Ship/Item.php:
|
4166 |
msgid "Repeats every (days)"
|
4167 |
msgstr "Wiederholt sich alle X Tage"
|
4168 |
|
4169 |
-
#: views/b2s/support.php:
|
4170 |
msgid "Reporting"
|
4171 |
msgstr "Reporting"
|
4172 |
|
4173 |
-
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:
|
4174 |
-
#: views/b2s/dashboard.php:
|
4175 |
-
#: views/b2s/ship.php:
|
4176 |
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
|
4177 |
#: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
|
4178 |
#: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
|
@@ -4192,7 +4272,7 @@ msgstr ""
|
|
4192 |
"Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
|
4193 |
"und geplanten Social Media Beiträge."
|
4194 |
|
4195 |
-
#: views/b2s/html/header.php:
|
4196 |
msgid "Reporting with links to all published social media posts"
|
4197 |
msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
|
4198 |
|
@@ -4201,15 +4281,15 @@ msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
|
|
4201 |
msgid "Reporting with links to already published posts"
|
4202 |
msgstr "Reporting mit Links zu bereits veröffentlichten Beiträgen"
|
4203 |
|
4204 |
-
#: includes/B2S/Ship/Item.php:
|
4205 |
msgid "Request"
|
4206 |
msgstr "Anfrage"
|
4207 |
|
4208 |
-
#: includes/B2S/Ship/Item.php:
|
4209 |
msgid "required"
|
4210 |
msgstr "erforderlich"
|
4211 |
|
4212 |
-
#: views/b2s/ship.php:
|
4213 |
msgid "requires image"
|
4214 |
msgstr "Bild benötigt"
|
4215 |
|
@@ -4230,8 +4310,8 @@ msgstr "Passwort zurücksetzen"
|
|
4230 |
msgid "resolve conflict"
|
4231 |
msgstr "Konflikt beheben"
|
4232 |
|
4233 |
-
#: includes/B2S/Post/Item.php:
|
4234 |
-
#: includes/B2S/Ship/Save.php:
|
4235 |
msgid "Retweet"
|
4236 |
msgstr "Retweet"
|
4237 |
|
@@ -4247,23 +4327,23 @@ msgstr ""
|
|
4247 |
"verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
|
4248 |
"aus Deinem WordPress heraus planen."
|
4249 |
|
4250 |
-
#: includes/Tools.php:
|
4251 |
msgid "Romania"
|
4252 |
msgstr "Rumänien"
|
4253 |
|
4254 |
-
#: views/b2s/premium.php:
|
4255 |
msgid "RSS import & auto-post"
|
4256 |
msgstr "RSS-Import & Auto-Poster"
|
4257 |
|
4258 |
-
#: includes/Tools.php:
|
4259 |
msgid "Russia"
|
4260 |
msgstr "Russland"
|
4261 |
|
4262 |
-
#: views/b2s/support.php:
|
4263 |
msgid "Sales Support"
|
4264 |
msgstr "Kontaktiere unser Vertriebsteam"
|
4265 |
|
4266 |
-
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:
|
4267 |
msgid "Sat"
|
4268 |
msgstr "Sa"
|
4269 |
|
@@ -4275,12 +4355,17 @@ msgstr "Samstag"
|
|
4275 |
msgid "Save"
|
4276 |
msgstr " Speichern"
|
4277 |
|
4278 |
-
#: views/b2s/network.php:251 views/b2s/settings.php:
|
4279 |
-
#: includes/B2S/Network/Item.php:
|
4280 |
msgid "save"
|
4281 |
msgstr "speichern"
|
4282 |
|
4283 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
4284 |
msgid "Save as best time for this network"
|
4285 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
4286 |
|
@@ -4288,12 +4373,12 @@ msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
|
4288 |
msgid "Save As Draft"
|
4289 |
msgstr "als Entwurf speichern"
|
4290 |
|
4291 |
-
#: views/b2s/ship.php:
|
4292 |
#: includes/B2S/Curation/View.php:110
|
4293 |
msgid "Save as Draft"
|
4294 |
msgstr "als Entwurf speichern"
|
4295 |
|
4296 |
-
#: views/b2s/curation.draft.php:
|
4297 |
msgid ""
|
4298 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
4299 |
"want."
|
@@ -4301,29 +4386,29 @@ msgstr ""
|
|
4301 |
"Speicher beim Surfen Links aus Deinem Browser und teile sie, wann immer Du "
|
4302 |
"möchtest"
|
4303 |
|
4304 |
-
#: views/b2s/ship.php:
|
4305 |
msgid "Save network selection"
|
4306 |
msgstr "Netzwerkauswahl speichern"
|
4307 |
|
4308 |
-
#: views/b2s/autopost.php:
|
4309 |
msgid "save..."
|
4310 |
msgstr "speichere Daten..."
|
4311 |
|
4312 |
-
#: includes/B2S/Post/Item.php:
|
4313 |
msgid "saved"
|
4314 |
msgstr "gespeichert"
|
4315 |
|
4316 |
-
#: views/b2s/html/header.php:
|
4317 |
msgid "Saved as draft"
|
4318 |
msgstr "Als Entwurf gespeichert"
|
4319 |
|
4320 |
-
#: views/b2s/curation.php:
|
4321 |
msgid "Saved as draft."
|
4322 |
msgstr "Als Entwurf gespeichert."
|
4323 |
|
4324 |
-
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:
|
4325 |
-
#: views/b2s/dashboard.php:
|
4326 |
-
#: views/b2s/ship.php:
|
4327 |
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
|
4328 |
#: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
|
4329 |
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
|
@@ -4331,7 +4416,7 @@ msgstr "Als Entwurf gespeichert."
|
|
4331 |
msgid "Schedule and re-share old posts"
|
4332 |
msgstr "Plane und teile alte Beiträge"
|
4333 |
|
4334 |
-
#: views/b2s/premium.php:
|
4335 |
msgid ""
|
4336 |
"Schedule and share curated content from any source on your preferred "
|
4337 |
"networks."
|
@@ -4339,7 +4424,7 @@ msgstr ""
|
|
4339 |
"Plane und teile kuratierte Inhalte aus beliebigen Quellen in Deinen "
|
4340 |
"bevorzugten Netzwerken."
|
4341 |
|
4342 |
-
#: views/b2s/premium.php:
|
4343 |
msgid ""
|
4344 |
"Schedule and share your blog posts as Google My Business posts to update "
|
4345 |
"your business listing and to add fresh content for your company."
|
@@ -4347,32 +4432,32 @@ msgstr ""
|
|
4347 |
" Plane und teile Deine Blogartikel als Google My Business - Beiträge und "
|
4348 |
"verleihe Deinem Unternehmen mit aktullen News mehr Sichtbarkeit."
|
4349 |
|
4350 |
-
#: views/b2s/premium.php:
|
4351 |
msgid "Schedule curated content"
|
4352 |
msgstr "Kuratierte Inhalte planen"
|
4353 |
|
4354 |
-
#: views/b2s/curation.php:
|
4355 |
-
#: views/b2s/post.calendar.php:
|
4356 |
-
#: includes/B2S/Ship/Item.php:
|
4357 |
msgid "Schedule for specific dates"
|
4358 |
msgstr "Für bestimmte Termine planen"
|
4359 |
|
4360 |
-
#: views/b2s/curation.php:
|
4361 |
-
#: views/b2s/post.calendar.php:
|
4362 |
msgid "Schedule post recurrently"
|
4363 |
msgstr "Beitrag mehrfach planen"
|
4364 |
|
4365 |
-
#: includes/B2S/Ship/Item.php:
|
4366 |
msgid "Schedule Recurrent Post"
|
4367 |
msgstr "regelmäßig Planen"
|
4368 |
|
4369 |
-
#: views/b2s/ship.php:
|
4370 |
msgid "Schedule your post"
|
4371 |
msgstr "Beitrag planen"
|
4372 |
|
4373 |
-
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:
|
4374 |
-
#: views/b2s/dashboard.php:
|
4375 |
-
#: views/b2s/ship.php:
|
4376 |
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
|
4377 |
#: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
|
4378 |
#: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
|
@@ -4382,9 +4467,9 @@ msgstr ""
|
|
4382 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
4383 |
"oder nach einem regelmäßigen Muster"
|
4384 |
|
4385 |
-
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:
|
4386 |
-
#: views/b2s/dashboard.php:
|
4387 |
-
#: views/b2s/ship.php:
|
4388 |
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
|
4389 |
#: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
|
4390 |
#: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
|
@@ -4400,8 +4485,8 @@ msgstr ""
|
|
4400 |
"Plane Deine Beiträge zu den besten Zeiten in jedem Netzwerk: einmal, "
|
4401 |
"mehrmals oder wiederkehrend"
|
4402 |
|
4403 |
-
#: views/b2s/post.calendar.php:
|
4404 |
-
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:
|
4405 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
4406 |
#: views/b2s/widgets/calendar.php:45
|
4407 |
msgid "scheduled"
|
@@ -4411,12 +4496,12 @@ msgstr "geplant"
|
|
4411 |
msgid "Scheduled Auto-Posting"
|
4412 |
msgstr "Scheduled Auto-Posting"
|
4413 |
|
4414 |
-
#: includes/B2S/Post/Item.php:
|
4415 |
#, php-format
|
4416 |
msgid "scheduled by %s"
|
4417 |
msgstr "von %s vorgeplant "
|
4418 |
|
4419 |
-
#: includes/B2S/Ship/Save.php:
|
4420 |
msgid "scheduled on"
|
4421 |
msgstr "geplant für"
|
4422 |
|
@@ -4424,8 +4509,8 @@ msgstr "geplant für"
|
|
4424 |
msgid "scheduled post(s)"
|
4425 |
msgstr "geplante Beiträge"
|
4426 |
|
4427 |
-
#: includes/Loader.php:917 views/b2s/html/
|
4428 |
-
#: views/b2s/
|
4429 |
msgid "Scheduled Posts"
|
4430 |
msgstr "geplante Beiträge"
|
4431 |
|
@@ -4433,24 +4518,24 @@ msgstr "geplante Beiträge"
|
|
4433 |
msgid "scheduled posts"
|
4434 |
msgstr "geplante Beiträge"
|
4435 |
|
4436 |
-
#: includes/B2S/Post/Item.php:
|
4437 |
#: views/b2s/widgets/activity.php:10
|
4438 |
msgid "scheduled social media posts"
|
4439 |
msgstr "geplante Beiträge"
|
4440 |
|
4441 |
-
#: views/b2s/support.php:
|
4442 |
msgid "Scheduling and Best Time Manager"
|
4443 |
msgstr "Veröffentlichungen planen und Beste Zeiten Manager"
|
4444 |
|
4445 |
-
#: views/b2s/ship.php:
|
4446 |
msgid "scroll to bottom"
|
4447 |
msgstr "zum Seitenende"
|
4448 |
|
4449 |
-
#: views/b2s/ship.php:
|
4450 |
msgid "scroll to top"
|
4451 |
msgstr "zum Seitenanfang"
|
4452 |
|
4453 |
-
#: includes/Tools.php:
|
4454 |
msgid "Search"
|
4455 |
msgstr "Suche"
|
4456 |
|
@@ -4458,7 +4543,7 @@ msgstr "Suche"
|
|
4458 |
msgid "Search Title"
|
4459 |
msgstr "Suche nach Titel"
|
4460 |
|
4461 |
-
#: views/b2s/support.php:
|
4462 |
msgid "Security"
|
4463 |
msgstr "Sicherheit"
|
4464 |
|
@@ -4466,7 +4551,7 @@ msgstr "Sicherheit"
|
|
4466 |
msgid "See all publications for your message live on "
|
4467 |
msgstr "Betrachte alle Veröffentlichungen für Deine Mitteilung live auf"
|
4468 |
|
4469 |
-
#: views/b2s/premium.php:
|
4470 |
msgid ""
|
4471 |
"See your entire schedule at a glance, with team view and network filter. "
|
4472 |
"Edit scheduled posts or add new social media posts per drag & drop."
|
@@ -4475,16 +4560,16 @@ msgstr ""
|
|
4475 |
"Netzwerkfilter. Bearbeite geplante Beiträge oder füge neue Social-Media-"
|
4476 |
"Beiträge per Drag & Drop hinzu."
|
4477 |
|
4478 |
-
#: views/b2s/dashboard.php:
|
4479 |
-
#: views/b2s/post.calendar.php:
|
4480 |
msgid "select"
|
4481 |
msgstr "auswählen"
|
4482 |
|
4483 |
-
#: views/b2s/dashboard.php:
|
4484 |
msgid "Select a post"
|
4485 |
msgstr "Wähle einen Beitrag aus"
|
4486 |
|
4487 |
-
#: views/b2s/premium.php:
|
4488 |
msgid "Select a user"
|
4489 |
msgstr "Blog-Nutzer auswählen"
|
4490 |
|
@@ -4492,8 +4577,8 @@ msgstr "Blog-Nutzer auswählen"
|
|
4492 |
msgid "Select all"
|
4493 |
msgstr "Alle auswählen"
|
4494 |
|
4495 |
-
#: includes/B2S/Post/Item.php:
|
4496 |
-
#: includes/B2S/Post/Item.php:
|
4497 |
msgid "select all"
|
4498 |
msgstr "alle auswählen"
|
4499 |
|
@@ -4505,18 +4590,18 @@ msgstr "Beitragskategorien auswählen"
|
|
4505 |
msgid "Select Image"
|
4506 |
msgstr "Bild auswählen"
|
4507 |
|
4508 |
-
#: views/b2s/curation.php:
|
4509 |
msgid "Select image"
|
4510 |
msgstr "Bild auswählen"
|
4511 |
|
4512 |
-
#: views/b2s/dashboard.php:
|
4513 |
-
#: views/b2s/post.sched.php:
|
4514 |
msgid "Select image for"
|
4515 |
msgstr "Wähle Bild aus für"
|
4516 |
|
4517 |
-
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:
|
4518 |
-
#: views/b2s/dashboard.php:
|
4519 |
-
#: views/b2s/ship.php:
|
4520 |
#: views/b2s/html/footer.php:39 views/b2s/html/footer.php:70
|
4521 |
#: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
|
4522 |
#: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
|
@@ -4526,7 +4611,7 @@ msgid "Select individual images per post"
|
|
4526 |
msgstr ""
|
4527 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
4528 |
|
4529 |
-
#: views/b2s/premium.php:
|
4530 |
msgid ""
|
4531 |
"Select individual images per post or network and select any image from your "
|
4532 |
"media library to create more variations for your posts."
|
@@ -4535,9 +4620,9 @@ msgstr ""
|
|
4535 |
"Bild aus Deiner Mediathek aus, um weitere Variationen für Deine Beiträge zu "
|
4536 |
"erstellen."
|
4537 |
|
4538 |
-
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:
|
4539 |
-
#: views/b2s/dashboard.php:
|
4540 |
-
#: views/b2s/ship.php:
|
4541 |
#: views/b2s/html/footer.php:38 views/b2s/html/footer.php:69
|
4542 |
#: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
|
4543 |
#: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
|
@@ -4555,7 +4640,7 @@ msgstr ""
|
|
4555 |
"Wähle zwischen Link-Beitrag oder Bild-Beitrag, um Dein bevorzugtes "
|
4556 |
"Postformat für Twitter, LinkedIn und Facebook zu definieren."
|
4557 |
|
4558 |
-
#: views/b2s/premium.php:
|
4559 |
msgid ""
|
4560 |
"Select link post or image post per network to choose the optimal format for "
|
4561 |
"your post."
|
@@ -4568,13 +4653,13 @@ msgstr ""
|
|
4568 |
msgid "Select network collection:"
|
4569 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
4570 |
|
4571 |
-
#: views/b2s/autopost.php:
|
4572 |
#: includes/B2S/Ship/Image.php:100
|
4573 |
msgid "Select or upload an image from media gallery"
|
4574 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
4575 |
|
4576 |
-
#: views/b2s/network.php:374 views/b2s/network.php:429 views/b2s/ship.php:
|
4577 |
-
#: views/b2s/ship.php:
|
4578 |
msgid "Select Pinboard"
|
4579 |
msgstr "Pinnwand auswählen"
|
4580 |
|
@@ -4605,8 +4690,8 @@ msgstr "Entscheide Dich für das passende Format für Deine Social Media Posts"
|
|
4605 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
4606 |
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
4607 |
|
4608 |
-
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:
|
4609 |
-
#: views/b2s/repost.php:
|
4610 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
4611 |
msgid "Select Twitter profile:"
|
4612 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
@@ -4624,7 +4709,7 @@ msgstr ""
|
|
4624 |
msgid "selected date"
|
4625 |
msgstr "ausgewähltes Datum"
|
4626 |
|
4627 |
-
#: views/b2s/network.php:415 views/b2s/ship.php:
|
4628 |
msgid "Server-Location"
|
4629 |
msgstr "Serverstandort"
|
4630 |
|
@@ -4654,25 +4739,25 @@ msgstr ""
|
|
4654 |
"und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
4655 |
|
4656 |
#: includes/Loader.php:867 includes/Loader.php:1032 includes/Loader.php:1032
|
4657 |
-
#: includes/Loader.php:
|
4658 |
-
#: views/b2s/html/sidebar.php:
|
4659 |
msgid "Settings"
|
4660 |
msgstr "Einstellungen"
|
4661 |
|
4662 |
-
#: views/b2s/ship.php:
|
4663 |
#: includes/B2S/Curation/View.php:113
|
4664 |
msgid "Share"
|
4665 |
msgstr "Teilen"
|
4666 |
|
4667 |
-
#: includes/B2S/Post/Item.php:
|
4668 |
msgid "share"
|
4669 |
msgstr "teilen"
|
4670 |
|
4671 |
-
#: views/b2s/curation.php:
|
4672 |
msgid "Share image posts:"
|
4673 |
msgstr "Teile Bild-Beiträge:"
|
4674 |
|
4675 |
-
#: views/b2s/curation.php:
|
4676 |
msgid ""
|
4677 |
"Share images to get them into the Google image search to further increase "
|
4678 |
"your outreach and traffic from search engines."
|
@@ -4690,7 +4775,7 @@ msgstr ""
|
|
4690 |
"Feeds und Plugins importierst, können automatisch auf Deinen Social Media-"
|
4691 |
"Kanälen geteilt werden."
|
4692 |
|
4693 |
-
#: views/b2s/premium.php:
|
4694 |
msgid ""
|
4695 |
"Share imported RSS feeds automatically to get more variations for your "
|
4696 |
"content."
|
@@ -4698,11 +4783,27 @@ msgstr ""
|
|
4698 |
"Teile importierte RSS-Feeds automatisch, um mehr Variationen für Deine "
|
4699 |
"Inhalte zu erhalten."
|
4700 |
|
4701 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4702 |
msgid "Share new post on Social Media"
|
4703 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
4704 |
|
4705 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4706 |
msgid "Share Now"
|
4707 |
msgstr "Sofort teilen"
|
4708 |
|
@@ -4710,13 +4811,13 @@ msgstr "Sofort teilen"
|
|
4710 |
msgid "share oldest posts first"
|
4711 |
msgstr "älteste Beiträge zuerst teilen"
|
4712 |
|
4713 |
-
#: views/b2s/html/header.php:
|
4714 |
msgid "Share on multiple accounts per network"
|
4715 |
msgstr "Teile auf mehreren Netzwerk-Konten "
|
4716 |
|
4717 |
-
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:
|
4718 |
-
#: views/b2s/dashboard.php:
|
4719 |
-
#: views/b2s/ship.php:
|
4720 |
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
|
4721 |
#: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
|
4722 |
#: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
|
@@ -4724,17 +4825,13 @@ msgstr "Teile auf mehreren Netzwerk-Konten "
|
|
4724 |
msgid "Share on multiple profiles, pages and groups"
|
4725 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
4726 |
|
4727 |
-
#: includes/B2S/Post/Item.php:
|
4728 |
-
#: includes/B2S/Post/Item.php:
|
4729 |
-
#: includes/B2S/Post/Item.php:
|
4730 |
msgid "Share on Social Media"
|
4731 |
msgstr "auf Social Media teilen"
|
4732 |
|
4733 |
-
#: views/b2s/
|
4734 |
-
msgid "Share Posts"
|
4735 |
-
msgstr "Beiträge teilen"
|
4736 |
-
|
4737 |
-
#: views/b2s/curation.php:238
|
4738 |
msgid ""
|
4739 |
"Share pure text messages and personal comments with your followers and "
|
4740 |
"readers."
|
@@ -4742,7 +4839,7 @@ msgstr ""
|
|
4742 |
"Teile reine Textinformationen und persönliche Kommentare mit Deinen "
|
4743 |
"Followern und Lesern."
|
4744 |
|
4745 |
-
#: views/b2s/curation.php:
|
4746 |
msgid "Share text posts:"
|
4747 |
msgstr "Teile Text-Beiträge:"
|
4748 |
|
@@ -4750,9 +4847,9 @@ msgstr "Teile Text-Beiträge:"
|
|
4750 |
msgid "share up to"
|
4751 |
msgstr "teile bis zu"
|
4752 |
|
4753 |
-
#:
|
4754 |
-
msgid "Share
|
4755 |
-
msgstr "
|
4756 |
|
4757 |
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:344
|
4758 |
msgid ""
|
@@ -4771,7 +4868,7 @@ msgstr ""
|
|
4771 |
msgid "Share your post"
|
4772 |
msgstr "Teile Deinen Post"
|
4773 |
|
4774 |
-
#: views/b2s/premium.php:
|
4775 |
msgid ""
|
4776 |
"Share your posts automatically across your preferred networks at once or at "
|
4777 |
"your pre-scheduled time-settings."
|
@@ -4779,7 +4876,7 @@ msgstr ""
|
|
4779 |
"Teile Deine Beiträge automatisch in Deinen bevorzugten Netzwerken sofort "
|
4780 |
"oder zu den von Dir festgelegten Zeiten."
|
4781 |
|
4782 |
-
#: views/b2s/premium.php:
|
4783 |
msgid ""
|
4784 |
"Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and "
|
4785 |
"Medium."
|
@@ -4787,7 +4884,7 @@ msgstr ""
|
|
4787 |
"Teile Deine Beiträge auf Seiten und in Gruppen auf Facebook, LinkedIn, Xing,"
|
4788 |
" VK und Medium."
|
4789 |
|
4790 |
-
#: views/b2s/dashboard.php:
|
4791 |
msgid "Share your WordPress posts, pages or products"
|
4792 |
msgstr "Teile Deine WordPress-Beiträge, -Seiten oder -Produkte"
|
4793 |
|
@@ -4795,7 +4892,7 @@ msgstr "Teile Deine WordPress-Beiträge, -Seiten oder -Produkte"
|
|
4795 |
msgid "Shared"
|
4796 |
msgstr "Wie oft geteilt?"
|
4797 |
|
4798 |
-
#: includes/B2S/Post/Item.php:
|
4799 |
#, php-format
|
4800 |
msgid "shared by %s"
|
4801 |
msgstr "von %s geteilt"
|
@@ -4804,12 +4901,11 @@ msgstr "von %s geteilt"
|
|
4804 |
msgid "shared by user"
|
4805 |
msgstr "geteilt von Nutzer"
|
4806 |
|
4807 |
-
#: includes/Loader.php:917 views/b2s/html/
|
4808 |
-
#: views/b2s/html/sidebar.php:125
|
4809 |
msgid "Shared Posts"
|
4810 |
msgstr "geteilte Beiträge"
|
4811 |
|
4812 |
-
#: includes/B2S/Metrics/Item.php:
|
4813 |
msgid "shared social media posts"
|
4814 |
msgstr "geteilte Beiträge"
|
4815 |
|
@@ -4817,11 +4913,11 @@ msgstr "geteilte Beiträge"
|
|
4817 |
msgid "shared to network"
|
4818 |
msgstr "geteilt auf Netzwerk"
|
4819 |
|
4820 |
-
#: views/b2s/metrics.php:
|
4821 |
msgid "Shares"
|
4822 |
msgstr "Shares"
|
4823 |
|
4824 |
-
#: includes/B2S/Post/Item.php:
|
4825 |
#, php-format
|
4826 |
msgid "sharing in progress by %s"
|
4827 |
msgstr "wird gerade von %s geteilt"
|
@@ -4844,7 +4940,7 @@ msgstr ""
|
|
4844 |
msgid "Sharing on multiple accounts per network"
|
4845 |
msgstr "Poste auf mehrere Accounts pro Netzwerk"
|
4846 |
|
4847 |
-
#: views/b2s/support.php:
|
4848 |
msgid "Sharing-Debugger"
|
4849 |
msgstr "Sharing-Debugger"
|
4850 |
|
@@ -4856,7 +4952,7 @@ msgstr "Shortcodes"
|
|
4856 |
msgid "Shortext"
|
4857 |
msgstr "Kurzbeschreibung"
|
4858 |
|
4859 |
-
#: includes/B2S/Post/Item.php:
|
4860 |
msgid "show"
|
4861 |
msgstr "ansehen"
|
4862 |
|
@@ -4868,16 +4964,16 @@ msgstr "Zeige Aktivität ab"
|
|
4868 |
msgid "Show all"
|
4869 |
msgstr "alle anzeigen"
|
4870 |
|
4871 |
-
#: views/b2s/post.calendar.php:
|
4872 |
#: views/b2s/widgets/calendar.php:43
|
4873 |
msgid "show all"
|
4874 |
msgstr "alles anzeigen"
|
4875 |
|
4876 |
-
#: views/b2s/premium.php:
|
4877 |
msgid "Show all premium features"
|
4878 |
msgstr "Alle Premium-Features anzeigen"
|
4879 |
|
4880 |
-
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:
|
4881 |
msgid "show calendar"
|
4882 |
msgstr "Planungskalender anzeigen"
|
4883 |
|
@@ -4885,11 +4981,11 @@ msgstr "Planungskalender anzeigen"
|
|
4885 |
msgid "show details"
|
4886 |
msgstr "siehe Details"
|
4887 |
|
4888 |
-
#: views/b2s/dashboard.php:
|
4889 |
msgid "show full calendar"
|
4890 |
msgstr "Vollständigen Kalender anzeigen"
|
4891 |
|
4892 |
-
#: views/b2s/premium.php:
|
4893 |
msgid "Show me plans and prices"
|
4894 |
msgstr "Versionen und Preise anzeigen"
|
4895 |
|
@@ -4897,11 +4993,11 @@ msgstr "Versionen und Preise anzeigen"
|
|
4897 |
msgid "Sign in"
|
4898 |
msgstr "Anmelden"
|
4899 |
|
4900 |
-
#: views/b2s/network.php:439 views/b2s/ship.php:
|
4901 |
msgid "Sign in to Pinterest"
|
4902 |
msgstr "Melde Dich bei Pinterest an"
|
4903 |
|
4904 |
-
#: views/b2s/autopost.php:
|
4905 |
msgid ""
|
4906 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
4907 |
"and define the preferred settings panel for each user."
|
@@ -4909,7 +5005,7 @@ msgstr ""
|
|
4909 |
"Da Blog2Social auf WordPress-Nutzerbasiert arbeitet, stelle bitte sicher, "
|
4910 |
"dass Du die Einstellungen für jeden Benutzer aktivierst."
|
4911 |
|
4912 |
-
#: views/b2s/autopost.php:
|
4913 |
msgid ""
|
4914 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
4915 |
"and define the preferred settings panel for each user. "
|
@@ -4917,25 +5013,19 @@ msgstr ""
|
|
4917 |
"Da Blog2Social auf WordPress-Nutzerbasiert arbeitet, stelle bitte sicher, "
|
4918 |
"dass Du die Einstellungen für jeden Benutzer aktivierst."
|
4919 |
|
4920 |
-
#: includes/
|
4921 |
-
msgid "Site & Blog Content"
|
4922 |
-
msgstr "Seiten & Blog Content"
|
4923 |
-
|
4924 |
-
#: includes/Tools.php:508
|
4925 |
msgid "Slovakia"
|
4926 |
msgstr "Slowakei"
|
4927 |
|
4928 |
#: views/b2s/network.php:239 views/b2s/ship.php:27
|
4929 |
#: includes/B2S/AutoPost/Item.php:34 includes/B2S/Curation/View.php:56
|
4930 |
-
#: includes/B2S/Network/Item.php:
|
4931 |
-
#: includes/B2S/Network/Item.php:
|
4932 |
-
#: includes/B2S/Network/Item.php:
|
4933 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:172
|
4934 |
-
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:
|
4935 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:63
|
4936 |
-
#: views/b2s/
|
4937 |
-
#: views/b2s/html/post.navbar.php:23 views/b2s/partials/post-edit-modal.php:9
|
4938 |
-
#: views/b2s/widgets/posts.php:18
|
4939 |
msgid "SMART"
|
4940 |
msgstr "SMART"
|
4941 |
|
@@ -4943,7 +5033,7 @@ msgstr "SMART"
|
|
4943 |
msgid "Smart: 3 (per user)"
|
4944 |
msgstr "Smart: 3 (pro Nutzer)"
|
4945 |
|
4946 |
-
#: includes/Tools.php:
|
4947 |
msgid "Smileys & People"
|
4948 |
msgstr "Smileys & Personen"
|
4949 |
|
@@ -4951,11 +5041,11 @@ msgstr "Smileys & Personen"
|
|
4951 |
msgid "Sniply"
|
4952 |
msgstr "Sniply"
|
4953 |
|
4954 |
-
#: views/b2s/ship.php:
|
4955 |
msgid "Social Accounts"
|
4956 |
msgstr "Social Media Konten"
|
4957 |
|
4958 |
-
#: views/b2s/html/header.php:
|
4959 |
msgid "Social Media Auto-Posting"
|
4960 |
msgstr "Social Media Auto-Posting"
|
4961 |
|
@@ -4964,50 +5054,58 @@ msgstr "Social Media Auto-Posting"
|
|
4964 |
msgid "Social media auto-posting and auto-scheduling"
|
4965 |
msgstr "Auto-Posting und automatische Planung für Social Media Beiträge"
|
4966 |
|
4967 |
-
#: views/b2s/premium.php:
|
4968 |
msgid "Social Media Calendar"
|
4969 |
msgstr "Social Media Kalender"
|
4970 |
|
4971 |
#: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
|
4972 |
-
#: views/b2s/metrics.php:
|
4973 |
-
#: views/b2s/html/sidebar.php:
|
4974 |
msgid "Social Media Metrics"
|
4975 |
msgstr "Social-Media-Kennzahlen"
|
4976 |
|
4977 |
-
#: views/b2s/metrics.php:
|
4978 |
msgid "Social Media Metrics Summary"
|
4979 |
msgstr "Übersicht Social-Media-Kennzahlen"
|
4980 |
|
4981 |
-
#: views/b2s/settings.php:
|
4982 |
msgid "Social Media Networks"
|
4983 |
msgstr "Social-Media-Netzwerke"
|
4984 |
|
4985 |
-
#: views/b2s/html/sidebar.php:87
|
4986 |
-
msgid "Social Media Post"
|
4987 |
-
msgstr "Social Media Post"
|
4988 |
-
|
4989 |
#: includes/Loader.php:917
|
4990 |
msgid "Social Media Post Drafts"
|
4991 |
msgstr "Social Media Posts Entwürfe"
|
4992 |
|
4993 |
-
#: includes/Loader.php:1026 includes/Loader.php:1086 views/b2s/curation.php:
|
4994 |
-
#: views/b2s/curation.php:
|
4995 |
msgid "Social Media Posts"
|
4996 |
msgstr "Social Media Posts"
|
4997 |
|
4998 |
-
#: includes/B2S/Post/Item.php:
|
4999 |
msgid "social media posts ready to be shared"
|
5000 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
5001 |
|
5002 |
-
#: views/b2s/ship.php:
|
5003 |
msgid "Social Media Scheduling & Sharing"
|
5004 |
msgstr "Beitrag auf Social Media planen und teilen"
|
5005 |
|
5006 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5007 |
msgid "Social Media Time Settings"
|
5008 |
msgstr "Social-Media-Zeiteinstellungen"
|
5009 |
|
5010 |
-
#: views/b2s/settings.php:
|
5011 |
msgid "Social Meta Data"
|
5012 |
msgstr "Social Meta Angaben"
|
5013 |
|
@@ -5039,7 +5137,7 @@ msgstr ""
|
|
5039 |
"Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
|
5040 |
"target=\"_blank\">Guide</a>."
|
5041 |
|
5042 |
-
#: views/b2s/html/header.php:
|
5043 |
msgid "Something went wrong on our side. Please contact support!"
|
5044 |
msgstr ""
|
5045 |
"Etwas ist auf unserer Seite schiefgelaufen. Bitte wende Dich an unseren "
|
@@ -5049,19 +5147,19 @@ msgstr ""
|
|
5049 |
msgid "sort"
|
5050 |
msgstr "sortieren"
|
5051 |
|
5052 |
-
#: views/b2s/post.calendar.php:
|
5053 |
msgid "Sort by network"
|
5054 |
msgstr "Sortiere nach Netzwerk"
|
5055 |
|
5056 |
-
#: includes/Tools.php:
|
5057 |
msgid "South Africa"
|
5058 |
msgstr "Südafrika"
|
5059 |
|
5060 |
-
#: includes/Tools.php:
|
5061 |
msgid "Spain"
|
5062 |
msgstr "Spanien"
|
5063 |
|
5064 |
-
#: includes/B2S/Ship/Item.php:
|
5065 |
msgid "Start date"
|
5066 |
msgstr "Startdatum"
|
5067 |
|
@@ -5069,16 +5167,16 @@ msgstr "Startdatum"
|
|
5069 |
msgid "Start your 14-Day Free Trial"
|
5070 |
msgstr "Jetzt kostenlos testen"
|
5071 |
|
5072 |
-
#: views/b2s/premium.php:
|
5073 |
#: views/b2s/html/sidebar.ship.php:46
|
5074 |
msgid "Start your 30-day free Premium trial"
|
5075 |
msgstr "Teste Blog2Social Premium kostenlos"
|
5076 |
|
5077 |
-
#: views/b2s/html/header.php:
|
5078 |
msgid "Start your free 30-day-Premium-trial"
|
5079 |
msgstr "Teste Blog2Social Premium"
|
5080 |
|
5081 |
-
#: views/b2s/html/header.php:
|
5082 |
msgid "Start your free trial for Social Media Metrics"
|
5083 |
msgstr "Starte jetzt Deine exklusive Testphase"
|
5084 |
|
@@ -5086,7 +5184,7 @@ msgstr "Starte jetzt Deine exklusive Testphase"
|
|
5086 |
msgid "Startdate"
|
5087 |
msgstr "Startdatum"
|
5088 |
|
5089 |
-
#: views/b2s/support.php:
|
5090 |
msgid "Step-by-Step-Guide"
|
5091 |
msgstr "Step-by-Step-Guide"
|
5092 |
|
@@ -5111,7 +5209,7 @@ msgstr "abonnieren"
|
|
5111 |
msgid "Subtitle"
|
5112 |
msgstr "Untertitel"
|
5113 |
|
5114 |
-
#: includes/B2S/Network/Item.php:
|
5115 |
msgid "Successfully saved"
|
5116 |
msgstr "Erfolgreich gespeichert"
|
5117 |
|
@@ -5123,7 +5221,7 @@ msgstr "Link-Darstellung"
|
|
5123 |
msgid "Summary with large image"
|
5124 |
msgstr "Link-Darstellung mit großem Bild"
|
5125 |
|
5126 |
-
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:
|
5127 |
msgid "Sun"
|
5128 |
msgstr "So"
|
5129 |
|
@@ -5135,19 +5233,19 @@ msgstr "Sonntag"
|
|
5135 |
msgid "Support"
|
5136 |
msgstr "Support"
|
5137 |
|
5138 |
-
#: includes/B2S/Ship/Item.php:
|
5139 |
msgid "Supported HTML tags"
|
5140 |
msgstr "Erlaubte HTML-Elemente"
|
5141 |
|
5142 |
-
#: includes/Tools.php:
|
5143 |
msgid "Sweden"
|
5144 |
msgstr "Schweden"
|
5145 |
|
5146 |
-
#: includes/Tools.php:
|
5147 |
msgid "Switzerland"
|
5148 |
msgstr "Schweiz"
|
5149 |
|
5150 |
-
#: includes/Tools.php:
|
5151 |
msgid "Symbols"
|
5152 |
msgstr "Symbole"
|
5153 |
|
@@ -5155,6 +5253,17 @@ msgstr "Symbole"
|
|
5155 |
msgid "System"
|
5156 |
msgstr "System"
|
5157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5158 |
#: views/b2s/network.php:509 views/b2s/network.php:594
|
5159 |
msgid "Team Management"
|
5160 |
msgstr "Team-Management"
|
@@ -5163,7 +5272,7 @@ msgstr "Team-Management"
|
|
5163 |
msgid "Terms"
|
5164 |
msgstr "Bedingungen"
|
5165 |
|
5166 |
-
#: views/b2s/html/header.php:
|
5167 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
5168 |
msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
|
5169 |
|
@@ -5171,16 +5280,15 @@ msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
|
|
5171 |
msgid "Test PR-Gateway for free"
|
5172 |
msgstr "PR-Gateway kostenlos und unverbindlich testen"
|
5173 |
|
5174 |
-
#: includes/B2S/Ship/Item.php:
|
5175 |
msgid "Text only"
|
5176 |
msgstr "nur Text"
|
5177 |
|
5178 |
-
#:
|
5179 |
-
#: includes/B2S/Ship/Item.php:378
|
5180 |
msgid "Text Post"
|
5181 |
msgstr "Text-Beitrag"
|
5182 |
|
5183 |
-
#: views/b2s/curation.php:
|
5184 |
msgid ""
|
5185 |
"Text posts enable you to share pure text messages and personal comments with "
|
5186 |
"your followers and readers. You can also customize your posts with "
|
@@ -5191,14 +5299,22 @@ msgstr ""
|
|
5191 |
"Deine Beiträge auch mit individuellen Hashtags, @Mentions oder Emojis "
|
5192 |
"anpassen."
|
5193 |
|
5194 |
-
#: views/b2s/html/header.php:
|
5195 |
msgid "Thank you! Your feedback has been received."
|
5196 |
msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
|
5197 |
|
5198 |
-
#: views/b2s/html/header.php:
|
5199 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
5200 |
msgstr "Vielen Dank. Du erhältst nun die Blog-Updates von Blog2Social."
|
5201 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5202 |
#: includes/B2S/PostBox.php:168
|
5203 |
msgid "The Autoposter is"
|
5204 |
msgstr "Der Auto-Poster ist"
|
@@ -5225,6 +5341,14 @@ msgstr ""
|
|
5225 |
"Bildgröße des jeweiligen Netzwerkes an. Du kannst bis zu 4 Bilder in einem "
|
5226 |
"Beitrag auf Facebook (Seite und Gruppe) sowie auf Twitter teilen."
|
5227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5228 |
#: views/b2s/network.php:535
|
5229 |
msgid "The connection does not exist."
|
5230 |
msgstr "Diese Verbindung existiert nicht."
|
@@ -5241,7 +5365,7 @@ msgstr ""
|
|
5241 |
"Die Verbindung ist noch anderen Benutzern zugeordnet. Bitte entfernen Sie "
|
5242 |
"zuerst die zugewiesene Verbindung von anderen Benutzern."
|
5243 |
|
5244 |
-
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:
|
5245 |
msgid ""
|
5246 |
"The connection to the server failed. Please try again! You can find more "
|
5247 |
"information and solutions in the"
|
@@ -5249,7 +5373,7 @@ msgstr ""
|
|
5249 |
"Die Verbindung zum Server ist fehlgeschlagen. Bitte versuche es erneut. Mehr "
|
5250 |
"Informationen und Lösungsvorschläge findest Du in dem"
|
5251 |
|
5252 |
-
#: views/b2s/ship.php:
|
5253 |
msgid ""
|
5254 |
"The connection to the server failed. Please try again! You can find more "
|
5255 |
"information and solutions in the guide for server connection"
|
@@ -5300,7 +5424,7 @@ msgstr ""
|
|
5300 |
msgid "The default card type to use"
|
5301 |
msgstr "Wählen Sie Ihre Standard-Twitter-Card"
|
5302 |
|
5303 |
-
#: views/b2s/metrics.php:
|
5304 |
msgid ""
|
5305 |
"The first step is to create and share a social media post for which you want "
|
5306 |
"to track the metrics. You can share WordPress posts, pages and products, "
|
@@ -5314,7 +5438,7 @@ msgstr ""
|
|
5314 |
"Link, Video, Bild oder Text teilen. Nach 24h kannst Du die ersten Kennzahlen "
|
5315 |
"des Beitrags unter dem Menüpunkt “Social-Media-Kennzahlen” einsehen."
|
5316 |
|
5317 |
-
#: views/b2s/html/header.php:
|
5318 |
msgid ""
|
5319 |
"The free trial can not be started. This blog has been already registered for "
|
5320 |
"the free trial."
|
@@ -5322,7 +5446,7 @@ msgstr ""
|
|
5322 |
"Die kostenlose Testversion kann nicht gestartet werden. Dieser Blog wurde "
|
5323 |
"bereits für die kostenlose Testversion registriert."
|
5324 |
|
5325 |
-
#: includes/B2S/Ship/Item.php:
|
5326 |
msgid "The Headline..."
|
5327 |
msgstr "Die Überschrift..."
|
5328 |
|
@@ -5346,7 +5470,7 @@ msgid "The images file types .jpg and .png are allowed. Please try another."
|
|
5346 |
msgstr ""
|
5347 |
"Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
|
5348 |
|
5349 |
-
#: views/b2s/html/header.php:
|
5350 |
msgid "The license has been successfully activated."
|
5351 |
msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
|
5352 |
|
@@ -5373,11 +5497,11 @@ msgstr ""
|
|
5373 |
"ausgewählt hast, zeigen einige Netzwerke das erste Bild an, dass sie auf "
|
5374 |
"Deiner Seite finden."
|
5375 |
|
5376 |
-
#: includes/B2S/Network/Item.php:
|
5377 |
msgid "The link will be added automatically at the end of the post."
|
5378 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
5379 |
|
5380 |
-
#: includes/B2S/Network/Item.php:
|
5381 |
msgid ""
|
5382 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
5383 |
"your page, in order to refer to the original source of the content and to "
|
@@ -5393,8 +5517,8 @@ msgstr ""
|
|
5393 |
"Der Link, dem Du gefolgt bist, ist abgelaufen. Bitte aktualisiere Deine "
|
5394 |
"Seite."
|
5395 |
|
5396 |
-
#: views/b2s/network.php:349 views/b2s/network.php:362 views/b2s/ship.php:
|
5397 |
-
#: views/b2s/ship.php:
|
5398 |
msgid ""
|
5399 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
5400 |
"sign in to Pinterest using the Blog2Social browser extension."
|
@@ -5425,7 +5549,7 @@ msgstr ""
|
|
5425 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
5426 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
5427 |
|
5428 |
-
#: includes/B2S/Network/Item.php:
|
5429 |
msgid "The network does not support hashtags."
|
5430 |
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
5431 |
|
@@ -5463,7 +5587,7 @@ msgstr ""
|
|
5463 |
msgid "The orginal tweet is scheduled on:"
|
5464 |
msgstr "Der Original-Tweet ist geplant für:"
|
5465 |
|
5466 |
-
#: views/b2s/html/header.php:
|
5467 |
msgid "The page and post meta data could not be removed."
|
5468 |
msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
5469 |
|
@@ -5473,7 +5597,7 @@ msgstr ""
|
|
5473 |
"Die Parameter konnten nicht gespeichert werden. Bitte versuchen Sie es noch "
|
5474 |
"einmal."
|
5475 |
|
5476 |
-
#: includes/B2S/Calendar/Item.php:534 includes/B2S/Post/Item.php:
|
5477 |
#, php-format
|
5478 |
msgid ""
|
5479 |
"The post cannot be published due to changes on the Instagram interface. More "
|
@@ -5483,7 +5607,7 @@ msgstr ""
|
|
5483 |
"veröffentlicht werden. Mehr Informationen in dem <a href=\"%s\" "
|
5484 |
"target=\"_blank\">Instagram-Guide</a>."
|
5485 |
|
5486 |
-
#: views/b2s/html/header.php:
|
5487 |
msgid ""
|
5488 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
5489 |
"re-schedule them, please delete the posts before adding them again."
|
@@ -5512,6 +5636,18 @@ msgstr ""
|
|
5512 |
"Preis: Der Preis eines Produkts, wenn Du WooCommerce auf Deiner Website/ "
|
5513 |
"Blog installiert hast."
|
5514 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5515 |
#: includes/B2S/AutoPost/Item.php:51
|
5516 |
msgid ""
|
5517 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
@@ -5520,6 +5656,16 @@ msgstr ""
|
|
5520 |
"Die Einstellungen für den Auto-Poster wurden für Dich von einem WordPress-"
|
5521 |
"Admin vorgenommen."
|
5522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5523 |
#: views/b2s/network.php:311
|
5524 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
5525 |
msgstr ""
|
@@ -5530,7 +5676,15 @@ msgstr ""
|
|
5530 |
msgid "The tags you have set in your post."
|
5531 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
5532 |
|
5533 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5534 |
#, php-format
|
5535 |
msgid ""
|
5536 |
"The time of publishing a post can play a decisive role in achieving more "
|
@@ -5555,7 +5709,7 @@ msgstr ""
|
|
5555 |
msgid "The title of your post"
|
5556 |
msgstr "Der Titel deines Beitrags."
|
5557 |
|
5558 |
-
#: views/b2s/support.php:
|
5559 |
msgid ""
|
5560 |
"The Troubleshooting tool helps you with conflicts that can be caused by the "
|
5561 |
"system environment of your blog. So you can always check your settings on "
|
@@ -5587,11 +5741,11 @@ msgstr ""
|
|
5587 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
5588 |
"eine andere Netzwerkgruppierung aus. "
|
5589 |
|
5590 |
-
#: views/b2s/autopost.php:
|
5591 |
msgid "There are two different setting panels in the auto-poster section:"
|
5592 |
msgstr "Im Bereich Auto-Poster gibt es zwei verschiedene Einstellungsbereiche:"
|
5593 |
|
5594 |
-
#: views/b2s/ship.php:
|
5595 |
msgid ""
|
5596 |
"There is already a saved draft for this WordPress post or page. If you save "
|
5597 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
@@ -5613,7 +5767,7 @@ msgstr ""
|
|
5613 |
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
5614 |
"Pressemitteilung jetzt versendet werden?"
|
5615 |
|
5616 |
-
#: views/b2s/ship.php:
|
5617 |
msgid ""
|
5618 |
"This allows you to adjust your network selection at any time and save it by "
|
5619 |
"clicking on \"Save network selection\"."
|
@@ -5625,11 +5779,11 @@ msgstr ""
|
|
5625 |
msgid "This connection has already been assigned to this user."
|
5626 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
5627 |
|
5628 |
-
#: views/b2s/html/header.php:
|
5629 |
msgid "This entry could not be removed. It's not yours!"
|
5630 |
msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
|
5631 |
|
5632 |
-
#: views/b2s/html/header.php:
|
5633 |
msgid "This entry was removed successfully."
|
5634 |
msgstr "Dieser Eintrag wurde erfolgreich entfernt."
|
5635 |
|
@@ -5649,7 +5803,7 @@ msgstr ""
|
|
5649 |
"Dies ist eine globale Einstellung für Deinen Website/ Deinen Blog, die nur "
|
5650 |
"von Nutzern mit Admin-Rechten bearbeitet werden kann. "
|
5651 |
|
5652 |
-
#: includes/B2S/Ship/Save.php:
|
5653 |
msgid "This is how it works:"
|
5654 |
msgstr "Und so funktioniert es:"
|
5655 |
|
@@ -5661,7 +5815,7 @@ msgstr "Diese Netzwerkverbindung ist anderen Blog-Nutzern zugeordnet."
|
|
5661 |
msgid "This post is blocked by %1"
|
5662 |
msgstr "% 1bearbeitet gerade diesen Beitrag."
|
5663 |
|
5664 |
-
#: views/b2s/html/header.php:
|
5665 |
msgid "This post was edited successfully."
|
5666 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
5667 |
|
@@ -5674,7 +5828,7 @@ msgstr ""
|
|
5674 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
5675 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
5676 |
|
5677 |
-
#: includes/B2S/Network/Item.php:
|
5678 |
msgid ""
|
5679 |
"This social network displays the predefined hashtags as clickable tags at "
|
5680 |
"the end of your post."
|
@@ -5700,7 +5854,11 @@ msgstr ""
|
|
5700 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
5701 |
"zu planen."
|
5702 |
|
5703 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
5704 |
msgid "Thu"
|
5705 |
msgstr "Do"
|
5706 |
|
@@ -5708,16 +5866,16 @@ msgstr "Do"
|
|
5708 |
msgid "Thursday"
|
5709 |
msgstr "Donnerstag"
|
5710 |
|
5711 |
-
#: includes/B2S/Ship/Item.php:
|
5712 |
#: views/b2s/partials/post-edit-modal.php:71
|
5713 |
msgid "Time"
|
5714 |
msgstr "Uhrzeit"
|
5715 |
|
5716 |
-
#: includes/B2S/Ship/Item.php:
|
5717 |
msgid "Time to publish"
|
5718 |
msgstr "Veröffentlichungszeitpunkt"
|
5719 |
|
5720 |
-
#: views/b2s/ship.php:
|
5721 |
msgid "Time zone"
|
5722 |
msgstr "Zeitzone"
|
5723 |
|
@@ -5725,7 +5883,7 @@ msgstr "Zeitzone"
|
|
5725 |
msgid "times"
|
5726 |
msgstr "Mal"
|
5727 |
|
5728 |
-
#: includes/B2S/Ship/Item.php:
|
5729 |
msgid "Timespan"
|
5730 |
msgstr "Zeitspanne"
|
5731 |
|
@@ -5733,7 +5891,7 @@ msgstr "Zeitspanne"
|
|
5733 |
msgid "Timezone for Scheduling"
|
5734 |
msgstr "Zeitzone für die Planung"
|
5735 |
|
5736 |
-
#: views/b2s/ship.php:
|
5737 |
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
|
5738 |
#: includes/B2S/Settings/Item.php:231 views/prg/html/form.php:26
|
5739 |
#: views/prg/html/form.php:28
|
@@ -5744,11 +5902,11 @@ msgstr "Titel"
|
|
5744 |
msgid "title"
|
5745 |
msgstr "Titel"
|
5746 |
|
5747 |
-
#: views/b2s/settings.php:
|
5748 |
msgid "Title: The title of your post."
|
5749 |
msgstr "Titel: Der Titel Deines Beitrags."
|
5750 |
|
5751 |
-
#: views/b2s/autopost.php:
|
5752 |
msgid ""
|
5753 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
5754 |
"be sent to your primary Twitter profile."
|
@@ -5756,7 +5914,7 @@ msgstr ""
|
|
5756 |
"Um den Geschäftsbedingungen von Twitter zu entsprechen und doppelte Postings "
|
5757 |
"zu vermeiden, werden Autoposts an Dein primäres Twitter-Profil gesendet."
|
5758 |
|
5759 |
-
#: views/b2s/ship.php:
|
5760 |
#, php-format
|
5761 |
msgid ""
|
5762 |
"To define and save more network selections for your posting purposes, you "
|
@@ -5783,7 +5941,7 @@ msgstr ""
|
|
5783 |
"fest. Wenn Du Dein Bild bei LinkedIn ändern möchtest, ohne Dein Beitragsbild "
|
5784 |
"zu ändern, kannst du die Box “oEmbed Tags hinzufügen” abhaken."
|
5785 |
|
5786 |
-
#: views/b2s/support.php:
|
5787 |
#, php-format
|
5788 |
msgid ""
|
5789 |
"To get technical help, please create your account to access the Blog2Social "
|
@@ -5794,8 +5952,24 @@ msgstr ""
|
|
5794 |
"Support Community, um noch mehr Antworten zu finden und Deine Fragen zu "
|
5795 |
"stellen. (<a href=\"%s\" target=\"_blank\">Info</a>)"
|
5796 |
|
5797 |
-
#:
|
5798 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5799 |
msgid "To reactivate this connection,"
|
5800 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
5801 |
|
@@ -5809,7 +5983,7 @@ msgstr ""
|
|
5809 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
5810 |
"erforderlich."
|
5811 |
|
5812 |
-
#: views/b2s/html/header.php:
|
5813 |
msgid ""
|
5814 |
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
5815 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
@@ -5827,19 +6001,19 @@ msgid "Transfer Auto-Poster settings to other users (Business):"
|
|
5827 |
msgstr ""
|
5828 |
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
5829 |
|
5830 |
-
#: includes/Tools.php:
|
5831 |
msgid "Travel & Places"
|
5832 |
msgstr "Reisen & Orte"
|
5833 |
|
5834 |
-
#: views/b2s/support.php:
|
5835 |
msgid "Troubleshooting for Error Messages"
|
5836 |
msgstr "Fehlermeldungen und Lösungen"
|
5837 |
|
5838 |
-
#: views/b2s/support.php:
|
5839 |
msgid "Troubleshooting-Tool"
|
5840 |
msgstr "Problemanalyse-Tool"
|
5841 |
|
5842 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
5843 |
msgid "Tue"
|
5844 |
msgstr "Di"
|
5845 |
|
@@ -5847,11 +6021,11 @@ msgstr "Di"
|
|
5847 |
msgid "Tuesday"
|
5848 |
msgstr "Dienstag"
|
5849 |
|
5850 |
-
#: includes/Tools.php:
|
5851 |
msgid "Turkey"
|
5852 |
msgstr "Türkei"
|
5853 |
|
5854 |
-
#: views/b2s/support.php:
|
5855 |
msgid "Twitter Card Validator"
|
5856 |
msgstr "Twitter Card Validator"
|
5857 |
|
@@ -5890,7 +6064,7 @@ msgstr ""
|
|
5890 |
"Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
|
5891 |
"Erstelle eine Netzwerkgruppierung</a>"
|
5892 |
|
5893 |
-
#: views/b2s/repost.php:
|
5894 |
#, php-format
|
5895 |
msgid ""
|
5896 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
@@ -5908,7 +6082,7 @@ msgstr ""
|
|
5908 |
"Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
|
5909 |
"versuche es erneut!"
|
5910 |
|
5911 |
-
#: includes/Tools.php:
|
5912 |
msgid "United States of America"
|
5913 |
msgstr "Vereinigte Staaten von Amerika"
|
5914 |
|
@@ -5916,17 +6090,17 @@ msgstr "Vereinigte Staaten von Amerika"
|
|
5916 |
msgid "Unknown error"
|
5917 |
msgstr "Unbekannter Fehler"
|
5918 |
|
5919 |
-
#: views/b2s/support.php:
|
5920 |
msgid "Unknown error has occurred. Please try again."
|
5921 |
msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es erneut."
|
5922 |
|
5923 |
-
#: includes/Ajax/Post.php:
|
5924 |
-
#: includes/B2S/Network/Item.php:
|
5925 |
-
#: includes/B2S/Network/Item.php:
|
5926 |
msgid "Unknown username"
|
5927 |
msgstr "unbekannter Blog-Nutzer"
|
5928 |
|
5929 |
-
#: views/b2s/curation.php:
|
5930 |
msgid ""
|
5931 |
"Unlock Blog2Social Premium Pro to create and share image posts, video links, "
|
5932 |
"and text posts from any source."
|
@@ -5950,15 +6124,19 @@ msgstr "Aktualisierung..."
|
|
5950 |
msgid "updated posts"
|
5951 |
msgstr "Aktualisierte Beiträge"
|
5952 |
|
5953 |
-
#: views/b2s/premium.php:
|
5954 |
#: includes/B2S/AutoPost/Item.php:151 includes/B2S/RePost/Item.php:33
|
5955 |
msgid "Upgrade"
|
5956 |
msgstr "Upgrade"
|
5957 |
|
5958 |
-
#: views/b2s/html/sidebar.php:
|
5959 |
msgid "Upgrade License"
|
5960 |
msgstr "Lizenz upgraden"
|
5961 |
|
|
|
|
|
|
|
|
|
5962 |
#: views/b2s/network.php:565
|
5963 |
msgid "Upgrade to Blog2Social Business"
|
5964 |
msgstr "Upgrade auf Blog2Social Business"
|
@@ -5988,15 +6166,24 @@ msgstr "Jetzt auf Blog2Social Premium upgraden"
|
|
5988 |
msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
|
5989 |
msgstr "Jetzt auf Blog2Social PREMIUM BUSINESS upgraden"
|
5990 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5991 |
#: views/b2s/html/footer.php:55
|
5992 |
msgid "Upgrade to Blog2Social PREMIUM PRO"
|
5993 |
msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden"
|
5994 |
|
5995 |
-
#: includes/B2S/Network/Item.php:
|
5996 |
msgid "Upgrade to Blog2Social Smart"
|
5997 |
msgstr "Upgrade auf Blog2Social Smart"
|
5998 |
|
5999 |
-
#: includes/B2S/Network/Item.php:
|
6000 |
msgid ""
|
6001 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
6002 |
"templates that will automatically pre-format the structure of your social "
|
@@ -6020,11 +6207,11 @@ msgstr ""
|
|
6020 |
msgid "Upgrade to BUSINESS"
|
6021 |
msgstr "Upgrade auf BUSINESS"
|
6022 |
|
6023 |
-
#: views/b2s/html/header.php:
|
6024 |
msgid "Upgrade to PREMIUM"
|
6025 |
msgstr "Jetzt auf Premium upgraden"
|
6026 |
|
6027 |
-
#: includes/Loader.php:864 views/b2s/html/sidebar.php:
|
6028 |
#: views/b2s/html/sidebar.ship.php:44
|
6029 |
msgid "Upgrade to Premium"
|
6030 |
msgstr "Premium freischalten"
|
@@ -6033,14 +6220,14 @@ msgstr "Premium freischalten"
|
|
6033 |
msgid "Upgrade to Premium Pro now."
|
6034 |
msgstr "Upgrade auf Premium PRO"
|
6035 |
|
6036 |
-
#: views/b2s/curation.php:
|
6037 |
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
|
6038 |
msgid "Upgrade to PRO and above"
|
6039 |
msgstr "Upgrade auf PRO und höher"
|
6040 |
|
6041 |
-
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:
|
6042 |
-
#: views/b2s/dashboard.php:
|
6043 |
-
#: views/b2s/ship.php:
|
6044 |
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
|
6045 |
#: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
|
6046 |
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
|
@@ -6048,6 +6235,15 @@ msgstr "Upgrade auf PRO und höher"
|
|
6048 |
msgid "Upgrade to SMART and above"
|
6049 |
msgstr "Upgrade auf SMART und höher"
|
6050 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6051 |
#: views/b2s/network.php:468 views/b2s/network.php:568
|
6052 |
msgid "URL Parameters"
|
6053 |
msgstr "URL-Parameter"
|
@@ -6056,7 +6252,7 @@ msgstr "URL-Parameter"
|
|
6056 |
msgid "Url Shortener"
|
6057 |
msgstr "Url Shortener"
|
6058 |
|
6059 |
-
#: views/b2s/premium.php:
|
6060 |
msgid ""
|
6061 |
"Use Blog2Social Premium for even smarter social media automation: schedule "
|
6062 |
"your posts automatically with the Best Time Manager, choose specific dates "
|
@@ -6071,17 +6267,17 @@ msgstr ""
|
|
6071 |
"Veröffentliche Beiträge auf Seiten, in Gruppen und auf mehreren Konten pro "
|
6072 |
"Netzwerk, und vieles mehr."
|
6073 |
|
6074 |
-
#: views/b2s/curation.php:
|
6075 |
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
6076 |
msgstr ""
|
6077 |
"Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
|
6078 |
|
6079 |
-
#: views/b2s/autopost.php:
|
6080 |
#: includes/B2S/Ship/Image.php:101
|
6081 |
msgid "Use image"
|
6082 |
msgstr "Bild verwenden"
|
6083 |
|
6084 |
-
#: views/b2s/premium.php:
|
6085 |
msgid ""
|
6086 |
"Use the Best Times Manager to schedule your posts automatically or define "
|
6087 |
"your own best time scheme."
|
@@ -6089,7 +6285,7 @@ msgstr ""
|
|
6089 |
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
6090 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
6091 |
|
6092 |
-
#: views/b2s/settings.php:
|
6093 |
msgid ""
|
6094 |
"Use the pre-defined best time settings or define your own best time settings "
|
6095 |
"for sharing your posts . Posting at the right time can be essential to make "
|
@@ -6104,47 +6300,43 @@ msgstr ""
|
|
6104 |
msgid "User"
|
6105 |
msgstr "Benutzer"
|
6106 |
|
6107 |
-
#: views/b2s/support.php:
|
6108 |
msgid "User name"
|
6109 |
msgstr "Benutzername"
|
6110 |
|
6111 |
-
#: views/b2s/support.php:
|
6112 |
msgid "Username is taken."
|
6113 |
msgstr "Dieser Benutzername ist bereits belegt"
|
6114 |
|
6115 |
-
#: views/b2s/support.php:
|
6116 |
msgid "validate"
|
6117 |
msgstr "Link prüfen"
|
6118 |
|
6119 |
-
#: views/b2s/support.php:
|
6120 |
msgid "Validate directly on Twitter"
|
6121 |
msgstr "Direkt bei Twitter prüfen"
|
6122 |
|
6123 |
-
#: includes/B2S/Network/Item.php:
|
6124 |
msgid "Value"
|
6125 |
msgstr "Zugeordneter Wert"
|
6126 |
|
6127 |
-
#: views/b2s/html/sidebar.php:
|
6128 |
msgid "Version"
|
6129 |
msgstr "Version"
|
6130 |
|
6131 |
-
#: includes/B2S/Post/Item.php:
|
6132 |
msgid "via Browser-Extension"
|
6133 |
msgstr "via Browser-Extension"
|
6134 |
|
6135 |
-
#: views/b2s/curation.php:46
|
6136 |
-
msgid "Video Post"
|
6137 |
-
msgstr "Video-Beitrag"
|
6138 |
-
|
6139 |
#: views/b2s/network.php:180
|
6140 |
msgid "View schedule posts"
|
6141 |
msgstr "Geplante Beiträge anzeigen"
|
6142 |
|
6143 |
-
#: includes/B2S/Ship/Save.php:
|
6144 |
msgid "view social media post"
|
6145 |
msgstr "Zeige Social Media Beitrag an"
|
6146 |
|
6147 |
-
#: includes/B2S/Ship/Item.php:
|
6148 |
msgid ""
|
6149 |
"Violating these rules can result in suspending your account. Always vary "
|
6150 |
"your content with different images, comments, hashtags or handles to prevent "
|
@@ -6154,8 +6346,8 @@ msgstr ""
|
|
6154 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
6155 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
6156 |
|
6157 |
-
#: includes/B2S/Ship/Item.php:
|
6158 |
-
#: includes/B2S/Ship/Item.php:
|
6159 |
msgid ""
|
6160 |
"Violating these rules can result in Twitter suspending your account. Always "
|
6161 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -6173,11 +6365,11 @@ msgstr ""
|
|
6173 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
6174 |
"überprüfe deine Autorisierung."
|
6175 |
|
6176 |
-
#: views/b2s/metrics.php:
|
6177 |
msgid "We hope you enjoy analysing your posts!"
|
6178 |
msgstr "Wir wünschen Dir viel Spaß beim Analysieren Deiner Beiträge!"
|
6179 |
|
6180 |
-
#: views/b2s/html/header.php:
|
6181 |
msgid "We hope you liked Blog2Social Premium."
|
6182 |
msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
|
6183 |
|
@@ -6185,7 +6377,7 @@ msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
|
|
6185 |
msgid "We never store your data from your social media profiles"
|
6186 |
msgstr "Wir speichern Deine Daten aus Deinen Social-Media-Profilen niemals."
|
6187 |
|
6188 |
-
#: views/b2s/html/header.php:
|
6189 |
msgid "We updated our Privacy Policy"
|
6190 |
msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
6191 |
|
@@ -6194,11 +6386,7 @@ msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
|
6194 |
msgid "Website"
|
6195 |
msgstr "Website"
|
6196 |
|
6197 |
-
#:
|
6198 |
-
msgid "Website & Blog Content"
|
6199 |
-
msgstr "Webseiten & Blog Content"
|
6200 |
-
|
6201 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1376
|
6202 |
msgid "Wed"
|
6203 |
msgstr "Mi"
|
6204 |
|
@@ -6206,25 +6394,29 @@ msgstr "Mi"
|
|
6206 |
msgid "Wednesday"
|
6207 |
msgstr "Mittwoch"
|
6208 |
|
6209 |
-
#: includes/B2S/Ship/Item.php:
|
6210 |
msgid "Week"
|
6211 |
msgstr "Woche"
|
6212 |
|
6213 |
-
#: includes/B2S/Ship/Item.php:
|
6214 |
msgid "weekly"
|
6215 |
msgstr "wöchentlich"
|
6216 |
|
6217 |
-
#: includes/B2S/Ship/Item.php:
|
6218 |
msgid "Weeks"
|
6219 |
msgstr "Wochen"
|
6220 |
|
6221 |
-
#: views/b2s/metrics.php:
|
6222 |
msgid "Welcome to the trial of the beta version \"Social Media Metrics\"!"
|
6223 |
msgstr ""
|
6224 |
"Herzlich Willkommen zur Testphase der Beta-Version \"Social-Media-"
|
6225 |
"Kennzahlen\"!"
|
6226 |
|
6227 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
6228 |
msgid "What would you like to share?"
|
6229 |
msgstr "Was möchtest Du teilen?"
|
6230 |
|
@@ -6236,7 +6428,7 @@ msgstr "Wann möchtest Du Deinen Beitrag auf den Social Media teilen?"
|
|
6236 |
msgid "When should your content be shared?"
|
6237 |
msgstr "Wann soll Dein Content geteilt werden?"
|
6238 |
|
6239 |
-
#: views/b2s/network.php:659 views/b2s/ship.php:
|
6240 |
#, php-format
|
6241 |
msgid ""
|
6242 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
@@ -6258,8 +6450,8 @@ msgstr ""
|
|
6258 |
"um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
|
6259 |
"Informationen: So verbindest Du Deine Website mit Instagram.</a>"
|
6260 |
|
6261 |
-
#: views/b2s/curation.php:
|
6262 |
-
#: views/b2s/post.calendar.php:
|
6263 |
msgid ""
|
6264 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
6265 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -6308,9 +6500,9 @@ msgstr ""
|
|
6308 |
msgid "With Blog2Social Premium PRO you can post multiple images."
|
6309 |
msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
|
6310 |
|
6311 |
-
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:
|
6312 |
-
#: views/b2s/dashboard.php:
|
6313 |
-
#: views/b2s/ship.php:
|
6314 |
#: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
|
6315 |
#: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
|
6316 |
#: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
|
@@ -6318,6 +6510,15 @@ msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
|
|
6318 |
msgid "With Blog2Social Premium you can:"
|
6319 |
msgstr "Mit Blog2Social kannst Du:"
|
6320 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6321 |
#: views/b2s/network.php:706
|
6322 |
msgid ""
|
6323 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
@@ -6388,7 +6589,7 @@ msgstr ""
|
|
6388 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
6389 |
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
6390 |
|
6391 |
-
#: views/b2s/curation.php:
|
6392 |
msgid ""
|
6393 |
"With Blog2Social you can share social media posts consisting of text, links, "
|
6394 |
"images, and videos automatically with your followers and readers and "
|
@@ -6399,7 +6600,7 @@ msgstr ""
|
|
6399 |
"und Deine Beiträge mit individuellen Hashtags, @Mentions oder Emojis "
|
6400 |
"anpassen."
|
6401 |
|
6402 |
-
#: views/b2s/curation.php:
|
6403 |
msgid ""
|
6404 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
6405 |
"create your own social media posts to share any content based on text, links,"
|
@@ -6453,7 +6654,7 @@ msgstr ""
|
|
6453 |
"pro Social Media Kanal verändern und Deine Beiträge als BildPost oder als "
|
6454 |
"Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
|
6455 |
|
6456 |
-
#: views/b2s/metrics.php:
|
6457 |
msgid ""
|
6458 |
"With this function, you can compare the social media metrics for a period "
|
6459 |
"you choose by yourself and check whether the number of shared posts, "
|
@@ -6469,11 +6670,11 @@ msgstr ""
|
|
6469 |
"Tagen, um diese Zeit mit den 3 Tagen davor zu vergleichen. So erhältst Du "
|
6470 |
"links eine Gesamtzahl und rechts den Vergleich zu den 3 Tagen davor."
|
6471 |
|
6472 |
-
#: views/b2s/metrics.php:
|
6473 |
msgid "WordPress posts, pages and products"
|
6474 |
msgstr "WordPress-Beiträge, -Seiten und -Produkte"
|
6475 |
|
6476 |
-
#: views/b2s/html/header.php:
|
6477 |
#| msgid ""
|
6478 |
#| "WordPress session timeout: For security reasons, WordPress will let your "
|
6479 |
#| "session expire automatically if your site has been inactive for a while. "
|
@@ -6496,7 +6697,7 @@ msgstr ""
|
|
6496 |
"WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
|
6497 |
"Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
|
6498 |
|
6499 |
-
#: views/b2s/html/header.php:
|
6500 |
msgid ""
|
6501 |
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
6502 |
"heartbeats for using Blog2Social! See also:"
|
@@ -6508,39 +6709,39 @@ msgstr ""
|
|
6508 |
msgid "Would you like to retweet?"
|
6509 |
msgstr "Möchtest Du Retweeten?"
|
6510 |
|
6511 |
-
#: includes/B2S/Ship/Item.php:
|
6512 |
-
#: includes/B2S/Ship/Item.php:
|
6513 |
-
#: includes/B2S/Ship/Item.php:
|
6514 |
-
#: includes/B2S/Ship/Item.php:
|
6515 |
-
#: includes/B2S/Ship/Item.php:
|
6516 |
-
#: includes/B2S/Ship/Item.php:
|
6517 |
-
#: includes/B2S/Ship/Item.php:
|
6518 |
-
#: includes/B2S/Ship/Item.php:
|
6519 |
-
#: includes/B2S/Ship/Item.php:
|
6520 |
msgid "Write something about your post..."
|
6521 |
msgstr "Schreibe etwas..."
|
6522 |
|
6523 |
-
#: views/b2s/curation.php:
|
6524 |
#: includes/B2S/Curation/View.php:23
|
6525 |
msgid "Write something..."
|
6526 |
msgstr "Schreibe etwas..."
|
6527 |
|
6528 |
-
#: views/b2s/support.php:
|
6529 |
msgid "Yay :) You successfully registered for the Blog2Social Community!"
|
6530 |
msgstr ""
|
6531 |
"Hurra :) Deine Registrierung für die Blog2Social Community war erfolgreich!"
|
6532 |
|
6533 |
-
#: views/b2s/curation.php:
|
6534 |
-
#: views/b2s/ship.php:
|
6535 |
msgid "YES"
|
6536 |
msgstr "JA"
|
6537 |
|
6538 |
-
#: views/b2s/curation.draft.php:91 views/b2s/metrics.php:
|
6539 |
#: views/b2s/network.php:116 views/b2s/network.php:179
|
6540 |
-
#: views/b2s/post.approve.php:
|
6541 |
-
#: views/b2s/post.notice.php:
|
6542 |
-
#: views/b2s/post.sched.php:
|
6543 |
-
#: views/b2s/repost.php:
|
6544 |
msgid "YES, delete"
|
6545 |
msgstr "Ja, löschen"
|
6546 |
|
@@ -6548,11 +6749,11 @@ msgstr "Ja, löschen"
|
|
6548 |
msgid "Yes, I accept"
|
6549 |
msgstr "Ja,einverstanden"
|
6550 |
|
6551 |
-
#: views/b2s/html/header.php:
|
6552 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
6553 |
msgstr "Ja, ich möchte Blog2Social Premium 30 Tage kostenlos testen"
|
6554 |
|
6555 |
-
#: views/b2s/html/header.php:
|
6556 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
6557 |
msgstr "Ja, ich möchte gerne auf Blog2Social Premium upgraden"
|
6558 |
|
@@ -6573,12 +6774,12 @@ msgstr ""
|
|
6573 |
msgid "You are signed out of PR-Gateway!"
|
6574 |
msgstr "Du bist von PR-Gateway abgemeldet!"
|
6575 |
|
6576 |
-
#: views/b2s/metrics.php:
|
6577 |
-
#: views/b2s/post.publish.php:
|
6578 |
msgid "You are sure, you want to delete entries from the reporting?"
|
6579 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
6580 |
|
6581 |
-
#: views/b2s/post.sched.php:
|
6582 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
6583 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
6584 |
|
@@ -6632,7 +6833,7 @@ msgstr ""
|
|
6632 |
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
6633 |
"bearbeitest"
|
6634 |
|
6635 |
-
#: views/b2s/html/header.php:
|
6636 |
msgid ""
|
6637 |
"You can now track the performance of your post directly in Blog2Social, and "
|
6638 |
"you can test it exclusively and for free!"
|
@@ -6640,7 +6841,7 @@ msgstr ""
|
|
6640 |
"Ab sofort stehen Dir Daten zur Performance Deiner Beiträge direkt in "
|
6641 |
"Blog2Social zur Verfügung, und Du kannst es exklusiv und kostenlos testen!"
|
6642 |
|
6643 |
-
#: views/b2s/metrics.php:
|
6644 |
msgid ""
|
6645 |
"You can now track the performance of your posts directly in Blog2Social, "
|
6646 |
"starting with Facebook and Twitter, as well as other networks to follow. And "
|
@@ -6651,7 +6852,7 @@ msgstr ""
|
|
6651 |
"weiteren Netzwerken, die folgen werden. Und Du kannst es exklusiv und "
|
6652 |
"kostenlos testen!"
|
6653 |
|
6654 |
-
#: views/b2s/metrics.php:
|
6655 |
msgid ""
|
6656 |
"You can now track the performance of your posts for Facebook and Twitter "
|
6657 |
"directly in Blog2Social. With these Social Media Metrics, you can analyze "
|
@@ -6675,7 +6876,7 @@ msgstr ""
|
|
6675 |
"Du kannst Deine Verbindung nur mit Blog-Benutzern teilen, die dieselbe "
|
6676 |
"Lizenz verwenden wie Du."
|
6677 |
|
6678 |
-
#: views/b2s/ship.php:
|
6679 |
msgid ""
|
6680 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
6681 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -6701,7 +6902,7 @@ msgstr ""
|
|
6701 |
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
6702 |
"kannst. "
|
6703 |
|
6704 |
-
#: views/b2s/ship.php:
|
6705 |
msgid ""
|
6706 |
"You can save your current network selection. This network selection will be "
|
6707 |
"loaded automatically next time you open the social media post editor via "
|
@@ -6721,7 +6922,7 @@ msgstr ""
|
|
6721 |
"Du kannst verschiedene Netzwerk-Gruppierungen auswählen und für verschiedene "
|
6722 |
"Zwecke speichern."
|
6723 |
|
6724 |
-
#: views/b2s/curation.php:
|
6725 |
#| msgid ""
|
6726 |
#| "You can select to share your post as link post, video link post, or "
|
6727 |
#| "image post on the following social networks:"
|
@@ -6732,11 +6933,11 @@ msgstr ""
|
|
6732 |
"Du kannst einen Link-Beitrag, einen Video-Link-Beitrag oder einen Bild-"
|
6733 |
"Beitrag auf den folgenden Social-Media-Netzwerken teilen:"
|
6734 |
|
6735 |
-
#: views/b2s/curation.php:
|
6736 |
msgid "You can share a text post on the following networks:"
|
6737 |
msgstr "Du kannst einen Textbeitrag in den folgenden Netzwerken teilen:"
|
6738 |
|
6739 |
-
#: views/b2s/metrics.php:
|
6740 |
msgid ""
|
6741 |
"You can track the following Social Media Metrics depending on the social "
|
6742 |
"networks:"
|
@@ -6767,7 +6968,7 @@ msgstr ""
|
|
6767 |
"unterstützt werden, erhältst Du in dem \n"
|
6768 |
"<a href=\"%s\" target=\"_blank\">\"Link-Shortener\"-Guide</a>."
|
6769 |
|
6770 |
-
#: views/b2s/html/header.php:
|
6771 |
msgid ""
|
6772 |
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
6773 |
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
@@ -6787,7 +6988,7 @@ msgstr "Du hast keine Business-Lizenz"
|
|
6787 |
msgid "You have already retweeted this post."
|
6788 |
msgstr "Du hast diesen Post bereits retweetet."
|
6789 |
|
6790 |
-
#: views/b2s/html/header.php:
|
6791 |
msgid ""
|
6792 |
"You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
|
6793 |
"that you use only one plugin to set social meta tags so that the networks "
|
@@ -6798,12 +6999,12 @@ msgstr ""
|
|
6798 |
"damit die Netzwerke die Link-Vorschau Deines Beitrags korrekt anzeigen "
|
6799 |
"können."
|
6800 |
|
6801 |
-
#: views/b2s/html/header.php:
|
6802 |
msgid "You have deleted all meta data for posts and pages successfully."
|
6803 |
msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
|
6804 |
|
6805 |
-
#: views/b2s/curation.php:
|
6806 |
-
#: views/b2s/post.calendar.php:
|
6807 |
msgid ""
|
6808 |
"You have evergreen content you want to re-share from time to time in your "
|
6809 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
@@ -6813,7 +7014,7 @@ msgstr ""
|
|
6813 |
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
6814 |
"wiederkehrenden Rhythmus"
|
6815 |
|
6816 |
-
#: includes/B2S/Post/Item.php:
|
6817 |
msgid "You have no posts in your queue."
|
6818 |
msgstr "Du hast noch keine Beiträge in Deiner Warteschlange."
|
6819 |
|
@@ -6821,19 +7022,19 @@ msgstr "Du hast noch keine Beiträge in Deiner Warteschlange."
|
|
6821 |
msgid "You have no posts published or scheduled"
|
6822 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
|
6823 |
|
6824 |
-
#: includes/B2S/Post/Item.php:
|
6825 |
msgid "You have not published or scheduled any posts."
|
6826 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
6827 |
|
6828 |
-
#: includes/B2S/Post/Item.php:
|
6829 |
msgid "You have not saved any drafts."
|
6830 |
msgstr "Du hast keine Entwürfe gespeichert."
|
6831 |
|
6832 |
-
#: views/b2s/post.favorites.php:
|
6833 |
msgid "You have not saved any favorites."
|
6834 |
msgstr "Du hast keine Favoriten gespeichert."
|
6835 |
|
6836 |
-
#: views/b2s/network.php:391 views/b2s/ship.php:
|
6837 |
msgid ""
|
6838 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
6839 |
"up at least one pinboard to pin on your Pinterest account!"
|
@@ -6846,7 +7047,7 @@ msgid "You have still set up scheduled posts for this network:"
|
|
6846 |
msgstr ""
|
6847 |
"Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
6848 |
|
6849 |
-
#: views/b2s/autopost.php:
|
6850 |
#: includes/B2S/Ship/Image.php:29
|
6851 |
msgid ""
|
6852 |
"You need a higher user role to upload an image on this blog. Please contact "
|
@@ -6855,7 +7056,7 @@ msgstr ""
|
|
6855 |
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
6856 |
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
6857 |
|
6858 |
-
#: views/b2s/support.php:
|
6859 |
msgid ""
|
6860 |
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
6861 |
"administrator."
|
@@ -6867,7 +7068,7 @@ msgstr ""
|
|
6867 |
msgid "You need at least one network collection"
|
6868 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
6869 |
|
6870 |
-
#: views/b2s/ship.php:
|
6871 |
msgid "You want re-share your blog post?"
|
6872 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
6873 |
|
@@ -6881,33 +7082,33 @@ msgid "You want to change the image, title and description for your post?"
|
|
6881 |
msgstr ""
|
6882 |
"Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
|
6883 |
|
6884 |
-
#: includes/B2S/Ship/Item.php:
|
6885 |
-
#: includes/B2S/Ship/Item.php:
|
6886 |
-
#: includes/B2S/Ship/Item.php:
|
6887 |
-
#: includes/B2S/Ship/Item.php:
|
6888 |
msgid ""
|
6889 |
"You want to change your link image, link title and link description for this "
|
6890 |
"network? Click here."
|
6891 |
msgstr ""
|
6892 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
6893 |
|
6894 |
-
#: includes/B2S/Network/Item.php:
|
6895 |
msgid "You want to connect a network page?"
|
6896 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
6897 |
|
6898 |
-
#: includes/B2S/Network/Item.php:
|
6899 |
-
#: includes/B2S/Network/Item.php:
|
6900 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:59
|
6901 |
#: includes/B2S/Ship/Portale.php:63 includes/B2S/Ship/Portale.php:65
|
6902 |
msgid "You want to connect a network profile?"
|
6903 |
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
6904 |
|
6905 |
-
#: includes/B2S/Network/Item.php:
|
6906 |
msgid "You want to connect a social media group?"
|
6907 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
6908 |
|
6909 |
-
#: views/b2s/network.php:388 views/b2s/network.php:389 views/b2s/ship.php:
|
6910 |
-
#: views/b2s/ship.php:
|
6911 |
#, php-format
|
6912 |
msgid ""
|
6913 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
@@ -6916,38 +7117,38 @@ msgstr ""
|
|
6916 |
"Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
|
6917 |
"href=\"%s\">Upgrade auf Blog2Social Premium</a>"
|
6918 |
|
6919 |
-
#: views/b2s/curation.php:
|
6920 |
msgid "You want to create image posts with any image from your media library?"
|
6921 |
msgstr ""
|
6922 |
"Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
|
6923 |
"erstellen?"
|
6924 |
|
6925 |
-
#: views/b2s/curation.php:
|
6926 |
msgid "You want to create text posts?"
|
6927 |
msgstr "Möchtest Du Text-Posts erstellen?"
|
6928 |
|
6929 |
-
#: views/b2s/network.php:
|
6930 |
msgid "You want to define a new combination of networks?"
|
6931 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
6932 |
|
6933 |
-
#: includes/B2S/Post/Item.php:
|
6934 |
msgid "You want to delete a publish post entry?"
|
6935 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
6936 |
|
6937 |
-
#: includes/B2S/Post/Item.php:
|
6938 |
msgid "You want to delete your Social Media post?"
|
6939 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
6940 |
|
6941 |
-
#: includes/B2S/Post/Item.php:
|
6942 |
msgid "You want to edit your scheduled post?"
|
6943 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
6944 |
|
6945 |
-
#: views/b2s/ship.php:
|
6946 |
msgid "You want to load your time settings?"
|
6947 |
msgstr "Du möchtest Deine Zeiten laden?"
|
6948 |
|
6949 |
-
#: views/b2s/curation.php:
|
6950 |
-
#: views/b2s/post.calendar.php:
|
6951 |
msgid ""
|
6952 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
6953 |
"desired date and you are ready to go!"
|
@@ -6955,14 +7156,14 @@ msgstr ""
|
|
6955 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
6956 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
6957 |
|
6958 |
-
#: views/b2s/network.php:
|
6959 |
#: views/b2s/html/footer.php:256
|
6960 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
6961 |
msgstr ""
|
6962 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
6963 |
"Manager benutzen?"
|
6964 |
|
6965 |
-
#: views/b2s/settings.php:
|
6966 |
#, php-format
|
6967 |
msgid ""
|
6968 |
"You will find more information about the pre-defined best time settings by "
|
@@ -6972,7 +7173,7 @@ msgstr ""
|
|
6972 |
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
6973 |
"Zeiten\"-Guide</a>."
|
6974 |
|
6975 |
-
#: views/b2s/network.php:687 views/b2s/ship.php:
|
6976 |
#, php-format
|
6977 |
msgid ""
|
6978 |
"You will find more information and detailed instructions in the <a "
|
@@ -6981,7 +7182,7 @@ msgstr ""
|
|
6981 |
"Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
|
6982 |
"href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden</a>."
|
6983 |
|
6984 |
-
#: views/b2s/settings.php:
|
6985 |
#, php-format
|
6986 |
msgid ""
|
6987 |
"You will find more information on how to connect your social media networks "
|
@@ -6992,7 +7193,7 @@ msgstr ""
|
|
6992 |
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
6993 |
"Social-Media-Netzwerke verbinden kannst."
|
6994 |
|
6995 |
-
#: views/b2s/settings.php:
|
6996 |
#, php-format
|
6997 |
msgid ""
|
6998 |
"You will find more information on how to use post templates for your social "
|
@@ -7011,15 +7212,15 @@ msgstr ""
|
|
7011 |
"Mehr Informationen dazu, wie Du die Einstellungen zuweisen kannst, findest "
|
7012 |
"Du in diesem <a target=\"_blank\" href=\"%s\">Auto-Poster-Guide</a>. "
|
7013 |
|
7014 |
-
#: views/b2s/dashboard.php:
|
7015 |
msgid "Your Activity"
|
7016 |
msgstr "Deine Aktivität"
|
7017 |
|
7018 |
-
#: views/b2s/html/header.php:
|
7019 |
msgid "Your authorization could not be removed."
|
7020 |
msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
7021 |
|
7022 |
-
#: views/b2s/html/header.php:
|
7023 |
msgid "Your authorization has been removed successfully."
|
7024 |
msgstr "Deine Autorisierung wurde erfolgreich entfernt."
|
7025 |
|
@@ -7042,11 +7243,11 @@ msgstr ""
|
|
7042 |
"den Blog2Social-Netzwerkeinstellungen erneut. <a target=\"_blank\" "
|
7043 |
"href=\"%s\">So verbindest Du Dein Konto neu.</a>"
|
7044 |
|
7045 |
-
#: views/b2s/html/header.php:
|
7046 |
msgid "Your authorization was successful."
|
7047 |
msgstr "Deine Autorisierung war erfolgreich."
|
7048 |
|
7049 |
-
#: views/b2s/ship.php:
|
7050 |
msgid "Your blog post is not yet published on your Wordpress!"
|
7051 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
7052 |
|
@@ -7086,11 +7287,15 @@ msgstr ""
|
|
7086 |
"auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
|
7087 |
"<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
7088 |
|
7089 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
7090 |
msgid "Your current license:"
|
7091 |
msgstr "Deine aktuelle Lizenz:"
|
7092 |
|
7093 |
-
#: views/b2s/html/header.php:
|
7094 |
msgid "Your daily limit for posting automatically has been reached."
|
7095 |
msgstr "Dein tägliches Limit für Autoposter-Beiträge ist erreicht."
|
7096 |
|
@@ -7105,7 +7310,7 @@ msgstr ""
|
|
7105 |
msgid "Your daily limit has been reached."
|
7106 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
7107 |
|
7108 |
-
#: views/b2s/html/header.php:
|
7109 |
msgid "Your entered License Key is invalid. Please contact support!"
|
7110 |
msgstr ""
|
7111 |
"Der eingegebene Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren "
|
@@ -7131,27 +7336,50 @@ msgstr ""
|
|
7131 |
"Erfahre, wie Du die Facebook-Seiteneinstellungen prüfen und ändern kannst."
|
7132 |
"</a>"
|
7133 |
|
7134 |
-
#: views/b2s/html/header.php:
|
7135 |
msgid "Your feedback could not be delivered."
|
7136 |
msgstr "Dein Feedback konnte nicht gesendet werden."
|
7137 |
|
7138 |
-
#: views/b2s/html/header.php:
|
7139 |
msgid "Your free Blog2Social Premium trial version is activated for "
|
7140 |
msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
|
7141 |
|
7142 |
-
#: views/b2s/html/header.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7143 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
7144 |
msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
|
7145 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7146 |
#: includes/Loader.php:952
|
7147 |
msgid "Your group can not be found by the network."
|
7148 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
7149 |
|
7150 |
-
#: views/b2s/html/header.php:
|
7151 |
msgid "Your license key has reached the maximum number of users."
|
7152 |
msgstr "Dein Lizenzschlüssel hat die maximale Anzahl von Benutzern erreicht."
|
7153 |
|
7154 |
-
#: views/b2s/html/header.php:
|
7155 |
msgid ""
|
7156 |
"Your limit for your quota of posts in your queue has been reached. Please "
|
7157 |
"delete posts from your queue before you add more"
|
@@ -7190,8 +7418,8 @@ msgstr ""
|
|
7190 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
7191 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
7192 |
|
7193 |
-
#: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:
|
7194 |
-
#: includes/B2S/Ship/Save.php:
|
7195 |
#, php-format
|
7196 |
msgid ""
|
7197 |
"Your post could not be posted. More information in this <a href=\"%s\" "
|
@@ -7214,11 +7442,11 @@ msgstr ""
|
|
7214 |
"geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
|
7215 |
"planen."
|
7216 |
|
7217 |
-
#: views/b2s/html/header.php:
|
7218 |
msgid "Your profile could not be saved."
|
7219 |
msgstr "Dein Profil konnte nicht gespeichert werden."
|
7220 |
|
7221 |
-
#: views/b2s/html/header.php:
|
7222 |
msgid "Your profile was saved successful."
|
7223 |
msgstr "Dein Profil wurde erfolgreich gespeichert. "
|
7224 |
|
@@ -7226,7 +7454,7 @@ msgstr "Dein Profil wurde erfolgreich gespeichert. "
|
|
7226 |
msgid "Your profiles:"
|
7227 |
msgstr "weitere Profile:"
|
7228 |
|
7229 |
-
#: views/b2s/ship.php:
|
7230 |
msgid ""
|
7231 |
"Your saved networks will be activated for your schedule (green checkmark) in "
|
7232 |
"the right side navigation. You can select or deselect social network "
|
@@ -7239,7 +7467,7 @@ msgstr ""
|
|
7239 |
"Schaltfläche \"+ Mehr hinzufügen\", im obersten Feld der Navigation, neue "
|
7240 |
"Netzwerke verbinden."
|
7241 |
|
7242 |
-
#: views/b2s/html/header.php:
|
7243 |
msgid ""
|
7244 |
"Your settings could not be saved, because you have auto-posting enabled but "
|
7245 |
"no social networks selected."
|
@@ -7247,11 +7475,11 @@ msgstr ""
|
|
7247 |
"Deine Einstellungen konnten nicht gespeichert werden, da Du keine sozialen "
|
7248 |
"Netzwerke ausgewählt hast, bevor Du den Auto-Poster aktiviert hast."
|
7249 |
|
7250 |
-
#: views/b2s/html/header.php:
|
7251 |
msgid "Your settings could not be saved."
|
7252 |
msgstr "Deine Einstellungen konnten nicht gespeichert werden."
|
7253 |
|
7254 |
-
#: views/b2s/html/header.php:
|
7255 |
msgid "Your settings were successfully saved."
|
7256 |
msgstr "Deine Einstellungen wurden erfolgreich gespeichert. "
|
7257 |
|
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: 2022-03-29 09:57+0000\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
"Language-Team: Deutsch\n"
|
18 |
"X-Loco-Version: 2.5.3; wp-5.9"
|
19 |
|
20 |
+
#: views/b2s/html/header.php:301
|
21 |
msgid " Days"
|
22 |
msgstr "Tage"
|
23 |
|
24 |
+
#: views/b2s/html/header.php:244
|
25 |
msgid " or upgade your Blog2Social license to extend your quota."
|
26 |
msgstr ""
|
27 |
" oder upgrade Deine Blog2Social Lizenz, um Deine Warteschlange zu erweitern."
|
28 |
|
29 |
+
#: views/b2s/html/header.php:301
|
30 |
msgid " today"
|
31 |
msgstr "heute"
|
32 |
|
33 |
+
#: views/b2s/html/header.php:660
|
34 |
+
msgid ""
|
35 |
+
"\"Blog2Social is the master tool any blogger or marketer needs to automate "
|
36 |
+
"your social media activity. It removes so much work and stress that's "
|
37 |
+
"involved in posting to your networks manually. Also, the scheduling and "
|
38 |
+
"reposting features are terrific. Blog2Social simplifies my life immensely!\""
|
39 |
+
msgstr ""
|
40 |
+
"\"Lange überlegt wie ich meine Posts optimieren kann, gesucht, gesucht und "
|
41 |
+
"dann Blog2Social gefunden. Erspart mir nun täglich viel Zeit.\""
|
42 |
+
|
43 |
+
#: views/b2s/metrics.php:210
|
44 |
msgid "\"Social Media Posts\" consisting of a link, video, image or text."
|
45 |
msgstr ""
|
46 |
"\"Social Media Posts\" bestehend aus Link, Video, Bild oder Text teilen."
|
63 |
msgid "(SMART)"
|
64 |
msgstr "(SMART)"
|
65 |
|
66 |
+
#: includes/B2S/Network/Item.php:629
|
67 |
msgid "+ add Parameter"
|
68 |
msgstr "+ Parameter hinzufügen"
|
69 |
|
70 |
+
#: includes/B2S/Ship/Save.php:444
|
71 |
msgid ""
|
72 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
73 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
80 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
81 |
"Facebook-Profil zu senden!"
|
82 |
|
83 |
+
#: includes/B2S/Ship/Save.php:452
|
84 |
msgid ""
|
85 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
86 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
93 |
"Sharing” Tab. Klicke dann auf \"Teilen\", um Deinen Post dann an Dein "
|
94 |
"Facebook-Profil zu senden!"
|
95 |
|
96 |
+
#: includes/B2S/Ship/Save.php:443
|
97 |
msgid ""
|
98 |
"-To share your post immediately, click the \"Share\" button next to your "
|
99 |
"selected Facebook profile below."
|
101 |
"-Um den Beitrag sofort zu teilen, klicke einfach auf den “Teilen” Button "
|
102 |
"neben Deinem unten aufgeführten Profil."
|
103 |
|
104 |
+
#: includes/B2S/Ship/Save.php:451
|
105 |
msgid ""
|
106 |
"-To share your post immediately, click the \"Share\" button next to your "
|
107 |
"selected Google+ account below."
|
109 |
"Um den Beitrag sofort zu teilen, klicke einfach auf den Teilen Button neben "
|
110 |
"Deinem unten aufgeführten Konto."
|
111 |
|
112 |
+
#: views/b2s/autopost.php:118 views/b2s/autopost.php:158
|
113 |
msgid ""
|
114 |
"1. for auto-posting your original Wordpress content (posts, pages and media)"
|
115 |
msgstr ""
|
116 |
"1. für das Auto-Posting Deiner eigenen WordPress-Inhalte (Beiträge, Seiten "
|
117 |
"und Medien)."
|
118 |
|
119 |
+
#: views/b2s/autopost.php:136 views/b2s/autopost.php:172
|
120 |
#, php-format
|
121 |
msgid ""
|
122 |
"1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
|
125 |
"1. mit einer gültigen Blog2Social Premium Lizenz aktiviert ist (<a "
|
126 |
"href=\"%s\" target=\"_blank\">Wie aktiviere ich meinen Lizenzschlüssel?</a>) "
|
127 |
|
128 |
+
#: views/b2s/network.php:680 views/b2s/ship.php:736
|
129 |
msgid "1. Your Instagram account is set to \"Business\" and not \"Creator\"."
|
130 |
msgstr ""
|
131 |
"1. Dein Instagram-Konto ist auf “Business” und nicht auf “Creator” "
|
143 |
msgid "1x publish report"
|
144 |
msgstr "1 x Veröffentlichungsreport"
|
145 |
|
146 |
+
#: views/b2s/autopost.php:125 views/b2s/autopost.php:163
|
147 |
msgid ""
|
148 |
"2. for auto-posting imported posts (imported RSS feeds or posts created / "
|
149 |
"imported with another plugin). "
|
151 |
"2. für das Auto-Posting importierter Beiträge (importierte RSS-Feeds oder "
|
152 |
"Beiträge, die mit einem anderen Plugin erstellt/importiert wurden). "
|
153 |
|
154 |
+
#: views/b2s/autopost.php:138 views/b2s/autopost.php:174
|
155 |
msgid ""
|
156 |
"2. has the selected social media networks connected or assigned (Blog2Social "
|
157 |
"-> Networks)"
|
159 |
"2. die ausgewählten Social-Media-Netzwerke verbunden oder zugewiesen hat "
|
160 |
"(Blog2Social -> Netzwerke)"
|
161 |
|
162 |
+
#: views/b2s/network.php:682 views/b2s/ship.php:738
|
163 |
msgid "2. Your Instagram account is linked to a Facebook page."
|
164 |
msgstr "2. Dein Instagram-Konto ist mit einer Facebook-Seite verknüpft."
|
165 |
|
166 |
+
#: views/b2s/network.php:684 views/b2s/ship.php:740
|
167 |
msgid "3. Blog2Social has the permission to publish your posts."
|
168 |
msgstr "3. Blog2Social hat die Erlaubnis, Deine Beiträge zu veröffentlichen."
|
169 |
|
170 |
+
#: views/b2s/autopost.php:140 views/b2s/autopost.php:176
|
171 |
msgid "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
|
172 |
msgstr ""
|
173 |
"3. mit den richtigen Auto-Poster-Einstellungen aktiviert ist (Auto-Poster "
|
182 |
"<a href=\"%s\" target=\"_blank\">Erhalte mehr Informationen dazu, wie Du "
|
183 |
"weitere Seiten und Gruppen dazu buchen kannst.</a>"
|
184 |
|
185 |
+
#: views/b2s/autopost.php:165
|
186 |
#, php-format
|
187 |
msgid ""
|
188 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
192 |
"<a href=\"%s\" target=\"_blank\">Importierte Beiträge mit dem Auto-Poster "
|
193 |
"teilen- Checkliste für Problemlösungen</a>"
|
194 |
|
195 |
+
#: views/b2s/autopost.php:127
|
196 |
#, php-format
|
197 |
msgid ""
|
198 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
201 |
"<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für "
|
202 |
"importierte Beiträge ein</a>"
|
203 |
|
204 |
+
#: views/b2s/autopost.php:160
|
205 |
#, php-format
|
206 |
msgid ""
|
207 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
211 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
212 |
"original WordPress posts</a>"
|
213 |
|
214 |
+
#: views/b2s/autopost.php:120
|
215 |
#, php-format
|
216 |
msgid ""
|
217 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
220 |
"<a href=\"%s\" target=\"_blank\">So richtest Du den Auto-Poster für Deine "
|
221 |
"WordPress-Inhalte ein</a>"
|
222 |
|
223 |
+
#: includes/Loader.php:1692 includes/System.php:32 includes/System.php:38
|
224 |
#, php-format
|
225 |
msgid ""
|
226 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
229 |
"<a href=\"%s\" target=\"_blank\">Weitere Informationen und Hilfe findest Du "
|
230 |
"in unserem FAQs.</a>"
|
231 |
|
232 |
+
#: views/b2s/autopost.php:129
|
233 |
#, php-format
|
234 |
msgid ""
|
235 |
"<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-Poster-"
|
238 |
"<a href=\"%s\" target=\"_blank\">Importierte Beiträge mit dem Auto-Poster "
|
239 |
"teilen- Checkliste für Problemlösungen</a>"
|
240 |
|
241 |
+
#: views/b2s/autopost.php:122
|
242 |
#, php-format
|
243 |
msgid ""
|
244 |
"<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
|
276 |
"Blog2Social to continue to use the latest version of the plugin."
|
277 |
msgstr "<b> Eine neue Version von Blog2Social ist verfügbar </b>"
|
278 |
|
279 |
+
#: views/b2s/support.php:99
|
280 |
#, php-format
|
281 |
msgid ""
|
282 |
"<b>Already registered?</b> <a href=\"%s\" target=\"_blank\">Login to your "
|
312 |
"definiert. Du kannst diese Einstellungen für Dein Profil jederzeit in den "
|
313 |
"Auto-Poster-Einstellungen deaktivieren."
|
314 |
|
315 |
+
#: views/b2s/ship.php:509 views/b2s/ship.php:524
|
316 |
msgid "About Xing guidelines for crossposting in groups"
|
317 |
msgstr "Informationen zu Xing-Richtlinien für Crossposting in Gruppen"
|
318 |
|
319 |
+
#: views/b2s/network.php:395 views/b2s/ship.php:649
|
320 |
msgid ""
|
321 |
"Access to this resource on your server is denied! Please check your "
|
322 |
"webserver configuration for caching."
|
325 |
"überprüfen Sie Ihre Webserver-Konfiguration auf Caching."
|
326 |
|
327 |
#: includes/B2S/Settings/Item.php:54 includes/B2S/Settings/Item.php:89
|
328 |
+
#: includes/B2S/Ship/Item.php:1287
|
329 |
msgid "Account"
|
330 |
msgstr "Konto"
|
331 |
|
337 |
msgid "Activate Blog2Social PREMIUM PRO."
|
338 |
msgstr "Aktiviere Blog2Social PREMIUM PRO."
|
339 |
|
340 |
+
#: includes/B2S/Network/Item.php:727
|
341 |
msgid "Activate Instant Caching"
|
342 |
msgstr "Instant Caching aktivieren"
|
343 |
|
349 |
msgid "Activate Legacy mode "
|
350 |
msgstr "Kompatibilitätsmodus aktivieren"
|
351 |
|
352 |
+
#: views/b2s/premium.php:51
|
353 |
msgid "Activate License"
|
354 |
msgstr "Lizenz aktivieren"
|
355 |
|
357 |
msgid "activated"
|
358 |
msgstr "aktiviert"
|
359 |
|
360 |
+
#: includes/Tools.php:537
|
361 |
msgid "Activities"
|
362 |
msgstr "Aktivitäten"
|
363 |
|
364 |
+
#: views/b2s/curation.php:24
|
365 |
+
msgid "Add a comment or text you like to share on your social media accounts."
|
366 |
+
msgstr ""
|
367 |
+
"Füge einen Kommentar oder Text ein, den Du auf Deinen Social-Media-Accounts "
|
368 |
+
"teilen möchtest."
|
369 |
+
|
370 |
+
#: views/b2s/curation.php:23
|
371 |
+
msgid ""
|
372 |
+
"Add a link you’d like to share on your social networks. You can also share a "
|
373 |
+
"video link, for example from YouTube or Vimeo (also see Video Post)."
|
374 |
+
msgstr ""
|
375 |
+
"Füge einen Link ein, den Du auf Deinen Social-Media-Netzwerken teilen "
|
376 |
+
"möchtest. Du kannst auch einen Video-Link teilen, zum Beispiel aus YouTube "
|
377 |
+
"oder Vimeo (siehe auch Video-Beitrag)."
|
378 |
+
|
379 |
+
#: includes/B2S/Network/Item.php:879
|
380 |
msgid "Add a link-URL to the end of my image post."
|
381 |
msgstr "Link automatisch am Ende meines Bildbeitrags einfügen."
|
382 |
|
383 |
+
#: includes/B2S/Network/Item.php:886
|
384 |
msgid ""
|
385 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
386 |
"Instagram does not turn link-URLs into clickable links)"
|
388 |
"Link automatisch am Ende meines Bildbeitrags einfügen. (Bitte beachte, dass "
|
389 |
"Instagram Links nicht als klickbare Links darstellt)"
|
390 |
|
391 |
+
#: views/b2s/curation.php:26
|
392 |
+
msgid ""
|
393 |
+
"Add a video link, for example from YouTube or Vimeo, you like to share on "
|
394 |
+
"your social media accounts."
|
395 |
+
msgstr ""
|
396 |
+
"Füge einen Video-Link ein, zum Beispiel aus YouTube oder Vimeo, den Du auf "
|
397 |
+
"Deinen Social-Media-Accounts teilen möchtest."
|
398 |
|
399 |
+
#: views/b2s/premium.php:168
|
400 |
msgid ""
|
401 |
"Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and "
|
402 |
"Twitter Cards to define the look of your link posts."
|
404 |
"Setze und bearbeite Social-Media-Tags für Open Graph (z.B. Facebook und "
|
405 |
"LinkedIn) und Twitter Cards, um das Aussehen Deiner Link-Posts festzulegen."
|
406 |
|
407 |
+
#: includes/B2S/Ship/Item.php:1456
|
408 |
msgid "add another post"
|
409 |
msgstr "einen weiteren Post anlegen"
|
410 |
|
411 |
+
#: views/b2s/network.php:635 views/b2s/ship.php:776
|
412 |
msgid "Add Group"
|
413 |
msgstr "Gruppe hinzufügen"
|
414 |
|
415 |
+
#: views/b2s/ship.php:128
|
416 |
msgid "Add more..."
|
417 |
msgstr "mehr hinzufügen"
|
418 |
|
419 |
+
#: views/b2s/premium.php:81
|
420 |
msgid ""
|
421 |
"Add multiple users and accounts per network. Define sharing-profiles for "
|
422 |
"selected network bundles."
|
450 |
msgid "Add Open Graph Object Type."
|
451 |
msgstr "Open Graph Objekttyp hinzufügen."
|
452 |
|
453 |
+
#: views/b2s/network.php:616 views/b2s/ship.php:757
|
454 |
msgid "Add Page"
|
455 |
msgstr "Seite hinzufügen"
|
456 |
|
457 |
+
#: views/b2s/post.calendar.php:100 views/b2s/post.sched.php:184
|
458 |
+
#: views/b2s/repost.php:78 views/b2s/widgets/calendar.php:21
|
459 |
msgid "add post"
|
460 |
msgstr "Beitrag hinzufügen"
|
461 |
|
462 |
+
#: views/b2s/network.php:654 views/b2s/ship.php:710
|
463 |
msgid "Add Profile"
|
464 |
msgstr "Profil hinzufügen"
|
465 |
|
466 |
+
#: includes/B2S/Ship/Item.php:1306
|
467 |
msgid "Add Retweet"
|
468 |
msgstr "Retweet hinzufügen"
|
469 |
|
470 |
+
#: views/b2s/ship.php:822
|
471 |
msgid "add Schedule"
|
472 |
msgstr "Zeitplan hinzufügen"
|
473 |
|
508 |
msgid "add/change connection"
|
509 |
msgstr "Verbindung hinzufügen/ändern"
|
510 |
|
511 |
+
#: includes/B2S/Network/Item.php:117
|
512 |
msgid "additional groups"
|
513 |
msgstr "gebuchte Gruppen"
|
514 |
|
515 |
+
#: includes/B2S/Network/Item.php:117
|
516 |
msgid "additional pages"
|
517 |
msgstr "gebuchte Seiten"
|
518 |
|
519 |
+
#: includes/B2S/Network/Item.php:117
|
520 |
msgid "additional profiles"
|
521 |
msgstr "gebuchte Profile"
|
522 |
|
528 |
msgid "Advanced settings"
|
529 |
msgstr "Erweiterte Einstellungen"
|
530 |
|
531 |
+
#: views/b2s/support.php:118
|
532 |
msgid "Affiliate Program"
|
533 |
msgstr "Affiliate-Programm"
|
534 |
|
535 |
+
#: views/b2s/metrics.php:216
|
536 |
msgid ""
|
537 |
"After 24 hours, your post will be updated for the first time and you can see "
|
538 |
"the metrics under the menu item \"Social Media Metrics\". The social media "
|
544 |
"Posts werden 30 Tage lang beobachtet. Nach 30 Tagen wird der letzte Stand "
|
545 |
"dauerhaft festgehalten und ist jederzeit im Archiv abrufbar. "
|
546 |
|
547 |
+
#: views/b2s/metrics.php:50
|
548 |
msgid "all"
|
549 |
msgstr "alle"
|
550 |
|
564 |
msgid "all post types"
|
565 |
msgstr "alle Typen"
|
566 |
|
567 |
+
#: views/b2s/metrics.php:126
|
|
|
|
|
|
|
|
|
568 |
msgid "All posts"
|
569 |
msgstr "Alle Beiträge"
|
570 |
|
|
|
|
|
|
|
|
|
571 |
#: includes/B2S/Post/Filter.php:60
|
572 |
msgid "all posts"
|
573 |
msgstr "alle Beiträge"
|
574 |
|
575 |
+
#: views/b2s/autopost.php:132 views/b2s/autopost.php:168
|
576 |
msgid ""
|
577 |
"All settings and social networks for the auto-poster can be defined for each "
|
578 |
"WordPress user individually."
|
623 |
msgid "An error occured. Please contact our support."
|
624 |
msgstr "Ein Fehler ist aufgetreten. Bitte kontaktiere unseren Support."
|
625 |
|
626 |
+
#: views/b2s/network.php:369 views/b2s/network.php:387 views/b2s/ship.php:623
|
627 |
+
#: views/b2s/ship.php:641
|
628 |
msgid "An error occurred! Please try again."
|
629 |
msgstr "Es ist ein Fehler aufgetreten! Bitte versuche es erneut."
|
630 |
|
634 |
"Für die Veröffentlichung in diesem sozialen Netzwerk ist ein Bild "
|
635 |
"erforderlich."
|
636 |
|
637 |
+
#: views/b2s/settings.php:110
|
638 |
#, php-format
|
639 |
msgid ""
|
640 |
"An instruction on how to define your own best times is explained in the "
|
649 |
msgid "An unknown error occurred!"
|
650 |
msgstr "Es ist ein unbekannter Fehler aufgetreten!"
|
651 |
|
652 |
+
#: views/b2s/html/header.php:392
|
653 |
#, php-format
|
654 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
655 |
msgstr "und <a target=\"_blank\" href=\"%s\">Datenschutzhinweis</a>"
|
656 |
|
657 |
+
#: includes/Tools.php:535
|
658 |
msgid "Animals & Nature"
|
659 |
msgstr "Tiere & Natur"
|
660 |
|
662 |
msgid "Apply best time settings"
|
663 |
msgstr "Beste Zeiten verwenden"
|
664 |
|
665 |
+
#: views/b2s/autopost.php:95 includes/B2S/AutoPost/Item.php:94
|
666 |
msgid "Apply best times"
|
667 |
msgstr "Beste Zeiten berücksichtigen"
|
668 |
|
669 |
+
#: includes/B2S/Network/Item.php:630
|
670 |
#, php-format
|
671 |
msgid "Apply for all %s connections"
|
672 |
msgstr "Für alle %s Verbindungen übernehmen"
|
673 |
|
674 |
+
#: includes/B2S/Network/Item.php:631
|
675 |
msgid "Apply for all connections"
|
676 |
msgstr "Für alle Verbindungen übernehmen"
|
677 |
|
696 |
msgid "Apply post template settings"
|
697 |
msgstr "Beitragsvorlagen verwenden"
|
698 |
|
699 |
+
#: includes/B2S/Ship/Item.php:1486
|
700 |
msgid "Apply Settings To All Networks"
|
701 |
msgstr "Planung für alle Netzwerke übernehmen"
|
702 |
|
704 |
msgid "Apply URL Parameters"
|
705 |
msgstr "URL-Parameter verwenden"
|
706 |
|
707 |
+
#: views/b2s/metrics.php:128
|
708 |
msgid "Archive"
|
709 |
msgstr "Archiv"
|
710 |
|
711 |
+
#: views/b2s/support.php:171
|
712 |
msgid ""
|
713 |
"Are you are experiencing incorrect images and/or titles being pulled by "
|
714 |
"Facebook or other social media platforms? Social Debugger or code validator "
|
720 |
"Vorschau, wie der Social Media-Post bei der Veröffentlichung aussehen wird, "
|
721 |
"und helfen dabei, Inkonsistenzen und Fehler zu beheben."
|
722 |
|
723 |
+
#: views/b2s/post.approve.php:99
|
724 |
msgid "Are you sure you want to delete these Social Media posts?"
|
725 |
msgstr "Bist Du sicher, dass Du diese Social Media Posts löschen möchtest?"
|
726 |
|
728 |
msgid "Are you sure you want to delete this draft?"
|
729 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
730 |
|
731 |
+
#: views/b2s/post.draft.php:90
|
732 |
msgid "Are you sure you want to delete this Social Media draft?"
|
733 |
msgstr "Bist Du Dir sicher, dass du Deinen Entwurf löschen möchtest? "
|
734 |
|
735 |
+
#: includes/Tools.php:514
|
736 |
msgid "Argentina"
|
737 |
msgstr "Argentinien"
|
738 |
|
744 |
msgid "Assign the connection to other blog users"
|
745 |
msgstr "Weise Deine Verbindung anderen Blog-Benutzern zu"
|
746 |
|
747 |
+
#: includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:357
|
748 |
+
#: includes/B2S/Network/Item.php:437
|
749 |
msgid "Assigned by"
|
750 |
msgstr "Zugewiesen von"
|
751 |
|
757 |
msgid "at best times"
|
758 |
msgstr "zu den besten Zeiten"
|
759 |
|
760 |
+
#: views/b2s/ship.php:377
|
761 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
762 |
msgstr ""
|
763 |
"Mindestens ein Netzwerk wurde mit der Option \"Sofort teilen\" ausgewählt."
|
770 |
msgid "at scheduled times"
|
771 |
msgstr "zu geplanten Zeiten"
|
772 |
|
773 |
+
#: includes/Tools.php:502
|
774 |
msgid "Australia"
|
775 |
msgstr "Australien"
|
776 |
|
777 |
+
#: includes/Tools.php:503
|
778 |
msgid "Austria"
|
779 |
msgstr "Österreich"
|
780 |
|
781 |
+
#: includes/B2S/Post/Item.php:449 includes/B2S/Post/Item.php:555
|
782 |
+
#: includes/B2S/Post/Item.php:575 includes/B2S/Post/Item.php:599
|
783 |
#: includes/PRG/Post/Item.php:121
|
784 |
msgid "Author"
|
785 |
msgstr "Autor"
|
786 |
|
787 |
+
#: views/b2s/settings.php:122
|
788 |
msgid "Author: The author of the post."
|
789 |
msgstr "Author: Der Autor des Beitrags."
|
790 |
|
791 |
+
#: views/b2s/network.php:437 views/b2s/ship.php:691 views/b2s/ship.php:695
|
792 |
#: includes/B2S/Settings/Item.php:102
|
793 |
msgid "authorize"
|
794 |
msgstr "autorisieren"
|
805 |
"Auto publish, schedule & share posts on social media: Facebook, Twitter, "
|
806 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
807 |
|
808 |
+
#: includes/Loader.php:917 views/b2s/settings.php:41
|
809 |
+
#: views/b2s/html/sidebar.php:89
|
810 |
msgid "Auto-Post"
|
811 |
msgstr "Beiträge automatisch teilen"
|
812 |
|
813 |
+
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:193
|
814 |
+
#: views/b2s/dashboard.php:269 views/b2s/post.calendar.php:299
|
815 |
+
#: views/b2s/ship.php:331 views/b2s/ship.php:397 views/b2s/ship.php:443
|
816 |
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:67
|
817 |
#: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
|
818 |
#: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
|
823 |
" Auto-posten und Auto-planen: Beiträge automatisch bei Veröffentlichung oder "
|
824 |
"Aktualisierung posten und zeitversetzt planen"
|
825 |
|
826 |
+
#: views/b2s/premium.php:110 includes/B2S/Post/Item.php:750
|
827 |
+
#: includes/B2S/Post/Item.php:955
|
828 |
msgid "Auto-Posting"
|
829 |
msgstr "Auto-Posting"
|
830 |
|
840 |
msgid "Autoposter for Imported Posts"
|
841 |
msgstr "Auto-Poster für importierte Beiträge"
|
842 |
|
843 |
+
#: views/b2s/html/header.php:91
|
844 |
msgid "Autoposter limit has been reached"
|
845 |
msgstr "Das Autoposter-Limit wurde erreicht."
|
846 |
|
847 |
+
#: views/b2s/support.php:111
|
848 |
msgid "Autoposting, Sharing und Re-Sharing"
|
849 |
msgstr "Automatisieren, Planen und Teilen"
|
850 |
|
851 |
+
#: includes/B2S/Network/Item.php:116
|
852 |
msgid "Available accounts"
|
853 |
msgstr "Verfügbare Accounts"
|
854 |
|
855 |
+
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:226
|
856 |
msgid "Available networks"
|
857 |
msgstr "Verfügbare Netzwerke"
|
858 |
|
864 |
msgid "Available networks to select your auto-post connecitons:"
|
865 |
msgstr "Verfügbare Netwerkverbindungen:"
|
866 |
|
867 |
+
#: includes/Loader.php:1692 includes/Loader.php:1713 includes/Loader.php:2011
|
868 |
msgid "back to install plugins"
|
869 |
msgstr "zurück zur Pluginübersicht"
|
870 |
|
871 |
+
#: views/b2s/html/header.php:537
|
872 |
msgid ""
|
873 |
"Benefit from the new Social Media Metrics and use the analysis of your "
|
874 |
"social media posts for your further social media strategy."
|
876 |
"Profitiere von den neuen Social-Media-Kennzahlen und nutze die Analyse "
|
877 |
"Deiner Social-Media-Beiträge für Deine weitere Social-Media-Strategie."
|
878 |
|
879 |
+
#: includes/B2S/Network/Item.php:227 views/b2s/html/footer.php:241
|
880 |
msgid "Best Time Manager"
|
881 |
msgstr "Best Time Manager"
|
882 |
|
883 |
+
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:195
|
884 |
+
#: views/b2s/dashboard.php:271 views/b2s/post.calendar.php:301
|
885 |
+
#: views/b2s/ship.php:333 views/b2s/ship.php:399 views/b2s/ship.php:445
|
886 |
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
|
887 |
#: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
|
888 |
#: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
|
892 |
"social media posts"
|
893 |
msgstr " Beste Zeiten Manager: vordefinierte Zeiten für Deine Beiträge nutzen"
|
894 |
|
895 |
+
#: views/b2s/curation.php:183 views/b2s/dashboard.php:259
|
896 |
+
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:433
|
897 |
msgid "Best Time Scheduler"
|
898 |
msgstr "Beste Zeiten Manager"
|
899 |
|
904 |
"Beste Zeiten Manager: Plane Deine Veröffentlichungen mehrmals oder "
|
905 |
"regelmäßig."
|
906 |
|
907 |
+
#: views/b2s/html/header.php:373
|
908 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
909 |
msgstr "Beste Zeitenplaner: Plane einmal, mehrmals oder wiederkehrend."
|
910 |
|
911 |
+
#: includes/B2S/Network/Item.php:168
|
912 |
msgid "Best times"
|
913 |
msgstr "Beste Zeiten"
|
914 |
|
915 |
+
#: views/b2s/premium.php:98
|
916 |
msgid "Best Times Manager"
|
917 |
msgstr "Beste Zeiten Manager"
|
918 |
|
919 |
+
#: views/b2s/metrics.php:233 views/b2s/html/header.php:532
|
920 |
+
#: views/b2s/html/sidebar.php:102
|
|
|
921 |
msgid "BETA"
|
922 |
msgstr "BETA"
|
923 |
|
926 |
msgstr "Bitly"
|
927 |
|
928 |
#: includes/Loader.php:920 includes/Loader.php:929
|
929 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Navbar.php:91
|
930 |
msgid "Blog"
|
931 |
msgstr "Blog"
|
932 |
|
933 |
+
#: includes/Loader.php:1063 views/b2s/html/sidebar.php:27
|
934 |
#: views/b2s/html/sidebar.ship.php:24
|
935 |
msgid "Blog2Social"
|
936 |
msgstr "Blog2Social"
|
956 |
"gewünschte Zeitzone 24h oder 12h (am/pm) aus, indem Du einfach auf den "
|
957 |
"Button klickst."
|
958 |
|
959 |
+
#: views/b2s/autopost.php:70
|
960 |
msgid ""
|
961 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
962 |
"defined in the general settings of your WordPress. You can select a user-"
|
970 |
"für die Planung Deiner Social Media Posts festlegen. Wähle dazu die "
|
971 |
"gewünschte Zeitzone aus dem Drop-Down Menü."
|
972 |
|
973 |
+
#: views/b2s/html/sidebar.php:152
|
974 |
msgid "Blog2Social Blog News"
|
975 |
msgstr "Blog2Social Blog News"
|
976 |
|
998 |
"oder höher läuft, oder bitten Sie Ihren Server-Administrator, dies für Sie "
|
999 |
"zu tun."
|
1000 |
|
1001 |
+
#: views/b2s/html/header.php:121
|
1002 |
msgid ""
|
1003 |
"Blog2Social has detected another plugin that is setting Social Meta tags for "
|
1004 |
"your blog posts. To ensure that your Social Meta tags are set correctly for "
|
1011 |
"eingestellt sind, deaktiviere bitte die Einstellungen für Facebook Open "
|
1012 |
"Graph und Twitter Card Tags in Deinen anderen Plugins."
|
1013 |
|
1014 |
+
#: views/b2s/html/header.php:516
|
1015 |
msgid "Blog2Social is a service of Adenion GmbH"
|
1016 |
msgstr "Blog2Social ist ein Service der Adenion GmbH"
|
1017 |
|
1018 |
+
#: includes/Loader.php:1692
|
1019 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
1020 |
msgstr "Blog2Social benötigt WordPress Version 4.7.0 oder höher."
|
1021 |
|
1022 |
+
#: views/b2s/html/header.php:305 views/b2s/html/header.php:324
|
1023 |
msgid ""
|
1024 |
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
1025 |
"autopilot, automatically schedule your social media posts with the Best Time "
|
1036 |
"Zwecke. Schon ab 6,58 € pro Monat kannst du mit den PREMIUM-Funktionen "
|
1037 |
"durchstarten."
|
1038 |
|
1039 |
+
#: views/b2s/curation.php:174 views/b2s/dashboard.php:250
|
1040 |
+
#: views/b2s/post.calendar.php:280 views/b2s/ship.php:424
|
1041 |
msgid "Blog2Social Premium covers everything you need."
|
1042 |
msgstr "Blog2Social Premium deckt alles ab, was Du brauchst."
|
1043 |
|
1079 |
"Vorschau-Editor auf „Lade beste Zeiten“, um Deine Beiträge automatisch für "
|
1080 |
"die besten Zeiten in jedem sozialen Netzwerk zu planen."
|
1081 |
|
1082 |
+
#: views/b2s/html/header.php:60 views/b2s/html/header.php:67
|
1083 |
msgid "Blog2Social Troubleshooting-Tool"
|
1084 |
msgstr "Blog2Social Problemanalyse-Tool"
|
1085 |
|
1156 |
msgid "Brand"
|
1157 |
msgstr "Brand"
|
1158 |
|
1159 |
+
#: views/b2s/support.php:96
|
1160 |
msgid "Browse the Blog2Social support community"
|
1161 |
msgstr "Durchstöbere die Blog2Social Support Community"
|
1162 |
|
1163 |
+
#: includes/B2S/Network/Item.php:184 includes/B2S/Ship/Portale.php:59
|
1164 |
msgid "BUSINESS"
|
1165 |
msgstr "BUSINESS"
|
1166 |
|
1167 |
#: includes/Loader.php:923 includes/Loader.php:931
|
1168 |
+
#: includes/B2S/Network/Item.php:201 includes/B2S/Network/Item.php:718
|
1169 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Navbar.php:91
|
1170 |
msgid "Business"
|
1171 |
msgstr "Business"
|
1172 |
|
1184 |
"aufgeführten Netzwerke geändert. Dies gilt auch für deine vorgeplanten Posts "
|
1185 |
"in diesem Format."
|
1186 |
|
1187 |
+
#: views/b2s/html/header.php:391
|
1188 |
#, php-format
|
1189 |
msgid ""
|
1190 |
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
1203 |
"Beiträge erneut an die Social Media Kanäle gesendet werden, sobald der "
|
1204 |
"Beitrag aktualisiert wird."
|
1205 |
|
1206 |
+
#: includes/Loader.php:1031 includes/Loader.php:1102 views/b2s/dashboard.php:31
|
1207 |
+
#: includes/B2S/RePost/Item.php:141 views/b2s/html/sidebar.php:92
|
|
|
1208 |
msgid "Calendar"
|
1209 |
msgstr "Kalender"
|
1210 |
|
1212 |
msgid "Call-to-Action"
|
1213 |
msgstr "Call-to-Action"
|
1214 |
|
1215 |
+
#: includes/Tools.php:495
|
1216 |
msgid "Canada"
|
1217 |
msgstr "Kanada"
|
1218 |
|
1219 |
+
#: includes/B2S/Ship/Item.php:575 includes/B2S/Ship/Item.php:799
|
1220 |
msgid "Card Meta description"
|
1221 |
msgstr "Card Beschreibung"
|
1222 |
|
1223 |
+
#: includes/B2S/Ship/Item.php:574 includes/B2S/Ship/Item.php:798
|
1224 |
msgid "Card Meta title"
|
1225 |
msgstr "Card Titel"
|
1226 |
|
1240 |
msgid "Change details"
|
1241 |
msgstr "Änderungen übernehmen"
|
1242 |
|
1243 |
+
#: views/b2s/curation.php:96 includes/B2S/Ship/Item.php:504
|
1244 |
+
#: includes/B2S/Ship/Item.php:526 includes/B2S/Ship/Item.php:533
|
1245 |
+
#: includes/B2S/Ship/Item.php:540 includes/B2S/Ship/Item.php:564
|
1246 |
+
#: includes/B2S/Ship/Item.php:587 includes/B2S/Ship/Item.php:594
|
1247 |
+
#: includes/B2S/Ship/Item.php:601 includes/B2S/Ship/Item.php:624
|
1248 |
+
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:653
|
1249 |
+
#: includes/B2S/Ship/Item.php:660 includes/B2S/Ship/Item.php:683
|
1250 |
+
#: includes/B2S/Ship/Item.php:704 includes/B2S/Ship/Item.php:733
|
1251 |
+
#: includes/B2S/Ship/Item.php:761 includes/B2S/Ship/Item.php:789
|
1252 |
+
#: includes/B2S/Ship/Item.php:832 includes/B2S/Ship/Item.php:853
|
1253 |
+
#: includes/B2S/Ship/Item.php:860 includes/B2S/Ship/Item.php:867
|
1254 |
+
#: includes/B2S/Ship/Item.php:887 includes/B2S/Ship/Item.php:907
|
1255 |
+
#: includes/B2S/Ship/Item.php:914 includes/B2S/Ship/Item.php:921
|
1256 |
+
#: includes/B2S/Ship/Item.php:938 includes/B2S/Ship/Item.php:959
|
1257 |
+
#: includes/B2S/Ship/Item.php:966 includes/B2S/Ship/Item.php:973
|
1258 |
+
#: includes/B2S/Ship/Item.php:991 includes/B2S/Ship/Item.php:1012
|
1259 |
+
#: includes/B2S/Ship/Item.php:1033 includes/B2S/Ship/Item.php:1053
|
1260 |
+
#: includes/B2S/Ship/Item.php:1074 includes/B2S/Ship/Item.php:1118
|
1261 |
msgid "Change image"
|
1262 |
msgstr "Bild ändern"
|
1263 |
|
1271 |
msgid "Change successful"
|
1272 |
msgstr "Change successful"
|
1273 |
|
1274 |
+
#: views/b2s/ship.php:217
|
1275 |
msgid "change website address"
|
1276 |
msgstr "Webseiten-Adresse ändern"
|
1277 |
|
1287 |
msgid "Channel"
|
1288 |
msgstr "Kanal"
|
1289 |
|
1290 |
+
#: views/b2s/network.php:328 includes/B2S/Network/Item.php:911
|
1291 |
msgid "Character limit"
|
1292 |
msgstr "Zeichenbegrenzung"
|
1293 |
|
1294 |
+
#: includes/B2S/Network/Item.php:872 includes/B2S/Network/Item.php:935
|
1295 |
+
#: includes/B2S/Network/Item.php:935 includes/B2S/Network/Item.php:971
|
1296 |
+
#: includes/B2S/Network/Item.php:971 includes/B2S/Ship/Item.php:228
|
1297 |
+
#: includes/B2S/Ship/Item.php:232 includes/B2S/Ship/Item.php:286
|
1298 |
+
#: includes/B2S/Ship/Item.php:290 includes/B2S/Ship/Item.php:332
|
1299 |
+
#: includes/B2S/Ship/Item.php:336 includes/B2S/Ship/Item.php:1464
|
1300 |
+
#: includes/B2S/Ship/Item.php:1466
|
1301 |
msgid "characters"
|
1302 |
msgstr "Zeichen"
|
1303 |
|
1304 |
+
#: views/b2s/dashboard.php:33
|
1305 |
msgid "Chart"
|
1306 |
msgstr "Diagramm"
|
1307 |
|
1308 |
+
#: views/b2s/html/header.php:282
|
1309 |
msgid ""
|
1310 |
"Check out Blog2Social Premium with more awesome features for scheduling and "
|
1311 |
"sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
|
1321 |
msgid "Check Settings with Sharing-Debugger"
|
1322 |
msgstr "Einstellungen mit Sharing-Debugger überprüfen"
|
1323 |
|
1324 |
+
#: views/b2s/metrics.php:214
|
1325 |
#, fuzzy
|
1326 |
#| msgid "Check social media metrics"
|
1327 |
msgid "Check Social Media Metrics"
|
1328 |
msgstr "Social-Media-Kennzahlen einsehen"
|
1329 |
|
1330 |
+
#: views/b2s/settings.php:112
|
1331 |
msgid "Check, edit or define your social media time settings"
|
1332 |
msgstr ""
|
1333 |
"Prüfe, bearbeite oder definiere die Zeiteinstellungen für Deine Social-Media-"
|
1334 |
"Netzwerke"
|
1335 |
|
1336 |
+
#: includes/Tools.php:519
|
1337 |
msgid "Chile"
|
1338 |
msgstr "Chile"
|
1339 |
|
1340 |
+
#: views/b2s/dashboard.php:93 views/b2s/post.calendar.php:123
|
1341 |
+
#: views/b2s/post.sched.php:141 views/b2s/repost.php:126 views/b2s/ship.php:541
|
1342 |
msgid "Choose your"
|
1343 |
msgstr "Wähle Deinen"
|
1344 |
|
1351 |
msgid "City"
|
1352 |
msgstr "Stadt"
|
1353 |
|
1354 |
+
#: includes/B2S/Ship/Item.php:1209
|
1355 |
msgid "Classified Ads"
|
1356 |
msgstr "Kleinanzeigen"
|
1357 |
|
1358 |
+
#: includes/B2S/Network/Item.php:845
|
1359 |
msgid "clear"
|
1360 |
msgstr "löschen"
|
1361 |
|
1362 |
+
#: views/b2s/support.php:128
|
1363 |
msgid ""
|
1364 |
"Click here to find the right license for your needs or to contact the sales "
|
1365 |
"team for any payment issues."
|
1379 |
msgid "Click on \"continue\""
|
1380 |
msgstr "Klicke auf “weiter”"
|
1381 |
|
1382 |
+
#: views/b2s/post.sched.php:46 includes/B2S/Network/Item.php:164
|
1383 |
msgid "Clock"
|
1384 |
msgstr "Uhr"
|
1385 |
|
1387 |
msgid "clock"
|
1388 |
msgstr "Uhr"
|
1389 |
|
1390 |
+
#: includes/Tools.php:520
|
1391 |
msgid "Colombia"
|
1392 |
msgstr "Kolumbien"
|
1393 |
|
1394 |
+
#: views/b2s/metrics.php:142
|
1395 |
msgid "Comments"
|
1396 |
msgstr "Kommentare"
|
1397 |
|
1398 |
+
#: views/b2s/metrics.php:246
|
1399 |
msgid "Comments: A count of how many times the post has been replied to."
|
1400 |
msgstr ""
|
1401 |
"Kommentare: Eine Aufzählung, wie oft auf den Beitrag mit einem Kommentar "
|
1417 |
msgid "Company-Page (Employer Branding Profile)"
|
1418 |
msgstr "Unternehmensseite (Arbeitgeberprofil)"
|
1419 |
|
1420 |
+
#: views/b2s/metrics.php:270
|
1421 |
msgid "Comparison of Social Media Metrics"
|
1422 |
msgstr "Vergleich der Social-Media-Kennzahlen"
|
1423 |
|
1424 |
+
#: views/b2s/network.php:438 views/b2s/network.php:440 views/b2s/ship.php:692
|
1425 |
+
#: views/b2s/ship.php:694
|
1426 |
msgid "confirm"
|
1427 |
msgstr "bestätigen"
|
1428 |
|
1429 |
+
#: views/b2s/ship.php:236
|
1430 |
msgid "connect"
|
1431 |
msgstr "Jetzt mit Netzwerken verbinden"
|
1432 |
|
1433 |
+
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:184
|
1434 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:188
|
1435 |
+
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:201
|
1436 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Network/Item.php:203
|
1437 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Network/Item.php:211
|
1438 |
+
#: includes/B2S/Network/Item.php:211 includes/B2S/Network/Item.php:211
|
1439 |
#: includes/B2S/Ship/Portale.php:37 includes/B2S/Ship/Portale.php:37
|
1440 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:46
|
1441 |
#: includes/B2S/Ship/Portale.php:48 includes/B2S/Ship/Portale.php:48
|
1446 |
msgid "Connect %s"
|
1447 |
msgstr "%s verbinden"
|
1448 |
|
1449 |
+
#: views/b2s/settings.php:78
|
1450 |
msgid ""
|
1451 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1452 |
"share your WordPress blog posts and pages as well as imported posts and "
|
1456 |
"Du Deine WordPress-Blogbeiträge und -Seiten sowie importierte Beiträge und "
|
1457 |
"Social-Media-Posts teilen möchtest. Die folgenden Netzwerke sind verfügbar:"
|
1458 |
|
1459 |
+
#: views/b2s/ship.php:303
|
1460 |
msgid "Connect for"
|
1461 |
msgstr "Netzwerke verbinden für"
|
1462 |
|
1463 |
+
#: views/b2s/network.php:673 views/b2s/ship.php:729
|
1464 |
msgid "Connect Instagram Business Account"
|
1465 |
msgstr "Instagram Business-Konto verbinden"
|
1466 |
|
1467 |
+
#: views/b2s/network.php:344 views/b2s/ship.php:603
|
1468 |
msgid "Connect with Pinterest"
|
1469 |
msgstr "Mit Pinterest verbinden"
|
1470 |
|
1471 |
+
#: views/b2s/settings.php:103
|
1472 |
msgid "Connect your social media networks"
|
1473 |
msgstr "Verbinde Deine Social-Media-Netzwerke"
|
1474 |
|
1475 |
+
#: views/b2s/support.php:110
|
1476 |
msgid "Connecting Social Networks"
|
1477 |
msgstr "Autorisierung mit sozialen Netzwerken"
|
1478 |
|
1479 |
+
#: includes/B2S/Network/Item.php:559
|
1480 |
msgid "Connection currently assigned to"
|
1481 |
msgstr "Diese Verbindung ist aktuell zugewiesen an"
|
1482 |
|
1483 |
+
#: includes/B2S/Ship/Item.php:360
|
1484 |
msgid "Connection expires on 2 April 2019"
|
1485 |
msgstr "Die Verbindung endet am 2. April 2019."
|
1486 |
|
1487 |
+
#: includes/B2S/Ship/Item.php:356
|
1488 |
msgid "Connection expires on 31 March 2019"
|
1489 |
msgstr "Die Verbindung endet am 31. März 2019."
|
1490 |
|
1492 |
msgid "Connection is broken..."
|
1493 |
msgstr "Vebindung ist unterbrochen..."
|
1494 |
|
1495 |
+
#: includes/B2S/Network/Item.php:268 includes/B2S/Network/Item.php:347
|
1496 |
+
#: includes/B2S/Network/Item.php:427
|
1497 |
msgid "Connection is interrupted since"
|
1498 |
msgstr "Verbindung ist unterbrochen seit"
|
1499 |
|
1500 |
+
#: includes/B2S/AutoPost/Item.php:246 includes/B2S/Network/Item.php:223
|
1501 |
msgid "Connections"
|
1502 |
msgstr "Verbindungen"
|
1503 |
|
1505 |
msgid "Contact Details"
|
1506 |
msgstr "Kontaktdaten"
|
1507 |
|
1508 |
+
#: includes/B2S/Network/Item.php:809 includes/B2S/Settings/Item.php:77
|
1509 |
msgid "Content"
|
1510 |
msgstr "Inhalt"
|
1511 |
|
1512 |
+
#: views/b2s/settings.php:119
|
|
|
|
|
|
|
|
|
1513 |
msgid "Content: The content of your post."
|
1514 |
msgstr "Content: Der Inhalt Deines Beitrags."
|
1515 |
|
1516 |
#: views/b2s/network.php:622 views/b2s/network.php:641
|
1517 |
+
#: views/b2s/network.php:660 views/b2s/network.php:688 views/b2s/ship.php:716
|
1518 |
+
#: views/b2s/ship.php:744 views/b2s/ship.php:763 views/b2s/ship.php:782
|
1519 |
msgid "Continue"
|
1520 |
msgstr "Fortsetzen"
|
1521 |
|
1522 |
+
#: views/b2s/curation.php:73 views/b2s/network.php:441
|
1523 |
msgid "continue"
|
1524 |
msgstr "weiter"
|
1525 |
|
1527 |
msgid "Continue deactivation"
|
1528 |
msgstr "Deaktivierung fortsetzen"
|
1529 |
|
1530 |
+
#: views/b2s/support.php:115
|
1531 |
msgid "Contracting and Licensing"
|
1532 |
msgstr "Blog2Social Vertrag / Blog2Social Lizenz"
|
1533 |
|
1534 |
+
#: includes/B2S/Ship/Item.php:1470
|
1535 |
msgid "Copy from original"
|
1536 |
msgstr "Originaltext kopieren"
|
1537 |
|
1549 |
"Der Hinweis konnte nicht ausgeblendet werden. Bitte aktualisiere diese Seite "
|
1550 |
"und versuche es erneut. "
|
1551 |
|
1552 |
+
#: views/b2s/html/header.php:167
|
1553 |
msgid "Could not save draft"
|
1554 |
msgstr "Der Entwurf konnte nicht gespeichert werden"
|
1555 |
|
1556 |
+
#: views/b2s/support.php:51
|
1557 |
msgid "Couldn't find your answer?"
|
1558 |
msgstr "Die richtige Antwort nicht gefunden?"
|
1559 |
|
1565 |
msgid "create"
|
1566 |
msgstr "erstellen"
|
1567 |
|
1568 |
+
#: views/b2s/curation.php:131
|
1569 |
msgid "Create a new post"
|
1570 |
msgstr "Neuen Social Media Post erstellen"
|
1571 |
|
1572 |
+
#: views/b2s/metrics.php:206
|
1573 |
msgid ""
|
1574 |
"Create a new social media post for which you want to track the metrics. You "
|
1575 |
"can share:"
|
1577 |
"Erstelle einen neuen Social-Media-Post, für den Du die Kennzahlen tracken "
|
1578 |
"möchtest. Du kannst:"
|
1579 |
|
1580 |
+
#: views/b2s/support.php:82
|
1581 |
msgid "Create Account"
|
1582 |
msgstr "Account erstellen"
|
1583 |
|
1585 |
msgid "create account"
|
1586 |
msgstr "neues Konto erstellen"
|
1587 |
|
1588 |
+
#: views/b2s/metrics.php:204
|
1589 |
#, fuzzy
|
1590 |
#| msgid "Create and share a social media post"
|
1591 |
msgid "Create and Share a Social Media Post"
|
1592 |
msgstr "Social Media Post erstellen und teilen"
|
1593 |
|
1594 |
+
#: views/b2s/network.php:39 views/b2s/network.php:42 views/b2s/network.php:87
|
1595 |
msgid "Create new network collection"
|
1596 |
msgstr "Neue Netzwerkgruppierung anlegen"
|
1597 |
|
1598 |
+
#: views/b2s/dashboard.php:179 views/b2s/post.calendar.php:209
|
1599 |
msgid "Create or share content from other sources"
|
1600 |
msgstr "Erstelle oder teile Beiträge aus beliebigen Quellen"
|
1601 |
|
1602 |
+
#: views/b2s/support.php:77
|
1603 |
msgid "Create password"
|
1604 |
msgstr "Passwort festlegen"
|
1605 |
|
1606 |
+
#: views/b2s/support.php:61
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1607 |
msgid "Create your support account to ask questions and get help"
|
1608 |
msgstr ""
|
1609 |
"Erstelle Deinen Support Account, um Fragen zu stellen und Hilfe zu erhalten"
|
1610 |
|
1611 |
+
#: views/b2s/html/header.php:589 views/b2s/html/header.php:648
|
1612 |
+
msgid ""
|
1613 |
+
"Creating social media posts from other sources, such as text, images, videos,"
|
1614 |
+
" and links to add more content variety and manage all your social media "
|
1615 |
+
"posts from one place."
|
1616 |
+
msgstr ""
|
1617 |
+
"Die Social Media Posts aus beliebigen Texten, Bildern, Videos und Links, um "
|
1618 |
+
"mehr Vielfalt zu schaffen."
|
1619 |
+
|
1620 |
+
#: includes/B2S/Post/Item.php:426
|
1621 |
msgid "curated post"
|
1622 |
msgstr "kuratierter Beitrag"
|
1623 |
|
1624 |
+
#: views/b2s/support.php:153
|
1625 |
msgid "Current"
|
1626 |
msgstr "Aktuell"
|
1627 |
|
1629 |
msgid "currently scheduled"
|
1630 |
msgstr "geplant"
|
1631 |
|
1632 |
+
#: views/b2s/premium.php:158
|
1633 |
msgid "Custom format"
|
1634 |
msgstr "Benutzerdefiniertes Format"
|
1635 |
|
1636 |
+
#: views/b2s/premium.php:149
|
1637 |
msgid "Custom image"
|
1638 |
msgstr "Benutzerdefinierte Bilder"
|
1639 |
|
1671 |
"mehrfach oder wiederholt, um mehr Sichtbarkeit und Feedback von Deiner "
|
1672 |
"Community zu erzielen"
|
1673 |
|
1674 |
+
#: views/b2s/support.php:112
|
1675 |
msgid "Customizing Social Media Posts"
|
1676 |
msgstr "Individualisierung der Social Media Posts"
|
1677 |
|
1678 |
+
#: includes/Tools.php:492
|
1679 |
msgid "Czechoslovakia"
|
1680 |
msgstr "Tschechoslowakei"
|
1681 |
|
1684 |
msgstr "Dashboard"
|
1685 |
|
1686 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1687 |
+
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:1437
|
1688 |
#: views/b2s/partials/post-edit-modal.php:67
|
1689 |
#: views/b2s/partials/post-edit-modal.php:70
|
1690 |
msgid "Date"
|
1691 |
msgstr "Startdatum"
|
1692 |
|
1693 |
+
#: includes/B2S/Ship/Item.php:1380
|
1694 |
msgid "Day of month"
|
1695 |
msgstr "Tag im Monat"
|
1696 |
|
1697 |
+
#: includes/B2S/Network/Item.php:323 includes/B2S/Network/Item.php:402
|
1698 |
+
#: includes/B2S/Network/Item.php:477 includes/B2S/Ship/Item.php:1385
|
1699 |
msgid "Days"
|
1700 |
msgstr "Tage"
|
1701 |
|
1707 |
msgid "deactivated"
|
1708 |
msgstr "deaktiviert"
|
1709 |
|
1710 |
+
#: views/b2s/support.php:183
|
1711 |
msgid "Debug & Preview"
|
1712 |
msgstr "Link prüfen"
|
1713 |
|
1732 |
msgid "Default"
|
1733 |
msgstr "Standard"
|
1734 |
|
1735 |
+
#: views/b2s/network.php:569 includes/B2S/Network/Item.php:602
|
1736 |
#, php-format
|
1737 |
msgid ""
|
1738 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1753 |
"\"Inhalt\" (CONTENT) einzeln fest. Dein Text wird nach dem letzten Komma, "
|
1754 |
"Punkt oder Leerzeichen innerhalb Deiner Zeichenbegrenzung abgeschnitten."
|
1755 |
|
1756 |
+
#: views/b2s/dashboard.php:114 views/b2s/post.calendar.php:144
|
1757 |
+
#: views/b2s/post.sched.php:162 views/b2s/repost.php:147 views/b2s/ship.php:561
|
1758 |
msgid ""
|
1759 |
"Define the default settings for the custom post format for all of your "
|
1760 |
"Facebook accounts in the Blog2Social settings."
|
1762 |
"Speichere Dein bevorzugtes Facebook Post-Format als Standardeinstellung in "
|
1763 |
"den Blog2Social Einstellungen."
|
1764 |
|
1765 |
+
#: views/b2s/dashboard.php:123 views/b2s/post.calendar.php:153
|
1766 |
+
#: views/b2s/post.sched.php:171 views/b2s/repost.php:156 views/b2s/ship.php:570
|
1767 |
msgid ""
|
1768 |
"Define the default settings for the custom post format for all of your "
|
1769 |
"Instagram accounts in the Blog2Social settings."
|
1771 |
"Definiere die Standardeinstellungen für das benutzerdefinierte Postformat "
|
1772 |
"für alle Instagram-Konten in den Blog2Social-Einstellungen."
|
1773 |
|
1774 |
+
#: views/b2s/dashboard.php:120 views/b2s/post.calendar.php:150
|
1775 |
+
#: views/b2s/post.sched.php:168 views/b2s/repost.php:153 views/b2s/ship.php:567
|
1776 |
msgid ""
|
1777 |
"Define the default settings for the custom post format for all of your "
|
1778 |
"LinkedIn accounts in the Blog2Social settings."
|
1780 |
"Definiere Dein Standard-Beitragsformat für alle Deine Google+ Verbindungen "
|
1781 |
"unter den Blog2Social Einstellungen."
|
1782 |
|
1783 |
+
#: views/b2s/dashboard.php:117 views/b2s/post.calendar.php:147
|
1784 |
+
#: views/b2s/post.sched.php:165 views/b2s/repost.php:150 views/b2s/ship.php:564
|
1785 |
msgid ""
|
1786 |
"Define the default settings for the custom post format for all of your "
|
1787 |
"Twitter accounts in the Blog2Social settings."
|
1793 |
msgid "Define Twitter post content"
|
1794 |
msgstr "Twitter Beitragsinhalt definieren"
|
1795 |
|
1796 |
+
#: views/b2s/settings.php:127
|
1797 |
msgid "Define your post templates for each social media network"
|
1798 |
msgstr "Definiere Deine Beitragsvorlagen für jedes Social-Media-Netzwerk. "
|
1799 |
|
1800 |
+
#: includes/B2S/Ship/Item.php:1288 views/b2s/partials/post-edit-modal.php:78
|
1801 |
msgid "Delay"
|
1802 |
msgstr "Verzögerung"
|
1803 |
|
1804 |
+
#: views/b2s/network.php:46 views/b2s/partials/post-edit-modal.php:102
|
1805 |
msgid "Delete"
|
1806 |
msgstr "Löschen"
|
1807 |
|
1808 |
+
#: includes/Ajax/Post.php:1960 includes/B2S/Network/Item.php:572
|
1809 |
+
#: includes/B2S/Post/Item.php:553 includes/B2S/Post/Item.php:573
|
1810 |
+
#: includes/B2S/Post/Item.php:932 includes/B2S/Post/Item.php:990
|
1811 |
+
#: includes/B2S/Settings/Item.php:103 includes/B2S/Ship/Item.php:1305
|
1812 |
+
#: includes/B2S/Ship/Item.php:1455
|
1813 |
msgid "delete"
|
1814 |
msgstr "löschen"
|
1815 |
|
1831 |
msgid "Delete Draft"
|
1832 |
msgstr "Entwurf löschen"
|
1833 |
|
1834 |
+
#: views/b2s/metrics.php:173 views/b2s/post.notice.php:86
|
1835 |
+
#: views/b2s/post.publish.php:83 views/b2s/widgets/posts.php:58
|
1836 |
msgid "Delete entries from the reporting"
|
1837 |
msgstr "Einträge aus dem Reporting löschen"
|
1838 |
|
1839 |
+
#: views/b2s/post.sched.php:101 views/b2s/repost.php:104
|
1840 |
msgid "Delete entries from the scheduling"
|
1841 |
msgstr "Einträge aus der Planung löschen"
|
1842 |
|
1843 |
+
#: includes/B2S/Post/Item.php:857 includes/B2S/Post/Item.php:870
|
1844 |
msgid "delete from reporting"
|
1845 |
msgstr "aus Reporting löschen"
|
1846 |
|
1852 |
msgid "Delete scheduled posts"
|
1853 |
msgstr "Geplante Beiträge löschen"
|
1854 |
|
1855 |
+
#: includes/B2S/Post/Item.php:999
|
1856 |
msgid "delete scheduling"
|
1857 |
msgstr "Planung löschen"
|
1858 |
|
1860 |
msgid "delete selected posts"
|
1861 |
msgstr "markierte Beiträge löschen"
|
1862 |
|
1863 |
+
#: views/b2s/post.draft.php:87
|
1864 |
msgid "Delete Social Media Draft"
|
1865 |
msgstr "Entwurf löschen"
|
1866 |
|
1867 |
+
#: views/b2s/post.approve.php:96
|
1868 |
msgid "Delete Social Media Posts"
|
1869 |
msgstr "Social Media Posts löschen"
|
1870 |
|
1871 |
+
#: includes/B2S/Ship/Item.php:399 includes/B2S/Ship/Item.php:1474
|
1872 |
msgid "Delete text"
|
1873 |
msgstr "Text löschen"
|
1874 |
|
1875 |
+
#: includes/Tools.php:508
|
1876 |
msgid "Denmark"
|
1877 |
msgstr "Dänemark"
|
1878 |
|
1884 |
msgid "description"
|
1885 |
msgstr "Beschreibung"
|
1886 |
|
1887 |
+
#: includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:498
|
1888 |
+
#: includes/B2S/Post/Item.php:520 includes/B2S/Post/Item.php:617
|
1889 |
msgid "Details"
|
1890 |
msgstr "Details"
|
1891 |
|
1897 |
msgid "Did you miss something?"
|
1898 |
msgstr "Vermisst Du etwas?"
|
1899 |
|
1900 |
+
#: views/b2s/html/header.php:329
|
1901 |
msgid "Did you miss something? Tell us!"
|
1902 |
msgstr "Hast Du etwas vermisst? Lass es uns wissen!"
|
1903 |
|
1904 |
+
#: views/b2s/html/header.php:577
|
1905 |
+
msgid ""
|
1906 |
+
"Did you try all options on how to organize your social media scheduling and "
|
1907 |
+
"sharing tasks even more easily and automatically with Blog2Social Premium, "
|
1908 |
+
"for example:"
|
1909 |
+
msgstr ""
|
1910 |
+
"Während der vergangenen Wochen konntest Du ausgiebig testen, wie Du mit "
|
1911 |
+
"Blog2Social Premium Deine Social-Media-Routine-Aufgaben für die Planung und "
|
1912 |
+
"das Teilen Deines Website-Contents einfacher und zeitsparender organisieren "
|
1913 |
+
"kannst. Du konntest unter anderem folgende Features testen:"
|
1914 |
+
|
1915 |
#: includes/B2S/AutoPost/Item.php:52
|
1916 |
msgid "Disconnect"
|
1917 |
msgstr "Verbindung aufheben"
|
1918 |
|
1919 |
+
#: includes/B2S/Ship/Item.php:543 includes/B2S/Ship/Item.php:604
|
1920 |
+
#: includes/B2S/Ship/Item.php:663 includes/B2S/Ship/Item.php:870
|
1921 |
+
#: includes/B2S/Ship/Item.php:924 includes/B2S/Ship/Item.php:976
|
1922 |
msgid "Do u want to post multiple images?"
|
1923 |
msgstr "Du möchtest mehrere Bilder posten?"
|
1924 |
|
1943 |
msgid "Do you want to delete your scheduled posts?"
|
1944 |
msgstr "Möchtest Du Deine geplanten Beiträge löschen?"
|
1945 |
|
1946 |
+
#: views/b2s/curation.php:152 views/b2s/post.approve.php:116
|
1947 |
+
#: views/b2s/ship.php:491
|
1948 |
msgid "Do you want to mark this post as published ?"
|
1949 |
msgstr "Möchtest Du diesen Beitrag als veröffentlicht markieren?"
|
1950 |
|
1953 |
msgstr "Lade und aktiviere die Blog2Social Extension"
|
1954 |
|
1955 |
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:59
|
1956 |
+
#: includes/B2S/Post/Item.php:393 includes/PRG/Post/Item.php:86
|
1957 |
msgid "draft"
|
1958 |
msgstr "Entwurf"
|
1959 |
|
1960 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:74
|
|
|
|
|
1961 |
msgid "Drafts"
|
1962 |
msgstr "Entwürfe"
|
1963 |
|
1964 |
+
#: includes/B2S/Ship/Item.php:1375 includes/B2S/Ship/Item.php:1378
|
1965 |
msgid "Duration"
|
1966 |
msgstr "Dauer"
|
1967 |
|
1968 |
+
#: views/b2s/network.php:398 views/b2s/ship.php:652
|
1969 |
+
#: views/b2s/html/header.php:377 views/prg/html/form.php:141
|
1970 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1971 |
#: views/prg/html/form.php:220
|
1972 |
msgid "E-Mail"
|
1984 |
"Jede Lizenz hat eine bestimmte Anzahl von Konten, die Du pro Social-Media-"
|
1985 |
"Netzwerk verbinden kannst."
|
1986 |
|
1987 |
+
#: includes/B2S/Post/Item.php:987
|
1988 |
msgid "edit"
|
1989 |
msgstr "edit"
|
1990 |
|
1996 |
msgid "Edit Post"
|
1997 |
msgstr "Beitrag bearbeiten"
|
1998 |
|
1999 |
+
#: views/b2s/network.php:239 includes/B2S/Network/Item.php:214
|
2000 |
+
#: includes/B2S/Network/Item.php:214
|
2001 |
msgid "Edit Post Template"
|
2002 |
msgstr "Beitragsvorlage bearbeiten"
|
2003 |
|
2009 |
"Bearbeite den Inhalt Deines Posts. Verschiebe Elemente per Drag & Drop in "
|
2010 |
"das Textfeld und passe sie nach Deinen Wünschen an."
|
2011 |
|
2012 |
+
#: views/b2s/settings.php:115
|
2013 |
msgid ""
|
2014 |
"Edit the post templates for each social media network to turn your social "
|
2015 |
"media posts automatically into tailored posts for each network and community."
|
2020 |
"Netzwerk und jede Community zu verwandeln. Du kannst den Inhalt Deines "
|
2021 |
"Beitrags mit den folgenden Variablen bearbeiten:"
|
2022 |
|
2023 |
+
#: views/b2s/support.php:73
|
2024 |
msgid "Email address"
|
2025 |
msgstr "E-Mail-Adresse"
|
2026 |
|
2027 |
+
#: views/b2s/support.php:65
|
2028 |
msgid "Email address is taken."
|
2029 |
msgstr "Diese E-Mail Adresse ist bereits belegt"
|
2030 |
|
2036 |
msgid "enable Auto-Posting"
|
2037 |
msgstr "Auto-Posting aktivieren"
|
2038 |
|
2039 |
+
#: includes/B2S/Ship/Item.php:1269
|
2040 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
2041 |
msgstr "Retweets für alle Tweets mit dem gewählten Profil aktivieren"
|
2042 |
|
2043 |
+
#: includes/B2S/Ship/Item.php:1430
|
2044 |
msgid "End Of Month"
|
2045 |
msgstr "Monatsende"
|
2046 |
|
2047 |
+
#: views/b2s/premium.php:31
|
2048 |
msgid "End of Trial"
|
2049 |
msgstr "Ende der Testzeit"
|
2050 |
|
2056 |
msgid "English"
|
2057 |
msgstr "Englisch"
|
2058 |
|
2059 |
+
#: views/b2s/curation.php:67
|
2060 |
msgid ""
|
2061 |
"Enter a link you want to share on your social media networks. You can also "
|
2062 |
"share a video link, for example from YouTube or from Vimeo (also see Video "
|
2066 |
"möchtest. Du kannst auch einen Video-Link teilen, zum Beispiel aus YouTube "
|
2067 |
"oder Vimeo (siehe auch Video-Beitrag)."
|
2068 |
|
2069 |
+
#: views/b2s/support.php:170
|
2070 |
msgid "Enter a URL to see how your link preview will look on social media."
|
2071 |
msgstr ""
|
2072 |
"Gib eine URL ein, um zu sehen, wie die Link-Vorschau auf Social Media "
|
2073 |
"aussehen wird"
|
2074 |
|
2075 |
+
#: views/b2s/curation.php:68
|
2076 |
msgid ""
|
2077 |
"Enter a video link you want to share on your social media networks, for "
|
2078 |
"example from YouTube or from Vimeo."
|
2080 |
"Füge einen Video-Link ein, zum Beispiel aus YouTube oder Vimeo, den Du auf "
|
2081 |
"Deinen Social-Media-Netzwerken teilen möchtest."
|
2082 |
|
2083 |
+
#: views/b2s/support.php:63
|
2084 |
msgid "Enter at least 8 characters"
|
2085 |
msgstr "Bitte gib mindestens 8 Zeichen ein"
|
2086 |
|
2087 |
+
#: views/b2s/premium.php:49
|
2088 |
msgid "Enter license key and change your version"
|
2089 |
msgstr "Lizenzschlüssel eingeben und Version ändern"
|
2090 |
|
2091 |
+
#: views/b2s/curation.php:70
|
2092 |
msgid "Enter link"
|
2093 |
msgstr "Link eingeben"
|
2094 |
|
2095 |
+
#: views/b2s/support.php:40
|
2096 |
msgid "Enter your question or keyword here"
|
2097 |
msgstr "Gib einen Suchbegriff ein oder stelle eine Frage"
|
2098 |
|
2100 |
msgid "Event"
|
2101 |
msgstr "Event"
|
2102 |
|
2103 |
+
#: includes/B2S/Ship/Item.php:1208
|
2104 |
msgid "Events"
|
2105 |
msgstr "Events"
|
2106 |
|
2107 |
+
#: views/b2s/settings.php:120
|
2108 |
msgid ""
|
2109 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
2110 |
"post)."
|
2119 |
msgid "Exclude (Do no post ...)"
|
2120 |
msgstr "enthält nicht (Veröffentliche keine Beiträge, mit...)"
|
2121 |
|
2122 |
+
#: views/b2s/support.php:157
|
2123 |
msgid "Export as txt-file"
|
2124 |
msgstr "Als txt-Datei exportieren"
|
2125 |
|
2150 |
"ein zufällig gewähltes Bild bei Link-Beiträgen an. Bitte stelle sicher, dass "
|
2151 |
"Dein Bild die Anforderungen an die Bildgröße für Facebook erfüllt."
|
2152 |
|
2153 |
+
#: views/b2s/support.php:176
|
2154 |
msgid "Facebook Open Graph Meta Tags"
|
2155 |
msgstr "Facebook Open Graph Meta Tags"
|
2156 |
|
2158 |
msgid "Facebook pages"
|
2159 |
msgstr "Facebook-Seiten"
|
2160 |
|
2161 |
+
#: includes/B2S/Network/Item.php:662
|
2162 |
msgid "Failed to load the default template"
|
2163 |
msgstr "Fehler beim Laden der Standardeinstellungen"
|
2164 |
|
2165 |
+
#: includes/B2S/Network/Item.php:661
|
2166 |
msgid "Failed to save"
|
2167 |
msgstr "Speichern fehlgeschlagen"
|
2168 |
|
2169 |
+
#: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
|
2170 |
msgid "FAQ"
|
2171 |
msgstr "FAQ"
|
2172 |
|
2173 |
+
#: includes/Loader.php:917 views/b2s/metrics.php:130
|
2174 |
+
#: views/b2s/html/sidebar.php:71
|
2175 |
msgid "Favorites"
|
2176 |
msgstr "Favoriten"
|
2177 |
|
2178 |
+
#: views/b2s/metrics.php:56 views/b2s/metrics.php:284
|
2179 |
msgid "Feedback"
|
2180 |
msgstr "Feedback"
|
2181 |
|
2182 |
+
#: views/b2s/dashboard.php:208 views/b2s/dashboard.php:209
|
2183 |
+
#: views/b2s/network.php:32 views/b2s/network.php:33
|
2184 |
+
#: views/b2s/post.calendar.php:238 views/b2s/post.calendar.php:239
|
2185 |
#: views/prg/post.php:26 views/prg/post.php:27
|
2186 |
+
#: views/b2s/html/post.navbar.php:20 views/b2s/html/post.navbar.php:21
|
2187 |
msgid "filter"
|
2188 |
msgstr "Filter"
|
2189 |
|
2194 |
"Beiträge filtern (Nur Beiträge, die die Kriterien erfüllen, werden "
|
2195 |
"automatisch veröffentlicht)"
|
2196 |
|
2197 |
+
#: includes/Tools.php:510
|
2198 |
msgid "Finland"
|
2199 |
msgstr "Finnland"
|
2200 |
|
2201 |
+
#: views/b2s/html/header.php:381 views/prg/html/form.php:91
|
2202 |
#: views/prg/html/form.php:100 views/prg/html/form.php:168
|
2203 |
#: views/prg/html/form.php:177
|
2204 |
msgid "First Name"
|
2205 |
msgstr "Vorname"
|
2206 |
|
2207 |
+
#: views/b2s/ship.php:234
|
2208 |
msgid "First, connect or select network before posting"
|
2209 |
msgstr ""
|
2210 |
"Verbinde Dich zuerst mit einem Netzwerk oder wähle ein Netzwerk aus, bevor "
|
2211 |
"Du den Beitrag teilst!"
|
2212 |
|
2213 |
+
#: includes/Tools.php:541
|
2214 |
msgid "Flags"
|
2215 |
msgstr "Flaggen"
|
2216 |
|
2217 |
+
#: views/b2s/dashboard.php:61
|
2218 |
msgid "Follow us"
|
2219 |
msgstr "Folge uns"
|
2220 |
|
2221 |
+
#: includes/Tools.php:536
|
2222 |
msgid "Food & Drink"
|
2223 |
msgstr "Essen & Trinken"
|
2224 |
|
2225 |
+
#: views/b2s/support.php:181 views/b2s/support.php:192
|
2226 |
+
#: views/b2s/support.php:203
|
2227 |
msgid "For example your Wordpress Home Page"
|
2228 |
msgstr "zum Beispiel Deine Blogseite"
|
2229 |
|
2255 |
"Für Instagram kannst Du \"Bild mit Rahmen\" oder \"Bild zuschneiden\" als "
|
2256 |
"bevorzugtes benutzerdefiniertes Postformat auswählen."
|
2257 |
|
2258 |
+
#: includes/B2S/Ship/Save.php:448
|
2259 |
msgid ""
|
2260 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
2261 |
msgstr ""
|
2262 |
"Um Beiträge auf Google+ zu teilen, steht ab sofort Google+ Instant Sharing "
|
2263 |
"zur Verfügung"
|
2264 |
|
2265 |
+
#: includes/B2S/Ship/Save.php:440
|
2266 |
msgid ""
|
2267 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
2268 |
"Instant Sharing"
|
2270 |
"Um Beiträge auf persönlichen Facebook-Profilen zu teilen, steht Facebook "
|
2271 |
"Instant Sharing zur Verfügung"
|
2272 |
|
2273 |
+
#: views/b2s/dashboard.php:95 views/b2s/post.calendar.php:125
|
2274 |
+
#: views/b2s/post.sched.php:143 views/b2s/repost.php:128 views/b2s/ship.php:543
|
2275 |
msgid "for:"
|
2276 |
msgstr "für:"
|
2277 |
|
2278 |
+
#: views/b2s/support.php:65 views/b2s/support.php:66
|
2279 |
msgid "Forgot Password?"
|
2280 |
msgstr "Passwort vergessen?"
|
2281 |
|
2282 |
+
#: views/b2s/support.php:101
|
2283 |
msgid "Forgot username or password?"
|
2284 |
msgstr "Username oder Passwort vergessen?"
|
2285 |
|
2286 |
+
#: includes/B2S/Network/Item.php:789
|
2287 |
msgid "Format"
|
2288 |
msgstr "Format"
|
2289 |
|
2290 |
+
#: includes/B2S/Network/Item.php:897
|
2291 |
msgid "Frame colour:"
|
2292 |
msgstr "Rahmenfarbe:"
|
2293 |
|
2294 |
+
#: includes/Tools.php:505
|
2295 |
msgid "France"
|
2296 |
msgstr "Frankreich"
|
2297 |
|
2298 |
+
#: views/b2s/support.php:106
|
2299 |
msgid "Frequently asked questions"
|
2300 |
msgstr "Oft gestellte Fragen (FAQ)"
|
2301 |
|
2302 |
+
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:1447
|
2303 |
msgid "Fri"
|
2304 |
msgstr "Fr"
|
2305 |
|
2311 |
msgid "Frontpage Settings"
|
2312 |
msgstr "Frontpage Einstellungen"
|
2313 |
|
2314 |
+
#: views/b2s/settings.php:38
|
2315 |
msgid "General"
|
2316 |
msgstr "Allgemein"
|
2317 |
|
2319 |
msgid "German"
|
2320 |
msgstr "Deutsch"
|
2321 |
|
2322 |
+
#: includes/Tools.php:507
|
2323 |
msgid "Germany"
|
2324 |
msgstr "Deutschland"
|
2325 |
|
2326 |
+
#: views/b2s/html/header.php:668
|
2327 |
+
msgid "Get all Premium benefits starting from just $7 per month."
|
2328 |
+
msgstr ""
|
2329 |
+
"Schon ab 6,00 Euro pro Monat kannst Du mit den Premium-Funktionen starten."
|
2330 |
+
|
2331 |
+
#: views/b2s/premium.php:37
|
2332 |
msgid "Get more information about the benefits of Blog2Social Premium"
|
2333 |
msgstr "Erfahre mehr über die Vorteile von Blog2Social-Premium"
|
2334 |
|
2335 |
+
#: views/b2s/html/header.php:109
|
2336 |
#, php-format
|
2337 |
msgid ""
|
2338 |
"Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
|
2341 |
"Mehr Informationen erhältst Du in der <a href=\"%s\" target=\"_blank\">"
|
2342 |
"Social-Meta-Tag-Anleitung</a>."
|
2343 |
|
2344 |
+
#: views/b2s/curation.php:293
|
2345 |
#, php-format
|
2346 |
msgid ""
|
2347 |
"Get more information on how to share a text post with hashtags, @mentions "
|
2356 |
msgid "Get Social Media News"
|
2357 |
msgstr "Social Media News"
|
2358 |
|
2359 |
+
#: views/b2s/html/header.php:403
|
2360 |
msgid "Get Started"
|
2361 |
msgstr "Jetzt loslegen"
|
2362 |
|
2363 |
+
#: views/b2s/curation.draft.php:18
|
2364 |
msgid "Get the Blog2Social Browser Extension"
|
2365 |
msgstr "Blog2Social Browser Erweiterung"
|
2366 |
|
2367 |
+
#: views/b2s/ship.php:838
|
2368 |
msgid "Give me more information"
|
2369 |
msgstr "Erhalte mehr Infomationen"
|
2370 |
|
2371 |
+
#: views/b2s/premium.php:62
|
2372 |
msgid "Go Premium and get even smarter with social media automation"
|
2373 |
msgstr ""
|
2374 |
"Das sind die Vorteile, von denen Sie mit Blog2Social Premium profitieren "
|
2375 |
"können"
|
2376 |
|
2377 |
+
#: views/b2s/support.php:92
|
2378 |
msgid "Go to the Blog2Social Community"
|
2379 |
msgstr "Zur Blog2Social Community"
|
2380 |
|
2381 |
+
#: includes/B2S/Ship/Item.php:415
|
2382 |
msgid ""
|
2383 |
"Good to know: Instagram does not allow to publish identical or substantially "
|
2384 |
"similar content on one or more accounts. Vary your content by using other "
|
2391 |
"Hashtags oder Handles und versorge Deine Follower so mit abwechslungsreichem "
|
2392 |
"und inspirierendem Content."
|
2393 |
|
2394 |
+
#: includes/B2S/Network/Item.php:818 includes/B2S/Ship/Item.php:414
|
2395 |
msgid ""
|
2396 |
"Good to know: Instagram supports up to 30 hashtags in a post. The number "
|
2397 |
"recommended for best results is 5 hashtags. Make sure that your hashtags are "
|
2413 |
"Unternehmen mit mehr als 9 verbundenen Standorten in Ihren Google My "
|
2414 |
"Business Brancheneinträgen zu erweitern."
|
2415 |
|
2416 |
+
#: views/b2s/network.php:127 views/b2s/premium.php:128
|
2417 |
msgid "Google My Business"
|
2418 |
msgstr "Google My Business"
|
2419 |
|
2420 |
+
#: views/b2s/curation.php:231
|
2421 |
msgid ""
|
2422 |
"Grab more attention for your content with photos, videos, or infographics."
|
2423 |
msgstr ""
|
2424 |
"Erziele mehr Aufmerksamkeit für Deine Inhalte mit Fotos, Videos oder "
|
2425 |
"Infografiken."
|
2426 |
|
2427 |
+
#: includes/Tools.php:496
|
2428 |
msgid "Great Britain"
|
2429 |
msgstr "Großbritannien"
|
2430 |
|
2431 |
+
#: includes/Tools.php:486
|
2432 |
msgid "Greece"
|
2433 |
msgstr "Griechenland"
|
2434 |
|
2435 |
+
#: includes/Loader.php:918 includes/B2S/Network/Item.php:721
|
2436 |
msgid "Group"
|
2437 |
msgstr "Gruppe"
|
2438 |
|
2439 |
+
#: includes/B2S/Network/Item.php:155
|
2440 |
msgid "Guide"
|
2441 |
msgstr "Leitfaden"
|
2442 |
|
2443 |
+
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:72
|
2444 |
msgid "guide for server connection"
|
2445 |
msgstr "Serververbindungs-Guide"
|
2446 |
|
2447 |
+
#: includes/B2S/Network/Item.php:891
|
2448 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
2449 |
msgstr "Hashtags mischen (Hashtags müssen im obigen Textfeld definiert sein)"
|
2450 |
|
2451 |
+
#: includes/B2S/Ship/Item.php:1233
|
2452 |
msgid "Hashtags"
|
2453 |
msgstr "Hashtags"
|
2454 |
|
2455 |
+
#: views/b2s/support.php:17
|
2456 |
msgid "Help & Community"
|
2457 |
msgstr "Hilfe & Community"
|
2458 |
|
2459 |
+
#: includes/Loader.php:1036 includes/Loader.php:1125
|
2460 |
+
#: views/b2s/html/header.php:52 views/b2s/html/sidebar.php:112
|
2461 |
#: views/b2s/html/sidebar.ship.php:66
|
2462 |
msgid "Help & Support"
|
2463 |
msgstr "Hilfe & Support"
|
2466 |
msgid "Help us make Blog2Social even better!"
|
2467 |
msgstr "Hilf uns, Blog2Social noch besser zu machen!"
|
2468 |
|
2469 |
+
#: views/b2s/support.php:119
|
2470 |
msgid "Helpful Network Settings"
|
2471 |
msgstr "Hilfreiche Netzwerkeinstellungen"
|
2472 |
|
2473 |
+
#: views/b2s/metrics.php:199
|
2474 |
msgid "Here's how to start tracking your social media posts:"
|
2475 |
msgstr "So startest Du mit dem Tracking der Deiner Social-Media-Posts:"
|
2476 |
|
2477 |
+
#: views/b2s/html/header.php:256
|
2478 |
#, php-format
|
2479 |
msgid ""
|
2480 |
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
2491 |
msgid "hide"
|
2492 |
msgstr "ausblenden"
|
2493 |
|
2494 |
+
#: includes/B2S/Ship/Item.php:436
|
2495 |
msgid "hide calendar"
|
2496 |
msgstr "Planungskalender verbergen"
|
2497 |
|
2498 |
+
#: views/b2s/html/header.php:679
|
2499 |
+
msgid "Hide this notification."
|
2500 |
+
msgstr "Diesen Hinweis nicht mehr anzeigen."
|
2501 |
+
|
2502 |
+
#: views/b2s/support.php:38
|
2503 |
msgid "How can we help?"
|
2504 |
msgstr "Wie können wir helfen?"
|
2505 |
|
2506 |
+
#: views/b2s/metrics.php:250
|
2507 |
msgid "How to check the Social Media Metrics?"
|
2508 |
msgstr "Wie kann ich die Social-Media-Kennzahlen einsehen? "
|
2509 |
|
2510 |
+
#: views/b2s/support.php:135
|
2511 |
msgid "How to use the Troubleshooting tool"
|
2512 |
msgstr "Wie Du das Problemanalyse-Tool nutzt"
|
2513 |
|
2516 |
msgid "https://www.blog2social.com"
|
2517 |
msgstr "https://www.blog2social.com"
|
2518 |
|
2519 |
+
#: includes/Tools.php:511
|
2520 |
msgid "Hungary"
|
2521 |
msgstr "Ungarn"
|
2522 |
|
2523 |
+
#: views/b2s/support.php:80
|
2524 |
#, php-format
|
2525 |
msgid "I agree to the <a href=\"%s\" target=\"_blank\">community rules</a>"
|
2526 |
msgstr ""
|
2527 |
"Ich habe die <a href=\"%s\" target=\"_blank\">Community-Regeln</a> zur "
|
2528 |
"Kenntnis genommen und willige ein."
|
2529 |
|
2530 |
+
#: views/b2s/html/header.php:517
|
2531 |
msgid "I agree to the Adenion Privacy Policy"
|
2532 |
msgstr "Ich akzeptiere die Datenschutzerklärung von Adenion. "
|
2533 |
|
2534 |
+
#: views/b2s/html/header.php:266
|
2535 |
msgid "I already did it"
|
2536 |
msgstr "Habe ich schon erledigt"
|
2537 |
|
2538 |
+
#: views/b2s/html/header.php:676
|
2539 |
+
msgid "I need advice on finding the right license"
|
2540 |
+
msgstr "Ich benötige Beratung für die richtige Lizenz."
|
2541 |
+
|
2542 |
+
#: views/b2s/html/header.php:608
|
2543 |
+
msgid "I need advice on finding the right license."
|
2544 |
+
msgstr "Ich benötige Beratung für die richtige Lizenz."
|
2545 |
+
|
2546 |
+
#: views/b2s/html/header.php:347
|
2547 |
+
msgid "I need advice on the right license."
|
2548 |
+
msgstr "Ich benötige Beratung für die richtige Lizenz."
|
2549 |
+
|
2550 |
+
#: views/b2s/html/header.php:309 views/b2s/html/header.php:328
|
2551 |
msgid "I need some more time to decide"
|
2552 |
msgstr "Ich brauche etwas mehr Zeit, um mich zu entscheiden"
|
2553 |
|
2554 |
+
#: views/b2s/html/header.php:605
|
2555 |
+
msgid "I would like to continue with my trial."
|
2556 |
+
msgstr "Ich möchte mit meiner Testphase fortfahren."
|
2557 |
+
|
2558 |
#: views/b2s/html/footer.php:502
|
2559 |
msgid ""
|
2560 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
2583 |
"Wenn Dir Blog2Social gefällt, gib uns bitte eine 5 Sterne Bewertung. Wenn es "
|
2584 |
"etwas gibt, das für Dich nicht funktioniert, kontaktiere uns bitte!"
|
2585 |
|
2586 |
+
#: views/b2s/html/sidebar.php:138
|
2587 |
msgid ""
|
2588 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
2589 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
2595 |
"kannst Du Deine Frage jederzeit in der Blog2Social-Community stellen und "
|
2596 |
"erhältst Hilfe von unserem engagierten Support-Team."
|
2597 |
|
2598 |
+
#: views/b2s/ship.php:384
|
2599 |
msgid "Ignore & share"
|
2600 |
msgstr "Ignorieren & teilen"
|
2601 |
|
2602 |
+
#: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
|
2603 |
msgid "Image"
|
2604 |
msgstr "Bild"
|
2605 |
|
2607 |
msgid "image"
|
2608 |
msgstr "Bild"
|
2609 |
|
2610 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2611 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2612 |
+
#: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
|
2613 |
#: includes/B2S/Settings/Item.php:294 views/b2s/html/footer.php:182
|
2614 |
#: views/b2s/widgets/calendar.php:72
|
2615 |
msgid "Image cut out"
|
2616 |
msgstr "Bild zuschneiden"
|
2617 |
|
2618 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2619 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2620 |
+
#: includes/B2S/Post/Item.php:819 includes/B2S/Settings/Item.php:294
|
2621 |
+
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:386
|
|
|
2622 |
#: views/b2s/widgets/calendar.php:72
|
2623 |
msgid "Image Post"
|
2624 |
msgstr "Bild-Beitrag"
|
2632 |
msgid "Image URL"
|
2633 |
msgstr "Bild Url"
|
2634 |
|
2635 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2636 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2637 |
+
#: includes/B2S/Network/Item.php:796 includes/B2S/Network/Item.php:799
|
2638 |
#: includes/B2S/Settings/Item.php:280 views/b2s/html/footer.php:177
|
2639 |
#: views/b2s/widgets/calendar.php:72
|
2640 |
msgid "Image with frame"
|
2656 |
msgid "immediately after publishing"
|
2657 |
msgstr "sofort nach Veröffentlichung"
|
2658 |
|
2659 |
+
#: views/b2s/metrics.php:209
|
2660 |
msgid "Imported posts"
|
2661 |
msgstr "Importierte Beiträge"
|
2662 |
|
2663 |
+
#: views/b2s/metrics.php:101 views/b2s/metrics.php:139
|
2664 |
msgid "Impressions"
|
2665 |
msgstr "Impressionen"
|
2666 |
|
2667 |
+
#: views/b2s/metrics.php:242
|
2668 |
msgid "Impressions: A count of how many times the post has been viewed."
|
2669 |
msgstr "Impressions: Eine Aufzählung, wie oft der Beitrag angesehen wurde."
|
2670 |
|
2676 |
"In Übereinstimmung mit den neuen Twitter-AGB kann ein Twitter-Account als "
|
2677 |
"Ihr primärer Twitter-Account für das Auto-Posting ausgewählt werden"
|
2678 |
|
2679 |
+
#: views/b2s/curation.php:373
|
2680 |
#, php-format
|
2681 |
#| msgid ""
|
2682 |
#| "In the <a href=\"%s\">Network Settings</a> you can define network "
|
2689 |
"Unter den <a href=\"%s\">Netzwerkeinstellungen</a> kannst Du die Netzwerk-"
|
2690 |
"Gruppierung festlegen."
|
2691 |
|
2692 |
+
#: views/b2s/curation.php:295
|
2693 |
#, php-format
|
2694 |
msgid ""
|
2695 |
"In the <a href=\"%s\">Network Settings</a> you can define one or more "
|
2714 |
msgid "include posts with images only"
|
2715 |
msgstr "nur Beiträge mit Bildern hinzufügen"
|
2716 |
|
2717 |
+
#: includes/Tools.php:487
|
2718 |
msgid "India"
|
2719 |
msgstr "Indien"
|
2720 |
|
2721 |
+
#: includes/Tools.php:493
|
2722 |
msgid "Indonesia"
|
2723 |
msgstr "Indonesien"
|
2724 |
|
2725 |
#: includes/Loader.php:917 includes/B2S/PostBox.php:165
|
2726 |
#: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
|
2727 |
+
#: views/b2s/autopost.php:113 views/b2s/autopost.php:153
|
2728 |
+
#: views/b2s/metrics.php:70 views/b2s/network.php:49 views/b2s/ship.php:81
|
2729 |
+
#: views/b2s/ship.php:183 views/b2s/ship.php:275
|
2730 |
#: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
|
2731 |
+
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:227
|
2732 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2733 |
+
#: includes/B2S/Ship/Item.php:1269
|
2734 |
msgid "Info"
|
2735 |
msgstr "Info"
|
2736 |
|
2737 |
+
#: includes/B2S/Ship/Item.php:569 includes/B2S/Ship/Item.php:793
|
2738 |
msgid ""
|
2739 |
"Info: Change Card Meta tags image, title and description for this network"
|
2740 |
msgstr "Info: Ändere die Twitter Card Parameter für diese Netzwerk"
|
2741 |
|
2742 |
+
#: includes/B2S/Ship/Item.php:508 includes/B2S/Ship/Item.php:628
|
2743 |
+
#: includes/B2S/Ship/Item.php:709 includes/B2S/Ship/Item.php:737
|
2744 |
+
#: includes/B2S/Ship/Item.php:765
|
2745 |
msgid ""
|
2746 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2747 |
"network"
|
2748 |
msgstr "Info: Ändere die Open Graph Parameter für diese Netzwerk"
|
2749 |
|
2750 |
+
#: includes/B2S/Ship/Item.php:397 includes/B2S/Ship/Item.php:1472
|
2751 |
msgid "Insert full-text"
|
2752 |
msgstr "ganzen Text einfügen"
|
2753 |
|
2759 |
"Füge weiße Rahmen ein, um das gesamte Bild in Deiner Zeitleiste anzuzeigen. "
|
2760 |
"Alle Bildinformationen werden in Deiner Zeitleiste angezeigt."
|
2761 |
|
2762 |
+
#: views/b2s/support.php:194
|
2763 |
msgid "Inspect Post"
|
2764 |
msgstr "Link prüfen"
|
2765 |
|
2772 |
"Instagram hat Deinen Beitrag ohne Text veröffentlicht. Bitte beachte die "
|
2773 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>"
|
2774 |
|
2775 |
+
#: views/b2s/support.php:109
|
2776 |
msgid "Installation"
|
2777 |
msgstr "Installation"
|
2778 |
|
2784 |
msgid "Instant Caching for Link Posts"
|
2785 |
msgstr "Instant Caching für Link-Beiträge"
|
2786 |
|
2787 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:77
|
|
|
2788 |
msgid "Instant Sharing"
|
2789 |
msgstr "Instant Sharing"
|
2790 |
|
2791 |
+
#: views/b2s/html/header.php:665
|
2792 |
+
#, php-format
|
2793 |
+
msgid ""
|
2794 |
+
"Interested in reading more reviews? <a href=\"%s\" target=\"_blank\">Check "
|
2795 |
+
"out what others think about Blog2Social.</a>"
|
2796 |
+
msgstr ""
|
2797 |
+
"Interessiert an weiteren Bewertungen zu Blog2Social? <a href=\"%s\" "
|
2798 |
+
"target=\"_blank\">Lies, was andere über Blog2Social schreiben.</a>"
|
2799 |
+
|
2800 |
+
#: views/b2s/network.php:390 views/b2s/ship.php:644
|
2801 |
msgid "Invalid Data! Please try again."
|
2802 |
msgstr "Ungültige Daten! Bitte versuche es erneut."
|
2803 |
|
2804 |
+
#: views/b2s/curation.php:50
|
2805 |
msgid "Invalid data. Please check your data."
|
2806 |
msgstr "Ungültige Daten. Bitte überprüfe Deine Angaben."
|
2807 |
|
2808 |
+
#: views/b2s/support.php:64
|
2809 |
msgid "Invalid email address"
|
2810 |
msgstr "Ungültige E-Mail Adresse"
|
2811 |
|
2812 |
+
#: includes/Tools.php:489
|
2813 |
msgid "Ireland"
|
2814 |
msgstr "Irland"
|
2815 |
|
2816 |
+
#: includes/B2S/Post/Item.php:976
|
2817 |
msgid "is currently being processed by the network"
|
2818 |
msgstr "wird vom Netzwerk verarbeitet"
|
2819 |
|
2820 |
+
#: includes/Tools.php:525
|
2821 |
msgid "is determined automatically"
|
2822 |
msgstr "wird automatisch ermittelt"
|
2823 |
|
2824 |
+
#: includes/B2S/Post/Item.php:892
|
2825 |
#, php-format
|
2826 |
msgid "is waiting to shared by %s"
|
2827 |
msgstr "wartet darauf von %s geteilt zu werden"
|
2828 |
|
2829 |
+
#: includes/Tools.php:490
|
2830 |
msgid "Italy"
|
2831 |
msgstr "Italien"
|
2832 |
|
2833 |
+
#: includes/Tools.php:512
|
2834 |
msgid "Japan"
|
2835 |
msgstr "Japan"
|
2836 |
|
2837 |
+
#: views/b2s/html/header.php:661
|
2838 |
+
msgid "jerryj1 per WordPress"
|
2839 |
+
msgstr "stephanv auf wordpress.org"
|
2840 |
+
|
2841 |
#: views/b2s/html/footer.php:11 views/prg/html/footer.php:11
|
2842 |
msgid "Job"
|
2843 |
msgstr "Job"
|
2844 |
|
2845 |
+
#: includes/B2S/Ship/Item.php:1207
|
2846 |
msgid "Jobs & Projects"
|
2847 |
msgstr "Stellenangebote & Projekte"
|
2848 |
|
2849 |
+
#: views/b2s/html/header.php:340
|
2850 |
+
msgid ""
|
2851 |
+
"Keep your current settings and access to more automated scheduling and "
|
2852 |
+
"sharing options and upgrade to Blog2Social Premium."
|
2853 |
+
msgstr ""
|
2854 |
+
"Behalte Deine Einstellungen und Zugang zu den Funktionen zum automatisierten "
|
2855 |
+
"Planen und Teilen und upgrade auf Blog2Social Premium."
|
2856 |
+
|
2857 |
#: views/b2s/html/footer.php:441
|
2858 |
msgid ""
|
2859 |
"Keep your social media feed updated automatically with your best content and "
|
2875 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2876 |
msgstr "Keywords mit Komma getrennt (z.B.: Blog2Social, PR-Gateway)"
|
2877 |
|
2878 |
+
#: views/b2s/settings.php:121
|
2879 |
msgid "Keywords: The tags you have set in your post."
|
2880 |
msgstr "Keywords: Die Tags, die Du in Deinem Beitrag gesetzt hast."
|
2881 |
|
2882 |
+
#: includes/Tools.php:515
|
2883 |
msgid "Korea"
|
2884 |
msgstr "Korea"
|
2885 |
|
2887 |
msgid "Language"
|
2888 |
msgstr "Sprache"
|
2889 |
|
2890 |
+
#: includes/B2S/Post/Item.php:974
|
2891 |
#, php-format
|
2892 |
msgid "last modified by %s"
|
2893 |
msgstr "zuletzt von %s bearbeitet"
|
2894 |
|
2895 |
+
#: views/b2s/html/header.php:385 views/prg/html/form.php:92
|
2896 |
#: views/prg/html/form.php:103 views/prg/html/form.php:169
|
2897 |
#: views/prg/html/form.php:180
|
2898 |
msgid "Last Name"
|
2899 |
msgstr "Nachname"
|
2900 |
|
2901 |
+
#: includes/B2S/Post/Item.php:575
|
2902 |
msgid "last saved"
|
2903 |
msgstr "zuletzt gespeichert:"
|
2904 |
|
2906 |
msgid "Last shared"
|
2907 |
msgstr "Letzte Veröffentlichung"
|
2908 |
|
2909 |
+
#: includes/B2S/Post/Item.php:431 includes/B2S/Post/Item.php:536
|
2910 |
+
#: includes/B2S/Post/Item.php:584
|
2911 |
msgid "last shared on social media"
|
2912 |
msgstr "zuletzt auf Social Media geteilt"
|
2913 |
|
2915 |
msgid "Latest Posts"
|
2916 |
msgstr "letzte Beiträge"
|
2917 |
|
2918 |
+
#: includes/B2S/Metrics/Item.php:228 includes/B2S/Post/Item.php:476
|
2919 |
#, php-format
|
2920 |
msgid "latest share by %s"
|
2921 |
msgstr "zuletzt von %s geteilt"
|
2922 |
|
2923 |
+
#: includes/B2S/Ship/Save.php:440
|
2924 |
msgid "Learn how it works"
|
2925 |
msgstr "mehr erfahren"
|
2926 |
|
2927 |
+
#: views/b2s/support.php:177
|
2928 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2929 |
msgstr "So kannst Du Deine Open Graph Tags bearbeiten und anpassen."
|
2930 |
|
2931 |
+
#: views/b2s/support.php:212
|
2932 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2933 |
msgstr "So kannst Du Deine Twitter Card Tags bearbeiten und anpassen."
|
2934 |
|
2940 |
"Erfahre, wie Du individuelle Beste Zeiten für Deine Social Media Planung und "
|
2941 |
"Deinen Auto-Poster einrichten und anwenden kannst."
|
2942 |
|
2943 |
+
#: views/b2s/network.php:136 includes/B2S/Ship/Item.php:1367
|
2944 |
#: views/b2s/partials/post-edit-modal.php:53
|
2945 |
msgid "Learn more"
|
2946 |
msgstr "Mehr erfahren"
|
2947 |
|
2948 |
+
#: views/b2s/curation.php:239
|
2949 |
#, php-format
|
2950 |
msgid ""
|
2951 |
"Learn more about how to share social media posts in the <a href=\"%s\" "
|
2955 |
"Guide</a>\" mehr Informationen darüber, wie Du Social-Media-Beiträge teilen "
|
2956 |
"kannst."
|
2957 |
|
2958 |
+
#: views/b2s/ship.php:513 views/b2s/ship.php:528
|
2959 |
msgid "Learn more about the Xing guidelines."
|
2960 |
msgstr "Erfahre mehr über die Xing-Richtlinien."
|
2961 |
|
2962 |
+
#: includes/B2S/Ship/Item.php:406 includes/B2S/Ship/Item.php:881
|
2963 |
+
#: includes/B2S/Ship/Item.php:1338
|
2964 |
msgid "Learn more about this"
|
2965 |
msgstr "Erfahre mehr darüber"
|
2966 |
|
2968 |
msgid "Legend"
|
2969 |
msgstr "Legende"
|
2970 |
|
2971 |
+
#: includes/Tools.php:471 views/b2s/html/sidebar.php:32
|
2972 |
#: views/b2s/html/sidebar.ship.php:29
|
2973 |
msgid "License"
|
2974 |
msgstr "Lizenz"
|
2975 |
|
2976 |
+
#: views/b2s/metrics.php:140
|
2977 |
msgid "Likes"
|
2978 |
msgstr "Likes"
|
2979 |
|
2980 |
+
#: views/b2s/metrics.php:244
|
2981 |
msgid "Likes: A count of how many times the post has been liked."
|
2982 |
msgstr ""
|
2983 |
"Likes: Eine Aufzählung, wie viele “Gefällt mir”-Angaben ein Beitrag hat."
|
2984 |
|
2985 |
+
#: includes/B2S/Network/Item.php:796 includes/B2S/Network/Item.php:799
|
2986 |
+
#: includes/B2S/Ship/Item.php:1134 includes/B2S/Ship/Item.php:1136
|
2987 |
msgid "Link"
|
2988 |
msgstr "Link"
|
2989 |
|
2990 |
+
#: views/b2s/metrics.php:243
|
2991 |
msgid ""
|
2992 |
"Link clicks: A count of link clicks, to further content. (Available for "
|
2993 |
"Twitter)"
|
2995 |
"Link-Aufrufe: Eine Aufzählung der Link-Klicks, zu weiterführendem Content. "
|
2996 |
"(Für Twitter verfügbar)"
|
2997 |
|
2998 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2999 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
3000 |
+
#: includes/B2S/Post/Item.php:817 includes/B2S/Settings/Item.php:280
|
3001 |
+
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:387
|
3002 |
#: views/b2s/html/footer.php:160 views/b2s/widgets/calendar.php:72
|
3003 |
msgid "Link Post"
|
3004 |
msgstr "Link-Beitrag"
|
3007 |
msgid "LinkedIn pages"
|
3008 |
msgstr "LinkedIn-Seiten"
|
3009 |
|
3010 |
+
#: views/b2s/support.php:189
|
3011 |
msgid "LinkedIn Post Inspector"
|
3012 |
msgstr "LinkedIn Post Inspector"
|
3013 |
|
3014 |
+
#: views/b2s/dashboard.php:32 includes/B2S/RePost/Item.php:140
|
3015 |
msgid "List"
|
3016 |
msgstr "Liste"
|
3017 |
|
3018 |
+
#: views/b2s/network.php:56 views/b2s/ship.php:80
|
3019 |
#: views/b2s/partials/post-edit-modal.php:42
|
3020 |
msgid "Load Best Times"
|
3021 |
msgstr "Lade beste Zeiten"
|
3022 |
|
3023 |
+
#: views/b2s/curation.php:61
|
3024 |
msgid "Load data..."
|
3025 |
msgstr "Daten werden geladen..."
|
3026 |
|
3027 |
+
#: includes/B2S/Network/Item.php:790 includes/B2S/Network/Item.php:811
|
3028 |
msgid "Load default settings"
|
3029 |
msgstr "Lade Standardeinstellungen"
|
3030 |
|
3031 |
+
#: includes/B2S/Post/Item.php:447 includes/B2S/Post/Item.php:597
|
3032 |
msgid "load Draft"
|
3033 |
+
msgstr "Entwurf bearbeiten"
|
3034 |
|
3035 |
+
#: views/b2s/ship.php:74 views/b2s/partials/post-edit-modal.php:41
|
3036 |
msgid "Load My Times Settings"
|
3037 |
msgstr "Meine Zeit-Einstellungen laden"
|
3038 |
|
3039 |
+
#: views/b2s/curation.draft.php:48 views/b2s/dashboard.php:226
|
3040 |
+
#: views/b2s/metrics.php:38 views/b2s/network.php:68 views/b2s/network.php:155
|
3041 |
#: views/b2s/network.php:245 views/b2s/network.php:383
|
3042 |
+
#: views/b2s/network.php:462 views/b2s/post.approve.php:59
|
3043 |
+
#: views/b2s/post.calendar.php:72 views/b2s/post.calendar.php:256
|
3044 |
+
#: views/b2s/post.draft.php:50 views/b2s/post.favorites.php:49
|
3045 |
+
#: views/b2s/post.notice.php:56 views/b2s/post.php:58
|
3046 |
+
#: views/b2s/post.publish.php:53 views/b2s/post.sched.php:71
|
3047 |
+
#: views/b2s/repost.php:41 views/b2s/ship.php:205 views/b2s/ship.php:637
|
3048 |
+
#: views/b2s/ship.php:834 views/b2s/support.php:87 views/b2s/support.php:140
|
3049 |
#: views/prg/html/header.php:86
|
3050 |
msgid "Loading..."
|
3051 |
msgstr "Wird geladen..."
|
3054 |
msgid "Location"
|
3055 |
msgstr "Standort"
|
3056 |
|
3057 |
+
#: views/b2s/network.php:392 views/b2s/ship.php:646
|
3058 |
#, php-format
|
3059 |
msgid ""
|
3060 |
"Login failed. Please check your login data for typos and please check your "
|
3079 |
" Die Anmeldung zu PR-Gateway ist fehlgeschlagen. Bitte überprüfe Deinen "
|
3080 |
"Benutzernamen und Dein Password!"
|
3081 |
|
3082 |
+
#: views/b2s/network.php:370 views/b2s/network.php:396 views/b2s/ship.php:624
|
3083 |
+
#: views/b2s/ship.php:650
|
3084 |
msgid ""
|
3085 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
3086 |
"on your profile."
|
3092 |
msgid "Logout"
|
3093 |
msgstr "Ausloggen"
|
3094 |
|
3095 |
+
#: includes/B2S/Ship/Item.php:1231
|
3096 |
#, php-format
|
3097 |
msgid "max. %s Tags"
|
3098 |
msgstr "max. %s Tags"
|
3105 |
msgid "Meta Tags Settings for Posts and Pages"
|
3106 |
msgstr "Meta Tag Einstellungen für Beiträge und Seiten"
|
3107 |
|
3108 |
+
#: includes/Tools.php:517
|
3109 |
msgid "Mexico"
|
3110 |
msgstr "Mexiko"
|
3111 |
|
3112 |
+
#: includes/B2S/Ship/Item.php:1298 includes/B2S/Ship/Item.php:1299
|
3113 |
+
#: includes/B2S/Ship/Item.php:1300 includes/B2S/Ship/Item.php:1301
|
3114 |
#: views/b2s/partials/post-edit-modal.php:82
|
3115 |
#: views/b2s/partials/post-edit-modal.php:83
|
3116 |
#: views/b2s/partials/post-edit-modal.php:84
|
3122 |
msgid "minutes"
|
3123 |
msgstr "Minuten"
|
3124 |
|
3125 |
+
#: includes/B2S/Network/Item.php:915
|
3126 |
msgid ""
|
3127 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
3128 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
3147 |
msgid "Modify subreddit"
|
3148 |
msgstr "Modify subreddit"
|
3149 |
|
3150 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1443
|
3151 |
msgid "Mon"
|
3152 |
msgstr "Mo"
|
3153 |
|
3155 |
msgid "Monday"
|
3156 |
msgstr "Montag"
|
3157 |
|
3158 |
+
#: includes/B2S/Ship/Item.php:1410
|
3159 |
msgid "Month"
|
3160 |
msgstr "Monat"
|
3161 |
|
3162 |
+
#: includes/B2S/Ship/Item.php:1394
|
3163 |
msgid "monthly"
|
3164 |
msgstr "monatlich"
|
3165 |
|
3166 |
+
#: includes/B2S/Ship/Item.php:1410
|
3167 |
msgid "Months"
|
3168 |
msgstr "Monate"
|
3169 |
|
3170 |
+
#: views/b2s/support.php:171
|
3171 |
msgid "More"
|
3172 |
msgstr "Mehr"
|
3173 |
|
3175 |
msgid "More Information"
|
3176 |
msgstr "Weitere Informationen"
|
3177 |
|
3178 |
+
#: views/b2s/autopost.php:84 views/b2s/repost.php:192
|
3179 |
#: includes/B2S/AutoPost/Item.php:161
|
3180 |
msgid "More information"
|
3181 |
msgstr "Zusätzliche Informationen"
|
3182 |
|
3183 |
+
#: views/b2s/curation.php:297 views/b2s/curation.php:375
|
3184 |
#, php-format
|
3185 |
msgid ""
|
3186 |
"More information on how to create a network selection in the guide <a "
|
3191 |
"in dem Guide <a href=\"%s\" target=\"_blank\">\"Kann ich eine bestimmte "
|
3192 |
"Auswahl von Netzwerken speichern?\"</a>."
|
3193 |
|
3194 |
+
#: views/b2s/premium.php:80
|
3195 |
msgid "More users and accounts"
|
3196 |
msgstr "Mehr Benutzer und Accounts"
|
3197 |
|
3198 |
+
#: views/b2s/metrics.php:134
|
3199 |
msgid "Most Comments"
|
3200 |
msgstr "Die meisten Kommentare"
|
3201 |
|
3202 |
+
#: views/b2s/metrics.php:131
|
3203 |
msgid "Most Impressions"
|
3204 |
msgstr "Die meisten Impressionen"
|
3205 |
|
3206 |
+
#: views/b2s/metrics.php:132
|
3207 |
msgid "Most Likes"
|
3208 |
msgstr "Die meisten Likes"
|
3209 |
|
3210 |
+
#: views/b2s/metrics.php:133
|
3211 |
msgid "Most Reshares"
|
3212 |
msgstr "Die meisten Re-Shares"
|
3213 |
|
3231 |
msgid "My Profile"
|
3232 |
msgstr "Mein Profil"
|
3233 |
|
3234 |
+
#: includes/B2S/Network/Item.php:68 includes/B2S/Network/Item.php:232
|
3235 |
msgid "My profile"
|
3236 |
msgstr "Mein Profil"
|
3237 |
|
3238 |
+
#: includes/B2S/Network/Item.php:604 views/prg/html/form.php:84
|
3239 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
3240 |
#: views/prg/html/form.php:163
|
3241 |
msgid "Name"
|
3245 |
msgid "Need more?"
|
3246 |
msgstr "Benötigst Du mehr?"
|
3247 |
|
3248 |
+
#: views/b2s/curation.php:171 views/b2s/dashboard.php:247
|
3249 |
+
#: views/b2s/post.calendar.php:277 views/b2s/ship.php:421
|
3250 |
msgid "Need to schedule your posts?"
|
3251 |
msgstr "Du möchtest Deine Beiträge planen?"
|
3252 |
|
3253 |
+
#: views/b2s/support.php:150
|
3254 |
msgid "Needed"
|
3255 |
msgstr "Erforderlich"
|
3256 |
|
3257 |
+
#: includes/Tools.php:498
|
3258 |
msgid "Netherlands"
|
3259 |
msgstr "Niederlande"
|
3260 |
|
3262 |
msgid "Network collection"
|
3263 |
msgstr "Netzwerkgruppierung"
|
3264 |
|
3265 |
+
#: views/b2s/ship.php:190
|
3266 |
msgid "network connected"
|
3267 |
msgstr "Netzwerk verbunden"
|
3268 |
|
3270 |
msgid "Network connections"
|
3271 |
msgstr "Netzwerkverbindungen"
|
3272 |
|
3273 |
+
#: includes/B2S/Ship/Item.php:166 includes/B2S/Ship/Item.php:247
|
3274 |
msgid "Network defines image by link"
|
3275 |
msgstr "Netzwerk wählt selber das Bild aus"
|
3276 |
|
3277 |
+
#: includes/B2S/Ship/Item.php:169 includes/B2S/Ship/Item.php:246
|
3278 |
msgid "Network does not support emojis"
|
3279 |
msgstr "Netzwerk unterstützt keine Emojis"
|
3280 |
|
3281 |
+
#: includes/B2S/Ship/Item.php:171 includes/B2S/Ship/Item.php:249
|
3282 |
msgid "Network does not support GIFs"
|
3283 |
msgstr "Das Netzwerk unterstützt keine GIFs"
|
3284 |
|
3285 |
+
#: includes/B2S/Ship/Item.php:245
|
3286 |
msgid "Network does not support image for pages"
|
3287 |
msgstr "Netzwerk unterstützt keine Bilder für Seiten"
|
3288 |
|
3289 |
+
#: includes/B2S/Ship/Item.php:165
|
3290 |
msgid "Network does not support image for profiles"
|
3291 |
msgstr "Netzwerk unterstützt keine Bilder für Profile"
|
3292 |
|
3293 |
+
#: includes/B2S/Network/Item.php:872 includes/B2S/Network/Item.php:935
|
3294 |
+
#: includes/B2S/Network/Item.php:971
|
3295 |
msgid "Network limit"
|
3296 |
msgstr "Netzwerkbegrenzung"
|
3297 |
|
3300 |
msgid "Network settings"
|
3301 |
msgstr "Netzwerkeinstellungen"
|
3302 |
|
3303 |
+
#: includes/Loader.php:1025 includes/Loader.php:1079
|
3304 |
msgid "Networks"
|
3305 |
msgstr "Netzwerke"
|
3306 |
|
3307 |
+
#: includes/Loader.php:917 views/b2s/support.php:20 views/b2s/support.php:23
|
|
|
3308 |
msgid "NEW"
|
3309 |
msgstr "Neu"
|
3310 |
|
3311 |
+
#: includes/B2S/Network/Item.php:275 includes/B2S/Network/Item.php:354
|
3312 |
+
#: includes/B2S/Network/Item.php:434
|
3313 |
msgid "New"
|
3314 |
msgstr "Neu"
|
3315 |
|
3317 |
msgid "new posts"
|
3318 |
msgstr "Neue Beiträge"
|
3319 |
|
3320 |
+
#: includes/Tools.php:509
|
3321 |
msgid "New Zealand"
|
3322 |
msgstr "Neuseeland"
|
3323 |
|
3325 |
msgid "newest first"
|
3326 |
msgstr "neuste zuerst"
|
3327 |
|
3328 |
+
#: includes/B2S/Post/Item.php:500 includes/B2S/Post/Item.php:620
|
3329 |
#, php-format
|
3330 |
msgid "next share by %s"
|
3331 |
msgstr "wird als nächstes von %s geteilt"
|
3332 |
|
3333 |
+
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:158
|
3334 |
+
#: views/b2s/metrics.php:182 views/b2s/network.php:115
|
3335 |
+
#: views/b2s/post.approve.php:105 views/b2s/post.approve.php:122
|
3336 |
+
#: views/b2s/post.draft.php:94 views/b2s/post.notice.php:95
|
3337 |
+
#: views/b2s/post.publish.php:92 views/b2s/post.sched.php:110
|
3338 |
+
#: views/b2s/repost.php:113 views/b2s/ship.php:497 views/b2s/ship.php:591
|
3339 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
3340 |
msgid "NO"
|
3341 |
msgstr "NEIN"
|
3342 |
|
3343 |
+
#: views/b2s/curation.php:47
|
3344 |
msgid ""
|
3345 |
"No connected networks. Please make sure to connect at least one social media "
|
3346 |
"account."
|
3349 |
"mindestens einen Social Media Account in Blog2Social unter Netzwerke "
|
3350 |
"verbunden hast."
|
3351 |
|
3352 |
+
#: views/b2s/html/header.php:399
|
3353 |
msgid "No credit card required"
|
3354 |
msgstr "Keine Kreditkarte erforderlich"
|
3355 |
|
3356 |
+
#: includes/Tools.php:542
|
3357 |
msgid "No emojis found"
|
3358 |
msgstr "Keine Ergebnisse"
|
3359 |
|
3361 |
msgid "No images are included in your post."
|
3362 |
msgstr "In dem Beitrag sind keine Bilder hinterlegt"
|
3363 |
|
3364 |
+
#: views/b2s/curation.php:43
|
3365 |
msgid "No link preview available. Please check your link."
|
3366 |
msgstr "Keine Link-Vorschau verfügbar. Bitte überprüfe Deinen Link."
|
3367 |
|
3368 |
+
#: views/b2s/html/header.php:234
|
3369 |
msgid "No posts found. Please try again with different filter options."
|
3370 |
msgstr ""
|
3371 |
"Es wurden keine Beiträge gefunden. Bitte versuche es erneut mit anderen "
|
3375 |
msgid "no URL Shortener"
|
3376 |
msgstr "kein URL Shortener"
|
3377 |
|
3378 |
+
#: views/b2s/premium.php:46
|
3379 |
msgid "No User found"
|
3380 |
msgstr "Keinen Blog-Nutzer gefunden"
|
3381 |
|
3382 |
+
#: views/b2s/html/header.php:263
|
3383 |
msgid "Nope, maybe later"
|
3384 |
msgstr "Nein, vielleicht später"
|
3385 |
|
3386 |
+
#: includes/Tools.php:500
|
3387 |
msgid "Norway"
|
3388 |
msgstr "Norwegen"
|
3389 |
|
3391 |
msgid "not yet shared"
|
3392 |
msgstr "noch nicht geteilt"
|
3393 |
|
3394 |
+
#: views/b2s/ship.php:362
|
3395 |
msgid "Note: "
|
3396 |
msgstr "Hinweis: "
|
3397 |
|
3398 |
+
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:215
|
3399 |
msgid ""
|
3400 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
3401 |
"Networks do not allow postings from local installations."
|
3403 |
"Hinweis: Bitte stelle sicher, dass Dein Blog von außen erreichbar ist. Bei "
|
3404 |
"Fragen wende Dich bitte an unseren Support."
|
3405 |
|
3406 |
+
#: views/b2s/dashboard.php:292 views/b2s/post.calendar.php:322
|
3407 |
msgid "Notification"
|
3408 |
msgstr "Benachrichtigung"
|
3409 |
|
3410 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:95
|
3411 |
msgid "Notifications"
|
3412 |
msgstr "Benachrichtigungen"
|
3413 |
|
3416 |
msgid "Number"
|
3417 |
msgstr "Nummer"
|
3418 |
|
3419 |
+
#: views/b2s/metrics.php:178 views/b2s/post.approve.php:101
|
3420 |
+
#: views/b2s/post.notice.php:91 views/b2s/post.publish.php:88
|
3421 |
+
#: views/b2s/post.sched.php:106 views/b2s/repost.php:109
|
3422 |
#: views/b2s/widgets/posts.php:63
|
3423 |
msgid "Number of entries"
|
3424 |
msgstr "Anzahl der Einträge"
|
3427 |
msgid "Number of posts"
|
3428 |
msgstr "Anzahl der Beiträge"
|
3429 |
|
3430 |
+
#: includes/B2S/Ship/Item.php:1379
|
3431 |
msgid "Number of repeats"
|
3432 |
msgstr "Anzahl der Wiederholungen"
|
3433 |
|
3434 |
+
#: includes/Tools.php:539
|
3435 |
msgid "Objects"
|
3436 |
msgstr "Objekte"
|
3437 |
|
3438 |
+
#: includes/B2S/Ship/Item.php:1211
|
3439 |
msgid "Offer"
|
3440 |
msgstr "Angebot"
|
3441 |
|
3442 |
+
#: includes/B2S/Ship/Item.php:514 includes/B2S/Ship/Item.php:634
|
3443 |
+
#: includes/B2S/Ship/Item.php:715 includes/B2S/Ship/Item.php:743
|
3444 |
+
#: includes/B2S/Ship/Item.php:771
|
3445 |
msgid "OG Meta description"
|
3446 |
msgstr "OG Beschreibung"
|
3447 |
|
3448 |
+
#: includes/B2S/Ship/Item.php:513 includes/B2S/Ship/Item.php:633
|
3449 |
+
#: includes/B2S/Ship/Item.php:714 includes/B2S/Ship/Item.php:742
|
3450 |
+
#: includes/B2S/Ship/Item.php:770
|
3451 |
msgid "OG Meta title"
|
3452 |
msgstr "OG Titel"
|
3453 |
|
3454 |
+
#: views/b2s/html/header.php:486
|
3455 |
msgid "OK"
|
3456 |
msgstr "OK"
|
3457 |
|
3458 |
+
#: views/b2s/metrics.php:222 views/b2s/metrics.php:259
|
3459 |
msgid "Ok, I want to get started!"
|
3460 |
msgstr "Verstanden, ich möchte loslegen!"
|
3461 |
|
3462 |
+
#: views/b2s/html/header.php:260
|
3463 |
msgid "Ok, you deserve it"
|
3464 |
msgstr "Okay, ihr habt euch das verdient"
|
3465 |
|
3475 |
msgid "on Blog"
|
3476 |
msgstr "auf dem Blog"
|
3477 |
|
3478 |
+
#: views/b2s/ship.php:60 includes/B2S/Post/Item.php:449
|
3479 |
+
#: includes/B2S/Post/Item.php:599
|
3480 |
msgid "on blog"
|
3481 |
msgstr "auf dem Blog"
|
3482 |
|
3483 |
+
#: views/b2s/metrics.php:127
|
3484 |
msgid "Only active"
|
3485 |
msgstr "Aktive Beiträge"
|
3486 |
|
3489 |
msgid "only posts that have been shared no more than %s times"
|
3490 |
msgstr "nur Beiträge die maximal %s mal geteilt wurden"
|
3491 |
|
3492 |
+
#: views/b2s/premium.php:167
|
3493 |
msgid "Open Graph and Twitter Card Tags"
|
3494 |
msgstr "Open Graph und Twitter Card Tags"
|
3495 |
|
3496 |
+
#: includes/Loader.php:1692 includes/Loader.php:1713 includes/Loader.php:2011
|
3497 |
msgid "or"
|
3498 |
msgstr "oder"
|
3499 |
|
3500 |
+
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:204
|
3501 |
+
#: views/b2s/curation.php:243 views/b2s/dashboard.php:280
|
3502 |
+
#: views/b2s/post.calendar.php:310 views/b2s/ship.php:342
|
3503 |
+
#: views/b2s/ship.php:408 views/b2s/ship.php:454 views/b2s/html/footer.php:44
|
3504 |
#: views/b2s/html/footer.php:75 views/b2s/html/footer.php:93
|
3505 |
#: views/b2s/html/footer.php:111 views/b2s/html/footer.php:140
|
3506 |
#: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
|
3520 |
msgid "or higher"
|
3521 |
msgstr "oder höher"
|
3522 |
|
3523 |
+
#: views/b2s/ship.php:585
|
3524 |
msgid "Overwrite Draft"
|
3525 |
msgstr "Entwurf überschreiben"
|
3526 |
|
3527 |
+
#: includes/B2S/Ship/Item.php:1395
|
3528 |
msgid "own period"
|
3529 |
msgstr "Eigener Zeitraum"
|
3530 |
|
3531 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
3532 |
+
#: includes/B2S/Network/Item.php:718
|
3533 |
msgid "Page"
|
3534 |
msgstr "Seite"
|
3535 |
|
3536 |
+
#: views/b2s/premium.php:71
|
3537 |
msgid "Pages and groups"
|
3538 |
msgstr "Seiten und Gruppen"
|
3539 |
|
3540 |
+
#: views/b2s/network.php:404 views/b2s/ship.php:658 views/prg/login.php:25
|
3541 |
msgid "Password"
|
3542 |
msgstr "Passwort"
|
3543 |
|
3544 |
+
#: includes/B2S/Network/Item.php:716 includes/B2S/Ship/Item.php:364
|
3545 |
#: includes/B2S/Ship/Navbar.php:91
|
3546 |
msgid "Personal"
|
3547 |
msgstr "Privat"
|
3548 |
|
3549 |
+
#: views/b2s/autopost.php:67 views/b2s/settings.php:200
|
3550 |
#: includes/B2S/Settings/Item.php:57
|
3551 |
msgid "Personal Time Zone"
|
3552 |
msgstr "Persönliche Zeitzone"
|
3553 |
|
3554 |
+
#: includes/Tools.php:522
|
3555 |
msgid "Philippines"
|
3556 |
msgstr "Philippinen"
|
3557 |
|
3564 |
msgid "Photo Post"
|
3565 |
msgstr "Bild-Beitrag"
|
3566 |
|
3567 |
+
#: views/b2s/network.php:393 views/b2s/ship.php:647
|
3568 |
msgid "Pinterest has rejected the connection to your blog"
|
3569 |
msgstr "Pinterest hat die Verbindung zu Deinem Blog abgelehnt"
|
3570 |
|
3571 |
+
#: views/b2s/support.php:200
|
3572 |
msgid "Pinterest Rich Pins Validator"
|
3573 |
msgstr "Pinterest Rich Pins Validator"
|
3574 |
|
3575 |
+
#: views/b2s/html/sidebar.php:121
|
3576 |
msgid "Plans & Prices"
|
3577 |
msgstr "Tarife & Preise"
|
3578 |
|
3616 |
"Beiträgen den “no-cache=1” Parameter an die Beitrags-URL, um sicherzustellen,"
|
3617 |
" dass das Netzwerk immer die aktuellen Meta Daten Deines Blogbeitrags zieht."
|
3618 |
|
3619 |
+
#: views/b2s/curation.php:69
|
3620 |
msgid "Please enter a valid link"
|
3621 |
msgstr "Bitte gib einen gültigen Link ein"
|
3622 |
|
3623 |
+
#: includes/B2S/Ship/Item.php:406 includes/B2S/Ship/Item.php:881
|
3624 |
+
#: includes/B2S/Ship/Item.php:1338
|
3625 |
msgid ""
|
3626 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3627 |
"allowed to post identical or substantially similar content to multiple "
|
3632 |
"Accounts oder mehrere identische Updates auf einem Twitter Account oder auch "
|
3633 |
"mehreren Accounts zu posten."
|
3634 |
|
3635 |
+
#: views/b2s/autopost.php:134 views/b2s/autopost.php:170
|
3636 |
msgid ""
|
3637 |
"Please make sure that each WordPress user or author whose posts should be "
|
3638 |
"auto-posted"
|
3664 |
"Posts werden mit dem von Dir gewählten Permalink geteilt, geplante WP-Posts "
|
3665 |
"werden mit dem Posting-ID-Link geteilt."
|
3666 |
|
3667 |
+
#: views/b2s/network.php:640 views/b2s/ship.php:781
|
3668 |
#, php-format
|
3669 |
msgid ""
|
3670 |
"Please make sure to log in with your account which manages your groups and "
|
3675 |
"verwaltet, und <a href=\"%s\" target=\"_blank\">folgen dieser Anleitung, um "
|
3676 |
"alle Deine Gruppen auszuwählen</a>."
|
3677 |
|
3678 |
+
#: views/b2s/network.php:621 views/b2s/ship.php:762
|
3679 |
#, php-format
|
3680 |
msgid ""
|
3681 |
"Please make sure to log in with your account which manages your pages and <a "
|
3685 |
"Deine Seiten verwaltet und <a href=\"%s\" target=\"_blank\">folge diesem "
|
3686 |
"Guide, um alle Deine Seiten auswählen zu können</a>."
|
3687 |
|
3688 |
+
#: views/b2s/network.php:386 views/b2s/ship.php:640
|
3689 |
msgid ""
|
3690 |
"Please make sure to use your original Pinterest login data (email and "
|
3691 |
"password). Social Login via Facebook or Google login data will not work here."
|
3701 |
msgid "Please Note"
|
3702 |
msgstr "Hinweis"
|
3703 |
|
3704 |
+
#: views/b2s/ship.php:796
|
3705 |
+
msgid "Please note:"
|
3706 |
+
msgstr "Hinweis:"
|
3707 |
+
|
3708 |
#: includes/B2S/Settings/Item.php:189
|
3709 |
msgid ""
|
3710 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
3713 |
"Bitte beachte: Facebook unterstützt Bilder mit einer Mindestgröße von "
|
3714 |
"200x200 Pixel and einem Bildgrößenverhältnis von 1:1."
|
3715 |
|
3716 |
+
#: includes/B2S/Ship/Item.php:1371 views/b2s/partials/post-edit-modal.php:56
|
3717 |
msgid ""
|
3718 |
"Please note: Google will shut down Google+ for all private accounts "
|
3719 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3753 |
"Beitrag bereits geteilt wurde, kann es bis zu 7 Tage dauern, bis Twitter "
|
3754 |
"Deine aktuellen Änderungen aktualisiert."
|
3755 |
|
3756 |
+
#: views/b2s/network.php:678 views/b2s/ship.php:734
|
3757 |
msgid ""
|
3758 |
"Please note: In order to connect your Instagram account to Blog2Social, "
|
3759 |
"please ensure the following:"
|
3761 |
"Hinweis: Damit Du Dein Instagram-Konto mit Blog2Social verbinden kannst, "
|
3762 |
"stelle bitte folgendes sicher:"
|
3763 |
|
3764 |
+
#: views/b2s/metrics.php:256
|
3765 |
msgid ""
|
3766 |
"Please note: The metrics for the social media posts are updated every 24 "
|
3767 |
"hours. The social media posts are monitored for 30 days. After 30 days, the "
|
3773 |
"Tagen wird der letzte Stand dauerhaft festgehalten und ist jederzeit im "
|
3774 |
"Archiv abrufbar."
|
3775 |
|
3776 |
+
#: includes/B2S/Ship/Item.php:567
|
3777 |
msgid ""
|
3778 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3779 |
"Changes may not be immediately visible on Twitter."
|
3793 |
"Bilder werden auf ein quadratisches Maß übertragen. Twitter unterstützt die "
|
3794 |
"Bildformate JPG, PNG, WEBP und GIF. "
|
3795 |
|
3796 |
+
#: includes/B2S/Ship/Item.php:410
|
3797 |
msgid ""
|
3798 |
"Please note: XING allows identical posts to be published only once within a "
|
3799 |
"group and no more than three times across different groups."
|
3802 |
"einmal innerhalb einer Gruppe und nicht mehr als dreimal in verschiedenen "
|
3803 |
"Gruppen."
|
3804 |
|
3805 |
+
#: includes/B2S/Ship/Item.php:707
|
3806 |
msgid ""
|
3807 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3808 |
"days. Changes may not be immediately visible on XING."
|
3811 |
"Tage. Änderungen werden daher möglicherweise nicht sofort auf XING "
|
3812 |
"dargestellt."
|
3813 |
|
3814 |
+
#: views/b2s/autopost.php:101
|
3815 |
#, php-format
|
3816 |
msgid ""
|
3817 |
"Please note: You can also set up your own \"best times\". You will learn how "
|
3821 |
"Hinweis: Du kannst auch Deine eigenen “besten Zeiten” einstellen. Wie das "
|
3822 |
"geht, lernst Du in diesem <a href=\"%s\" target=\"_blank\">Guide</a>."
|
3823 |
|
3824 |
+
#: includes/B2S/Ship/Save.php:453
|
3825 |
msgid ""
|
3826 |
"Please note: You post has to be marked as public to be posted in a group."
|
3827 |
msgstr ""
|
3828 |
"Um in eine Gruppe zu teilen, muss Dein Beitrag auf Öffentlich gestellt "
|
3829 |
"werden."
|
3830 |
|
3831 |
+
#: includes/B2S/Ship/Item.php:1367 views/b2s/partials/post-edit-modal.php:52
|
3832 |
msgid ""
|
3833 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3834 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
3872 |
msgstr ""
|
3873 |
"Bitte autorisieren Sie Ihr Konto bei Blog2Social und versuchen Sie es erneut."
|
3874 |
|
3875 |
+
#: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
|
3876 |
msgid "Please see"
|
3877 |
msgstr "siehe"
|
3878 |
|
3888 |
msgid "Please select a social media network"
|
3889 |
msgstr "Bitte wählen Sie ein Netzwerk aus"
|
3890 |
|
3891 |
+
#: views/b2s/network.php:394 views/b2s/ship.php:648
|
3892 |
msgid "Please select your correct server location and connect again."
|
3893 |
msgstr ""
|
3894 |
"Bitte wähle Deinen richtigen Serverstandort aus und verbinde Dich erneut."
|
3895 |
|
3896 |
+
#: includes/B2S/Ship/Save.php:458
|
3897 |
msgid "Please share your post now"
|
3898 |
msgstr "Bitte teile Deinen Beitrag jetzt."
|
3899 |
|
3900 |
+
#: includes/B2S/Network/Item.php:265 includes/B2S/Network/Item.php:344
|
3901 |
+
#: includes/B2S/Network/Item.php:424 includes/B2S/Ship/Image.php:31
|
3902 |
msgid "please upgrade"
|
3903 |
msgstr "Bitte upgraden"
|
3904 |
|
3912 |
msgid "Plugin Warnings:"
|
3913 |
msgstr "Plugin Warnungen:"
|
3914 |
|
3915 |
+
#: includes/Tools.php:504
|
3916 |
msgid "Poland"
|
3917 |
msgstr "Polen"
|
3918 |
|
3919 |
+
#: includes/Tools.php:499 includes/Tools.php:513
|
3920 |
msgid "Portugal"
|
3921 |
msgstr "Portugal"
|
3922 |
|
3941 |
msgid "Post every"
|
3942 |
msgstr "Poste alle"
|
3943 |
|
3944 |
+
#: views/b2s/dashboard.php:93 views/b2s/post.calendar.php:123
|
3945 |
+
#: views/b2s/post.sched.php:141 views/b2s/repost.php:126 views/b2s/ship.php:541
|
3946 |
msgid "Post Format"
|
3947 |
msgstr "Postformat"
|
3948 |
|
3949 |
+
#: includes/B2S/Post/Item.php:815 includes/B2S/Ship/Item.php:373
|
3950 |
msgid "post format"
|
3951 |
msgstr "Postformat"
|
3952 |
|
3953 |
+
#: views/b2s/metrics.php:109
|
3954 |
msgid "Post Interactions"
|
3955 |
msgstr "Beitrags-Interaktionen"
|
3956 |
|
3957 |
+
#: views/b2s/html/header.php:149
|
3958 |
msgid "Post is published successfully on your blog!"
|
3959 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog veröffentlicht!"
|
3960 |
|
3961 |
+
#: views/b2s/html/sidebar.php:67
|
3962 |
+
msgid "Post Management"
|
3963 |
+
msgstr "Post-Verwaltung"
|
3964 |
+
|
3965 |
+
#: views/b2s/metrics.php:123
|
3966 |
msgid "Post Metrics"
|
3967 |
msgstr "Beitrags-Kennzahlen"
|
3968 |
|
3974 |
"Veröffentliche Posts auf LinkedIn-Seiten, XING-Seiten und -Gruppen sowie "
|
3975 |
"Facebook-Seiten und -Gruppen"
|
3976 |
|
3977 |
+
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:191
|
3978 |
+
#: views/b2s/dashboard.php:267 views/b2s/post.calendar.php:297
|
3979 |
+
#: views/b2s/ship.php:329 views/b2s/ship.php:395 views/b2s/ship.php:441
|
3980 |
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
|
3981 |
#: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
|
3982 |
#: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
|
3983 |
#: views/b2s/html/footer.php:452 views/b2s/html/footer.php:545
|
3984 |
+
#: views/b2s/html/header.php:371
|
3985 |
msgid "Post on pages and groups"
|
3986 |
msgstr "Poste auf Seiten und in Gruppen"
|
3987 |
|
3988 |
+
#: views/b2s/settings.php:56
|
3989 |
msgid "Post Templates"
|
3990 |
msgstr "Beitragsvorlagen"
|
3991 |
|
3993 |
msgid "Post Types"
|
3994 |
msgstr "Posttypen"
|
3995 |
|
3996 |
+
#: views/b2s/html/header.php:147
|
3997 |
msgid "Post was scheduled successfully on your blog!"
|
3998 |
msgstr "Der Beitrag wurde erfolgreich in Deinem Blog vorgeplant!"
|
3999 |
|
4002 |
msgid "Posting to social media pages and groups in Facebook"
|
4003 |
msgstr "Veröffentlichung auf Social Media Seiten und Gruppen in Facebook"
|
4004 |
|
4005 |
+
#: views/b2s/metrics.php:138 includes/B2S/RePost/Item.php:130
|
4006 |
msgid "Posts"
|
4007 |
msgstr "Posts"
|
4008 |
|
4046 |
"Presseportalen und Nachrichtenseiten für die Veröffentlichung Deines "
|
4047 |
"Beitrags auswählen."
|
4048 |
|
4049 |
+
#: includes/Loader.php:1034 includes/Loader.php:1117
|
4050 |
msgid "PR-Service"
|
4051 |
msgstr "PR-Service"
|
4052 |
|
4053 |
+
#: includes/Loader.php:1038 includes/Loader.php:1133
|
4054 |
msgid "PREMIUM"
|
4055 |
msgstr "PREMIUM"
|
4056 |
|
4058 |
msgid "Premium"
|
4059 |
msgstr "Premium"
|
4060 |
|
4061 |
+
#: views/b2s/premium.php:176
|
4062 |
msgid "Premium support"
|
4063 |
msgstr "Premium Support"
|
4064 |
|
4066 |
msgid "Press"
|
4067 |
msgstr "Presse"
|
4068 |
|
4069 |
+
#: includes/B2S/Network/Item.php:997 includes/B2S/Network/Item.php:1049
|
4070 |
+
#: includes/B2S/Network/Item.php:1118 includes/B2S/Network/Item.php:1170
|
4071 |
+
#: includes/B2S/Network/Item.php:1204 includes/B2S/Network/Item.php:1255
|
4072 |
+
#: includes/B2S/Network/Item.php:1285 includes/B2S/Network/Item.php:1339
|
4073 |
+
#: includes/B2S/Network/Item.php:1358 includes/B2S/Network/Item.php:1392
|
4074 |
+
#: includes/B2S/Network/Item.php:1408 includes/B2S/Network/Item.php:1429
|
4075 |
+
#: includes/B2S/Network/Item.php:1445 includes/B2S/Network/Item.php:1461
|
4076 |
+
#: includes/B2S/Network/Item.php:1480 includes/B2S/Network/Item.php:1496
|
4077 |
+
#: includes/B2S/Network/Item.php:1541 includes/B2S/Network/Item.php:1557
|
4078 |
+
#: includes/B2S/Network/Item.php:1575
|
4079 |
msgid "Preview"
|
4080 |
msgstr "Vorschau"
|
4081 |
|
4082 |
+
#: views/b2s/settings.php:123
|
4083 |
msgid ""
|
4084 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
4085 |
"website/ blog."
|
4091 |
msgid "Privacy Policy"
|
4092 |
msgstr "Datenschutzerklärung"
|
4093 |
|
4094 |
+
#: views/b2s/network.php:42 includes/B2S/Network/Item.php:190
|
4095 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Network/Item.php:211
|
4096 |
+
#: includes/B2S/Ship/Image.php:96 includes/B2S/Ship/Item.php:543
|
4097 |
+
#: includes/B2S/Ship/Item.php:604 includes/B2S/Ship/Item.php:663
|
4098 |
+
#: includes/B2S/Ship/Item.php:870 includes/B2S/Ship/Item.php:924
|
4099 |
+
#: includes/B2S/Ship/Item.php:976 includes/B2S/Ship/Portale.php:37
|
4100 |
+
#: includes/B2S/Ship/Portale.php:48 includes/B2S/Ship/Portale.php:65
|
4101 |
msgid "PRO"
|
4102 |
msgstr "PRO"
|
4103 |
|
4110 |
msgstr "Produkt"
|
4111 |
|
4112 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
4113 |
+
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:716
|
4114 |
msgid "Profile"
|
4115 |
msgstr "Profil"
|
4116 |
|
4117 |
+
#: views/b2s/ship.php:130
|
4118 |
msgid "Profiles | Pages | Groups"
|
4119 |
msgstr "Profile | Seiten | Gruppen"
|
4120 |
|
4134 |
msgid "publish with a delay of"
|
4135 |
msgstr "Veröffentliche mit einer Verzögerung von"
|
4136 |
|
4137 |
+
#: views/b2s/curation.php:137 views/b2s/post.calendar.php:50
|
4138 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:835 includes/B2S/Post/Filter.php:59
|
4139 |
+
#: includes/B2S/Post/Item.php:393 includes/B2S/Ship/Save.php:466
|
4140 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
4141 |
#: views/b2s/widgets/calendar.php:44
|
4142 |
msgid "published"
|
4143 |
msgstr "veröffentlicht"
|
4144 |
|
4145 |
+
#: views/b2s/metrics.php:137
|
4146 |
msgid "Published On"
|
4147 |
msgstr "Veröffentlicht am"
|
4148 |
|
4149 |
+
#: views/b2s/metrics.php:93
|
4150 |
msgid "Published Posts"
|
4151 |
msgstr "Veröffentlichte Beiträge"
|
4152 |
|
4158 |
msgid "Queue"
|
4159 |
msgstr "Warteschlange"
|
4160 |
|
4161 |
+
#: includes/Notice.php:19 views/b2s/html/sidebar.php:139
|
4162 |
msgid "RATE BLOG2SOCIAL"
|
4163 |
msgstr "Blog2Social jetzt bewerten"
|
4164 |
|
4165 |
+
#: views/b2s/html/header.php:255
|
4166 |
msgid "RATE IT!"
|
4167 |
msgstr "BEWERTE ES!"
|
4168 |
|
4169 |
+
#: includes/Notice.php:17 views/b2s/html/sidebar.php:136
|
4170 |
msgid "Rate it!"
|
4171 |
msgstr "Bewerte uns!"
|
4172 |
|
4173 |
+
#: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
|
4174 |
msgid "Re-Share"
|
4175 |
msgstr "Wiederholt geteilt"
|
4176 |
|
4177 |
+
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:860
|
4178 |
msgid "re-share"
|
4179 |
msgstr "erneut teilen"
|
4180 |
|
4181 |
+
#: includes/Loader.php:917 views/b2s/settings.php:47
|
4182 |
+
#: views/b2s/html/sidebar.php:86
|
4183 |
msgid "Re-Share Posts"
|
4184 |
msgstr "Beiträge wiederholt teilen"
|
4185 |
|
4186 |
+
#: views/b2s/ship.php:319
|
4187 |
msgid "Re-share this Post"
|
4188 |
msgstr "Diesen Beitrag nochmal teilen"
|
4189 |
|
4190 |
+
#: views/b2s/curation.php:130 views/b2s/ship.php:277 views/b2s/ship.php:279
|
4191 |
+
#: includes/B2S/Metrics/Item.php:244 includes/B2S/Post/Item.php:473
|
4192 |
msgid "Re-share this post"
|
4193 |
msgstr "Diesen Beitrag nochmal teilen"
|
4194 |
|
4198 |
"Teile Deinen Blog-Content automatisiert und wiederholt auf Deinen Social-"
|
4199 |
"Media-Kanälen."
|
4200 |
|
4201 |
+
#: views/b2s/metrics.php:245
|
4202 |
msgid ""
|
4203 |
"Re-Shares/ Re-Tweets: A count of how many times the post has been reshared "
|
4204 |
"or retweeted."
|
4206 |
"Re-Shares/ Re-Tweets: Eine Aufzählung, wie oft der Beitrag von einem "
|
4207 |
"Follower erneut geteilt oder retweetet wurde."
|
4208 |
|
4209 |
+
#: includes/B2S/Ship/Item.php:410
|
4210 |
msgid "Read more"
|
4211 |
msgstr "Weiterlesen"
|
4212 |
|
4214 |
msgid "Rebrandly"
|
4215 |
msgstr "Rebrandly"
|
4216 |
|
4217 |
+
#: includes/Tools.php:533
|
4218 |
msgid "Recently Used"
|
4219 |
msgstr "Zuletzt verwendet"
|
4220 |
|
4221 |
+
#: includes/B2S/Network/Item.php:935 includes/B2S/Network/Item.php:971
|
4222 |
msgid "recommended length"
|
4223 |
msgstr "Empfohlene Länge"
|
4224 |
|
4225 |
+
#: views/b2s/ship.php:192
|
4226 |
msgid "refresh authorization"
|
4227 |
msgstr "Autorisierung aktualisieren"
|
4228 |
|
4230 |
msgid "Register here to open your PR-Gateway account."
|
4231 |
msgstr "Registriere Dich hier, um ein PR-Gateway-Konto zu eröffnen."
|
4232 |
|
4233 |
+
#: views/b2s/premium.php:177
|
4234 |
msgid "Regular updates and priority support per e-mail and phone."
|
4235 |
msgstr "Regelmäßige Updates und bevorzugter Support per E-Mail und Telefon."
|
4236 |
|
4237 |
+
#: views/b2s/support.php:156
|
4238 |
msgid "reload"
|
4239 |
msgstr "neu laden"
|
4240 |
|
4241 |
+
#: includes/B2S/Ship/Item.php:1374
|
4242 |
msgid "Repeats"
|
4243 |
msgstr "Wiederholen"
|
4244 |
|
4245 |
+
#: includes/B2S/Ship/Item.php:1381
|
4246 |
msgid "Repeats every (days)"
|
4247 |
msgstr "Wiederholt sich alle X Tage"
|
4248 |
|
4249 |
+
#: views/b2s/support.php:114
|
4250 |
msgid "Reporting"
|
4251 |
msgstr "Reporting"
|
4252 |
|
4253 |
+
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:200
|
4254 |
+
#: views/b2s/dashboard.php:276 views/b2s/post.calendar.php:306
|
4255 |
+
#: views/b2s/ship.php:338 views/b2s/ship.php:404 views/b2s/ship.php:450
|
4256 |
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
|
4257 |
#: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
|
4258 |
#: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
|
4272 |
"Reporting und Kalender: Behalte den Überblick über Deine veröffentlichten "
|
4273 |
"und geplanten Social Media Beiträge."
|
4274 |
|
4275 |
+
#: views/b2s/html/header.php:374
|
4276 |
msgid "Reporting with links to all published social media posts"
|
4277 |
msgstr "Reporting mit Link zu allen veröffentlichten Social Media Posts"
|
4278 |
|
4281 |
msgid "Reporting with links to already published posts"
|
4282 |
msgstr "Reporting mit Links zu bereits veröffentlichten Beiträgen"
|
4283 |
|
4284 |
+
#: includes/B2S/Ship/Item.php:1212
|
4285 |
msgid "Request"
|
4286 |
msgstr "Anfrage"
|
4287 |
|
4288 |
+
#: includes/B2S/Ship/Item.php:1105
|
4289 |
msgid "required"
|
4290 |
msgstr "erforderlich"
|
4291 |
|
4292 |
+
#: views/b2s/ship.php:191
|
4293 |
msgid "requires image"
|
4294 |
msgstr "Bild benötigt"
|
4295 |
|
4310 |
msgid "resolve conflict"
|
4311 |
msgstr "Konflikt beheben"
|
4312 |
|
4313 |
+
#: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
|
4314 |
+
#: includes/B2S/Ship/Save.php:476
|
4315 |
msgid "Retweet"
|
4316 |
msgstr "Retweet"
|
4317 |
|
4327 |
"verbreiten. Du kannst nun mehrere Retweets für einen Original-Tweet direkt "
|
4328 |
"aus Deinem WordPress heraus planen."
|
4329 |
|
4330 |
+
#: includes/Tools.php:506
|
4331 |
msgid "Romania"
|
4332 |
msgstr "Rumänien"
|
4333 |
|
4334 |
+
#: views/b2s/premium.php:119
|
4335 |
msgid "RSS import & auto-post"
|
4336 |
msgstr "RSS-Import & Auto-Poster"
|
4337 |
|
4338 |
+
#: includes/Tools.php:497
|
4339 |
msgid "Russia"
|
4340 |
msgstr "Russland"
|
4341 |
|
4342 |
+
#: views/b2s/support.php:126
|
4343 |
msgid "Sales Support"
|
4344 |
msgstr "Kontaktiere unser Vertriebsteam"
|
4345 |
|
4346 |
+
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:1448
|
4347 |
msgid "Sat"
|
4348 |
msgstr "Sa"
|
4349 |
|
4355 |
msgid "Save"
|
4356 |
msgstr " Speichern"
|
4357 |
|
4358 |
+
#: views/b2s/network.php:251 views/b2s/settings.php:71
|
4359 |
+
#: includes/B2S/Network/Item.php:632 includes/B2S/Settings/Item.php:146
|
4360 |
msgid "save"
|
4361 |
msgstr "speichern"
|
4362 |
|
4363 |
+
#: views/b2s/html/header.php:656
|
4364 |
+
msgid "Save a lot of time for your social media tasks!"
|
4365 |
+
msgstr ""
|
4366 |
+
"Gib Deinen Social-Media-Aufgaben eine Routine und spare so eine Menge Zeit!"
|
4367 |
+
|
4368 |
+
#: includes/B2S/Ship/Item.php:1487
|
4369 |
msgid "Save as best time for this network"
|
4370 |
msgstr "Diese Zeit als \"Beste Zeit\" für dieses Netzwerk speichern"
|
4371 |
|
4373 |
msgid "Save As Draft"
|
4374 |
msgstr "als Entwurf speichern"
|
4375 |
|
4376 |
+
#: views/b2s/ship.php:246 views/b2s/ship.php:250
|
4377 |
#: includes/B2S/Curation/View.php:110
|
4378 |
msgid "Save as Draft"
|
4379 |
msgstr "als Entwurf speichern"
|
4380 |
|
4381 |
+
#: views/b2s/curation.draft.php:18
|
4382 |
msgid ""
|
4383 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
4384 |
"want."
|
4386 |
"Speicher beim Surfen Links aus Deinem Browser und teile sie, wann immer Du "
|
4387 |
"möchtest"
|
4388 |
|
4389 |
+
#: views/b2s/ship.php:181 views/b2s/ship.php:353
|
4390 |
msgid "Save network selection"
|
4391 |
msgstr "Netzwerkauswahl speichern"
|
4392 |
|
4393 |
+
#: views/b2s/autopost.php:36 views/b2s/settings.php:33
|
4394 |
msgid "save..."
|
4395 |
msgstr "speichere Daten..."
|
4396 |
|
4397 |
+
#: includes/B2S/Post/Item.php:555
|
4398 |
msgid "saved"
|
4399 |
msgstr "gespeichert"
|
4400 |
|
4401 |
+
#: views/b2s/html/header.php:161
|
4402 |
msgid "Saved as draft"
|
4403 |
msgstr "Als Entwurf gespeichert"
|
4404 |
|
4405 |
+
#: views/b2s/curation.php:53
|
4406 |
msgid "Saved as draft."
|
4407 |
msgstr "Als Entwurf gespeichert."
|
4408 |
|
4409 |
+
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:197
|
4410 |
+
#: views/b2s/dashboard.php:273 views/b2s/post.calendar.php:303
|
4411 |
+
#: views/b2s/ship.php:335 views/b2s/ship.php:401 views/b2s/ship.php:447
|
4412 |
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
|
4413 |
#: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
|
4414 |
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
|
4416 |
msgid "Schedule and re-share old posts"
|
4417 |
msgstr "Plane und teile alte Beiträge"
|
4418 |
|
4419 |
+
#: views/b2s/premium.php:138
|
4420 |
msgid ""
|
4421 |
"Schedule and share curated content from any source on your preferred "
|
4422 |
"networks."
|
4424 |
"Plane und teile kuratierte Inhalte aus beliebigen Quellen in Deinen "
|
4425 |
"bevorzugten Netzwerken."
|
4426 |
|
4427 |
+
#: views/b2s/premium.php:129
|
4428 |
msgid ""
|
4429 |
"Schedule and share your blog posts as Google My Business posts to update "
|
4430 |
"your business listing and to add fresh content for your company."
|
4432 |
" Plane und teile Deine Blogartikel als Google My Business - Beiträge und "
|
4433 |
"verleihe Deinem Unternehmen mit aktullen News mehr Sichtbarkeit."
|
4434 |
|
4435 |
+
#: views/b2s/premium.php:137
|
4436 |
msgid "Schedule curated content"
|
4437 |
msgstr "Kuratierte Inhalte planen"
|
4438 |
|
4439 |
+
#: views/b2s/curation.php:177 views/b2s/dashboard.php:253
|
4440 |
+
#: views/b2s/post.calendar.php:283 views/b2s/ship.php:427
|
4441 |
+
#: includes/B2S/Ship/Item.php:1329
|
4442 |
msgid "Schedule for specific dates"
|
4443 |
msgstr "Für bestimmte Termine planen"
|
4444 |
|
4445 |
+
#: views/b2s/curation.php:180 views/b2s/dashboard.php:256
|
4446 |
+
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:430
|
4447 |
msgid "Schedule post recurrently"
|
4448 |
msgstr "Beitrag mehrfach planen"
|
4449 |
|
4450 |
+
#: includes/B2S/Ship/Item.php:1331
|
4451 |
msgid "Schedule Recurrent Post"
|
4452 |
msgstr "regelmäßig Planen"
|
4453 |
|
4454 |
+
#: views/b2s/ship.php:381
|
4455 |
msgid "Schedule your post"
|
4456 |
msgstr "Beitrag planen"
|
4457 |
|
4458 |
+
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:196
|
4459 |
+
#: views/b2s/dashboard.php:272 views/b2s/post.calendar.php:302
|
4460 |
+
#: views/b2s/ship.php:334 views/b2s/ship.php:400 views/b2s/ship.php:446
|
4461 |
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
|
4462 |
#: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
|
4463 |
#: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
|
4467 |
"Veröffentlichungen zur besten Zeit pro Netzwerk planen: einmalig, mehrmalig "
|
4468 |
"oder nach einem regelmäßigen Muster"
|
4469 |
|
4470 |
+
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:194
|
4471 |
+
#: views/b2s/dashboard.php:270 views/b2s/post.calendar.php:300
|
4472 |
+
#: views/b2s/ship.php:332 views/b2s/ship.php:398 views/b2s/ship.php:444
|
4473 |
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
|
4474 |
#: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
|
4475 |
#: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
|
4485 |
"Plane Deine Beiträge zu den besten Zeiten in jedem Netzwerk: einmal, "
|
4486 |
"mehrmals oder wiederkehrend"
|
4487 |
|
4488 |
+
#: views/b2s/post.calendar.php:51 views/b2s/ship.php:18
|
4489 |
+
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:393
|
4490 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
4491 |
#: views/b2s/widgets/calendar.php:45
|
4492 |
msgid "scheduled"
|
4496 |
msgid "Scheduled Auto-Posting"
|
4497 |
msgstr "Scheduled Auto-Posting"
|
4498 |
|
4499 |
+
#: includes/B2S/Post/Item.php:981
|
4500 |
#, php-format
|
4501 |
msgid "scheduled by %s"
|
4502 |
msgstr "von %s vorgeplant "
|
4503 |
|
4504 |
+
#: includes/B2S/Ship/Save.php:477
|
4505 |
msgid "scheduled on"
|
4506 |
msgstr "geplant für"
|
4507 |
|
4509 |
msgid "scheduled post(s)"
|
4510 |
msgstr "geplante Beiträge"
|
4511 |
|
4512 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:80
|
4513 |
+
#: views/b2s/widgets/posts.php:18
|
4514 |
msgid "Scheduled Posts"
|
4515 |
msgstr "geplante Beiträge"
|
4516 |
|
4518 |
msgid "scheduled posts"
|
4519 |
msgstr "geplante Beiträge"
|
4520 |
|
4521 |
+
#: includes/B2S/Post/Item.php:500 includes/B2S/Post/Item.php:620
|
4522 |
#: views/b2s/widgets/activity.php:10
|
4523 |
msgid "scheduled social media posts"
|
4524 |
msgstr "geplante Beiträge"
|
4525 |
|
4526 |
+
#: views/b2s/support.php:113
|
4527 |
msgid "Scheduling and Best Time Manager"
|
4528 |
msgstr "Veröffentlichungen planen und Beste Zeiten Manager"
|
4529 |
|
4530 |
+
#: views/b2s/ship.php:68
|
4531 |
msgid "scroll to bottom"
|
4532 |
msgstr "zum Seitenende"
|
4533 |
|
4534 |
+
#: views/b2s/ship.php:244
|
4535 |
msgid "scroll to top"
|
4536 |
msgstr "zum Seitenanfang"
|
4537 |
|
4538 |
+
#: includes/Tools.php:532
|
4539 |
msgid "Search"
|
4540 |
msgstr "Suche"
|
4541 |
|
4543 |
msgid "Search Title"
|
4544 |
msgstr "Suche nach Titel"
|
4545 |
|
4546 |
+
#: views/b2s/support.php:116
|
4547 |
msgid "Security"
|
4548 |
msgstr "Sicherheit"
|
4549 |
|
4551 |
msgid "See all publications for your message live on "
|
4552 |
msgstr "Betrachte alle Veröffentlichungen für Deine Mitteilung live auf"
|
4553 |
|
4554 |
+
#: views/b2s/premium.php:90
|
4555 |
msgid ""
|
4556 |
"See your entire schedule at a glance, with team view and network filter. "
|
4557 |
"Edit scheduled posts or add new social media posts per drag & drop."
|
4560 |
"Netzwerkfilter. Bearbeite geplante Beiträge oder füge neue Social-Media-"
|
4561 |
"Beiträge per Drag & Drop hinzu."
|
4562 |
|
4563 |
+
#: views/b2s/dashboard.php:169 views/b2s/dashboard.php:182
|
4564 |
+
#: views/b2s/post.calendar.php:199 views/b2s/post.calendar.php:212
|
4565 |
msgid "select"
|
4566 |
msgstr "auswählen"
|
4567 |
|
4568 |
+
#: views/b2s/dashboard.php:200 views/b2s/post.calendar.php:230
|
4569 |
msgid "Select a post"
|
4570 |
msgstr "Wähle einen Beitrag aus"
|
4571 |
|
4572 |
+
#: views/b2s/premium.php:42
|
4573 |
msgid "Select a user"
|
4574 |
msgstr "Blog-Nutzer auswählen"
|
4575 |
|
4577 |
msgid "Select all"
|
4578 |
msgstr "Alle auswählen"
|
4579 |
|
4580 |
+
#: includes/B2S/Post/Item.php:757 includes/B2S/Post/Item.php:889
|
4581 |
+
#: includes/B2S/Post/Item.php:961 includes/B2S/RePost/Item.php:135
|
4582 |
msgid "select all"
|
4583 |
msgstr "alle auswählen"
|
4584 |
|
4590 |
msgid "Select Image"
|
4591 |
msgstr "Bild auswählen"
|
4592 |
|
4593 |
+
#: views/b2s/curation.php:308 views/b2s/repost.php:203
|
4594 |
msgid "Select image"
|
4595 |
msgstr "Bild auswählen"
|
4596 |
|
4597 |
+
#: views/b2s/dashboard.php:138 views/b2s/post.calendar.php:168
|
4598 |
+
#: views/b2s/post.sched.php:122 views/b2s/repost.php:171 views/b2s/ship.php:467
|
4599 |
msgid "Select image for"
|
4600 |
msgstr "Wähle Bild aus für"
|
4601 |
|
4602 |
+
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:199
|
4603 |
+
#: views/b2s/dashboard.php:275 views/b2s/post.calendar.php:305
|
4604 |
+
#: views/b2s/ship.php:337 views/b2s/ship.php:403 views/b2s/ship.php:449
|
4605 |
#: views/b2s/html/footer.php:39 views/b2s/html/footer.php:70
|
4606 |
#: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
|
4607 |
#: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
|
4611 |
msgstr ""
|
4612 |
"Individuelle Bilder für Deine Social Media Posts pro Netzwerk auswählen"
|
4613 |
|
4614 |
+
#: views/b2s/premium.php:150
|
4615 |
msgid ""
|
4616 |
"Select individual images per post or network and select any image from your "
|
4617 |
"media library to create more variations for your posts."
|
4620 |
"Bild aus Deiner Mediathek aus, um weitere Variationen für Deine Beiträge zu "
|
4621 |
"erstellen."
|
4622 |
|
4623 |
+
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:198
|
4624 |
+
#: views/b2s/dashboard.php:274 views/b2s/post.calendar.php:304
|
4625 |
+
#: views/b2s/ship.php:336 views/b2s/ship.php:402 views/b2s/ship.php:448
|
4626 |
#: views/b2s/html/footer.php:38 views/b2s/html/footer.php:69
|
4627 |
#: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
|
4628 |
#: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
|
4640 |
"Wähle zwischen Link-Beitrag oder Bild-Beitrag, um Dein bevorzugtes "
|
4641 |
"Postformat für Twitter, LinkedIn und Facebook zu definieren."
|
4642 |
|
4643 |
+
#: views/b2s/premium.php:159
|
4644 |
msgid ""
|
4645 |
"Select link post or image post per network to choose the optimal format for "
|
4646 |
"your post."
|
4653 |
msgid "Select network collection:"
|
4654 |
msgstr "Netzwerk-Gruppierung auswählen:"
|
4655 |
|
4656 |
+
#: views/b2s/autopost.php:56 views/b2s/settings.php:147
|
4657 |
#: includes/B2S/Ship/Image.php:100
|
4658 |
msgid "Select or upload an image from media gallery"
|
4659 |
msgstr "Bild aus Mediathek auswählen oder hochladen"
|
4660 |
|
4661 |
+
#: views/b2s/network.php:374 views/b2s/network.php:429 views/b2s/ship.php:628
|
4662 |
+
#: views/b2s/ship.php:683
|
4663 |
msgid "Select Pinboard"
|
4664 |
msgstr "Pinnwand auswählen"
|
4665 |
|
4690 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
4691 |
msgstr "Importierte Beiträge direkt veröffentlichen oder mit einer Verzögerung"
|
4692 |
|
4693 |
+
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:81
|
4694 |
+
#: views/b2s/repost.php:189 includes/B2S/AutoPost/Item.php:200
|
4695 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
4696 |
msgid "Select Twitter profile:"
|
4697 |
msgstr "Wählen Sie ein Twitter-Profil aus:"
|
4709 |
msgid "selected date"
|
4710 |
msgstr "ausgewähltes Datum"
|
4711 |
|
4712 |
+
#: views/b2s/network.php:415 views/b2s/ship.php:669
|
4713 |
msgid "Server-Location"
|
4714 |
msgstr "Serverstandort"
|
4715 |
|
4739 |
"und Cutsom Post Types automatisch auf Deinen Social-Media-Kanälen zu teilen."
|
4740 |
|
4741 |
#: includes/Loader.php:867 includes/Loader.php:1032 includes/Loader.php:1032
|
4742 |
+
#: includes/Loader.php:1109 includes/B2S/RePost/Item.php:25
|
4743 |
+
#: views/b2s/html/sidebar.php:109
|
4744 |
msgid "Settings"
|
4745 |
msgstr "Einstellungen"
|
4746 |
|
4747 |
+
#: views/b2s/ship.php:245 views/b2s/ship.php:251
|
4748 |
#: includes/B2S/Curation/View.php:113
|
4749 |
msgid "Share"
|
4750 |
msgstr "Teilen"
|
4751 |
|
4752 |
+
#: includes/B2S/Post/Item.php:923 includes/B2S/Ship/Save.php:457
|
4753 |
msgid "share"
|
4754 |
msgstr "teilen"
|
4755 |
|
4756 |
+
#: views/b2s/curation.php:229
|
4757 |
msgid "Share image posts:"
|
4758 |
msgstr "Teile Bild-Beiträge:"
|
4759 |
|
4760 |
+
#: views/b2s/curation.php:232
|
4761 |
msgid ""
|
4762 |
"Share images to get them into the Google image search to further increase "
|
4763 |
"your outreach and traffic from search engines."
|
4775 |
"Feeds und Plugins importierst, können automatisch auf Deinen Social Media-"
|
4776 |
"Kanälen geteilt werden."
|
4777 |
|
4778 |
+
#: views/b2s/premium.php:120
|
4779 |
msgid ""
|
4780 |
"Share imported RSS feeds automatically to get more variations for your "
|
4781 |
"content."
|
4783 |
"Teile importierte RSS-Feeds automatisch, um mehr Variationen für Deine "
|
4784 |
"Inhalte zu erhalten."
|
4785 |
|
4786 |
+
#: views/b2s/curation.php:21 views/b2s/html/post.navbar.php:14
|
4787 |
+
msgid "Share New Image Post"
|
4788 |
+
msgstr "Neuen Bild-Post teilen"
|
4789 |
+
|
4790 |
+
#: views/b2s/curation.php:19 views/b2s/html/post.navbar.php:12
|
4791 |
+
msgid "Share New Link Post"
|
4792 |
+
msgstr "Neuen Link-Post teilen"
|
4793 |
+
|
4794 |
+
#: views/b2s/ship.php:281
|
4795 |
msgid "Share new post on Social Media"
|
4796 |
msgstr "Teile einen neuen Beitrag auf Social Media"
|
4797 |
|
4798 |
+
#: views/b2s/curation.php:20 views/b2s/html/post.navbar.php:13
|
4799 |
+
msgid "Share New Text Post"
|
4800 |
+
msgstr "Neuen Text-Post teilen"
|
4801 |
+
|
4802 |
+
#: views/b2s/curation.php:22 views/b2s/html/post.navbar.php:15
|
4803 |
+
msgid "Share New Video Post"
|
4804 |
+
msgstr "Neuen Video-Post teilen"
|
4805 |
+
|
4806 |
+
#: includes/B2S/Ship/Item.php:1326
|
4807 |
msgid "Share Now"
|
4808 |
msgstr "Sofort teilen"
|
4809 |
|
4811 |
msgid "share oldest posts first"
|
4812 |
msgstr "älteste Beiträge zuerst teilen"
|
4813 |
|
4814 |
+
#: views/b2s/html/header.php:372
|
4815 |
msgid "Share on multiple accounts per network"
|
4816 |
msgstr "Teile auf mehreren Netzwerk-Konten "
|
4817 |
|
4818 |
+
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:192
|
4819 |
+
#: views/b2s/dashboard.php:268 views/b2s/post.calendar.php:298
|
4820 |
+
#: views/b2s/ship.php:330 views/b2s/ship.php:396 views/b2s/ship.php:442
|
4821 |
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
|
4822 |
#: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
|
4823 |
#: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
|
4825 |
msgid "Share on multiple profiles, pages and groups"
|
4826 |
msgstr "Auf mehreren Profilen, Seiten und Gruppen teilen"
|
4827 |
|
4828 |
+
#: includes/B2S/Post/Item.php:443 includes/B2S/Post/Item.php:547
|
4829 |
+
#: includes/B2S/Post/Item.php:549 includes/B2S/Post/Item.php:570
|
4830 |
+
#: includes/B2S/Post/Item.php:593
|
4831 |
msgid "Share on Social Media"
|
4832 |
msgstr "auf Social Media teilen"
|
4833 |
|
4834 |
+
#: views/b2s/curation.php:236
|
|
|
|
|
|
|
|
|
4835 |
msgid ""
|
4836 |
"Share pure text messages and personal comments with your followers and "
|
4837 |
"readers."
|
4839 |
"Teile reine Textinformationen und persönliche Kommentare mit Deinen "
|
4840 |
"Followern und Lesern."
|
4841 |
|
4842 |
+
#: views/b2s/curation.php:234
|
4843 |
msgid "Share text posts:"
|
4844 |
msgstr "Teile Text-Beiträge:"
|
4845 |
|
4847 |
msgid "share up to"
|
4848 |
msgstr "teile bis zu"
|
4849 |
|
4850 |
+
#: views/b2s/html/post.navbar.php:11
|
4851 |
+
msgid "Share WordPress Content"
|
4852 |
+
msgstr "WordPress-Inhalte teilen"
|
4853 |
|
4854 |
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:344
|
4855 |
msgid ""
|
4868 |
msgid "Share your post"
|
4869 |
msgstr "Teile Deinen Post"
|
4870 |
|
4871 |
+
#: views/b2s/premium.php:111
|
4872 |
msgid ""
|
4873 |
"Share your posts automatically across your preferred networks at once or at "
|
4874 |
"your pre-scheduled time-settings."
|
4876 |
"Teile Deine Beiträge automatisch in Deinen bevorzugten Netzwerken sofort "
|
4877 |
"oder zu den von Dir festgelegten Zeiten."
|
4878 |
|
4879 |
+
#: views/b2s/premium.php:72
|
4880 |
msgid ""
|
4881 |
"Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and "
|
4882 |
"Medium."
|
4884 |
"Teile Deine Beiträge auf Seiten und in Gruppen auf Facebook, LinkedIn, Xing,"
|
4885 |
" VK und Medium."
|
4886 |
|
4887 |
+
#: views/b2s/dashboard.php:166 views/b2s/post.calendar.php:196
|
4888 |
msgid "Share your WordPress posts, pages or products"
|
4889 |
msgstr "Teile Deine WordPress-Beiträge, -Seiten oder -Produkte"
|
4890 |
|
4892 |
msgid "Shared"
|
4893 |
msgstr "Wie oft geteilt?"
|
4894 |
|
4895 |
+
#: includes/B2S/Post/Item.php:796
|
4896 |
#, php-format
|
4897 |
msgid "shared by %s"
|
4898 |
msgstr "von %s geteilt"
|
4901 |
msgid "shared by user"
|
4902 |
msgstr "geteilt von Nutzer"
|
4903 |
|
4904 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:83
|
|
|
4905 |
msgid "Shared Posts"
|
4906 |
msgstr "geteilte Beiträge"
|
4907 |
|
4908 |
+
#: includes/B2S/Metrics/Item.php:228 includes/B2S/Post/Item.php:476
|
4909 |
msgid "shared social media posts"
|
4910 |
msgstr "geteilte Beiträge"
|
4911 |
|
4913 |
msgid "shared to network"
|
4914 |
msgstr "geteilt auf Netzwerk"
|
4915 |
|
4916 |
+
#: views/b2s/metrics.php:141
|
4917 |
msgid "Shares"
|
4918 |
msgstr "Shares"
|
4919 |
|
4920 |
+
#: includes/B2S/Post/Item.php:796
|
4921 |
#, php-format
|
4922 |
msgid "sharing in progress by %s"
|
4923 |
msgstr "wird gerade von %s geteilt"
|
4940 |
msgid "Sharing on multiple accounts per network"
|
4941 |
msgstr "Poste auf mehrere Accounts pro Netzwerk"
|
4942 |
|
4943 |
+
#: views/b2s/support.php:23
|
4944 |
msgid "Sharing-Debugger"
|
4945 |
msgstr "Sharing-Debugger"
|
4946 |
|
4952 |
msgid "Shortext"
|
4953 |
msgstr "Kurzbeschreibung"
|
4954 |
|
4955 |
+
#: includes/B2S/Post/Item.php:774
|
4956 |
msgid "show"
|
4957 |
msgstr "ansehen"
|
4958 |
|
4964 |
msgid "Show all"
|
4965 |
msgstr "alle anzeigen"
|
4966 |
|
4967 |
+
#: views/b2s/post.calendar.php:49 includes/B2S/Calendar/Filter.php:127
|
4968 |
#: views/b2s/widgets/calendar.php:43
|
4969 |
msgid "show all"
|
4970 |
msgstr "alles anzeigen"
|
4971 |
|
4972 |
+
#: views/b2s/premium.php:184
|
4973 |
msgid "Show all premium features"
|
4974 |
msgstr "Alle Premium-Features anzeigen"
|
4975 |
|
4976 |
+
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:436
|
4977 |
msgid "show calendar"
|
4978 |
msgstr "Planungskalender anzeigen"
|
4979 |
|
4981 |
msgid "show details"
|
4982 |
msgstr "siehe Details"
|
4983 |
|
4984 |
+
#: views/b2s/dashboard.php:86
|
4985 |
msgid "show full calendar"
|
4986 |
msgstr "Vollständigen Kalender anzeigen"
|
4987 |
|
4988 |
+
#: views/b2s/premium.php:182
|
4989 |
msgid "Show me plans and prices"
|
4990 |
msgstr "Versionen und Preise anzeigen"
|
4991 |
|
4993 |
msgid "Sign in"
|
4994 |
msgstr "Anmelden"
|
4995 |
|
4996 |
+
#: views/b2s/network.php:439 views/b2s/ship.php:693
|
4997 |
msgid "Sign in to Pinterest"
|
4998 |
msgstr "Melde Dich bei Pinterest an"
|
4999 |
|
5000 |
+
#: views/b2s/autopost.php:143
|
5001 |
msgid ""
|
5002 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
5003 |
"and define the preferred settings panel for each user."
|
5005 |
"Da Blog2Social auf WordPress-Nutzerbasiert arbeitet, stelle bitte sicher, "
|
5006 |
"dass Du die Einstellungen für jeden Benutzer aktivierst."
|
5007 |
|
5008 |
+
#: views/b2s/autopost.php:179
|
5009 |
msgid ""
|
5010 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
5011 |
"and define the preferred settings panel for each user. "
|
5013 |
"Da Blog2Social auf WordPress-Nutzerbasiert arbeitet, stelle bitte sicher, "
|
5014 |
"dass Du die Einstellungen für jeden Benutzer aktivierst."
|
5015 |
|
5016 |
+
#: includes/Tools.php:518
|
|
|
|
|
|
|
|
|
5017 |
msgid "Slovakia"
|
5018 |
msgstr "Slowakei"
|
5019 |
|
5020 |
#: views/b2s/network.php:239 views/b2s/ship.php:27
|
5021 |
#: includes/B2S/AutoPost/Item.php:34 includes/B2S/Curation/View.php:56
|
5022 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:201
|
5023 |
+
#: includes/B2S/Network/Item.php:214 includes/B2S/Network/Item.php:325
|
5024 |
+
#: includes/B2S/Network/Item.php:404 includes/B2S/Network/Item.php:479
|
5025 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:172
|
5026 |
+
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:1328
|
5027 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:63
|
5028 |
+
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
|
|
|
|
5029 |
msgid "SMART"
|
5030 |
msgstr "SMART"
|
5031 |
|
5033 |
msgid "Smart: 3 (per user)"
|
5034 |
msgstr "Smart: 3 (pro Nutzer)"
|
5035 |
|
5036 |
+
#: includes/Tools.php:534
|
5037 |
msgid "Smileys & People"
|
5038 |
msgstr "Smileys & Personen"
|
5039 |
|
5041 |
msgid "Sniply"
|
5042 |
msgstr "Sniply"
|
5043 |
|
5044 |
+
#: views/b2s/ship.php:110
|
5045 |
msgid "Social Accounts"
|
5046 |
msgstr "Social Media Konten"
|
5047 |
|
5048 |
+
#: views/b2s/html/header.php:370
|
5049 |
msgid "Social Media Auto-Posting"
|
5050 |
msgstr "Social Media Auto-Posting"
|
5051 |
|
5054 |
msgid "Social media auto-posting and auto-scheduling"
|
5055 |
msgstr "Auto-Posting und automatische Planung für Social Media Beiträge"
|
5056 |
|
5057 |
+
#: views/b2s/premium.php:89
|
5058 |
msgid "Social Media Calendar"
|
5059 |
msgstr "Social Media Kalender"
|
5060 |
|
5061 |
#: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
|
5062 |
+
#: views/b2s/metrics.php:233 views/b2s/html/header.php:532
|
5063 |
+
#: views/b2s/html/sidebar.php:102
|
5064 |
msgid "Social Media Metrics"
|
5065 |
msgstr "Social-Media-Kennzahlen"
|
5066 |
|
5067 |
+
#: views/b2s/metrics.php:70
|
5068 |
msgid "Social Media Metrics Summary"
|
5069 |
msgstr "Übersicht Social-Media-Kennzahlen"
|
5070 |
|
5071 |
+
#: views/b2s/settings.php:50 views/b2s/html/sidebar.php:106
|
5072 |
msgid "Social Media Networks"
|
5073 |
msgstr "Social-Media-Netzwerke"
|
5074 |
|
|
|
|
|
|
|
|
|
5075 |
#: includes/Loader.php:917
|
5076 |
msgid "Social Media Post Drafts"
|
5077 |
msgstr "Social Media Posts Entwürfe"
|
5078 |
|
5079 |
+
#: includes/Loader.php:1026 includes/Loader.php:1086 views/b2s/curation.php:255
|
5080 |
+
#: views/b2s/curation.php:330
|
5081 |
msgid "Social Media Posts"
|
5082 |
msgstr "Social Media Posts"
|
5083 |
|
5084 |
+
#: includes/B2S/Post/Item.php:522
|
5085 |
msgid "social media posts ready to be shared"
|
5086 |
msgstr "Social Media Posts sind bereit, geteilt zu werden"
|
5087 |
|
5088 |
+
#: views/b2s/ship.php:57
|
5089 |
msgid "Social Media Scheduling & Sharing"
|
5090 |
msgstr "Beitrag auf Social Media planen und teilen"
|
5091 |
|
5092 |
+
#: views/b2s/html/header.php:584 views/b2s/html/header.php:643
|
5093 |
+
msgid ""
|
5094 |
+
"Social media templates to turn your social media posts automatically into "
|
5095 |
+
"tailored posts for each network and community by customizing your post "
|
5096 |
+
"layout with a unique structure. Define the sequence of variables for the "
|
5097 |
+
"title, excerpt, content, keywords as hashtags, author and WooCommer price."
|
5098 |
+
msgstr ""
|
5099 |
+
"Die Social-Media-Beitragsvorlagen, um das Layout Deines Beitrags mit einer "
|
5100 |
+
"einzigartigen Struktur für jedes Netzwerk und jede Community anzupassen. "
|
5101 |
+
"Definiere die Reihenfolge der Variablen für Titel, Excerpt (Textauszug), "
|
5102 |
+
"Content (Inhalt), Keywords als Hashtags, Autor und WooCommerce-Preis."
|
5103 |
+
|
5104 |
+
#: views/b2s/settings.php:53
|
5105 |
msgid "Social Media Time Settings"
|
5106 |
msgstr "Social-Media-Zeiteinstellungen"
|
5107 |
|
5108 |
+
#: views/b2s/settings.php:44
|
5109 |
msgid "Social Meta Data"
|
5110 |
msgstr "Social Meta Angaben"
|
5111 |
|
5137 |
"Plugins Blog2Social unterstützt, findest Du in diesem <a href=\"%s\" "
|
5138 |
"target=\"_blank\">Guide</a>."
|
5139 |
|
5140 |
+
#: views/b2s/html/header.php:477
|
5141 |
msgid "Something went wrong on our side. Please contact support!"
|
5142 |
msgstr ""
|
5143 |
"Etwas ist auf unserer Seite schiefgelaufen. Bitte wende Dich an unseren "
|
5147 |
msgid "sort"
|
5148 |
msgstr "sortieren"
|
5149 |
|
5150 |
+
#: views/b2s/post.calendar.php:47 views/b2s/widgets/calendar.php:41
|
5151 |
msgid "Sort by network"
|
5152 |
msgstr "Sortiere nach Netzwerk"
|
5153 |
|
5154 |
+
#: includes/Tools.php:521
|
5155 |
msgid "South Africa"
|
5156 |
msgstr "Südafrika"
|
5157 |
|
5158 |
+
#: includes/Tools.php:494
|
5159 |
msgid "Spain"
|
5160 |
msgstr "Spanien"
|
5161 |
|
5162 |
+
#: includes/B2S/Ship/Item.php:1383
|
5163 |
msgid "Start date"
|
5164 |
msgstr "Startdatum"
|
5165 |
|
5167 |
msgid "Start your 14-Day Free Trial"
|
5168 |
msgstr "Jetzt kostenlos testen"
|
5169 |
|
5170 |
+
#: views/b2s/premium.php:27 views/b2s/html/sidebar.php:49
|
5171 |
#: views/b2s/html/sidebar.ship.php:46
|
5172 |
msgid "Start your 30-day free Premium trial"
|
5173 |
msgstr "Teste Blog2Social Premium kostenlos"
|
5174 |
|
5175 |
+
#: views/b2s/html/header.php:280
|
5176 |
msgid "Start your free 30-day-Premium-trial"
|
5177 |
msgstr "Teste Blog2Social Premium"
|
5178 |
|
5179 |
+
#: views/b2s/html/header.php:543
|
5180 |
msgid "Start your free trial for Social Media Metrics"
|
5181 |
msgstr "Starte jetzt Deine exklusive Testphase"
|
5182 |
|
5184 |
msgid "Startdate"
|
5185 |
msgstr "Startdatum"
|
5186 |
|
5187 |
+
#: views/b2s/support.php:26
|
5188 |
msgid "Step-by-Step-Guide"
|
5189 |
msgstr "Step-by-Step-Guide"
|
5190 |
|
5209 |
msgid "Subtitle"
|
5210 |
msgstr "Untertitel"
|
5211 |
|
5212 |
+
#: includes/B2S/Network/Item.php:660
|
5213 |
msgid "Successfully saved"
|
5214 |
msgstr "Erfolgreich gespeichert"
|
5215 |
|
5221 |
msgid "Summary with large image"
|
5222 |
msgstr "Link-Darstellung mit großem Bild"
|
5223 |
|
5224 |
+
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:1449
|
5225 |
msgid "Sun"
|
5226 |
msgstr "So"
|
5227 |
|
5233 |
msgid "Support"
|
5234 |
msgstr "Support"
|
5235 |
|
5236 |
+
#: includes/B2S/Ship/Item.php:168
|
5237 |
msgid "Supported HTML tags"
|
5238 |
msgstr "Erlaubte HTML-Elemente"
|
5239 |
|
5240 |
+
#: includes/Tools.php:516
|
5241 |
msgid "Sweden"
|
5242 |
msgstr "Schweden"
|
5243 |
|
5244 |
+
#: includes/Tools.php:491
|
5245 |
msgid "Switzerland"
|
5246 |
msgstr "Schweiz"
|
5247 |
|
5248 |
+
#: includes/Tools.php:540
|
5249 |
msgid "Symbols"
|
5250 |
msgstr "Symbole"
|
5251 |
|
5253 |
msgid "System"
|
5254 |
msgstr "System"
|
5255 |
|
5256 |
+
#: views/b2s/html/header.php:583 views/b2s/html/header.php:642
|
5257 |
+
msgid ""
|
5258 |
+
"Tailoring options like individual images for each post, different post "
|
5259 |
+
"formats (link and image post), emojis, hashtags, handles and GIFs for your "
|
5260 |
+
"social media posts to to diversify the appearance your social media posts"
|
5261 |
+
msgstr ""
|
5262 |
+
"Individuelle Anpassungsmöglichkeiten, wie individuelle Bilder für jeden "
|
5263 |
+
"Beitrag, verschiedene Beitragsformate (Link- und Bildbeiträge), Emojis, "
|
5264 |
+
"Hashtags, Handles und GIFs für Deine Beiträge auf Social Media, um das "
|
5265 |
+
"Layout Deiner Beiträge auf Social Media zu variieren"
|
5266 |
+
|
5267 |
#: views/b2s/network.php:509 views/b2s/network.php:594
|
5268 |
msgid "Team Management"
|
5269 |
msgstr "Team-Management"
|
5272 |
msgid "Terms"
|
5273 |
msgstr "Bedingungen"
|
5274 |
|
5275 |
+
#: views/b2s/html/header.php:361
|
5276 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
5277 |
msgstr "Teste Blog2Social Premium 30 Tage lang kostenlos"
|
5278 |
|
5280 |
msgid "Test PR-Gateway for free"
|
5281 |
msgstr "PR-Gateway kostenlos und unverbindlich testen"
|
5282 |
|
5283 |
+
#: includes/B2S/Ship/Item.php:227
|
5284 |
msgid "Text only"
|
5285 |
msgstr "nur Text"
|
5286 |
|
5287 |
+
#: includes/B2S/Ship/Item.php:385
|
|
|
5288 |
msgid "Text Post"
|
5289 |
msgstr "Text-Beitrag"
|
5290 |
|
5291 |
+
#: views/b2s/curation.php:279
|
5292 |
msgid ""
|
5293 |
"Text posts enable you to share pure text messages and personal comments with "
|
5294 |
"your followers and readers. You can also customize your posts with "
|
5299 |
"Deine Beiträge auch mit individuellen Hashtags, @Mentions oder Emojis "
|
5300 |
"anpassen."
|
5301 |
|
5302 |
+
#: views/b2s/html/header.php:200
|
5303 |
msgid "Thank you! Your feedback has been received."
|
5304 |
msgstr "Vielen Dank! Wir haben Dein Feedback erhalten. "
|
5305 |
|
5306 |
+
#: views/b2s/html/header.php:84
|
5307 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
5308 |
msgstr "Vielen Dank. Du erhältst nun die Blog-Updates von Blog2Social."
|
5309 |
|
5310 |
+
#: views/b2s/html/header.php:582 views/b2s/html/header.php:641
|
5311 |
+
msgid ""
|
5312 |
+
"The Auto-Poster, to automatically share your posts immediately or at a later "
|
5313 |
+
"time."
|
5314 |
+
msgstr ""
|
5315 |
+
"Den Auto-Poster, um Deine Beiträge automatisiert sofort oder zeitversetzt zu "
|
5316 |
+
"posten"
|
5317 |
+
|
5318 |
#: includes/B2S/PostBox.php:168
|
5319 |
msgid "The Autoposter is"
|
5320 |
msgstr "Der Auto-Poster ist"
|
5341 |
"Bildgröße des jeweiligen Netzwerkes an. Du kannst bis zu 4 Bilder in einem "
|
5342 |
"Beitrag auf Facebook (Seite und Gruppe) sowie auf Twitter teilen."
|
5343 |
|
5344 |
+
#: views/b2s/html/header.php:590 views/b2s/html/header.php:649
|
5345 |
+
msgid ""
|
5346 |
+
"The Best Time Manager to reach your followers when they are most active on "
|
5347 |
+
"each social network and increase your reach."
|
5348 |
+
msgstr ""
|
5349 |
+
"Den Beste-Zeiten-Manager, um Deine Follower zu erreichen wenn sie auf Social "
|
5350 |
+
"Media aktiv sind und Deine Reichweite zu erhöhen"
|
5351 |
+
|
5352 |
#: views/b2s/network.php:535
|
5353 |
msgid "The connection does not exist."
|
5354 |
msgstr "Diese Verbindung existiert nicht."
|
5365 |
"Die Verbindung ist noch anderen Benutzern zugeordnet. Bitte entfernen Sie "
|
5366 |
"zuerst die zugewiesene Verbindung von anderen Benutzern."
|
5367 |
|
5368 |
+
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:72
|
5369 |
msgid ""
|
5370 |
"The connection to the server failed. Please try again! You can find more "
|
5371 |
"information and solutions in the"
|
5373 |
"Die Verbindung zum Server ist fehlgeschlagen. Bitte versuche es erneut. Mehr "
|
5374 |
"Informationen und Lösungsvorschläge findest Du in dem"
|
5375 |
|
5376 |
+
#: views/b2s/ship.php:836
|
5377 |
msgid ""
|
5378 |
"The connection to the server failed. Please try again! You can find more "
|
5379 |
"information and solutions in the guide for server connection"
|
5424 |
msgid "The default card type to use"
|
5425 |
msgstr "Wählen Sie Ihre Standard-Twitter-Card"
|
5426 |
|
5427 |
+
#: views/b2s/metrics.php:253
|
5428 |
msgid ""
|
5429 |
"The first step is to create and share a social media post for which you want "
|
5430 |
"to track the metrics. You can share WordPress posts, pages and products, "
|
5438 |
"Link, Video, Bild oder Text teilen. Nach 24h kannst Du die ersten Kennzahlen "
|
5439 |
"des Beitrags unter dem Menüpunkt “Social-Media-Kennzahlen” einsehen."
|
5440 |
|
5441 |
+
#: views/b2s/html/header.php:367
|
5442 |
msgid ""
|
5443 |
"The free trial can not be started. This blog has been already registered for "
|
5444 |
"the free trial."
|
5446 |
"Die kostenlose Testversion kann nicht gestartet werden. Dieser Blog wurde "
|
5447 |
"bereits für die kostenlose Testversion registriert."
|
5448 |
|
5449 |
+
#: includes/B2S/Ship/Item.php:1223
|
5450 |
msgid "The Headline..."
|
5451 |
msgstr "Die Überschrift..."
|
5452 |
|
5470 |
msgstr ""
|
5471 |
"Es sind nur .jpg und .png Bilder erlaubt. Bitte wähle ein anderes Bild aus."
|
5472 |
|
5473 |
+
#: views/b2s/html/header.php:429
|
5474 |
msgid "The license has been successfully activated."
|
5475 |
msgstr "Deine Lizenz wurde erfolgreich aktiviert!"
|
5476 |
|
5497 |
"ausgewählt hast, zeigen einige Netzwerke das erste Bild an, dass sie auf "
|
5498 |
"Deiner Seite finden."
|
5499 |
|
5500 |
+
#: includes/B2S/Network/Item.php:858
|
5501 |
msgid "The link will be added automatically at the end of the post."
|
5502 |
msgstr "Der Link wird automatisch am Ende des Posts eingefügt."
|
5503 |
|
5504 |
+
#: includes/B2S/Network/Item.php:856
|
5505 |
msgid ""
|
5506 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
5507 |
"your page, in order to refer to the original source of the content and to "
|
5517 |
"Der Link, dem Du gefolgt bist, ist abgelaufen. Bitte aktualisiere Deine "
|
5518 |
"Seite."
|
5519 |
|
5520 |
+
#: views/b2s/network.php:349 views/b2s/network.php:362 views/b2s/ship.php:608
|
5521 |
+
#: views/b2s/ship.php:616
|
5522 |
msgid ""
|
5523 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
5524 |
"sign in to Pinterest using the Blog2Social browser extension."
|
5549 |
"Dein Post ist vom Netzwerk nicht veröffentlicht worden. Bitte beachte die "
|
5550 |
"folgende <a target=\"_blank\" href=\"%s\">Anleitung</a>."
|
5551 |
|
5552 |
+
#: includes/B2S/Network/Item.php:863
|
5553 |
msgid "The network does not support hashtags."
|
5554 |
msgstr "Das Netzwerk unterstützt keine Hashtags."
|
5555 |
|
5587 |
msgid "The orginal tweet is scheduled on:"
|
5588 |
msgstr "Der Original-Tweet ist geplant für:"
|
5589 |
|
5590 |
+
#: views/b2s/html/header.php:103
|
5591 |
msgid "The page and post meta data could not be removed."
|
5592 |
msgstr "Die Seiten- und Post-Metadaten konnten nicht entfernt werden."
|
5593 |
|
5597 |
"Die Parameter konnten nicht gespeichert werden. Bitte versuchen Sie es noch "
|
5598 |
"einmal."
|
5599 |
|
5600 |
+
#: includes/B2S/Calendar/Item.php:534 includes/B2S/Post/Item.php:785
|
5601 |
#, php-format
|
5602 |
msgid ""
|
5603 |
"The post cannot be published due to changes on the Instagram interface. More "
|
5607 |
"veröffentlicht werden. Mehr Informationen in dem <a href=\"%s\" "
|
5608 |
"target=\"_blank\">Instagram-Guide</a>."
|
5609 |
|
5610 |
+
#: views/b2s/html/header.php:239
|
5611 |
msgid ""
|
5612 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
5613 |
"re-schedule them, please delete the posts before adding them again."
|
5636 |
"Preis: Der Preis eines Produkts, wenn Du WooCommerce auf Deiner Website/ "
|
5637 |
"Blog installiert hast."
|
5638 |
|
5639 |
+
#: views/b2s/ship.php:801
|
5640 |
+
msgid ""
|
5641 |
+
"The scheduling for your social media post has changed as a selected social "
|
5642 |
+
"media network is no longer connected to Blog2Social. Please check the "
|
5643 |
+
"network connections under \"Networks\" and make sure that the required "
|
5644 |
+
"networks are connected."
|
5645 |
+
msgstr ""
|
5646 |
+
"Die Planung für Deinen Social-Media-Post hat sich geändert, da ein "
|
5647 |
+
"ausgewähltes Social-Media-Netzwerk nicht mehr mit Blog2Social verbunden ist. "
|
5648 |
+
"Bitte prüfe die Netzwerkverbindungen unter \"Netzwerke\" und stelle sicher, "
|
5649 |
+
"dass die gewünschten Netzwerke verbunden sind."
|
5650 |
+
|
5651 |
#: includes/B2S/AutoPost/Item.php:51
|
5652 |
msgid ""
|
5653 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
5656 |
"Die Einstellungen für den Auto-Poster wurden für Dich von einem WordPress-"
|
5657 |
"Admin vorgenommen."
|
5658 |
|
5659 |
+
#: views/b2s/html/header.php:591 views/b2s/html/header.php:650
|
5660 |
+
msgid ""
|
5661 |
+
"The social media calendar to keep track of your scheduled social media posts."
|
5662 |
+
" Add social media posts, edit or change the date per drag & drop."
|
5663 |
+
msgstr ""
|
5664 |
+
"Den Social-Media-Kalender, um den Überblick über Deine geplanten Social-"
|
5665 |
+
"Media-Posts zu behalten. Füge Beiträge für Social-Media-Netzwerke hinzu, "
|
5666 |
+
"bearbeite Deine Beiträge oder ändere die Veröffentlichung einfach per Drag & "
|
5667 |
+
"Drop."
|
5668 |
+
|
5669 |
#: views/b2s/network.php:311
|
5670 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
5671 |
msgstr ""
|
5676 |
msgid "The tags you have set in your post."
|
5677 |
msgstr "Die Tags, die Du in deinem Beitrag gesetzt hast."
|
5678 |
|
5679 |
+
#: views/b2s/html/header.php:592 views/b2s/html/header.php:651
|
5680 |
+
msgid ""
|
5681 |
+
"The team and user management settings to organize multiple users and "
|
5682 |
+
"licenses and to collaborate on the social media calendar, and much more."
|
5683 |
+
msgstr ""
|
5684 |
+
"Das Social-Media-Management im Team, um den Social-Media-Kalender gemeinsam "
|
5685 |
+
"zu gestalten, u.v.m."
|
5686 |
+
|
5687 |
+
#: views/b2s/autopost.php:98
|
5688 |
#, php-format
|
5689 |
msgid ""
|
5690 |
"The time of publishing a post can play a decisive role in achieving more "
|
5709 |
msgid "The title of your post"
|
5710 |
msgstr "Der Titel deines Beitrags."
|
5711 |
|
5712 |
+
#: views/b2s/support.php:135
|
5713 |
msgid ""
|
5714 |
"The Troubleshooting tool helps you with conflicts that can be caused by the "
|
5715 |
"system environment of your blog. So you can always check your settings on "
|
5741 |
"verbunden. Bitte füge mindestens ein Social Media Account hinzu oder wähle "
|
5742 |
"eine andere Netzwerkgruppierung aus. "
|
5743 |
|
5744 |
+
#: views/b2s/autopost.php:116 views/b2s/autopost.php:156
|
5745 |
msgid "There are two different setting panels in the auto-poster section:"
|
5746 |
msgstr "Im Bereich Auto-Poster gibt es zwei verschiedene Einstellungsbereiche:"
|
5747 |
|
5748 |
+
#: views/b2s/ship.php:588
|
5749 |
msgid ""
|
5750 |
"There is already a saved draft for this WordPress post or page. If you save "
|
5751 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
5767 |
"Pressemitteilungen können nicht mehr zurückgenommen werden. Soll Deine "
|
5768 |
"Pressemitteilung jetzt versendet werden?"
|
5769 |
|
5770 |
+
#: views/b2s/ship.php:360
|
5771 |
msgid ""
|
5772 |
"This allows you to adjust your network selection at any time and save it by "
|
5773 |
"clicking on \"Save network selection\"."
|
5779 |
msgid "This connection has already been assigned to this user."
|
5780 |
msgstr "Die Verbindung wurde diesem Benutzer bereits zugewiesen."
|
5781 |
|
5782 |
+
#: views/b2s/html/header.php:128
|
5783 |
msgid "This entry could not be removed. It's not yours!"
|
5784 |
msgstr "Dieser Eintrag konnte nicht entfernt werden. Es gehört dir nicht!"
|
5785 |
|
5786 |
+
#: views/b2s/html/header.php:133
|
5787 |
msgid "This entry was removed successfully."
|
5788 |
msgstr "Dieser Eintrag wurde erfolgreich entfernt."
|
5789 |
|
5803 |
"Dies ist eine globale Einstellung für Deinen Website/ Deinen Blog, die nur "
|
5804 |
"von Nutzern mit Admin-Rechten bearbeitet werden kann. "
|
5805 |
|
5806 |
+
#: includes/B2S/Ship/Save.php:442 includes/B2S/Ship/Save.php:450
|
5807 |
msgid "This is how it works:"
|
5808 |
msgstr "Und so funktioniert es:"
|
5809 |
|
5815 |
msgid "This post is blocked by %1"
|
5816 |
msgstr "% 1bearbeitet gerade diesen Beitrag."
|
5817 |
|
5818 |
+
#: views/b2s/html/header.php:138
|
5819 |
msgid "This post was edited successfully."
|
5820 |
msgstr "Dieser Beitrag wurde erfolgreich bearbeitet."
|
5821 |
|
5828 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
5829 |
msgstr "Dein Beitrag wird in ca. 2-3 Minuten in die Social Media eingestellt!"
|
5830 |
|
5831 |
+
#: includes/B2S/Network/Item.php:867
|
5832 |
msgid ""
|
5833 |
"This social network displays the predefined hashtags as clickable tags at "
|
5834 |
"the end of your post."
|
5854 |
"Deinen XING-Konten über die neue XING-Schnittstelle, um Deine Beiträge neu "
|
5855 |
"zu planen."
|
5856 |
|
5857 |
+
#: includes/B2S/Ship/Item.php:234
|
5858 |
+
msgid "Threads"
|
5859 |
+
msgstr "Threads"
|
5860 |
+
|
5861 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1446
|
5862 |
msgid "Thu"
|
5863 |
msgstr "Do"
|
5864 |
|
5866 |
msgid "Thursday"
|
5867 |
msgstr "Donnerstag"
|
5868 |
|
5869 |
+
#: includes/B2S/Ship/Item.php:1438 views/b2s/partials/post-edit-modal.php:68
|
5870 |
#: views/b2s/partials/post-edit-modal.php:71
|
5871 |
msgid "Time"
|
5872 |
msgstr "Uhrzeit"
|
5873 |
|
5874 |
+
#: includes/B2S/Ship/Item.php:1384
|
5875 |
msgid "Time to publish"
|
5876 |
msgstr "Veröffentlichungszeitpunkt"
|
5877 |
|
5878 |
+
#: views/b2s/ship.php:260
|
5879 |
msgid "Time zone"
|
5880 |
msgstr "Zeitzone"
|
5881 |
|
5883 |
msgid "times"
|
5884 |
msgstr "Mal"
|
5885 |
|
5886 |
+
#: includes/B2S/Ship/Item.php:1435
|
5887 |
msgid "Timespan"
|
5888 |
msgstr "Zeitspanne"
|
5889 |
|
5891 |
msgid "Timezone for Scheduling"
|
5892 |
msgstr "Zeitzone für die Planung"
|
5893 |
|
5894 |
+
#: views/b2s/ship.php:58 views/prg/ship.php:43 views/prg/ship.php:45
|
5895 |
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
|
5896 |
#: includes/B2S/Settings/Item.php:231 views/prg/html/form.php:26
|
5897 |
#: views/prg/html/form.php:28
|
5902 |
msgid "title"
|
5903 |
msgstr "Titel"
|
5904 |
|
5905 |
+
#: views/b2s/settings.php:118
|
5906 |
msgid "Title: The title of your post."
|
5907 |
msgstr "Titel: Der Titel Deines Beitrags."
|
5908 |
|
5909 |
+
#: views/b2s/autopost.php:84 views/b2s/repost.php:192
|
5910 |
msgid ""
|
5911 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
5912 |
"be sent to your primary Twitter profile."
|
5914 |
"Um den Geschäftsbedingungen von Twitter zu entsprechen und doppelte Postings "
|
5915 |
"zu vermeiden, werden Autoposts an Dein primäres Twitter-Profil gesendet."
|
5916 |
|
5917 |
+
#: views/b2s/ship.php:362
|
5918 |
#, php-format
|
5919 |
msgid ""
|
5920 |
"To define and save more network selections for your posting purposes, you "
|
5941 |
"fest. Wenn Du Dein Bild bei LinkedIn ändern möchtest, ohne Dein Beitragsbild "
|
5942 |
"zu ändern, kannst du die Box “oEmbed Tags hinzufügen” abhaken."
|
5943 |
|
5944 |
+
#: views/b2s/support.php:52
|
5945 |
#, php-format
|
5946 |
msgid ""
|
5947 |
"To get technical help, please create your account to access the Blog2Social "
|
5952 |
"Support Community, um noch mehr Antworten zu finden und Deine Fragen zu "
|
5953 |
"stellen. (<a href=\"%s\" target=\"_blank\">Info</a>)"
|
5954 |
|
5955 |
+
#: views/b2s/html/header.php:597
|
5956 |
+
msgid ""
|
5957 |
+
"To keep all these benefits from all advanced features for automated "
|
5958 |
+
"scheduling and sharing and to keep all your individual settings und "
|
5959 |
+
"scheduling, don’t forget to upgrade to Blog2Social Premium before your trial "
|
5960 |
+
"expires. You can also upgrade at any time later, but please note that your "
|
5961 |
+
"Premium settings and your scheduling will be lost by then. To keep all your "
|
5962 |
+
"settings, upgrade to Blog2Social Premium now."
|
5963 |
+
msgstr ""
|
5964 |
+
"Vergiss nicht vor Ablauf der Testphase auf Blog2Social Premium zu upgraden, "
|
5965 |
+
"um von allen erweiterten Funktionen zum automatisierten Planen und Teilen zu "
|
5966 |
+
"profitieren. Du kannst auch zu einem späteren Zeitpunkt upgraden, aber "
|
5967 |
+
"beachte bitte, dass Deine Premium-Einstellungen und Deine Planungen dann "
|
5968 |
+
"verloren gehen. Um alle Deine Einstellungen zu behalten, upgrade jetzt auf "
|
5969 |
+
"Blog2Social Premium."
|
5970 |
+
|
5971 |
+
#: includes/B2S/Network/Item.php:265 includes/B2S/Network/Item.php:344
|
5972 |
+
#: includes/B2S/Network/Item.php:424
|
5973 |
msgid "To reactivate this connection,"
|
5974 |
msgstr "Um die Verbindung wieder zu aktivieren,"
|
5975 |
|
5983 |
"Um Social Media Posts auf Reddit oder Diigo zu teilen, ist ein Link "
|
5984 |
"erforderlich."
|
5985 |
|
5986 |
+
#: views/b2s/html/header.php:59
|
5987 |
msgid ""
|
5988 |
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
5989 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
6001 |
msgstr ""
|
6002 |
"Übertrage Deine Auto-Poster-Einstellungen anderen Benutzern (Business):"
|
6003 |
|
6004 |
+
#: includes/Tools.php:538
|
6005 |
msgid "Travel & Places"
|
6006 |
msgstr "Reisen & Orte"
|
6007 |
|
6008 |
+
#: views/b2s/support.php:117
|
6009 |
msgid "Troubleshooting for Error Messages"
|
6010 |
msgstr "Fehlermeldungen und Lösungen"
|
6011 |
|
6012 |
+
#: views/b2s/support.php:20
|
6013 |
msgid "Troubleshooting-Tool"
|
6014 |
msgstr "Problemanalyse-Tool"
|
6015 |
|
6016 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1444
|
6017 |
msgid "Tue"
|
6018 |
msgstr "Di"
|
6019 |
|
6021 |
msgid "Tuesday"
|
6022 |
msgstr "Dienstag"
|
6023 |
|
6024 |
+
#: includes/Tools.php:501
|
6025 |
msgid "Turkey"
|
6026 |
msgstr "Türkei"
|
6027 |
|
6028 |
+
#: views/b2s/support.php:211
|
6029 |
msgid "Twitter Card Validator"
|
6030 |
msgstr "Twitter Card Validator"
|
6031 |
|
6064 |
"Netzwerkgruppierung verwendet wird. <a href=\"%s\" target=\"_blank\">"
|
6065 |
"Erstelle eine Netzwerkgruppierung</a>"
|
6066 |
|
6067 |
+
#: views/b2s/repost.php:225
|
6068 |
#, php-format
|
6069 |
msgid ""
|
6070 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
6082 |
"Leider kann Deine Anfrage von Blog2Social nicht verarbeitet werden. Bitte "
|
6083 |
"versuche es erneut!"
|
6084 |
|
6085 |
+
#: includes/Tools.php:488
|
6086 |
msgid "United States of America"
|
6087 |
msgstr "Vereinigte Staaten von Amerika"
|
6088 |
|
6090 |
msgid "Unknown error"
|
6091 |
msgstr "Unbekannter Fehler"
|
6092 |
|
6093 |
+
#: views/b2s/support.php:62
|
6094 |
msgid "Unknown error has occurred. Please try again."
|
6095 |
msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es erneut."
|
6096 |
|
6097 |
+
#: includes/Ajax/Post.php:1959 views/b2s/network.php:13
|
6098 |
+
#: includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:357
|
6099 |
+
#: includes/B2S/Network/Item.php:437 includes/B2S/Network/Item.php:571
|
6100 |
msgid "Unknown username"
|
6101 |
msgstr "unbekannter Blog-Nutzer"
|
6102 |
|
6103 |
+
#: views/b2s/curation.php:227
|
6104 |
msgid ""
|
6105 |
"Unlock Blog2Social Premium Pro to create and share image posts, video links, "
|
6106 |
"and text posts from any source."
|
6124 |
msgid "updated posts"
|
6125 |
msgstr "Aktualisierte Beiträge"
|
6126 |
|
6127 |
+
#: views/b2s/premium.php:32 includes/B2S/AutoPost/Item.php:148
|
6128 |
#: includes/B2S/AutoPost/Item.php:151 includes/B2S/RePost/Item.php:33
|
6129 |
msgid "Upgrade"
|
6130 |
msgstr "Upgrade"
|
6131 |
|
6132 |
+
#: views/b2s/html/sidebar.php:116
|
6133 |
msgid "Upgrade License"
|
6134 |
msgstr "Lizenz upgraden"
|
6135 |
|
6136 |
+
#: views/b2s/html/header.php:636
|
6137 |
+
msgid "Upgrade now to keep all benefits of Blog2Social Premium:"
|
6138 |
+
msgstr "Upgrade jetzt und nutze die Vorteile von Blog2Social Premium:"
|
6139 |
+
|
6140 |
#: views/b2s/network.php:565
|
6141 |
msgid "Upgrade to Blog2Social Business"
|
6142 |
msgstr "Upgrade auf Blog2Social Business"
|
6166 |
msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
|
6167 |
msgstr "Jetzt auf Blog2Social PREMIUM BUSINESS upgraden"
|
6168 |
|
6169 |
+
#: views/b2s/html/header.php:569 views/b2s/html/header.php:630
|
6170 |
+
#: views/b2s/html/header.php:673
|
6171 |
+
msgid "Upgrade to Blog2Social Premium now"
|
6172 |
+
msgstr "Ich möchte auf Blog2Social Premium upgraden."
|
6173 |
+
|
6174 |
+
#: views/b2s/html/header.php:344 views/b2s/html/header.php:602
|
6175 |
+
msgid "Upgrade to Blog2Social Premium now."
|
6176 |
+
msgstr "Ich möchte auf Blog2Social Premium upgraden."
|
6177 |
+
|
6178 |
#: views/b2s/html/footer.php:55
|
6179 |
msgid "Upgrade to Blog2Social PREMIUM PRO"
|
6180 |
msgstr "Jetzt auf Blog2Social PREMIUM PRO upgraden"
|
6181 |
|
6182 |
+
#: includes/B2S/Network/Item.php:706
|
6183 |
msgid "Upgrade to Blog2Social Smart"
|
6184 |
msgstr "Upgrade auf Blog2Social Smart"
|
6185 |
|
6186 |
+
#: includes/B2S/Network/Item.php:705
|
6187 |
msgid ""
|
6188 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
6189 |
"templates that will automatically pre-format the structure of your social "
|
6207 |
msgid "Upgrade to BUSINESS"
|
6208 |
msgstr "Upgrade auf BUSINESS"
|
6209 |
|
6210 |
+
#: views/b2s/html/header.php:308
|
6211 |
msgid "Upgrade to PREMIUM"
|
6212 |
msgstr "Jetzt auf Premium upgraden"
|
6213 |
|
6214 |
+
#: includes/Loader.php:864 views/b2s/html/sidebar.php:47
|
6215 |
#: views/b2s/html/sidebar.ship.php:44
|
6216 |
msgid "Upgrade to Premium"
|
6217 |
msgstr "Premium freischalten"
|
6220 |
msgid "Upgrade to Premium Pro now."
|
6221 |
msgstr "Upgrade auf Premium PRO"
|
6222 |
|
6223 |
+
#: views/b2s/curation.php:241 views/b2s/html/footer.php:73
|
6224 |
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
|
6225 |
msgid "Upgrade to PRO and above"
|
6226 |
msgstr "Upgrade auf PRO und höher"
|
6227 |
|
6228 |
+
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:202
|
6229 |
+
#: views/b2s/dashboard.php:278 views/b2s/post.calendar.php:308
|
6230 |
+
#: views/b2s/ship.php:340 views/b2s/ship.php:406 views/b2s/ship.php:452
|
6231 |
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
|
6232 |
#: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
|
6233 |
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
|
6235 |
msgid "Upgrade to SMART and above"
|
6236 |
msgstr "Upgrade auf SMART und höher"
|
6237 |
|
6238 |
+
#: views/b2s/curation.php:25
|
6239 |
+
msgid ""
|
6240 |
+
"Upload an image or select an image from your media library and share the "
|
6241 |
+
"image with a short description (comment) on your social media accounts."
|
6242 |
+
msgstr ""
|
6243 |
+
"Lade ein Bild hoch oder wähle ein Bild aus Deiner Mediathek aus und teile "
|
6244 |
+
"das Bild mit einer kurzen Beschreibung (Kommentar) auf Deinen Social-Media-"
|
6245 |
+
"Accounts."
|
6246 |
+
|
6247 |
#: views/b2s/network.php:468 views/b2s/network.php:568
|
6248 |
msgid "URL Parameters"
|
6249 |
msgstr "URL-Parameter"
|
6252 |
msgid "Url Shortener"
|
6253 |
msgstr "Url Shortener"
|
6254 |
|
6255 |
+
#: views/b2s/premium.php:36
|
6256 |
msgid ""
|
6257 |
"Use Blog2Social Premium for even smarter social media automation: schedule "
|
6258 |
"your posts automatically with the Best Time Manager, choose specific dates "
|
6267 |
"Veröffentliche Beiträge auf Seiten, in Gruppen und auf mehreren Konten pro "
|
6268 |
"Netzwerk, und vieles mehr."
|
6269 |
|
6270 |
+
#: views/b2s/curation.php:237
|
6271 |
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
6272 |
msgstr ""
|
6273 |
"Verwende Hashtags, @Handles oder Emojis, um Deine Gefühle auszudrücken."
|
6274 |
|
6275 |
+
#: views/b2s/autopost.php:57 views/b2s/settings.php:148
|
6276 |
#: includes/B2S/Ship/Image.php:101
|
6277 |
msgid "Use image"
|
6278 |
msgstr "Bild verwenden"
|
6279 |
|
6280 |
+
#: views/b2s/premium.php:99
|
6281 |
msgid ""
|
6282 |
"Use the Best Times Manager to schedule your posts automatically or define "
|
6283 |
"your own best time scheme."
|
6285 |
"Verwende den Beste-Zeiten-Manager, um Deine Beiträge automatisch zu planen "
|
6286 |
"oder Dein eigenes bestes Zeitschema zu definieren."
|
6287 |
|
6288 |
+
#: views/b2s/settings.php:106
|
6289 |
msgid ""
|
6290 |
"Use the pre-defined best time settings or define your own best time settings "
|
6291 |
"for sharing your posts . Posting at the right time can be essential to make "
|
6300 |
msgid "User"
|
6301 |
msgstr "Benutzer"
|
6302 |
|
6303 |
+
#: views/b2s/support.php:69
|
6304 |
msgid "User name"
|
6305 |
msgstr "Benutzername"
|
6306 |
|
6307 |
+
#: views/b2s/support.php:66
|
6308 |
msgid "Username is taken."
|
6309 |
msgstr "Dieser Benutzername ist bereits belegt"
|
6310 |
|
6311 |
+
#: views/b2s/support.php:205
|
6312 |
msgid "validate"
|
6313 |
msgstr "Link prüfen"
|
6314 |
|
6315 |
+
#: views/b2s/support.php:216
|
6316 |
msgid "Validate directly on Twitter"
|
6317 |
msgstr "Direkt bei Twitter prüfen"
|
6318 |
|
6319 |
+
#: includes/B2S/Network/Item.php:605
|
6320 |
msgid "Value"
|
6321 |
msgstr "Zugeordneter Wert"
|
6322 |
|
6323 |
+
#: views/b2s/html/sidebar.php:28 views/b2s/html/sidebar.ship.php:25
|
6324 |
msgid "Version"
|
6325 |
msgstr "Version"
|
6326 |
|
6327 |
+
#: includes/B2S/Post/Item.php:533
|
6328 |
msgid "via Browser-Extension"
|
6329 |
msgstr "via Browser-Extension"
|
6330 |
|
|
|
|
|
|
|
|
|
6331 |
#: views/b2s/network.php:180
|
6332 |
msgid "View schedule posts"
|
6333 |
msgstr "Geplante Beiträge anzeigen"
|
6334 |
|
6335 |
+
#: includes/B2S/Ship/Save.php:467
|
6336 |
msgid "view social media post"
|
6337 |
msgstr "Zeige Social Media Beitrag an"
|
6338 |
|
6339 |
+
#: includes/B2S/Ship/Item.php:415
|
6340 |
msgid ""
|
6341 |
"Violating these rules can result in suspending your account. Always vary "
|
6342 |
"your content with different images, comments, hashtags or handles to prevent "
|
6346 |
"Variieren Sie Ihre Inhalte immer mit unterschiedlichen Bildern, Kommentaren, "
|
6347 |
"Hashtags oder Handles, um doppelte Beiträge zu vermeiden."
|
6348 |
|
6349 |
+
#: includes/B2S/Ship/Item.php:406 includes/B2S/Ship/Item.php:881
|
6350 |
+
#: includes/B2S/Ship/Item.php:1338
|
6351 |
msgid ""
|
6352 |
"Violating these rules can result in Twitter suspending your account. Always "
|
6353 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
6365 |
"Wir haben nicht Deine Erlaubnis, den Post zu veröffentlichen. Bitte "
|
6366 |
"überprüfe deine Autorisierung."
|
6367 |
|
6368 |
+
#: views/b2s/metrics.php:221 views/b2s/html/header.php:546
|
6369 |
msgid "We hope you enjoy analysing your posts!"
|
6370 |
msgstr "Wir wünschen Dir viel Spaß beim Analysieren Deiner Beiträge!"
|
6371 |
|
6372 |
+
#: views/b2s/html/header.php:321
|
6373 |
msgid "We hope you liked Blog2Social Premium."
|
6374 |
msgstr "Wir hoffen, dass Dir Blog2Social Premium gefallen hat."
|
6375 |
|
6377 |
msgid "We never store your data from your social media profiles"
|
6378 |
msgstr "Wir speichern Deine Daten aus Deinen Social-Media-Profilen niemals."
|
6379 |
|
6380 |
+
#: views/b2s/html/header.php:502
|
6381 |
msgid "We updated our Privacy Policy"
|
6382 |
msgstr "Wir haben unsere Datenschutzerklärung aktualisiert"
|
6383 |
|
6386 |
msgid "Website"
|
6387 |
msgstr "Website"
|
6388 |
|
6389 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1445
|
|
|
|
|
|
|
|
|
6390 |
msgid "Wed"
|
6391 |
msgstr "Mi"
|
6392 |
|
6394 |
msgid "Wednesday"
|
6395 |
msgstr "Mittwoch"
|
6396 |
|
6397 |
+
#: includes/B2S/Ship/Item.php:1401
|
6398 |
msgid "Week"
|
6399 |
msgstr "Woche"
|
6400 |
|
6401 |
+
#: includes/B2S/Ship/Item.php:1393
|
6402 |
msgid "weekly"
|
6403 |
msgstr "wöchentlich"
|
6404 |
|
6405 |
+
#: includes/B2S/Ship/Item.php:1401
|
6406 |
msgid "Weeks"
|
6407 |
msgstr "Wochen"
|
6408 |
|
6409 |
+
#: views/b2s/metrics.php:193
|
6410 |
msgid "Welcome to the trial of the beta version \"Social Media Metrics\"!"
|
6411 |
msgstr ""
|
6412 |
"Herzlich Willkommen zur Testphase der Beta-Version \"Social-Media-"
|
6413 |
"Kennzahlen\"!"
|
6414 |
|
6415 |
+
#: views/b2s/html/header.php:575
|
6416 |
+
msgid "What do you like best of Blog2Social Premium?"
|
6417 |
+
msgstr "Was gefällt Dir am meisten an Blog2Social Premium?"
|
6418 |
+
|
6419 |
+
#: views/b2s/dashboard.php:156 views/b2s/post.calendar.php:186
|
6420 |
msgid "What would you like to share?"
|
6421 |
msgstr "Was möchtest Du teilen?"
|
6422 |
|
6428 |
msgid "When should your content be shared?"
|
6429 |
msgstr "Wann soll Dein Content geteilt werden?"
|
6430 |
|
6431 |
+
#: views/b2s/network.php:659 views/b2s/ship.php:715
|
6432 |
#, php-format
|
6433 |
msgid ""
|
6434 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
6450 |
"um Deinen Account zu sichern. <a href=\"%s\" target=\"_blank\">Mehr "
|
6451 |
"Informationen: So verbindest Du Deine Website mit Instagram.</a>"
|
6452 |
|
6453 |
+
#: views/b2s/curation.php:184 views/b2s/dashboard.php:260
|
6454 |
+
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:434
|
6455 |
msgid ""
|
6456 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
6457 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
6500 |
msgid "With Blog2Social Premium PRO you can post multiple images."
|
6501 |
msgstr "\"Mit Blog2Social Premium PRO kannst Du mehrere Bilder posten."
|
6502 |
|
6503 |
+
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:188
|
6504 |
+
#: views/b2s/dashboard.php:264 views/b2s/post.calendar.php:294
|
6505 |
+
#: views/b2s/ship.php:326 views/b2s/ship.php:392 views/b2s/ship.php:438
|
6506 |
#: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
|
6507 |
#: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
|
6508 |
#: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
|
6510 |
msgid "With Blog2Social Premium you can:"
|
6511 |
msgstr "Mit Blog2Social kannst Du:"
|
6512 |
|
6513 |
+
#: views/b2s/html/header.php:633
|
6514 |
+
msgid ""
|
6515 |
+
"With Blog2Social Premium you have all the options you need to promote your "
|
6516 |
+
"content on your social media channels successfully and time-savingly."
|
6517 |
+
msgstr ""
|
6518 |
+
"Mit Blog2Social Premium hast Du alle Funktionen zur Hand, die Du brauchst, "
|
6519 |
+
"um Deinen Content erfolgreich und zeitsparend in den Social-Media-Kanälen "
|
6520 |
+
"bekannt zu machen."
|
6521 |
+
|
6522 |
#: views/b2s/network.php:706
|
6523 |
msgid ""
|
6524 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
6589 |
"bitte dieses Kontrollkästchen. Bitte beachte, dass Du dann kein Bild für "
|
6590 |
"Deinen Linkbeitrag bei Twitter auswählen kannst."
|
6591 |
|
6592 |
+
#: views/b2s/curation.php:354
|
6593 |
msgid ""
|
6594 |
"With Blog2Social you can share social media posts consisting of text, links, "
|
6595 |
"images, and videos automatically with your followers and readers and "
|
6600 |
"und Deine Beiträge mit individuellen Hashtags, @Mentions oder Emojis "
|
6601 |
"anpassen."
|
6602 |
|
6603 |
+
#: views/b2s/curation.php:224
|
6604 |
msgid ""
|
6605 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
6606 |
"create your own social media posts to share any content based on text, links,"
|
6654 |
"pro Social Media Kanal verändern und Deine Beiträge als BildPost oder als "
|
6655 |
"Link-Post auf Deinen Profilen, Seiten oder Gruppen teilen."
|
6656 |
|
6657 |
+
#: views/b2s/metrics.php:273
|
6658 |
msgid ""
|
6659 |
"With this function, you can compare the social media metrics for a period "
|
6660 |
"you choose by yourself and check whether the number of shared posts, "
|
6670 |
"Tagen, um diese Zeit mit den 3 Tagen davor zu vergleichen. So erhältst Du "
|
6671 |
"links eine Gesamtzahl und rechts den Vergleich zu den 3 Tagen davor."
|
6672 |
|
6673 |
+
#: views/b2s/metrics.php:208
|
6674 |
msgid "WordPress posts, pages and products"
|
6675 |
msgstr "WordPress-Beiträge, -Seiten und -Produkte"
|
6676 |
|
6677 |
+
#: views/b2s/html/header.php:77
|
6678 |
#| msgid ""
|
6679 |
#| "WordPress session timeout: For security reasons, WordPress will let your "
|
6680 |
#| "session expire automatically if your site has been inactive for a while. "
|
6697 |
"WordPress verwendet standardmäßig den Heartbeat und Blog2Social auch. "
|
6698 |
"Aktiviere den Heartbeat damit Du Blog2Social problemlos nutzen kannst."
|
6699 |
|
6700 |
+
#: views/b2s/html/header.php:66
|
6701 |
msgid ""
|
6702 |
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
6703 |
"heartbeats for using Blog2Social! See also:"
|
6709 |
msgid "Would you like to retweet?"
|
6710 |
msgstr "Möchtest Du Retweeten?"
|
6711 |
|
6712 |
+
#: includes/B2S/Ship/Item.php:493 includes/B2S/Ship/Item.php:553
|
6713 |
+
#: includes/B2S/Ship/Item.php:613 includes/B2S/Ship/Item.php:672
|
6714 |
+
#: includes/B2S/Ship/Item.php:693 includes/B2S/Ship/Item.php:722
|
6715 |
+
#: includes/B2S/Ship/Item.php:750 includes/B2S/Ship/Item.php:778
|
6716 |
+
#: includes/B2S/Ship/Item.php:806 includes/B2S/Ship/Item.php:837
|
6717 |
+
#: includes/B2S/Ship/Item.php:892 includes/B2S/Ship/Item.php:943
|
6718 |
+
#: includes/B2S/Ship/Item.php:996 includes/B2S/Ship/Item.php:1017
|
6719 |
+
#: includes/B2S/Ship/Item.php:1038 includes/B2S/Ship/Item.php:1058
|
6720 |
+
#: includes/B2S/Ship/Item.php:1079 includes/B2S/Ship/Item.php:1089
|
6721 |
msgid "Write something about your post..."
|
6722 |
msgstr "Schreibe etwas..."
|
6723 |
|
6724 |
+
#: views/b2s/curation.php:100 views/b2s/curation.php:114
|
6725 |
#: includes/B2S/Curation/View.php:23
|
6726 |
msgid "Write something..."
|
6727 |
msgstr "Schreibe etwas..."
|
6728 |
|
6729 |
+
#: views/b2s/support.php:90
|
6730 |
msgid "Yay :) You successfully registered for the Blog2Social Community!"
|
6731 |
msgstr ""
|
6732 |
"Hurra :) Deine Registrierung für die Blog2Social Community war erfolgreich!"
|
6733 |
|
6734 |
+
#: views/b2s/curation.php:157 views/b2s/post.approve.php:121
|
6735 |
+
#: views/b2s/ship.php:496 views/b2s/ship.php:592
|
6736 |
msgid "YES"
|
6737 |
msgstr "JA"
|
6738 |
|
6739 |
+
#: views/b2s/curation.draft.php:91 views/b2s/metrics.php:183
|
6740 |
#: views/b2s/network.php:116 views/b2s/network.php:179
|
6741 |
+
#: views/b2s/post.approve.php:106 views/b2s/post.draft.php:95
|
6742 |
+
#: views/b2s/post.notice.php:96 views/b2s/post.publish.php:93
|
6743 |
+
#: views/b2s/post.sched.php:111 views/b2s/repost.php:114
|
6744 |
+
#: views/b2s/repost.php:115 views/b2s/widgets/posts.php:68
|
6745 |
msgid "YES, delete"
|
6746 |
msgstr "Ja, löschen"
|
6747 |
|
6749 |
msgid "Yes, I accept"
|
6750 |
msgstr "Ja,einverstanden"
|
6751 |
|
6752 |
+
#: views/b2s/html/header.php:286
|
6753 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
6754 |
msgstr "Ja, ich möchte Blog2Social Premium 30 Tage kostenlos testen"
|
6755 |
|
6756 |
+
#: views/b2s/html/header.php:327
|
6757 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
6758 |
msgstr "Ja, ich möchte gerne auf Blog2Social Premium upgraden"
|
6759 |
|
6774 |
msgid "You are signed out of PR-Gateway!"
|
6775 |
msgstr "Du bist von PR-Gateway abgemeldet!"
|
6776 |
|
6777 |
+
#: views/b2s/metrics.php:176 views/b2s/post.notice.php:89
|
6778 |
+
#: views/b2s/post.publish.php:86 views/b2s/widgets/posts.php:61
|
6779 |
msgid "You are sure, you want to delete entries from the reporting?"
|
6780 |
msgstr "Bist Du sicher, dass Du Einträge aus dem Reporting löschen möchtest?"
|
6781 |
|
6782 |
+
#: views/b2s/post.sched.php:104 views/b2s/repost.php:107
|
6783 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
6784 |
msgstr "Bist Du sicher, dass Du Einträge aus Deiner Planung löschen möchtest?"
|
6785 |
|
6833 |
"Twitter ändern, indem Du die folgenden Felder für die Twitter Card Tags "
|
6834 |
"bearbeitest"
|
6835 |
|
6836 |
+
#: views/b2s/html/header.php:534 views/b2s/html/header.php:572
|
6837 |
msgid ""
|
6838 |
"You can now track the performance of your post directly in Blog2Social, and "
|
6839 |
"you can test it exclusively and for free!"
|
6841 |
"Ab sofort stehen Dir Daten zur Performance Deiner Beiträge direkt in "
|
6842 |
"Blog2Social zur Verfügung, und Du kannst es exklusiv und kostenlos testen!"
|
6843 |
|
6844 |
+
#: views/b2s/metrics.php:197
|
6845 |
msgid ""
|
6846 |
"You can now track the performance of your posts directly in Blog2Social, "
|
6847 |
"starting with Facebook and Twitter, as well as other networks to follow. And "
|
6852 |
"weiteren Netzwerken, die folgen werden. Und Du kannst es exklusiv und "
|
6853 |
"kostenlos testen!"
|
6854 |
|
6855 |
+
#: views/b2s/metrics.php:236
|
6856 |
msgid ""
|
6857 |
"You can now track the performance of your posts for Facebook and Twitter "
|
6858 |
"directly in Blog2Social. With these Social Media Metrics, you can analyze "
|
6876 |
"Du kannst Deine Verbindung nur mit Blog-Benutzern teilen, die dieselbe "
|
6877 |
"Lizenz verwenden wie Du."
|
6878 |
|
6879 |
+
#: views/b2s/ship.php:322
|
6880 |
msgid ""
|
6881 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
6882 |
"different choice of networks, profiles, pages or groups, or with different "
|
6902 |
"geführt, wo Deine Netzwerke, Texte und Bilder auswählen oder variieren "
|
6903 |
"kannst. "
|
6904 |
|
6905 |
+
#: views/b2s/ship.php:356
|
6906 |
msgid ""
|
6907 |
"You can save your current network selection. This network selection will be "
|
6908 |
"loaded automatically next time you open the social media post editor via "
|
6922 |
"Du kannst verschiedene Netzwerk-Gruppierungen auswählen und für verschiedene "
|
6923 |
"Zwecke speichern."
|
6924 |
|
6925 |
+
#: views/b2s/curation.php:355
|
6926 |
#| msgid ""
|
6927 |
#| "You can select to share your post as link post, video link post, or "
|
6928 |
#| "image post on the following social networks:"
|
6933 |
"Du kannst einen Link-Beitrag, einen Video-Link-Beitrag oder einen Bild-"
|
6934 |
"Beitrag auf den folgenden Social-Media-Netzwerken teilen:"
|
6935 |
|
6936 |
+
#: views/b2s/curation.php:280
|
6937 |
msgid "You can share a text post on the following networks:"
|
6938 |
msgstr "Du kannst einen Textbeitrag in den folgenden Netzwerken teilen:"
|
6939 |
|
6940 |
+
#: views/b2s/metrics.php:239
|
6941 |
msgid ""
|
6942 |
"You can track the following Social Media Metrics depending on the social "
|
6943 |
"networks:"
|
6968 |
"unterstützt werden, erhältst Du in dem \n"
|
6969 |
"<a href=\"%s\" target=\"_blank\">\"Link-Shortener\"-Guide</a>."
|
6970 |
|
6971 |
+
#: views/b2s/html/header.php:115
|
6972 |
msgid ""
|
6973 |
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
6974 |
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
6988 |
msgid "You have already retweeted this post."
|
6989 |
msgstr "Du hast diesen Post bereits retweetet."
|
6990 |
|
6991 |
+
#: views/b2s/html/header.php:109
|
6992 |
msgid ""
|
6993 |
"You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
|
6994 |
"that you use only one plugin to set social meta tags so that the networks "
|
6999 |
"damit die Netzwerke die Link-Vorschau Deines Beitrags korrekt anzeigen "
|
7000 |
"können."
|
7001 |
|
7002 |
+
#: views/b2s/html/header.php:98
|
7003 |
msgid "You have deleted all meta data for posts and pages successfully."
|
7004 |
msgstr "Du hast alle Meta-Daten für Beiträge und Seiten erfolgreich gelöscht."
|
7005 |
|
7006 |
+
#: views/b2s/curation.php:181 views/b2s/dashboard.php:257
|
7007 |
+
#: views/b2s/post.calendar.php:287 views/b2s/ship.php:431
|
7008 |
msgid ""
|
7009 |
"You have evergreen content you want to re-share from time to time in your "
|
7010 |
"timeline? Schedule your evergreen content to be shared once, multiple times "
|
7014 |
"teilen? Teile Deine Evergreen Inhalte einmal, mehrmals oder in einem "
|
7015 |
"wiederkehrenden Rhythmus"
|
7016 |
|
7017 |
+
#: includes/B2S/Post/Item.php:401
|
7018 |
msgid "You have no posts in your queue."
|
7019 |
msgstr "Du hast noch keine Beiträge in Deiner Warteschlange."
|
7020 |
|
7022 |
msgid "You have no posts published or scheduled"
|
7023 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant"
|
7024 |
|
7025 |
+
#: includes/B2S/Post/Item.php:403
|
7026 |
msgid "You have not published or scheduled any posts."
|
7027 |
msgstr "Du hast keine Beiträge veröffentlicht oder geplant."
|
7028 |
|
7029 |
+
#: includes/B2S/Post/Item.php:397
|
7030 |
msgid "You have not saved any drafts."
|
7031 |
msgstr "Du hast keine Entwürfe gespeichert."
|
7032 |
|
7033 |
+
#: views/b2s/post.favorites.php:74 includes/B2S/Post/Item.php:399
|
7034 |
msgid "You have not saved any favorites."
|
7035 |
msgstr "Du hast keine Favoriten gespeichert."
|
7036 |
|
7037 |
+
#: views/b2s/network.php:391 views/b2s/ship.php:645
|
7038 |
msgid ""
|
7039 |
"You have not yet created any pinboards in your Pinterest account. Please set "
|
7040 |
"up at least one pinboard to pin on your Pinterest account!"
|
7047 |
msgstr ""
|
7048 |
"Du hast noch ausstehende Veröffentlichungen für dieses Netzwerk geplant:"
|
7049 |
|
7050 |
+
#: views/b2s/autopost.php:27 views/b2s/settings.php:24
|
7051 |
#: includes/B2S/Ship/Image.php:29
|
7052 |
msgid ""
|
7053 |
"You need a higher user role to upload an image on this blog. Please contact "
|
7056 |
"Du brauchst eine höhere Benutzerrolle, um ein Bild auf diesem Blog "
|
7057 |
"hochzuladen. Bitte kontaktiere Deinen Administrator."
|
7058 |
|
7059 |
+
#: views/b2s/support.php:143
|
7060 |
msgid ""
|
7061 |
"You need admin rights to use the Troubleshooting-Tool. Please contact your "
|
7062 |
"administrator."
|
7068 |
msgid "You need at least one network collection"
|
7069 |
msgstr "Du brauchst mindestens eine Netzwerkgruppierung."
|
7070 |
|
7071 |
+
#: views/b2s/ship.php:325
|
7072 |
msgid "You want re-share your blog post?"
|
7073 |
msgstr "Du möchtest Deinen Beitrag erneut teilen?"
|
7074 |
|
7082 |
msgstr ""
|
7083 |
"Möchtest Du das Bild, den Titel und die Beschreibung für Deinen Post ändern?"
|
7084 |
|
7085 |
+
#: includes/B2S/Ship/Item.php:511 includes/B2S/Ship/Item.php:572
|
7086 |
+
#: includes/B2S/Ship/Item.php:631 includes/B2S/Ship/Item.php:712
|
7087 |
+
#: includes/B2S/Ship/Item.php:740 includes/B2S/Ship/Item.php:768
|
7088 |
+
#: includes/B2S/Ship/Item.php:796
|
7089 |
msgid ""
|
7090 |
"You want to change your link image, link title and link description for this "
|
7091 |
"network? Click here."
|
7092 |
msgstr ""
|
7093 |
"Du möchtest das Bild, den Titel und die Beschreibung ändern? Hier Klicken."
|
7094 |
|
7095 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Ship/Portale.php:48
|
7096 |
msgid "You want to connect a network page?"
|
7097 |
msgstr "Du möchtest eine Netzwerk-Seite verbinden?"
|
7098 |
|
7099 |
+
#: includes/B2S/Network/Item.php:184 includes/B2S/Network/Item.php:188
|
7100 |
+
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:201
|
7101 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:59
|
7102 |
#: includes/B2S/Ship/Portale.php:63 includes/B2S/Ship/Portale.php:65
|
7103 |
msgid "You want to connect a network profile?"
|
7104 |
msgstr "Du möchtest Dich mit einem Netzwerkprofil verbinden?"
|
7105 |
|
7106 |
+
#: includes/B2S/Network/Item.php:211 includes/B2S/Ship/Portale.php:37
|
7107 |
msgid "You want to connect a social media group?"
|
7108 |
msgstr "Du möchtest eine Social-Media-Gruppe verbinden?"
|
7109 |
|
7110 |
+
#: views/b2s/network.php:388 views/b2s/network.php:389 views/b2s/ship.php:642
|
7111 |
+
#: views/b2s/ship.php:643
|
7112 |
#, php-format
|
7113 |
msgid ""
|
7114 |
"You want to connect an additional account? <a target=\"_blank\" href=\"%s\">"
|
7117 |
"Du möchtest ein zusätzliches Konto verbinden? <a target=\"_blank\" "
|
7118 |
"href=\"%s\">Upgrade auf Blog2Social Premium</a>"
|
7119 |
|
7120 |
+
#: views/b2s/curation.php:216
|
7121 |
msgid "You want to create image posts with any image from your media library?"
|
7122 |
msgstr ""
|
7123 |
"Möchtest Du Bild-Posts mit einem beliebigen Bild aus Deiner Mediathek "
|
7124 |
"erstellen?"
|
7125 |
|
7126 |
+
#: views/b2s/curation.php:217
|
7127 |
msgid "You want to create text posts?"
|
7128 |
msgstr "Möchtest Du Text-Posts erstellen?"
|
7129 |
|
7130 |
+
#: views/b2s/network.php:41
|
7131 |
msgid "You want to define a new combination of networks?"
|
7132 |
msgstr "Du möchtest eine neue Kombination von Netzwerken anlegen?"
|
7133 |
|
7134 |
+
#: includes/B2S/Post/Item.php:856 includes/B2S/Post/Item.php:869
|
7135 |
msgid "You want to delete a publish post entry?"
|
7136 |
msgstr "Du möchtest einen veröffentlichten Beitrag löschen?"
|
7137 |
|
7138 |
+
#: includes/B2S/Post/Item.php:931
|
7139 |
msgid "You want to delete your Social Media post?"
|
7140 |
msgstr "Du möchtest Deinen Social Media Post löschen?"
|
7141 |
|
7142 |
+
#: includes/B2S/Post/Item.php:986
|
7143 |
msgid "You want to edit your scheduled post?"
|
7144 |
msgstr "Sie möchten Ihre vorgeplanten Beiträge bearbeiten?"
|
7145 |
|
7146 |
+
#: views/b2s/ship.php:73
|
7147 |
msgid "You want to load your time settings?"
|
7148 |
msgstr "Du möchtest Deine Zeiten laden?"
|
7149 |
|
7150 |
+
#: views/b2s/curation.php:178 views/b2s/dashboard.php:254
|
7151 |
+
#: views/b2s/post.calendar.php:284 views/b2s/ship.php:428
|
7152 |
msgid ""
|
7153 |
"You want to publish a post on a specific date? No problem! Just enter your "
|
7154 |
"desired date and you are ready to go!"
|
7156 |
"Du möchtest einen Beitrag an einem ganz bestimmten Datum veröffentlichen? "
|
7157 |
"Kein Problem! Stelle einfach Dein Wunschdatum ein und los geht’s!"
|
7158 |
|
7159 |
+
#: views/b2s/network.php:55 views/b2s/ship.php:79 views/b2s/ship.php:391
|
7160 |
#: views/b2s/html/footer.php:256
|
7161 |
msgid "You want to schedule your posts and use the Best Time Scheduler?"
|
7162 |
msgstr ""
|
7163 |
"Du möchtest die Veröffentlichung Deiner Posts planen und den Beste Zeiten "
|
7164 |
"Manager benutzen?"
|
7165 |
|
7166 |
+
#: views/b2s/settings.php:108
|
7167 |
#, php-format
|
7168 |
msgid ""
|
7169 |
"You will find more information about the pre-defined best time settings by "
|
7173 |
"Blog2Social findest Du in diesem <a href=\"%s\" target=\"_blank\">\"Beste "
|
7174 |
"Zeiten\"-Guide</a>."
|
7175 |
|
7176 |
+
#: views/b2s/network.php:687 views/b2s/ship.php:743
|
7177 |
#, php-format
|
7178 |
msgid ""
|
7179 |
"You will find more information and detailed instructions in the <a "
|
7182 |
"Mehr Informationen und eine ausführliche Anleitung erhältst Du im <a "
|
7183 |
"href=\"%s\" target=\"_blank\">\"Instagram Business\"-Leitfaden</a>."
|
7184 |
|
7185 |
+
#: views/b2s/settings.php:101
|
7186 |
#, php-format
|
7187 |
msgid ""
|
7188 |
"You will find more information on how to connect your social media networks "
|
7193 |
"Netzwerke”-Guide</a> erhältst Du mehr Informationen darüber, wie Du Deine "
|
7194 |
"Social-Media-Netzwerke verbinden kannst."
|
7195 |
|
7196 |
+
#: views/b2s/settings.php:125
|
7197 |
#, php-format
|
7198 |
msgid ""
|
7199 |
"You will find more information on how to use post templates for your social "
|
7212 |
"Mehr Informationen dazu, wie Du die Einstellungen zuweisen kannst, findest "
|
7213 |
"Du in diesem <a target=\"_blank\" href=\"%s\">Auto-Poster-Guide</a>. "
|
7214 |
|
7215 |
+
#: views/b2s/dashboard.php:27
|
7216 |
msgid "Your Activity"
|
7217 |
msgstr "Deine Aktivität"
|
7218 |
|
7219 |
+
#: views/b2s/html/header.php:190
|
7220 |
msgid "Your authorization could not be removed."
|
7221 |
msgstr "Deine Autorisierung konnte nicht entfernt werden."
|
7222 |
|
7223 |
+
#: views/b2s/html/header.php:195
|
7224 |
msgid "Your authorization has been removed successfully."
|
7225 |
msgstr "Deine Autorisierung wurde erfolgreich entfernt."
|
7226 |
|
7243 |
"den Blog2Social-Netzwerkeinstellungen erneut. <a target=\"_blank\" "
|
7244 |
"href=\"%s\">So verbindest Du Dein Konto neu.</a>"
|
7245 |
|
7246 |
+
#: views/b2s/html/header.php:175
|
7247 |
msgid "Your authorization was successful."
|
7248 |
msgstr "Deine Autorisierung war erfolgreich."
|
7249 |
|
7250 |
+
#: views/b2s/ship.php:374
|
7251 |
msgid "Your blog post is not yet published on your Wordpress!"
|
7252 |
msgstr "Dein Beitrag ist derzeit nicht auf Deinem Wordpress veröffentlicht."
|
7253 |
|
7287 |
"auf Twitter, wenn Du die Meta Tag Optionen für Twitter in Deinen Blog2Social "
|
7288 |
"<a target=\"_blank\" href=\"%s\">Einstellungen</a> manuell deaktiviert hast."
|
7289 |
|
7290 |
+
#: views/b2s/post.php:22
|
7291 |
+
msgid "Your complete social media management in one place"
|
7292 |
+
msgstr "Dein komplettes Social-Media-Management an einem Ort"
|
7293 |
+
|
7294 |
+
#: views/b2s/premium.php:15 includes/B2S/AutoPost/Item.php:145
|
7295 |
msgid "Your current license:"
|
7296 |
msgstr "Deine aktuelle Lizenz:"
|
7297 |
|
7298 |
+
#: views/b2s/html/header.php:91
|
7299 |
msgid "Your daily limit for posting automatically has been reached."
|
7300 |
msgstr "Dein tägliches Limit für Autoposter-Beiträge ist erreicht."
|
7301 |
|
7310 |
msgid "Your daily limit has been reached."
|
7311 |
msgstr "Dein tägliches Beitragslimit wurde erreicht."
|
7312 |
|
7313 |
+
#: views/b2s/html/header.php:445
|
7314 |
msgid "Your entered License Key is invalid. Please contact support!"
|
7315 |
msgstr ""
|
7316 |
"Der eingegebene Lizenzschlüssel ist ungültig. Bitte wende Dich an unseren "
|
7336 |
"Erfahre, wie Du die Facebook-Seiteneinstellungen prüfen und ändern kannst."
|
7337 |
"</a>"
|
7338 |
|
7339 |
+
#: views/b2s/html/header.php:205
|
7340 |
msgid "Your feedback could not be delivered."
|
7341 |
msgstr "Dein Feedback konnte nicht gesendet werden."
|
7342 |
|
7343 |
+
#: views/b2s/html/header.php:298
|
7344 |
msgid "Your free Blog2Social Premium trial version is activated for "
|
7345 |
msgstr "Deine Blog2Social kostenlose Premium Testversion ist aktiviert für"
|
7346 |
|
7347 |
+
#: views/b2s/html/header.php:339
|
7348 |
+
msgid "Your free Premium trial ends soon. "
|
7349 |
+
msgstr "Deine kostenlose Premium Testphase endet bald."
|
7350 |
+
|
7351 |
+
#: views/b2s/html/header.php:565
|
7352 |
+
#, php-format
|
7353 |
+
msgid ""
|
7354 |
+
"Your free trial of Blog2Social Premium expires in %d days. Don’t miss to "
|
7355 |
+
"upgrade before your trial expires to keep all your benefits and individual "
|
7356 |
+
"settings."
|
7357 |
+
msgstr ""
|
7358 |
+
"Deine kostenlose Testphase endet in %d Tagen. Vergiss nicht, ein Upgrade "
|
7359 |
+
"durchzuführen, bevor Deine Testphase abläuft, damit Du alle Vorteile und "
|
7360 |
+
"individuelle Einstellungen behältst."
|
7361 |
+
|
7362 |
+
#: views/b2s/html/header.php:320
|
7363 |
msgid "Your free trial of Blog2Social PREMIUM has ended."
|
7364 |
msgstr "Ihre kostenlose Testversion von Blog2Social PREMIUM ist beendet."
|
7365 |
|
7366 |
+
#: views/b2s/html/header.php:626
|
7367 |
+
msgid ""
|
7368 |
+
"Your free trial of Blog2Social Premium has expired. We hope you explored and "
|
7369 |
+
"enjoyed all the Premium options."
|
7370 |
+
msgstr ""
|
7371 |
+
"Deine kostenlose Testphase von Blog2Social Premium ist beendet. Wir hoffen, "
|
7372 |
+
"dass Du alle Premium-Funktionen testen konntest und sie Dir gefallen."
|
7373 |
+
|
7374 |
#: includes/Loader.php:952
|
7375 |
msgid "Your group can not be found by the network."
|
7376 |
msgstr "Deine Gruppe kann vom Netzwerk nicht gefunden werden."
|
7377 |
|
7378 |
+
#: views/b2s/html/header.php:461
|
7379 |
msgid "Your license key has reached the maximum number of users."
|
7380 |
msgstr "Dein Lizenzschlüssel hat die maximale Anzahl von Benutzern erreicht."
|
7381 |
|
7382 |
+
#: views/b2s/html/header.php:244
|
7383 |
msgid ""
|
7384 |
"Your limit for your quota of posts in your queue has been reached. Please "
|
7385 |
"delete posts from your queue before you add more"
|
7418 |
"Dein Beitrag kann nicht veröffentlicht werden, da Dein Bild nicht verfügbar "
|
7419 |
"ist oder die Bildquelle es nicht erlaubt zu veröffentlichen"
|
7420 |
|
7421 |
+
#: includes/B2S/Calendar/Item.php:536 includes/B2S/Post/Item.php:787
|
7422 |
+
#: includes/B2S/Ship/Save.php:491
|
7423 |
#, php-format
|
7424 |
msgid ""
|
7425 |
"Your post could not be posted. More information in this <a href=\"%s\" "
|
7442 |
"geplant ist. Dann kannst Du Deinen Beitrag mit Blog2Social anpassen und "
|
7443 |
"planen."
|
7444 |
|
7445 |
+
#: views/b2s/html/header.php:185
|
7446 |
msgid "Your profile could not be saved."
|
7447 |
msgstr "Dein Profil konnte nicht gespeichert werden."
|
7448 |
|
7449 |
+
#: views/b2s/html/header.php:180
|
7450 |
msgid "Your profile was saved successful."
|
7451 |
msgstr "Dein Profil wurde erfolgreich gespeichert. "
|
7452 |
|
7454 |
msgid "Your profiles:"
|
7455 |
msgstr "weitere Profile:"
|
7456 |
|
7457 |
+
#: views/b2s/ship.php:358
|
7458 |
msgid ""
|
7459 |
"Your saved networks will be activated for your schedule (green checkmark) in "
|
7460 |
"the right side navigation. You can select or deselect social network "
|
7467 |
"Schaltfläche \"+ Mehr hinzufügen\", im obersten Feld der Navigation, neue "
|
7468 |
"Netzwerke verbinden."
|
7469 |
|
7470 |
+
#: views/b2s/html/header.php:222
|
7471 |
msgid ""
|
7472 |
"Your settings could not be saved, because you have auto-posting enabled but "
|
7473 |
"no social networks selected."
|
7475 |
"Deine Einstellungen konnten nicht gespeichert werden, da Du keine sozialen "
|
7476 |
"Netzwerke ausgewählt hast, bevor Du den Auto-Poster aktiviert hast."
|
7477 |
|
7478 |
+
#: views/b2s/html/header.php:217
|
7479 |
msgid "Your settings could not be saved."
|
7480 |
msgstr "Deine Einstellungen konnten nicht gespeichert werden."
|
7481 |
|
7482 |
+
#: views/b2s/html/header.php:212 views/b2s/html/header.php:227
|
7483 |
msgid "Your settings were successfully saved."
|
7484 |
msgstr "Deine Einstellungen wurden erfolgreich gespeichert. "
|
7485 |
|
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: 2022-
|
7 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
"Language-Team: \n"
|
@@ -15,19 +15,27 @@ msgstr ""
|
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.2.0; wp-5.0.3"
|
17 |
|
18 |
-
#: views/b2s/html/header.php:
|
19 |
msgid " Days"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: views/b2s/html/header.php:
|
23 |
msgid " or upgade your Blog2Social license to extend your quota."
|
24 |
msgstr ""
|
25 |
|
26 |
-
#: views/b2s/html/header.php:
|
27 |
msgid " today"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgid "\"Social Media Posts\" consisting of a link, video, image or text."
|
32 |
msgstr ""
|
33 |
|
@@ -44,11 +52,11 @@ msgstr ""
|
|
44 |
msgid "(SMART)"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: includes/B2S/Network/Item.php:
|
48 |
msgid "+ add Parameter"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: includes/B2S/Ship/Save.php:
|
52 |
msgid ""
|
53 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
54 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
@@ -56,7 +64,7 @@ msgid ""
|
|
56 |
"and you can click on \"Share\" to post it to your Facebook Profile instantly."
|
57 |
msgstr ""
|
58 |
|
59 |
-
#: includes/B2S/Ship/Save.php:
|
60 |
msgid ""
|
61 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
62 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
@@ -64,31 +72,31 @@ msgid ""
|
|
64 |
"tab and you can click on \"Share\" to post it to your account instantly."
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: includes/B2S/Ship/Save.php:
|
68 |
msgid ""
|
69 |
"-To share your post immediately, click the \"Share\" button next to your "
|
70 |
"selected Facebook profile below."
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: includes/B2S/Ship/Save.php:
|
74 |
msgid ""
|
75 |
"-To share your post immediately, click the \"Share\" button next to your "
|
76 |
"selected Google+ account below."
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: views/b2s/autopost.php:
|
80 |
msgid ""
|
81 |
"1. for auto-posting your original Wordpress content (posts, pages and media)"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: views/b2s/autopost.php:
|
85 |
#, php-format
|
86 |
msgid ""
|
87 |
"1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
|
88 |
"target=\"_blank\">How do I activate my license key?</a>)"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: views/b2s/network.php:680 views/b2s/ship.php:
|
92 |
msgid "1. Your Instagram account is set to \"Business\" and not \"Creator\"."
|
93 |
msgstr ""
|
94 |
|
@@ -104,27 +112,27 @@ msgstr ""
|
|
104 |
msgid "1x publish report"
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: views/b2s/autopost.php:
|
108 |
msgid ""
|
109 |
"2. for auto-posting imported posts (imported RSS feeds or posts created / "
|
110 |
"imported with another plugin). "
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: views/b2s/autopost.php:
|
114 |
msgid ""
|
115 |
"2. has the selected social media networks connected or assigned (Blog2Social "
|
116 |
"-> Networks)"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: views/b2s/network.php:682 views/b2s/ship.php:
|
120 |
msgid "2. Your Instagram account is linked to a Facebook page."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: views/b2s/network.php:684 views/b2s/ship.php:
|
124 |
msgid "3. Blog2Social has the permission to publish your posts."
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: views/b2s/autopost.php:
|
128 |
msgid "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
|
129 |
msgstr ""
|
130 |
|
@@ -135,7 +143,7 @@ msgid ""
|
|
135 |
"sites or groups.</a>"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: views/b2s/autopost.php:
|
139 |
#, php-format
|
140 |
msgid ""
|
141 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
@@ -143,14 +151,14 @@ msgid ""
|
|
143 |
"Troubleshooting</a>"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: views/b2s/autopost.php:
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
150 |
"content</a>"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: views/b2s/autopost.php:
|
154 |
#, php-format
|
155 |
msgid ""
|
156 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
@@ -158,28 +166,28 @@ msgid ""
|
|
158 |
"Troubleshooting</a>"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: views/b2s/autopost.php:
|
162 |
#, php-format
|
163 |
msgid ""
|
164 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
165 |
"original WordPress posts</a>"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: includes/Loader.php:
|
169 |
#, php-format
|
170 |
msgid ""
|
171 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
172 |
"our FAQ</a>"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: views/b2s/autopost.php:
|
176 |
#, php-format
|
177 |
msgid ""
|
178 |
"<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-Poster-"
|
179 |
" Things to check for Troubleshooting</a>"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: views/b2s/autopost.php:
|
183 |
#, php-format
|
184 |
msgid ""
|
185 |
"<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
|
@@ -211,7 +219,7 @@ msgid ""
|
|
211 |
"Blog2Social to continue to use the latest version of the plugin."
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: views/b2s/support.php:
|
215 |
#, php-format
|
216 |
msgid ""
|
217 |
"<b>Already registered?</b> <a href=\"%s\" target=\"_blank\">Login to your "
|
@@ -235,18 +243,18 @@ msgid ""
|
|
235 |
"any time."
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: views/b2s/ship.php:
|
239 |
msgid "About Xing guidelines for crossposting in groups"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: views/b2s/network.php:395 views/b2s/ship.php:
|
243 |
msgid ""
|
244 |
"Access to this resource on your server is denied! Please check your "
|
245 |
"webserver configuration for caching."
|
246 |
msgstr ""
|
247 |
|
248 |
#: includes/B2S/Settings/Item.php:54 includes/B2S/Settings/Item.php:89
|
249 |
-
#: includes/B2S/Ship/Item.php:
|
250 |
msgid "Account"
|
251 |
msgstr ""
|
252 |
|
@@ -258,7 +266,7 @@ msgstr ""
|
|
258 |
msgid "Activate Blog2Social PREMIUM PRO."
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/B2S/Network/Item.php:
|
262 |
msgid "Activate Instant Caching"
|
263 |
msgstr ""
|
264 |
|
@@ -270,7 +278,7 @@ msgstr ""
|
|
270 |
msgid "Activate Legacy mode "
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: views/b2s/premium.php:
|
274 |
msgid "Activate License"
|
275 |
msgstr ""
|
276 |
|
@@ -278,43 +286,55 @@ msgstr ""
|
|
278 |
msgid "activated"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/Tools.php:
|
282 |
msgid "Activities"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgid "Add a link-URL to the end of my image post."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/B2S/Network/Item.php:
|
290 |
msgid ""
|
291 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
292 |
"Instagram does not turn link-URLs into clickable links)"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#:
|
296 |
-
msgid "
|
|
|
|
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: views/b2s/premium.php:
|
300 |
msgid ""
|
301 |
"Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and "
|
302 |
"Twitter Cards to define the look of your link posts."
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: includes/B2S/Ship/Item.php:
|
306 |
msgid "add another post"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: views/b2s/network.php:635 views/b2s/ship.php:
|
310 |
msgid "Add Group"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: views/b2s/ship.php:
|
314 |
msgid "Add more..."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: views/b2s/premium.php:
|
318 |
msgid ""
|
319 |
"Add multiple users and accounts per network. Define sharing-profiles for "
|
320 |
"selected network bundles."
|
@@ -343,24 +363,24 @@ msgstr ""
|
|
343 |
msgid "Add Open Graph Object Type."
|
344 |
msgstr ""
|
345 |
|
346 |
-
#: views/b2s/network.php:616 views/b2s/ship.php:
|
347 |
msgid "Add Page"
|
348 |
msgstr ""
|
349 |
|
350 |
-
#: views/b2s/post.calendar.php:
|
351 |
-
#: views/b2s/repost.php:
|
352 |
msgid "add post"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: views/b2s/network.php:654 views/b2s/ship.php:
|
356 |
msgid "Add Profile"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: includes/B2S/Ship/Item.php:
|
360 |
msgid "Add Retweet"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: views/b2s/ship.php:
|
364 |
msgid "add Schedule"
|
365 |
msgstr ""
|
366 |
|
@@ -392,15 +412,15 @@ msgstr ""
|
|
392 |
msgid "add/change connection"
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: includes/B2S/Network/Item.php:
|
396 |
msgid "additional groups"
|
397 |
msgstr ""
|
398 |
|
399 |
-
#: includes/B2S/Network/Item.php:
|
400 |
msgid "additional pages"
|
401 |
msgstr ""
|
402 |
|
403 |
-
#: includes/B2S/Network/Item.php:
|
404 |
msgid "additional profiles"
|
405 |
msgstr ""
|
406 |
|
@@ -412,11 +432,11 @@ msgstr ""
|
|
412 |
msgid "Advanced settings"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: views/b2s/support.php:
|
416 |
msgid "Affiliate Program"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: views/b2s/metrics.php:
|
420 |
msgid ""
|
421 |
"After 24 hours, your post will be updated for the first time and you can see "
|
422 |
"the metrics under the menu item \"Social Media Metrics\". The social media "
|
@@ -424,7 +444,7 @@ msgid ""
|
|
424 |
"permanently recorded and can be accessed in the archive at any time."
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: views/b2s/metrics.php:
|
428 |
msgid "all"
|
429 |
msgstr ""
|
430 |
|
@@ -444,23 +464,15 @@ msgstr ""
|
|
444 |
msgid "all post types"
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: views/b2s/
|
448 |
-
msgid "All Posts"
|
449 |
-
msgstr ""
|
450 |
-
|
451 |
-
#: views/b2s/metrics.php:127
|
452 |
msgid "All posts"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: views/b2s/html/sidebar.php:110
|
456 |
-
msgid "all Posts"
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
#: includes/B2S/Post/Filter.php:60
|
460 |
msgid "all posts"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: views/b2s/autopost.php:
|
464 |
msgid ""
|
465 |
"All settings and social networks for the auto-poster can be defined for each "
|
466 |
"WordPress user individually."
|
@@ -504,8 +516,8 @@ msgstr ""
|
|
504 |
msgid "An error occured. Please contact our support."
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: views/b2s/network.php:369 views/b2s/network.php:387 views/b2s/ship.php:
|
508 |
-
#: views/b2s/ship.php:
|
509 |
msgid "An error occurred! Please try again."
|
510 |
msgstr ""
|
511 |
|
@@ -513,7 +525,7 @@ msgstr ""
|
|
513 |
msgid "An image is required to post on this social network."
|
514 |
msgstr ""
|
515 |
|
516 |
-
#: views/b2s/settings.php:
|
517 |
#, php-format
|
518 |
msgid ""
|
519 |
"An instruction on how to define your own best times is explained in the "
|
@@ -525,12 +537,12 @@ msgstr ""
|
|
525 |
msgid "An unknown error occurred!"
|
526 |
msgstr ""
|
527 |
|
528 |
-
#: views/b2s/html/header.php:
|
529 |
#, php-format
|
530 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/Tools.php:
|
534 |
msgid "Animals & Nature"
|
535 |
msgstr ""
|
536 |
|
@@ -538,16 +550,16 @@ msgstr ""
|
|
538 |
msgid "Apply best time settings"
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: views/b2s/autopost.php:
|
542 |
msgid "Apply best times"
|
543 |
msgstr ""
|
544 |
|
545 |
-
#: includes/B2S/Network/Item.php:
|
546 |
#, php-format
|
547 |
msgid "Apply for all %s connections"
|
548 |
msgstr ""
|
549 |
|
550 |
-
#: includes/B2S/Network/Item.php:
|
551 |
msgid "Apply for all connections"
|
552 |
msgstr ""
|
553 |
|
@@ -572,7 +584,7 @@ msgstr ""
|
|
572 |
msgid "Apply post template settings"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: includes/B2S/Ship/Item.php:
|
576 |
msgid "Apply Settings To All Networks"
|
577 |
msgstr ""
|
578 |
|
@@ -580,11 +592,11 @@ msgstr ""
|
|
580 |
msgid "Apply URL Parameters"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: views/b2s/metrics.php:
|
584 |
msgid "Archive"
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: views/b2s/support.php:
|
588 |
msgid ""
|
589 |
"Are you are experiencing incorrect images and/or titles being pulled by "
|
590 |
"Facebook or other social media platforms? Social Debugger or code validator "
|
@@ -592,7 +604,7 @@ msgid ""
|
|
592 |
"it's published and help you to fix inconsistencies and errors."
|
593 |
msgstr ""
|
594 |
|
595 |
-
#: views/b2s/post.approve.php:
|
596 |
msgid "Are you sure you want to delete these Social Media posts?"
|
597 |
msgstr ""
|
598 |
|
@@ -600,11 +612,11 @@ msgstr ""
|
|
600 |
msgid "Are you sure you want to delete this draft?"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: views/b2s/post.draft.php:
|
604 |
msgid "Are you sure you want to delete this Social Media draft?"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#: includes/Tools.php:
|
608 |
msgid "Argentina"
|
609 |
msgstr ""
|
610 |
|
@@ -616,8 +628,8 @@ msgstr ""
|
|
616 |
msgid "Assign the connection to other blog users"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: includes/B2S/Network/Item.php:
|
620 |
-
#: includes/B2S/Network/Item.php:
|
621 |
msgid "Assigned by"
|
622 |
msgstr ""
|
623 |
|
@@ -629,7 +641,7 @@ msgstr ""
|
|
629 |
msgid "at best times"
|
630 |
msgstr ""
|
631 |
|
632 |
-
#: views/b2s/ship.php:
|
633 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
634 |
msgstr ""
|
635 |
|
@@ -641,25 +653,25 @@ msgstr ""
|
|
641 |
msgid "at scheduled times"
|
642 |
msgstr ""
|
643 |
|
644 |
-
#: includes/Tools.php:
|
645 |
msgid "Australia"
|
646 |
msgstr ""
|
647 |
|
648 |
-
#: includes/Tools.php:
|
649 |
msgid "Austria"
|
650 |
msgstr ""
|
651 |
|
652 |
-
#: includes/B2S/Post/Item.php:
|
653 |
-
#: includes/B2S/Post/Item.php:
|
654 |
#: includes/PRG/Post/Item.php:121
|
655 |
msgid "Author"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: views/b2s/settings.php:
|
659 |
msgid "Author: The author of the post."
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: views/b2s/network.php:437 views/b2s/ship.php:
|
663 |
#: includes/B2S/Settings/Item.php:102
|
664 |
msgid "authorize"
|
665 |
msgstr ""
|
@@ -674,14 +686,14 @@ msgid ""
|
|
674 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: includes/Loader.php:917 views/b2s/settings.php:
|
678 |
-
#: views/b2s/html/sidebar.php:
|
679 |
msgid "Auto-Post"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:
|
683 |
-
#: views/b2s/dashboard.php:
|
684 |
-
#: views/b2s/ship.php:
|
685 |
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:67
|
686 |
#: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
|
687 |
#: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
|
@@ -690,8 +702,8 @@ msgstr ""
|
|
690 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: views/b2s/premium.php:
|
694 |
-
#: includes/B2S/Post/Item.php:
|
695 |
msgid "Auto-Posting"
|
696 |
msgstr ""
|
697 |
|
@@ -707,19 +719,19 @@ msgstr ""
|
|
707 |
msgid "Autoposter for Imported Posts"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: views/b2s/html/header.php:
|
711 |
msgid "Autoposter limit has been reached"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: views/b2s/support.php:
|
715 |
msgid "Autoposting, Sharing und Re-Sharing"
|
716 |
msgstr ""
|
717 |
|
718 |
-
#: includes/B2S/Network/Item.php:
|
719 |
msgid "Available accounts"
|
720 |
msgstr ""
|
721 |
|
722 |
-
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:
|
723 |
msgid "Available networks"
|
724 |
msgstr ""
|
725 |
|
@@ -731,23 +743,23 @@ msgstr ""
|
|
731 |
msgid "Available networks to select your auto-post connecitons:"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/Loader.php:
|
735 |
msgid "back to install plugins"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: views/b2s/html/header.php:
|
739 |
msgid ""
|
740 |
"Benefit from the new Social Media Metrics and use the analysis of your "
|
741 |
"social media posts for your further social media strategy."
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: includes/B2S/Network/Item.php:
|
745 |
msgid "Best Time Manager"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:
|
749 |
-
#: views/b2s/dashboard.php:
|
750 |
-
#: views/b2s/ship.php:
|
751 |
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
|
752 |
#: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
|
753 |
#: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
|
@@ -757,8 +769,8 @@ msgid ""
|
|
757 |
"social media posts"
|
758 |
msgstr ""
|
759 |
|
760 |
-
#: views/b2s/curation.php:
|
761 |
-
#: views/b2s/post.calendar.php:
|
762 |
msgid "Best Time Scheduler"
|
763 |
msgstr ""
|
764 |
|
@@ -767,21 +779,20 @@ msgstr ""
|
|
767 |
msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
|
768 |
msgstr ""
|
769 |
|
770 |
-
#: views/b2s/html/header.php:
|
771 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
772 |
msgstr ""
|
773 |
|
774 |
-
#: includes/B2S/Network/Item.php:
|
775 |
msgid "Best times"
|
776 |
msgstr ""
|
777 |
|
778 |
-
#: views/b2s/premium.php:
|
779 |
msgid "Best Times Manager"
|
780 |
msgstr ""
|
781 |
|
782 |
-
#:
|
783 |
-
#: views/b2s/
|
784 |
-
#: views/b2s/html/sidebar.php:135
|
785 |
msgid "BETA"
|
786 |
msgstr ""
|
787 |
|
@@ -790,11 +801,11 @@ msgid "Bitly"
|
|
790 |
msgstr ""
|
791 |
|
792 |
#: includes/Loader.php:920 includes/Loader.php:929
|
793 |
-
#: includes/B2S/Ship/Item.php:
|
794 |
msgid "Blog"
|
795 |
msgstr ""
|
796 |
|
797 |
-
#: includes/Loader.php:1063 views/b2s/html/sidebar.php:
|
798 |
#: views/b2s/html/sidebar.ship.php:24
|
799 |
msgid "Blog2Social"
|
800 |
msgstr ""
|
@@ -808,7 +819,7 @@ msgid ""
|
|
808 |
"or 12h (am/pm), by simply clicking on the button."
|
809 |
msgstr ""
|
810 |
|
811 |
-
#: views/b2s/autopost.php:
|
812 |
msgid ""
|
813 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
814 |
"defined in the general settings of your WordPress. You can select a user-"
|
@@ -817,7 +828,7 @@ msgid ""
|
|
817 |
"drop-down menu."
|
818 |
msgstr ""
|
819 |
|
820 |
-
#: views/b2s/html/sidebar.php:
|
821 |
msgid "Blog2Social Blog News"
|
822 |
msgstr ""
|
823 |
|
@@ -837,7 +848,7 @@ msgid ""
|
|
837 |
"higher, or ask your server administrator to do it for you."
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: views/b2s/html/header.php:
|
841 |
msgid ""
|
842 |
"Blog2Social has detected another plugin that is setting Social Meta tags for "
|
843 |
"your blog posts. To ensure that your Social Meta tags are set correctly for "
|
@@ -845,15 +856,15 @@ msgid ""
|
|
845 |
"Facebook Open Graph and Twitter Card Tags settings in your other plugins."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: views/b2s/html/header.php:
|
849 |
msgid "Blog2Social is a service of Adenion GmbH"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: includes/Loader.php:
|
853 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: views/b2s/html/header.php:
|
857 |
msgid ""
|
858 |
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
859 |
"autopilot, automatically schedule your social media posts with the Best Time "
|
@@ -863,8 +874,8 @@ msgid ""
|
|
863 |
"58 per month to benefit from PREMIUM features."
|
864 |
msgstr ""
|
865 |
|
866 |
-
#: views/b2s/curation.php:
|
867 |
-
#: views/b2s/post.calendar.php:
|
868 |
msgid "Blog2Social Premium covers everything you need."
|
869 |
msgstr ""
|
870 |
|
@@ -892,7 +903,7 @@ msgid ""
|
|
892 |
"each social network."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: views/b2s/html/header.php:
|
896 |
msgid "Blog2Social Troubleshooting-Tool"
|
897 |
msgstr ""
|
898 |
|
@@ -959,17 +970,17 @@ msgstr ""
|
|
959 |
msgid "Brand"
|
960 |
msgstr ""
|
961 |
|
962 |
-
#: views/b2s/support.php:
|
963 |
msgid "Browse the Blog2Social support community"
|
964 |
msgstr ""
|
965 |
|
966 |
-
#: includes/B2S/Network/Item.php:
|
967 |
msgid "BUSINESS"
|
968 |
msgstr ""
|
969 |
|
970 |
#: includes/Loader.php:923 includes/Loader.php:931
|
971 |
-
#: includes/B2S/Network/Item.php:
|
972 |
-
#: includes/B2S/Ship/Item.php:
|
973 |
msgid "Business"
|
974 |
msgstr ""
|
975 |
|
@@ -984,7 +995,7 @@ msgid ""
|
|
984 |
"post format. "
|
985 |
msgstr ""
|
986 |
|
987 |
-
#: views/b2s/html/header.php:
|
988 |
#, php-format
|
989 |
msgid ""
|
990 |
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
@@ -998,9 +1009,8 @@ msgid ""
|
|
998 |
"updated."
|
999 |
msgstr ""
|
1000 |
|
1001 |
-
#: includes/Loader.php:
|
1002 |
-
#: includes/B2S/RePost/Item.php:141 views/b2s/html/
|
1003 |
-
#: views/b2s/html/sidebar.php:128
|
1004 |
msgid "Calendar"
|
1005 |
msgstr ""
|
1006 |
|
@@ -1008,15 +1018,15 @@ msgstr ""
|
|
1008 |
msgid "Call-to-Action"
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#: includes/Tools.php:
|
1012 |
msgid "Canada"
|
1013 |
msgstr ""
|
1014 |
|
1015 |
-
#: includes/B2S/Ship/Item.php:
|
1016 |
msgid "Card Meta description"
|
1017 |
msgstr ""
|
1018 |
|
1019 |
-
#: includes/B2S/Ship/Item.php:
|
1020 |
msgid "Card Meta title"
|
1021 |
msgstr ""
|
1022 |
|
@@ -1036,21 +1046,24 @@ msgstr ""
|
|
1036 |
msgid "Change details"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: views/b2s/curation.php:
|
1040 |
-
#: includes/B2S/Ship/Item.php:
|
1041 |
-
#: includes/B2S/Ship/Item.php:
|
1042 |
-
#: includes/B2S/Ship/Item.php:
|
1043 |
-
#: includes/B2S/Ship/Item.php:
|
1044 |
-
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:
|
1045 |
-
#: includes/B2S/Ship/Item.php:
|
1046 |
-
#: includes/B2S/Ship/Item.php:
|
1047 |
-
#: includes/B2S/Ship/Item.php:
|
1048 |
-
#: includes/B2S/Ship/Item.php:
|
1049 |
-
#: includes/B2S/Ship/Item.php:
|
1050 |
-
#: includes/B2S/Ship/Item.php:
|
1051 |
-
#: includes/B2S/Ship/Item.php:
|
1052 |
-
#: includes/B2S/Ship/Item.php:
|
1053 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
|
|
|
|
1054 |
msgid "Change image"
|
1055 |
msgstr ""
|
1056 |
|
@@ -1062,7 +1075,7 @@ msgstr ""
|
|
1062 |
msgid "Change successful"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
-
#: views/b2s/ship.php:
|
1066 |
msgid "change website address"
|
1067 |
msgstr ""
|
1068 |
|
@@ -1076,25 +1089,25 @@ msgstr ""
|
|
1076 |
msgid "Channel"
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: views/b2s/network.php:328 includes/B2S/Network/Item.php:
|
1080 |
msgid "Character limit"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#: includes/B2S/Network/Item.php:
|
1084 |
-
#: includes/B2S/Network/Item.php:
|
1085 |
-
#: includes/B2S/Network/Item.php:
|
1086 |
-
#: includes/B2S/Ship/Item.php:
|
1087 |
-
#: includes/B2S/Ship/Item.php:
|
1088 |
-
#: includes/B2S/Ship/Item.php:
|
1089 |
-
#: includes/B2S/Ship/Item.php:
|
1090 |
msgid "characters"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: views/b2s/dashboard.php:
|
1094 |
msgid "Chart"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
-
#: views/b2s/html/header.php:
|
1098 |
msgid ""
|
1099 |
"Check out Blog2Social Premium with more awesome features for scheduling and "
|
1100 |
"sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
|
@@ -1106,20 +1119,20 @@ msgstr ""
|
|
1106 |
msgid "Check Settings with Sharing-Debugger"
|
1107 |
msgstr ""
|
1108 |
|
1109 |
-
#: views/b2s/metrics.php:
|
1110 |
msgid "Check Social Media Metrics"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
#: views/b2s/settings.php:
|
1114 |
msgid "Check, edit or define your social media time settings"
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: includes/Tools.php:
|
1118 |
msgid "Chile"
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: views/b2s/dashboard.php:
|
1122 |
-
#: views/b2s/post.sched.php:
|
1123 |
msgid "Choose your"
|
1124 |
msgstr ""
|
1125 |
|
@@ -1132,15 +1145,15 @@ msgstr ""
|
|
1132 |
msgid "City"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
-
#: includes/B2S/Ship/Item.php:
|
1136 |
msgid "Classified Ads"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#: includes/B2S/Network/Item.php:
|
1140 |
msgid "clear"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
-
#: views/b2s/support.php:
|
1144 |
msgid ""
|
1145 |
"Click here to find the right license for your needs or to contact the sales "
|
1146 |
"team for any payment issues."
|
@@ -1156,7 +1169,7 @@ msgstr ""
|
|
1156 |
msgid "Click on \"continue\""
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: views/b2s/post.sched.php:
|
1160 |
msgid "Clock"
|
1161 |
msgstr ""
|
1162 |
|
@@ -1164,15 +1177,15 @@ msgstr ""
|
|
1164 |
msgid "clock"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: includes/Tools.php:
|
1168 |
msgid "Colombia"
|
1169 |
msgstr ""
|
1170 |
|
1171 |
-
#: views/b2s/metrics.php:
|
1172 |
msgid "Comments"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: views/b2s/metrics.php:
|
1176 |
msgid "Comments: A count of how many times the post has been replied to."
|
1177 |
msgstr ""
|
1178 |
|
@@ -1192,25 +1205,25 @@ msgstr ""
|
|
1192 |
msgid "Company-Page (Employer Branding Profile)"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: views/b2s/metrics.php:
|
1196 |
msgid "Comparison of Social Media Metrics"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: views/b2s/network.php:438 views/b2s/network.php:440 views/b2s/ship.php:
|
1200 |
-
#: views/b2s/ship.php:
|
1201 |
msgid "confirm"
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: views/b2s/ship.php:
|
1205 |
msgid "connect"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: includes/B2S/Network/Item.php:
|
1209 |
-
#: includes/B2S/Network/Item.php:
|
1210 |
-
#: includes/B2S/Network/Item.php:
|
1211 |
-
#: includes/B2S/Network/Item.php:
|
1212 |
-
#: includes/B2S/Network/Item.php:
|
1213 |
-
#: includes/B2S/Network/Item.php:
|
1214 |
#: includes/B2S/Ship/Portale.php:37 includes/B2S/Ship/Portale.php:37
|
1215 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:46
|
1216 |
#: includes/B2S/Ship/Portale.php:48 includes/B2S/Ship/Portale.php:48
|
@@ -1221,42 +1234,42 @@ msgstr ""
|
|
1221 |
msgid "Connect %s"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: views/b2s/settings.php:
|
1225 |
msgid ""
|
1226 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1227 |
"share your WordPress blog posts and pages as well as imported posts and "
|
1228 |
"social media posts on. The following networks are available:"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: views/b2s/ship.php:
|
1232 |
msgid "Connect for"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: views/b2s/network.php:673 views/b2s/ship.php:
|
1236 |
msgid "Connect Instagram Business Account"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: views/b2s/network.php:344 views/b2s/ship.php:
|
1240 |
msgid "Connect with Pinterest"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: views/b2s/settings.php:
|
1244 |
msgid "Connect your social media networks"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: views/b2s/support.php:
|
1248 |
msgid "Connecting Social Networks"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
-
#: includes/B2S/Network/Item.php:
|
1252 |
msgid "Connection currently assigned to"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: includes/B2S/Ship/Item.php:
|
1256 |
msgid "Connection expires on 2 April 2019"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: includes/B2S/Ship/Item.php:
|
1260 |
msgid "Connection expires on 31 March 2019"
|
1261 |
msgstr ""
|
1262 |
|
@@ -1264,12 +1277,12 @@ msgstr ""
|
|
1264 |
msgid "Connection is broken..."
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/B2S/Network/Item.php:
|
1268 |
-
#: includes/B2S/Network/Item.php:
|
1269 |
msgid "Connection is interrupted since"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/B2S/AutoPost/Item.php:246 includes/B2S/Network/Item.php:
|
1273 |
msgid "Connections"
|
1274 |
msgstr ""
|
1275 |
|
@@ -1277,25 +1290,21 @@ msgstr ""
|
|
1277 |
msgid "Contact Details"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/B2S/Network/Item.php:
|
1281 |
msgid "Content"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: views/b2s/
|
1285 |
-
msgid "Content Library"
|
1286 |
-
msgstr ""
|
1287 |
-
|
1288 |
-
#: views/b2s/settings.php:118
|
1289 |
msgid "Content: The content of your post."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: views/b2s/network.php:622 views/b2s/network.php:641
|
1293 |
-
#: views/b2s/network.php:660 views/b2s/network.php:688 views/b2s/ship.php:
|
1294 |
-
#: views/b2s/ship.php:
|
1295 |
msgid "Continue"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
-
#: views/b2s/curation.php:
|
1299 |
msgid "continue"
|
1300 |
msgstr ""
|
1301 |
|
@@ -1303,11 +1312,11 @@ msgstr ""
|
|
1303 |
msgid "Continue deactivation"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: views/b2s/support.php:
|
1307 |
msgid "Contracting and Licensing"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: includes/B2S/Ship/Item.php:
|
1311 |
msgid "Copy from original"
|
1312 |
msgstr ""
|
1313 |
|
@@ -1323,11 +1332,11 @@ msgstr ""
|
|
1323 |
msgid "Could not hide notice. Please refresh the page and retry."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: views/b2s/html/header.php:
|
1327 |
msgid "Could not save draft"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: views/b2s/support.php:
|
1331 |
msgid "Couldn't find your answer?"
|
1332 |
msgstr ""
|
1333 |
|
@@ -1339,17 +1348,17 @@ msgstr ""
|
|
1339 |
msgid "create"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
-
#: views/b2s/curation.php:
|
1343 |
msgid "Create a new post"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: views/b2s/metrics.php:
|
1347 |
msgid ""
|
1348 |
"Create a new social media post for which you want to track the metrics. You "
|
1349 |
"can share:"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#: views/b2s/support.php:
|
1353 |
msgid "Create Account"
|
1354 |
msgstr ""
|
1355 |
|
@@ -1357,39 +1366,38 @@ msgstr ""
|
|
1357 |
msgid "create account"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: views/b2s/metrics.php:
|
1361 |
msgid "Create and Share a Social Media Post"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: views/b2s/network.php:
|
1365 |
msgid "Create new network collection"
|
1366 |
msgstr ""
|
1367 |
|
1368 |
-
#: views/b2s/dashboard.php:
|
1369 |
msgid "Create or share content from other sources"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: views/b2s/support.php:
|
1373 |
msgid "Create password"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: views/b2s/
|
1377 |
-
msgid "Create
|
1378 |
-
msgstr ""
|
1379 |
-
|
1380 |
-
#: includes/Loader.php:1026
|
1381 |
-
msgid "Create Social Media Posts"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: views/b2s/
|
1385 |
-
msgid "
|
|
|
|
|
|
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: includes/B2S/Post/Item.php:
|
1389 |
msgid "curated post"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: views/b2s/support.php:
|
1393 |
msgid "Current"
|
1394 |
msgstr ""
|
1395 |
|
@@ -1397,11 +1405,11 @@ msgstr ""
|
|
1397 |
msgid "currently scheduled"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
-
#: views/b2s/premium.php:
|
1401 |
msgid "Custom format"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#: views/b2s/premium.php:
|
1405 |
msgid "Custom image"
|
1406 |
msgstr ""
|
1407 |
|
@@ -1434,11 +1442,11 @@ msgid ""
|
|
1434 |
"engagement with your community."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
-
#: views/b2s/support.php:
|
1438 |
msgid "Customizing Social Media Posts"
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
#: includes/Tools.php:
|
1442 |
msgid "Czechoslovakia"
|
1443 |
msgstr ""
|
1444 |
|
@@ -1447,18 +1455,18 @@ msgid "Dashboard"
|
|
1447 |
msgstr ""
|
1448 |
|
1449 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1450 |
-
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:
|
1451 |
#: views/b2s/partials/post-edit-modal.php:67
|
1452 |
#: views/b2s/partials/post-edit-modal.php:70
|
1453 |
msgid "Date"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: includes/B2S/Ship/Item.php:
|
1457 |
msgid "Day of month"
|
1458 |
msgstr ""
|
1459 |
|
1460 |
-
#: includes/B2S/Network/Item.php:
|
1461 |
-
#: includes/B2S/Network/Item.php:
|
1462 |
msgid "Days"
|
1463 |
msgstr ""
|
1464 |
|
@@ -1470,7 +1478,7 @@ msgstr ""
|
|
1470 |
msgid "deactivated"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: views/b2s/support.php:
|
1474 |
msgid "Debug & Preview"
|
1475 |
msgstr ""
|
1476 |
|
@@ -1491,7 +1499,7 @@ msgstr ""
|
|
1491 |
msgid "Default"
|
1492 |
msgstr ""
|
1493 |
|
1494 |
-
#: views/b2s/network.php:569 includes/B2S/Network/Item.php:
|
1495 |
#, php-format
|
1496 |
msgid ""
|
1497 |
"Define parameters that will be added to link posts on this network e.g. to "
|
@@ -1506,29 +1514,29 @@ msgid ""
|
|
1506 |
"space character within your character limit."
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#: views/b2s/dashboard.php:
|
1510 |
-
#: views/b2s/post.sched.php:
|
1511 |
msgid ""
|
1512 |
"Define the default settings for the custom post format for all of your "
|
1513 |
"Facebook accounts in the Blog2Social settings."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
-
#: views/b2s/dashboard.php:
|
1517 |
-
#: views/b2s/post.sched.php:
|
1518 |
msgid ""
|
1519 |
"Define the default settings for the custom post format for all of your "
|
1520 |
"Instagram accounts in the Blog2Social settings."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
-
#: views/b2s/dashboard.php:
|
1524 |
-
#: views/b2s/post.sched.php:
|
1525 |
msgid ""
|
1526 |
"Define the default settings for the custom post format for all of your "
|
1527 |
"LinkedIn accounts in the Blog2Social settings."
|
1528 |
msgstr ""
|
1529 |
|
1530 |
-
#: views/b2s/dashboard.php:
|
1531 |
-
#: views/b2s/post.sched.php:
|
1532 |
msgid ""
|
1533 |
"Define the default settings for the custom post format for all of your "
|
1534 |
"Twitter accounts in the Blog2Social settings."
|
@@ -1538,23 +1546,23 @@ msgstr ""
|
|
1538 |
msgid "Define Twitter post content"
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#: views/b2s/settings.php:
|
1542 |
msgid "Define your post templates for each social media network"
|
1543 |
msgstr ""
|
1544 |
|
1545 |
-
#: includes/B2S/Ship/Item.php:
|
1546 |
msgid "Delay"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
-
#: views/b2s/network.php:
|
1550 |
msgid "Delete"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: includes/Ajax/Post.php:
|
1554 |
-
#: includes/B2S/Post/Item.php:
|
1555 |
-
#: includes/B2S/Post/Item.php:
|
1556 |
-
#: includes/B2S/Settings/Item.php:103 includes/B2S/Ship/Item.php:
|
1557 |
-
#: includes/B2S/Ship/Item.php:
|
1558 |
msgid "delete"
|
1559 |
msgstr ""
|
1560 |
|
@@ -1574,16 +1582,16 @@ msgstr ""
|
|
1574 |
msgid "Delete Draft"
|
1575 |
msgstr ""
|
1576 |
|
1577 |
-
#: views/b2s/metrics.php:
|
1578 |
-
#: views/b2s/post.publish.php:
|
1579 |
msgid "Delete entries from the reporting"
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: views/b2s/post.sched.php:
|
1583 |
msgid "Delete entries from the scheduling"
|
1584 |
msgstr ""
|
1585 |
|
1586 |
-
#: includes/B2S/Post/Item.php:
|
1587 |
msgid "delete from reporting"
|
1588 |
msgstr ""
|
1589 |
|
@@ -1595,7 +1603,7 @@ msgstr ""
|
|
1595 |
msgid "Delete scheduled posts"
|
1596 |
msgstr ""
|
1597 |
|
1598 |
-
#: includes/B2S/Post/Item.php:
|
1599 |
msgid "delete scheduling"
|
1600 |
msgstr ""
|
1601 |
|
@@ -1603,19 +1611,19 @@ msgstr ""
|
|
1603 |
msgid "delete selected posts"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
-
#: views/b2s/post.draft.php:
|
1607 |
msgid "Delete Social Media Draft"
|
1608 |
msgstr ""
|
1609 |
|
1610 |
-
#: views/b2s/post.approve.php:
|
1611 |
msgid "Delete Social Media Posts"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
-
#: includes/B2S/Ship/Item.php:
|
1615 |
msgid "Delete text"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
-
#: includes/Tools.php:
|
1619 |
msgid "Denmark"
|
1620 |
msgstr ""
|
1621 |
|
@@ -1627,8 +1635,8 @@ msgstr ""
|
|
1627 |
msgid "description"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#: includes/B2S/Post/Item.php:
|
1631 |
-
#: includes/B2S/Post/Item.php:
|
1632 |
msgid "Details"
|
1633 |
msgstr ""
|
1634 |
|
@@ -1640,16 +1648,24 @@ msgstr ""
|
|
1640 |
msgid "Did you miss something?"
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#: views/b2s/html/header.php:
|
1644 |
msgid "Did you miss something? Tell us!"
|
1645 |
msgstr ""
|
1646 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1647 |
#: includes/B2S/AutoPost/Item.php:52
|
1648 |
msgid "Disconnect"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#: includes/B2S/Ship/Item.php:
|
1652 |
-
#: includes/B2S/Ship/Item.php:
|
|
|
1653 |
msgid "Do u want to post multiple images?"
|
1654 |
msgstr ""
|
1655 |
|
@@ -1671,8 +1687,8 @@ msgstr ""
|
|
1671 |
msgid "Do you want to delete your scheduled posts?"
|
1672 |
msgstr ""
|
1673 |
|
1674 |
-
#: views/b2s/curation.php:
|
1675 |
-
#: views/b2s/ship.php:
|
1676 |
msgid "Do you want to mark this post as published ?"
|
1677 |
msgstr ""
|
1678 |
|
@@ -1681,22 +1697,20 @@ msgid "Download and activate the Blog2Social extension"
|
|
1681 |
msgstr ""
|
1682 |
|
1683 |
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:59
|
1684 |
-
#: includes/B2S/Post/Item.php:
|
1685 |
msgid "draft"
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: includes/Loader.php:917 views/b2s/html/
|
1689 |
-
#: views/b2s/html/post.navbar.php:15 views/b2s/html/sidebar.php:94
|
1690 |
-
#: views/b2s/html/sidebar.php:116
|
1691 |
msgid "Drafts"
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#: includes/B2S/Ship/Item.php:
|
1695 |
msgid "Duration"
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#: views/b2s/network.php:398 views/b2s/ship.php:
|
1699 |
-
#: views/b2s/html/header.php:
|
1700 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1701 |
#: views/prg/html/form.php:220
|
1702 |
msgid "E-Mail"
|
@@ -1712,7 +1726,7 @@ msgid ""
|
|
1712 |
"media network."
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#: includes/B2S/Post/Item.php:
|
1716 |
msgid "edit"
|
1717 |
msgstr ""
|
1718 |
|
@@ -1724,8 +1738,8 @@ msgstr ""
|
|
1724 |
msgid "Edit Post"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#: views/b2s/network.php:239 includes/B2S/Network/Item.php:
|
1728 |
-
#: includes/B2S/Network/Item.php:
|
1729 |
msgid "Edit Post Template"
|
1730 |
msgstr ""
|
1731 |
|
@@ -1735,18 +1749,18 @@ msgid ""
|
|
1735 |
"textarea and customize them as you like."
|
1736 |
msgstr ""
|
1737 |
|
1738 |
-
#: views/b2s/settings.php:
|
1739 |
msgid ""
|
1740 |
"Edit the post templates for each social media network to turn your social "
|
1741 |
"media posts automatically into tailored posts for each network and community."
|
1742 |
" You can edit the structure of your post with the following variables:"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: views/b2s/support.php:
|
1746 |
msgid "Email address"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: views/b2s/support.php:
|
1750 |
msgid "Email address is taken."
|
1751 |
msgstr ""
|
1752 |
|
@@ -1758,15 +1772,15 @@ msgstr ""
|
|
1758 |
msgid "enable Auto-Posting"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: includes/B2S/Ship/Item.php:
|
1762 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: includes/B2S/Ship/Item.php:
|
1766 |
msgid "End Of Month"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: views/b2s/premium.php:
|
1770 |
msgid "End of Trial"
|
1771 |
msgstr ""
|
1772 |
|
@@ -1778,36 +1792,36 @@ msgstr ""
|
|
1778 |
msgid "English"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: views/b2s/curation.php:
|
1782 |
msgid ""
|
1783 |
"Enter a link you want to share on your social media networks. You can also "
|
1784 |
"share a video link, for example from YouTube or from Vimeo (also see Video "
|
1785 |
"Post)."
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#: views/b2s/support.php:
|
1789 |
msgid "Enter a URL to see how your link preview will look on social media."
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: views/b2s/curation.php:
|
1793 |
msgid ""
|
1794 |
"Enter a video link you want to share on your social media networks, for "
|
1795 |
"example from YouTube or from Vimeo."
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#: views/b2s/support.php:
|
1799 |
msgid "Enter at least 8 characters"
|
1800 |
msgstr ""
|
1801 |
|
1802 |
-
#: views/b2s/premium.php:
|
1803 |
msgid "Enter license key and change your version"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
-
#: views/b2s/curation.php:
|
1807 |
msgid "Enter link"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
-
#: views/b2s/support.php:
|
1811 |
msgid "Enter your question or keyword here"
|
1812 |
msgstr ""
|
1813 |
|
@@ -1815,11 +1829,11 @@ msgstr ""
|
|
1815 |
msgid "Event"
|
1816 |
msgstr ""
|
1817 |
|
1818 |
-
#: includes/B2S/Ship/Item.php:
|
1819 |
msgid "Events"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
-
#: views/b2s/settings.php:
|
1823 |
msgid ""
|
1824 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
1825 |
"post)."
|
@@ -1832,7 +1846,7 @@ msgstr ""
|
|
1832 |
msgid "Exclude (Do no post ...)"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: views/b2s/support.php:
|
1836 |
msgid "Export as txt-file"
|
1837 |
msgstr ""
|
1838 |
|
@@ -1853,7 +1867,7 @@ msgid ""
|
|
1853 |
"requirements for Facebook."
|
1854 |
msgstr ""
|
1855 |
|
1856 |
-
#: views/b2s/support.php:
|
1857 |
msgid "Facebook Open Graph Meta Tags"
|
1858 |
msgstr ""
|
1859 |
|
@@ -1861,32 +1875,32 @@ msgstr ""
|
|
1861 |
msgid "Facebook pages"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#: includes/B2S/Network/Item.php:
|
1865 |
msgid "Failed to load the default template"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#: includes/B2S/Network/Item.php:
|
1869 |
msgid "Failed to save"
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#: includes/B2S/Post/Item.php:
|
1873 |
msgid "FAQ"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
-
#: includes/Loader.php:917 views/b2s/metrics.php:
|
1877 |
-
#: views/b2s/html/
|
1878 |
msgid "Favorites"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: views/b2s/metrics.php:
|
1882 |
msgid "Feedback"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: views/b2s/dashboard.php:
|
1886 |
-
#: views/b2s/network.php:
|
1887 |
-
#: views/b2s/post.calendar.php:
|
1888 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1889 |
-
#: views/b2s/html/post.navbar.php:
|
1890 |
msgid "filter"
|
1891 |
msgstr ""
|
1892 |
|
@@ -1895,34 +1909,34 @@ msgid ""
|
|
1895 |
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
-
#: includes/Tools.php:
|
1899 |
msgid "Finland"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
-
#: views/b2s/html/header.php:
|
1903 |
#: views/prg/html/form.php:100 views/prg/html/form.php:168
|
1904 |
#: views/prg/html/form.php:177
|
1905 |
msgid "First Name"
|
1906 |
msgstr ""
|
1907 |
|
1908 |
-
#: views/b2s/ship.php:
|
1909 |
msgid "First, connect or select network before posting"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
-
#: includes/Tools.php:
|
1913 |
msgid "Flags"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: views/b2s/dashboard.php:
|
1917 |
msgid "Follow us"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
-
#: includes/Tools.php:
|
1921 |
msgid "Food & Drink"
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#: views/b2s/support.php:
|
1925 |
-
#: views/b2s/support.php:
|
1926 |
msgid "For example your Wordpress Home Page"
|
1927 |
msgstr ""
|
1928 |
|
@@ -1946,47 +1960,47 @@ msgid ""
|
|
1946 |
"your preferred custom post format."
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#: includes/B2S/Ship/Save.php:
|
1950 |
msgid ""
|
1951 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: includes/B2S/Ship/Save.php:
|
1955 |
msgid ""
|
1956 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
1957 |
"Instant Sharing"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: views/b2s/dashboard.php:
|
1961 |
-
#: views/b2s/post.sched.php:
|
1962 |
msgid "for:"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: views/b2s/support.php:
|
1966 |
msgid "Forgot Password?"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: views/b2s/support.php:
|
1970 |
msgid "Forgot username or password?"
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: includes/B2S/Network/Item.php:
|
1974 |
msgid "Format"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
-
#: includes/B2S/Network/Item.php:
|
1978 |
msgid "Frame colour:"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
-
#: includes/Tools.php:
|
1982 |
msgid "France"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
-
#: views/b2s/support.php:
|
1986 |
msgid "Frequently asked questions"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:
|
1990 |
msgid "Fri"
|
1991 |
msgstr ""
|
1992 |
|
@@ -1998,7 +2012,7 @@ msgstr ""
|
|
1998 |
msgid "Frontpage Settings"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
-
#: views/b2s/settings.php:
|
2002 |
msgid "General"
|
2003 |
msgstr ""
|
2004 |
|
@@ -2006,22 +2020,26 @@ msgstr ""
|
|
2006 |
msgid "German"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: includes/Tools.php:
|
2010 |
msgid "Germany"
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
2014 |
msgid "Get more information about the benefits of Blog2Social Premium"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: views/b2s/html/header.php:
|
2018 |
#, php-format
|
2019 |
msgid ""
|
2020 |
"Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
|
2021 |
"guide</a>."
|
2022 |
msgstr ""
|
2023 |
|
2024 |
-
#: views/b2s/curation.php:
|
2025 |
#, php-format
|
2026 |
msgid ""
|
2027 |
"Get more information on how to share a text post with hashtags, @mentions "
|
@@ -2033,27 +2051,27 @@ msgstr ""
|
|
2033 |
msgid "Get Social Media News"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
-
#: views/b2s/html/header.php:
|
2037 |
msgid "Get Started"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
-
#: views/b2s/curation.draft.php:
|
2041 |
msgid "Get the Blog2Social Browser Extension"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
-
#: views/b2s/ship.php:
|
2045 |
msgid "Give me more information"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
-
#: views/b2s/premium.php:
|
2049 |
msgid "Go Premium and get even smarter with social media automation"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
-
#: views/b2s/support.php:
|
2053 |
msgid "Go to the Blog2Social Community"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
-
#: includes/B2S/Ship/Item.php:
|
2057 |
msgid ""
|
2058 |
"Good to know: Instagram does not allow to publish identical or substantially "
|
2059 |
"similar content on one or more accounts. Vary your content by using other "
|
@@ -2061,7 +2079,7 @@ msgid ""
|
|
2061 |
"inspiring content."
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#: includes/B2S/Network/Item.php:
|
2065 |
msgid ""
|
2066 |
"Good to know: Instagram supports up to 30 hashtags in a post. The number "
|
2067 |
"recommended for best results is 5 hashtags. Make sure that your hashtags are "
|
@@ -2076,49 +2094,49 @@ msgid ""
|
|
2076 |
"Business listings."
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: views/b2s/network.php:127 views/b2s/premium.php:
|
2080 |
msgid "Google My Business"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: views/b2s/curation.php:
|
2084 |
msgid ""
|
2085 |
"Grab more attention for your content with photos, videos, or infographics."
|
2086 |
msgstr ""
|
2087 |
|
2088 |
-
#: includes/Tools.php:
|
2089 |
msgid "Great Britain"
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: includes/Tools.php:
|
2093 |
msgid "Greece"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#: includes/Loader.php:918 includes/B2S/Network/Item.php:
|
2097 |
msgid "Group"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#: includes/B2S/Network/Item.php:
|
2101 |
msgid "Guide"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
-
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:
|
2105 |
msgid "guide for server connection"
|
2106 |
msgstr ""
|
2107 |
|
2108 |
-
#: includes/B2S/Network/Item.php:
|
2109 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
#: includes/B2S/Ship/Item.php:
|
2113 |
msgid "Hashtags"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
-
#: views/b2s/support.php:
|
2117 |
msgid "Help & Community"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
-
#: includes/Loader.php:1036 includes/Loader.php:
|
2121 |
-
#: views/b2s/html/header.php:
|
2122 |
#: views/b2s/html/sidebar.ship.php:66
|
2123 |
msgid "Help & Support"
|
2124 |
msgstr ""
|
@@ -2127,15 +2145,15 @@ msgstr ""
|
|
2127 |
msgid "Help us make Blog2Social even better!"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: views/b2s/support.php:
|
2131 |
msgid "Helpful Network Settings"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: views/b2s/metrics.php:
|
2135 |
msgid "Here's how to start tracking your social media posts:"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: views/b2s/html/header.php:
|
2139 |
#, php-format
|
2140 |
msgid ""
|
2141 |
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
@@ -2147,19 +2165,23 @@ msgstr ""
|
|
2147 |
msgid "hide"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: includes/B2S/Ship/Item.php:
|
2151 |
msgid "hide calendar"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
2155 |
msgid "How can we help?"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: views/b2s/metrics.php:
|
2159 |
msgid "How to check the Social Media Metrics?"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: views/b2s/support.php:
|
2163 |
msgid "How to use the Troubleshooting tool"
|
2164 |
msgstr ""
|
2165 |
|
@@ -2168,27 +2190,43 @@ msgstr ""
|
|
2168 |
msgid "https://www.blog2social.com"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: includes/Tools.php:
|
2172 |
msgid "Hungary"
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: views/b2s/support.php:
|
2176 |
#, php-format
|
2177 |
msgid "I agree to the <a href=\"%s\" target=\"_blank\">community rules</a>"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#: views/b2s/html/header.php:
|
2181 |
msgid "I agree to the Adenion Privacy Policy"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
-
#: views/b2s/html/header.php:
|
2185 |
msgid "I already did it"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
-
#: views/b2s/html/header.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2189 |
msgid "I need some more time to decide"
|
2190 |
msgstr ""
|
2191 |
|
|
|
|
|
|
|
|
|
2192 |
#: views/b2s/html/footer.php:502
|
2193 |
msgid ""
|
2194 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
@@ -2209,7 +2247,7 @@ msgid ""
|
|
2209 |
"anything that does not work for you, please contact us!"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
-
#: views/b2s/html/sidebar.php:
|
2213 |
msgid ""
|
2214 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
2215 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
@@ -2217,11 +2255,11 @@ msgid ""
|
|
2217 |
"receive help from our committed support team."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
-
#: views/b2s/ship.php:
|
2221 |
msgid "Ignore & share"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
-
#: includes/B2S/Network/Item.php:
|
2225 |
msgid "Image"
|
2226 |
msgstr ""
|
2227 |
|
@@ -2229,19 +2267,18 @@ msgstr ""
|
|
2229 |
msgid "image"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
-
#: views/b2s/post.calendar.php:
|
2233 |
-
#: views/b2s/repost.php:
|
2234 |
-
#: includes/B2S/Network/Item.php:
|
2235 |
#: includes/B2S/Settings/Item.php:294 views/b2s/html/footer.php:182
|
2236 |
#: views/b2s/widgets/calendar.php:72
|
2237 |
msgid "Image cut out"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
-
#: views/b2s/
|
2241 |
-
#: views/b2s/
|
2242 |
-
#:
|
2243 |
-
#: includes/B2S/
|
2244 |
-
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:379
|
2245 |
#: views/b2s/widgets/calendar.php:72
|
2246 |
msgid "Image Post"
|
2247 |
msgstr ""
|
@@ -2255,9 +2292,9 @@ msgstr ""
|
|
2255 |
msgid "Image URL"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: views/b2s/post.calendar.php:
|
2259 |
-
#: views/b2s/repost.php:
|
2260 |
-
#: includes/B2S/Network/Item.php:
|
2261 |
#: includes/B2S/Settings/Item.php:280 views/b2s/html/footer.php:177
|
2262 |
#: views/b2s/widgets/calendar.php:72
|
2263 |
msgid "Image with frame"
|
@@ -2277,15 +2314,15 @@ msgstr ""
|
|
2277 |
msgid "immediately after publishing"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: views/b2s/metrics.php:
|
2281 |
msgid "Imported posts"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: views/b2s/metrics.php:
|
2285 |
msgid "Impressions"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: views/b2s/metrics.php:
|
2289 |
msgid "Impressions: A count of how many times the post has been viewed."
|
2290 |
msgstr ""
|
2291 |
|
@@ -2295,14 +2332,14 @@ msgid ""
|
|
2295 |
"as your primary Twitter account for auto-posting."
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: views/b2s/curation.php:
|
2299 |
#, php-format
|
2300 |
msgid ""
|
2301 |
"In the <a href=\"%s\">Network Settings</a> you can define network selections "
|
2302 |
"to select and save your most-used networks for specific posts or campaigns."
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: views/b2s/curation.php:
|
2306 |
#, php-format
|
2307 |
msgid ""
|
2308 |
"In the <a href=\"%s\">Network Settings</a> you can define one or more "
|
@@ -2325,40 +2362,40 @@ msgstr ""
|
|
2325 |
msgid "include posts with images only"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
-
#: includes/Tools.php:
|
2329 |
msgid "India"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
-
#: includes/Tools.php:
|
2333 |
msgid "Indonesia"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
#: includes/Loader.php:917 includes/B2S/PostBox.php:165
|
2337 |
#: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
|
2338 |
-
#: views/b2s/autopost.php:
|
2339 |
-
#: views/b2s/metrics.php:
|
2340 |
-
#: views/b2s/ship.php:
|
2341 |
#: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
|
2342 |
-
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:
|
2343 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2344 |
-
#: includes/B2S/Ship/Item.php:
|
2345 |
msgid "Info"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: includes/B2S/Ship/Item.php:
|
2349 |
msgid ""
|
2350 |
"Info: Change Card Meta tags image, title and description for this network"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
-
#: includes/B2S/Ship/Item.php:
|
2354 |
-
#: includes/B2S/Ship/Item.php:
|
2355 |
-
#: includes/B2S/Ship/Item.php:
|
2356 |
msgid ""
|
2357 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2358 |
"network"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
-
#: includes/B2S/Ship/Item.php:
|
2362 |
msgid "Insert full-text"
|
2363 |
msgstr ""
|
2364 |
|
@@ -2368,7 +2405,7 @@ msgid ""
|
|
2368 |
"information will be shown in your timeline."
|
2369 |
msgstr ""
|
2370 |
|
2371 |
-
#: views/b2s/support.php:
|
2372 |
msgid "Inspect Post"
|
2373 |
msgstr ""
|
2374 |
|
@@ -2379,7 +2416,7 @@ msgid ""
|
|
2379 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: views/b2s/support.php:
|
2383 |
msgid "Installation"
|
2384 |
msgstr ""
|
2385 |
|
@@ -2391,56 +2428,72 @@ msgstr ""
|
|
2391 |
msgid "Instant Caching for Link Posts"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: includes/Loader.php:917 views/b2s/html/
|
2395 |
-
#: views/b2s/html/sidebar.php:119
|
2396 |
msgid "Instant Sharing"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2400 |
msgid "Invalid Data! Please try again."
|
2401 |
msgstr ""
|
2402 |
|
2403 |
-
#: views/b2s/curation.php:
|
2404 |
msgid "Invalid data. Please check your data."
|
2405 |
msgstr ""
|
2406 |
|
2407 |
-
#: views/b2s/support.php:
|
2408 |
msgid "Invalid email address"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
-
#: includes/Tools.php:
|
2412 |
msgid "Ireland"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: includes/B2S/Post/Item.php:
|
2416 |
msgid "is currently being processed by the network"
|
2417 |
msgstr ""
|
2418 |
|
2419 |
-
#: includes/Tools.php:
|
2420 |
msgid "is determined automatically"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#: includes/B2S/Post/Item.php:
|
2424 |
#, php-format
|
2425 |
msgid "is waiting to shared by %s"
|
2426 |
msgstr ""
|
2427 |
|
2428 |
-
#: includes/Tools.php:
|
2429 |
msgid "Italy"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#: includes/Tools.php:
|
2433 |
msgid "Japan"
|
2434 |
msgstr ""
|
2435 |
|
|
|
|
|
|
|
|
|
2436 |
#: views/b2s/html/footer.php:11 views/prg/html/footer.php:11
|
2437 |
msgid "Job"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
-
#: includes/B2S/Ship/Item.php:
|
2441 |
msgid "Jobs & Projects"
|
2442 |
msgstr ""
|
2443 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2444 |
#: views/b2s/html/footer.php:441
|
2445 |
msgid ""
|
2446 |
"Keep your social media feed updated automatically with your best content and "
|
@@ -2457,11 +2510,11 @@ msgstr ""
|
|
2457 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
-
#: views/b2s/settings.php:
|
2461 |
msgid "Keywords: The tags you have set in your post."
|
2462 |
msgstr ""
|
2463 |
|
2464 |
-
#: includes/Tools.php:
|
2465 |
msgid "Korea"
|
2466 |
msgstr ""
|
2467 |
|
@@ -2469,18 +2522,18 @@ msgstr ""
|
|
2469 |
msgid "Language"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
-
#: includes/B2S/Post/Item.php:
|
2473 |
#, php-format
|
2474 |
msgid "last modified by %s"
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: views/b2s/html/header.php:
|
2478 |
#: views/prg/html/form.php:103 views/prg/html/form.php:169
|
2479 |
#: views/prg/html/form.php:180
|
2480 |
msgid "Last Name"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#: includes/B2S/Post/Item.php:
|
2484 |
msgid "last saved"
|
2485 |
msgstr ""
|
2486 |
|
@@ -2488,8 +2541,8 @@ msgstr ""
|
|
2488 |
msgid "Last shared"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
-
#: includes/B2S/Post/Item.php:
|
2492 |
-
#: includes/B2S/Post/Item.php:
|
2493 |
msgid "last shared on social media"
|
2494 |
msgstr ""
|
2495 |
|
@@ -2497,20 +2550,20 @@ msgstr ""
|
|
2497 |
msgid "Latest Posts"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: includes/B2S/Metrics/Item.php:
|
2501 |
#, php-format
|
2502 |
msgid "latest share by %s"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: includes/B2S/Ship/Save.php:
|
2506 |
msgid "Learn how it works"
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: views/b2s/support.php:
|
2510 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: views/b2s/support.php:
|
2514 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2515 |
msgstr ""
|
2516 |
|
@@ -2520,24 +2573,24 @@ msgid ""
|
|
2520 |
"scheduling and auto-poster."
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#: views/b2s/network.php:136 includes/B2S/Ship/Item.php:
|
2524 |
#: views/b2s/partials/post-edit-modal.php:53
|
2525 |
msgid "Learn more"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
-
#: views/b2s/curation.php:
|
2529 |
#, php-format
|
2530 |
msgid ""
|
2531 |
"Learn more about how to share social media posts in the <a href=\"%s\" "
|
2532 |
"target=\"_blank\">social media posts guide</a>."
|
2533 |
msgstr ""
|
2534 |
|
2535 |
-
#: views/b2s/ship.php:
|
2536 |
msgid "Learn more about the Xing guidelines."
|
2537 |
msgstr ""
|
2538 |
|
2539 |
-
#: includes/B2S/Ship/Item.php:
|
2540 |
-
#: includes/B2S/Ship/Item.php:
|
2541 |
msgid "Learn more about this"
|
2542 |
msgstr ""
|
2543 |
|
@@ -2545,34 +2598,34 @@ msgstr ""
|
|
2545 |
msgid "Legend"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#: includes/Tools.php:
|
2549 |
#: views/b2s/html/sidebar.ship.php:29
|
2550 |
msgid "License"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
-
#: views/b2s/metrics.php:
|
2554 |
msgid "Likes"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#: views/b2s/metrics.php:
|
2558 |
msgid "Likes: A count of how many times the post has been liked."
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: includes/B2S/Network/Item.php:
|
2562 |
-
#: includes/B2S/Ship/Item.php:
|
2563 |
msgid "Link"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: views/b2s/metrics.php:
|
2567 |
msgid ""
|
2568 |
"Link clicks: A count of link clicks, to further content. (Available for "
|
2569 |
"Twitter)"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
-
#: views/b2s/
|
2573 |
-
#: views/b2s/
|
2574 |
-
#: includes/B2S/Post/Item.php:
|
2575 |
-
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:
|
2576 |
#: views/b2s/html/footer.php:160 views/b2s/widgets/calendar.php:72
|
2577 |
msgid "Link Post"
|
2578 |
msgstr ""
|
@@ -2581,45 +2634,45 @@ msgstr ""
|
|
2581 |
msgid "LinkedIn pages"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#: views/b2s/support.php:
|
2585 |
msgid "LinkedIn Post Inspector"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#: views/b2s/dashboard.php:
|
2589 |
msgid "List"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#: views/b2s/network.php:
|
2593 |
#: views/b2s/partials/post-edit-modal.php:42
|
2594 |
msgid "Load Best Times"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: views/b2s/curation.php:
|
2598 |
msgid "Load data..."
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: includes/B2S/Network/Item.php:
|
2602 |
msgid "Load default settings"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: includes/B2S/Post/Item.php:
|
2606 |
msgid "load Draft"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: views/b2s/ship.php:
|
2610 |
msgid "Load My Times Settings"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: views/b2s/curation.draft.php:
|
2614 |
-
#: views/b2s/metrics.php:38 views/b2s/network.php:
|
2615 |
#: views/b2s/network.php:245 views/b2s/network.php:383
|
2616 |
-
#: views/b2s/network.php:462 views/b2s/post.approve.php:
|
2617 |
-
#: views/b2s/post.calendar.php:
|
2618 |
-
#: views/b2s/post.draft.php:
|
2619 |
-
#: views/b2s/post.notice.php:
|
2620 |
-
#: views/b2s/post.publish.php:
|
2621 |
-
#: views/b2s/repost.php:
|
2622 |
-
#: views/b2s/ship.php:
|
2623 |
#: views/prg/html/header.php:86
|
2624 |
msgid "Loading..."
|
2625 |
msgstr ""
|
@@ -2628,7 +2681,7 @@ msgstr ""
|
|
2628 |
msgid "Location"
|
2629 |
msgstr ""
|
2630 |
|
2631 |
-
#: views/b2s/network.php:392 views/b2s/ship.php:
|
2632 |
#, php-format
|
2633 |
msgid ""
|
2634 |
"Login failed. Please check your login data for typos and please check your "
|
@@ -2645,8 +2698,8 @@ msgstr ""
|
|
2645 |
msgid "Login failed. Please check your username and a password!"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
-
#: views/b2s/network.php:370 views/b2s/network.php:396 views/b2s/ship.php:
|
2649 |
-
#: views/b2s/ship.php:
|
2650 |
msgid ""
|
2651 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
2652 |
"on your profile."
|
@@ -2656,7 +2709,7 @@ msgstr ""
|
|
2656 |
msgid "Logout"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#: includes/B2S/Ship/Item.php:
|
2660 |
#, php-format
|
2661 |
msgid "max. %s Tags"
|
2662 |
msgstr ""
|
@@ -2669,12 +2722,12 @@ msgstr ""
|
|
2669 |
msgid "Meta Tags Settings for Posts and Pages"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: includes/Tools.php:
|
2673 |
msgid "Mexico"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
-
#: includes/B2S/Ship/Item.php:
|
2677 |
-
#: includes/B2S/Ship/Item.php:
|
2678 |
#: views/b2s/partials/post-edit-modal.php:82
|
2679 |
#: views/b2s/partials/post-edit-modal.php:83
|
2680 |
#: views/b2s/partials/post-edit-modal.php:84
|
@@ -2686,7 +2739,7 @@ msgstr ""
|
|
2686 |
msgid "minutes"
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#: includes/B2S/Network/Item.php:
|
2690 |
msgid ""
|
2691 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
2692 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
@@ -2709,7 +2762,7 @@ msgstr ""
|
|
2709 |
msgid "Modify subreddit"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:
|
2713 |
msgid "Mon"
|
2714 |
msgstr ""
|
2715 |
|
@@ -2717,19 +2770,19 @@ msgstr ""
|
|
2717 |
msgid "Monday"
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#: includes/B2S/Ship/Item.php:
|
2721 |
msgid "Month"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#: includes/B2S/Ship/Item.php:
|
2725 |
msgid "monthly"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#: includes/B2S/Ship/Item.php:
|
2729 |
msgid "Months"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: views/b2s/support.php:
|
2733 |
msgid "More"
|
2734 |
msgstr ""
|
2735 |
|
@@ -2737,12 +2790,12 @@ msgstr ""
|
|
2737 |
msgid "More Information"
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: views/b2s/autopost.php:
|
2741 |
#: includes/B2S/AutoPost/Item.php:161
|
2742 |
msgid "More information"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#: views/b2s/curation.php:
|
2746 |
#, php-format
|
2747 |
msgid ""
|
2748 |
"More information on how to create a network selection in the guide <a "
|
@@ -2750,23 +2803,23 @@ msgid ""
|
|
2750 |
"networks?\"</a>"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#: views/b2s/premium.php:
|
2754 |
msgid "More users and accounts"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#: views/b2s/metrics.php:
|
2758 |
msgid "Most Comments"
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#: views/b2s/metrics.php:
|
2762 |
msgid "Most Impressions"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
-
#: views/b2s/metrics.php:
|
2766 |
msgid "Most Likes"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
-
#: views/b2s/metrics.php:
|
2770 |
msgid "Most Reshares"
|
2771 |
msgstr ""
|
2772 |
|
@@ -2790,11 +2843,11 @@ msgstr ""
|
|
2790 |
msgid "My Profile"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#: includes/B2S/Network/Item.php:68 includes/B2S/Network/Item.php:
|
2794 |
msgid "My profile"
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#: includes/B2S/Network/Item.php:
|
2798 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
2799 |
#: views/prg/html/form.php:163
|
2800 |
msgid "Name"
|
@@ -2804,16 +2857,16 @@ msgstr ""
|
|
2804 |
msgid "Need more?"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: views/b2s/curation.php:
|
2808 |
-
#: views/b2s/post.calendar.php:
|
2809 |
msgid "Need to schedule your posts?"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
-
#: views/b2s/support.php:
|
2813 |
msgid "Needed"
|
2814 |
msgstr ""
|
2815 |
|
2816 |
-
#: includes/Tools.php:
|
2817 |
msgid "Netherlands"
|
2818 |
msgstr ""
|
2819 |
|
@@ -2821,7 +2874,7 @@ msgstr ""
|
|
2821 |
msgid "Network collection"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#: views/b2s/ship.php:
|
2825 |
msgid "network connected"
|
2826 |
msgstr ""
|
2827 |
|
@@ -2829,28 +2882,28 @@ msgstr ""
|
|
2829 |
msgid "Network connections"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#: includes/B2S/Ship/Item.php:
|
2833 |
msgid "Network defines image by link"
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#: includes/B2S/Ship/Item.php:
|
2837 |
msgid "Network does not support emojis"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#: includes/B2S/Ship/Item.php:
|
2841 |
msgid "Network does not support GIFs"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#: includes/B2S/Ship/Item.php:
|
2845 |
msgid "Network does not support image for pages"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: includes/B2S/Ship/Item.php:
|
2849 |
msgid "Network does not support image for profiles"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#: includes/B2S/Network/Item.php:
|
2853 |
-
#: includes/B2S/Network/Item.php:
|
2854 |
msgid "Network limit"
|
2855 |
msgstr ""
|
2856 |
|
@@ -2859,17 +2912,16 @@ msgstr ""
|
|
2859 |
msgid "Network settings"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: includes/Loader.php:
|
2863 |
msgid "Networks"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: includes/Loader.php:917 views/b2s/
|
2867 |
-
#: views/b2s/support.php:22
|
2868 |
msgid "NEW"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: includes/B2S/Network/Item.php:
|
2872 |
-
#: includes/B2S/Network/Item.php:
|
2873 |
msgid "New"
|
2874 |
msgstr ""
|
2875 |
|
@@ -2877,7 +2929,7 @@ msgstr ""
|
|
2877 |
msgid "new posts"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: includes/Tools.php:
|
2881 |
msgid "New Zealand"
|
2882 |
msgstr ""
|
2883 |
|
@@ -2885,32 +2937,32 @@ msgstr ""
|
|
2885 |
msgid "newest first"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: includes/B2S/Post/Item.php:
|
2889 |
#, php-format
|
2890 |
msgid "next share by %s"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:
|
2894 |
-
#: views/b2s/metrics.php:
|
2895 |
-
#: views/b2s/post.approve.php:
|
2896 |
-
#: views/b2s/post.draft.php:
|
2897 |
-
#: views/b2s/post.publish.php:
|
2898 |
-
#: views/b2s/repost.php:
|
2899 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
2900 |
msgid "NO"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: views/b2s/curation.php:
|
2904 |
msgid ""
|
2905 |
"No connected networks. Please make sure to connect at least one social media "
|
2906 |
"account."
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: views/b2s/html/header.php:
|
2910 |
msgid "No credit card required"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: includes/Tools.php:
|
2914 |
msgid "No emojis found"
|
2915 |
msgstr ""
|
2916 |
|
@@ -2918,11 +2970,11 @@ msgstr ""
|
|
2918 |
msgid "No images are included in your post."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#: views/b2s/curation.php:
|
2922 |
msgid "No link preview available. Please check your link."
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: views/b2s/html/header.php:
|
2926 |
msgid "No posts found. Please try again with different filter options."
|
2927 |
msgstr ""
|
2928 |
|
@@ -2930,15 +2982,15 @@ msgstr ""
|
|
2930 |
msgid "no URL Shortener"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: views/b2s/premium.php:
|
2934 |
msgid "No User found"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
-
#: views/b2s/html/header.php:
|
2938 |
msgid "Nope, maybe later"
|
2939 |
msgstr ""
|
2940 |
|
2941 |
-
#: includes/Tools.php:
|
2942 |
msgid "Norway"
|
2943 |
msgstr ""
|
2944 |
|
@@ -2946,21 +2998,21 @@ msgstr ""
|
|
2946 |
msgid "not yet shared"
|
2947 |
msgstr ""
|
2948 |
|
2949 |
-
#: views/b2s/ship.php:
|
2950 |
msgid "Note: "
|
2951 |
msgstr ""
|
2952 |
|
2953 |
-
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:
|
2954 |
msgid ""
|
2955 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
2956 |
"Networks do not allow postings from local installations."
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#: views/b2s/dashboard.php:
|
2960 |
msgid "Notification"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#: includes/Loader.php:917 views/b2s/html/
|
2964 |
msgid "Notifications"
|
2965 |
msgstr ""
|
2966 |
|
@@ -2969,9 +3021,9 @@ msgstr ""
|
|
2969 |
msgid "Number"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
-
#: views/b2s/metrics.php:
|
2973 |
-
#: views/b2s/post.notice.php:
|
2974 |
-
#: views/b2s/post.sched.php:
|
2975 |
#: views/b2s/widgets/posts.php:63
|
2976 |
msgid "Number of entries"
|
2977 |
msgstr ""
|
@@ -2980,39 +3032,39 @@ msgstr ""
|
|
2980 |
msgid "Number of posts"
|
2981 |
msgstr ""
|
2982 |
|
2983 |
-
#: includes/B2S/Ship/Item.php:
|
2984 |
msgid "Number of repeats"
|
2985 |
msgstr ""
|
2986 |
|
2987 |
-
#: includes/Tools.php:
|
2988 |
msgid "Objects"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: includes/B2S/Ship/Item.php:
|
2992 |
msgid "Offer"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: includes/B2S/Ship/Item.php:
|
2996 |
-
#: includes/B2S/Ship/Item.php:
|
2997 |
-
#: includes/B2S/Ship/Item.php:
|
2998 |
msgid "OG Meta description"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#: includes/B2S/Ship/Item.php:
|
3002 |
-
#: includes/B2S/Ship/Item.php:
|
3003 |
-
#: includes/B2S/Ship/Item.php:
|
3004 |
msgid "OG Meta title"
|
3005 |
msgstr ""
|
3006 |
|
3007 |
-
#: views/b2s/html/header.php:
|
3008 |
msgid "OK"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: views/b2s/metrics.php:
|
3012 |
msgid "Ok, I want to get started!"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: views/b2s/html/header.php:
|
3016 |
msgid "Ok, you deserve it"
|
3017 |
msgstr ""
|
3018 |
|
@@ -3028,12 +3080,12 @@ msgstr ""
|
|
3028 |
msgid "on Blog"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: views/b2s/ship.php:
|
3032 |
-
#: includes/B2S/Post/Item.php:
|
3033 |
msgid "on blog"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: views/b2s/metrics.php:
|
3037 |
msgid "Only active"
|
3038 |
msgstr ""
|
3039 |
|
@@ -3042,18 +3094,18 @@ msgstr ""
|
|
3042 |
msgid "only posts that have been shared no more than %s times"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: views/b2s/premium.php:
|
3046 |
msgid "Open Graph and Twitter Card Tags"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#: includes/Loader.php:
|
3050 |
msgid "or"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
-
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:
|
3054 |
-
#: views/b2s/curation.php:
|
3055 |
-
#: views/b2s/post.calendar.php:
|
3056 |
-
#: views/b2s/ship.php:
|
3057 |
#: views/b2s/html/footer.php:75 views/b2s/html/footer.php:93
|
3058 |
#: views/b2s/html/footer.php:111 views/b2s/html/footer.php:140
|
3059 |
#: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
|
@@ -3070,38 +3122,38 @@ msgstr ""
|
|
3070 |
msgid "or higher"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: views/b2s/ship.php:
|
3074 |
msgid "Overwrite Draft"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
-
#: includes/B2S/Ship/Item.php:
|
3078 |
msgid "own period"
|
3079 |
msgstr ""
|
3080 |
|
3081 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
3082 |
-
#: includes/B2S/Network/Item.php:
|
3083 |
msgid "Page"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: views/b2s/premium.php:
|
3087 |
msgid "Pages and groups"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: views/b2s/network.php:404 views/b2s/ship.php:
|
3091 |
msgid "Password"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: includes/B2S/Network/Item.php:
|
3095 |
#: includes/B2S/Ship/Navbar.php:91
|
3096 |
msgid "Personal"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
-
#: views/b2s/autopost.php:
|
3100 |
#: includes/B2S/Settings/Item.php:57
|
3101 |
msgid "Personal Time Zone"
|
3102 |
msgstr ""
|
3103 |
|
3104 |
-
#: includes/Tools.php:
|
3105 |
msgid "Philippines"
|
3106 |
msgstr ""
|
3107 |
|
@@ -3114,15 +3166,15 @@ msgstr ""
|
|
3114 |
msgid "Photo Post"
|
3115 |
msgstr ""
|
3116 |
|
3117 |
-
#: views/b2s/network.php:393 views/b2s/ship.php:
|
3118 |
msgid "Pinterest has rejected the connection to your blog"
|
3119 |
msgstr ""
|
3120 |
|
3121 |
-
#: views/b2s/support.php:
|
3122 |
msgid "Pinterest Rich Pins Validator"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
-
#: views/b2s/html/sidebar.php:
|
3126 |
msgid "Plans & Prices"
|
3127 |
msgstr ""
|
3128 |
|
@@ -3154,19 +3206,19 @@ msgid ""
|
|
3154 |
"always pulls the current meta data of your blog post."
|
3155 |
msgstr ""
|
3156 |
|
3157 |
-
#: views/b2s/curation.php:
|
3158 |
msgid "Please enter a valid link"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
-
#: includes/B2S/Ship/Item.php:
|
3162 |
-
#: includes/B2S/Ship/Item.php:
|
3163 |
msgid ""
|
3164 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3165 |
"allowed to post identical or substantially similar content to multiple "
|
3166 |
"accounts or multiple duplicate updates on one account."
|
3167 |
msgstr ""
|
3168 |
|
3169 |
-
#: views/b2s/autopost.php:
|
3170 |
msgid ""
|
3171 |
"Please make sure that each WordPress user or author whose posts should be "
|
3172 |
"auto-posted"
|
@@ -3188,7 +3240,7 @@ msgid ""
|
|
3188 |
"scheduled WP posts will be shared with the posting id link."
|
3189 |
msgstr ""
|
3190 |
|
3191 |
-
#: views/b2s/network.php:640 views/b2s/ship.php:
|
3192 |
#, php-format
|
3193 |
msgid ""
|
3194 |
"Please make sure to log in with your account which manages your groups and "
|
@@ -3196,14 +3248,14 @@ msgid ""
|
|
3196 |
"groups</a>."
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: views/b2s/network.php:621 views/b2s/ship.php:
|
3200 |
#, php-format
|
3201 |
msgid ""
|
3202 |
"Please make sure to log in with your account which manages your pages and <a "
|
3203 |
"href=\"%s\" target=\"_blank\">follow this guide to select all your pages</a>."
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: views/b2s/network.php:386 views/b2s/ship.php:
|
3207 |
msgid ""
|
3208 |
"Please make sure to use your original Pinterest login data (email and "
|
3209 |
"password). Social Login via Facebook or Google login data will not work here."
|
@@ -3215,13 +3267,17 @@ msgstr ""
|
|
3215 |
msgid "Please Note"
|
3216 |
msgstr ""
|
3217 |
|
|
|
|
|
|
|
|
|
3218 |
#: includes/B2S/Settings/Item.php:189
|
3219 |
msgid ""
|
3220 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
3221 |
"pixels and an aspect ratio of 1:1."
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: includes/B2S/Ship/Item.php:
|
3225 |
msgid ""
|
3226 |
"Please note: Google will shut down Google+ for all private accounts "
|
3227 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
@@ -3246,13 +3302,13 @@ msgid ""
|
|
3246 |
"for Twitter to update your current changes."
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: views/b2s/network.php:678 views/b2s/ship.php:
|
3250 |
msgid ""
|
3251 |
"Please note: In order to connect your Instagram account to Blog2Social, "
|
3252 |
"please ensure the following:"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
-
#: views/b2s/metrics.php:
|
3256 |
msgid ""
|
3257 |
"Please note: The metrics for the social media posts are updated every 24 "
|
3258 |
"hours. The social media posts are monitored for 30 days. After 30 days, the "
|
@@ -3260,7 +3316,7 @@ msgid ""
|
|
3260 |
"any time."
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: includes/B2S/Ship/Item.php:
|
3264 |
msgid ""
|
3265 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3266 |
"Changes may not be immediately visible on Twitter."
|
@@ -3274,19 +3330,19 @@ msgid ""
|
|
3274 |
"formats."
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: includes/B2S/Ship/Item.php:
|
3278 |
msgid ""
|
3279 |
"Please note: XING allows identical posts to be published only once within a "
|
3280 |
"group and no more than three times across different groups."
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: includes/B2S/Ship/Item.php:
|
3284 |
msgid ""
|
3285 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3286 |
"days. Changes may not be immediately visible on XING."
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: views/b2s/autopost.php:
|
3290 |
#, php-format
|
3291 |
msgid ""
|
3292 |
"Please note: You can also set up your own \"best times\". You will learn how "
|
@@ -3294,12 +3350,12 @@ msgid ""
|
|
3294 |
"guide</a>."
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: includes/B2S/Ship/Save.php:
|
3298 |
msgid ""
|
3299 |
"Please note: You post has to be marked as public to be posted in a group."
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: includes/B2S/Ship/Item.php:
|
3303 |
msgid ""
|
3304 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3305 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
@@ -3329,7 +3385,7 @@ msgstr ""
|
|
3329 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
3330 |
msgstr ""
|
3331 |
|
3332 |
-
#: includes/B2S/Post/Item.php:
|
3333 |
msgid "Please see"
|
3334 |
msgstr ""
|
3335 |
|
@@ -3345,16 +3401,16 @@ msgstr ""
|
|
3345 |
msgid "Please select a social media network"
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#: views/b2s/network.php:394 views/b2s/ship.php:
|
3349 |
msgid "Please select your correct server location and connect again."
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#: includes/B2S/Ship/Save.php:
|
3353 |
msgid "Please share your post now"
|
3354 |
msgstr ""
|
3355 |
|
3356 |
-
#: includes/B2S/Network/Item.php:
|
3357 |
-
#: includes/B2S/Network/Item.php:
|
3358 |
msgid "please upgrade"
|
3359 |
msgstr ""
|
3360 |
|
@@ -3366,11 +3422,11 @@ msgstr ""
|
|
3366 |
msgid "Plugin Warnings:"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: includes/Tools.php:
|
3370 |
msgid "Poland"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
-
#: includes/Tools.php:
|
3374 |
msgid "Portugal"
|
3375 |
msgstr ""
|
3376 |
|
@@ -3395,24 +3451,28 @@ msgstr ""
|
|
3395 |
msgid "Post every"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: views/b2s/dashboard.php:
|
3399 |
-
#: views/b2s/post.sched.php:
|
3400 |
msgid "Post Format"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#: includes/B2S/Post/Item.php:
|
3404 |
msgid "post format"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
#: views/b2s/metrics.php:
|
3408 |
msgid "Post Interactions"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: views/b2s/html/header.php:
|
3412 |
msgid "Post is published successfully on your blog!"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
3416 |
msgid "Post Metrics"
|
3417 |
msgstr ""
|
3418 |
|
@@ -3422,18 +3482,18 @@ msgid ""
|
|
3422 |
"groups"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:
|
3426 |
-
#: views/b2s/dashboard.php:
|
3427 |
-
#: views/b2s/ship.php:
|
3428 |
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
|
3429 |
#: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
|
3430 |
#: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
|
3431 |
#: views/b2s/html/footer.php:452 views/b2s/html/footer.php:545
|
3432 |
-
#: views/b2s/html/header.php:
|
3433 |
msgid "Post on pages and groups"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: views/b2s/settings.php:
|
3437 |
msgid "Post Templates"
|
3438 |
msgstr ""
|
3439 |
|
@@ -3441,7 +3501,7 @@ msgstr ""
|
|
3441 |
msgid "Post Types"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: views/b2s/html/header.php:
|
3445 |
msgid "Post was scheduled successfully on your blog!"
|
3446 |
msgstr ""
|
3447 |
|
@@ -3450,7 +3510,7 @@ msgstr ""
|
|
3450 |
msgid "Posting to social media pages and groups in Facebook"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: views/b2s/metrics.php:
|
3454 |
msgid "Posts"
|
3455 |
msgstr ""
|
3456 |
|
@@ -3479,11 +3539,11 @@ msgid ""
|
|
3479 |
"publish your post."
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: includes/Loader.php:1034 includes/Loader.php:
|
3483 |
msgid "PR-Service"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: includes/Loader.php:1038 includes/Loader.php:
|
3487 |
msgid "PREMIUM"
|
3488 |
msgstr ""
|
3489 |
|
@@ -3491,7 +3551,7 @@ msgstr ""
|
|
3491 |
msgid "Premium"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: views/b2s/premium.php:
|
3495 |
msgid "Premium support"
|
3496 |
msgstr ""
|
3497 |
|
@@ -3499,20 +3559,20 @@ msgstr ""
|
|
3499 |
msgid "Press"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: includes/B2S/Network/Item.php:
|
3503 |
-
#: includes/B2S/Network/Item.php:
|
3504 |
-
#: includes/B2S/Network/Item.php:
|
3505 |
-
#: includes/B2S/Network/Item.php:
|
3506 |
-
#: includes/B2S/Network/Item.php:
|
3507 |
-
#: includes/B2S/Network/Item.php:
|
3508 |
-
#: includes/B2S/Network/Item.php:
|
3509 |
-
#: includes/B2S/Network/Item.php:
|
3510 |
-
#: includes/B2S/Network/Item.php:
|
3511 |
-
#: includes/B2S/Network/Item.php:
|
3512 |
msgid "Preview"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: views/b2s/settings.php:
|
3516 |
msgid ""
|
3517 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
3518 |
"website/ blog."
|
@@ -3522,13 +3582,13 @@ msgstr ""
|
|
3522 |
msgid "Privacy Policy"
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
#: views/b2s/
|
3526 |
-
#: includes/B2S/Network/Item.php:
|
3527 |
-
#: includes/B2S/
|
3528 |
-
#: includes/B2S/Ship/Item.php:
|
3529 |
-
#: includes/B2S/Ship/Item.php:
|
3530 |
-
#: includes/B2S/Ship/
|
3531 |
-
#: includes/B2S/Ship/Portale.php:65
|
3532 |
msgid "PRO"
|
3533 |
msgstr ""
|
3534 |
|
@@ -3541,11 +3601,11 @@ msgid "Product"
|
|
3541 |
msgstr ""
|
3542 |
|
3543 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
3544 |
-
#: includes/B2S/Network/Item.php:
|
3545 |
msgid "Profile"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#: views/b2s/ship.php:
|
3549 |
msgid "Profiles | Pages | Groups"
|
3550 |
msgstr ""
|
3551 |
|
@@ -3565,19 +3625,19 @@ msgstr ""
|
|
3565 |
msgid "publish with a delay of"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: views/b2s/curation.php:
|
3569 |
-
#: views/b2s/ship.php:18 views/b2s/ship.php:
|
3570 |
-
#: includes/B2S/Post/Item.php:
|
3571 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3572 |
#: views/b2s/widgets/calendar.php:44
|
3573 |
msgid "published"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: views/b2s/metrics.php:
|
3577 |
msgid "Published On"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: views/b2s/metrics.php:
|
3581 |
msgid "Published Posts"
|
3582 |
msgstr ""
|
3583 |
|
@@ -3589,37 +3649,37 @@ msgstr ""
|
|
3589 |
msgid "Queue"
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#: includes/Notice.php:19 views/b2s/html/sidebar.php:
|
3593 |
msgid "RATE BLOG2SOCIAL"
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#: views/b2s/html/header.php:
|
3597 |
msgid "RATE IT!"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#: includes/Notice.php:17 views/b2s/html/sidebar.php:
|
3601 |
msgid "Rate it!"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#: includes/B2S/Post/Item.php:
|
3605 |
msgid "Re-Share"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:
|
3609 |
msgid "re-share"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: includes/Loader.php:917 views/b2s/settings.php:
|
3613 |
-
#: views/b2s/html/
|
3614 |
msgid "Re-Share Posts"
|
3615 |
msgstr ""
|
3616 |
|
3617 |
-
#: views/b2s/ship.php:
|
3618 |
msgid "Re-share this Post"
|
3619 |
msgstr ""
|
3620 |
|
3621 |
-
#: views/b2s/curation.php:
|
3622 |
-
#: includes/B2S/Metrics/Item.php:
|
3623 |
msgid "Re-share this post"
|
3624 |
msgstr ""
|
3625 |
|
@@ -3627,13 +3687,13 @@ msgstr ""
|
|
3627 |
msgid "Re-share your blog content automatically on your social media channels."
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: views/b2s/metrics.php:
|
3631 |
msgid ""
|
3632 |
"Re-Shares/ Re-Tweets: A count of how many times the post has been reshared "
|
3633 |
"or retweeted."
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: includes/B2S/Ship/Item.php:
|
3637 |
msgid "Read more"
|
3638 |
msgstr ""
|
3639 |
|
@@ -3641,15 +3701,15 @@ msgstr ""
|
|
3641 |
msgid "Rebrandly"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: includes/Tools.php:
|
3645 |
msgid "Recently Used"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: includes/B2S/Network/Item.php:
|
3649 |
msgid "recommended length"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: views/b2s/ship.php:
|
3653 |
msgid "refresh authorization"
|
3654 |
msgstr ""
|
3655 |
|
@@ -3657,29 +3717,29 @@ msgstr ""
|
|
3657 |
msgid "Register here to open your PR-Gateway account."
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: views/b2s/premium.php:
|
3661 |
msgid "Regular updates and priority support per e-mail and phone."
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: views/b2s/support.php:
|
3665 |
msgid "reload"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: includes/B2S/Ship/Item.php:
|
3669 |
msgid "Repeats"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: includes/B2S/Ship/Item.php:
|
3673 |
msgid "Repeats every (days)"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: views/b2s/support.php:
|
3677 |
msgid "Reporting"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:
|
3681 |
-
#: views/b2s/dashboard.php:
|
3682 |
-
#: views/b2s/ship.php:
|
3683 |
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
|
3684 |
#: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
|
3685 |
#: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
|
@@ -3695,7 +3755,7 @@ msgid ""
|
|
3695 |
"media posts"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#: views/b2s/html/header.php:
|
3699 |
msgid "Reporting with links to all published social media posts"
|
3700 |
msgstr ""
|
3701 |
|
@@ -3704,15 +3764,15 @@ msgstr ""
|
|
3704 |
msgid "Reporting with links to already published posts"
|
3705 |
msgstr ""
|
3706 |
|
3707 |
-
#: includes/B2S/Ship/Item.php:
|
3708 |
msgid "Request"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
-
#: includes/B2S/Ship/Item.php:
|
3712 |
msgid "required"
|
3713 |
msgstr ""
|
3714 |
|
3715 |
-
#: views/b2s/ship.php:
|
3716 |
msgid "requires image"
|
3717 |
msgstr ""
|
3718 |
|
@@ -3733,8 +3793,8 @@ msgstr ""
|
|
3733 |
msgid "resolve conflict"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
-
#: includes/B2S/Post/Item.php:
|
3737 |
-
#: includes/B2S/Ship/Save.php:
|
3738 |
msgid "Retweet"
|
3739 |
msgstr ""
|
3740 |
|
@@ -3746,23 +3806,23 @@ msgid ""
|
|
3746 |
"WordPress."
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: includes/Tools.php:
|
3750 |
msgid "Romania"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: views/b2s/premium.php:
|
3754 |
msgid "RSS import & auto-post"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: includes/Tools.php:
|
3758 |
msgid "Russia"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: views/b2s/support.php:
|
3762 |
msgid "Sales Support"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:
|
3766 |
msgid "Sat"
|
3767 |
msgstr ""
|
3768 |
|
@@ -3774,12 +3834,16 @@ msgstr ""
|
|
3774 |
msgid "Save"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: views/b2s/network.php:251 views/b2s/settings.php:
|
3778 |
-
#: includes/B2S/Network/Item.php:
|
3779 |
msgid "save"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
-
#:
|
|
|
|
|
|
|
|
|
3783 |
msgid "Save as best time for this network"
|
3784 |
msgstr ""
|
3785 |
|
@@ -3787,40 +3851,40 @@ msgstr ""
|
|
3787 |
msgid "Save As Draft"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: views/b2s/ship.php:
|
3791 |
#: includes/B2S/Curation/View.php:110
|
3792 |
msgid "Save as Draft"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: views/b2s/curation.draft.php:
|
3796 |
msgid ""
|
3797 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
3798 |
"want."
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: views/b2s/ship.php:
|
3802 |
msgid "Save network selection"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: views/b2s/autopost.php:
|
3806 |
msgid "save..."
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: includes/B2S/Post/Item.php:
|
3810 |
msgid "saved"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: views/b2s/html/header.php:
|
3814 |
msgid "Saved as draft"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: views/b2s/curation.php:
|
3818 |
msgid "Saved as draft."
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:
|
3822 |
-
#: views/b2s/dashboard.php:
|
3823 |
-
#: views/b2s/ship.php:
|
3824 |
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
|
3825 |
#: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
|
3826 |
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
|
@@ -3828,44 +3892,44 @@ msgstr ""
|
|
3828 |
msgid "Schedule and re-share old posts"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: views/b2s/premium.php:
|
3832 |
msgid ""
|
3833 |
"Schedule and share curated content from any source on your preferred "
|
3834 |
"networks."
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#: views/b2s/premium.php:
|
3838 |
msgid ""
|
3839 |
"Schedule and share your blog posts as Google My Business posts to update "
|
3840 |
"your business listing and to add fresh content for your company."
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: views/b2s/premium.php:
|
3844 |
msgid "Schedule curated content"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
-
#: views/b2s/curation.php:
|
3848 |
-
#: views/b2s/post.calendar.php:
|
3849 |
-
#: includes/B2S/Ship/Item.php:
|
3850 |
msgid "Schedule for specific dates"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#: views/b2s/curation.php:
|
3854 |
-
#: views/b2s/post.calendar.php:
|
3855 |
msgid "Schedule post recurrently"
|
3856 |
msgstr ""
|
3857 |
|
3858 |
-
#: includes/B2S/Ship/Item.php:
|
3859 |
msgid "Schedule Recurrent Post"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: views/b2s/ship.php:
|
3863 |
msgid "Schedule your post"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:
|
3867 |
-
#: views/b2s/dashboard.php:
|
3868 |
-
#: views/b2s/ship.php:
|
3869 |
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
|
3870 |
#: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
|
3871 |
#: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
|
@@ -3873,9 +3937,9 @@ msgstr ""
|
|
3873 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:
|
3877 |
-
#: views/b2s/dashboard.php:
|
3878 |
-
#: views/b2s/ship.php:
|
3879 |
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
|
3880 |
#: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
|
3881 |
#: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
|
@@ -3889,8 +3953,8 @@ msgid ""
|
|
3889 |
"multiple times or recurrently"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: views/b2s/post.calendar.php:
|
3893 |
-
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:
|
3894 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3895 |
#: views/b2s/widgets/calendar.php:45
|
3896 |
msgid "scheduled"
|
@@ -3900,12 +3964,12 @@ msgstr ""
|
|
3900 |
msgid "Scheduled Auto-Posting"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: includes/B2S/Post/Item.php:
|
3904 |
#, php-format
|
3905 |
msgid "scheduled by %s"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: includes/B2S/Ship/Save.php:
|
3909 |
msgid "scheduled on"
|
3910 |
msgstr ""
|
3911 |
|
@@ -3913,8 +3977,8 @@ msgstr ""
|
|
3913 |
msgid "scheduled post(s)"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#: includes/Loader.php:917 views/b2s/html/
|
3917 |
-
#: views/b2s/
|
3918 |
msgid "Scheduled Posts"
|
3919 |
msgstr ""
|
3920 |
|
@@ -3922,24 +3986,24 @@ msgstr ""
|
|
3922 |
msgid "scheduled posts"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#: includes/B2S/Post/Item.php:
|
3926 |
#: views/b2s/widgets/activity.php:10
|
3927 |
msgid "scheduled social media posts"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#: views/b2s/support.php:
|
3931 |
msgid "Scheduling and Best Time Manager"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
-
#: views/b2s/ship.php:
|
3935 |
msgid "scroll to bottom"
|
3936 |
msgstr ""
|
3937 |
|
3938 |
-
#: views/b2s/ship.php:
|
3939 |
msgid "scroll to top"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#: includes/Tools.php:
|
3943 |
msgid "Search"
|
3944 |
msgstr ""
|
3945 |
|
@@ -3947,7 +4011,7 @@ msgstr ""
|
|
3947 |
msgid "Search Title"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#: views/b2s/support.php:
|
3951 |
msgid "Security"
|
3952 |
msgstr ""
|
3953 |
|
@@ -3955,22 +4019,22 @@ msgstr ""
|
|
3955 |
msgid "See all publications for your message live on "
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: views/b2s/premium.php:
|
3959 |
msgid ""
|
3960 |
"See your entire schedule at a glance, with team view and network filter. "
|
3961 |
"Edit scheduled posts or add new social media posts per drag & drop."
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: views/b2s/dashboard.php:
|
3965 |
-
#: views/b2s/post.calendar.php:
|
3966 |
msgid "select"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: views/b2s/dashboard.php:
|
3970 |
msgid "Select a post"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: views/b2s/premium.php:
|
3974 |
msgid "Select a user"
|
3975 |
msgstr ""
|
3976 |
|
@@ -3978,8 +4042,8 @@ msgstr ""
|
|
3978 |
msgid "Select all"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: includes/B2S/Post/Item.php:
|
3982 |
-
#: includes/B2S/Post/Item.php:
|
3983 |
msgid "select all"
|
3984 |
msgstr ""
|
3985 |
|
@@ -3991,18 +4055,18 @@ msgstr ""
|
|
3991 |
msgid "Select Image"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: views/b2s/curation.php:
|
3995 |
msgid "Select image"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: views/b2s/dashboard.php:
|
3999 |
-
#: views/b2s/post.sched.php:
|
4000 |
msgid "Select image for"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:
|
4004 |
-
#: views/b2s/dashboard.php:
|
4005 |
-
#: views/b2s/ship.php:
|
4006 |
#: views/b2s/html/footer.php:39 views/b2s/html/footer.php:70
|
4007 |
#: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
|
4008 |
#: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
|
@@ -4011,15 +4075,15 @@ msgstr ""
|
|
4011 |
msgid "Select individual images per post"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: views/b2s/premium.php:
|
4015 |
msgid ""
|
4016 |
"Select individual images per post or network and select any image from your "
|
4017 |
"media library to create more variations for your posts."
|
4018 |
msgstr ""
|
4019 |
|
4020 |
-
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:
|
4021 |
-
#: views/b2s/dashboard.php:
|
4022 |
-
#: views/b2s/ship.php:
|
4023 |
#: views/b2s/html/footer.php:38 views/b2s/html/footer.php:69
|
4024 |
#: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
|
4025 |
#: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
|
@@ -4034,7 +4098,7 @@ msgid ""
|
|
4034 |
"format for Twitter, LinkedIn, and Facebook."
|
4035 |
msgstr ""
|
4036 |
|
4037 |
-
#: views/b2s/premium.php:
|
4038 |
msgid ""
|
4039 |
"Select link post or image post per network to choose the optimal format for "
|
4040 |
"your post."
|
@@ -4045,13 +4109,13 @@ msgstr ""
|
|
4045 |
msgid "Select network collection:"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: views/b2s/autopost.php:
|
4049 |
#: includes/B2S/Ship/Image.php:100
|
4050 |
msgid "Select or upload an image from media gallery"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
-
#: views/b2s/network.php:374 views/b2s/network.php:429 views/b2s/ship.php:
|
4054 |
-
#: views/b2s/ship.php:
|
4055 |
msgid "Select Pinboard"
|
4056 |
msgstr ""
|
4057 |
|
@@ -4078,8 +4142,8 @@ msgstr ""
|
|
4078 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
-
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:
|
4082 |
-
#: views/b2s/repost.php:
|
4083 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
4084 |
msgid "Select Twitter profile:"
|
4085 |
msgstr ""
|
@@ -4095,7 +4159,7 @@ msgstr ""
|
|
4095 |
msgid "selected date"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: views/b2s/network.php:415 views/b2s/ship.php:
|
4099 |
msgid "Server-Location"
|
4100 |
msgstr ""
|
4101 |
|
@@ -4120,25 +4184,25 @@ msgid ""
|
|
4120 |
msgstr ""
|
4121 |
|
4122 |
#: includes/Loader.php:867 includes/Loader.php:1032 includes/Loader.php:1032
|
4123 |
-
#: includes/Loader.php:
|
4124 |
-
#: views/b2s/html/sidebar.php:
|
4125 |
msgid "Settings"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: views/b2s/ship.php:
|
4129 |
#: includes/B2S/Curation/View.php:113
|
4130 |
msgid "Share"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: includes/B2S/Post/Item.php:
|
4134 |
msgid "share"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
-
#: views/b2s/curation.php:
|
4138 |
msgid "Share image posts:"
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
#: views/b2s/curation.php:
|
4142 |
msgid ""
|
4143 |
"Share images to get them into the Google image search to further increase "
|
4144 |
"your outreach and traffic from search engines."
|
@@ -4150,17 +4214,33 @@ msgid ""
|
|
4150 |
"feeds and plugins can be shared automatically on your social media channels."
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: views/b2s/premium.php:
|
4154 |
msgid ""
|
4155 |
"Share imported RSS feeds automatically to get more variations for your "
|
4156 |
"content."
|
4157 |
msgstr ""
|
4158 |
|
4159 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4160 |
msgid "Share new post on Social Media"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4164 |
msgid "Share Now"
|
4165 |
msgstr ""
|
4166 |
|
@@ -4168,13 +4248,13 @@ msgstr ""
|
|
4168 |
msgid "share oldest posts first"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: views/b2s/html/header.php:
|
4172 |
msgid "Share on multiple accounts per network"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:
|
4176 |
-
#: views/b2s/dashboard.php:
|
4177 |
-
#: views/b2s/ship.php:
|
4178 |
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
|
4179 |
#: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
|
4180 |
#: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
|
@@ -4182,23 +4262,19 @@ msgstr ""
|
|
4182 |
msgid "Share on multiple profiles, pages and groups"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: includes/B2S/Post/Item.php:
|
4186 |
-
#: includes/B2S/Post/Item.php:
|
4187 |
-
#: includes/B2S/Post/Item.php:
|
4188 |
msgid "Share on Social Media"
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: views/b2s/
|
4192 |
-
msgid "Share Posts"
|
4193 |
-
msgstr ""
|
4194 |
-
|
4195 |
-
#: views/b2s/curation.php:238
|
4196 |
msgid ""
|
4197 |
"Share pure text messages and personal comments with your followers and "
|
4198 |
"readers."
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#: views/b2s/curation.php:
|
4202 |
msgid "Share text posts:"
|
4203 |
msgstr ""
|
4204 |
|
@@ -4206,8 +4282,8 @@ msgstr ""
|
|
4206 |
msgid "share up to"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#:
|
4210 |
-
msgid "Share
|
4211 |
msgstr ""
|
4212 |
|
4213 |
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:344
|
@@ -4222,19 +4298,19 @@ msgstr ""
|
|
4222 |
msgid "Share your post"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
-
#: views/b2s/premium.php:
|
4226 |
msgid ""
|
4227 |
"Share your posts automatically across your preferred networks at once or at "
|
4228 |
"your pre-scheduled time-settings."
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: views/b2s/premium.php:
|
4232 |
msgid ""
|
4233 |
"Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and "
|
4234 |
"Medium."
|
4235 |
msgstr ""
|
4236 |
|
4237 |
-
#: views/b2s/dashboard.php:
|
4238 |
msgid "Share your WordPress posts, pages or products"
|
4239 |
msgstr ""
|
4240 |
|
@@ -4242,7 +4318,7 @@ msgstr ""
|
|
4242 |
msgid "Shared"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
-
#: includes/B2S/Post/Item.php:
|
4246 |
#, php-format
|
4247 |
msgid "shared by %s"
|
4248 |
msgstr ""
|
@@ -4251,12 +4327,11 @@ msgstr ""
|
|
4251 |
msgid "shared by user"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: includes/Loader.php:917 views/b2s/html/
|
4255 |
-
#: views/b2s/html/sidebar.php:125
|
4256 |
msgid "Shared Posts"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: includes/B2S/Metrics/Item.php:
|
4260 |
msgid "shared social media posts"
|
4261 |
msgstr ""
|
4262 |
|
@@ -4264,11 +4339,11 @@ msgstr ""
|
|
4264 |
msgid "shared to network"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: views/b2s/metrics.php:
|
4268 |
msgid "Shares"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: includes/B2S/Post/Item.php:
|
4272 |
#, php-format
|
4273 |
msgid "sharing in progress by %s"
|
4274 |
msgstr ""
|
@@ -4286,7 +4361,7 @@ msgstr ""
|
|
4286 |
msgid "Sharing on multiple accounts per network"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
-
#: views/b2s/support.php:
|
4290 |
msgid "Sharing-Debugger"
|
4291 |
msgstr ""
|
4292 |
|
@@ -4298,7 +4373,7 @@ msgstr ""
|
|
4298 |
msgid "Shortext"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: includes/B2S/Post/Item.php:
|
4302 |
msgid "show"
|
4303 |
msgstr ""
|
4304 |
|
@@ -4310,16 +4385,16 @@ msgstr ""
|
|
4310 |
msgid "Show all"
|
4311 |
msgstr ""
|
4312 |
|
4313 |
-
#: views/b2s/post.calendar.php:
|
4314 |
#: views/b2s/widgets/calendar.php:43
|
4315 |
msgid "show all"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: views/b2s/premium.php:
|
4319 |
msgid "Show all premium features"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:
|
4323 |
msgid "show calendar"
|
4324 |
msgstr ""
|
4325 |
|
@@ -4327,11 +4402,11 @@ msgstr ""
|
|
4327 |
msgid "show details"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
-
#: views/b2s/dashboard.php:
|
4331 |
msgid "show full calendar"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
-
#: views/b2s/premium.php:
|
4335 |
msgid "Show me plans and prices"
|
4336 |
msgstr ""
|
4337 |
|
@@ -4339,41 +4414,35 @@ msgstr ""
|
|
4339 |
msgid "Sign in"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
-
#: views/b2s/network.php:439 views/b2s/ship.php:
|
4343 |
msgid "Sign in to Pinterest"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
-
#: views/b2s/autopost.php:
|
4347 |
msgid ""
|
4348 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
4349 |
"and define the preferred settings panel for each user."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: views/b2s/autopost.php:
|
4353 |
msgid ""
|
4354 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
4355 |
"and define the preferred settings panel for each user. "
|
4356 |
msgstr ""
|
4357 |
|
4358 |
-
#: includes/
|
4359 |
-
msgid "Site & Blog Content"
|
4360 |
-
msgstr ""
|
4361 |
-
|
4362 |
-
#: includes/Tools.php:508
|
4363 |
msgid "Slovakia"
|
4364 |
msgstr ""
|
4365 |
|
4366 |
#: views/b2s/network.php:239 views/b2s/ship.php:27
|
4367 |
#: includes/B2S/AutoPost/Item.php:34 includes/B2S/Curation/View.php:56
|
4368 |
-
#: includes/B2S/Network/Item.php:
|
4369 |
-
#: includes/B2S/Network/Item.php:
|
4370 |
-
#: includes/B2S/Network/Item.php:
|
4371 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:172
|
4372 |
-
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:
|
4373 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:63
|
4374 |
-
#: views/b2s/
|
4375 |
-
#: views/b2s/html/post.navbar.php:23 views/b2s/partials/post-edit-modal.php:9
|
4376 |
-
#: views/b2s/widgets/posts.php:18
|
4377 |
msgid "SMART"
|
4378 |
msgstr ""
|
4379 |
|
@@ -4381,7 +4450,7 @@ msgstr ""
|
|
4381 |
msgid "Smart: 3 (per user)"
|
4382 |
msgstr ""
|
4383 |
|
4384 |
-
#: includes/Tools.php:
|
4385 |
msgid "Smileys & People"
|
4386 |
msgstr ""
|
4387 |
|
@@ -4389,11 +4458,11 @@ msgstr ""
|
|
4389 |
msgid "Sniply"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
-
#: views/b2s/ship.php:
|
4393 |
msgid "Social Accounts"
|
4394 |
msgstr ""
|
4395 |
|
4396 |
-
#: views/b2s/html/header.php:
|
4397 |
msgid "Social Media Auto-Posting"
|
4398 |
msgstr ""
|
4399 |
|
@@ -4402,50 +4471,54 @@ msgstr ""
|
|
4402 |
msgid "Social media auto-posting and auto-scheduling"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: views/b2s/premium.php:
|
4406 |
msgid "Social Media Calendar"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
#: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
|
4410 |
-
#: views/b2s/metrics.php:
|
4411 |
-
#: views/b2s/html/sidebar.php:
|
4412 |
msgid "Social Media Metrics"
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#: views/b2s/metrics.php:
|
4416 |
msgid "Social Media Metrics Summary"
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#: views/b2s/settings.php:
|
4420 |
msgid "Social Media Networks"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: views/b2s/html/sidebar.php:87
|
4424 |
-
msgid "Social Media Post"
|
4425 |
-
msgstr ""
|
4426 |
-
|
4427 |
#: includes/Loader.php:917
|
4428 |
msgid "Social Media Post Drafts"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: includes/Loader.php:1026 includes/Loader.php:1086 views/b2s/curation.php:
|
4432 |
-
#: views/b2s/curation.php:
|
4433 |
msgid "Social Media Posts"
|
4434 |
msgstr ""
|
4435 |
|
4436 |
-
#: includes/B2S/Post/Item.php:
|
4437 |
msgid "social media posts ready to be shared"
|
4438 |
msgstr ""
|
4439 |
|
4440 |
-
#: views/b2s/ship.php:
|
4441 |
msgid "Social Media Scheduling & Sharing"
|
4442 |
msgstr ""
|
4443 |
|
4444 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4445 |
msgid "Social Media Time Settings"
|
4446 |
msgstr ""
|
4447 |
|
4448 |
-
#: views/b2s/settings.php:
|
4449 |
msgid "Social Meta Data"
|
4450 |
msgstr ""
|
4451 |
|
@@ -4467,7 +4540,7 @@ msgid ""
|
|
4467 |
"following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
|
4468 |
msgstr ""
|
4469 |
|
4470 |
-
#: views/b2s/html/header.php:
|
4471 |
msgid "Something went wrong on our side. Please contact support!"
|
4472 |
msgstr ""
|
4473 |
|
@@ -4475,19 +4548,19 @@ msgstr ""
|
|
4475 |
msgid "sort"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
-
#: views/b2s/post.calendar.php:
|
4479 |
msgid "Sort by network"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
-
#: includes/Tools.php:
|
4483 |
msgid "South Africa"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
-
#: includes/Tools.php:
|
4487 |
msgid "Spain"
|
4488 |
msgstr ""
|
4489 |
|
4490 |
-
#: includes/B2S/Ship/Item.php:
|
4491 |
msgid "Start date"
|
4492 |
msgstr ""
|
4493 |
|
@@ -4495,16 +4568,16 @@ msgstr ""
|
|
4495 |
msgid "Start your 14-Day Free Trial"
|
4496 |
msgstr ""
|
4497 |
|
4498 |
-
#: views/b2s/premium.php:
|
4499 |
#: views/b2s/html/sidebar.ship.php:46
|
4500 |
msgid "Start your 30-day free Premium trial"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: views/b2s/html/header.php:
|
4504 |
msgid "Start your free 30-day-Premium-trial"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#: views/b2s/html/header.php:
|
4508 |
msgid "Start your free trial for Social Media Metrics"
|
4509 |
msgstr ""
|
4510 |
|
@@ -4512,7 +4585,7 @@ msgstr ""
|
|
4512 |
msgid "Startdate"
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#: views/b2s/support.php:
|
4516 |
msgid "Step-by-Step-Guide"
|
4517 |
msgstr ""
|
4518 |
|
@@ -4537,7 +4610,7 @@ msgstr ""
|
|
4537 |
msgid "Subtitle"
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: includes/B2S/Network/Item.php:
|
4541 |
msgid "Successfully saved"
|
4542 |
msgstr ""
|
4543 |
|
@@ -4549,7 +4622,7 @@ msgstr ""
|
|
4549 |
msgid "Summary with large image"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:
|
4553 |
msgid "Sun"
|
4554 |
msgstr ""
|
4555 |
|
@@ -4561,19 +4634,19 @@ msgstr ""
|
|
4561 |
msgid "Support"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
-
#: includes/B2S/Ship/Item.php:
|
4565 |
msgid "Supported HTML tags"
|
4566 |
msgstr ""
|
4567 |
|
4568 |
-
#: includes/Tools.php:
|
4569 |
msgid "Sweden"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
-
#: includes/Tools.php:
|
4573 |
msgid "Switzerland"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
-
#: includes/Tools.php:
|
4577 |
msgid "Symbols"
|
4578 |
msgstr ""
|
4579 |
|
@@ -4581,6 +4654,13 @@ msgstr ""
|
|
4581 |
msgid "System"
|
4582 |
msgstr ""
|
4583 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4584 |
#: views/b2s/network.php:509 views/b2s/network.php:594
|
4585 |
msgid "Team Management"
|
4586 |
msgstr ""
|
@@ -4589,7 +4669,7 @@ msgstr ""
|
|
4589 |
msgid "Terms"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
-
#: views/b2s/html/header.php:
|
4593 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
4594 |
msgstr ""
|
4595 |
|
@@ -4597,30 +4677,35 @@ msgstr ""
|
|
4597 |
msgid "Test PR-Gateway for free"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: includes/B2S/Ship/Item.php:
|
4601 |
msgid "Text only"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
-
#:
|
4605 |
-
#: includes/B2S/Ship/Item.php:378
|
4606 |
msgid "Text Post"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
-
#: views/b2s/curation.php:
|
4610 |
msgid ""
|
4611 |
"Text posts enable you to share pure text messages and personal comments with "
|
4612 |
"your followers and readers. You can also customize your posts with "
|
4613 |
"individual hashtags, @mentions, or emojis."
|
4614 |
msgstr ""
|
4615 |
|
4616 |
-
#: views/b2s/html/header.php:
|
4617 |
msgid "Thank you! Your feedback has been received."
|
4618 |
msgstr ""
|
4619 |
|
4620 |
-
#: views/b2s/html/header.php:
|
4621 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
4622 |
msgstr ""
|
4623 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4624 |
#: includes/B2S/PostBox.php:168
|
4625 |
msgid "The Autoposter is"
|
4626 |
msgstr ""
|
@@ -4640,6 +4725,12 @@ msgid ""
|
|
4640 |
"Facebook (page and group) and on Twitter."
|
4641 |
msgstr ""
|
4642 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4643 |
#: views/b2s/network.php:535
|
4644 |
msgid "The connection does not exist."
|
4645 |
msgstr ""
|
@@ -4654,13 +4745,13 @@ msgid ""
|
|
4654 |
"assigned connection from other users first."
|
4655 |
msgstr ""
|
4656 |
|
4657 |
-
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:
|
4658 |
msgid ""
|
4659 |
"The connection to the server failed. Please try again! You can find more "
|
4660 |
"information and solutions in the"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#: views/b2s/ship.php:
|
4664 |
msgid ""
|
4665 |
"The connection to the server failed. Please try again! You can find more "
|
4666 |
"information and solutions in the guide for server connection"
|
@@ -4698,7 +4789,7 @@ msgstr ""
|
|
4698 |
msgid "The default card type to use"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: views/b2s/metrics.php:
|
4702 |
msgid ""
|
4703 |
"The first step is to create and share a social media post for which you want "
|
4704 |
"to track the metrics. You can share WordPress posts, pages and products, "
|
@@ -4707,13 +4798,13 @@ msgid ""
|
|
4707 |
"under the menu item \"Social Media Metrics\"."
|
4708 |
msgstr ""
|
4709 |
|
4710 |
-
#: views/b2s/html/header.php:
|
4711 |
msgid ""
|
4712 |
"The free trial can not be started. This blog has been already registered for "
|
4713 |
"the free trial."
|
4714 |
msgstr ""
|
4715 |
|
4716 |
-
#: includes/B2S/Ship/Item.php:
|
4717 |
msgid "The Headline..."
|
4718 |
msgstr ""
|
4719 |
|
@@ -4732,7 +4823,7 @@ msgstr ""
|
|
4732 |
msgid "The images file types .jpg and .png are allowed. Please try another."
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#: views/b2s/html/header.php:
|
4736 |
msgid "The license has been successfully activated."
|
4737 |
msgstr ""
|
4738 |
|
@@ -4748,11 +4839,11 @@ msgid ""
|
|
4748 |
"first image detected on your page. The image links to your blog post."
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#: includes/B2S/Network/Item.php:
|
4752 |
msgid "The link will be added automatically at the end of the post."
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#: includes/B2S/Network/Item.php:
|
4756 |
msgid ""
|
4757 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
4758 |
"your page, in order to refer to the original source of the content and to "
|
@@ -4763,8 +4854,8 @@ msgstr ""
|
|
4763 |
msgid "The link you followed has expired. Please refresh your page."
|
4764 |
msgstr ""
|
4765 |
|
4766 |
-
#: views/b2s/network.php:349 views/b2s/network.php:362 views/b2s/ship.php:
|
4767 |
-
#: views/b2s/ship.php:
|
4768 |
msgid ""
|
4769 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
4770 |
"sign in to Pinterest using the Blog2Social browser extension."
|
@@ -4788,7 +4879,7 @@ msgid ""
|
|
4788 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
4789 |
msgstr ""
|
4790 |
|
4791 |
-
#: includes/B2S/Network/Item.php:
|
4792 |
msgid "The network does not support hashtags."
|
4793 |
msgstr ""
|
4794 |
|
@@ -4820,7 +4911,7 @@ msgstr ""
|
|
4820 |
msgid "The orginal tweet is scheduled on:"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
-
#: views/b2s/html/header.php:
|
4824 |
msgid "The page and post meta data could not be removed."
|
4825 |
msgstr ""
|
4826 |
|
@@ -4828,14 +4919,14 @@ msgstr ""
|
|
4828 |
msgid "The parameters could not be saved. Please try again."
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#: includes/B2S/Calendar/Item.php:534 includes/B2S/Post/Item.php:
|
4832 |
#, php-format
|
4833 |
msgid ""
|
4834 |
"The post cannot be published due to changes on the Instagram interface. More "
|
4835 |
"information in the <a href=\"%s\" target=\"_blank\">Instagram guide</a>."
|
4836 |
msgstr ""
|
4837 |
|
4838 |
-
#: views/b2s/html/header.php:
|
4839 |
msgid ""
|
4840 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
4841 |
"re-schedule them, please delete the posts before adding them again."
|
@@ -4853,12 +4944,26 @@ msgid ""
|
|
4853 |
"website/ blog."
|
4854 |
msgstr ""
|
4855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4856 |
#: includes/B2S/AutoPost/Item.php:51
|
4857 |
msgid ""
|
4858 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
4859 |
"admin."
|
4860 |
msgstr ""
|
4861 |
|
|
|
|
|
|
|
|
|
|
|
|
|
4862 |
#: views/b2s/network.php:311
|
4863 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
4864 |
msgstr ""
|
@@ -4867,7 +4972,13 @@ msgstr ""
|
|
4867 |
msgid "The tags you have set in your post."
|
4868 |
msgstr ""
|
4869 |
|
4870 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
|
|
|
|
4871 |
#, php-format
|
4872 |
msgid ""
|
4873 |
"The time of publishing a post can play a decisive role in achieving more "
|
@@ -4883,7 +4994,7 @@ msgstr ""
|
|
4883 |
msgid "The title of your post"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
-
#: views/b2s/support.php:
|
4887 |
msgid ""
|
4888 |
"The Troubleshooting tool helps you with conflicts that can be caused by the "
|
4889 |
"system environment of your blog. So you can always check your settings on "
|
@@ -4906,11 +5017,11 @@ msgid ""
|
|
4906 |
"another network collection."
|
4907 |
msgstr ""
|
4908 |
|
4909 |
-
#: views/b2s/autopost.php:
|
4910 |
msgid "There are two different setting panels in the auto-poster section:"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
-
#: views/b2s/ship.php:
|
4914 |
msgid ""
|
4915 |
"There is already a saved draft for this WordPress post or page. If you save "
|
4916 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
@@ -4924,7 +5035,7 @@ msgid ""
|
|
4924 |
"anymore. Do you want your press release to be published now?"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#: views/b2s/ship.php:
|
4928 |
msgid ""
|
4929 |
"This allows you to adjust your network selection at any time and save it by "
|
4930 |
"clicking on \"Save network selection\"."
|
@@ -4934,11 +5045,11 @@ msgstr ""
|
|
4934 |
msgid "This connection has already been assigned to this user."
|
4935 |
msgstr ""
|
4936 |
|
4937 |
-
#: views/b2s/html/header.php:
|
4938 |
msgid "This entry could not be removed. It's not yours!"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
-
#: views/b2s/html/header.php:
|
4942 |
msgid "This entry was removed successfully."
|
4943 |
msgstr ""
|
4944 |
|
@@ -4954,7 +5065,7 @@ msgid ""
|
|
4954 |
"edited by users with admin rights only."
|
4955 |
msgstr ""
|
4956 |
|
4957 |
-
#: includes/B2S/Ship/Save.php:
|
4958 |
msgid "This is how it works:"
|
4959 |
msgstr ""
|
4960 |
|
@@ -4966,7 +5077,7 @@ msgstr ""
|
|
4966 |
msgid "This post is blocked by %1"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
-
#: views/b2s/html/header.php:
|
4970 |
msgid "This post was edited successfully."
|
4971 |
msgstr ""
|
4972 |
|
@@ -4978,7 +5089,7 @@ msgstr ""
|
|
4978 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
-
#: includes/B2S/Network/Item.php:
|
4982 |
msgid ""
|
4983 |
"This social network displays the predefined hashtags as clickable tags at "
|
4984 |
"the end of your post."
|
@@ -4998,7 +5109,11 @@ msgid ""
|
|
4998 |
"accounts with the new XING interface to reschedule your posts."
|
4999 |
msgstr ""
|
5000 |
|
5001 |
-
#: includes/B2S/
|
|
|
|
|
|
|
|
|
5002 |
msgid "Thu"
|
5003 |
msgstr ""
|
5004 |
|
@@ -5006,16 +5121,16 @@ msgstr ""
|
|
5006 |
msgid "Thursday"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
-
#: includes/B2S/Ship/Item.php:
|
5010 |
#: views/b2s/partials/post-edit-modal.php:71
|
5011 |
msgid "Time"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
-
#: includes/B2S/Ship/Item.php:
|
5015 |
msgid "Time to publish"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
-
#: views/b2s/ship.php:
|
5019 |
msgid "Time zone"
|
5020 |
msgstr ""
|
5021 |
|
@@ -5023,7 +5138,7 @@ msgstr ""
|
|
5023 |
msgid "times"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
-
#: includes/B2S/Ship/Item.php:
|
5027 |
msgid "Timespan"
|
5028 |
msgstr ""
|
5029 |
|
@@ -5031,7 +5146,7 @@ msgstr ""
|
|
5031 |
msgid "Timezone for Scheduling"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
-
#: views/b2s/ship.php:
|
5035 |
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
|
5036 |
#: includes/B2S/Settings/Item.php:231 views/prg/html/form.php:26
|
5037 |
#: views/prg/html/form.php:28
|
@@ -5042,17 +5157,17 @@ msgstr ""
|
|
5042 |
msgid "title"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: views/b2s/settings.php:
|
5046 |
msgid "Title: The title of your post."
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: views/b2s/autopost.php:
|
5050 |
msgid ""
|
5051 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
5052 |
"be sent to your primary Twitter profile."
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#: views/b2s/ship.php:
|
5056 |
#, php-format
|
5057 |
msgid ""
|
5058 |
"To define and save more network selections for your posting purposes, you "
|
@@ -5070,7 +5185,7 @@ msgid ""
|
|
5070 |
"“Add oEmbed tags” box."
|
5071 |
msgstr ""
|
5072 |
|
5073 |
-
#: views/b2s/support.php:
|
5074 |
#, php-format
|
5075 |
msgid ""
|
5076 |
"To get technical help, please create your account to access the Blog2Social "
|
@@ -5078,8 +5193,18 @@ msgid ""
|
|
5078 |
"href=\"%s\" target=\"_blank\">Info</a>)"
|
5079 |
msgstr ""
|
5080 |
|
5081 |
-
#:
|
5082 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5083 |
msgid "To reactivate this connection,"
|
5084 |
msgstr ""
|
5085 |
|
@@ -5091,7 +5216,7 @@ msgstr ""
|
|
5091 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
5092 |
msgstr ""
|
5093 |
|
5094 |
-
#: views/b2s/html/header.php:
|
5095 |
msgid ""
|
5096 |
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
5097 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
@@ -5105,19 +5230,19 @@ msgstr ""
|
|
5105 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
5106 |
msgstr ""
|
5107 |
|
5108 |
-
#: includes/Tools.php:
|
5109 |
msgid "Travel & Places"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
-
#: views/b2s/support.php:
|
5113 |
msgid "Troubleshooting for Error Messages"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
-
#: views/b2s/support.php:
|
5117 |
msgid "Troubleshooting-Tool"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
-
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:
|
5121 |
msgid "Tue"
|
5122 |
msgstr ""
|
5123 |
|
@@ -5125,11 +5250,11 @@ msgstr ""
|
|
5125 |
msgid "Tuesday"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
-
#: includes/Tools.php:
|
5129 |
msgid "Turkey"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
-
#: views/b2s/support.php:
|
5133 |
msgid "Twitter Card Validator"
|
5134 |
msgstr ""
|
5135 |
|
@@ -5154,7 +5279,7 @@ msgid ""
|
|
5154 |
"selection.</a>"
|
5155 |
msgstr ""
|
5156 |
|
5157 |
-
#: views/b2s/repost.php:
|
5158 |
#, php-format
|
5159 |
msgid ""
|
5160 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
@@ -5167,7 +5292,7 @@ msgid ""
|
|
5167 |
"again!"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
-
#: includes/Tools.php:
|
5171 |
msgid "United States of America"
|
5172 |
msgstr ""
|
5173 |
|
@@ -5175,17 +5300,17 @@ msgstr ""
|
|
5175 |
msgid "Unknown error"
|
5176 |
msgstr ""
|
5177 |
|
5178 |
-
#: views/b2s/support.php:
|
5179 |
msgid "Unknown error has occurred. Please try again."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
-
#: includes/Ajax/Post.php:
|
5183 |
-
#: includes/B2S/Network/Item.php:
|
5184 |
-
#: includes/B2S/Network/Item.php:
|
5185 |
msgid "Unknown username"
|
5186 |
msgstr ""
|
5187 |
|
5188 |
-
#: views/b2s/curation.php:
|
5189 |
msgid ""
|
5190 |
"Unlock Blog2Social Premium Pro to create and share image posts, video links, "
|
5191 |
"and text posts from any source."
|
@@ -5207,15 +5332,19 @@ msgstr ""
|
|
5207 |
msgid "updated posts"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
-
#: views/b2s/premium.php:
|
5211 |
#: includes/B2S/AutoPost/Item.php:151 includes/B2S/RePost/Item.php:33
|
5212 |
msgid "Upgrade"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#: views/b2s/html/sidebar.php:
|
5216 |
msgid "Upgrade License"
|
5217 |
msgstr ""
|
5218 |
|
|
|
|
|
|
|
|
|
5219 |
#: views/b2s/network.php:565
|
5220 |
msgid "Upgrade to Blog2Social Business"
|
5221 |
msgstr ""
|
@@ -5238,15 +5367,24 @@ msgstr ""
|
|
5238 |
msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
|
5239 |
msgstr ""
|
5240 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5241 |
#: views/b2s/html/footer.php:55
|
5242 |
msgid "Upgrade to Blog2Social PREMIUM PRO"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
-
#: includes/B2S/Network/Item.php:
|
5246 |
msgid "Upgrade to Blog2Social Smart"
|
5247 |
msgstr ""
|
5248 |
|
5249 |
-
#: includes/B2S/Network/Item.php:
|
5250 |
msgid ""
|
5251 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
5252 |
"templates that will automatically pre-format the structure of your social "
|
@@ -5261,11 +5399,11 @@ msgstr ""
|
|
5261 |
msgid "Upgrade to BUSINESS"
|
5262 |
msgstr ""
|
5263 |
|
5264 |
-
#: views/b2s/html/header.php:
|
5265 |
msgid "Upgrade to PREMIUM"
|
5266 |
msgstr ""
|
5267 |
|
5268 |
-
#: includes/Loader.php:864 views/b2s/html/sidebar.php:
|
5269 |
#: views/b2s/html/sidebar.ship.php:44
|
5270 |
msgid "Upgrade to Premium"
|
5271 |
msgstr ""
|
@@ -5274,14 +5412,14 @@ msgstr ""
|
|
5274 |
msgid "Upgrade to Premium Pro now."
|
5275 |
msgstr ""
|
5276 |
|
5277 |
-
#: views/b2s/curation.php:
|
5278 |
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
|
5279 |
msgid "Upgrade to PRO and above"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
-
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:
|
5283 |
-
#: views/b2s/dashboard.php:
|
5284 |
-
#: views/b2s/ship.php:
|
5285 |
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
|
5286 |
#: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
|
5287 |
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
|
@@ -5289,6 +5427,12 @@ msgstr ""
|
|
5289 |
msgid "Upgrade to SMART and above"
|
5290 |
msgstr ""
|
5291 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5292 |
#: views/b2s/network.php:468 views/b2s/network.php:568
|
5293 |
msgid "URL Parameters"
|
5294 |
msgstr ""
|
@@ -5297,7 +5441,7 @@ msgstr ""
|
|
5297 |
msgid "Url Shortener"
|
5298 |
msgstr ""
|
5299 |
|
5300 |
-
#: views/b2s/premium.php:
|
5301 |
msgid ""
|
5302 |
"Use Blog2Social Premium for even smarter social media automation: schedule "
|
5303 |
"your posts automatically with the Best Time Manager, choose specific dates "
|
@@ -5306,22 +5450,22 @@ msgid ""
|
|
5306 |
"network and much more."
|
5307 |
msgstr ""
|
5308 |
|
5309 |
-
#: views/b2s/curation.php:
|
5310 |
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
5311 |
msgstr ""
|
5312 |
|
5313 |
-
#: views/b2s/autopost.php:
|
5314 |
#: includes/B2S/Ship/Image.php:101
|
5315 |
msgid "Use image"
|
5316 |
msgstr ""
|
5317 |
|
5318 |
-
#: views/b2s/premium.php:
|
5319 |
msgid ""
|
5320 |
"Use the Best Times Manager to schedule your posts automatically or define "
|
5321 |
"your own best time scheme."
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: views/b2s/settings.php:
|
5325 |
msgid ""
|
5326 |
"Use the pre-defined best time settings or define your own best time settings "
|
5327 |
"for sharing your posts . Posting at the right time can be essential to make "
|
@@ -5332,55 +5476,51 @@ msgstr ""
|
|
5332 |
msgid "User"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
-
#: views/b2s/support.php:
|
5336 |
msgid "User name"
|
5337 |
msgstr ""
|
5338 |
|
5339 |
-
#: views/b2s/support.php:
|
5340 |
msgid "Username is taken."
|
5341 |
msgstr ""
|
5342 |
|
5343 |
-
#: views/b2s/support.php:
|
5344 |
msgid "validate"
|
5345 |
msgstr ""
|
5346 |
|
5347 |
-
#: views/b2s/support.php:
|
5348 |
msgid "Validate directly on Twitter"
|
5349 |
msgstr ""
|
5350 |
|
5351 |
-
#: includes/B2S/Network/Item.php:
|
5352 |
msgid "Value"
|
5353 |
msgstr ""
|
5354 |
|
5355 |
-
#: views/b2s/html/sidebar.php:
|
5356 |
msgid "Version"
|
5357 |
msgstr ""
|
5358 |
|
5359 |
-
#: includes/B2S/Post/Item.php:
|
5360 |
msgid "via Browser-Extension"
|
5361 |
msgstr ""
|
5362 |
|
5363 |
-
#: views/b2s/curation.php:46
|
5364 |
-
msgid "Video Post"
|
5365 |
-
msgstr ""
|
5366 |
-
|
5367 |
#: views/b2s/network.php:180
|
5368 |
msgid "View schedule posts"
|
5369 |
msgstr ""
|
5370 |
|
5371 |
-
#: includes/B2S/Ship/Save.php:
|
5372 |
msgid "view social media post"
|
5373 |
msgstr ""
|
5374 |
|
5375 |
-
#: includes/B2S/Ship/Item.php:
|
5376 |
msgid ""
|
5377 |
"Violating these rules can result in suspending your account. Always vary "
|
5378 |
"your content with different images, comments, hashtags or handles to prevent "
|
5379 |
"duplicate posts."
|
5380 |
msgstr ""
|
5381 |
|
5382 |
-
#: includes/B2S/Ship/Item.php:
|
5383 |
-
#: includes/B2S/Ship/Item.php:
|
5384 |
msgid ""
|
5385 |
"Violating these rules can result in Twitter suspending your account. Always "
|
5386 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
@@ -5393,11 +5533,11 @@ msgid ""
|
|
5393 |
"authorization."
|
5394 |
msgstr ""
|
5395 |
|
5396 |
-
#: views/b2s/metrics.php:
|
5397 |
msgid "We hope you enjoy analysing your posts!"
|
5398 |
msgstr ""
|
5399 |
|
5400 |
-
#: views/b2s/html/header.php:
|
5401 |
msgid "We hope you liked Blog2Social Premium."
|
5402 |
msgstr ""
|
5403 |
|
@@ -5405,7 +5545,7 @@ msgstr ""
|
|
5405 |
msgid "We never store your data from your social media profiles"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: views/b2s/html/header.php:
|
5409 |
msgid "We updated our Privacy Policy"
|
5410 |
msgstr ""
|
5411 |
|
@@ -5414,11 +5554,7 @@ msgstr ""
|
|
5414 |
msgid "Website"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
-
#:
|
5418 |
-
msgid "Website & Blog Content"
|
5419 |
-
msgstr ""
|
5420 |
-
|
5421 |
-
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1376
|
5422 |
msgid "Wed"
|
5423 |
msgstr ""
|
5424 |
|
@@ -5426,23 +5562,27 @@ msgstr ""
|
|
5426 |
msgid "Wednesday"
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: includes/B2S/Ship/Item.php:
|
5430 |
msgid "Week"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: includes/B2S/Ship/Item.php:
|
5434 |
msgid "weekly"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: includes/B2S/Ship/Item.php:
|
5438 |
msgid "Weeks"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: views/b2s/metrics.php:
|
5442 |
msgid "Welcome to the trial of the beta version \"Social Media Metrics\"!"
|
5443 |
msgstr ""
|
5444 |
|
5445 |
-
#: views/b2s/
|
|
|
|
|
|
|
|
|
5446 |
msgid "What would you like to share?"
|
5447 |
msgstr ""
|
5448 |
|
@@ -5454,7 +5594,7 @@ msgstr ""
|
|
5454 |
msgid "When should your content be shared?"
|
5455 |
msgstr ""
|
5456 |
|
5457 |
-
#: views/b2s/network.php:659 views/b2s/ship.php:
|
5458 |
#, php-format
|
5459 |
msgid ""
|
5460 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
@@ -5467,8 +5607,8 @@ msgid ""
|
|
5467 |
" How to connect with Instagram.</a>."
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: views/b2s/curation.php:
|
5471 |
-
#: views/b2s/post.calendar.php:
|
5472 |
msgid ""
|
5473 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
5474 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
@@ -5508,9 +5648,9 @@ msgstr ""
|
|
5508 |
msgid "With Blog2Social Premium PRO you can post multiple images."
|
5509 |
msgstr ""
|
5510 |
|
5511 |
-
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:
|
5512 |
-
#: views/b2s/dashboard.php:
|
5513 |
-
#: views/b2s/ship.php:
|
5514 |
#: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
|
5515 |
#: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
|
5516 |
#: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
|
@@ -5518,6 +5658,12 @@ msgstr ""
|
|
5518 |
msgid "With Blog2Social Premium you can:"
|
5519 |
msgstr ""
|
5520 |
|
|
|
|
|
|
|
|
|
|
|
|
|
5521 |
#: views/b2s/network.php:706
|
5522 |
msgid ""
|
5523 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
@@ -5559,14 +5705,14 @@ msgid ""
|
|
5559 |
"image for your link post without Twitter Card meta tags."
|
5560 |
msgstr ""
|
5561 |
|
5562 |
-
#: views/b2s/curation.php:
|
5563 |
msgid ""
|
5564 |
"With Blog2Social you can share social media posts consisting of text, links, "
|
5565 |
"images, and videos automatically with your followers and readers and "
|
5566 |
"customize your posts with individual hashtags, @mentions, or emojis."
|
5567 |
msgstr ""
|
5568 |
|
5569 |
-
#: views/b2s/curation.php:
|
5570 |
msgid ""
|
5571 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
5572 |
"create your own social media posts to share any content based on text, links,"
|
@@ -5598,7 +5744,7 @@ msgid ""
|
|
5598 |
"."
|
5599 |
msgstr ""
|
5600 |
|
5601 |
-
#: views/b2s/metrics.php:
|
5602 |
msgid ""
|
5603 |
"With this function, you can compare the social media metrics for a period "
|
5604 |
"you choose by yourself and check whether the number of shared posts, "
|
@@ -5608,11 +5754,11 @@ msgid ""
|
|
5608 |
"the left and a comparison to the 3 days before on the right."
|
5609 |
msgstr ""
|
5610 |
|
5611 |
-
#: views/b2s/metrics.php:
|
5612 |
msgid "WordPress posts, pages and products"
|
5613 |
msgstr ""
|
5614 |
|
5615 |
-
#: views/b2s/html/header.php:
|
5616 |
msgid ""
|
5617 |
"WordPress session timeout: For security reasons, WordPress will let your "
|
5618 |
"session expire automatically if your site has been inactive for a while. <a "
|
@@ -5625,7 +5771,7 @@ msgid ""
|
|
5625 |
"heartbeats for using Blog2Social!"
|
5626 |
msgstr ""
|
5627 |
|
5628 |
-
#: views/b2s/html/header.php:
|
5629 |
msgid ""
|
5630 |
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
5631 |
"heartbeats for using Blog2Social! See also:"
|
@@ -5635,38 +5781,38 @@ msgstr ""
|
|
5635 |
msgid "Would you like to retweet?"
|
5636 |
msgstr ""
|
5637 |
|
5638 |
-
#: includes/B2S/Ship/Item.php:
|
5639 |
-
#: includes/B2S/Ship/Item.php:
|
5640 |
-
#: includes/B2S/Ship/Item.php:
|
5641 |
-
#: includes/B2S/Ship/Item.php:
|
5642 |
-
#: includes/B2S/Ship/Item.php:
|
5643 |
-
#: includes/B2S/Ship/Item.php:
|
5644 |
-
#: includes/B2S/Ship/Item.php:
|
5645 |
-
#: includes/B2S/Ship/Item.php:
|
5646 |
-
#: includes/B2S/Ship/Item.php:
|
5647 |
msgid "Write something about your post..."
|
5648 |
msgstr ""
|
5649 |
|
5650 |
-
#: views/b2s/curation.php:
|
5651 |
#: includes/B2S/Curation/View.php:23
|
5652 |
msgid "Write something..."
|
5653 |
msgstr ""
|
5654 |
|
5655 |
-
#: views/b2s/support.php:
|
5656 |
msgid "Yay :) You successfully registered for the Blog2Social Community!"
|
5657 |
msgstr ""
|
5658 |
|
5659 |
-
#: views/b2s/curation.php:
|
5660 |
-
#: views/b2s/ship.php:
|
5661 |
msgid "YES"
|
5662 |
msgstr ""
|
5663 |
|
5664 |
-
#: views/b2s/curation.draft.php:91 views/b2s/metrics.php:
|
5665 |
#: views/b2s/network.php:116 views/b2s/network.php:179
|
5666 |
-
#: views/b2s/post.approve.php:
|
5667 |
-
#: views/b2s/post.notice.php:
|
5668 |
-
#: views/b2s/post.sched.php:
|
5669 |
-
#: views/b2s/repost.php:
|
5670 |
msgid "YES, delete"
|
5671 |
msgstr ""
|
5672 |
|
@@ -5674,11 +5820,11 @@ msgstr ""
|
|
5674 |
msgid "Yes, I accept"
|
5675 |
msgstr ""
|
5676 |
|
5677 |
-
#: views/b2s/html/header.php:
|
5678 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
5679 |
msgstr ""
|
5680 |
|
5681 |
-
#: views/b2s/html/header.php:
|
5682 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
5683 |
msgstr ""
|
5684 |
|
@@ -5694,12 +5840,12 @@ msgstr ""
|
|
5694 |
msgid "You are signed out of PR-Gateway!"
|
5695 |
msgstr ""
|
5696 |
|
5697 |
-
#: views/b2s/metrics.php:
|
5698 |
-
#: views/b2s/post.publish.php:
|
5699 |
msgid "You are sure, you want to delete entries from the reporting?"
|
5700 |
msgstr ""
|
5701 |
|
5702 |
-
#: views/b2s/post.sched.php:
|
5703 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
5704 |
msgstr ""
|
5705 |
|
@@ -5736,20 +5882,20 @@ msgid ""
|
|
5736 |
"editing the following fields for"
|
5737 |
msgstr ""
|
5738 |
|
5739 |
-
#: views/b2s/html/header.php:
|
5740 |
msgid ""
|
5741 |
"You can now track the performance of your post directly in Blog2Social, and "
|
5742 |
"you can test it exclusively and for free!"
|
5743 |
msgstr ""
|
5744 |
|
5745 |
-
#: views/b2s/metrics.php:
|
5746 |
msgid ""
|
5747 |
"You can now track the performance of your posts directly in Blog2Social, "
|
5748 |
"starting with Facebook and Twitter, as well as other networks to follow. And "
|
5749 |
"you can test it exclusively and for free!"
|
5750 |
msgstr ""
|
5751 |
|
5752 |
-
#: views/b2s/metrics.php:
|
5753 |
msgid ""
|
5754 |
"You can now track the performance of your posts for Facebook and Twitter "
|
5755 |
"directly in Blog2Social. With these Social Media Metrics, you can analyze "
|
@@ -5764,7 +5910,7 @@ msgid ""
|
|
5764 |
"as you."
|
5765 |
msgstr ""
|
5766 |
|
5767 |
-
#: views/b2s/ship.php:
|
5768 |
msgid ""
|
5769 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
5770 |
"different choice of networks, profiles, pages or groups, or with different "
|
@@ -5778,7 +5924,7 @@ msgid ""
|
|
5778 |
"according to your current sharing preferences."
|
5779 |
msgstr ""
|
5780 |
|
5781 |
-
#: views/b2s/ship.php:
|
5782 |
msgid ""
|
5783 |
"You can save your current network selection. This network selection will be "
|
5784 |
"loaded automatically next time you open the social media post editor via "
|
@@ -5792,17 +5938,17 @@ msgid ""
|
|
5792 |
"different sharing purposes."
|
5793 |
msgstr ""
|
5794 |
|
5795 |
-
#: views/b2s/curation.php:
|
5796 |
msgid ""
|
5797 |
"You can select to share your post as a link post, video link post, or an "
|
5798 |
"image post on the following social networks:"
|
5799 |
msgstr ""
|
5800 |
|
5801 |
-
#: views/b2s/curation.php:
|
5802 |
msgid "You can share a text post on the following networks:"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
-
#: views/b2s/metrics.php:
|
5806 |
msgid ""
|
5807 |
"You can track the following Social Media Metrics depending on the social "
|
5808 |
"networks:"
|
@@ -5822,7 +5968,7 @@ msgid ""
|
|
5822 |
"platforms in the <a href=\"%s\" target=\"_blank\">link shortener guide</a>."
|
5823 |
msgstr ""
|
5824 |
|
5825 |
-
#: views/b2s/html/header.php:
|
5826 |
msgid ""
|
5827 |
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
5828 |
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
@@ -5838,26 +5984,26 @@ msgstr ""
|
|
5838 |
msgid "You have already retweeted this post."
|
5839 |
msgstr ""
|
5840 |
|
5841 |
-
#: views/b2s/html/header.php:
|
5842 |
msgid ""
|
5843 |
"You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
|
5844 |
"that you use only one plugin to set social meta tags so that the networks "
|
5845 |
"can show the link preview of your post correctly."
|
5846 |
msgstr ""
|
5847 |
|
5848 |
-
#: views/b2s/html/header
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2022-03-29 09:56+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"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.2.0; wp-5.0.3"
|
17 |
|
18 |
+
#: views/b2s/html/header.php:301
|
19 |
msgid " Days"
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: views/b2s/html/header.php:244
|
23 |
msgid " or upgade your Blog2Social license to extend your quota."
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: views/b2s/html/header.php:301
|
27 |
msgid " today"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: views/b2s/html/header.php:660
|
31 |
+
msgid ""
|
32 |
+
"\"Blog2Social is the master tool any blogger or marketer needs to automate "
|
33 |
+
"your social media activity. It removes so much work and stress that's "
|
34 |
+
"involved in posting to your networks manually. Also, the scheduling and "
|
35 |
+
"reposting features are terrific. Blog2Social simplifies my life immensely!\""
|
36 |
+
msgstr ""
|
37 |
+
|
38 |
+
#: views/b2s/metrics.php:210
|
39 |
msgid "\"Social Media Posts\" consisting of a link, video, image or text."
|
40 |
msgstr ""
|
41 |
|
52 |
msgid "(SMART)"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: includes/B2S/Network/Item.php:629
|
56 |
msgid "+ add Parameter"
|
57 |
msgstr ""
|
58 |
|
59 |
+
#: includes/B2S/Ship/Save.php:444
|
60 |
msgid ""
|
61 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
62 |
"\"Scheduled Posts\" tab on your \"Posts & Sharing\" navigation bar. On your "
|
64 |
"and you can click on \"Share\" to post it to your Facebook Profile instantly."
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: includes/B2S/Ship/Save.php:452
|
68 |
msgid ""
|
69 |
"-For scheduled posts, Blog2Social will save your post and move it to the "
|
70 |
"\"Scheduled Posts\" tab on your \"Site & Blog Content\" navigation bar. On "
|
72 |
"tab and you can click on \"Share\" to post it to your account instantly."
|
73 |
msgstr ""
|
74 |
|
75 |
+
#: includes/B2S/Ship/Save.php:443
|
76 |
msgid ""
|
77 |
"-To share your post immediately, click the \"Share\" button next to your "
|
78 |
"selected Facebook profile below."
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: includes/B2S/Ship/Save.php:451
|
82 |
msgid ""
|
83 |
"-To share your post immediately, click the \"Share\" button next to your "
|
84 |
"selected Google+ account below."
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: views/b2s/autopost.php:118 views/b2s/autopost.php:158
|
88 |
msgid ""
|
89 |
"1. for auto-posting your original Wordpress content (posts, pages and media)"
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: views/b2s/autopost.php:136 views/b2s/autopost.php:172
|
93 |
#, php-format
|
94 |
msgid ""
|
95 |
"1. is activated with a valid Blog2Social Premium license (<a href=\"%s\" "
|
96 |
"target=\"_blank\">How do I activate my license key?</a>)"
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: views/b2s/network.php:680 views/b2s/ship.php:736
|
100 |
msgid "1. Your Instagram account is set to \"Business\" and not \"Creator\"."
|
101 |
msgstr ""
|
102 |
|
112 |
msgid "1x publish report"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: views/b2s/autopost.php:125 views/b2s/autopost.php:163
|
116 |
msgid ""
|
117 |
"2. for auto-posting imported posts (imported RSS feeds or posts created / "
|
118 |
"imported with another plugin). "
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: views/b2s/autopost.php:138 views/b2s/autopost.php:174
|
122 |
msgid ""
|
123 |
"2. has the selected social media networks connected or assigned (Blog2Social "
|
124 |
"-> Networks)"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: views/b2s/network.php:682 views/b2s/ship.php:738
|
128 |
msgid "2. Your Instagram account is linked to a Facebook page."
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: views/b2s/network.php:684 views/b2s/ship.php:740
|
132 |
msgid "3. Blog2Social has the permission to publish your posts."
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: views/b2s/autopost.php:140 views/b2s/autopost.php:176
|
136 |
msgid "3. is activated with the correct auto-poster settings (Autoposter FAQ)"
|
137 |
msgstr ""
|
138 |
|
143 |
"sites or groups.</a>"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: views/b2s/autopost.php:165
|
147 |
#, php-format
|
148 |
msgid ""
|
149 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
151 |
"Troubleshooting</a>"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: views/b2s/autopost.php:127
|
155 |
#, php-format
|
156 |
msgid ""
|
157 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for imported "
|
158 |
"content</a>"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: views/b2s/autopost.php:160
|
162 |
#, php-format
|
163 |
msgid ""
|
164 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
166 |
"Troubleshooting</a>"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: views/b2s/autopost.php:120
|
170 |
#, php-format
|
171 |
msgid ""
|
172 |
"<a href=\"%s\" target=\"_blank\">How to set up the auto-poster for your own "
|
173 |
"original WordPress posts</a>"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/Loader.php:1692 includes/System.php:32 includes/System.php:38
|
177 |
#, php-format
|
178 |
msgid ""
|
179 |
"<a href=\"%s\" target=\"_blank\">Please find more Information and help in "
|
180 |
"our FAQ</a>"
|
181 |
msgstr ""
|
182 |
|
183 |
+
#: views/b2s/autopost.php:129
|
184 |
#, php-format
|
185 |
msgid ""
|
186 |
"<a href=\"%s\" target=\"_blank\">Sharing Imported Posts with the Auto-Poster-"
|
187 |
" Things to check for Troubleshooting</a>"
|
188 |
msgstr ""
|
189 |
|
190 |
+
#: views/b2s/autopost.php:122
|
191 |
#, php-format
|
192 |
msgid ""
|
193 |
"<a href=\"%s\" target=\"_blank\">Sharing with the Auto-Poster- Things to "
|
219 |
"Blog2Social to continue to use the latest version of the plugin."
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: views/b2s/support.php:99
|
223 |
#, php-format
|
224 |
msgid ""
|
225 |
"<b>Already registered?</b> <a href=\"%s\" target=\"_blank\">Login to your "
|
243 |
"any time."
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: views/b2s/ship.php:509 views/b2s/ship.php:524
|
247 |
msgid "About Xing guidelines for crossposting in groups"
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: views/b2s/network.php:395 views/b2s/ship.php:649
|
251 |
msgid ""
|
252 |
"Access to this resource on your server is denied! Please check your "
|
253 |
"webserver configuration for caching."
|
254 |
msgstr ""
|
255 |
|
256 |
#: includes/B2S/Settings/Item.php:54 includes/B2S/Settings/Item.php:89
|
257 |
+
#: includes/B2S/Ship/Item.php:1287
|
258 |
msgid "Account"
|
259 |
msgstr ""
|
260 |
|
266 |
msgid "Activate Blog2Social PREMIUM PRO."
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/B2S/Network/Item.php:727
|
270 |
msgid "Activate Instant Caching"
|
271 |
msgstr ""
|
272 |
|
278 |
msgid "Activate Legacy mode "
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: views/b2s/premium.php:51
|
282 |
msgid "Activate License"
|
283 |
msgstr ""
|
284 |
|
286 |
msgid "activated"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/Tools.php:537
|
290 |
msgid "Activities"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: views/b2s/curation.php:24
|
294 |
+
msgid "Add a comment or text you like to share on your social media accounts."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: views/b2s/curation.php:23
|
298 |
+
msgid ""
|
299 |
+
"Add a link you’d like to share on your social networks. You can also share a "
|
300 |
+
"video link, for example from YouTube or Vimeo (also see Video Post)."
|
301 |
+
msgstr ""
|
302 |
+
|
303 |
+
#: includes/B2S/Network/Item.php:879
|
304 |
msgid "Add a link-URL to the end of my image post."
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/B2S/Network/Item.php:886
|
308 |
msgid ""
|
309 |
"Add a link-URL to the end of my Instagram posts. (Please note, that "
|
310 |
"Instagram does not turn link-URLs into clickable links)"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: views/b2s/curation.php:26
|
314 |
+
msgid ""
|
315 |
+
"Add a video link, for example from YouTube or Vimeo, you like to share on "
|
316 |
+
"your social media accounts."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: views/b2s/premium.php:168
|
320 |
msgid ""
|
321 |
"Add and edit meta tags for Open Graph (Ex. Facebook and LinkedIn) and "
|
322 |
"Twitter Cards to define the look of your link posts."
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: includes/B2S/Ship/Item.php:1456
|
326 |
msgid "add another post"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: views/b2s/network.php:635 views/b2s/ship.php:776
|
330 |
msgid "Add Group"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: views/b2s/ship.php:128
|
334 |
msgid "Add more..."
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: views/b2s/premium.php:81
|
338 |
msgid ""
|
339 |
"Add multiple users and accounts per network. Define sharing-profiles for "
|
340 |
"selected network bundles."
|
363 |
msgid "Add Open Graph Object Type."
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: views/b2s/network.php:616 views/b2s/ship.php:757
|
367 |
msgid "Add Page"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: views/b2s/post.calendar.php:100 views/b2s/post.sched.php:184
|
371 |
+
#: views/b2s/repost.php:78 views/b2s/widgets/calendar.php:21
|
372 |
msgid "add post"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: views/b2s/network.php:654 views/b2s/ship.php:710
|
376 |
msgid "Add Profile"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: includes/B2S/Ship/Item.php:1306
|
380 |
msgid "Add Retweet"
|
381 |
msgstr ""
|
382 |
|
383 |
+
#: views/b2s/ship.php:822
|
384 |
msgid "add Schedule"
|
385 |
msgstr ""
|
386 |
|
412 |
msgid "add/change connection"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: includes/B2S/Network/Item.php:117
|
416 |
msgid "additional groups"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: includes/B2S/Network/Item.php:117
|
420 |
msgid "additional pages"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: includes/B2S/Network/Item.php:117
|
424 |
msgid "additional profiles"
|
425 |
msgstr ""
|
426 |
|
432 |
msgid "Advanced settings"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: views/b2s/support.php:118
|
436 |
msgid "Affiliate Program"
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: views/b2s/metrics.php:216
|
440 |
msgid ""
|
441 |
"After 24 hours, your post will be updated for the first time and you can see "
|
442 |
"the metrics under the menu item \"Social Media Metrics\". The social media "
|
444 |
"permanently recorded and can be accessed in the archive at any time."
|
445 |
msgstr ""
|
446 |
|
447 |
+
#: views/b2s/metrics.php:50
|
448 |
msgid "all"
|
449 |
msgstr ""
|
450 |
|
464 |
msgid "all post types"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: views/b2s/metrics.php:126
|
|
|
|
|
|
|
|
|
468 |
msgid "All posts"
|
469 |
msgstr ""
|
470 |
|
|
|
|
|
|
|
|
|
471 |
#: includes/B2S/Post/Filter.php:60
|
472 |
msgid "all posts"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: views/b2s/autopost.php:132 views/b2s/autopost.php:168
|
476 |
msgid ""
|
477 |
"All settings and social networks for the auto-poster can be defined for each "
|
478 |
"WordPress user individually."
|
516 |
msgid "An error occured. Please contact our support."
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: views/b2s/network.php:369 views/b2s/network.php:387 views/b2s/ship.php:623
|
520 |
+
#: views/b2s/ship.php:641
|
521 |
msgid "An error occurred! Please try again."
|
522 |
msgstr ""
|
523 |
|
525 |
msgid "An image is required to post on this social network."
|
526 |
msgstr ""
|
527 |
|
528 |
+
#: views/b2s/settings.php:110
|
529 |
#, php-format
|
530 |
msgid ""
|
531 |
"An instruction on how to define your own best times is explained in the "
|
537 |
msgid "An unknown error occurred!"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: views/b2s/html/header.php:392
|
541 |
#, php-format
|
542 |
msgid "and <a target=\"_blank\" href=\"%s\">Privacy Notice</a>"
|
543 |
msgstr ""
|
544 |
|
545 |
+
#: includes/Tools.php:535
|
546 |
msgid "Animals & Nature"
|
547 |
msgstr ""
|
548 |
|
550 |
msgid "Apply best time settings"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: views/b2s/autopost.php:95 includes/B2S/AutoPost/Item.php:94
|
554 |
msgid "Apply best times"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: includes/B2S/Network/Item.php:630
|
558 |
#, php-format
|
559 |
msgid "Apply for all %s connections"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: includes/B2S/Network/Item.php:631
|
563 |
msgid "Apply for all connections"
|
564 |
msgstr ""
|
565 |
|
584 |
msgid "Apply post template settings"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: includes/B2S/Ship/Item.php:1486
|
588 |
msgid "Apply Settings To All Networks"
|
589 |
msgstr ""
|
590 |
|
592 |
msgid "Apply URL Parameters"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: views/b2s/metrics.php:128
|
596 |
msgid "Archive"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: views/b2s/support.php:171
|
600 |
msgid ""
|
601 |
"Are you are experiencing incorrect images and/or titles being pulled by "
|
602 |
"Facebook or other social media platforms? Social Debugger or code validator "
|
604 |
"it's published and help you to fix inconsistencies and errors."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: views/b2s/post.approve.php:99
|
608 |
msgid "Are you sure you want to delete these Social Media posts?"
|
609 |
msgstr ""
|
610 |
|
612 |
msgid "Are you sure you want to delete this draft?"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: views/b2s/post.draft.php:90
|
616 |
msgid "Are you sure you want to delete this Social Media draft?"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: includes/Tools.php:514
|
620 |
msgid "Argentina"
|
621 |
msgstr ""
|
622 |
|
628 |
msgid "Assign the connection to other blog users"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:357
|
632 |
+
#: includes/B2S/Network/Item.php:437
|
633 |
msgid "Assigned by"
|
634 |
msgstr ""
|
635 |
|
641 |
msgid "at best times"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: views/b2s/ship.php:377
|
645 |
msgid "At least one of your selected networks is set to \"Share Now\""
|
646 |
msgstr ""
|
647 |
|
653 |
msgid "at scheduled times"
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: includes/Tools.php:502
|
657 |
msgid "Australia"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: includes/Tools.php:503
|
661 |
msgid "Austria"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: includes/B2S/Post/Item.php:449 includes/B2S/Post/Item.php:555
|
665 |
+
#: includes/B2S/Post/Item.php:575 includes/B2S/Post/Item.php:599
|
666 |
#: includes/PRG/Post/Item.php:121
|
667 |
msgid "Author"
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: views/b2s/settings.php:122
|
671 |
msgid "Author: The author of the post."
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: views/b2s/network.php:437 views/b2s/ship.php:691 views/b2s/ship.php:695
|
675 |
#: includes/B2S/Settings/Item.php:102
|
676 |
msgid "authorize"
|
677 |
msgstr ""
|
686 |
"XING, LinkedIn, Instagram, ... crosspost to pages & groups"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: includes/Loader.php:917 views/b2s/settings.php:41
|
690 |
+
#: views/b2s/html/sidebar.php:89
|
691 |
msgid "Auto-Post"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: includes/B2S/PostBox.php:222 views/b2s/curation.php:193
|
695 |
+
#: views/b2s/dashboard.php:269 views/b2s/post.calendar.php:299
|
696 |
+
#: views/b2s/ship.php:331 views/b2s/ship.php:397 views/b2s/ship.php:443
|
697 |
#: views/b2s/html/footer.php:33 views/b2s/html/footer.php:67
|
698 |
#: views/b2s/html/footer.php:198 views/b2s/html/footer.php:262
|
699 |
#: views/b2s/html/footer.php:302 views/b2s/html/footer.php:357
|
702 |
msgid "Auto-post and auto-schedule new and updated blog posts"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: views/b2s/premium.php:110 includes/B2S/Post/Item.php:750
|
706 |
+
#: includes/B2S/Post/Item.php:955
|
707 |
msgid "Auto-Posting"
|
708 |
msgstr ""
|
709 |
|
719 |
msgid "Autoposter for Imported Posts"
|
720 |
msgstr ""
|
721 |
|
722 |
+
#: views/b2s/html/header.php:91
|
723 |
msgid "Autoposter limit has been reached"
|
724 |
msgstr ""
|
725 |
|
726 |
+
#: views/b2s/support.php:111
|
727 |
msgid "Autoposting, Sharing und Re-Sharing"
|
728 |
msgstr ""
|
729 |
|
730 |
+
#: includes/B2S/Network/Item.php:116
|
731 |
msgid "Available accounts"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/B2S/PostBox.php:281 views/b2s/repost.php:226
|
735 |
msgid "Available networks"
|
736 |
msgstr ""
|
737 |
|
743 |
msgid "Available networks to select your auto-post connecitons:"
|
744 |
msgstr ""
|
745 |
|
746 |
+
#: includes/Loader.php:1692 includes/Loader.php:1713 includes/Loader.php:2011
|
747 |
msgid "back to install plugins"
|
748 |
msgstr ""
|
749 |
|
750 |
+
#: views/b2s/html/header.php:537
|
751 |
msgid ""
|
752 |
"Benefit from the new Social Media Metrics and use the analysis of your "
|
753 |
"social media posts for your further social media strategy."
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: includes/B2S/Network/Item.php:227 views/b2s/html/footer.php:241
|
757 |
msgid "Best Time Manager"
|
758 |
msgstr ""
|
759 |
|
760 |
+
#: includes/B2S/PostBox.php:224 views/b2s/curation.php:195
|
761 |
+
#: views/b2s/dashboard.php:271 views/b2s/post.calendar.php:301
|
762 |
+
#: views/b2s/ship.php:333 views/b2s/ship.php:399 views/b2s/ship.php:445
|
763 |
#: views/b2s/html/footer.php:35 views/b2s/html/footer.php:200
|
764 |
#: views/b2s/html/footer.php:264 views/b2s/html/footer.php:304
|
765 |
#: views/b2s/html/footer.php:359 views/b2s/html/footer.php:398
|
769 |
"social media posts"
|
770 |
msgstr ""
|
771 |
|
772 |
+
#: views/b2s/curation.php:183 views/b2s/dashboard.php:259
|
773 |
+
#: views/b2s/post.calendar.php:289 views/b2s/ship.php:433
|
774 |
msgid "Best Time Scheduler"
|
775 |
msgstr ""
|
776 |
|
779 |
msgid "Best Time Scheduler: schedule once, multiple times or recurringly"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: views/b2s/html/header.php:373
|
783 |
msgid "Best Time Scheduler: Schedule once, multiple times or recurringly."
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: includes/B2S/Network/Item.php:168
|
787 |
msgid "Best times"
|
788 |
msgstr ""
|
789 |
|
790 |
+
#: views/b2s/premium.php:98
|
791 |
msgid "Best Times Manager"
|
792 |
msgstr ""
|
793 |
|
794 |
+
#: views/b2s/metrics.php:233 views/b2s/html/header.php:532
|
795 |
+
#: views/b2s/html/sidebar.php:102
|
|
|
796 |
msgid "BETA"
|
797 |
msgstr ""
|
798 |
|
801 |
msgstr ""
|
802 |
|
803 |
#: includes/Loader.php:920 includes/Loader.php:929
|
804 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Navbar.php:91
|
805 |
msgid "Blog"
|
806 |
msgstr ""
|
807 |
|
808 |
+
#: includes/Loader.php:1063 views/b2s/html/sidebar.php:27
|
809 |
#: views/b2s/html/sidebar.ship.php:24
|
810 |
msgid "Blog2Social"
|
811 |
msgstr ""
|
819 |
"or 12h (am/pm), by simply clicking on the button."
|
820 |
msgstr ""
|
821 |
|
822 |
+
#: views/b2s/autopost.php:70
|
823 |
msgid ""
|
824 |
"Blog2Social applies the scheduled time settings based on the time zone "
|
825 |
"defined in the general settings of your WordPress. You can select a user-"
|
828 |
"drop-down menu."
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: views/b2s/html/sidebar.php:152
|
832 |
msgid "Blog2Social Blog News"
|
833 |
msgstr ""
|
834 |
|
848 |
"higher, or ask your server administrator to do it for you."
|
849 |
msgstr ""
|
850 |
|
851 |
+
#: views/b2s/html/header.php:121
|
852 |
msgid ""
|
853 |
"Blog2Social has detected another plugin that is setting Social Meta tags for "
|
854 |
"your blog posts. To ensure that your Social Meta tags are set correctly for "
|
856 |
"Facebook Open Graph and Twitter Card Tags settings in your other plugins."
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: views/b2s/html/header.php:516
|
860 |
msgid "Blog2Social is a service of Adenion GmbH"
|
861 |
msgstr ""
|
862 |
|
863 |
+
#: includes/Loader.php:1692
|
864 |
msgid "Blog2Social needs Wordpress Version 4.7.0 or higher."
|
865 |
msgstr ""
|
866 |
|
867 |
+
#: views/b2s/html/header.php:305 views/b2s/html/header.php:324
|
868 |
msgid ""
|
869 |
"Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on "
|
870 |
"autopilot, automatically schedule your social media posts with the Best Time "
|
874 |
"58 per month to benefit from PREMIUM features."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: views/b2s/curation.php:174 views/b2s/dashboard.php:250
|
878 |
+
#: views/b2s/post.calendar.php:280 views/b2s/ship.php:424
|
879 |
msgid "Blog2Social Premium covers everything you need."
|
880 |
msgstr ""
|
881 |
|
903 |
"each social network."
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: views/b2s/html/header.php:60 views/b2s/html/header.php:67
|
907 |
msgid "Blog2Social Troubleshooting-Tool"
|
908 |
msgstr ""
|
909 |
|
970 |
msgid "Brand"
|
971 |
msgstr ""
|
972 |
|
973 |
+
#: views/b2s/support.php:96
|
974 |
msgid "Browse the Blog2Social support community"
|
975 |
msgstr ""
|
976 |
|
977 |
+
#: includes/B2S/Network/Item.php:184 includes/B2S/Ship/Portale.php:59
|
978 |
msgid "BUSINESS"
|
979 |
msgstr ""
|
980 |
|
981 |
#: includes/Loader.php:923 includes/Loader.php:931
|
982 |
+
#: includes/B2S/Network/Item.php:201 includes/B2S/Network/Item.php:718
|
983 |
+
#: includes/B2S/Ship/Item.php:364 includes/B2S/Ship/Navbar.php:91
|
984 |
msgid "Business"
|
985 |
msgstr ""
|
986 |
|
995 |
"post format. "
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: views/b2s/html/header.php:391
|
999 |
#, php-format
|
1000 |
msgid ""
|
1001 |
"By creating an account, you agree to Blog2Social's <a target=\"_blank\" "
|
1009 |
"updated."
|
1010 |
msgstr ""
|
1011 |
|
1012 |
+
#: includes/Loader.php:1031 includes/Loader.php:1102 views/b2s/dashboard.php:31
|
1013 |
+
#: includes/B2S/RePost/Item.php:141 views/b2s/html/sidebar.php:92
|
|
|
1014 |
msgid "Calendar"
|
1015 |
msgstr ""
|
1016 |
|
1018 |
msgid "Call-to-Action"
|
1019 |
msgstr ""
|
1020 |
|
1021 |
+
#: includes/Tools.php:495
|
1022 |
msgid "Canada"
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/B2S/Ship/Item.php:575 includes/B2S/Ship/Item.php:799
|
1026 |
msgid "Card Meta description"
|
1027 |
msgstr ""
|
1028 |
|
1029 |
+
#: includes/B2S/Ship/Item.php:574 includes/B2S/Ship/Item.php:798
|
1030 |
msgid "Card Meta title"
|
1031 |
msgstr ""
|
1032 |
|
1046 |
msgid "Change details"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
+
#: views/b2s/curation.php:96 includes/B2S/Ship/Item.php:504
|
1050 |
+
#: includes/B2S/Ship/Item.php:526 includes/B2S/Ship/Item.php:533
|
1051 |
+
#: includes/B2S/Ship/Item.php:540 includes/B2S/Ship/Item.php:564
|
1052 |
+
#: includes/B2S/Ship/Item.php:587 includes/B2S/Ship/Item.php:594
|
1053 |
+
#: includes/B2S/Ship/Item.php:601 includes/B2S/Ship/Item.php:624
|
1054 |
+
#: includes/B2S/Ship/Item.php:646 includes/B2S/Ship/Item.php:653
|
1055 |
+
#: includes/B2S/Ship/Item.php:660 includes/B2S/Ship/Item.php:683
|
1056 |
+
#: includes/B2S/Ship/Item.php:704 includes/B2S/Ship/Item.php:733
|
1057 |
+
#: includes/B2S/Ship/Item.php:761 includes/B2S/Ship/Item.php:789
|
1058 |
+
#: includes/B2S/Ship/Item.php:832 includes/B2S/Ship/Item.php:853
|
1059 |
+
#: includes/B2S/Ship/Item.php:860 includes/B2S/Ship/Item.php:867
|
1060 |
+
#: includes/B2S/Ship/Item.php:887 includes/B2S/Ship/Item.php:907
|
1061 |
+
#: includes/B2S/Ship/Item.php:914 includes/B2S/Ship/Item.php:921
|
1062 |
+
#: includes/B2S/Ship/Item.php:938 includes/B2S/Ship/Item.php:959
|
1063 |
+
#: includes/B2S/Ship/Item.php:966 includes/B2S/Ship/Item.php:973
|
1064 |
+
#: includes/B2S/Ship/Item.php:991 includes/B2S/Ship/Item.php:1012
|
1065 |
+
#: includes/B2S/Ship/Item.php:1033 includes/B2S/Ship/Item.php:1053
|
1066 |
+
#: includes/B2S/Ship/Item.php:1074 includes/B2S/Ship/Item.php:1118
|
1067 |
msgid "Change image"
|
1068 |
msgstr ""
|
1069 |
|
1075 |
msgid "Change successful"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
+
#: views/b2s/ship.php:217
|
1079 |
msgid "change website address"
|
1080 |
msgstr ""
|
1081 |
|
1089 |
msgid "Channel"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
+
#: views/b2s/network.php:328 includes/B2S/Network/Item.php:911
|
1093 |
msgid "Character limit"
|
1094 |
msgstr ""
|
1095 |
|
1096 |
+
#: includes/B2S/Network/Item.php:872 includes/B2S/Network/Item.php:935
|
1097 |
+
#: includes/B2S/Network/Item.php:935 includes/B2S/Network/Item.php:971
|
1098 |
+
#: includes/B2S/Network/Item.php:971 includes/B2S/Ship/Item.php:228
|
1099 |
+
#: includes/B2S/Ship/Item.php:232 includes/B2S/Ship/Item.php:286
|
1100 |
+
#: includes/B2S/Ship/Item.php:290 includes/B2S/Ship/Item.php:332
|
1101 |
+
#: includes/B2S/Ship/Item.php:336 includes/B2S/Ship/Item.php:1464
|
1102 |
+
#: includes/B2S/Ship/Item.php:1466
|
1103 |
msgid "characters"
|
1104 |
msgstr ""
|
1105 |
|
1106 |
+
#: views/b2s/dashboard.php:33
|
1107 |
msgid "Chart"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: views/b2s/html/header.php:282
|
1111 |
msgid ""
|
1112 |
"Check out Blog2Social Premium with more awesome features for scheduling and "
|
1113 |
"sharing (e.g. auto-posting, best time scheduling, social media calendar) 30-"
|
1119 |
msgid "Check Settings with Sharing-Debugger"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
+
#: views/b2s/metrics.php:214
|
1123 |
msgid "Check Social Media Metrics"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: views/b2s/settings.php:112
|
1127 |
msgid "Check, edit or define your social media time settings"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
+
#: includes/Tools.php:519
|
1131 |
msgid "Chile"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
+
#: views/b2s/dashboard.php:93 views/b2s/post.calendar.php:123
|
1135 |
+
#: views/b2s/post.sched.php:141 views/b2s/repost.php:126 views/b2s/ship.php:541
|
1136 |
msgid "Choose your"
|
1137 |
msgstr ""
|
1138 |
|
1145 |
msgid "City"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
+
#: includes/B2S/Ship/Item.php:1209
|
1149 |
msgid "Classified Ads"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
+
#: includes/B2S/Network/Item.php:845
|
1153 |
msgid "clear"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
+
#: views/b2s/support.php:128
|
1157 |
msgid ""
|
1158 |
"Click here to find the right license for your needs or to contact the sales "
|
1159 |
"team for any payment issues."
|
1169 |
msgid "Click on \"continue\""
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: views/b2s/post.sched.php:46 includes/B2S/Network/Item.php:164
|
1173 |
msgid "Clock"
|
1174 |
msgstr ""
|
1175 |
|
1177 |
msgid "clock"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: includes/Tools.php:520
|
1181 |
msgid "Colombia"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: views/b2s/metrics.php:142
|
1185 |
msgid "Comments"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: views/b2s/metrics.php:246
|
1189 |
msgid "Comments: A count of how many times the post has been replied to."
|
1190 |
msgstr ""
|
1191 |
|
1205 |
msgid "Company-Page (Employer Branding Profile)"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
+
#: views/b2s/metrics.php:270
|
1209 |
msgid "Comparison of Social Media Metrics"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: views/b2s/network.php:438 views/b2s/network.php:440 views/b2s/ship.php:692
|
1213 |
+
#: views/b2s/ship.php:694
|
1214 |
msgid "confirm"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: views/b2s/ship.php:236
|
1218 |
msgid "connect"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: includes/B2S/Network/Item.php:181 includes/B2S/Network/Item.php:184
|
1222 |
+
#: includes/B2S/Network/Item.php:186 includes/B2S/Network/Item.php:188
|
1223 |
+
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:201
|
1224 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Network/Item.php:203
|
1225 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Network/Item.php:211
|
1226 |
+
#: includes/B2S/Network/Item.php:211 includes/B2S/Network/Item.php:211
|
1227 |
#: includes/B2S/Ship/Portale.php:37 includes/B2S/Ship/Portale.php:37
|
1228 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:46
|
1229 |
#: includes/B2S/Ship/Portale.php:48 includes/B2S/Ship/Portale.php:48
|
1234 |
msgid "Connect %s"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: views/b2s/settings.php:78
|
1238 |
msgid ""
|
1239 |
"Connect Blog2Social with 16 different social media networks you like to "
|
1240 |
"share your WordPress blog posts and pages as well as imported posts and "
|
1241 |
"social media posts on. The following networks are available:"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: views/b2s/ship.php:303
|
1245 |
msgid "Connect for"
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: views/b2s/network.php:673 views/b2s/ship.php:729
|
1249 |
msgid "Connect Instagram Business Account"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: views/b2s/network.php:344 views/b2s/ship.php:603
|
1253 |
msgid "Connect with Pinterest"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: views/b2s/settings.php:103
|
1257 |
msgid "Connect your social media networks"
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: views/b2s/support.php:110
|
1261 |
msgid "Connecting Social Networks"
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: includes/B2S/Network/Item.php:559
|
1265 |
msgid "Connection currently assigned to"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: includes/B2S/Ship/Item.php:360
|
1269 |
msgid "Connection expires on 2 April 2019"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: includes/B2S/Ship/Item.php:356
|
1273 |
msgid "Connection expires on 31 March 2019"
|
1274 |
msgstr ""
|
1275 |
|
1277 |
msgid "Connection is broken..."
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/B2S/Network/Item.php:268 includes/B2S/Network/Item.php:347
|
1281 |
+
#: includes/B2S/Network/Item.php:427
|
1282 |
msgid "Connection is interrupted since"
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: includes/B2S/AutoPost/Item.php:246 includes/B2S/Network/Item.php:223
|
1286 |
msgid "Connections"
|
1287 |
msgstr ""
|
1288 |
|
1290 |
msgid "Contact Details"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: includes/B2S/Network/Item.php:809 includes/B2S/Settings/Item.php:77
|
1294 |
msgid "Content"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: views/b2s/settings.php:119
|
|
|
|
|
|
|
|
|
1298 |
msgid "Content: The content of your post."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
#: views/b2s/network.php:622 views/b2s/network.php:641
|
1302 |
+
#: views/b2s/network.php:660 views/b2s/network.php:688 views/b2s/ship.php:716
|
1303 |
+
#: views/b2s/ship.php:744 views/b2s/ship.php:763 views/b2s/ship.php:782
|
1304 |
msgid "Continue"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: views/b2s/curation.php:73 views/b2s/network.php:441
|
1308 |
msgid "continue"
|
1309 |
msgstr ""
|
1310 |
|
1312 |
msgid "Continue deactivation"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: views/b2s/support.php:115
|
1316 |
msgid "Contracting and Licensing"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/B2S/Ship/Item.php:1470
|
1320 |
msgid "Copy from original"
|
1321 |
msgstr ""
|
1322 |
|
1332 |
msgid "Could not hide notice. Please refresh the page and retry."
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: views/b2s/html/header.php:167
|
1336 |
msgid "Could not save draft"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: views/b2s/support.php:51
|
1340 |
msgid "Couldn't find your answer?"
|
1341 |
msgstr ""
|
1342 |
|
1348 |
msgid "create"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: views/b2s/curation.php:131
|
1352 |
msgid "Create a new post"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: views/b2s/metrics.php:206
|
1356 |
msgid ""
|
1357 |
"Create a new social media post for which you want to track the metrics. You "
|
1358 |
"can share:"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: views/b2s/support.php:82
|
1362 |
msgid "Create Account"
|
1363 |
msgstr ""
|
1364 |
|
1366 |
msgid "create account"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: views/b2s/metrics.php:204
|
1370 |
msgid "Create and Share a Social Media Post"
|
1371 |
msgstr ""
|
1372 |
|
1373 |
+
#: views/b2s/network.php:39 views/b2s/network.php:42 views/b2s/network.php:87
|
1374 |
msgid "Create new network collection"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: views/b2s/dashboard.php:179 views/b2s/post.calendar.php:209
|
1378 |
msgid "Create or share content from other sources"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: views/b2s/support.php:77
|
1382 |
msgid "Create password"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
+
#: views/b2s/support.php:61
|
1386 |
+
msgid "Create your support account to ask questions and get help"
|
|
|
|
|
|
|
|
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: views/b2s/html/header.php:589 views/b2s/html/header.php:648
|
1390 |
+
msgid ""
|
1391 |
+
"Creating social media posts from other sources, such as text, images, videos,"
|
1392 |
+
" and links to add more content variety and manage all your social media "
|
1393 |
+
"posts from one place."
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: includes/B2S/Post/Item.php:426
|
1397 |
msgid "curated post"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
+
#: views/b2s/support.php:153
|
1401 |
msgid "Current"
|
1402 |
msgstr ""
|
1403 |
|
1405 |
msgid "currently scheduled"
|
1406 |
msgstr ""
|
1407 |
|
1408 |
+
#: views/b2s/premium.php:158
|
1409 |
msgid "Custom format"
|
1410 |
msgstr ""
|
1411 |
|
1412 |
+
#: views/b2s/premium.php:149
|
1413 |
msgid "Custom image"
|
1414 |
msgstr ""
|
1415 |
|
1442 |
"engagement with your community."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: views/b2s/support.php:112
|
1446 |
msgid "Customizing Social Media Posts"
|
1447 |
msgstr ""
|
1448 |
|
1449 |
+
#: includes/Tools.php:492
|
1450 |
msgid "Czechoslovakia"
|
1451 |
msgstr ""
|
1452 |
|
1455 |
msgstr ""
|
1456 |
|
1457 |
#: includes/B2S/Curation/View.php:69 includes/B2S/Curation/View.php:70
|
1458 |
+
#: includes/B2S/RePost/Item.php:210 includes/B2S/Ship/Item.php:1437
|
1459 |
#: views/b2s/partials/post-edit-modal.php:67
|
1460 |
#: views/b2s/partials/post-edit-modal.php:70
|
1461 |
msgid "Date"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#: includes/B2S/Ship/Item.php:1380
|
1465 |
msgid "Day of month"
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: includes/B2S/Network/Item.php:323 includes/B2S/Network/Item.php:402
|
1469 |
+
#: includes/B2S/Network/Item.php:477 includes/B2S/Ship/Item.php:1385
|
1470 |
msgid "Days"
|
1471 |
msgstr ""
|
1472 |
|
1478 |
msgid "deactivated"
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: views/b2s/support.php:183
|
1482 |
msgid "Debug & Preview"
|
1483 |
msgstr ""
|
1484 |
|
1499 |
msgid "Default"
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: views/b2s/network.php:569 includes/B2S/Network/Item.php:602
|
1503 |
#, php-format
|
1504 |
msgid ""
|
1505 |
"Define parameters that will be added to link posts on this network e.g. to "
|
1514 |
"space character within your character limit."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: views/b2s/dashboard.php:114 views/b2s/post.calendar.php:144
|
1518 |
+
#: views/b2s/post.sched.php:162 views/b2s/repost.php:147 views/b2s/ship.php:561
|
1519 |
msgid ""
|
1520 |
"Define the default settings for the custom post format for all of your "
|
1521 |
"Facebook accounts in the Blog2Social settings."
|
1522 |
msgstr ""
|
1523 |
|
1524 |
+
#: views/b2s/dashboard.php:123 views/b2s/post.calendar.php:153
|
1525 |
+
#: views/b2s/post.sched.php:171 views/b2s/repost.php:156 views/b2s/ship.php:570
|
1526 |
msgid ""
|
1527 |
"Define the default settings for the custom post format for all of your "
|
1528 |
"Instagram accounts in the Blog2Social settings."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: views/b2s/dashboard.php:120 views/b2s/post.calendar.php:150
|
1532 |
+
#: views/b2s/post.sched.php:168 views/b2s/repost.php:153 views/b2s/ship.php:567
|
1533 |
msgid ""
|
1534 |
"Define the default settings for the custom post format for all of your "
|
1535 |
"LinkedIn accounts in the Blog2Social settings."
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: views/b2s/dashboard.php:117 views/b2s/post.calendar.php:147
|
1539 |
+
#: views/b2s/post.sched.php:165 views/b2s/repost.php:150 views/b2s/ship.php:564
|
1540 |
msgid ""
|
1541 |
"Define the default settings for the custom post format for all of your "
|
1542 |
"Twitter accounts in the Blog2Social settings."
|
1546 |
msgid "Define Twitter post content"
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: views/b2s/settings.php:127
|
1550 |
msgid "Define your post templates for each social media network"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: includes/B2S/Ship/Item.php:1288 views/b2s/partials/post-edit-modal.php:78
|
1554 |
msgid "Delay"
|
1555 |
msgstr ""
|
1556 |
|
1557 |
+
#: views/b2s/network.php:46 views/b2s/partials/post-edit-modal.php:102
|
1558 |
msgid "Delete"
|
1559 |
msgstr ""
|
1560 |
|
1561 |
+
#: includes/Ajax/Post.php:1960 includes/B2S/Network/Item.php:572
|
1562 |
+
#: includes/B2S/Post/Item.php:553 includes/B2S/Post/Item.php:573
|
1563 |
+
#: includes/B2S/Post/Item.php:932 includes/B2S/Post/Item.php:990
|
1564 |
+
#: includes/B2S/Settings/Item.php:103 includes/B2S/Ship/Item.php:1305
|
1565 |
+
#: includes/B2S/Ship/Item.php:1455
|
1566 |
msgid "delete"
|
1567 |
msgstr ""
|
1568 |
|
1582 |
msgid "Delete Draft"
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#: views/b2s/metrics.php:173 views/b2s/post.notice.php:86
|
1586 |
+
#: views/b2s/post.publish.php:83 views/b2s/widgets/posts.php:58
|
1587 |
msgid "Delete entries from the reporting"
|
1588 |
msgstr ""
|
1589 |
|
1590 |
+
#: views/b2s/post.sched.php:101 views/b2s/repost.php:104
|
1591 |
msgid "Delete entries from the scheduling"
|
1592 |
msgstr ""
|
1593 |
|
1594 |
+
#: includes/B2S/Post/Item.php:857 includes/B2S/Post/Item.php:870
|
1595 |
msgid "delete from reporting"
|
1596 |
msgstr ""
|
1597 |
|
1603 |
msgid "Delete scheduled posts"
|
1604 |
msgstr ""
|
1605 |
|
1606 |
+
#: includes/B2S/Post/Item.php:999
|
1607 |
msgid "delete scheduling"
|
1608 |
msgstr ""
|
1609 |
|
1611 |
msgid "delete selected posts"
|
1612 |
msgstr ""
|
1613 |
|
1614 |
+
#: views/b2s/post.draft.php:87
|
1615 |
msgid "Delete Social Media Draft"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: views/b2s/post.approve.php:96
|
1619 |
msgid "Delete Social Media Posts"
|
1620 |
msgstr ""
|
1621 |
|
1622 |
+
#: includes/B2S/Ship/Item.php:399 includes/B2S/Ship/Item.php:1474
|
1623 |
msgid "Delete text"
|
1624 |
msgstr ""
|
1625 |
|
1626 |
+
#: includes/Tools.php:508
|
1627 |
msgid "Denmark"
|
1628 |
msgstr ""
|
1629 |
|
1635 |
msgid "description"
|
1636 |
msgstr ""
|
1637 |
|
1638 |
+
#: includes/B2S/Post/Item.php:474 includes/B2S/Post/Item.php:498
|
1639 |
+
#: includes/B2S/Post/Item.php:520 includes/B2S/Post/Item.php:617
|
1640 |
msgid "Details"
|
1641 |
msgstr ""
|
1642 |
|
1648 |
msgid "Did you miss something?"
|
1649 |
msgstr ""
|
1650 |
|
1651 |
+
#: views/b2s/html/header.php:329
|
1652 |
msgid "Did you miss something? Tell us!"
|
1653 |
msgstr ""
|
1654 |
|
1655 |
+
#: views/b2s/html/header.php:577
|
1656 |
+
msgid ""
|
1657 |
+
"Did you try all options on how to organize your social media scheduling and "
|
1658 |
+
"sharing tasks even more easily and automatically with Blog2Social Premium, "
|
1659 |
+
"for example:"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
#: includes/B2S/AutoPost/Item.php:52
|
1663 |
msgid "Disconnect"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: includes/B2S/Ship/Item.php:543 includes/B2S/Ship/Item.php:604
|
1667 |
+
#: includes/B2S/Ship/Item.php:663 includes/B2S/Ship/Item.php:870
|
1668 |
+
#: includes/B2S/Ship/Item.php:924 includes/B2S/Ship/Item.php:976
|
1669 |
msgid "Do u want to post multiple images?"
|
1670 |
msgstr ""
|
1671 |
|
1687 |
msgid "Do you want to delete your scheduled posts?"
|
1688 |
msgstr ""
|
1689 |
|
1690 |
+
#: views/b2s/curation.php:152 views/b2s/post.approve.php:116
|
1691 |
+
#: views/b2s/ship.php:491
|
1692 |
msgid "Do you want to mark this post as published ?"
|
1693 |
msgstr ""
|
1694 |
|
1697 |
msgstr ""
|
1698 |
|
1699 |
#: views/b2s/ship.php:18 includes/B2S/Post/Filter.php:59
|
1700 |
+
#: includes/B2S/Post/Item.php:393 includes/PRG/Post/Item.php:86
|
1701 |
msgid "draft"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:74
|
|
|
|
|
1705 |
msgid "Drafts"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: includes/B2S/Ship/Item.php:1375 includes/B2S/Ship/Item.php:1378
|
1709 |
msgid "Duration"
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: views/b2s/network.php:398 views/b2s/ship.php:652
|
1713 |
+
#: views/b2s/html/header.php:377 views/prg/html/form.php:141
|
1714 |
#: views/prg/html/form.php:143 views/prg/html/form.php:218
|
1715 |
#: views/prg/html/form.php:220
|
1716 |
msgid "E-Mail"
|
1726 |
"media network."
|
1727 |
msgstr ""
|
1728 |
|
1729 |
+
#: includes/B2S/Post/Item.php:987
|
1730 |
msgid "edit"
|
1731 |
msgstr ""
|
1732 |
|
1738 |
msgid "Edit Post"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
+
#: views/b2s/network.php:239 includes/B2S/Network/Item.php:214
|
1742 |
+
#: includes/B2S/Network/Item.php:214
|
1743 |
msgid "Edit Post Template"
|
1744 |
msgstr ""
|
1745 |
|
1749 |
"textarea and customize them as you like."
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: views/b2s/settings.php:115
|
1753 |
msgid ""
|
1754 |
"Edit the post templates for each social media network to turn your social "
|
1755 |
"media posts automatically into tailored posts for each network and community."
|
1756 |
" You can edit the structure of your post with the following variables:"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: views/b2s/support.php:73
|
1760 |
msgid "Email address"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: views/b2s/support.php:65
|
1764 |
msgid "Email address is taken."
|
1765 |
msgstr ""
|
1766 |
|
1772 |
msgid "enable Auto-Posting"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: includes/B2S/Ship/Item.php:1269
|
1776 |
msgid "Enable Retweets for all Tweets with the selected profile"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: includes/B2S/Ship/Item.php:1430
|
1780 |
msgid "End Of Month"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: views/b2s/premium.php:31
|
1784 |
msgid "End of Trial"
|
1785 |
msgstr ""
|
1786 |
|
1792 |
msgid "English"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: views/b2s/curation.php:67
|
1796 |
msgid ""
|
1797 |
"Enter a link you want to share on your social media networks. You can also "
|
1798 |
"share a video link, for example from YouTube or from Vimeo (also see Video "
|
1799 |
"Post)."
|
1800 |
msgstr ""
|
1801 |
|
1802 |
+
#: views/b2s/support.php:170
|
1803 |
msgid "Enter a URL to see how your link preview will look on social media."
|
1804 |
msgstr ""
|
1805 |
|
1806 |
+
#: views/b2s/curation.php:68
|
1807 |
msgid ""
|
1808 |
"Enter a video link you want to share on your social media networks, for "
|
1809 |
"example from YouTube or from Vimeo."
|
1810 |
msgstr ""
|
1811 |
|
1812 |
+
#: views/b2s/support.php:63
|
1813 |
msgid "Enter at least 8 characters"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
+
#: views/b2s/premium.php:49
|
1817 |
msgid "Enter license key and change your version"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: views/b2s/curation.php:70
|
1821 |
msgid "Enter link"
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: views/b2s/support.php:40
|
1825 |
msgid "Enter your question or keyword here"
|
1826 |
msgstr ""
|
1827 |
|
1829 |
msgid "Event"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
+
#: includes/B2S/Ship/Item.php:1208
|
1833 |
msgid "Events"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
+
#: views/b2s/settings.php:120
|
1837 |
msgid ""
|
1838 |
"Excerpt: The summary of your post (you define it in the side menu of your "
|
1839 |
"post)."
|
1846 |
msgid "Exclude (Do no post ...)"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
+
#: views/b2s/support.php:157
|
1850 |
msgid "Export as txt-file"
|
1851 |
msgstr ""
|
1852 |
|
1867 |
"requirements for Facebook."
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: views/b2s/support.php:176
|
1871 |
msgid "Facebook Open Graph Meta Tags"
|
1872 |
msgstr ""
|
1873 |
|
1875 |
msgid "Facebook pages"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: includes/B2S/Network/Item.php:662
|
1879 |
msgid "Failed to load the default template"
|
1880 |
msgstr ""
|
1881 |
|
1882 |
+
#: includes/B2S/Network/Item.php:661
|
1883 |
msgid "Failed to save"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
+
#: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
|
1887 |
msgid "FAQ"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
+
#: includes/Loader.php:917 views/b2s/metrics.php:130
|
1891 |
+
#: views/b2s/html/sidebar.php:71
|
1892 |
msgid "Favorites"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: views/b2s/metrics.php:56 views/b2s/metrics.php:284
|
1896 |
msgid "Feedback"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: views/b2s/dashboard.php:208 views/b2s/dashboard.php:209
|
1900 |
+
#: views/b2s/network.php:32 views/b2s/network.php:33
|
1901 |
+
#: views/b2s/post.calendar.php:238 views/b2s/post.calendar.php:239
|
1902 |
#: views/prg/post.php:26 views/prg/post.php:27
|
1903 |
+
#: views/b2s/html/post.navbar.php:20 views/b2s/html/post.navbar.php:21
|
1904 |
msgid "filter"
|
1905 |
msgstr ""
|
1906 |
|
1909 |
"Filter Posts (Only posts that meet the following criteria will be autoposted)"
|
1910 |
msgstr ""
|
1911 |
|
1912 |
+
#: includes/Tools.php:510
|
1913 |
msgid "Finland"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
+
#: views/b2s/html/header.php:381 views/prg/html/form.php:91
|
1917 |
#: views/prg/html/form.php:100 views/prg/html/form.php:168
|
1918 |
#: views/prg/html/form.php:177
|
1919 |
msgid "First Name"
|
1920 |
msgstr ""
|
1921 |
|
1922 |
+
#: views/b2s/ship.php:234
|
1923 |
msgid "First, connect or select network before posting"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
+
#: includes/Tools.php:541
|
1927 |
msgid "Flags"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
+
#: views/b2s/dashboard.php:61
|
1931 |
msgid "Follow us"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
+
#: includes/Tools.php:536
|
1935 |
msgid "Food & Drink"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
+
#: views/b2s/support.php:181 views/b2s/support.php:192
|
1939 |
+
#: views/b2s/support.php:203
|
1940 |
msgid "For example your Wordpress Home Page"
|
1941 |
msgstr ""
|
1942 |
|
1960 |
"your preferred custom post format."
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: includes/B2S/Ship/Save.php:448
|
1964 |
msgid ""
|
1965 |
"For sharing your posts on Google+ you can now use Google+ Instant Sharing"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: includes/B2S/Ship/Save.php:440
|
1969 |
msgid ""
|
1970 |
"For sharing your posts on personal Facebook Profiles you can use Facebook "
|
1971 |
"Instant Sharing"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
+
#: views/b2s/dashboard.php:95 views/b2s/post.calendar.php:125
|
1975 |
+
#: views/b2s/post.sched.php:143 views/b2s/repost.php:128 views/b2s/ship.php:543
|
1976 |
msgid "for:"
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: views/b2s/support.php:65 views/b2s/support.php:66
|
1980 |
msgid "Forgot Password?"
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: views/b2s/support.php:101
|
1984 |
msgid "Forgot username or password?"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: includes/B2S/Network/Item.php:789
|
1988 |
msgid "Format"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: includes/B2S/Network/Item.php:897
|
1992 |
msgid "Frame colour:"
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: includes/Tools.php:505
|
1996 |
msgid "France"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: views/b2s/support.php:106
|
2000 |
msgid "Frequently asked questions"
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: includes/B2S/RePost/Item.php:79 includes/B2S/Ship/Item.php:1447
|
2004 |
msgid "Fri"
|
2005 |
msgstr ""
|
2006 |
|
2012 |
msgid "Frontpage Settings"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: views/b2s/settings.php:38
|
2016 |
msgid "General"
|
2017 |
msgstr ""
|
2018 |
|
2020 |
msgid "German"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: includes/Tools.php:507
|
2024 |
msgid "Germany"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: views/b2s/html/header.php:668
|
2028 |
+
msgid "Get all Premium benefits starting from just $7 per month."
|
2029 |
+
msgstr ""
|
2030 |
+
|
2031 |
+
#: views/b2s/premium.php:37
|
2032 |
msgid "Get more information about the benefits of Blog2Social Premium"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: views/b2s/html/header.php:109
|
2036 |
#, php-format
|
2037 |
msgid ""
|
2038 |
"Get more information in the <a href=\"%s\" target=\"_blank\">social meta tag "
|
2039 |
"guide</a>."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
+
#: views/b2s/curation.php:293
|
2043 |
#, php-format
|
2044 |
msgid ""
|
2045 |
"Get more information on how to share a text post with hashtags, @mentions "
|
2051 |
msgid "Get Social Media News"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: views/b2s/html/header.php:403
|
2055 |
msgid "Get Started"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: views/b2s/curation.draft.php:18
|
2059 |
msgid "Get the Blog2Social Browser Extension"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
+
#: views/b2s/ship.php:838
|
2063 |
msgid "Give me more information"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
+
#: views/b2s/premium.php:62
|
2067 |
msgid "Go Premium and get even smarter with social media automation"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
+
#: views/b2s/support.php:92
|
2071 |
msgid "Go to the Blog2Social Community"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
+
#: includes/B2S/Ship/Item.php:415
|
2075 |
msgid ""
|
2076 |
"Good to know: Instagram does not allow to publish identical or substantially "
|
2077 |
"similar content on one or more accounts. Vary your content by using other "
|
2079 |
"inspiring content."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
+
#: includes/B2S/Network/Item.php:818 includes/B2S/Ship/Item.php:414
|
2083 |
msgid ""
|
2084 |
"Good to know: Instagram supports up to 30 hashtags in a post. The number "
|
2085 |
"recommended for best results is 5 hashtags. Make sure that your hashtags are "
|
2094 |
"Business listings."
|
2095 |
msgstr ""
|
2096 |
|
2097 |
+
#: views/b2s/network.php:127 views/b2s/premium.php:128
|
2098 |
msgid "Google My Business"
|
2099 |
msgstr ""
|
2100 |
|
2101 |
+
#: views/b2s/curation.php:231
|
2102 |
msgid ""
|
2103 |
"Grab more attention for your content with photos, videos, or infographics."
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: includes/Tools.php:496
|
2107 |
msgid "Great Britain"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: includes/Tools.php:486
|
2111 |
msgid "Greece"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: includes/Loader.php:918 includes/B2S/Network/Item.php:721
|
2115 |
msgid "Group"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: includes/B2S/Network/Item.php:155
|
2119 |
msgid "Guide"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
+
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:72
|
2123 |
msgid "guide for server connection"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
+
#: includes/B2S/Network/Item.php:891
|
2127 |
msgid "Hashtag shuffle (Hashtags have to be defined in the text field above)"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
+
#: includes/B2S/Ship/Item.php:1233
|
2131 |
msgid "Hashtags"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
+
#: views/b2s/support.php:17
|
2135 |
msgid "Help & Community"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
+
#: includes/Loader.php:1036 includes/Loader.php:1125
|
2139 |
+
#: views/b2s/html/header.php:52 views/b2s/html/sidebar.php:112
|
2140 |
#: views/b2s/html/sidebar.ship.php:66
|
2141 |
msgid "Help & Support"
|
2142 |
msgstr ""
|
2145 |
msgid "Help us make Blog2Social even better!"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: views/b2s/support.php:119
|
2149 |
msgid "Helpful Network Settings"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: views/b2s/metrics.php:199
|
2153 |
msgid "Here's how to start tracking your social media posts:"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: views/b2s/html/header.php:256
|
2157 |
#, php-format
|
2158 |
msgid ""
|
2159 |
"Hi, we noticed you just shared your %s. blog post with Blog2Social - that's "
|
2165 |
msgid "hide"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: includes/B2S/Ship/Item.php:436
|
2169 |
msgid "hide calendar"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: views/b2s/html/header.php:679
|
2173 |
+
msgid "Hide this notification."
|
2174 |
+
msgstr ""
|
2175 |
+
|
2176 |
+
#: views/b2s/support.php:38
|
2177 |
msgid "How can we help?"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: views/b2s/metrics.php:250
|
2181 |
msgid "How to check the Social Media Metrics?"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: views/b2s/support.php:135
|
2185 |
msgid "How to use the Troubleshooting tool"
|
2186 |
msgstr ""
|
2187 |
|
2190 |
msgid "https://www.blog2social.com"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: includes/Tools.php:511
|
2194 |
msgid "Hungary"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
+
#: views/b2s/support.php:80
|
2198 |
#, php-format
|
2199 |
msgid "I agree to the <a href=\"%s\" target=\"_blank\">community rules</a>"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: views/b2s/html/header.php:517
|
2203 |
msgid "I agree to the Adenion Privacy Policy"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: views/b2s/html/header.php:266
|
2207 |
msgid "I already did it"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: views/b2s/html/header.php:676
|
2211 |
+
msgid "I need advice on finding the right license"
|
2212 |
+
msgstr ""
|
2213 |
+
|
2214 |
+
#: views/b2s/html/header.php:608
|
2215 |
+
msgid "I need advice on finding the right license."
|
2216 |
+
msgstr ""
|
2217 |
+
|
2218 |
+
#: views/b2s/html/header.php:347
|
2219 |
+
msgid "I need advice on the right license."
|
2220 |
+
msgstr ""
|
2221 |
+
|
2222 |
+
#: views/b2s/html/header.php:309 views/b2s/html/header.php:328
|
2223 |
msgid "I need some more time to decide"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: views/b2s/html/header.php:605
|
2227 |
+
msgid "I would like to continue with my trial."
|
2228 |
+
msgstr ""
|
2229 |
+
|
2230 |
#: views/b2s/html/footer.php:502
|
2231 |
msgid ""
|
2232 |
"If LinkedIn can’t find the oEmbed tag in your data, it will use the OG (Open "
|
2247 |
"anything that does not work for you, please contact us!"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: views/b2s/html/sidebar.php:138
|
2251 |
msgid ""
|
2252 |
"If you like Blog2Social, we would be greatly delighted, if you could leave "
|
2253 |
"us a 5-star rating. If there's something you need assistance with, you can "
|
2255 |
"receive help from our committed support team."
|
2256 |
msgstr ""
|
2257 |
|
2258 |
+
#: views/b2s/ship.php:384
|
2259 |
msgid "Ignore & share"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
+
#: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
|
2263 |
msgid "Image"
|
2264 |
msgstr ""
|
2265 |
|
2267 |
msgid "image"
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2271 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2272 |
+
#: includes/B2S/Network/Item.php:797 includes/B2S/Network/Item.php:800
|
2273 |
#: includes/B2S/Settings/Item.php:294 views/b2s/html/footer.php:182
|
2274 |
#: views/b2s/widgets/calendar.php:72
|
2275 |
msgid "Image cut out"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2279 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2280 |
+
#: includes/B2S/Post/Item.php:819 includes/B2S/Settings/Item.php:294
|
2281 |
+
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:386
|
|
|
2282 |
#: views/b2s/widgets/calendar.php:72
|
2283 |
msgid "Image Post"
|
2284 |
msgstr ""
|
2292 |
msgid "Image URL"
|
2293 |
msgstr ""
|
2294 |
|
2295 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2296 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2297 |
+
#: includes/B2S/Network/Item.php:796 includes/B2S/Network/Item.php:799
|
2298 |
#: includes/B2S/Settings/Item.php:280 views/b2s/html/footer.php:177
|
2299 |
#: views/b2s/widgets/calendar.php:72
|
2300 |
msgid "Image with frame"
|
2314 |
msgid "immediately after publishing"
|
2315 |
msgstr ""
|
2316 |
|
2317 |
+
#: views/b2s/metrics.php:209
|
2318 |
msgid "Imported posts"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
+
#: views/b2s/metrics.php:101 views/b2s/metrics.php:139
|
2322 |
msgid "Impressions"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
+
#: views/b2s/metrics.php:242
|
2326 |
msgid "Impressions: A count of how many times the post has been viewed."
|
2327 |
msgstr ""
|
2328 |
|
2332 |
"as your primary Twitter account for auto-posting."
|
2333 |
msgstr ""
|
2334 |
|
2335 |
+
#: views/b2s/curation.php:373
|
2336 |
#, php-format
|
2337 |
msgid ""
|
2338 |
"In the <a href=\"%s\">Network Settings</a> you can define network selections "
|
2339 |
"to select and save your most-used networks for specific posts or campaigns."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: views/b2s/curation.php:295
|
2343 |
#, php-format
|
2344 |
msgid ""
|
2345 |
"In the <a href=\"%s\">Network Settings</a> you can define one or more "
|
2362 |
msgid "include posts with images only"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: includes/Tools.php:487
|
2366 |
msgid "India"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: includes/Tools.php:493
|
2370 |
msgid "Indonesia"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
#: includes/Loader.php:917 includes/B2S/PostBox.php:165
|
2374 |
#: includes/B2S/PostBox.php:168 includes/B2S/PostBox.php:253
|
2375 |
+
#: views/b2s/autopost.php:113 views/b2s/autopost.php:153
|
2376 |
+
#: views/b2s/metrics.php:70 views/b2s/network.php:49 views/b2s/ship.php:81
|
2377 |
+
#: views/b2s/ship.php:183 views/b2s/ship.php:275
|
2378 |
#: includes/B2S/AutoPost/Item.php:113 includes/B2S/AutoPost/Item.php:210
|
2379 |
+
#: includes/B2S/Curation/View.php:73 includes/B2S/Network/Item.php:227
|
2380 |
#: includes/B2S/RePost/Item.php:159 includes/B2S/RePost/Item.php:180
|
2381 |
+
#: includes/B2S/Ship/Item.php:1269
|
2382 |
msgid "Info"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: includes/B2S/Ship/Item.php:569 includes/B2S/Ship/Item.php:793
|
2386 |
msgid ""
|
2387 |
"Info: Change Card Meta tags image, title and description for this network"
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: includes/B2S/Ship/Item.php:508 includes/B2S/Ship/Item.php:628
|
2391 |
+
#: includes/B2S/Ship/Item.php:709 includes/B2S/Ship/Item.php:737
|
2392 |
+
#: includes/B2S/Ship/Item.php:765
|
2393 |
msgid ""
|
2394 |
"Info: Change Open Graph Meta tags image, title and description for this "
|
2395 |
"network"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: includes/B2S/Ship/Item.php:397 includes/B2S/Ship/Item.php:1472
|
2399 |
msgid "Insert full-text"
|
2400 |
msgstr ""
|
2401 |
|
2405 |
"information will be shown in your timeline."
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: views/b2s/support.php:194
|
2409 |
msgid "Inspect Post"
|
2410 |
msgstr ""
|
2411 |
|
2416 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
2417 |
msgstr ""
|
2418 |
|
2419 |
+
#: views/b2s/support.php:109
|
2420 |
msgid "Installation"
|
2421 |
msgstr ""
|
2422 |
|
2428 |
msgid "Instant Caching for Link Posts"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:77
|
|
|
2432 |
msgid "Instant Sharing"
|
2433 |
msgstr ""
|
2434 |
|
2435 |
+
#: views/b2s/html/header.php:665
|
2436 |
+
#, php-format
|
2437 |
+
msgid ""
|
2438 |
+
"Interested in reading more reviews? <a href=\"%s\" target=\"_blank\">Check "
|
2439 |
+
"out what others think about Blog2Social.</a>"
|
2440 |
+
msgstr ""
|
2441 |
+
|
2442 |
+
#: views/b2s/network.php:390 views/b2s/ship.php:644
|
2443 |
msgid "Invalid Data! Please try again."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: views/b2s/curation.php:50
|
2447 |
msgid "Invalid data. Please check your data."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: views/b2s/support.php:64
|
2451 |
msgid "Invalid email address"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: includes/Tools.php:489
|
2455 |
msgid "Ireland"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: includes/B2S/Post/Item.php:976
|
2459 |
msgid "is currently being processed by the network"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: includes/Tools.php:525
|
2463 |
msgid "is determined automatically"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: includes/B2S/Post/Item.php:892
|
2467 |
#, php-format
|
2468 |
msgid "is waiting to shared by %s"
|
2469 |
msgstr ""
|
2470 |
|
2471 |
+
#: includes/Tools.php:490
|
2472 |
msgid "Italy"
|
2473 |
msgstr ""
|
2474 |
|
2475 |
+
#: includes/Tools.php:512
|
2476 |
msgid "Japan"
|
2477 |
msgstr ""
|
2478 |
|
2479 |
+
#: views/b2s/html/header.php:661
|
2480 |
+
msgid "jerryj1 per WordPress"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
#: views/b2s/html/footer.php:11 views/prg/html/footer.php:11
|
2484 |
msgid "Job"
|
2485 |
msgstr ""
|
2486 |
|
2487 |
+
#: includes/B2S/Ship/Item.php:1207
|
2488 |
msgid "Jobs & Projects"
|
2489 |
msgstr ""
|
2490 |
|
2491 |
+
#: views/b2s/html/header.php:340
|
2492 |
+
msgid ""
|
2493 |
+
"Keep your current settings and access to more automated scheduling and "
|
2494 |
+
"sharing options and upgrade to Blog2Social Premium."
|
2495 |
+
msgstr ""
|
2496 |
+
|
2497 |
#: views/b2s/html/footer.php:441
|
2498 |
msgid ""
|
2499 |
"Keep your social media feed updated automatically with your best content and "
|
2510 |
msgid "Keywords with commas (e.g .: Blog2Social, PR-Gateway)"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
+
#: views/b2s/settings.php:121
|
2514 |
msgid "Keywords: The tags you have set in your post."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
+
#: includes/Tools.php:515
|
2518 |
msgid "Korea"
|
2519 |
msgstr ""
|
2520 |
|
2522 |
msgid "Language"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
+
#: includes/B2S/Post/Item.php:974
|
2526 |
#, php-format
|
2527 |
msgid "last modified by %s"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: views/b2s/html/header.php:385 views/prg/html/form.php:92
|
2531 |
#: views/prg/html/form.php:103 views/prg/html/form.php:169
|
2532 |
#: views/prg/html/form.php:180
|
2533 |
msgid "Last Name"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: includes/B2S/Post/Item.php:575
|
2537 |
msgid "last saved"
|
2538 |
msgstr ""
|
2539 |
|
2541 |
msgid "Last shared"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: includes/B2S/Post/Item.php:431 includes/B2S/Post/Item.php:536
|
2545 |
+
#: includes/B2S/Post/Item.php:584
|
2546 |
msgid "last shared on social media"
|
2547 |
msgstr ""
|
2548 |
|
2550 |
msgid "Latest Posts"
|
2551 |
msgstr ""
|
2552 |
|
2553 |
+
#: includes/B2S/Metrics/Item.php:228 includes/B2S/Post/Item.php:476
|
2554 |
#, php-format
|
2555 |
msgid "latest share by %s"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: includes/B2S/Ship/Save.php:440
|
2559 |
msgid "Learn how it works"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: views/b2s/support.php:177
|
2563 |
msgid "Learn how to edit and adjust Open Graph tags."
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: views/b2s/support.php:212
|
2567 |
msgid "Learn how to edit and adjust Twitter Card tags."
|
2568 |
msgstr ""
|
2569 |
|
2573 |
"scheduling and auto-poster."
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: views/b2s/network.php:136 includes/B2S/Ship/Item.php:1367
|
2577 |
#: views/b2s/partials/post-edit-modal.php:53
|
2578 |
msgid "Learn more"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
+
#: views/b2s/curation.php:239
|
2582 |
#, php-format
|
2583 |
msgid ""
|
2584 |
"Learn more about how to share social media posts in the <a href=\"%s\" "
|
2585 |
"target=\"_blank\">social media posts guide</a>."
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: views/b2s/ship.php:513 views/b2s/ship.php:528
|
2589 |
msgid "Learn more about the Xing guidelines."
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: includes/B2S/Ship/Item.php:406 includes/B2S/Ship/Item.php:881
|
2593 |
+
#: includes/B2S/Ship/Item.php:1338
|
2594 |
msgid "Learn more about this"
|
2595 |
msgstr ""
|
2596 |
|
2598 |
msgid "Legend"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
+
#: includes/Tools.php:471 views/b2s/html/sidebar.php:32
|
2602 |
#: views/b2s/html/sidebar.ship.php:29
|
2603 |
msgid "License"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: views/b2s/metrics.php:140
|
2607 |
msgid "Likes"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: views/b2s/metrics.php:244
|
2611 |
msgid "Likes: A count of how many times the post has been liked."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: includes/B2S/Network/Item.php:796 includes/B2S/Network/Item.php:799
|
2615 |
+
#: includes/B2S/Ship/Item.php:1134 includes/B2S/Ship/Item.php:1136
|
2616 |
msgid "Link"
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: views/b2s/metrics.php:243
|
2620 |
msgid ""
|
2621 |
"Link clicks: A count of link clicks, to further content. (Available for "
|
2622 |
"Twitter)"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
+
#: views/b2s/post.calendar.php:82 views/b2s/post.sched.php:201
|
2626 |
+
#: views/b2s/repost.php:59 views/b2s/repost.php:95
|
2627 |
+
#: includes/B2S/Post/Item.php:817 includes/B2S/Settings/Item.php:280
|
2628 |
+
#: includes/B2S/Settings/Item.php:317 includes/B2S/Ship/Item.php:387
|
2629 |
#: views/b2s/html/footer.php:160 views/b2s/widgets/calendar.php:72
|
2630 |
msgid "Link Post"
|
2631 |
msgstr ""
|
2634 |
msgid "LinkedIn pages"
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: views/b2s/support.php:189
|
2638 |
msgid "LinkedIn Post Inspector"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: views/b2s/dashboard.php:32 includes/B2S/RePost/Item.php:140
|
2642 |
msgid "List"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: views/b2s/network.php:56 views/b2s/ship.php:80
|
2646 |
#: views/b2s/partials/post-edit-modal.php:42
|
2647 |
msgid "Load Best Times"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: views/b2s/curation.php:61
|
2651 |
msgid "Load data..."
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: includes/B2S/Network/Item.php:790 includes/B2S/Network/Item.php:811
|
2655 |
msgid "Load default settings"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: includes/B2S/Post/Item.php:447 includes/B2S/Post/Item.php:597
|
2659 |
msgid "load Draft"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: views/b2s/ship.php:74 views/b2s/partials/post-edit-modal.php:41
|
2663 |
msgid "Load My Times Settings"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: views/b2s/curation.draft.php:48 views/b2s/dashboard.php:226
|
2667 |
+
#: views/b2s/metrics.php:38 views/b2s/network.php:68 views/b2s/network.php:155
|
2668 |
#: views/b2s/network.php:245 views/b2s/network.php:383
|
2669 |
+
#: views/b2s/network.php:462 views/b2s/post.approve.php:59
|
2670 |
+
#: views/b2s/post.calendar.php:72 views/b2s/post.calendar.php:256
|
2671 |
+
#: views/b2s/post.draft.php:50 views/b2s/post.favorites.php:49
|
2672 |
+
#: views/b2s/post.notice.php:56 views/b2s/post.php:58
|
2673 |
+
#: views/b2s/post.publish.php:53 views/b2s/post.sched.php:71
|
2674 |
+
#: views/b2s/repost.php:41 views/b2s/ship.php:205 views/b2s/ship.php:637
|
2675 |
+
#: views/b2s/ship.php:834 views/b2s/support.php:87 views/b2s/support.php:140
|
2676 |
#: views/prg/html/header.php:86
|
2677 |
msgid "Loading..."
|
2678 |
msgstr ""
|
2681 |
msgid "Location"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: views/b2s/network.php:392 views/b2s/ship.php:646
|
2685 |
#, php-format
|
2686 |
msgid ""
|
2687 |
"Login failed. Please check your login data for typos and please check your "
|
2698 |
msgid "Login failed. Please check your username and a password!"
|
2699 |
msgstr ""
|
2700 |
|
2701 |
+
#: views/b2s/network.php:370 views/b2s/network.php:396 views/b2s/ship.php:624
|
2702 |
+
#: views/b2s/ship.php:650
|
2703 |
msgid ""
|
2704 |
"Login up successful. Please confirm that Blog2Social is allowed to publish "
|
2705 |
"on your profile."
|
2709 |
msgid "Logout"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: includes/B2S/Ship/Item.php:1231
|
2713 |
#, php-format
|
2714 |
msgid "max. %s Tags"
|
2715 |
msgstr ""
|
2722 |
msgid "Meta Tags Settings for Posts and Pages"
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: includes/Tools.php:517
|
2726 |
msgid "Mexico"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: includes/B2S/Ship/Item.php:1298 includes/B2S/Ship/Item.php:1299
|
2730 |
+
#: includes/B2S/Ship/Item.php:1300 includes/B2S/Ship/Item.php:1301
|
2731 |
#: views/b2s/partials/post-edit-modal.php:82
|
2732 |
#: views/b2s/partials/post-edit-modal.php:83
|
2733 |
#: views/b2s/partials/post-edit-modal.php:84
|
2739 |
msgid "minutes"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: includes/B2S/Network/Item.php:915
|
2743 |
msgid ""
|
2744 |
"Missing PHP \"mbstring\" extension to use the character limit function. "
|
2745 |
"Please activate server-side the PHP \"mbstring\" extension in your \"php."
|
2762 |
msgid "Modify subreddit"
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: includes/B2S/RePost/Item.php:75 includes/B2S/Ship/Item.php:1443
|
2766 |
msgid "Mon"
|
2767 |
msgstr ""
|
2768 |
|
2770 |
msgid "Monday"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: includes/B2S/Ship/Item.php:1410
|
2774 |
msgid "Month"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: includes/B2S/Ship/Item.php:1394
|
2778 |
msgid "monthly"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: includes/B2S/Ship/Item.php:1410
|
2782 |
msgid "Months"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: views/b2s/support.php:171
|
2786 |
msgid "More"
|
2787 |
msgstr ""
|
2788 |
|
2790 |
msgid "More Information"
|
2791 |
msgstr ""
|
2792 |
|
2793 |
+
#: views/b2s/autopost.php:84 views/b2s/repost.php:192
|
2794 |
#: includes/B2S/AutoPost/Item.php:161
|
2795 |
msgid "More information"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: views/b2s/curation.php:297 views/b2s/curation.php:375
|
2799 |
#, php-format
|
2800 |
msgid ""
|
2801 |
"More information on how to create a network selection in the guide <a "
|
2803 |
"networks?\"</a>"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: views/b2s/premium.php:80
|
2807 |
msgid "More users and accounts"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: views/b2s/metrics.php:134
|
2811 |
msgid "Most Comments"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: views/b2s/metrics.php:131
|
2815 |
msgid "Most Impressions"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: views/b2s/metrics.php:132
|
2819 |
msgid "Most Likes"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: views/b2s/metrics.php:133
|
2823 |
msgid "Most Reshares"
|
2824 |
msgstr ""
|
2825 |
|
2843 |
msgid "My Profile"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: includes/B2S/Network/Item.php:68 includes/B2S/Network/Item.php:232
|
2847 |
msgid "My profile"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: includes/B2S/Network/Item.php:604 views/prg/html/form.php:84
|
2851 |
#: views/prg/html/form.php:86 views/prg/html/form.php:161
|
2852 |
#: views/prg/html/form.php:163
|
2853 |
msgid "Name"
|
2857 |
msgid "Need more?"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: views/b2s/curation.php:171 views/b2s/dashboard.php:247
|
2861 |
+
#: views/b2s/post.calendar.php:277 views/b2s/ship.php:421
|
2862 |
msgid "Need to schedule your posts?"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: views/b2s/support.php:150
|
2866 |
msgid "Needed"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: includes/Tools.php:498
|
2870 |
msgid "Netherlands"
|
2871 |
msgstr ""
|
2872 |
|
2874 |
msgid "Network collection"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: views/b2s/ship.php:190
|
2878 |
msgid "network connected"
|
2879 |
msgstr ""
|
2880 |
|
2882 |
msgid "Network connections"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: includes/B2S/Ship/Item.php:166 includes/B2S/Ship/Item.php:247
|
2886 |
msgid "Network defines image by link"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: includes/B2S/Ship/Item.php:169 includes/B2S/Ship/Item.php:246
|
2890 |
msgid "Network does not support emojis"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: includes/B2S/Ship/Item.php:171 includes/B2S/Ship/Item.php:249
|
2894 |
msgid "Network does not support GIFs"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: includes/B2S/Ship/Item.php:245
|
2898 |
msgid "Network does not support image for pages"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: includes/B2S/Ship/Item.php:165
|
2902 |
msgid "Network does not support image for profiles"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: includes/B2S/Network/Item.php:872 includes/B2S/Network/Item.php:935
|
2906 |
+
#: includes/B2S/Network/Item.php:971
|
2907 |
msgid "Network limit"
|
2908 |
msgstr ""
|
2909 |
|
2912 |
msgid "Network settings"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: includes/Loader.php:1025 includes/Loader.php:1079
|
2916 |
msgid "Networks"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: includes/Loader.php:917 views/b2s/support.php:20 views/b2s/support.php:23
|
|
|
2920 |
msgid "NEW"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: includes/B2S/Network/Item.php:275 includes/B2S/Network/Item.php:354
|
2924 |
+
#: includes/B2S/Network/Item.php:434
|
2925 |
msgid "New"
|
2926 |
msgstr ""
|
2927 |
|
2929 |
msgid "new posts"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: includes/Tools.php:509
|
2933 |
msgid "New Zealand"
|
2934 |
msgstr ""
|
2935 |
|
2937 |
msgid "newest first"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: includes/B2S/Post/Item.php:500 includes/B2S/Post/Item.php:620
|
2941 |
#, php-format
|
2942 |
msgid "next share by %s"
|
2943 |
msgstr ""
|
2944 |
|
2945 |
+
#: views/b2s/curation.draft.php:90 views/b2s/curation.php:158
|
2946 |
+
#: views/b2s/metrics.php:182 views/b2s/network.php:115
|
2947 |
+
#: views/b2s/post.approve.php:105 views/b2s/post.approve.php:122
|
2948 |
+
#: views/b2s/post.draft.php:94 views/b2s/post.notice.php:95
|
2949 |
+
#: views/b2s/post.publish.php:92 views/b2s/post.sched.php:110
|
2950 |
+
#: views/b2s/repost.php:113 views/b2s/ship.php:497 views/b2s/ship.php:591
|
2951 |
#: views/prg/ship.php:94 views/b2s/widgets/posts.php:67
|
2952 |
msgid "NO"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: views/b2s/curation.php:47
|
2956 |
msgid ""
|
2957 |
"No connected networks. Please make sure to connect at least one social media "
|
2958 |
"account."
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: views/b2s/html/header.php:399
|
2962 |
msgid "No credit card required"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
+
#: includes/Tools.php:542
|
2966 |
msgid "No emojis found"
|
2967 |
msgstr ""
|
2968 |
|
2970 |
msgid "No images are included in your post."
|
2971 |
msgstr ""
|
2972 |
|
2973 |
+
#: views/b2s/curation.php:43
|
2974 |
msgid "No link preview available. Please check your link."
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: views/b2s/html/header.php:234
|
2978 |
msgid "No posts found. Please try again with different filter options."
|
2979 |
msgstr ""
|
2980 |
|
2982 |
msgid "no URL Shortener"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: views/b2s/premium.php:46
|
2986 |
msgid "No User found"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#: views/b2s/html/header.php:263
|
2990 |
msgid "Nope, maybe later"
|
2991 |
msgstr ""
|
2992 |
|
2993 |
+
#: includes/Tools.php:500
|
2994 |
msgid "Norway"
|
2995 |
msgstr ""
|
2996 |
|
2998 |
msgid "not yet shared"
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: views/b2s/ship.php:362
|
3002 |
msgid "Note: "
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: includes/B2S/PostBox.php:148 views/b2s/ship.php:215
|
3006 |
msgid ""
|
3007 |
"Notice: Please make sure, that your website address is reachable. The Social "
|
3008 |
"Networks do not allow postings from local installations."
|
3009 |
msgstr ""
|
3010 |
|
3011 |
+
#: views/b2s/dashboard.php:292 views/b2s/post.calendar.php:322
|
3012 |
msgid "Notification"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:95
|
3016 |
msgid "Notifications"
|
3017 |
msgstr ""
|
3018 |
|
3021 |
msgid "Number"
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: views/b2s/metrics.php:178 views/b2s/post.approve.php:101
|
3025 |
+
#: views/b2s/post.notice.php:91 views/b2s/post.publish.php:88
|
3026 |
+
#: views/b2s/post.sched.php:106 views/b2s/repost.php:109
|
3027 |
#: views/b2s/widgets/posts.php:63
|
3028 |
msgid "Number of entries"
|
3029 |
msgstr ""
|
3032 |
msgid "Number of posts"
|
3033 |
msgstr ""
|
3034 |
|
3035 |
+
#: includes/B2S/Ship/Item.php:1379
|
3036 |
msgid "Number of repeats"
|
3037 |
msgstr ""
|
3038 |
|
3039 |
+
#: includes/Tools.php:539
|
3040 |
msgid "Objects"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
+
#: includes/B2S/Ship/Item.php:1211
|
3044 |
msgid "Offer"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: includes/B2S/Ship/Item.php:514 includes/B2S/Ship/Item.php:634
|
3048 |
+
#: includes/B2S/Ship/Item.php:715 includes/B2S/Ship/Item.php:743
|
3049 |
+
#: includes/B2S/Ship/Item.php:771
|
3050 |
msgid "OG Meta description"
|
3051 |
msgstr ""
|
3052 |
|
3053 |
+
#: includes/B2S/Ship/Item.php:513 includes/B2S/Ship/Item.php:633
|
3054 |
+
#: includes/B2S/Ship/Item.php:714 includes/B2S/Ship/Item.php:742
|
3055 |
+
#: includes/B2S/Ship/Item.php:770
|
3056 |
msgid "OG Meta title"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
+
#: views/b2s/html/header.php:486
|
3060 |
msgid "OK"
|
3061 |
msgstr ""
|
3062 |
|
3063 |
+
#: views/b2s/metrics.php:222 views/b2s/metrics.php:259
|
3064 |
msgid "Ok, I want to get started!"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
+
#: views/b2s/html/header.php:260
|
3068 |
msgid "Ok, you deserve it"
|
3069 |
msgstr ""
|
3070 |
|
3080 |
msgid "on Blog"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: views/b2s/ship.php:60 includes/B2S/Post/Item.php:449
|
3084 |
+
#: includes/B2S/Post/Item.php:599
|
3085 |
msgid "on blog"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: views/b2s/metrics.php:127
|
3089 |
msgid "Only active"
|
3090 |
msgstr ""
|
3091 |
|
3094 |
msgid "only posts that have been shared no more than %s times"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: views/b2s/premium.php:167
|
3098 |
msgid "Open Graph and Twitter Card Tags"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: includes/Loader.php:1692 includes/Loader.php:1713 includes/Loader.php:2011
|
3102 |
msgid "or"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: includes/B2S/PostBox.php:233 views/b2s/curation.php:204
|
3106 |
+
#: views/b2s/curation.php:243 views/b2s/dashboard.php:280
|
3107 |
+
#: views/b2s/post.calendar.php:310 views/b2s/ship.php:342
|
3108 |
+
#: views/b2s/ship.php:408 views/b2s/ship.php:454 views/b2s/html/footer.php:44
|
3109 |
#: views/b2s/html/footer.php:75 views/b2s/html/footer.php:93
|
3110 |
#: views/b2s/html/footer.php:111 views/b2s/html/footer.php:140
|
3111 |
#: views/b2s/html/footer.php:209 views/b2s/html/footer.php:273
|
3122 |
msgid "or higher"
|
3123 |
msgstr ""
|
3124 |
|
3125 |
+
#: views/b2s/ship.php:585
|
3126 |
msgid "Overwrite Draft"
|
3127 |
msgstr ""
|
3128 |
|
3129 |
+
#: includes/B2S/Ship/Item.php:1395
|
3130 |
msgid "own period"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
3134 |
+
#: includes/B2S/Network/Item.php:718
|
3135 |
msgid "Page"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: views/b2s/premium.php:71
|
3139 |
msgid "Pages and groups"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: views/b2s/network.php:404 views/b2s/ship.php:658 views/prg/login.php:25
|
3143 |
msgid "Password"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: includes/B2S/Network/Item.php:716 includes/B2S/Ship/Item.php:364
|
3147 |
#: includes/B2S/Ship/Navbar.php:91
|
3148 |
msgid "Personal"
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: views/b2s/autopost.php:67 views/b2s/settings.php:200
|
3152 |
#: includes/B2S/Settings/Item.php:57
|
3153 |
msgid "Personal Time Zone"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: includes/Tools.php:522
|
3157 |
msgid "Philippines"
|
3158 |
msgstr ""
|
3159 |
|
3166 |
msgid "Photo Post"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: views/b2s/network.php:393 views/b2s/ship.php:647
|
3170 |
msgid "Pinterest has rejected the connection to your blog"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: views/b2s/support.php:200
|
3174 |
msgid "Pinterest Rich Pins Validator"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: views/b2s/html/sidebar.php:121
|
3178 |
msgid "Plans & Prices"
|
3179 |
msgstr ""
|
3180 |
|
3206 |
"always pulls the current meta data of your blog post."
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: views/b2s/curation.php:69
|
3210 |
msgid "Please enter a valid link"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: includes/B2S/Ship/Item.php:406 includes/B2S/Ship/Item.php:881
|
3214 |
+
#: includes/B2S/Ship/Item.php:1338
|
3215 |
msgid ""
|
3216 |
"Please keep in mind that according to Twitter’s new TOS, users are no longer "
|
3217 |
"allowed to post identical or substantially similar content to multiple "
|
3218 |
"accounts or multiple duplicate updates on one account."
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: views/b2s/autopost.php:134 views/b2s/autopost.php:170
|
3222 |
msgid ""
|
3223 |
"Please make sure that each WordPress user or author whose posts should be "
|
3224 |
"auto-posted"
|
3240 |
"scheduled WP posts will be shared with the posting id link."
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: views/b2s/network.php:640 views/b2s/ship.php:781
|
3244 |
#, php-format
|
3245 |
msgid ""
|
3246 |
"Please make sure to log in with your account which manages your groups and "
|
3248 |
"groups</a>."
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: views/b2s/network.php:621 views/b2s/ship.php:762
|
3252 |
#, php-format
|
3253 |
msgid ""
|
3254 |
"Please make sure to log in with your account which manages your pages and <a "
|
3255 |
"href=\"%s\" target=\"_blank\">follow this guide to select all your pages</a>."
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: views/b2s/network.php:386 views/b2s/ship.php:640
|
3259 |
msgid ""
|
3260 |
"Please make sure to use your original Pinterest login data (email and "
|
3261 |
"password). Social Login via Facebook or Google login data will not work here."
|
3267 |
msgid "Please Note"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: views/b2s/ship.php:796
|
3271 |
+
msgid "Please note:"
|
3272 |
+
msgstr ""
|
3273 |
+
|
3274 |
#: includes/B2S/Settings/Item.php:189
|
3275 |
msgid ""
|
3276 |
"Please note: Facebook supports images with a minimum dimension of 200x200 "
|
3277 |
"pixels and an aspect ratio of 1:1."
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: includes/B2S/Ship/Item.php:1371 views/b2s/partials/post-edit-modal.php:56
|
3281 |
msgid ""
|
3282 |
"Please note: Google will shut down Google+ for all private accounts "
|
3283 |
"(profiles, pages, groups) on 2nd April 2019. You can find further "
|
3302 |
"for Twitter to update your current changes."
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: views/b2s/network.php:678 views/b2s/ship.php:734
|
3306 |
msgid ""
|
3307 |
"Please note: In order to connect your Instagram account to Blog2Social, "
|
3308 |
"please ensure the following:"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: views/b2s/metrics.php:256
|
3312 |
msgid ""
|
3313 |
"Please note: The metrics for the social media posts are updated every 24 "
|
3314 |
"hours. The social media posts are monitored for 30 days. After 30 days, the "
|
3316 |
"any time."
|
3317 |
msgstr ""
|
3318 |
|
3319 |
+
#: includes/B2S/Ship/Item.php:567
|
3320 |
msgid ""
|
3321 |
"Please note: Twitter stores the Card parameters of a link for up to 7 days. "
|
3322 |
"Changes may not be immediately visible on Twitter."
|
3330 |
"formats."
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: includes/B2S/Ship/Item.php:410
|
3334 |
msgid ""
|
3335 |
"Please note: XING allows identical posts to be published only once within a "
|
3336 |
"group and no more than three times across different groups."
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: includes/B2S/Ship/Item.php:707
|
3340 |
msgid ""
|
3341 |
"Please note: XING stores the Open Graph parameters of a link for up to 7 "
|
3342 |
"days. Changes may not be immediately visible on XING."
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: views/b2s/autopost.php:101
|
3346 |
#, php-format
|
3347 |
msgid ""
|
3348 |
"Please note: You can also set up your own \"best times\". You will learn how "
|
3350 |
"guide</a>."
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: includes/B2S/Ship/Save.php:453
|
3354 |
msgid ""
|
3355 |
"Please note: You post has to be marked as public to be posted in a group."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: includes/B2S/Ship/Item.php:1367 views/b2s/partials/post-edit-modal.php:52
|
3359 |
msgid ""
|
3360 |
"Please note: Your account is connected via an old XING API that is no longer "
|
3361 |
"supported by XING after March 31. Please connect your XING profile, as well "
|
3385 |
msgid "Please re-authorize your account with Blog2Social and try again"
|
3386 |
msgstr ""
|
3387 |
|
3388 |
+
#: includes/B2S/Post/Item.php:781 includes/B2S/Ship/Save.php:487
|
3389 |
msgid "Please see"
|
3390 |
msgstr ""
|
3391 |
|
3401 |
msgid "Please select a social media network"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: views/b2s/network.php:394 views/b2s/ship.php:648
|
3405 |
msgid "Please select your correct server location and connect again."
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: includes/B2S/Ship/Save.php:458
|
3409 |
msgid "Please share your post now"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: includes/B2S/Network/Item.php:265 includes/B2S/Network/Item.php:344
|
3413 |
+
#: includes/B2S/Network/Item.php:424 includes/B2S/Ship/Image.php:31
|
3414 |
msgid "please upgrade"
|
3415 |
msgstr ""
|
3416 |
|
3422 |
msgid "Plugin Warnings:"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: includes/Tools.php:504
|
3426 |
msgid "Poland"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: includes/Tools.php:499 includes/Tools.php:513
|
3430 |
msgid "Portugal"
|
3431 |
msgstr ""
|
3432 |
|
3451 |
msgid "Post every"
|
3452 |
msgstr ""
|
3453 |
|
3454 |
+
#: views/b2s/dashboard.php:93 views/b2s/post.calendar.php:123
|
3455 |
+
#: views/b2s/post.sched.php:141 views/b2s/repost.php:126 views/b2s/ship.php:541
|
3456 |
msgid "Post Format"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: includes/B2S/Post/Item.php:815 includes/B2S/Ship/Item.php:373
|
3460 |
msgid "post format"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: views/b2s/metrics.php:109
|
3464 |
msgid "Post Interactions"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: views/b2s/html/header.php:149
|
3468 |
msgid "Post is published successfully on your blog!"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: views/b2s/html/sidebar.php:67
|
3472 |
+
msgid "Post Management"
|
3473 |
+
msgstr ""
|
3474 |
+
|
3475 |
+
#: views/b2s/metrics.php:123
|
3476 |
msgid "Post Metrics"
|
3477 |
msgstr ""
|
3478 |
|
3482 |
"groups"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: includes/B2S/PostBox.php:220 views/b2s/curation.php:191
|
3486 |
+
#: views/b2s/dashboard.php:267 views/b2s/post.calendar.php:297
|
3487 |
+
#: views/b2s/ship.php:329 views/b2s/ship.php:395 views/b2s/ship.php:441
|
3488 |
#: views/b2s/html/footer.php:31 views/b2s/html/footer.php:196
|
3489 |
#: views/b2s/html/footer.php:260 views/b2s/html/footer.php:300
|
3490 |
#: views/b2s/html/footer.php:355 views/b2s/html/footer.php:394
|
3491 |
#: views/b2s/html/footer.php:452 views/b2s/html/footer.php:545
|
3492 |
+
#: views/b2s/html/header.php:371
|
3493 |
msgid "Post on pages and groups"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: views/b2s/settings.php:56
|
3497 |
msgid "Post Templates"
|
3498 |
msgstr ""
|
3499 |
|
3501 |
msgid "Post Types"
|
3502 |
msgstr ""
|
3503 |
|
3504 |
+
#: views/b2s/html/header.php:147
|
3505 |
msgid "Post was scheduled successfully on your blog!"
|
3506 |
msgstr ""
|
3507 |
|
3510 |
msgid "Posting to social media pages and groups in Facebook"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: views/b2s/metrics.php:138 includes/B2S/RePost/Item.php:130
|
3514 |
msgid "Posts"
|
3515 |
msgstr ""
|
3516 |
|
3539 |
"publish your post."
|
3540 |
msgstr ""
|
3541 |
|
3542 |
+
#: includes/Loader.php:1034 includes/Loader.php:1117
|
3543 |
msgid "PR-Service"
|
3544 |
msgstr ""
|
3545 |
|
3546 |
+
#: includes/Loader.php:1038 includes/Loader.php:1133
|
3547 |
msgid "PREMIUM"
|
3548 |
msgstr ""
|
3549 |
|
3551 |
msgid "Premium"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
#: views/b2s/premium.php:176
|
3555 |
msgid "Premium support"
|
3556 |
msgstr ""
|
3557 |
|
3559 |
msgid "Press"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: includes/B2S/Network/Item.php:997 includes/B2S/Network/Item.php:1049
|
3563 |
+
#: includes/B2S/Network/Item.php:1118 includes/B2S/Network/Item.php:1170
|
3564 |
+
#: includes/B2S/Network/Item.php:1204 includes/B2S/Network/Item.php:1255
|
3565 |
+
#: includes/B2S/Network/Item.php:1285 includes/B2S/Network/Item.php:1339
|
3566 |
+
#: includes/B2S/Network/Item.php:1358 includes/B2S/Network/Item.php:1392
|
3567 |
+
#: includes/B2S/Network/Item.php:1408 includes/B2S/Network/Item.php:1429
|
3568 |
+
#: includes/B2S/Network/Item.php:1445 includes/B2S/Network/Item.php:1461
|
3569 |
+
#: includes/B2S/Network/Item.php:1480 includes/B2S/Network/Item.php:1496
|
3570 |
+
#: includes/B2S/Network/Item.php:1541 includes/B2S/Network/Item.php:1557
|
3571 |
+
#: includes/B2S/Network/Item.php:1575
|
3572 |
msgid "Preview"
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: views/b2s/settings.php:123
|
3576 |
msgid ""
|
3577 |
"Price: The price of your product, if you have installed WooCommerce on your "
|
3578 |
"website/ blog."
|
3582 |
msgid "Privacy Policy"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: views/b2s/network.php:42 includes/B2S/Network/Item.php:190
|
3586 |
+
#: includes/B2S/Network/Item.php:203 includes/B2S/Network/Item.php:211
|
3587 |
+
#: includes/B2S/Ship/Image.php:96 includes/B2S/Ship/Item.php:543
|
3588 |
+
#: includes/B2S/Ship/Item.php:604 includes/B2S/Ship/Item.php:663
|
3589 |
+
#: includes/B2S/Ship/Item.php:870 includes/B2S/Ship/Item.php:924
|
3590 |
+
#: includes/B2S/Ship/Item.php:976 includes/B2S/Ship/Portale.php:37
|
3591 |
+
#: includes/B2S/Ship/Portale.php:48 includes/B2S/Ship/Portale.php:65
|
3592 |
msgid "PRO"
|
3593 |
msgstr ""
|
3594 |
|
3601 |
msgstr ""
|
3602 |
|
3603 |
#: includes/Loader.php:918 includes/B2S/AutoPost/Item.php:255
|
3604 |
+
#: includes/B2S/Network/Item.php:190 includes/B2S/Network/Item.php:716
|
3605 |
msgid "Profile"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: views/b2s/ship.php:130
|
3609 |
msgid "Profiles | Pages | Groups"
|
3610 |
msgstr ""
|
3611 |
|
3625 |
msgid "publish with a delay of"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
+
#: views/b2s/curation.php:137 views/b2s/post.calendar.php:50
|
3629 |
+
#: views/b2s/ship.php:18 views/b2s/ship.php:835 includes/B2S/Post/Filter.php:59
|
3630 |
+
#: includes/B2S/Post/Item.php:393 includes/B2S/Ship/Save.php:466
|
3631 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3632 |
#: views/b2s/widgets/calendar.php:44
|
3633 |
msgid "published"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
+
#: views/b2s/metrics.php:137
|
3637 |
msgid "Published On"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: views/b2s/metrics.php:93
|
3641 |
msgid "Published Posts"
|
3642 |
msgstr ""
|
3643 |
|
3649 |
msgid "Queue"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: includes/Notice.php:19 views/b2s/html/sidebar.php:139
|
3653 |
msgid "RATE BLOG2SOCIAL"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: views/b2s/html/header.php:255
|
3657 |
msgid "RATE IT!"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: includes/Notice.php:17 views/b2s/html/sidebar.php:136
|
3661 |
msgid "Rate it!"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
|
3665 |
msgid "Re-Share"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: includes/B2S/Post/Filter.php:71 includes/B2S/Post/Item.php:860
|
3669 |
msgid "re-share"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: includes/Loader.php:917 views/b2s/settings.php:47
|
3673 |
+
#: views/b2s/html/sidebar.php:86
|
3674 |
msgid "Re-Share Posts"
|
3675 |
msgstr ""
|
3676 |
|
3677 |
+
#: views/b2s/ship.php:319
|
3678 |
msgid "Re-share this Post"
|
3679 |
msgstr ""
|
3680 |
|
3681 |
+
#: views/b2s/curation.php:130 views/b2s/ship.php:277 views/b2s/ship.php:279
|
3682 |
+
#: includes/B2S/Metrics/Item.php:244 includes/B2S/Post/Item.php:473
|
3683 |
msgid "Re-share this post"
|
3684 |
msgstr ""
|
3685 |
|
3687 |
msgid "Re-share your blog content automatically on your social media channels."
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: views/b2s/metrics.php:245
|
3691 |
msgid ""
|
3692 |
"Re-Shares/ Re-Tweets: A count of how many times the post has been reshared "
|
3693 |
"or retweeted."
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: includes/B2S/Ship/Item.php:410
|
3697 |
msgid "Read more"
|
3698 |
msgstr ""
|
3699 |
|
3701 |
msgid "Rebrandly"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: includes/Tools.php:533
|
3705 |
msgid "Recently Used"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: includes/B2S/Network/Item.php:935 includes/B2S/Network/Item.php:971
|
3709 |
msgid "recommended length"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: views/b2s/ship.php:192
|
3713 |
msgid "refresh authorization"
|
3714 |
msgstr ""
|
3715 |
|
3717 |
msgid "Register here to open your PR-Gateway account."
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: views/b2s/premium.php:177
|
3721 |
msgid "Regular updates and priority support per e-mail and phone."
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: views/b2s/support.php:156
|
3725 |
msgid "reload"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: includes/B2S/Ship/Item.php:1374
|
3729 |
msgid "Repeats"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: includes/B2S/Ship/Item.php:1381
|
3733 |
msgid "Repeats every (days)"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: views/b2s/support.php:114
|
3737 |
msgid "Reporting"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: includes/B2S/PostBox.php:229 views/b2s/curation.php:200
|
3741 |
+
#: views/b2s/dashboard.php:276 views/b2s/post.calendar.php:306
|
3742 |
+
#: views/b2s/ship.php:338 views/b2s/ship.php:404 views/b2s/ship.php:450
|
3743 |
#: views/b2s/html/footer.php:40 views/b2s/html/footer.php:205
|
3744 |
#: views/b2s/html/footer.php:269 views/b2s/html/footer.php:309
|
3745 |
#: views/b2s/html/footer.php:364 views/b2s/html/footer.php:403
|
3755 |
"media posts"
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: views/b2s/html/header.php:374
|
3759 |
msgid "Reporting with links to all published social media posts"
|
3760 |
msgstr ""
|
3761 |
|
3764 |
msgid "Reporting with links to already published posts"
|
3765 |
msgstr ""
|
3766 |
|
3767 |
+
#: includes/B2S/Ship/Item.php:1212
|
3768 |
msgid "Request"
|
3769 |
msgstr ""
|
3770 |
|
3771 |
+
#: includes/B2S/Ship/Item.php:1105
|
3772 |
msgid "required"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: views/b2s/ship.php:191
|
3776 |
msgid "requires image"
|
3777 |
msgstr ""
|
3778 |
|
3793 |
msgid "resolve conflict"
|
3794 |
msgstr ""
|
3795 |
|
3796 |
+
#: includes/B2S/Post/Item.php:750 includes/B2S/Post/Item.php:955
|
3797 |
+
#: includes/B2S/Ship/Save.php:476
|
3798 |
msgid "Retweet"
|
3799 |
msgstr ""
|
3800 |
|
3806 |
"WordPress."
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: includes/Tools.php:506
|
3810 |
msgid "Romania"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: views/b2s/premium.php:119
|
3814 |
msgid "RSS import & auto-post"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
+
#: includes/Tools.php:497
|
3818 |
msgid "Russia"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
+
#: views/b2s/support.php:126
|
3822 |
msgid "Sales Support"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
+
#: includes/B2S/RePost/Item.php:80 includes/B2S/Ship/Item.php:1448
|
3826 |
msgid "Sat"
|
3827 |
msgstr ""
|
3828 |
|
3834 |
msgid "Save"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
+
#: views/b2s/network.php:251 views/b2s/settings.php:71
|
3838 |
+
#: includes/B2S/Network/Item.php:632 includes/B2S/Settings/Item.php:146
|
3839 |
msgid "save"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: views/b2s/html/header.php:656
|
3843 |
+
msgid "Save a lot of time for your social media tasks!"
|
3844 |
+
msgstr ""
|
3845 |
+
|
3846 |
+
#: includes/B2S/Ship/Item.php:1487
|
3847 |
msgid "Save as best time for this network"
|
3848 |
msgstr ""
|
3849 |
|
3851 |
msgid "Save As Draft"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: views/b2s/ship.php:246 views/b2s/ship.php:250
|
3855 |
#: includes/B2S/Curation/View.php:110
|
3856 |
msgid "Save as Draft"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: views/b2s/curation.draft.php:18
|
3860 |
msgid ""
|
3861 |
"Save links as drafts while browsing and share or schedule them whenever you "
|
3862 |
"want."
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: views/b2s/ship.php:181 views/b2s/ship.php:353
|
3866 |
msgid "Save network selection"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: views/b2s/autopost.php:36 views/b2s/settings.php:33
|
3870 |
msgid "save..."
|
3871 |
msgstr ""
|
3872 |
|
3873 |
+
#: includes/B2S/Post/Item.php:555
|
3874 |
msgid "saved"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: views/b2s/html/header.php:161
|
3878 |
msgid "Saved as draft"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: views/b2s/curation.php:53
|
3882 |
msgid "Saved as draft."
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: includes/B2S/PostBox.php:226 views/b2s/curation.php:197
|
3886 |
+
#: views/b2s/dashboard.php:273 views/b2s/post.calendar.php:303
|
3887 |
+
#: views/b2s/ship.php:335 views/b2s/ship.php:401 views/b2s/ship.php:447
|
3888 |
#: views/b2s/html/footer.php:37 views/b2s/html/footer.php:202
|
3889 |
#: views/b2s/html/footer.php:266 views/b2s/html/footer.php:306
|
3890 |
#: views/b2s/html/footer.php:361 views/b2s/html/footer.php:400
|
3892 |
msgid "Schedule and re-share old posts"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: views/b2s/premium.php:138
|
3896 |
msgid ""
|
3897 |
"Schedule and share curated content from any source on your preferred "
|
3898 |
"networks."
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: views/b2s/premium.php:129
|
3902 |
msgid ""
|
3903 |
"Schedule and share your blog posts as Google My Business posts to update "
|
3904 |
"your business listing and to add fresh content for your company."
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: views/b2s/premium.php:137
|
3908 |
msgid "Schedule curated content"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: views/b2s/curation.php:177 views/b2s/dashboard.php:253
|
3912 |
+
#: views/b2s/post.calendar.php:283 views/b2s/ship.php:427
|
3913 |
+
#: includes/B2S/Ship/Item.php:1329
|
3914 |
msgid "Schedule for specific dates"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: views/b2s/curation.php:180 views/b2s/dashboard.php:256
|
3918 |
+
#: views/b2s/post.calendar.php:286 views/b2s/ship.php:430
|
3919 |
msgid "Schedule post recurrently"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: includes/B2S/Ship/Item.php:1331
|
3923 |
msgid "Schedule Recurrent Post"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: views/b2s/ship.php:381
|
3927 |
msgid "Schedule your post"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: includes/B2S/PostBox.php:225 views/b2s/curation.php:196
|
3931 |
+
#: views/b2s/dashboard.php:272 views/b2s/post.calendar.php:302
|
3932 |
+
#: views/b2s/ship.php:334 views/b2s/ship.php:400 views/b2s/ship.php:446
|
3933 |
#: views/b2s/html/footer.php:36 views/b2s/html/footer.php:201
|
3934 |
#: views/b2s/html/footer.php:265 views/b2s/html/footer.php:305
|
3935 |
#: views/b2s/html/footer.php:360 views/b2s/html/footer.php:399
|
3937 |
msgid "Schedule your post for one time, multiple times or recurrently"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: includes/B2S/PostBox.php:223 views/b2s/curation.php:194
|
3941 |
+
#: views/b2s/dashboard.php:270 views/b2s/post.calendar.php:300
|
3942 |
+
#: views/b2s/ship.php:332 views/b2s/ship.php:398 views/b2s/ship.php:444
|
3943 |
#: views/b2s/html/footer.php:34 views/b2s/html/footer.php:199
|
3944 |
#: views/b2s/html/footer.php:263 views/b2s/html/footer.php:303
|
3945 |
#: views/b2s/html/footer.php:358 views/b2s/html/footer.php:397
|
3953 |
"multiple times or recurrently"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: views/b2s/post.calendar.php:51 views/b2s/ship.php:18
|
3957 |
+
#: includes/B2S/Post/Filter.php:59 includes/B2S/Post/Item.php:393
|
3958 |
#: includes/PRG/Post/Filter.php:37 includes/PRG/Post/Item.php:86
|
3959 |
#: views/b2s/widgets/calendar.php:45
|
3960 |
msgid "scheduled"
|
3964 |
msgid "Scheduled Auto-Posting"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: includes/B2S/Post/Item.php:981
|
3968 |
#, php-format
|
3969 |
msgid "scheduled by %s"
|
3970 |
msgstr ""
|
3971 |
|
3972 |
+
#: includes/B2S/Ship/Save.php:477
|
3973 |
msgid "scheduled on"
|
3974 |
msgstr ""
|
3975 |
|
3977 |
msgid "scheduled post(s)"
|
3978 |
msgstr ""
|
3979 |
|
3980 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:80
|
3981 |
+
#: views/b2s/widgets/posts.php:18
|
3982 |
msgid "Scheduled Posts"
|
3983 |
msgstr ""
|
3984 |
|
3986 |
msgid "scheduled posts"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: includes/B2S/Post/Item.php:500 includes/B2S/Post/Item.php:620
|
3990 |
#: views/b2s/widgets/activity.php:10
|
3991 |
msgid "scheduled social media posts"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: views/b2s/support.php:113
|
3995 |
msgid "Scheduling and Best Time Manager"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: views/b2s/ship.php:68
|
3999 |
msgid "scroll to bottom"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: views/b2s/ship.php:244
|
4003 |
msgid "scroll to top"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: includes/Tools.php:532
|
4007 |
msgid "Search"
|
4008 |
msgstr ""
|
4009 |
|
4011 |
msgid "Search Title"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: views/b2s/support.php:116
|
4015 |
msgid "Security"
|
4016 |
msgstr ""
|
4017 |
|
4019 |
msgid "See all publications for your message live on "
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: views/b2s/premium.php:90
|
4023 |
msgid ""
|
4024 |
"See your entire schedule at a glance, with team view and network filter. "
|
4025 |
"Edit scheduled posts or add new social media posts per drag & drop."
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: views/b2s/dashboard.php:169 views/b2s/dashboard.php:182
|
4029 |
+
#: views/b2s/post.calendar.php:199 views/b2s/post.calendar.php:212
|
4030 |
msgid "select"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: views/b2s/dashboard.php:200 views/b2s/post.calendar.php:230
|
4034 |
msgid "Select a post"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: views/b2s/premium.php:42
|
4038 |
msgid "Select a user"
|
4039 |
msgstr ""
|
4040 |
|
4042 |
msgid "Select all"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: includes/B2S/Post/Item.php:757 includes/B2S/Post/Item.php:889
|
4046 |
+
#: includes/B2S/Post/Item.php:961 includes/B2S/RePost/Item.php:135
|
4047 |
msgid "select all"
|
4048 |
msgstr ""
|
4049 |
|
4055 |
msgid "Select Image"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: views/b2s/curation.php:308 views/b2s/repost.php:203
|
4059 |
msgid "Select image"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: views/b2s/dashboard.php:138 views/b2s/post.calendar.php:168
|
4063 |
+
#: views/b2s/post.sched.php:122 views/b2s/repost.php:171 views/b2s/ship.php:467
|
4064 |
msgid "Select image for"
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: includes/B2S/PostBox.php:228 views/b2s/curation.php:199
|
4068 |
+
#: views/b2s/dashboard.php:275 views/b2s/post.calendar.php:305
|
4069 |
+
#: views/b2s/ship.php:337 views/b2s/ship.php:403 views/b2s/ship.php:449
|
4070 |
#: views/b2s/html/footer.php:39 views/b2s/html/footer.php:70
|
4071 |
#: views/b2s/html/footer.php:204 views/b2s/html/footer.php:268
|
4072 |
#: views/b2s/html/footer.php:308 views/b2s/html/footer.php:363
|
4075 |
msgid "Select individual images per post"
|
4076 |
msgstr ""
|
4077 |
|
4078 |
+
#: views/b2s/premium.php:150
|
4079 |
msgid ""
|
4080 |
"Select individual images per post or network and select any image from your "
|
4081 |
"media library to create more variations for your posts."
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: includes/B2S/PostBox.php:227 views/b2s/curation.php:198
|
4085 |
+
#: views/b2s/dashboard.php:274 views/b2s/post.calendar.php:304
|
4086 |
+
#: views/b2s/ship.php:336 views/b2s/ship.php:402 views/b2s/ship.php:448
|
4087 |
#: views/b2s/html/footer.php:38 views/b2s/html/footer.php:69
|
4088 |
#: views/b2s/html/footer.php:203 views/b2s/html/footer.php:267
|
4089 |
#: views/b2s/html/footer.php:307 views/b2s/html/footer.php:362
|
4098 |
"format for Twitter, LinkedIn, and Facebook."
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: views/b2s/premium.php:159
|
4102 |
msgid ""
|
4103 |
"Select link post or image post per network to choose the optimal format for "
|
4104 |
"your post."
|
4109 |
msgid "Select network collection:"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: views/b2s/autopost.php:56 views/b2s/settings.php:147
|
4113 |
#: includes/B2S/Ship/Image.php:100
|
4114 |
msgid "Select or upload an image from media gallery"
|
4115 |
msgstr ""
|
4116 |
|
4117 |
+
#: views/b2s/network.php:374 views/b2s/network.php:429 views/b2s/ship.php:628
|
4118 |
+
#: views/b2s/ship.php:683
|
4119 |
msgid "Select Pinboard"
|
4120 |
msgstr ""
|
4121 |
|
4142 |
msgid "Select to auto-post immediately after publishing or with a delay"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
#: includes/B2S/PostBox.php:311 views/b2s/autopost.php:81
|
4146 |
+
#: views/b2s/repost.php:189 includes/B2S/AutoPost/Item.php:200
|
4147 |
#: includes/B2S/Curation/View.php:97 includes/B2S/RePost/Item.php:170
|
4148 |
msgid "Select Twitter profile:"
|
4149 |
msgstr ""
|
4159 |
msgid "selected date"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: views/b2s/network.php:415 views/b2s/ship.php:669
|
4163 |
msgid "Server-Location"
|
4164 |
msgstr ""
|
4165 |
|
4184 |
msgstr ""
|
4185 |
|
4186 |
#: includes/Loader.php:867 includes/Loader.php:1032 includes/Loader.php:1032
|
4187 |
+
#: includes/Loader.php:1109 includes/B2S/RePost/Item.php:25
|
4188 |
+
#: views/b2s/html/sidebar.php:109
|
4189 |
msgid "Settings"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: views/b2s/ship.php:245 views/b2s/ship.php:251
|
4193 |
#: includes/B2S/Curation/View.php:113
|
4194 |
msgid "Share"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: includes/B2S/Post/Item.php:923 includes/B2S/Ship/Save.php:457
|
4198 |
msgid "share"
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: views/b2s/curation.php:229
|
4202 |
msgid "Share image posts:"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: views/b2s/curation.php:232
|
4206 |
msgid ""
|
4207 |
"Share images to get them into the Google image search to further increase "
|
4208 |
"your outreach and traffic from search engines."
|
4214 |
"feeds and plugins can be shared automatically on your social media channels."
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: views/b2s/premium.php:120
|
4218 |
msgid ""
|
4219 |
"Share imported RSS feeds automatically to get more variations for your "
|
4220 |
"content."
|
4221 |
msgstr ""
|
4222 |
|
4223 |
+
#: views/b2s/curation.php:21 views/b2s/html/post.navbar.php:14
|
4224 |
+
msgid "Share New Image Post"
|
4225 |
+
msgstr ""
|
4226 |
+
|
4227 |
+
#: views/b2s/curation.php:19 views/b2s/html/post.navbar.php:12
|
4228 |
+
msgid "Share New Link Post"
|
4229 |
+
msgstr ""
|
4230 |
+
|
4231 |
+
#: views/b2s/ship.php:281
|
4232 |
msgid "Share new post on Social Media"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
+
#: views/b2s/curation.php:20 views/b2s/html/post.navbar.php:13
|
4236 |
+
msgid "Share New Text Post"
|
4237 |
+
msgstr ""
|
4238 |
+
|
4239 |
+
#: views/b2s/curation.php:22 views/b2s/html/post.navbar.php:15
|
4240 |
+
msgid "Share New Video Post"
|
4241 |
+
msgstr ""
|
4242 |
+
|
4243 |
+
#: includes/B2S/Ship/Item.php:1326
|
4244 |
msgid "Share Now"
|
4245 |
msgstr ""
|
4246 |
|
4248 |
msgid "share oldest posts first"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
+
#: views/b2s/html/header.php:372
|
4252 |
msgid "Share on multiple accounts per network"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: includes/B2S/PostBox.php:221 views/b2s/curation.php:192
|
4256 |
+
#: views/b2s/dashboard.php:268 views/b2s/post.calendar.php:298
|
4257 |
+
#: views/b2s/ship.php:330 views/b2s/ship.php:396 views/b2s/ship.php:442
|
4258 |
#: views/b2s/html/footer.php:32 views/b2s/html/footer.php:197
|
4259 |
#: views/b2s/html/footer.php:261 views/b2s/html/footer.php:301
|
4260 |
#: views/b2s/html/footer.php:356 views/b2s/html/footer.php:395
|
4262 |
msgid "Share on multiple profiles, pages and groups"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
+
#: includes/B2S/Post/Item.php:443 includes/B2S/Post/Item.php:547
|
4266 |
+
#: includes/B2S/Post/Item.php:549 includes/B2S/Post/Item.php:570
|
4267 |
+
#: includes/B2S/Post/Item.php:593
|
4268 |
msgid "Share on Social Media"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: views/b2s/curation.php:236
|
|
|
|
|
|
|
|
|
4272 |
msgid ""
|
4273 |
"Share pure text messages and personal comments with your followers and "
|
4274 |
"readers."
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: views/b2s/curation.php:234
|
4278 |
msgid "Share text posts:"
|
4279 |
msgstr ""
|
4280 |
|
4282 |
msgid "share up to"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: views/b2s/html/post.navbar.php:11
|
4286 |
+
msgid "Share WordPress Content"
|
4287 |
msgstr ""
|
4288 |
|
4289 |
#: includes/B2S/PostBox.php:211 views/b2s/html/footer.php:344
|
4298 |
msgid "Share your post"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: views/b2s/premium.php:111
|
4302 |
msgid ""
|
4303 |
"Share your posts automatically across your preferred networks at once or at "
|
4304 |
"your pre-scheduled time-settings."
|
4305 |
msgstr ""
|
4306 |
|
4307 |
+
#: views/b2s/premium.php:72
|
4308 |
msgid ""
|
4309 |
"Share your posts on pages and in groups on Facebook, LinkedIn, XING, VK and "
|
4310 |
"Medium."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: views/b2s/dashboard.php:166 views/b2s/post.calendar.php:196
|
4314 |
msgid "Share your WordPress posts, pages or products"
|
4315 |
msgstr ""
|
4316 |
|
4318 |
msgid "Shared"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: includes/B2S/Post/Item.php:796
|
4322 |
#, php-format
|
4323 |
msgid "shared by %s"
|
4324 |
msgstr ""
|
4327 |
msgid "shared by user"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: includes/Loader.php:917 views/b2s/html/sidebar.php:83
|
|
|
4331 |
msgid "Shared Posts"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: includes/B2S/Metrics/Item.php:228 includes/B2S/Post/Item.php:476
|
4335 |
msgid "shared social media posts"
|
4336 |
msgstr ""
|
4337 |
|
4339 |
msgid "shared to network"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: views/b2s/metrics.php:141
|
4343 |
msgid "Shares"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: includes/B2S/Post/Item.php:796
|
4347 |
#, php-format
|
4348 |
msgid "sharing in progress by %s"
|
4349 |
msgstr ""
|
4361 |
msgid "Sharing on multiple accounts per network"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: views/b2s/support.php:23
|
4365 |
msgid "Sharing-Debugger"
|
4366 |
msgstr ""
|
4367 |
|
4373 |
msgid "Shortext"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: includes/B2S/Post/Item.php:774
|
4377 |
msgid "show"
|
4378 |
msgstr ""
|
4379 |
|
4385 |
msgid "Show all"
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: views/b2s/post.calendar.php:49 includes/B2S/Calendar/Filter.php:127
|
4389 |
#: views/b2s/widgets/calendar.php:43
|
4390 |
msgid "show all"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: views/b2s/premium.php:184
|
4394 |
msgid "Show all premium features"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: includes/B2S/PostBox.php:180 includes/B2S/Ship/Item.php:436
|
4398 |
msgid "show calendar"
|
4399 |
msgstr ""
|
4400 |
|
4402 |
msgid "show details"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: views/b2s/dashboard.php:86
|
4406 |
msgid "show full calendar"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: views/b2s/premium.php:182
|
4410 |
msgid "Show me plans and prices"
|
4411 |
msgstr ""
|
4412 |
|
4414 |
msgid "Sign in"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: views/b2s/network.php:439 views/b2s/ship.php:693
|
4418 |
msgid "Sign in to Pinterest"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: views/b2s/autopost.php:143
|
4422 |
msgid ""
|
4423 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
4424 |
"and define the preferred settings panel for each user."
|
4425 |
msgstr ""
|
4426 |
|
4427 |
+
#: views/b2s/autopost.php:179
|
4428 |
msgid ""
|
4429 |
"Since Blog2Social works WordPress user based, please make sure you activate "
|
4430 |
"and define the preferred settings panel for each user. "
|
4431 |
msgstr ""
|
4432 |
|
4433 |
+
#: includes/Tools.php:518
|
|
|
|
|
|
|
|
|
4434 |
msgid "Slovakia"
|
4435 |
msgstr ""
|
4436 |
|
4437 |
#: views/b2s/network.php:239 views/b2s/ship.php:27
|
4438 |
#: includes/B2S/AutoPost/Item.php:34 includes/B2S/Curation/View.php:56
|
4439 |
+
#: includes/B2S/Network/Item.php:188 includes/B2S/Network/Item.php:201
|
4440 |
+
#: includes/B2S/Network/Item.php:214 includes/B2S/Network/Item.php:325
|
4441 |
+
#: includes/B2S/Network/Item.php:404 includes/B2S/Network/Item.php:479
|
4442 |
#: includes/B2S/RePost/Item.php:23 includes/B2S/Settings/Item.php:172
|
4443 |
+
#: includes/B2S/Ship/Image.php:89 includes/B2S/Ship/Item.php:1328
|
4444 |
#: includes/B2S/Ship/Portale.php:46 includes/B2S/Ship/Portale.php:63
|
4445 |
+
#: views/b2s/partials/post-edit-modal.php:9 views/b2s/widgets/posts.php:18
|
|
|
|
|
4446 |
msgid "SMART"
|
4447 |
msgstr ""
|
4448 |
|
4450 |
msgid "Smart: 3 (per user)"
|
4451 |
msgstr ""
|
4452 |
|
4453 |
+
#: includes/Tools.php:534
|
4454 |
msgid "Smileys & People"
|
4455 |
msgstr ""
|
4456 |
|
4458 |
msgid "Sniply"
|
4459 |
msgstr ""
|
4460 |
|
4461 |
+
#: views/b2s/ship.php:110
|
4462 |
msgid "Social Accounts"
|
4463 |
msgstr ""
|
4464 |
|
4465 |
+
#: views/b2s/html/header.php:370
|
4466 |
msgid "Social Media Auto-Posting"
|
4467 |
msgstr ""
|
4468 |
|
4471 |
msgid "Social media auto-posting and auto-scheduling"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
+
#: views/b2s/premium.php:89
|
4475 |
msgid "Social Media Calendar"
|
4476 |
msgstr ""
|
4477 |
|
4478 |
#: includes/Loader.php:917 includes/Loader.php:1029 includes/Loader.php:1094
|
4479 |
+
#: views/b2s/metrics.php:233 views/b2s/html/header.php:532
|
4480 |
+
#: views/b2s/html/sidebar.php:102
|
4481 |
msgid "Social Media Metrics"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: views/b2s/metrics.php:70
|
4485 |
msgid "Social Media Metrics Summary"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: views/b2s/settings.php:50 views/b2s/html/sidebar.php:106
|
4489 |
msgid "Social Media Networks"
|
4490 |
msgstr ""
|
4491 |
|
|
|
|
|
|
|
|
|
4492 |
#: includes/Loader.php:917
|
4493 |
msgid "Social Media Post Drafts"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: includes/Loader.php:1026 includes/Loader.php:1086 views/b2s/curation.php:255
|
4497 |
+
#: views/b2s/curation.php:330
|
4498 |
msgid "Social Media Posts"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: includes/B2S/Post/Item.php:522
|
4502 |
msgid "social media posts ready to be shared"
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: views/b2s/ship.php:57
|
4506 |
msgid "Social Media Scheduling & Sharing"
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: views/b2s/html/header.php:584 views/b2s/html/header.php:643
|
4510 |
+
msgid ""
|
4511 |
+
"Social media templates to turn your social media posts automatically into "
|
4512 |
+
"tailored posts for each network and community by customizing your post "
|
4513 |
+
"layout with a unique structure. Define the sequence of variables for the "
|
4514 |
+
"title, excerpt, content, keywords as hashtags, author and WooCommer price."
|
4515 |
+
msgstr ""
|
4516 |
+
|
4517 |
+
#: views/b2s/settings.php:53
|
4518 |
msgid "Social Media Time Settings"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: views/b2s/settings.php:44
|
4522 |
msgid "Social Meta Data"
|
4523 |
msgstr ""
|
4524 |
|
4540 |
"following <a href=\"%s\" target=\"_blank\">shortcode guide</a>."
|
4541 |
msgstr ""
|
4542 |
|
4543 |
+
#: views/b2s/html/header.php:477
|
4544 |
msgid "Something went wrong on our side. Please contact support!"
|
4545 |
msgstr ""
|
4546 |
|
4548 |
msgid "sort"
|
4549 |
msgstr ""
|
4550 |
|
4551 |
+
#: views/b2s/post.calendar.php:47 views/b2s/widgets/calendar.php:41
|
4552 |
msgid "Sort by network"
|
4553 |
msgstr ""
|
4554 |
|
4555 |
+
#: includes/Tools.php:521
|
4556 |
msgid "South Africa"
|
4557 |
msgstr ""
|
4558 |
|
4559 |
+
#: includes/Tools.php:494
|
4560 |
msgid "Spain"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: includes/B2S/Ship/Item.php:1383
|
4564 |
msgid "Start date"
|
4565 |
msgstr ""
|
4566 |
|
4568 |
msgid "Start your 14-Day Free Trial"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: views/b2s/premium.php:27 views/b2s/html/sidebar.php:49
|
4572 |
#: views/b2s/html/sidebar.ship.php:46
|
4573 |
msgid "Start your 30-day free Premium trial"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: views/b2s/html/header.php:280
|
4577 |
msgid "Start your free 30-day-Premium-trial"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: views/b2s/html/header.php:543
|
4581 |
msgid "Start your free trial for Social Media Metrics"
|
4582 |
msgstr ""
|
4583 |
|
4585 |
msgid "Startdate"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: views/b2s/support.php:26
|
4589 |
msgid "Step-by-Step-Guide"
|
4590 |
msgstr ""
|
4591 |
|
4610 |
msgid "Subtitle"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: includes/B2S/Network/Item.php:660
|
4614 |
msgid "Successfully saved"
|
4615 |
msgstr ""
|
4616 |
|
4622 |
msgid "Summary with large image"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: includes/B2S/RePost/Item.php:81 includes/B2S/Ship/Item.php:1449
|
4626 |
msgid "Sun"
|
4627 |
msgstr ""
|
4628 |
|
4634 |
msgid "Support"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: includes/B2S/Ship/Item.php:168
|
4638 |
msgid "Supported HTML tags"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: includes/Tools.php:516
|
4642 |
msgid "Sweden"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: includes/Tools.php:491
|
4646 |
msgid "Switzerland"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: includes/Tools.php:540
|
4650 |
msgid "Symbols"
|
4651 |
msgstr ""
|
4652 |
|
4654 |
msgid "System"
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: views/b2s/html/header.php:583 views/b2s/html/header.php:642
|
4658 |
+
msgid ""
|
4659 |
+
"Tailoring options like individual images for each post, different post "
|
4660 |
+
"formats (link and image post), emojis, hashtags, handles and GIFs for your "
|
4661 |
+
"social media posts to to diversify the appearance your social media posts"
|
4662 |
+
msgstr ""
|
4663 |
+
|
4664 |
#: views/b2s/network.php:509 views/b2s/network.php:594
|
4665 |
msgid "Team Management"
|
4666 |
msgstr ""
|
4669 |
msgid "Terms"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: views/b2s/html/header.php:361
|
4673 |
msgid "Test Blog2Social PREMIUM 30 days for free"
|
4674 |
msgstr ""
|
4675 |
|
4677 |
msgid "Test PR-Gateway for free"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: includes/B2S/Ship/Item.php:227
|
4681 |
msgid "Text only"
|
4682 |
msgstr ""
|
4683 |
|
4684 |
+
#: includes/B2S/Ship/Item.php:385
|
|
|
4685 |
msgid "Text Post"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: views/b2s/curation.php:279
|
4689 |
msgid ""
|
4690 |
"Text posts enable you to share pure text messages and personal comments with "
|
4691 |
"your followers and readers. You can also customize your posts with "
|
4692 |
"individual hashtags, @mentions, or emojis."
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: views/b2s/html/header.php:200
|
4696 |
msgid "Thank you! Your feedback has been received."
|
4697 |
msgstr ""
|
4698 |
|
4699 |
+
#: views/b2s/html/header.php:84
|
4700 |
msgid "Thank you. You'll now receive the blog updates from Blog2Social."
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: views/b2s/html/header.php:582 views/b2s/html/header.php:641
|
4704 |
+
msgid ""
|
4705 |
+
"The Auto-Poster, to automatically share your posts immediately or at a later "
|
4706 |
+
"time."
|
4707 |
+
msgstr ""
|
4708 |
+
|
4709 |
#: includes/B2S/PostBox.php:168
|
4710 |
msgid "The Autoposter is"
|
4711 |
msgstr ""
|
4725 |
"Facebook (page and group) and on Twitter."
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: views/b2s/html/header.php:590 views/b2s/html/header.php:649
|
4729 |
+
msgid ""
|
4730 |
+
"The Best Time Manager to reach your followers when they are most active on "
|
4731 |
+
"each social network and increase your reach."
|
4732 |
+
msgstr ""
|
4733 |
+
|
4734 |
#: views/b2s/network.php:535
|
4735 |
msgid "The connection does not exist."
|
4736 |
msgstr ""
|
4745 |
"assigned connection from other users first."
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: includes/B2S/PostBox.php:143 views/b2s/html/header.php:72
|
4749 |
msgid ""
|
4750 |
"The connection to the server failed. Please try again! You can find more "
|
4751 |
"information and solutions in the"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
+
#: views/b2s/ship.php:836
|
4755 |
msgid ""
|
4756 |
"The connection to the server failed. Please try again! You can find more "
|
4757 |
"information and solutions in the guide for server connection"
|
4789 |
msgid "The default card type to use"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
+
#: views/b2s/metrics.php:253
|
4793 |
msgid ""
|
4794 |
"The first step is to create and share a social media post for which you want "
|
4795 |
"to track the metrics. You can share WordPress posts, pages and products, "
|
4798 |
"under the menu item \"Social Media Metrics\"."
|
4799 |
msgstr ""
|
4800 |
|
4801 |
+
#: views/b2s/html/header.php:367
|
4802 |
msgid ""
|
4803 |
"The free trial can not be started. This blog has been already registered for "
|
4804 |
"the free trial."
|
4805 |
msgstr ""
|
4806 |
|
4807 |
+
#: includes/B2S/Ship/Item.php:1223
|
4808 |
msgid "The Headline..."
|
4809 |
msgstr ""
|
4810 |
|
4823 |
msgid "The images file types .jpg and .png are allowed. Please try another."
|
4824 |
msgstr ""
|
4825 |
|
4826 |
+
#: views/b2s/html/header.php:429
|
4827 |
msgid "The license has been successfully activated."
|
4828 |
msgstr ""
|
4829 |
|
4839 |
"first image detected on your page. The image links to your blog post."
|
4840 |
msgstr ""
|
4841 |
|
4842 |
+
#: includes/B2S/Network/Item.php:858
|
4843 |
msgid "The link will be added automatically at the end of the post."
|
4844 |
msgstr ""
|
4845 |
|
4846 |
+
#: includes/B2S/Network/Item.php:856
|
4847 |
msgid ""
|
4848 |
"The link will be transmitted as a canonical link, i.e. in the source code of "
|
4849 |
"your page, in order to refer to the original source of the content and to "
|
4854 |
msgid "The link you followed has expired. Please refresh your page."
|
4855 |
msgstr ""
|
4856 |
|
4857 |
+
#: views/b2s/network.php:349 views/b2s/network.php:362 views/b2s/ship.php:608
|
4858 |
+
#: views/b2s/ship.php:616
|
4859 |
msgid ""
|
4860 |
"The login failed. To connect your Pinterest account to Blog2Social, please "
|
4861 |
"sign in to Pinterest using the Blog2Social browser extension."
|
4879 |
"target=\"_blank\" href=\"%s\">guide</a>."
|
4880 |
msgstr ""
|
4881 |
|
4882 |
+
#: includes/B2S/Network/Item.php:863
|
4883 |
msgid "The network does not support hashtags."
|
4884 |
msgstr ""
|
4885 |
|
4911 |
msgid "The orginal tweet is scheduled on:"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
+
#: views/b2s/html/header.php:103
|
4915 |
msgid "The page and post meta data could not be removed."
|
4916 |
msgstr ""
|
4917 |
|
4919 |
msgid "The parameters could not be saved. Please try again."
|
4920 |
msgstr ""
|
4921 |
|
4922 |
+
#: includes/B2S/Calendar/Item.php:534 includes/B2S/Post/Item.php:785
|
4923 |
#, php-format
|
4924 |
msgid ""
|
4925 |
"The post cannot be published due to changes on the Instagram interface. More "
|
4926 |
"information in the <a href=\"%s\" target=\"_blank\">Instagram guide</a>."
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: views/b2s/html/header.php:239
|
4930 |
msgid ""
|
4931 |
"The posts you tried to add are already in your sharing queue. If you want to "
|
4932 |
"re-schedule them, please delete the posts before adding them again."
|
4944 |
"website/ blog."
|
4945 |
msgstr ""
|
4946 |
|
4947 |
+
#: views/b2s/ship.php:801
|
4948 |
+
msgid ""
|
4949 |
+
"The scheduling for your social media post has changed as a selected social "
|
4950 |
+
"media network is no longer connected to Blog2Social. Please check the "
|
4951 |
+
"network connections under \"Networks\" and make sure that the required "
|
4952 |
+
"networks are connected."
|
4953 |
+
msgstr ""
|
4954 |
+
|
4955 |
#: includes/B2S/AutoPost/Item.php:51
|
4956 |
msgid ""
|
4957 |
"The settings for the Auto-Poster were configured for you by a WordPress "
|
4958 |
"admin."
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: views/b2s/html/header.php:591 views/b2s/html/header.php:650
|
4962 |
+
msgid ""
|
4963 |
+
"The social media calendar to keep track of your scheduled social media posts."
|
4964 |
+
" Add social media posts, edit or change the date per drag & drop."
|
4965 |
+
msgstr ""
|
4966 |
+
|
4967 |
#: views/b2s/network.php:311
|
4968 |
msgid "The summary of your post (you define it in the side menu of your post)."
|
4969 |
msgstr ""
|
4972 |
msgid "The tags you have set in your post."
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: views/b2s/html/header.php:592 views/b2s/html/header.php:651
|
4976 |
+
msgid ""
|
4977 |
+
"The team and user management settings to organize multiple users and "
|
4978 |
+
"licenses and to collaborate on the social media calendar, and much more."
|
4979 |
+
msgstr ""
|
4980 |
+
|
4981 |
+
#: views/b2s/autopost.php:98
|
4982 |
#, php-format
|
4983 |
msgid ""
|
4984 |
"The time of publishing a post can play a decisive role in achieving more "
|
4994 |
msgid "The title of your post"
|
4995 |
msgstr ""
|
4996 |
|
4997 |
+
#: views/b2s/support.php:135
|
4998 |
msgid ""
|
4999 |
"The Troubleshooting tool helps you with conflicts that can be caused by the "
|
5000 |
"system environment of your blog. So you can always check your settings on "
|
5017 |
"another network collection."
|
5018 |
msgstr ""
|
5019 |
|
5020 |
+
#: views/b2s/autopost.php:116 views/b2s/autopost.php:156
|
5021 |
msgid "There are two different setting panels in the auto-poster section:"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
+
#: views/b2s/ship.php:588
|
5025 |
msgid ""
|
5026 |
"There is already a saved draft for this WordPress post or page. If you save "
|
5027 |
"a new draft it will overwrite the old draft. Are you sure you want to "
|
5035 |
"anymore. Do you want your press release to be published now?"
|
5036 |
msgstr ""
|
5037 |
|
5038 |
+
#: views/b2s/ship.php:360
|
5039 |
msgid ""
|
5040 |
"This allows you to adjust your network selection at any time and save it by "
|
5041 |
"clicking on \"Save network selection\"."
|
5045 |
msgid "This connection has already been assigned to this user."
|
5046 |
msgstr ""
|
5047 |
|
5048 |
+
#: views/b2s/html/header.php:128
|
5049 |
msgid "This entry could not be removed. It's not yours!"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
+
#: views/b2s/html/header.php:133
|
5053 |
msgid "This entry was removed successfully."
|
5054 |
msgstr ""
|
5055 |
|
5065 |
"edited by users with admin rights only."
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: includes/B2S/Ship/Save.php:442 includes/B2S/Ship/Save.php:450
|
5069 |
msgid "This is how it works:"
|
5070 |
msgstr ""
|
5071 |
|
5077 |
msgid "This post is blocked by %1"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: views/b2s/html/header.php:138
|
5081 |
msgid "This post was edited successfully."
|
5082 |
msgstr ""
|
5083 |
|
5089 |
msgid "This post will be shared on social media in 2-3 minutes!"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#: includes/B2S/Network/Item.php:867
|
5093 |
msgid ""
|
5094 |
"This social network displays the predefined hashtags as clickable tags at "
|
5095 |
"the end of your post."
|
5109 |
"accounts with the new XING interface to reschedule your posts."
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: includes/B2S/Ship/Item.php:234
|
5113 |
+
msgid "Threads"
|
5114 |
+
msgstr ""
|
5115 |
+
|
5116 |
+
#: includes/B2S/RePost/Item.php:78 includes/B2S/Ship/Item.php:1446
|
5117 |
msgid "Thu"
|
5118 |
msgstr ""
|
5119 |
|
5121 |
msgid "Thursday"
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: includes/B2S/Ship/Item.php:1438 views/b2s/partials/post-edit-modal.php:68
|
5125 |
#: views/b2s/partials/post-edit-modal.php:71
|
5126 |
msgid "Time"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: includes/B2S/Ship/Item.php:1384
|
5130 |
msgid "Time to publish"
|
5131 |
msgstr ""
|
5132 |
|
5133 |
+
#: views/b2s/ship.php:260
|
5134 |
msgid "Time zone"
|
5135 |
msgstr ""
|
5136 |
|
5138 |
msgid "times"
|
5139 |
msgstr ""
|
5140 |
|
5141 |
+
#: includes/B2S/Ship/Item.php:1435
|
5142 |
msgid "Timespan"
|
5143 |
msgstr ""
|
5144 |
|
5146 |
msgid "Timezone for Scheduling"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
+
#: views/b2s/ship.php:58 views/prg/ship.php:43 views/prg/ship.php:45
|
5150 |
#: includes/B2S/Curation/View.php:38 includes/B2S/Settings/Item.php:182
|
5151 |
#: includes/B2S/Settings/Item.php:231 views/prg/html/form.php:26
|
5152 |
#: views/prg/html/form.php:28
|
5157 |
msgid "title"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: views/b2s/settings.php:118
|
5161 |
msgid "Title: The title of your post."
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: views/b2s/autopost.php:84 views/b2s/repost.php:192
|
5165 |
msgid ""
|
5166 |
"To comply with the Twitter TOS and to avoid duplicate posts, autoposts will "
|
5167 |
"be sent to your primary Twitter profile."
|
5168 |
msgstr ""
|
5169 |
|
5170 |
+
#: views/b2s/ship.php:362
|
5171 |
#, php-format
|
5172 |
msgid ""
|
5173 |
"To define and save more network selections for your posting purposes, you "
|
5185 |
"“Add oEmbed tags” box."
|
5186 |
msgstr ""
|
5187 |
|
5188 |
+
#: views/b2s/support.php:52
|
5189 |
#, php-format
|
5190 |
msgid ""
|
5191 |
"To get technical help, please create your account to access the Blog2Social "
|
5193 |
"href=\"%s\" target=\"_blank\">Info</a>)"
|
5194 |
msgstr ""
|
5195 |
|
5196 |
+
#: views/b2s/html/header.php:597
|
5197 |
+
msgid ""
|
5198 |
+
"To keep all these benefits from all advanced features for automated "
|
5199 |
+
"scheduling and sharing and to keep all your individual settings und "
|
5200 |
+
"scheduling, don’t forget to upgrade to Blog2Social Premium before your trial "
|
5201 |
+
"expires. You can also upgrade at any time later, but please note that your "
|
5202 |
+
"Premium settings and your scheduling will be lost by then. To keep all your "
|
5203 |
+
"settings, upgrade to Blog2Social Premium now."
|
5204 |
+
msgstr ""
|
5205 |
+
|
5206 |
+
#: includes/B2S/Network/Item.php:265 includes/B2S/Network/Item.php:344
|
5207 |
+
#: includes/B2S/Network/Item.php:424
|
5208 |
msgid "To reactivate this connection,"
|
5209 |
msgstr ""
|
5210 |
|
5216 |
msgid "To share social media posts on Reddit or Diigo, a link is required."
|
5217 |
msgstr ""
|
5218 |
|
5219 |
+
#: views/b2s/html/header.php:59
|
5220 |
msgid ""
|
5221 |
"To use all features of Blog2Social, PHP version 5.5.3 or higher is required. "
|
5222 |
"Our support assists you as of PHP version 5.5.3. See also:"
|
5230 |
msgid "Transfer Auto-Poster settings to other users (Business):"
|
5231 |
msgstr ""
|
5232 |
|
5233 |
+
#: includes/Tools.php:538
|
5234 |
msgid "Travel & Places"
|
5235 |
msgstr ""
|
5236 |
|
5237 |
+
#: views/b2s/support.php:117
|
5238 |
msgid "Troubleshooting for Error Messages"
|
5239 |
msgstr ""
|
5240 |
|
5241 |
+
#: views/b2s/support.php:20
|
5242 |
msgid "Troubleshooting-Tool"
|
5243 |
msgstr ""
|
5244 |
|
5245 |
+
#: includes/B2S/RePost/Item.php:76 includes/B2S/Ship/Item.php:1444
|
5246 |
msgid "Tue"
|
5247 |
msgstr ""
|
5248 |
|
5250 |
msgid "Tuesday"
|
5251 |
msgstr ""
|
5252 |
|
5253 |
+
#: includes/Tools.php:501
|
5254 |
msgid "Turkey"
|
5255 |
msgstr ""
|
5256 |
|
5257 |
+
#: views/b2s/support.php:211
|
5258 |
msgid "Twitter Card Validator"
|
5259 |
msgstr ""
|
5260 |
|
5279 |
"selection.</a>"
|
5280 |
msgstr ""
|
5281 |
|
5282 |
+
#: views/b2s/repost.php:225
|
5283 |
#, php-format
|
5284 |
msgid ""
|
5285 |
"Under <a href=\"%s\">Network Settings</a> you define which network selection "
|
5292 |
"again!"
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: includes/Tools.php:488
|
5296 |
msgid "United States of America"
|
5297 |
msgstr ""
|
5298 |
|
5300 |
msgid "Unknown error"
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: views/b2s/support.php:62
|
5304 |
msgid "Unknown error has occurred. Please try again."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: includes/Ajax/Post.php:1959 views/b2s/network.php:13
|
5308 |
+
#: includes/B2S/Network/Item.php:278 includes/B2S/Network/Item.php:357
|
5309 |
+
#: includes/B2S/Network/Item.php:437 includes/B2S/Network/Item.php:571
|
5310 |
msgid "Unknown username"
|
5311 |
msgstr ""
|
5312 |
|
5313 |
+
#: views/b2s/curation.php:227
|
5314 |
msgid ""
|
5315 |
"Unlock Blog2Social Premium Pro to create and share image posts, video links, "
|
5316 |
"and text posts from any source."
|
5332 |
msgid "updated posts"
|
5333 |
msgstr ""
|
5334 |
|
5335 |
+
#: views/b2s/premium.php:32 includes/B2S/AutoPost/Item.php:148
|
5336 |
#: includes/B2S/AutoPost/Item.php:151 includes/B2S/RePost/Item.php:33
|
5337 |
msgid "Upgrade"
|
5338 |
msgstr ""
|
5339 |
|
5340 |
+
#: views/b2s/html/sidebar.php:116
|
5341 |
msgid "Upgrade License"
|
5342 |
msgstr ""
|
5343 |
|
5344 |
+
#: views/b2s/html/header.php:636
|
5345 |
+
msgid "Upgrade now to keep all benefits of Blog2Social Premium:"
|
5346 |
+
msgstr ""
|
5347 |
+
|
5348 |
#: views/b2s/network.php:565
|
5349 |
msgid "Upgrade to Blog2Social Business"
|
5350 |
msgstr ""
|
5367 |
msgid "Upgrade to Blog2Social PREMIUM BUSINESS"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: views/b2s/html/header.php:569 views/b2s/html/header.php:630
|
5371 |
+
#: views/b2s/html/header.php:673
|
5372 |
+
msgid "Upgrade to Blog2Social Premium now"
|
5373 |
+
msgstr ""
|
5374 |
+
|
5375 |
+
#: views/b2s/html/header.php:344 views/b2s/html/header.php:602
|
5376 |
+
msgid "Upgrade to Blog2Social Premium now."
|
5377 |
+
msgstr ""
|
5378 |
+
|
5379 |
#: views/b2s/html/footer.php:55
|
5380 |
msgid "Upgrade to Blog2Social PREMIUM PRO"
|
5381 |
msgstr ""
|
5382 |
|
5383 |
+
#: includes/B2S/Network/Item.php:706
|
5384 |
msgid "Upgrade to Blog2Social Smart"
|
5385 |
msgstr ""
|
5386 |
|
5387 |
+
#: includes/B2S/Network/Item.php:705
|
5388 |
msgid ""
|
5389 |
"Upgrade to Blog2Social Smart or higher to customize your individual post "
|
5390 |
"templates that will automatically pre-format the structure of your social "
|
5399 |
msgid "Upgrade to BUSINESS"
|
5400 |
msgstr ""
|
5401 |
|
5402 |
+
#: views/b2s/html/header.php:308
|
5403 |
msgid "Upgrade to PREMIUM"
|
5404 |
msgstr ""
|
5405 |
|
5406 |
+
#: includes/Loader.php:864 views/b2s/html/sidebar.php:47
|
5407 |
#: views/b2s/html/sidebar.ship.php:44
|
5408 |
msgid "Upgrade to Premium"
|
5409 |
msgstr ""
|
5412 |
msgid "Upgrade to Premium Pro now."
|
5413 |
msgstr ""
|
5414 |
|
5415 |
+
#: views/b2s/curation.php:241 views/b2s/html/footer.php:73
|
5416 |
#: views/b2s/html/footer.php:91 views/b2s/html/footer.php:109
|
5417 |
msgid "Upgrade to PRO and above"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
+
#: includes/B2S/PostBox.php:231 views/b2s/curation.php:202
|
5421 |
+
#: views/b2s/dashboard.php:278 views/b2s/post.calendar.php:308
|
5422 |
+
#: views/b2s/ship.php:340 views/b2s/ship.php:406 views/b2s/ship.php:452
|
5423 |
#: views/b2s/html/footer.php:42 views/b2s/html/footer.php:207
|
5424 |
#: views/b2s/html/footer.php:271 views/b2s/html/footer.php:311
|
5425 |
#: views/b2s/html/footer.php:366 views/b2s/html/footer.php:405
|
5427 |
msgid "Upgrade to SMART and above"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: views/b2s/curation.php:25
|
5431 |
+
msgid ""
|
5432 |
+
"Upload an image or select an image from your media library and share the "
|
5433 |
+
"image with a short description (comment) on your social media accounts."
|
5434 |
+
msgstr ""
|
5435 |
+
|
5436 |
#: views/b2s/network.php:468 views/b2s/network.php:568
|
5437 |
msgid "URL Parameters"
|
5438 |
msgstr ""
|
5441 |
msgid "Url Shortener"
|
5442 |
msgstr ""
|
5443 |
|
5444 |
+
#: views/b2s/premium.php:36
|
5445 |
msgid ""
|
5446 |
"Use Blog2Social Premium for even smarter social media automation: schedule "
|
5447 |
"your posts automatically with the Best Time Manager, choose specific dates "
|
5450 |
"network and much more."
|
5451 |
msgstr ""
|
5452 |
|
5453 |
+
#: views/b2s/curation.php:237
|
5454 |
msgid "Use hashtags, @mentions, or emojis to share your feelings."
|
5455 |
msgstr ""
|
5456 |
|
5457 |
+
#: views/b2s/autopost.php:57 views/b2s/settings.php:148
|
5458 |
#: includes/B2S/Ship/Image.php:101
|
5459 |
msgid "Use image"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
+
#: views/b2s/premium.php:99
|
5463 |
msgid ""
|
5464 |
"Use the Best Times Manager to schedule your posts automatically or define "
|
5465 |
"your own best time scheme."
|
5466 |
msgstr ""
|
5467 |
|
5468 |
+
#: views/b2s/settings.php:106
|
5469 |
msgid ""
|
5470 |
"Use the pre-defined best time settings or define your own best time settings "
|
5471 |
"for sharing your posts . Posting at the right time can be essential to make "
|
5476 |
msgid "User"
|
5477 |
msgstr ""
|
5478 |
|
5479 |
+
#: views/b2s/support.php:69
|
5480 |
msgid "User name"
|
5481 |
msgstr ""
|
5482 |
|
5483 |
+
#: views/b2s/support.php:66
|
5484 |
msgid "Username is taken."
|
5485 |
msgstr ""
|
5486 |
|
5487 |
+
#: views/b2s/support.php:205
|
5488 |
msgid "validate"
|
5489 |
msgstr ""
|
5490 |
|
5491 |
+
#: views/b2s/support.php:216
|
5492 |
msgid "Validate directly on Twitter"
|
5493 |
msgstr ""
|
5494 |
|
5495 |
+
#: includes/B2S/Network/Item.php:605
|
5496 |
msgid "Value"
|
5497 |
msgstr ""
|
5498 |
|
5499 |
+
#: views/b2s/html/sidebar.php:28 views/b2s/html/sidebar.ship.php:25
|
5500 |
msgid "Version"
|
5501 |
msgstr ""
|
5502 |
|
5503 |
+
#: includes/B2S/Post/Item.php:533
|
5504 |
msgid "via Browser-Extension"
|
5505 |
msgstr ""
|
5506 |
|
|
|
|
|
|
|
|
|
5507 |
#: views/b2s/network.php:180
|
5508 |
msgid "View schedule posts"
|
5509 |
msgstr ""
|
5510 |
|
5511 |
+
#: includes/B2S/Ship/Save.php:467
|
5512 |
msgid "view social media post"
|
5513 |
msgstr ""
|
5514 |
|
5515 |
+
#: includes/B2S/Ship/Item.php:415
|
5516 |
msgid ""
|
5517 |
"Violating these rules can result in suspending your account. Always vary "
|
5518 |
"your content with different images, comments, hashtags or handles to prevent "
|
5519 |
"duplicate posts."
|
5520 |
msgstr ""
|
5521 |
|
5522 |
+
#: includes/B2S/Ship/Item.php:406 includes/B2S/Ship/Item.php:881
|
5523 |
+
#: includes/B2S/Ship/Item.php:1338
|
5524 |
msgid ""
|
5525 |
"Violating these rules can result in Twitter suspending your account. Always "
|
5526 |
"vary your Tweets with different comments, hashtags or handles to prevent "
|
5533 |
"authorization."
|
5534 |
msgstr ""
|
5535 |
|
5536 |
+
#: views/b2s/metrics.php:221 views/b2s/html/header.php:546
|
5537 |
msgid "We hope you enjoy analysing your posts!"
|
5538 |
msgstr ""
|
5539 |
|
5540 |
+
#: views/b2s/html/header.php:321
|
5541 |
msgid "We hope you liked Blog2Social Premium."
|
5542 |
msgstr ""
|
5543 |
|
5545 |
msgid "We never store your data from your social media profiles"
|
5546 |
msgstr ""
|
5547 |
|
5548 |
+
#: views/b2s/html/header.php:502
|
5549 |
msgid "We updated our Privacy Policy"
|
5550 |
msgstr ""
|
5551 |
|
5554 |
msgid "Website"
|
5555 |
msgstr ""
|
5556 |
|
5557 |
+
#: includes/B2S/RePost/Item.php:77 includes/B2S/Ship/Item.php:1445
|
|
|
|
|
|
|
|
|
5558 |
msgid "Wed"
|
5559 |
msgstr ""
|
5560 |
|
5562 |
msgid "Wednesday"
|
5563 |
msgstr ""
|
5564 |
|
5565 |
+
#: includes/B2S/Ship/Item.php:1401
|
5566 |
msgid "Week"
|
5567 |
msgstr ""
|
5568 |
|
5569 |
+
#: includes/B2S/Ship/Item.php:1393
|
5570 |
msgid "weekly"
|
5571 |
msgstr ""
|
5572 |
|
5573 |
+
#: includes/B2S/Ship/Item.php:1401
|
5574 |
msgid "Weeks"
|
5575 |
msgstr ""
|
5576 |
|
5577 |
+
#: views/b2s/metrics.php:193
|
5578 |
msgid "Welcome to the trial of the beta version \"Social Media Metrics\"!"
|
5579 |
msgstr ""
|
5580 |
|
5581 |
+
#: views/b2s/html/header.php:575
|
5582 |
+
msgid "What do you like best of Blog2Social Premium?"
|
5583 |
+
msgstr ""
|
5584 |
+
|
5585 |
+
#: views/b2s/dashboard.php:156 views/b2s/post.calendar.php:186
|
5586 |
msgid "What would you like to share?"
|
5587 |
msgstr ""
|
5588 |
|
5594 |
msgid "When should your content be shared?"
|
5595 |
msgstr ""
|
5596 |
|
5597 |
+
#: views/b2s/network.php:659 views/b2s/ship.php:715
|
5598 |
#, php-format
|
5599 |
msgid ""
|
5600 |
"When you connect Blog2Social with your Instagram account, you might get a "
|
5607 |
" How to connect with Instagram.</a>."
|
5608 |
msgstr ""
|
5609 |
|
5610 |
+
#: views/b2s/curation.php:184 views/b2s/dashboard.php:260
|
5611 |
+
#: views/b2s/post.calendar.php:290 views/b2s/ship.php:434
|
5612 |
msgid ""
|
5613 |
"Whenever you publish a post, only a fraction of your followers will actually "
|
5614 |
"see your post. Use the Blog2Social Best Times Scheduler to share your post "
|
5648 |
msgid "With Blog2Social Premium PRO you can post multiple images."
|
5649 |
msgstr ""
|
5650 |
|
5651 |
+
#: includes/B2S/PostBox.php:217 views/b2s/curation.php:188
|
5652 |
+
#: views/b2s/dashboard.php:264 views/b2s/post.calendar.php:294
|
5653 |
+
#: views/b2s/ship.php:326 views/b2s/ship.php:392 views/b2s/ship.php:438
|
5654 |
#: views/b2s/html/footer.php:28 views/b2s/html/footer.php:193
|
5655 |
#: views/b2s/html/footer.php:257 views/b2s/html/footer.php:297
|
5656 |
#: views/b2s/html/footer.php:352 views/b2s/html/footer.php:391
|
5658 |
msgid "With Blog2Social Premium you can:"
|
5659 |
msgstr ""
|
5660 |
|
5661 |
+
#: views/b2s/html/header.php:633
|
5662 |
+
msgid ""
|
5663 |
+
"With Blog2Social Premium you have all the options you need to promote your "
|
5664 |
+
"content on your social media channels successfully and time-savingly."
|
5665 |
+
msgstr ""
|
5666 |
+
|
5667 |
#: views/b2s/network.php:706
|
5668 |
msgid ""
|
5669 |
"With Blog2Social you can connect up to 16 social media networks and share "
|
5705 |
"image for your link post without Twitter Card meta tags."
|
5706 |
msgstr ""
|
5707 |
|
5708 |
+
#: views/b2s/curation.php:354
|
5709 |
msgid ""
|
5710 |
"With Blog2Social you can share social media posts consisting of text, links, "
|
5711 |
"images, and videos automatically with your followers and readers and "
|
5712 |
"customize your posts with individual hashtags, @mentions, or emojis."
|
5713 |
msgstr ""
|
5714 |
|
5715 |
+
#: views/b2s/curation.php:224
|
5716 |
msgid ""
|
5717 |
"With Blog2Social you can share your WordPress posts and pages as well as "
|
5718 |
"create your own social media posts to share any content based on text, links,"
|
5744 |
"."
|
5745 |
msgstr ""
|
5746 |
|
5747 |
+
#: views/b2s/metrics.php:273
|
5748 |
msgid ""
|
5749 |
"With this function, you can compare the social media metrics for a period "
|
5750 |
"you choose by yourself and check whether the number of shared posts, "
|
5754 |
"the left and a comparison to the 3 days before on the right."
|
5755 |
msgstr ""
|
5756 |
|
5757 |
+
#: views/b2s/metrics.php:208
|
5758 |
msgid "WordPress posts, pages and products"
|
5759 |
msgstr ""
|
5760 |
|
5761 |
+
#: views/b2s/html/header.php:77
|
5762 |
msgid ""
|
5763 |
"WordPress session timeout: For security reasons, WordPress will let your "
|
5764 |
"session expire automatically if your site has been inactive for a while. <a "
|
5771 |
"heartbeats for using Blog2Social!"
|
5772 |
msgstr ""
|
5773 |
|
5774 |
+
#: views/b2s/html/header.php:66
|
5775 |
msgid ""
|
5776 |
"WordPress uses heartbeats by default, Blog2Social as well. Please enable "
|
5777 |
"heartbeats for using Blog2Social! See also:"
|
5781 |
msgid "Would you like to retweet?"
|
5782 |
msgstr ""
|
5783 |
|
5784 |
+
#: includes/B2S/Ship/Item.php:493 includes/B2S/Ship/Item.php:553
|
5785 |
+
#: includes/B2S/Ship/Item.php:613 includes/B2S/Ship/Item.php:672
|
5786 |
+
#: includes/B2S/Ship/Item.php:693 includes/B2S/Ship/Item.php:722
|
5787 |
+
#: includes/B2S/Ship/Item.php:750 includes/B2S/Ship/Item.php:778
|
5788 |
+
#: includes/B2S/Ship/Item.php:806 includes/B2S/Ship/Item.php:837
|
5789 |
+
#: includes/B2S/Ship/Item.php:892 includes/B2S/Ship/Item.php:943
|
5790 |
+
#: includes/B2S/Ship/Item.php:996 includes/B2S/Ship/Item.php:1017
|
5791 |
+
#: includes/B2S/Ship/Item.php:1038 includes/B2S/Ship/Item.php:1058
|
5792 |
+
#: includes/B2S/Ship/Item.php:1079 includes/B2S/Ship/Item.php:1089
|
5793 |
msgid "Write something about your post..."
|
5794 |
msgstr ""
|
5795 |
|
5796 |
+
#: views/b2s/curation.php:100 views/b2s/curation.php:114
|
5797 |
#: includes/B2S/Curation/View.php:23
|
5798 |
msgid "Write something..."
|
5799 |
msgstr ""
|
5800 |
|
5801 |
+
#: views/b2s/support.php:90
|
5802 |
msgid "Yay :) You successfully registered for the Blog2Social Community!"
|
5803 |
msgstr ""
|
5804 |
|
5805 |
+
#: views/b2s/curation.php:157 views/b2s/post.approve.php:121
|
5806 |
+
#: views/b2s/ship.php:496 views/b2s/ship.php:592
|
5807 |
msgid "YES"
|
5808 |
msgstr ""
|
5809 |
|
5810 |
+
#: views/b2s/curation.draft.php:91 views/b2s/metrics.php:183
|
5811 |
#: views/b2s/network.php:116 views/b2s/network.php:179
|
5812 |
+
#: views/b2s/post.approve.php:106 views/b2s/post.draft.php:95
|
5813 |
+
#: views/b2s/post.notice.php:96 views/b2s/post.publish.php:93
|
5814 |
+
#: views/b2s/post.sched.php:111 views/b2s/repost.php:114
|
5815 |
+
#: views/b2s/repost.php:115 views/b2s/widgets/posts.php:68
|
5816 |
msgid "YES, delete"
|
5817 |
msgstr ""
|
5818 |
|
5820 |
msgid "Yes, I accept"
|
5821 |
msgstr ""
|
5822 |
|
5823 |
+
#: views/b2s/html/header.php:286
|
5824 |
msgid "Yes, I want to test Blog2Social Premium 30 days for free"
|
5825 |
msgstr ""
|
5826 |
|
5827 |
+
#: views/b2s/html/header.php:327
|
5828 |
msgid "Yes, I want to upgrade to Blog2Social Premium"
|
5829 |
msgstr ""
|
5830 |
|
5840 |
msgid "You are signed out of PR-Gateway!"
|
5841 |
msgstr ""
|
5842 |
|
5843 |
+
#: views/b2s/metrics.php:176 views/b2s/post.notice.php:89
|
5844 |
+
#: views/b2s/post.publish.php:86 views/b2s/widgets/posts.php:61
|
5845 |
msgid "You are sure, you want to delete entries from the reporting?"
|
5846 |
msgstr ""
|
5847 |
|
5848 |
+
#: views/b2s/post.sched.php:104 views/b2s/repost.php:107
|
5849 |
msgid "You are sure, you want to delete entries from the scheduling?"
|
5850 |
msgstr ""
|
5851 |
|
5882 |
"editing the following fields for"
|
5883 |
msgstr ""
|
5884 |
|
5885 |
+
#: views/b2s/html/header.php:534 views/b2s/html/header.php:572
|
5886 |
msgid ""
|
5887 |
"You can now track the performance of your post directly in Blog2Social, and "
|
5888 |
"you can test it exclusively and for free!"
|
5889 |
msgstr ""
|
5890 |
|
5891 |
+
#: views/b2s/metrics.php:197
|
5892 |
msgid ""
|
5893 |
"You can now track the performance of your posts directly in Blog2Social, "
|
5894 |
"starting with Facebook and Twitter, as well as other networks to follow. And "
|
5895 |
"you can test it exclusively and for free!"
|
5896 |
msgstr ""
|
5897 |
|
5898 |
+
#: views/b2s/metrics.php:236
|
5899 |
msgid ""
|
5900 |
"You can now track the performance of your posts for Facebook and Twitter "
|
5901 |
"directly in Blog2Social. With these Social Media Metrics, you can analyze "
|
5910 |
"as you."
|
5911 |
msgstr ""
|
5912 |
|
5913 |
+
#: views/b2s/ship.php:322
|
5914 |
msgid ""
|
5915 |
"You can re-share your post for a different sharing purpose, or to share on a "
|
5916 |
"different choice of networks, profiles, pages or groups, or with different "
|
5924 |
"according to your current sharing preferences."
|
5925 |
msgstr ""
|
5926 |
|
5927 |
+
#: views/b2s/ship.php:356
|
5928 |
msgid ""
|
5929 |
"You can save your current network selection. This network selection will be "
|
5930 |
"loaded automatically next time you open the social media post editor via "
|
5938 |
"different sharing purposes."
|
5939 |
msgstr ""
|
5940 |
|
5941 |
+
#: views/b2s/curation.php:355
|
5942 |
msgid ""
|
5943 |
"You can select to share your post as a link post, video link post, or an "
|
5944 |
"image post on the following social networks:"
|
5945 |
msgstr ""
|
5946 |
|
5947 |
+
#: views/b2s/curation.php:280
|
5948 |
msgid "You can share a text post on the following networks:"
|
5949 |
msgstr ""
|
5950 |
|
5951 |
+
#: views/b2s/metrics.php:239
|
5952 |
msgid ""
|
5953 |
"You can track the following Social Media Metrics depending on the social "
|
5954 |
"networks:"
|
5968 |
"platforms in the <a href=\"%s\" target=\"_blank\">link shortener guide</a>."
|
5969 |
msgstr ""
|
5970 |
|
5971 |
+
#: views/b2s/html/header.php:115
|
5972 |
msgid ""
|
5973 |
"You currently have both Blog2Social Social Meta Tags and All in One SEO Pack "
|
5974 |
"plugins active. To make sure that your Social Meta Tags are set correctly, "
|
5984 |
msgid "You have already retweeted this post."
|
5985 |
msgstr ""
|
5986 |
|
5987 |
+
#: views/b2s/html/header.php:109
|
5988 |
msgid ""
|
5989 |
"You have both Yoast SEO and Blog2Social Meta Tags active. Please make sure "
|
5990 |
"that you use only one plugin to set social meta tags so that the networks "
|
5991 |
"can show the link preview of your post correctly."
|
5992 |
msgstr ""
|
5993 |
|
5994 |
+
#: views/b2s/html/header
|