Version Description
= 7.0.0 =
This is a major release. Please back up your site before upgrading.
= 6.0.0 =
This is a major release. Please back up your site before upgrading.
Download this release
Release Info
Developer | chriscct7 |
Plugin | Google Analytics for WordPress by MonsterInsights |
Version | 7.1.0 |
Comparing to | |
See all releases |
Code changes from version 7.0.9 to 7.1.0
- assets/css/admin-common.css +26 -18
- assets/css/admin-rtl.css +92 -0
- assets/css/admin-rtl.min.css +1 -0
- assets/css/admin.css +3 -3
- assets/css/admin.min.css +1 -1
- assets/js/admin.js +1 -1
- assets/js/frontend.js +2 -2
- assets/js/frontend.min.js +6 -6
- googleanalytics.php +2 -2
- includes/admin/common.php +63 -0
- includes/admin/reports/abstract-report.php +1 -1
- includes/admin/reports/overview.php +834 -713
- includes/admin/settings/register-settings.php +3 -3
- includes/admin/tracking.php +3 -0
- includes/frontend/tracking/class-tracking-analytics.php +1 -0
- includes/install.php +1 -1
- includes/options.php +1 -1
- languages/google-analytics-for-wordpress.pot +2667 -2634
- lite/assets/css/admin-dashboard-widget.css +332 -0
- lite/assets/css/admin-dashboard-widget.min.css +1 -0
- lite/assets/img/mi-dw-bg.png +0 -0
- lite/assets/img/mi-dw-cog@2x.png +0 -0
- lite/assets/js/admin-dashboard-widget.js +58 -0
- lite/assets/js/admin-dashboard-widget.min.js +1 -0
- lite/includes/admin/dashboard-widget.php +152 -0
- lite/includes/load.php +3 -0
- readme.txt +13 -1
assets/css/admin-common.css
CHANGED
@@ -1,48 +1,56 @@
|
|
1 |
#toplevel_page_monsterinsights_reports .wp-menu-image img,
|
2 |
#toplevel_page_monsterinsights_settings .wp-menu-image img,
|
3 |
-
#toplevel_page_monsterinsights_network .wp-menu-image img {
|
4 |
-
width: 18px;
|
5 |
height: 18px;
|
6 |
padding-top: 7px;
|
7 |
}
|
8 |
|
9 |
.monsterinsights-wooedd-upsell-left {
|
10 |
-
width:
|
11 |
-
|
12 |
-
|
13 |
}
|
|
|
14 |
.monsterinsights-wooedd-upsell-right {
|
15 |
-
width:
|
16 |
-
|
17 |
-
|
18 |
}
|
19 |
-
|
|
|
20 |
width: 100%;
|
21 |
height: auto;
|
22 |
padding: 20px;
|
23 |
}
|
24 |
-
|
|
|
25 |
display: none;
|
26 |
}
|
27 |
-
|
|
|
28 |
display: table;
|
29 |
}
|
|
|
30 |
.monsterinsights-wooedd-upsell-left p {
|
31 |
-
margin:
|
32 |
-
font-size:
|
33 |
-
|
34 |
}
|
35 |
-
|
|
|
36 |
.monsterinsights-wooedd-upsell-left {
|
37 |
-
width:
|
38 |
}
|
|
|
39 |
.monsterinsights-wooedd-upsell-right {
|
40 |
display: none;
|
41 |
}
|
42 |
-
|
|
|
43 |
display: block;
|
44 |
}
|
45 |
-
|
|
|
46 |
display: none;
|
47 |
}
|
48 |
}
|
1 |
#toplevel_page_monsterinsights_reports .wp-menu-image img,
|
2 |
#toplevel_page_monsterinsights_settings .wp-menu-image img,
|
3 |
+
#toplevel_page_monsterinsights_network .wp-menu-image img {
|
4 |
+
width: 18px;
|
5 |
height: 18px;
|
6 |
padding-top: 7px;
|
7 |
}
|
8 |
|
9 |
.monsterinsights-wooedd-upsell-left {
|
10 |
+
width: 50%;
|
11 |
+
display: table-cell;
|
12 |
+
float: left;
|
13 |
}
|
14 |
+
|
15 |
.monsterinsights-wooedd-upsell-right {
|
16 |
+
width: 50%;
|
17 |
+
display: table-cell;
|
18 |
+
float: left;
|
19 |
}
|
20 |
+
|
21 |
+
.monsterinsights-wooedd-upsell-image {
|
22 |
width: 100%;
|
23 |
height: auto;
|
24 |
padding: 20px;
|
25 |
}
|
26 |
+
|
27 |
+
.monsterinsights-wooedd-upsell-image-small {
|
28 |
display: none;
|
29 |
}
|
30 |
+
|
31 |
+
.monsterinsights-wooedd-upsell-row {
|
32 |
display: table;
|
33 |
}
|
34 |
+
|
35 |
.monsterinsights-wooedd-upsell-left p {
|
36 |
+
margin: 1em 0;
|
37 |
+
font-size: 16px;
|
|
|
38 |
}
|
39 |
+
|
40 |
+
@media (max-width: 900px) {
|
41 |
.monsterinsights-wooedd-upsell-left {
|
42 |
+
width: 100%;
|
43 |
}
|
44 |
+
|
45 |
.monsterinsights-wooedd-upsell-right {
|
46 |
display: none;
|
47 |
}
|
48 |
+
|
49 |
+
.monsterinsights-wooedd-upsell-image-small {
|
50 |
display: block;
|
51 |
}
|
52 |
+
|
53 |
+
.monsterinsights-wooedd-upsell-image-large {
|
54 |
display: none;
|
55 |
}
|
56 |
}
|
assets/css/admin-rtl.css
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body.monsterinsights-reporting-page {
|
2 |
+
direction: rtl;
|
3 |
+
text-align: right;
|
4 |
+
unicode-bidi: embed;
|
5 |
+
}
|
6 |
+
|
7 |
+
body.monsterinsights_page #wpcontent {
|
8 |
+
padding-right: 0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.monsterinsights-nav-item,
|
12 |
+
.monsterinsights-reports-action-bar-title,
|
13 |
+
body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,
|
14 |
+
body.monsterinsights-reporting-page .monsterinsights-user-icon,
|
15 |
+
body.monsterinsights-reporting-page .monsterinsights-eye-icon,
|
16 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev {
|
17 |
+
float: right;
|
18 |
+
}
|
19 |
+
|
20 |
+
.monsterinsights-reports-action-bar-actions,
|
21 |
+
.monsterinsights-header-mascot,
|
22 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare,
|
23 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip,
|
24 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,
|
25 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key,
|
26 |
+
body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number,
|
27 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-list-number {
|
28 |
+
float: left;
|
29 |
+
}
|
30 |
+
|
31 |
+
body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,
|
32 |
+
body.monsterinsights-reporting-page .monsterinsights-user-icon,
|
33 |
+
body.monsterinsights-reporting-page .monsterinsights-eye-icon {
|
34 |
+
text-align: right !important;
|
35 |
+
}
|
36 |
+
|
37 |
+
.monsterinsights-header-mascot {
|
38 |
+
left: 0;
|
39 |
+
margin-left: 20px;
|
40 |
+
margin-right: 0;
|
41 |
+
right: auto;
|
42 |
+
}
|
43 |
+
|
44 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip {
|
45 |
+
left: 7px;
|
46 |
+
right: auto;
|
47 |
+
text-align: right;
|
48 |
+
}
|
49 |
+
|
50 |
+
body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip {
|
51 |
+
left: 30px;
|
52 |
+
right: auto;
|
53 |
+
}
|
54 |
+
|
55 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip {
|
56 |
+
left: 20px;
|
57 |
+
right: auto;
|
58 |
+
}
|
59 |
+
|
60 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,
|
61 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key {
|
62 |
+
left: 50px;
|
63 |
+
right: auto;
|
64 |
+
}
|
65 |
+
|
66 |
+
body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number {
|
67 |
+
margin-left: 0;
|
68 |
+
margin-right: 30px;
|
69 |
+
}
|
70 |
+
|
71 |
+
#monsterinsights-report-top-page-list .monsterinsights-reports-list-text {
|
72 |
+
margin-left: 0;
|
73 |
+
margin-right: 25px;
|
74 |
+
}
|
75 |
+
|
76 |
+
.monsterinsights-bootstrap-container .btn-group > .btn, .monsterinsights-bootstrap-container .btn-group-vertical > .btn {
|
77 |
+
float: right;
|
78 |
+
}
|
79 |
+
|
80 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten {
|
81 |
+
border-radius: 0 4px 4px 0 !important;
|
82 |
+
margin-right: 20px;
|
83 |
+
}
|
84 |
+
|
85 |
+
body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty {
|
86 |
+
border-radius: 4px 0 0 4px !important;
|
87 |
+
margin-right: 0 !important;
|
88 |
+
}
|
89 |
+
|
90 |
+
.monsterinsights-header-title {
|
91 |
+
padding-right: 20px;
|
92 |
+
}
|
assets/css/admin-rtl.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
body.monsterinsights-reporting-page{direction:rtl;text-align:right;unicode-bidi:embed}body.monsterinsights_page #wpcontent{padding-right:0}.monsterinsights-nav-item,.monsterinsights-reports-action-bar-title,body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,body.monsterinsights-reporting-page .monsterinsights-user-icon,body.monsterinsights-reporting-page .monsterinsights-eye-icon,body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev{float:right}.monsterinsights-reports-action-bar-actions,.monsterinsights-header-mascot,body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare,body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip,body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key,body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number,body.monsterinsights-reporting-page .monsterinsights-reports-list-number{float:left}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a,body.monsterinsights-reporting-page .monsterinsights-user-icon,body.monsterinsights-reporting-page .monsterinsights-eye-icon{text-align:right !important}.monsterinsights-header-mascot{left:0;margin-left:20px;margin-right:0;right:auto}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip{left:7px;right:auto;text-align:right}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip{left:30px;right:auto}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip{left:20px;right:auto}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{left:50px;right:auto}body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number{margin-left:0;margin-right:30px}#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{margin-left:0;margin-right:25px}.monsterinsights-bootstrap-container .btn-group > .btn,.monsterinsights-bootstrap-container .btn-group-vertical > .btn{float:right}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten{border-radius:0 4px 4px 0 !important;margin-right:20px}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty{border-radius:4px 0 0 4px !important;margin-right:0 !important}.monsterinsights-header-title{padding-right:20px}
|
assets/css/admin.css
CHANGED
@@ -523,7 +523,7 @@
|
|
523 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(3) {border-left: 0;}
|
524 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(n+3) {border-top: 1px solid #d4e2ef;}
|
525 |
}
|
526 |
-
|
527 |
@media only screen and (max-width: 480px) {
|
528 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox {
|
529 |
padding: 15px;
|
@@ -534,8 +534,8 @@
|
|
534 |
border-top: 0;
|
535 |
}
|
536 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(even) {
|
537 |
-
border-left: 0;
|
538 |
-
}
|
539 |
}
|
540 |
|
541 |
|
523 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(3) {border-left: 0;}
|
524 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(n+3) {border-top: 1px solid #d4e2ef;}
|
525 |
}
|
526 |
+
|
527 |
@media only screen and (max-width: 480px) {
|
528 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox {
|
529 |
padding: 15px;
|
534 |
border-top: 0;
|
535 |
}
|
536 |
body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(even) {
|
537 |
+
border-left: 0;
|
538 |
+
}
|
539 |
}
|
540 |
|
541 |
|
assets/css/admin.min.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
@font-face{font-family:'Misettings';src:url('../fonts/icons.eot');src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'), url('../fonts/icons.woff2') format('woff2'),url('../fonts/icons.woff') format('woff'),url('../fonts/icons.ttf') format('truetype'),url('../fonts/icons.otf') format('opentype');font-weight:400;font-style:normal}body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:20px;margin-right:20px}body.monsterinsights_page .update-nag{margin-left:20px;margin-bottom:20px}body.monsterinsights_page #wpcontent{padding-left:0}body.monsterinsights_page div.wrap{margin:0 20px}body.monsterinsights_page #wpbody,body.monsterinsights_page #wpfooter,body.monsterinsights_page,body.monsterinsights_page #wpwrap{background-color:#fff}@media (max-width: 599px){body.monsterinsights_page #wpbody{padding-top:0}}.monsterinsights-grid{margin:0 0 50px}.monsterinsights-grid:after{content:"";display:table;clear:both}.monsterinsights-col-1-1{width:100%}.monsterinsights-col-7-8{width:87.5%}.monsterinsights-col-3-4{width:75%}.monsterinsights-col-2-3{width:66.66%}.monsterinsights-col-1-2{width:50%}.monsterinsights-col-1-3{width:33.33%}.monsterinsights-col-1-4{width:25%}.monsterinsights-col-1-8{width:12.5%}[class*="monsterinsights-col-"]{float:left;padding-right:20px;box-sizing:border-box}.monsterinsights-grid [class*="monsterinsights-col-"]:last-of-type{padding-right:0}.monsterinsights-hideme{display:none;visibility:hidden}.monsterinsights-no-text-decoration{text-decoration:none}.monsterinsights-required-indicator{color:#b94a48;display:inline}.monsterinsights-mega-blur{display:block;-webkit-filter:blur(20px);-moz-filter:blur(15px);-o-filter:blur(15px);-ms-filter:blur(15px);filter:blur(15px);opacity:0.95}.monsterinsights-clear{clear:both}.monsterinsights-clear:after{clear:both;content:'.';display:block;height:0;line-height:0;overflow:auto;visibility:hidden;zoom:1}.monsterinsights-clearfix{content:"";display:table;clear:both}.monsterinsights-clearfix-after:after{content:"";display:table;clear:both}.monsterinsights-help-tip{cursor:help}.monsterinsights-ui-tooltip{background:#eceff6 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#000 !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}body.monsterinsights_page .button{-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:0 16px 1px;height:33px;line-height:30px;text-decoration:none;text-shadow:none;font-weight:600;-webkit-box-shadow:none;box-shadow:none}body.monsterinsights_page .button.button-small{padding:0 8px 1px;line-height:22px;height:24px}body.monsterinsights_page .button.button-x-large{padding:0 32px 1px;line-height:48px;height:50px;font-size:18px;text-transform:uppercase}body.monsterinsights_page .button.show-settings{height:auto}body.monsterinsights_page .button.button-primary{background:#47c1a5;border-color:#3ca489;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #3ca489;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#47c1a5}body.monsterinsights_page .button.button-primary:hover{background:#3ba389;border-color:#3ba389;color:#fff}body.monsterinsights_page .button.button-action{background:#479be7;border-color:#4182bf;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #4182bf;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#479be7}body.monsterinsights_page .button.button-action:hover{background:#4183bf;border-color:#4183bf;color:#fff}body.monsterinsights_page .button.button-danger{background:#fff;border-color:#e3e9ed;-webkit-box-shadow:none;box-shadow:none;color:#000;border:1px solid #e3e9ed;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff}body.monsterinsights_page .button.button-danger:hover{background:#e3e9ed;border-color:#e3e9ed;color:#000}@media (min-width: 600px) and (max-width: 767px){body.monsterinsights_page .button{margin-top:10px}}body.monsterinsights_page .monsterinsights-action-button{align-items:flex-start;background-color:#eee;background-image:linear-gradient(#fcfcfc,#eee);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;box-sizing:border-box;color:#333;cursor:pointer;display:block;float:left;font-family:Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";font-size:13px;font-stretch:normal;font-style:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-weight:700;height:33.6px;letter-spacing:normal;line-height:20px;overflow-x:visible;overflow-y:visible;position:relative;text-align:center;text-indent:0;text-rendering:auto;text-shadow:none;text-size-adjust:100%;text-transform:none;user-select:none;vertical-align:middle;white-space:nowrap;word-spacing:0;writing-mode:horizontal-tb;-webkit-appearance:none;-webkit-border-image:none;border-color:#d5d5d5;border-radius:3px;border-style:solid;border-width:.8px;margin:0;padding:6px 12px}div.monsterinsights-code{position:relative;margin:0 0 10px}div.monsterinsights-code:after{content:"";display:table;clear:both}div.monsterinsights-code code{display:block;font-size:11px;padding:5px 20px 5px 5px}a.monsterinsights-clipboard{position:absolute;top:5px;right:5px;color:#23282d;width:33px;padding:0}a.monsterinsights-clipboard span{display:block;text-indent:-9999px}#monsterinsights-header-temp{position:relative;margin:0}#monsterinsights-header{background-color:#f3f5ff;background-image:url(images/waves.png);background-repeat:no-repeat;margin:0;height:119px}@media only screen and (min--moz-device-pixel-ratio: 2),only screen and (-o-min-device-pixel-ratio: 21),only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2){#monsterinsights-header{background-image:url(images/waves@x2.png);background-size:1356px 119px}}.monsterinsights-header-title{padding-top:50px;padding-left:20px;margin:0}.monsterinsights-header-mascot{float:right;position:absolute;top:0;right:0;margin-top:10px;margin-right:20px;z-index:100}@media (max-width: 610px){.monsterinsights-header-mascot{display:none}.monsterinsights-header-title{padding-top:70px}#monsterinsights-addon-heading form{margin-right:0}}.monsterinsights-notice{border:1px solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;box-sizing:border-box;display:table;width:100%;margin:10px 0px}.monsterinsights-notice:after{content:"";display:table;clear:both}.monsterinsights-notice-icon{padding:20px;box-sizing:border-box;width:60px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:center}.monsterinsights-notice-text{color:#434751;font-size:16px;font-weight:700;padding:20px;box-sizing:border-box;word-wrap:break-word;display:table-cell;position:relative;vertical-align:middle}body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:0;margin-right:0}.monsterinsights-notice .button{margin:0px 0px 1em 0px}.monsterinsights-notice-message{margin:0px}.monsterinsights-alert-notice-icon{background-color:#fdbf2f}.monsterinsights-alert-notice-icon:before{content:'\f017'}.monsterinsights-alert-notice{border-color:#fdbf2f;background-color:rgba(253,192,47,0.1)}.monsterinsights-error-notice-icon{background-color:#df4228}.monsterinsights-error-notice-icon:before{content:'\f014'}.monsterinsights-error-notice{border-color:#df4228;background-color:rgba(224,66,40,0.1)}.monsterinsights-info-notice-icon{background-color:#479be7}.monsterinsights-info-notice-icon:before{content:'\f016'}.monsterinsights-info-notice{border-color:#479be7;background-color:rgba(72,155,232,0.1)}.monsterinsights-success-notice-icon{background-color:#47c1a5}.monsterinsights-success-notice-icon:before{content:'\f015'}.monsterinsights-success-notice{border-color:#47c1a5;background-color:rgba(71,194,165,0.1)}.monsterinsights-notice p.monsterinsights-intro{border:none !important;margin:0 0 20px !important;padding:0 !important}.monsterinsights-notice .notice-dismiss{top:10px;right:10px;color:#000}.monsterinsights-notice .notice-dismiss:before{color:#000;width:26px;height:26px;font-size:22px}[class*='monstericon-']:before{display:inline-block;font-family:'Misettings';font-style:normal;font-weight:400;line-height:50px;padding-right:12px;padding-left:5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle;font-size:20px}[class*='monstericon-'].monsterinsights-active:before{color:#479be7}[class*='monstericon-']:active:before{color:#479be7}[class*='monstericon-']:hover:before{color:#479be7}.monstericon-ads:before{content:'\0041'}.monstericon-eucompliance:before{content:'\004f'}.monstericon-affiliates:before{content:'\0042'}.monstericon-compatibility:before{content:'\0043'}.monstericon-demographics:before{content:'\0044'}.monstericon-dimensions:before{content:'\0045'}.monstericon-files:before{content:'\0046'}.monstericon-ecommerce:before{content:'\0047'}.monstericon-engagement:before{content:'\0048'}.monstericon-forms:before{content:'\0049'}.monstericon-links:before{content:'\004a'}.monstericon-memberships:before{content:'\004b'}.monstericon-notifications:before{content:'\004c'}.monstericon-performance:before{content:'\004d'}.monstericon-permissions:before{content:'\004e'}.monstericon-reporting:before{content:'\004f'}.monstericon-social:before{content:'\0050'}.monstericon-media:before{content:'\0051'}.monstericon-amp:before{content:'\f000'}.monstericon-goptimize:before{content:'\f002'}.monstericon-fbia:before{content:'\f001'}.monstericon-bounce:before{content:'\0051'}.monsterinsights-upgrade-menu-icon{float:right;color:#7f8591;font-size:10px;font-weight:700;text-transform:uppercase;line-height:1;display:inline-block;padding:6px 12px;background-color:#fff;border-radius:3px;margin-right:18px;margin-top:15px}.monsterinsights-main-nav-item.monsterinsights-active .monsterinsights-upgrade-menu-icon,.monsterinsights-main-nav-item:hover .monsterinsights-upgrade-menu-icon{background-color:#f7f8fa}@media only screen and (max-width: 767px){[class*='monstericon-']:before{display:none !important;content:''}span.monsterinsights-upgrade-menu-icon{display:none}}.monsterinsights-nav-container{border:0;background-color:#615d9b;margin:0;display:table;width:100%}h1.monsterinsights-nav-container{padding:0px}.monsterinsights-main-nav-container{height:50px}.monsterinsights-sub-nav-container{display:table-cell;float:none;vertical-align:top;background-color:#f7f8fa;float:left;width:290px;margin:0;padding:0;border-left:1px solid #e4e9ee;border-top:1px solid #e4e9ee;border-bottom:1px solid #e4e9ee;border-right:1px solid #e4e9ee;border-collapse:collapse;border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-nav-item{border:none;float:left;text-decoration:none}.monsterinsights-nav-item:focus,.monsterinsights-nav-item:active{box-shadow:none}.monsterinsights-main-nav-item{background-color:#615d9b;color:#d8d7e4;background:none;line-height:50px;font-size:13px;padding:0 15px;margin:0;width:100px;text-align:center}.monsterinsights-main-nav-item.monsterinsights-spacing-item{width:5px;padding-left:0}.monsterinsights-main-nav-item.monsterinsights-active{color:#434751;opacity:1;background-color:#fff}#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:hover:not(.monsterinsights-active),#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:active:not(.monsterinsights-active){color:#fff;opacity:1}.monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){border-left:1px solid #8c8ab5}.monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border-right:1px solid #8c8ab5}.monsterinsights-main-nav-item.monsterinsights-active{border:0 !important}#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:focus:not(.monsterinsights-active):not(.monsterinsights-spacing-item){color:#fff}.monsterinsights-sub-nav-item{font-size:13px;background-color:#f7f8fa;font-weight:500;line-height:50px;width:100%;margin:0;padding:5px 15px 5px 15px;text-decoration:none;color:#7f8591;border-bottom:1px solid #e4e9ee;border-right:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:none;box-shadow:none;-webkit-box-shadow:none;-webkit-transition:none}.monsterinsights-sub-nav-item.monsterinsights-active,.monsterinsights-sub-nav-item:hover,.monsterinsights-sub-nav-item:active{border-right:1px solid #fff;background-color:#fff;color:#444851}.monsterinsights-sub-nav-area{display:flex}.monsterinsights-sub-nav-tabs{float:left;display:table-cell;float:none;vertical-align:top;background-color:#f7f8fa;border-top:1px solid #e4e9ee;border-right:1px solid #e4e9ee;border-bottom:1px solid #e4e9ee;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:none;box-shadow:none;-webkit-box-shadow:none;-webkit-transition:none;border-top-right-radius:3px;border-bottom-right-radius:3px;width:100%}.monsterinsights-nav-tab{display:none}.monsterinsights-nav-tab.monsterinsights-active{display:block}.monsterinsights-nav-tab .description{color:#7f8592;font-size:13px;margin-top:10px}.monsterinsights-main-nav-tab .form-table tr{border-bottom:1px solid #ddd}.monsterinsights-main-nav-tab .form-table tr.no-bottom-border{border-bottom:0}.monsterinsights-sub-nav-tab{margin:15px 0 20px}.monsterinsights-sub-nav-tab .form-table tr{border-bottom:1px solid #ddd}.monsterinsights-sub-nav-tab .form-table tr.no-bottom-border{border-bottom:0}.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-main-nav-tabs .form-table td{padding-top:40px;padding-bottom:40px}.monsterinsights-sub-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table td{padding-top:40px}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-right:0 !important}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-right:0}}@media (min-width: 600px) and (max-width: 767px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-bottom:10px;padding-right:0 !important}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-right:0}}@media only screen and (max-width: 610px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:20px;padding-bottom:10px;padding-right:0px}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-bottom:20px;padding-right:0px}.monsterinsights-main-nav-item{width:auto}.monsterinsights-main-nav-item.monsterinsights-spacing-item{display:none}h1.monsterinsights-nav-container{padding:0px;min-width:150px}.monsterinsights-sub-nav-tabs th{width:auto}}@media only screen and (max-width: 767px){.monsterinsights-sub-nav-container{width:100%}.monsterinsights-sub-nav-item{padding:0;text-align:center;width:100% !important;padding:0;text-align:center}.monsterinsights-sub-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table td{padding:10px 0 !important}h1.monsterinsights-nav-container{padding:0px}}div#monsterinsights-settings-sub-pages{padding-left:20px;background-color:#FFF;padding-right:20px}#monsterinsights-settings-pages{padding:20px 0}.monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}.monsterinsights-sub-nav-tabs label{margin-top:7px;display:block}#monsterinsights-settings-pages #monsterinsights-settings-submit{margin:40px 0 0 0px}#monsterinsights-settings-pages #monsterinsights-refresh-submit{margin-left:10px;vertical-align:baseline}input.monsterinsights-large-checkbox{zoom:1.5}#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email],#monsterinsights-settings-pages select,#monsterinsights-settings-pages textarea{width:350px;padding-right:0;font-size:13px;border-width:2px;border-radius:3px;border-color:#e4e9ee;box-shadow:none}#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email]{height:32px}@media (max-width: 767px){#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email],#monsterinsights-settings-pages select,#monsterinsights-settings-pages textarea{width:90% !important}#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email]{height:auto}}/** License Key Styles */@media (min-width: 768px) and (max-width: 991px){tr#monsterinsights-settings-key-box th{padding-top:20px}}@media (min-width: 600px) and (max-width: 767px){tr#monsterinsights-settings-key-box th{padding-top:20px}}.monsterinsights-upsell-under-box{background-color:#f6fbff;border:1px solid #d6ecff;border-radius:3px;padding:10px 20px;margin-top:30px}.monsterinsights-upsell-box{background-color:#f6fbff;border:1px solid #d6ecff;border-radius:3px;padding:10px 20px}a.monsterinsights-upsell-box-button.button.button-primary{margin-top:20px}.monsterinsights-no-settings-shown td{padding:5px 0px 0px 0px !important}.monsterinsights-no-settings-shown tr{border:none !important}#monsterinsights-settings-pages p.monsterinsights-upsell-button-par{margin-bottom:1em}.monsterinsights-upsell-lite-text{font-size:14px;margin-bottom:2px}body.monsterinsights-reporting-page #wpbody,body.monsterinsights-reporting-page #wpfooter,body.monsterinsights-reporting-page #wpcontent,body.monsterinsights-reporting-page #wpwrap{background-color:#f3f6ff}@media screen and (max-width: 772px){body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){width:100%;margin:0px;border-bottom:2px solid #fff}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border-bottom:2px solid #fff}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),.monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active{border:none !important}}.monsterinsights-reports-action-bar-title{font-size:24px;font-weight:700;float:left}.monsterinsights-reports-action-bar{margin-bottom:40px;margin-top:40px}.monsterinsights-reports-action-bar-actions{float:right}body.monsterinsights-reporting-page .monsterinsights-nav-container{background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-main-nav-item{background-color:#FFF;padding:0px;margin:0px 20px 0px 20px;width:auto;color:#7f8388;font-size:14px;font-weight:600}body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active{border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-spacing-item{width:20px}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){border:none}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border:none}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item){border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item){border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .container-fluid{padding:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .panel{background-color:#FFF;border:1px solid #d4e2ef;box-shadow:none;padding:0px;margin:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row{margin-top:15px}@media screen and (min-width: 782px){body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row:last-of-type{margin:15px 0px 20px}}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip{float:right;position:absolute;top:15px;right:7px;width:auto;box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:before{content:'\f01a';color:#c1def8}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:active:before{color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:hover:before{color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip{z-index:99999;background-color:#4c9ce4;border-radius:4px;padding:15px;box-shadow:0 0 24px rgba(89, 164, 234, 0.33);color:#fff;position:absolute;max-width:226px !important}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-title{border-bottom:1px solid #3583c8;padding-bottom:10px;font-size:14px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-content{font-size:14px;font-weight:400;line-height:20px;padding-top:10px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip{right:20px}.monsterinsights-upsell-card{margin-bottom:100px;background-image:url(../images/upsell/chart.png);background-size:cover;background-position-y:bottom;border:4px solid #489be8;position:relative;margin:.5rem 0 1rem 0;background-color:#fff;transition:box-shadow .25s;border-radius:2px}@media only screen and (min-width: 993px){.monsterinsights-upsell-card{z-index:4;margin-top:80px}}@media only screen and (max-width: 992px){.monsterinsights-upgrade-mascot{display:none}}.monsterinsights-upgrade-mascot{position:absolute;margin-top:-110px;margin-left:calc(50% - 71px);z-index:100}.monsterinsights-upsell-card-card-content{padding:24px;border-radius:0 0 2px 2px}.monsterinsights-upsell-card-title{font-weight:700;text-align:center;display:block;line-height:32px;margin-bottom:8px;font-size:24px}.monsterinsights-upsell-card-subtitle{text-align:center;text-transform:uppercase}.monsterinsights-upsell-card-action{position:relative;background-color:#ffffffac;text-align:center;border-top:1px solid rgba(160,160,160,0.2);padding:16px 24px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button{background-color:#489be8;color:#FFF !important;text-decoration:none;padding:0 3rem;position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;vertical-align:middle;z-index:1;transition:.3s ease-out;background-color:#489be8;color:white;text-decoration:none;padding:0 3rem;height:54px;line-height:54px;text-align:center;letter-spacing:.5px;border:none;border-radius:2px;outline:0;text-transform:uppercase;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button:hover{background-color:#6cbaf5}.monsterinsights-upsell-container{margin:0 auto;max-width:1280px;width:90%}@media only screen and (min-width: 993px){.monsterinsights-upsell-container{width:70%}}@media only screen and (min-width: 601px){.monsterinsights-upsell-container{width:85%}}body.monsterinsights-reporting-page .monsterinsights-overview-report-overview-graph-panel{border-top:0px !important}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title{background-color:#eceff6;border-top-left-radius:0px;border-top-right-radius:4px;color:#23282d;font-size:18px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a:focus{outline:none;box-shadow:none}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a{text-align:left !important;float:left;padding:20px;width:100%}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active){border-right:0px !important;border:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active):first-of-type{border-left:0px !important;border:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title.active{background-color:#fff;border-top:3px solid #4c9ce4;border-bottom:0px;border-right:0px;border-left:0px}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{border-top-left-radius:4px;border-top-right-radius:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus{border:none}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs > li > a{border:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:hover,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:focus{color:#23282d}@media screen and (max-width: 782px){body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{border-top-left-radius:4px;border-top-right-radius:4px}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:nth-of-type(2){border-top-left-radius:4;border-top-right-radius:0;border-left:0}}@media only screen and (max-width: 772px){body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){width:100%;margin:0px;border-bottom:2px solid #fff}}body.monsterinsights-reporting-page .monsterinsights-user-icon{box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left;float:left}body.monsterinsights-reporting-page .monsterinsights-user-icon:before{content:'\f018';color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-eye-icon{box-sizing:border-box;width:30px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left;float:left}body.monsterinsights-reporting-page .monsterinsights-eye-icon:before{content:'\f019';color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#FFF;border-radius:4px;box-shadow:0 0 24px rgba(89, 164, 234, 0.33);width:112px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}body.monsterinsights-reporting-page #monsterinsights-chartjs-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page .monsterinsights-overview-report-infobox-panel{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-infobox{padding:15px;border-left:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-left:0px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-title{color:#23282d;font-size:18px;font-weight:700;max-width:calc(100% - 22px)}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-number{color:#23282d;font-size:30px;font-weight:400;margin-top:20px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev{float:left;font-size:16px;font-weight:700;margin-top:20px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare{float:right;color:#a7d0f5;font-size:14px;font-weight:400;margin-top:20px}@media screen and (min-width: 992px) and (max-width: 1140px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox{height:165px}}@media screen and (max-width: 991px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(3){border-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(n+3){border-top:1px solid #d4e2ef}}@media only screen and (max-width: 480px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox{padding:15px;border-top:1px solid #d4e2ef;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-top:0}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(even){border-left:0}}} body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel{padding:15px;background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{color:#23282d;font-size:18px;font-weight:700;background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip{top:30px;right:30px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin-left:40px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key{float:right;position:absolute;bottom:20px;right:50px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{float:right;position:absolute;bottom:20px;right:50px}body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number{color:#23282d;font-size:20px;font-weight:400;margin-left:30px;float:right}body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-returning-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-devices-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page .monsterinsights-reports-country-flag{margin-right:10px;margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item:nth-child(2n+1){background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding{padding:0px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding .monsterinsights-reports-panel-title{padding:15px}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item{border:none;height:40px;height:auto}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group{box-shadow:none;margin-bottom:1px}body.monsterinsights-reporting-page .monsterinsights-reports-referral-icon{margin-right:10px;margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.monsterinsights-pie-chart-panel{background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-panel-title{margin-bottom:15px;padding-bottom:15px}@media only screen and (min-width: 992px){body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(1){padding-left:0}body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2){padding-right:0}}@media only screen and (min-width: 992px) and (max-width: 1165px){body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{display:block;position:inherit;float:none;margin-top:10px}}@media only screen and (max-width: 500px){body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{display:block;position:inherit;float:none;margin-top:10px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin:auto;float:none;display:block}}@media screen and (max-width: 992px){.monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2){margin-top:15px}}body.monsterinsights-reporting-page .monsterinsights-reports-1-column-row{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{padding:15px;border-top-left-radius:4px;border-top-right-radius:4px}body.monsterinsights-reporting-page .monsterinsights-reports-list-count{width:25px;color:#23282d;font-size:14px;font-weight:700;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-list-text{color:#23282d;font-size:14px;font-weight:400}body.monsterinsights-reporting-page .monsterinsights-reports-list-number{color:#23282d;font-size:14px;font-weight:400;float:right}body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer{color:#4c9ce4;border-radius:0px 0px 4px 4px;padding:20px 15px;font-size:14px;font-weight:400;clear:both;background:#f7f9ff;border-top:1px solid #d4e2ef;min-height:76px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{color:#4c9ce4;font-size:14px;font-weight:400;padding:8px 15px;background-color:white;border:1px solid #d4e2ef;border-radius:4px;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{background:#f7f9ff;border-top:1px solid #d4e2ef;min-height:76px}@media only screen and (max-width: 768px){body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{text-align:center}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{float:none;width:100%;text-align:center;margin-top:15px}}#monsterinsights-report-top-page-list .monsterinsights-reports-list-count{display:inline-block;top:10px;position:absolute}#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{max-width:85%;display:inline-block;margin-left:25px}@media only screen and (max-width: 480px){#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{max-width:80%}}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group{color:#4c9ce4;font-size:14px;font-weight:400;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default{background-color:#FFF;color:#4c9ce4;font-size:14px;font-weight:400;background-image:none;box-shadow:none;text-shadow:none;padding:3px 10px;opacity:1}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten{border-radius:4px 0px 0px 4px !important}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty{border-radius:0px 4px 4px 0px !important;margin-right:20px !important}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default.active{background-color:#4c9ce4;border:1px solid #6db0e9;color:#f7f7f7;box-shadow:none;text-shadow:none}.monsterinsights-data-row{width:100%;float:left;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#7f8591;padding:10px 15px}.monsterinsights-data-row .monsterinsights-col-7-8{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.monsterinsights-reports-box-datalist .monsterinsights-data-row:nth-child(odd){background-color:#f7f7f9}.monsterinsights-reports-box-title{background-color:#FFF;color:#7f8591;font-size:14px;font-weight:700;padding:20px;border-bottom:1px solid #e3e9ed;border-top-left-radius:5px;border-top-right-radius:5px}.monsterinsights-no-padding-right{padding-right:0}.monsterinsights-datalist-box-title{color:#7f8591;font-size:14px;font-weight:700;margin-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead th{padding:15px !important;color:#23282d;font-size:14px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead{border-top:1px solid #ddd}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr td{padding:15px !important;color:#23282d;font-size:14px;font-weight:400}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+1){background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table > thead > tr > th{border-bottom:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table{margin-bottom:0px}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+2){background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons,body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons{background-color:#f7f9ff !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel .monsterinsights-reports-data-table-thead{background-color:#fff}@media only screen and (max-width: 479px){.monsterinsights-bootstrap-container .table > thead > tr > th,.monsterinsights-bootstrap-container .table > tbody > tr > th,.monsterinsights-bootstrap-container .table > tfoot > tr > th,.monsterinsights-bootstrap-container .table > thead > tr > td,.monsterinsights-bootstrap-container .table > tbody > tr > td,.monsterinsights-bootstrap-container .table > tfoot > tr > td{display:block}}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-white-bg-panel{background-color:#FFF !important}#monsterinsights-tools-pages .monsterinsights-main-nav-tab{padding:30px 5px;margin:0px}#monsterinsights-tools-pages .monsterinsights-main-nav-tab .monsterinsights-upsell-under-box{margin-top:0px}.monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}#monsterinsights-tools-pages .form-table th,#monsterinsights-tools-pages .form-table td,#monsterinsights-tools-pages .form-table tr{padding:0px 0px 20px 0px;border:none}#monsterinsights-tools-pages .monsterinsights-nav-tab .description{margin-top:0px}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url],#monsterinsights-tools-pages textarea{width:350px;padding-right:0;font-size:13px;border-width:2px;border-radius:3px;border-color:#e4e9ee;box-shadow:none}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url]{height:32px}#monsterinsights-tools-pages textarea{height:100px}@media (max-width: 767px){#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"],#monsterinsights-tools-pages textarea{width:90% !important}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"]{height:auto}}@media screen and (max-width: 772px){.monsterinsights-reports-action-bar-actions{margin-top:20px;float:left;width:100%}.monsterinsights-pro-report-date-control-group .btn.btn-default{margin-bottom:15px;width:calc(50%)}.monsterinsights-bootstrap-container .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0;margin-right:0 !important}.monsterinsights-bootstrap-container .btn-group.monsterinsights-pro-report-date-control-group,.monsterinsights-bootstrap-container .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle;width:100%}.monsterinsights-pro-report-date-control-group .monsterinsights-pro-datepicker{width:100%;text-align:center}}#monsterinsights-related-resources-list{list-style-type:disc;padding-left:40px}@font-face{font-family:'monsterinsights';src:url(../fonts/monsterinsights.eot);src:url(../fonts/monsterinsights.eot?#iefix) format("embedded-opentype"),url(../fonts/monsterinsights.woff) format("woff"),url(../fonts/monsterinsights.ttf) format("truetype"),url(../fonts/monsterinsights.svg#monsterinsights) format("svg");font-weight:400;font-style:normal}#monsterinsights-addons [class*='monsterinsights-']:before{display:inline-block;font-family:'monsterinsights';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#monsterinsights-addons .monsterinsights-configuration:before{content:'\0041'}#monsterinsights-addons .monsterinsights-leaf:before{content:'\0042'}#monsterinsights-addons .monsterinsights-lightbox:before{content:'\0044'}#monsterinsights-addons .monsterinsights-misc:before{content:'\0045'}#monsterinsights-addons .monsterinsights-mobile:before{content:'\0046'}#monsterinsights-addons .monsterinsights-pagination:before{content:'\0047'}#monsterinsights-addons .monsterinsights-proofing:before{content:'\0048'}#monsterinsights-addons .monsterinsights-slideshow:before{content:'\0049'}#monsterinsights-addons .monsterinsights-tags:before{content:'\004a'}#monsterinsights-addons .monsterinsights-thumbnails:before{content:'\004b'}#monsterinsights-addons .monsterinsights-video:before{content:'\004c'}#monsterinsights-addons .monsterinsights-watermark:before{content:'\004d'}#monsterinsights-addons .monsterinsights-cloud-download:before{content:'\004e'}#monsterinsights-addons .monsterinsights-toggle-on:before{content:'\004f'}#monsterinsights-addons .monsterinsights-plus-circle:before{content:'\0050'}#monsterinsights-addons .monsterinsights-down-arrow:before{content:'\0051'}#monsterinsights-addons .monsterinsights-list:before{content:'\0052'}#monsterinsights-addons .monsterinsights-pinterest-p:before{content:'\0054'}#monsterinsights-addons .monsterinsights-pencil:before{content:'\0055'}#monsterinsights-addons .monsterinsights-close:before{content:'\0056'}#monsterinsights-addons .monsterinsights-check:before{content:'\0057'}body.monsterinsights_page .monsterinsights-addons-subheading{background-color:#fff;height:45px;margin-left:-20px}body.monsterinsights_page .monsterinsights-addons-subheading h1{font-size:20px;font-weight:400;line-height:45px;margin:0 0 0 20px;padding-left:20px}@media (min-width: 600px) and (max-width: 767px){body.monsterinsights_page .monsterinsights-addons-subheading{height:auto;padding-bottom:20px}}#monsterinsights-addon-heading:after{content:"";display:table;clear:both}#monsterinsights-addon-heading h1{float:left}#monsterinsights-addon-heading form{float:right;margin-right:100px}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addon-heading h1{float:none}}@media (max-width: 508px){#monsterinsights-addon-heading form{display:none}}@media (max-width: 600px){.monsterinsights-addon .interior{display:none !important}}#monsterinsights-addon-heading form input{border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px;background-color:#fff;color:#666;margin:7px 10px 0 5px;font-size:14px;padding:5px 8px}#monsterinsights-addon-heading form select{margin:-5px 20px 0 0}#monsterinsights-addon-heading form .spinner{float:none;margin:-3px auto auto}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addon-heading form{float:none;display:table;margin:10px auto 0}}#monsterinsights-addons{padding:0px}#monsterinsights-addons .button,#monsterinsights-addons .button-primary{text-shadow:none;background-color:#f7f7f7;color:#23282d;font-weight:600;border:1px solid #ccc;line-height:inherit;height:inherit;padding:5px 15px;box-shadow:none;cursor:pointer}#monsterinsights-addons .button:hover,#monsterinsights-addons .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-addons .monsterinsights-addon-action-button{padding-left:20px;padding-right:20px}#monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-cloud-download{font-size:19px;float:left;margin-right:8px;color:#8d8f92}#monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-toggle-on{font-size:19px;float:left;margin-right:8px;margin-top:1px;color:#7cc048}#monsterinsights-addons .monsterinsights-addon-upgrade-button{background-color:#7cc048;color:#fff;float:none !important;margin:0 auto;display:table;line-height:25px}#monsterinsights-addons .monsterinsights-addon-upgrade-button:hover{background-color:#95dc5e;color:#fff;border-color:#95dc5e}#monsterinsights-addons .monsterinsights-addon-action-button.monsterinsights-activate-addon .monsterinsights-toggle-on{color:#e92c21;-moz-transform:scaleX(-1);-o-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:FlipH}#monsterinsights-addons .monsterinsights-addon-title{margin-top:30px}#monsterinsights-addons .monsterinsights-addons-area:after{content:"";display:table;clear:both}#monsterinsights-addons .monsterinsights-addons-area.licensed{margin:20px 0 40px;padding:0 0 20px;border-bottom:1px solid #ddd}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{border:1px solid #ddd;position:relative;background:#fff;border-radius:3px;float:left;margin:0 2% 2% 0;min-height:465px;padding:0;text-align:center;width:32%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:both}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{min-height:420px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100% !important;min-height:525px}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100% !important;min-height:525px}}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:20px auto;max-width:100%}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{color:#2f2f2f;font-weight:400;padding:0 20px;display:table;margin:0 0 90px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{background:#f7f7f7;border-top:1px solid #ddd}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{position:absolute;bottom:0;float:left;width:100%;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin:0;padding:0;text-align:left}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior{padding:20px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior:after,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior:after{content:"";display:table;clear:both}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.addon-status{float:left;font-weight:700}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message a.button,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error a.button{float:right}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.monsterinsights-spinner,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.monsterinsights-spinner{position:absolute;bottom:15px;right:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action{display:inline;float:right}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-5px 0 0;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{bottom:10px;float:none;left:15px;right:20px;width:auto}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .xinterior{width:100%;margin:0;background:#fff;border-left:4px solid #dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p{padding:10px;margin:5px 10px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .wrap{margin:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .icon32{display:none}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error h2{padding:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table th{padding:10px 0;width:30% !important}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="text"],#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="password"]{width:100% !important}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p.submit{padding:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon p{color:#2f2f2f;font-size:13px;margin:10px 0 0;text-shadow:0 1px #fff}#monsterinsights-addons .monsterinsights-addons-area #monsterinsights-addons-unlock-more-area{margin:40px auto 20px;padding-bottom:0;border-bottom:0}#monsterinsights-addons-more-area .monsterinsights-addon .interior{padding:15px 20px !important}#monsterinsights-addons-refresh-addons-form{width:100%;max-width:850px;float:left}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons-refresh-addons-form{max-width:450px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons-refresh-addons-form{max-width:50%}#monsterinsights-addons-refresh-addons-form input.button{display:block}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons-refresh-addons-form{width:100%;float:none}#monsterinsights-addons-refresh-addons-form input.button{display:block}}#monsterinsights-filter-form{float:right}#monsterinsights-filter-form input[type='submit'],#monsterinsights-filter-form select{background-color:#f7f7f7;color:#23282d;border:1px solid #ddd;height:30px;width:120px;margin-top:-2px}#monsterinsights-filter-form input{padding:5px 15px;box-shadow:0;cursor:pointer;background-color:#f7f7f7;color:#23282d}#monsterinsights-filter-form input:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-filter-form .spinner{float:left}@media only screen and (max-width: 1050px){#monsterinsights-addons-area .monsterinsights-addon{width:49%}#monsterinsights-addons-area .monsterinsights-addon:nth-child(2n){margin-right:0}#monsterinsights-addons-area .monsterinsights-addon:nth-child(2n+1){clear:both}#monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:2%}#monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:none}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:90px}}@media only screen and (max-width: 782px){#monsterinsights-addons-area .monsterinsights-addon{min-height:auto}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-7px 0 0}}@media only screen and (max-width: 600px){#monsterinsights-addons-area .monsterinsights-addon{width:99%}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{float:left;width:100%}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status{display:block;width:100%;margin:0 0 5px;text-align:center}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action{clear:both;display:block;width:100%;text-align:center}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action .button-primary{clear:both;float:none;margin:0 auto}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:120px}}
|
1 |
+
@font-face{font-family:'Misettings';src:url('../fonts/icons.eot');src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'), url('../fonts/icons.woff2') format('woff2'),url('../fonts/icons.woff') format('woff'),url('../fonts/icons.ttf') format('truetype'),url('../fonts/icons.otf') format('opentype');font-weight:400;font-style:normal}body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:20px;margin-right:20px}body.monsterinsights_page .update-nag{margin-left:20px;margin-bottom:20px}body.monsterinsights_page #wpcontent{padding-left:0}body.monsterinsights_page div.wrap{margin:0 20px}body.monsterinsights_page #wpbody,body.monsterinsights_page #wpfooter,body.monsterinsights_page,body.monsterinsights_page #wpwrap{background-color:#fff}@media (max-width: 599px){body.monsterinsights_page #wpbody{padding-top:0}}.monsterinsights-grid{margin:0 0 50px}.monsterinsights-grid:after{content:"";display:table;clear:both}.monsterinsights-col-1-1{width:100%}.monsterinsights-col-7-8{width:87.5%}.monsterinsights-col-3-4{width:75%}.monsterinsights-col-2-3{width:66.66%}.monsterinsights-col-1-2{width:50%}.monsterinsights-col-1-3{width:33.33%}.monsterinsights-col-1-4{width:25%}.monsterinsights-col-1-8{width:12.5%}[class*="monsterinsights-col-"]{float:left;padding-right:20px;box-sizing:border-box}.monsterinsights-grid [class*="monsterinsights-col-"]:last-of-type{padding-right:0}.monsterinsights-hideme{display:none;visibility:hidden}.monsterinsights-no-text-decoration{text-decoration:none}.monsterinsights-required-indicator{color:#b94a48;display:inline}.monsterinsights-mega-blur{display:block;-webkit-filter:blur(20px);-moz-filter:blur(15px);-o-filter:blur(15px);-ms-filter:blur(15px);filter:blur(15px);opacity:0.95}.monsterinsights-clear{clear:both}.monsterinsights-clear:after{clear:both;content:'.';display:block;height:0;line-height:0;overflow:auto;visibility:hidden;zoom:1}.monsterinsights-clearfix{content:"";display:table;clear:both}.monsterinsights-clearfix-after:after{content:"";display:table;clear:both}.monsterinsights-help-tip{cursor:help}.monsterinsights-ui-tooltip{background:#eceff6 !important;border-width:1px !important;border-radius:3px !important;box-shadow:1px 1px 2px 1px rgba(214,214,214,0.5) !important;color:#000 !important;max-width:300px !important;padding:7px !important;text-rendering:optimizeLegibility;text-shadow:none !important;z-index:9999 !important}body.monsterinsights_page .button{-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px;border-radius:2px;padding:0 16px 1px;height:33px;line-height:30px;text-decoration:none;text-shadow:none;font-weight:600;-webkit-box-shadow:none;box-shadow:none}body.monsterinsights_page .button.button-small{padding:0 8px 1px;line-height:22px;height:24px}body.monsterinsights_page .button.button-x-large{padding:0 32px 1px;line-height:48px;height:50px;font-size:18px;text-transform:uppercase}body.monsterinsights_page .button.show-settings{height:auto}body.monsterinsights_page .button.button-primary{background:#47c1a5;border-color:#3ca489;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #3ca489;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#47c1a5}body.monsterinsights_page .button.button-primary:hover{background:#3ba389;border-color:#3ba389;color:#fff}body.monsterinsights_page .button.button-action{background:#479be7;border-color:#4182bf;-webkit-box-shadow:none;box-shadow:none;color:#fff;border:1px solid #4182bf;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#479be7}body.monsterinsights_page .button.button-action:hover{background:#4183bf;border-color:#4183bf;color:#fff}body.monsterinsights_page .button.button-danger{background:#fff;border-color:#e3e9ed;-webkit-box-shadow:none;box-shadow:none;color:#000;border:1px solid #e3e9ed;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;background-color:#fff}body.monsterinsights_page .button.button-danger:hover{background:#e3e9ed;border-color:#e3e9ed;color:#000}@media (min-width: 600px) and (max-width: 767px){body.monsterinsights_page .button{margin-top:10px}}body.monsterinsights_page .monsterinsights-action-button{align-items:flex-start;background-color:#eee;background-image:linear-gradient(#fcfcfc,#eee);border-image-outset:0;border-image-repeat:stretch;border-image-slice:100%;border-image-source:none;border-image-width:1;box-sizing:border-box;color:#333;cursor:pointer;display:block;float:left;font-family:Helvetica,arial,nimbussansl,liberationsans,freesans,clean,sans-serif,"Segoe UI Emoji","Segoe UI Symbol";font-size:13px;font-stretch:normal;font-style:normal;font-variant-caps:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-weight:700;height:33.6px;letter-spacing:normal;line-height:20px;overflow-x:visible;overflow-y:visible;position:relative;text-align:center;text-indent:0;text-rendering:auto;text-shadow:none;text-size-adjust:100%;text-transform:none;user-select:none;vertical-align:middle;white-space:nowrap;word-spacing:0;writing-mode:horizontal-tb;-webkit-appearance:none;-webkit-border-image:none;border-color:#d5d5d5;border-radius:3px;border-style:solid;border-width:.8px;margin:0;padding:6px 12px}div.monsterinsights-code{position:relative;margin:0 0 10px}div.monsterinsights-code:after{content:"";display:table;clear:both}div.monsterinsights-code code{display:block;font-size:11px;padding:5px 20px 5px 5px}a.monsterinsights-clipboard{position:absolute;top:5px;right:5px;color:#23282d;width:33px;padding:0}a.monsterinsights-clipboard span{display:block;text-indent:-9999px}#monsterinsights-header-temp{position:relative;margin:0}#monsterinsights-header{background-color:#f3f5ff;background-image:url(images/waves.png);background-repeat:no-repeat;margin:0;height:119px}@media only screen and (min--moz-device-pixel-ratio: 2),only screen and (-o-min-device-pixel-ratio: 21),only screen and (-webkit-min-device-pixel-ratio: 2),only screen and (min-device-pixel-ratio: 2){#monsterinsights-header{background-image:url(images/waves@x2.png);background-size:1356px 119px}}.monsterinsights-header-title{padding-top:50px;padding-left:20px;margin:0}.monsterinsights-header-mascot{float:right;position:absolute;top:0;right:0;margin-top:10px;margin-right:20px;z-index:100}@media (max-width: 610px){.monsterinsights-header-mascot{display:none}.monsterinsights-header-title{padding-top:70px}#monsterinsights-addon-heading form{margin-right:0}}.monsterinsights-notice{border:1px solid;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;box-sizing:border-box;display:table;width:100%;margin:10px 0px}.monsterinsights-notice:after{content:"";display:table;clear:both}.monsterinsights-notice-icon{padding:20px;box-sizing:border-box;width:60px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:center}.monsterinsights-notice-text{color:#434751;font-size:16px;font-weight:700;padding:20px;box-sizing:border-box;word-wrap:break-word;display:table-cell;position:relative;vertical-align:middle}body.monsterinsights_page div.wrap > div.error,body.monsterinsights_page div.wrap > div.notice,body.monsterinsights_page div.wrap > div.updated{margin-left:0;margin-right:0}.monsterinsights-notice .button{margin:0px 0px 1em 0px}.monsterinsights-notice-message{margin:0px}.monsterinsights-alert-notice-icon{background-color:#fdbf2f}.monsterinsights-alert-notice-icon:before{content:'\f017'}.monsterinsights-alert-notice{border-color:#fdbf2f;background-color:rgba(253,192,47,0.1)}.monsterinsights-error-notice-icon{background-color:#df4228}.monsterinsights-error-notice-icon:before{content:'\f014'}.monsterinsights-error-notice{border-color:#df4228;background-color:rgba(224,66,40,0.1)}.monsterinsights-info-notice-icon{background-color:#479be7}.monsterinsights-info-notice-icon:before{content:'\f016'}.monsterinsights-info-notice{border-color:#479be7;background-color:rgba(72,155,232,0.1)}.monsterinsights-success-notice-icon{background-color:#47c1a5}.monsterinsights-success-notice-icon:before{content:'\f015'}.monsterinsights-success-notice{border-color:#47c1a5;background-color:rgba(71,194,165,0.1)}.monsterinsights-notice p.monsterinsights-intro{border:none !important;margin:0 0 20px !important;padding:0 !important}.monsterinsights-notice .notice-dismiss{top:10px;right:10px;color:#000}.monsterinsights-notice .notice-dismiss:before{color:#000;width:26px;height:26px;font-size:22px}[class*='monstericon-']:before{display:inline-block;font-family:'Misettings';font-style:normal;font-weight:400;line-height:50px;padding-right:12px;padding-left:5px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:middle;font-size:20px}[class*='monstericon-'].monsterinsights-active:before{color:#479be7}[class*='monstericon-']:active:before{color:#479be7}[class*='monstericon-']:hover:before{color:#479be7}.monstericon-ads:before{content:'\0041'}.monstericon-eucompliance:before{content:'\004f'}.monstericon-affiliates:before{content:'\0042'}.monstericon-compatibility:before{content:'\0043'}.monstericon-demographics:before{content:'\0044'}.monstericon-dimensions:before{content:'\0045'}.monstericon-files:before{content:'\0046'}.monstericon-ecommerce:before{content:'\0047'}.monstericon-engagement:before{content:'\0048'}.monstericon-forms:before{content:'\0049'}.monstericon-links:before{content:'\004a'}.monstericon-memberships:before{content:'\004b'}.monstericon-notifications:before{content:'\004c'}.monstericon-performance:before{content:'\004d'}.monstericon-permissions:before{content:'\004e'}.monstericon-reporting:before{content:'\004f'}.monstericon-social:before{content:'\0050'}.monstericon-media:before{content:'\0051'}.monstericon-amp:before{content:'\f000'}.monstericon-goptimize:before{content:'\f002'}.monstericon-fbia:before{content:'\f001'}.monstericon-bounce:before{content:'\0051'}.monsterinsights-upgrade-menu-icon{float:right;color:#7f8591;font-size:10px;font-weight:700;text-transform:uppercase;line-height:1;display:inline-block;padding:6px 12px;background-color:#fff;border-radius:3px;margin-right:18px;margin-top:15px}.monsterinsights-main-nav-item.monsterinsights-active .monsterinsights-upgrade-menu-icon,.monsterinsights-main-nav-item:hover .monsterinsights-upgrade-menu-icon{background-color:#f7f8fa}@media only screen and (max-width: 767px){[class*='monstericon-']:before{display:none !important;content:''}span.monsterinsights-upgrade-menu-icon{display:none}}.monsterinsights-nav-container{border:0;background-color:#615d9b;margin:0;display:table;width:100%}h1.monsterinsights-nav-container{padding:0px}.monsterinsights-main-nav-container{height:50px}.monsterinsights-sub-nav-container{display:table-cell;float:none;vertical-align:top;background-color:#f7f8fa;float:left;width:290px;margin:0;padding:0;border-left:1px solid #e4e9ee;border-top:1px solid #e4e9ee;border-bottom:1px solid #e4e9ee;border-right:1px solid #e4e9ee;border-collapse:collapse;border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-nav-item{border:none;float:left;text-decoration:none}.monsterinsights-nav-item:focus,.monsterinsights-nav-item:active{box-shadow:none}.monsterinsights-main-nav-item{background-color:#615d9b;color:#d8d7e4;background:none;line-height:50px;font-size:13px;padding:0 15px;margin:0;width:100px;text-align:center}.monsterinsights-main-nav-item.monsterinsights-spacing-item{width:5px;padding-left:0}.monsterinsights-main-nav-item.monsterinsights-active{color:#434751;opacity:1;background-color:#fff}#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:hover:not(.monsterinsights-active),#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:active:not(.monsterinsights-active){color:#fff;opacity:1}.monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){border-left:1px solid #8c8ab5}.monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border-right:1px solid #8c8ab5}.monsterinsights-main-nav-item.monsterinsights-active{border:0 !important}#monsterinsights-settings-page-main-nav .monsterinsights-main-nav-item:focus:not(.monsterinsights-active):not(.monsterinsights-spacing-item){color:#fff}.monsterinsights-sub-nav-item{font-size:13px;background-color:#f7f8fa;font-weight:500;line-height:50px;width:100%;margin:0;padding:5px 15px 5px 15px;text-decoration:none;color:#7f8591;border-bottom:1px solid #e4e9ee;border-right:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:none;box-shadow:none;-webkit-box-shadow:none;-webkit-transition:none}.monsterinsights-sub-nav-item.monsterinsights-active,.monsterinsights-sub-nav-item:hover,.monsterinsights-sub-nav-item:active{border-right:1px solid #fff;background-color:#fff;color:#444851}.monsterinsights-sub-nav-area{display:flex}.monsterinsights-sub-nav-tabs{float:left;display:table-cell;float:none;vertical-align:top;background-color:#f7f8fa;border-top:1px solid #e4e9ee;border-right:1px solid #e4e9ee;border-bottom:1px solid #e4e9ee;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:none;box-shadow:none;-webkit-box-shadow:none;-webkit-transition:none;border-top-right-radius:3px;border-bottom-right-radius:3px;width:100%}.monsterinsights-nav-tab{display:none}.monsterinsights-nav-tab.monsterinsights-active{display:block}.monsterinsights-nav-tab .description{color:#7f8592;font-size:13px;margin-top:10px}.monsterinsights-main-nav-tab .form-table tr{border-bottom:1px solid #ddd}.monsterinsights-main-nav-tab .form-table tr.no-bottom-border{border-bottom:0}.monsterinsights-sub-nav-tab{margin:15px 0 20px}.monsterinsights-sub-nav-tab .form-table tr{border-bottom:1px solid #ddd}.monsterinsights-sub-nav-tab .form-table tr.no-bottom-border{border-bottom:0}.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-main-nav-tabs .form-table td{padding-top:40px;padding-bottom:40px}.monsterinsights-sub-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table td{padding-top:40px}@media (min-width: 768px) and (max-width: 991px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-right:0 !important}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-right:0}}@media (min-width: 600px) and (max-width: 767px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:40px;padding-bottom:10px;padding-right:0 !important}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-right:0}}@media only screen and (max-width: 610px){.monsterinsights-main-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table th{padding-top:20px;padding-bottom:10px;padding-right:0px}.monsterinsights-main-nav-tabs .form-table td,.monsterinsights-sub-nav-tabs .form-table td{padding-top:0;padding-bottom:20px;padding-right:0px}.monsterinsights-main-nav-item{width:auto}.monsterinsights-main-nav-item.monsterinsights-spacing-item{display:none}h1.monsterinsights-nav-container{padding:0px;min-width:150px}.monsterinsights-sub-nav-tabs th{width:auto}}@media only screen and (max-width: 767px){.monsterinsights-sub-nav-container{width:100%}.monsterinsights-sub-nav-item{padding:0;text-align:center;width:100% !important;padding:0;text-align:center}.monsterinsights-sub-nav-tabs .form-table th,.monsterinsights-sub-nav-tabs .form-table td{padding:10px 0 !important}h1.monsterinsights-nav-container{padding:0px}}div#monsterinsights-settings-sub-pages{padding-left:20px;background-color:#FFF;padding-right:20px}#monsterinsights-settings-pages{padding:20px 0}.monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}.monsterinsights-sub-nav-tabs label{margin-top:7px;display:block}#monsterinsights-settings-pages #monsterinsights-settings-submit{margin:40px 0 0 0px}#monsterinsights-settings-pages #monsterinsights-refresh-submit{margin-left:10px;vertical-align:baseline}input.monsterinsights-large-checkbox{zoom:1.5}#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email],#monsterinsights-settings-pages select,#monsterinsights-settings-pages textarea{width:350px;padding-right:0;font-size:13px;border-width:2px;border-radius:3px;border-color:#e4e9ee;box-shadow:none}#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email]{height:32px}@media (max-width: 767px){#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email],#monsterinsights-settings-pages select,#monsterinsights-settings-pages textarea{width:90% !important}#monsterinsights-settings-pages input[type="text"],#monsterinsights-settings-pages input[type="number"],#monsterinsights-settings-pages input[type="password"],#monsterinsights-settings-pages input[type=email]{height:auto}}/** License Key Styles */@media (min-width: 768px) and (max-width: 991px){tr#monsterinsights-settings-key-box th{padding-top:20px}}@media (min-width: 600px) and (max-width: 767px){tr#monsterinsights-settings-key-box th{padding-top:20px}}.monsterinsights-upsell-under-box{background-color:#f6fbff;border:1px solid #d6ecff;border-radius:3px;padding:10px 20px;margin-top:30px}.monsterinsights-upsell-box{background-color:#f6fbff;border:1px solid #d6ecff;border-radius:3px;padding:10px 20px}a.monsterinsights-upsell-box-button.button.button-primary{margin-top:20px}.monsterinsights-no-settings-shown td{padding:5px 0px 0px 0px !important}.monsterinsights-no-settings-shown tr{border:none !important}#monsterinsights-settings-pages p.monsterinsights-upsell-button-par{margin-bottom:1em}.monsterinsights-upsell-lite-text{font-size:14px;margin-bottom:2px}body.monsterinsights-reporting-page #wpbody,body.monsterinsights-reporting-page #wpfooter,body.monsterinsights-reporting-page #wpcontent,body.monsterinsights-reporting-page #wpwrap{background-color:#f3f6ff}@media screen and (max-width: 772px){body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){width:100%;margin:0px;border-bottom:2px solid #fff}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border-bottom:2px solid #fff}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),.monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active{border:none !important}}.monsterinsights-reports-action-bar-title{font-size:24px;font-weight:700;float:left}.monsterinsights-reports-action-bar{margin-bottom:40px;margin-top:40px}.monsterinsights-reports-action-bar-actions{float:right}body.monsterinsights-reporting-page .monsterinsights-nav-container{background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-main-nav-item{background-color:#FFF;padding:0px;margin:0px 20px 0px 20px;width:auto;color:#7f8388;font-size:14px;font-weight:600}body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-active{border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-main-nav-item.monsterinsights-spacing-item{width:20px}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){border:none}body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:last-child:not(.monsterinsights-active){border:none}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item){border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-main-nav-item:hover:not(.monsterinsights-active):not(.monsterinsights-spacing-item),body.monsterinsights-reporting-page .monsterinsights-main-nav-item:active:not(.monsterinsights-active):not(.monsterinsights-spacing-item){border-bottom:2px solid #489be8 !important;color:#489be8}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .container-fluid{padding:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .panel{background-color:#FFF;border:1px solid #d4e2ef;box-shadow:none;padding:0px;margin:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row{margin-top:15px}@media screen and (min-width: 782px){body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .row:last-of-type{margin:15px 0px 20px}}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip{float:right;position:absolute;top:15px;right:7px;width:auto;box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:before{content:'\f01a';color:#c1def8}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:active:before{color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-uright-tooltip:hover:before{color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip{z-index:99999;background-color:#4c9ce4;border-radius:4px;padding:15px;box-shadow:0 0 24px rgba(89, 164, 234, 0.33);color:#fff;position:absolute;max-width:226px !important}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-title{border-bottom:1px solid #3583c8;padding-bottom:10px;font-size:14px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-ui-tooltip .monsterinsights-reports-tooltip-content{font-size:14px;font-weight:400;line-height:20px;padding-top:10px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-item .monsterinsights-reports-uright-tooltip{right:20px}.monsterinsights-upsell-card{margin-bottom:100px;background-image:url(../images/upsell/chart.png);background-size:cover;background-position-y:bottom;border:4px solid #489be8;position:relative;margin:.5rem 0 1rem 0;background-color:#fff;transition:box-shadow .25s;border-radius:2px}@media only screen and (min-width: 993px){.monsterinsights-upsell-card{z-index:4;margin-top:80px}}@media only screen and (max-width: 992px){.monsterinsights-upgrade-mascot{display:none}}.monsterinsights-upgrade-mascot{position:absolute;margin-top:-110px;margin-left:calc(50% - 71px);z-index:100}.monsterinsights-upsell-card-card-content{padding:24px;border-radius:0 0 2px 2px}.monsterinsights-upsell-card-title{font-weight:700;text-align:center;display:block;line-height:32px;margin-bottom:8px;font-size:24px}.monsterinsights-upsell-card-subtitle{text-align:center;text-transform:uppercase}.monsterinsights-upsell-card-action{position:relative;background-color:#ffffffac;text-align:center;border-top:1px solid rgba(160,160,160,0.2);padding:16px 24px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button{background-color:#489be8;color:#FFF !important;text-decoration:none;padding:0 3rem;position:relative;cursor:pointer;display:inline-block;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;vertical-align:middle;z-index:1;transition:.3s ease-out;background-color:#489be8;color:white;text-decoration:none;padding:0 3rem;height:54px;line-height:54px;text-align:center;letter-spacing:.5px;border:none;border-radius:2px;outline:0;text-transform:uppercase;box-shadow:0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2);text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-upsell-card-action a.monsterinsights-upsell-card-button:hover{background-color:#6cbaf5}.monsterinsights-upsell-container{margin:0 auto;max-width:1280px;width:90%}@media only screen and (min-width: 993px){.monsterinsights-upsell-container{width:70%}}@media only screen and (min-width: 601px){.monsterinsights-upsell-container{width:85%}}body.monsterinsights-reporting-page .monsterinsights-overview-report-overview-graph-panel{border-top:0px !important}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title{background-color:#eceff6;border-top-left-radius:0px;border-top-right-radius:4px;color:#23282d;font-size:18px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a:focus{outline:none;box-shadow:none}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title a{text-align:left !important;float:left;padding:20px;width:100%}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active){border-right:0px !important;border:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:not(.active):first-of-type{border-left:0px !important;border:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title.active{background-color:#fff;border-top:3px solid #4c9ce4;border-bottom:0px;border-right:0px;border-left:0px}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{border-top-left-radius:4px;border-top-right-radius:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:hover,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs.nav-justified > .active > a:focus{border:none}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .nav-tabs > li > a{border:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:hover,body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a:focus{color:#23282d}@media screen and (max-width: 782px){body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:first-of-type{border-top-left-radius:4px;border-top-right-radius:4px}body.monsterinsights-reporting-page .monsterinsights-tabbed-nav-tab-title:nth-of-type(2){border-top-left-radius:4;border-top-right-radius:0;border-left:0}}@media only screen and (max-width: 772px){body.monsterinsights-reporting-page a.monsterinsights-main-nav-item.monsterinsights-nav-item,body.monsterinsights-reporting-page .monsterinsights-main-nav-container > .monsterinsights-main-nav-item:not(.monsterinsights-active) + a.monsterinsights-main-nav-item:not(.monsterinsights-active){width:100%;margin:0px;border-bottom:2px solid #fff}}body.monsterinsights-reporting-page .monsterinsights-user-icon{box-sizing:border-box;width:25px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left;float:left}body.monsterinsights-reporting-page .monsterinsights-user-icon:before{content:'\f018';color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-eye-icon{box-sizing:border-box;width:30px;color:#fff;font-family:"Misettings";font-size:18px;-moz-border-radius:5px 0 0;-webkit-border-radius:5px 0 0;border-radius:5px 0 0;-moz-background-clip:padding;-webkit-background-clip:padding-box;background-clip:padding-box;display:table-cell;vertical-align:middle;text-align:left;float:left}body.monsterinsights-reporting-page .monsterinsights-eye-icon:before{content:'\f019';color:#4c9ce4}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#FFF;border-radius:4px;box-shadow:0 0 24px rgba(89, 164, 234, 0.33);width:112px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}body.monsterinsights-reporting-page #monsterinsights-chartjs-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page .monsterinsights-overview-report-infobox-panel{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-infobox{padding:15px;border-left:1px solid #d4e2ef}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-left:0px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-title{color:#23282d;font-size:18px;font-weight:700;max-width:calc(100% - 22px)}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-number{color:#23282d;font-size:30px;font-weight:400;margin-top:20px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-prev{float:left;font-size:16px;font-weight:700;margin-top:20px}body.monsterinsights-reporting-page .monsterinsights-reports-infobox-compare{float:right;color:#a7d0f5;font-size:14px;font-weight:400;margin-top:20px}@media screen and (min-width: 992px) and (max-width: 1140px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox{height:165px}}@media screen and (max-width: 991px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(3){border-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(n+3){border-top:1px solid #d4e2ef}}@media only screen and (max-width: 480px){body.monsterinsights-reporting-page .monsterinsights-reports-infobox{padding:15px;border-top:1px solid #d4e2ef;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:first-of-type{border-top:0}body.monsterinsights-reporting-page .monsterinsights-reports-infobox:nth-of-type(even){border-left:0}}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel{padding:15px;background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{color:#23282d;font-size:18px;font-weight:700;background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-uright-tooltip{top:30px;right:30px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin-left:40px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key{float:right;position:absolute;bottom:20px;right:50px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{float:right;position:absolute;bottom:20px;right:50px}body.monsterinsights-reporting-page .monsterinsights-pie-chart-legend-number{color:#23282d;font-size:20px;font-weight:400;margin-left:30px;float:right}body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-returning-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page #monsterinsights-chartjs-pie-devices-tooltip{opacity:1;position:absolute}body.monsterinsights-reporting-page .monsterinsights-reports-country-flag{margin-right:10px;margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item:nth-child(2n+1){background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding{padding:0px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.nopadding .monsterinsights-reports-panel-title{padding:15px}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group-item{border:none;height:40px;height:auto}body.monsterinsights-reporting-page .monsterinsights-reports-list .list-group{box-shadow:none;margin-bottom:1px}body.monsterinsights-reporting-page .monsterinsights-reports-referral-icon{margin-right:10px;margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel.monsterinsights-pie-chart-panel{background-color:#FFF}body.monsterinsights-reporting-page .monsterinsights-pie-chart-panel .monsterinsights-reports-panel-title{margin-bottom:15px;padding-bottom:15px}@media only screen and (min-width: 992px){body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(1){padding-left:0}body.monsterinsights-reporting-page #monsterinsights-main-tab-ecommerce .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2){padding-right:0}}@media only screen and (min-width: 992px) and (max-width: 1165px){body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{display:block;position:inherit;float:none;margin-top:10px}}@media only screen and (max-width: 500px){body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph-key,body.monsterinsights-reporting-page .monsterinsights-reports-pie-visitors-graph-key{display:block;position:inherit;float:none;margin-top:10px}body.monsterinsights-reporting-page .monsterinsights-reports-pie-graph{margin:auto;float:none;display:block}}@media screen and (max-width: 992px){.monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item:nth-of-type(2){margin-top:15px}}body.monsterinsights-reporting-page .monsterinsights-reports-1-column-row{margin-top:15px !important}body.monsterinsights-reporting-page .monsterinsights-reports-panel-title{padding:15px;border-top-left-radius:4px;border-top-right-radius:4px}body.monsterinsights-reporting-page .monsterinsights-reports-list-count{width:25px;color:#23282d;font-size:14px;font-weight:700;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-list-text{color:#23282d;font-size:14px;font-weight:400}body.monsterinsights-reporting-page .monsterinsights-reports-list-number{color:#23282d;font-size:14px;font-weight:400;float:right}body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer{color:#4c9ce4;border-radius:0px 0px 4px 4px;padding:20px 15px;font-size:14px;font-weight:400;clear:both;background:#f7f9ff;border-top:1px solid #d4e2ef;min-height:76px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{color:#4c9ce4;font-size:14px;font-weight:400;padding:8px 15px;background-color:white;border:1px solid #d4e2ef;border-radius:4px;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{background:#f7f9ff;border-top:1px solid #d4e2ef;min-height:76px}@media only screen and (max-width: 768px){body.monsterinsights-reporting-page .monsterinsights-reports-panel-footer.monsterinsights-reports-panel-footer-large{text-align:center}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container a.monsterinsights-reports-panel-footer-button{float:none;width:100%;text-align:center;margin-top:15px}}#monsterinsights-report-top-page-list .monsterinsights-reports-list-count{display:inline-block;top:10px;position:absolute}#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{max-width:85%;display:inline-block;margin-left:25px}@media only screen and (max-width: 480px){#monsterinsights-report-top-page-list .monsterinsights-reports-list-text{max-width:80%}}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group{color:#4c9ce4;font-size:14px;font-weight:400;display:inline-block}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default{background-color:#FFF;color:#4c9ce4;font-size:14px;font-weight:400;background-image:none;box-shadow:none;text-shadow:none;padding:3px 10px;opacity:1}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.ten{border-radius:4px 0px 0px 4px !important}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.fifty{border-radius:0px 4px 4px 0px !important;margin-right:20px !important}body.monsterinsights-reporting-page .monsterinsights-reports-show-selector-group .monsterinsights-reports-show-selector-button.btn.btn-default.active{background-color:#4c9ce4;border:1px solid #6db0e9;color:#f7f7f7;box-shadow:none;text-shadow:none}.monsterinsights-data-row{width:100%;float:left;box-sizing:border-box;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;color:#7f8591;padding:10px 15px}.monsterinsights-data-row .monsterinsights-col-7-8{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.monsterinsights-reports-box-datalist .monsterinsights-data-row:nth-child(odd){background-color:#f7f7f9}.monsterinsights-reports-box-title{background-color:#FFF;color:#7f8591;font-size:14px;font-weight:700;padding:20px;border-bottom:1px solid #e3e9ed;border-top-left-radius:5px;border-top-right-radius:5px}.monsterinsights-no-padding-right{padding-right:0}.monsterinsights-datalist-box-title{color:#7f8591;font-size:14px;font-weight:700;margin-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead th{padding:15px !important;color:#23282d;font-size:14px;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-thead{border-top:1px solid #ddd}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr td{padding:15px !important;color:#23282d;font-size:14px;font-weight:400}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+1){background-color:#f7f9ff}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table > thead > tr > th{border-bottom:0px}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .table{margin-bottom:0px}body.monsterinsights-reporting-page .monsterinsights-reports-data-table-tr:nth-child(2n+2){background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons,body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.list-no-icons{background-color:#f7f9ff !important}body.monsterinsights-reporting-page .monsterinsights-reports-2-column-container .monsterinsights-reports-2-column-item .monsterinsights-reports-2-column-panel.panel .monsterinsights-reports-data-table-thead{background-color:#fff}@media only screen and (max-width: 479px){.monsterinsights-bootstrap-container .table > thead > tr > th,.monsterinsights-bootstrap-container .table > tbody > tr > th,.monsterinsights-bootstrap-container .table > tfoot > tr > th,.monsterinsights-bootstrap-container .table > thead > tr > td,.monsterinsights-bootstrap-container .table > tbody > tr > td,.monsterinsights-bootstrap-container .table > tfoot > tr > td{display:block}}body.monsterinsights-reporting-page .monsterinsights-bootstrap-container .monsterinsights-white-bg-panel{background-color:#FFF !important}#monsterinsights-tools-pages .monsterinsights-main-nav-tab{padding:30px 5px;margin:0px}#monsterinsights-tools-pages .monsterinsights-main-nav-tab .monsterinsights-upsell-under-box{margin-top:0px}.monsterinsights-main-nav-tabs label{margin-top:7px;display:block;color:#444851}#monsterinsights-tools-pages .form-table th,#monsterinsights-tools-pages .form-table td,#monsterinsights-tools-pages .form-table tr{padding:0px 0px 20px 0px;border:none}#monsterinsights-tools-pages .monsterinsights-nav-tab .description{margin-top:0px}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url],#monsterinsights-tools-pages textarea{width:350px;padding-right:0;font-size:13px;border-width:2px;border-radius:3px;border-color:#e4e9ee;box-shadow:none}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type=url]{height:32px}#monsterinsights-tools-pages textarea{height:100px}@media (max-width: 767px){#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"],#monsterinsights-tools-pages textarea{width:90% !important}#monsterinsights-tools-pages input[type="text"],#monsterinsights-tools-pages input[type="url"]{height:auto}}@media screen and (max-width: 772px){.monsterinsights-reports-action-bar-actions{margin-top:20px;float:left;width:100%}.monsterinsights-pro-report-date-control-group .btn.btn-default{margin-bottom:15px;width:calc(50%)}.monsterinsights-bootstrap-container .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0;margin-right:0 !important}.monsterinsights-bootstrap-container .btn-group.monsterinsights-pro-report-date-control-group,.monsterinsights-bootstrap-container .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle;width:100%}.monsterinsights-pro-report-date-control-group .monsterinsights-pro-datepicker{width:100%;text-align:center}}#monsterinsights-related-resources-list{list-style-type:disc;padding-left:40px}@font-face{font-family:'monsterinsights';src:url(../fonts/monsterinsights.eot);src:url(../fonts/monsterinsights.eot?#iefix) format("embedded-opentype"),url(../fonts/monsterinsights.woff) format("woff"),url(../fonts/monsterinsights.ttf) format("truetype"),url(../fonts/monsterinsights.svg#monsterinsights) format("svg");font-weight:400;font-style:normal}#monsterinsights-addons [class*='monsterinsights-']:before{display:inline-block;font-family:'monsterinsights';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#monsterinsights-addons .monsterinsights-configuration:before{content:'\0041'}#monsterinsights-addons .monsterinsights-leaf:before{content:'\0042'}#monsterinsights-addons .monsterinsights-lightbox:before{content:'\0044'}#monsterinsights-addons .monsterinsights-misc:before{content:'\0045'}#monsterinsights-addons .monsterinsights-mobile:before{content:'\0046'}#monsterinsights-addons .monsterinsights-pagination:before{content:'\0047'}#monsterinsights-addons .monsterinsights-proofing:before{content:'\0048'}#monsterinsights-addons .monsterinsights-slideshow:before{content:'\0049'}#monsterinsights-addons .monsterinsights-tags:before{content:'\004a'}#monsterinsights-addons .monsterinsights-thumbnails:before{content:'\004b'}#monsterinsights-addons .monsterinsights-video:before{content:'\004c'}#monsterinsights-addons .monsterinsights-watermark:before{content:'\004d'}#monsterinsights-addons .monsterinsights-cloud-download:before{content:'\004e'}#monsterinsights-addons .monsterinsights-toggle-on:before{content:'\004f'}#monsterinsights-addons .monsterinsights-plus-circle:before{content:'\0050'}#monsterinsights-addons .monsterinsights-down-arrow:before{content:'\0051'}#monsterinsights-addons .monsterinsights-list:before{content:'\0052'}#monsterinsights-addons .monsterinsights-pinterest-p:before{content:'\0054'}#monsterinsights-addons .monsterinsights-pencil:before{content:'\0055'}#monsterinsights-addons .monsterinsights-close:before{content:'\0056'}#monsterinsights-addons .monsterinsights-check:before{content:'\0057'}body.monsterinsights_page .monsterinsights-addons-subheading{background-color:#fff;height:45px;margin-left:-20px}body.monsterinsights_page .monsterinsights-addons-subheading h1{font-size:20px;font-weight:400;line-height:45px;margin:0 0 0 20px;padding-left:20px}@media (min-width: 600px) and (max-width: 767px){body.monsterinsights_page .monsterinsights-addons-subheading{height:auto;padding-bottom:20px}}#monsterinsights-addon-heading:after{content:"";display:table;clear:both}#monsterinsights-addon-heading h1{float:left}#monsterinsights-addon-heading form{float:right;margin-right:100px}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addon-heading h1{float:none}}@media (max-width: 508px){#monsterinsights-addon-heading form{display:none}}@media (max-width: 600px){.monsterinsights-addon .interior{display:none !important}}#monsterinsights-addon-heading form input{border:1px solid #ddd;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px;background-color:#fff;color:#666;margin:7px 10px 0 5px;font-size:14px;padding:5px 8px}#monsterinsights-addon-heading form select{margin:-5px 20px 0 0}#monsterinsights-addon-heading form .spinner{float:none;margin:-3px auto auto}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addon-heading form{float:none;display:table;margin:10px auto 0}}#monsterinsights-addons{padding:0px}#monsterinsights-addons .button,#monsterinsights-addons .button-primary{text-shadow:none;background-color:#f7f7f7;color:#23282d;font-weight:600;border:1px solid #ccc;line-height:inherit;height:inherit;padding:5px 15px;box-shadow:none;cursor:pointer}#monsterinsights-addons .button:hover,#monsterinsights-addons .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-addons .monsterinsights-addon-action-button{padding-left:20px;padding-right:20px}#monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-cloud-download{font-size:19px;float:left;margin-right:8px;color:#8d8f92}#monsterinsights-addons .monsterinsights-addon-action-button .monsterinsights-toggle-on{font-size:19px;float:left;margin-right:8px;margin-top:1px;color:#7cc048}#monsterinsights-addons .monsterinsights-addon-upgrade-button{background-color:#7cc048;color:#fff;float:none !important;margin:0 auto;display:table;line-height:25px}#monsterinsights-addons .monsterinsights-addon-upgrade-button:hover{background-color:#95dc5e;color:#fff;border-color:#95dc5e}#monsterinsights-addons .monsterinsights-addon-action-button.monsterinsights-activate-addon .monsterinsights-toggle-on{color:#e92c21;-moz-transform:scaleX(-1);-o-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH;-ms-filter:FlipH}#monsterinsights-addons .monsterinsights-addon-title{margin-top:30px}#monsterinsights-addons .monsterinsights-addons-area:after{content:"";display:table;clear:both}#monsterinsights-addons .monsterinsights-addons-area.licensed{margin:20px 0 40px;padding:0 0 20px;border-bottom:1px solid #ddd}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{border:1px solid #ddd;position:relative;background:#fff;border-radius:3px;float:left;margin:0 2% 2% 0;min-height:465px;padding:0;text-align:center;width:32%;box-sizing:border-box;-webkit-box-sizing:border-box;-moz-box-sizing:border-box}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:both}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{min-height:420px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100% !important;min-height:525px}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon{width:100% !important;min-height:525px}}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:20px auto;max-width:100%}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-thumb{margin:10px auto 15px}}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{color:#2f2f2f;font-weight:400;padding:0 20px;display:table;margin:0 0 90px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{background:#f7f7f7;border-top:1px solid #ddd}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{position:absolute;bottom:0;float:left;width:100%;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin:0;padding:0;text-align:left}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior{padding:20px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message .interior:after,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .interior:after{content:"";display:table;clear:both}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-active .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-inactive .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-active .addon-status span{color:#7cc048}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-inactive .addon-status span{color:#e82c20}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error.monsterinsights-addon-not-installed .interior.monsterinsights-addon-not-installed .addon-status span{color:#a3a4a5}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.addon-status{float:left;font-weight:700}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message a.button,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error a.button{float:right}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.monsterinsights-spinner,#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error span.monsterinsights-spinner{position:absolute;bottom:15px;right:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action{display:inline;float:right}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-5px 0 0;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error{bottom:10px;float:none;left:15px;right:20px;width:auto}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .xinterior{width:100%;margin:0;background:#fff;border-left:4px solid #dc3232;box-shadow:0 1px 1px 0 rgba(0,0,0,0.1)}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p{padding:10px;margin:5px 10px}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .wrap{margin:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .icon32{display:none}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error h2{padding:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table th{padding:10px 0;width:30% !important}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="text"],#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error .monsterinsights-addon .monsterinsights-addon-error .form-table input[type="password"]{width:100% !important}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-error p.submit{padding:0}#monsterinsights-addons .monsterinsights-addons-area .monsterinsights-addon p{color:#2f2f2f;font-size:13px;margin:10px 0 0;text-shadow:0 1px #fff}#monsterinsights-addons .monsterinsights-addons-area #monsterinsights-addons-unlock-more-area{margin:40px auto 20px;padding-bottom:0;border-bottom:0}#monsterinsights-addons-more-area .monsterinsights-addon .interior{padding:15px 20px !important}#monsterinsights-addons-refresh-addons-form{width:100%;max-width:850px;float:left}@media (min-width: 992px) and (max-width: 1199px){#monsterinsights-addons-refresh-addons-form{max-width:450px}}@media (min-width: 768px) and (max-width: 991px){#monsterinsights-addons-refresh-addons-form{max-width:50%}#monsterinsights-addons-refresh-addons-form input.button{display:block}}@media (min-width: 600px) and (max-width: 767px){#monsterinsights-addons-refresh-addons-form{width:100%;float:none}#monsterinsights-addons-refresh-addons-form input.button{display:block}}#monsterinsights-filter-form{float:right}#monsterinsights-filter-form input[type='submit'],#monsterinsights-filter-form select{background-color:#f7f7f7;color:#23282d;border:1px solid #ddd;height:30px;width:120px;margin-top:-2px}#monsterinsights-filter-form input{padding:5px 15px;box-shadow:0;cursor:pointer;background-color:#f7f7f7;color:#23282d}#monsterinsights-filter-form input:hover{color:#23282d;background-color:#fafafa;border-color:#999}#monsterinsights-filter-form .spinner{float:left}@media only screen and (max-width: 1050px){#monsterinsights-addons-area .monsterinsights-addon{width:49%}#monsterinsights-addons-area .monsterinsights-addon:nth-child(2n){margin-right:0}#monsterinsights-addons-area .monsterinsights-addon:nth-child(2n+1){clear:both}#monsterinsights-addons-area .monsterinsights-addon:nth-child(3n){margin-right:2%}#monsterinsights-addons-area .monsterinsights-addon:nth-child(3n+1){clear:none}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:90px}}@media only screen and (max-width: 782px){#monsterinsights-addons-area .monsterinsights-addon{min-height:auto}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-action .button-primary{margin:-7px 0 0}}@media only screen and (max-width: 600px){#monsterinsights-addons-area .monsterinsights-addon{width:99%}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message{float:left;width:100%}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message span.addon-status{display:block;width:100%;margin:0 0 5px;text-align:center}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action{clear:both;display:block;width:100%;text-align:center}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-message div.monsterinsights-addon-action .button-primary{clear:both;float:none;margin:0 auto}#monsterinsights-addons-area .monsterinsights-addon .monsterinsights-addon-excerpt{margin-bottom:120px}}
|
assets/js/admin.js
CHANGED
@@ -1076,7 +1076,7 @@ jQuery(document).ready(function($) {
|
|
1076 |
title: monsterinsights_admin.refresh_report_failure_title,
|
1077 |
html: response.data.message,
|
1078 |
};
|
1079 |
-
if ( response.data.data.footer ) {
|
1080 |
swal_settings.footer = response.data.data.footer;
|
1081 |
}
|
1082 |
swal(swal_settings).catch(swal.noop);
|
1076 |
title: monsterinsights_admin.refresh_report_failure_title,
|
1077 |
html: response.data.message,
|
1078 |
};
|
1079 |
+
if ( response.data.data && response.data.data.footer ) {
|
1080 |
swal_settings.footer = response.data.data.footer;
|
1081 |
}
|
1082 |
swal(swal_settings).catch(swal.noop);
|
assets/js/frontend.js
CHANGED
@@ -167,9 +167,9 @@ var MonsterInsights = function(){
|
|
167 |
/* Enable window.monsterinsights_experimental_mode at your own risk. We might eventually remove it. Also you may/can/will burn through GA quota for your property quickly. */
|
168 |
} else if ( hostname && window.monsterinsights_experimental_mode && hostname.length > 0 && document.domain.length > 0 && hostname !== document.domain ) { /* If it's a cross-hostname link */
|
169 |
type = "cross-hostname";
|
170 |
-
}
|
171 |
|
172 |
-
if ( extension && type === 'unknown' && download_extensions.length > 0 && extension.length > 0 ) { /* If it's a download */
|
173 |
for ( index = 0, len = download_extensions.length; index < len; ++index ) {
|
174 |
if ( download_extensions[ index ].length > 0 && ( link.endsWith( download_extensions[ index ] ) || download_extensions[ index ] == extension ) ) {
|
175 |
type = "download";
|
167 |
/* Enable window.monsterinsights_experimental_mode at your own risk. We might eventually remove it. Also you may/can/will burn through GA quota for your property quickly. */
|
168 |
} else if ( hostname && window.monsterinsights_experimental_mode && hostname.length > 0 && document.domain.length > 0 && hostname !== document.domain ) { /* If it's a cross-hostname link */
|
169 |
type = "cross-hostname";
|
170 |
+
}
|
171 |
|
172 |
+
if ( extension && ( type === 'unknown' || 'external' === type ) && download_extensions.length > 0 && extension.length > 0 ) { /* If it's a download */
|
173 |
for ( index = 0, len = download_extensions.length; index < len; ++index ) {
|
174 |
if ( download_extensions[ index ].length > 0 && ( link.endsWith( download_extensions[ index ] ) || download_extensions[ index ] == extension ) ) {
|
175 |
type = "download";
|
assets/js/frontend.min.js
CHANGED
@@ -6,12 +6,12 @@ else if(e.metaKey){return'metaKey'}
|
|
6 |
else if(e.ctrlKey){return'ctrlKey'}
|
7 |
else if(e.shiftKey){return'shiftKey'}
|
8 |
else if(e.altKey){return'altKey'}
|
9 |
-
else{return''}};function m(e){var r=d(),h=u(),
|
10 |
-
else if(i&&i.length>0&&(a(i)=='tel'||a(i)=='tel:')){
|
11 |
-
else if(i&&i.length>0&&(a(i)=='mailto'||a(i)=='mailto:')){
|
12 |
-
else if(o&&p&&o.length>0&&p.length>0&&!o.endsWith(p)){
|
13 |
-
else if(v&&h.length>0&&v.length>0){for(
|
14 |
-
else if(o&&window.monsterinsights_experimental_mode&&o.length>0&&document.domain.length>0&&o!==document.domain){
|
15 |
while(a&&(typeof a.tagName=='undefined'||a.tagName.toLowerCase()!='a'||!a.href)){a=a.parentNode};if(a&&a.href&&!a.hasAttribute('xlink:href')){var c=a.href,L=f(a.href),K=d(),O=u(),E=monsterinsights_frontend.home_url,w=monsterinsights_frontend.track_download_as,b='outbound-link-'+monsterinsights_frontend.internal_label,D=s(),r=m(a),x=y(a,i);t.el=a;t.el_href=a.href;t.el_protocol=a.protocol;t.el_hostname=a.hostname;t.el_port=a.port;t.el_pathname=a.pathname;t.el_search=a.search;t.el_hash=a.hash;t.el_host=a.host;t.debug_mode=l();t.download_extensions=K;t.inbound_paths=O;t.home_url=E;t.track_download_as=w;t.internal_label=b;t.link=c;t.extension=L;t.type=r;t.target=x;t.title=a.title||a.textContent||a.innerText;if(r!=='internal'&&r!=='javascript'){var k=!1,g=function(){if(k){return};k=!0;window.location.href=c},T=function(){t.exit='external';n(t)},A=function(){t.exit='internal-as-outbound';n(t)},C=function(){t.exit='cross-hostname';n(t)};if(x||r=='mailto'||r=='tel'){if(r=='download'){if(w=='pageview'){o={hitType:'pageview',page:c,};e(t,o)}
|
16 |
else{o={hitType:'event',eventCategory:'download',eventAction:c,eventLabel:t.title,};e(t,o)}}
|
17 |
else if(r=='tel'){o={hitType:'event',eventCategory:'tel',eventAction:c,eventLabel:t.title.replace('tel:',''),};e(t,o)}
|
6 |
else if(e.ctrlKey){return'ctrlKey'}
|
7 |
else if(e.shiftKey){return'shiftKey'}
|
8 |
else if(e.altKey){return'altKey'}
|
9 |
+
else{return''}};function m(e){var r=d(),h=u(),t='unknown',c=e.href,g=f(e.href),p=s(),o=e.hostname,i=e.protocol,v=e.pathname;c=c.toString();var n,l;if(c.match(/^javascript\:/i)){t='internal'}
|
10 |
+
else if(i&&i.length>0&&(a(i)=='tel'||a(i)=='tel:')){t='tel'}
|
11 |
+
else if(i&&i.length>0&&(a(i)=='mailto'||a(i)=='mailto:')){t='mailto'}
|
12 |
+
else if(o&&p&&o.length>0&&p.length>0&&!o.endsWith(p)){t='external'}
|
13 |
+
else if(v&&h.length>0&&v.length>0){for(n=0,l=h.length;n<l;++n){if(h[n].length>0&&v.startsWith(h[n])){t='internal-as-outbound';break}}}
|
14 |
+
else if(o&&window.monsterinsights_experimental_mode&&o.length>0&&document.domain.length>0&&o!==document.domain){t='cross-hostname'};if(g&&(t==='unknown'||'external'===t)&&r.length>0&&g.length>0){for(n=0,l=r.length;n<l;++n){if(r[n].length>0&&(c.endsWith(r[n])||r[n]==g)){t='download';break}}};if(t==='unknown'){t='internal'};return t};function y(e,t){var n=(e.target&&!e.target.match(/^_(self|parent|top)$/i))?e.target:!1;if(t.ctrlKey||t.shiftKey||t.metaKey||t.which==2){n='_blank'};return n};function c(i){var a=i.srcElement||i.target,t=[],o;t.el=a;t.ga_loaded=h();t.click_type=v(i);if(!h()||!p(i)){t.exit='loaded';n(t);return}
|
15 |
while(a&&(typeof a.tagName=='undefined'||a.tagName.toLowerCase()!='a'||!a.href)){a=a.parentNode};if(a&&a.href&&!a.hasAttribute('xlink:href')){var c=a.href,L=f(a.href),K=d(),O=u(),E=monsterinsights_frontend.home_url,w=monsterinsights_frontend.track_download_as,b='outbound-link-'+monsterinsights_frontend.internal_label,D=s(),r=m(a),x=y(a,i);t.el=a;t.el_href=a.href;t.el_protocol=a.protocol;t.el_hostname=a.hostname;t.el_port=a.port;t.el_pathname=a.pathname;t.el_search=a.search;t.el_hash=a.hash;t.el_host=a.host;t.debug_mode=l();t.download_extensions=K;t.inbound_paths=O;t.home_url=E;t.track_download_as=w;t.internal_label=b;t.link=c;t.extension=L;t.type=r;t.target=x;t.title=a.title||a.textContent||a.innerText;if(r!=='internal'&&r!=='javascript'){var k=!1,g=function(){if(k){return};k=!0;window.location.href=c},T=function(){t.exit='external';n(t)},A=function(){t.exit='internal-as-outbound';n(t)},C=function(){t.exit='cross-hostname';n(t)};if(x||r=='mailto'||r=='tel'){if(r=='download'){if(w=='pageview'){o={hitType:'pageview',page:c,};e(t,o)}
|
16 |
else{o={hitType:'event',eventCategory:'download',eventAction:c,eventLabel:t.title,};e(t,o)}}
|
17 |
else if(r=='tel'){o={hitType:'event',eventCategory:'tel',eventAction:c,eventLabel:t.title.replace('tel:',''),};e(t,o)}
|
googleanalytics.php
CHANGED
@@ -6,7 +6,7 @@
|
|
6 |
* Author: MonsterInsights
|
7 |
* Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
8 |
*
|
9 |
-
* Version: 7.0
|
10 |
* Requires at least: 3.8.0
|
11 |
* Tested up to: 4.9
|
12 |
*
|
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
|
|
69 |
* @access public
|
70 |
* @var string $version Plugin version.
|
71 |
*/
|
72 |
-
public $version = '7.0
|
73 |
|
74 |
/**
|
75 |
* Plugin file.
|
6 |
* Author: MonsterInsights
|
7 |
* Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
|
8 |
*
|
9 |
+
* Version: 7.1.0
|
10 |
* Requires at least: 3.8.0
|
11 |
* Tested up to: 4.9
|
12 |
*
|
69 |
* @access public
|
70 |
* @var string $version Plugin version.
|
71 |
*/
|
72 |
+
public $version = '7.1.0';
|
73 |
|
74 |
/**
|
75 |
* Plugin file.
|
includes/admin/common.php
CHANGED
@@ -63,6 +63,11 @@ function monsterinsights_admin_styles() {
|
|
63 |
// Load necessary admin styles.
|
64 |
wp_register_style( 'monsterinsights-admin-style', plugins_url( 'assets/css/admin' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
|
65 |
wp_enqueue_style( 'monsterinsights-admin-style' );
|
|
|
|
|
|
|
|
|
|
|
66 |
}
|
67 |
add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_styles' );
|
68 |
|
@@ -224,6 +229,13 @@ function monsterinsights_remove_conflicting_asset_files() {
|
|
224 |
'control-panel-modal-plugin', // Ken Theme
|
225 |
'sweetalert', // Church Suite Theme by Webnus
|
226 |
'woo_stock_alerts_admin_css', // WooCommerce bolder product alerts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
);
|
228 |
|
229 |
$scripts = array(
|
@@ -283,6 +295,23 @@ function monsterinsights_remove_conflicting_asset_files() {
|
|
283 |
'ecwid-admin-js', // Fixes Conflict for Ecwid Shopping Cart
|
284 |
'td-wp-admin-js', // Newspaper by tagDiv
|
285 |
'moment', // Screets Live Chat
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
);
|
287 |
|
288 |
if ( ! empty( $styles ) ) {
|
@@ -367,6 +396,40 @@ function monsterinsights_remove_conflicting_asset_files() {
|
|
367 |
remove_action('admin_print_footer_scripts', 'check_if_media_uploads_is_loaded', 9999);
|
368 |
remove_action('print_media_templates', 'td_custom_gallery_settings_hook');
|
369 |
remove_action('print_media_templates', 'td_change_backbone_js_hook');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
370 |
}
|
371 |
add_action( 'admin_enqueue_scripts', 'monsterinsights_remove_conflicting_asset_files', 9999 );
|
372 |
|
63 |
// Load necessary admin styles.
|
64 |
wp_register_style( 'monsterinsights-admin-style', plugins_url( 'assets/css/admin' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
|
65 |
wp_enqueue_style( 'monsterinsights-admin-style' );
|
66 |
+
|
67 |
+
// Load LTR stylesheet where needed.
|
68 |
+
if ( is_rtl() ) {
|
69 |
+
wp_enqueue_style( 'monsterinsights-admin-style-rtl', plugins_url( 'assets/css/admin-rtl' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
|
70 |
+
}
|
71 |
}
|
72 |
add_action( 'admin_enqueue_scripts', 'monsterinsights_admin_styles' );
|
73 |
|
229 |
'control-panel-modal-plugin', // Ken Theme
|
230 |
'sweetalert', // Church Suite Theme by Webnus
|
231 |
'woo_stock_alerts_admin_css', // WooCommerce bolder product alerts
|
232 |
+
'custom_wp_admin_css', // Fix for Add Social Share
|
233 |
+
'fo_css', // Fix for Add Social Share
|
234 |
+
'font_css', // Fix for Add Social Share
|
235 |
+
'font2_css', // Fix for Add Social Share
|
236 |
+
'font3_css', // Fix for Add Social Share
|
237 |
+
'hover_css', // Fix for Add Social Share
|
238 |
+
'fontend_styling' // Fix for Add Social Share
|
239 |
);
|
240 |
|
241 |
$scripts = array(
|
295 |
'ecwid-admin-js', // Fixes Conflict for Ecwid Shopping Cart
|
296 |
'td-wp-admin-js', // Newspaper by tagDiv
|
297 |
'moment', // Screets Live Chat
|
298 |
+
'wpmf-base', // WP Media Folder Fix
|
299 |
+
'wpmf-media-filters', // WP Media Folder Fix
|
300 |
+
'wpmf-folder-tree', // WP Media Folder Fix
|
301 |
+
'wpmf-assign-tree', // WP Media Folder Fix
|
302 |
+
'js_files_for_wp_admin', // TagDiv Composer Fix
|
303 |
+
'tdb_js_files_for_wp_admin_last', // TagDiv Composer Fix
|
304 |
+
'tdb_js_files_for_wp_admin', // TagDiv Composer Fix
|
305 |
+
'wd-functions', // affiliate boxes
|
306 |
+
'ellk-aliExpansion', // Ali Dropship Plugin
|
307 |
+
'ftmetajs', // Houzez Theme
|
308 |
+
'qode_admin_default', // Fix For Stockholm Theme
|
309 |
+
'qodef-tax-js', // Fix for Prowess Theme
|
310 |
+
'qodef-user-js', // Fix for Prowess Theme
|
311 |
+
'qodef-ui-admin', // Fix for Prowess Theme
|
312 |
+
'ssi_script', // Fix for Add Social Share
|
313 |
+
'live_templates', // Fix for Add Social Share
|
314 |
+
'default', // Fix for Add Social Share
|
315 |
);
|
316 |
|
317 |
if ( ! empty( $styles ) ) {
|
396 |
remove_action('admin_print_footer_scripts', 'check_if_media_uploads_is_loaded', 9999);
|
397 |
remove_action('print_media_templates', 'td_custom_gallery_settings_hook');
|
398 |
remove_action('print_media_templates', 'td_change_backbone_js_hook');
|
399 |
+
remove_action('admin_head', 'tdc_on_admin_head'); // TagDiv Composer Fix
|
400 |
+
remove_action('print_media_templates', 'us_media_templates'); // Impreza Theme Fix
|
401 |
+
remove_action('admin_footer', 'gt3pg_add_gallery_template'); // GT3 Photo & Video Gallery By GT3 Themes Plugin Fix
|
402 |
+
// Plugin WP Booklist:
|
403 |
+
remove_action('admin_footer', 'wpbooklist_jre_dismiss_prem_notice_forever_action_javascript');
|
404 |
+
remove_action('admin_footer', 'wpbooklist_dashboard_add_book_action_javascript');
|
405 |
+
remove_action('admin_footer', 'wpbooklist_edit_book_show_form_action_javascript');
|
406 |
+
remove_action('admin_footer', 'wpbooklist_show_book_in_colorbox_action_javascript');
|
407 |
+
remove_action('admin_footer', 'wpbooklist_new_lib_shortcode_action_javascript');
|
408 |
+
remove_action('admin_footer', 'wpbooklist_dashboard_save_library_display_options_action_javascript');
|
409 |
+
remove_action('admin_footer', 'wpbooklist_dashboard_save_post_display_options_action_javascript');
|
410 |
+
remove_action('admin_footer', 'wpbooklist_dashboard_save_page_display_options_action_javascript');
|
411 |
+
remove_action('admin_footer', 'wpbooklist_update_display_options_action_javascript');
|
412 |
+
remove_action('admin_footer', 'wpbooklist_edit_book_pagination_action_javascript');
|
413 |
+
remove_action('admin_footer', 'wpbooklist_edit_book_switch_lib_action_javascript');
|
414 |
+
remove_action('admin_footer', 'wpbooklist_edit_book_search_action_javascript');
|
415 |
+
remove_action('admin_footer', 'wpbooklist_edit_book_actual_action_javascript');
|
416 |
+
remove_action('admin_footer', 'wpbooklist_delete_book_action_javascript');
|
417 |
+
remove_action('admin_footer', 'wpbooklist_user_apis_action_javascript');
|
418 |
+
remove_action('admin_footer', 'wpbooklist_upload_new_stylepak_action_javascript');
|
419 |
+
remove_action('admin_footer', 'wpbooklist_upload_new_post_template_action_javascript');
|
420 |
+
remove_action('admin_footer', 'wpbooklist_upload_new_page_template_action_javascript');
|
421 |
+
remove_action('admin_footer', 'wpbooklist_create_db_library_backup_action_javascript');
|
422 |
+
remove_action('admin_footer', 'wpbooklist_restore_db_library_backup_action_javascript');
|
423 |
+
remove_action('admin_footer', 'wpbooklist_create_csv_action_javascript');
|
424 |
+
remove_action('admin_footer', 'wpbooklist_amazon_localization_action_javascript');
|
425 |
+
remove_action('admin_footer', 'wpbooklist_delete_book_bulk_action_javascript');
|
426 |
+
remove_action('admin_footer', 'wpbooklist_reorder_action_javascript');
|
427 |
+
remove_action('admin_footer', 'wpbooklist_exit_results_action_javascript');
|
428 |
+
remove_action('admin_footer', 'wpbooklist_storytime_select_category_action_javascript');
|
429 |
+
remove_action('admin_footer', 'wpbooklist_storytime_get_story_action_javascript');
|
430 |
+
remove_action('admin_footer', 'wpbooklist_storytime_expand_browse_action_javascript');
|
431 |
+
remove_action('admin_footer', 'wpbooklist_storytime_save_settings_action_javascript');
|
432 |
+
remove_action('admin_footer', 'wpbooklist_delete_story_action_javascript');
|
433 |
}
|
434 |
add_action( 'admin_enqueue_scripts', 'monsterinsights_remove_conflicting_asset_files', 9999 );
|
435 |
|
includes/admin/reports/abstract-report.php
CHANGED
@@ -318,7 +318,7 @@ class MonsterInsights_Report {
|
|
318 |
<p ><?php echo sprintf( esc_html__( "Hey there! It looks like you've got the %s license installed on your site.
|
319 |
That's awesome! %s",'google-analytics-for-wordpress'), $has_level, '<span class="dashicons dashicons-smiley"></span>' ); ?></p>
|
320 |
|
321 |
-
<p><?php echo sprintf( esc_html__( "Do you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with the
|
322 |
<p><?php echo sprintf( esc_html__( "It's easy! To upgrade, navigate to %sMy Account%s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %sstep by step guide%s with pictures of this process.",'google-analytics-for-wordpress'), '<a href="'. monsterinsights_get_url( 'reports-page', $this->name . '-report-upsell-license-link', 'https://monsterinsights.com/my-account/' ) .'"><strong>','</strong></a>', '<a href="'. monsterinsights_get_url( 'reports-page', $this->name . '-report-upsell-license-link', 'https://www.monsterinsights.com/docs/upgrade-monsterinsights-license/' ) .'" style="text-decoration:underline !important">', '</a>' ); ?></p>
|
323 |
<p><?php esc_html_e( "If you have any questions, don't hesitate to reach out. We're here to help.", 'google-analytics-for-wordpress');?></p>
|
324 |
<?php } else { ?>
|
318 |
<p ><?php echo sprintf( esc_html__( "Hey there! It looks like you've got the %s license installed on your site.
|
319 |
That's awesome! %s",'google-analytics-for-wordpress'), $has_level, '<span class="dashicons dashicons-smiley"></span>' ); ?></p>
|
320 |
|
321 |
+
<p><?php echo sprintf( esc_html__( "Do you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with the %s level%s of our paid packages. You'll need to upgrade your license to get instant access.",'google-analytics-for-wordpress'), '<strong>' . $this->title, '</strong>','<strong><a href="'. monsterinsights_get_url( 'reports-page', $this->name . '-report-upsell-license-link', 'https://monsterinsights.com/my-account/' ) .'">' . $this->level,'</a></strong>' ); ?></p>
|
322 |
<p><?php echo sprintf( esc_html__( "It's easy! To upgrade, navigate to %sMy Account%s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %sstep by step guide%s with pictures of this process.",'google-analytics-for-wordpress'), '<a href="'. monsterinsights_get_url( 'reports-page', $this->name . '-report-upsell-license-link', 'https://monsterinsights.com/my-account/' ) .'"><strong>','</strong></a>', '<a href="'. monsterinsights_get_url( 'reports-page', $this->name . '-report-upsell-license-link', 'https://www.monsterinsights.com/docs/upgrade-monsterinsights-license/' ) .'" style="text-decoration:underline !important">', '</a>' ); ?></p>
|
323 |
<p><?php esc_html_e( "If you have any questions, don't hesitate to reach out. We're here to help.", 'google-analytics-for-wordpress');?></p>
|
324 |
<?php } else { ?>
|
includes/admin/reports/overview.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
-
* Overview Report
|
4 |
*
|
5 |
* Ensures all of the reports have a uniform class with helper functions.
|
6 |
*
|
@@ -19,10 +19,10 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
19 |
final class MonsterInsights_Report_Overview extends MonsterInsights_Report {
|
20 |
|
21 |
public $title;
|
22 |
-
public $class
|
23 |
-
public $name
|
24 |
public $version = '1.0.0';
|
25 |
-
public $level
|
26 |
|
27 |
/**
|
28 |
* Primary class constructor.
|
@@ -36,257 +36,573 @@ final class MonsterInsights_Report_Overview extends MonsterInsights_Report {
|
|
36 |
}
|
37 |
|
38 |
// Outputs the report.
|
39 |
-
protected function get_report_html( $data = array() ){
|
40 |
ob_start();
|
41 |
-
if ( ! empty( $data['overviewgraph']['count'] ) && $data['overviewgraph']['count'] > 0 ) {
|
42 |
-
?>
|
43 |
-
<div class="monsterinsights-overview-report-overview-graph-panel panel panel-default chart-panel">
|
44 |
-
<ul class="monsterinsights-tabbed-nav nav nav-tabs nav-justified">
|
45 |
-
<li role="presentation" class="monsterinsights-tabbed-nav-tab-title monsterinsights-clear active" data-tab="sessions-tab">
|
46 |
-
<a href="#sessions-tab"><span class="monsterinsights-user-icon"></span>
|
47 |
-
<?php echo esc_html__( 'Sessions', 'google-analytics-for-wordpress' ); ?>
|
48 |
-
</a>
|
49 |
-
</li>
|
50 |
-
<li role="presentation" class="monsterinsights-tabbed-nav-tab-title monsterinsights-clear" data-tab="pageviews-tab">
|
51 |
-
<a href="#pageviews-tab"><span class="monsterinsights-eye-icon"> </span>
|
52 |
-
<?php echo esc_html__( 'Page Views', 'google-analytics-for-wordpress' ); ?>
|
53 |
-
</a>
|
54 |
-
</ul>
|
55 |
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
|
|
|
|
60 |
</div>
|
61 |
-
<div class="monsterinsights-
|
62 |
-
|
63 |
-
<?php echo $this->get_overview_report_js( 'pageviews', $data['overviewgraph'] ); ?>
|
64 |
-
</div>
|
65 |
</div>
|
66 |
-
<div id="monsterinsights-chartjs-tooltip" style="opacity: 0"></div>
|
67 |
</div>
|
68 |
-
|
|
|
69 |
|
70 |
-
if ( ! empty( $data['
|
71 |
-
$up = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up.png';
|
72 |
-
$up2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up@2x.png';
|
73 |
-
$down = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down.png';
|
74 |
-
$down2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down@2x.png';
|
75 |
-
$upred = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up-red.png';
|
76 |
-
$upred2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up-red@2x.png';
|
77 |
-
$downgrn = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down-green.png';
|
78 |
-
$downgrn2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down-green@2x.png';
|
79 |
-
$uplabel = esc_attr__( 'Up', 'google-analytics-for-wordpress' );
|
80 |
-
$downlabel = esc_attr__( 'Down', 'google-analytics-for-wordpress' );
|
81 |
?>
|
82 |
-
<div class="monsterinsights-
|
83 |
-
|
84 |
-
|
85 |
-
<?php echo esc_html__( 'Sessions', 'google-analytics-for-wordpress' ); ?>
|
86 |
-
</div>
|
87 |
-
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Session', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
88 |
-
<div class="monsterinsights-reports-infobox-number">
|
89 |
-
<?php echo esc_html( number_format_i18n( $data['infobox']['sessions']['value'] ) ); ?>
|
90 |
-
</div>
|
91 |
-
<?php if ( empty( $data['infobox']['sessions']['prev'] ) ) { ?>
|
92 |
-
<div class="monsterinsights-reports-infobox-prev">
|
93 |
-
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
94 |
-
</div>
|
95 |
-
<?php } else if ( $data['infobox']['sessions']['prev'] > 0 ) { ?>
|
96 |
-
<div class="monsterinsights-reports-infobox-prev">
|
97 |
-
<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
98 |
-
<?php echo esc_html( $data['infobox']['sessions']['prev'] ) . '%'; ?>
|
99 |
-
</div>
|
100 |
-
<?php } else { ?>
|
101 |
-
<div class="monsterinsights-reports-infobox-prev">
|
102 |
-
<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
103 |
-
<?php echo esc_html( absint( $data['infobox']['sessions']['prev'] ) ) . '%'; ?>
|
104 |
-
</div>
|
105 |
-
<?php } ?>
|
106 |
-
<div class="monsterinsights-reports-infobox-compare">
|
107 |
-
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
108 |
-
</div>
|
109 |
-
</div>
|
110 |
-
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
111 |
-
<div class="monsterinsights-reports-infobox-title">
|
112 |
-
<?php echo esc_html__( 'Pageviews', 'google-analytics-for-wordpress' ); ?>
|
113 |
-
</div>
|
114 |
-
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Pageviews', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
115 |
-
<div class="monsterinsights-reports-infobox-number">
|
116 |
-
<?php echo esc_html( number_format_i18n( $data['infobox']['pageviews']['value'] ) ); ?>
|
117 |
-
</div>
|
118 |
-
<?php if ( empty( $data['infobox']['pageviews']['prev'] ) ) { ?>
|
119 |
-
<div class="monsterinsights-reports-infobox-prev">
|
120 |
-
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
121 |
-
</div>
|
122 |
-
<?php } else if ( $data['infobox']['pageviews']['prev'] > 0 ) { ?>
|
123 |
-
<div class="monsterinsights-reports-infobox-prev">
|
124 |
-
<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
125 |
-
<?php echo esc_html( $data['infobox']['pageviews']['prev'] ) . '%'; ?>
|
126 |
-
</div>
|
127 |
-
<?php } else { ?>
|
128 |
-
<div class="monsterinsights-reports-infobox-prev">
|
129 |
-
<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
130 |
-
<?php echo esc_html( absint( $data['infobox']['pageviews']['prev'] ) ) . '%'; ?>
|
131 |
-
</div>
|
132 |
-
<?php } ?>
|
133 |
-
<div class="monsterinsights-reports-infobox-compare">
|
134 |
-
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
135 |
-
</div>
|
136 |
-
</div>
|
137 |
-
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
138 |
-
<div class="monsterinsights-reports-infobox-title">
|
139 |
-
<?php echo esc_html__( 'Avg. Session Duration', 'google-analytics-for-wordpress' ); ?>
|
140 |
-
</div>
|
141 |
-
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Average Session Duration', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
142 |
-
<div class="monsterinsights-reports-infobox-number">
|
143 |
-
<?php echo esc_html( $data['infobox']['duration']['value'] ); ?>
|
144 |
-
</div>
|
145 |
-
<?php if ( empty( $data['infobox']['duration']['prev'] ) ) { ?>
|
146 |
-
<div class="monsterinsights-reports-infobox-prev">
|
147 |
-
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
148 |
-
</div>
|
149 |
-
<?php } else if ( $data['infobox']['duration']['prev'] > 0 ) { ?>
|
150 |
-
<div class="monsterinsights-reports-infobox-prev">
|
151 |
-
<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
152 |
-
<?php echo esc_html( $data['infobox']['duration']['prev'] ) . '%'; ?>
|
153 |
-
</div>
|
154 |
-
<?php } else { ?>
|
155 |
-
<div class="monsterinsights-reports-infobox-prev">
|
156 |
-
<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
157 |
-
<?php echo esc_html( absint( $data['infobox']['duration']['prev'] ) ) . '%'; ?>
|
158 |
-
</div>
|
159 |
-
<?php } ?>
|
160 |
-
<div class="monsterinsights-reports-infobox-compare">
|
161 |
-
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
162 |
-
</div>
|
163 |
-
</div>
|
164 |
-
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
165 |
-
<div class="monsterinsights-reports-infobox-title">
|
166 |
-
<?php echo esc_html__( 'Bounce Rate', 'google-analytics-for-wordpress' ); ?>
|
167 |
-
</div>
|
168 |
-
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Bounce Rate', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
169 |
-
<div class="monsterinsights-reports-infobox-number">
|
170 |
-
<?php echo esc_html( $data['infobox']['bounce']['value'] ) . '%'; ?>
|
171 |
-
</div>
|
172 |
-
<?php if ( empty( $data['infobox']['bounce']['prev'] ) ) { ?>
|
173 |
-
<div class="monsterinsights-reports-infobox-prev">
|
174 |
-
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
175 |
-
</div>
|
176 |
-
<?php } else if ( $data['infobox']['bounce']['prev'] > 0 ) { ?>
|
177 |
-
<div class="monsterinsights-reports-infobox-prev">
|
178 |
-
<img src="<?php echo $upred; ?>" srcset="<?php echo $upred2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
179 |
-
<?php echo esc_html( $data['infobox']['bounce']['prev'] ) . '%'; ?>
|
180 |
-
</div>
|
181 |
-
<?php } else { ?>
|
182 |
-
<div class="monsterinsights-reports-infobox-prev">
|
183 |
-
<img src="<?php echo $downgrn; ?>" srcset="<?php echo $downgrn2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
184 |
-
<?php echo esc_html( absint( $data['infobox']['bounce']['prev'] ) ) . '%'; ?>
|
185 |
</div>
|
186 |
-
|
187 |
-
|
188 |
-
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
189 |
</div>
|
190 |
-
</div>
|
191 |
</div>
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
return;
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
tooltipEl.addClass(tooltip.yAlign);
|
231 |
-
|
232 |
-
tooltipEl.addClass('no-transform');
|
233 |
-
|
234 |
-
|
235 |
-
var label
|
236 |
-
var value
|
237 |
-
|
238 |
-
var
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
var ch = 0;
|
250 |
-
if (tooltip.caretHeight) {
|
251 |
-
|
252 |
}
|
253 |
-
if (tooltip.yAlign == 'above') {
|
254 |
-
|
255 |
} else {
|
256 |
-
|
257 |
}
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
opacity: 1,
|
262 |
-
width: tooltip.width ? (
|
|
|
|
|
263 |
left: tooltip.x - 50 + 'px',
|
264 |
-
top: top
|
265 |
fontFamily: tooltip._fontFamily,
|
266 |
fontSize: tooltip.fontSize,
|
267 |
fontStyle: tooltip._fontStyle,
|
268 |
padding: tooltip.yPadding + 'px ' + tooltip.xPadding + 'px',
|
269 |
'z-index': 99999,
|
270 |
-
|
271 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
|
273 |
var config = {
|
274 |
type: 'doughnut',
|
275 |
data: {
|
276 |
-
datasets: [
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
|
|
|
|
286 |
values: [<?php echo esc_js( $data['newvsreturn']['new'] ); ?>,<?php echo esc_js( $data['newvsreturn']['returning'] ); ?> ],
|
287 |
labels: [
|
288 |
-
"<?php echo esc_js( __('New', 'google-analytics-for-wordpress' ) ); ?>",
|
289 |
-
"<?php echo esc_js( __('Returning', 'google-analytics-for-wordpress' ) ); ?>",
|
290 |
]
|
291 |
},
|
292 |
options: {
|
@@ -299,146 +615,171 @@ final class MonsterInsights_Report_Overview extends MonsterInsights_Report {
|
|
299 |
intersect: true,
|
300 |
custom: pieTooltips,
|
301 |
callbacks: {
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
}
|
312 |
},
|
313 |
animation: false,
|
314 |
-
legendCallback: function (chart) {
|
315 |
var text = [];
|
316 |
-
text.push('<ul class="' + chart.id + '-legend" style="list-style:none">');
|
317 |
-
for (var i = 0; i < chart.data.datasets[0].data.length; i++) {
|
318 |
-
text.push('<li style="color: #23282d;font-size: 16px;font-weight: 400;"><div style="color: #23282d;width:12px;height:12px;display:inline-block;background:' + chart.data.datasets[0].backgroundColor[i] + '" /> ');
|
319 |
-
if ( typeof(
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
325 |
}
|
326 |
-
text.push('</li>');
|
327 |
}
|
328 |
-
text.push('</ul>');
|
329 |
|
330 |
-
return text.join('');
|
331 |
},
|
332 |
legend: {display: false},
|
333 |
}
|
334 |
};
|
335 |
-
var overviewreturning = new Chart( document.getElementById(
|
336 |
-
jQuery(
|
337 |
}
|
338 |
-
});
|
339 |
-
|
340 |
-
</div>
|
341 |
-
<div class="monsterinsights-reports-pie-graph-key"></div>
|
342 |
</div>
|
|
|
343 |
</div>
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
|
422 |
var config = {
|
423 |
type: 'doughnut',
|
424 |
data: {
|
425 |
-
datasets: [
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
|
|
|
|
437 |
values: [<?php echo esc_js( $data['devices']['desktop'] ); ?>,<?php echo esc_js( $data['devices']['tablet'] ); ?>,<?php echo esc_js( $data['devices']['mobile'] ); ?> ],
|
438 |
labels: [
|
439 |
-
"<?php echo esc_js( __('Desktop', 'google-analytics-for-wordpress' ) ); ?>",
|
440 |
-
"<?php echo esc_js( __('Tablet', 'google-analytics-for-wordpress' ) ); ?>",
|
441 |
-
"<?php echo esc_js( __('Mobile', 'google-analytics-for-wordpress' ) ); ?>",
|
442 |
]
|
443 |
},
|
444 |
options: {
|
@@ -451,417 +792,197 @@ final class MonsterInsights_Report_Overview extends MonsterInsights_Report {
|
|
451 |
intersect: true,
|
452 |
custom: pieTooltips,
|
453 |
callbacks: {
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
}
|
464 |
},
|
465 |
animation: false,
|
466 |
-
legendCallback: function (chart) {
|
467 |
var text = [];
|
468 |
-
text.push('<ul class="' + chart.id + '-legend" style="list-style:none">');
|
469 |
-
for (var i = 0; i < chart.data.datasets[0].data.length; i++) {
|
470 |
-
text.push('<li style="color: #23282d;font-size: 16px;font-weight: 400;"><div style="color: #23282d;width:12px;height:12px;display:inline-block;background:' + chart.data.datasets[0].backgroundColor[i] + '" /> ');
|
471 |
-
if ( typeof(
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
}
|
478 |
-
text.push('</li>');
|
479 |
}
|
480 |
-
text.push('</ul>');
|
481 |
|
482 |
-
return text.join('');
|
483 |
},
|
484 |
legend: {display: false},
|
485 |
}
|
486 |
};
|
487 |
-
var devicebreakdown = new Chart( document.getElementById(
|
488 |
-
jQuery(
|
489 |
}
|
490 |
-
});
|
491 |
-
|
492 |
-
</div>
|
493 |
-
<div class="monsterinsights-reports-pie-visitors-graph-key"></div>
|
494 |
</div>
|
495 |
-
|
496 |
</div>
|
497 |
-
|
|
|
|
|
498 |
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
<?php
|
510 |
$countries = monsterinsights_get_country_list( true );
|
511 |
-
$i
|
512 |
-
foreach( $data['countries'] as $icountry => $countrydata ) {
|
513 |
if ( ! empty( $countries[ $countrydata['iso'] ] ) ) {
|
514 |
-
echo '<li class="list-group-item"><span class="monsterinsights-reports-list-count">'. $i .'.</span><span class="monsterinsights-reports-country-flag monsterinsights-flag-icon monsterinsights-flag-icon-' . strtolower( $countrydata['iso'] ) . ' "></span><span class="monsterinsights-reports-list-text">' . $countries[ $countrydata['iso'] ] . '</span><span class="monsterinsights-reports-list-number">' . number_format_i18n( $countrydata['sessions'] ) . '</span></li>';
|
515 |
-
} else {
|
516 |
-
echo '<li class="list-group-item"><span class="monsterinsights-reports-list-count">'. $i .'</span><span class="monsterinsights-flag-icon monsterinsights-flag-icon-' . strtolower( $countrydata['iso'] ) . ' "></span><span class="monsterinsights-reports-list-text">' . $countrydata['iso'] . '</span><span class="monsterinsights-reports-list-number">' . number_format_i18n( $countrydata['sessions'] ) . '</span></li>';
|
517 |
}
|
518 |
-
$i++;
|
519 |
}
|
520 |
?>
|
521 |
-
|
522 |
-
</div>
|
523 |
-
<?php
|
524 |
-
$referral_url = 'https://analytics.google.com/analytics/web/#report/visitors-geo/'. MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data );
|
525 |
-
?>
|
526 |
-
<div class="monsterinsights-reports-panel-footer">
|
527 |
-
<a href="<?php echo $referral_url; ?>" target="_blank" title="<?php echo esc_html__( 'View Full Countries Report', 'google-analytics-for-wordpress' );?>" class="monsterinsights-reports-panel-footer-button"><?php echo esc_html__( 'View All Countries Report', 'google-analytics-for-wordpress' );?></a>
|
528 |
-
</div>
|
529 |
</div>
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
539 |
<?php
|
540 |
$i = 1;
|
541 |
-
foreach( $data['referrals'] as $ireferrals => $referralsdata ) {
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
<span class="monsterinsights-reports-list-number">'
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
$i++;
|
555 |
}
|
556 |
?>
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
</div>
|
565 |
</div>
|
566 |
-
</div>
|
567 |
</div>
|
568 |
-
|
|
|
|
|
569 |
|
570 |
-
|
|
|
571 |
<div class="monsterinsights-reports-1-column-row panel row container-fluid nopadding list-no-icons" style="position: relative;">
|
572 |
<div class="monsterinsights-reports-panel-title">
|
573 |
-
<?php echo esc_html__( 'Top Posts / Pages', 'google-analytics-for-wordpress' )
|
574 |
</div>
|
575 |
-
|
576 |
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Top Posts / Pages', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
577 |
<div id="monsterinsights-report-top-page-list" class="monsterinsights-reports-list">
|
578 |
<ul class="monsterinsights-reports-pages-list list-group">
|
579 |
<?php
|
580 |
$i = 1;
|
581 |
-
foreach( $data['toppages'] as $itoppages => $toppagesdata ) {
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
$i++;
|
600 |
}
|
601 |
?>
|
602 |
</ul>
|
603 |
</div>
|
604 |
-
<?php
|
605 |
-
$referral_url = 'https://analytics.google.com/analytics/web/#report/content-pages/'. MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data );
|
606 |
?>
|
607 |
<div class="monsterinsights-reports-panel-footer monsterinsights-reports-panel-footer-large">
|
608 |
-
<?php echo esc_html__( 'Show', 'google-analytics-for-wordpress' )
|
609 |
-
<div class="monsterinsights-reports-show-selector-group btn-group" role="group" aria-label="<?php echo esc_html__( 'How many to show', 'google-analytics-for-wordpress' )
|
610 |
-
|
611 |
-
|
612 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
</div>
|
614 |
-
<a href="<?php echo $referral_url; ?>" target="_blank" title="<?php echo esc_html__( 'View Full Post/Page Report', 'google-analytics-for-wordpress' )
|
615 |
</div>
|
616 |
</div>
|
617 |
-
<?php }
|
618 |
-
<?php
|
619 |
-
$html = ob_get_clean();
|
620 |
-
return $html;
|
621 |
-
}
|
622 |
-
|
623 |
-
public function get_overview_report_js( $class = 'sessions', $data ) {
|
624 |
-
$up = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up.png';
|
625 |
-
$up2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up@2x.png';
|
626 |
-
$down = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down.png';
|
627 |
-
$down2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down@2x.png';
|
628 |
-
$uplabel = esc_attr__( 'UP', 'google-analytics-for-wordpress' );
|
629 |
-
$downlabel = esc_attr__( 'DOWN', 'google-analytics-for-wordpress' );
|
630 |
-
$descriptor = $class === 'sessions' ? esc_js( __( 'Unique', 'google-analytics-for-wordpress' ) ) . '<br />' . esc_js( __( 'Sessions', 'google-analytics-for-wordpress' ) ) : esc_js( __( 'Unique', 'google-analytics-for-wordpress' ) ) . '<br />' . esc_js( __( 'Page Views', 'google-analytics-for-wordpress' ) );
|
631 |
-
$descriptor = "'" . $descriptor . "'";
|
632 |
-
|
633 |
-
$labels = array();
|
634 |
-
foreach ( $data['timestamps'] as $timestamp ) {
|
635 |
-
$labels[] = "'" . esc_js( date_i18n( 'j M', $timestamp ) ) . "'";
|
636 |
-
}
|
637 |
-
|
638 |
-
$datapoints = array();
|
639 |
-
foreach ( $data[$class]['datapoints'] as $datapoint ) {
|
640 |
-
$datapoints[] = esc_js( $datapoint );
|
641 |
-
}
|
642 |
-
|
643 |
-
$trendpoints = array();
|
644 |
-
foreach ( $data[$class]['trendpoints'] as $trendpoint ) {
|
645 |
-
$trendpoints[] = esc_js( $trendpoint );
|
646 |
-
}
|
647 |
-
|
648 |
-
|
649 |
-
ob_start(); ?>
|
650 |
-
<div class="monsterinsights-reports-box-datagraph" style="position:relative;">
|
651 |
-
<canvas id="monsterinsights-overview-<?php echo $class;?>" width="400px" height="400px"></canvas>
|
652 |
-
<script>
|
653 |
-
jQuery(document).ready(function() {
|
654 |
-
if ( window.uorigindetected != null){
|
655 |
-
|
656 |
-
Chart.defaults.LineWithLine = Chart.defaults.line;
|
657 |
-
Chart.controllers.LineWithLine = Chart.controllers.line.extend({
|
658 |
-
draw: function(ease) {
|
659 |
-
Chart.controllers.line.prototype.draw.call(this, ease);
|
660 |
-
|
661 |
-
if (this.chart.tooltip._active && this.chart.tooltip._active.length) {
|
662 |
-
var activePoint = this.chart.tooltip._active[0],
|
663 |
-
ctx = this.chart.ctx,
|
664 |
-
x = activePoint.tooltipPosition().x,
|
665 |
-
topY = this.chart.scales['y-axis-0'].top,
|
666 |
-
bottomY = this.chart.scales['y-axis-0'].bottom;
|
667 |
-
|
668 |
-
// draw line
|
669 |
-
ctx.save();
|
670 |
-
ctx.beginPath();
|
671 |
-
ctx.moveTo(x, topY);
|
672 |
-
ctx.lineTo(x, bottomY);
|
673 |
-
ctx.lineWidth = 1;
|
674 |
-
ctx.strokeStyle = '#6db0e9';
|
675 |
-
ctx.setLineDash([10, 10]);
|
676 |
-
ctx.stroke();
|
677 |
-
ctx.restore();
|
678 |
-
}
|
679 |
-
}
|
680 |
-
});
|
681 |
-
|
682 |
-
var ctx = document.getElementById("monsterinsights-overview-<?php echo $class;?>");
|
683 |
-
var data = {
|
684 |
-
labels: [<?php echo implode( ', ', $labels ); ?>],
|
685 |
-
datasets: [
|
686 |
-
{
|
687 |
-
lineTension: 0, // ChartJS doesn't make nice curves like in the PSD so for now leaving straight on
|
688 |
-
borderColor: "#5fa6e7",
|
689 |
-
|
690 |
-
backgroundColor: "rgba( 109, 176, 233, 0.2)",
|
691 |
-
fillOpacity: 0.2,
|
692 |
-
fillColor: "rgba( 109, 176, 233, 0.2)",
|
693 |
-
|
694 |
-
pointRadius: 4,
|
695 |
-
pointBorderColor : "#3783c4",
|
696 |
-
pointBackgroundColor : "#FFF",
|
697 |
-
|
698 |
-
|
699 |
-
hoverRadius: 1,
|
700 |
-
|
701 |
-
pointHoverBackgroundColor: "#FFF",// Point background color when hovered.
|
702 |
-
pointHoverBorderColor: "#3783c4",//Point border color when hovered.
|
703 |
-
pointHoverBorderWidth: 4,//Border width of point when hovered.
|
704 |
-
pointHoverRadius: 6,//The radius of the point when hovered.
|
705 |
-
|
706 |
-
|
707 |
-
labels: [<?php echo implode( ', ', $labels ); ?>],
|
708 |
-
data: [<?php echo implode( ', ', $datapoints ); ?>],
|
709 |
-
trend: [<?php echo implode( ', ', $trendpoints ); ?>],
|
710 |
-
},
|
711 |
-
]
|
712 |
-
};
|
713 |
-
|
714 |
-
var overviewTooltips = function(tooltip) {
|
715 |
-
// Tooltip Element
|
716 |
-
var tooltipEl = jQuery('#monsterinsights-chartjs-tooltip');
|
717 |
-
if (!tooltipEl[0]) {
|
718 |
-
jQuery('body').append('<div id="monsterinsights-chartjs-tooltip" style="padding:10px;"></div>');
|
719 |
-
tooltipEl = jQuery('#monsterinsights-chartjs-tooltip');
|
720 |
-
}
|
721 |
-
// Hide if no tooltip
|
722 |
-
if (!tooltip.opacity) {
|
723 |
-
tooltipEl.css({
|
724 |
-
opacity: 0
|
725 |
-
});
|
726 |
-
jQuery('.chartjs-wrap canvas').each(function(index, el) {
|
727 |
-
jQuery(el).css('cursor', 'default');
|
728 |
-
});
|
729 |
-
return;
|
730 |
-
}
|
731 |
-
jQuery(this._chart.canvas).css('cursor', 'pointer');
|
732 |
-
|
733 |
-
// Set caret Position
|
734 |
-
tooltipEl.removeClass('above below no-transform');
|
735 |
-
if (tooltip.yAlign) {
|
736 |
-
tooltipEl.addClass(tooltip.yAlign);
|
737 |
-
} else {
|
738 |
-
tooltipEl.addClass('no-transform');
|
739 |
-
}
|
740 |
-
|
741 |
-
var label = tooltip.title[0];
|
742 |
-
var value = tooltip.title[1];
|
743 |
-
var change = tooltip.title[2];
|
744 |
-
var trend = '';
|
745 |
-
if ( change == 0 ) {
|
746 |
-
trend += '0%';
|
747 |
-
} else if ( change > 0 ) {
|
748 |
-
trend += '<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>" style="margin-right:6px"/>' + change + '%';
|
749 |
-
} else {
|
750 |
-
trend += '<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>" style="margin-right:6px"/>' + Math.abs( change ) + '%';
|
751 |
-
}
|
752 |
-
|
753 |
-
var html = '<div class="monsterinsights-reports-overview-datagraph-tooltip-container">';
|
754 |
-
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-title">' + label + '</div>';
|
755 |
-
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-number">' + value + '</div>';
|
756 |
-
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-descriptor">' + <?php echo $descriptor; ?> + '</div>';
|
757 |
-
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-trend">' + trend + '</div>';
|
758 |
-
html += '</div>';
|
759 |
-
|
760 |
-
tooltipEl.html(html);
|
761 |
-
|
762 |
-
// Find Y Location on page
|
763 |
-
var top = 0;
|
764 |
-
|
765 |
-
if (tooltip.yAlign) {
|
766 |
-
var ch = 0;
|
767 |
-
if (tooltip.caretHeight) {
|
768 |
-
ch = tooltip.caretHeight;
|
769 |
-
}
|
770 |
-
if (tooltip.yAlign == 'above') {
|
771 |
-
top = tooltip.y - ch - tooltip.caretPadding;
|
772 |
-
} else {
|
773 |
-
top = tooltip.y + ch + tooltip.caretPadding;
|
774 |
-
}
|
775 |
-
}
|
776 |
-
// Display, position, and set styles for font
|
777 |
-
tooltipEl.css({
|
778 |
-
opacity: 1,
|
779 |
-
width: tooltip.width ? (tooltip.width + 'px') : 'auto',
|
780 |
-
left: tooltip.x - 50 + 'px',
|
781 |
-
top: top + 68 +'px',
|
782 |
-
fontFamily: tooltip._fontFamily,
|
783 |
-
fontSize: tooltip.fontSize,
|
784 |
-
fontStyle: tooltip._fontStyle,
|
785 |
-
padding: tooltip.yPadding + 'px ' + tooltip.xPadding + 'px',
|
786 |
-
'z-index': 99999,
|
787 |
-
});
|
788 |
-
};
|
789 |
-
|
790 |
-
var MonsterInsightsOverview<?php echo time();?> = new Chart(ctx, {
|
791 |
-
type: 'LineWithLine',
|
792 |
-
data: data,
|
793 |
-
plugins: [{
|
794 |
-
afterRender: function () {
|
795 |
-
var parent = jQuery(".monsterinsights-overview-report-overview-graph-panel .monsterinsights-tabbed-nav-tab-title[data-tab='pageviews-tab']").hasClass('active');
|
796 |
-
if ( ! parent && '<?php echo $class; ?>' == 'pageviews' ) {
|
797 |
-
jQuery(".monsterinsights-tabbed-nav-panel.pageviews-tab").hide();
|
798 |
-
}
|
799 |
-
},
|
800 |
-
}],
|
801 |
-
options: {
|
802 |
-
legend: {
|
803 |
-
display: false,
|
804 |
-
},
|
805 |
-
hover: {
|
806 |
-
intersect: true,
|
807 |
-
},
|
808 |
-
tooltips: {
|
809 |
-
enabled: false,
|
810 |
-
yAlign: 'top',
|
811 |
-
xAlign: 'top',
|
812 |
-
intersect: false,
|
813 |
-
custom: overviewTooltips,
|
814 |
-
callbacks: {
|
815 |
-
title: function(tooltipItem, data) {
|
816 |
-
tooltipItem = tooltipItem[0];
|
817 |
-
var label = data.datasets[0].labels[tooltipItem.index];
|
818 |
-
var value = data.datasets[0].data[tooltipItem.index];
|
819 |
-
var change = data.datasets[0].trend[tooltipItem.index];
|
820 |
-
return [label,value,change];
|
821 |
-
},
|
822 |
-
label: function(tooltipItem, data) {
|
823 |
-
return '';
|
824 |
-
}
|
825 |
-
}
|
826 |
-
},
|
827 |
-
scales: {
|
828 |
-
xAxes: [{
|
829 |
-
spanGaps: true,
|
830 |
-
position: 'bottom',
|
831 |
-
gridLines: {
|
832 |
-
show: true,
|
833 |
-
color: "#f2f6fa",
|
834 |
-
},
|
835 |
-
ticks: {
|
836 |
-
fontColor: "#7f8591",
|
837 |
-
}
|
838 |
-
}],
|
839 |
-
yAxes: [{
|
840 |
-
gridLines: {
|
841 |
-
show: true,
|
842 |
-
color: "#d4e2ef",
|
843 |
-
},
|
844 |
-
ticks: {
|
845 |
-
fontColor: "#7f8591",
|
846 |
-
callback: function(value) {if (value % 1 === 0) {return value;}}
|
847 |
-
}
|
848 |
-
}]
|
849 |
-
},
|
850 |
-
animation: false,
|
851 |
-
legend : {
|
852 |
-
display: false,
|
853 |
-
},
|
854 |
-
responsive: true,
|
855 |
-
maintainAspectRatio: false,
|
856 |
-
borderWidth: 1,
|
857 |
-
}
|
858 |
-
});
|
859 |
-
}
|
860 |
-
});
|
861 |
-
</script>
|
862 |
-
</div>
|
863 |
-
<?php
|
864 |
-
$html = ob_get_clean();
|
865 |
-
return $html;
|
866 |
}
|
867 |
}
|
1 |
<?php
|
2 |
/**
|
3 |
+
* Overview Report
|
4 |
*
|
5 |
* Ensures all of the reports have a uniform class with helper functions.
|
6 |
*
|
19 |
final class MonsterInsights_Report_Overview extends MonsterInsights_Report {
|
20 |
|
21 |
public $title;
|
22 |
+
public $class = 'MonsterInsights_Report_Overview';
|
23 |
+
public $name = 'overview';
|
24 |
public $version = '1.0.0';
|
25 |
+
public $level = 'lite';
|
26 |
|
27 |
/**
|
28 |
* Primary class constructor.
|
36 |
}
|
37 |
|
38 |
// Outputs the report.
|
39 |
+
protected function get_report_html( $data = array() ) {
|
40 |
ob_start();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
|
42 |
+
$this->get_overview_top( $data );
|
43 |
+
|
44 |
+
if ( ! empty( $data['newvsreturn'] ) && ! empty( $data['devices'] ) ) { ?>
|
45 |
+
<div class="monsterinsights-reports-2-column-container row">
|
46 |
+
<div class="monsterinsights-reports-2-column-item col-md-6">
|
47 |
+
<?php $this->get_newvsreturn( $data ); ?>
|
48 |
</div>
|
49 |
+
<div class="monsterinsights-reports-2-column-item col-md-6">
|
50 |
+
<?php $this->get_devices( $data ); ?>
|
|
|
|
|
51 |
</div>
|
|
|
52 |
</div>
|
53 |
+
<?php
|
54 |
+
}
|
55 |
|
56 |
+
if ( ! empty( $data['countries'] ) && ! empty( $data['referrals'] ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
?>
|
58 |
+
<div class="monsterinsights-reports-2-column-container row">
|
59 |
+
<div class="monsterinsights-reports-2-column-item col-md-6 list-has-icons">
|
60 |
+
<?php $this->get_countries( $data ); ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
</div>
|
62 |
+
<div class="monsterinsights-reports-2-column-item col-md-6 list-has-icons">
|
63 |
+
<?php $this->get_referrals( $data ); ?>
|
|
|
64 |
</div>
|
|
|
65 |
</div>
|
66 |
+
<?php
|
67 |
+
}
|
68 |
+
|
69 |
+
$this->get_toppages( $data );
|
70 |
+
|
71 |
+
$html = ob_get_clean();
|
72 |
+
|
73 |
+
return $html;
|
74 |
+
}
|
75 |
+
|
76 |
+
public function get_overview_report_js( $class = 'sessions', $data ) {
|
77 |
+
$up = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up.png';
|
78 |
+
$up2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up@2x.png';
|
79 |
+
$down = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down.png';
|
80 |
+
$down2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down@2x.png';
|
81 |
+
$uplabel = esc_attr__( 'UP', 'google-analytics-for-wordpress' );
|
82 |
+
$downlabel = esc_attr__( 'DOWN', 'google-analytics-for-wordpress' );
|
83 |
+
$descriptor = 'sessions' === $class ? esc_js( __( 'Unique', 'google-analytics-for-wordpress' ) ) . '<br />' . esc_js( __( 'Sessions', 'google-analytics-for-wordpress' ) ) : esc_js( __( 'Unique', 'google-analytics-for-wordpress' ) ) . '<br />' . esc_js( __( 'Pageviews', 'google-analytics-for-wordpress' ) );
|
84 |
+
$descriptor = "'" . $descriptor . "'";
|
85 |
+
|
86 |
+
$labels = array();
|
87 |
+
foreach ( $data['timestamps'] as $timestamp ) {
|
88 |
+
$labels[] = "'" . esc_js( date_i18n( 'j M', $timestamp ) ) . "'";
|
89 |
+
}
|
90 |
+
|
91 |
+
$datapoints = array();
|
92 |
+
foreach ( $data[ $class ]['datapoints'] as $datapoint ) {
|
93 |
+
$datapoints[] = esc_js( $datapoint );
|
94 |
+
}
|
95 |
+
|
96 |
+
$trendpoints = array();
|
97 |
+
foreach ( $data[ $class ]['trendpoints'] as $trendpoint ) {
|
98 |
+
$trendpoints[] = esc_js( $trendpoint );
|
99 |
+
}
|
100 |
+
|
101 |
+
|
102 |
+
ob_start(); ?>
|
103 |
+
<div class="monsterinsights-reports-box-datagraph" style="position:relative;">
|
104 |
+
<canvas id="monsterinsights-overview-<?php echo $class; ?>" width="400px" height="400px"></canvas>
|
105 |
+
<script>
|
106 |
+
jQuery( document ).ready( function () {
|
107 |
+
if ( window.uorigindetected != null ) {
|
108 |
+
|
109 |
+
Chart.defaults.LineWithLine = Chart.defaults.line;
|
110 |
+
Chart.controllers.LineWithLine = Chart.controllers.line.extend( {
|
111 |
+
draw: function ( ease ) {
|
112 |
+
Chart.controllers.line.prototype.draw.call( this, ease );
|
113 |
+
|
114 |
+
if ( this.chart.tooltip._active && this.chart.tooltip._active.length ) {
|
115 |
+
var activePoint = this.chart.tooltip._active[0],
|
116 |
+
ctx = this.chart.ctx,
|
117 |
+
x = activePoint.tooltipPosition().x,
|
118 |
+
topY = this.chart.scales['y-axis-0'].top,
|
119 |
+
bottomY = this.chart.scales['y-axis-0'].bottom;
|
120 |
+
|
121 |
+
// draw line
|
122 |
+
ctx.save();
|
123 |
+
ctx.beginPath();
|
124 |
+
ctx.moveTo( x, topY );
|
125 |
+
ctx.lineTo( x, bottomY );
|
126 |
+
ctx.lineWidth = 1;
|
127 |
+
ctx.strokeStyle = '#6db0e9';
|
128 |
+
ctx.setLineDash( [10, 10] );
|
129 |
+
ctx.stroke();
|
130 |
+
ctx.restore();
|
131 |
+
}
|
132 |
+
}
|
133 |
+
} );
|
134 |
+
|
135 |
+
var ctx = document.getElementById( "monsterinsights-overview-<?php echo $class;?>" );
|
136 |
+
var data = {
|
137 |
+
labels: [<?php echo implode( ', ', $labels ); ?>],
|
138 |
+
datasets: [
|
139 |
+
{
|
140 |
+
lineTension: 0, // ChartJS doesn't make nice curves like in the PSD so for now leaving straight on
|
141 |
+
borderColor: '#5fa6e7',
|
142 |
+
|
143 |
+
backgroundColor: 'rgba( 109, 176, 233, 0.2)',
|
144 |
+
fillOpacity: 0.2,
|
145 |
+
fillColor: 'rgba( 109, 176, 233, 0.2)',
|
146 |
+
|
147 |
+
pointRadius: 4,
|
148 |
+
pointBorderColor: '#3783c4',
|
149 |
+
pointBackgroundColor: '#FFF',
|
150 |
+
|
151 |
+
|
152 |
+
hoverRadius: 1,
|
153 |
+
|
154 |
+
pointHoverBackgroundColor: '#FFF',// Point background color when hovered.
|
155 |
+
pointHoverBorderColor: '#3783c4',//Point border color when hovered.
|
156 |
+
pointHoverBorderWidth: 4,//Border width of point when hovered.
|
157 |
+
pointHoverRadius: 6,//The radius of the point when hovered.
|
158 |
+
|
159 |
+
|
160 |
+
labels: [<?php echo implode( ', ', $labels ); ?>],
|
161 |
+
data: [<?php echo implode( ', ', $datapoints ); ?>],
|
162 |
+
trend: [<?php echo implode( ', ', $trendpoints ); ?>],
|
163 |
+
},
|
164 |
+
]
|
165 |
+
};
|
166 |
+
|
167 |
+
var overviewTooltips = function ( tooltip ) {
|
168 |
+
// Tooltip Element
|
169 |
+
var tooltipEl = jQuery( '#monsterinsights-chartjs-tooltip' );
|
170 |
+
if ( ! tooltipEl[0] ) {
|
171 |
+
jQuery( 'body' ).append( '<div id="monsterinsights-chartjs-tooltip" style="padding:10px;"></div>' );
|
172 |
+
tooltipEl = jQuery( '#monsterinsights-chartjs-tooltip' );
|
173 |
+
}
|
174 |
+
// Hide if no tooltip
|
175 |
+
if ( ! tooltip.opacity ) {
|
176 |
+
tooltipEl.css( {
|
177 |
+
opacity: 0
|
178 |
+
} );
|
179 |
+
jQuery( '.chartjs-wrap canvas' ).each( function ( index, el ) {
|
180 |
+
jQuery( el ).css( 'cursor', 'default' );
|
181 |
+
} );
|
182 |
return;
|
183 |
+
}
|
184 |
+
jQuery( this._chart.canvas ).css( 'cursor', 'pointer' );
|
185 |
+
|
186 |
+
// Set caret Position
|
187 |
+
tooltipEl.removeClass( 'above below no-transform' );
|
188 |
+
if ( tooltip.yAlign ) {
|
189 |
+
tooltipEl.addClass( tooltip.yAlign );
|
190 |
+
} else {
|
191 |
+
tooltipEl.addClass( 'no-transform' );
|
192 |
+
}
|
193 |
+
|
194 |
+
var label = tooltip.title[0];
|
195 |
+
var value = tooltip.title[1];
|
196 |
+
var change = tooltip.title[2];
|
197 |
+
var trend = '';
|
198 |
+
if ( change == 0 ) {
|
199 |
+
trend += '0%';
|
200 |
+
} else if ( change > 0 ) {
|
201 |
+
trend += '<img src="<?php echo esc_url( $up ); ?>"';
|
202 |
+
trend += 'srcset="<?php echo esc_url( $up2x ); ?> 2x"';
|
203 |
+
trend += 'alt="<?php echo esc_attr( $uplabel ); ?>" style="margin-right:6px"/>' + change + '%';
|
204 |
+
} else {
|
205 |
+
trend += '<img src="<?php echo esc_url( $down ); ?>"';
|
206 |
+
trend += 'srcset="<?php echo esc_url( $down2x ); ?> 2x"';
|
207 |
+
trend += 'alt="<?php echo esc_attr( $downlabel ); ?>" style="margin-right:6px"/>' + Math.abs( change ) + '%';
|
208 |
+
}
|
209 |
+
|
210 |
+
var html = '<div class="monsterinsights-reports-overview-datagraph-tooltip-container">';
|
211 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-title">' + label + '</div>';
|
212 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-number">' + value + '</div>';
|
213 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-descriptor">' + <?php echo wp_kses_post( $descriptor ); ?> + '</div>';
|
214 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-trend">' + trend + '</div>';
|
215 |
+
html += '</div>';
|
216 |
+
|
217 |
+
tooltipEl.html( html );
|
218 |
+
|
219 |
+
// Find Y Location on page
|
220 |
+
var top = 0;
|
221 |
+
|
222 |
+
if ( tooltip.yAlign ) {
|
223 |
var ch = 0;
|
224 |
+
if ( tooltip.caretHeight ) {
|
225 |
+
ch = tooltip.caretHeight;
|
226 |
}
|
227 |
+
if ( tooltip.yAlign == 'above' ) {
|
228 |
+
top = tooltip.y - ch - tooltip.caretPadding;
|
229 |
} else {
|
230 |
+
top = tooltip.y + ch + tooltip.caretPadding;
|
231 |
}
|
232 |
+
}
|
233 |
+
// Display, position, and set styles for font
|
234 |
+
tooltipEl.css( {
|
235 |
opacity: 1,
|
236 |
+
width: tooltip.width ? (
|
237 |
+
tooltip.width + 'px'
|
238 |
+
) : 'auto',
|
239 |
left: tooltip.x - 50 + 'px',
|
240 |
+
top: top + 68 + 'px',
|
241 |
fontFamily: tooltip._fontFamily,
|
242 |
fontSize: tooltip.fontSize,
|
243 |
fontStyle: tooltip._fontStyle,
|
244 |
padding: tooltip.yPadding + 'px ' + tooltip.xPadding + 'px',
|
245 |
'z-index': 99999,
|
246 |
+
} );
|
247 |
+
};
|
248 |
+
|
249 |
+
var MonsterInsightsOverview<?php echo time();?> = new Chart( ctx, {
|
250 |
+
type: 'LineWithLine',
|
251 |
+
data: data,
|
252 |
+
plugins: [
|
253 |
+
{
|
254 |
+
afterRender: function () {
|
255 |
+
var parent = jQuery( '.monsterinsights-overview-report-overview-graph-panel .monsterinsights-tabbed-nav-tab-title[data-tab=\'pageviews-tab\']' ).hasClass( 'active' );
|
256 |
+
if ( ! parent && '<?php echo $class; ?>' == 'pageviews' ) {
|
257 |
+
jQuery( '.monsterinsights-tabbed-nav-panel.pageviews-tab' ).hide();
|
258 |
+
}
|
259 |
+
},
|
260 |
+
}
|
261 |
+
],
|
262 |
+
options: {
|
263 |
+
legend: {
|
264 |
+
display: false,
|
265 |
+
},
|
266 |
+
hover: {
|
267 |
+
intersect: true,
|
268 |
+
},
|
269 |
+
tooltips: {
|
270 |
+
enabled: false,
|
271 |
+
yAlign: 'top',
|
272 |
+
xAlign: 'top',
|
273 |
+
intersect: false,
|
274 |
+
custom: overviewTooltips,
|
275 |
+
callbacks: {
|
276 |
+
title: function ( tooltipItem, data ) {
|
277 |
+
tooltipItem = tooltipItem[0];
|
278 |
+
var label = data.datasets[0].labels[tooltipItem.index];
|
279 |
+
var value = data.datasets[0].data[tooltipItem.index];
|
280 |
+
var change = data.datasets[0].trend[tooltipItem.index];
|
281 |
+
return [label, value, change];
|
282 |
+
},
|
283 |
+
label: function ( tooltipItem, data ) {
|
284 |
+
return '';
|
285 |
+
}
|
286 |
+
}
|
287 |
+
},
|
288 |
+
scales: {
|
289 |
+
xAxes: [
|
290 |
+
{
|
291 |
+
spanGaps: true,
|
292 |
+
position: 'bottom',
|
293 |
+
gridLines: {
|
294 |
+
show: true,
|
295 |
+
color: '#f2f6fa',
|
296 |
+
},
|
297 |
+
ticks: {
|
298 |
+
fontColor: '#7f8591',
|
299 |
+
}
|
300 |
+
}
|
301 |
+
],
|
302 |
+
yAxes: [
|
303 |
+
{
|
304 |
+
gridLines: {
|
305 |
+
show: true,
|
306 |
+
color: '#d4e2ef',
|
307 |
+
},
|
308 |
+
ticks: {
|
309 |
+
fontColor: '#7f8591',
|
310 |
+
callback: function ( value ) {
|
311 |
+
if ( value % 1 === 0 ) {
|
312 |
+
return value;
|
313 |
+
}
|
314 |
+
}
|
315 |
+
}
|
316 |
+
}
|
317 |
+
]
|
318 |
+
},
|
319 |
+
animation: false,
|
320 |
+
legend: {
|
321 |
+
display: false,
|
322 |
+
},
|
323 |
+
responsive: true,
|
324 |
+
maintainAspectRatio: false,
|
325 |
+
borderWidth: 1,
|
326 |
+
}
|
327 |
+
} );
|
328 |
+
}
|
329 |
+
} );
|
330 |
+
</script>
|
331 |
+
</div>
|
332 |
+
<?php
|
333 |
+
$html = ob_get_clean();
|
334 |
+
|
335 |
+
return $html;
|
336 |
+
}
|
337 |
+
|
338 |
+
/**
|
339 |
+
* Merge the 2 top reports into one for easier grabbing in the dashboard widget.
|
340 |
+
*
|
341 |
+
* @param array $data The data from GA.
|
342 |
+
*/
|
343 |
+
public function get_overview_top( $data ) {
|
344 |
+
$this->get_overviewgraph( $data );
|
345 |
+
$this->get_infobox( $data );
|
346 |
+
}
|
347 |
+
|
348 |
+
public function get_overviewgraph( $data ) {
|
349 |
+
if ( ! empty( $data['overviewgraph']['count'] ) && $data['overviewgraph']['count'] > 0 ) {
|
350 |
+
?>
|
351 |
+
<div class="monsterinsights-overview-report-overview-graph-panel panel panel-default chart-panel">
|
352 |
+
<ul class="monsterinsights-tabbed-nav nav nav-tabs nav-justified">
|
353 |
+
<li role="presentation" class="monsterinsights-tabbed-nav-tab-title monsterinsights-clear active" data-tab="sessions-tab">
|
354 |
+
<a href="#sessions-tab"><span class="monsterinsights-user-icon"></span>
|
355 |
+
<?php echo esc_html__( 'Sessions', 'google-analytics-for-wordpress' ); ?>
|
356 |
+
</a>
|
357 |
+
</li>
|
358 |
+
<li role="presentation" class="monsterinsights-tabbed-nav-tab-title monsterinsights-clear" data-tab="pageviews-tab">
|
359 |
+
<a href="#pageviews-tab"><span class="monsterinsights-eye-icon"> </span>
|
360 |
+
<?php echo esc_html__( 'Pageviews', 'google-analytics-for-wordpress' ); ?>
|
361 |
+
</a>
|
362 |
+
</ul>
|
363 |
+
|
364 |
+
<div class="monsterinsights-tabbed-nav-panel sessions-tab">
|
365 |
+
<div class="panel-body">
|
366 |
+
<?php echo $this->get_overview_report_js( 'sessions', $data['overviewgraph'] ); ?>
|
367 |
+
</div>
|
368 |
+
</div>
|
369 |
+
<div class="monsterinsights-tabbed-nav-panel pageviews-tab">
|
370 |
+
<div class="panel-body">
|
371 |
+
<?php echo $this->get_overview_report_js( 'pageviews', $data['overviewgraph'] ); ?>
|
372 |
+
</div>
|
373 |
+
</div>
|
374 |
+
<div id="monsterinsights-chartjs-tooltip" style="opacity: 0"></div>
|
375 |
+
</div>
|
376 |
+
<?php }
|
377 |
+
}
|
378 |
+
|
379 |
+
public function get_infobox( $data ) {
|
380 |
+
if ( ! empty( $data['infobox'] ) ) {
|
381 |
+
$up = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up.png';
|
382 |
+
$up2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up@2x.png';
|
383 |
+
$down = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down.png';
|
384 |
+
$down2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down@2x.png';
|
385 |
+
$upred = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up-red.png';
|
386 |
+
$upred2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/up-red@2x.png';
|
387 |
+
$downgrn = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down-green.png';
|
388 |
+
$downgrn2x = MONSTERINSIGHTS_PLUGIN_URL . 'assets/images/down-green@2x.png';
|
389 |
+
$uplabel = esc_attr__( 'Up', 'google-analytics-for-wordpress' );
|
390 |
+
$downlabel = esc_attr__( 'Down', 'google-analytics-for-wordpress' );
|
391 |
+
?>
|
392 |
+
<div class="monsterinsights-overview-report-infobox-panel panel row container-fluid">
|
393 |
+
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
394 |
+
<div class="monsterinsights-reports-infobox-title">
|
395 |
+
<?php echo esc_html__( 'Sessions', 'google-analytics-for-wordpress' ); ?>
|
396 |
+
</div>
|
397 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Session', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
398 |
+
<div class="monsterinsights-reports-infobox-number">
|
399 |
+
<?php echo esc_html( number_format_i18n( $data['infobox']['sessions']['value'] ) ); ?>
|
400 |
+
</div>
|
401 |
+
<?php if ( empty( $data['infobox']['sessions']['prev'] ) ) { ?>
|
402 |
+
<div class="monsterinsights-reports-infobox-prev">
|
403 |
+
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
404 |
+
</div>
|
405 |
+
<?php } else if ( $data['infobox']['sessions']['prev'] > 0 ) { ?>
|
406 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-up">
|
407 |
+
<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
408 |
+
<?php echo esc_html( $data['infobox']['sessions']['prev'] ) . '%'; ?>
|
409 |
+
</div>
|
410 |
+
<?php } else { ?>
|
411 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-down">
|
412 |
+
<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
413 |
+
<?php echo esc_html( absint( $data['infobox']['sessions']['prev'] ) ) . '%'; ?>
|
414 |
+
</div>
|
415 |
+
<?php } ?>
|
416 |
+
<div class="monsterinsights-reports-infobox-compare">
|
417 |
+
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
418 |
+
</div>
|
419 |
+
</div>
|
420 |
+
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
421 |
+
<div class="monsterinsights-reports-infobox-title">
|
422 |
+
<?php echo esc_html__( 'Pageviews', 'google-analytics-for-wordpress' ); ?>
|
423 |
+
</div>
|
424 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Pageviews', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
425 |
+
<div class="monsterinsights-reports-infobox-number">
|
426 |
+
<?php echo esc_html( number_format_i18n( $data['infobox']['pageviews']['value'] ) ); ?>
|
427 |
+
</div>
|
428 |
+
<?php if ( empty( $data['infobox']['pageviews']['prev'] ) ) { ?>
|
429 |
+
<div class="monsterinsights-reports-infobox-prev">
|
430 |
+
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
431 |
+
</div>
|
432 |
+
<?php } else if ( $data['infobox']['pageviews']['prev'] > 0 ) { ?>
|
433 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-up">
|
434 |
+
<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
435 |
+
<?php echo esc_html( $data['infobox']['pageviews']['prev'] ) . '%'; ?>
|
436 |
+
</div>
|
437 |
+
<?php } else { ?>
|
438 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-down">
|
439 |
+
<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
440 |
+
<?php echo esc_html( absint( $data['infobox']['pageviews']['prev'] ) ) . '%'; ?>
|
441 |
+
</div>
|
442 |
+
<?php } ?>
|
443 |
+
<div class="monsterinsights-reports-infobox-compare">
|
444 |
+
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
445 |
+
</div>
|
446 |
+
</div>
|
447 |
+
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
448 |
+
<div class="monsterinsights-reports-infobox-title">
|
449 |
+
<?php echo esc_html__( 'Avg. Session Duration', 'google-analytics-for-wordpress' ); ?>
|
450 |
+
</div>
|
451 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Average Session Duration', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
452 |
+
<div class="monsterinsights-reports-infobox-number">
|
453 |
+
<?php echo esc_html( $data['infobox']['duration']['value'] ); ?>
|
454 |
+
</div>
|
455 |
+
<?php if ( empty( $data['infobox']['duration']['prev'] ) ) { ?>
|
456 |
+
<div class="monsterinsights-reports-infobox-prev">
|
457 |
+
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
458 |
+
</div>
|
459 |
+
<?php } else if ( $data['infobox']['duration']['prev'] > 0 ) { ?>
|
460 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-up">
|
461 |
+
<img src="<?php echo $up; ?>" srcset="<?php echo $up2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
462 |
+
<?php echo esc_html( $data['infobox']['duration']['prev'] ) . '%'; ?>
|
463 |
+
</div>
|
464 |
+
<?php } else { ?>
|
465 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-down">
|
466 |
+
<img src="<?php echo $down; ?>" srcset="<?php echo $down2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
467 |
+
<?php echo esc_html( absint( $data['infobox']['duration']['prev'] ) ) . '%'; ?>
|
468 |
+
</div>
|
469 |
+
<?php } ?>
|
470 |
+
<div class="monsterinsights-reports-infobox-compare">
|
471 |
+
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
472 |
+
</div>
|
473 |
+
</div>
|
474 |
+
<div class="monsterinsights-reports-infobox col-md-3 col-xs-6">
|
475 |
+
<div class="monsterinsights-reports-infobox-title">
|
476 |
+
<?php echo esc_html__( 'Bounce Rate', 'google-analytics-for-wordpress' ); ?>
|
477 |
+
</div>
|
478 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Bounce Rate', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
479 |
+
<div class="monsterinsights-reports-infobox-number">
|
480 |
+
<?php echo esc_html( $data['infobox']['bounce']['value'] ) . '%'; ?>
|
481 |
+
</div>
|
482 |
+
<?php if ( empty( $data['infobox']['bounce']['prev'] ) ) { ?>
|
483 |
+
<div class="monsterinsights-reports-infobox-prev">
|
484 |
+
<?php echo esc_html__( 'No change', 'google-analytics-for-wordpress' ); ?>
|
485 |
+
</div>
|
486 |
+
<?php } else if ( $data['infobox']['bounce']['prev'] > 0 ) { ?>
|
487 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-up monsterinsights-reports-infobox-red">
|
488 |
+
<img src="<?php echo $upred; ?>" srcset="<?php echo $upred2x; ?> 2x" alt="<?php echo $uplabel; ?>"/>
|
489 |
+
<?php echo esc_html( $data['infobox']['bounce']['prev'] ) . '%'; ?>
|
490 |
+
</div>
|
491 |
+
<?php } else { ?>
|
492 |
+
<div class="monsterinsights-reports-infobox-prev monsterinsights-reports-infobox-down monsterinsights-reports-infobox-green">
|
493 |
+
<img src="<?php echo $downgrn; ?>" srcset="<?php echo $downgrn2x; ?> 2x" alt="<?php echo $downlabel; ?>"/>
|
494 |
+
<?php echo esc_html( absint( $data['infobox']['bounce']['prev'] ) ) . '%'; ?>
|
495 |
+
</div>
|
496 |
+
<?php } ?>
|
497 |
+
<div class="monsterinsights-reports-infobox-compare">
|
498 |
+
<?php echo sprintf( esc_html__( 'vs. Previous %s Days', 'google-analytics-for-wordpress' ), $data['infobox']['range'] ); ?>
|
499 |
+
</div>
|
500 |
+
</div>
|
501 |
+
</div>
|
502 |
+
<?php }
|
503 |
+
}
|
504 |
+
|
505 |
+
public function get_newvsreturn( $data ) {
|
506 |
+
if ( ! empty( $data['newvsreturn'] ) ) {
|
507 |
+
?>
|
508 |
+
<div class="monsterinsights-reports-2-column-panel panel monsterinsights-pie-chart-panel chart-panel">
|
509 |
+
<div class="monsterinsights-reports-panel-title">
|
510 |
+
<?php echo esc_html__( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ); ?>
|
511 |
+
</div>
|
512 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
513 |
+
<div class="monsterinsights-reports-pie-graph monsterinsights-clear">
|
514 |
+
<div id="monsterinsights-chartjs-pie-returning-tooltip" style="opacity: 0"></div>
|
515 |
+
<canvas id="monsterinsights-reports-returning-visitor-chart" width="200px" height="200px" style="max-width:200px;max-height:200px"></canvas>
|
516 |
+
<script type="text/javascript">
|
517 |
+
jQuery( document ).ready( function () {
|
518 |
+
if ( window.uorigindetected != null ) {
|
519 |
+
|
520 |
+
var pieTooltips = function ( tooltip ) {
|
521 |
+
// Tooltip Element
|
522 |
+
var tooltipEl = jQuery( '#monsterinsights-chartjs-pie-returning-tooltip' );
|
523 |
+
if ( ! tooltipEl[0] ) {
|
524 |
+
jQuery( 'body' ).append( '<div id="monsterinsights-chartjs-pie-returning-tooltip" style="padding:10px;"></div>' );
|
525 |
+
tooltipEl = jQuery( '#monsterinsights-chartjs-pie-returning-tooltip' );
|
526 |
+
}
|
527 |
+
// Hide if no tooltip
|
528 |
+
if ( ! tooltip.opacity ) {
|
529 |
+
tooltipEl.css( {
|
530 |
+
opacity: 0
|
531 |
+
} );
|
532 |
+
jQuery( '.chartjs-wrap canvas' ).each( function ( index, el ) {
|
533 |
+
jQuery( el ).css( 'cursor', 'default' );
|
534 |
+
} );
|
535 |
+
return;
|
536 |
+
}
|
537 |
+
jQuery( this._chart.canvas ).css( 'cursor', 'pointer' );
|
538 |
+
|
539 |
+
// Set caret Position
|
540 |
+
tooltipEl.removeClass( 'above below no-transform' );
|
541 |
+
if ( tooltip.yAlign ) {
|
542 |
+
tooltipEl.addClass( tooltip.yAlign );
|
543 |
+
} else {
|
544 |
+
tooltipEl.addClass( 'no-transform' );
|
545 |
+
}
|
546 |
+
|
547 |
+
var label = tooltip.title[0];
|
548 |
+
var value = tooltip.title[1];
|
549 |
+
|
550 |
+
var html = '<div class="monsterinsights-reports-overview-datagraph-tooltip-container">';
|
551 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-title">' + label + '</div>';
|
552 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-number">' + value + '%</div>';
|
553 |
+
html += '</div>';
|
554 |
+
|
555 |
+
tooltipEl.html( html );
|
556 |
+
|
557 |
+
// Find Y Location on page
|
558 |
+
var top = 0;
|
559 |
+
|
560 |
+
if ( tooltip.yAlign ) {
|
561 |
+
var ch = 0;
|
562 |
+
if ( tooltip.caretHeight ) {
|
563 |
+
ch = tooltip.caretHeight;
|
564 |
+
}
|
565 |
+
if ( tooltip.yAlign == 'above' ) {
|
566 |
+
top = tooltip.y - ch - tooltip.caretPadding;
|
567 |
+
} else {
|
568 |
+
top = tooltip.y + ch + tooltip.caretPadding;
|
569 |
+
}
|
570 |
+
}
|
571 |
+
// Display, position, and set styles for font
|
572 |
+
tooltipEl.css( {
|
573 |
+
opacity: 1,
|
574 |
+
width: tooltip.width ? (
|
575 |
+
tooltip.width + 'px'
|
576 |
+
) : 'auto',
|
577 |
+
left: tooltip.x - 50 + 'px',
|
578 |
+
top: top - 40 + 'px',
|
579 |
+
fontFamily: tooltip._fontFamily,
|
580 |
+
fontSize: tooltip.fontSize,
|
581 |
+
fontStyle: tooltip._fontStyle,
|
582 |
+
padding: tooltip.yPadding + 'px ' + tooltip.xPadding + 'px',
|
583 |
+
'z-index': 99999,
|
584 |
+
} );
|
585 |
+
};
|
586 |
|
587 |
var config = {
|
588 |
type: 'doughnut',
|
589 |
data: {
|
590 |
+
datasets: [
|
591 |
+
{
|
592 |
+
data: [
|
593 |
+
<?php echo esc_js( $data['newvsreturn']['new'] ); ?>,
|
594 |
+
<?php echo esc_js( $data['newvsreturn']['returning'] ); ?>,
|
595 |
+
],
|
596 |
+
backgroundColor: [
|
597 |
+
'#2077c4',
|
598 |
+
'#52a7f4'
|
599 |
+
],
|
600 |
+
}
|
601 |
+
],
|
602 |
values: [<?php echo esc_js( $data['newvsreturn']['new'] ); ?>,<?php echo esc_js( $data['newvsreturn']['returning'] ); ?> ],
|
603 |
labels: [
|
604 |
+
"<?php echo esc_js( __( 'New', 'google-analytics-for-wordpress' ) ); ?>",
|
605 |
+
"<?php echo esc_js( __( 'Returning', 'google-analytics-for-wordpress' ) ); ?>",
|
606 |
]
|
607 |
},
|
608 |
options: {
|
615 |
intersect: true,
|
616 |
custom: pieTooltips,
|
617 |
callbacks: {
|
618 |
+
title: function ( tooltipItem, data ) {
|
619 |
+
tooltipItem = tooltipItem[0];
|
620 |
+
var label = data.labels[tooltipItem.index];
|
621 |
+
var value = data.datasets[0].data[tooltipItem.index];
|
622 |
+
return [label, value];
|
623 |
+
},
|
624 |
+
label: function ( tooltipItem, data ) {
|
625 |
+
return '';
|
626 |
+
}
|
627 |
}
|
628 |
},
|
629 |
animation: false,
|
630 |
+
legendCallback: function ( chart ) {
|
631 |
var text = [];
|
632 |
+
text.push( '<ul class="' + chart.id + '-legend" style="list-style:none">' );
|
633 |
+
for ( var i = 0; i < chart.data.datasets[0].data.length; i ++ ) {
|
634 |
+
text.push( '<li style="color: #23282d;font-size: 16px;font-weight: 400;"><div style="color: #23282d;width:12px;height:12px;display:inline-block;background:' + chart.data.datasets[0].backgroundColor[i] + '" /> ' );
|
635 |
+
if ( typeof(
|
636 |
+
chart
|
637 |
+
) != 'undefined' && typeof(
|
638 |
+
chart.data
|
639 |
+
) != 'undefined' && typeof(
|
640 |
+
chart.data.labels
|
641 |
+
) != 'undefined' && typeof(
|
642 |
+
chart.data.labels[i]
|
643 |
+
) != 'undefined' ) {
|
644 |
+
text.push( chart.data.labels[i] );
|
645 |
+
}
|
646 |
+
|
647 |
+
if ( typeof(
|
648 |
+
chart
|
649 |
+
) != 'undefined' && typeof(
|
650 |
+
chart.data
|
651 |
+
) != 'undefined' && typeof(
|
652 |
+
chart.data.values
|
653 |
+
) != 'undefined' && typeof(
|
654 |
+
chart.data.values[i]
|
655 |
+
) != 'undefined' ) {
|
656 |
+
text.push( '<span class="monsterinsights-pie-chart-legend-number">' + chart.data.values[i] + '%</span>' );
|
657 |
}
|
658 |
+
text.push( '</li>' );
|
659 |
}
|
660 |
+
text.push( '</ul>' );
|
661 |
|
662 |
+
return text.join( '' );
|
663 |
},
|
664 |
legend: {display: false},
|
665 |
}
|
666 |
};
|
667 |
+
var overviewreturning = new Chart( document.getElementById( 'monsterinsights-reports-returning-visitor-chart' ).getContext( '2d' ), config );
|
668 |
+
jQuery( '.monsterinsights-reports-pie-graph-key' ).html( overviewreturning.generateLegend() );
|
669 |
}
|
670 |
+
} );
|
671 |
+
</script>
|
|
|
|
|
672 |
</div>
|
673 |
+
<div class="monsterinsights-reports-pie-graph-key"></div>
|
674 |
</div>
|
675 |
+
<?php
|
676 |
+
}
|
677 |
+
}
|
678 |
+
|
679 |
+
public function get_devices( $data ) {
|
680 |
+
if ( ! empty( $data['devices'] ) ) {
|
681 |
+
?>
|
682 |
+
<div class="monsterinsights-reports-2-column-panel panel monsterinsights-pie-chart-panel chart-panel">
|
683 |
+
<div class="monsterinsights-reports-panel-title">
|
684 |
+
<?php echo esc_html__( 'Device Breakdown', 'google-analytics-for-wordpress' ); ?>
|
685 |
+
</div>
|
686 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Device Breakdown', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
687 |
+
<div class="monsterinsights-reports-pie-graph monsterinsights-clear">
|
688 |
+
<div id="monsterinsights-chartjs-pie-devices-tooltip" style="opacity: 0"></div>
|
689 |
+
<canvas id="monsterinsights-reports-devices-chart" width="200px" height="200px" style="max-width:200px;max-height:200px"></canvas>
|
690 |
+
<script type="text/javascript">
|
691 |
+
jQuery( document ).ready( function () {
|
692 |
+
if ( window.uorigindetected != null ) {
|
693 |
+
|
694 |
+
var pieTooltips = function ( tooltip ) {
|
695 |
+
// Tooltip Element
|
696 |
+
var tooltipEl = jQuery( '#monsterinsights-chartjs-pie-devices-tooltip' );
|
697 |
+
if ( ! tooltipEl[0] ) {
|
698 |
+
jQuery( 'body' ).append( '<div id="monsterinsights-chartjs-pie-devices-tooltip" style="padding:10px;"></div>' );
|
699 |
+
tooltipEl = jQuery( '#monsterinsights-chartjs-pie-devices-tooltip' );
|
700 |
+
}
|
701 |
+
// Hide if no tooltip
|
702 |
+
if ( ! tooltip.opacity ) {
|
703 |
+
tooltipEl.css( {
|
704 |
+
opacity: 0
|
705 |
+
} );
|
706 |
+
jQuery( '.chartjs-wrap canvas' ).each( function ( index, el ) {
|
707 |
+
jQuery( el ).css( 'cursor', 'default' );
|
708 |
+
} );
|
709 |
+
return;
|
710 |
+
}
|
711 |
+
jQuery( this._chart.canvas ).css( 'cursor', 'pointer' );
|
712 |
+
|
713 |
+
// Set caret Position
|
714 |
+
tooltipEl.removeClass( 'above below no-transform' );
|
715 |
+
if ( tooltip.yAlign ) {
|
716 |
+
tooltipEl.addClass( tooltip.yAlign );
|
717 |
+
} else {
|
718 |
+
tooltipEl.addClass( 'no-transform' );
|
719 |
+
}
|
720 |
+
|
721 |
+
var label = tooltip.title[0];
|
722 |
+
var value = tooltip.title[1];
|
723 |
+
|
724 |
+
var html = '<div class="monsterinsights-reports-overview-datagraph-tooltip-container">';
|
725 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-title">' + label + '</div>';
|
726 |
+
html += '<div class="monsterinsights-reports-overview-datagraph-tooltip-number">' + value + '%</div>';
|
727 |
+
html += '</div>';
|
728 |
+
|
729 |
+
tooltipEl.html( html );
|
730 |
+
|
731 |
+
// Find Y Location on page
|
732 |
+
var top = 0;
|
733 |
+
|
734 |
+
if ( tooltip.yAlign ) {
|
735 |
+
var ch = 0;
|
736 |
+
if ( tooltip.caretHeight ) {
|
737 |
+
ch = tooltip.caretHeight;
|
738 |
+
}
|
739 |
+
if ( tooltip.yAlign == 'above' ) {
|
740 |
+
top = tooltip.y - ch - tooltip.caretPadding;
|
741 |
+
} else {
|
742 |
+
top = tooltip.y + ch + tooltip.caretPadding;
|
743 |
+
}
|
744 |
+
}
|
745 |
+
// Display, position, and set styles for font
|
746 |
+
tooltipEl.css( {
|
747 |
+
opacity: 1,
|
748 |
+
width: tooltip.width ? (
|
749 |
+
tooltip.width + 'px'
|
750 |
+
) : 'auto',
|
751 |
+
left: tooltip.x - 50 + 'px',
|
752 |
+
top: top - 40 + 'px',
|
753 |
+
fontFamily: tooltip._fontFamily,
|
754 |
+
fontSize: tooltip.fontSize,
|
755 |
+
fontStyle: tooltip._fontStyle,
|
756 |
+
padding: tooltip.yPadding + 'px ' + tooltip.xPadding + 'px',
|
757 |
+
'z-index': 99999,
|
758 |
+
} );
|
759 |
+
};
|
760 |
|
761 |
var config = {
|
762 |
type: 'doughnut',
|
763 |
data: {
|
764 |
+
datasets: [
|
765 |
+
{
|
766 |
+
data: [
|
767 |
+
<?php echo esc_js( $data['devices']['desktop'] ); ?>,
|
768 |
+
<?php echo esc_js( $data['devices']['tablet'] ); ?>,
|
769 |
+
<?php echo esc_js( $data['devices']['mobile'] ); ?>,
|
770 |
+
],
|
771 |
+
backgroundColor: [
|
772 |
+
'#2077c4',
|
773 |
+
'#52a7f4',
|
774 |
+
'#afd9ff'
|
775 |
+
],
|
776 |
+
}
|
777 |
+
],
|
778 |
values: [<?php echo esc_js( $data['devices']['desktop'] ); ?>,<?php echo esc_js( $data['devices']['tablet'] ); ?>,<?php echo esc_js( $data['devices']['mobile'] ); ?> ],
|
779 |
labels: [
|
780 |
+
"<?php echo esc_js( __( 'Desktop', 'google-analytics-for-wordpress' ) ); ?>",
|
781 |
+
"<?php echo esc_js( __( 'Tablet', 'google-analytics-for-wordpress' ) ); ?>",
|
782 |
+
"<?php echo esc_js( __( 'Mobile', 'google-analytics-for-wordpress' ) ); ?>",
|
783 |
]
|
784 |
},
|
785 |
options: {
|
792 |
intersect: true,
|
793 |
custom: pieTooltips,
|
794 |
callbacks: {
|
795 |
+
title: function ( tooltipItem, data ) {
|
796 |
+
tooltipItem = tooltipItem[0];
|
797 |
+
var label = data.labels[tooltipItem.index];
|
798 |
+
var value = data.datasets[0].data[tooltipItem.index];
|
799 |
+
return [label, value];
|
800 |
+
},
|
801 |
+
label: function ( tooltipItem, data ) {
|
802 |
+
return '';
|
803 |
+
}
|
804 |
}
|
805 |
},
|
806 |
animation: false,
|
807 |
+
legendCallback: function ( chart ) {
|
808 |
var text = [];
|
809 |
+
text.push( '<ul class="' + chart.id + '-legend" style="list-style:none">' );
|
810 |
+
for ( var i = 0; i < chart.data.datasets[0].data.length; i ++ ) {
|
811 |
+
text.push( '<li style="color: #23282d;font-size: 16px;font-weight: 400;"><div style="color: #23282d;width:12px;height:12px;display:inline-block;background:' + chart.data.datasets[0].backgroundColor[i] + '" /> ' );
|
812 |
+
if ( typeof(
|
813 |
+
chart
|
814 |
+
) != 'undefined' && typeof(
|
815 |
+
chart.data
|
816 |
+
) != 'undefined' && typeof(
|
817 |
+
chart.data.labels
|
818 |
+
) != 'undefined' && typeof(
|
819 |
+
chart.data.labels[i]
|
820 |
+
) != 'undefined' ) {
|
821 |
+
text.push( chart.data.labels[i] );
|
822 |
+
}
|
823 |
+
|
824 |
+
if ( typeof(
|
825 |
+
chart
|
826 |
+
) != 'undefined' && typeof(
|
827 |
+
chart.data
|
828 |
+
) != 'undefined' && typeof(
|
829 |
+
chart.data.values
|
830 |
+
) != 'undefined' && typeof(
|
831 |
+
chart.data.values[i]
|
832 |
+
) != 'undefined' ) {
|
833 |
+
text.push( '<span class="monsterinsights-pie-chart-legend-number">' + chart.data.values[i] + '%</span>' );
|
834 |
}
|
835 |
+
text.push( '</li>' );
|
836 |
}
|
837 |
+
text.push( '</ul>' );
|
838 |
|
839 |
+
return text.join( '' );
|
840 |
},
|
841 |
legend: {display: false},
|
842 |
}
|
843 |
};
|
844 |
+
var devicebreakdown = new Chart( document.getElementById( 'monsterinsights-reports-devices-chart' ).getContext( '2d' ), config );
|
845 |
+
jQuery( '.monsterinsights-reports-pie-visitors-graph-key' ).html( devicebreakdown.generateLegend() );
|
846 |
}
|
847 |
+
} );
|
848 |
+
</script>
|
|
|
|
|
849 |
</div>
|
850 |
+
<div class="monsterinsights-reports-pie-visitors-graph-key"></div>
|
851 |
</div>
|
852 |
+
<?php
|
853 |
+
}
|
854 |
+
}
|
855 |
|
856 |
+
public function get_countries( $data ) {
|
857 |
+
if ( ! empty( $data['newvsreturn'] ) ) {
|
858 |
+
?>
|
859 |
+
<div class="monsterinsights-reports-2-column-panel panel nopadding">
|
860 |
+
<div class="monsterinsights-reports-panel-title">
|
861 |
+
<?php echo esc_html__( 'Top 10 Countries', 'google-analytics-for-wordpress' ); ?>
|
862 |
+
</div>
|
863 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Top 10 Countries', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'This list shows the top countries your website visitors are from.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
864 |
+
<div class="monsterinsights-reports-list">
|
865 |
+
<ul class="monsterinsights-reports-country-list list-group">
|
866 |
+
<?php
|
867 |
$countries = monsterinsights_get_country_list( true );
|
868 |
+
$i = 1;
|
869 |
+
foreach ( $data['countries'] as $icountry => $countrydata ) {
|
870 |
if ( ! empty( $countries[ $countrydata['iso'] ] ) ) {
|
871 |
+
echo '<li class="list-group-item"><span class="monsterinsights-reports-list-count">' . $i . '.</span><span class="monsterinsights-reports-country-flag monsterinsights-flag-icon monsterinsights-flag-icon-' . strtolower( $countrydata['iso'] ) . ' "></span><span class="monsterinsights-reports-list-text">' . $countries[ $countrydata['iso'] ] . '</span><span class="monsterinsights-reports-list-number">' . number_format_i18n( $countrydata['sessions'] ) . '</span></li>';
|
872 |
+
} else {
|
873 |
+
echo '<li class="list-group-item"><span class="monsterinsights-reports-list-count">' . $i . '</span><span class="monsterinsights-flag-icon monsterinsights-flag-icon-' . strtolower( $countrydata['iso'] ) . ' "></span><span class="monsterinsights-reports-list-text">' . $countrydata['iso'] . '</span><span class="monsterinsights-reports-list-number">' . number_format_i18n( $countrydata['sessions'] ) . '</span></li>';
|
874 |
}
|
875 |
+
$i ++;
|
876 |
}
|
877 |
?>
|
878 |
+
</ul>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
879 |
</div>
|
880 |
+
<?php
|
881 |
+
$referral_url = 'https://analytics.google.com/analytics/web/#report/visitors-geo/' . MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data );
|
882 |
+
?>
|
883 |
+
<div class="monsterinsights-reports-panel-footer">
|
884 |
+
<a href="<?php echo $referral_url; ?>" target="_blank" title="<?php echo esc_html__( 'View Full Countries Report', 'google-analytics-for-wordpress' ); ?>" class="monsterinsights-reports-panel-footer-button"><?php echo esc_html__( 'View All Countries Report', 'google-analytics-for-wordpress' ); ?></a>
|
885 |
+
</div>
|
886 |
+
</div>
|
887 |
+
<?php
|
888 |
+
}
|
889 |
+
}
|
890 |
+
|
891 |
+
public function get_referrals( $data ) {
|
892 |
+
if ( ! empty( $data['referrals'] ) ) {
|
893 |
+
?>
|
894 |
+
<div class="monsterinsights-reports-2-column-panel panel nopadding">
|
895 |
+
<div class="monsterinsights-reports-panel-title">
|
896 |
+
<?php echo esc_html__( 'Referrals', 'google-analytics-for-wordpress' ); ?>
|
897 |
+
</div>
|
898 |
+
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Referrals', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'This list shows the top websites that send your website traffic, known as "referral traffic".', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
899 |
+
<div class="monsterinsights-reports-list">
|
900 |
+
<ul class="monsterinsights-reports-referral-list list-group">
|
901 |
<?php
|
902 |
$i = 1;
|
903 |
+
foreach ( $data['referrals'] as $ireferrals => $referralsdata ) {
|
904 |
+
echo '<li class="list-group-item">' .
|
905 |
+
'<span class="monsterinsights-reports-list-count">'
|
906 |
+
. $i .
|
907 |
+
'</span>' .
|
908 |
+
'<img class="monsterinsights-reports-referral-icon" src="https://www.google.com/s2/favicons?domain=' . $referralsdata['url'] . '" width="16px" height="16px" />' .
|
909 |
+
'<span class="monsterinsights-reports-list-text">'
|
910 |
+
. $referralsdata['url'] .
|
911 |
+
'</span>
|
912 |
<span class="monsterinsights-reports-list-number">'
|
913 |
+
. number_format_i18n( $referralsdata['sessions'] ) .
|
914 |
+
'</span>' .
|
915 |
+
'</li>';
|
916 |
+
$i ++;
|
917 |
}
|
918 |
?>
|
919 |
+
</ul>
|
920 |
+
</div>
|
921 |
+
<?php
|
922 |
+
$referral_url = 'https://analytics.google.com/analytics/web/#report/trafficsources-referrals/' . MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data );
|
923 |
+
?>
|
924 |
+
<div class="monsterinsights-reports-panel-footer">
|
925 |
+
<a href="<?php echo $referral_url; ?>" target="_blank" title="<?php echo esc_html__( 'View All Referral Sources', 'google-analytics-for-wordpress' ); ?>" class="monsterinsights-reports-panel-footer-button"><?php echo esc_html__( 'View All Referral Sources', 'google-analytics-for-wordpress' ); ?></a>
|
|
|
926 |
</div>
|
|
|
927 |
</div>
|
928 |
+
<?php
|
929 |
+
}
|
930 |
+
}
|
931 |
|
932 |
+
public function get_toppages( $data ) {
|
933 |
+
if ( ! empty( $data['toppages'] ) ) { ?>
|
934 |
<div class="monsterinsights-reports-1-column-row panel row container-fluid nopadding list-no-icons" style="position: relative;">
|
935 |
<div class="monsterinsights-reports-panel-title">
|
936 |
+
<?php echo esc_html__( 'Top Posts / Pages', 'google-analytics-for-wordpress' ); ?>
|
937 |
</div>
|
938 |
+
|
939 |
<div class="monsterinsights-reports-uright-tooltip" data-tooltip-title="<?php echo esc_attr( __( 'Top Posts / Pages', 'google-analytics-for-wordpress' ) ); ?>" data-tooltip-description="<?php echo esc_attr( __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ) ); ?>"></div>
|
940 |
<div id="monsterinsights-report-top-page-list" class="monsterinsights-reports-list">
|
941 |
<ul class="monsterinsights-reports-pages-list list-group">
|
942 |
<?php
|
943 |
$i = 1;
|
944 |
+
foreach ( $data['toppages'] as $itoppages => $toppagesdata ) {
|
945 |
+
$hide = $i > 10 ? ' style="display: none;" ' : '';
|
946 |
+
$protocol = is_ssl() ? 'https://' : 'http://';
|
947 |
+
$opening = ! empty( $toppagesdata['url'] ) && ! empty( $toppagesdata['hostname'] ) ? '<a href="' . $protocol . esc_attr( $toppagesdata['hostname'] . $toppagesdata['url'] ) . '" target="_blank">' : '';
|
948 |
+
$closing = ! empty( $opening ) ? '</a>' : '';
|
949 |
+
echo '<li class="list-group-item monsterinsights-listing-table-row"' . $hide . '>' .
|
950 |
+
'<span class="monsterinsights-reports-list-count">'
|
951 |
+
. $i .
|
952 |
+
'. </span> ' .
|
953 |
+
'<span class="monsterinsights-reports-list-text">'
|
954 |
+
. $opening
|
955 |
+
. $toppagesdata['title']
|
956 |
+
. $closing .
|
957 |
+
'</span>' .
|
958 |
+
'<span class="monsterinsights-reports-list-number">' .
|
959 |
+
number_format_i18n( $toppagesdata['sessions'] ) .
|
960 |
+
'</span>' .
|
961 |
+
'</li>';
|
962 |
+
$i ++;
|
963 |
}
|
964 |
?>
|
965 |
</ul>
|
966 |
</div>
|
967 |
+
<?php
|
968 |
+
$referral_url = 'https://analytics.google.com/analytics/web/#report/content-pages/' . MonsterInsights()->auth->get_referral_url() . $this->get_ga_report_range( $data );
|
969 |
?>
|
970 |
<div class="monsterinsights-reports-panel-footer monsterinsights-reports-panel-footer-large">
|
971 |
+
<?php echo esc_html__( 'Show', 'google-analytics-for-wordpress' ); ?>
|
972 |
+
<div class="monsterinsights-reports-show-selector-group btn-group" role="group" aria-label="<?php echo esc_html__( 'How many to show', 'google-analytics-for-wordpress' ); ?>">
|
973 |
+
<button type="button" data-tid="monsterinsights-report-top-page-list" class="monsterinsights-reports-show-selector-button ten btn btn-default active" disabled="disabled">
|
974 |
+
10
|
975 |
+
</button>
|
976 |
+
<button type="button" data-tid="monsterinsights-report-top-page-list" class="monsterinsights-reports-show-selector-button twentyfive btn btn-default">
|
977 |
+
25
|
978 |
+
</button>
|
979 |
+
<button type="button" data-tid="monsterinsights-report-top-page-list" class="monsterinsights-reports-show-selector-button fifty btn btn-default">
|
980 |
+
50
|
981 |
+
</button>
|
982 |
</div>
|
983 |
+
<a href="<?php echo $referral_url; ?>" target="_blank" title="<?php echo esc_html__( 'View Full Post/Page Report', 'google-analytics-for-wordpress' ); ?>" class="monsterinsights-reports-panel-footer-button alignright" style="margin-right: 20px;"><?php echo esc_html__( 'View Full Post/Page Report', 'google-analytics-for-wordpress' ); ?></a>
|
984 |
</div>
|
985 |
</div>
|
986 |
+
<?php }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
987 |
}
|
988 |
}
|
includes/admin/settings/register-settings.php
CHANGED
@@ -212,13 +212,13 @@ function monsterinsights_get_registered_settings() {
|
|
212 |
'allow_anchor' => array(
|
213 |
'id' => 'allow_anchor',
|
214 |
'name' => __( 'Turn on allowAnchor', 'google-analytics-for-wordpress' ),
|
215 |
-
'desc' => sprintf( esc_html__( 'This adds a %1$s call to your tracking code, and makes RSS link tagging use a %2$s as well.', 'google-analytics-for-wordpress' ), '<a href="https://developers.google.com/analytics/devguides/collection/
|
216 |
'type' => 'checkbox',
|
217 |
),
|
218 |
'add_allow_linker' => array(
|
219 |
'id' => 'add_allow_linker',
|
220 |
'name' => __( 'Turn on allowLinker', 'google-analytics-for-wordpress' ),
|
221 |
-
'desc' => sprintf( esc_html__( 'This adds a %1$s call to your tracking code, allowing you to use %2$s and related functions.', 'google-analytics-for-wordpress' ), '<a href="https://developers.google.com/analytics/devguides/collection/
|
222 |
'type' => 'checkbox',
|
223 |
),
|
224 |
'tag_links_in_rss' => array(
|
@@ -336,7 +336,7 @@ function monsterinsights_get_registered_settings() {
|
|
336 |
'custom_code' => array(
|
337 |
'id' => 'custom_code',
|
338 |
'name' => __( 'Custom code', 'google-analytics-for-wordpress' ),
|
339 |
-
'desc' => sprintf( esc_html__( 'Not for the average user: this allows you to add a line of code, to be added before the %1$s call.', 'google-analytics-for-wordpress' ), '<a href="https://developers.google.com/analytics/devguides/collection/
|
340 |
'type' => 'unfiltered_textarea',
|
341 |
),
|
342 |
'debug_mode' => array(
|
212 |
'allow_anchor' => array(
|
213 |
'id' => 'allow_anchor',
|
214 |
'name' => __( 'Turn on allowAnchor', 'google-analytics-for-wordpress' ),
|
215 |
+
'desc' => sprintf( esc_html__( 'This adds a %1$s call to your tracking code, and makes RSS link tagging use a %2$s as well.', 'google-analytics-for-wordpress' ), '<a href="https://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#allowAnchor" target="_blank" rel="noopener noreferrer" referrer="no-referrer"><code>_setAllowAnchor</code></a>', '<code>#</code>' ),
|
216 |
'type' => 'checkbox',
|
217 |
),
|
218 |
'add_allow_linker' => array(
|
219 |
'id' => 'add_allow_linker',
|
220 |
'name' => __( 'Turn on allowLinker', 'google-analytics-for-wordpress' ),
|
221 |
+
'desc' => sprintf( esc_html__( 'This adds a %1$s call to your tracking code, allowing you to use %2$s and related functions.', 'google-analytics-for-wordpress' ), '<a href="https://developers.google.com/analytics/devguides/collection/analyticsjs/linker#configuring_a_site_to_accept_linker_parameters" target="_blank" rel="noopener noreferrer" referrer="no-referrer"><code>_setAllowLinker</code></a>', ' <code>_link</code>' ),
|
222 |
'type' => 'checkbox',
|
223 |
),
|
224 |
'tag_links_in_rss' => array(
|
336 |
'custom_code' => array(
|
337 |
'id' => 'custom_code',
|
338 |
'name' => __( 'Custom code', 'google-analytics-for-wordpress' ),
|
339 |
+
'desc' => sprintf( esc_html__( 'Not for the average user: this allows you to add a line of code, to be added before the %1$s call.', 'google-analytics-for-wordpress' ), '<a href="https://developers.google.com/analytics/devguides/collection/analyticsjs/pages#implementation" target="_blank" rel="noopener noreferrer" referrer="no-referrer"><code>_trackPageview</code></a>' ),
|
340 |
'type' => 'unfiltered_textarea',
|
341 |
),
|
342 |
'debug_mode' => array(
|
includes/admin/tracking.php
CHANGED
@@ -82,6 +82,7 @@ class MonsterInsights_Tracking {
|
|
82 |
$data['url'] = home_url();
|
83 |
$data['themename'] = $theme_data->Name;
|
84 |
$data['themeversion'] = $theme_data->Version;
|
|
|
85 |
$data['key'] = monsterinsights_get_license_key();
|
86 |
$data['sas'] = monsterinsights_get_shareasale_id();
|
87 |
$data['settings'] = monsterinsights_get_options();
|
@@ -94,6 +95,8 @@ class MonsterInsights_Tracking {
|
|
94 |
$data['usercount'] = function_exists( 'get_user_count' ) ? get_user_count() : 'Not Set';
|
95 |
$data['usesauth'] = $usesauth;
|
96 |
$data['timezoneoffset']= date('P');
|
|
|
|
|
97 |
|
98 |
|
99 |
|
82 |
$data['url'] = home_url();
|
83 |
$data['themename'] = $theme_data->Name;
|
84 |
$data['themeversion'] = $theme_data->Version;
|
85 |
+
$data['email'] = get_bloginfo( 'admin_email' );
|
86 |
$data['key'] = monsterinsights_get_license_key();
|
87 |
$data['sas'] = monsterinsights_get_shareasale_id();
|
88 |
$data['settings'] = monsterinsights_get_options();
|
95 |
$data['usercount'] = function_exists( 'get_user_count' ) ? get_user_count() : 'Not Set';
|
96 |
$data['usesauth'] = $usesauth;
|
97 |
$data['timezoneoffset']= date('P');
|
98 |
+
$data['installed_lite']= get_option( 'monsterinsights_installed_lite', array() );
|
99 |
+
$data['installed_pro'] = get_option( 'monsterinsights_installed_pro', array() );
|
100 |
|
101 |
|
102 |
|
includes/frontend/tracking/class-tracking-analytics.php
CHANGED
@@ -215,6 +215,7 @@ class MonsterInsights_Tracking_Analytics extends MonsterInsights_Tracking_Abstra
|
|
215 |
} ?>
|
216 |
<?php if ( $ua ) { ?>
|
217 |
<script<?php echo $attr_string;?>>
|
|
|
218 |
var mi_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
|
219 |
var mi_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
|
220 |
<?php do_action( 'monsterinsights_tracking_analytics_frontend_output_after_mi_track_user' ); ?>
|
215 |
} ?>
|
216 |
<?php if ( $ua ) { ?>
|
217 |
<script<?php echo $attr_string;?>>
|
218 |
+
var mi_version = '<?php echo MONSTERINSIGHTS_VERSION; ?>';
|
219 |
var mi_track_user = <?php echo ( $track_user ? 'true' : 'false' ); ?>;
|
220 |
var mi_no_track_reason = <?php echo ( $reason ? "'" . esc_js( $reason) . "'": "''" ); ?>;
|
221 |
<?php do_action( 'monsterinsights_tracking_analytics_frontend_output_after_mi_track_user' ); ?>
|
includes/install.php
CHANGED
@@ -780,7 +780,7 @@ class MonsterInsights_Install {
|
|
780 |
|
781 |
}
|
782 |
|
783 |
-
public function
|
784 |
// 1. remove old API keys from MI settings & manual UA code
|
785 |
// 2. Comprehensively review old settings and meta keys from pre-relay and consider removing them
|
786 |
// 3. Consider removing all install back compat to yoast.
|
780 |
|
781 |
}
|
782 |
|
783 |
+
public function v720_upgrades() {
|
784 |
// 1. remove old API keys from MI settings & manual UA code
|
785 |
// 2. Comprehensively review old settings and meta keys from pre-relay and consider removing them
|
786 |
// 3. Consider removing all install back compat to yoast.
|
includes/options.php
CHANGED
@@ -94,7 +94,7 @@ function monsterinsights_get_ua() {
|
|
94 |
* @return string The UA to use.
|
95 |
*/
|
96 |
function monsterinsights_get_network_ua() {
|
97 |
-
if ( is_multisite() ) {
|
98 |
return '';
|
99 |
}
|
100 |
|
94 |
* @return string The UA to use.
|
95 |
*/
|
96 |
function monsterinsights_get_network_ua() {
|
97 |
+
if ( ! is_multisite() ) {
|
98 |
return '';
|
99 |
}
|
100 |
|
languages/google-analytics-for-wordpress.pot
CHANGED
@@ -1,2634 +1,2667 @@
|
|
1 |
-
#, fuzzy
|
2 |
-
msgid ""
|
3 |
-
msgstr ""
|
4 |
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
-
"Project-Id-Version: MonsterInsights Lite\n"
|
6 |
-
"Report-Msgid-Bugs-To: https://github.com/awesomemotive/monsterinsights/issues\n"
|
7 |
-
"POT-Creation-Date: 2018-
|
8 |
-
"PO-Revision-Date: 2016-07-21 17:01-0400\n"
|
9 |
-
"Last-Translator: Chris Christoff <support@monsterinsights.com>\n"
|
10 |
-
"Language-Team: Chris Christoff <support@monsterinsights.com>\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 2.
|
15 |
-
"X-Poedit-Basepath: ..\n"
|
16 |
-
"X-Poedit-WPHeader: googleanalytics.php\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
-
"X-Poedit-SearchPath-0: .\n"
|
20 |
-
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
-
"X-Poedit-SearchPathExcluded-1: .roboci\n"
|
22 |
-
"X-Poedit-SearchPathExcluded-2: assets\n"
|
23 |
-
"X-Poedit-SearchPathExcluded-3: bin\n"
|
24 |
-
"X-Poedit-SearchPathExcluded-4: build\n"
|
25 |
-
"X-Poedit-SearchPathExcluded-5: docs\n"
|
26 |
-
"X-Poedit-SearchPathExcluded-6: phpdox\n"
|
27 |
-
"X-Poedit-SearchPathExcluded-7: tests\n"
|
28 |
-
"X-Poedit-SearchPathExcluded-8: tmp\n"
|
29 |
-
"X-Poedit-SearchPathExcluded-9: vendor\n"
|
30 |
-
"X-Poedit-SearchPathExcluded-10: wordpress\n"
|
31 |
-
"X-Poedit-SearchPathExcluded-11: pro\n"
|
32 |
-
"X-Poedit-SearchPathExcluded-12: *.css\n"
|
33 |
-
"X-Poedit-SearchPathExcluded-13: googleanalytics-premium.php\n"
|
34 |
-
|
35 |
-
#: googleanalytics.php:265 googleanalytics.php:279
|
36 |
-
msgid "Cheatin’ huh?"
|
37 |
-
msgstr ""
|
38 |
-
|
39 |
-
#: googleanalytics.php:427
|
40 |
-
msgid "The version of MonsterInsights eCommerce addon you have is not compatible with the version of MonsterInsights installed. Please update the eCommerce addon as soon as possible"
|
41 |
-
msgstr ""
|
42 |
-
|
43 |
-
#: googleanalytics.php:449
|
44 |
-
#, php-format
|
45 |
-
msgid "Sorry, but your version of WordPress does not meet MonsterInsights's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
|
46 |
-
msgstr ""
|
47 |
-
|
48 |
-
#: googleanalytics.php:470
|
49 |
-
#, php-format
|
50 |
-
msgid "Please %1$suninstall%2$s the MonsterInsights Lite Plugin. Your Pro version of MonsterInsights may not work as expected until the Lite version is uninstalled."
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: googleanalytics.php:645
|
54 |
-
#, php-format
|
55 |
-
msgid "Sorry, but your version of WordPress does not meet MonsterInsight's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
|
56 |
-
msgstr ""
|
57 |
-
|
58 |
-
#: googleanalytics.php:650
|
59 |
-
#, php-format
|
60 |
-
msgid "Please uninstall and remove MonsterInsights Pro before activating Google Analytics for WordPress by MonsterInsights. The Lite version has not been activated. %1$sClick here to return to the Dashboard%2$s."
|
61 |
-
msgstr ""
|
62 |
-
|
63 |
-
#: includes/admin/admin.php:37 includes/admin/admin.php:40
|
64 |
-
#: includes/admin/admin.php:51
|
65 |
-
msgid "Settings:"
|
66 |
-
msgstr ""
|
67 |
-
|
68 |
-
#: includes/admin/admin.php:37 includes/admin/admin.php:44
|
69 |
-
#: includes/admin/admin.php:86
|
70 |
-
msgid "Insights"
|
71 |
-
msgstr ""
|
72 |
-
|
73 |
-
#: includes/admin/admin.php:40 includes/admin/admin.php:51
|
74 |
-
#: includes/admin/admin.php:139
|
75 |
-
msgid "Settings"
|
76 |
-
msgstr ""
|
77 |
-
|
78 |
-
#: includes/admin/admin.php:41 includes/admin/admin.php:53
|
79 |
-
msgid "Settings - Tracking:"
|
80 |
-
msgstr ""
|
81 |
-
|
82 |
-
#: includes/admin/admin.php:41 includes/admin/admin.php:53
|
83 |
-
msgid "Settings - Tracking"
|
84 |
-
msgstr ""
|
85 |
-
|
86 |
-
#: includes/admin/admin.php:44
|
87 |
-
msgid "General:"
|
88 |
-
msgstr ""
|
89 |
-
|
90 |
-
#: includes/admin/admin.php:48 includes/admin/admin.php:90
|
91 |
-
msgid "General Reports:"
|
92 |
-
msgstr ""
|
93 |
-
|
94 |
-
#: includes/admin/admin.php:48 includes/admin/admin.php:90
|
95 |
-
msgid "Reports"
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: includes/admin/admin.php:58
|
99 |
-
msgid "Tools:"
|
100 |
-
msgstr ""
|
101 |
-
|
102 |
-
#: includes/admin/admin.php:58
|
103 |
-
msgid "Tools"
|
104 |
-
msgstr ""
|
105 |
-
|
106 |
-
#: includes/admin/admin.php:63 includes/admin/admin.php:93
|
107 |
-
msgid "Addons:"
|
108 |
-
msgstr ""
|
109 |
-
|
110 |
-
#: includes/admin/admin.php:63 includes/admin/admin.php:93
|
111 |
-
msgid "Addons"
|
112 |
-
msgstr ""
|
113 |
-
|
114 |
-
#: includes/admin/admin.php:86 includes/admin/admin.php:88
|
115 |
-
msgid "Network Settings:"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: includes/admin/admin.php:88 includes/admin/pages/network-settings.php:51
|
119 |
-
msgid "Network Settings"
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: includes/admin/admin.php:121
|
123 |
-
msgid "MonsterInsights Knowledge Base"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: includes/admin/admin.php:121
|
127 |
-
msgid "Documentation"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: includes/admin/admin.php:126 includes/admin/reports/abstract-report.php:337
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
#: includes/license.php:
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
#: includes/license.php:
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#: includes/license.php:
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
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 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
#: includes/admin/pages/addons.php:
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
#: includes/admin/licensing/license-actions.php:
|
448 |
-
#: includes/admin/licensing/license-actions.php:
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
#: includes/admin/
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
#: includes/admin/
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
#: includes/admin/
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
#: includes/admin/
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
#: includes/admin/
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
#: includes/admin/
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
#: includes/admin/
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
#: includes/admin/
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
#: includes/admin/
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
#: includes/admin/
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
#: includes/admin/
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
#: includes/admin/
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
#: includes/admin/
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
#: includes/admin/pages/network-settings.php:
|
614 |
-
#: includes/admin/
|
615 |
-
#: includes/admin/settings/tab-general.php:
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
#: includes/admin/
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
#: includes/admin/
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
#: includes/admin/
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
#: includes/admin/
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
|
640 |
-
#: includes/admin/
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
#: includes/admin/
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
#: includes/admin/
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
#: includes/admin/
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
|
679 |
-
#: includes/admin/
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
#: includes/admin/
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
#: includes/admin/pages/
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
#: includes/admin/pages/
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
#: includes/admin/reports/overview.php:
|
898 |
-
msgid "
|
899 |
-
msgstr ""
|
900 |
-
|
901 |
-
#: includes/admin/reports/overview.php:
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
#: includes/admin/reports/overview.php:
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
#: includes/admin/reports/overview.php:
|
919 |
-
msgid "
|
920 |
-
msgstr ""
|
921 |
-
|
922 |
-
#: includes/admin/reports/overview.php:
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
#: includes/admin/reports/overview.php:
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
#: includes/admin/reports/overview.php:
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
#: includes/admin/reports/overview.php:
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
1023 |
-
|
1024 |
-
|
1025 |
-
|
1026 |
-
|
1027 |
-
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
-
|
1045 |
-
|
1046 |
-
|
1047 |
-
|
1048 |
-
|
1049 |
-
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
1054 |
-
|
1055 |
-
|
1056 |
-
|
1057 |
-
|
1058 |
-
|
1059 |
-
|
1060 |
-
|
1061 |
-
|
1062 |
-
|
1063 |
-
|
1064 |
-
|
1065 |
-
|
1066 |
-
|
1067 |
-
|
1068 |
-
|
1069 |
-
|
1070 |
-
|
1071 |
-
|
1072 |
-
|
1073 |
-
|
1074 |
-
|
1075 |
-
|
1076 |
-
|
1077 |
-
|
1078 |
-
|
1079 |
-
|
1080 |
-
|
1081 |
-
|
1082 |
-
|
1083 |
-
|
1084 |
-
|
1085 |
-
|
1086 |
-
|
1087 |
-
|
1088 |
-
|
1089 |
-
|
1090 |
-
|
1091 |
-
|
1092 |
-
|
1093 |
-
|
1094 |
-
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
|
1100 |
-
|
1101 |
-
|
1102 |
-
|
1103 |
-
|
1104 |
-
|
1105 |
-
|
1106 |
-
|
1107 |
-
|
1108 |
-
|
1109 |
-
|
1110 |
-
|
1111 |
-
|
1112 |
-
|
1113 |
-
|
1114 |
-
|
1115 |
-
|
1116 |
-
#: includes/admin/
|
1117 |
-
|
1118 |
-
|
1119 |
-
|
1120 |
-
|
1121 |
-
#: includes/admin/
|
1122 |
-
|
1123 |
-
|
1124 |
-
|
1125 |
-
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
|
1131 |
-
|
1132 |
-
|
1133 |
-
|
1134 |
-
|
1135 |
-
|
1136 |
-
|
1137 |
-
|
1138 |
-
|
1139 |
-
|
1140 |
-
|
1141 |
-
|
1142 |
-
|
1143 |
-
|
1144 |
-
|
1145 |
-
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
|
1158 |
-
|
1159 |
-
|
1160 |
-
|
1161 |
-
|
1162 |
-
|
1163 |
-
|
1164 |
-
|
1165 |
-
|
1166 |
-
|
1167 |
-
|
1168 |
-
|
1169 |
-
|
1170 |
-
|
1171 |
-
|
1172 |
-
|
1173 |
-
|
1174 |
-
|
1175 |
-
|
1176 |
-
|
1177 |
-
|
1178 |
-
|
1179 |
-
|
1180 |
-
|
1181 |
-
|
1182 |
-
|
1183 |
-
|
1184 |
-
|
1185 |
-
|
1186 |
-
|
1187 |
-
|
1188 |
-
|
1189 |
-
|
1190 |
-
|
1191 |
-
|
1192 |
-
|
1193 |
-
|
1194 |
-
|
1195 |
-
|
1196 |
-
|
1197 |
-
|
1198 |
-
|
1199 |
-
|
1200 |
-
|
1201 |
-
|
1202 |
-
|
1203 |
-
|
1204 |
-
|
1205 |
-
|
1206 |
-
|
1207 |
-
|
1208 |
-
|
1209 |
-
|
1210 |
-
|
1211 |
-
|
1212 |
-
|
1213 |
-
|
1214 |
-
|
1215 |
-
|
1216 |
-
|
1217 |
-
|
1218 |
-
|
1219 |
-
|
1220 |
-
|
1221 |
-
|
1222 |
-
|
1223 |
-
|
1224 |
-
|
1225 |
-
|
1226 |
-
|
1227 |
-
|
1228 |
-
|
1229 |
-
|
1230 |
-
|
1231 |
-
|
1232 |
-
|
1233 |
-
|
1234 |
-
|
1235 |
-
|
1236 |
-
|
1237 |
-
|
1238 |
-
|
1239 |
-
|
1240 |
-
|
1241 |
-
|
1242 |
-
|
1243 |
-
|
1244 |
-
|
1245 |
-
|
1246 |
-
|
1247 |
-
|
1248 |
-
|
1249 |
-
|
1250 |
-
|
1251 |
-
|
1252 |
-
|
1253 |
-
|
1254 |
-
|
1255 |
-
|
1256 |
-
|
1257 |
-
|
1258 |
-
|
1259 |
-
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
1263 |
-
|
1264 |
-
|
1265 |
-
|
1266 |
-
|
1267 |
-
|
1268 |
-
|
1269 |
-
|
1270 |
-
|
1271 |
-
|
1272 |
-
|
1273 |
-
|
1274 |
-
|
1275 |
-
|
1276 |
-
|
1277 |
-
|
1278 |
-
|
1279 |
-
|
1280 |
-
|
1281 |
-
|
1282 |
-
|
1283 |
-
|
1284 |
-
|
1285 |
-
|
1286 |
-
|
1287 |
-
|
1288 |
-
|
1289 |
-
|
1290 |
-
|
1291 |
-
|
1292 |
-
|
1293 |
-
|
1294 |
-
|
1295 |
-
|
1296 |
-
|
1297 |
-
|
1298 |
-
|
1299 |
-
|
1300 |
-
|
1301 |
-
|
1302 |
-
|
1303 |
-
|
1304 |
-
|
1305 |
-
|
1306 |
-
|
1307 |
-
|
1308 |
-
|
1309 |
-
|
1310 |
-
|
1311 |
-
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
|
1320 |
-
|
1321 |
-
|
1322 |
-
|
1323 |
-
|
1324 |
-
|
1325 |
-
|
1326 |
-
|
1327 |
-
|
1328 |
-
|
1329 |
-
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
1333 |
-
|
1334 |
-
|
1335 |
-
|
1336 |
-
|
1337 |
-
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
|
1342 |
-
|
1343 |
-
|
1344 |
-
|
1345 |
-
#: includes/admin/settings/
|
1346 |
-
|
1347 |
-
|
1348 |
-
|
1349 |
-
|
1350 |
-
#: includes/admin/settings/
|
1351 |
-
|
1352 |
-
|
1353 |
-
|
1354 |
-
|
1355 |
-
#: includes/admin/settings/
|
1356 |
-
|
1357 |
-
|
1358 |
-
|
1359 |
-
|
1360 |
-
#: includes/admin/settings/
|
1361 |
-
|
1362 |
-
|
1363 |
-
|
1364 |
-
|
1365 |
-
#: includes/admin/settings/
|
1366 |
-
|
1367 |
-
|
1368 |
-
|
1369 |
-
|
1370 |
-
#: includes/admin/settings/
|
1371 |
-
|
1372 |
-
|
1373 |
-
|
1374 |
-
|
1375 |
-
|
1376 |
-
|
1377 |
-
|
1378 |
-
|
1379 |
-
|
1380 |
-
#: includes/admin/settings/
|
1381 |
-
#: includes/admin/
|
1382 |
-
|
1383 |
-
|
1384 |
-
|
1385 |
-
|
1386 |
-
|
1387 |
-
|
1388 |
-
|
1389 |
-
|
1390 |
-
|
1391 |
-
#: includes/admin/settings/
|
1392 |
-
|
1393 |
-
|
1394 |
-
|
1395 |
-
|
1396 |
-
|
1397 |
-
|
1398 |
-
|
1399 |
-
|
1400 |
-
|
1401 |
-
|
1402 |
-
|
1403 |
-
|
1404 |
-
|
1405 |
-
|
1406 |
-
|
1407 |
-
|
1408 |
-
|
1409 |
-
|
1410 |
-
|
1411 |
-
|
1412 |
-
|
1413 |
-
|
1414 |
-
|
1415 |
-
|
1416 |
-
|
1417 |
-
|
1418 |
-
|
1419 |
-
|
1420 |
-
|
1421 |
-
|
1422 |
-
|
1423 |
-
|
1424 |
-
|
1425 |
-
|
1426 |
-
|
1427 |
-
|
1428 |
-
|
1429 |
-
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
|
1434 |
-
|
1435 |
-
|
1436 |
-
|
1437 |
-
|
1438 |
-
|
1439 |
-
#: includes/admin/
|
1440 |
-
|
1441 |
-
|
1442 |
-
|
1443 |
-
|
1444 |
-
|
1445 |
-
|
1446 |
-
|
1447 |
-
|
1448 |
-
|
1449 |
-
|
1450 |
-
|
1451 |
-
|
1452 |
-
|
1453 |
-
|
1454 |
-
|
1455 |
-
|
1456 |
-
|
1457 |
-
|
1458 |
-
|
1459 |
-
|
1460 |
-
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
1479 |
-
|
1480 |
-
|
1481 |
-
|
1482 |
-
|
1483 |
-
|
1484 |
-
|
1485 |
-
|
1486 |
-
|
1487 |
-
|
1488 |
-
|
1489 |
-
|
1490 |
-
|
1491 |
-
|
1492 |
-
|
1493 |
-
|
1494 |
-
|
1495 |
-
|
1496 |
-
|
1497 |
-
|
1498 |
-
|
1499 |
-
|
1500 |
-
|
1501 |
-
|
1502 |
-
|
1503 |
-
|
1504 |
-
|
1505 |
-
|
1506 |
-
|
1507 |
-
|
1508 |
-
|
1509 |
-
|
1510 |
-
|
1511 |
-
|
1512 |
-
|
1513 |
-
|
1514 |
-
|
1515 |
-
|
1516 |
-
|
1517 |
-
|
1518 |
-
|
1519 |
-
|
1520 |
-
|
1521 |
-
|
1522 |
-
|
1523 |
-
|
1524 |
-
|
1525 |
-
|
1526 |
-
|
1527 |
-
|
1528 |
-
|
1529 |
-
|
1530 |
-
|
1531 |
-
|
1532 |
-
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
1538 |
-
|
1539 |
-
|
1540 |
-
|
1541 |
-
|
1542 |
-
|
1543 |
-
|
1544 |
-
|
1545 |
-
|
1546 |
-
|
1547 |
-
|
1548 |
-
|
1549 |
-
|
1550 |
-
|
1551 |
-
|
1552 |
-
|
1553 |
-
|
1554 |
-
|
1555 |
-
|
1556 |
-
|
1557 |
-
|
1558 |
-
|
1559 |
-
|
1560 |
-
|
1561 |
-
|
1562 |
-
|
1563 |
-
|
1564 |
-
|
1565 |
-
|
1566 |
-
|
1567 |
-
|
1568 |
-
|
1569 |
-
|
1570 |
-
|
1571 |
-
|
1572 |
-
|
1573 |
-
|
1574 |
-
|
1575 |
-
|
1576 |
-
|
1577 |
-
|
1578 |
-
|
1579 |
-
|
1580 |
-
|
1581 |
-
|
1582 |
-
|
1583 |
-
|
1584 |
-
|
1585 |
-
|
1586 |
-
|
1587 |
-
|
1588 |
-
|
1589 |
-
|
1590 |
-
|
1591 |
-
|
1592 |
-
|
1593 |
-
|
1594 |
-
|
1595 |
-
|
1596 |
-
|
1597 |
-
|
1598 |
-
|
1599 |
-
|
1600 |
-
|
1601 |
-
|
1602 |
-
|
1603 |
-
|
1604 |
-
|
1605 |
-
|
1606 |
-
|
1607 |
-
|
1608 |
-
|
1609 |
-
|
1610 |
-
|
1611 |
-
|
1612 |
-
|
1613 |
-
|
1614 |
-
|
1615 |
-
|
1616 |
-
|
1617 |
-
|
1618 |
-
|
1619 |
-
|
1620 |
-
|
1621 |
-
|
1622 |
-
|
1623 |
-
|
1624 |
-
|
1625 |
-
|
1626 |
-
|
1627 |
-
|
1628 |
-
|
1629 |
-
|
1630 |
-
|
1631 |
-
|
1632 |
-
|
1633 |
-
|
1634 |
-
|
1635 |
-
|
1636 |
-
|
1637 |
-
|
1638 |
-
|
1639 |
-
|
1640 |
-
|
1641 |
-
|
1642 |
-
|
1643 |
-
|
1644 |
-
|
1645 |
-
|
1646 |
-
|
1647 |
-
|
1648 |
-
|
1649 |
-
|
1650 |
-
|
1651 |
-
|
1652 |
-
|
1653 |
-
|
1654 |
-
|
1655 |
-
|
1656 |
-
|
1657 |
-
|
1658 |
-
|
1659 |
-
|
1660 |
-
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
|
1665 |
-
|
1666 |
-
|
1667 |
-
|
1668 |
-
|
1669 |
-
|
1670 |
-
|
1671 |
-
|
1672 |
-
|
1673 |
-
|
1674 |
-
|
1675 |
-
|
1676 |
-
|
1677 |
-
|
1678 |
-
|
1679 |
-
|
1680 |
-
|
1681 |
-
|
1682 |
-
|
1683 |
-
|
1684 |
-
|
1685 |
-
|
1686 |
-
|
1687 |
-
|
1688 |
-
|
1689 |
-
|
1690 |
-
|
1691 |
-
|
1692 |
-
|
1693 |
-
|
1694 |
-
|
1695 |
-
|
1696 |
-
|
1697 |
-
|
1698 |
-
|
1699 |
-
|
1700 |
-
|
1701 |
-
|
1702 |
-
|
1703 |
-
|
1704 |
-
|
1705 |
-
|
1706 |
-
|
1707 |
-
|
1708 |
-
|
1709 |
-
|
1710 |
-
|
1711 |
-
|
1712 |
-
|
1713 |
-
|
1714 |
-
|
1715 |
-
|
1716 |
-
|
1717 |
-
|
1718 |
-
|
1719 |
-
|
1720 |
-
|
1721 |
-
|
1722 |
-
|
1723 |
-
|
1724 |
-
|
1725 |
-
|
1726 |
-
|
1727 |
-
|
1728 |
-
|
1729 |
-
|
1730 |
-
|
1731 |
-
|
1732 |
-
|
1733 |
-
|
1734 |
-
|
1735 |
-
|
1736 |
-
|
1737 |
-
|
1738 |
-
|
1739 |
-
|
1740 |
-
|
1741 |
-
|
1742 |
-
|
1743 |
-
|
1744 |
-
|
1745 |
-
|
1746 |
-
|
1747 |
-
|
1748 |
-
|
1749 |
-
|
1750 |
-
|
1751 |
-
|
1752 |
-
|
1753 |
-
|
1754 |
-
|
1755 |
-
|
1756 |
-
|
1757 |
-
|
1758 |
-
|
1759 |
-
|
1760 |
-
|
1761 |
-
|
1762 |
-
|
1763 |
-
|
1764 |
-
|
1765 |
-
|
1766 |
-
|
1767 |
-
|
1768 |
-
|
1769 |
-
|
1770 |
-
|
1771 |
-
|
1772 |
-
|
1773 |
-
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
|
1778 |
-
|
1779 |
-
|
1780 |
-
|
1781 |
-
|
1782 |
-
|
1783 |
-
|
1784 |
-
|
1785 |
-
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
-
|
1790 |
-
|
1791 |
-
|
1792 |
-
|
1793 |
-
|
1794 |
-
|
1795 |
-
|
1796 |
-
|
1797 |
-
|
1798 |
-
|
1799 |
-
|
1800 |
-
|
1801 |
-
|
1802 |
-
|
1803 |
-
|
1804 |
-
|
1805 |
-
|
1806 |
-
|
1807 |
-
|
1808 |
-
|
1809 |
-
|
1810 |
-
|
1811 |
-
|
1812 |
-
|
1813 |
-
|
1814 |
-
|
1815 |
-
|
1816 |
-
|
1817 |
-
|
1818 |
-
|
1819 |
-
|
1820 |
-
|
1821 |
-
|
1822 |
-
|
1823 |
-
|
1824 |
-
|
1825 |
-
|
1826 |
-
|
1827 |
-
|
1828 |
-
|
1829 |
-
|
1830 |
-
|
1831 |
-
|
1832 |
-
|
1833 |
-
|
1834 |
-
|
1835 |
-
|
1836 |
-
|
1837 |
-
|
1838 |
-
|
1839 |
-
|
1840 |
-
|
1841 |
-
|
1842 |
-
|
1843 |
-
|
1844 |
-
|
1845 |
-
|
1846 |
-
|
1847 |
-
|
1848 |
-
|
1849 |
-
|
1850 |
-
|
1851 |
-
|
1852 |
-
|
1853 |
-
|
1854 |
-
|
1855 |
-
|
1856 |
-
|
1857 |
-
|
1858 |
-
|
1859 |
-
|
1860 |
-
|
1861 |
-
|
1862 |
-
|
1863 |
-
|
1864 |
-
|
1865 |
-
|
1866 |
-
|
1867 |
-
|
1868 |
-
|
1869 |
-
|
1870 |
-
|
1871 |
-
|
1872 |
-
|
1873 |
-
|
1874 |
-
|
1875 |
-
|
1876 |
-
|
1877 |
-
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
-
|
1883 |
-
|
1884 |
-
|
1885 |
-
|
1886 |
-
|
1887 |
-
|
1888 |
-
|
1889 |
-
|
1890 |
-
|
1891 |
-
|
1892 |
-
|
1893 |
-
|
1894 |
-
|
1895 |
-
|
1896 |
-
|
1897 |
-
|
1898 |
-
|
1899 |
-
|
1900 |
-
|
1901 |
-
|
1902 |
-
|
1903 |
-
|
1904 |
-
|
1905 |
-
|
1906 |
-
|
1907 |
-
|
1908 |
-
|
1909 |
-
|
1910 |
-
|
1911 |
-
|
1912 |
-
|
1913 |
-
|
1914 |
-
|
1915 |
-
|
1916 |
-
|
1917 |
-
|
1918 |
-
|
1919 |
-
|
1920 |
-
|
1921 |
-
|
1922 |
-
|
1923 |
-
|
1924 |
-
|
1925 |
-
|
1926 |
-
|
1927 |
-
|
1928 |
-
|
1929 |
-
|
1930 |
-
|
1931 |
-
|
1932 |
-
|
1933 |
-
|
1934 |
-
|
1935 |
-
|
1936 |
-
|
1937 |
-
|
1938 |
-
|
1939 |
-
|
1940 |
-
|
1941 |
-
|
1942 |
-
|
1943 |
-
|
1944 |
-
|
1945 |
-
|
1946 |
-
|
1947 |
-
|
1948 |
-
|
1949 |
-
|
1950 |
-
|
1951 |
-
|
1952 |
-
|
1953 |
-
|
1954 |
-
|
1955 |
-
|
1956 |
-
|
1957 |
-
|
1958 |
-
|
1959 |
-
|
1960 |
-
|
1961 |
-
|
1962 |
-
|
1963 |
-
|
1964 |
-
|
1965 |
-
|
1966 |
-
|
1967 |
-
|
1968 |
-
|
1969 |
-
|
1970 |
-
|
1971 |
-
|
1972 |
-
|
1973 |
-
|
1974 |
-
|
1975 |
-
|
1976 |
-
|
1977 |
-
|
1978 |
-
|
1979 |
-
|
1980 |
-
|
1981 |
-
|
1982 |
-
|
1983 |
-
|
1984 |
-
|
1985 |
-
|
1986 |
-
|
1987 |
-
|
1988 |
-
|
1989 |
-
|
1990 |
-
|
1991 |
-
|
1992 |
-
|
1993 |
-
|
1994 |
-
|
1995 |
-
|
1996 |
-
|
1997 |
-
|
1998 |
-
|
1999 |
-
|
2000 |
-
|
2001 |
-
|
2002 |
-
|
2003 |
-
|
2004 |
-
|
2005 |
-
|
2006 |
-
|
2007 |
-
|
2008 |
-
|
2009 |
-
|
2010 |
-
|
2011 |
-
|
2012 |
-
|
2013 |
-
|
2014 |
-
|
2015 |
-
|
2016 |
-
|
2017 |
-
|
2018 |
-
|
2019 |
-
|
2020 |
-
|
2021 |
-
|
2022 |
-
|
2023 |
-
|
2024 |
-
|
2025 |
-
|
2026 |
-
|
2027 |
-
|
2028 |
-
|
2029 |
-
|
2030 |
-
|
2031 |
-
|
2032 |
-
|
2033 |
-
|
2034 |
-
|
2035 |
-
|
2036 |
-
|
2037 |
-
|
2038 |
-
|
2039 |
-
|
2040 |
-
|
2041 |
-
|
2042 |
-
|
2043 |
-
|
2044 |
-
|
2045 |
-
|
2046 |
-
|
2047 |
-
|
2048 |
-
|
2049 |
-
|
2050 |
-
|
2051 |
-
|
2052 |
-
|
2053 |
-
|
2054 |
-
|
2055 |
-
|
2056 |
-
|
2057 |
-
|
2058 |
-
|
2059 |
-
|
2060 |
-
|
2061 |
-
|
2062 |
-
|
2063 |
-
|
2064 |
-
|
2065 |
-
|
2066 |
-
|
2067 |
-
|
2068 |
-
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
2072 |
-
|
2073 |
-
|
2074 |
-
|
2075 |
-
|
2076 |
-
|
2077 |
-
|
2078 |
-
|
2079 |
-
|
2080 |
-
|
2081 |
-
|
2082 |
-
|
2083 |
-
|
2084 |
-
|
2085 |
-
|
2086 |
-
|
2087 |
-
|
2088 |
-
|
2089 |
-
|
2090 |
-
|
2091 |
-
|
2092 |
-
|
2093 |
-
|
2094 |
-
|
2095 |
-
|
2096 |
-
|
2097 |
-
|
2098 |
-
|
2099 |
-
|
2100 |
-
|
2101 |
-
|
2102 |
-
|
2103 |
-
|
2104 |
-
|
2105 |
-
|
2106 |
-
|
2107 |
-
|
2108 |
-
|
2109 |
-
|
2110 |
-
|
2111 |
-
|
2112 |
-
|
2113 |
-
|
2114 |
-
|
2115 |
-
|
2116 |
-
|
2117 |
-
|
2118 |
-
|
2119 |
-
|
2120 |
-
|
2121 |
-
|
2122 |
-
|
2123 |
-
|
2124 |
-
|
2125 |
-
|
2126 |
-
|
2127 |
-
|
2128 |
-
|
2129 |
-
|
2130 |
-
|
2131 |
-
|
2132 |
-
|
2133 |
-
|
2134 |
-
|
2135 |
-
|
2136 |
-
|
2137 |
-
|
2138 |
-
|
2139 |
-
|
2140 |
-
|
2141 |
-
|
2142 |
-
|
2143 |
-
|
2144 |
-
|
2145 |
-
|
2146 |
-
|
2147 |
-
|
2148 |
-
|
2149 |
-
|
2150 |
-
|
2151 |
-
|
2152 |
-
|
2153 |
-
|
2154 |
-
|
2155 |
-
|
2156 |
-
|
2157 |
-
|
2158 |
-
|
2159 |
-
|
2160 |
-
|
2161 |
-
|
2162 |
-
|
2163 |
-
|
2164 |
-
|
2165 |
-
|
2166 |
-
|
2167 |
-
|
2168 |
-
|
2169 |
-
|
2170 |
-
|
2171 |
-
|
2172 |
-
|
2173 |
-
|
2174 |
-
|
2175 |
-
|
2176 |
-
|
2177 |
-
|
2178 |
-
|
2179 |
-
|
2180 |
-
|
2181 |
-
|
2182 |
-
|
2183 |
-
|
2184 |
-
|
2185 |
-
|
2186 |
-
|
2187 |
-
|
2188 |
-
|
2189 |
-
|
2190 |
-
|
2191 |
-
|
2192 |
-
|
2193 |
-
|
2194 |
-
|
2195 |
-
|
2196 |
-
|
2197 |
-
|
2198 |
-
|
2199 |
-
|
2200 |
-
|
2201 |
-
|
2202 |
-
|
2203 |
-
|
2204 |
-
|
2205 |
-
|
2206 |
-
|
2207 |
-
|
2208 |
-
|
2209 |
-
|
2210 |
-
|
2211 |
-
|
2212 |
-
|
2213 |
-
|
2214 |
-
|
2215 |
-
|
2216 |
-
|
2217 |
-
|
2218 |
-
|
2219 |
-
|
2220 |
-
|
2221 |
-
|
2222 |
-
|
2223 |
-
|
2224 |
-
|
2225 |
-
|
2226 |
-
|
2227 |
-
|
2228 |
-
|
2229 |
-
|
2230 |
-
|
2231 |
-
|
2232 |
-
|
2233 |
-
|
2234 |
-
|
2235 |
-
|
2236 |
-
|
2237 |
-
|
2238 |
-
|
2239 |
-
|
2240 |
-
|
2241 |
-
|
2242 |
-
|
2243 |
-
|
2244 |
-
|
2245 |
-
|
2246 |
-
|
2247 |
-
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
2251 |
-
|
2252 |
-
|
2253 |
-
|
2254 |
-
|
2255 |
-
|
2256 |
-
|
2257 |
-
|
2258 |
-
|
2259 |
-
|
2260 |
-
|
2261 |
-
|
2262 |
-
|
2263 |
-
|
2264 |
-
|
2265 |
-
|
2266 |
-
|
2267 |
-
|
2268 |
-
|
2269 |
-
|
2270 |
-
|
2271 |
-
|
2272 |
-
|
2273 |
-
|
2274 |
-
|
2275 |
-
|
2276 |
-
|
2277 |
-
|
2278 |
-
|
2279 |
-
|
2280 |
-
|
2281 |
-
|
2282 |
-
|
2283 |
-
|
2284 |
-
|
2285 |
-
|
2286 |
-
|
2287 |
-
|
2288 |
-
|
2289 |
-
|
2290 |
-
|
2291 |
-
|
2292 |
-
|
2293 |
-
|
2294 |
-
|
2295 |
-
|
2296 |
-
|
2297 |
-
|
2298 |
-
|
2299 |
-
|
2300 |
-
|
2301 |
-
|
2302 |
-
|
2303 |
-
|
2304 |
-
|
2305 |
-
|
2306 |
-
|
2307 |
-
|
2308 |
-
|
2309 |
-
|
2310 |
-
|
2311 |
-
|
2312 |
-
|
2313 |
-
|
2314 |
-
|
2315 |
-
|
2316 |
-
|
2317 |
-
|
2318 |
-
|
2319 |
-
|
2320 |
-
|
2321 |
-
|
2322 |
-
|
2323 |
-
|
2324 |
-
|
2325 |
-
|
2326 |
-
|
2327 |
-
|
2328 |
-
|
2329 |
-
|
2330 |
-
|
2331 |
-
|
2332 |
-
|
2333 |
-
|
2334 |
-
|
2335 |
-
|
2336 |
-
|
2337 |
-
|
2338 |
-
|
2339 |
-
|
2340 |
-
|
2341 |
-
|
2342 |
-
|
2343 |
-
|
2344 |
-
|
2345 |
-
|
2346 |
-
|
2347 |
-
|
2348 |
-
|
2349 |
-
|
2350 |
-
|
2351 |
-
|
2352 |
-
|
2353 |
-
|
2354 |
-
|
2355 |
-
|
2356 |
-
|
2357 |
-
|
2358 |
-
|
2359 |
-
|
2360 |
-
|
2361 |
-
|
2362 |
-
|
2363 |
-
|
2364 |
-
|
2365 |
-
|
2366 |
-
|
2367 |
-
|
2368 |
-
|
2369 |
-
|
2370 |
-
|
2371 |
-
|
2372 |
-
|
2373 |
-
|
2374 |
-
|
2375 |
-
|
2376 |
-
|
2377 |
-
|
2378 |
-
|
2379 |
-
|
2380 |
-
|
2381 |
-
|
2382 |
-
|
2383 |
-
|
2384 |
-
|
2385 |
-
|
2386 |
-
|
2387 |
-
|
2388 |
-
|
2389 |
-
|
2390 |
-
|
2391 |
-
|
2392 |
-
|
2393 |
-
|
2394 |
-
|
2395 |
-
|
2396 |
-
|
2397 |
-
|
2398 |
-
|
2399 |
-
|
2400 |
-
|
2401 |
-
|
2402 |
-
|
2403 |
-
|
2404 |
-
|
2405 |
-
|
2406 |
-
|
2407 |
-
|
2408 |
-
|
2409 |
-
|
2410 |
-
|
2411 |
-
|
2412 |
-
|
2413 |
-
|
2414 |
-
|
2415 |
-
|
2416 |
-
|
2417 |
-
|
2418 |
-
|
2419 |
-
|
2420 |
-
|
2421 |
-
|
2422 |
-
|
2423 |
-
|
2424 |
-
|
2425 |
-
|
2426 |
-
|
2427 |
-
|
2428 |
-
|
2429 |
-
|
2430 |
-
|
2431 |
-
|
2432 |
-
|
2433 |
-
|
2434 |
-
|
2435 |
-
|
2436 |
-
|
2437 |
-
|
2438 |
-
|
2439 |
-
|
2440 |
-
|
2441 |
-
|
2442 |
-
|
2443 |
-
|
2444 |
-
|
2445 |
-
|
2446 |
-
|
2447 |
-
|
2448 |
-
|
2449 |
-
|
2450 |
-
|
2451 |
-
|
2452 |
-
|
2453 |
-
|
2454 |
-
|
2455 |
-
|
2456 |
-
|
2457 |
-
|
2458 |
-
|
2459 |
-
|
2460 |
-
|
2461 |
-
|
2462 |
-
|
2463 |
-
|
2464 |
-
|
2465 |
-
|
2466 |
-
|
2467 |
-
|
2468 |
-
|
2469 |
-
|
2470 |
-
|
2471 |
-
|
2472 |
-
|
2473 |
-
|
2474 |
-
|
2475 |
-
|
2476 |
-
|
2477 |
-
|
2478 |
-
|
2479 |
-
|
2480 |
-
|
2481 |
-
|
2482 |
-
|
2483 |
-
|
2484 |
-
|
2485 |
-
|
2486 |
-
|
2487 |
-
|
2488 |
-
|
2489 |
-
|
2490 |
-
|
2491 |
-
|
2492 |
-
|
2493 |
-
|
2494 |
-
|
2495 |
-
|
2496 |
-
|
2497 |
-
|
2498 |
-
|
2499 |
-
|
2500 |
-
|
2501 |
-
|
2502 |
-
|
2503 |
-
|
2504 |
-
|
2505 |
-
|
2506 |
-
|
2507 |
-
|
2508 |
-
|
2509 |
-
|
2510 |
-
|
2511 |
-
|
2512 |
-
|
2513 |
-
|
2514 |
-
|
2515 |
-
|
2516 |
-
#: lite/includes/admin/
|
2517 |
-
|
2518 |
-
|
2519 |
-
|
2520 |
-
|
2521 |
-
|
2522 |
-
|
2523 |
-
|
2524 |
-
|
2525 |
-
|
2526 |
-
|
2527 |
-
|
2528 |
-
|
2529 |
-
#: lite/includes/admin/
|
2530 |
-
|
2531 |
-
|
2532 |
-
|
2533 |
-
|
2534 |
-
|
2535 |
-
|
2536 |
-
|
2537 |
-
|
2538 |
-
|
2539 |
-
|
2540 |
-
|
2541 |
-
|
2542 |
-
|
2543 |
-
|
2544 |
-
|
2545 |
-
|
2546 |
-
|
2547 |
-
|
2548 |
-
|
2549 |
-
|
2550 |
-
|
2551 |
-
|
2552 |
-
|
2553 |
-
|
2554 |
-
|
2555 |
-
|
2556 |
-
|
2557 |
-
|
2558 |
-
|
2559 |
-
|
2560 |
-
|
2561 |
-
|
2562 |
-
|
2563 |
-
|
2564 |
-
#: lite/includes/admin/settings.php:
|
2565 |
-
|
2566 |
-
|
2567 |
-
|
2568 |
-
|
2569 |
-
|
2570 |
-
|
2571 |
-
|
2572 |
-
|
2573 |
-
|
2574 |
-
|
2575 |
-
|
2576 |
-
|
2577 |
-
|
2578 |
-
|
2579 |
-
|
2580 |
-
|
2581 |
-
|
2582 |
-
|
2583 |
-
|
2584 |
-
|
2585 |
-
|
2586 |
-
|
2587 |
-
|
2588 |
-
|
2589 |
-
|
2590 |
-
|
2591 |
-
|
2592 |
-
|
2593 |
-
|
2594 |
-
|
2595 |
-
|
2596 |
-
|
2597 |
-
|
2598 |
-
|
2599 |
-
|
2600 |
-
|
2601 |
-
|
2602 |
-
|
2603 |
-
|
2604 |
-
|
2605 |
-
|
2606 |
-
|
2607 |
-
|
2608 |
-
|
2609 |
-
|
2610 |
-
|
2611 |
-
|
2612 |
-
|
2613 |
-
|
2614 |
-
|
2615 |
-
|
2616 |
-
|
2617 |
-
|
2618 |
-
|
2619 |
-
|
2620 |
-
|
2621 |
-
|
2622 |
-
|
2623 |
-
|
2624 |
-
|
2625 |
-
|
2626 |
-
|
2627 |
-
|
2628 |
-
|
2629 |
-
|
2630 |
-
|
2631 |
-
|
2632 |
-
|
2633 |
-
|
2634 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
+
"Project-Id-Version: MonsterInsights Lite\n"
|
6 |
+
"Report-Msgid-Bugs-To: https://github.com/awesomemotive/monsterinsights/issues\n"
|
7 |
+
"POT-Creation-Date: 2018-08-07 22:35-0400\n"
|
8 |
+
"PO-Revision-Date: 2016-07-21 17:01-0400\n"
|
9 |
+
"Last-Translator: Chris Christoff <support@monsterinsights.com>\n"
|
10 |
+
"Language-Team: Chris Christoff <support@monsterinsights.com>\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 2.1.1\n"
|
15 |
+
"X-Poedit-Basepath: ..\n"
|
16 |
+
"X-Poedit-WPHeader: googleanalytics.php\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
"X-Poedit-SearchPathExcluded-0: *.js\n"
|
21 |
+
"X-Poedit-SearchPathExcluded-1: .roboci\n"
|
22 |
+
"X-Poedit-SearchPathExcluded-2: assets\n"
|
23 |
+
"X-Poedit-SearchPathExcluded-3: bin\n"
|
24 |
+
"X-Poedit-SearchPathExcluded-4: build\n"
|
25 |
+
"X-Poedit-SearchPathExcluded-5: docs\n"
|
26 |
+
"X-Poedit-SearchPathExcluded-6: phpdox\n"
|
27 |
+
"X-Poedit-SearchPathExcluded-7: tests\n"
|
28 |
+
"X-Poedit-SearchPathExcluded-8: tmp\n"
|
29 |
+
"X-Poedit-SearchPathExcluded-9: vendor\n"
|
30 |
+
"X-Poedit-SearchPathExcluded-10: wordpress\n"
|
31 |
+
"X-Poedit-SearchPathExcluded-11: pro\n"
|
32 |
+
"X-Poedit-SearchPathExcluded-12: *.css\n"
|
33 |
+
"X-Poedit-SearchPathExcluded-13: googleanalytics-premium.php\n"
|
34 |
+
|
35 |
+
#: googleanalytics.php:265 googleanalytics.php:279
|
36 |
+
msgid "Cheatin’ huh?"
|
37 |
+
msgstr ""
|
38 |
+
|
39 |
+
#: googleanalytics.php:427
|
40 |
+
msgid "The version of MonsterInsights eCommerce addon you have is not compatible with the version of MonsterInsights installed. Please update the eCommerce addon as soon as possible"
|
41 |
+
msgstr ""
|
42 |
+
|
43 |
+
#: googleanalytics.php:449
|
44 |
+
#, php-format
|
45 |
+
msgid "Sorry, but your version of WordPress does not meet MonsterInsights's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: googleanalytics.php:470
|
49 |
+
#, php-format
|
50 |
+
msgid "Please %1$suninstall%2$s the MonsterInsights Lite Plugin. Your Pro version of MonsterInsights may not work as expected until the Lite version is uninstalled."
|
51 |
+
msgstr ""
|
52 |
+
|
53 |
+
#: googleanalytics.php:645
|
54 |
+
#, php-format
|
55 |
+
msgid "Sorry, but your version of WordPress does not meet MonsterInsight's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
+
#: googleanalytics.php:650
|
59 |
+
#, php-format
|
60 |
+
msgid "Please uninstall and remove MonsterInsights Pro before activating Google Analytics for WordPress by MonsterInsights. The Lite version has not been activated. %1$sClick here to return to the Dashboard%2$s."
|
61 |
+
msgstr ""
|
62 |
+
|
63 |
+
#: includes/admin/admin.php:37 includes/admin/admin.php:40
|
64 |
+
#: includes/admin/admin.php:51
|
65 |
+
msgid "Settings:"
|
66 |
+
msgstr ""
|
67 |
+
|
68 |
+
#: includes/admin/admin.php:37 includes/admin/admin.php:44
|
69 |
+
#: includes/admin/admin.php:86
|
70 |
+
msgid "Insights"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: includes/admin/admin.php:40 includes/admin/admin.php:51
|
74 |
+
#: includes/admin/admin.php:139
|
75 |
+
msgid "Settings"
|
76 |
+
msgstr ""
|
77 |
+
|
78 |
+
#: includes/admin/admin.php:41 includes/admin/admin.php:53
|
79 |
+
msgid "Settings - Tracking:"
|
80 |
+
msgstr ""
|
81 |
+
|
82 |
+
#: includes/admin/admin.php:41 includes/admin/admin.php:53
|
83 |
+
msgid "Settings - Tracking"
|
84 |
+
msgstr ""
|
85 |
+
|
86 |
+
#: includes/admin/admin.php:44
|
87 |
+
msgid "General:"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: includes/admin/admin.php:48 includes/admin/admin.php:90
|
91 |
+
msgid "General Reports:"
|
92 |
+
msgstr ""
|
93 |
+
|
94 |
+
#: includes/admin/admin.php:48 includes/admin/admin.php:90
|
95 |
+
msgid "Reports"
|
96 |
+
msgstr ""
|
97 |
+
|
98 |
+
#: includes/admin/admin.php:58
|
99 |
+
msgid "Tools:"
|
100 |
+
msgstr ""
|
101 |
+
|
102 |
+
#: includes/admin/admin.php:58
|
103 |
+
msgid "Tools"
|
104 |
+
msgstr ""
|
105 |
+
|
106 |
+
#: includes/admin/admin.php:63 includes/admin/admin.php:93
|
107 |
+
msgid "Addons:"
|
108 |
+
msgstr ""
|
109 |
+
|
110 |
+
#: includes/admin/admin.php:63 includes/admin/admin.php:93
|
111 |
+
msgid "Addons"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: includes/admin/admin.php:86 includes/admin/admin.php:88
|
115 |
+
msgid "Network Settings:"
|
116 |
+
msgstr ""
|
117 |
+
|
118 |
+
#: includes/admin/admin.php:88 includes/admin/pages/network-settings.php:51
|
119 |
+
msgid "Network Settings"
|
120 |
+
msgstr ""
|
121 |
+
|
122 |
+
#: includes/admin/admin.php:121
|
123 |
+
msgid "MonsterInsights Knowledge Base"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/admin/admin.php:121
|
127 |
+
msgid "Documentation"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/admin/admin.php:126 includes/admin/reports/abstract-report.php:337
|
131 |
+
#: lite/includes/admin/dashboard-widget.php:115
|
132 |
+
msgid "Get MonsterInsights Pro"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: includes/admin/admin.php:132 includes/admin/admin.php:135
|
136 |
+
msgid "Support"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: includes/admin/admin.php:245
|
140 |
+
#, php-format
|
141 |
+
msgid "Please rate %sMonsterInsights%s %s on %sWordPress.org%s to help us spread the word. Thank you from the MonsterInsights team!"
|
142 |
+
msgstr ""
|
143 |
+
|
144 |
+
#: includes/admin/admin.php:275
|
145 |
+
#, php-format
|
146 |
+
msgid "Please configure your %1$sGoogle Analytics settings%2$s!"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: includes/admin/admin.php:284
|
150 |
+
#, php-format
|
151 |
+
msgid "Warning: No valid license key has been entered for MonsterInsights. You are currently not getting updates, and are not able to view reports. %1$sPlease click here to enter your license key and begin receiving updates and reports.%2$s"
|
152 |
+
msgstr ""
|
153 |
+
|
154 |
+
#: includes/admin/admin.php:294 includes/license.php:278
|
155 |
+
#: includes/license.php:289
|
156 |
+
#, php-format
|
157 |
+
msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
|
158 |
+
msgstr ""
|
159 |
+
|
160 |
+
#: includes/admin/admin.php:296 includes/license.php:280
|
161 |
+
#: includes/license.php:291
|
162 |
+
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: includes/admin/admin.php:298 includes/license.php:282
|
166 |
+
#: includes/license.php:293
|
167 |
+
msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
|
168 |
+
msgstr ""
|
169 |
+
|
170 |
+
#: includes/admin/admin.php:302
|
171 |
+
#, php-format
|
172 |
+
msgid "Your network license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
|
173 |
+
msgstr ""
|
174 |
+
|
175 |
+
#: includes/admin/admin.php:304
|
176 |
+
msgid "Your network license key for MonsterInsights has been disabled. Please use a different key."
|
177 |
+
msgstr ""
|
178 |
+
|
179 |
+
#: includes/admin/admin.php:306
|
180 |
+
msgid "Your network license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: includes/admin/admin.php:352
|
184 |
+
#, php-format
|
185 |
+
msgid "Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with MonsterInsights%2$s so that you can access our new reporting area and take advantage of new MonsterInsights features."
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: includes/admin/admin.php:394 includes/admin/admin.php:425
|
189 |
+
#, php-format
|
190 |
+
msgid "%1$sGet MonsterInsights Pro%2$s"
|
191 |
+
msgstr ""
|
192 |
+
|
193 |
+
#: includes/admin/api-auth.php:71
|
194 |
+
msgid "You don't have permission to authenticate MonsterInsights."
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: includes/admin/api-auth.php:81
|
198 |
+
msgid "Cannot authenticate. Please enter a valid, active license key for MonsterInsights Pro into the settings."
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: includes/admin/api-auth.php:86
|
202 |
+
msgid "Cannot authenticate. Please re-authenticate."
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: includes/admin/api-auth.php:88
|
206 |
+
msgid "Cannot network authenticate. Please re-authenticate on the network settings panel."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: includes/admin/api-auth.php:190
|
210 |
+
msgid "You don't have permission to re-authenticate MonsterInsights."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: includes/admin/api-auth.php:200
|
214 |
+
msgid "Cannot re-authenticate. Please enter a valid, active license key for MonsterInsights Pro into the settings."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: includes/admin/api-auth.php:205
|
218 |
+
msgid "Cannot re-authenticate. Please authenticate."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: includes/admin/api-auth.php:207
|
222 |
+
msgid "Cannot re-authenticate the network. Please authenticate on the network settings panel."
|
223 |
+
msgstr ""
|
224 |
+
|
225 |
+
#: includes/admin/api-auth.php:307
|
226 |
+
msgid "You don't have permission to verify MonsterInsights."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: includes/admin/api-auth.php:316 includes/admin/api-auth.php:318
|
230 |
+
msgid "Cannot verify. Please authenticate."
|
231 |
+
msgstr ""
|
232 |
+
|
233 |
+
#: includes/admin/api-auth.php:323
|
234 |
+
msgid "Cannot verify. Please enter a valid, active license key for MonsterInsights Pro into the settings."
|
235 |
+
msgstr ""
|
236 |
+
|
237 |
+
#: includes/admin/api-auth.php:328
|
238 |
+
msgid "Successfully verified."
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: includes/admin/api-auth.php:330
|
242 |
+
msgid "Could not verify."
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: includes/admin/api-auth.php:358
|
246 |
+
msgid "You don't have permission to deauthenticate MonsterInsights."
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: includes/admin/api-auth.php:367 includes/admin/api-auth.php:369
|
250 |
+
msgid "Cannot deauthenticate. You are not currently authed."
|
251 |
+
msgstr ""
|
252 |
+
|
253 |
+
#: includes/admin/api-auth.php:374
|
254 |
+
msgid "Cannot deauthenticate. Please enter a valid, active license key for MonsterInsights Pro into the settings."
|
255 |
+
msgstr ""
|
256 |
+
|
257 |
+
#: includes/admin/api-auth.php:381
|
258 |
+
msgid "Successfully deauthenticated."
|
259 |
+
msgstr ""
|
260 |
+
|
261 |
+
#: includes/admin/api-auth.php:384
|
262 |
+
msgid "Successfully force deauthenticated."
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: includes/admin/api-auth.php:386
|
266 |
+
msgid "Could not deauthenticate."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: includes/admin/common.php:134
|
270 |
+
msgid "Loading..."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: includes/admin/common.php:135
|
274 |
+
msgid "Warning: You have unsaved setting changes. If you leave the settings page without saving your changes will be lost. Did you still want to leave the page?"
|
275 |
+
msgstr ""
|
276 |
+
|
277 |
+
#: includes/admin/common.php:137
|
278 |
+
msgid "Status: Active"
|
279 |
+
msgstr ""
|
280 |
+
|
281 |
+
#: includes/admin/common.php:138 includes/admin/pages/addons.php:468
|
282 |
+
msgid "Activate"
|
283 |
+
msgstr ""
|
284 |
+
|
285 |
+
#: includes/admin/common.php:139
|
286 |
+
msgid "Status: Network Activated"
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: includes/admin/common.php:140 includes/admin/pages/addons.php:466
|
290 |
+
msgid "Network activate"
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: includes/admin/common.php:142
|
294 |
+
msgid "Activating..."
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: includes/admin/common.php:143 includes/admin/pages/addons.php:441
|
298 |
+
#: includes/admin/pages/addons.php:443
|
299 |
+
msgid "Deactivate"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: includes/admin/common.php:144 includes/admin/pages/addons.php:439
|
303 |
+
msgid "Network deactivate"
|
304 |
+
msgstr ""
|
305 |
+
|
306 |
+
#: includes/admin/common.php:146
|
307 |
+
msgid "Deactivating..."
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: includes/admin/common.php:147
|
311 |
+
msgid "Status: Inactive"
|
312 |
+
msgstr ""
|
313 |
+
|
314 |
+
#: includes/admin/common.php:148
|
315 |
+
msgid "Status: Network inactive"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: includes/admin/common.php:149 includes/admin/pages/addons.php:398
|
319 |
+
msgid "Install"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: includes/admin/common.php:151
|
323 |
+
msgid "Installing..."
|
324 |
+
msgstr ""
|
325 |
+
|
326 |
+
#: includes/admin/common.php:152
|
327 |
+
msgid "Proceed"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: includes/admin/common.php:154
|
331 |
+
msgid "Copied!"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: includes/admin/common.php:155
|
335 |
+
msgid "Copy to Clipboard"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: includes/admin/common.php:156
|
339 |
+
msgid "Failed!"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: includes/admin/common.php:158
|
343 |
+
msgid "Shorten URL"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
+
#: includes/admin/common.php:159
|
347 |
+
msgid "Shortened!"
|
348 |
+
msgstr ""
|
349 |
+
|
350 |
+
#: includes/admin/common.php:160
|
351 |
+
msgid "Working..."
|
352 |
+
msgstr ""
|
353 |
+
|
354 |
+
#: includes/admin/common.php:161 includes/admin/pages/tools.php:87
|
355 |
+
msgid "Import"
|
356 |
+
msgstr ""
|
357 |
+
|
358 |
+
#: includes/admin/common.php:162
|
359 |
+
msgid "Imported!"
|
360 |
+
msgstr ""
|
361 |
+
|
362 |
+
#: includes/admin/common.php:163
|
363 |
+
msgid "Preparing to redirect:"
|
364 |
+
msgstr ""
|
365 |
+
|
366 |
+
#: includes/admin/common.php:164
|
367 |
+
msgid "You'll be redirected momentarily to complete authentication. This may take a couple seconds."
|
368 |
+
msgstr ""
|
369 |
+
|
370 |
+
#: includes/admin/common.php:165
|
371 |
+
msgid "Authentication Error:"
|
372 |
+
msgstr ""
|
373 |
+
|
374 |
+
#: includes/admin/common.php:166
|
375 |
+
msgid "Deauthenticating...."
|
376 |
+
msgstr ""
|
377 |
+
|
378 |
+
#: includes/admin/common.php:167
|
379 |
+
msgid "We're deactivating your site. This may take a couple seconds."
|
380 |
+
msgstr ""
|
381 |
+
|
382 |
+
#: includes/admin/common.php:168
|
383 |
+
msgid "Deactivation Error:"
|
384 |
+
msgstr ""
|
385 |
+
|
386 |
+
#: includes/admin/common.php:169
|
387 |
+
msgid "Deactivated Successfully!"
|
388 |
+
msgstr ""
|
389 |
+
|
390 |
+
#: includes/admin/common.php:170
|
391 |
+
msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
|
392 |
+
msgstr ""
|
393 |
+
|
394 |
+
#: includes/admin/common.php:171
|
395 |
+
msgid "Verifying...."
|
396 |
+
msgstr ""
|
397 |
+
|
398 |
+
#: includes/admin/common.php:172
|
399 |
+
msgid "We're verifying your site. This may take a couple seconds."
|
400 |
+
msgstr ""
|
401 |
+
|
402 |
+
#: includes/admin/common.php:173
|
403 |
+
msgid "Verification Error:"
|
404 |
+
msgstr ""
|
405 |
+
|
406 |
+
#: includes/admin/common.php:174
|
407 |
+
msgid "Verified Successfully!"
|
408 |
+
msgstr ""
|
409 |
+
|
410 |
+
#: includes/admin/common.php:175
|
411 |
+
msgid "Your site is connected to MonsterInsights!"
|
412 |
+
msgstr ""
|
413 |
+
|
414 |
+
#: includes/admin/common.php:176
|
415 |
+
msgid "OK"
|
416 |
+
msgstr ""
|
417 |
+
|
418 |
+
#: includes/admin/common.php:177
|
419 |
+
msgid "Force Deauthenticate"
|
420 |
+
msgstr ""
|
421 |
+
|
422 |
+
#: includes/admin/common.php:178
|
423 |
+
msgid "Refreshing Report"
|
424 |
+
msgstr ""
|
425 |
+
|
426 |
+
#: includes/admin/common.php:179
|
427 |
+
msgid "Loading new report data..."
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: includes/admin/common.php:180
|
431 |
+
msgid "Success"
|
432 |
+
msgstr ""
|
433 |
+
|
434 |
+
#: includes/admin/common.php:181
|
435 |
+
msgid "Retrieved the new report data successfully"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: includes/admin/common.php:182
|
439 |
+
msgid "Error"
|
440 |
+
msgstr ""
|
441 |
+
|
442 |
+
#: includes/admin/common.php:628
|
443 |
+
#, php-format
|
444 |
+
msgid "MonsterInsights has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of MonsterInsights. To solve this, ensure MonsterInsights is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: includes/admin/licensing/license-actions.php:110
|
448 |
+
#: includes/admin/licensing/license-actions.php:162
|
449 |
+
#: includes/admin/licensing/license-actions.php:248
|
450 |
+
msgid "There was an error connecting to the remote key API. Please try again later."
|
451 |
+
msgstr ""
|
452 |
+
|
453 |
+
#: includes/admin/licensing/license-actions.php:127
|
454 |
+
msgid "Congratulations! This site is now receiving automatic updates."
|
455 |
+
msgstr ""
|
456 |
+
|
457 |
+
#: includes/admin/licensing/license-actions.php:198
|
458 |
+
msgid "Congratulations! Your key has been refreshed successfully."
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: includes/admin/licensing/license-actions.php:259
|
462 |
+
msgid "Congratulations! You have deactivated the key from this site successfully."
|
463 |
+
msgstr ""
|
464 |
+
|
465 |
+
#: includes/admin/licensing/skin.php:86
|
466 |
+
msgid "There was an error installing the addon. Please try again."
|
467 |
+
msgstr ""
|
468 |
+
|
469 |
+
#: includes/admin/notice.php:225
|
470 |
+
msgid "Dismiss this notice"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#: includes/admin/pages/addons.php:83
|
474 |
+
msgid "MonsterInsights Addons"
|
475 |
+
msgstr ""
|
476 |
+
|
477 |
+
#: includes/admin/pages/addons.php:86
|
478 |
+
msgid "Search MI Addons"
|
479 |
+
msgstr ""
|
480 |
+
|
481 |
+
#: includes/admin/pages/addons.php:88
|
482 |
+
msgid "Sort Ascending (A-Z)"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: includes/admin/pages/addons.php:89
|
486 |
+
msgid "Sort Descending (Z-A)"
|
487 |
+
msgstr ""
|
488 |
+
|
489 |
+
#: includes/admin/pages/addons.php:123
|
490 |
+
msgid "In order to get access to Addons, you need to resolve your license key errors."
|
491 |
+
msgstr ""
|
492 |
+
|
493 |
+
#: includes/admin/pages/addons.php:139
|
494 |
+
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
495 |
+
msgstr ""
|
496 |
+
|
497 |
+
#: includes/admin/pages/addons.php:142
|
498 |
+
msgid "Refresh Addons"
|
499 |
+
msgstr ""
|
500 |
+
|
501 |
+
#: includes/admin/pages/addons.php:160
|
502 |
+
msgid "Available Addons:"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: includes/admin/pages/addons.php:180
|
506 |
+
msgid "Unlock More Addons"
|
507 |
+
msgstr ""
|
508 |
+
|
509 |
+
#: includes/admin/pages/addons.php:181
|
510 |
+
#, php-format
|
511 |
+
msgid "%1$sWant even more addons?%2$sUpgrade your MonsterInsights account%3$s and unlock the following addons:"
|
512 |
+
msgstr ""
|
513 |
+
|
514 |
+
#: includes/admin/pages/addons.php:373
|
515 |
+
#: includes/admin/reports/abstract-report.php:335
|
516 |
+
msgid "Upgrade Now"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: includes/admin/pages/addons.php:392
|
520 |
+
#, php-format
|
521 |
+
msgid "Status: %1$sNot Installed%2$s"
|
522 |
+
msgstr ""
|
523 |
+
|
524 |
+
#: includes/admin/pages/addons.php:403
|
525 |
+
msgid "Why can't I install addons?"
|
526 |
+
msgstr ""
|
527 |
+
|
528 |
+
#: includes/admin/pages/addons.php:430
|
529 |
+
#, php-format
|
530 |
+
msgid "Status: %1$sNetwork Active%2$s"
|
531 |
+
msgstr ""
|
532 |
+
|
533 |
+
#: includes/admin/pages/addons.php:432
|
534 |
+
#, php-format
|
535 |
+
msgid "Status: %1$sActive%2$s"
|
536 |
+
msgstr ""
|
537 |
+
|
538 |
+
#: includes/admin/pages/addons.php:458
|
539 |
+
#, php-format
|
540 |
+
msgid "Status: %1$sNetwork Inactive%2$s"
|
541 |
+
msgstr ""
|
542 |
+
|
543 |
+
#: includes/admin/pages/addons.php:460
|
544 |
+
#, php-format
|
545 |
+
msgid "Status: %1$sInactive%2$s"
|
546 |
+
msgstr ""
|
547 |
+
|
548 |
+
#: includes/admin/pages/network-settings.php:52
|
549 |
+
msgid "Activate your MonsterInsights license key on this panel to hide the license key settings and addon pages for subsites."
|
550 |
+
msgstr ""
|
551 |
+
|
552 |
+
#: includes/admin/pages/network-settings.php:65
|
553 |
+
#: includes/admin/settings/tab-general.php:54
|
554 |
+
msgid "License Key"
|
555 |
+
msgstr ""
|
556 |
+
|
557 |
+
#: includes/admin/pages/network-settings.php:72
|
558 |
+
#: includes/admin/settings/tab-general.php:61
|
559 |
+
msgid "Verify Key"
|
560 |
+
msgstr ""
|
561 |
+
|
562 |
+
#: includes/admin/pages/network-settings.php:73
|
563 |
+
#: includes/admin/settings/tab-general.php:62
|
564 |
+
msgid "Deactivate Key"
|
565 |
+
msgstr ""
|
566 |
+
|
567 |
+
#: includes/admin/pages/network-settings.php:75
|
568 |
+
#: includes/admin/settings/tab-general.php:64
|
569 |
+
msgid "Activate Key"
|
570 |
+
msgstr ""
|
571 |
+
|
572 |
+
#: includes/admin/pages/network-settings.php:77
|
573 |
+
#: includes/admin/settings/tab-general.php:69
|
574 |
+
msgid "The license key is used to enable updates for MonsterInsights Pro & addons, as well enable the ability to view reports. Deactivate your license if you want to use it on another WordPress site."
|
575 |
+
msgstr ""
|
576 |
+
|
577 |
+
#: includes/admin/pages/network-settings.php:86
|
578 |
+
#: includes/admin/settings/tab-general.php:79
|
579 |
+
msgid "License Key Type"
|
580 |
+
msgstr ""
|
581 |
+
|
582 |
+
#: includes/admin/pages/network-settings.php:91
|
583 |
+
#: includes/admin/settings/tab-general.php:84
|
584 |
+
#, php-format
|
585 |
+
msgid "Your license key type for this site is %s."
|
586 |
+
msgstr ""
|
587 |
+
|
588 |
+
#: includes/admin/pages/network-settings.php:93
|
589 |
+
#: includes/admin/settings/tab-general.php:89
|
590 |
+
msgid "No license key activated."
|
591 |
+
msgstr ""
|
592 |
+
|
593 |
+
#: includes/admin/pages/network-settings.php:97
|
594 |
+
#: includes/admin/settings/tab-general.php:94
|
595 |
+
msgid "Refresh Key"
|
596 |
+
msgstr ""
|
597 |
+
|
598 |
+
#: includes/admin/pages/network-settings.php:98
|
599 |
+
#: includes/admin/settings/tab-general.php:95
|
600 |
+
msgid "Click refresh if your license has been upgraded or the type is incorrect."
|
601 |
+
msgstr ""
|
602 |
+
|
603 |
+
#: includes/admin/pages/network-settings.php:106
|
604 |
+
#: includes/admin/settings/tab-general.php:103
|
605 |
+
msgid "Analytics Profile"
|
606 |
+
msgstr ""
|
607 |
+
|
608 |
+
#: includes/admin/pages/network-settings.php:108
|
609 |
+
#: includes/admin/settings/tab-general.php:105
|
610 |
+
msgid "Google Authentication"
|
611 |
+
msgstr ""
|
612 |
+
|
613 |
+
#: includes/admin/pages/network-settings.php:115
|
614 |
+
#: includes/admin/pages/network-settings.php:125
|
615 |
+
#: includes/admin/settings/tab-general.php:112
|
616 |
+
#: includes/admin/settings/tab-general.php:122
|
617 |
+
msgid "Please activate MonsterInsights Pro with an active, valid license key in order to use MonsterInsights Pro."
|
618 |
+
msgstr ""
|
619 |
+
|
620 |
+
#: includes/admin/pages/network-settings.php:117
|
621 |
+
#: includes/admin/settings/tab-general.php:114
|
622 |
+
msgid "Profile Active: "
|
623 |
+
msgstr ""
|
624 |
+
|
625 |
+
#: includes/admin/pages/network-settings.php:119
|
626 |
+
#: includes/admin/settings/tab-general.php:116
|
627 |
+
msgid "Re-Authenticate with your Google Account"
|
628 |
+
msgstr ""
|
629 |
+
|
630 |
+
#: includes/admin/pages/network-settings.php:120
|
631 |
+
#: includes/admin/settings/tab-general.php:117
|
632 |
+
msgid "Verify Credentials"
|
633 |
+
msgstr ""
|
634 |
+
|
635 |
+
#: includes/admin/pages/network-settings.php:121
|
636 |
+
#: includes/admin/settings/tab-general.php:118
|
637 |
+
msgid "Deauthenticate"
|
638 |
+
msgstr ""
|
639 |
+
|
640 |
+
#: includes/admin/pages/network-settings.php:128
|
641 |
+
#: includes/admin/settings/tab-general.php:125
|
642 |
+
msgid "Authenticate with your Google account"
|
643 |
+
msgstr ""
|
644 |
+
|
645 |
+
#: includes/admin/pages/network-settings.php:129
|
646 |
+
#, php-format
|
647 |
+
msgid "This is the default Google profile to use for subsites of a network (can be overriden at the single site level). Having issues automatically authenticating? %s Click here to authenticate manually %s."
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: includes/admin/pages/network-settings.php:142
|
651 |
+
msgid "Network UA code"
|
652 |
+
msgstr ""
|
653 |
+
|
654 |
+
#: includes/admin/pages/network-settings.php:145
|
655 |
+
msgid "Save Network UA code"
|
656 |
+
msgstr ""
|
657 |
+
|
658 |
+
#: includes/admin/pages/network-settings.php:146
|
659 |
+
msgid "This is the default UA code to use for subsites of a network (can be overriden at the single site level)."
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: includes/admin/pages/network-settings.php:156
|
663 |
+
#: includes/admin/settings/tab-general.php:176
|
664 |
+
msgid "Unlock MonsterInsights Pro"
|
665 |
+
msgstr ""
|
666 |
+
|
667 |
+
#: includes/admin/pages/network-settings.php:160
|
668 |
+
#: includes/admin/settings/tab-general.php:180
|
669 |
+
#, php-format
|
670 |
+
msgid "Already purchased an upgrade to MonsterInsights Pro? To unlock your Pro features and addons, %sfollow our upgrade guide%s to install MonsterInsights Pro."
|
671 |
+
msgstr ""
|
672 |
+
|
673 |
+
#: includes/admin/pages/network-settings.php:163
|
674 |
+
#: includes/admin/settings/tab-general.php:183
|
675 |
+
#, php-format
|
676 |
+
msgid "Don't yet have a Pro license? %sVisit our website%s to upgrade and learn more about all the amazing features, expanded report and powerful addons you unlock when you go Pro."
|
677 |
+
msgstr ""
|
678 |
+
|
679 |
+
#: includes/admin/pages/network-settings.php:169
|
680 |
+
#: includes/admin/settings/register-settings.php:396
|
681 |
+
msgid "Hide Announcements"
|
682 |
+
msgstr ""
|
683 |
+
|
684 |
+
#: includes/admin/pages/network-settings.php:170
|
685 |
+
#: includes/admin/settings/register-settings.php:397
|
686 |
+
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
687 |
+
msgstr ""
|
688 |
+
|
689 |
+
#: includes/admin/pages/reports.php:93
|
690 |
+
#, php-format
|
691 |
+
msgid "%s Report"
|
692 |
+
msgstr ""
|
693 |
+
|
694 |
+
#: includes/admin/pages/reports.php:143
|
695 |
+
msgid "You don't have permission to view MonsterInsights reports."
|
696 |
+
msgstr ""
|
697 |
+
|
698 |
+
#: includes/admin/pages/reports.php:153
|
699 |
+
msgid "You can't view MonsterInsights reports because you are not licensed."
|
700 |
+
msgstr ""
|
701 |
+
|
702 |
+
#: includes/admin/pages/reports.php:159
|
703 |
+
msgid "You can't view MonsterInsights reports due to license key errors."
|
704 |
+
msgstr ""
|
705 |
+
|
706 |
+
#: includes/admin/pages/reports.php:167
|
707 |
+
msgid "You must authenticate with MonsterInsights before you can view reports."
|
708 |
+
msgstr ""
|
709 |
+
|
710 |
+
#: includes/admin/pages/reports.php:171 includes/admin/pages/reports.php:177
|
711 |
+
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
712 |
+
msgstr ""
|
713 |
+
|
714 |
+
#: includes/admin/pages/settings.php:78 includes/admin/pages/settings.php:79
|
715 |
+
#: includes/admin/pages/tracking.php:41 includes/admin/pages/tracking.php:42
|
716 |
+
msgid "General"
|
717 |
+
msgstr ""
|
718 |
+
|
719 |
+
#: includes/admin/pages/settings.php:82 includes/admin/pages/settings.php:83
|
720 |
+
#: includes/admin/pages/tracking.php:45 includes/admin/pages/tracking.php:46
|
721 |
+
msgid "Tracking"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
+
#: includes/admin/pages/settings.php:147
|
725 |
+
msgid "Settings saved successfully."
|
726 |
+
msgstr ""
|
727 |
+
|
728 |
+
#: includes/admin/pages/settings.php:159
|
729 |
+
msgid "Invalid UA code."
|
730 |
+
msgstr ""
|
731 |
+
|
732 |
+
#: includes/admin/pages/tools.php:31 includes/admin/pages/tools.php:32
|
733 |
+
msgid "Import/Export"
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: includes/admin/pages/tools.php:35
|
737 |
+
msgid "Campaign URL Builder"
|
738 |
+
msgstr ""
|
739 |
+
|
740 |
+
#: includes/admin/pages/tools.php:36
|
741 |
+
msgid "URL Builder"
|
742 |
+
msgstr ""
|
743 |
+
|
744 |
+
#: includes/admin/pages/tools.php:60
|
745 |
+
msgid "Setting Tools"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: includes/admin/pages/tools.php:61
|
749 |
+
msgid "You can use the below tools to import settings from other MonsterInsights websites or export settings to import into another MonsterInsights install."
|
750 |
+
msgstr ""
|
751 |
+
|
752 |
+
#: includes/admin/pages/tools.php:68
|
753 |
+
msgid "Import Settings"
|
754 |
+
msgstr ""
|
755 |
+
|
756 |
+
#: includes/admin/pages/tools.php:74
|
757 |
+
msgid "Successfully imported settings!"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: includes/admin/pages/tools.php:82
|
761 |
+
msgid "Paste the import field content from another MonsterInsights site in above."
|
762 |
+
msgstr ""
|
763 |
+
|
764 |
+
#: includes/admin/pages/tools.php:95
|
765 |
+
msgid "Export Settings:"
|
766 |
+
msgstr ""
|
767 |
+
|
768 |
+
#: includes/admin/pages/tools.php:107
|
769 |
+
msgid "Export"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: includes/admin/pages/tools.php:179
|
773 |
+
msgid "Please upload a valid .json file"
|
774 |
+
msgstr ""
|
775 |
+
|
776 |
+
#: includes/admin/pages/tools.php:185
|
777 |
+
msgid "Please upload a file to import"
|
778 |
+
msgstr ""
|
779 |
+
|
780 |
+
#: includes/admin/pages/tools.php:190
|
781 |
+
msgid "Please upload a real settings export file to import"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#. Author of the plugin/theme
|
785 |
+
#: includes/admin/partials/header.php:19
|
786 |
+
#: lite/includes/admin/dashboard-widget.php:58
|
787 |
+
msgid "MonsterInsights"
|
788 |
+
msgstr ""
|
789 |
+
|
790 |
+
#: includes/admin/partials/header.php:20
|
791 |
+
msgid "MonsterInsights Mascot"
|
792 |
+
msgstr ""
|
793 |
+
|
794 |
+
#: includes/admin/reports/abstract-report.php:54
|
795 |
+
msgid "Access denied"
|
796 |
+
msgstr ""
|
797 |
+
|
798 |
+
#: includes/admin/reports/abstract-report.php:62
|
799 |
+
#, php-format
|
800 |
+
msgid "Please %1$senable the dashboard%2$s to see report data."
|
801 |
+
msgstr ""
|
802 |
+
|
803 |
+
#: includes/admin/reports/abstract-report.php:68
|
804 |
+
msgid "The dashboard is disabled."
|
805 |
+
msgstr ""
|
806 |
+
|
807 |
+
#: includes/admin/reports/abstract-report.php:75
|
808 |
+
#, php-format
|
809 |
+
msgid "You do not have an active license. Please %1$scheck your license configuration.%2$s"
|
810 |
+
msgstr ""
|
811 |
+
|
812 |
+
#: includes/admin/reports/abstract-report.php:86
|
813 |
+
#, php-format
|
814 |
+
msgid "Please %1$sauthenticate %2$swith Google Analytics to allow the plugin to fetch data."
|
815 |
+
msgstr ""
|
816 |
+
|
817 |
+
#: includes/admin/reports/abstract-report.php:92
|
818 |
+
msgid "The Google oAuth authentication needs to be re-authenticated to view data."
|
819 |
+
msgstr ""
|
820 |
+
|
821 |
+
#: includes/admin/reports/abstract-report.php:117
|
822 |
+
msgid "No data found"
|
823 |
+
msgstr ""
|
824 |
+
|
825 |
+
#: includes/admin/reports/abstract-report.php:163
|
826 |
+
msgid "Invalid date range."
|
827 |
+
msgstr ""
|
828 |
+
|
829 |
+
#: includes/admin/reports/abstract-report.php:171
|
830 |
+
msgid "Please upgrade to MonsterInsights Pro to use custom date ranges."
|
831 |
+
msgstr ""
|
832 |
+
|
833 |
+
#: includes/admin/reports/abstract-report.php:263
|
834 |
+
msgid "You must authenticate with MonsterInsights to use reports."
|
835 |
+
msgstr ""
|
836 |
+
|
837 |
+
#: includes/admin/reports/abstract-report.php:306
|
838 |
+
#, php-format
|
839 |
+
msgid "You currently have a %s level license, but this report requires at least a %s level license to view the %s. Please upgrade to view this report."
|
840 |
+
msgstr ""
|
841 |
+
|
842 |
+
#: includes/admin/reports/abstract-report.php:315
|
843 |
+
msgid "Ready to Get Analytics Super-Powers?"
|
844 |
+
msgstr ""
|
845 |
+
|
846 |
+
#: includes/admin/reports/abstract-report.php:316
|
847 |
+
msgid "(And Crush Your Competition?)"
|
848 |
+
msgstr ""
|
849 |
+
|
850 |
+
#: includes/admin/reports/abstract-report.php:318
|
851 |
+
#, php-format
|
852 |
+
msgid ""
|
853 |
+
"Hey there! It looks like you've got the %s license installed on your site.\n"
|
854 |
+
"\t\t\t\t\t\t\t\t\t That's awesome! %s"
|
855 |
+
msgstr ""
|
856 |
+
|
857 |
+
#: includes/admin/reports/abstract-report.php:321
|
858 |
+
#, php-format
|
859 |
+
msgid "Do you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with the %s level%s of our paid packages. You'll need to upgrade your license to get instant access."
|
860 |
+
msgstr ""
|
861 |
+
|
862 |
+
#: includes/admin/reports/abstract-report.php:322
|
863 |
+
#, php-format
|
864 |
+
msgid "It's easy! To upgrade, navigate to %sMy Account%s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %sstep by step guide%s with pictures of this process."
|
865 |
+
msgstr ""
|
866 |
+
|
867 |
+
#: includes/admin/reports/abstract-report.php:323
|
868 |
+
#: includes/admin/reports/abstract-report.php:330
|
869 |
+
msgid "If you have any questions, don't hesitate to reach out. We're here to help."
|
870 |
+
msgstr ""
|
871 |
+
|
872 |
+
#: includes/admin/reports/abstract-report.php:325
|
873 |
+
#, php-format
|
874 |
+
msgid ""
|
875 |
+
"Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site.\n"
|
876 |
+
"\t\t\t\t\t\t\t\t\t That's awesome!"
|
877 |
+
msgstr ""
|
878 |
+
|
879 |
+
#: includes/admin/reports/abstract-report.php:328
|
880 |
+
#, php-format
|
881 |
+
msgid "Do you you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with %s level%s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
|
882 |
+
msgstr ""
|
883 |
+
|
884 |
+
#: includes/admin/reports/abstract-report.php:329
|
885 |
+
#, php-format
|
886 |
+
msgid "Upgrading is easy! To upgrade, navigate to %sour pricing page%s, purchase the required license, and then follow the %sinstructions in the email receipt%s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
|
887 |
+
msgstr ""
|
888 |
+
|
889 |
+
#: includes/admin/reports/abstract-report.php:369
|
890 |
+
msgid "Visit addons page"
|
891 |
+
msgstr ""
|
892 |
+
|
893 |
+
#: includes/admin/reports/overview.php:34
|
894 |
+
msgid "Overview"
|
895 |
+
msgstr ""
|
896 |
+
|
897 |
+
#: includes/admin/reports/overview.php:81
|
898 |
+
msgid "UP"
|
899 |
+
msgstr ""
|
900 |
+
|
901 |
+
#: includes/admin/reports/overview.php:82
|
902 |
+
msgid "DOWN"
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: includes/admin/reports/overview.php:83
|
906 |
+
msgid "Unique"
|
907 |
+
msgstr ""
|
908 |
+
|
909 |
+
#: includes/admin/reports/overview.php:83
|
910 |
+
#: includes/admin/reports/overview.php:355
|
911 |
+
#: includes/admin/reports/overview.php:395
|
912 |
+
msgid "Sessions"
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: includes/admin/reports/overview.php:83
|
916 |
+
#: includes/admin/reports/overview.php:360
|
917 |
+
#: includes/admin/reports/overview.php:422
|
918 |
+
#: includes/admin/reports/overview.php:424
|
919 |
+
msgid "Pageviews"
|
920 |
+
msgstr ""
|
921 |
+
|
922 |
+
#: includes/admin/reports/overview.php:389
|
923 |
+
msgid "Up"
|
924 |
+
msgstr ""
|
925 |
+
|
926 |
+
#: includes/admin/reports/overview.php:390
|
927 |
+
msgid "Down"
|
928 |
+
msgstr ""
|
929 |
+
|
930 |
+
#: includes/admin/reports/overview.php:397
|
931 |
+
msgid "Session"
|
932 |
+
msgstr ""
|
933 |
+
|
934 |
+
#: includes/admin/reports/overview.php:397
|
935 |
+
msgid "A session is the browsing session of a single user to your site."
|
936 |
+
msgstr ""
|
937 |
+
|
938 |
+
#: includes/admin/reports/overview.php:403
|
939 |
+
#: includes/admin/reports/overview.php:430
|
940 |
+
#: includes/admin/reports/overview.php:457
|
941 |
+
#: includes/admin/reports/overview.php:484
|
942 |
+
msgid "No change"
|
943 |
+
msgstr ""
|
944 |
+
|
945 |
+
#: includes/admin/reports/overview.php:417
|
946 |
+
#: includes/admin/reports/overview.php:444
|
947 |
+
#: includes/admin/reports/overview.php:471
|
948 |
+
#: includes/admin/reports/overview.php:498
|
949 |
+
#, php-format
|
950 |
+
msgid "vs. Previous %s Days"
|
951 |
+
msgstr ""
|
952 |
+
|
953 |
+
#: includes/admin/reports/overview.php:424
|
954 |
+
msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
|
955 |
+
msgstr ""
|
956 |
+
|
957 |
+
#: includes/admin/reports/overview.php:449
|
958 |
+
msgid "Avg. Session Duration"
|
959 |
+
msgstr ""
|
960 |
+
|
961 |
+
#: includes/admin/reports/overview.php:451
|
962 |
+
msgid "Average Session Duration"
|
963 |
+
msgstr ""
|
964 |
+
|
965 |
+
#: includes/admin/reports/overview.php:451
|
966 |
+
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: includes/admin/reports/overview.php:476
|
970 |
+
#: includes/admin/reports/overview.php:478
|
971 |
+
msgid "Bounce Rate"
|
972 |
+
msgstr ""
|
973 |
+
|
974 |
+
#: includes/admin/reports/overview.php:478
|
975 |
+
msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
|
976 |
+
msgstr ""
|
977 |
+
|
978 |
+
#: includes/admin/reports/overview.php:510
|
979 |
+
#: includes/admin/reports/overview.php:512
|
980 |
+
msgid "New vs. Returning Visitors"
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: includes/admin/reports/overview.php:512
|
984 |
+
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
+
#: includes/admin/reports/overview.php:604
|
988 |
+
msgid "New"
|
989 |
+
msgstr ""
|
990 |
+
|
991 |
+
#: includes/admin/reports/overview.php:605
|
992 |
+
msgid "Returning"
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: includes/admin/reports/overview.php:684
|
996 |
+
#: includes/admin/reports/overview.php:686
|
997 |
+
msgid "Device Breakdown"
|
998 |
+
msgstr ""
|
999 |
+
|
1000 |
+
#: includes/admin/reports/overview.php:686
|
1001 |
+
msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
|
1002 |
+
msgstr ""
|
1003 |
+
|
1004 |
+
#: includes/admin/reports/overview.php:780
|
1005 |
+
msgid "Desktop"
|
1006 |
+
msgstr ""
|
1007 |
+
|
1008 |
+
#: includes/admin/reports/overview.php:781
|
1009 |
+
msgid "Tablet"
|
1010 |
+
msgstr ""
|
1011 |
+
|
1012 |
+
#: includes/admin/reports/overview.php:782
|
1013 |
+
msgid "Mobile"
|
1014 |
+
msgstr ""
|
1015 |
+
|
1016 |
+
#: includes/admin/reports/overview.php:861
|
1017 |
+
#: includes/admin/reports/overview.php:863
|
1018 |
+
msgid "Top 10 Countries"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: includes/admin/reports/overview.php:863
|
1022 |
+
msgid "This list shows the top countries your website visitors are from."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: includes/admin/reports/overview.php:884
|
1026 |
+
msgid "View Full Countries Report"
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: includes/admin/reports/overview.php:884
|
1030 |
+
msgid "View All Countries Report"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: includes/admin/reports/overview.php:896
|
1034 |
+
#: includes/admin/reports/overview.php:898
|
1035 |
+
msgid "Referrals"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: includes/admin/reports/overview.php:898
|
1039 |
+
msgid "This list shows the top websites that send your website traffic, known as \"referral traffic\"."
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: includes/admin/reports/overview.php:925
|
1043 |
+
msgid "View All Referral Sources"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: includes/admin/reports/overview.php:936
|
1047 |
+
#: includes/admin/reports/overview.php:939
|
1048 |
+
msgid "Top Posts / Pages"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: includes/admin/reports/overview.php:939
|
1052 |
+
msgid "This list shows the most viewed posts and pages on your website."
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: includes/admin/reports/overview.php:971
|
1056 |
+
msgid "Show"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: includes/admin/reports/overview.php:972
|
1060 |
+
msgid "How many to show"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: includes/admin/reports/overview.php:983
|
1064 |
+
msgid "View Full Post/Page Report"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: includes/admin/review.php:100
|
1068 |
+
msgid "Hey, I noticed you've been using MonsterInsights for a while - that’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: includes/admin/review.php:101
|
1072 |
+
msgid "~ Syed Balkhi<br>Co-Founder of MonsterInsights"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: includes/admin/review.php:103
|
1076 |
+
msgid "Ok, you deserve it"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: includes/admin/review.php:104
|
1080 |
+
msgid "Nope, maybe later"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: includes/admin/review.php:105
|
1084 |
+
msgid "I already did"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: includes/admin/settings/register-settings.php:23
|
1088 |
+
msgid "Engagement"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: includes/admin/settings/register-settings.php:27
|
1092 |
+
msgid "Demographics"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: includes/admin/settings/register-settings.php:31
|
1096 |
+
msgid "Link Attribution"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: includes/admin/settings/register-settings.php:35
|
1100 |
+
msgid "File Downloads"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: includes/admin/settings/register-settings.php:39
|
1104 |
+
msgid "Affiliate Links"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: includes/admin/settings/register-settings.php:43
|
1108 |
+
msgid "Social"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: includes/admin/settings/register-settings.php:48
|
1112 |
+
msgid "Ads"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: includes/admin/settings/register-settings.php:52
|
1116 |
+
#: lite/includes/admin/reports/report-forms.php:22
|
1117 |
+
msgid "Forms"
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: includes/admin/settings/register-settings.php:56
|
1121 |
+
#: lite/includes/admin/reports/report-ecommerce.php:22
|
1122 |
+
msgid "eCommerce"
|
1123 |
+
msgstr ""
|
1124 |
+
|
1125 |
+
#: includes/admin/settings/register-settings.php:60
|
1126 |
+
msgid "Media"
|
1127 |
+
msgstr ""
|
1128 |
+
|
1129 |
+
#: includes/admin/settings/register-settings.php:65
|
1130 |
+
msgid "Memberships"
|
1131 |
+
msgstr ""
|
1132 |
+
|
1133 |
+
#: includes/admin/settings/register-settings.php:70
|
1134 |
+
msgid "Custom Dimensions"
|
1135 |
+
msgstr ""
|
1136 |
+
|
1137 |
+
#: includes/admin/settings/register-settings.php:74
|
1138 |
+
msgid "Performance"
|
1139 |
+
msgstr ""
|
1140 |
+
|
1141 |
+
#: includes/admin/settings/register-settings.php:78
|
1142 |
+
msgid "Google AMP"
|
1143 |
+
msgstr ""
|
1144 |
+
|
1145 |
+
#: includes/admin/settings/register-settings.php:82
|
1146 |
+
msgid "Google Optimize"
|
1147 |
+
msgstr ""
|
1148 |
+
|
1149 |
+
#: includes/admin/settings/register-settings.php:86
|
1150 |
+
msgid "FB Instant Articles"
|
1151 |
+
msgstr ""
|
1152 |
+
|
1153 |
+
#: includes/admin/settings/register-settings.php:90
|
1154 |
+
msgid "Bounce Reduction"
|
1155 |
+
msgstr ""
|
1156 |
+
|
1157 |
+
#: includes/admin/settings/register-settings.php:95
|
1158 |
+
msgid "Additional Reporting"
|
1159 |
+
msgstr ""
|
1160 |
+
|
1161 |
+
#: includes/admin/settings/register-settings.php:100
|
1162 |
+
msgid "Notifications"
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: includes/admin/settings/register-settings.php:105
|
1166 |
+
msgid "Compatibility"
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: includes/admin/settings/register-settings.php:109
|
1170 |
+
msgid "EU Compliance"
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: includes/admin/settings/register-settings.php:113
|
1174 |
+
msgid "Permissions"
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: includes/admin/settings/register-settings.php:157
|
1178 |
+
msgid "Ignore these user roles from tracking:"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: includes/admin/settings/register-settings.php:158
|
1182 |
+
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
1183 |
+
msgstr ""
|
1184 |
+
|
1185 |
+
#: includes/admin/settings/register-settings.php:167
|
1186 |
+
msgid "Enable MonsterInsights events tracking:"
|
1187 |
+
msgstr ""
|
1188 |
+
|
1189 |
+
#: includes/admin/settings/register-settings.php:168
|
1190 |
+
msgid "This turns on our Javascript based tracking system which among other things tracks clicks on outbound, affiliate, mail, telephone, hashed and download links."
|
1191 |
+
msgstr ""
|
1192 |
+
|
1193 |
+
#: includes/admin/settings/register-settings.php:172
|
1194 |
+
msgid "Yes (Recommended)"
|
1195 |
+
msgstr ""
|
1196 |
+
|
1197 |
+
#: includes/admin/settings/register-settings.php:173
|
1198 |
+
msgid "No"
|
1199 |
+
msgstr ""
|
1200 |
+
|
1201 |
+
#: includes/admin/settings/register-settings.php:183
|
1202 |
+
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
1203 |
+
msgstr ""
|
1204 |
+
|
1205 |
+
#: includes/admin/settings/register-settings.php:184
|
1206 |
+
#, php-format
|
1207 |
+
msgid "Check this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%2$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
|
1208 |
+
msgstr ""
|
1209 |
+
|
1210 |
+
#: includes/admin/settings/register-settings.php:191
|
1211 |
+
msgid "Anonymize IP addresses?"
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: includes/admin/settings/register-settings.php:192
|
1215 |
+
#, php-format
|
1216 |
+
msgid "This adds %1$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: includes/admin/settings/register-settings.php:202
|
1220 |
+
msgid "Enable enhanced link attribution?"
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/admin/settings/register-settings.php:203
|
1224 |
+
#, php-format
|
1225 |
+
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
1226 |
+
msgstr ""
|
1227 |
+
|
1228 |
+
#: includes/admin/settings/register-settings.php:208
|
1229 |
+
msgid "Turn on anchor tracking"
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: includes/admin/settings/register-settings.php:209
|
1233 |
+
msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
|
1234 |
+
msgstr ""
|
1235 |
+
|
1236 |
+
#: includes/admin/settings/register-settings.php:214
|
1237 |
+
msgid "Turn on allowAnchor"
|
1238 |
+
msgstr ""
|
1239 |
+
|
1240 |
+
#: includes/admin/settings/register-settings.php:215
|
1241 |
+
#, php-format
|
1242 |
+
msgid "This adds a %1$s call to your tracking code, and makes RSS link tagging use a %2$s as well."
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: includes/admin/settings/register-settings.php:220
|
1246 |
+
msgid "Turn on allowLinker"
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: includes/admin/settings/register-settings.php:221
|
1250 |
+
#, php-format
|
1251 |
+
msgid "This adds a %1$s call to your tracking code, allowing you to use %2$s and related functions."
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
+
#: includes/admin/settings/register-settings.php:226
|
1255 |
+
msgid "Turn on tag links in RSS"
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: includes/admin/settings/register-settings.php:227
|
1259 |
+
#, php-format
|
1260 |
+
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check %1$sthis help page%2$s for info on how to enable this feature in FeedBurner."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/admin/settings/register-settings.php:237
|
1264 |
+
msgid "Track downloads as an:"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: includes/admin/settings/register-settings.php:238
|
1268 |
+
msgid "Tracking as pageviews is not recommended, as this would skew your statistics, but it does make it possible to track downloads as goals. This feature requires that event tracking be turned on."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: includes/admin/settings/register-settings.php:242
|
1272 |
+
msgid "Event (recommended)"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/admin/settings/register-settings.php:243
|
1276 |
+
msgid "Pageview"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/admin/settings/register-settings.php:248
|
1280 |
+
msgid "Extensions of files to track as downloads:"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/admin/settings/register-settings.php:249
|
1284 |
+
msgid "If you have enabled event tracking, MonsterInsights will send an event/pageview to GA if a link to a local file has one of the above extensions."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: includes/admin/settings/register-settings.php:259
|
1288 |
+
msgid "Set path for internal links to track as outbound links"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: includes/admin/settings/register-settings.php:260
|
1292 |
+
#, php-format
|
1293 |
+
msgid "If you want to track all internal links that begin with %1$s, enter %1$s in the box above. If you have multiple prefixes you can separate them with comma's: %2$s"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: includes/admin/settings/register-settings.php:265
|
1297 |
+
msgid "Label for those links:"
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: includes/admin/settings/register-settings.php:266
|
1301 |
+
#, php-format
|
1302 |
+
msgid "The label to use for these links, this will be added to where the click came from, so if the label is %s, the label for a click from the content of an article becomes \"outbound-link-aff\"."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: includes/admin/settings/register-settings.php:332
|
1306 |
+
msgid "Domain to track as:"
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
+
#: includes/admin/settings/register-settings.php:333
|
1310 |
+
#, php-format
|
1311 |
+
msgid "This allows you to %1$sset the domain%2$s that's used for tracking. Only is used if set to a value, else defaults to automatic determination. It is very rare that you would need to use this setting."
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: includes/admin/settings/register-settings.php:338
|
1315 |
+
msgid "Custom code"
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: includes/admin/settings/register-settings.php:339
|
1319 |
+
#, php-format
|
1320 |
+
msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$s call."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: includes/admin/settings/register-settings.php:344
|
1324 |
+
msgid "Enable Debug Mode"
|
1325 |
+
msgstr ""
|
1326 |
+
|
1327 |
+
#: includes/admin/settings/register-settings.php:345
|
1328 |
+
msgid "Turns on debugging in JS events tracking, logging of eCommerce requests and enables debug settings."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/admin/settings/register-settings.php:359
|
1332 |
+
msgid "Let these user roles see reports:"
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/admin/settings/register-settings.php:369
|
1336 |
+
msgid "Let these user roles save settings:"
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: includes/admin/settings/register-settings.php:370
|
1340 |
+
#, php-format
|
1341 |
+
msgid "Users that have at least one of these roles will be able to view and save the settings panel, along with any user with the %s capability."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/admin/settings/register-settings.php:379
|
1345 |
+
#: includes/admin/settings/tab-general.php:200
|
1346 |
+
msgid "Automatic Updates"
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: includes/admin/settings/register-settings.php:383
|
1350 |
+
#: includes/admin/settings/tab-general.php:203
|
1351 |
+
msgid "Yes (Recommended) - Get the latest features, bugfixes, and security updates as they are released."
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: includes/admin/settings/register-settings.php:384
|
1355 |
+
#: includes/admin/settings/tab-general.php:204
|
1356 |
+
msgid "Minor Only - Only get bugfixes and security updates, but not major features."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/admin/settings/register-settings.php:385
|
1360 |
+
#: includes/admin/settings/tab-general.php:205
|
1361 |
+
msgid "None - Manually update everything."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: includes/admin/settings/register-settings.php:390
|
1365 |
+
#: includes/admin/settings/tab-general.php:212
|
1366 |
+
msgid "Allow Usage Tracking"
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: includes/admin/settings/register-settings.php:391
|
1370 |
+
#: includes/admin/settings/tab-general.php:213
|
1371 |
+
msgid "By allowing us to track usage data we can better help you, because we know with which WordPress configurations, themes and plugins we should test."
|
1372 |
+
msgstr ""
|
1373 |
+
|
1374 |
+
#: includes/admin/settings/settings-api.php:747
|
1375 |
+
#, php-format
|
1376 |
+
msgid "You must have the %s capability to view/edit this setting"
|
1377 |
+
msgstr ""
|
1378 |
+
|
1379 |
+
#: includes/admin/settings/settings-api.php:907
|
1380 |
+
#: includes/admin/settings/tab-tracking.php:109
|
1381 |
+
#: lite/includes/admin/tools.php:12
|
1382 |
+
msgid "Click here to Upgrade"
|
1383 |
+
msgstr ""
|
1384 |
+
|
1385 |
+
#: includes/admin/settings/settings-api.php:937
|
1386 |
+
#, php-format
|
1387 |
+
msgid "The callback function used for the %s setting is missing."
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: includes/admin/settings/settings-api.php:969
|
1391 |
+
#: includes/admin/settings/tab-general.php:233
|
1392 |
+
msgid "Save Changes"
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: includes/admin/settings/tab-general.php:67
|
1396 |
+
msgid "Your website is network licensed for MonsterInsights. Enter a license above only if you want to use a different Google Analytics profile for the reports and tracking on this subsite."
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: includes/admin/settings/tab-general.php:87
|
1400 |
+
msgid "No license key activated on this subsite."
|
1401 |
+
msgstr ""
|
1402 |
+
|
1403 |
+
#: includes/admin/settings/tab-general.php:126
|
1404 |
+
#, php-format
|
1405 |
+
msgid "Already have a Google Account, but don’t know if you’ve setup Google Analytics? %s Click here to login and find out%s."
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: includes/admin/settings/tab-general.php:128
|
1409 |
+
#, php-format
|
1410 |
+
msgid "Having issues automatically authenticating? %s Click here to authenticate manually%s."
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: includes/admin/settings/tab-general.php:147
|
1414 |
+
msgid "Manually enter your UA code"
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: includes/admin/settings/tab-general.php:151
|
1418 |
+
msgid "Warning: If you use a manual UA code, you won't be able to use the reports."
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#: includes/admin/settings/tab-general.php:164
|
1422 |
+
msgid "Default Configuration:"
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: includes/admin/settings/tab-general.php:167
|
1426 |
+
#, php-format
|
1427 |
+
msgid "If you do not authenticate with MonsterInsights above, the network default %s will be used as the Google UA code."
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: includes/admin/settings/tab-general.php:191
|
1431 |
+
msgid "Disable Reports"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: includes/admin/settings/tab-general.php:192
|
1435 |
+
msgid "Hide the reports page."
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: includes/admin/settings/tab-tracking.php:107
|
1439 |
+
#: lite/includes/admin/tools.php:10
|
1440 |
+
msgid "Want even more fine tuned control over your website analytics?"
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: includes/admin/settings/tab-tracking.php:108
|
1444 |
+
msgid "By upgrading to MonsterInsights Pro, you get access to numerous addons and tools that help you better understand what people are doing on your website, so you can keep doing more of what's working. Some of the features include: Ecommerce tracking, Author tracking, Post Type tracking, Ads tracking, Google AMP tracking, Performance optimization, and so much more!"
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: includes/admin/tracking.php:243
|
1448 |
+
msgid "Once Weekly"
|
1449 |
+
msgstr ""
|
1450 |
+
|
1451 |
+
#: includes/api-request.php:171
|
1452 |
+
msgid "The firewall of your server is blocking outbound calls. Please contact your hosting provider to fix this issue."
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: includes/api-request.php:275
|
1456 |
+
msgid "The API was unreachable."
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#: includes/api-request.php:279
|
1460 |
+
#, php-format
|
1461 |
+
msgid "The API returned a <strong>%s</strong> response"
|
1462 |
+
msgstr ""
|
1463 |
+
|
1464 |
+
#: includes/api-request.php:283 includes/api-request.php:287
|
1465 |
+
#, php-format
|
1466 |
+
msgid "The API returned a <strong>%d</strong> response with this message: <strong>%s</strong>"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: includes/api-request.php:295
|
1470 |
+
msgid "Improper API request."
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: includes/deprecated.php:126
|
1474 |
+
#, php-format
|
1475 |
+
msgid "%1$s is %3$sdeprecated%4$s since MonsterInsights version %2$s!"
|
1476 |
+
msgstr ""
|
1477 |
+
|
1478 |
+
#: includes/deprecated.php:179
|
1479 |
+
#, php-format
|
1480 |
+
msgid "%1$s is %3$sdeprecated%4$s since MonsterInsights version %2$s."
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: includes/frontend/tracking/class-tracking-analytics.php:205
|
1484 |
+
msgid "Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel."
|
1485 |
+
msgstr ""
|
1486 |
+
|
1487 |
+
#: includes/frontend/tracking/class-tracking-analytics.php:208
|
1488 |
+
msgid "Note: MonsterInsights does not track you as a logged in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
|
1489 |
+
msgstr ""
|
1490 |
+
|
1491 |
+
#: includes/frontend/tracking/class-tracking-analytics.php:211
|
1492 |
+
msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
|
1493 |
+
msgstr ""
|
1494 |
+
|
1495 |
+
#: includes/frontend/tracking/class-tracking-analytics.php:291
|
1496 |
+
msgid "Not running function"
|
1497 |
+
msgstr ""
|
1498 |
+
|
1499 |
+
#: includes/frontend/tracking/class-tracking-analytics.php:291
|
1500 |
+
msgid "because you are not being tracked."
|
1501 |
+
msgstr ""
|
1502 |
+
|
1503 |
+
#: includes/frontend/tracking/class-tracking-preview.php:77
|
1504 |
+
msgid "You are currently in a preview window. MonsterInsights doesn't track preview window traffic to avoid false visit reports."
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: includes/helpers.php:334
|
1508 |
+
msgid "United States"
|
1509 |
+
msgstr ""
|
1510 |
+
|
1511 |
+
#: includes/helpers.php:335
|
1512 |
+
msgid "Canada"
|
1513 |
+
msgstr ""
|
1514 |
+
|
1515 |
+
#: includes/helpers.php:336
|
1516 |
+
msgid "United Kingdom"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: includes/helpers.php:337
|
1520 |
+
msgid "Afghanistan"
|
1521 |
+
msgstr ""
|
1522 |
+
|
1523 |
+
#: includes/helpers.php:338
|
1524 |
+
msgid "Åland Islands"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: includes/helpers.php:339
|
1528 |
+
msgid "Albania"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: includes/helpers.php:340
|
1532 |
+
msgid "Algeria"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: includes/helpers.php:341
|
1536 |
+
msgid "American Samoa"
|
1537 |
+
msgstr ""
|
1538 |
+
|
1539 |
+
#: includes/helpers.php:342
|
1540 |
+
msgid "Andorra"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: includes/helpers.php:343
|
1544 |
+
msgid "Angola"
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: includes/helpers.php:344
|
1548 |
+
msgid "Anguilla"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: includes/helpers.php:345
|
1552 |
+
msgid "Antarctica"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: includes/helpers.php:346
|
1556 |
+
msgid "Antigua and Barbuda"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: includes/helpers.php:347
|
1560 |
+
msgid "Argentina"
|
1561 |
+
msgstr ""
|
1562 |
+
|
1563 |
+
#: includes/helpers.php:348
|
1564 |
+
msgid "Armenia"
|
1565 |
+
msgstr ""
|
1566 |
+
|
1567 |
+
#: includes/helpers.php:349
|
1568 |
+
msgid "Aruba"
|
1569 |
+
msgstr ""
|
1570 |
+
|
1571 |
+
#: includes/helpers.php:350
|
1572 |
+
msgid "Australia"
|
1573 |
+
msgstr ""
|
1574 |
+
|
1575 |
+
#: includes/helpers.php:351
|
1576 |
+
msgid "Austria"
|
1577 |
+
msgstr ""
|
1578 |
+
|
1579 |
+
#: includes/helpers.php:352
|
1580 |
+
msgid "Azerbaijan"
|
1581 |
+
msgstr ""
|
1582 |
+
|
1583 |
+
#: includes/helpers.php:353
|
1584 |
+
msgid "Bahamas"
|
1585 |
+
msgstr ""
|
1586 |
+
|
1587 |
+
#: includes/helpers.php:354
|
1588 |
+
msgid "Bahrain"
|
1589 |
+
msgstr ""
|
1590 |
+
|
1591 |
+
#: includes/helpers.php:355
|
1592 |
+
msgid "Bangladesh"
|
1593 |
+
msgstr ""
|
1594 |
+
|
1595 |
+
#: includes/helpers.php:356
|
1596 |
+
msgid "Barbados"
|
1597 |
+
msgstr ""
|
1598 |
+
|
1599 |
+
#: includes/helpers.php:357
|
1600 |
+
msgid "Belarus"
|
1601 |
+
msgstr ""
|
1602 |
+
|
1603 |
+
#: includes/helpers.php:358
|
1604 |
+
msgid "Belgium"
|
1605 |
+
msgstr ""
|
1606 |
+
|
1607 |
+
#: includes/helpers.php:359
|
1608 |
+
msgid "Belize"
|
1609 |
+
msgstr ""
|
1610 |
+
|
1611 |
+
#: includes/helpers.php:360
|
1612 |
+
msgid "Benin"
|
1613 |
+
msgstr ""
|
1614 |
+
|
1615 |
+
#: includes/helpers.php:361
|
1616 |
+
msgid "Bermuda"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: includes/helpers.php:362
|
1620 |
+
msgid "Bhutan"
|
1621 |
+
msgstr ""
|
1622 |
+
|
1623 |
+
#: includes/helpers.php:363
|
1624 |
+
msgid "Bolivia"
|
1625 |
+
msgstr ""
|
1626 |
+
|
1627 |
+
#: includes/helpers.php:364
|
1628 |
+
msgid "Bonaire, Saint Eustatius and Saba"
|
1629 |
+
msgstr ""
|
1630 |
+
|
1631 |
+
#: includes/helpers.php:365
|
1632 |
+
msgid "Bosnia and Herzegovina"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#: includes/helpers.php:366
|
1636 |
+
msgid "Botswana"
|
1637 |
+
msgstr ""
|
1638 |
+
|
1639 |
+
#: includes/helpers.php:367
|
1640 |
+
msgid "Bouvet Island"
|
1641 |
+
msgstr ""
|
1642 |
+
|
1643 |
+
#: includes/helpers.php:368
|
1644 |
+
msgid "Brazil"
|
1645 |
+
msgstr ""
|
1646 |
+
|
1647 |
+
#: includes/helpers.php:369
|
1648 |
+
msgid "British Indian Ocean Territory"
|
1649 |
+
msgstr ""
|
1650 |
+
|
1651 |
+
#: includes/helpers.php:370
|
1652 |
+
msgid "Brunei Darrussalam"
|
1653 |
+
msgstr ""
|
1654 |
+
|
1655 |
+
#: includes/helpers.php:371
|
1656 |
+
msgid "Bulgaria"
|
1657 |
+
msgstr ""
|
1658 |
+
|
1659 |
+
#: includes/helpers.php:372
|
1660 |
+
msgid "Burkina Faso"
|
1661 |
+
msgstr ""
|
1662 |
+
|
1663 |
+
#: includes/helpers.php:373
|
1664 |
+
msgid "Burundi"
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: includes/helpers.php:374
|
1668 |
+
msgid "Cambodia"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: includes/helpers.php:375
|
1672 |
+
msgid "Cameroon"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: includes/helpers.php:376
|
1676 |
+
msgid "Cape Verde"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: includes/helpers.php:377
|
1680 |
+
msgid "Cayman Islands"
|
1681 |
+
msgstr ""
|
1682 |
+
|
1683 |
+
#: includes/helpers.php:378
|
1684 |
+
msgid "Central African Republic"
|
1685 |
+
msgstr ""
|
1686 |
+
|
1687 |
+
#: includes/helpers.php:379
|
1688 |
+
msgid "Chad"
|
1689 |
+
msgstr ""
|
1690 |
+
|
1691 |
+
#: includes/helpers.php:380
|
1692 |
+
msgid "Chile"
|
1693 |
+
msgstr ""
|
1694 |
+
|
1695 |
+
#: includes/helpers.php:381
|
1696 |
+
msgid "China"
|
1697 |
+
msgstr ""
|
1698 |
+
|
1699 |
+
#: includes/helpers.php:382
|
1700 |
+
msgid "Christmas Island"
|
1701 |
+
msgstr ""
|
1702 |
+
|
1703 |
+
#: includes/helpers.php:383
|
1704 |
+
msgid "Cocos Islands"
|
1705 |
+
msgstr ""
|
1706 |
+
|
1707 |
+
#: includes/helpers.php:384
|
1708 |
+
msgid "Colombia"
|
1709 |
+
msgstr ""
|
1710 |
+
|
1711 |
+
#: includes/helpers.php:385
|
1712 |
+
msgid "Comoros"
|
1713 |
+
msgstr ""
|
1714 |
+
|
1715 |
+
#: includes/helpers.php:386
|
1716 |
+
msgid "Congo, Democratic People's Republic"
|
1717 |
+
msgstr ""
|
1718 |
+
|
1719 |
+
#: includes/helpers.php:387
|
1720 |
+
msgid "Congo, Republic of"
|
1721 |
+
msgstr ""
|
1722 |
+
|
1723 |
+
#: includes/helpers.php:388
|
1724 |
+
msgid "Cook Islands"
|
1725 |
+
msgstr ""
|
1726 |
+
|
1727 |
+
#: includes/helpers.php:389
|
1728 |
+
msgid "Costa Rica"
|
1729 |
+
msgstr ""
|
1730 |
+
|
1731 |
+
#: includes/helpers.php:390
|
1732 |
+
msgid "Cote d'Ivoire"
|
1733 |
+
msgstr ""
|
1734 |
+
|
1735 |
+
#: includes/helpers.php:391
|
1736 |
+
msgid "Croatia/Hrvatska"
|
1737 |
+
msgstr ""
|
1738 |
+
|
1739 |
+
#: includes/helpers.php:392
|
1740 |
+
msgid "Cuba"
|
1741 |
+
msgstr ""
|
1742 |
+
|
1743 |
+
#: includes/helpers.php:393
|
1744 |
+
msgid "CuraÇao"
|
1745 |
+
msgstr ""
|
1746 |
+
|
1747 |
+
#: includes/helpers.php:394
|
1748 |
+
msgid "Cyprus"
|
1749 |
+
msgstr ""
|
1750 |
+
|
1751 |
+
#: includes/helpers.php:395
|
1752 |
+
msgid "Czechia"
|
1753 |
+
msgstr ""
|
1754 |
+
|
1755 |
+
#: includes/helpers.php:396
|
1756 |
+
msgid "Denmark"
|
1757 |
+
msgstr ""
|
1758 |
+
|
1759 |
+
#: includes/helpers.php:397
|
1760 |
+
msgid "Djibouti"
|
1761 |
+
msgstr ""
|
1762 |
+
|
1763 |
+
#: includes/helpers.php:398
|
1764 |
+
msgid "Dominica"
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: includes/helpers.php:399
|
1768 |
+
msgid "Dominican Republic"
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: includes/helpers.php:400
|
1772 |
+
msgid "East Timor"
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: includes/helpers.php:401
|
1776 |
+
msgid "Ecuador"
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: includes/helpers.php:402
|
1780 |
+
msgid "Egypt"
|
1781 |
+
msgstr ""
|
1782 |
+
|
1783 |
+
#: includes/helpers.php:403
|
1784 |
+
msgid "Equatorial Guinea"
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: includes/helpers.php:404
|
1788 |
+
msgid "El Salvador"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: includes/helpers.php:405
|
1792 |
+
msgid "Eritrea"
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: includes/helpers.php:406
|
1796 |
+
msgid "Estonia"
|
1797 |
+
msgstr ""
|
1798 |
+
|
1799 |
+
#: includes/helpers.php:407
|
1800 |
+
msgid "Ethiopia"
|
1801 |
+
msgstr ""
|
1802 |
+
|
1803 |
+
#: includes/helpers.php:408
|
1804 |
+
msgid "Falkland Islands"
|
1805 |
+
msgstr ""
|
1806 |
+
|
1807 |
+
#: includes/helpers.php:409
|
1808 |
+
msgid "Faroe Islands"
|
1809 |
+
msgstr ""
|
1810 |
+
|
1811 |
+
#: includes/helpers.php:410
|
1812 |
+
msgid "Fiji"
|
1813 |
+
msgstr ""
|
1814 |
+
|
1815 |
+
#: includes/helpers.php:411
|
1816 |
+
msgid "Finland"
|
1817 |
+
msgstr ""
|
1818 |
+
|
1819 |
+
#: includes/helpers.php:412
|
1820 |
+
msgid "France"
|
1821 |
+
msgstr ""
|
1822 |
+
|
1823 |
+
#: includes/helpers.php:413
|
1824 |
+
msgid "French Guiana"
|
1825 |
+
msgstr ""
|
1826 |
+
|
1827 |
+
#: includes/helpers.php:414
|
1828 |
+
msgid "French Polynesia"
|
1829 |
+
msgstr ""
|
1830 |
+
|
1831 |
+
#: includes/helpers.php:415
|
1832 |
+
msgid "French Southern Territories"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: includes/helpers.php:416
|
1836 |
+
msgid "Gabon"
|
1837 |
+
msgstr ""
|
1838 |
+
|
1839 |
+
#: includes/helpers.php:417
|
1840 |
+
msgid "Gambia"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: includes/helpers.php:418
|
1844 |
+
msgid "Georgia"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: includes/helpers.php:419
|
1848 |
+
msgid "Germany"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: includes/helpers.php:420
|
1852 |
+
msgid "Greece"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: includes/helpers.php:421
|
1856 |
+
msgid "Ghana"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: includes/helpers.php:422
|
1860 |
+
msgid "Gibraltar"
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: includes/helpers.php:423
|
1864 |
+
msgid "Greenland"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: includes/helpers.php:424
|
1868 |
+
msgid "Grenada"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: includes/helpers.php:425
|
1872 |
+
msgid "Guadeloupe"
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: includes/helpers.php:426
|
1876 |
+
msgid "Guam"
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: includes/helpers.php:427
|
1880 |
+
msgid "Guatemala"
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: includes/helpers.php:428
|
1884 |
+
msgid "Guernsey"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: includes/helpers.php:429
|
1888 |
+
msgid "Guinea"
|
1889 |
+
msgstr ""
|
1890 |
+
|
1891 |
+
#: includes/helpers.php:430
|
1892 |
+
msgid "Guinea-Bissau"
|
1893 |
+
msgstr ""
|
1894 |
+
|
1895 |
+
#: includes/helpers.php:431
|
1896 |
+
msgid "Guyana"
|
1897 |
+
msgstr ""
|
1898 |
+
|
1899 |
+
#: includes/helpers.php:432
|
1900 |
+
msgid "Haiti"
|
1901 |
+
msgstr ""
|
1902 |
+
|
1903 |
+
#: includes/helpers.php:433
|
1904 |
+
msgid "Heard and McDonald Islands"
|
1905 |
+
msgstr ""
|
1906 |
+
|
1907 |
+
#: includes/helpers.php:434
|
1908 |
+
msgid "Holy See (City Vatican State)"
|
1909 |
+
msgstr ""
|
1910 |
+
|
1911 |
+
#: includes/helpers.php:435
|
1912 |
+
msgid "Honduras"
|
1913 |
+
msgstr ""
|
1914 |
+
|
1915 |
+
#: includes/helpers.php:436
|
1916 |
+
msgid "Hong Kong"
|
1917 |
+
msgstr ""
|
1918 |
+
|
1919 |
+
#: includes/helpers.php:437
|
1920 |
+
msgid "Hungary"
|
1921 |
+
msgstr ""
|
1922 |
+
|
1923 |
+
#: includes/helpers.php:438
|
1924 |
+
msgid "Iceland"
|
1925 |
+
msgstr ""
|
1926 |
+
|
1927 |
+
#: includes/helpers.php:439
|
1928 |
+
msgid "India"
|
1929 |
+
msgstr ""
|
1930 |
+
|
1931 |
+
#: includes/helpers.php:440
|
1932 |
+
msgid "Indonesia"
|
1933 |
+
msgstr ""
|
1934 |
+
|
1935 |
+
#: includes/helpers.php:441
|
1936 |
+
msgid "Iran"
|
1937 |
+
msgstr ""
|
1938 |
+
|
1939 |
+
#: includes/helpers.php:442
|
1940 |
+
msgid "Iraq"
|
1941 |
+
msgstr ""
|
1942 |
+
|
1943 |
+
#: includes/helpers.php:443
|
1944 |
+
msgid "Ireland"
|
1945 |
+
msgstr ""
|
1946 |
+
|
1947 |
+
#: includes/helpers.php:444
|
1948 |
+
msgid "Isle of Man"
|
1949 |
+
msgstr ""
|
1950 |
+
|
1951 |
+
#: includes/helpers.php:445
|
1952 |
+
msgid "Israel"
|
1953 |
+
msgstr ""
|
1954 |
+
|
1955 |
+
#: includes/helpers.php:446
|
1956 |
+
msgid "Italy"
|
1957 |
+
msgstr ""
|
1958 |
+
|
1959 |
+
#: includes/helpers.php:447
|
1960 |
+
msgid "Jamaica"
|
1961 |
+
msgstr ""
|
1962 |
+
|
1963 |
+
#: includes/helpers.php:448
|
1964 |
+
msgid "Japan"
|
1965 |
+
msgstr ""
|
1966 |
+
|
1967 |
+
#: includes/helpers.php:449
|
1968 |
+
msgid "Jersey"
|
1969 |
+
msgstr ""
|
1970 |
+
|
1971 |
+
#: includes/helpers.php:450
|
1972 |
+
msgid "Jordan"
|
1973 |
+
msgstr ""
|
1974 |
+
|
1975 |
+
#: includes/helpers.php:451
|
1976 |
+
msgid "Kazakhstan"
|
1977 |
+
msgstr ""
|
1978 |
+
|
1979 |
+
#: includes/helpers.php:452
|
1980 |
+
msgid "Kenya"
|
1981 |
+
msgstr ""
|
1982 |
+
|
1983 |
+
#: includes/helpers.php:453
|
1984 |
+
msgid "Kiribati"
|
1985 |
+
msgstr ""
|
1986 |
+
|
1987 |
+
#: includes/helpers.php:454
|
1988 |
+
msgid "Kuwait"
|
1989 |
+
msgstr ""
|
1990 |
+
|
1991 |
+
#: includes/helpers.php:455
|
1992 |
+
msgid "Kyrgyzstan"
|
1993 |
+
msgstr ""
|
1994 |
+
|
1995 |
+
#: includes/helpers.php:456
|
1996 |
+
msgid "Lao People's Democratic Republic"
|
1997 |
+
msgstr ""
|
1998 |
+
|
1999 |
+
#: includes/helpers.php:457
|
2000 |
+
msgid "Latvia"
|
2001 |
+
msgstr ""
|
2002 |
+
|
2003 |
+
#: includes/helpers.php:458
|
2004 |
+
msgid "Lebanon"
|
2005 |
+
msgstr ""
|
2006 |
+
|
2007 |
+
#: includes/helpers.php:459
|
2008 |
+
msgid "Lesotho"
|
2009 |
+
msgstr ""
|
2010 |
+
|
2011 |
+
#: includes/helpers.php:460
|
2012 |
+
msgid "Liberia"
|
2013 |
+
msgstr ""
|
2014 |
+
|
2015 |
+
#: includes/helpers.php:461
|
2016 |
+
msgid "Libyan Arab Jamahiriya"
|
2017 |
+
msgstr ""
|
2018 |
+
|
2019 |
+
#: includes/helpers.php:462
|
2020 |
+
msgid "Liechtenstein"
|
2021 |
+
msgstr ""
|
2022 |
+
|
2023 |
+
#: includes/helpers.php:463
|
2024 |
+
msgid "Lithuania"
|
2025 |
+
msgstr ""
|
2026 |
+
|
2027 |
+
#: includes/helpers.php:464
|
2028 |
+
msgid "Luxembourg"
|
2029 |
+
msgstr ""
|
2030 |
+
|
2031 |
+
#: includes/helpers.php:465
|
2032 |
+
msgid "Macau"
|
2033 |
+
msgstr ""
|
2034 |
+
|
2035 |
+
#: includes/helpers.php:466
|
2036 |
+
msgid "Macedonia"
|
2037 |
+
msgstr ""
|
2038 |
+
|
2039 |
+
#: includes/helpers.php:467
|
2040 |
+
msgid "Madagascar"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: includes/helpers.php:468
|
2044 |
+
msgid "Malawi"
|
2045 |
+
msgstr ""
|
2046 |
+
|
2047 |
+
#: includes/helpers.php:469
|
2048 |
+
msgid "Malaysia"
|
2049 |
+
msgstr ""
|
2050 |
+
|
2051 |
+
#: includes/helpers.php:470
|
2052 |
+
msgid "Maldives"
|
2053 |
+
msgstr ""
|
2054 |
+
|
2055 |
+
#: includes/helpers.php:471
|
2056 |
+
msgid "Mali"
|
2057 |
+
msgstr ""
|
2058 |
+
|
2059 |
+
#: includes/helpers.php:472
|
2060 |
+
msgid "Malta"
|
2061 |
+
msgstr ""
|
2062 |
+
|
2063 |
+
#: includes/helpers.php:473
|
2064 |
+
msgid "Marshall Islands"
|
2065 |
+
msgstr ""
|
2066 |
+
|
2067 |
+
#: includes/helpers.php:474
|
2068 |
+
msgid "Martinique"
|
2069 |
+
msgstr ""
|
2070 |
+
|
2071 |
+
#: includes/helpers.php:475
|
2072 |
+
msgid "Mauritania"
|
2073 |
+
msgstr ""
|
2074 |
+
|
2075 |
+
#: includes/helpers.php:476
|
2076 |
+
msgid "Mauritius"
|
2077 |
+
msgstr ""
|
2078 |
+
|
2079 |
+
#: includes/helpers.php:477
|
2080 |
+
msgid "Mayotte"
|
2081 |
+
msgstr ""
|
2082 |
+
|
2083 |
+
#: includes/helpers.php:478
|
2084 |
+
msgid "Mexico"
|
2085 |
+
msgstr ""
|
2086 |
+
|
2087 |
+
#: includes/helpers.php:479
|
2088 |
+
msgid "Micronesia"
|
2089 |
+
msgstr ""
|
2090 |
+
|
2091 |
+
#: includes/helpers.php:480
|
2092 |
+
msgid "Moldova, Republic of"
|
2093 |
+
msgstr ""
|
2094 |
+
|
2095 |
+
#: includes/helpers.php:481
|
2096 |
+
msgid "Monaco"
|
2097 |
+
msgstr ""
|
2098 |
+
|
2099 |
+
#: includes/helpers.php:482
|
2100 |
+
msgid "Mongolia"
|
2101 |
+
msgstr ""
|
2102 |
+
|
2103 |
+
#: includes/helpers.php:483
|
2104 |
+
msgid "Montenegro"
|
2105 |
+
msgstr ""
|
2106 |
+
|
2107 |
+
#: includes/helpers.php:484
|
2108 |
+
msgid "Montserrat"
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: includes/helpers.php:485
|
2112 |
+
msgid "Morocco"
|
2113 |
+
msgstr ""
|
2114 |
+
|
2115 |
+
#: includes/helpers.php:486
|
2116 |
+
msgid "Mozambique"
|
2117 |
+
msgstr ""
|
2118 |
+
|
2119 |
+
#: includes/helpers.php:487
|
2120 |
+
msgid "Myanmar"
|
2121 |
+
msgstr ""
|
2122 |
+
|
2123 |
+
#: includes/helpers.php:488
|
2124 |
+
msgid "Namibia"
|
2125 |
+
msgstr ""
|
2126 |
+
|
2127 |
+
#: includes/helpers.php:489
|
2128 |
+
msgid "Nauru"
|
2129 |
+
msgstr ""
|
2130 |
+
|
2131 |
+
#: includes/helpers.php:490
|
2132 |
+
msgid "Nepal"
|
2133 |
+
msgstr ""
|
2134 |
+
|
2135 |
+
#: includes/helpers.php:491
|
2136 |
+
msgid "Netherlands"
|
2137 |
+
msgstr ""
|
2138 |
+
|
2139 |
+
#: includes/helpers.php:492
|
2140 |
+
msgid "Netherlands Antilles"
|
2141 |
+
msgstr ""
|
2142 |
+
|
2143 |
+
#: includes/helpers.php:493
|
2144 |
+
msgid "New Caledonia"
|
2145 |
+
msgstr ""
|
2146 |
+
|
2147 |
+
#: includes/helpers.php:494
|
2148 |
+
msgid "New Zealand"
|
2149 |
+
msgstr ""
|
2150 |
+
|
2151 |
+
#: includes/helpers.php:495
|
2152 |
+
msgid "Nicaragua"
|
2153 |
+
msgstr ""
|
2154 |
+
|
2155 |
+
#: includes/helpers.php:496
|
2156 |
+
msgid "Niger"
|
2157 |
+
msgstr ""
|
2158 |
+
|
2159 |
+
#: includes/helpers.php:497
|
2160 |
+
msgid "Nigeria"
|
2161 |
+
msgstr ""
|
2162 |
+
|
2163 |
+
#: includes/helpers.php:498
|
2164 |
+
msgid "Niue"
|
2165 |
+
msgstr ""
|
2166 |
+
|
2167 |
+
#: includes/helpers.php:499
|
2168 |
+
msgid "Norfolk Island"
|
2169 |
+
msgstr ""
|
2170 |
+
|
2171 |
+
#: includes/helpers.php:500
|
2172 |
+
msgid "North Korea"
|
2173 |
+
msgstr ""
|
2174 |
+
|
2175 |
+
#: includes/helpers.php:501
|
2176 |
+
msgid "Northern Mariana Islands"
|
2177 |
+
msgstr ""
|
2178 |
+
|
2179 |
+
#: includes/helpers.php:502
|
2180 |
+
msgid "Norway"
|
2181 |
+
msgstr ""
|
2182 |
+
|
2183 |
+
#: includes/helpers.php:503
|
2184 |
+
msgid "Oman"
|
2185 |
+
msgstr ""
|
2186 |
+
|
2187 |
+
#: includes/helpers.php:504
|
2188 |
+
msgid "Pakistan"
|
2189 |
+
msgstr ""
|
2190 |
+
|
2191 |
+
#: includes/helpers.php:505
|
2192 |
+
msgid "Palau"
|
2193 |
+
msgstr ""
|
2194 |
+
|
2195 |
+
#: includes/helpers.php:506
|
2196 |
+
msgid "Palestinian Territories"
|
2197 |
+
msgstr ""
|
2198 |
+
|
2199 |
+
#: includes/helpers.php:507
|
2200 |
+
msgid "Panama"
|
2201 |
+
msgstr ""
|
2202 |
+
|
2203 |
+
#: includes/helpers.php:508
|
2204 |
+
msgid "Papua New Guinea"
|
2205 |
+
msgstr ""
|
2206 |
+
|
2207 |
+
#: includes/helpers.php:509
|
2208 |
+
msgid "Paraguay"
|
2209 |
+
msgstr ""
|
2210 |
+
|
2211 |
+
#: includes/helpers.php:510
|
2212 |
+
msgid "Peru"
|
2213 |
+
msgstr ""
|
2214 |
+
|
2215 |
+
#: includes/helpers.php:511
|
2216 |
+
msgid "Philippines"
|
2217 |
+
msgstr ""
|
2218 |
+
|
2219 |
+
#: includes/helpers.php:512
|
2220 |
+
msgid "Pitcairn Island"
|
2221 |
+
msgstr ""
|
2222 |
+
|
2223 |
+
#: includes/helpers.php:513
|
2224 |
+
msgid "Poland"
|
2225 |
+
msgstr ""
|
2226 |
+
|
2227 |
+
#: includes/helpers.php:514
|
2228 |
+
msgid "Portugal"
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: includes/helpers.php:515
|
2232 |
+
msgid "Puerto Rico"
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: includes/helpers.php:516
|
2236 |
+
msgid "Qatar"
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: includes/helpers.php:517
|
2240 |
+
msgid "Republic of Kosovo"
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#: includes/helpers.php:518
|
2244 |
+
msgid "Reunion Island"
|
2245 |
+
msgstr ""
|
2246 |
+
|
2247 |
+
#: includes/helpers.php:519
|
2248 |
+
msgid "Romania"
|
2249 |
+
msgstr ""
|
2250 |
+
|
2251 |
+
#: includes/helpers.php:520
|
2252 |
+
msgid "Russian Federation"
|
2253 |
+
msgstr ""
|
2254 |
+
|
2255 |
+
#: includes/helpers.php:521
|
2256 |
+
msgid "Rwanda"
|
2257 |
+
msgstr ""
|
2258 |
+
|
2259 |
+
#: includes/helpers.php:522
|
2260 |
+
msgid "Saint Barthélemy"
|
2261 |
+
msgstr ""
|
2262 |
+
|
2263 |
+
#: includes/helpers.php:523
|
2264 |
+
msgid "Saint Helena"
|
2265 |
+
msgstr ""
|
2266 |
+
|
2267 |
+
#: includes/helpers.php:524
|
2268 |
+
msgid "Saint Kitts and Nevis"
|
2269 |
+
msgstr ""
|
2270 |
+
|
2271 |
+
#: includes/helpers.php:525
|
2272 |
+
msgid "Saint Lucia"
|
2273 |
+
msgstr ""
|
2274 |
+
|
2275 |
+
#: includes/helpers.php:526
|
2276 |
+
msgid "Saint Martin (French)"
|
2277 |
+
msgstr ""
|
2278 |
+
|
2279 |
+
#: includes/helpers.php:527
|
2280 |
+
msgid "Saint Martin (Dutch)"
|
2281 |
+
msgstr ""
|
2282 |
+
|
2283 |
+
#: includes/helpers.php:528
|
2284 |
+
msgid "Saint Pierre and Miquelon"
|
2285 |
+
msgstr ""
|
2286 |
+
|
2287 |
+
#: includes/helpers.php:529
|
2288 |
+
msgid "Saint Vincent and the Grenadines"
|
2289 |
+
msgstr ""
|
2290 |
+
|
2291 |
+
#: includes/helpers.php:530
|
2292 |
+
msgid "San Marino"
|
2293 |
+
msgstr ""
|
2294 |
+
|
2295 |
+
#: includes/helpers.php:531
|
2296 |
+
msgid "São Tomé and Príncipe"
|
2297 |
+
msgstr ""
|
2298 |
+
|
2299 |
+
#: includes/helpers.php:532
|
2300 |
+
msgid "Saudi Arabia"
|
2301 |
+
msgstr ""
|
2302 |
+
|
2303 |
+
#: includes/helpers.php:533
|
2304 |
+
msgid "Senegal"
|
2305 |
+
msgstr ""
|
2306 |
+
|
2307 |
+
#: includes/helpers.php:534
|
2308 |
+
msgid "Serbia"
|
2309 |
+
msgstr ""
|
2310 |
+
|
2311 |
+
#: includes/helpers.php:535
|
2312 |
+
msgid "Seychelles"
|
2313 |
+
msgstr ""
|
2314 |
+
|
2315 |
+
#: includes/helpers.php:536
|
2316 |
+
msgid "Sierra Leone"
|
2317 |
+
msgstr ""
|
2318 |
+
|
2319 |
+
#: includes/helpers.php:537
|
2320 |
+
msgid "Singapore"
|
2321 |
+
msgstr ""
|
2322 |
+
|
2323 |
+
#: includes/helpers.php:538
|
2324 |
+
msgid "Slovak Republic"
|
2325 |
+
msgstr ""
|
2326 |
+
|
2327 |
+
#: includes/helpers.php:539
|
2328 |
+
msgid "Slovenia"
|
2329 |
+
msgstr ""
|
2330 |
+
|
2331 |
+
#: includes/helpers.php:540
|
2332 |
+
msgid "Solomon Islands"
|
2333 |
+
msgstr ""
|
2334 |
+
|
2335 |
+
#: includes/helpers.php:541
|
2336 |
+
msgid "Somalia"
|
2337 |
+
msgstr ""
|
2338 |
+
|
2339 |
+
#: includes/helpers.php:542
|
2340 |
+
msgid "South Africa"
|
2341 |
+
msgstr ""
|
2342 |
+
|
2343 |
+
#: includes/helpers.php:543
|
2344 |
+
msgid "South Georgia"
|
2345 |
+
msgstr ""
|
2346 |
+
|
2347 |
+
#: includes/helpers.php:544
|
2348 |
+
msgid "South Korea"
|
2349 |
+
msgstr ""
|
2350 |
+
|
2351 |
+
#: includes/helpers.php:545
|
2352 |
+
msgid "South Sudan"
|
2353 |
+
msgstr ""
|
2354 |
+
|
2355 |
+
#: includes/helpers.php:546
|
2356 |
+
msgid "Spain"
|
2357 |
+
msgstr ""
|
2358 |
+
|
2359 |
+
#: includes/helpers.php:547
|
2360 |
+
msgid "Sri Lanka"
|
2361 |
+
msgstr ""
|
2362 |
+
|
2363 |
+
#: includes/helpers.php:548
|
2364 |
+
msgid "Sudan"
|
2365 |
+
msgstr ""
|
2366 |
+
|
2367 |
+
#: includes/helpers.php:549
|
2368 |
+
msgid "Suriname"
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: includes/helpers.php:550
|
2372 |
+
msgid "Svalbard and Jan Mayen Islands"
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: includes/helpers.php:551
|
2376 |
+
msgid "Swaziland"
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: includes/helpers.php:552
|
2380 |
+
msgid "Sweden"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: includes/helpers.php:553
|
2384 |
+
msgid "Switzerland"
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: includes/helpers.php:554
|
2388 |
+
msgid "Syrian Arab Republic"
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: includes/helpers.php:555
|
2392 |
+
msgid "Taiwan"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: includes/helpers.php:556
|
2396 |
+
msgid "Tajikistan"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: includes/helpers.php:557
|
2400 |
+
msgid "Tanzania"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: includes/helpers.php:558
|
2404 |
+
msgid "Thailand"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: includes/helpers.php:559
|
2408 |
+
msgid "Timor-Leste"
|
2409 |
+
msgstr ""
|
2410 |
+
|
2411 |
+
#: includes/helpers.php:560
|
2412 |
+
msgid "Togo"
|
2413 |
+
msgstr ""
|
2414 |
+
|
2415 |
+
#: includes/helpers.php:561
|
2416 |
+
msgid "Tokelau"
|
2417 |
+
msgstr ""
|
2418 |
+
|
2419 |
+
#: includes/helpers.php:562
|
2420 |
+
msgid "Tonga"
|
2421 |
+
msgstr ""
|
2422 |
+
|
2423 |
+
#: includes/helpers.php:563
|
2424 |
+
msgid "Trinidad and Tobago"
|
2425 |
+
msgstr ""
|
2426 |
+
|
2427 |
+
#: includes/helpers.php:564
|
2428 |
+
msgid "Tunisia"
|
2429 |
+
msgstr ""
|
2430 |
+
|
2431 |
+
#: includes/helpers.php:565
|
2432 |
+
msgid "Turkey"
|
2433 |
+
msgstr ""
|
2434 |
+
|
2435 |
+
#: includes/helpers.php:566
|
2436 |
+
msgid "Turkmenistan"
|
2437 |
+
msgstr ""
|
2438 |
+
|
2439 |
+
#: includes/helpers.php:567
|
2440 |
+
msgid "Turks and Caicos Islands"
|
2441 |
+
msgstr ""
|
2442 |
+
|
2443 |
+
#: includes/helpers.php:568
|
2444 |
+
msgid "Tuvalu"
|
2445 |
+
msgstr ""
|
2446 |
+
|
2447 |
+
#: includes/helpers.php:569
|
2448 |
+
msgid "Uganda"
|
2449 |
+
msgstr ""
|
2450 |
+
|
2451 |
+
#: includes/helpers.php:570
|
2452 |
+
msgid "Ukraine"
|
2453 |
+
msgstr ""
|
2454 |
+
|
2455 |
+
#: includes/helpers.php:571
|
2456 |
+
msgid "United Arab Emirates"
|
2457 |
+
msgstr ""
|
2458 |
+
|
2459 |
+
#: includes/helpers.php:572
|
2460 |
+
msgid "Uruguay"
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: includes/helpers.php:573
|
2464 |
+
msgid "US Minor Outlying Islands"
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: includes/helpers.php:574
|
2468 |
+
msgid "Uzbekistan"
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: includes/helpers.php:575
|
2472 |
+
msgid "Vanuatu"
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: includes/helpers.php:576
|
2476 |
+
msgid "Venezuela"
|
2477 |
+
msgstr ""
|
2478 |
+
|
2479 |
+
#: includes/helpers.php:577
|
2480 |
+
msgid "Vietnam"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: includes/helpers.php:578
|
2484 |
+
msgid "Virgin Islands (British)"
|
2485 |
+
msgstr ""
|
2486 |
+
|
2487 |
+
#: includes/helpers.php:579
|
2488 |
+
msgid "Virgin Islands (USA)"
|
2489 |
+
msgstr ""
|
2490 |
+
|
2491 |
+
#: includes/helpers.php:580
|
2492 |
+
msgid "Wallis and Futuna Islands"
|
2493 |
+
msgstr ""
|
2494 |
+
|
2495 |
+
#: includes/helpers.php:581
|
2496 |
+
msgid "Western Sahara"
|
2497 |
+
msgstr ""
|
2498 |
+
|
2499 |
+
#: includes/helpers.php:582
|
2500 |
+
msgid "Western Samoa"
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: includes/helpers.php:583
|
2504 |
+
msgid "Yemen"
|
2505 |
+
msgstr ""
|
2506 |
+
|
2507 |
+
#: includes/helpers.php:584
|
2508 |
+
msgid "Zambia"
|
2509 |
+
msgstr ""
|
2510 |
+
|
2511 |
+
#: includes/helpers.php:585
|
2512 |
+
msgid "Zimbabwe"
|
2513 |
+
msgstr ""
|
2514 |
+
|
2515 |
+
#: lite/includes/admin/dashboard-widget.php:88
|
2516 |
+
#: lite/includes/admin/dashboard-widget.php:96
|
2517 |
+
#, php-format
|
2518 |
+
msgid "Last %d days"
|
2519 |
+
msgstr ""
|
2520 |
+
|
2521 |
+
#: lite/includes/admin/dashboard-widget.php:102
|
2522 |
+
msgid "Show in full-width mode"
|
2523 |
+
msgstr ""
|
2524 |
+
|
2525 |
+
#: lite/includes/admin/dashboard-widget.php:113
|
2526 |
+
msgid "View All Analytics on the WordPress Dashboard"
|
2527 |
+
msgstr ""
|
2528 |
+
|
2529 |
+
#: lite/includes/admin/dashboard-widget.php:114
|
2530 |
+
msgid "Once you upgrade to MonsterInsights Pro, you can see your analytics on the Dashboard"
|
2531 |
+
msgstr ""
|
2532 |
+
|
2533 |
+
#: lite/includes/admin/dashboard-widget.php:117
|
2534 |
+
msgid "Go to MonsterInsights Reports"
|
2535 |
+
msgstr ""
|
2536 |
+
|
2537 |
+
#: lite/includes/admin/dashboard-widget.php:133
|
2538 |
+
msgid "Reports are not available"
|
2539 |
+
msgstr ""
|
2540 |
+
|
2541 |
+
#: lite/includes/admin/dashboard-widget.php:134
|
2542 |
+
msgid "Please connect MonsterInsights to Google Analytics to see reports."
|
2543 |
+
msgstr ""
|
2544 |
+
|
2545 |
+
#: lite/includes/admin/dashboard-widget.php:135
|
2546 |
+
msgid "Configure MonsterInsights"
|
2547 |
+
msgstr ""
|
2548 |
+
|
2549 |
+
#: lite/includes/admin/reports/report-dimensions.php:22
|
2550 |
+
msgid "Dimensions"
|
2551 |
+
msgstr ""
|
2552 |
+
|
2553 |
+
#: lite/includes/admin/reports/report-publisher.php:22
|
2554 |
+
msgid "Publishers"
|
2555 |
+
msgstr ""
|
2556 |
+
|
2557 |
+
#: lite/includes/admin/reports/report-queries.php:22
|
2558 |
+
msgid "Search Console"
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: lite/includes/admin/settings.php:14 lite/includes/admin/settings.php:32
|
2562 |
+
#: lite/includes/admin/settings.php:41 lite/includes/admin/settings.php:50
|
2563 |
+
#: lite/includes/admin/settings.php:59 lite/includes/admin/settings.php:68
|
2564 |
+
#: lite/includes/admin/settings.php:77 lite/includes/admin/settings.php:86
|
2565 |
+
#: lite/includes/admin/settings.php:131 lite/includes/admin/settings.php:140
|
2566 |
+
msgid "Want to increase your traffic, conversion, & engagement?"
|
2567 |
+
msgstr ""
|
2568 |
+
|
2569 |
+
#: lite/includes/admin/settings.php:16
|
2570 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Social tracking to see who's clicking on your social share links, so you can track and maximize your social sharing exposure."
|
2571 |
+
msgstr ""
|
2572 |
+
|
2573 |
+
#: lite/includes/admin/settings.php:23
|
2574 |
+
msgid "Google Analytics EU Compliance"
|
2575 |
+
msgstr ""
|
2576 |
+
|
2577 |
+
#: lite/includes/admin/settings.php:25
|
2578 |
+
msgid "The MonsterInsights EU Compliance addon allows you to improve compliance with GDPR and other privacy regulations."
|
2579 |
+
msgstr ""
|
2580 |
+
|
2581 |
+
#: lite/includes/admin/settings.php:34
|
2582 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
2583 |
+
msgstr ""
|
2584 |
+
|
2585 |
+
#: lite/includes/admin/settings.php:43
|
2586 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Forms tracking to see who's seeing and submitting your forms, so you can increase your conversion rate."
|
2587 |
+
msgstr ""
|
2588 |
+
|
2589 |
+
#: lite/includes/admin/settings.php:52
|
2590 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Media tracking to see who's interacting with the media on your site, so you know what your users are most interested in on your site. You can use this to tailor future content to meet your audience's interest to promote repeat visitors and expand your average user's time spent visiting your website on each visit."
|
2591 |
+
msgstr ""
|
2592 |
+
|
2593 |
+
#: lite/includes/admin/settings.php:61
|
2594 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Membership tracking."
|
2595 |
+
msgstr ""
|
2596 |
+
|
2597 |
+
#: lite/includes/admin/settings.php:70
|
2598 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more. Why not check it out?"
|
2599 |
+
msgstr ""
|
2600 |
+
|
2601 |
+
#: lite/includes/admin/settings.php:79
|
2602 |
+
msgid "By upgrading to MonsterInsights Pro, you can adjust the sample rate so you don't exceed Google Analytics' processing limit. You can also use it to enable Google Optimize for A/B testing and personalization."
|
2603 |
+
msgstr ""
|
2604 |
+
|
2605 |
+
#: lite/includes/admin/settings.php:88
|
2606 |
+
msgid "By upgrading to MonsterInsights Pro, you can enable enhanced reporting."
|
2607 |
+
msgstr ""
|
2608 |
+
|
2609 |
+
#: lite/includes/admin/settings.php:95
|
2610 |
+
msgid "Want to use track users visiting your AMP pages?"
|
2611 |
+
msgstr ""
|
2612 |
+
|
2613 |
+
#: lite/includes/admin/settings.php:97
|
2614 |
+
msgid "By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
|
2615 |
+
msgstr ""
|
2616 |
+
|
2617 |
+
#: lite/includes/admin/settings.php:104
|
2618 |
+
msgid "Want to use Google Optimize to retarget your website visitors and perform A/B split tests with ease?"
|
2619 |
+
msgstr ""
|
2620 |
+
|
2621 |
+
#: lite/includes/admin/settings.php:106
|
2622 |
+
msgid "By upgrading to MonsterInsights Pro, you can enable Google Optimize."
|
2623 |
+
msgstr ""
|
2624 |
+
|
2625 |
+
#: lite/includes/admin/settings.php:113
|
2626 |
+
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles?"
|
2627 |
+
msgstr ""
|
2628 |
+
|
2629 |
+
#: lite/includes/admin/settings.php:115
|
2630 |
+
msgid "By upgrading to MonsterInsights Pro, you can track your Facebook Instant Article visitors with MonsterInsights."
|
2631 |
+
msgstr ""
|
2632 |
+
|
2633 |
+
#: lite/includes/admin/settings.php:122
|
2634 |
+
msgid "Want to adjust your website bounce rate?"
|
2635 |
+
msgstr ""
|
2636 |
+
|
2637 |
+
#: lite/includes/admin/settings.php:124
|
2638 |
+
msgid "By upgrading to MonsterInsights Pro, you can adjust your Google Analytics bounce rate with MonsterInsights."
|
2639 |
+
msgstr ""
|
2640 |
+
|
2641 |
+
#: lite/includes/admin/settings.php:133
|
2642 |
+
msgid "By upgrading to MonsterInsights Pro, you can enable notifications."
|
2643 |
+
msgstr ""
|
2644 |
+
|
2645 |
+
#: lite/includes/admin/settings.php:142
|
2646 |
+
msgid "By upgrading to MonsterInsights Pro, you can add Ecommerce tracking to see who's buying your product, what's the most popular item on your store, the average order value, and tons more."
|
2647 |
+
msgstr ""
|
2648 |
+
|
2649 |
+
#: lite/includes/admin/tools.php:11
|
2650 |
+
msgid "By upgrading to MonsterInsights Pro, you can unlock the MonsterInsights URL builder that helps you better track your advertising and email marketing campaigns."
|
2651 |
+
msgstr ""
|
2652 |
+
|
2653 |
+
#. Plugin Name of the plugin/theme
|
2654 |
+
msgid "Google Analytics for WordPress by MonsterInsights"
|
2655 |
+
msgstr ""
|
2656 |
+
|
2657 |
+
#. Plugin URI of the plugin/theme
|
2658 |
+
msgid "https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0"
|
2659 |
+
msgstr ""
|
2660 |
+
|
2661 |
+
#. Description of the plugin/theme
|
2662 |
+
msgid "The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back."
|
2663 |
+
msgstr ""
|
2664 |
+
|
2665 |
+
#. Author URI of the plugin/theme
|
2666 |
+
msgid "https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0"
|
2667 |
+
msgstr ""
|
lite/assets/css/admin-dashboard-widget.css
ADDED
@@ -0,0 +1,332 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
#monsterinsights_reports_widget.postbox {
|
3 |
+
color: #333;
|
4 |
+
font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
5 |
+
}
|
6 |
+
|
7 |
+
#monsterinsights_reports_widget a {
|
8 |
+
text-decoration: none;
|
9 |
+
}
|
10 |
+
|
11 |
+
.mi-dw-report-toggle {
|
12 |
+
display: none;
|
13 |
+
}
|
14 |
+
|
15 |
+
.mi-dw-report-toggle.visible {
|
16 |
+
display: block;
|
17 |
+
}
|
18 |
+
|
19 |
+
#monsterinsights_reports_widget * {
|
20 |
+
box-sizing: border-box;
|
21 |
+
}
|
22 |
+
|
23 |
+
#monsterinsights_reports_widget.mi-loaded .handlediv {
|
24 |
+
display: none;
|
25 |
+
}
|
26 |
+
|
27 |
+
#monsterinsights_reports_widget .hndle {
|
28 |
+
font-size: 18px;
|
29 |
+
height: 50px;
|
30 |
+
padding-top: 12px;
|
31 |
+
}
|
32 |
+
|
33 |
+
#monsterinsights_reports_widget.postbox .handlediv {
|
34 |
+
height: 50px;
|
35 |
+
}
|
36 |
+
|
37 |
+
.mi-dw-styled-toggle {
|
38 |
+
background: #eee;
|
39 |
+
border: 1px solid #1f76c4;
|
40 |
+
border-radius: 20px;
|
41 |
+
display: inline-block;
|
42 |
+
height: 16px;
|
43 |
+
position: relative;
|
44 |
+
width: 30px;
|
45 |
+
}
|
46 |
+
|
47 |
+
.mi-dw-styled-toggle:after {
|
48 |
+
background: #1f76c4;
|
49 |
+
border-radius: 50%;
|
50 |
+
content: '';
|
51 |
+
height: 12px;
|
52 |
+
left: 1px;
|
53 |
+
position: absolute;
|
54 |
+
top: 1px;
|
55 |
+
transition: left 300ms ease 0s, right 300ms ease 0s;
|
56 |
+
width: 12px;
|
57 |
+
}
|
58 |
+
|
59 |
+
.mi-dw-styled-toggle.checked:after {
|
60 |
+
left: calc(100% - 13px);
|
61 |
+
}
|
62 |
+
|
63 |
+
.mi-dw-styled-toggle input {
|
64 |
+
display: none;
|
65 |
+
}
|
66 |
+
|
67 |
+
.mi-dw-controls {
|
68 |
+
padding-right: 20px;
|
69 |
+
position: absolute;
|
70 |
+
right: 0;
|
71 |
+
text-align: right;
|
72 |
+
top: 10px;
|
73 |
+
width: 230px;
|
74 |
+
}
|
75 |
+
|
76 |
+
.mi-dw-controls .mi-dw-mascot {
|
77 |
+
display: none;
|
78 |
+
height: auto;
|
79 |
+
width: 48px;
|
80 |
+
}
|
81 |
+
|
82 |
+
.mi-dw-datepicker {
|
83 |
+
display: inline-block;
|
84 |
+
margin-right: 15px;
|
85 |
+
width: 120px;
|
86 |
+
}
|
87 |
+
|
88 |
+
.mi-dw-button-cog {
|
89 |
+
background: url('../img/mi-dw-cog@2x.png') no-repeat transparent;
|
90 |
+
background-size: 20px;
|
91 |
+
border: none;
|
92 |
+
cursor: pointer;
|
93 |
+
display: block;
|
94 |
+
height: 20px;
|
95 |
+
outline: none;
|
96 |
+
padding: 0;
|
97 |
+
width: 20px;
|
98 |
+
}
|
99 |
+
|
100 |
+
.mi-dw-controls .mi-dw-dropdown {
|
101 |
+
margin-left: 5px;
|
102 |
+
}
|
103 |
+
|
104 |
+
.mi-dw-dropdown {
|
105 |
+
display: inline-block;
|
106 |
+
position: relative;
|
107 |
+
text-align: left;
|
108 |
+
vertical-align: middle;
|
109 |
+
}
|
110 |
+
|
111 |
+
.mi-dw-dropdown > ul {
|
112 |
+
background: #fff;
|
113 |
+
border: 1px solid #d8d8d8;
|
114 |
+
border-radius: 5px;
|
115 |
+
cursor: initial;
|
116 |
+
display: none;
|
117 |
+
font-weight: 400;
|
118 |
+
margin-right: -11px;
|
119 |
+
margin-top: 5px;
|
120 |
+
padding: 10px 5px 10px 10px;
|
121 |
+
position: absolute;
|
122 |
+
right: 0;
|
123 |
+
top: 100%;
|
124 |
+
width: 180px;
|
125 |
+
z-index: 999;
|
126 |
+
}
|
127 |
+
|
128 |
+
.mi-dw-dropdown > ul:before {
|
129 |
+
border-color: transparent transparent #d8d8d8 transparent;
|
130 |
+
border-style: solid;
|
131 |
+
border-width: 0 4px 4px 4px;
|
132 |
+
bottom: 100%;
|
133 |
+
content: '';
|
134 |
+
height: 0;
|
135 |
+
position: absolute;
|
136 |
+
right: 16px;
|
137 |
+
width: 0;
|
138 |
+
}
|
139 |
+
|
140 |
+
.mi-dw-dropdown > ul:after {
|
141 |
+
border-color: transparent transparent #fff transparent;
|
142 |
+
border-style: solid;
|
143 |
+
border-width: 0 3px 3px 3px;
|
144 |
+
bottom: 100%;
|
145 |
+
content: '';
|
146 |
+
height: 0;
|
147 |
+
position: absolute;
|
148 |
+
right: 17px;
|
149 |
+
width: 0;
|
150 |
+
}
|
151 |
+
|
152 |
+
.mi-dw-dropdown.open > ul {
|
153 |
+
display: block;
|
154 |
+
}
|
155 |
+
|
156 |
+
.mi-dw-dropdown > ul > li > span {
|
157 |
+
color: #999;
|
158 |
+
font-size: 10px;
|
159 |
+
}
|
160 |
+
|
161 |
+
.mi-dw-dropdown > ul > li > ul {
|
162 |
+
color: #333;
|
163 |
+
font-size: 12px;
|
164 |
+
}
|
165 |
+
|
166 |
+
.mi-dw-lite {
|
167 |
+
align-items: center;
|
168 |
+
background: url('../img/mi-dw-bg.png') no-repeat;
|
169 |
+
background-size: 100% 470px;
|
170 |
+
display: flex;
|
171 |
+
height: 470px;
|
172 |
+
padding: 40px 0;
|
173 |
+
}
|
174 |
+
|
175 |
+
.mi-dw-lite-content {
|
176 |
+
background: #fff;
|
177 |
+
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
|
178 |
+
display: block;
|
179 |
+
margin: 0 30px;
|
180 |
+
padding: 30px;
|
181 |
+
width: 100%;
|
182 |
+
}
|
183 |
+
|
184 |
+
.mi-dw-not-authed,
|
185 |
+
.mi-dw-lite-content {
|
186 |
+
text-align: center;
|
187 |
+
}
|
188 |
+
|
189 |
+
.postbox .inside .mi-dw-not-authed h2 {
|
190 |
+
font-size: 18px;
|
191 |
+
margin: 0 auto;
|
192 |
+
max-width: 250px;
|
193 |
+
}
|
194 |
+
|
195 |
+
.mi-dw-not-authed p {
|
196 |
+
font-size: 14px;
|
197 |
+
margin: 18px auto;
|
198 |
+
max-width: 240px;
|
199 |
+
}
|
200 |
+
|
201 |
+
.mi-dw-btn-large {
|
202 |
+
background: #1f76c4;
|
203 |
+
border-radius: 5px;
|
204 |
+
color: #fff;
|
205 |
+
display: inline-block;
|
206 |
+
font-size: 14px;
|
207 |
+
line-height: 1;
|
208 |
+
margin-bottom: 10px;
|
209 |
+
padding: 14px 28px;
|
210 |
+
}
|
211 |
+
|
212 |
+
.mi-dw-btn-large:hover,
|
213 |
+
.mi-dw-btn-large:focus {
|
214 |
+
color: #fff;
|
215 |
+
}
|
216 |
+
|
217 |
+
.mi-dw-btn-group {
|
218 |
+
display: inline-block;
|
219 |
+
position: relative;
|
220 |
+
}
|
221 |
+
|
222 |
+
.mi-dw-btn-group .mi-dw-btn-list {
|
223 |
+
border-left: 1px solid #d8d8d8;
|
224 |
+
border-right: 1px solid #d8d8d8;
|
225 |
+
display: none;
|
226 |
+
position: absolute;
|
227 |
+
top: 100%;
|
228 |
+
width: 100%;
|
229 |
+
z-index: 9999;
|
230 |
+
}
|
231 |
+
|
232 |
+
.mi-dw-btn,
|
233 |
+
.mi-dw-btn-group-label {
|
234 |
+
background: #fff;
|
235 |
+
border: 1px solid #d8d8d8;
|
236 |
+
border-radius: 5px;
|
237 |
+
cursor: pointer;
|
238 |
+
display: inline-block;
|
239 |
+
font-size: 13px;
|
240 |
+
font-weight: 400;
|
241 |
+
line-height: 1;
|
242 |
+
outline: none;
|
243 |
+
padding: 8px 20px 8px 10px;
|
244 |
+
position: relative;
|
245 |
+
text-align: left;
|
246 |
+
width: 100%;
|
247 |
+
}
|
248 |
+
|
249 |
+
.mi-dw-btn-group .mi-dw-btn {
|
250 |
+
border-radius: 0;
|
251 |
+
border-width: 0 0 1px 0;
|
252 |
+
}
|
253 |
+
|
254 |
+
.mi-dw-btn-group .mi-dw-btn.selected {
|
255 |
+
background: #1f76c4;
|
256 |
+
color: #fff;
|
257 |
+
}
|
258 |
+
|
259 |
+
.mi-dw-btn-group-label:after {
|
260 |
+
border-color: #333333 transparent transparent transparent;
|
261 |
+
border-style: solid;
|
262 |
+
border-width: 3px 2.5px 0 2.5px;
|
263 |
+
content: '';
|
264 |
+
height: 0;
|
265 |
+
margin-top: -1px;
|
266 |
+
position: absolute;
|
267 |
+
right: 8px;
|
268 |
+
top: 50%;
|
269 |
+
width: 0;
|
270 |
+
}
|
271 |
+
|
272 |
+
.mi-dw-btn-group.open .mi-dw-btn-group-label {
|
273 |
+
border-radius: 5px 5px 0 0;
|
274 |
+
}
|
275 |
+
|
276 |
+
.mi-dw-btn-group.open .mi-dw-btn-list {
|
277 |
+
display: block;
|
278 |
+
}
|
279 |
+
|
280 |
+
.mi-dw-ui-tooltip {
|
281 |
+
background-color: #363636;
|
282 |
+
border-radius: 4px;
|
283 |
+
box-shadow: 0 0 24px rgba(51, 51, 51, 0.33);
|
284 |
+
color: #fff;
|
285 |
+
font-size: 8px;
|
286 |
+
max-width: 226px !important;
|
287 |
+
padding: 4px 8px;
|
288 |
+
position: absolute;
|
289 |
+
z-index: 99999;
|
290 |
+
}
|
291 |
+
|
292 |
+
.mi-dw-ui-tooltip:after {
|
293 |
+
border-color: #363636 transparent transparent transparent;
|
294 |
+
border-style: solid;
|
295 |
+
border-width: 3px 3px 0 3px;
|
296 |
+
content: '';
|
297 |
+
height: 0;
|
298 |
+
left: 50%;
|
299 |
+
margin-left: -3px;
|
300 |
+
position: absolute;
|
301 |
+
top: 100%;
|
302 |
+
width: 0;
|
303 |
+
}
|
304 |
+
|
305 |
+
.mi-animation-shake {
|
306 |
+
animation: shake 1000ms cubic-bezier(.36, .07, .19, .97) both;
|
307 |
+
transform: translate3d(0, 0, 0);
|
308 |
+
backface-visibility: hidden;
|
309 |
+
perspective: 1000px;
|
310 |
+
}
|
311 |
+
|
312 |
+
.js #monsterinsights_reports_widget.closed .inside {
|
313 |
+
display: block;
|
314 |
+
}
|
315 |
+
|
316 |
+
@keyframes shake {
|
317 |
+
10%, 90% {
|
318 |
+
transform: translate3d(-1px, 0, 0) rotate(3deg);
|
319 |
+
}
|
320 |
+
|
321 |
+
20%, 80% {
|
322 |
+
transform: translate3d(2px, 0, 0) rotate(-3deg);
|
323 |
+
}
|
324 |
+
|
325 |
+
30%, 50%, 70% {
|
326 |
+
transform: translate3d(-4px, 0, 0) rotate(3deg);
|
327 |
+
}
|
328 |
+
|
329 |
+
40%, 60% {
|
330 |
+
transform: translate3d(4px, 0, 0) rotate(-3deg);
|
331 |
+
}
|
332 |
+
}
|
lite/assets/css/admin-dashboard-widget.min.css
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
#monsterinsights_reports_widget.postbox{color:#333;font-family:-apple-system, system-ui, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif}#monsterinsights_reports_widget a{text-decoration:none}.mi-dw-report-toggle{display:none}.mi-dw-report-toggle.visible{display:block}#monsterinsights_reports_widget *{box-sizing:border-box}#monsterinsights_reports_widget.mi-loaded .handlediv{display:none}#monsterinsights_reports_widget .hndle{font-size:18px;height:50px;padding-top:12px}#monsterinsights_reports_widget.postbox .handlediv{height:50px}.mi-dw-styled-toggle{background:#eee;border:1px solid #1f76c4;border-radius:20px;display:inline-block;height:16px;position:relative;width:30px}.mi-dw-styled-toggle:after{background:#1f76c4;border-radius:50%;content:'';height:12px;left:1px;position:absolute;top:1px;transition:left 300ms ease 0s, right 300ms ease 0s;width:12px}.mi-dw-styled-toggle.checked:after{left:calc(100% - 13px)}.mi-dw-styled-toggle input{display:none}.mi-dw-controls{padding-right:20px;position:absolute;right:0;text-align:right;top:10px;width:230px}.mi-dw-controls .mi-dw-mascot{display:none;height:auto;width:48px}.mi-dw-datepicker{display:inline-block;margin-right:15px;width:120px}.mi-dw-button-cog{background:url('../img/mi-dw-cog@2x.png') no-repeat transparent;background-size:20px;border:none;cursor:pointer;display:block;height:20px;outline:none;padding:0;width:20px}.mi-dw-controls .mi-dw-dropdown{margin-left:5px}.mi-dw-dropdown{display:inline-block;position:relative;text-align:left;vertical-align:middle}.mi-dw-dropdown > ul{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:initial;display:none;font-weight:400;margin-right:-11px;margin-top:5px;padding:10px 5px 10px 10px;position:absolute;right:0;top:100%;width:180px;z-index:999}.mi-dw-dropdown > ul:before{border-color:transparent transparent #d8d8d8 transparent;border-style:solid;border-width:0 4px 4px 4px;bottom:100%;content:'';height:0;position:absolute;right:16px;width:0}.mi-dw-dropdown > ul:after{border-color:transparent transparent #fff transparent;border-style:solid;border-width:0 3px 3px 3px;bottom:100%;content:'';height:0;position:absolute;right:17px;width:0}.mi-dw-dropdown.open > ul{display:block}.mi-dw-dropdown > ul > li > span{color:#999;font-size:10px}.mi-dw-dropdown > ul > li > ul{color:#333;font-size:12px}.mi-dw-lite{align-items:center;background:url('../img/mi-dw-bg.png') no-repeat;background-size:100% 470px;display:flex;height:470px;padding:40px 0}.mi-dw-lite-content{background:#fff;box-shadow:0 4px 20px 0 rgba(0, 0, 0, 0.1);display:block;margin:0 30px;padding:30px;width:100%}.mi-dw-not-authed,.mi-dw-lite-content{text-align:center}.postbox .inside .mi-dw-not-authed h2{font-size:18px;margin:0 auto;max-width:250px}.mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:240px}.mi-dw-btn-large{background:#1f76c4;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1;margin-bottom:10px;padding:14px 28px}.mi-dw-btn-large:hover,.mi-dw-btn-large:focus{color:#fff}.mi-dw-btn-group{display:inline-block;position:relative}.mi-dw-btn-group .mi-dw-btn-list{border-left:1px solid #d8d8d8;border-right:1px solid #d8d8d8;display:none;position:absolute;top:100%;width:100%;z-index:9999}.mi-dw-btn,.mi-dw-btn-group-label{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:pointer;display:inline-block;font-size:13px;font-weight:400;line-height:1;outline:none;padding:8px 20px 8px 10px;position:relative;text-align:left;width:100%}.mi-dw-btn-group .mi-dw-btn{border-radius:0;border-width:0 0 1px 0}.mi-dw-btn-group .mi-dw-btn.selected{background:#1f76c4;color:#fff}.mi-dw-btn-group-label:after{border-color:#333333 transparent transparent transparent;border-style:solid;border-width:3px 2.5px 0 2.5px;content:'';height:0;margin-top:-1px;position:absolute;right:8px;top:50%;width:0}.mi-dw-btn-group.open .mi-dw-btn-group-label{border-radius:5px 5px 0 0}.mi-dw-btn-group.open .mi-dw-btn-list{display:block}.mi-dw-ui-tooltip{background-color:#363636;border-radius:4px;box-shadow:0 0 24px rgba(51, 51, 51, 0.33);color:#fff;font-size:8px;max-width:226px !important;padding:4px 8px;position:absolute;z-index:99999}.mi-dw-ui-tooltip:after{border-color:#363636 transparent transparent transparent;border-style:solid;border-width:3px 3px 0 3px;content:'';height:0;left:50%;margin-left:-3px;position:absolute;top:100%;width:0}.mi-animation-shake{animation:shake 1000ms cubic-bezier(.36, .07, .19, .97) both;transform:translate3d(0, 0, 0);backface-visibility:hidden;perspective:1000px}.js #monsterinsights_reports_widget.closed .inside{display:block}@keyframes shake{10%,90%{transform:translate3d(-1px, 0, 0) rotate(3deg);}20%,80%{transform:translate3d(2px, 0, 0) rotate(-3deg);}30%,50%,70%{transform:translate3d(-4px, 0, 0) rotate(3deg);}40%,60%{transform:translate3d(4px, 0, 0) rotate(-3deg);}}
|
lite/assets/img/mi-dw-bg.png
ADDED
Binary file
|
lite/assets/img/mi-dw-cog@2x.png
ADDED
Binary file
|
lite/assets/js/admin-dashboard-widget.js
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
function MiWidget() {
|
2 |
+
|
3 |
+
var self = this,
|
4 |
+
$ = window.jQuery,
|
5 |
+
$widget_element = $( document.getElementById( 'monsterinsights_reports_widget' ) ),
|
6 |
+
$widget_title = $widget_element.find( '.hndle' ),
|
7 |
+
$widget_controls = $widget_element.find( '.mi-dw-controls' ),
|
8 |
+
$normal_sortables = $( document.getElementById( 'normal-sortables' ) ),
|
9 |
+
$welcome_panel = $( document.getElementById( 'welcome-panel' ) ),
|
10 |
+
$lite_content = $widget_element.find( '.mi-dw-lite-content' );
|
11 |
+
|
12 |
+
this.init = function () {
|
13 |
+
// Stop loading early if MI is not authenticated.
|
14 |
+
if ( ! this.is_authed() ) {
|
15 |
+
return false;
|
16 |
+
}
|
17 |
+
this.add_widget_toggle();
|
18 |
+
this.add_events();
|
19 |
+
this.tooltips();
|
20 |
+
};
|
21 |
+
|
22 |
+
|
23 |
+
this.add_widget_toggle = function () {
|
24 |
+
$widget_controls.appendTo( $widget_title );
|
25 |
+
$widget_element.addClass( 'mi-loaded' );
|
26 |
+
};
|
27 |
+
|
28 |
+
this.add_events = function () {
|
29 |
+
$widget_controls.on( 'click', 'label,button', function ( e ) {
|
30 |
+
e.stopPropagation();
|
31 |
+
self.shake_content();
|
32 |
+
} );
|
33 |
+
};
|
34 |
+
|
35 |
+
this.shake_content = function ( el ) {
|
36 |
+
$lite_content.addClass( 'mi-animation-shake' );
|
37 |
+
setTimeout( function () {
|
38 |
+
$lite_content.removeClass( 'mi-animation-shake' );
|
39 |
+
}, 1000 );
|
40 |
+
};
|
41 |
+
|
42 |
+
this.is_authed = function () {
|
43 |
+
return ! (
|
44 |
+
$widget_element.find( '.mi-dw-not-authed' ).length > 0
|
45 |
+
);
|
46 |
+
};
|
47 |
+
|
48 |
+
this.tooltips = function () {
|
49 |
+
$( '.mi-dw-styled-toggle' ).tooltip( {
|
50 |
+
tooltipClass: 'mi-dw-ui-tooltip',
|
51 |
+
position: {my: 'center bottom-12', at: 'center top', collision: 'flipfit'},
|
52 |
+
} );
|
53 |
+
};
|
54 |
+
|
55 |
+
this.init();
|
56 |
+
}
|
57 |
+
|
58 |
+
new MiWidget();
|
lite/assets/js/admin-dashboard-widget.min.js
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
;function MiWidget(){var o=this,i=window.jQuery,t=i(document.getElementById('monsterinsights_reports_widget')),s=t.find('.hndle'),n=t.find('.mi-dw-controls'),d=i(document.getElementById('normal-sortables')),a=i(document.getElementById('welcome-panel')),e=t.find('.mi-dw-lite-content');this.init=function(){if(!this.is_authed()){return!1};this.add_widget_toggle();this.add_events();this.tooltips()};this.add_widget_toggle=function(){n.appendTo(s);t.addClass('mi-loaded')};this.add_events=function(){n.on('click','label,button',function(t){t.stopPropagation();o.shake_content()})};this.shake_content=function(t){e.addClass('mi-animation-shake');setTimeout(function(){e.removeClass('mi-animation-shake')},1000)};this.is_authed=function(){return!(t.find('.mi-dw-not-authed').length>0)};this.tooltips=function(){i('.mi-dw-styled-toggle').tooltip({tooltipClass:'mi-dw-ui-tooltip',position:{my:'center bottom-12',at:'center top',collision:'flipfit'},})};this.init()};new MiWidget();
|
lite/includes/admin/dashboard-widget.php
ADDED
@@ -0,0 +1,152 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Manage the MonsterInsights Dashboard Widget
|
4 |
+
*
|
5 |
+
* @since 7.1
|
6 |
+
*
|
7 |
+
* @package MonsterInsights
|
8 |
+
*/
|
9 |
+
|
10 |
+
// Exit if accessed directly.
|
11 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
12 |
+
exit;
|
13 |
+
}
|
14 |
+
|
15 |
+
/**
|
16 |
+
* Class MonsterInsights_Dashboard_Widget
|
17 |
+
*/
|
18 |
+
class MonsterInsights_Dashboard_Widget {
|
19 |
+
|
20 |
+
const WIDGET_KEY = 'monsterinsights_reports_widget';
|
21 |
+
|
22 |
+
/**
|
23 |
+
* The widget options.
|
24 |
+
*
|
25 |
+
* @var array $options
|
26 |
+
*/
|
27 |
+
public $options;
|
28 |
+
|
29 |
+
/**
|
30 |
+
* MonsterInsights_Dashboard_Widget constructor.
|
31 |
+
*/
|
32 |
+
public function __construct() {
|
33 |
+
// Allow dashboard widget to be hidden on multisite installs
|
34 |
+
$show_widget = is_multisite() ? apply_filters( 'monsterinsights_show_dashboard_widget', true ) : true;
|
35 |
+
if ( ! $show_widget ) {
|
36 |
+
return false;
|
37 |
+
}
|
38 |
+
|
39 |
+
// Check if reports should be visible.
|
40 |
+
$dashboards_disabled = monsterinsights_get_option( 'dashboards_disabled', false );
|
41 |
+
if ( ! current_user_can( 'monsterinsights_view_dashboard' ) || $dashboards_disabled ) {
|
42 |
+
return false;
|
43 |
+
}
|
44 |
+
|
45 |
+
add_action( 'wp_dashboard_setup', array( $this, 'register_dashboard_widget' ) );
|
46 |
+
|
47 |
+
add_action( 'admin_enqueue_scripts', array( $this, 'widget_scripts' ) );
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Register the dashboard widget.
|
52 |
+
*/
|
53 |
+
public function register_dashboard_widget() {
|
54 |
+
global $wp_meta_boxes;
|
55 |
+
|
56 |
+
wp_add_dashboard_widget(
|
57 |
+
self::WIDGET_KEY,
|
58 |
+
esc_html__( 'MonsterInsights', 'google-analytics-for-wordpress' ),
|
59 |
+
array( $this, 'dashboard_widget_content' )
|
60 |
+
);
|
61 |
+
|
62 |
+
// Attept to place the widget at the top.
|
63 |
+
$normal_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
|
64 |
+
$widget_instance = array( self::WIDGET_KEY => $normal_dashboard[ self::WIDGET_KEY ] );
|
65 |
+
unset( $normal_dashboard[ self::WIDGET_KEY ] );
|
66 |
+
$sorted_dashboard = array_merge( $widget_instance, $normal_dashboard );
|
67 |
+
$wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Load the widget content.
|
72 |
+
*/
|
73 |
+
public function dashboard_widget_content() {
|
74 |
+
|
75 |
+
$is_authed = ( MonsterInsights()->auth->is_authed() || MonsterInsights()->auth->is_network_authed() );
|
76 |
+
|
77 |
+
if ( ! $is_authed ) {
|
78 |
+
$this->widget_content_no_auth();
|
79 |
+
} else {
|
80 |
+
$datepicker_options = array( 30, 7 );
|
81 |
+
$url = is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_reports' ) : admin_url( 'admin.php?page=monsterinsights_reports' );
|
82 |
+
?>
|
83 |
+
<div class="mi-dw-controls">
|
84 |
+
<div class="mi-dw-datepicker mi-dw-btn-group" data-type="datepicker">
|
85 |
+
<button class="mi-dw-btn-group-label">
|
86 |
+
<?php
|
87 |
+
// Translators: %d is the number of days.
|
88 |
+
printf( esc_html__( 'Last %d days', 'google-analytics-for-wordpress' ), 30 );
|
89 |
+
?>
|
90 |
+
</button>
|
91 |
+
<div class="mi-dw-btn-list">
|
92 |
+
<?php foreach ( $datepicker_options as $datepicker_option ) { ?>
|
93 |
+
<button class="mi-dw-btn <?php echo 30 === $datepicker_option ? 'selected' : ''; ?>" data-value=" <?php echo esc_attr( $datepicker_option ); ?>">
|
94 |
+
<?php
|
95 |
+
// Translators: %d is the number of days.
|
96 |
+
printf( esc_html__( 'Last %d days', 'google-analytics-for-wordpress' ), esc_attr( $datepicker_option ) );
|
97 |
+
?>
|
98 |
+
</button>
|
99 |
+
<?php } ?>
|
100 |
+
</div>
|
101 |
+
</div>
|
102 |
+
<label class="mi-dw-styled-toggle mi-dw-widget-width-toggle-container" title="<?php esc_attr_e( 'Show in full-width mode', 'google-analytics-for-wordpress' ); ?>">
|
103 |
+
<input type="checkbox" class="mi-dw-widget-width-toggle"/>
|
104 |
+
</label>
|
105 |
+
<div class="mi-dw-dropdown">
|
106 |
+
<button class="mi-dw-button-cog mi-dw-dropdown-toggle" data-target="#mi-dw-reports-options" type="button"></button>
|
107 |
+
<ul class="mi-dw-reports-options" id="mi-dw-reports-options"></ul>
|
108 |
+
</div>
|
109 |
+
<img class="mi-dw-mascot" src="<?php echo esc_url( plugins_url( 'assets/css/images/mascot.png', MONSTERINSIGHTS_PLUGIN_FILE ) ); ?>" srcset="<?php echo esc_url( plugins_url( 'assets/css/images/mascot@2x.png', MONSTERINSIGHTS_PLUGIN_FILE ) ); ?> 2x"/>
|
110 |
+
</div>
|
111 |
+
<div class="mi-dw-lite">
|
112 |
+
<div class="mi-dw-lite-content">
|
113 |
+
<h2><?php esc_html_e( 'View All Analytics on the WordPress Dashboard', 'google-analytics-for-wordpress' ); ?></h2>
|
114 |
+
<p><?php esc_html_e( 'Once you upgrade to MonsterInsights Pro, you can see your analytics on the Dashboard', 'google-analytics-for-wordpress' ); ?></p>
|
115 |
+
<a href="<?php echo esc_url( monsterinsights_get_upgrade_link( 'dashboard-widget', 'lite-cta' ) ); ?>" target="_blank" class="mi-dw-btn-large"><?php esc_html_e( 'Get MonsterInsights Pro', 'google-analytics-for-wordpress' ); ?></a>
|
116 |
+
<br/>
|
117 |
+
<a href="<?php echo esc_url( $url ); ?>"><?php esc_html_e( 'Go to MonsterInsights Reports', 'google-analytics-for-wordpress' ); ?></a>
|
118 |
+
</div>
|
119 |
+
</div>
|
120 |
+
<?php
|
121 |
+
}
|
122 |
+
|
123 |
+
}
|
124 |
+
|
125 |
+
/**
|
126 |
+
* Message to display when the plugin is not authenticated.
|
127 |
+
*/
|
128 |
+
public function widget_content_no_auth() {
|
129 |
+
|
130 |
+
$url = is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_settings' ) : admin_url( 'admin.php?page=monsterinsights_settings' );
|
131 |
+
?>
|
132 |
+
<div class="mi-dw-not-authed">
|
133 |
+
<h2><?php esc_html_e( 'Reports are not available', 'google-analytics-for-wordpress' ); ?></h2>
|
134 |
+
<p><?php esc_html_e( 'Please connect MonsterInsights to Google Analytics to see reports.', 'google-analytics-for-wordpress' ); ?></p>
|
135 |
+
<a href="<?php echo esc_url( $url ); ?>" class="mi-dw-btn-large"><?php esc_html_e( 'Configure MonsterInsights', 'google-analytics-for-wordpress' ); ?></a>
|
136 |
+
</div>
|
137 |
+
<?php
|
138 |
+
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Load widget-specific scripts.
|
142 |
+
*/
|
143 |
+
public function widget_scripts() {
|
144 |
+
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
|
145 |
+
$screen = get_current_screen();
|
146 |
+
if ( isset( $screen->id ) && 'dashboard' === $screen->id ) {
|
147 |
+
wp_enqueue_style( 'monsterinsights-dashboard-widget-styles', plugins_url( 'lite/assets/css/admin-dashboard-widget' . $suffix . '.css', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version() );
|
148 |
+
wp_enqueue_script( 'jquery-ui-tooltip' );
|
149 |
+
wp_enqueue_script( 'monsterinsights-dashboard-widget', plugins_url( 'lite/assets/js/admin-dashboard-widget' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array( 'jquery' ), monsterinsights_get_asset_version(), true );
|
150 |
+
}
|
151 |
+
}
|
152 |
+
}
|
lite/includes/load.php
CHANGED
@@ -29,4 +29,7 @@ if ( is_admin() ) {
|
|
29 |
require_once MONSTERINSIGHTS_PLUGIN_DIR . 'lite/includes/admin/reports/report-forms.php';
|
30 |
$forms_report = new MonsterInsights_Lite_Report_Forms();
|
31 |
MonsterInsights()->reporting->add_report( $forms_report );
|
|
|
|
|
|
|
32 |
}
|
29 |
require_once MONSTERINSIGHTS_PLUGIN_DIR . 'lite/includes/admin/reports/report-forms.php';
|
30 |
$forms_report = new MonsterInsights_Lite_Report_Forms();
|
31 |
MonsterInsights()->reporting->add_report( $forms_report );
|
32 |
+
|
33 |
+
require_once MONSTERINSIGHTS_PLUGIN_DIR . 'lite/includes/admin/dashboard-widget.php';
|
34 |
+
new MonsterInsights_Dashboard_Widget();
|
35 |
}
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.wpbeginner.com/wpbeginner-needs-your-help/
|
|
4 |
Tags: analytics, analytics dashboard, google analytics, google analytics dashboard, google analytics widget, universal google analytics, statistics, tracking, stats, google, yoast, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
|
5 |
Requires at least: 3.8.0
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 7.0
|
8 |
License: GPL v3
|
9 |
|
10 |
The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.
|
@@ -134,6 +134,18 @@ You can also learn about other <a href="http://www.wpbeginner.com/category/plugi
|
|
134 |
4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
|
135 |
|
136 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
137 |
= 7.0.9: June 26, 2018 =
|
138 |
- Tweak: The link to support for Lite now goes directly to the Lite support form.
|
139 |
- Tweak: Compatibility fixes for the Newspaper theme and the WordPress Book List plugin.
|
4 |
Tags: analytics, analytics dashboard, google analytics, google analytics dashboard, google analytics widget, universal google analytics, statistics, tracking, stats, google, yoast, google analytics by yoast, ga, monster insights, monsterinsights, universal analytics, web stats, ecommerce, ecommerce tracking
|
5 |
Requires at least: 3.8.0
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 7.1.0
|
8 |
License: GPL v3
|
9 |
|
10 |
The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.
|
134 |
4. Want more features? <a href="https://www.monsterinsights.com/?utm_source=wprepo&utm_medium=link&utm_campaign=liteversion">Purchase MonsterInsights Pro</a>!
|
135 |
|
136 |
== Changelog ==
|
137 |
+
= 7.1.0: August 8, 2018 =
|
138 |
+
- New: Comprehensive review of the plugin to ensure styles are correct when utilizing a right to left language.
|
139 |
+
- Tweak: Compatibility for the WP Media Folder plugin, TagDiv Composer plugin, Ali Dropship plugin, Affiliate Boxes plugin, Impreza theme, GT3 Photo & Video Gallery plugin, WP Booklist plugin, Houzez theme, Prowess theme, and Add Social Share plugin.
|
140 |
+
- Tweak: Standardized capitalization and spelling of various strings.
|
141 |
+
- Tweak: External download links will not be marked as downloads.
|
142 |
+
- Tweak: Updated SweetAlert2 to the latest version.
|
143 |
+
- Tweak: Tweaked error messages returned on the reports page to include more details and be more specific whenever possible.
|
144 |
+
- Tweak: Documentation links will always open in a new tab now to ensure you don't lose your place.
|
145 |
+
- Fixed: Condition which caused the network UA code to not properly fallback in some instances.
|
146 |
+
- Fixed: Some plugin links to our documentation have been corrected
|
147 |
+
- Fixed: Sometimes error strings might be over-escaped. We've corrected some cases of this.
|
148 |
+
|
149 |
= 7.0.9: June 26, 2018 =
|
150 |
- Tweak: The link to support for Lite now goes directly to the Lite support form.
|
151 |
- Tweak: Compatibility fixes for the Newspaper theme and the WordPress Book List plugin.
|