Google Analytics Dashboard for WP (GADWP) - Version 4.5

Version Description

  • Requirements: WordPress 3.5 and above
  • Enhancement: automatic updates for minor versions (security and maintenance releases)
  • Enhancement: improvements while enqueuing styles & scripts
  • Enhancement: reports per post in Post List (new feature)
  • Enhancement: reports per page in Page List (new feature)
  • Enhancement: gadwp_backenditem_uri allows URI corrections for backend item reports
  • Enhancement: option to enable/disable the custom dashboard widget
  • Enhancement: Japanese translation, translated by
  • Enhancement: Dutch translation, translated by Willem-Jan Meerkerk
  • Enhancement: Portuguese (Brazil) translation, updated by Treed Box
  • Enhancement: UI improvements props by Paal Joachim Romdahl
  • Bug Fix: Arabic translation not loading properly
  • Bug Fix: initialize time-shift for all API calls
  • Bug Fix: include GAPI only when a API call is made
  • Bug Fix: keep the percentage numeric while anonymizing data
  • Bug Fix: add PHP 5.3 as a requirement when forcing IPv4
  • Bug Fix: typo fix by Andrew Minion
Download this release

Release Info

Developer deconf
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 4.5
Comparing to
See all releases

Code changes from version 4.4.7 to 4.5

Files changed (46) hide show
  1. admin/ajax-actions.php +40 -76
  2. admin/css/{ga_dash.css → gadwp.css} +0 -0
  3. admin/css/item-reports.css +103 -0
  4. admin/item-reports.php +64 -0
  5. admin/js/item-reports.js +631 -0
  6. admin/js/settings.js +36 -0
  7. admin/js/{admin.js → widgets.js} +3 -34
  8. admin/{ga_dash_settings.php → settings.php} +127 -52
  9. admin/setup.php +268 -0
  10. admin/{dashboard_widgets.php → widgets.php} +24 -183
  11. config.php +76 -7
  12. front/ajax-actions.php +9 -19
  13. front/css/{content_stats.css → item-reports.css} +0 -0
  14. front/{frontend.php → item-reports.php} +5 -9
  15. front/js/{content_stats.js → item-reports.js} +0 -0
  16. front/tracking.php +0 -4
  17. front/tracking/code-universal.php +0 -1
  18. front/widgets.php +3 -7
  19. gadwp.php +24 -12
  20. install/install.php +9 -2
  21. languages/ar.mo +0 -0
  22. languages/ga-dash-ar.mo +0 -0
  23. languages/{ar.po → ga-dash-ar.po} +463 -415
  24. languages/ga-dash-de_DE.mo +0 -0
  25. languages/ga-dash-de_DE.po +465 -416
  26. languages/ga-dash-es_ES.mo +0 -0
  27. languages/ga-dash-es_ES.po +457 -415
  28. languages/ga-dash-fr_FR.mo +0 -0
  29. languages/ga-dash-fr_FR.po +466 -418
  30. languages/ga-dash-hu_HU.mo +0 -0
  31. languages/ga-dash-hu_HU.po +464 -416
  32. languages/ga-dash-it_IT.mo +0 -0
  33. languages/ga-dash-it_IT.po +1153 -1104
  34. languages/ga-dash-ja.mo +0 -0
  35. languages/ga-dash-ja.po +1123 -0
  36. languages/ga-dash-nl_NL.mo +0 -0
  37. languages/ga-dash-nl_NL.po +949 -0
  38. languages/ga-dash-pl_PL.mo +0 -0
  39. languages/ga-dash-pl_PL.po +463 -415
  40. languages/ga-dash-pt_BR.mo +0 -0
  41. languages/ga-dash-pt_BR.po +573 -515
  42. languages/ga-dash.pot +678 -499
  43. readme.txt +45 -20
  44. tools/gapi.php +160 -76
  45. tools/iso3166.php +241 -240
  46. tools/tools.php +21 -10
admin/ajax-actions.php CHANGED
@@ -12,135 +12,99 @@ if (! class_exists('GADASH_Backend_Ajax')) {
12
 
13
  function __construct()
14
  {
15
- // Backend Widget Realtime action
16
- add_action('wp_ajax_gadashadmin_get_realtime', array(
17
  $this,
18
- 'ajax_adminwidget_realtime'
19
  ));
20
- // Admin Widget get Reports action
21
- add_action('wp_ajax_gadashadmin_get_widgetreports', array(
22
  $this,
23
- 'ajax_adminwidget_reports'
24
  ));
25
  }
26
 
27
- function send_json($response)
28
- {
29
- @header('Content-Type: application/json; charset=' . get_option('blog_charset'));
30
- echo json_encode($response);
31
- if (defined('DOING_AJAX') && DOING_AJAX)
32
- wp_die();
33
- else
34
- die();
35
- }
36
-
37
  /**
38
- * Ajax handler for getting reports for Admin Widget
39
  *
40
- * @return string|int
41
  */
42
- function ajax_adminwidget_reports()
43
  {
44
  global $GADASH_Config;
45
- if (! isset($_REQUEST['gadashadmin_security_widget_reports']) or ! wp_verify_nonce($_REQUEST['gadashadmin_security_widget_reports'], 'gadashadmin_get_widgetreports')) {
46
  wp_die(- 30);
47
  }
48
- $projectId = $_REQUEST['projectId'];
49
  $from = $_REQUEST['from'];
50
  $to = $_REQUEST['to'];
51
  $query = $_REQUEST['query'];
 
52
  if (ob_get_length()) {
53
  ob_clean();
54
  }
55
- /*
56
- * Include Tools
57
- */
58
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
59
  $tools = new GADASH_Tools();
60
- if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_back'])) {
61
  wp_die(- 31);
62
  }
63
- if ($GADASH_Config->options['ga_dash_token'] and $projectId and $from and $to) {
64
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
65
  global $GADASH_GAPI;
66
  } else {
67
  wp_die(- 24);
68
  }
69
-
70
  $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
71
  if (isset($profile_info[4])) {
72
  $GADASH_GAPI->timeshift = $profile_info[4];
73
  } else {
74
  $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
75
- }
76
-
77
- switch ($query) {
78
- case 'referrers':
79
- $this->send_json($GADASH_GAPI->get_referrers($projectId, $from, $to));
80
- break;
81
- case 'contentpages':
82
- $this->send_json($GADASH_GAPI->get_contentpages($projectId, $from, $to));
83
- break;
84
- case 'locations':
85
- $this->send_json($GADASH_GAPI->get_locations($projectId, $from, $to));
86
- break;
87
- case 'bottomstats':
88
- $this->send_json($GADASH_GAPI->get_bottomstats($projectId, $from, $to));
89
- break;
90
- case 'trafficchannels':
91
- $this->send_json($GADASH_GAPI->get_trafficchannels($projectId, $from, $to));
92
- break;
93
- case 'medium':
94
- $this->send_json($GADASH_GAPI->get_trafficdetails($projectId, $from, $to, 'medium'));
95
- break;
96
- case 'visitorType':
97
- $this->send_json($GADASH_GAPI->get_trafficdetails($projectId, $from, $to, 'visitorType'));
98
- break;
99
- case 'socialNetwork':
100
- $this->send_json($GADASH_GAPI->get_trafficdetails($projectId, $from, $to, 'socialNetwork'));
101
- break;
102
- case 'source':
103
- $this->send_json($GADASH_GAPI->get_trafficdetails($projectId, $from, $to, 'source'));
104
- break;
105
- case 'searches':
106
- $this->send_json($GADASH_GAPI->get_searches($projectId, $from, $to));
107
- break;
108
- default:
109
- $this->send_json($GADASH_GAPI->get_mainreport($projectId, $from, $to, $query));
110
- break;
111
  }
 
 
 
 
 
 
 
 
 
112
  }
113
- // Real-Time Request
114
  /**
115
- * Ajax handler for getting realtime analytics data for Admin widget
116
  *
117
- * @return string|int
118
  */
119
- function ajax_adminwidget_realtime()
120
  {
121
  global $GADASH_Config;
122
- if (! isset($_REQUEST['gadashadmin_security_widgetrealtime']) or ! wp_verify_nonce($_REQUEST['gadashadmin_security_widgetrealtime'], 'gadashadmin_get_realtime')) {
123
  wp_die(- 30);
124
  }
125
  $projectId = $_REQUEST['projectId'];
 
 
 
126
  if (ob_get_length()) {
127
  ob_clean();
128
  }
129
- /*
130
- * Include Tools
131
- */
132
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
133
  $tools = new GADASH_Tools();
134
- if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_back'])) {
135
  wp_die(- 31);
136
  }
137
- if ($GADASH_Config->options['ga_dash_token'] and $projectId) {
138
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
139
  global $GADASH_GAPI;
140
  } else {
141
  wp_die(- 24);
142
  }
143
- $this->send_json($GADASH_GAPI->gadash_realtime_data($projectId));
 
 
 
 
 
 
144
  }
145
  }
146
  }
12
 
13
  function __construct()
14
  {
15
+ // Admin Widget action
16
+ add_action('wp_ajax_gadash_get_widgetreports', array(
17
  $this,
18
+ 'ajax_widget_reports'
19
  ));
20
+ // Items action
21
+ add_action('wp_ajax_gadwp_get_ItemReports', array(
22
  $this,
23
+ 'ajax_item_reports'
24
  ));
25
  }
26
 
 
 
 
 
 
 
 
 
 
 
27
  /**
28
+ * Ajax handler for Items (posts/pages)
29
  *
30
+ * @return json|int
31
  */
32
+ function ajax_item_reports()
33
  {
34
  global $GADASH_Config;
35
+ if (! isset($_REQUEST['gadwp_security_item_reports']) or ! wp_verify_nonce($_REQUEST['gadwp_security_item_reports'], 'gadwp_get_itemreports')) {
36
  wp_die(- 30);
37
  }
 
38
  $from = $_REQUEST['from'];
39
  $to = $_REQUEST['to'];
40
  $query = $_REQUEST['query'];
41
+ $filter_id = $_REQUEST['filter'];
42
  if (ob_get_length()) {
43
  ob_clean();
44
  }
 
 
 
 
45
  $tools = new GADASH_Tools();
46
+ if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_back']) or 0 == $GADASH_Config->options['item_reports']) {
47
  wp_die(- 31);
48
  }
49
+ if ($GADASH_Config->options['ga_dash_token'] and $GADASH_Config->options['ga_dash_tableid_jail'] and $from and $to) {
50
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
51
  global $GADASH_GAPI;
52
  } else {
53
  wp_die(- 24);
54
  }
55
+ $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
56
  $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
57
  if (isset($profile_info[4])) {
58
  $GADASH_GAPI->timeshift = $profile_info[4];
59
  } else {
60
  $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
+ // strip the protocol & domain
63
+ $uri = str_replace($tools->strip_protocol($profile_info[3]), '', $tools->strip_protocol(get_permalink($filter_id)));
64
+ // make sure the path starts with '/'
65
+ if ($uri) {
66
+ $uri = '/' . ltrim($uri, '/');
67
+ }
68
+ // allow URI correction before sending an API request
69
+ $filter = apply_filters('gadwp_backenditem_uri', $uri);
70
+ $GADASH_GAPI->get($projectId, $query, $from, $to, $filter);
71
  }
72
+
73
  /**
74
+ * Ajax handler for Admin Widget
75
  *
76
+ * @return json|int
77
  */
78
+ function ajax_widget_reports()
79
  {
80
  global $GADASH_Config;
81
+ if (! isset($_REQUEST['gadash_security_widget_reports']) or ! wp_verify_nonce($_REQUEST['gadash_security_widget_reports'], 'gadash_get_widgetreports')) {
82
  wp_die(- 30);
83
  }
84
  $projectId = $_REQUEST['projectId'];
85
+ $from = $_REQUEST['from'];
86
+ $to = $_REQUEST['to'];
87
+ $query = $_REQUEST['query'];
88
  if (ob_get_length()) {
89
  ob_clean();
90
  }
 
 
 
 
91
  $tools = new GADASH_Tools();
92
+ if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_back']) or 0 == $GADASH_Config->options['dashboard_widget']) {
93
  wp_die(- 31);
94
  }
95
+ if ($GADASH_Config->options['ga_dash_token'] and $projectId and $from and $to) {
96
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
97
  global $GADASH_GAPI;
98
  } else {
99
  wp_die(- 24);
100
  }
101
+ $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
102
+ if (isset($profile_info[4])) {
103
+ $GADASH_GAPI->timeshift = $profile_info[4];
104
+ } else {
105
+ $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
106
+ }
107
+ $GADASH_GAPI->get($projectId, $query, $from, $to);
108
  }
109
  }
110
  }
admin/css/{ga_dash.css → gadwp.css} RENAMED
File without changes
admin/css/item-reports.css ADDED
@@ -0,0 +1,103 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Posts & Pages stats */
2
+ .column-gadwp_stats {
3
+ width: 70px;
4
+ }
5
+
6
+ .gadwp-icon {
7
+ color: #555;
8
+ }
9
+
10
+ .gadwp-icon:hover {
11
+ color: #2ea2cc;
12
+ }
13
+
14
+ .gadwp-icon:selected {
15
+ color: #0074a2;
16
+ }
17
+
18
+ .gadwp-icon-oldwp {
19
+ padding-top: 5px;
20
+ }
21
+
22
+ [id^=gadwp-container] {
23
+ width: 480px;
24
+ }
25
+
26
+ [id^=gadwp-mainchart] {
27
+ height: 280px;
28
+ }
29
+
30
+ [id^=gadwp-progressbar] {
31
+ width: 100%;
32
+ height: 3px;
33
+ margin: 5px 0 0px 0;
34
+ }
35
+
36
+ .gadwp-wrapper {
37
+ width: 100%;
38
+ }
39
+
40
+ .gadwp-wrapper .inside {
41
+ display: table;
42
+ margin: 0 auto;
43
+ padding: 0px;
44
+ }
45
+
46
+ .gadwp-wrapper .inside .small-box {
47
+ width: 31.2%;
48
+ float: left;
49
+ margin: 10px 5px 10px 5px;
50
+ background: #fff;
51
+ text-align: center;
52
+ -moz-box-shadow: 0px 0px 7px 0px #BBB;
53
+ -webkit-box-shadow: 0px 0px 7px 0px #BBB;
54
+ box-shadow: 0px 0px 7px 0px #BBB;
55
+ }
56
+
57
+ .gadwp-wrapper .inside .small-box h3 {
58
+ font-size: 1em;
59
+ color: #777;
60
+ padding: 0px 5px 0px 5px;
61
+ margin: 0px 0px 0px 0px;
62
+ }
63
+
64
+ .gadwp-wrapper .inside .small-box p {
65
+ font-size: 1.2em;
66
+ margin: 0px 0px 2px 0px;
67
+ }
68
+
69
+ [id^=gadwp-trafficmediums], [id^=gadwp-traffictype], [id^=gadwp-trafficorganic],
70
+ [id^=gadwp-socialnetworks] {
71
+ width: 49.6%;
72
+ margin: 10px 0 0 0;
73
+ border-right: 1px solid white;
74
+ height: 200px;
75
+ float: left;
76
+ }
77
+
78
+ [id^=gadwp-locations], [id^=gadwp-prs] {
79
+ margin: 10px 0 0 0;
80
+ }
81
+
82
+ .ui-dialog-titlebar {
83
+ text-overflow: ellipsis;
84
+ overflow: hidden;
85
+ }
86
+
87
+ @media screen and (max-width: 500px) {
88
+ [id^=gadwp-container] {
89
+ width: 410px;
90
+ }
91
+ .gadwp-wrapper .inside .small-box {
92
+ width: 30.8%;
93
+ }
94
+ }
95
+
96
+ @media screen and (max-width: 410px) {
97
+ [id^=gadwp-container] {
98
+ width: 260px;
99
+ }
100
+ .gadwp-wrapper .inside .small-box {
101
+ width: 46%;
102
+ }
103
+ }
admin/item-reports.php ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Author: Alin Marcu
4
+ * Author URI: https://deconf.com
5
+ * License: GPLv2 or later
6
+ * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
+ */
8
+ if (! class_exists('GADASH_Back_Stats')) {
9
+
10
+ final class GADASH_Back_Stats
11
+ {
12
+
13
+ function __construct()
14
+ {
15
+ global $GADASH_Config;
16
+ $tools = new GADASH_Tools();
17
+ if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_back']) or 0 == $GADASH_Config->options['item_reports']) {
18
+ return;
19
+ }
20
+ // Add custom column in Posts List
21
+ add_filter('manage_posts_columns', array(
22
+ $this,
23
+ 'add_stats_column'
24
+ ));
25
+ // Populate custom column in Posts List
26
+ add_action('manage_posts_custom_column', array(
27
+ $this,
28
+ 'display_item_stats'
29
+ ), 10, 2);
30
+ // Add custom column in Pages List
31
+ add_filter('manage_pages_columns', array(
32
+ $this,
33
+ 'add_stats_column'
34
+ ));
35
+ // Populate custom column in Pages List
36
+ add_action('manage_pages_custom_column', array(
37
+ $this,
38
+ 'display_item_stats'
39
+ ), 10, 2);
40
+ }
41
+
42
+ function display_item_stats($column, $id)
43
+ {
44
+ global $GADASH_Config, $wp_version;
45
+
46
+ if (version_compare($wp_version, '3.8.0', '>=')) {
47
+ echo '<a id="gadwp-' . $id . '" title="' . get_the_title($id) . '" href="#' . $id . '" class="gadwp-icon dashicons-before dashicons-chart-area"></a>';
48
+ } else {
49
+ echo '<a id="gadwp-' . $id . '" title="' . get_the_title($id) . '" href="#' . $id . '"><img class="gadwp-icon-oldwp" src="' . $GADASH_Config->plugin_url . '/admin/images/gadash-icon.png"</a>';
50
+ }
51
+ }
52
+
53
+ function add_stats_column($columns)
54
+ {
55
+ return array_merge($columns, array(
56
+ 'gadwp_stats' => __('Analytics', 'ga-dash')
57
+ ));
58
+ }
59
+ }
60
+ }
61
+
62
+ if (is_admin()) {
63
+ $GADASH_Back_Stats = new GADASH_Back_Stats();
64
+ }
admin/js/item-reports.js ADDED
@@ -0,0 +1,631 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ "use strict";
2
+
3
+ google.load("visualization", "1", {
4
+ packages : ["corechart", "table", "orgchart", "geochart"]
5
+ });
6
+
7
+ jQuery(document).ready(
8
+
9
+ function() {
10
+ jQuery('a[id^="gadwp-"]').click(function(e) {
11
+
12
+ var item_id = getID(this);
13
+ var slug = "-" + item_id;
14
+
15
+ if (!jQuery("#gadwp-window" + slug).length > 0) {
16
+ jQuery("body").append('<div id="gadwp-window' + slug + '"></div>');
17
+ }
18
+ jQuery('#gadwp-window' + slug).gadwpItemReport(slug, item_id);
19
+ });
20
+
21
+ function getID(item) {
22
+ if (typeof item.id == "undefined") {
23
+ return 0
24
+ }
25
+ if (item.id.split('-')[1] == "undefined") {
26
+ return 0;
27
+ } else {
28
+ return item.id.split('-')[1];
29
+ }
30
+ }
31
+
32
+ // on window resize
33
+ jQuery(window).resize(function() {
34
+ fluidDialog();
35
+ });
36
+
37
+ // dialog width larger than viewport
38
+ jQuery(document).on("dialogopen", ".ui-dialog", function(event, ui) {
39
+ fluidDialog();
40
+ });
41
+
42
+ function fluidDialog() {
43
+ var visible = jQuery(".ui-dialog:visible");
44
+ // on each visible dialog
45
+ visible.each(function() {
46
+ var $this = jQuery(this);
47
+ var dialog = $this.find(".ui-dialog-content").data("ui-dialog");
48
+ // on each fluid dialog
49
+ if (dialog.options.fluid) {
50
+ var wWidth = jQuery(window).width();
51
+ // window width vs dialog width
52
+ if (wWidth < (parseInt(dialog.options.maxWidth) + 50)) {
53
+ // don't fill the entire screen
54
+ $this.css("max-width", "90%");
55
+ } else {
56
+ // maxWidth bug fix
57
+ $this.css("max-width", dialog.options.maxWidth + "px");
58
+ }
59
+ // change dialog position
60
+ dialog.option("position", dialog.options.position);
61
+ }
62
+ });
63
+
64
+ }
65
+ });
66
+
67
+ jQuery.fn.extend({
68
+ gadwpItemReport : function(slug, item_id) {
69
+
70
+ var template = {
71
+
72
+ data : '<div id="gadwp-container' + slug + '"><select id="gadwp-sel-period' + slug + '"></select> <select id="gadwp-sel-report' + slug + '"></select><div id="gadwp-progressbar' + slug + '"></div><div id="gadwp-status' + slug + '"></div><div id="gadwp-reports' + slug + '"></div><div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;margin-top:10px;">' + gadwp_item_data.i18n[14] + ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_report&utm_medium=link&utm_content=back_report&utm_campaign=gadwp" rel="nofollow" style="text-decoration:none;font-size:1em;">GADWP</a>&nbsp;</div></div>',
73
+
74
+ addOptions : function(id, list) {
75
+
76
+ var output = [];
77
+ jQuery.each(list, function(key, value) {
78
+ if (key == '30daysAgo' || key == 'sessions') {
79
+ output.push('<option value="' + key + '" selected="selected">' + value + '</option>');
80
+ } else {
81
+ output.push('<option value="' + key + '">' + value + '</option>');
82
+ }
83
+ });
84
+ jQuery(id).html(output.join(''));
85
+ },
86
+
87
+ init : function() {
88
+ if (jQuery('#gadwp-window' + slug).html().length) { // add main template once
89
+ return;
90
+ }
91
+
92
+ jQuery('#gadwp-window' + slug).append(this.data);
93
+
94
+ this.addOptions('#gadwp-sel-period' + slug, gadwp_item_data.dateList);
95
+ this.addOptions('#gadwp-sel-report' + slug, gadwp_item_data.reportList);
96
+
97
+ }
98
+ }
99
+
100
+ var reports = {
101
+
102
+ npcounter : 0,
103
+ prs : '',
104
+ trafficchannels : '',
105
+ trafficmediums : '',
106
+ traffictype : '',
107
+ trafficorganic : '',
108
+ socialnetworks : '',
109
+ locations : '',
110
+ mainchart : '',
111
+ bottomstats : '',
112
+
113
+ alertMessage : function(msg) {
114
+ jQuery("#gadwp-status" + slug).css({
115
+ "margin-top" : "3px",
116
+ "padding-left" : "5px",
117
+ "height" : "auto",
118
+ "color" : "#000",
119
+ "border-left" : "5px solid red"
120
+ });
121
+ jQuery("#gadwp-status" + slug).html(msg);
122
+ },
123
+
124
+ drawprs : function(gadwp_prs) {
125
+ var data = google.visualization.arrayToDataTable(gadwp_prs);
126
+ var options = {
127
+ page : 'enable',
128
+ pageSize : 10,
129
+ width : '100%'
130
+ };
131
+
132
+ var chart = new google.visualization.Table(document.getElementById('gadwp-prs' + slug));
133
+ chart.draw(data, options);
134
+ },
135
+
136
+ drawtrafficchannels : function(gadwp_trafficchannels) {
137
+ var data = google.visualization.arrayToDataTable(gadwp_trafficchannels);
138
+ var options = {
139
+ allowCollapse : true,
140
+ allowHtml : true
141
+ };
142
+
143
+ var chart = new google.visualization.OrgChart(document.getElementById('gadwp-trafficchannels' + slug));
144
+ chart.draw(data, options);
145
+ },
146
+
147
+ drawtrafficmediums : function(gadwp_trafficmediums) {
148
+ var data = google.visualization.arrayToDataTable(gadwp_trafficmediums);
149
+ var options = {
150
+ is3D : false,
151
+ tooltipText : 'percentage',
152
+ legend : 'none',
153
+ chartArea : {
154
+ width : '99%',
155
+ height : '80%'
156
+ },
157
+ title : gadwp_item_data.i18n[1],
158
+ colors : gadwp_item_data.colorVariations
159
+ };
160
+
161
+ var chart = new google.visualization.PieChart(document.getElementById('gadwp-trafficmediums' + slug));
162
+ chart.draw(data, options);
163
+ },
164
+
165
+ drawtraffictype : function(gadwp_traffictype) {
166
+ var data = google.visualization.arrayToDataTable(gadwp_traffictype);
167
+ var options = {
168
+ is3D : false,
169
+ tooltipText : 'percentage',
170
+ legend : 'none',
171
+ chartArea : {
172
+ width : '99%',
173
+ height : '80%'
174
+ },
175
+ title : gadwp_item_data.i18n[2],
176
+ colors : gadwp_item_data.colorVariations
177
+ };
178
+
179
+ var chart = new google.visualization.PieChart(document.getElementById('gadwp-traffictype' + slug));
180
+ chart.draw(data, options);
181
+ },
182
+
183
+ drawsocialnetworks : function(gadwp_socialnetworks) {
184
+ var data = google.visualization.arrayToDataTable(gadwp_socialnetworks);
185
+ var options = {
186
+ is3D : false,
187
+ tooltipText : 'percentage',
188
+ legend : 'none',
189
+ chartArea : {
190
+ width : '99%',
191
+ height : '80%'
192
+ },
193
+ title : gadwp_item_data.i18n[3],
194
+ colors : gadwp_item_data.colorVariations
195
+ };
196
+
197
+ var chart = new google.visualization.PieChart(document.getElementById('gadwp-socialnetworks' + slug));
198
+ chart.draw(data, options);
199
+ },
200
+
201
+ drawtrafficorganic : function(gadwp_trafficorganic) {
202
+ var data = google.visualization.arrayToDataTable(gadwp_trafficorganic);
203
+ var options = {
204
+ is3D : false,
205
+ tooltipText : 'percentage',
206
+ legend : 'none',
207
+ chartArea : {
208
+ width : '99%',
209
+ height : '80%'
210
+ },
211
+ title : gadwp_item_data.i18n[4],
212
+ colors : gadwp_item_data.colorVariations
213
+ };
214
+
215
+ var chart = new google.visualization.PieChart(document.getElementById('gadwp-trafficorganic' + slug));
216
+ chart.draw(data, options);
217
+ },
218
+
219
+ drawlocations : function(gadwp_locations) {
220
+ var data = google.visualization.arrayToDataTable(gadwp_locations);
221
+ var options = {
222
+ page : 'enable',
223
+ pageSize : 10,
224
+ width : '100%'
225
+ };
226
+
227
+ var chart = new google.visualization.Table(document.getElementById('gadwp-locations' + slug));
228
+ chart.draw(data, options);
229
+ },
230
+
231
+ drawmaplocations : function(gadwp_locations) {
232
+
233
+ var data = google.visualization.arrayToDataTable(gadwp_locations);
234
+
235
+ var options = {
236
+ chartArea : {
237
+ width : '99%',
238
+ height : '90%'
239
+ },
240
+ colors : [gadwp_item_data.colorVariations[5], gadwp_item_data.colorVariations[4]],
241
+ }
242
+
243
+ if (gadwp_item_data.region) {
244
+ options.region = gadwp_item_data.region;
245
+ options.displayMode = 'markers';
246
+ options.datalessRegionColor = 'EFEFEF';
247
+ }
248
+
249
+ var chart = new google.visualization.GeoChart(document.getElementById('gadwp-map' + slug));
250
+ chart.draw(data, options);
251
+ },
252
+
253
+ drawmainchart : function(gadwp_mainchart) {
254
+
255
+ var data = google.visualization.arrayToDataTable(gadwp_mainchart);
256
+
257
+ var options = {
258
+ legend : {
259
+ position : 'none'
260
+ },
261
+ pointSize : 3,
262
+ colors : [gadwp_item_data.colorVariations[0], gadwp_item_data.colorVariations[4]],
263
+ chartArea : {
264
+ width : '99%',
265
+ height : '90%'
266
+ },
267
+ vAxis : {
268
+ textPosition : "in",
269
+ minValue : 0
270
+ },
271
+ hAxis : {
272
+ textPosition : 'none'
273
+ }
274
+ };
275
+ var chart = new google.visualization.AreaChart(document.getElementById('gadwp-mainchart' + slug));
276
+ chart.draw(data, options);
277
+ },
278
+
279
+ drawbottomstats : function(gadwp_bottomstats) {
280
+ jQuery("#gdsessions" + slug).text(gadwp_bottomstats[0]);
281
+ jQuery("#gdusers" + slug).text(gadwp_bottomstats[1]);
282
+ jQuery("#gdpageviews" + slug).text(gadwp_bottomstats[2]);
283
+ jQuery("#gdbouncerate" + slug).text(parseFloat(gadwp_bottomstats[3]).toFixed(2) + "%");
284
+ jQuery("#gdorganicsearch" + slug).text(gadwp_bottomstats[4]);
285
+ jQuery("#gdpagespervisit" + slug).text(parseFloat(gadwp_bottomstats[5]).toFixed(2));
286
+ },
287
+
288
+ checknpcounter : function(max) {
289
+ try {
290
+ if (this.npcounter == max) {
291
+ NProgress.done();
292
+ } else {
293
+ this.npcounter++;
294
+ NProgress.set((1 / (max + 1)) * this.npcounter);
295
+ }
296
+ } catch (e) {
297
+ }
298
+ },
299
+
300
+ throwDebug : function(response) {
301
+ jQuery("#gadwp-status" + slug).css({
302
+ "margin-top" : "3px",
303
+ "padding-left" : "5px",
304
+ "height" : "auto",
305
+ "color" : "#000",
306
+ "border-left" : "5px solid red"
307
+ });
308
+ jQuery("#gadwp-status" + slug).html(gadwp_item_data.i18n[11]);
309
+ console.log("\n********************* GADWP Log ********************* \n\n" + response);
310
+ },
311
+
312
+ throwError : function(target, response, n, p) {
313
+ jQuery(target).css({
314
+ "background-color" : "#F7F7F7",
315
+ "height" : "auto",
316
+ "padding-top" : p,
317
+ "padding-bottom" : p,
318
+ "color" : "#000",
319
+ "text-align" : "center"
320
+ });
321
+ if (response == -21) {
322
+ jQuery(target).html(gadwp_item_data.i18n[12] + ' (' + response + ')');
323
+ } else {
324
+ jQuery(target).html(gadwp_item_data.i18n[13] + ' (' + response + ')');
325
+ }
326
+ this.checknpcounter(n);
327
+ },
328
+
329
+ render : function(period, query) {
330
+ var from, to;
331
+ jQuery('#gadwp-status' + slug).html('');
332
+ switch (period) {
333
+ case 'today' :
334
+ from = 'today';
335
+ to = 'today';
336
+ break;
337
+ case 'yesterday' :
338
+ from = 'yesterday';
339
+ to = 'yesterday';
340
+ break;
341
+ case '7daysAgo' :
342
+ from = '7daysAgo';
343
+ to = 'yesterday';
344
+ break;
345
+ case '14daysAgo' :
346
+ from = '14daysAgo';
347
+ to = 'yesterday';
348
+ break;
349
+ case '90daysAgo' :
350
+ from = '90daysAgo';
351
+ to = 'yesterday';
352
+ break;
353
+ default :
354
+ from = '30daysAgo';
355
+ to = 'yesterday';
356
+ break;
357
+ }
358
+
359
+ var data = {
360
+ action : 'gadwp_get_ItemReports',
361
+ gadwp_security_item_reports : gadwp_item_data.security,
362
+ from : from,
363
+ to : to,
364
+ filter : item_id
365
+ }
366
+
367
+ if (jQuery.inArray(query, ['referrers', 'contentpages', 'searches']) > -1) {
368
+ jQuery('#gadwp-reports' + slug).html('<div id="gadwp-trafficchannels' + slug + '"></div>')
369
+ jQuery('#gadwp-reports' + slug).append('<div id="gadwp-prs' + slug + '"></div>');
370
+ data.query = 'trafficchannels';
371
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
372
+ if (!jQuery.isNumeric(response)) {
373
+ if (jQuery.isArray(response)) {
374
+ reports.trafficchannels = response;
375
+ google.setOnLoadCallback(reports.drawtrafficchannels(reports.trafficchannels));
376
+ reports.checknpcounter(1);
377
+ } else {
378
+ reports.throwDebug(response);
379
+ reports.checknpcounter(1);
380
+ }
381
+ } else {
382
+ reports.throwError('#gadwp-trafficchannels' + slug, response, 1, "125px");
383
+ }
384
+ });
385
+ data.query = query;
386
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
387
+ if (!jQuery.isNumeric(response)) {
388
+ if (jQuery.isArray(response)) {
389
+ reports.prs = response;
390
+ google.setOnLoadCallback(reports.drawprs(reports.prs));
391
+ reports.checknpcounter(1);
392
+ } else {
393
+ reports.throwDebug(response);
394
+ reports.checknpcounter(1);
395
+ }
396
+ } else {
397
+ reports.throwError('#gadwp-prs' + slug, response, 1, "125px");
398
+ }
399
+ });
400
+ } else if (query == 'trafficdetails') {
401
+ jQuery('#gadwp-reports' + slug).html('<div id="gadwp-trafficchannels' + slug + '"></div>')
402
+ jQuery('#gadwp-reports' + slug).append('<div class="gadwp-floatwraper"><div id="gadwp-trafficmediums' + slug + '"></div><div id="gadwp-traffictype' + slug + '"></div></div>');
403
+ jQuery('#gadwp-reports' + slug).append('<div class="gadwp-floatwraper"><div id="gadwp-trafficorganic' + slug + '"></div><div id="gadwp-socialnetworks' + slug + '"></div></div>');
404
+ data.query = 'trafficchannels';
405
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
406
+ if (!jQuery.isNumeric(response)) {
407
+ if (jQuery.isArray(response)) {
408
+ reports.trafficchannels = response;
409
+ google.setOnLoadCallback(reports.drawtrafficchannels(reports.trafficchannels));
410
+ reports.checknpcounter(4);
411
+ } else {
412
+ reports.throwDebug(response);
413
+ reports.checknpcounter(4);
414
+ }
415
+ } else {
416
+ reports.throwError('#gadwp-trafficchannels' + slug, response, 4, "125px");
417
+ }
418
+ });
419
+ data.query = 'medium';
420
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
421
+ if (!jQuery.isNumeric(response)) {
422
+ if (jQuery.isArray(response)) {
423
+ reports.trafficmediums = response;
424
+ google.setOnLoadCallback(reports.drawtrafficmediums(reports.trafficmediums));
425
+ reports.checknpcounter(4);
426
+ } else {
427
+ reports.throwDebug(response);
428
+ reports.checknpcounter(4);
429
+ }
430
+ } else {
431
+ reports.throwError('#gadwp-trafficmediums' + slug, response, 4, "80px");
432
+ }
433
+ });
434
+ data.query = 'visitorType';
435
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
436
+ if (!jQuery.isNumeric(response)) {
437
+ if (jQuery.isArray(response)) {
438
+ reports.traffictype = response;
439
+ google.setOnLoadCallback(reports.drawtraffictype(reports.traffictype));
440
+ reports.checknpcounter(4);
441
+ } else {
442
+ reports.throwDebug(response);
443
+ reports.checknpcounter(4);
444
+ }
445
+ } else {
446
+ reports.throwError('#gadwp-traffictype' + slug, response, 4, "80px");
447
+ }
448
+ });
449
+ data.query = 'source';
450
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
451
+ if (!jQuery.isNumeric(response)) {
452
+ if (jQuery.isArray(response)) {
453
+ reports.trafficorganic = response;
454
+ google.setOnLoadCallback(reports.drawtrafficorganic(reports.trafficorganic));
455
+ reports.checknpcounter(4);
456
+ } else {
457
+ reports.throwDebug(response);
458
+ reports.checknpcounter(4);
459
+ }
460
+ } else {
461
+ reports.throwError('#gadwp-trafficorganic' + slug, response, 4, "80px");
462
+ }
463
+ });
464
+ data.query = 'socialNetwork';
465
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
466
+ if (!jQuery.isNumeric(response)) {
467
+ if (jQuery.isArray(response)) {
468
+ reports.socialnetworks = response;
469
+ google.setOnLoadCallback(reports.drawsocialnetworks(reports.socialnetworks));
470
+ reports.checknpcounter(4);
471
+ } else {
472
+ reports.throwDebug(response);
473
+ reports.checknpcounter(4);
474
+ }
475
+ } else {
476
+ reports.throwError('#gadwp-socialnetworks' + slug, response, 4, "80px");
477
+ }
478
+ });
479
+ } else if (query == 'locations') {
480
+ jQuery('#gadwp-reports' + slug).html('<div id="gadwp-map' + slug + '"></div>')
481
+ jQuery('#gadwp-reports' + slug).append('<div id="gadwp-locations' + slug + '"></div>');
482
+ data.query = query;
483
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
484
+ if (!jQuery.isNumeric(response)) {
485
+ if (jQuery.isArray(response)) {
486
+ reports.locations = response;
487
+ google.setOnLoadCallback(reports.drawmaplocations(reports.locations));
488
+ reports.checknpcounter(1);
489
+ google.setOnLoadCallback(reports.drawlocations(reports.locations));
490
+ reports.checknpcounter(1);
491
+ } else {
492
+ reports.throwDebug(response);
493
+ reports.checknpcounter(1);
494
+ }
495
+ } else {
496
+ reports.throwError('#gadwp-map' + slug, response, 1, "125px");
497
+ reports.throwError('#gadwp-locations' + slug, response, 1, "125px");
498
+ }
499
+ });
500
+ } else {
501
+ jQuery('#gadwp-reports' + slug).html('<div id="gadwp-mainchart' + slug + '"></div>')
502
+ jQuery('#gadwp-reports' + slug).append('<div id="gadwp-bottomstats' + slug + '" class="gadwp-wrapper"><div class="inside"><div class="small-box"><h3>' + gadwp_item_data.i18n[5] + '</h3><p id="gdsessions' + slug + '">&nbsp;</p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[6] + '</h3><p id="gdusers' + slug + '">&nbsp;</p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[7] + '</h3><p id="gdpageviews' + slug + '">&nbsp;</p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[8] + '</h3><p id="gdbouncerate' + slug + '">&nbsp;</p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[9] + '</h3><p id="gdorganicsearch' + slug + '">&nbsp;</p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[10] + '</h3><p id="gdpagespervisit' + slug + '">&nbsp;</p></div></div></div>');
503
+
504
+ data.query = query;
505
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
506
+ if (!jQuery.isNumeric(response)) {
507
+ if (jQuery.isArray(response)) {
508
+ reports.mainchart = response;
509
+ google.setOnLoadCallback(reports.drawmainchart(reports.mainchart));
510
+ reports.checknpcounter(1);
511
+ } else {
512
+ reports.throwDebug(response);
513
+ reports.checknpcounter(1);
514
+ }
515
+ } else {
516
+ reports.throwError('#gadwp-mainchart' + slug, response, 1, "125px");
517
+ }
518
+ });
519
+
520
+ data.query = 'bottomstats';
521
+ jQuery.post(gadwp_item_data.ajaxurl, data, function(response) {
522
+
523
+ if (!jQuery.isNumeric(response)) {
524
+ if (jQuery.isArray(response)) {
525
+ reports.bottomstats = response;
526
+ google.setOnLoadCallback(reports.drawbottomstats(reports.bottomstats));
527
+ reports.checknpcounter(1);
528
+ } else {
529
+ reports.throwDebug(response);
530
+ reports.checknpcounter(1);
531
+ }
532
+ } else {
533
+ reports.throwError('#gadwp-bottomstats' + slug, response, response, 1, "40px");
534
+ }
535
+ });
536
+
537
+ }
538
+
539
+ },
540
+
541
+ refresh : function() {
542
+ if (jQuery('#gadwp-bottomstats' + slug).length > 0){
543
+ this.drawbottomstats(this.bottomstats);
544
+ }
545
+ if (jQuery('#gadwp-mainchart' + slug).length > 0 && jQuery.isArray(this.mainchart)){
546
+ this.drawmainchart(this.mainchart);
547
+ }
548
+ if (jQuery('#gadwp-map' + slug).length > 0 && jQuery.isArray(this.locations)){
549
+ this.drawmaplocations(this.locations);
550
+ }
551
+ if (jQuery('#gadwp-locations' + slug).length > 0 && jQuery.isArray(this.locations)){
552
+ this.drawlocations(this.locations);
553
+ }
554
+ if (jQuery('#gadwp-socialnetworks' + slug).length > 0 && jQuery.isArray(this.socialnetworks)){
555
+ this.drawsocialnetworks(this.socialnetworks);
556
+ }
557
+ if (jQuery('#gadwp-trafficorganic' + slug).length > 0 && jQuery.isArray(this.trafficorganic)){
558
+ this.drawtrafficorganic(this.trafficorganic);
559
+ }
560
+ if (jQuery('#gadwp-traffictype' + slug).length > 0 && jQuery.isArray(this.traffictype)){
561
+ this.drawtraffictype(this.traffictype);
562
+ }
563
+ if (jQuery('#gadwp-trafficmediums' + slug).length > 0 && jQuery.isArray(this.trafficmediums)){
564
+ this.drawtrafficmediums(this.trafficmediums);
565
+ }
566
+ if (jQuery('#gadwp-trafficchannels' + slug).length > 0 && jQuery.isArray(this.trafficchannels)){
567
+ this.drawtrafficchannels(this.trafficchannels);
568
+ }
569
+ if (jQuery('#gadwp-prs' + slug).length > 0 && jQuery.isArray(this.prs)){
570
+ this.drawprs(this.prs);
571
+ }
572
+ },
573
+
574
+ init : function() {
575
+
576
+ if (jQuery("#gadwp-reports" + slug).html().length) { // only when report is empty
577
+ return;
578
+ }
579
+
580
+ try {
581
+ NProgress.configure({
582
+ parent : "#gadwp-progressbar" + slug
583
+ });
584
+ NProgress.configure({
585
+ showSpinner : false
586
+ });
587
+ NProgress.start();
588
+ } catch (e) {
589
+ this.alertMessage(gadwp_item_data.i18n[0]);
590
+ }
591
+
592
+ this.render(jQuery('#gadwp-sel-period' + slug).val(), jQuery('#gadwp-sel-report' + slug).val());
593
+
594
+ jQuery(window).resize(function() {
595
+ reports.refresh();
596
+ });
597
+ }
598
+ }
599
+
600
+ template.init();
601
+
602
+ reports.init();
603
+
604
+ jQuery('#gadwp-sel-period' + slug).change(function() {
605
+ jQuery('#gadwp-reports' + slug).html('');
606
+ reports.init();
607
+ });
608
+
609
+ jQuery('#gadwp-sel-report' + slug).change(function() {
610
+ jQuery('#gadwp-reports' + slug).html('');
611
+ reports.init();
612
+ });
613
+
614
+ return this.dialog({
615
+ width : 'auto',
616
+ maxWidth : 510,
617
+ height : 'auto',
618
+ modal : true,
619
+ fluid : true,
620
+ dialogClass : 'wp-dialog',
621
+ resizable : false,
622
+ title : jQuery('#gadwp'+slug).attr( "title" ).substring(0,44),
623
+ position : {
624
+ my : "top",
625
+ at : "top+100",
626
+ of : window
627
+ }
628
+ });
629
+
630
+ }
631
+ });
admin/js/settings.js ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ * Navigation Tabs
3
+ */
4
+ jQuery(document).ready(
5
+ function() {
6
+ if (window.location.href.indexOf("page=gadash_") != -1) {
7
+ var ident = 'basic';
8
+
9
+ if (window.location.hash) {
10
+ ident = window.location.hash.split('#')[2].split('-')[1];
11
+ }else if (window.location.href.indexOf("page=gadash_errors_debugging") != -1){
12
+ ident = 'errors';
13
+ }
14
+
15
+ jQuery(".nav-tab-wrapper a").each(function(index) {
16
+ jQuery(this).removeClass("nav-tab-active");
17
+ jQuery("#" + this.hash.split('#')[2]).hide();
18
+ });
19
+ jQuery("#tab-" + ident).addClass("nav-tab-active");
20
+ jQuery("#gadwp-" + ident).show();
21
+ }
22
+
23
+ jQuery('a[href^="#"]').click(function(e) {
24
+ if (window.location.href.indexOf("page=gadash_") != -1) {
25
+ jQuery(".nav-tab-wrapper a").each(function(index) {
26
+ jQuery(this).removeClass("nav-tab-active");
27
+ jQuery("#" + this.hash.split('#')[2]).hide();
28
+ });
29
+ jQuery(this).addClass("nav-tab-active");
30
+ jQuery("#" + this.hash.split('#')[2]).show();
31
+ }
32
+ });
33
+
34
+ }
35
+
36
+ );
admin/js/{admin.js → widgets.js} RENAMED
@@ -1,37 +1,6 @@
1
- jQuery(document).ready(
2
- function() {
3
- if (window.location.href.indexOf("page=gadash_") != -1) {
4
- var ident = 'basic';
5
-
6
- if (window.location.hash) {
7
- ident = window.location.hash.split('#')[2].split('-')[1];
8
- }else if (window.location.href.indexOf("page=gadash_errors_debugging") != -1){
9
- ident = 'errors';
10
- }
11
-
12
- jQuery(".nav-tab-wrapper a").each(function(index) {
13
- jQuery(this).removeClass("nav-tab-active");
14
- jQuery("#" + this.hash.split('#')[2]).hide();
15
- });
16
- jQuery("#tab-" + ident).addClass("nav-tab-active");
17
- jQuery("#gadwp-" + ident).show();
18
- }
19
-
20
- jQuery('a[href^="#"]').click(function(e) {
21
- if (window.location.href.indexOf("page=gadash_") != -1) {
22
- jQuery(".nav-tab-wrapper a").each(function(index) {
23
- jQuery(this).removeClass("nav-tab-active");
24
- jQuery("#" + this.hash.split('#')[2]).hide();
25
- });
26
- jQuery(this).addClass("nav-tab-active");
27
- jQuery("#" + this.hash.split('#')[2]).show();
28
- }
29
- });
30
-
31
- }
32
-
33
- );
34
-
35
  jQuery(window).resize(
36
  function() {
37
  if (typeof ga_dash_drawmainchart == "function"
1
+ /*
2
+ * Responsive charts
3
+ */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  jQuery(window).resize(
5
  function() {
6
  if (typeof ga_dash_drawmainchart == "function"
admin/{ga_dash_settings.php → settings.php} RENAMED
@@ -34,7 +34,9 @@ final class GADASH_Settings
34
  }
35
  } else
36
  if ($who == 'backend') {
37
- $options['ga_dash_jailadmins'] = 0;
 
 
38
  if (empty($new_options['ga_dash_access_back'])) {
39
  $new_options['ga_dash_access_back'][] = 'administrator';
40
  }
@@ -48,11 +50,15 @@ final class GADASH_Settings
48
  } else
49
  if ($who == 'general') {
50
  $options['ga_dash_userapi'] = 0;
 
 
 
51
  } else
52
  if ($who == 'network') {
53
  $options['ga_dash_userapi'] = 0;
54
  $options['ga_dash_network'] = 0;
55
  $options['ga_dash_excludesa'] = 0;
 
56
  $network_settings = true;
57
  }
58
  $options = array_merge($options, $new_options);
@@ -86,7 +92,7 @@ final class GADASH_Settings
86
  }
87
  }
88
  if (! $GADASH_Config->options['ga_dash_tableid_jail'] or ! $GADASH_Config->options['ga_dash_token']) {
89
- $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('auhorize the plugin', 'ga-dash') . "</a>.</p></div>";
90
  }
91
  ?>
92
  <form name="ga_dash_form" method="post"
@@ -102,7 +108,7 @@ final class GADASH_Settings
102
  <?php if (isset($message)) echo $message; ?>
103
  <table class="options">
104
  <tr>
105
- <td colspan="2"><?php echo "<h2>" . __( "General Settings", 'ga-dash' ) . "</h2>"; ?></td>
106
  </tr>
107
  <tr>
108
  <td class="roles title"><label for="ga_dash_access_front"><?php _e("Show stats to:", 'ga-dash' ); ?></label></td>
@@ -134,7 +140,8 @@ final class GADASH_Settings
134
  <?php
135
  }
136
  }
137
- ?>
 
138
  </td>
139
  </tr>
140
  <tr>
@@ -197,13 +204,13 @@ final class GADASH_Settings
197
  }
198
  }
199
  if (! $GADASH_Config->options['ga_dash_tableid_jail'] or ! $GADASH_Config->options['ga_dash_token']) {
200
- $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('auhorize the plugin', 'ga-dash') . "</a>.</p></div>";
201
  }
202
  ?>
203
  <form name="ga_dash_form" method="post"
204
  action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
205
  <div class="wrap">
206
- <?php echo "<h2>" . __( "Google Analytics Dashboard Settings", 'ga-dash' ) . "</h2>"; ?><hr>
207
  </div>
208
  <div id="poststuff">
209
  <div id="post-body" class="metabox-holder columns-2">
@@ -213,7 +220,7 @@ final class GADASH_Settings
213
  <?php if (isset($message)) echo $message; ?>
214
  <table class="options">
215
  <tr>
216
- <td colspan="2"><?php echo "<h2>" . __( "General Settings", 'ga-dash' ) . "</h2>"; ?></td>
217
  </tr>
218
  <tr>
219
  <td class="roles title"><label for="ga_dash_access_back"><?php _e("Show stats to:", 'ga-dash' ); ?></label></td>
@@ -246,22 +253,51 @@ final class GADASH_Settings
246
  <?php
247
  }
248
  }
249
- ?>
 
250
  </td>
251
  </tr>
252
  <tr>
253
  <td colspan="2" class="title">
254
  <div class="onoffswitch">
255
- <input type="checkbox" name="options[ga_dash_jailadmins]"
256
  value="1" class="onoffswitch-checkbox"
257
- id="ga_dash_jailadmins"
258
- <?php checked( $options['ga_dash_jailadmins'], 1 ); ?>> <label
259
- class="onoffswitch-label" for="ga_dash_jailadmins">
260
  <div class="onoffswitch-inner"></div>
261
  <div class="onoffswitch-switch"></div>
262
  </label>
263
  </div>
264
- <div class="switch-desc"><?php _e ( "disable Switch Profile/View functionality", 'ga-dash' );?></div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
  </td>
266
  </tr>
267
  <tr>
@@ -314,10 +350,6 @@ final class GADASH_Settings
314
  public static function tracking_settings()
315
  {
316
  global $GADASH_Config;
317
- /*
318
- * Include Tools
319
- */
320
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
321
  $tools = new GADASH_Tools();
322
  if (! current_user_can('manage_options')) {
323
  return;
@@ -330,7 +362,7 @@ final class GADASH_Settings
330
  }
331
  }
332
  if (! $GADASH_Config->options['ga_dash_tableid_jail']) {
333
- $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('auhorize the plugin', 'ga-dash') . "</a>.</p></div>";
334
  }
335
  if (! $options['ga_dash_tracking']) {
336
  $message = "<div class='error'><p>" . __("The tracking component is disabled. You should set", 'ga-dash') . " <strong>" . __("Tracking Options", 'ga-dash') . "</strong> " . __("to", 'ga-dash') . " <strong>" . __("Enabled", 'ga-dash') . "</strong>.</p></div>";
@@ -681,7 +713,7 @@ final class GADASH_Settings
681
  }
682
  $options = self::set_get_options('frontend');
683
  if (! $GADASH_Config->options['ga_dash_tableid_jail'] or ! $GADASH_Config->options['ga_dash_token']) {
684
- $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('auhorize the plugin', 'ga-dash') . "</a>.</p></div>";
685
  }
686
  ?>
687
  <div class="wrap">
@@ -704,7 +736,7 @@ final class GADASH_Settings
704
  <table class="options">
705
  <tr>
706
  <td>
707
- <?php echo __("For errors and/or other issues please check",'ga-dash')." <a href='https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=errors_screen&utm_campaign=gadwp' target='_blank'>". __("the plugin documentation page",'ga-dash')."</a> ".__("and related tutorials",'ga-dash').".";?>
708
  </td>
709
  </tr>
710
  <tr>
@@ -731,6 +763,8 @@ final class GADASH_Settings
731
  ?></pre><br />
732
  <hr>
733
  </td>
 
 
734
  <tr>
735
 
736
  </table>
@@ -774,10 +808,6 @@ final class GADASH_Settings
774
  {
775
  global $GADASH_Config;
776
  global $wp_version;
777
- /*
778
- * Include Tools
779
- */
780
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
781
  $tools = new GADASH_Tools();
782
  if (! current_user_can('manage_options')) {
783
  return;
@@ -786,7 +816,7 @@ final class GADASH_Settings
786
  /*
787
  * Include GAPI
788
  */
789
- echo '<div id="gapi-warning" class="updated"><p>' . __('Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:', "ga-dash") . ' <a href="https://deconf.com/ask/question/ga-dashboard-absolutely-empty-general-settings#answer-770">Library conflicts between WordPress plugins</a></p></div>';
790
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
791
  global $GADASH_GAPI;
792
  echo '<script type="text/javascript">jQuery("#gapi-warning").hide()</script>';
@@ -811,7 +841,7 @@ final class GADASH_Settings
811
  return $e->getCode();
812
  } catch (Exception $e) {
813
  set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html($e) . "\nResponseHttpCode:" . $e->getCode(), $GADASH_GAPI->error_timeout);
814
- $GADASH_GAPI->ga_dash_reset_token(false);
815
  }
816
  } else {
817
  $message = "<div class='error'><p>" . __("The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try again, and use the red link to get your access code", 'ga-dash') . ".</p></div>";
@@ -836,7 +866,7 @@ final class GADASH_Settings
836
  }
837
  if (isset($_POST['Clear'])) {
838
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
839
- $tools->ga_dash_clear_cache();
840
  $message = "<div class='updated'><p>" . __("Cleared Cache.", 'ga-dash') . "</p></div>";
841
  } else {
842
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
@@ -844,15 +874,24 @@ final class GADASH_Settings
844
  }
845
  if (isset($_POST['Reset'])) {
846
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
847
- $GADASH_GAPI->ga_dash_reset_token(true);
848
- $tools->ga_dash_clear_cache();
849
  $message = "<div class='updated'><p>" . __("Token Reseted and Revoked.", 'ga-dash') . "</p></div>";
850
  $options = self::set_get_options('Reset');
851
  } else {
852
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
853
  }
854
  }
855
- if (isset($_POST['options']['ga_dash_hidden']) and ! isset($_POST['Clear']) and ! isset($_POST['Reset'])) {
 
 
 
 
 
 
 
 
 
856
  $message = "<div class='updated'><p>" . __("Settings saved.", 'ga-dash') . "</p></div>";
857
  if (! (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form'))) {
858
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
@@ -880,10 +919,10 @@ final class GADASH_Settings
880
  <div class="settings-wrapper">
881
  <div class="inside">
882
  if ($GADASH_GAPI->gapi_errors_handler()) {
883
- $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('auhorize the plugin', 'ga-dash') . "</a>.</p></div>";
884
  }
885
  if (isset($_POST['Authorize'])) {
886
- $tools->ga_dash_clear_cache();
887
  $GADASH_GAPI->token_request();
888
  echo "<div class='updated'><p>" . __("Use the red link (see below) to generate and get your access code!", 'ga-dash') . "</p></div>";
889
  } else {
@@ -956,7 +995,10 @@ final class GADASH_Settings
956
  <?php echo $options['ga_dash_network']?'disabled="disabled"':''; ?> />
957
  <input type="submit" name="Clear"
958
  class="button button-secondary"
959
- value="<?php _e( "Clear Cache", 'ga-dash' ); ?>" /></td>
 
 
 
960
  </tr>
961
  <tr>
962
  <td colspan="2"><hr></td>
@@ -974,7 +1016,7 @@ final class GADASH_Settings
974
  foreach ($options['ga_dash_profile_list'] as $items) {
975
  if ($items[3]) {
976
  echo '<option value="' . esc_attr($items[1]) . '" ' . selected($items[1], $options['ga_dash_tableid_jail']);
977
- echo ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($items[0]) . '">' . esc_html($tools->ga_dash_get_profile_domain($items[3])) . ' &#8658; ' . esc_attr($items[0]) . '</option>';
978
  }
979
  }
980
  } else {
@@ -1014,9 +1056,28 @@ final class GADASH_Settings
1014
  <tr>
1015
  <td colspan="2"><hr></td>
1016
  </tr>
 
1017
  <tr>
1018
- <td colspan="2"><?php echo __('A new frontend widget is available! To enable it, go to','ga-dash').' <a href="widgets.php">'.__('Appearance -> Widgets').'</a> '.__('and look for Google Analytics Dashboard.','ga-dash').' '.''; ?></td>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1019
  </tr>
 
1020
  <tr>
1021
  <td colspan="2"><hr></td>
1022
  </tr>
@@ -1058,10 +1119,6 @@ final class GADASH_Settings
1058
  {
1059
  global $GADASH_Config;
1060
  global $wp_version;
1061
- /*
1062
- * Include Tools
1063
- */
1064
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
1065
  $tools = new GADASH_Tools();
1066
  if (! current_user_can('manage_network_options')) {
1067
  return;
@@ -1070,7 +1127,7 @@ final class GADASH_Settings
1070
  /*
1071
  * Include GAPI
1072
  */
1073
- echo '<div id="gapi-warning" class="updated"><p>' . __('Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:', "ga-dash") . ' <a href="https://deconf.com/ask/question/ga-dashboard-absolutely-empty-general-settings#answer-770">Library conflicts between WordPress plugins</a></p></div>';
1074
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
1075
  global $GADASH_GAPI;
1076
  echo '<script type="text/javascript">jQuery("#gapi-warning").hide()</script>';
@@ -1104,7 +1161,7 @@ final class GADASH_Settings
1104
  return $e->getCode();
1105
  } catch (Exception $e) {
1106
  set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html($e) . "\nResponseHttpCode:" . $e->getCode(), $GADASH_GAPI->error_timeout);
1107
- $GADASH_GAPI->ga_dash_reset_token(false);
1108
  }
1109
  } else {
1110
  $message = "<div class='error'><p>" . __("The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try again, and use the red link to get your access code", 'ga-dash') . ".</p></div>";
@@ -1138,7 +1195,7 @@ final class GADASH_Settings
1138
  }
1139
  if (isset($_POST['Clear'])) {
1140
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
1141
- $tools->ga_dash_clear_cache();
1142
  $message = "<div class='updated'><p>" . __("Cleared Cache.", 'ga-dash') . "</p></div>";
1143
  } else {
1144
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
@@ -1146,8 +1203,8 @@ final class GADASH_Settings
1146
  }
1147
  if (isset($_POST['Reset'])) {
1148
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
1149
- $GADASH_GAPI->ga_dash_reset_token(true);
1150
- $tools->ga_dash_clear_cache();
1151
  $message = "<div class='updated'><p>" . __("Token Reseted and Revoked.", 'ga-dash') . "</p></div>";
1152
  $options = self::set_get_options('Reset');
1153
  } else {
@@ -1182,10 +1239,10 @@ final class GADASH_Settings
1182
  <div class="settings-wrapper">
1183
  <div class="inside">
1184
  if ($GADASH_GAPI->gapi_errors_handler()) {
1185
- $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('auhorize the plugin', 'ga-dash') . "</a>.</p></div>";
1186
  }
1187
  if (isset($_POST['Authorize'])) {
1188
- $tools->ga_dash_clear_cache();
1189
  $GADASH_GAPI->token_request();
1190
  echo "<div class='updated'><p>" . __("Use the red link (see below) to generate and get your access code!", 'ga-dash') . "</p></div>";
1191
  } else {
@@ -1313,7 +1370,7 @@ final class GADASH_Settings
1313
  foreach ($options['ga_dash_profile_list'] as $items) {
1314
  if ($items[3]) {
1315
  echo '<option value="' . esc_attr($items[1]) . '" ' . selected($items[1], isset($options['ga_dash_tableid_network']->$blog['blog_id']) ? $options['ga_dash_tableid_network']->$blog['blog_id'] : '');
1316
- echo ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($items[0]) . '">' . $tools->ga_dash_get_profile_domain($items[3]) . ' &#8658; ' . esc_attr($items[0]) . '</option>';
1317
  }
1318
  }
1319
  } else {
@@ -1325,7 +1382,27 @@ final class GADASH_Settings
1325
  <?php
1326
  }
1327
  ?>
1328
- <tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1329
  <td colspan="2"><hr><?php echo "<h2>" . __( "Exclude Tracking", 'ga-dash' ) . "</h2>"; ?></td>
1330
  </tr>
1331
  <tr>
@@ -1448,7 +1525,8 @@ final class GADASH_Settings
1448
  </h3>
1449
  <div class="inside">
1450
  <div class="gadash-title">
1451
- <a href="https://deconf.com/wordpress-cdn-speeds-up-your-site/"><img
 
1452
  src="<?php echo plugins_url( 'images/mcdn.png' , __FILE__ ); ?>" /></a>
1453
  </div>
1454
  <div class="gadash-desc"><?php echo __('Speed up your website and plug into a whole', 'ga-dash').' <a href="https://deconf.com/wordpress-cdn-speeds-up-your-site/">'.__('new level of site speed', 'ga-dash').'</a>.'; ?></div>
@@ -1466,8 +1544,5 @@ final class GADASH_Settings
1466
  </div>
1467
  </div>
1468
  <?php
1469
- /*
1470
- * Include Tools
1471
- */
1472
  }
1473
  }
34
  }
35
  } else
36
  if ($who == 'backend') {
37
+ $options['switch_profile'] = 0;
38
+ $options['item_reports'] = 0;
39
+ $options['dashboard_widget'] = 0;
40
  if (empty($new_options['ga_dash_access_back'])) {
41
  $new_options['ga_dash_access_back'][] = 'administrator';
42
  }
50
  } else
51
  if ($who == 'general') {
52
  $options['ga_dash_userapi'] = 0;
53
+ if (!is_multisite()){
54
+ $options['automatic_updates_minorversion'] = 0;
55
+ }
56
  } else
57
  if ($who == 'network') {
58
  $options['ga_dash_userapi'] = 0;
59
  $options['ga_dash_network'] = 0;
60
  $options['ga_dash_excludesa'] = 0;
61
+ $options['automatic_updates_minorversion'] = 0;
62
  $network_settings = true;
63
  }
64
  $options = array_merge($options, $new_options);
92
  }
93
  }
94
  if (! $GADASH_Config->options['ga_dash_tableid_jail'] or ! $GADASH_Config->options['ga_dash_token']) {
95
+ $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
96
  }
97
  ?>
98
  <form name="ga_dash_form" method="post"
108
  <?php if (isset($message)) echo $message; ?>
109
  <table class="options">
110
  <tr>
111
+ <td colspan="2"><?php echo "<h2>" . __( "Permissions", 'ga-dash' ) . "</h2>"; ?></td>
112
  </tr>
113
  <tr>
114
  <td class="roles title"><label for="ga_dash_access_front"><?php _e("Show stats to:", 'ga-dash' ); ?></label></td>
140
  <?php
141
  }
142
  }
143
+ ?>
144
+ </table>
145
  </td>
146
  </tr>
147
  <tr>
204
  }
205
  }
206
  if (! $GADASH_Config->options['ga_dash_tableid_jail'] or ! $GADASH_Config->options['ga_dash_token']) {
207
+ $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
208
  }
209
  ?>
210
  <form name="ga_dash_form" method="post"
211
  action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
212
  <div class="wrap">
213
+ <?php echo "<h2>" . __( "Google Analytics Backend Settings", 'ga-dash' ) . "</h2>"; ?><hr>
214
  </div>
215
  <div id="poststuff">
216
  <div id="post-body" class="metabox-holder columns-2">
220
  <?php if (isset($message)) echo $message; ?>
221
  <table class="options">
222
  <tr>
223
+ <td colspan="2"><?php echo "<h2>" . __( "Permissions", 'ga-dash' ) . "</h2>"; ?></td>
224
  </tr>
225
  <tr>
226
  <td class="roles title"><label for="ga_dash_access_back"><?php _e("Show stats to:", 'ga-dash' ); ?></label></td>
253
  <?php
254
  }
255
  }
256
+ ?>
257
+ </table>
258
  </td>
259
  </tr>
260
  <tr>
261
  <td colspan="2" class="title">
262
  <div class="onoffswitch">
263
+ <input type="checkbox" name="options[switch_profile]"
264
  value="1" class="onoffswitch-checkbox"
265
+ id="switch_profile"
266
+ <?php checked( $options['switch_profile'], 1 ); ?>> <label
267
+ class="onoffswitch-label" for="switch_profile">
268
  <div class="onoffswitch-inner"></div>
269
  <div class="onoffswitch-switch"></div>
270
  </label>
271
  </div>
272
+ <div class="switch-desc"><?php _e ( "enable Switch Profile/View functionality", 'ga-dash' );?></div>
273
+ </td>
274
+ </tr>
275
+ <tr>
276
+ <td colspan="2" class="title">
277
+ <div class="onoffswitch">
278
+ <input type="checkbox" name="options[item_reports]" value="1"
279
+ class="onoffswitch-checkbox" id="item_reports"
280
+ <?php checked( $options['item_reports'], 1 ); ?>> <label
281
+ class="onoffswitch-label" for="item_reports">
282
+ <div class="onoffswitch-inner"></div>
283
+ <div class="onoffswitch-switch"></div>
284
+ </label>
285
+ </div>
286
+ <div class="switch-desc"><?php _e ( "enable reports on Posts List and Pages List", 'ga-dash' );?></div>
287
+ </td>
288
+ </tr>
289
+ <tr>
290
+ <td colspan="2" class="title">
291
+ <div class="onoffswitch">
292
+ <input type="checkbox" name="options[dashboard_widget]"
293
+ value="1" class="onoffswitch-checkbox" id="dashboard_widget"
294
+ <?php checked( $options['dashboard_widget'], 1 ); ?>> <label
295
+ class="onoffswitch-label" for="dashboard_widget">
296
+ <div class="onoffswitch-inner"></div>
297
+ <div class="onoffswitch-switch"></div>
298
+ </label>
299
+ </div>
300
+ <div class="switch-desc"><?php _e ( "enable the main Dashboard Widget", 'ga-dash' );?></div>
301
  </td>
302
  </tr>
303
  <tr>
350
  public static function tracking_settings()
351
  {
352
  global $GADASH_Config;
 
 
 
 
353
  $tools = new GADASH_Tools();
354
  if (! current_user_can('manage_options')) {
355
  return;
362
  }
363
  }
364
  if (! $GADASH_Config->options['ga_dash_tableid_jail']) {
365
+ $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
366
  }
367
  if (! $options['ga_dash_tracking']) {
368
  $message = "<div class='error'><p>" . __("The tracking component is disabled. You should set", 'ga-dash') . " <strong>" . __("Tracking Options", 'ga-dash') . "</strong> " . __("to", 'ga-dash') . " <strong>" . __("Enabled", 'ga-dash') . "</strong>.</p></div>";
713
  }
714
  $options = self::set_get_options('frontend');
715
  if (! $GADASH_Config->options['ga_dash_tableid_jail'] or ! $GADASH_Config->options['ga_dash_token']) {
716
+ $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
717
  }
718
  ?>
719
  <div class="wrap">
736
  <table class="options">
737
  <tr>
738
  <td>
739
+ <?php echo __("For errors and/or other issues please check",'ga-dash')." <a href='https://deconf.com/error-codes-in-google-analytics-dashboard-for-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=errors_screen&utm_campaign=gadwp' target='_blank'>". __("this documentation page",'ga-dash')."</a> ".__("and related tutorials",'ga-dash').".";?>
740
  </td>
741
  </tr>
742
  <tr>
763
  ?></pre><br />
764
  <hr>
765
  </td>
766
+
767
+
768
  <tr>
769
 
770
  </table>
808
  {
809
  global $GADASH_Config;
810
  global $wp_version;
 
 
 
 
811
  $tools = new GADASH_Tools();
812
  if (! current_user_can('manage_options')) {
813
  return;
816
  /*
817
  * Include GAPI
818
  */
819
+ echo '<div id="gapi-warning" class="updated"><p>' . __('Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:', "ga-dash") . ' <a href="https://deconf.com/error-codes-in-google-analytics-dashboard-for-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=general_screen&utm_campaign=gadwp">Library conflicts between WordPress plugins</a></p></div>';
820
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
821
  global $GADASH_GAPI;
822
  echo '<script type="text/javascript">jQuery("#gapi-warning").hide()</script>';
841
  return $e->getCode();
842
  } catch (Exception $e) {
843
  set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html($e) . "\nResponseHttpCode:" . $e->getCode(), $GADASH_GAPI->error_timeout);
844
+ $GADASH_GAPI->reset_token(false);
845
  }
846
  } else {
847
  $message = "<div class='error'><p>" . __("The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try again, and use the red link to get your access code", 'ga-dash') . ".</p></div>";
866
  }
867
  if (isset($_POST['Clear'])) {
868
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
869
+ $tools->clear_cache();
870
  $message = "<div class='updated'><p>" . __("Cleared Cache.", 'ga-dash') . "</p></div>";
871
  } else {
872
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
874
  }
875
  if (isset($_POST['Reset'])) {
876
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
877
+ $GADASH_GAPI->reset_token(true);
878
+ $tools->clear_cache();
879
  $message = "<div class='updated'><p>" . __("Token Reseted and Revoked.", 'ga-dash') . "</p></div>";
880
  $options = self::set_get_options('Reset');
881
  } else {
882
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
883
  }
884
  }
885
+ if (isset($_POST['Reset_Err'])) {
886
+ if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
887
+ delete_transient('ga_dash_lasterror');
888
+ delete_transient('ga_dash_gapi_errors');
889
+ $message = "<div class='updated'><p>" . __("All errors reseted.", 'ga-dash') . "</p></div>";
890
+ } else {
891
+ $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
892
+ }
893
+ }
894
+ if (isset($_POST['options']['ga_dash_hidden']) and ! isset($_POST['Clear']) and ! isset($_POST['Reset']) and ! isset($_POST['Reset_Err'])) {
895
  $message = "<div class='updated'><p>" . __("Settings saved.", 'ga-dash') . "</p></div>";
896
  if (! (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form'))) {
897
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
919
  <div class="settings-wrapper">
920
  <div class="inside">
921
  if ($GADASH_GAPI->gapi_errors_handler()) {
922
+ $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
923
  }
924
  if (isset($_POST['Authorize'])) {
925
+ $tools->clear_cache();
926
  $GADASH_GAPI->token_request();
927
  echo "<div class='updated'><p>" . __("Use the red link (see below) to generate and get your access code!", 'ga-dash') . "</p></div>";
928
  } else {
995
  <?php echo $options['ga_dash_network']?'disabled="disabled"':''; ?> />
996
  <input type="submit" name="Clear"
997
  class="button button-secondary"
998
+ value="<?php _e( "Clear Cache", 'ga-dash' ); ?>" /> <input
999
+ type="submit" name="Reset_Err"
1000
+ class="button button-secondary"
1001
+ value="<?php _e( "Reset Errors", 'ga-dash' ); ?>" /></td>
1002
  </tr>
1003
  <tr>
1004
  <td colspan="2"><hr></td>
1016
  foreach ($options['ga_dash_profile_list'] as $items) {
1017
  if ($items[3]) {
1018
  echo '<option value="' . esc_attr($items[1]) . '" ' . selected($items[1], $options['ga_dash_tableid_jail']);
1019
+ echo ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($items[0]) . '">' . esc_html($tools->strip_protocol($items[3])) . ' &#8658; ' . esc_attr($items[0]) . '</option>';
1020
  }
1021
  }
1022
  } else {
1056
  <tr>
1057
  <td colspan="2"><hr></td>
1058
  </tr>
1059
+ <?php if ( !is_multisite()) {?>
1060
  <tr>
1061
+ <td colspan="2"><?php echo "<h2>" . __( "Automatic Updates", 'ga-dash' ) . "</h2>"; ?></td>
1062
+ </tr>
1063
+ <tr>
1064
+ <td colspan="2" class="title">
1065
+ <div class="onoffswitch">
1066
+ <input type="checkbox"
1067
+ name="options[automatic_updates_minorversion]" value="1"
1068
+ class="onoffswitch-checkbox"
1069
+ id="automatic_updates_minorversion"
1070
+ <?php checked( $options['automatic_updates_minorversion'], 1 ); ?>>
1071
+ <label class="onoffswitch-label"
1072
+ for="automatic_updates_minorversion">
1073
+ <div class="onoffswitch-inner"></div>
1074
+ <div class="onoffswitch-switch"></div>
1075
+ </label>
1076
+ </div>
1077
+ <div class="switch-desc"><?php echo " ".__( "automatic updates for minor versions (security and maintenance releases only)", 'ga-dash' );?></div>
1078
+ </td>
1079
  </tr>
1080
+ <?php }?>
1081
  <tr>
1082
  <td colspan="2"><hr></td>
1083
  </tr>
1119
  {
1120
  global $GADASH_Config;
1121
  global $wp_version;
 
 
 
 
1122
  $tools = new GADASH_Tools();
1123
  if (! current_user_can('manage_network_options')) {
1124
  return;
1127
  /*
1128
  * Include GAPI
1129
  */
1130
+ echo '<div id="gapi-warning" class="updated"><p>' . __('Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:', "ga-dash") . ' <a href="https://deconf.com/error-codes-in-google-analytics-dashboard-for-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=general_screen&utm_campaign=gadwp">Library conflicts between WordPress plugins</a></p></div>';
1131
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
1132
  global $GADASH_GAPI;
1133
  echo '<script type="text/javascript">jQuery("#gapi-warning").hide()</script>';
1161
  return $e->getCode();
1162
  } catch (Exception $e) {
1163
  set_transient('ga_dash_lasterror', date('Y-m-d H:i:s') . ': ' . esc_html($e) . "\nResponseHttpCode:" . $e->getCode(), $GADASH_GAPI->error_timeout);
1164
+ $GADASH_GAPI->reset_token(false);
1165
  }
1166
  } else {
1167
  $message = "<div class='error'><p>" . __("The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try again, and use the red link to get your access code", 'ga-dash') . ".</p></div>";
1195
  }
1196
  if (isset($_POST['Clear'])) {
1197
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
1198
+ $tools->clear_cache();
1199
  $message = "<div class='updated'><p>" . __("Cleared Cache.", 'ga-dash') . "</p></div>";
1200
  } else {
1201
  $message = "<div class='error'><p>" . __("Cheating Huh?", 'ga-dash') . "</p></div>";
1203
  }
1204
  if (isset($_POST['Reset'])) {
1205
  if (isset($_POST['gadash_security']) && wp_verify_nonce($_POST['gadash_security'], 'gadash_form')) {
1206
+ $GADASH_GAPI->reset_token(true);
1207
+ $tools->clear_cache();
1208
  $message = "<div class='updated'><p>" . __("Token Reseted and Revoked.", 'ga-dash') . "</p></div>";
1209
  $options = self::set_get_options('Reset');
1210
  } else {
1239
  <div class="settings-wrapper">
1240
  <div class="inside">
1241
  if ($GADASH_GAPI->gapi_errors_handler()) {
1242
+ $message = "<div class='error'><p>" . __("Something went wrong, check", 'ga-dash') . " <a href='" . menu_page_url('gadash_errors_debugging', false) . "'>" . __('Errors & Debug', 'ga-dash') . "</a> " . __('or', 'ga-dash') . " <a href='" . menu_page_url('gadash_settings', false) . "'>" . __('authorize the plugin', 'ga-dash') . "</a>.</p></div>";
1243
  }
1244
  if (isset($_POST['Authorize'])) {
1245
+ $tools->clear_cache();
1246
  $GADASH_GAPI->token_request();
1247
  echo "<div class='updated'><p>" . __("Use the red link (see below) to generate and get your access code!", 'ga-dash') . "</p></div>";
1248
  } else {
1370
  foreach ($options['ga_dash_profile_list'] as $items) {
1371
  if ($items[3]) {
1372
  echo '<option value="' . esc_attr($items[1]) . '" ' . selected($items[1], isset($options['ga_dash_tableid_network']->$blog['blog_id']) ? $options['ga_dash_tableid_network']->$blog['blog_id'] : '');
1373
+ echo ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($items[0]) . '">' . esc_html($tools->strip_protocol($items[3])) . ' &#8658; ' . esc_attr($items[0]) . '</option>';
1374
  }
1375
  }
1376
  } else {
1382
  <?php
1383
  }
1384
  ?>
1385
+ <tr>
1386
+ <td colspan="2"><?php echo "<h2>" . __( "Automatic Updates", 'ga-dash' ) . "</h2>"; ?></td>
1387
+ </tr>
1388
+ <tr>
1389
+ <td colspan="2" class="title">
1390
+ <div class="onoffswitch">
1391
+ <input type="checkbox"
1392
+ name="options[automatic_updates_minorversion]"
1393
+ value="1" class="onoffswitch-checkbox"
1394
+ id="automatic_updates_minorversion"
1395
+ <?php checked( $options['automatic_updates_minorversion'], 1 ); ?>>
1396
+ <label class="onoffswitch-label"
1397
+ for="automatic_updates_minorversion">
1398
+ <div class="onoffswitch-inner"></div>
1399
+ <div class="onoffswitch-switch"></div>
1400
+ </label>
1401
+ </div>
1402
+ <div class="switch-desc"><?php echo " ".__( "automatic updates for minor versions (security and maintenance releases only)", 'ga-dash' );?></div>
1403
+ </td>
1404
+ </tr>
1405
+ <tr>
1406
  <td colspan="2"><hr><?php echo "<h2>" . __( "Exclude Tracking", 'ga-dash' ) . "</h2>"; ?></td>
1407
  </tr>
1408
  <tr>
1525
  </h3>
1526
  <div class="inside">
1527
  <div class="gadash-title">
1528
+ <a
1529
+ href="https://deconf.com/wordpress-cdn-speeds-up-your-site/"><img
1530
  src="<?php echo plugins_url( 'images/mcdn.png' , __FILE__ ); ?>" /></a>
1531
  </div>
1532
  <div class="gadash-desc"><?php echo __('Speed up your website and plug into a whole', 'ga-dash').' <a href="https://deconf.com/wordpress-cdn-speeds-up-your-site/">'.__('new level of site speed', 'ga-dash').'</a>.'; ?></div>
1544
  </div>
1545
  </div>
1546
  <?php
 
 
 
1547
  }
1548
  }
admin/setup.php ADDED
@@ -0,0 +1,268 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Author: Alin Marcu
4
+ * Author URI: https://deconf.com
5
+ * License: GPLv2 or later
6
+ * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
+ */
8
+ if (! class_exists('GADASH_Back_Setup')) {
9
+
10
+ final class GADASH_Back_Setup
11
+ {
12
+
13
+ function __construct()
14
+ {
15
+ global $GADASH_Config;
16
+ // Styles & Scripts
17
+ add_action('admin_enqueue_scripts', array(
18
+ $this,
19
+ 'load_styles_scripts'
20
+ ));
21
+ // Site Menu
22
+ add_action('admin_menu', array(
23
+ $this,
24
+ 'site_menu'
25
+ ));
26
+ // Network Menu
27
+ add_action('network_admin_menu', array(
28
+ $this,
29
+ 'network_menu'
30
+ ));
31
+ // Settings link
32
+ add_filter("plugin_action_links_" . plugin_basename($GADASH_Config->plugin_path) . '/gadwp.php', array(
33
+ $this,
34
+ 'settings_link'
35
+ ));
36
+ // Error bubble
37
+ add_action('admin_print_scripts', array(
38
+ $this,
39
+ 'draw_error_bubble'
40
+ ), 10000);
41
+ }
42
+
43
+ /**
44
+ * Error bubble for Errors & Debug
45
+ */
46
+ function draw_error_bubble()
47
+ {
48
+ $bubble_msg = '!';
49
+ if (get_transient('ga_dash_gapi_errors')) {
50
+ ?>
51
+ <script type="text/javascript">
52
+ jQuery(document).ready(function() {
53
+ jQuery('#toplevel_page_gadash_settings li > a[href*="page=gadash_errors_debugging"]').append('&nbsp;<span class="awaiting-mod count-1"><span class="pending-count" style="padding:0 7px;"><?php echo $bubble_msg ?></span></span>');
54
+ });
55
+ </script>
56
+ <?php
57
+ }
58
+ }
59
+
60
+ /**
61
+ * Add Site Menu
62
+ */
63
+ function site_menu()
64
+ {
65
+ global $GADASH_Config;
66
+ global $wp_version;
67
+ if (current_user_can('manage_options')) {
68
+ include ($GADASH_Config->plugin_path . '/admin/settings.php');
69
+ add_menu_page(__("Google Analytics", 'ga-dash'), __("Google Analytics", 'ga-dash'), 'manage_options', 'gadash_settings', array(
70
+ 'GADASH_Settings',
71
+ 'general_settings'
72
+ ), version_compare($wp_version, '3.8.0', '>=') ? 'dashicons-chart-area' : $GADASH_Config->plugin_url . '/admin/images/gadash-icon.png');
73
+ add_submenu_page('gadash_settings', __("General Settings", 'ga-dash'), __("General Settings", 'ga-dash'), 'manage_options', 'gadash_settings', array(
74
+ 'GADASH_Settings',
75
+ 'general_settings'
76
+ ));
77
+ add_submenu_page('gadash_settings', __("Backend Settings", 'ga-dash'), __("Backend Settings", 'ga-dash'), 'manage_options', 'gadash_backend_settings', array(
78
+ 'GADASH_Settings',
79
+ 'backend_settings'
80
+ ));
81
+ add_submenu_page('gadash_settings', __("Frontend Settings", 'ga-dash'), __("Frontend Settings", 'ga-dash'), 'manage_options', 'gadash_frontend_settings', array(
82
+ 'GADASH_Settings',
83
+ 'frontend_settings'
84
+ ));
85
+ add_submenu_page('gadash_settings', __("Tracking Code", 'ga-dash'), __("Tracking Code", 'ga-dash'), 'manage_options', 'gadash_tracking_settings', array(
86
+ 'GADASH_Settings',
87
+ 'tracking_settings'
88
+ ));
89
+ add_submenu_page('gadash_settings', __("Errors & Debug", 'ga-dash'), __("Errors & Debug", 'ga-dash'), 'manage_options', 'gadash_errors_debugging', array(
90
+ 'GADASH_Settings',
91
+ 'errors_debugging'
92
+ ));
93
+ }
94
+ }
95
+
96
+ /**
97
+ * Add Network Menu
98
+ */
99
+ function network_menu()
100
+ {
101
+ global $GADASH_Config;
102
+ global $wp_version;
103
+ if (current_user_can('manage_netwrok')) {
104
+ include ($GADASH_Config->plugin_path . '/admin/settings.php');
105
+ add_menu_page(__("Google Analytics", 'ga-dash'), __("Google Analytics", 'ga-dash'), 'manage_netwrok', 'gadash_settings', array(
106
+ 'GADASH_Settings',
107
+ 'general_settings_network'
108
+ ), version_compare($wp_version, '3.8.0', '>=') ? 'dashicons-chart-area' : $GADASH_Config->plugin_url . '/admin/images/gadash-icon.png');
109
+ add_submenu_page('gadash_settings', __("General Settings", 'ga-dash'), __("General Settings", 'ga-dash'), 'manage_netwrok', 'gadash_settings', array(
110
+ 'GADASH_Settings',
111
+ 'general_settings_network'
112
+ ));
113
+ add_submenu_page('gadash_settings', __("Errors & Debug", 'ga-dash'), __("Errors & Debug", 'ga-dash'), 'manage_network', 'gadash_errors_debugging', array(
114
+ 'GADASH_Settings',
115
+ 'errors_debugging'
116
+ ));
117
+ }
118
+ }
119
+
120
+ /**
121
+ * Styles & Scripts conditional loading (based on current URI)
122
+ *
123
+ * @param
124
+ * $hook
125
+ */
126
+ function load_styles_scripts($hook)
127
+ {
128
+ global $GADASH_Config;
129
+ $tools = new GADASH_Tools();
130
+ /*
131
+ * GADWP main stylesheet
132
+ */
133
+ wp_enqueue_style('gadwp', $GADASH_Config->plugin_url . '/admin/css/gadwp.css', NULL, GADWP_CURRENT_VERSION);
134
+ /*
135
+ * Dashboard Widgets Styles & Scripts
136
+ */
137
+ $widgets_hooks = array(
138
+ 'index.php'
139
+ );
140
+ if (in_array($hook, $widgets_hooks)) {
141
+ wp_enqueue_style('gadwp-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.css', NULL, GADWP_CURRENT_VERSION);
142
+ wp_enqueue_style('gadwp-admin-widgets', $GADASH_Config->plugin_url . '/admin/css/gadwp.css', NULL, GADWP_CURRENT_VERSION);
143
+ wp_enqueue_script('gadwp-admin-widgets', plugins_url('js/widgets.js', __FILE__), array(
144
+ 'jquery'
145
+ ), GADWP_CURRENT_VERSION);
146
+ if (! wp_script_is('googlejsapi')) {
147
+ wp_register_script('googlejsapi', 'https://www.google.com/jsapi');
148
+ wp_enqueue_script('googlejsapi');
149
+ }
150
+ wp_enqueue_script('gadwp-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.js', array(
151
+ 'jquery'
152
+ ), GADWP_CURRENT_VERSION);
153
+ }
154
+ /*
155
+ * Posts/Pages List Styles & Scripts
156
+ */
157
+ $contentstats_hooks = array(
158
+ 'edit.php'
159
+ );
160
+ if (in_array($hook, $contentstats_hooks)) {
161
+ if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_back']) or 0 == $GADASH_Config->options['item_reports']) {
162
+ return;
163
+ }
164
+ wp_enqueue_style('gadwp-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.css', NULL, GADWP_CURRENT_VERSION);
165
+ wp_enqueue_style('gadwp_itemreports', $GADASH_Config->plugin_url . '/admin/css/item-reports.css', NULL, GADWP_CURRENT_VERSION);
166
+ $tools->getcountrycodes();
167
+ if ($GADASH_Config->options['ga_target_geomap'] and isset($tools->country_codes[$GADASH_Config->options['ga_target_geomap']])) {
168
+ $region = $GADASH_Config->options['ga_target_geomap'];
169
+ } else {
170
+ $region = false;
171
+ }
172
+ wp_enqueue_style("wp-jquery-ui-dialog");
173
+ if (! wp_script_is('googlejsapi')) {
174
+ wp_register_script('googlejsapi', 'https://www.google.com/jsapi');
175
+ }
176
+ wp_enqueue_script('gadwp-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.js', array(
177
+ 'jquery'
178
+ ), GADWP_CURRENT_VERSION);
179
+ wp_enqueue_script('gadwp_itemreports', plugins_url('js/item-reports.js', __FILE__), array(
180
+ 'gadwp-nprogress',
181
+ 'googlejsapi',
182
+ 'jquery',
183
+ 'jquery-ui-dialog'
184
+ ), GADWP_CURRENT_VERSION);
185
+ wp_localize_script('gadwp_itemreports', 'gadwp_item_data',
186
+ array(
187
+ 'ajaxurl' => admin_url('admin-ajax.php'),
188
+ 'security' => wp_create_nonce('gadwp_get_itemreports'),
189
+ 'dateList' => array(
190
+ 'today' => __("Today", 'ga-dash'),
191
+ 'yesterday' => __("Yesterday", 'ga-dash'),
192
+ '7daysAgo' => __("Last 7 Days", 'ga-dash'),
193
+ '30daysAgo' => __("Last 30 Days", 'ga-dash'),
194
+ '90daysAgo' => __("Last 90 Days", 'ga-dash')
195
+ ),
196
+ 'reportList' => array(
197
+ 'uniquePageviews' => __("Unique Views", 'ga-dash'),
198
+ 'users' => __("Users", 'ga-dash'),
199
+ 'organicSearches' => __("Organic", 'ga-dash'),
200
+ 'pageviews' => __("Page Views", 'ga-dash'),
201
+ 'visitBounceRate' => __("Bounce Rate", 'ga-dash'),
202
+ 'locations' => __("Location", 'ga-dash'),
203
+ 'referrers' => __("Referrers", 'ga-dash'),
204
+ 'searches' => __("Searches", 'ga-dash'),
205
+ 'trafficdetails' => __("Traffic Details", 'ga-dash')
206
+ ),
207
+ 'i18n' => array(
208
+ __("A JavaScript Error is blocking plugin resources!", 'ga-dash'),
209
+ __("Traffic Mediums", 'ga-dash'),
210
+ __("Visitor Type", 'ga-dash'),
211
+ __("Social Networks", 'ga-dash'),
212
+ __("Search Engines", 'ga-dash'),
213
+ __("Unique Views", 'ga-dash'),
214
+ __("Users", 'ga-dash'),
215
+ __("Page Views", 'ga-dash'),
216
+ __("Bounce Rate", 'ga-dash'),
217
+ __("Organic Search", 'ga-dash'),
218
+ __("Pages/Session", 'ga-dash'),
219
+ __("Invalid response, more details in JavaScript Console (F12).", 'ga-dash'),
220
+ __("Not enough data collected", 'ga-dash'),
221
+ __("This report is unavailable", 'ga-dash'),
222
+ __("report generated by", 'ga-dash')
223
+ ),
224
+ 'colorVariations' => $tools->variations($GADASH_Config->options['ga_dash_style']),
225
+ 'region' => $region
226
+ ));
227
+ }
228
+ /*
229
+ * Settings Styles & Scripts
230
+ */
231
+ $settings_hooks = array(
232
+ 'toplevel_page_gadash_settings',
233
+ 'google-analytics_page_gadash_backend_settings',
234
+ 'google-analytics_page_gadash_frontend_settings',
235
+ 'google-analytics_page_gadash_tracking_settings',
236
+ 'google-analytics_page_gadash_errors_debugging'
237
+ );
238
+
239
+ if (in_array($hook, $settings_hooks)) {
240
+ wp_enqueue_style('wp-color-picker');
241
+ wp_enqueue_script('wp-color-picker');
242
+ wp_enqueue_script('wp-color-picker-script-handle', plugins_url('js/wp-color-picker-script.js', __FILE__), array(
243
+ 'wp-color-picker'
244
+ ), false, true);
245
+ wp_enqueue_script('gadwp-settings', plugins_url('js/settings.js', __FILE__), array(
246
+ 'jquery'
247
+ ), GADWP_CURRENT_VERSION);
248
+ }
249
+ }
250
+
251
+ /**
252
+ * Add "Settings" link in Plugins List
253
+ *
254
+ * @param
255
+ * $links
256
+ * @return array
257
+ */
258
+ function settings_link($links)
259
+ {
260
+ $settings_link = '<a href="' . get_admin_url(null, 'admin.php?page=gadash_settings') . '">' . __("Settings", 'ga-dash') . '</a>';
261
+ array_unshift($links, $settings_link);
262
+ return $links;
263
+ }
264
+ }
265
+ }
266
+ if (is_admin()) {
267
+ $GADASH_Back_Setup = new GADASH_Back_Setup();
268
+ }
admin/{dashboard_widgets.php → widgets.php} RENAMED
@@ -15,178 +15,29 @@ if (! class_exists('GADASH_Widgets')) {
15
  global $GADASH_Config;
16
  add_action('wp_dashboard_setup', array(
17
  $this,
18
- 'ga_dash_setup'
19
  ));
20
- // Admin Styles
21
- add_action('admin_enqueue_scripts', array(
22
- $this,
23
- 'ga_dash_admin_enqueue_styles'
24
- ));
25
- // Admin Menu
26
- add_action('admin_menu', array(
27
- $this,
28
- 'ga_dash_admin_actions'
29
- ));
30
- // Network Menu
31
- add_action('network_admin_menu', array(
32
- $this,
33
- 'ga_dash_network_actions'
34
- ));
35
- // Plugin Settings link
36
- add_filter("plugin_action_links_" . plugin_basename($GADASH_Config->plugin_path) . '/gadwp.php', array(
37
- $this,
38
- 'ga_dash_settings_link'
39
- ));
40
- // Add error bubble
41
- add_action('admin_print_scripts', array(
42
- $this,
43
- 'draw_error_bubble'
44
- ), 10000);
45
- }
46
-
47
- function draw_error_bubble()
48
- {
49
- $bubble_msg = '!';
50
- if (get_transient('ga_dash_gapi_errors')) {
51
- ?>
52
- <script type="text/javascript">
53
- jQuery(document).ready(function() {
54
- jQuery('#toplevel_page_gadash_settings li > a[href*="page=gadash_errors_debugging"]').append('&nbsp;<span class="awaiting-mod count-1"><span class="pending-count" style="padding:0 7px;"><?php echo $bubble_msg ?></span></span>');
55
- });
56
- </script>
57
- <?php
58
- }
59
- }
60
-
61
- function ga_dash_admin_actions()
62
- {
63
- global $GADASH_Config;
64
- global $wp_version;
65
- if (current_user_can('manage_options')) {
66
- include ($GADASH_Config->plugin_path . '/admin/ga_dash_settings.php');
67
- add_menu_page(__("Google Analytics", 'ga-dash'), __("Google Analytics", 'ga-dash'), 'manage_options', 'gadash_settings', array(
68
- 'GADASH_Settings',
69
- 'general_settings'
70
- ), version_compare($wp_version, '3.8.0', '>=') ? 'dashicons-chart-area' : $GADASH_Config->plugin_url . '/admin/images/gadash-icon.png');
71
- add_submenu_page('gadash_settings', __("General Settings", 'ga-dash'), __("General Settings", 'ga-dash'), 'manage_options', 'gadash_settings', array(
72
- 'GADASH_Settings',
73
- 'general_settings'
74
- ));
75
- add_submenu_page('gadash_settings', __("Backend Settings", 'ga-dash'), __("Backend Settings", 'ga-dash'), 'manage_options', 'gadash_backend_settings', array(
76
- 'GADASH_Settings',
77
- 'backend_settings'
78
- ));
79
- add_submenu_page('gadash_settings', __("Frontend Settings", 'ga-dash'), __("Frontend Settings", 'ga-dash'), 'manage_options', 'gadash_frontend_settings', array(
80
- 'GADASH_Settings',
81
- 'frontend_settings'
82
- ));
83
- add_submenu_page('gadash_settings', __("Tracking Code", 'ga-dash'), __("Tracking Code", 'ga-dash'), 'manage_options', 'gadash_tracking_settings', array(
84
- 'GADASH_Settings',
85
- 'tracking_settings'
86
- ));
87
- add_submenu_page('gadash_settings', __("Errors & Debug", 'ga-dash'), __("Errors & Debug", 'ga-dash'), 'manage_options', 'gadash_errors_debugging', array(
88
- 'GADASH_Settings',
89
- 'errors_debugging'
90
- ));
91
- }
92
- }
93
-
94
- function ga_dash_network_actions()
95
- {
96
- global $GADASH_Config;
97
- global $wp_version;
98
- if (current_user_can('manage_netwrok')) {
99
- include ($GADASH_Config->plugin_path . '/admin/ga_dash_settings.php');
100
- add_menu_page(__("Google Analytics", 'ga-dash'), __("Google Analytics", 'ga-dash'), 'manage_netwrok', 'gadash_settings', array(
101
- 'GADASH_Settings',
102
- 'general_settings_network'
103
- ), version_compare($wp_version, '3.8.0', '>=') ? 'dashicons-chart-area' : $GADASH_Config->plugin_url . '/admin/images/gadash-icon.png');
104
- add_submenu_page('gadash_settings', __("General Settings", 'ga-dash'), __("General Settings", 'ga-dash'), 'manage_netwrok', 'gadash_settings', array(
105
- 'GADASH_Settings',
106
- 'general_settings_network'
107
- ));
108
- add_submenu_page('gadash_settings', __("Errors & Debug", 'ga-dash'), __("Errors & Debug", 'ga-dash'), 'manage_network', 'gadash_errors_debugging', array(
109
- 'GADASH_Settings',
110
- 'errors_debugging'
111
- ));
112
- }
113
  }
114
 
115
- /*
116
- * Include styles
117
- */
118
- function ga_dash_admin_enqueue_styles($hook)
119
  {
120
  global $GADASH_Config;
121
- $valid_hooks = array(
122
- 'toplevel_page_gadash_settings',
123
- 'google-analytics_page_gadash_backend_settings',
124
- 'google-analytics_page_gadash_frontend_settings',
125
- 'google-analytics_page_gadash_tracking_settings',
126
- 'google-analytics_page_gadash_errors_debugging'
127
- );
128
- if (! in_array($hook, $valid_hooks) and 'index.php' != $hook)
129
- return;
130
- wp_enqueue_style('ga_dash-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.css', NULL, GADWP_CURRENT_VERSION);
131
- wp_register_style('ga_dash', $GADASH_Config->plugin_url . '/admin/css/ga_dash.css', NULL, GADWP_CURRENT_VERSION);
132
- wp_enqueue_style('ga_dash');
133
- wp_enqueue_style('wp-color-picker');
134
- wp_enqueue_script('wp-color-picker');
135
- wp_enqueue_script('wp-color-picker-script-handle', plugins_url('js/wp-color-picker-script.js', __FILE__), array(
136
- 'wp-color-picker'
137
- ), false, true);
138
- wp_enqueue_script('gadash-general-settings', plugins_url('js/admin.js', __FILE__), array(
139
- 'jquery'
140
- ), GADWP_CURRENT_VERSION);
141
- if (! wp_script_is('googlejsapi')) {
142
- wp_register_script('googlejsapi', 'https://www.google.com/jsapi');
143
- wp_enqueue_script('googlejsapi');
144
- }
145
- wp_enqueue_script('ga_dash-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.js', array(
146
- 'jquery'
147
- ), GADWP_CURRENT_VERSION);
148
- }
149
-
150
- function ga_dash_settings_link($links)
151
- {
152
- $settings_link = '<a href="' . get_admin_url(null, 'admin.php?page=gadash_settings') . '">' . __("Settings", 'ga-dash') . '</a>';
153
- array_unshift($links, $settings_link);
154
- return $links;
155
- }
156
-
157
- function ga_dash_setup()
158
- {
159
- global $GADASH_Config;
160
- /*
161
- * Include Tools
162
- */
163
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
164
  $tools = new GADASH_Tools();
165
- if ($tools->check_roles($GADASH_Config->options['ga_dash_access_back'])) {
166
  wp_add_dashboard_widget('gadash-widget', __("Google Analytics Dashboard", 'ga-dash'), array(
167
  $this,
168
- 'gadash_dashboard_widgets'
169
  ), $control_callback = null);
170
  }
171
  }
172
 
173
- function gadash_dashboard_widgets()
174
  {
175
  global $GADASH_Config;
176
- /*
177
- * Include GAPI
178
- */
179
- if ($GADASH_Config->options['ga_dash_token']) {
180
- include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
181
- global $GADASH_GAPI;
182
- } else {
183
  echo '<p>' . __("This plugin needs an authorization:", 'ga-dash') . '</p><form action="' . menu_page_url('gadash_settings', false) . '" method="POST">' . get_submit_button(__("Authorize Plugin", 'ga-dash'), 'secondary') . '</form>';
184
  return;
185
  }
186
- /*
187
- * Include Tools
188
- */
189
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
190
  $tools = new GADASH_Tools();
191
  if (current_user_can('manage_options')) {
192
  if (isset($_REQUEST['ga_dash_profile_select'])) {
@@ -202,7 +53,7 @@ if (! class_exists('GADASH_Widgets')) {
202
  $GADASH_Config->options['ga_dash_tableid'] = $tools->guess_default_domain($profiles);
203
  }
204
  } else
205
- if ($GADASH_Config->options['ga_dash_jailadmins'] and $GADASH_Config->options['ga_dash_tableid_jail']) {
206
  $GADASH_Config->options['ga_dash_tableid'] = $GADASH_Config->options['ga_dash_tableid_jail'];
207
  }
208
  $profile_switch .= '<select id="ga_dash_profile_select" name="ga_dash_profile_select" onchange="this.form.submit()">';
@@ -213,7 +64,7 @@ if (! class_exists('GADASH_Widgets')) {
213
  if (isset($profile[3])) {
214
  $profile_switch .= '<option value="' . esc_attr($profile[1]) . '" ';
215
  $profile_switch .= selected($profile[1], $GADASH_Config->options['ga_dash_tableid'], false);
216
- $profile_switch .= ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($profile[0]) . '">' . esc_attr($tools->ga_dash_get_profile_domain($profile[3])) . '</option>';
217
  }
218
  }
219
  $profile_switch .= "</select>";
@@ -227,7 +78,7 @@ if (! class_exists('GADASH_Widgets')) {
227
  <form id="ga-dash" method="POST">
228
  <?php
229
  if (current_user_can('manage_options')) {
230
- if ($GADASH_Config->options['ga_dash_jailadmins']) {
231
  if ($GADASH_Config->options['ga_dash_tableid_jail']) {
232
  $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
233
  } else {
@@ -249,13 +100,6 @@ if (! class_exists('GADASH_Widgets')) {
249
  if (! ($projectId)) {
250
  echo '<p>' . __("Something went wrong while retrieving property data. You need to create and properly configure a Google Analytics account:", 'ga-dash') . '</p> <form action="https://deconf.com/how-to-set-up-google-analytics-on-your-website/" method="POST">' . get_submit_button(__("Find out more!", 'ga-dash'), 'secondary') . '</form>';
251
  return;
252
- } else {
253
- $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
254
- if (isset($profile_info[4])) {
255
- $GADASH_GAPI->timeshift = $profile_info[4];
256
- } else {
257
- $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
258
- }
259
  }
260
  if (isset($_REQUEST['query'])) {
261
  $query = $_REQUEST['query'];
@@ -357,10 +201,6 @@ if (! class_exists('GADASH_Widgets')) {
357
  } else {
358
  $formater = '';
359
  }
360
- /*
361
- * Include Tools
362
- */
363
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
364
  $tools = new GADASH_Tools();
365
  if (isset($GADASH_Config->options['ga_dash_style'])) {
366
  $light_color = $tools->colourVariator($GADASH_Config->options['ga_dash_style'], 40);
@@ -542,8 +382,8 @@ if (! class_exists('GADASH_Widgets')) {
542
 
543
  function online_refresh(){
544
  if (focusFlag){
545
-
546
- jQuery.post(ajaxurl, {action: "gadashadmin_get_realtime", projectId: "<?php echo $projectId;?>", gadashadmin_security_widgetrealtime: "<?php echo wp_create_nonce('gadashadmin_get_realtime');?>"}, function(data){
547
 
548
  if (jQuery.isNumeric(data) || typeof data === "undefined"){
549
  data = [];
@@ -683,7 +523,7 @@ if (! class_exists('GADASH_Widgets')) {
683
  }
684
  npcounter = 0;
685
 
686
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query; ?>",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
687
 
688
  if (!jQuery.isNumeric(response)){
689
  if (jQuery.isArray(response)){
@@ -702,7 +542,7 @@ if (! class_exists('GADASH_Widgets')) {
702
  }
703
  });
704
 
705
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "trafficchannels",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
706
  if (!jQuery.isNumeric(response)){
707
  if (jQuery.isArray(response)){
708
  gadash_trafficchannels=response;
@@ -779,7 +619,7 @@ if (! class_exists('GADASH_Widgets')) {
779
  }
780
  npcounter = 0;
781
 
782
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "medium",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
783
 
784
  if (!jQuery.isNumeric(response)){
785
  if (jQuery.isArray(response)){
@@ -798,7 +638,7 @@ if (! class_exists('GADASH_Widgets')) {
798
  }
799
  });
800
 
801
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "visitorType",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
802
  if (!jQuery.isNumeric(response)){
803
  if (jQuery.isArray(response)){
804
  gadash_traffictype=response;
@@ -816,7 +656,7 @@ if (! class_exists('GADASH_Widgets')) {
816
  }
817
  });
818
 
819
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "trafficchannels",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
820
 
821
  if (!jQuery.isNumeric(response)){
822
  if (jQuery.isArray(response)){
@@ -835,7 +675,7 @@ if (! class_exists('GADASH_Widgets')) {
835
  }
836
  });
837
 
838
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "socialNetwork",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
839
 
840
  if (!jQuery.isNumeric(response)){
841
  if (jQuery.isArray(response)){
@@ -855,7 +695,7 @@ if (! class_exists('GADASH_Widgets')) {
855
  });
856
 
857
 
858
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "source",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
859
 
860
  if (!jQuery.isNumeric(response)){
861
  if (jQuery.isArray(response)){
@@ -977,7 +817,7 @@ if (! class_exists('GADASH_Widgets')) {
977
  }
978
  npcounter = 0;
979
 
980
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query; ?>",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
981
 
982
  if (!jQuery.isNumeric(response)){
983
  if (jQuery.isArray(response)){
@@ -1007,8 +847,9 @@ if (! class_exists('GADASH_Widgets')) {
1007
  chartArea: {width: '99%',height: '90%'},
1008
  colors: ['<?php echo $light_color; ?>', '<?php echo $dark_color; ?>'],
1009
  <?php
1010
- $GADASH_GAPI->getcountrycodes();
1011
- if ($GADASH_Config->options['ga_target_geomap'] and isset($GADASH_GAPI->country_codes[$GADASH_Config->options['ga_target_geomap']])) {
 
1012
  ?>
1013
  region : '<?php echo esc_html($GADASH_Config->options ['ga_target_geomap']); ?>',
1014
  displayMode : 'markers',
@@ -1088,7 +929,7 @@ if (! class_exists('GADASH_Widgets')) {
1088
  }
1089
  npcounter = 0;
1090
 
1091
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query; ?>",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
1092
 
1093
  if (!jQuery.isNumeric(response)){
1094
  if (jQuery.isArray(response)){
@@ -1107,7 +948,7 @@ if (! class_exists('GADASH_Widgets')) {
1107
  }
1108
  });
1109
 
1110
- jQuery.post(ajaxurl, {action: "gadashadmin_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "bottomstats",gadashadmin_security_widget_reports: "<?php echo wp_create_nonce('gadashadmin_get_widgetreports'); ?>"}, function(response){
1111
 
1112
  if (!jQuery.isNumeric(response)){
1113
  if (jQuery.isArray(response)){
15
  global $GADASH_Config;
16
  add_action('wp_dashboard_setup', array(
17
  $this,
18
+ 'add_widget'
19
  ));
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
+ function add_widget()
 
 
 
23
  {
24
  global $GADASH_Config;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  $tools = new GADASH_Tools();
26
+ if ($tools->check_roles($GADASH_Config->options['ga_dash_access_back']) and 1 == $GADASH_Config->options['dashboard_widget']) {
27
  wp_add_dashboard_widget('gadash-widget', __("Google Analytics Dashboard", 'ga-dash'), array(
28
  $this,
29
+ 'dashboard_widget'
30
  ), $control_callback = null);
31
  }
32
  }
33
 
34
+ function dashboard_widget()
35
  {
36
  global $GADASH_Config;
37
+ if (empty($GADASH_Config->options['ga_dash_token'])) {
 
 
 
 
 
 
38
  echo '<p>' . __("This plugin needs an authorization:", 'ga-dash') . '</p><form action="' . menu_page_url('gadash_settings', false) . '" method="POST">' . get_submit_button(__("Authorize Plugin", 'ga-dash'), 'secondary') . '</form>';
39
  return;
40
  }
 
 
 
 
41
  $tools = new GADASH_Tools();
42
  if (current_user_can('manage_options')) {
43
  if (isset($_REQUEST['ga_dash_profile_select'])) {
53
  $GADASH_Config->options['ga_dash_tableid'] = $tools->guess_default_domain($profiles);
54
  }
55
  } else
56
+ if ($GADASH_Config->options['switch_profile'] == 0 and $GADASH_Config->options['ga_dash_tableid_jail']) {
57
  $GADASH_Config->options['ga_dash_tableid'] = $GADASH_Config->options['ga_dash_tableid_jail'];
58
  }
59
  $profile_switch .= '<select id="ga_dash_profile_select" name="ga_dash_profile_select" onchange="this.form.submit()">';
64
  if (isset($profile[3])) {
65
  $profile_switch .= '<option value="' . esc_attr($profile[1]) . '" ';
66
  $profile_switch .= selected($profile[1], $GADASH_Config->options['ga_dash_tableid'], false);
67
+ $profile_switch .= ' title="' . __("View Name:", 'ga-dash') . ' ' . esc_attr($profile[0]) . '">' . esc_attr($tools->strip_protocol($profile[3])) . '</option>';
68
  }
69
  }
70
  $profile_switch .= "</select>";
78
  <form id="ga-dash" method="POST">
79
  <?php
80
  if (current_user_can('manage_options')) {
81
+ if ($GADASH_Config->options['switch_profile'] == 0) {
82
  if ($GADASH_Config->options['ga_dash_tableid_jail']) {
83
  $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
84
  } else {
100
  if (! ($projectId)) {
101
  echo '<p>' . __("Something went wrong while retrieving property data. You need to create and properly configure a Google Analytics account:", 'ga-dash') . '</p> <form action="https://deconf.com/how-to-set-up-google-analytics-on-your-website/" method="POST">' . get_submit_button(__("Find out more!", 'ga-dash'), 'secondary') . '</form>';
102
  return;
 
 
 
 
 
 
 
103
  }
104
  if (isset($_REQUEST['query'])) {
105
  $query = $_REQUEST['query'];
201
  } else {
202
  $formater = '';
203
  }
 
 
 
 
204
  $tools = new GADASH_Tools();
205
  if (isset($GADASH_Config->options['ga_dash_style'])) {
206
  $light_color = $tools->colourVariator($GADASH_Config->options['ga_dash_style'], 40);
382
 
383
  function online_refresh(){
384
  if (focusFlag){
385
+
386
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: false,to: false,query: "realtime",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(data){
387
 
388
  if (jQuery.isNumeric(data) || typeof data === "undefined"){
389
  data = [];
523
  }
524
  npcounter = 0;
525
 
526
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
527
 
528
  if (!jQuery.isNumeric(response)){
529
  if (jQuery.isArray(response)){
542
  }
543
  });
544
 
545
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "trafficchannels",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
546
  if (!jQuery.isNumeric(response)){
547
  if (jQuery.isArray(response)){
548
  gadash_trafficchannels=response;
619
  }
620
  npcounter = 0;
621
 
622
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "medium",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
623
 
624
  if (!jQuery.isNumeric(response)){
625
  if (jQuery.isArray(response)){
638
  }
639
  });
640
 
641
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "visitorType",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
642
  if (!jQuery.isNumeric(response)){
643
  if (jQuery.isArray(response)){
644
  gadash_traffictype=response;
656
  }
657
  });
658
 
659
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "trafficchannels",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
660
 
661
  if (!jQuery.isNumeric(response)){
662
  if (jQuery.isArray(response)){
675
  }
676
  });
677
 
678
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "socialNetwork",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
679
 
680
  if (!jQuery.isNumeric(response)){
681
  if (jQuery.isArray(response)){
695
  });
696
 
697
 
698
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "source",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
699
 
700
  if (!jQuery.isNumeric(response)){
701
  if (jQuery.isArray(response)){
817
  }
818
  npcounter = 0;
819
 
820
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
821
 
822
  if (!jQuery.isNumeric(response)){
823
  if (jQuery.isArray(response)){
847
  chartArea: {width: '99%',height: '90%'},
848
  colors: ['<?php echo $light_color; ?>', '<?php echo $dark_color; ?>'],
849
  <?php
850
+ $tools = new GADASH_Tools();
851
+ $tools->getcountrycodes();
852
+ if ($GADASH_Config->options['ga_target_geomap'] and isset($tools->country_codes[$GADASH_Config->options['ga_target_geomap']])) {
853
  ?>
854
  region : '<?php echo esc_html($GADASH_Config->options ['ga_target_geomap']); ?>',
855
  displayMode : 'markers',
929
  }
930
  npcounter = 0;
931
 
932
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
933
 
934
  if (!jQuery.isNumeric(response)){
935
  if (jQuery.isArray(response)){
948
  }
949
  });
950
 
951
+ jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "bottomstats",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
952
 
953
  if (!jQuery.isNumeric(response)){
954
  if (jQuery.isArray(response)){
config.php CHANGED
@@ -10,7 +10,6 @@ if (! class_exists('GADASH_Config')) {
10
  final class GADASH_Config
11
  {
12
  public $options;
13
- public $country_codes;
14
  public $plugin_path, $plugin_url;
15
  public $access = array(
16
  '65556128781.apps.googleusercontent.com',
@@ -27,7 +26,34 @@ if (! class_exists('GADASH_Config')) {
27
  $this,
28
  'map'
29
  ), $this->access);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
 
31
  // Validates data before storing
32
  private static function validate_data($options)
33
  {
@@ -113,6 +139,7 @@ if (! class_exists('GADASH_Config')) {
113
  $options['ga_dash_userapi'] = 0;
114
  $network_options['ga_dash_network'] = $this->options['ga_dash_network'];
115
  $network_options['ga_dash_excludesa'] = $this->options['ga_dash_excludesa'];
 
116
  unset($options['ga_dash_network']);
117
  if (isset($this->options['ga_dash_tableid_network'])) {
118
  $network_options['ga_dash_tableid_network'] = $this->options['ga_dash_tableid_network'];
@@ -145,10 +172,6 @@ if (! class_exists('GADASH_Config')) {
145
  * Get plugin options
146
  */
147
  global $blog_id;
148
- /*
149
- * Include Tools
150
- */
151
- include_once ($this->plugin_path . '/tools/tools.php');
152
  $tools = new GADASH_Tools();
153
  if (! get_option('gadash_options')) {
154
  GADASH_Install::install();
@@ -176,9 +199,8 @@ if (! class_exists('GADASH_Config')) {
176
  private function maintain_compatibility()
177
  {
178
  if (GADWP_CURRENT_VERSION != get_option('gadwp_version')) {
179
- include_once ($this->plugin_path . '/tools/tools.php');
180
  $tools = new GADASH_Tools();
181
- $tools->ga_dash_clear_cache();
182
  delete_transient('ga_dash_lasterror');
183
  update_option('gadwp_version', GADWP_CURRENT_VERSION);
184
  if (is_multisite()) { // Cleanup errors on the entire network
@@ -193,67 +215,114 @@ if (! class_exists('GADASH_Config')) {
193
  delete_transient('ga_dash_gapi_errors');
194
  }
195
  }
 
196
  if (! isset($this->options['ga_enhanced_links'])) {
197
  $this->options['ga_enhanced_links'] = 0;
 
198
  }
199
  if (! isset($this->options['ga_enhanced_network'])) {
200
  $this->options['ga_dash_network'] = 0;
 
201
  }
202
  if (! isset($this->options['ga_enhanced_excludesa'])) {
203
  $this->options['ga_dash_excludesa'] = 0;
 
204
  }
205
  if (! isset($this->options['ga_dash_remarketing'])) {
206
  $this->options['ga_dash_remarketing'] = 0;
 
207
  }
208
  if (! isset($this->options['ga_dash_adsense'])) {
209
  $this->options['ga_dash_adsense'] = 0;
 
210
  }
211
  if (! isset($this->options['ga_speed_samplerate'])) {
212
  $this->options['ga_speed_samplerate'] = 1;
 
 
 
 
 
213
  }
214
  if (! isset($this->options['ga_event_bouncerate'])) {
215
  $this->options['ga_event_bouncerate'] = 0;
 
216
  }
217
  if (! is_array($this->options['ga_dash_access_front']) or empty($this->options['ga_dash_access_front'])) {
218
  $this->options['ga_dash_access_front'] = array();
219
  $this->options['ga_dash_access_front'][] = 'administrator';
 
220
  }
221
  if (! is_array($this->options['ga_dash_access_back']) or empty($this->options['ga_dash_access_back'])) {
222
  $this->options['ga_dash_access_back'] = array();
223
  $this->options['ga_dash_access_back'][] = 'administrator';
 
224
  }
225
  if (! is_array($this->options['ga_track_exclude'])) {
226
  $this->options['ga_track_exclude'] = array();
 
227
  }
228
  if (! isset($this->options['ga_crossdomain_tracking'])) {
229
  $this->options['ga_crossdomain_tracking'] = 0;
 
230
  }
231
  if (! isset($this->options['ga_crossdomain_list'])) {
232
  $this->options['ga_crossdomain_list'] = '';
 
233
  }
234
  if (! isset($this->options['ga_author_dimindex'])) {
235
  $this->options['ga_author_dimindex'] = 0;
 
236
  }
237
  if (! isset($this->options['ga_category_dimindex'])) {
238
  $this->options['ga_category_dimindex'] = 0;
 
239
  }
240
  if (! isset($this->options['ga_user_dimindex'])) {
241
  $this->options['ga_user_dimindex'] = 0;
 
242
  }
243
  if (! isset($this->options['ga_pubyear_dimindex'])) {
244
  $this->options['ga_pubyear_dimindex'] = 0;
 
245
  }
246
  if (! isset($this->options['ga_event_affiliates'])) {
247
  $this->options['ga_event_affiliates'] = '/out/';
 
248
  }
249
  if (! isset($this->options['ga_aff_tracking'])) {
250
  $this->options['ga_aff_tracking'] = 0;
 
251
  }
252
  if (! isset($this->options['ga_hash_tracking'])) {
253
  $this->options['ga_hash_tracking'] = 0;
 
 
 
 
 
 
 
 
 
254
  }
255
  if (isset($this->options['ga_tracking_code'])) {
256
  unset($this->options['ga_tracking_code']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
257
  }
258
  }
259
  }
10
  final class GADASH_Config
11
  {
12
  public $options;
 
13
  public $plugin_path, $plugin_url;
14
  public $access = array(
15
  '65556128781.apps.googleusercontent.com',
26
  $this,
27
  'map'
28
  ), $this->access);
29
+ add_filter('auto_update_plugin', array(
30
+ $this,
31
+ 'automatic_update'
32
+ ), 10, 2);
33
+ }
34
+
35
+ function get_major_version($version)
36
+ {
37
+ $exploded_version = explode('.', $version);
38
+ return $exploded_version[0] . '.' . $exploded_version[1];
39
+ }
40
+
41
+ function automatic_update($update, $item)
42
+ {
43
+ $item = (array) $item;
44
+ if (is_multisite() && ! is_main_site()) {
45
+ return;
46
+ }
47
+ if (! isset($item['new_version']) || ! isset($item['plugin']) || ! $this->options['automatic_updates_minorversion']) {
48
+ return $update;
49
+ }
50
+ if (isset($item['slug']) and $item['slug'] == 'google-analytics-dashboard-for-wp') {
51
+ // Only when a minor update is available
52
+ return ($this->get_major_version(GADWP_CURRENT_VERSION) == $this->get_major_version($item['new_version']));
53
+ }
54
+ return $update;
55
  }
56
+
57
  // Validates data before storing
58
  private static function validate_data($options)
59
  {
139
  $options['ga_dash_userapi'] = 0;
140
  $network_options['ga_dash_network'] = $this->options['ga_dash_network'];
141
  $network_options['ga_dash_excludesa'] = $this->options['ga_dash_excludesa'];
142
+ $network_options['automatic_updates_minorversion'] = $this->options['automatic_updates_minorversion'];
143
  unset($options['ga_dash_network']);
144
  if (isset($this->options['ga_dash_tableid_network'])) {
145
  $network_options['ga_dash_tableid_network'] = $this->options['ga_dash_tableid_network'];
172
  * Get plugin options
173
  */
174
  global $blog_id;
 
 
 
 
175
  $tools = new GADASH_Tools();
176
  if (! get_option('gadash_options')) {
177
  GADASH_Install::install();
199
  private function maintain_compatibility()
200
  {
201
  if (GADWP_CURRENT_VERSION != get_option('gadwp_version')) {
 
202
  $tools = new GADASH_Tools();
203
+ $tools->clear_cache();
204
  delete_transient('ga_dash_lasterror');
205
  update_option('gadwp_version', GADWP_CURRENT_VERSION);
206
  if (is_multisite()) { // Cleanup errors on the entire network
215
  delete_transient('ga_dash_gapi_errors');
216
  }
217
  }
218
+ $flag = false;
219
  if (! isset($this->options['ga_enhanced_links'])) {
220
  $this->options['ga_enhanced_links'] = 0;
221
+ $flag = true;
222
  }
223
  if (! isset($this->options['ga_enhanced_network'])) {
224
  $this->options['ga_dash_network'] = 0;
225
+ $flag = true;
226
  }
227
  if (! isset($this->options['ga_enhanced_excludesa'])) {
228
  $this->options['ga_dash_excludesa'] = 0;
229
+ $flag = true;
230
  }
231
  if (! isset($this->options['ga_dash_remarketing'])) {
232
  $this->options['ga_dash_remarketing'] = 0;
233
+ $flag = true;
234
  }
235
  if (! isset($this->options['ga_dash_adsense'])) {
236
  $this->options['ga_dash_adsense'] = 0;
237
+ $flag = true;
238
  }
239
  if (! isset($this->options['ga_speed_samplerate'])) {
240
  $this->options['ga_speed_samplerate'] = 1;
241
+ $flag = true;
242
+ }
243
+ if (! isset($this->options['automatic_updates_minorversion'])) {
244
+ $this->options['automatic_updates_minorversion'] = 1;
245
+ $flag = true;
246
  }
247
  if (! isset($this->options['ga_event_bouncerate'])) {
248
  $this->options['ga_event_bouncerate'] = 0;
249
+ $flag = true;
250
  }
251
  if (! is_array($this->options['ga_dash_access_front']) or empty($this->options['ga_dash_access_front'])) {
252
  $this->options['ga_dash_access_front'] = array();
253
  $this->options['ga_dash_access_front'][] = 'administrator';
254
+ $flag = true;
255
  }
256
  if (! is_array($this->options['ga_dash_access_back']) or empty($this->options['ga_dash_access_back'])) {
257
  $this->options['ga_dash_access_back'] = array();
258
  $this->options['ga_dash_access_back'][] = 'administrator';
259
+ $flag = true;
260
  }
261
  if (! is_array($this->options['ga_track_exclude'])) {
262
  $this->options['ga_track_exclude'] = array();
263
+ $flag = true;
264
  }
265
  if (! isset($this->options['ga_crossdomain_tracking'])) {
266
  $this->options['ga_crossdomain_tracking'] = 0;
267
+ $flag = true;
268
  }
269
  if (! isset($this->options['ga_crossdomain_list'])) {
270
  $this->options['ga_crossdomain_list'] = '';
271
+ $flag = true;
272
  }
273
  if (! isset($this->options['ga_author_dimindex'])) {
274
  $this->options['ga_author_dimindex'] = 0;
275
+ $flag = true;
276
  }
277
  if (! isset($this->options['ga_category_dimindex'])) {
278
  $this->options['ga_category_dimindex'] = 0;
279
+ $flag = true;
280
  }
281
  if (! isset($this->options['ga_user_dimindex'])) {
282
  $this->options['ga_user_dimindex'] = 0;
283
+ $flag = true;
284
  }
285
  if (! isset($this->options['ga_pubyear_dimindex'])) {
286
  $this->options['ga_pubyear_dimindex'] = 0;
287
+ $flag = true;
288
  }
289
  if (! isset($this->options['ga_event_affiliates'])) {
290
  $this->options['ga_event_affiliates'] = '/out/';
291
+ $flag = true;
292
  }
293
  if (! isset($this->options['ga_aff_tracking'])) {
294
  $this->options['ga_aff_tracking'] = 0;
295
+ $flag = true;
296
  }
297
  if (! isset($this->options['ga_hash_tracking'])) {
298
  $this->options['ga_hash_tracking'] = 0;
299
+ $flag = true;
300
+ }
301
+ if (! isset($this->options['item_reports'])) {
302
+ $this->options['item_reports'] = 1;
303
+ $flag = true;
304
+ }
305
+ if (! isset($this->options['dashboard_widget'])) {
306
+ $this->options['dashboard_widget'] = 1;
307
+ $flag = true;
308
  }
309
  if (isset($this->options['ga_tracking_code'])) {
310
  unset($this->options['ga_tracking_code']);
311
+ $flag = true;
312
+ }
313
+ if (isset($this->options['ga_dash_jailadmins'])) {
314
+ if (isset($this->options['ga_dash_jailadmins'])) { // invert disable with enable and change option name
315
+ $this->options['switch_profile'] = 0;
316
+ unset($this->options['ga_dash_jailadmins']);
317
+ $flag = true;
318
+ } else {
319
+ $this->options['switch_profile'] = 1;
320
+ unset($this->options['ga_dash_jailadmins']);
321
+ $flag = true;
322
+ }
323
+ }
324
+ if ($flag) {
325
+ $this->set_plugin_options(false);
326
  }
327
  }
328
  }
front/ajax-actions.php CHANGED
@@ -28,16 +28,6 @@ if (! class_exists('GADASH_Frontend_Ajax')) {
28
  ));
29
  }
30
 
31
- function send_json($response)
32
- {
33
- @header('Content-Type: application/json; charset=' . get_option('blog_charset'));
34
- echo json_encode($response);
35
- if (defined('DOING_AJAX') && DOING_AJAX)
36
- wp_die();
37
- else
38
- die();
39
- }
40
-
41
  /**
42
  * Ajax handler for getting analytics data for frontend Views vs UniqueViews
43
  *
@@ -55,10 +45,6 @@ if (! class_exists('GADASH_Frontend_Ajax')) {
55
  if (ob_get_length()) {
56
  ob_clean();
57
  }
58
- /*
59
- * Include Tools
60
- */
61
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
62
  $tools = new GADASH_Tools();
63
  if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_front']) or ! ($GADASH_Config->options['ga_dash_frontend_stats'] or $GADASH_Config->options['ga_dash_frontend_keywords'])) {
64
  wp_die(- 31);
@@ -69,7 +55,11 @@ if (! class_exists('GADASH_Frontend_Ajax')) {
69
  } else {
70
  wp_die(- 24);
71
  }
72
- $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
 
 
 
 
73
  $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
74
  if (isset($profile_info[4])) {
75
  $GADASH_GAPI->timeshift = $profile_info[4];
@@ -78,10 +68,10 @@ if (! class_exists('GADASH_Frontend_Ajax')) {
78
  }
79
  switch ($query) {
80
  case 'pageviews':
81
- $this->send_json($GADASH_GAPI->frontend_afterpost_pageviews($projectId, $page_url, $post_id));
82
  break;
83
  default:
84
- $this->send_json($GADASH_GAPI->frontend_afterpost_searches($projectId, $page_url, $post_id));
85
  break;
86
  }
87
  }
@@ -122,7 +112,7 @@ if (! class_exists('GADASH_Frontend_Ajax')) {
122
  if ($GADASH_Config->options['ga_dash_token'] and $GADASH_Config->options['ga_dash_tableid_jail']) {
123
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
124
  global $GADASH_GAPI;
125
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
126
  $tools = new GADASH_Tools();
127
  } else {
128
  wp_die(- 24);
@@ -134,7 +124,7 @@ if (! class_exists('GADASH_Frontend_Ajax')) {
134
  } else {
135
  $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
136
  }
137
- $this->send_json($GADASH_GAPI->frontend_widget_stats($projectId, $period, (int) $instance['anonim']));
138
  }
139
  }
140
  }
28
  ));
29
  }
30
 
 
 
 
 
 
 
 
 
 
 
31
  /**
32
  * Ajax handler for getting analytics data for frontend Views vs UniqueViews
33
  *
45
  if (ob_get_length()) {
46
  ob_clean();
47
  }
 
 
 
 
48
  $tools = new GADASH_Tools();
49
  if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_front']) or ! ($GADASH_Config->options['ga_dash_frontend_stats'] or $GADASH_Config->options['ga_dash_frontend_keywords'])) {
50
  wp_die(- 31);
55
  } else {
56
  wp_die(- 24);
57
  }
58
+ if ($GADASH_Config->options['ga_dash_tableid_jail']) {
59
+ $projectId = $GADASH_Config->options['ga_dash_tableid_jail'];
60
+ } else {
61
+ wp_die(- 25);
62
+ }
63
  $profile_info = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $projectId);
64
  if (isset($profile_info[4])) {
65
  $GADASH_GAPI->timeshift = $profile_info[4];
68
  }
69
  switch ($query) {
70
  case 'pageviews':
71
+ wp_send_json($GADASH_GAPI->frontend_afterpost_pageviews($projectId, $page_url, $post_id));
72
  break;
73
  default:
74
+ wp_send_json($GADASH_GAPI->frontend_afterpost_searches($projectId, $page_url, $post_id));
75
  break;
76
  }
77
  }
112
  if ($GADASH_Config->options['ga_dash_token'] and $GADASH_Config->options['ga_dash_tableid_jail']) {
113
  include_once ($GADASH_Config->plugin_path . '/tools/gapi.php');
114
  global $GADASH_GAPI;
115
+
116
  $tools = new GADASH_Tools();
117
  } else {
118
  wp_die(- 24);
124
  } else {
125
  $GADASH_GAPI->timeshift = (int) current_time('timestamp') - time();
126
  }
127
+ wp_send_json($GADASH_GAPI->frontend_widget_stats($projectId, $period, (int) $instance['anonim']));
128
  }
129
  }
130
  }
front/css/{content_stats.css → item-reports.css} RENAMED
File without changes
front/{frontend.php → item-reports.php} RENAMED
@@ -5,9 +5,9 @@
5
  * License: GPLv2 or later
6
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  */
8
- if (! class_exists('GADASH_Frontend')) {
9
 
10
- final class GADASH_Frontend
11
  {
12
 
13
  function __construct()
@@ -29,9 +29,9 @@ if (! class_exists('GADASH_Frontend')) {
29
  if ((! is_page() and ! is_single()) or is_preview() or ! is_user_logged_in()) {
30
  return;
31
  }
32
- wp_enqueue_style('ga_dash-front', $GADASH_Config->plugin_url . '/front/css/content_stats.css', NULL, GADWP_CURRENT_VERSION);
33
  wp_enqueue_style('ga_dash-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.css', NULL, GADWP_CURRENT_VERSION);
34
- wp_enqueue_script('ga_dash-front', $GADASH_Config->plugin_url . '/front/js/content_stats.js', array(
35
  'jquery'
36
  ), GADWP_CURRENT_VERSION);
37
  wp_enqueue_script('ga_dash-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.js', array(
@@ -44,10 +44,6 @@ if (! class_exists('GADASH_Frontend')) {
44
  {
45
  global $post;
46
  global $GADASH_Config;
47
- /*
48
- * Include Tools
49
- */
50
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
51
  $tools = new GADASH_Tools();
52
  if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_front']) or ! ($GADASH_Config->options['ga_dash_frontend_stats'] or $GADASH_Config->options['ga_dash_frontend_keywords'])) {
53
  return $content;
@@ -195,5 +191,5 @@ if (! class_exists('GADASH_Frontend')) {
195
  }
196
  }
197
  if (! is_admin()) {
198
- $GADASH_Frontend = new GADASH_Frontend();
199
  }
5
  * License: GPLv2 or later
6
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  */
8
+ if (! class_exists('GADASH_Front_Stats')) {
9
 
10
+ final class GADASH_Front_Stats
11
  {
12
 
13
  function __construct()
29
  if ((! is_page() and ! is_single()) or is_preview() or ! is_user_logged_in()) {
30
  return;
31
  }
32
+ wp_enqueue_style('ga_dash-front', $GADASH_Config->plugin_url . '/front/css/item-reports.css', NULL, GADWP_CURRENT_VERSION);
33
  wp_enqueue_style('ga_dash-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.css', NULL, GADWP_CURRENT_VERSION);
34
+ wp_enqueue_script('ga_dash-front', $GADASH_Config->plugin_url . '/front/js/item-reports.js', array(
35
  'jquery'
36
  ), GADWP_CURRENT_VERSION);
37
  wp_enqueue_script('ga_dash-nprogress', $GADASH_Config->plugin_url . '/tools/nprogress/nprogress.js', array(
44
  {
45
  global $post;
46
  global $GADASH_Config;
 
 
 
 
47
  $tools = new GADASH_Tools();
48
  if (! $tools->check_roles($GADASH_Config->options['ga_dash_access_front']) or ! ($GADASH_Config->options['ga_dash_frontend_stats'] or $GADASH_Config->options['ga_dash_frontend_keywords'])) {
49
  return $content;
191
  }
192
  }
193
  if (! is_admin()) {
194
+ $GADASH_Front_Stats = new GADASH_Front_Stats();
195
  }
front/js/{content_stats.js → item-reports.js} RENAMED
File without changes
front/tracking.php CHANGED
@@ -33,10 +33,6 @@ if (! class_exists('GADASH_Tracking')) {
33
  function ga_dash_tracking()
34
  {
35
  global $GADASH_Config;
36
- /*
37
- * Include Tools
38
- */
39
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
40
  $tools = new GADASH_Tools();
41
  if ($tools->check_roles($GADASH_Config->options['ga_track_exclude'], true) or ($GADASH_Config->options['ga_dash_excludesa'] and current_user_can('manage_network'))) {
42
  return;
33
  function ga_dash_tracking()
34
  {
35
  global $GADASH_Config;
 
 
 
 
36
  $tools = new GADASH_Tools();
37
  if ($tools->check_roles($GADASH_Config->options['ga_track_exclude'], true) or ($GADASH_Config->options['ga_dash_excludesa'] and current_user_can('manage_network'))) {
38
  return;
front/tracking/code-universal.php CHANGED
@@ -6,7 +6,6 @@
6
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  */
8
  $profile = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $GADASH_Config->options['ga_dash_tableid_jail']);
9
- $rootdomain = $tools->get_root_domain($profile[3]);
10
  ?>
11
  <script>
12
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
6
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  */
8
  $profile = $tools->get_selected_profile($GADASH_Config->options['ga_dash_profile_list'], $GADASH_Config->options['ga_dash_tableid_jail']);
 
9
  ?>
10
  <script>
11
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
front/widgets.php CHANGED
@@ -26,8 +26,8 @@ class GADSH_Frontend_Widget extends WP_Widget
26
  function ga_dash_front_enqueue_styles()
27
  {
28
  global $GADASH_Config;
29
- wp_enqueue_style('ga_dash-front', $GADASH_Config->plugin_url . '/front/css/content_stats.css', NULL, GADWP_CURRENT_VERSION);
30
- wp_enqueue_script('ga_dash-front', $GADASH_Config->plugin_url . '/front/js/content_stats.js', array(
31
  'jquery'
32
  ), GADWP_CURRENT_VERSION);
33
  wp_enqueue_script('googlejsapi', 'https://www.google.com/jsapi');
@@ -43,10 +43,6 @@ class GADSH_Frontend_Widget extends WP_Widget
43
  if (! empty($widget_title)) {
44
  echo $args['before_title'] . $widget_title . $args['after_title'];
45
  }
46
- /*
47
- * Include Tools
48
- */
49
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
50
  $tools = new GADASH_Tools();
51
  if (isset($GADASH_Config->options['ga_dash_style'])) {
52
  $css = "colors:['" . $GADASH_Config->options['ga_dash_style'] . "','" . $tools->colourVariator($GADASH_Config->options['ga_dash_style'], - 20) . "'],";
@@ -132,7 +128,7 @@ class GADSH_Frontend_Widget extends WP_Widget
132
  }';
133
  echo '</script>';
134
  if ($instance['give_credits'] == 1)
135
- echo '<div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;">' . __('generated by', 'ga-dash') . ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/" rel="nofollow" style="text-decoration:none;font-size:1em;">GADWP</a>&nbsp;</div>';
136
  $widget_content = ob_get_contents();
137
  ob_end_clean();
138
  echo apply_filters('widget_html_content', $widget_content);
26
  function ga_dash_front_enqueue_styles()
27
  {
28
  global $GADASH_Config;
29
+ wp_enqueue_style('ga_dash-front', $GADASH_Config->plugin_url . '/front/css/item-reports.css', NULL, GADWP_CURRENT_VERSION);
30
+ wp_enqueue_script('ga_dash-front', $GADASH_Config->plugin_url . '/front/js/item-reports.js', array(
31
  'jquery'
32
  ), GADWP_CURRENT_VERSION);
33
  wp_enqueue_script('googlejsapi', 'https://www.google.com/jsapi');
43
  if (! empty($widget_title)) {
44
  echo $args['before_title'] . $widget_title . $args['after_title'];
45
  }
 
 
 
 
46
  $tools = new GADASH_Tools();
47
  if (isset($GADASH_Config->options['ga_dash_style'])) {
48
  $css = "colors:['" . $GADASH_Config->options['ga_dash_style'] . "','" . $tools->colourVariator($GADASH_Config->options['ga_dash_style'], - 20) . "'],";
128
  }';
129
  echo '</script>';
130
  if ($instance['give_credits'] == 1)
131
+ echo '<div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;">' . __('generated by', 'ga-dash') . ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_report&utm_medium=link&utm_content=front_report&utm_campaign=gadwp" rel="nofollow" style="text-decoration:none;font-size:1em;">GADWP</a>&nbsp;</div>';
132
  $widget_content = ob_get_contents();
133
  ob_end_clean();
134
  echo apply_filters('widget_html_content', $widget_content);
gadwp.php CHANGED
@@ -4,10 +4,10 @@
4
  * Plugin URI: https://deconf.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: Alin Marcu
7
- * Version: 4.4.7
8
  * Author URI: https://deconf.com
9
  */
10
- define('GADWP_CURRENT_VERSION', '4.4.7');
11
  /*
12
  * Include Install
13
  */
@@ -16,6 +16,7 @@ register_activation_hook(__FILE__, array(
16
  'GADASH_Install',
17
  'install'
18
  ));
 
19
  /*
20
  * Include Uninstall
21
  */
@@ -24,37 +25,48 @@ register_uninstall_hook(__FILE__, array(
24
  'GADASH_Uninstall',
25
  'uninstall'
26
  ));
 
 
 
 
 
 
 
 
 
27
  include_once (dirname(__FILE__) . '/config.php');
28
- // Plugin i18n
 
 
 
29
  add_action('plugins_loaded', 'ga_dash_load_i18n');
30
 
31
  function ga_dash_load_i18n()
32
  {
33
  load_plugin_textdomain('ga-dash', false, basename(dirname(__FILE__)) . '/languages');
34
  }
 
35
  add_action('plugins_loaded', 'gadash_init');
36
 
37
  function gadash_init()
38
  {
39
  global $GADASH_Config;
40
- /*
41
- * Include Tools
42
- */
43
- include_once ($GADASH_Config->plugin_path . '/tools/tools.php');
44
  $tools = new GADASH_Tools();
45
  if (is_admin()) {
46
  /*
47
- * Include backend widgets
48
  */
49
  if ($tools->check_roles($GADASH_Config->options['ga_dash_access_back'])) {
50
- include_once (dirname(__FILE__) . '/admin/dashboard_widgets.php');
 
 
51
  }
52
  } else {
53
  /*
54
- * Include frontend stats
55
  */
56
  if ($tools->check_roles($GADASH_Config->options['ga_dash_access_front']) and ($GADASH_Config->options['ga_dash_frontend_stats'] or $GADASH_Config->options['ga_dash_frontend_keywords'])) {
57
- include_once (dirname(__FILE__) . '/front/frontend.php');
58
  }
59
  /*
60
  * Include tracking
@@ -64,7 +76,7 @@ function gadash_init()
64
  }
65
  }
66
  /*
67
- * Include frontend widgets
68
  */
69
  include_once (dirname(__FILE__) . '/front/widgets.php');
70
  /*
4
  * Plugin URI: https://deconf.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: Alin Marcu
7
+ * Version: 4.5
8
  * Author URI: https://deconf.com
9
  */
10
+ define('GADWP_CURRENT_VERSION', '4.5');
11
  /*
12
  * Include Install
13
  */
16
  'GADASH_Install',
17
  'install'
18
  ));
19
+
20
  /*
21
  * Include Uninstall
22
  */
25
  'GADASH_Uninstall',
26
  'uninstall'
27
  ));
28
+
29
+ /*
30
+ * Include Tools
31
+ */
32
+ include_once (dirname(__FILE__) . '/tools/tools.php');
33
+
34
+ /*
35
+ * Include Config
36
+ */
37
  include_once (dirname(__FILE__) . '/config.php');
38
+
39
+ /*
40
+ * Add i18n support
41
+ */
42
  add_action('plugins_loaded', 'ga_dash_load_i18n');
43
 
44
  function ga_dash_load_i18n()
45
  {
46
  load_plugin_textdomain('ga-dash', false, basename(dirname(__FILE__)) . '/languages');
47
  }
48
+
49
  add_action('plugins_loaded', 'gadash_init');
50
 
51
  function gadash_init()
52
  {
53
  global $GADASH_Config;
 
 
 
 
54
  $tools = new GADASH_Tools();
55
  if (is_admin()) {
56
  /*
57
+ * Include backend resources
58
  */
59
  if ($tools->check_roles($GADASH_Config->options['ga_dash_access_back'])) {
60
+ include_once (dirname(__FILE__) . '/admin/setup.php');
61
+ include_once (dirname(__FILE__) . '/admin/widgets.php');
62
+ include_once (dirname(__FILE__) . '/admin/item-reports.php');
63
  }
64
  } else {
65
  /*
66
+ * Include frontend resources
67
  */
68
  if ($tools->check_roles($GADASH_Config->options['ga_dash_access_front']) and ($GADASH_Config->options['ga_dash_frontend_stats'] or $GADASH_Config->options['ga_dash_frontend_keywords'])) {
69
+ include_once (dirname(__FILE__) . '/front/item-reports.php');
70
  }
71
  /*
72
  * Include tracking
76
  }
77
  }
78
  /*
79
+ * Include frontend widget
80
  */
81
  include_once (dirname(__FILE__) . '/front/widgets.php');
82
  /*
install/install.php CHANGED
@@ -20,7 +20,7 @@ class GADASH_Install
20
  $options['ga_dash_access_back'][] = 'administrator';
21
  $options['ga_dash_tableid_jail'] = '';
22
  $options['ga_dash_style'] = '#1e73be';
23
- $options['ga_dash_jailadmins'] = 1;
24
  $options['ga_dash_cachetime'] = 3600;
25
  $options['ga_dash_tracking'] = 1;
26
  $options['ga_dash_tracking_type'] = 'universal';
@@ -55,6 +55,9 @@ class GADASH_Install
55
  $options['ga_pubyear_dimindex'] = 0;
56
  $options['ga_aff_tracking'] = 0;
57
  $options['ga_event_affiliates'] = '/out/';
 
 
 
58
  } else {
59
  $options = array();
60
  $options['ga_dash_apikey'] = get_option('ga_dash_apikey');
@@ -66,7 +69,7 @@ class GADASH_Install
66
  $options['ga_dash_tableid_jail'] = get_option('ga_dash_tableid_jail');
67
  $options['ga_dash_frontend_stats'] = get_option('ga_dash_frontend');
68
  $options['ga_dash_style'] = '#1e73be';
69
- $options['ga_dash_jailadmins'] = get_option('ga_dash_jailadmins');
70
  $options['ga_dash_cachetime'] = get_option('ga_dash_cachetime');
71
  if (get_option('ga_dash_tracking') == 4) {
72
  $options['ga_dash_tracking'] = 0;
@@ -101,6 +104,10 @@ class GADASH_Install
101
  $options['ga_pubyear_dimindex'] = 0;
102
  $options['ga_event_affiliates'] = '/out/';
103
  $options['ga_aff_tracking'] = 0;
 
 
 
 
104
  delete_option('ga_dash_apikey');
105
  delete_option('ga_dash_clientid');
106
  delete_option('ga_dash_clientsecret');
20
  $options['ga_dash_access_back'][] = 'administrator';
21
  $options['ga_dash_tableid_jail'] = '';
22
  $options['ga_dash_style'] = '#1e73be';
23
+ $options['switch_profile'] = 0;
24
  $options['ga_dash_cachetime'] = 3600;
25
  $options['ga_dash_tracking'] = 1;
26
  $options['ga_dash_tracking_type'] = 'universal';
55
  $options['ga_pubyear_dimindex'] = 0;
56
  $options['ga_aff_tracking'] = 0;
57
  $options['ga_event_affiliates'] = '/out/';
58
+ $options['automatic_updates_minorversion'] = 1;
59
+ $options['item_reports'] = 1;
60
+ $options['dashboard_widget'] = 1;
61
  } else {
62
  $options = array();
63
  $options['ga_dash_apikey'] = get_option('ga_dash_apikey');
69
  $options['ga_dash_tableid_jail'] = get_option('ga_dash_tableid_jail');
70
  $options['ga_dash_frontend_stats'] = get_option('ga_dash_frontend');
71
  $options['ga_dash_style'] = '#1e73be';
72
+ $options['switch_profile'] = get_option('ga_dash_jailadmins');
73
  $options['ga_dash_cachetime'] = get_option('ga_dash_cachetime');
74
  if (get_option('ga_dash_tracking') == 4) {
75
  $options['ga_dash_tracking'] = 0;
104
  $options['ga_pubyear_dimindex'] = 0;
105
  $options['ga_event_affiliates'] = '/out/';
106
  $options['ga_aff_tracking'] = 0;
107
+ $options['automatic_updates_minorversion'] = 1;
108
+ $options['item_reports'] = 1;
109
+ $options['dashboard_widget'] = 1;
110
+
111
  delete_option('ga_dash_apikey');
112
  delete_option('ga_dash_clientid');
113
  delete_option('ga_dash_clientsecret');
languages/ar.mo DELETED
Binary file
languages/ga-dash-ar.mo ADDED
Binary file
languages/{ar.po → ga-dash-ar.po} RENAMED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:40+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:40+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
8
  "Language: ar\n"
@@ -17,745 +17,781 @@ msgstr ""
17
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
18
  "X-Poedit-SearchPath-0: ../.\n"
19
 
20
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
21
- msgid "Google Analytics"
22
- msgstr "أحصائيات كوكل"
23
-
24
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
25
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
26
- #: .././admin/ga_dash_settings.php:964
27
- msgid "General Settings"
28
- msgstr "الأعدادات العامة"
29
-
30
- #: .././admin/dashboard_widgets.php:75
31
- msgid "Backend Settings"
32
- msgstr "أعدادات العمل"
33
-
34
- #: .././admin/dashboard_widgets.php:79
35
- msgid "Frontend Settings"
36
- msgstr "اعدادات الظهور"
37
-
38
- #: .././admin/dashboard_widgets.php:83
39
- msgid "Tracking Code"
40
- msgstr "كود التعقب"
41
-
42
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
43
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
44
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
45
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
46
- msgid "Errors & Debug"
47
- msgstr ""
48
-
49
- #: .././admin/dashboard_widgets.php:152
50
- msgid "Settings"
51
- msgstr "الاعدادات"
52
-
53
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
54
- msgid "Google Analytics Dashboard"
55
- msgstr "لوحة أحصائيات كوكل"
56
-
57
- #: .././admin/dashboard_widgets.php:183
58
- msgid "This plugin needs an authorization:"
59
- msgstr "هذه الاضافة تحتاج الى تصريح:"
60
-
61
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
62
- #: .././admin/ga_dash_settings.php:1360
63
- msgid "Authorize Plugin"
64
- msgstr "صرح الأضافة "
65
-
66
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
67
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
68
- #: .././admin/ga_dash_settings.php:1315
69
- msgid "View Name:"
70
- msgstr "شاهد الاسم:"
71
-
72
- #: .././admin/dashboard_widgets.php:221
73
- msgid "Something went wrong while retrieving profiles list."
74
- msgstr "حدث خطأ ما اثناء استرجاع قائمة البروفايلات."
75
-
76
- #: .././admin/dashboard_widgets.php:221
77
- msgid "More details"
78
- msgstr "المزيد من التفاصيل"
79
-
80
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
81
- msgid "An admin should asign a default Google Analytics Profile."
82
- msgstr "المدير يجب ان يحصل على حساب احصائيات كوكل رئيسي."
83
-
84
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
85
- msgid "Select Domain"
86
- msgstr "حدد النطاق"
87
-
88
- #: .././admin/dashboard_widgets.php:250
89
- msgid ""
90
- "Something went wrong while retrieving property data. You need to create and "
91
- "properly configure a Google Analytics account:"
92
- msgstr ""
93
- "حدث خطأ ما اثناء استرجاع بيانات الملكية. تحتاج الى انشاء واعداد حساب كوكل "
94
- "للأحصائيات بصورة صحيحة:"
95
-
96
- #: .././admin/dashboard_widgets.php:250
97
- msgid "Find out more!"
98
- msgstr "اعرف أكثر!"
99
-
100
- #: .././admin/dashboard_widgets.php:278
101
- msgid "Real-Time"
102
- msgstr "الوقت الحقيقي"
103
-
104
- #: .././admin/dashboard_widgets.php:279
105
- msgid "Today"
106
- msgstr "اليوم"
107
-
108
- #: .././admin/dashboard_widgets.php:281
109
- msgid "Yesterday"
110
- msgstr "البارحة"
111
-
112
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
113
- #: .././front/widgets.php:182
114
- msgid "Last 7 Days"
115
- msgstr "اخر ٧ ايام"
116
-
117
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
118
- #: .././front/widgets.php:183
119
- msgid "Last 14 Days"
120
- msgstr "أخر ١٤ يوم"
121
-
122
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
123
- #: .././front/widgets.php:184
124
- msgid "Last 30 Days"
125
- msgstr "اخر ٣٠ يوم"
126
-
127
- #: .././admin/dashboard_widgets.php:289
128
- msgid "Last 90 Days"
129
- msgstr "أخر ٩٠ يوم"
130
-
131
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
132
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
133
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
134
- #: .././tools/gapi.php:825
135
- msgid "Sessions"
136
- msgstr ""
137
-
138
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
139
- #: .././tools/gapi.php:364
140
- msgid "Users"
141
- msgstr ""
142
-
143
- #: .././admin/dashboard_widgets.php:298
144
- msgid "Organic"
145
- msgstr "عضوي"
146
-
147
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
148
- #: .././tools/gapi.php:367
149
- msgid "Page Views"
150
- msgstr "مشاهدات الصفحة"
151
-
152
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
153
- #: .././tools/gapi.php:370
154
- msgid "Bounce Rate"
155
- msgstr "نسبة القفز"
156
-
157
- #: .././admin/dashboard_widgets.php:304
158
- msgid "Location"
159
- msgstr ""
160
-
161
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
162
- msgid "Pages"
163
- msgstr ""
164
-
165
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
166
- msgid "Referrers"
167
- msgstr ""
168
-
169
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
170
- #: .././tools/gapi.php:825
171
- msgid "Searches"
172
- msgstr ""
173
-
174
- #: .././admin/dashboard_widgets.php:312
175
- msgid "Traffic Details"
176
- msgstr ""
177
-
178
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
179
- msgid "REFERRAL"
180
- msgstr "المصدر"
181
-
182
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
183
- msgid "ORGANIC"
184
- msgstr "عضوي"
185
-
186
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
187
- #: .././admin/dashboard_widgets.php:647
188
- msgid "SOCIAL"
189
- msgstr "اجتماعي"
190
-
191
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
192
- #: .././admin/dashboard_widgets.php:648
193
- msgid "CAMPAIGN"
194
- msgstr ""
195
-
196
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
197
- #: .././admin/dashboard_widgets.php:651
198
- msgid "DIRECT"
199
- msgstr "مباشر"
200
-
201
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
202
- msgid "NEW"
203
- msgstr "جديد"
204
-
205
- #: .././admin/dashboard_widgets.php:526
206
- msgid "REFERRALS"
207
- msgstr "المصادر"
208
-
209
- #: .././admin/dashboard_widgets.php:529
210
- msgid "KEYWORDS"
211
- msgstr "الكلمات المفتاحية"
212
-
213
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
214
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
215
- #: .././front/frontend.php:88
216
- msgid "A JavaScript Error is blocking plugin resources!"
217
- msgstr ""
218
-
219
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
220
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
221
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
222
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
223
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
224
- #: .././front/frontend.php:119
225
- msgid "Invalid response, more details in JavaScript Console (F12)."
226
- msgstr ""
227
-
228
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
229
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
230
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
231
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
232
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
233
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
234
- #: .././front/frontend.php:124 .././front/widgets.php:110
235
- msgid "This report is unavailable"
236
- msgstr ""
237
-
238
- #: .././admin/dashboard_widgets.php:880
239
- msgid "Traffic Mediums"
240
- msgstr ""
241
-
242
- #: .././admin/dashboard_widgets.php:896
243
- msgid "Visitor Type"
244
  msgstr ""
245
 
246
- #: .././admin/dashboard_widgets.php:912
247
- msgid "Social Networks"
248
- msgstr ""
249
-
250
- #: .././admin/dashboard_widgets.php:928
251
- msgid "Search Engines"
252
- msgstr ""
253
-
254
- #: .././admin/dashboard_widgets.php:1053
255
- msgid "Organic Search"
256
- msgstr ""
257
-
258
- #: .././admin/dashboard_widgets.php:1057
259
- msgid "Pages/Session"
260
- msgstr ""
261
-
262
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
263
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
264
- #: .././admin/ga_dash_settings.php:1157
265
  msgid "Settings saved."
266
  msgstr ""
267
 
268
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
269
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
270
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
271
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
272
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
273
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
274
  msgid "Cheating Huh?"
275
  msgstr "تغش ها؟"
276
 
277
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
278
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
279
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
280
  msgid "Something went wrong, check"
281
  msgstr ""
282
 
283
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
284
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
285
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
 
 
 
 
 
 
 
286
  msgid "or"
287
  msgstr ""
288
 
289
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
290
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
291
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
292
- msgid "auhorize the plugin"
293
  msgstr "صرح بالدخول للأضافة"
294
 
295
- #: .././admin/ga_dash_settings.php:95
296
  msgid "Google Analytics Frontend Settings"
297
  msgstr "اعدادات الظهور الامامي لأحصائيات كوكل"
298
 
299
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
 
 
 
300
  msgid "Show stats to:"
301
  msgstr ""
302
 
303
- #: .././admin/ga_dash_settings.php:152
304
  msgid " show page sessions and users in frontend (after each article)"
305
  msgstr ""
306
 
307
- #: .././admin/ga_dash_settings.php:168
308
  msgid " show page searches (after each article)"
309
  msgstr "اظهر بحوث الصفحة (بعد كل مقالة)"
310
 
311
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
312
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
313
- #: .././admin/ga_dash_settings.php:1351
314
  msgid "Save Changes"
315
  msgstr ""
316
 
317
- #: .././admin/ga_dash_settings.php:206
318
- msgid "Google Analytics Dashboard Settings"
319
- msgstr "اعدادات الاضافة"
320
 
321
- #: .././admin/ga_dash_settings.php:264
322
  msgid "disable Switch Profile/View functionality"
323
  msgstr "عطل امكانية تغيير اعدادات الحساب/المشاهدة"
324
 
325
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
326
  msgid "Real-Time Settings"
327
  msgstr "اعدادات الوقت الحقيقي"
328
 
329
- #: .././admin/ga_dash_settings.php:271
330
  msgid "Maximum number of pages to display on real-time tab:"
331
  msgstr "اكثر عدد صفحات يتم اظهارها في قسم الوقت الحقيقي:"
332
 
333
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
334
  msgid "find out more"
335
  msgstr ""
336
 
337
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
338
  msgid "about this feature"
339
  msgstr "حول هذه الميزة"
340
 
341
- #: .././admin/ga_dash_settings.php:283
342
  msgid "Location Settings"
343
  msgstr ""
344
 
345
- #: .././admin/ga_dash_settings.php:287
346
  msgid "Target Geo Map to country:"
347
  msgstr ""
348
 
349
- #: .././admin/ga_dash_settings.php:336
350
  msgid "The tracking component is disabled. You should set"
351
  msgstr ""
352
 
353
- #: .././admin/ga_dash_settings.php:336
354
  msgid "Tracking Options"
355
  msgstr ""
356
 
357
- #: .././admin/ga_dash_settings.php:336
358
  msgid "to"
359
  msgstr ""
360
 
361
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
362
  msgid "Enabled"
363
  msgstr "تفعيل"
364
 
365
- #: .././admin/ga_dash_settings.php:342
366
  msgid "Google Analytics Tracking Code"
367
  msgstr "كود تعقب احصائيات كوكل"
368
 
369
- #: .././admin/ga_dash_settings.php:351
370
  msgid "Basic Settings"
371
  msgstr ""
372
 
373
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
374
  msgid "Events Tracking"
375
  msgstr "تعقب الافعال"
376
 
377
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
378
  msgid "Custom Definitions"
379
  msgstr "تعاريف مخصصة"
380
 
381
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
382
- #: .././admin/ga_dash_settings.php:1328
383
  msgid "Exclude Tracking"
384
  msgstr "لا تتبع"
385
 
386
- #: .././admin/ga_dash_settings.php:355
387
  msgid "Advanced Settings"
388
  msgstr ""
389
 
390
- #: .././admin/ga_dash_settings.php:363
391
  msgid "Tracking Settings"
392
  msgstr "اعدادات التعقب"
393
 
394
- #: .././admin/ga_dash_settings.php:366
395
  msgid "Tracking Options:"
396
  msgstr ""
397
 
398
- #: .././admin/ga_dash_settings.php:370
399
  msgid "Disabled"
400
  msgstr "تعطيل"
401
 
402
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
403
  msgid "Tracking ID:"
404
  msgstr "معرف التعقب:"
405
 
406
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
407
  msgid "Default URL:"
408
  msgstr "الرابط الرئيسي:"
409
 
410
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
411
  msgid "Time Zone:"
412
  msgstr "المنطقة الزمنية:"
413
 
414
- #: .././admin/ga_dash_settings.php:385
415
  msgid "Basic Tracking"
416
  msgstr "التعقب الاساسي"
417
 
418
- #: .././admin/ga_dash_settings.php:388
419
  msgid "Tracking Type:"
420
  msgstr ""
421
 
422
- #: .././admin/ga_dash_settings.php:392
423
  msgid "Classic Analytics"
424
  msgstr "الاحصائيات الكلاسيكية"
425
 
426
- #: .././admin/ga_dash_settings.php:394
427
  msgid "Universal Analytics"
428
  msgstr "الاحصائيات العالمية"
429
 
430
- #: .././admin/ga_dash_settings.php:408
431
  msgid " anonymize IPs while tracking"
432
  msgstr "تجاهل الاي بي عند التعقب"
433
 
434
- #: .././admin/ga_dash_settings.php:423
435
  msgid " enable remarketing, demographics and interests reports"
436
  msgstr "فعل تقارير اعادة التسويق, الديمغرافي والاهتمام"
437
 
438
- #: .././admin/ga_dash_settings.php:445
439
  msgid " track downloads, mailto and outbound links"
440
  msgstr "تعقب التحميلات, ارسل الى والروابط الخارجية"
441
 
442
- #: .././admin/ga_dash_settings.php:449
443
  msgid "Downloads Regex:"
444
  msgstr "حمل التقارير"
445
 
446
- #: .././admin/ga_dash_settings.php:466
447
  msgid " track affiliate links matching this regex"
448
  msgstr "تتبع روابط الداعمين التي تطابق هذا الجزء"
449
 
450
- #: .././admin/ga_dash_settings.php:470
451
  msgid "Affiliates Regex:"
452
  msgstr "روابط الداعمين:"
453
 
454
- #: .././admin/ga_dash_settings.php:487
455
  msgid " track fragment identifiers, hashmarks (#) in URI links"
456
  msgstr ""
457
 
458
- #: .././admin/ga_dash_settings.php:498
459
  msgid "Authors:"
460
  msgstr ""
461
 
462
- #: .././admin/ga_dash_settings.php:508
463
  msgid "Publication Year:"
464
  msgstr ""
465
 
466
- #: .././admin/ga_dash_settings.php:518
467
  msgid "Categories:"
468
  msgstr ""
469
 
470
- #: .././admin/ga_dash_settings.php:528
471
  msgid "User Type:"
472
  msgstr ""
473
 
474
- #: .././admin/ga_dash_settings.php:542
475
  msgid "Advanced Tracking"
476
  msgstr "تتبع متطور"
477
 
478
- #: .././admin/ga_dash_settings.php:545
479
  msgid "Page Speed SR:"
480
  msgstr "سرعة الصفحة:"
481
 
482
- #: .././admin/ga_dash_settings.php:563
483
  msgid " exclude events from bounce-rate calculation"
484
  msgstr "لا تحسب الافعال من حسابات نسبة القفز"
485
 
486
- #: .././admin/ga_dash_settings.php:578
487
  msgid " enable enhanced link attribution"
488
  msgstr "فعل تعديل الرابط المحسن"
489
 
490
- #: .././admin/ga_dash_settings.php:592
491
  msgid " enable AdSense account linking"
492
  msgstr "فعل ربط حساب ادسينس"
493
 
494
- #: .././admin/ga_dash_settings.php:608
495
  msgid " enable cross domain tracking"
496
  msgstr "فعل التتبع عبر الروابط"
497
 
498
- #: .././admin/ga_dash_settings.php:612
499
  msgid "Cross Domains:"
500
  msgstr "عبر الروابط التالية:"
501
 
502
- #: .././admin/ga_dash_settings.php:626
503
  msgid "Exclude tracking for:"
504
  msgstr ""
505
 
506
- #: .././admin/ga_dash_settings.php:687
507
  msgid "Google Analytics Errors & Debugging"
508
  msgstr ""
509
 
510
- #: .././admin/ga_dash_settings.php:697
511
  msgid "Errors & Details"
512
  msgstr ""
513
 
514
- #: .././admin/ga_dash_settings.php:698
515
  msgid "Plugin Settings"
516
  msgstr ""
517
 
518
- #: .././admin/ga_dash_settings.php:706
519
  msgid "For errors and/or other issues please check"
520
  msgstr ""
521
 
522
- #: .././admin/ga_dash_settings.php:706
523
- msgid "the plugin documentation page"
524
  msgstr ""
525
 
526
- #: .././admin/ga_dash_settings.php:706
527
  msgid "and related tutorials"
528
  msgstr ""
529
 
530
- #: .././admin/ga_dash_settings.php:710
531
  msgid "Last Error detected"
532
  msgstr ""
533
 
534
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
535
  msgid "None"
536
  msgstr ""
537
 
538
- #: .././admin/ga_dash_settings.php:722
539
  msgid "Error Details"
540
  msgstr ""
541
 
542
- #: .././admin/ga_dash_settings.php:740
543
  msgid "Plugin Configuration"
544
  msgstr ""
545
 
546
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
547
  msgid ""
548
  "Loading the required libraries. If this results in a blank screen or a fatal "
549
  "error, try this solution:"
550
  msgstr ""
551
 
552
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
553
  msgid "Plugin authorization succeeded."
554
  msgstr "تم تفعيل تصريح الاضافة بنجاح."
555
 
556
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
557
  msgid ""
558
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
559
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
560
  msgstr ""
561
 
562
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
563
  msgid "Cleared Cache."
564
  msgstr "الخزن المزال."
565
 
566
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
567
  msgid "Token Reseted and Revoked."
568
  msgstr "الجزء المراح والمعدل."
569
 
570
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
571
  msgid "All other domains/properties were removed."
572
  msgstr "كل الروابط/والخصائص تم إزالتها."
573
 
574
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
575
  msgid "Google Analytics Settings"
576
  msgstr "إعدادات احصائيات كوكل"
577
 
578
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
579
  msgid "Use the red link (see below) to generate and get your access code!"
580
  msgstr ""
581
 
582
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
583
  msgid "Plugin Authorization"
584
  msgstr "تصريح الأضافة"
585
 
586
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
587
  msgid "You should watch the"
588
  msgstr "يجب ان تشاهد هذا"
589
 
590
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
591
  msgid "video"
592
  msgstr "الڤيديو"
593
 
594
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
595
  msgid "and read this"
596
  msgstr "وأقرأ هذا"
597
 
598
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
599
  msgid "tutorial"
600
  msgstr "الدرس"
601
 
602
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
603
  msgid ""
604
  "before proceeding to authorization. This plugin requires a properly "
605
  "configured Google Analytics account"
606
  msgstr ""
607
  "قبل ان تباشر التصريح. هذه الاضافة تتطلب حساب احصائيات كوكل معد بصورة صحيحة"
608
 
609
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
610
  msgid " use your own API Project credentials"
611
  msgstr "أستخدام معرفات مشروع API خاصتك"
612
 
613
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
614
  msgid "API Key:"
615
  msgstr "مفتاح API:"
616
 
617
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
618
  msgid "Client ID:"
619
  msgstr "معرف الزيون:"
620
 
621
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
622
  msgid "Client Secret:"
623
  msgstr "سر الزبون:"
624
 
625
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
626
  msgid "Clear Authorization"
627
  msgstr "أزل التصريحات"
628
 
629
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
630
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
631
  msgid "Clear Cache"
632
  msgstr "أزل الخزن"
633
 
634
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
 
 
635
  msgid "Select Domain:"
636
  msgstr ""
637
 
638
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
639
  msgid "Property not found"
640
  msgstr ""
641
 
642
- #: .././admin/ga_dash_settings.php:985
643
  msgid "and/or hide all other domains"
644
  msgstr "و/أو أخفي كل الروابط الأخرى"
645
 
646
- #: .././admin/ga_dash_settings.php:988
647
  msgid "Hide Now"
648
  msgstr "أخفي الأن"
649
 
650
- #: .././admin/ga_dash_settings.php:1007
651
  msgid "Theme Color:"
652
  msgstr ""
653
 
654
- #: .././admin/ga_dash_settings.php:1017
655
- msgid "A new frontend widget is available! To enable it, go to"
656
- msgstr "هنالك ودجت أمامي جديدة متوفرة! لتفعلها, أذهب الى"
657
 
658
- #: .././admin/ga_dash_settings.php:1017
659
- msgid "Appearance -> Widgets"
660
- msgstr "المظاهر -< المربعات الجانبية"
 
 
661
 
662
- #: .././admin/ga_dash_settings.php:1017
663
- msgid "and look for Google Analytics Dashboard."
664
- msgstr "وابحث عن المربع الخاص بالأضافة."
 
665
 
666
- #: .././admin/ga_dash_settings.php:1115
667
  msgid "Properties refreshed."
668
  msgstr "تم تحديث الخصائص."
669
 
670
- #: .././admin/ga_dash_settings.php:1201
671
  msgid "Network Setup"
672
  msgstr "اعدادات الشبكة"
673
 
674
- #: .././admin/ga_dash_settings.php:1216
675
  msgid " use a single Google Analytics account for the entire network"
676
  msgstr "أستخدم حساب أحصائيات كوكل واحد للشبكة كلها"
677
 
678
- #: .././admin/ga_dash_settings.php:1288
679
  msgid "Refresh Properties"
680
  msgstr "حدث الخصائص"
681
 
682
- #: .././admin/ga_dash_settings.php:1294
683
  msgid "Properties/Views Settings"
684
  msgstr "اعدادات الخصائص/المشاهدة"
685
 
686
- #: .././admin/ga_dash_settings.php:1342
687
  msgid " exclude Super Admin tracking for the entire network"
688
  msgstr ""
689
 
690
- #: .././admin/ga_dash_settings.php:1394
691
  msgid "Setup Tutorial & Demo"
692
  msgstr "درس التنصيب"
693
 
694
- #: .././admin/ga_dash_settings.php:1406
695
  msgid "Support & Reviews"
696
  msgstr "الدعم والتقييم"
697
 
698
- #: .././admin/ga_dash_settings.php:1414
699
  msgid "Plugin documentation and support on"
700
  msgstr ""
701
 
702
- #: .././admin/ga_dash_settings.php:1421
703
  msgid "Your feedback and review are both important,"
704
  msgstr "رأيك وتقييمك كلاهما مهمان,"
705
 
706
- #: .././admin/ga_dash_settings.php:1421
707
  msgid "rate this plugin"
708
  msgstr "قيم هذه الاضافة"
709
 
710
- #: .././admin/ga_dash_settings.php:1426
711
  msgid "Further Reading"
712
  msgstr "أكمل القراءة"
713
 
714
- #: .././admin/ga_dash_settings.php:1434
715
  msgid "Improve search rankings"
716
  msgstr "حسن ترتيب البحث"
717
 
718
- #: .././admin/ga_dash_settings.php:1434
719
  msgid "by moving your website to HTTPS/SSL."
720
  msgstr "حول موقعك الى بروتوكول HTTPs/SSl"
721
 
722
- #: .././admin/ga_dash_settings.php:1441
723
  msgid "Other"
724
  msgstr "اخرى"
725
 
726
- #: .././admin/ga_dash_settings.php:1441
727
  msgid "WordPress Plugins"
728
  msgstr "اضافات وردبريس"
729
 
730
- #: .././admin/ga_dash_settings.php:1441
731
  msgid "written by the same author"
732
  msgstr "كتبت من قبل نفس صاحب الاضافة"
733
 
734
- #: .././admin/ga_dash_settings.php:1446
735
  msgid "Other Services"
736
  msgstr ""
737
 
738
- #: .././admin/ga_dash_settings.php:1453
739
  msgid "Speed up your website and plug into a whole"
740
  msgstr ""
741
 
742
- #: .././admin/ga_dash_settings.php:1453
743
  msgid "new level of site speed"
744
  msgstr ""
745
 
746
- #: .././admin/ga_dash_settings.php:1460
747
  msgid "Web Analytics"
748
  msgstr "احصائيات الويب"
749
 
750
- #: .././admin/ga_dash_settings.php:1460
751
  msgid "service with users tracking at IP level."
752
  msgstr ""
753
 
754
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Views vs UniqueViews"
756
  msgstr "المشاهدات ضد المشاهدات الحقيقية"
757
 
758
- #: .././front/frontend.php:184
759
  msgid "Google Analytics Reports"
760
  msgstr ""
761
 
@@ -763,114 +799,126 @@ msgstr ""
763
  msgid "Will display your google analytics stats in a widget"
764
  msgstr "ستظهر احصائيات حسابك في مربع جانبي"
765
 
766
- #: .././front/widgets.php:40 .././tools/gapi.php:744
767
  msgid "trend"
768
  msgstr ""
769
 
770
- #: .././front/widgets.php:133
771
  msgid "Period:"
772
  msgstr "الفترة:"
773
 
774
- #: .././front/widgets.php:133
775
  msgid "Sessions:"
776
  msgstr ""
777
 
778
- #: .././front/widgets.php:137
779
  msgid "generated by"
780
  msgstr "اظهرت بواسطة"
781
 
782
- #: .././front/widgets.php:147
783
  msgid "Google Analytics Stats"
784
  msgstr "احصائيات كوكل"
785
 
786
- #: .././front/widgets.php:154
787
  msgid "Title:"
788
  msgstr "العنوان:"
789
 
790
- #: .././front/widgets.php:161
791
  msgid "Display:"
792
  msgstr "اظهر:"
793
 
794
- #: .././front/widgets.php:165
795
  msgid "Chart & Totals"
796
  msgstr "الاحصائيات والكل"
797
 
798
- #: .././front/widgets.php:166
799
  msgid "Chart"
800
  msgstr "الاحصائيات"
801
 
802
- #: .././front/widgets.php:167
803
  msgid "Totals"
804
  msgstr "الكل"
805
 
806
- #: .././front/widgets.php:171
807
  msgid "Anonymize stats:"
808
  msgstr ""
809
 
810
- #: .././front/widgets.php:178
811
  msgid "Stats for:"
812
  msgstr "الاحصائيات لـ:"
813
 
814
- #: .././front/widgets.php:188
815
  msgid "Give credits:"
816
  msgstr "أعطي الفضل:"
817
 
818
- #: .././tools/gapi.php:129
819
  msgid "Use this link to get your access code:"
820
  msgstr "أستخدم هذا الرابط للحصول على كود التعقب الخاص بك:"
821
 
822
- #: .././tools/gapi.php:129
823
  msgid "Get Access Code"
824
  msgstr "احصل على كود الدخول"
825
 
826
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
827
  msgid "Use the red link to get your access code!"
828
  msgstr ""
829
 
830
- #: .././tools/gapi.php:134
831
  msgid "Access Code:"
832
  msgstr "كود الدخول:"
833
 
834
- #: .././tools/gapi.php:146
835
  msgid "Save Access Code"
836
  msgstr "أحفظ كود الدخول"
837
 
838
- #: .././tools/gapi.php:373
839
  msgid "Organic Searches"
840
  msgstr "البحث العضوي"
841
 
842
- #: .././tools/gapi.php:381
843
  msgid "Hour"
844
  msgstr "الساعة"
845
 
846
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
847
  msgid "Date"
848
  msgstr "التاريخ"
849
 
850
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
851
  msgid "Views"
852
  msgstr "المشاهدات"
853
 
854
- #: .././tools/gapi.php:576
855
  msgid "Countries"
856
  msgstr ""
857
 
858
- #: .././tools/gapi.php:590
859
  msgid "Cities from"
860
  msgstr ""
861
 
862
- #: .././tools/gapi.php:644
863
  msgid "Channels"
864
  msgstr ""
865
 
866
- #: .././tools/gapi.php:698
867
  msgid "Type"
868
  msgstr "النوع"
869
 
870
- #: .././tools/gapi.php:783
871
  msgid "UniqueViews"
872
  msgstr "المشاهدات الخاصة"
873
 
 
 
 
 
 
 
 
 
 
 
 
 
874
  #~ msgid "Something went wrong, you need to"
875
  #~ msgstr "حدث خطأ ما, تحتاج الى"
876
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-10 19:15+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:15+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
8
  "Language: ar\n"
17
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n"
18
  "X-Poedit-SearchPath-0: ../.\n"
19
 
20
+ #: .././admin/item-reports.php:56
21
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  msgstr ""
23
 
24
+ #: .././admin/settings.php:86 .././admin/settings.php:205
25
+ #: .././admin/settings.php:372 .././admin/settings.php:916
26
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Settings saved."
28
  msgstr ""
29
 
30
+ #: .././admin/settings.php:88 .././admin/settings.php:207
31
+ #: .././admin/settings.php:374 .././admin/settings.php:893
32
+ #: .././admin/settings.php:903 .././admin/settings.php:912
33
+ #: .././admin/settings.php:918 .././admin/settings.php:930
34
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
35
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
36
+ #: .././admin/settings.php:1248
37
  msgid "Cheating Huh?"
38
  msgstr "تغش ها؟"
39
 
40
+ #: .././admin/settings.php:92 .././admin/settings.php:211
41
+ #: .././admin/settings.php:378 .././admin/settings.php:737
42
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
43
  msgid "Something went wrong, check"
44
  msgstr ""
45
 
46
+ #: .././admin/settings.php:92 .././admin/settings.php:211
47
+ #: .././admin/settings.php:378 .././admin/settings.php:737
48
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
49
+ #: .././admin/setup.php:89 .././admin/setup.php:113
50
+ msgid "Errors & Debug"
51
+ msgstr ""
52
+
53
+ #: .././admin/settings.php:92 .././admin/settings.php:211
54
+ #: .././admin/settings.php:378 .././admin/settings.php:737
55
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
56
  msgid "or"
57
  msgstr ""
58
 
59
+ #: .././admin/settings.php:92 .././admin/settings.php:211
60
+ #: .././admin/settings.php:378 .././admin/settings.php:737
61
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
62
+ msgid "authorize the plugin"
63
  msgstr "صرح بالدخول للأضافة"
64
 
65
+ #: .././admin/settings.php:98
66
  msgid "Google Analytics Frontend Settings"
67
  msgstr "اعدادات الظهور الامامي لأحصائيات كوكل"
68
 
69
+ #: .././admin/settings.php:108 .././admin/settings.php:227
70
+ msgid "Permissions"
71
+ msgstr ""
72
+
73
+ #: .././admin/settings.php:111 .././admin/settings.php:230
74
  msgid "Show stats to:"
75
  msgstr ""
76
 
77
+ #: .././admin/settings.php:159
78
  msgid " show page sessions and users in frontend (after each article)"
79
  msgstr ""
80
 
81
+ #: .././admin/settings.php:175
82
  msgid " show page searches (after each article)"
83
  msgstr "اظهر بحوث الصفحة (بعد كل مقالة)"
84
 
85
+ #: .././admin/settings.php:184 .././admin/settings.php:350
86
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
87
+ #: .././admin/settings.php:1428
88
  msgid "Save Changes"
89
  msgstr ""
90
 
91
+ #: .././admin/settings.php:217
92
+ msgid "Google Analytics Backend Settings"
93
+ msgstr ""
94
 
95
+ #: .././admin/settings.php:279
96
  msgid "disable Switch Profile/View functionality"
97
  msgstr "عطل امكانية تغيير اعدادات الحساب/المشاهدة"
98
 
99
+ #: .././admin/settings.php:294
100
+ msgid "disable stats on Posts List and Pages List"
101
+ msgstr ""
102
+
103
+ #: .././admin/settings.php:309
104
+ msgid "disable the main Dashboard Widget"
105
+ msgstr ""
106
+
107
+ #: .././admin/settings.php:313
108
  msgid "Real-Time Settings"
109
  msgstr "اعدادات الوقت الحقيقي"
110
 
111
+ #: .././admin/settings.php:316
112
  msgid "Maximum number of pages to display on real-time tab:"
113
  msgstr "اكثر عدد صفحات يتم اظهارها في قسم الوقت الحقيقي:"
114
 
115
+ #: .././admin/settings.php:321 .././admin/settings.php:337
116
  msgid "find out more"
117
  msgstr ""
118
 
119
+ #: .././admin/settings.php:323 .././admin/settings.php:340
120
  msgid "about this feature"
121
  msgstr "حول هذه الميزة"
122
 
123
+ #: .././admin/settings.php:328
124
  msgid "Location Settings"
125
  msgstr ""
126
 
127
+ #: .././admin/settings.php:332
128
  msgid "Target Geo Map to country:"
129
  msgstr ""
130
 
131
+ #: .././admin/settings.php:381
132
  msgid "The tracking component is disabled. You should set"
133
  msgstr ""
134
 
135
+ #: .././admin/settings.php:381
136
  msgid "Tracking Options"
137
  msgstr ""
138
 
139
+ #: .././admin/settings.php:381
140
  msgid "to"
141
  msgstr ""
142
 
143
+ #: .././admin/settings.php:381 .././admin/settings.php:417
144
  msgid "Enabled"
145
  msgstr "تفعيل"
146
 
147
+ #: .././admin/settings.php:387
148
  msgid "Google Analytics Tracking Code"
149
  msgstr "كود تعقب احصائيات كوكل"
150
 
151
+ #: .././admin/settings.php:396
152
  msgid "Basic Settings"
153
  msgstr ""
154
 
155
+ #: .././admin/settings.php:397 .././admin/settings.php:476
156
  msgid "Events Tracking"
157
  msgstr "تعقب الافعال"
158
 
159
+ #: .././admin/settings.php:398 .././admin/settings.php:540
160
  msgid "Custom Definitions"
161
  msgstr "تعاريف مخصصة"
162
 
163
+ #: .././admin/settings.php:399 .././admin/settings.php:668
164
+ #: .././admin/settings.php:1405
165
  msgid "Exclude Tracking"
166
  msgstr "لا تتبع"
167
 
168
+ #: .././admin/settings.php:400
169
  msgid "Advanced Settings"
170
  msgstr ""
171
 
172
+ #: .././admin/settings.php:408
173
  msgid "Tracking Settings"
174
  msgstr "اعدادات التعقب"
175
 
176
+ #: .././admin/settings.php:411
177
  msgid "Tracking Options:"
178
  msgstr ""
179
 
180
+ #: .././admin/settings.php:415
181
  msgid "Disabled"
182
  msgstr "تعطيل"
183
 
184
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
185
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
186
+ #: .././admin/widgets.php:67
187
+ msgid "View Name:"
188
+ msgstr "شاهد الاسم:"
189
+
190
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
191
  msgid "Tracking ID:"
192
  msgstr "معرف التعقب:"
193
 
194
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
195
  msgid "Default URL:"
196
  msgstr "الرابط الرئيسي:"
197
 
198
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
199
  msgid "Time Zone:"
200
  msgstr "المنطقة الزمنية:"
201
 
202
+ #: .././admin/settings.php:430
203
  msgid "Basic Tracking"
204
  msgstr "التعقب الاساسي"
205
 
206
+ #: .././admin/settings.php:433
207
  msgid "Tracking Type:"
208
  msgstr ""
209
 
210
+ #: .././admin/settings.php:437
211
  msgid "Classic Analytics"
212
  msgstr "الاحصائيات الكلاسيكية"
213
 
214
+ #: .././admin/settings.php:439
215
  msgid "Universal Analytics"
216
  msgstr "الاحصائيات العالمية"
217
 
218
+ #: .././admin/settings.php:453
219
  msgid " anonymize IPs while tracking"
220
  msgstr "تجاهل الاي بي عند التعقب"
221
 
222
+ #: .././admin/settings.php:468
223
  msgid " enable remarketing, demographics and interests reports"
224
  msgstr "فعل تقارير اعادة التسويق, الديمغرافي والاهتمام"
225
 
226
+ #: .././admin/settings.php:490
227
  msgid " track downloads, mailto and outbound links"
228
  msgstr "تعقب التحميلات, ارسل الى والروابط الخارجية"
229
 
230
+ #: .././admin/settings.php:494
231
  msgid "Downloads Regex:"
232
  msgstr "حمل التقارير"
233
 
234
+ #: .././admin/settings.php:511
235
  msgid " track affiliate links matching this regex"
236
  msgstr "تتبع روابط الداعمين التي تطابق هذا الجزء"
237
 
238
+ #: .././admin/settings.php:515
239
  msgid "Affiliates Regex:"
240
  msgstr "روابط الداعمين:"
241
 
242
+ #: .././admin/settings.php:532
243
  msgid " track fragment identifiers, hashmarks (#) in URI links"
244
  msgstr ""
245
 
246
+ #: .././admin/settings.php:543
247
  msgid "Authors:"
248
  msgstr ""
249
 
250
+ #: .././admin/settings.php:553
251
  msgid "Publication Year:"
252
  msgstr ""
253
 
254
+ #: .././admin/settings.php:563
255
  msgid "Categories:"
256
  msgstr ""
257
 
258
+ #: .././admin/settings.php:573
259
  msgid "User Type:"
260
  msgstr ""
261
 
262
+ #: .././admin/settings.php:587
263
  msgid "Advanced Tracking"
264
  msgstr "تتبع متطور"
265
 
266
+ #: .././admin/settings.php:590
267
  msgid "Page Speed SR:"
268
  msgstr "سرعة الصفحة:"
269
 
270
+ #: .././admin/settings.php:608
271
  msgid " exclude events from bounce-rate calculation"
272
  msgstr "لا تحسب الافعال من حسابات نسبة القفز"
273
 
274
+ #: .././admin/settings.php:623
275
  msgid " enable enhanced link attribution"
276
  msgstr "فعل تعديل الرابط المحسن"
277
 
278
+ #: .././admin/settings.php:637
279
  msgid " enable AdSense account linking"
280
  msgstr "فعل ربط حساب ادسينس"
281
 
282
+ #: .././admin/settings.php:653
283
  msgid " enable cross domain tracking"
284
  msgstr "فعل التتبع عبر الروابط"
285
 
286
+ #: .././admin/settings.php:657
287
  msgid "Cross Domains:"
288
  msgstr "عبر الروابط التالية:"
289
 
290
+ #: .././admin/settings.php:671
291
  msgid "Exclude tracking for:"
292
  msgstr ""
293
 
294
+ #: .././admin/settings.php:741
295
  msgid "Google Analytics Errors & Debugging"
296
  msgstr ""
297
 
298
+ #: .././admin/settings.php:751
299
  msgid "Errors & Details"
300
  msgstr ""
301
 
302
+ #: .././admin/settings.php:752
303
  msgid "Plugin Settings"
304
  msgstr ""
305
 
306
+ #: .././admin/settings.php:760
307
  msgid "For errors and/or other issues please check"
308
  msgstr ""
309
 
310
+ #: .././admin/settings.php:760
311
+ msgid "this documentation page"
312
  msgstr ""
313
 
314
+ #: .././admin/settings.php:760
315
  msgid "and related tutorials"
316
  msgstr ""
317
 
318
+ #: .././admin/settings.php:764
319
  msgid "Last Error detected"
320
  msgstr ""
321
 
322
+ #: .././admin/settings.php:769 .././admin/settings.php:782
323
  msgid "None"
324
  msgstr ""
325
 
326
+ #: .././admin/settings.php:776
327
  msgid "Error Details"
328
  msgstr ""
329
 
330
+ #: .././admin/settings.php:796
331
  msgid "Plugin Configuration"
332
  msgstr ""
333
 
334
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
335
  msgid ""
336
  "Loading the required libraries. If this results in a blank screen or a fatal "
337
  "error, try this solution:"
338
  msgstr ""
339
 
340
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
341
  msgid "Plugin authorization succeeded."
342
  msgstr "تم تفعيل تصريح الاضافة بنجاح."
343
 
344
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
345
  msgid ""
346
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
347
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
348
  msgstr ""
349
 
350
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
351
  msgid "Cleared Cache."
352
  msgstr "الخزن المزال."
353
 
354
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
355
  msgid "Token Reseted and Revoked."
356
  msgstr "الجزء المراح والمعدل."
357
 
358
+ #: .././admin/settings.php:910
359
+ msgid "All errors reseted."
360
+ msgstr ""
361
+
362
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
363
  msgid "All other domains/properties were removed."
364
  msgstr "كل الروابط/والخصائص تم إزالتها."
365
 
366
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
367
  msgid "Google Analytics Settings"
368
  msgstr "إعدادات احصائيات كوكل"
369
 
370
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
371
  msgid "Use the red link (see below) to generate and get your access code!"
372
  msgstr ""
373
 
374
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
375
  msgid "Plugin Authorization"
376
  msgstr "تصريح الأضافة"
377
 
378
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
379
  msgid "You should watch the"
380
  msgstr "يجب ان تشاهد هذا"
381
 
382
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
383
  msgid "video"
384
  msgstr "الڤيديو"
385
 
386
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
387
  msgid "and read this"
388
  msgstr "وأقرأ هذا"
389
 
390
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
391
  msgid "tutorial"
392
  msgstr "الدرس"
393
 
394
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
395
  msgid ""
396
  "before proceeding to authorization. This plugin requires a properly "
397
  "configured Google Analytics account"
398
  msgstr ""
399
  "قبل ان تباشر التصريح. هذه الاضافة تتطلب حساب احصائيات كوكل معد بصورة صحيحة"
400
 
401
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
402
  msgid " use your own API Project credentials"
403
  msgstr "أستخدام معرفات مشروع API خاصتك"
404
 
405
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
406
  msgid "API Key:"
407
  msgstr "مفتاح API:"
408
 
409
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
410
  msgid "Client ID:"
411
  msgstr "معرف الزيون:"
412
 
413
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
414
  msgid "Client Secret:"
415
  msgstr "سر الزبون:"
416
 
417
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
418
  msgid "Clear Authorization"
419
  msgstr "أزل التصريحات"
420
 
421
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
422
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
423
  msgid "Clear Cache"
424
  msgstr "أزل الخزن"
425
 
426
+ #: .././admin/settings.php:1022
427
+ msgid "Reset Errors"
428
+ msgstr ""
429
+
430
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
431
+ #: .././admin/setup.php:109
432
+ msgid "General Settings"
433
+ msgstr "الأعدادات العامة"
434
+
435
+ #: .././admin/settings.php:1031
436
  msgid "Select Domain:"
437
  msgstr ""
438
 
439
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
440
  msgid "Property not found"
441
  msgstr ""
442
 
443
+ #: .././admin/settings.php:1049
444
  msgid "and/or hide all other domains"
445
  msgstr "و/أو أخفي كل الروابط الأخرى"
446
 
447
+ #: .././admin/settings.php:1052
448
  msgid "Hide Now"
449
  msgstr "أخفي الأن"
450
 
451
+ #: .././admin/settings.php:1071
452
  msgid "Theme Color:"
453
  msgstr ""
454
 
455
+ #: .././admin/settings.php:1081
456
+ msgid "Automatic Updates"
457
+ msgstr ""
458
 
459
+ #: .././admin/settings.php:1097
460
+ msgid ""
461
+ "automatic updates for minor versions (security and maintainance releases "
462
+ "only)"
463
+ msgstr ""
464
 
465
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
466
+ #: .././admin/widgets.php:38
467
+ msgid "Authorize Plugin"
468
+ msgstr "صرح الأضافة "
469
 
470
+ #: .././admin/settings.php:1192
471
  msgid "Properties refreshed."
472
  msgstr "تم تحديث الخصائص."
473
 
474
+ #: .././admin/settings.php:1278
475
  msgid "Network Setup"
476
  msgstr "اعدادات الشبكة"
477
 
478
+ #: .././admin/settings.php:1293
479
  msgid " use a single Google Analytics account for the entire network"
480
  msgstr "أستخدم حساب أحصائيات كوكل واحد للشبكة كلها"
481
 
482
+ #: .././admin/settings.php:1365
483
  msgid "Refresh Properties"
484
  msgstr "حدث الخصائص"
485
 
486
+ #: .././admin/settings.php:1371
487
  msgid "Properties/Views Settings"
488
  msgstr "اعدادات الخصائص/المشاهدة"
489
 
490
+ #: .././admin/settings.php:1419
491
  msgid " exclude Super Admin tracking for the entire network"
492
  msgstr ""
493
 
494
+ #: .././admin/settings.php:1471
495
  msgid "Setup Tutorial & Demo"
496
  msgstr "درس التنصيب"
497
 
498
+ #: .././admin/settings.php:1483
499
  msgid "Support & Reviews"
500
  msgstr "الدعم والتقييم"
501
 
502
+ #: .././admin/settings.php:1491
503
  msgid "Plugin documentation and support on"
504
  msgstr ""
505
 
506
+ #: .././admin/settings.php:1498
507
  msgid "Your feedback and review are both important,"
508
  msgstr "رأيك وتقييمك كلاهما مهمان,"
509
 
510
+ #: .././admin/settings.php:1498
511
  msgid "rate this plugin"
512
  msgstr "قيم هذه الاضافة"
513
 
514
+ #: .././admin/settings.php:1503
515
  msgid "Further Reading"
516
  msgstr "أكمل القراءة"
517
 
518
+ #: .././admin/settings.php:1511
519
  msgid "Improve search rankings"
520
  msgstr "حسن ترتيب البحث"
521
 
522
+ #: .././admin/settings.php:1511
523
  msgid "by moving your website to HTTPS/SSL."
524
  msgstr "حول موقعك الى بروتوكول HTTPs/SSl"
525
 
526
+ #: .././admin/settings.php:1518
527
  msgid "Other"
528
  msgstr "اخرى"
529
 
530
+ #: .././admin/settings.php:1518
531
  msgid "WordPress Plugins"
532
  msgstr "اضافات وردبريس"
533
 
534
+ #: .././admin/settings.php:1518
535
  msgid "written by the same author"
536
  msgstr "كتبت من قبل نفس صاحب الاضافة"
537
 
538
+ #: .././admin/settings.php:1523
539
  msgid "Other Services"
540
  msgstr ""
541
 
542
+ #: .././admin/settings.php:1531
543
  msgid "Speed up your website and plug into a whole"
544
  msgstr ""
545
 
546
+ #: .././admin/settings.php:1531
547
  msgid "new level of site speed"
548
  msgstr ""
549
 
550
+ #: .././admin/settings.php:1538
551
  msgid "Web Analytics"
552
  msgstr "احصائيات الويب"
553
 
554
+ #: .././admin/settings.php:1538
555
  msgid "service with users tracking at IP level."
556
  msgstr ""
557
 
558
+ #: .././admin/setup.php:69 .././admin/setup.php:105
559
+ msgid "Google Analytics"
560
+ msgstr "أحصائيات كوكل"
561
+
562
+ #: .././admin/setup.php:77
563
+ msgid "Backend Settings"
564
+ msgstr "أعدادات العمل"
565
+
566
+ #: .././admin/setup.php:81
567
+ msgid "Frontend Settings"
568
+ msgstr "اعدادات الظهور"
569
+
570
+ #: .././admin/setup.php:85
571
+ msgid "Tracking Code"
572
+ msgstr "كود التعقب"
573
+
574
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
575
+ msgid "Today"
576
+ msgstr "اليوم"
577
+
578
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
579
+ msgid "Yesterday"
580
+ msgstr "البارحة"
581
+
582
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
583
+ #: .././front/widgets.php:68 .././front/widgets.php:176
584
+ msgid "Last 7 Days"
585
+ msgstr "اخر ٧ ايام"
586
+
587
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
588
+ #: .././front/widgets.php:74 .././front/widgets.php:178
589
+ msgid "Last 30 Days"
590
+ msgstr "اخر ٣٠ يوم"
591
+
592
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
593
+ msgid "Last 90 Days"
594
+ msgstr "أخر ٩٠ يوم"
595
+
596
+ #: .././admin/setup.php:197 .././admin/setup.php:213
597
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
598
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
599
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
600
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
601
+ msgid "Sessions"
602
+ msgstr ""
603
+
604
+ #: .././admin/setup.php:198 .././admin/setup.php:214
605
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
606
+ #: .././tools/gapi.php:372
607
+ msgid "Users"
608
+ msgstr ""
609
+
610
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
611
+ msgid "Organic"
612
+ msgstr "عضوي"
613
+
614
+ #: .././admin/setup.php:200 .././admin/setup.php:215
615
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
616
+ #: .././tools/gapi.php:375
617
+ msgid "Page Views"
618
+ msgstr "مشاهدات الصفحة"
619
+
620
+ #: .././admin/setup.php:201 .././admin/setup.php:216
621
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
622
+ #: .././tools/gapi.php:378
623
+ msgid "Bounce Rate"
624
+ msgstr "نسبة القفز"
625
+
626
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
627
+ msgid "Location"
628
+ msgstr ""
629
+
630
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
631
+ msgid "Referrers"
632
+ msgstr ""
633
+
634
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
635
+ #: .././tools/gapi.php:898
636
+ msgid "Searches"
637
+ msgstr ""
638
+
639
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
640
+ msgid "Traffic Details"
641
+ msgstr ""
642
+
643
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
644
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
645
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
646
+ msgid "A JavaScript Error is blocking plugin resources!"
647
+ msgstr ""
648
+
649
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
650
+ msgid "Traffic Mediums"
651
+ msgstr ""
652
+
653
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
654
+ msgid "Visitor Type"
655
+ msgstr ""
656
+
657
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
658
+ msgid "Social Networks"
659
+ msgstr ""
660
+
661
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
662
+ msgid "Search Engines"
663
+ msgstr ""
664
+
665
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
666
+ msgid "Organic Search"
667
+ msgstr ""
668
+
669
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
670
+ msgid "Pages/Session"
671
+ msgstr ""
672
+
673
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
674
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
675
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
676
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
677
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
678
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
679
+ #: .././front/item-reports.php:115
680
+ msgid "Invalid response, more details in JavaScript Console (F12)."
681
+ msgstr ""
682
+
683
+ #: .././admin/setup.php:220
684
+ msgid "Not enough data collected"
685
+ msgstr ""
686
+
687
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
688
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
689
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
690
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
691
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
692
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
693
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
694
+ #: .././front/widgets.php:104
695
+ msgid "This report is unavailable"
696
+ msgstr ""
697
+
698
+ #: .././admin/setup.php:222
699
+ msgid "report generated by"
700
+ msgstr ""
701
+
702
+ #: .././admin/setup.php:260
703
+ msgid "Settings"
704
+ msgstr "الاعدادات"
705
+
706
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
707
+ msgid "Google Analytics Dashboard"
708
+ msgstr "لوحة أحصائيات كوكل"
709
+
710
+ #: .././admin/widgets.php:38
711
+ msgid "This plugin needs an authorization:"
712
+ msgstr "هذه الاضافة تحتاج الى تصريح:"
713
+
714
+ #: .././admin/widgets.php:72
715
+ msgid "Something went wrong while retrieving profiles list."
716
+ msgstr "حدث خطأ ما اثناء استرجاع قائمة البروفايلات."
717
+
718
+ #: .././admin/widgets.php:72
719
+ msgid "More details"
720
+ msgstr "المزيد من التفاصيل"
721
+
722
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
723
+ msgid "An admin should asign a default Google Analytics Profile."
724
+ msgstr "المدير يجب ان يحصل على حساب احصائيات كوكل رئيسي."
725
+
726
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
727
+ msgid "Select Domain"
728
+ msgstr "حدد النطاق"
729
+
730
+ #: .././admin/widgets.php:101
731
+ msgid ""
732
+ "Something went wrong while retrieving property data. You need to create and "
733
+ "properly configure a Google Analytics account:"
734
+ msgstr ""
735
+ "حدث خطأ ما اثناء استرجاع بيانات الملكية. تحتاج الى انشاء واعداد حساب كوكل "
736
+ "للأحصائيات بصورة صحيحة:"
737
+
738
+ #: .././admin/widgets.php:101
739
+ msgid "Find out more!"
740
+ msgstr "اعرف أكثر!"
741
+
742
+ #: .././admin/widgets.php:122
743
+ msgid "Real-Time"
744
+ msgstr "الوقت الحقيقي"
745
+
746
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
747
+ #: .././front/widgets.php:177
748
+ msgid "Last 14 Days"
749
+ msgstr "أخر ١٤ يوم"
750
+
751
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
752
+ msgid "Pages"
753
+ msgstr ""
754
+
755
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
756
+ msgid "REFERRAL"
757
+ msgstr "المصدر"
758
+
759
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
760
+ msgid "ORGANIC"
761
+ msgstr "عضوي"
762
+
763
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
764
+ #: .././admin/widgets.php:486
765
+ msgid "SOCIAL"
766
+ msgstr "اجتماعي"
767
+
768
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
769
+ #: .././admin/widgets.php:487
770
+ msgid "CAMPAIGN"
771
+ msgstr ""
772
+
773
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
774
+ #: .././admin/widgets.php:490
775
+ msgid "DIRECT"
776
+ msgstr "مباشر"
777
+
778
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
779
+ msgid "NEW"
780
+ msgstr "جديد"
781
+
782
+ #: .././admin/widgets.php:366
783
+ msgid "REFERRALS"
784
+ msgstr "المصادر"
785
+
786
+ #: .././admin/widgets.php:369
787
+ msgid "KEYWORDS"
788
+ msgstr "الكلمات المفتاحية"
789
+
790
+ #: .././front/item-reports.php:130
791
  msgid "Views vs UniqueViews"
792
  msgstr "المشاهدات ضد المشاهدات الحقيقية"
793
 
794
+ #: .././front/item-reports.php:180
795
  msgid "Google Analytics Reports"
796
  msgstr ""
797
 
799
  msgid "Will display your google analytics stats in a widget"
800
  msgstr "ستظهر احصائيات حسابك في مربع جانبي"
801
 
802
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
803
  msgid "trend"
804
  msgstr ""
805
 
806
+ #: .././front/widgets.php:127
807
  msgid "Period:"
808
  msgstr "الفترة:"
809
 
810
+ #: .././front/widgets.php:127
811
  msgid "Sessions:"
812
  msgstr ""
813
 
814
+ #: .././front/widgets.php:131
815
  msgid "generated by"
816
  msgstr "اظهرت بواسطة"
817
 
818
+ #: .././front/widgets.php:141
819
  msgid "Google Analytics Stats"
820
  msgstr "احصائيات كوكل"
821
 
822
+ #: .././front/widgets.php:148
823
  msgid "Title:"
824
  msgstr "العنوان:"
825
 
826
+ #: .././front/widgets.php:155
827
  msgid "Display:"
828
  msgstr "اظهر:"
829
 
830
+ #: .././front/widgets.php:159
831
  msgid "Chart & Totals"
832
  msgstr "الاحصائيات والكل"
833
 
834
+ #: .././front/widgets.php:160
835
  msgid "Chart"
836
  msgstr "الاحصائيات"
837
 
838
+ #: .././front/widgets.php:161
839
  msgid "Totals"
840
  msgstr "الكل"
841
 
842
+ #: .././front/widgets.php:165
843
  msgid "Anonymize stats:"
844
  msgstr ""
845
 
846
+ #: .././front/widgets.php:172
847
  msgid "Stats for:"
848
  msgstr "الاحصائيات لـ:"
849
 
850
+ #: .././front/widgets.php:182
851
  msgid "Give credits:"
852
  msgstr "أعطي الفضل:"
853
 
854
+ #: .././tools/gapi.php:128
855
  msgid "Use this link to get your access code:"
856
  msgstr "أستخدم هذا الرابط للحصول على كود التعقب الخاص بك:"
857
 
858
+ #: .././tools/gapi.php:128
859
  msgid "Get Access Code"
860
  msgstr "احصل على كود الدخول"
861
 
862
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
863
  msgid "Use the red link to get your access code!"
864
  msgstr ""
865
 
866
+ #: .././tools/gapi.php:133
867
  msgid "Access Code:"
868
  msgstr "كود الدخول:"
869
 
870
+ #: .././tools/gapi.php:145
871
  msgid "Save Access Code"
872
  msgstr "أحفظ كود الدخول"
873
 
874
+ #: .././tools/gapi.php:381
875
  msgid "Organic Searches"
876
  msgstr "البحث العضوي"
877
 
878
+ #: .././tools/gapi.php:389
879
  msgid "Hour"
880
  msgstr "الساعة"
881
 
882
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
883
  msgid "Date"
884
  msgstr "التاريخ"
885
 
886
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
887
  msgid "Views"
888
  msgstr "المشاهدات"
889
 
890
+ #: .././tools/gapi.php:617
891
  msgid "Countries"
892
  msgstr ""
893
 
894
+ #: .././tools/gapi.php:626
895
  msgid "Cities from"
896
  msgstr ""
897
 
898
+ #: .././tools/gapi.php:698
899
  msgid "Channels"
900
  msgstr ""
901
 
902
+ #: .././tools/gapi.php:761
903
  msgid "Type"
904
  msgstr "النوع"
905
 
906
+ #: .././tools/gapi.php:856
907
  msgid "UniqueViews"
908
  msgstr "المشاهدات الخاصة"
909
 
910
+ #~ msgid "Google Analytics Dashboard Settings"
911
+ #~ msgstr "اعدادات الاضافة"
912
+
913
+ #~ msgid "A new frontend widget is available! To enable it, go to"
914
+ #~ msgstr "هنالك ودجت أمامي جديدة متوفرة! لتفعلها, أذهب الى"
915
+
916
+ #~ msgid "Appearance -> Widgets"
917
+ #~ msgstr "المظاهر -< المربعات الجانبية"
918
+
919
+ #~ msgid "and look for Google Analytics Dashboard."
920
+ #~ msgstr "وابحث عن المربع الخاص بالأضافة."
921
+
922
  #~ msgid "Something went wrong, you need to"
923
  #~ msgstr "حدث خطأ ما, تحتاج الى"
924
 
languages/ga-dash-de_DE.mo CHANGED
Binary file
languages/ga-dash-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:40+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:40+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: pt_BR\n"
@@ -16,592 +16,383 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr "Google Analytics"
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr "Allgemeine Einstellungen"
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr "Backend Einstellungen"
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr "Frontend Einstellungen"
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr "Tracking Code"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Einstellungen"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Google Analytics Dashboard"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr "Diese Plugin benötigt eine Autorisierung:"
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr "Plugin autorisieren"
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr "Anzeigename:"
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
  msgstr ""
74
- "Ein Fehler ist aufgetreten. Die Profilliste konnte nicht abgerufen werden."
75
-
76
- #: .././admin/dashboard_widgets.php:221
77
- msgid "More details"
78
- msgstr "Mehr Details"
79
-
80
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
81
- msgid "An admin should asign a default Google Analytics Profile."
82
- msgstr "Ein Admin sollte ein Standardprofil festlegen."
83
-
84
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
85
- msgid "Select Domain"
86
- msgstr "Wähle eine Domain aus."
87
 
88
- #: .././admin/dashboard_widgets.php:250
89
- msgid ""
90
- "Something went wrong while retrieving property data. You need to create and "
91
- "properly configure a Google Analytics account:"
92
- msgstr ""
93
- "Ein Fehler ist aufgetreten. Dein Google Analytics Account muss erstellt und "
94
- "fertig konfiguriert sein:"
95
-
96
- #: .././admin/dashboard_widgets.php:250
97
- msgid "Find out more!"
98
- msgstr "Erfahre mehr!"
99
-
100
- #: .././admin/dashboard_widgets.php:278
101
- msgid "Real-Time"
102
- msgstr "Echtzeit"
103
-
104
- #: .././admin/dashboard_widgets.php:279
105
- msgid "Today"
106
- msgstr "Heute"
107
-
108
- #: .././admin/dashboard_widgets.php:281
109
- msgid "Yesterday"
110
- msgstr "Gestern"
111
-
112
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
113
- #: .././front/widgets.php:182
114
- msgid "Last 7 Days"
115
- msgstr "Letzten 7 Tage"
116
-
117
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
118
- #: .././front/widgets.php:183
119
- msgid "Last 14 Days"
120
- msgstr "Letzten 14 Tage"
121
-
122
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
123
- #: .././front/widgets.php:184
124
- msgid "Last 30 Days"
125
- msgstr "Letzten 30Tage"
126
-
127
- #: .././admin/dashboard_widgets.php:289
128
- msgid "Last 90 Days"
129
- msgstr "Letzten 90Tage"
130
-
131
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
132
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
133
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
134
- #: .././tools/gapi.php:825
135
- msgid "Sessions"
136
- msgstr ""
137
-
138
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
139
- #: .././tools/gapi.php:364
140
- msgid "Users"
141
- msgstr ""
142
-
143
- #: .././admin/dashboard_widgets.php:298
144
- msgid "Organic"
145
- msgstr "Organisch"
146
-
147
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
148
- #: .././tools/gapi.php:367
149
- msgid "Page Views"
150
- msgstr "Seitenaufrufe"
151
-
152
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
153
- #: .././tools/gapi.php:370
154
- msgid "Bounce Rate"
155
- msgstr "Absprungrate"
156
-
157
- #: .././admin/dashboard_widgets.php:304
158
- msgid "Location"
159
- msgstr ""
160
-
161
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
162
- msgid "Pages"
163
- msgstr ""
164
-
165
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
166
- msgid "Referrers"
167
- msgstr ""
168
-
169
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
170
- #: .././tools/gapi.php:825
171
- msgid "Searches"
172
- msgstr ""
173
-
174
- #: .././admin/dashboard_widgets.php:312
175
- msgid "Traffic Details"
176
- msgstr ""
177
-
178
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
179
- msgid "REFERRAL"
180
- msgstr "VERWEISUNG"
181
-
182
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
183
- msgid "ORGANIC"
184
- msgstr "ORGANISCH"
185
-
186
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
187
- #: .././admin/dashboard_widgets.php:647
188
- msgid "SOCIAL"
189
- msgstr "SOZIAL"
190
-
191
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
192
- #: .././admin/dashboard_widgets.php:648
193
- msgid "CAMPAIGN"
194
- msgstr ""
195
-
196
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
197
- #: .././admin/dashboard_widgets.php:651
198
- msgid "DIRECT"
199
- msgstr "DIREKT"
200
-
201
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
202
- msgid "NEW"
203
- msgstr "NEUE"
204
-
205
- #: .././admin/dashboard_widgets.php:526
206
- msgid "REFERRALS"
207
- msgstr "VERWEISUNGEN"
208
-
209
- #: .././admin/dashboard_widgets.php:529
210
- msgid "KEYWORDS"
211
- msgstr "STICHWORTE"
212
-
213
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
214
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
215
- #: .././front/frontend.php:88
216
- msgid "A JavaScript Error is blocking plugin resources!"
217
- msgstr ""
218
-
219
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
220
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
221
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
222
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
223
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
224
- #: .././front/frontend.php:119
225
- msgid "Invalid response, more details in JavaScript Console (F12)."
226
- msgstr ""
227
-
228
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
229
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
230
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
231
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
232
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
233
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
234
- #: .././front/frontend.php:124 .././front/widgets.php:110
235
- msgid "This report is unavailable"
236
- msgstr ""
237
-
238
- #: .././admin/dashboard_widgets.php:880
239
- msgid "Traffic Mediums"
240
- msgstr ""
241
-
242
- #: .././admin/dashboard_widgets.php:896
243
- msgid "Visitor Type"
244
- msgstr ""
245
-
246
- #: .././admin/dashboard_widgets.php:912
247
- msgid "Social Networks"
248
- msgstr ""
249
-
250
- #: .././admin/dashboard_widgets.php:928
251
- msgid "Search Engines"
252
- msgstr ""
253
-
254
- #: .././admin/dashboard_widgets.php:1053
255
- msgid "Organic Search"
256
- msgstr ""
257
-
258
- #: .././admin/dashboard_widgets.php:1057
259
- msgid "Pages/Session"
260
- msgstr ""
261
-
262
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
263
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
264
- #: .././admin/ga_dash_settings.php:1157
265
  msgid "Settings saved."
266
  msgstr ""
267
 
268
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
269
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
270
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
271
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
272
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
273
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
274
  msgid "Cheating Huh?"
275
  msgstr ""
276
 
277
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
278
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
279
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
280
  msgid "Something went wrong, check"
281
  msgstr ""
282
 
283
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
284
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
285
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
 
 
 
 
 
 
 
286
  msgid "or"
287
  msgstr ""
288
 
289
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
290
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
291
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
292
- msgid "auhorize the plugin"
293
  msgstr "das Plugin autorisieren"
294
 
295
- #: .././admin/ga_dash_settings.php:95
296
  msgid "Google Analytics Frontend Settings"
297
  msgstr "Google Analytics Frontend Einstellungen"
298
 
299
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
 
 
 
300
  msgid "Show stats to:"
301
  msgstr ""
302
 
303
- #: .././admin/ga_dash_settings.php:152
304
  msgid " show page sessions and users in frontend (after each article)"
305
  msgstr ""
306
 
307
- #: .././admin/ga_dash_settings.php:168
308
  msgid " show page searches (after each article)"
309
  msgstr "Suchen (nach jedem Artikel)"
310
 
311
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
312
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
313
- #: .././admin/ga_dash_settings.php:1351
314
  msgid "Save Changes"
315
  msgstr ""
316
 
317
- #: .././admin/ga_dash_settings.php:206
318
- msgid "Google Analytics Dashboard Settings"
319
- msgstr "Google Analytics Dashboard Einstellungen"
320
 
321
- #: .././admin/ga_dash_settings.php:264
322
  msgid "disable Switch Profile/View functionality"
323
  msgstr "Deaktiviere bzw. ändere das Profil/Zeige die Funktionalität"
324
 
325
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
326
  msgid "Real-Time Settings"
327
  msgstr "Echtzeit Einstellungen"
328
 
329
- #: .././admin/ga_dash_settings.php:271
330
  msgid "Maximum number of pages to display on real-time tab:"
331
  msgstr ""
332
  "Maximale Anzahl der Seiten, die in einem Echtzeit-Tab angezeigt werden "
333
  "sollen:"
334
 
335
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
336
  msgid "find out more"
337
  msgstr ""
338
 
339
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
340
  msgid "about this feature"
341
  msgstr "über diese Funktion"
342
 
343
- #: .././admin/ga_dash_settings.php:283
344
  msgid "Location Settings"
345
  msgstr ""
346
 
347
- #: .././admin/ga_dash_settings.php:287
348
  msgid "Target Geo Map to country:"
349
  msgstr ""
350
 
351
- #: .././admin/ga_dash_settings.php:336
352
  msgid "The tracking component is disabled. You should set"
353
  msgstr ""
354
 
355
- #: .././admin/ga_dash_settings.php:336
356
  msgid "Tracking Options"
357
  msgstr ""
358
 
359
- #: .././admin/ga_dash_settings.php:336
360
  msgid "to"
361
  msgstr ""
362
 
363
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
364
  msgid "Enabled"
365
  msgstr "Aktiviert"
366
 
367
- #: .././admin/ga_dash_settings.php:342
368
  msgid "Google Analytics Tracking Code"
369
  msgstr "Google Analytics Tracking Code"
370
 
371
- #: .././admin/ga_dash_settings.php:351
372
  msgid "Basic Settings"
373
  msgstr ""
374
 
375
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
376
  msgid "Events Tracking"
377
  msgstr "Event Tracking"
378
 
379
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
380
  msgid "Custom Definitions"
381
  msgstr ""
382
 
383
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
384
- #: .././admin/ga_dash_settings.php:1328
385
  msgid "Exclude Tracking"
386
  msgstr "Exkludiere Tracking"
387
 
388
- #: .././admin/ga_dash_settings.php:355
389
  msgid "Advanced Settings"
390
  msgstr ""
391
 
392
- #: .././admin/ga_dash_settings.php:363
393
  msgid "Tracking Settings"
394
  msgstr "Tracking Einstellungen"
395
 
396
- #: .././admin/ga_dash_settings.php:366
397
  msgid "Tracking Options:"
398
  msgstr ""
399
 
400
- #: .././admin/ga_dash_settings.php:370
401
  msgid "Disabled"
402
  msgstr "Deaktiviert"
403
 
404
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
405
  msgid "Tracking ID:"
406
  msgstr "Tracking ID:"
407
 
408
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
409
  msgid "Default URL:"
410
  msgstr "Standard URL:"
411
 
412
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
413
  msgid "Time Zone:"
414
  msgstr "Zeitzone"
415
 
416
- #: .././admin/ga_dash_settings.php:385
417
  msgid "Basic Tracking"
418
  msgstr "Basic Tracking"
419
 
420
- #: .././admin/ga_dash_settings.php:388
421
  msgid "Tracking Type:"
422
  msgstr ""
423
 
424
- #: .././admin/ga_dash_settings.php:392
425
  msgid "Classic Analytics"
426
  msgstr "Klassische Analyse"
427
 
428
- #: .././admin/ga_dash_settings.php:394
429
  msgid "Universal Analytics"
430
  msgstr "Universelle Analyse"
431
 
432
- #: .././admin/ga_dash_settings.php:408
433
  msgid " anonymize IPs while tracking"
434
  msgstr "Anonymisiere die IPs während des Trackings"
435
 
436
- #: .././admin/ga_dash_settings.php:423
437
  msgid " enable remarketing, demographics and interests reports"
438
  msgstr "Aktiviere remarketing, demografische und interessen berichte"
439
 
440
- #: .././admin/ga_dash_settings.php:445
441
  msgid " track downloads, mailto and outbound links"
442
  msgstr "Tracke Downlaods, mailtos und ausgehende Links"
443
 
444
- #: .././admin/ga_dash_settings.php:449
445
  msgid "Downloads Regex:"
446
  msgstr "Download Filter:"
447
 
448
- #: .././admin/ga_dash_settings.php:466
449
  msgid " track affiliate links matching this regex"
450
  msgstr ""
451
 
452
- #: .././admin/ga_dash_settings.php:470
453
  msgid "Affiliates Regex:"
454
  msgstr ""
455
 
456
- #: .././admin/ga_dash_settings.php:487
457
  msgid " track fragment identifiers, hashmarks (#) in URI links"
458
  msgstr ""
459
 
460
- #: .././admin/ga_dash_settings.php:498
461
  msgid "Authors:"
462
  msgstr ""
463
 
464
- #: .././admin/ga_dash_settings.php:508
465
  msgid "Publication Year:"
466
  msgstr ""
467
 
468
- #: .././admin/ga_dash_settings.php:518
469
  msgid "Categories:"
470
  msgstr ""
471
 
472
- #: .././admin/ga_dash_settings.php:528
473
  msgid "User Type:"
474
  msgstr ""
475
 
476
- #: .././admin/ga_dash_settings.php:542
477
  msgid "Advanced Tracking"
478
  msgstr "Advanced Tracking"
479
 
480
- #: .././admin/ga_dash_settings.php:545
481
  msgid "Page Speed SR:"
482
  msgstr "Seiten pro Besuch:"
483
 
484
- #: .././admin/ga_dash_settings.php:563
485
  msgid " exclude events from bounce-rate calculation"
486
  msgstr ""
487
 
488
- #: .././admin/ga_dash_settings.php:578
489
  msgid " enable enhanced link attribution"
490
  msgstr "Aktiviere die erweiterte Linkzuordnung"
491
 
492
- #: .././admin/ga_dash_settings.php:592
493
  msgid " enable AdSense account linking"
494
  msgstr ""
495
 
496
- #: .././admin/ga_dash_settings.php:608
497
  msgid " enable cross domain tracking"
498
  msgstr ""
499
 
500
- #: .././admin/ga_dash_settings.php:612
501
  msgid "Cross Domains:"
502
  msgstr ""
503
 
504
- #: .././admin/ga_dash_settings.php:626
505
  msgid "Exclude tracking for:"
506
  msgstr ""
507
 
508
- #: .././admin/ga_dash_settings.php:687
509
  msgid "Google Analytics Errors & Debugging"
510
  msgstr ""
511
 
512
- #: .././admin/ga_dash_settings.php:697
513
  msgid "Errors & Details"
514
  msgstr ""
515
 
516
- #: .././admin/ga_dash_settings.php:698
517
  msgid "Plugin Settings"
518
  msgstr ""
519
 
520
- #: .././admin/ga_dash_settings.php:706
521
  msgid "For errors and/or other issues please check"
522
  msgstr ""
523
 
524
- #: .././admin/ga_dash_settings.php:706
525
- msgid "the plugin documentation page"
526
  msgstr ""
527
 
528
- #: .././admin/ga_dash_settings.php:706
529
  msgid "and related tutorials"
530
  msgstr ""
531
 
532
- #: .././admin/ga_dash_settings.php:710
533
  msgid "Last Error detected"
534
  msgstr ""
535
 
536
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
537
  msgid "None"
538
  msgstr ""
539
 
540
- #: .././admin/ga_dash_settings.php:722
541
  msgid "Error Details"
542
  msgstr ""
543
 
544
- #: .././admin/ga_dash_settings.php:740
545
  msgid "Plugin Configuration"
546
  msgstr ""
547
 
548
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
549
  msgid ""
550
  "Loading the required libraries. If this results in a blank screen or a fatal "
551
  "error, try this solution:"
552
  msgstr ""
553
 
554
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
555
  msgid "Plugin authorization succeeded."
556
  msgstr "Plugin Autorisierung erfolgreich."
557
 
558
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
559
  msgid ""
560
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
561
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
562
  msgstr ""
563
 
564
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
565
  msgid "Cleared Cache."
566
  msgstr "Cache geleert."
567
 
568
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
569
  msgid "Token Reseted and Revoked."
570
  msgstr "Token zurückgesetzt und entzogen."
571
 
572
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
573
  msgid "All other domains/properties were removed."
574
  msgstr "Alle anderen Domains/Einstellungen wurden entfernt."
575
 
576
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
577
  msgid "Google Analytics Settings"
578
  msgstr "Google Analytics Einstellungen"
579
 
580
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
581
  msgid "Use the red link (see below) to generate and get your access code!"
582
  msgstr ""
583
 
584
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
585
  msgid "Plugin Authorization"
586
  msgstr "Plugin Autorisierung"
587
 
588
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
589
  msgid "You should watch the"
590
  msgstr "Du solltest dir das folgende"
591
 
592
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
593
  msgid "video"
594
  msgstr "Video ansehen"
595
 
596
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
597
  msgid "and read this"
598
  msgstr "und dieses"
599
 
600
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
601
  msgid "tutorial"
602
  msgstr "Tutorial lesen"
603
 
604
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
605
  msgid ""
606
  "before proceeding to authorization. This plugin requires a properly "
607
  "configured Google Analytics account"
@@ -609,156 +400,401 @@ msgstr ""
609
  "bevor du die Autorisierung fortsetzt. Hinweis: Dieses Plugin benötigt einen "
610
  "fertig konfigurierten Google Analytics Account"
611
 
612
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
613
  msgid " use your own API Project credentials"
614
  msgstr "Nutze deinen eigenen API Projekt Berechtigungsnachweis"
615
 
616
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
617
  msgid "API Key:"
618
  msgstr "API Key:"
619
 
620
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
621
  msgid "Client ID:"
622
  msgstr "Client ID:"
623
 
624
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
625
  msgid "Client Secret:"
626
  msgstr "Client Secret:"
627
 
628
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
629
  msgid "Clear Authorization"
630
  msgstr "Entferne die Autorisierung"
631
 
632
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
633
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
634
  msgid "Clear Cache"
635
  msgstr "Cache leeren"
636
 
637
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
 
 
638
  msgid "Select Domain:"
639
  msgstr ""
640
 
641
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
642
  msgid "Property not found"
643
  msgstr ""
644
 
645
- #: .././admin/ga_dash_settings.php:985
646
  msgid "and/or hide all other domains"
647
  msgstr "und/oder verberge alle anderen Domains"
648
 
649
- #: .././admin/ga_dash_settings.php:988
650
  msgid "Hide Now"
651
  msgstr "Jetzt verbergen"
652
 
653
- #: .././admin/ga_dash_settings.php:1007
654
  msgid "Theme Color:"
655
  msgstr ""
656
 
657
- #: .././admin/ga_dash_settings.php:1017
658
- msgid "A new frontend widget is available! To enable it, go to"
659
- msgstr "Ein neues Frontend Widget ist verfügbar! Um es zu aktivieren, gehe zu"
660
 
661
- #: .././admin/ga_dash_settings.php:1017
662
- msgid "Appearance -> Widgets"
663
- msgstr "Design -> Widgets"
 
 
664
 
665
- #: .././admin/ga_dash_settings.php:1017
666
- msgid "and look for Google Analytics Dashboard."
667
- msgstr "und suche nach Google Analytics Dashboard."
 
668
 
669
- #: .././admin/ga_dash_settings.php:1115
670
  msgid "Properties refreshed."
671
  msgstr ""
672
 
673
- #: .././admin/ga_dash_settings.php:1201
674
  msgid "Network Setup"
675
  msgstr ""
676
 
677
- #: .././admin/ga_dash_settings.php:1216
678
  msgid " use a single Google Analytics account for the entire network"
679
  msgstr ""
680
 
681
- #: .././admin/ga_dash_settings.php:1288
682
  msgid "Refresh Properties"
683
  msgstr ""
684
 
685
- #: .././admin/ga_dash_settings.php:1294
686
  msgid "Properties/Views Settings"
687
  msgstr "Frontend Einstellungen"
688
 
689
- #: .././admin/ga_dash_settings.php:1342
690
  msgid " exclude Super Admin tracking for the entire network"
691
  msgstr ""
692
 
693
- #: .././admin/ga_dash_settings.php:1394
694
  msgid "Setup Tutorial & Demo"
695
  msgstr "Setup Tutorial & Demo"
696
 
697
- #: .././admin/ga_dash_settings.php:1406
698
  msgid "Support & Reviews"
699
  msgstr "Support & Bewertungen"
700
 
701
- #: .././admin/ga_dash_settings.php:1414
702
  msgid "Plugin documentation and support on"
703
  msgstr ""
704
 
705
- #: .././admin/ga_dash_settings.php:1421
706
  msgid "Your feedback and review are both important,"
707
  msgstr "Deine Feedbacks und Bewertungen sind wichtig,"
708
 
709
- #: .././admin/ga_dash_settings.php:1421
710
  msgid "rate this plugin"
711
  msgstr "Bewerte dieses Plugin"
712
 
713
- #: .././admin/ga_dash_settings.php:1426
714
  msgid "Further Reading"
715
  msgstr "Mehr erfahren"
716
 
717
- #: .././admin/ga_dash_settings.php:1434
718
  msgid "Improve search rankings"
719
  msgstr ""
720
 
721
- #: .././admin/ga_dash_settings.php:1434
722
  msgid "by moving your website to HTTPS/SSL."
723
  msgstr ""
724
 
725
- #: .././admin/ga_dash_settings.php:1441
726
  msgid "Other"
727
  msgstr "Andere"
728
 
729
- #: .././admin/ga_dash_settings.php:1441
730
  msgid "WordPress Plugins"
731
  msgstr "WordPress Plugins"
732
 
733
- #: .././admin/ga_dash_settings.php:1441
734
  msgid "written by the same author"
735
  msgstr "vom selben Autor"
736
 
737
- #: .././admin/ga_dash_settings.php:1446
738
  msgid "Other Services"
739
  msgstr ""
740
 
741
- #: .././admin/ga_dash_settings.php:1453
742
  msgid "Speed up your website and plug into a whole"
743
  msgstr ""
744
 
745
- #: .././admin/ga_dash_settings.php:1453
746
  msgid "new level of site speed"
747
  msgstr ""
748
 
749
- #: .././admin/ga_dash_settings.php:1460
750
  msgid "Web Analytics"
751
  msgstr "Web Analyse"
752
 
753
- #: .././admin/ga_dash_settings.php:1460
754
  msgid "service with users tracking at IP level."
755
  msgstr ""
756
 
757
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
  msgid "Views vs UniqueViews"
759
  msgstr "Aufrufe vs. Einmalige Aufrufe"
760
 
761
- #: .././front/frontend.php:184
762
  msgid "Google Analytics Reports"
763
  msgstr ""
764
 
@@ -766,114 +802,127 @@ msgstr ""
766
  msgid "Will display your google analytics stats in a widget"
767
  msgstr "Zeigt deine Google Analytics Statistik in einem Widget an"
768
 
769
- #: .././front/widgets.php:40 .././tools/gapi.php:744
770
  msgid "trend"
771
  msgstr ""
772
 
773
- #: .././front/widgets.php:133
774
  msgid "Period:"
775
  msgstr "Dauer:"
776
 
777
- #: .././front/widgets.php:133
778
  msgid "Sessions:"
779
  msgstr ""
780
 
781
- #: .././front/widgets.php:137
782
  msgid "generated by"
783
  msgstr "Generiert von"
784
 
785
- #: .././front/widgets.php:147
786
  msgid "Google Analytics Stats"
787
  msgstr "Google Analytics Statistik"
788
 
789
- #: .././front/widgets.php:154
790
  msgid "Title:"
791
  msgstr "Titel"
792
 
793
- #: .././front/widgets.php:161
794
  msgid "Display:"
795
  msgstr "Anzeige"
796
 
797
- #: .././front/widgets.php:165
798
  msgid "Chart & Totals"
799
  msgstr "Diagramm & Bilanz"
800
 
801
- #: .././front/widgets.php:166
802
  msgid "Chart"
803
  msgstr "Diagramm"
804
 
805
- #: .././front/widgets.php:167
806
  msgid "Totals"
807
  msgstr "Bilanz"
808
 
809
- #: .././front/widgets.php:171
810
  msgid "Anonymize stats:"
811
  msgstr ""
812
 
813
- #: .././front/widgets.php:178
814
  msgid "Stats for:"
815
  msgstr "Statistiken für:"
816
 
817
- #: .././front/widgets.php:188
818
  msgid "Give credits:"
819
  msgstr "Verweise auf:"
820
 
821
- #: .././tools/gapi.php:129
822
  msgid "Use this link to get your access code:"
823
  msgstr "Nutze diesen Link, um deinen Zugriffscode zu erhalten:"
824
 
825
- #: .././tools/gapi.php:129
826
  msgid "Get Access Code"
827
  msgstr "Erhalte den Zugriffscode"
828
 
829
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
830
  msgid "Use the red link to get your access code!"
831
  msgstr ""
832
 
833
- #: .././tools/gapi.php:134
834
  msgid "Access Code:"
835
  msgstr "Zugriffscode:"
836
 
837
- #: .././tools/gapi.php:146
838
  msgid "Save Access Code"
839
  msgstr "Zugriffscode speichern"
840
 
841
- #: .././tools/gapi.php:373
842
  msgid "Organic Searches"
843
  msgstr "Organische Suche"
844
 
845
- #: .././tools/gapi.php:381
846
  msgid "Hour"
847
  msgstr "Stunde"
848
 
849
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
850
  msgid "Date"
851
  msgstr "Datum"
852
 
853
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
854
  msgid "Views"
855
  msgstr "Aufrufe"
856
 
857
- #: .././tools/gapi.php:576
858
  msgid "Countries"
859
  msgstr ""
860
 
861
- #: .././tools/gapi.php:590
862
  msgid "Cities from"
863
  msgstr ""
864
 
865
- #: .././tools/gapi.php:644
866
  msgid "Channels"
867
  msgstr ""
868
 
869
- #: .././tools/gapi.php:698
870
  msgid "Type"
871
  msgstr "Typ"
872
 
873
- #: .././tools/gapi.php:783
874
  msgid "UniqueViews"
875
  msgstr "Einmalige Aufrufe"
876
 
 
 
 
 
 
 
 
 
 
 
 
 
 
877
  #~ msgid "Something went wrong, you need to"
878
  #~ msgstr "Ein Fehler ist aufgetreten. Du musst"
879
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-10 19:15+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:15+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: pt_BR\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
22
 
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings saved."
27
  msgstr ""
28
 
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
  msgid "Cheating Huh?"
37
  msgstr ""
38
 
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
  msgid "Something went wrong, check"
43
  msgstr ""
44
 
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr ""
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
  msgid "or"
56
  msgstr ""
57
 
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
  msgstr "das Plugin autorisieren"
63
 
64
+ #: .././admin/settings.php:98
65
  msgid "Google Analytics Frontend Settings"
66
  msgstr "Google Analytics Frontend Einstellungen"
67
 
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
  msgid "Show stats to:"
74
  msgstr ""
75
 
76
+ #: .././admin/settings.php:159
77
  msgid " show page sessions and users in frontend (after each article)"
78
  msgstr ""
79
 
80
+ #: .././admin/settings.php:175
81
  msgid " show page searches (after each article)"
82
  msgstr "Suchen (nach jedem Artikel)"
83
 
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
  msgid "Save Changes"
88
  msgstr ""
89
 
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
 
94
+ #: .././admin/settings.php:279
95
  msgid "disable Switch Profile/View functionality"
96
  msgstr "Deaktiviere bzw. ändere das Profil/Zeige die Funktionalität"
97
 
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
  msgid "Real-Time Settings"
108
  msgstr "Echtzeit Einstellungen"
109
 
110
+ #: .././admin/settings.php:316
111
  msgid "Maximum number of pages to display on real-time tab:"
112
  msgstr ""
113
  "Maximale Anzahl der Seiten, die in einem Echtzeit-Tab angezeigt werden "
114
  "sollen:"
115
 
116
+ #: .././admin/settings.php:321 .././admin/settings.php:337
117
  msgid "find out more"
118
  msgstr ""
119
 
120
+ #: .././admin/settings.php:323 .././admin/settings.php:340
121
  msgid "about this feature"
122
  msgstr "über diese Funktion"
123
 
124
+ #: .././admin/settings.php:328
125
  msgid "Location Settings"
126
  msgstr ""
127
 
128
+ #: .././admin/settings.php:332
129
  msgid "Target Geo Map to country:"
130
  msgstr ""
131
 
132
+ #: .././admin/settings.php:381
133
  msgid "The tracking component is disabled. You should set"
134
  msgstr ""
135
 
136
+ #: .././admin/settings.php:381
137
  msgid "Tracking Options"
138
  msgstr ""
139
 
140
+ #: .././admin/settings.php:381
141
  msgid "to"
142
  msgstr ""
143
 
144
+ #: .././admin/settings.php:381 .././admin/settings.php:417
145
  msgid "Enabled"
146
  msgstr "Aktiviert"
147
 
148
+ #: .././admin/settings.php:387
149
  msgid "Google Analytics Tracking Code"
150
  msgstr "Google Analytics Tracking Code"
151
 
152
+ #: .././admin/settings.php:396
153
  msgid "Basic Settings"
154
  msgstr ""
155
 
156
+ #: .././admin/settings.php:397 .././admin/settings.php:476
157
  msgid "Events Tracking"
158
  msgstr "Event Tracking"
159
 
160
+ #: .././admin/settings.php:398 .././admin/settings.php:540
161
  msgid "Custom Definitions"
162
  msgstr ""
163
 
164
+ #: .././admin/settings.php:399 .././admin/settings.php:668
165
+ #: .././admin/settings.php:1405
166
  msgid "Exclude Tracking"
167
  msgstr "Exkludiere Tracking"
168
 
169
+ #: .././admin/settings.php:400
170
  msgid "Advanced Settings"
171
  msgstr ""
172
 
173
+ #: .././admin/settings.php:408
174
  msgid "Tracking Settings"
175
  msgstr "Tracking Einstellungen"
176
 
177
+ #: .././admin/settings.php:411
178
  msgid "Tracking Options:"
179
  msgstr ""
180
 
181
+ #: .././admin/settings.php:415
182
  msgid "Disabled"
183
  msgstr "Deaktiviert"
184
 
185
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
186
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
187
+ #: .././admin/widgets.php:67
188
+ msgid "View Name:"
189
+ msgstr "Anzeigename:"
190
+
191
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
192
  msgid "Tracking ID:"
193
  msgstr "Tracking ID:"
194
 
195
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
196
  msgid "Default URL:"
197
  msgstr "Standard URL:"
198
 
199
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
200
  msgid "Time Zone:"
201
  msgstr "Zeitzone"
202
 
203
+ #: .././admin/settings.php:430
204
  msgid "Basic Tracking"
205
  msgstr "Basic Tracking"
206
 
207
+ #: .././admin/settings.php:433
208
  msgid "Tracking Type:"
209
  msgstr ""
210
 
211
+ #: .././admin/settings.php:437
212
  msgid "Classic Analytics"
213
  msgstr "Klassische Analyse"
214
 
215
+ #: .././admin/settings.php:439
216
  msgid "Universal Analytics"
217
  msgstr "Universelle Analyse"
218
 
219
+ #: .././admin/settings.php:453
220
  msgid " anonymize IPs while tracking"
221
  msgstr "Anonymisiere die IPs während des Trackings"
222
 
223
+ #: .././admin/settings.php:468
224
  msgid " enable remarketing, demographics and interests reports"
225
  msgstr "Aktiviere remarketing, demografische und interessen berichte"
226
 
227
+ #: .././admin/settings.php:490
228
  msgid " track downloads, mailto and outbound links"
229
  msgstr "Tracke Downlaods, mailtos und ausgehende Links"
230
 
231
+ #: .././admin/settings.php:494
232
  msgid "Downloads Regex:"
233
  msgstr "Download Filter:"
234
 
235
+ #: .././admin/settings.php:511
236
  msgid " track affiliate links matching this regex"
237
  msgstr ""
238
 
239
+ #: .././admin/settings.php:515
240
  msgid "Affiliates Regex:"
241
  msgstr ""
242
 
243
+ #: .././admin/settings.php:532
244
  msgid " track fragment identifiers, hashmarks (#) in URI links"
245
  msgstr ""
246
 
247
+ #: .././admin/settings.php:543
248
  msgid "Authors:"
249
  msgstr ""
250
 
251
+ #: .././admin/settings.php:553
252
  msgid "Publication Year:"
253
  msgstr ""
254
 
255
+ #: .././admin/settings.php:563
256
  msgid "Categories:"
257
  msgstr ""
258
 
259
+ #: .././admin/settings.php:573
260
  msgid "User Type:"
261
  msgstr ""
262
 
263
+ #: .././admin/settings.php:587
264
  msgid "Advanced Tracking"
265
  msgstr "Advanced Tracking"
266
 
267
+ #: .././admin/settings.php:590
268
  msgid "Page Speed SR:"
269
  msgstr "Seiten pro Besuch:"
270
 
271
+ #: .././admin/settings.php:608
272
  msgid " exclude events from bounce-rate calculation"
273
  msgstr ""
274
 
275
+ #: .././admin/settings.php:623
276
  msgid " enable enhanced link attribution"
277
  msgstr "Aktiviere die erweiterte Linkzuordnung"
278
 
279
+ #: .././admin/settings.php:637
280
  msgid " enable AdSense account linking"
281
  msgstr ""
282
 
283
+ #: .././admin/settings.php:653
284
  msgid " enable cross domain tracking"
285
  msgstr ""
286
 
287
+ #: .././admin/settings.php:657
288
  msgid "Cross Domains:"
289
  msgstr ""
290
 
291
+ #: .././admin/settings.php:671
292
  msgid "Exclude tracking for:"
293
  msgstr ""
294
 
295
+ #: .././admin/settings.php:741
296
  msgid "Google Analytics Errors & Debugging"
297
  msgstr ""
298
 
299
+ #: .././admin/settings.php:751
300
  msgid "Errors & Details"
301
  msgstr ""
302
 
303
+ #: .././admin/settings.php:752
304
  msgid "Plugin Settings"
305
  msgstr ""
306
 
307
+ #: .././admin/settings.php:760
308
  msgid "For errors and/or other issues please check"
309
  msgstr ""
310
 
311
+ #: .././admin/settings.php:760
312
+ msgid "this documentation page"
313
  msgstr ""
314
 
315
+ #: .././admin/settings.php:760
316
  msgid "and related tutorials"
317
  msgstr ""
318
 
319
+ #: .././admin/settings.php:764
320
  msgid "Last Error detected"
321
  msgstr ""
322
 
323
+ #: .././admin/settings.php:769 .././admin/settings.php:782
324
  msgid "None"
325
  msgstr ""
326
 
327
+ #: .././admin/settings.php:776
328
  msgid "Error Details"
329
  msgstr ""
330
 
331
+ #: .././admin/settings.php:796
332
  msgid "Plugin Configuration"
333
  msgstr ""
334
 
335
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
336
  msgid ""
337
  "Loading the required libraries. If this results in a blank screen or a fatal "
338
  "error, try this solution:"
339
  msgstr ""
340
 
341
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
342
  msgid "Plugin authorization succeeded."
343
  msgstr "Plugin Autorisierung erfolgreich."
344
 
345
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
346
  msgid ""
347
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
348
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
349
  msgstr ""
350
 
351
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
352
  msgid "Cleared Cache."
353
  msgstr "Cache geleert."
354
 
355
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
356
  msgid "Token Reseted and Revoked."
357
  msgstr "Token zurückgesetzt und entzogen."
358
 
359
+ #: .././admin/settings.php:910
360
+ msgid "All errors reseted."
361
+ msgstr ""
362
+
363
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
364
  msgid "All other domains/properties were removed."
365
  msgstr "Alle anderen Domains/Einstellungen wurden entfernt."
366
 
367
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
368
  msgid "Google Analytics Settings"
369
  msgstr "Google Analytics Einstellungen"
370
 
371
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
372
  msgid "Use the red link (see below) to generate and get your access code!"
373
  msgstr ""
374
 
375
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
376
  msgid "Plugin Authorization"
377
  msgstr "Plugin Autorisierung"
378
 
379
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
380
  msgid "You should watch the"
381
  msgstr "Du solltest dir das folgende"
382
 
383
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
384
  msgid "video"
385
  msgstr "Video ansehen"
386
 
387
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
388
  msgid "and read this"
389
  msgstr "und dieses"
390
 
391
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
392
  msgid "tutorial"
393
  msgstr "Tutorial lesen"
394
 
395
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
396
  msgid ""
397
  "before proceeding to authorization. This plugin requires a properly "
398
  "configured Google Analytics account"
400
  "bevor du die Autorisierung fortsetzt. Hinweis: Dieses Plugin benötigt einen "
401
  "fertig konfigurierten Google Analytics Account"
402
 
403
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
404
  msgid " use your own API Project credentials"
405
  msgstr "Nutze deinen eigenen API Projekt Berechtigungsnachweis"
406
 
407
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
408
  msgid "API Key:"
409
  msgstr "API Key:"
410
 
411
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
412
  msgid "Client ID:"
413
  msgstr "Client ID:"
414
 
415
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
416
  msgid "Client Secret:"
417
  msgstr "Client Secret:"
418
 
419
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
420
  msgid "Clear Authorization"
421
  msgstr "Entferne die Autorisierung"
422
 
423
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
424
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
425
  msgid "Clear Cache"
426
  msgstr "Cache leeren"
427
 
428
+ #: .././admin/settings.php:1022
429
+ msgid "Reset Errors"
430
+ msgstr ""
431
+
432
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
433
+ #: .././admin/setup.php:109
434
+ msgid "General Settings"
435
+ msgstr "Allgemeine Einstellungen"
436
+
437
+ #: .././admin/settings.php:1031
438
  msgid "Select Domain:"
439
  msgstr ""
440
 
441
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
442
  msgid "Property not found"
443
  msgstr ""
444
 
445
+ #: .././admin/settings.php:1049
446
  msgid "and/or hide all other domains"
447
  msgstr "und/oder verberge alle anderen Domains"
448
 
449
+ #: .././admin/settings.php:1052
450
  msgid "Hide Now"
451
  msgstr "Jetzt verbergen"
452
 
453
+ #: .././admin/settings.php:1071
454
  msgid "Theme Color:"
455
  msgstr ""
456
 
457
+ #: .././admin/settings.php:1081
458
+ msgid "Automatic Updates"
459
+ msgstr ""
460
 
461
+ #: .././admin/settings.php:1097
462
+ msgid ""
463
+ "automatic updates for minor versions (security and maintainance releases "
464
+ "only)"
465
+ msgstr ""
466
 
467
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
468
+ #: .././admin/widgets.php:38
469
+ msgid "Authorize Plugin"
470
+ msgstr "Plugin autorisieren"
471
 
472
+ #: .././admin/settings.php:1192
473
  msgid "Properties refreshed."
474
  msgstr ""
475
 
476
+ #: .././admin/settings.php:1278
477
  msgid "Network Setup"
478
  msgstr ""
479
 
480
+ #: .././admin/settings.php:1293
481
  msgid " use a single Google Analytics account for the entire network"
482
  msgstr ""
483
 
484
+ #: .././admin/settings.php:1365
485
  msgid "Refresh Properties"
486
  msgstr ""
487
 
488
+ #: .././admin/settings.php:1371
489
  msgid "Properties/Views Settings"
490
  msgstr "Frontend Einstellungen"
491
 
492
+ #: .././admin/settings.php:1419
493
  msgid " exclude Super Admin tracking for the entire network"
494
  msgstr ""
495
 
496
+ #: .././admin/settings.php:1471
497
  msgid "Setup Tutorial & Demo"
498
  msgstr "Setup Tutorial & Demo"
499
 
500
+ #: .././admin/settings.php:1483
501
  msgid "Support & Reviews"
502
  msgstr "Support & Bewertungen"
503
 
504
+ #: .././admin/settings.php:1491
505
  msgid "Plugin documentation and support on"
506
  msgstr ""
507
 
508
+ #: .././admin/settings.php:1498
509
  msgid "Your feedback and review are both important,"
510
  msgstr "Deine Feedbacks und Bewertungen sind wichtig,"
511
 
512
+ #: .././admin/settings.php:1498
513
  msgid "rate this plugin"
514
  msgstr "Bewerte dieses Plugin"
515
 
516
+ #: .././admin/settings.php:1503
517
  msgid "Further Reading"
518
  msgstr "Mehr erfahren"
519
 
520
+ #: .././admin/settings.php:1511
521
  msgid "Improve search rankings"
522
  msgstr ""
523
 
524
+ #: .././admin/settings.php:1511
525
  msgid "by moving your website to HTTPS/SSL."
526
  msgstr ""
527
 
528
+ #: .././admin/settings.php:1518
529
  msgid "Other"
530
  msgstr "Andere"
531
 
532
+ #: .././admin/settings.php:1518
533
  msgid "WordPress Plugins"
534
  msgstr "WordPress Plugins"
535
 
536
+ #: .././admin/settings.php:1518
537
  msgid "written by the same author"
538
  msgstr "vom selben Autor"
539
 
540
+ #: .././admin/settings.php:1523
541
  msgid "Other Services"
542
  msgstr ""
543
 
544
+ #: .././admin/settings.php:1531
545
  msgid "Speed up your website and plug into a whole"
546
  msgstr ""
547
 
548
+ #: .././admin/settings.php:1531
549
  msgid "new level of site speed"
550
  msgstr ""
551
 
552
+ #: .././admin/settings.php:1538
553
  msgid "Web Analytics"
554
  msgstr "Web Analyse"
555
 
556
+ #: .././admin/settings.php:1538
557
  msgid "service with users tracking at IP level."
558
  msgstr ""
559
 
560
+ #: .././admin/setup.php:69 .././admin/setup.php:105
561
+ msgid "Google Analytics"
562
+ msgstr "Google Analytics"
563
+
564
+ #: .././admin/setup.php:77
565
+ msgid "Backend Settings"
566
+ msgstr "Backend Einstellungen"
567
+
568
+ #: .././admin/setup.php:81
569
+ msgid "Frontend Settings"
570
+ msgstr "Frontend Einstellungen"
571
+
572
+ #: .././admin/setup.php:85
573
+ msgid "Tracking Code"
574
+ msgstr "Tracking Code"
575
+
576
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
577
+ msgid "Today"
578
+ msgstr "Heute"
579
+
580
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
581
+ msgid "Yesterday"
582
+ msgstr "Gestern"
583
+
584
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
585
+ #: .././front/widgets.php:68 .././front/widgets.php:176
586
+ msgid "Last 7 Days"
587
+ msgstr "Letzten 7 Tage"
588
+
589
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
590
+ #: .././front/widgets.php:74 .././front/widgets.php:178
591
+ msgid "Last 30 Days"
592
+ msgstr "Letzten 30Tage"
593
+
594
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
595
+ msgid "Last 90 Days"
596
+ msgstr "Letzten 90Tage"
597
+
598
+ #: .././admin/setup.php:197 .././admin/setup.php:213
599
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
600
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
601
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
602
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
603
+ msgid "Sessions"
604
+ msgstr ""
605
+
606
+ #: .././admin/setup.php:198 .././admin/setup.php:214
607
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
608
+ #: .././tools/gapi.php:372
609
+ msgid "Users"
610
+ msgstr ""
611
+
612
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
613
+ msgid "Organic"
614
+ msgstr "Organisch"
615
+
616
+ #: .././admin/setup.php:200 .././admin/setup.php:215
617
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
618
+ #: .././tools/gapi.php:375
619
+ msgid "Page Views"
620
+ msgstr "Seitenaufrufe"
621
+
622
+ #: .././admin/setup.php:201 .././admin/setup.php:216
623
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
624
+ #: .././tools/gapi.php:378
625
+ msgid "Bounce Rate"
626
+ msgstr "Absprungrate"
627
+
628
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
629
+ msgid "Location"
630
+ msgstr ""
631
+
632
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
633
+ msgid "Referrers"
634
+ msgstr ""
635
+
636
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
637
+ #: .././tools/gapi.php:898
638
+ msgid "Searches"
639
+ msgstr ""
640
+
641
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
642
+ msgid "Traffic Details"
643
+ msgstr ""
644
+
645
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
646
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
647
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
648
+ msgid "A JavaScript Error is blocking plugin resources!"
649
+ msgstr ""
650
+
651
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
652
+ msgid "Traffic Mediums"
653
+ msgstr ""
654
+
655
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
656
+ msgid "Visitor Type"
657
+ msgstr ""
658
+
659
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
660
+ msgid "Social Networks"
661
+ msgstr ""
662
+
663
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
664
+ msgid "Search Engines"
665
+ msgstr ""
666
+
667
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
668
+ msgid "Organic Search"
669
+ msgstr ""
670
+
671
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
672
+ msgid "Pages/Session"
673
+ msgstr ""
674
+
675
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
676
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
677
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
678
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
679
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
680
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
681
+ #: .././front/item-reports.php:115
682
+ msgid "Invalid response, more details in JavaScript Console (F12)."
683
+ msgstr ""
684
+
685
+ #: .././admin/setup.php:220
686
+ msgid "Not enough data collected"
687
+ msgstr ""
688
+
689
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
690
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
691
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
692
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
693
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
694
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
695
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
696
+ #: .././front/widgets.php:104
697
+ msgid "This report is unavailable"
698
+ msgstr ""
699
+
700
+ #: .././admin/setup.php:222
701
+ msgid "report generated by"
702
+ msgstr ""
703
+
704
+ #: .././admin/setup.php:260
705
+ msgid "Settings"
706
+ msgstr "Einstellungen"
707
+
708
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
709
+ msgid "Google Analytics Dashboard"
710
+ msgstr "Google Analytics Dashboard"
711
+
712
+ #: .././admin/widgets.php:38
713
+ msgid "This plugin needs an authorization:"
714
+ msgstr "Diese Plugin benötigt eine Autorisierung:"
715
+
716
+ #: .././admin/widgets.php:72
717
+ msgid "Something went wrong while retrieving profiles list."
718
+ msgstr ""
719
+ "Ein Fehler ist aufgetreten. Die Profilliste konnte nicht abgerufen werden."
720
+
721
+ #: .././admin/widgets.php:72
722
+ msgid "More details"
723
+ msgstr "Mehr Details"
724
+
725
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
726
+ msgid "An admin should asign a default Google Analytics Profile."
727
+ msgstr "Ein Admin sollte ein Standardprofil festlegen."
728
+
729
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
730
+ msgid "Select Domain"
731
+ msgstr "Wähle eine Domain aus."
732
+
733
+ #: .././admin/widgets.php:101
734
+ msgid ""
735
+ "Something went wrong while retrieving property data. You need to create and "
736
+ "properly configure a Google Analytics account:"
737
+ msgstr ""
738
+ "Ein Fehler ist aufgetreten. Dein Google Analytics Account muss erstellt und "
739
+ "fertig konfiguriert sein:"
740
+
741
+ #: .././admin/widgets.php:101
742
+ msgid "Find out more!"
743
+ msgstr "Erfahre mehr!"
744
+
745
+ #: .././admin/widgets.php:122
746
+ msgid "Real-Time"
747
+ msgstr "Echtzeit"
748
+
749
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
750
+ #: .././front/widgets.php:177
751
+ msgid "Last 14 Days"
752
+ msgstr "Letzten 14 Tage"
753
+
754
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
755
+ msgid "Pages"
756
+ msgstr ""
757
+
758
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
759
+ msgid "REFERRAL"
760
+ msgstr "VERWEISUNG"
761
+
762
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
763
+ msgid "ORGANIC"
764
+ msgstr "ORGANISCH"
765
+
766
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
767
+ #: .././admin/widgets.php:486
768
+ msgid "SOCIAL"
769
+ msgstr "SOZIAL"
770
+
771
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
772
+ #: .././admin/widgets.php:487
773
+ msgid "CAMPAIGN"
774
+ msgstr ""
775
+
776
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
777
+ #: .././admin/widgets.php:490
778
+ msgid "DIRECT"
779
+ msgstr "DIREKT"
780
+
781
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
782
+ msgid "NEW"
783
+ msgstr "NEUE"
784
+
785
+ #: .././admin/widgets.php:366
786
+ msgid "REFERRALS"
787
+ msgstr "VERWEISUNGEN"
788
+
789
+ #: .././admin/widgets.php:369
790
+ msgid "KEYWORDS"
791
+ msgstr "STICHWORTE"
792
+
793
+ #: .././front/item-reports.php:130
794
  msgid "Views vs UniqueViews"
795
  msgstr "Aufrufe vs. Einmalige Aufrufe"
796
 
797
+ #: .././front/item-reports.php:180
798
  msgid "Google Analytics Reports"
799
  msgstr ""
800
 
802
  msgid "Will display your google analytics stats in a widget"
803
  msgstr "Zeigt deine Google Analytics Statistik in einem Widget an"
804
 
805
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
806
  msgid "trend"
807
  msgstr ""
808
 
809
+ #: .././front/widgets.php:127
810
  msgid "Period:"
811
  msgstr "Dauer:"
812
 
813
+ #: .././front/widgets.php:127
814
  msgid "Sessions:"
815
  msgstr ""
816
 
817
+ #: .././front/widgets.php:131
818
  msgid "generated by"
819
  msgstr "Generiert von"
820
 
821
+ #: .././front/widgets.php:141
822
  msgid "Google Analytics Stats"
823
  msgstr "Google Analytics Statistik"
824
 
825
+ #: .././front/widgets.php:148
826
  msgid "Title:"
827
  msgstr "Titel"
828
 
829
+ #: .././front/widgets.php:155
830
  msgid "Display:"
831
  msgstr "Anzeige"
832
 
833
+ #: .././front/widgets.php:159
834
  msgid "Chart & Totals"
835
  msgstr "Diagramm & Bilanz"
836
 
837
+ #: .././front/widgets.php:160
838
  msgid "Chart"
839
  msgstr "Diagramm"
840
 
841
+ #: .././front/widgets.php:161
842
  msgid "Totals"
843
  msgstr "Bilanz"
844
 
845
+ #: .././front/widgets.php:165
846
  msgid "Anonymize stats:"
847
  msgstr ""
848
 
849
+ #: .././front/widgets.php:172
850
  msgid "Stats for:"
851
  msgstr "Statistiken für:"
852
 
853
+ #: .././front/widgets.php:182
854
  msgid "Give credits:"
855
  msgstr "Verweise auf:"
856
 
857
+ #: .././tools/gapi.php:128
858
  msgid "Use this link to get your access code:"
859
  msgstr "Nutze diesen Link, um deinen Zugriffscode zu erhalten:"
860
 
861
+ #: .././tools/gapi.php:128
862
  msgid "Get Access Code"
863
  msgstr "Erhalte den Zugriffscode"
864
 
865
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
866
  msgid "Use the red link to get your access code!"
867
  msgstr ""
868
 
869
+ #: .././tools/gapi.php:133
870
  msgid "Access Code:"
871
  msgstr "Zugriffscode:"
872
 
873
+ #: .././tools/gapi.php:145
874
  msgid "Save Access Code"
875
  msgstr "Zugriffscode speichern"
876
 
877
+ #: .././tools/gapi.php:381
878
  msgid "Organic Searches"
879
  msgstr "Organische Suche"
880
 
881
+ #: .././tools/gapi.php:389
882
  msgid "Hour"
883
  msgstr "Stunde"
884
 
885
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
886
  msgid "Date"
887
  msgstr "Datum"
888
 
889
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
890
  msgid "Views"
891
  msgstr "Aufrufe"
892
 
893
+ #: .././tools/gapi.php:617
894
  msgid "Countries"
895
  msgstr ""
896
 
897
+ #: .././tools/gapi.php:626
898
  msgid "Cities from"
899
  msgstr ""
900
 
901
+ #: .././tools/gapi.php:698
902
  msgid "Channels"
903
  msgstr ""
904
 
905
+ #: .././tools/gapi.php:761
906
  msgid "Type"
907
  msgstr "Typ"
908
 
909
+ #: .././tools/gapi.php:856
910
  msgid "UniqueViews"
911
  msgstr "Einmalige Aufrufe"
912
 
913
+ #~ msgid "Google Analytics Dashboard Settings"
914
+ #~ msgstr "Google Analytics Dashboard Einstellungen"
915
+
916
+ #~ msgid "A new frontend widget is available! To enable it, go to"
917
+ #~ msgstr ""
918
+ #~ "Ein neues Frontend Widget ist verfügbar! Um es zu aktivieren, gehe zu"
919
+
920
+ #~ msgid "Appearance -> Widgets"
921
+ #~ msgstr "Design -> Widgets"
922
+
923
+ #~ msgid "and look for Google Analytics Dashboard."
924
+ #~ msgstr "und suche nach Google Analytics Dashboard."
925
+
926
  #~ msgid "Something went wrong, you need to"
927
  #~ msgstr "Ein Fehler ist aufgetreten. Du musst"
928
 
languages/ga-dash-es_ES.mo CHANGED
Binary file
languages/ga-dash-es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:40+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:40+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
@@ -15,767 +15,803 @@ msgstr ""
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ../.\n"
17
 
18
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
19
- msgid "Google Analytics"
20
- msgstr "Google Analytics"
21
-
22
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
23
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
24
- #: .././admin/ga_dash_settings.php:964
25
- msgid "General Settings"
26
- msgstr "Configuración general"
27
-
28
- #: .././admin/dashboard_widgets.php:75
29
- msgid "Backend Settings"
30
- msgstr "Configuración del backend"
31
-
32
- #: .././admin/dashboard_widgets.php:79
33
- msgid "Frontend Settings"
34
- msgstr "Configuración del frontend"
35
-
36
- #: .././admin/dashboard_widgets.php:83
37
- #, fuzzy
38
- msgid "Tracking Code"
39
- msgstr "Tipo de seguimiento:"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Ajustes"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Escritorio de Google Analytics"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr ""
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- #, fuzzy
63
- msgid "Authorize Plugin"
64
- msgstr "Autorizar aplicación"
65
-
66
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
67
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
68
- #: .././admin/ga_dash_settings.php:1315
69
- msgid "View Name:"
70
- msgstr ""
71
-
72
- #: .././admin/dashboard_widgets.php:221
73
- msgid "Something went wrong while retrieving profiles list."
74
- msgstr ""
75
-
76
- #: .././admin/dashboard_widgets.php:221
77
- msgid "More details"
78
- msgstr ""
79
-
80
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
81
- #, fuzzy
82
- msgid "An admin should asign a default Google Analytics Profile."
83
- msgstr "Pide a un administrador que asigne un perfil de Google Analytics"
84
-
85
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
86
- #, fuzzy
87
- msgid "Select Domain"
88
- msgstr "un solo dominio"
89
-
90
- #: .././admin/dashboard_widgets.php:250
91
- msgid ""
92
- "Something went wrong while retrieving property data. You need to create and "
93
- "properly configure a Google Analytics account:"
94
- msgstr ""
95
-
96
- #: .././admin/dashboard_widgets.php:250
97
- msgid "Find out more!"
98
- msgstr ""
99
-
100
- #: .././admin/dashboard_widgets.php:278
101
- msgid "Real-Time"
102
- msgstr "Tiempo real"
103
-
104
- #: .././admin/dashboard_widgets.php:279
105
- msgid "Today"
106
- msgstr "Hoy"
107
-
108
- #: .././admin/dashboard_widgets.php:281
109
- msgid "Yesterday"
110
- msgstr "Ayer"
111
-
112
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
113
- #: .././front/widgets.php:182
114
- msgid "Last 7 Days"
115
- msgstr "Últimos 7 días "
116
-
117
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
118
- #: .././front/widgets.php:183
119
- msgid "Last 14 Days"
120
- msgstr "Últimos 14 días"
121
-
122
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
123
- #: .././front/widgets.php:184
124
- msgid "Last 30 Days"
125
- msgstr "Últimos 30 días"
126
-
127
- #: .././admin/dashboard_widgets.php:289
128
- msgid "Last 90 Days"
129
- msgstr "Últimos 90 días"
130
-
131
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
132
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
133
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
134
- #: .././tools/gapi.php:825
135
- msgid "Sessions"
136
- msgstr ""
137
-
138
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
139
- #: .././tools/gapi.php:364
140
- msgid "Users"
141
- msgstr ""
142
-
143
- #: .././admin/dashboard_widgets.php:298
144
- msgid "Organic"
145
- msgstr "Búsquedas orgánicas"
146
-
147
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
148
- #: .././tools/gapi.php:367
149
- msgid "Page Views"
150
- msgstr "Páginas vistas"
151
-
152
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
153
- #: .././tools/gapi.php:370
154
- msgid "Bounce Rate"
155
- msgstr "Porcenaje de rebote"
156
-
157
- #: .././admin/dashboard_widgets.php:304
158
- msgid "Location"
159
- msgstr ""
160
-
161
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
162
- msgid "Pages"
163
- msgstr ""
164
-
165
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
166
- msgid "Referrers"
167
- msgstr ""
168
-
169
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
170
- #: .././tools/gapi.php:825
171
- msgid "Searches"
172
- msgstr ""
173
-
174
- #: .././admin/dashboard_widgets.php:312
175
- msgid "Traffic Details"
176
- msgstr ""
177
-
178
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
179
- msgid "REFERRAL"
180
- msgstr "REFERENCIA"
181
-
182
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
183
- msgid "ORGANIC"
184
- msgstr "ORGÁNICO"
185
-
186
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
187
- #: .././admin/dashboard_widgets.php:647
188
- msgid "SOCIAL"
189
- msgstr "SOCIAL"
190
-
191
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
192
- #: .././admin/dashboard_widgets.php:648
193
- msgid "CAMPAIGN"
194
- msgstr ""
195
-
196
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
197
- #: .././admin/dashboard_widgets.php:651
198
- msgid "DIRECT"
199
- msgstr "DIRECTO"
200
-
201
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
202
- msgid "NEW"
203
- msgstr "NUEVO"
204
-
205
- #: .././admin/dashboard_widgets.php:526
206
- msgid "REFERRALS"
207
- msgstr ""
208
-
209
- #: .././admin/dashboard_widgets.php:529
210
- msgid "KEYWORDS"
211
- msgstr ""
212
-
213
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
214
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
215
- #: .././front/frontend.php:88
216
- msgid "A JavaScript Error is blocking plugin resources!"
217
- msgstr ""
218
-
219
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
220
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
221
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
222
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
223
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
224
- #: .././front/frontend.php:119
225
- msgid "Invalid response, more details in JavaScript Console (F12)."
226
- msgstr ""
227
-
228
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
229
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
230
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
231
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
232
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
233
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
234
- #: .././front/frontend.php:124 .././front/widgets.php:110
235
- msgid "This report is unavailable"
236
  msgstr ""
237
 
238
- #: .././admin/dashboard_widgets.php:880
239
- msgid "Traffic Mediums"
240
- msgstr ""
241
-
242
- #: .././admin/dashboard_widgets.php:896
243
- msgid "Visitor Type"
244
- msgstr ""
245
-
246
- #: .././admin/dashboard_widgets.php:912
247
- msgid "Social Networks"
248
- msgstr ""
249
-
250
- #: .././admin/dashboard_widgets.php:928
251
- msgid "Search Engines"
252
- msgstr ""
253
-
254
- #: .././admin/dashboard_widgets.php:1053
255
- msgid "Organic Search"
256
- msgstr ""
257
-
258
- #: .././admin/dashboard_widgets.php:1057
259
- msgid "Pages/Session"
260
- msgstr ""
261
-
262
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
263
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
264
- #: .././admin/ga_dash_settings.php:1157
265
  msgid "Settings saved."
266
  msgstr ""
267
 
268
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
269
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
270
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
271
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
272
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
273
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
274
  msgid "Cheating Huh?"
275
  msgstr ""
276
 
277
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
278
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
279
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
280
  msgid "Something went wrong, check"
281
  msgstr ""
282
 
283
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
284
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
285
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
 
 
 
 
 
 
 
286
  msgid "or"
287
  msgstr ""
288
 
289
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
290
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
291
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
292
- msgid "auhorize the plugin"
293
  msgstr "autorizar aplicación"
294
 
295
- #: .././admin/ga_dash_settings.php:95
296
  msgid "Google Analytics Frontend Settings"
297
  msgstr "Configuración del frontend de Google Analytics"
298
 
299
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
 
 
 
300
  msgid "Show stats to:"
301
  msgstr ""
302
 
303
- #: .././admin/ga_dash_settings.php:152
304
  msgid " show page sessions and users in frontend (after each article)"
305
  msgstr ""
306
 
307
- #: .././admin/ga_dash_settings.php:168
308
  #, fuzzy
309
  msgid " show page searches (after each article)"
310
  msgstr ""
311
  "mostrar las visitas de página y las busquedas principales en el frontend "
312
  "(después de cada artículo)"
313
 
314
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
315
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
316
- #: .././admin/ga_dash_settings.php:1351
317
  msgid "Save Changes"
318
  msgstr ""
319
 
320
- #: .././admin/ga_dash_settings.php:206
321
- msgid "Google Analytics Dashboard Settings"
322
- msgstr "Configuración del escritorio de Google Analytics"
323
 
324
- #: .././admin/ga_dash_settings.php:264
325
  #, fuzzy
326
  msgid "disable Switch Profile/View functionality"
327
  msgstr " desactivar la funcionalidad de cambio de perfil en el escritorio"
328
 
329
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
330
  #, fuzzy
331
  msgid "Real-Time Settings"
332
  msgstr "Configuración de la caché"
333
 
334
- #: .././admin/ga_dash_settings.php:271
335
  msgid "Maximum number of pages to display on real-time tab:"
336
  msgstr ""
337
 
338
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
339
  msgid "find out more"
340
  msgstr ""
341
 
342
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
343
  msgid "about this feature"
344
  msgstr ""
345
 
346
- #: .././admin/ga_dash_settings.php:283
347
  msgid "Location Settings"
348
  msgstr ""
349
 
350
- #: .././admin/ga_dash_settings.php:287
351
  msgid "Target Geo Map to country:"
352
  msgstr ""
353
 
354
- #: .././admin/ga_dash_settings.php:336
355
  msgid "The tracking component is disabled. You should set"
356
  msgstr ""
357
 
358
- #: .././admin/ga_dash_settings.php:336
359
  msgid "Tracking Options"
360
  msgstr ""
361
 
362
- #: .././admin/ga_dash_settings.php:336
363
  msgid "to"
364
  msgstr ""
365
 
366
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
367
  #, fuzzy
368
  msgid "Enabled"
369
  msgstr "desactivado"
370
 
371
- #: .././admin/ga_dash_settings.php:342
372
  #, fuzzy
373
  msgid "Google Analytics Tracking Code"
374
  msgstr "Seguimiento de Google Analytics"
375
 
376
- #: .././admin/ga_dash_settings.php:351
377
  msgid "Basic Settings"
378
  msgstr ""
379
 
380
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
381
  #, fuzzy
382
  msgid "Events Tracking"
383
  msgstr "Activar seguimiento:"
384
 
385
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
386
  msgid "Custom Definitions"
387
  msgstr ""
388
 
389
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
390
- #: .././admin/ga_dash_settings.php:1328
391
  #, fuzzy
392
  msgid "Exclude Tracking"
393
  msgstr "Activar seguimiento:"
394
 
395
- #: .././admin/ga_dash_settings.php:355
396
  msgid "Advanced Settings"
397
  msgstr ""
398
 
399
- #: .././admin/ga_dash_settings.php:363
400
  #, fuzzy
401
  msgid "Tracking Settings"
402
  msgstr "Configuración del backend"
403
 
404
- #: .././admin/ga_dash_settings.php:366
405
  msgid "Tracking Options:"
406
  msgstr ""
407
 
408
- #: .././admin/ga_dash_settings.php:370
409
  msgid "Disabled"
410
  msgstr "desactivado"
411
 
412
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
413
  #, fuzzy
414
  msgid "Tracking ID:"
415
  msgstr "Tipo de seguimiento:"
416
 
417
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
418
  msgid "Default URL:"
419
  msgstr ""
420
 
421
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
422
  msgid "Time Zone:"
423
  msgstr ""
424
 
425
- #: .././admin/ga_dash_settings.php:385
426
  #, fuzzy
427
  msgid "Basic Tracking"
428
  msgstr "Activar seguimiento:"
429
 
430
- #: .././admin/ga_dash_settings.php:388
431
  msgid "Tracking Type:"
432
  msgstr ""
433
 
434
- #: .././admin/ga_dash_settings.php:392
435
  msgid "Classic Analytics"
436
  msgstr ""
437
 
438
- #: .././admin/ga_dash_settings.php:394
439
  msgid "Universal Analytics"
440
  msgstr ""
441
 
442
- #: .././admin/ga_dash_settings.php:408
443
  msgid " anonymize IPs while tracking"
444
  msgstr "anonimizar IPs durante el seguimiento"
445
 
446
- #: .././admin/ga_dash_settings.php:423
447
  msgid " enable remarketing, demographics and interests reports"
448
  msgstr ""
449
 
450
- #: .././admin/ga_dash_settings.php:445
451
  msgid " track downloads, mailto and outbound links"
452
  msgstr ""
453
 
454
- #: .././admin/ga_dash_settings.php:449
455
  msgid "Downloads Regex:"
456
  msgstr ""
457
 
458
- #: .././admin/ga_dash_settings.php:466
459
  msgid " track affiliate links matching this regex"
460
  msgstr ""
461
 
462
- #: .././admin/ga_dash_settings.php:470
463
  msgid "Affiliates Regex:"
464
  msgstr ""
465
 
466
- #: .././admin/ga_dash_settings.php:487
467
  msgid " track fragment identifiers, hashmarks (#) in URI links"
468
  msgstr ""
469
 
470
- #: .././admin/ga_dash_settings.php:498
471
  msgid "Authors:"
472
  msgstr ""
473
 
474
- #: .././admin/ga_dash_settings.php:508
475
  msgid "Publication Year:"
476
  msgstr ""
477
 
478
- #: .././admin/ga_dash_settings.php:518
479
  msgid "Categories:"
480
  msgstr ""
481
 
482
- #: .././admin/ga_dash_settings.php:528
483
  msgid "User Type:"
484
  msgstr ""
485
 
486
- #: .././admin/ga_dash_settings.php:542
487
  #, fuzzy
488
  msgid "Advanced Tracking"
489
  msgstr "Activar seguimiento:"
490
 
491
- #: .././admin/ga_dash_settings.php:545
492
  #, fuzzy
493
  msgid "Page Speed SR:"
494
  msgstr "Páginas por visita:"
495
 
496
- #: .././admin/ga_dash_settings.php:563
497
  msgid " exclude events from bounce-rate calculation"
498
  msgstr ""
499
 
500
- #: .././admin/ga_dash_settings.php:578
501
  msgid " enable enhanced link attribution"
502
  msgstr ""
503
 
504
- #: .././admin/ga_dash_settings.php:592
505
  msgid " enable AdSense account linking"
506
  msgstr ""
507
 
508
- #: .././admin/ga_dash_settings.php:608
509
  msgid " enable cross domain tracking"
510
  msgstr ""
511
 
512
- #: .././admin/ga_dash_settings.php:612
513
  msgid "Cross Domains:"
514
  msgstr ""
515
 
516
- #: .././admin/ga_dash_settings.php:626
517
  msgid "Exclude tracking for:"
518
  msgstr ""
519
 
520
- #: .././admin/ga_dash_settings.php:687
521
  msgid "Google Analytics Errors & Debugging"
522
  msgstr ""
523
 
524
- #: .././admin/ga_dash_settings.php:697
525
  msgid "Errors & Details"
526
  msgstr ""
527
 
528
- #: .././admin/ga_dash_settings.php:698
529
  msgid "Plugin Settings"
530
  msgstr ""
531
 
532
- #: .././admin/ga_dash_settings.php:706
533
  msgid "For errors and/or other issues please check"
534
  msgstr ""
535
 
536
- #: .././admin/ga_dash_settings.php:706
537
- msgid "the plugin documentation page"
538
  msgstr ""
539
 
540
- #: .././admin/ga_dash_settings.php:706
541
  msgid "and related tutorials"
542
  msgstr ""
543
 
544
- #: .././admin/ga_dash_settings.php:710
545
  msgid "Last Error detected"
546
  msgstr ""
547
 
548
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
549
  msgid "None"
550
  msgstr "Ninguno"
551
 
552
- #: .././admin/ga_dash_settings.php:722
553
  msgid "Error Details"
554
  msgstr ""
555
 
556
- #: .././admin/ga_dash_settings.php:740
557
  msgid "Plugin Configuration"
558
  msgstr ""
559
 
560
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
561
  msgid ""
562
  "Loading the required libraries. If this results in a blank screen or a fatal "
563
  "error, try this solution:"
564
  msgstr ""
565
 
566
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
567
  msgid "Plugin authorization succeeded."
568
  msgstr ""
569
 
570
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
571
  msgid ""
572
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
573
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
574
  msgstr ""
575
 
576
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
577
  msgid "Cleared Cache."
578
  msgstr "Caché borrada."
579
 
580
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
581
  #, fuzzy
582
  msgid "Token Reseted and Revoked."
583
  msgstr "Token reseteado."
584
 
585
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
586
  msgid "All other domains/properties were removed."
587
  msgstr ""
588
 
589
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
590
  msgid "Google Analytics Settings"
591
  msgstr "Configuración de Google Analytics"
592
 
593
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
594
  msgid "Use the red link (see below) to generate and get your access code!"
595
  msgstr ""
596
 
597
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
598
  #, fuzzy
599
  msgid "Plugin Authorization"
600
  msgstr "Borrar autorización"
601
 
602
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
603
  #, fuzzy
604
  msgid "You should watch the"
605
  msgstr "Deberías ver este"
606
 
607
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
608
  msgid "video"
609
  msgstr ""
610
 
611
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
612
  msgid "and read this"
613
  msgstr ""
614
 
615
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
616
  #, fuzzy
617
  msgid "tutorial"
618
  msgstr "Tutorial de configuración"
619
 
620
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
621
  msgid ""
622
  "before proceeding to authorization. This plugin requires a properly "
623
  "configured Google Analytics account"
624
  msgstr ""
625
 
626
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
627
  msgid " use your own API Project credentials"
628
  msgstr ""
629
 
630
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
631
  msgid "API Key:"
632
  msgstr "API Key:"
633
 
634
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
635
  msgid "Client ID:"
636
  msgstr "Client ID:"
637
 
638
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
639
  msgid "Client Secret:"
640
  msgstr "Client Secret:"
641
 
642
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
643
  msgid "Clear Authorization"
644
  msgstr "Borrar autorización"
645
 
646
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
647
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
648
  msgid "Clear Cache"
649
  msgstr "Borrar caché"
650
 
651
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
 
 
652
  msgid "Select Domain:"
653
  msgstr ""
654
 
655
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
656
  msgid "Property not found"
657
  msgstr ""
658
 
659
- #: .././admin/ga_dash_settings.php:985
660
  msgid "and/or hide all other domains"
661
  msgstr ""
662
 
663
- #: .././admin/ga_dash_settings.php:988
664
  msgid "Hide Now"
665
  msgstr ""
666
 
667
- #: .././admin/ga_dash_settings.php:1007
668
  msgid "Theme Color:"
669
  msgstr ""
670
 
671
- #: .././admin/ga_dash_settings.php:1017
672
- msgid "A new frontend widget is available! To enable it, go to"
673
  msgstr ""
674
 
675
- #: .././admin/ga_dash_settings.php:1017
676
- msgid "Appearance -> Widgets"
 
 
677
  msgstr ""
678
 
679
- #: .././admin/ga_dash_settings.php:1017
680
- msgid "and look for Google Analytics Dashboard."
681
- msgstr "y busca escritorio de Google Analytics."
 
 
682
 
683
- #: .././admin/ga_dash_settings.php:1115
684
  msgid "Properties refreshed."
685
  msgstr ""
686
 
687
- #: .././admin/ga_dash_settings.php:1201
688
  msgid "Network Setup"
689
  msgstr ""
690
 
691
- #: .././admin/ga_dash_settings.php:1216
692
  msgid " use a single Google Analytics account for the entire network"
693
  msgstr ""
694
 
695
- #: .././admin/ga_dash_settings.php:1288
696
  msgid "Refresh Properties"
697
  msgstr ""
698
 
699
- #: .././admin/ga_dash_settings.php:1294
700
  #, fuzzy
701
  msgid "Properties/Views Settings"
702
  msgstr "Configuración del frontend"
703
 
704
- #: .././admin/ga_dash_settings.php:1342
705
  msgid " exclude Super Admin tracking for the entire network"
706
  msgstr ""
707
 
708
- #: .././admin/ga_dash_settings.php:1394
709
  #, fuzzy
710
  msgid "Setup Tutorial & Demo"
711
  msgstr "Tutorial de configuración"
712
 
713
- #: .././admin/ga_dash_settings.php:1406
714
  #, fuzzy
715
  msgid "Support & Reviews"
716
  msgstr "Enlaces de soporte"
717
 
718
- #: .././admin/ga_dash_settings.php:1414
719
  msgid "Plugin documentation and support on"
720
  msgstr ""
721
 
722
- #: .././admin/ga_dash_settings.php:1421
723
  msgid "Your feedback and review are both important,"
724
  msgstr ""
725
 
726
- #: .././admin/ga_dash_settings.php:1421
727
  msgid "rate this plugin"
728
  msgstr ""
729
 
730
- #: .././admin/ga_dash_settings.php:1426
731
  msgid "Further Reading"
732
  msgstr ""
733
 
734
- #: .././admin/ga_dash_settings.php:1434
735
  msgid "Improve search rankings"
736
  msgstr ""
737
 
738
- #: .././admin/ga_dash_settings.php:1434
739
  msgid "by moving your website to HTTPS/SSL."
740
  msgstr ""
741
 
742
- #: .././admin/ga_dash_settings.php:1441
743
  msgid "Other"
744
  msgstr ""
745
 
746
- #: .././admin/ga_dash_settings.php:1441
747
  msgid "WordPress Plugins"
748
  msgstr ""
749
 
750
- #: .././admin/ga_dash_settings.php:1441
751
  msgid "written by the same author"
752
  msgstr ""
753
 
754
- #: .././admin/ga_dash_settings.php:1446
755
  msgid "Other Services"
756
  msgstr ""
757
 
758
- #: .././admin/ga_dash_settings.php:1453
759
  msgid "Speed up your website and plug into a whole"
760
  msgstr ""
761
 
762
- #: .././admin/ga_dash_settings.php:1453
763
  msgid "new level of site speed"
764
  msgstr ""
765
 
766
- #: .././admin/ga_dash_settings.php:1460
767
  msgid "Web Analytics"
768
  msgstr "Analíticas web"
769
 
770
- #: .././admin/ga_dash_settings.php:1460
771
  msgid "service with users tracking at IP level."
772
  msgstr ""
773
 
774
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
775
  msgid "Views vs UniqueViews"
776
  msgstr "Visitas vs visitas únicas"
777
 
778
- #: .././front/frontend.php:184
779
  msgid "Google Analytics Reports"
780
  msgstr ""
781
 
@@ -783,114 +819,120 @@ msgstr ""
783
  msgid "Will display your google analytics stats in a widget"
784
  msgstr ""
785
 
786
- #: .././front/widgets.php:40 .././tools/gapi.php:744
787
  msgid "trend"
788
  msgstr ""
789
 
790
- #: .././front/widgets.php:133
791
  msgid "Period:"
792
  msgstr ""
793
 
794
- #: .././front/widgets.php:133
795
  msgid "Sessions:"
796
  msgstr ""
797
 
798
- #: .././front/widgets.php:137
799
  msgid "generated by"
800
  msgstr ""
801
 
802
- #: .././front/widgets.php:147
803
  msgid "Google Analytics Stats"
804
  msgstr "Estadísticas de Google Analytics"
805
 
806
- #: .././front/widgets.php:154
807
  msgid "Title:"
808
  msgstr ""
809
 
810
- #: .././front/widgets.php:161
811
  msgid "Display:"
812
  msgstr ""
813
 
814
- #: .././front/widgets.php:165
815
  msgid "Chart & Totals"
816
  msgstr ""
817
 
818
- #: .././front/widgets.php:166
819
  msgid "Chart"
820
  msgstr ""
821
 
822
- #: .././front/widgets.php:167
823
  msgid "Totals"
824
  msgstr ""
825
 
826
- #: .././front/widgets.php:171
827
  msgid "Anonymize stats:"
828
  msgstr ""
829
 
830
- #: .././front/widgets.php:178
831
  msgid "Stats for:"
832
  msgstr ""
833
 
834
- #: .././front/widgets.php:188
835
  msgid "Give credits:"
836
  msgstr ""
837
 
838
- #: .././tools/gapi.php:129
839
  msgid "Use this link to get your access code:"
840
  msgstr ""
841
 
842
- #: .././tools/gapi.php:129
843
  msgid "Get Access Code"
844
  msgstr ""
845
 
846
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
847
  msgid "Use the red link to get your access code!"
848
  msgstr ""
849
 
850
- #: .././tools/gapi.php:134
851
  msgid "Access Code:"
852
  msgstr "Código de acceso:"
853
 
854
- #: .././tools/gapi.php:146
855
  msgid "Save Access Code"
856
  msgstr ""
857
 
858
- #: .././tools/gapi.php:373
859
  msgid "Organic Searches"
860
  msgstr "Búsquedas orgánicas"
861
 
862
- #: .././tools/gapi.php:381
863
  msgid "Hour"
864
  msgstr "Hora"
865
 
866
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
867
  msgid "Date"
868
  msgstr "Fecha"
869
 
870
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
871
  msgid "Views"
872
  msgstr "Vistas"
873
 
874
- #: .././tools/gapi.php:576
875
  msgid "Countries"
876
  msgstr ""
877
 
878
- #: .././tools/gapi.php:590
879
  msgid "Cities from"
880
  msgstr ""
881
 
882
- #: .././tools/gapi.php:644
883
  msgid "Channels"
884
  msgstr ""
885
 
886
- #: .././tools/gapi.php:698
887
  msgid "Type"
888
  msgstr "Tipo"
889
 
890
- #: .././tools/gapi.php:783
891
  msgid "UniqueViews"
892
  msgstr "Visitas únicas"
893
 
 
 
 
 
 
 
894
  #, fuzzy
895
  #~ msgid "Google Analytics account"
896
  #~ msgstr "Seguimiento de Google Analytics"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-10 19:15+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:15+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "X-Poedit-SearchPath-0: ../.\n"
17
 
18
+ #: .././admin/item-reports.php:56
19
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  msgstr ""
21
 
22
+ #: .././admin/settings.php:86 .././admin/settings.php:205
23
+ #: .././admin/settings.php:372 .././admin/settings.php:916
24
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  msgid "Settings saved."
26
  msgstr ""
27
 
28
+ #: .././admin/settings.php:88 .././admin/settings.php:207
29
+ #: .././admin/settings.php:374 .././admin/settings.php:893
30
+ #: .././admin/settings.php:903 .././admin/settings.php:912
31
+ #: .././admin/settings.php:918 .././admin/settings.php:930
32
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
33
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
34
+ #: .././admin/settings.php:1248
35
  msgid "Cheating Huh?"
36
  msgstr ""
37
 
38
+ #: .././admin/settings.php:92 .././admin/settings.php:211
39
+ #: .././admin/settings.php:378 .././admin/settings.php:737
40
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
41
  msgid "Something went wrong, check"
42
  msgstr ""
43
 
44
+ #: .././admin/settings.php:92 .././admin/settings.php:211
45
+ #: .././admin/settings.php:378 .././admin/settings.php:737
46
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
47
+ #: .././admin/setup.php:89 .././admin/setup.php:113
48
+ msgid "Errors & Debug"
49
+ msgstr ""
50
+
51
+ #: .././admin/settings.php:92 .././admin/settings.php:211
52
+ #: .././admin/settings.php:378 .././admin/settings.php:737
53
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
54
  msgid "or"
55
  msgstr ""
56
 
57
+ #: .././admin/settings.php:92 .././admin/settings.php:211
58
+ #: .././admin/settings.php:378 .././admin/settings.php:737
59
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
60
+ msgid "authorize the plugin"
61
  msgstr "autorizar aplicación"
62
 
63
+ #: .././admin/settings.php:98
64
  msgid "Google Analytics Frontend Settings"
65
  msgstr "Configuración del frontend de Google Analytics"
66
 
67
+ #: .././admin/settings.php:108 .././admin/settings.php:227
68
+ msgid "Permissions"
69
+ msgstr ""
70
+
71
+ #: .././admin/settings.php:111 .././admin/settings.php:230
72
  msgid "Show stats to:"
73
  msgstr ""
74
 
75
+ #: .././admin/settings.php:159
76
  msgid " show page sessions and users in frontend (after each article)"
77
  msgstr ""
78
 
79
+ #: .././admin/settings.php:175
80
  #, fuzzy
81
  msgid " show page searches (after each article)"
82
  msgstr ""
83
  "mostrar las visitas de página y las busquedas principales en el frontend "
84
  "(después de cada artículo)"
85
 
86
+ #: .././admin/settings.php:184 .././admin/settings.php:350
87
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
88
+ #: .././admin/settings.php:1428
89
  msgid "Save Changes"
90
  msgstr ""
91
 
92
+ #: .././admin/settings.php:217
93
+ msgid "Google Analytics Backend Settings"
94
+ msgstr ""
95
 
96
+ #: .././admin/settings.php:279
97
  #, fuzzy
98
  msgid "disable Switch Profile/View functionality"
99
  msgstr " desactivar la funcionalidad de cambio de perfil en el escritorio"
100
 
101
+ #: .././admin/settings.php:294
102
+ msgid "disable stats on Posts List and Pages List"
103
+ msgstr ""
104
+
105
+ #: .././admin/settings.php:309
106
+ msgid "disable the main Dashboard Widget"
107
+ msgstr ""
108
+
109
+ #: .././admin/settings.php:313
110
  #, fuzzy
111
  msgid "Real-Time Settings"
112
  msgstr "Configuración de la caché"
113
 
114
+ #: .././admin/settings.php:316
115
  msgid "Maximum number of pages to display on real-time tab:"
116
  msgstr ""
117
 
118
+ #: .././admin/settings.php:321 .././admin/settings.php:337
119
  msgid "find out more"
120
  msgstr ""
121
 
122
+ #: .././admin/settings.php:323 .././admin/settings.php:340
123
  msgid "about this feature"
124
  msgstr ""
125
 
126
+ #: .././admin/settings.php:328
127
  msgid "Location Settings"
128
  msgstr ""
129
 
130
+ #: .././admin/settings.php:332
131
  msgid "Target Geo Map to country:"
132
  msgstr ""
133
 
134
+ #: .././admin/settings.php:381
135
  msgid "The tracking component is disabled. You should set"
136
  msgstr ""
137
 
138
+ #: .././admin/settings.php:381
139
  msgid "Tracking Options"
140
  msgstr ""
141
 
142
+ #: .././admin/settings.php:381
143
  msgid "to"
144
  msgstr ""
145
 
146
+ #: .././admin/settings.php:381 .././admin/settings.php:417
147
  #, fuzzy
148
  msgid "Enabled"
149
  msgstr "desactivado"
150
 
151
+ #: .././admin/settings.php:387
152
  #, fuzzy
153
  msgid "Google Analytics Tracking Code"
154
  msgstr "Seguimiento de Google Analytics"
155
 
156
+ #: .././admin/settings.php:396
157
  msgid "Basic Settings"
158
  msgstr ""
159
 
160
+ #: .././admin/settings.php:397 .././admin/settings.php:476
161
  #, fuzzy
162
  msgid "Events Tracking"
163
  msgstr "Activar seguimiento:"
164
 
165
+ #: .././admin/settings.php:398 .././admin/settings.php:540
166
  msgid "Custom Definitions"
167
  msgstr ""
168
 
169
+ #: .././admin/settings.php:399 .././admin/settings.php:668
170
+ #: .././admin/settings.php:1405
171
  #, fuzzy
172
  msgid "Exclude Tracking"
173
  msgstr "Activar seguimiento:"
174
 
175
+ #: .././admin/settings.php:400
176
  msgid "Advanced Settings"
177
  msgstr ""
178
 
179
+ #: .././admin/settings.php:408
180
  #, fuzzy
181
  msgid "Tracking Settings"
182
  msgstr "Configuración del backend"
183
 
184
+ #: .././admin/settings.php:411
185
  msgid "Tracking Options:"
186
  msgstr ""
187
 
188
+ #: .././admin/settings.php:415
189
  msgid "Disabled"
190
  msgstr "desactivado"
191
 
192
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
193
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
194
+ #: .././admin/widgets.php:67
195
+ msgid "View Name:"
196
+ msgstr ""
197
+
198
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
199
  #, fuzzy
200
  msgid "Tracking ID:"
201
  msgstr "Tipo de seguimiento:"
202
 
203
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
204
  msgid "Default URL:"
205
  msgstr ""
206
 
207
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
208
  msgid "Time Zone:"
209
  msgstr ""
210
 
211
+ #: .././admin/settings.php:430
212
  #, fuzzy
213
  msgid "Basic Tracking"
214
  msgstr "Activar seguimiento:"
215
 
216
+ #: .././admin/settings.php:433
217
  msgid "Tracking Type:"
218
  msgstr ""
219
 
220
+ #: .././admin/settings.php:437
221
  msgid "Classic Analytics"
222
  msgstr ""
223
 
224
+ #: .././admin/settings.php:439
225
  msgid "Universal Analytics"
226
  msgstr ""
227
 
228
+ #: .././admin/settings.php:453
229
  msgid " anonymize IPs while tracking"
230
  msgstr "anonimizar IPs durante el seguimiento"
231
 
232
+ #: .././admin/settings.php:468
233
  msgid " enable remarketing, demographics and interests reports"
234
  msgstr ""
235
 
236
+ #: .././admin/settings.php:490
237
  msgid " track downloads, mailto and outbound links"
238
  msgstr ""
239
 
240
+ #: .././admin/settings.php:494
241
  msgid "Downloads Regex:"
242
  msgstr ""
243
 
244
+ #: .././admin/settings.php:511
245
  msgid " track affiliate links matching this regex"
246
  msgstr ""
247
 
248
+ #: .././admin/settings.php:515
249
  msgid "Affiliates Regex:"
250
  msgstr ""
251
 
252
+ #: .././admin/settings.php:532
253
  msgid " track fragment identifiers, hashmarks (#) in URI links"
254
  msgstr ""
255
 
256
+ #: .././admin/settings.php:543
257
  msgid "Authors:"
258
  msgstr ""
259
 
260
+ #: .././admin/settings.php:553
261
  msgid "Publication Year:"
262
  msgstr ""
263
 
264
+ #: .././admin/settings.php:563
265
  msgid "Categories:"
266
  msgstr ""
267
 
268
+ #: .././admin/settings.php:573
269
  msgid "User Type:"
270
  msgstr ""
271
 
272
+ #: .././admin/settings.php:587
273
  #, fuzzy
274
  msgid "Advanced Tracking"
275
  msgstr "Activar seguimiento:"
276
 
277
+ #: .././admin/settings.php:590
278
  #, fuzzy
279
  msgid "Page Speed SR:"
280
  msgstr "Páginas por visita:"
281
 
282
+ #: .././admin/settings.php:608
283
  msgid " exclude events from bounce-rate calculation"
284
  msgstr ""
285
 
286
+ #: .././admin/settings.php:623
287
  msgid " enable enhanced link attribution"
288
  msgstr ""
289
 
290
+ #: .././admin/settings.php:637
291
  msgid " enable AdSense account linking"
292
  msgstr ""
293
 
294
+ #: .././admin/settings.php:653
295
  msgid " enable cross domain tracking"
296
  msgstr ""
297
 
298
+ #: .././admin/settings.php:657
299
  msgid "Cross Domains:"
300
  msgstr ""
301
 
302
+ #: .././admin/settings.php:671
303
  msgid "Exclude tracking for:"
304
  msgstr ""
305
 
306
+ #: .././admin/settings.php:741
307
  msgid "Google Analytics Errors & Debugging"
308
  msgstr ""
309
 
310
+ #: .././admin/settings.php:751
311
  msgid "Errors & Details"
312
  msgstr ""
313
 
314
+ #: .././admin/settings.php:752
315
  msgid "Plugin Settings"
316
  msgstr ""
317
 
318
+ #: .././admin/settings.php:760
319
  msgid "For errors and/or other issues please check"
320
  msgstr ""
321
 
322
+ #: .././admin/settings.php:760
323
+ msgid "this documentation page"
324
  msgstr ""
325
 
326
+ #: .././admin/settings.php:760
327
  msgid "and related tutorials"
328
  msgstr ""
329
 
330
+ #: .././admin/settings.php:764
331
  msgid "Last Error detected"
332
  msgstr ""
333
 
334
+ #: .././admin/settings.php:769 .././admin/settings.php:782
335
  msgid "None"
336
  msgstr "Ninguno"
337
 
338
+ #: .././admin/settings.php:776
339
  msgid "Error Details"
340
  msgstr ""
341
 
342
+ #: .././admin/settings.php:796
343
  msgid "Plugin Configuration"
344
  msgstr ""
345
 
346
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
347
  msgid ""
348
  "Loading the required libraries. If this results in a blank screen or a fatal "
349
  "error, try this solution:"
350
  msgstr ""
351
 
352
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
353
  msgid "Plugin authorization succeeded."
354
  msgstr ""
355
 
356
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
357
  msgid ""
358
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
359
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
360
  msgstr ""
361
 
362
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
363
  msgid "Cleared Cache."
364
  msgstr "Caché borrada."
365
 
366
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
367
  #, fuzzy
368
  msgid "Token Reseted and Revoked."
369
  msgstr "Token reseteado."
370
 
371
+ #: .././admin/settings.php:910
372
+ msgid "All errors reseted."
373
+ msgstr ""
374
+
375
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
376
  msgid "All other domains/properties were removed."
377
  msgstr ""
378
 
379
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
380
  msgid "Google Analytics Settings"
381
  msgstr "Configuración de Google Analytics"
382
 
383
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
384
  msgid "Use the red link (see below) to generate and get your access code!"
385
  msgstr ""
386
 
387
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
388
  #, fuzzy
389
  msgid "Plugin Authorization"
390
  msgstr "Borrar autorización"
391
 
392
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
393
  #, fuzzy
394
  msgid "You should watch the"
395
  msgstr "Deberías ver este"
396
 
397
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
398
  msgid "video"
399
  msgstr ""
400
 
401
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
402
  msgid "and read this"
403
  msgstr ""
404
 
405
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
406
  #, fuzzy
407
  msgid "tutorial"
408
  msgstr "Tutorial de configuración"
409
 
410
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
411
  msgid ""
412
  "before proceeding to authorization. This plugin requires a properly "
413
  "configured Google Analytics account"
414
  msgstr ""
415
 
416
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
417
  msgid " use your own API Project credentials"
418
  msgstr ""
419
 
420
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
421
  msgid "API Key:"
422
  msgstr "API Key:"
423
 
424
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
425
  msgid "Client ID:"
426
  msgstr "Client ID:"
427
 
428
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
429
  msgid "Client Secret:"
430
  msgstr "Client Secret:"
431
 
432
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
433
  msgid "Clear Authorization"
434
  msgstr "Borrar autorización"
435
 
436
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
437
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
438
  msgid "Clear Cache"
439
  msgstr "Borrar caché"
440
 
441
+ #: .././admin/settings.php:1022
442
+ msgid "Reset Errors"
443
+ msgstr ""
444
+
445
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
446
+ #: .././admin/setup.php:109
447
+ msgid "General Settings"
448
+ msgstr "Configuración general"
449
+
450
+ #: .././admin/settings.php:1031
451
  msgid "Select Domain:"
452
  msgstr ""
453
 
454
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
455
  msgid "Property not found"
456
  msgstr ""
457
 
458
+ #: .././admin/settings.php:1049
459
  msgid "and/or hide all other domains"
460
  msgstr ""
461
 
462
+ #: .././admin/settings.php:1052
463
  msgid "Hide Now"
464
  msgstr ""
465
 
466
+ #: .././admin/settings.php:1071
467
  msgid "Theme Color:"
468
  msgstr ""
469
 
470
+ #: .././admin/settings.php:1081
471
+ msgid "Automatic Updates"
472
  msgstr ""
473
 
474
+ #: .././admin/settings.php:1097
475
+ msgid ""
476
+ "automatic updates for minor versions (security and maintainance releases "
477
+ "only)"
478
  msgstr ""
479
 
480
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
481
+ #: .././admin/widgets.php:38
482
+ #, fuzzy
483
+ msgid "Authorize Plugin"
484
+ msgstr "Autorizar aplicación"
485
 
486
+ #: .././admin/settings.php:1192
487
  msgid "Properties refreshed."
488
  msgstr ""
489
 
490
+ #: .././admin/settings.php:1278
491
  msgid "Network Setup"
492
  msgstr ""
493
 
494
+ #: .././admin/settings.php:1293
495
  msgid " use a single Google Analytics account for the entire network"
496
  msgstr ""
497
 
498
+ #: .././admin/settings.php:1365
499
  msgid "Refresh Properties"
500
  msgstr ""
501
 
502
+ #: .././admin/settings.php:1371
503
  #, fuzzy
504
  msgid "Properties/Views Settings"
505
  msgstr "Configuración del frontend"
506
 
507
+ #: .././admin/settings.php:1419
508
  msgid " exclude Super Admin tracking for the entire network"
509
  msgstr ""
510
 
511
+ #: .././admin/settings.php:1471
512
  #, fuzzy
513
  msgid "Setup Tutorial & Demo"
514
  msgstr "Tutorial de configuración"
515
 
516
+ #: .././admin/settings.php:1483
517
  #, fuzzy
518
  msgid "Support & Reviews"
519
  msgstr "Enlaces de soporte"
520
 
521
+ #: .././admin/settings.php:1491
522
  msgid "Plugin documentation and support on"
523
  msgstr ""
524
 
525
+ #: .././admin/settings.php:1498
526
  msgid "Your feedback and review are both important,"
527
  msgstr ""
528
 
529
+ #: .././admin/settings.php:1498
530
  msgid "rate this plugin"
531
  msgstr ""
532
 
533
+ #: .././admin/settings.php:1503
534
  msgid "Further Reading"
535
  msgstr ""
536
 
537
+ #: .././admin/settings.php:1511
538
  msgid "Improve search rankings"
539
  msgstr ""
540
 
541
+ #: .././admin/settings.php:1511
542
  msgid "by moving your website to HTTPS/SSL."
543
  msgstr ""
544
 
545
+ #: .././admin/settings.php:1518
546
  msgid "Other"
547
  msgstr ""
548
 
549
+ #: .././admin/settings.php:1518
550
  msgid "WordPress Plugins"
551
  msgstr ""
552
 
553
+ #: .././admin/settings.php:1518
554
  msgid "written by the same author"
555
  msgstr ""
556
 
557
+ #: .././admin/settings.php:1523
558
  msgid "Other Services"
559
  msgstr ""
560
 
561
+ #: .././admin/settings.php:1531
562
  msgid "Speed up your website and plug into a whole"
563
  msgstr ""
564
 
565
+ #: .././admin/settings.php:1531
566
  msgid "new level of site speed"
567
  msgstr ""
568
 
569
+ #: .././admin/settings.php:1538
570
  msgid "Web Analytics"
571
  msgstr "Analíticas web"
572
 
573
+ #: .././admin/settings.php:1538
574
  msgid "service with users tracking at IP level."
575
  msgstr ""
576
 
577
+ #: .././admin/setup.php:69 .././admin/setup.php:105
578
+ msgid "Google Analytics"
579
+ msgstr "Google Analytics"
580
+
581
+ #: .././admin/setup.php:77
582
+ msgid "Backend Settings"
583
+ msgstr "Configuración del backend"
584
+
585
+ #: .././admin/setup.php:81
586
+ msgid "Frontend Settings"
587
+ msgstr "Configuración del frontend"
588
+
589
+ #: .././admin/setup.php:85
590
+ #, fuzzy
591
+ msgid "Tracking Code"
592
+ msgstr "Tipo de seguimiento:"
593
+
594
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
595
+ msgid "Today"
596
+ msgstr "Hoy"
597
+
598
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
599
+ msgid "Yesterday"
600
+ msgstr "Ayer"
601
+
602
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
603
+ #: .././front/widgets.php:68 .././front/widgets.php:176
604
+ msgid "Last 7 Days"
605
+ msgstr "Últimos 7 días "
606
+
607
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
608
+ #: .././front/widgets.php:74 .././front/widgets.php:178
609
+ msgid "Last 30 Days"
610
+ msgstr "Últimos 30 días"
611
+
612
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
613
+ msgid "Last 90 Days"
614
+ msgstr "Últimos 90 días"
615
+
616
+ #: .././admin/setup.php:197 .././admin/setup.php:213
617
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
618
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
619
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
620
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
621
+ msgid "Sessions"
622
+ msgstr ""
623
+
624
+ #: .././admin/setup.php:198 .././admin/setup.php:214
625
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
626
+ #: .././tools/gapi.php:372
627
+ msgid "Users"
628
+ msgstr ""
629
+
630
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
631
+ msgid "Organic"
632
+ msgstr "Búsquedas orgánicas"
633
+
634
+ #: .././admin/setup.php:200 .././admin/setup.php:215
635
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
636
+ #: .././tools/gapi.php:375
637
+ msgid "Page Views"
638
+ msgstr "Páginas vistas"
639
+
640
+ #: .././admin/setup.php:201 .././admin/setup.php:216
641
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
642
+ #: .././tools/gapi.php:378
643
+ msgid "Bounce Rate"
644
+ msgstr "Porcenaje de rebote"
645
+
646
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
647
+ msgid "Location"
648
+ msgstr ""
649
+
650
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
651
+ msgid "Referrers"
652
+ msgstr ""
653
+
654
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
655
+ #: .././tools/gapi.php:898
656
+ msgid "Searches"
657
+ msgstr ""
658
+
659
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
660
+ msgid "Traffic Details"
661
+ msgstr ""
662
+
663
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
664
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
665
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
666
+ msgid "A JavaScript Error is blocking plugin resources!"
667
+ msgstr ""
668
+
669
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
670
+ msgid "Traffic Mediums"
671
+ msgstr ""
672
+
673
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
674
+ msgid "Visitor Type"
675
+ msgstr ""
676
+
677
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
678
+ msgid "Social Networks"
679
+ msgstr ""
680
+
681
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
682
+ msgid "Search Engines"
683
+ msgstr ""
684
+
685
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
686
+ msgid "Organic Search"
687
+ msgstr ""
688
+
689
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
690
+ msgid "Pages/Session"
691
+ msgstr ""
692
+
693
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
694
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
695
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
696
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
697
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
698
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
699
+ #: .././front/item-reports.php:115
700
+ msgid "Invalid response, more details in JavaScript Console (F12)."
701
+ msgstr ""
702
+
703
+ #: .././admin/setup.php:220
704
+ msgid "Not enough data collected"
705
+ msgstr ""
706
+
707
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
708
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
709
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
710
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
711
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
712
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
713
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
714
+ #: .././front/widgets.php:104
715
+ msgid "This report is unavailable"
716
+ msgstr ""
717
+
718
+ #: .././admin/setup.php:222
719
+ msgid "report generated by"
720
+ msgstr ""
721
+
722
+ #: .././admin/setup.php:260
723
+ msgid "Settings"
724
+ msgstr "Ajustes"
725
+
726
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
727
+ msgid "Google Analytics Dashboard"
728
+ msgstr "Escritorio de Google Analytics"
729
+
730
+ #: .././admin/widgets.php:38
731
+ msgid "This plugin needs an authorization:"
732
+ msgstr ""
733
+
734
+ #: .././admin/widgets.php:72
735
+ msgid "Something went wrong while retrieving profiles list."
736
+ msgstr ""
737
+
738
+ #: .././admin/widgets.php:72
739
+ msgid "More details"
740
+ msgstr ""
741
+
742
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
743
+ #, fuzzy
744
+ msgid "An admin should asign a default Google Analytics Profile."
745
+ msgstr "Pide a un administrador que asigne un perfil de Google Analytics"
746
+
747
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
748
+ #, fuzzy
749
+ msgid "Select Domain"
750
+ msgstr "un solo dominio"
751
+
752
+ #: .././admin/widgets.php:101
753
+ msgid ""
754
+ "Something went wrong while retrieving property data. You need to create and "
755
+ "properly configure a Google Analytics account:"
756
+ msgstr ""
757
+
758
+ #: .././admin/widgets.php:101
759
+ msgid "Find out more!"
760
+ msgstr ""
761
+
762
+ #: .././admin/widgets.php:122
763
+ msgid "Real-Time"
764
+ msgstr "Tiempo real"
765
+
766
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
767
+ #: .././front/widgets.php:177
768
+ msgid "Last 14 Days"
769
+ msgstr "Últimos 14 días"
770
+
771
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
772
+ msgid "Pages"
773
+ msgstr ""
774
+
775
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
776
+ msgid "REFERRAL"
777
+ msgstr "REFERENCIA"
778
+
779
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
780
+ msgid "ORGANIC"
781
+ msgstr "ORGÁNICO"
782
+
783
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
784
+ #: .././admin/widgets.php:486
785
+ msgid "SOCIAL"
786
+ msgstr "SOCIAL"
787
+
788
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
789
+ #: .././admin/widgets.php:487
790
+ msgid "CAMPAIGN"
791
+ msgstr ""
792
+
793
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
794
+ #: .././admin/widgets.php:490
795
+ msgid "DIRECT"
796
+ msgstr "DIRECTO"
797
+
798
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
799
+ msgid "NEW"
800
+ msgstr "NUEVO"
801
+
802
+ #: .././admin/widgets.php:366
803
+ msgid "REFERRALS"
804
+ msgstr ""
805
+
806
+ #: .././admin/widgets.php:369
807
+ msgid "KEYWORDS"
808
+ msgstr ""
809
+
810
+ #: .././front/item-reports.php:130
811
  msgid "Views vs UniqueViews"
812
  msgstr "Visitas vs visitas únicas"
813
 
814
+ #: .././front/item-reports.php:180
815
  msgid "Google Analytics Reports"
816
  msgstr ""
817
 
819
  msgid "Will display your google analytics stats in a widget"
820
  msgstr ""
821
 
822
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
823
  msgid "trend"
824
  msgstr ""
825
 
826
+ #: .././front/widgets.php:127
827
  msgid "Period:"
828
  msgstr ""
829
 
830
+ #: .././front/widgets.php:127
831
  msgid "Sessions:"
832
  msgstr ""
833
 
834
+ #: .././front/widgets.php:131
835
  msgid "generated by"
836
  msgstr ""
837
 
838
+ #: .././front/widgets.php:141
839
  msgid "Google Analytics Stats"
840
  msgstr "Estadísticas de Google Analytics"
841
 
842
+ #: .././front/widgets.php:148
843
  msgid "Title:"
844
  msgstr ""
845
 
846
+ #: .././front/widgets.php:155
847
  msgid "Display:"
848
  msgstr ""
849
 
850
+ #: .././front/widgets.php:159
851
  msgid "Chart & Totals"
852
  msgstr ""
853
 
854
+ #: .././front/widgets.php:160
855
  msgid "Chart"
856
  msgstr ""
857
 
858
+ #: .././front/widgets.php:161
859
  msgid "Totals"
860
  msgstr ""
861
 
862
+ #: .././front/widgets.php:165
863
  msgid "Anonymize stats:"
864
  msgstr ""
865
 
866
+ #: .././front/widgets.php:172
867
  msgid "Stats for:"
868
  msgstr ""
869
 
870
+ #: .././front/widgets.php:182
871
  msgid "Give credits:"
872
  msgstr ""
873
 
874
+ #: .././tools/gapi.php:128
875
  msgid "Use this link to get your access code:"
876
  msgstr ""
877
 
878
+ #: .././tools/gapi.php:128
879
  msgid "Get Access Code"
880
  msgstr ""
881
 
882
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
883
  msgid "Use the red link to get your access code!"
884
  msgstr ""
885
 
886
+ #: .././tools/gapi.php:133
887
  msgid "Access Code:"
888
  msgstr "Código de acceso:"
889
 
890
+ #: .././tools/gapi.php:145
891
  msgid "Save Access Code"
892
  msgstr ""
893
 
894
+ #: .././tools/gapi.php:381
895
  msgid "Organic Searches"
896
  msgstr "Búsquedas orgánicas"
897
 
898
+ #: .././tools/gapi.php:389
899
  msgid "Hour"
900
  msgstr "Hora"
901
 
902
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
903
  msgid "Date"
904
  msgstr "Fecha"
905
 
906
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
907
  msgid "Views"
908
  msgstr "Vistas"
909
 
910
+ #: .././tools/gapi.php:617
911
  msgid "Countries"
912
  msgstr ""
913
 
914
+ #: .././tools/gapi.php:626
915
  msgid "Cities from"
916
  msgstr ""
917
 
918
+ #: .././tools/gapi.php:698
919
  msgid "Channels"
920
  msgstr ""
921
 
922
+ #: .././tools/gapi.php:761
923
  msgid "Type"
924
  msgstr "Tipo"
925
 
926
+ #: .././tools/gapi.php:856
927
  msgid "UniqueViews"
928
  msgstr "Visitas únicas"
929
 
930
+ #~ msgid "Google Analytics Dashboard Settings"
931
+ #~ msgstr "Configuración del escritorio de Google Analytics"
932
+
933
+ #~ msgid "and look for Google Analytics Dashboard."
934
+ #~ msgstr "y busca escritorio de Google Analytics."
935
+
936
  #, fuzzy
937
  #~ msgid "Google Analytics account"
938
  #~ msgstr "Seguimiento de Google Analytics"
languages/ga-dash-fr_FR.mo CHANGED
Binary file
languages/ga-dash-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:40+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:40+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: fr_FR\n"
@@ -16,598 +16,387 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr "Google Analytics"
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr "Réglages Généraux"
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr "Réglages B.O"
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr "Réglages F.O"
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr "Code de Tracking"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Réglages"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Tableau de Bord Google Analytics"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr "Ce plugin a besoin d&#39;une autorisation:"
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr "autoriser le plugin"
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr "Nom de la vue:"
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
- msgstr ""
74
- "Quelque chose s&#39;est mal passé lors de la récupération de la liste des "
75
- "profils."
76
-
77
- #: .././admin/dashboard_widgets.php:221
78
- msgid "More details"
79
- msgstr "Plus de Détails"
80
-
81
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
82
- msgid "An admin should asign a default Google Analytics Profile."
83
- msgstr "Un administrateur doit assigner un profil Google Analytics par défaut."
84
-
85
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
86
- msgid "Select Domain"
87
- msgstr "Sélectionner un Domaine"
88
-
89
- #: .././admin/dashboard_widgets.php:250
90
- msgid ""
91
- "Something went wrong while retrieving property data. You need to create and "
92
- "properly configure a Google Analytics account:"
93
- msgstr ""
94
- "Quelque chose s&#39;est mal passé lors de la récupération des données de "
95
- "propriété. Vous devez créer et configurer correctement un compte Google "
96
- "Analytics:"
97
-
98
- #: .././admin/dashboard_widgets.php:250
99
- msgid "Find out more!"
100
- msgstr "En savoir plus!"
101
-
102
- #: .././admin/dashboard_widgets.php:278
103
- msgid "Real-Time"
104
- msgstr "Temps-Réel"
105
-
106
- #: .././admin/dashboard_widgets.php:279
107
- msgid "Today"
108
- msgstr "Aujourd&#39;hui"
109
-
110
- #: .././admin/dashboard_widgets.php:281
111
- msgid "Yesterday"
112
- msgstr "Hier"
113
-
114
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
115
- #: .././front/widgets.php:182
116
- msgid "Last 7 Days"
117
- msgstr "7 Derniers Jours"
118
-
119
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
120
- #: .././front/widgets.php:183
121
- msgid "Last 14 Days"
122
- msgstr "14 Derniers Jours"
123
-
124
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
125
- #: .././front/widgets.php:184
126
- msgid "Last 30 Days"
127
- msgstr "30 Derniers Jours"
128
-
129
- #: .././admin/dashboard_widgets.php:289
130
- msgid "Last 90 Days"
131
- msgstr "90 Derniers Jours"
132
-
133
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
134
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
135
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
136
- #: .././tools/gapi.php:825
137
- msgid "Sessions"
138
  msgstr ""
139
 
140
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
141
- #: .././tools/gapi.php:364
142
- msgid "Users"
143
- msgstr ""
144
-
145
- #: .././admin/dashboard_widgets.php:298
146
- msgid "Organic"
147
- msgstr "Organique"
148
-
149
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
150
- #: .././tools/gapi.php:367
151
- msgid "Page Views"
152
- msgstr "Pages vues"
153
-
154
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
155
- #: .././tools/gapi.php:370
156
- msgid "Bounce Rate"
157
- msgstr "Taux de Rebond"
158
-
159
- #: .././admin/dashboard_widgets.php:304
160
- msgid "Location"
161
- msgstr ""
162
-
163
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
164
- msgid "Pages"
165
- msgstr ""
166
-
167
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
168
- msgid "Referrers"
169
- msgstr ""
170
-
171
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
172
- #: .././tools/gapi.php:825
173
- msgid "Searches"
174
- msgstr ""
175
-
176
- #: .././admin/dashboard_widgets.php:312
177
- msgid "Traffic Details"
178
- msgstr ""
179
-
180
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
181
- msgid "REFERRAL"
182
- msgstr "RENVOI"
183
-
184
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
185
- msgid "ORGANIC"
186
- msgstr "ORGANIQUE"
187
-
188
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
189
- #: .././admin/dashboard_widgets.php:647
190
- msgid "SOCIAL"
191
- msgstr "SOCIAL"
192
-
193
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
194
- #: .././admin/dashboard_widgets.php:648
195
- msgid "CAMPAIGN"
196
- msgstr ""
197
-
198
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
199
- #: .././admin/dashboard_widgets.php:651
200
- msgid "DIRECT"
201
- msgstr "DIRECT"
202
-
203
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
204
- msgid "NEW"
205
- msgstr "NOUVEAU"
206
-
207
- #: .././admin/dashboard_widgets.php:526
208
- msgid "REFERRALS"
209
- msgstr "RÉFÉRENCES"
210
-
211
- #: .././admin/dashboard_widgets.php:529
212
- msgid "KEYWORDS"
213
- msgstr "MOTS-CLÉS"
214
-
215
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
216
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
217
- #: .././front/frontend.php:88
218
- msgid "A JavaScript Error is blocking plugin resources!"
219
- msgstr ""
220
-
221
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
222
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
223
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
224
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
225
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
226
- #: .././front/frontend.php:119
227
- msgid "Invalid response, more details in JavaScript Console (F12)."
228
- msgstr ""
229
-
230
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
231
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
232
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
233
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
234
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
235
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
236
- #: .././front/frontend.php:124 .././front/widgets.php:110
237
- msgid "This report is unavailable"
238
- msgstr ""
239
-
240
- #: .././admin/dashboard_widgets.php:880
241
- msgid "Traffic Mediums"
242
- msgstr ""
243
-
244
- #: .././admin/dashboard_widgets.php:896
245
- msgid "Visitor Type"
246
- msgstr ""
247
-
248
- #: .././admin/dashboard_widgets.php:912
249
- msgid "Social Networks"
250
- msgstr ""
251
-
252
- #: .././admin/dashboard_widgets.php:928
253
- msgid "Search Engines"
254
- msgstr ""
255
-
256
- #: .././admin/dashboard_widgets.php:1053
257
- msgid "Organic Search"
258
- msgstr ""
259
-
260
- #: .././admin/dashboard_widgets.php:1057
261
- msgid "Pages/Session"
262
- msgstr ""
263
-
264
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
265
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
266
- #: .././admin/ga_dash_settings.php:1157
267
  msgid "Settings saved."
268
  msgstr ""
269
 
270
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
271
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
272
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
273
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
274
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
275
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
276
  msgid "Cheating Huh?"
277
  msgstr "Tricher Hein?"
278
 
279
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
280
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
281
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
282
  msgid "Something went wrong, check"
283
  msgstr ""
284
 
285
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
286
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
287
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
 
 
 
 
 
 
 
288
  msgid "or"
289
  msgstr ""
290
 
291
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
292
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
293
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
294
- msgid "auhorize the plugin"
295
  msgstr "autoriser le plugin"
296
 
297
- #: .././admin/ga_dash_settings.php:95
298
  msgid "Google Analytics Frontend Settings"
299
  msgstr "Google Analytics Paramètres Frontend"
300
 
301
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
 
 
 
302
  msgid "Show stats to:"
303
  msgstr ""
304
 
305
- #: .././admin/ga_dash_settings.php:152
306
  msgid " show page sessions and users in frontend (after each article)"
307
  msgstr ""
308
 
309
- #: .././admin/ga_dash_settings.php:168
310
  msgid " show page searches (after each article)"
311
  msgstr "Afficher la page de recherche (après chaque article)"
312
 
313
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
314
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
315
- #: .././admin/ga_dash_settings.php:1351
316
  msgid "Save Changes"
317
  msgstr ""
318
 
319
- #: .././admin/ga_dash_settings.php:206
320
- msgid "Google Analytics Dashboard Settings"
321
- msgstr "Paramètres du tableau de bord Google Analytics"
322
 
323
- #: .././admin/ga_dash_settings.php:264
324
  msgid "disable Switch Profile/View functionality"
325
  msgstr "désactiver Changer Profil/Voir fonctionnalité"
326
 
327
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
328
  msgid "Real-Time Settings"
329
  msgstr "Paramètres Temps-Réel"
330
 
331
- #: .././admin/ga_dash_settings.php:271
332
  msgid "Maximum number of pages to display on real-time tab:"
333
  msgstr "Nombre maximum de pages à afficher sur l&#39;onglet en temps réel:"
334
 
335
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
336
  msgid "find out more"
337
  msgstr ""
338
 
339
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
340
  msgid "about this feature"
341
  msgstr "sur cette fonction"
342
 
343
- #: .././admin/ga_dash_settings.php:283
344
  msgid "Location Settings"
345
  msgstr ""
346
 
347
- #: .././admin/ga_dash_settings.php:287
348
  msgid "Target Geo Map to country:"
349
  msgstr ""
350
 
351
- #: .././admin/ga_dash_settings.php:336
352
  msgid "The tracking component is disabled. You should set"
353
  msgstr ""
354
 
355
- #: .././admin/ga_dash_settings.php:336
356
  msgid "Tracking Options"
357
  msgstr ""
358
 
359
- #: .././admin/ga_dash_settings.php:336
360
  msgid "to"
361
  msgstr ""
362
 
363
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
364
  msgid "Enabled"
365
  msgstr "Active"
366
 
367
- #: .././admin/ga_dash_settings.php:342
368
  msgid "Google Analytics Tracking Code"
369
  msgstr "Google Analytics Tracking Code"
370
 
371
- #: .././admin/ga_dash_settings.php:351
372
  msgid "Basic Settings"
373
  msgstr ""
374
 
375
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
376
  msgid "Events Tracking"
377
  msgstr "Suivi des événements"
378
 
379
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
380
  msgid "Custom Definitions"
381
  msgstr ""
382
 
383
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
384
- #: .././admin/ga_dash_settings.php:1328
385
  msgid "Exclude Tracking"
386
  msgstr "Exclure Tracking"
387
 
388
- #: .././admin/ga_dash_settings.php:355
389
  msgid "Advanced Settings"
390
  msgstr ""
391
 
392
- #: .././admin/ga_dash_settings.php:363
393
  msgid "Tracking Settings"
394
  msgstr "Paramètres de suivi"
395
 
396
- #: .././admin/ga_dash_settings.php:366
397
  msgid "Tracking Options:"
398
  msgstr ""
399
 
400
- #: .././admin/ga_dash_settings.php:370
401
  msgid "Disabled"
402
  msgstr "Désactive"
403
 
404
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
405
  msgid "Tracking ID:"
406
  msgstr "Suivi ID:"
407
 
408
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
409
  msgid "Default URL:"
410
  msgstr "URL par défaut:"
411
 
412
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
413
  msgid "Time Zone:"
414
  msgstr "Fuseau horaire:"
415
 
416
- #: .././admin/ga_dash_settings.php:385
417
  #, fuzzy
418
  msgid "Basic Tracking"
419
  msgstr "Suivi des événements"
420
 
421
- #: .././admin/ga_dash_settings.php:388
422
  msgid "Tracking Type:"
423
  msgstr ""
424
 
425
- #: .././admin/ga_dash_settings.php:392
426
  msgid "Classic Analytics"
427
  msgstr "Analytics classiques"
428
 
429
- #: .././admin/ga_dash_settings.php:394
430
  msgid "Universal Analytics"
431
  msgstr "Universel Analytics"
432
 
433
- #: .././admin/ga_dash_settings.php:408
434
  msgid " anonymize IPs while tracking"
435
  msgstr "anonymiser IP tout en suivant"
436
 
437
- #: .././admin/ga_dash_settings.php:423
438
  msgid " enable remarketing, demographics and interests reports"
439
  msgstr ""
440
  "permettre remarketing, les données démographiques et les rapports d&#39;"
441
  "intérêts"
442
 
443
- #: .././admin/ga_dash_settings.php:445
444
  msgid " track downloads, mailto and outbound links"
445
  msgstr "téléchargement de titres, mailto et liens sortants"
446
 
447
- #: .././admin/ga_dash_settings.php:449
448
  #, fuzzy
449
  msgid "Downloads Regex:"
450
  msgstr "Filtres téléchargement:"
451
 
452
- #: .././admin/ga_dash_settings.php:466
453
  msgid " track affiliate links matching this regex"
454
  msgstr ""
455
 
456
- #: .././admin/ga_dash_settings.php:470
457
  msgid "Affiliates Regex:"
458
  msgstr ""
459
 
460
- #: .././admin/ga_dash_settings.php:487
461
  msgid " track fragment identifiers, hashmarks (#) in URI links"
462
  msgstr ""
463
 
464
- #: .././admin/ga_dash_settings.php:498
465
  msgid "Authors:"
466
  msgstr ""
467
 
468
- #: .././admin/ga_dash_settings.php:508
469
  msgid "Publication Year:"
470
  msgstr ""
471
 
472
- #: .././admin/ga_dash_settings.php:518
473
  msgid "Categories:"
474
  msgstr ""
475
 
476
- #: .././admin/ga_dash_settings.php:528
477
  msgid "User Type:"
478
  msgstr ""
479
 
480
- #: .././admin/ga_dash_settings.php:542
481
  #, fuzzy
482
  msgid "Advanced Tracking"
483
  msgstr "Suivi des événements"
484
 
485
- #: .././admin/ga_dash_settings.php:545
486
  msgid "Page Speed SR:"
487
  msgstr "Page Speed SR:"
488
 
489
- #: .././admin/ga_dash_settings.php:563
490
  #, fuzzy
491
  msgid " exclude events from bounce-rate calculation"
492
  msgstr " exclude the event hit from bounce-rate calculation"
493
 
494
- #: .././admin/ga_dash_settings.php:578
495
  msgid " enable enhanced link attribution"
496
  msgstr "permettre une meilleure liaison attribution"
497
 
498
- #: .././admin/ga_dash_settings.php:592
499
  msgid " enable AdSense account linking"
500
  msgstr "Permettre la liaison avec votre compte Adsense"
501
 
502
- #: .././admin/ga_dash_settings.php:608
503
  msgid " enable cross domain tracking"
504
  msgstr ""
505
 
506
- #: .././admin/ga_dash_settings.php:612
507
  msgid "Cross Domains:"
508
  msgstr ""
509
 
510
- #: .././admin/ga_dash_settings.php:626
511
  msgid "Exclude tracking for:"
512
  msgstr ""
513
 
514
- #: .././admin/ga_dash_settings.php:687
515
  msgid "Google Analytics Errors & Debugging"
516
  msgstr ""
517
 
518
- #: .././admin/ga_dash_settings.php:697
519
  msgid "Errors & Details"
520
  msgstr ""
521
 
522
- #: .././admin/ga_dash_settings.php:698
523
  msgid "Plugin Settings"
524
  msgstr ""
525
 
526
- #: .././admin/ga_dash_settings.php:706
527
  msgid "For errors and/or other issues please check"
528
  msgstr ""
529
 
530
- #: .././admin/ga_dash_settings.php:706
531
- msgid "the plugin documentation page"
532
  msgstr ""
533
 
534
- #: .././admin/ga_dash_settings.php:706
535
  msgid "and related tutorials"
536
  msgstr ""
537
 
538
- #: .././admin/ga_dash_settings.php:710
539
  msgid "Last Error detected"
540
  msgstr ""
541
 
542
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
543
  msgid "None"
544
  msgstr ""
545
 
546
- #: .././admin/ga_dash_settings.php:722
547
  msgid "Error Details"
548
  msgstr ""
549
 
550
- #: .././admin/ga_dash_settings.php:740
551
  msgid "Plugin Configuration"
552
  msgstr ""
553
 
554
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
555
  msgid ""
556
  "Loading the required libraries. If this results in a blank screen or a fatal "
557
  "error, try this solution:"
558
  msgstr ""
559
 
560
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
561
  msgid "Plugin authorization succeeded."
562
  msgstr "Autorisation Plugin réussi."
563
 
564
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
565
  msgid ""
566
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
567
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
568
  msgstr ""
569
 
570
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
571
  msgid "Cleared Cache."
572
  msgstr "Cache effacé."
573
 
574
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
575
  msgid "Token Reseted and Revoked."
576
  msgstr "Jeton remis à zéro et révoqué."
577
 
578
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
579
  msgid "All other domains/properties were removed."
580
  msgstr "Tous les autres domaines/propriétés ont été retirés."
581
 
582
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
583
  msgid "Google Analytics Settings"
584
  msgstr "Réglages Google analytics"
585
 
586
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
587
  msgid "Use the red link (see below) to generate and get your access code!"
588
  msgstr ""
589
 
590
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
591
  msgid "Plugin Authorization"
592
  msgstr "Autorisation Plugin"
593
 
594
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
595
  msgid "You should watch the"
596
  msgstr "Vous devriez regarder la"
597
 
598
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
599
  msgid "video"
600
  msgstr "video"
601
 
602
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
603
  msgid "and read this"
604
  msgstr "et lire ce"
605
 
606
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
607
  msgid "tutorial"
608
  msgstr "Tutoriel"
609
 
610
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
611
  msgid ""
612
  "before proceeding to authorization. This plugin requires a properly "
613
  "configured Google Analytics account"
@@ -615,159 +404,405 @@ msgstr ""
615
  "avant de procéder à l&#39;autorisation. Ce plugin nécessite un compte Google "
616
  "Analytics correctement configuré"
617
 
618
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
619
  msgid " use your own API Project credentials"
620
  msgstr ""
621
  "utiliser vos propres informations d&#39;identification de projets de l&#39;"
622
  "API"
623
 
624
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
625
  msgid "API Key:"
626
  msgstr "Clé API:"
627
 
628
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
629
  msgid "Client ID:"
630
  msgstr "Client ID:"
631
 
632
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
633
  msgid "Client Secret:"
634
  msgstr "Client Secret:"
635
 
636
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
637
  msgid "Clear Authorization"
638
  msgstr "Effacer autorisation"
639
 
640
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
641
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
642
  msgid "Clear Cache"
643
  msgstr "Effacer Cache"
644
 
645
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
 
 
646
  msgid "Select Domain:"
647
  msgstr ""
648
 
649
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
650
  msgid "Property not found"
651
  msgstr ""
652
 
653
- #: .././admin/ga_dash_settings.php:985
654
  msgid "and/or hide all other domains"
655
  msgstr "et/ou masquer tous les autres domaines"
656
 
657
- #: .././admin/ga_dash_settings.php:988
658
  msgid "Hide Now"
659
  msgstr "Cacher Maintenant"
660
 
661
- #: .././admin/ga_dash_settings.php:1007
662
  msgid "Theme Color:"
663
  msgstr ""
664
 
665
- #: .././admin/ga_dash_settings.php:1017
666
- msgid "A new frontend widget is available! To enable it, go to"
667
  msgstr ""
668
- "Un nouveau widget frontend est disponible! Pour l&#39;activer, allez dans"
669
 
670
- #: .././admin/ga_dash_settings.php:1017
671
- msgid "Appearance -> Widgets"
672
- msgstr "Apparence -> Widgets"
 
 
673
 
674
- #: .././admin/ga_dash_settings.php:1017
675
- msgid "and look for Google Analytics Dashboard."
676
- msgstr "et de chercher Google Analytics Dashboard."
 
677
 
678
- #: .././admin/ga_dash_settings.php:1115
679
  msgid "Properties refreshed."
680
  msgstr "Propriétés rafraîchies."
681
 
682
- #: .././admin/ga_dash_settings.php:1201
683
  msgid "Network Setup"
684
  msgstr "Configuration du réseau"
685
 
686
- #: .././admin/ga_dash_settings.php:1216
687
  msgid " use a single Google Analytics account for the entire network"
688
  msgstr "utiliser un seul compte Google Analytics pour l&#39;ensemble du réseau"
689
 
690
- #: .././admin/ga_dash_settings.php:1288
691
  msgid "Refresh Properties"
692
  msgstr "Propriétés Actualisées"
693
 
694
- #: .././admin/ga_dash_settings.php:1294
695
  msgid "Properties/Views Settings"
696
  msgstr "Propriétés/Paramètres Vues"
697
 
698
- #: .././admin/ga_dash_settings.php:1342
699
  msgid " exclude Super Admin tracking for the entire network"
700
  msgstr ""
701
 
702
- #: .././admin/ga_dash_settings.php:1394
703
  msgid "Setup Tutorial & Demo"
704
  msgstr "Configuration Tutorial et Démo"
705
 
706
- #: .././admin/ga_dash_settings.php:1406
707
  msgid "Support & Reviews"
708
  msgstr "Support & avis"
709
 
710
- #: .././admin/ga_dash_settings.php:1414
711
  msgid "Plugin documentation and support on"
712
  msgstr ""
713
 
714
- #: .././admin/ga_dash_settings.php:1421
715
  msgid "Your feedback and review are both important,"
716
  msgstr "Vos commentaires et avis sont importants,"
717
 
718
- #: .././admin/ga_dash_settings.php:1421
719
  msgid "rate this plugin"
720
  msgstr "évaluer ce plugin"
721
 
722
- #: .././admin/ga_dash_settings.php:1426
723
  msgid "Further Reading"
724
  msgstr "Lectures complémentaires"
725
 
726
- #: .././admin/ga_dash_settings.php:1434
727
  msgid "Improve search rankings"
728
  msgstr ""
729
 
730
- #: .././admin/ga_dash_settings.php:1434
731
  msgid "by moving your website to HTTPS/SSL."
732
  msgstr ""
733
 
734
- #: .././admin/ga_dash_settings.php:1441
735
  msgid "Other"
736
  msgstr "Autres"
737
 
738
- #: .././admin/ga_dash_settings.php:1441
739
  msgid "WordPress Plugins"
740
  msgstr "Plugin Wordpress"
741
 
742
- #: .././admin/ga_dash_settings.php:1441
743
  msgid "written by the same author"
744
  msgstr "écrit par le même auteur"
745
 
746
- #: .././admin/ga_dash_settings.php:1446
747
  msgid "Other Services"
748
  msgstr ""
749
 
750
- #: .././admin/ga_dash_settings.php:1453
751
  msgid "Speed up your website and plug into a whole"
752
  msgstr ""
753
 
754
- #: .././admin/ga_dash_settings.php:1453
755
  msgid "new level of site speed"
756
  msgstr ""
757
 
758
- #: .././admin/ga_dash_settings.php:1460
759
  msgid "Web Analytics"
760
  msgstr "Web Analytics"
761
 
762
- #: .././admin/ga_dash_settings.php:1460
763
  msgid "service with users tracking at IP level."
764
  msgstr ""
765
 
766
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
767
  msgid "Views vs UniqueViews"
768
  msgstr "Vues VS Unique Vues"
769
 
770
- #: .././front/frontend.php:184
771
  msgid "Google Analytics Reports"
772
  msgstr ""
773
 
@@ -775,114 +810,127 @@ msgstr ""
775
  msgid "Will display your google analytics stats in a widget"
776
  msgstr "Affichera vos statistiques Google Analytics dans un widget"
777
 
778
- #: .././front/widgets.php:40 .././tools/gapi.php:744
779
  msgid "trend"
780
  msgstr ""
781
 
782
- #: .././front/widgets.php:133
783
  msgid "Period:"
784
  msgstr "Période:"
785
 
786
- #: .././front/widgets.php:133
787
  msgid "Sessions:"
788
  msgstr ""
789
 
790
- #: .././front/widgets.php:137
791
  msgid "generated by"
792
  msgstr "générée par"
793
 
794
- #: .././front/widgets.php:147
795
  msgid "Google Analytics Stats"
796
  msgstr "Google Analytics Statistiques"
797
 
798
- #: .././front/widgets.php:154
799
  msgid "Title:"
800
  msgstr "Titre:"
801
 
802
- #: .././front/widgets.php:161
803
  msgid "Display:"
804
  msgstr "Affichage:"
805
 
806
- #: .././front/widgets.php:165
807
  msgid "Chart & Totals"
808
  msgstr "Graphique & Totaux"
809
 
810
- #: .././front/widgets.php:166
811
  msgid "Chart"
812
  msgstr "raphique"
813
 
814
- #: .././front/widgets.php:167
815
  msgid "Totals"
816
  msgstr "Totaux"
817
 
818
- #: .././front/widgets.php:171
819
  msgid "Anonymize stats:"
820
  msgstr ""
821
 
822
- #: .././front/widgets.php:178
823
  msgid "Stats for:"
824
  msgstr "Statistiques pour:"
825
 
826
- #: .././front/widgets.php:188
827
  msgid "Give credits:"
828
  msgstr "Accorder des crédits:"
829
 
830
- #: .././tools/gapi.php:129
831
  msgid "Use this link to get your access code:"
832
  msgstr "Utilisez ce lien pour obtenir votre code d&#39;accès:"
833
 
834
- #: .././tools/gapi.php:129
835
  msgid "Get Access Code"
836
  msgstr "Obtenir le code d&#39;accès"
837
 
838
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
839
  msgid "Use the red link to get your access code!"
840
  msgstr ""
841
 
842
- #: .././tools/gapi.php:134
843
  msgid "Access Code:"
844
  msgstr "Code d&#39;Accès:"
845
 
846
- #: .././tools/gapi.php:146
847
  msgid "Save Access Code"
848
  msgstr "Sauver le Code d&#39;Accès"
849
 
850
- #: .././tools/gapi.php:373
851
  msgid "Organic Searches"
852
  msgstr "Recherches Organique"
853
 
854
- #: .././tools/gapi.php:381
855
  msgid "Hour"
856
  msgstr "Heure"
857
 
858
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
859
  msgid "Date"
860
  msgstr "Date"
861
 
862
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
863
  msgid "Views"
864
  msgstr "Vues"
865
 
866
- #: .././tools/gapi.php:576
867
  msgid "Countries"
868
  msgstr ""
869
 
870
- #: .././tools/gapi.php:590
871
  msgid "Cities from"
872
  msgstr ""
873
 
874
- #: .././tools/gapi.php:644
875
  msgid "Channels"
876
  msgstr ""
877
 
878
- #: .././tools/gapi.php:698
879
  msgid "Type"
880
  msgstr "Type"
881
 
882
- #: .././tools/gapi.php:783
883
  msgid "UniqueViews"
884
  msgstr "Unique vues"
885
 
 
 
 
 
 
 
 
 
 
 
 
 
 
886
  #~ msgid "Something went wrong, you need to"
887
  #~ msgstr "Quelque chose s&#39;est mal passé, vous devez"
888
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: fr_FR\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
22
 
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings saved."
27
  msgstr ""
28
 
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
  msgid "Cheating Huh?"
37
  msgstr "Tricher Hein?"
38
 
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
  msgid "Something went wrong, check"
43
  msgstr ""
44
 
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr ""
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
  msgid "or"
56
  msgstr ""
57
 
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
  msgstr "autoriser le plugin"
63
 
64
+ #: .././admin/settings.php:98
65
  msgid "Google Analytics Frontend Settings"
66
  msgstr "Google Analytics Paramètres Frontend"
67
 
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
  msgid "Show stats to:"
74
  msgstr ""
75
 
76
+ #: .././admin/settings.php:159
77
  msgid " show page sessions and users in frontend (after each article)"
78
  msgstr ""
79
 
80
+ #: .././admin/settings.php:175
81
  msgid " show page searches (after each article)"
82
  msgstr "Afficher la page de recherche (après chaque article)"
83
 
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
  msgid "Save Changes"
88
  msgstr ""
89
 
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
 
94
+ #: .././admin/settings.php:279
95
  msgid "disable Switch Profile/View functionality"
96
  msgstr "désactiver Changer Profil/Voir fonctionnalité"
97
 
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
  msgid "Real-Time Settings"
108
  msgstr "Paramètres Temps-Réel"
109
 
110
+ #: .././admin/settings.php:316
111
  msgid "Maximum number of pages to display on real-time tab:"
112
  msgstr "Nombre maximum de pages à afficher sur l&#39;onglet en temps réel:"
113
 
114
+ #: .././admin/settings.php:321 .././admin/settings.php:337
115
  msgid "find out more"
116
  msgstr ""
117
 
118
+ #: .././admin/settings.php:323 .././admin/settings.php:340
119
  msgid "about this feature"
120
  msgstr "sur cette fonction"
121
 
122
+ #: .././admin/settings.php:328
123
  msgid "Location Settings"
124
  msgstr ""
125
 
126
+ #: .././admin/settings.php:332
127
  msgid "Target Geo Map to country:"
128
  msgstr ""
129
 
130
+ #: .././admin/settings.php:381
131
  msgid "The tracking component is disabled. You should set"
132
  msgstr ""
133
 
134
+ #: .././admin/settings.php:381
135
  msgid "Tracking Options"
136
  msgstr ""
137
 
138
+ #: .././admin/settings.php:381
139
  msgid "to"
140
  msgstr ""
141
 
142
+ #: .././admin/settings.php:381 .././admin/settings.php:417
143
  msgid "Enabled"
144
  msgstr "Active"
145
 
146
+ #: .././admin/settings.php:387
147
  msgid "Google Analytics Tracking Code"
148
  msgstr "Google Analytics Tracking Code"
149
 
150
+ #: .././admin/settings.php:396
151
  msgid "Basic Settings"
152
  msgstr ""
153
 
154
+ #: .././admin/settings.php:397 .././admin/settings.php:476
155
  msgid "Events Tracking"
156
  msgstr "Suivi des événements"
157
 
158
+ #: .././admin/settings.php:398 .././admin/settings.php:540
159
  msgid "Custom Definitions"
160
  msgstr ""
161
 
162
+ #: .././admin/settings.php:399 .././admin/settings.php:668
163
+ #: .././admin/settings.php:1405
164
  msgid "Exclude Tracking"
165
  msgstr "Exclure Tracking"
166
 
167
+ #: .././admin/settings.php:400
168
  msgid "Advanced Settings"
169
  msgstr ""
170
 
171
+ #: .././admin/settings.php:408
172
  msgid "Tracking Settings"
173
  msgstr "Paramètres de suivi"
174
 
175
+ #: .././admin/settings.php:411
176
  msgid "Tracking Options:"
177
  msgstr ""
178
 
179
+ #: .././admin/settings.php:415
180
  msgid "Disabled"
181
  msgstr "Désactive"
182
 
183
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
184
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
185
+ #: .././admin/widgets.php:67
186
+ msgid "View Name:"
187
+ msgstr "Nom de la vue:"
188
+
189
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
190
  msgid "Tracking ID:"
191
  msgstr "Suivi ID:"
192
 
193
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
194
  msgid "Default URL:"
195
  msgstr "URL par défaut:"
196
 
197
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
198
  msgid "Time Zone:"
199
  msgstr "Fuseau horaire:"
200
 
201
+ #: .././admin/settings.php:430
202
  #, fuzzy
203
  msgid "Basic Tracking"
204
  msgstr "Suivi des événements"
205
 
206
+ #: .././admin/settings.php:433
207
  msgid "Tracking Type:"
208
  msgstr ""
209
 
210
+ #: .././admin/settings.php:437
211
  msgid "Classic Analytics"
212
  msgstr "Analytics classiques"
213
 
214
+ #: .././admin/settings.php:439
215
  msgid "Universal Analytics"
216
  msgstr "Universel Analytics"
217
 
218
+ #: .././admin/settings.php:453
219
  msgid " anonymize IPs while tracking"
220
  msgstr "anonymiser IP tout en suivant"
221
 
222
+ #: .././admin/settings.php:468
223
  msgid " enable remarketing, demographics and interests reports"
224
  msgstr ""
225
  "permettre remarketing, les données démographiques et les rapports d&#39;"
226
  "intérêts"
227
 
228
+ #: .././admin/settings.php:490
229
  msgid " track downloads, mailto and outbound links"
230
  msgstr "téléchargement de titres, mailto et liens sortants"
231
 
232
+ #: .././admin/settings.php:494
233
  #, fuzzy
234
  msgid "Downloads Regex:"
235
  msgstr "Filtres téléchargement:"
236
 
237
+ #: .././admin/settings.php:511
238
  msgid " track affiliate links matching this regex"
239
  msgstr ""
240
 
241
+ #: .././admin/settings.php:515
242
  msgid "Affiliates Regex:"
243
  msgstr ""
244
 
245
+ #: .././admin/settings.php:532
246
  msgid " track fragment identifiers, hashmarks (#) in URI links"
247
  msgstr ""
248
 
249
+ #: .././admin/settings.php:543
250
  msgid "Authors:"
251
  msgstr ""
252
 
253
+ #: .././admin/settings.php:553
254
  msgid "Publication Year:"
255
  msgstr ""
256
 
257
+ #: .././admin/settings.php:563
258
  msgid "Categories:"
259
  msgstr ""
260
 
261
+ #: .././admin/settings.php:573
262
  msgid "User Type:"
263
  msgstr ""
264
 
265
+ #: .././admin/settings.php:587
266
  #, fuzzy
267
  msgid "Advanced Tracking"
268
  msgstr "Suivi des événements"
269
 
270
+ #: .././admin/settings.php:590
271
  msgid "Page Speed SR:"
272
  msgstr "Page Speed SR:"
273
 
274
+ #: .././admin/settings.php:608
275
  #, fuzzy
276
  msgid " exclude events from bounce-rate calculation"
277
  msgstr " exclude the event hit from bounce-rate calculation"
278
 
279
+ #: .././admin/settings.php:623
280
  msgid " enable enhanced link attribution"
281
  msgstr "permettre une meilleure liaison attribution"
282
 
283
+ #: .././admin/settings.php:637
284
  msgid " enable AdSense account linking"
285
  msgstr "Permettre la liaison avec votre compte Adsense"
286
 
287
+ #: .././admin/settings.php:653
288
  msgid " enable cross domain tracking"
289
  msgstr ""
290
 
291
+ #: .././admin/settings.php:657
292
  msgid "Cross Domains:"
293
  msgstr ""
294
 
295
+ #: .././admin/settings.php:671
296
  msgid "Exclude tracking for:"
297
  msgstr ""
298
 
299
+ #: .././admin/settings.php:741
300
  msgid "Google Analytics Errors & Debugging"
301
  msgstr ""
302
 
303
+ #: .././admin/settings.php:751
304
  msgid "Errors & Details"
305
  msgstr ""
306
 
307
+ #: .././admin/settings.php:752
308
  msgid "Plugin Settings"
309
  msgstr ""
310
 
311
+ #: .././admin/settings.php:760
312
  msgid "For errors and/or other issues please check"
313
  msgstr ""
314
 
315
+ #: .././admin/settings.php:760
316
+ msgid "this documentation page"
317
  msgstr ""
318
 
319
+ #: .././admin/settings.php:760
320
  msgid "and related tutorials"
321
  msgstr ""
322
 
323
+ #: .././admin/settings.php:764
324
  msgid "Last Error detected"
325
  msgstr ""
326
 
327
+ #: .././admin/settings.php:769 .././admin/settings.php:782
328
  msgid "None"
329
  msgstr ""
330
 
331
+ #: .././admin/settings.php:776
332
  msgid "Error Details"
333
  msgstr ""
334
 
335
+ #: .././admin/settings.php:796
336
  msgid "Plugin Configuration"
337
  msgstr ""
338
 
339
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
340
  msgid ""
341
  "Loading the required libraries. If this results in a blank screen or a fatal "
342
  "error, try this solution:"
343
  msgstr ""
344
 
345
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
346
  msgid "Plugin authorization succeeded."
347
  msgstr "Autorisation Plugin réussi."
348
 
349
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
350
  msgid ""
351
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
352
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
353
  msgstr ""
354
 
355
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
356
  msgid "Cleared Cache."
357
  msgstr "Cache effacé."
358
 
359
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
360
  msgid "Token Reseted and Revoked."
361
  msgstr "Jeton remis à zéro et révoqué."
362
 
363
+ #: .././admin/settings.php:910
364
+ msgid "All errors reseted."
365
+ msgstr ""
366
+
367
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
368
  msgid "All other domains/properties were removed."
369
  msgstr "Tous les autres domaines/propriétés ont été retirés."
370
 
371
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
372
  msgid "Google Analytics Settings"
373
  msgstr "Réglages Google analytics"
374
 
375
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
376
  msgid "Use the red link (see below) to generate and get your access code!"
377
  msgstr ""
378
 
379
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
380
  msgid "Plugin Authorization"
381
  msgstr "Autorisation Plugin"
382
 
383
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
384
  msgid "You should watch the"
385
  msgstr "Vous devriez regarder la"
386
 
387
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
388
  msgid "video"
389
  msgstr "video"
390
 
391
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
392
  msgid "and read this"
393
  msgstr "et lire ce"
394
 
395
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
396
  msgid "tutorial"
397
  msgstr "Tutoriel"
398
 
399
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
400
  msgid ""
401
  "before proceeding to authorization. This plugin requires a properly "
402
  "configured Google Analytics account"
404
  "avant de procéder à l&#39;autorisation. Ce plugin nécessite un compte Google "
405
  "Analytics correctement configuré"
406
 
407
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
408
  msgid " use your own API Project credentials"
409
  msgstr ""
410
  "utiliser vos propres informations d&#39;identification de projets de l&#39;"
411
  "API"
412
 
413
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
414
  msgid "API Key:"
415
  msgstr "Clé API:"
416
 
417
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
418
  msgid "Client ID:"
419
  msgstr "Client ID:"
420
 
421
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
422
  msgid "Client Secret:"
423
  msgstr "Client Secret:"
424
 
425
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
426
  msgid "Clear Authorization"
427
  msgstr "Effacer autorisation"
428
 
429
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
430
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
431
  msgid "Clear Cache"
432
  msgstr "Effacer Cache"
433
 
434
+ #: .././admin/settings.php:1022
435
+ msgid "Reset Errors"
436
+ msgstr ""
437
+
438
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
439
+ #: .././admin/setup.php:109
440
+ msgid "General Settings"
441
+ msgstr "Réglages Généraux"
442
+
443
+ #: .././admin/settings.php:1031
444
  msgid "Select Domain:"
445
  msgstr ""
446
 
447
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
448
  msgid "Property not found"
449
  msgstr ""
450
 
451
+ #: .././admin/settings.php:1049
452
  msgid "and/or hide all other domains"
453
  msgstr "et/ou masquer tous les autres domaines"
454
 
455
+ #: .././admin/settings.php:1052
456
  msgid "Hide Now"
457
  msgstr "Cacher Maintenant"
458
 
459
+ #: .././admin/settings.php:1071
460
  msgid "Theme Color:"
461
  msgstr ""
462
 
463
+ #: .././admin/settings.php:1081
464
+ msgid "Automatic Updates"
465
  msgstr ""
 
466
 
467
+ #: .././admin/settings.php:1097
468
+ msgid ""
469
+ "automatic updates for minor versions (security and maintainance releases "
470
+ "only)"
471
+ msgstr ""
472
 
473
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
474
+ #: .././admin/widgets.php:38
475
+ msgid "Authorize Plugin"
476
+ msgstr "autoriser le plugin"
477
 
478
+ #: .././admin/settings.php:1192
479
  msgid "Properties refreshed."
480
  msgstr "Propriétés rafraîchies."
481
 
482
+ #: .././admin/settings.php:1278
483
  msgid "Network Setup"
484
  msgstr "Configuration du réseau"
485
 
486
+ #: .././admin/settings.php:1293
487
  msgid " use a single Google Analytics account for the entire network"
488
  msgstr "utiliser un seul compte Google Analytics pour l&#39;ensemble du réseau"
489
 
490
+ #: .././admin/settings.php:1365
491
  msgid "Refresh Properties"
492
  msgstr "Propriétés Actualisées"
493
 
494
+ #: .././admin/settings.php:1371
495
  msgid "Properties/Views Settings"
496
  msgstr "Propriétés/Paramètres Vues"
497
 
498
+ #: .././admin/settings.php:1419
499
  msgid " exclude Super Admin tracking for the entire network"
500
  msgstr ""
501
 
502
+ #: .././admin/settings.php:1471
503
  msgid "Setup Tutorial & Demo"
504
  msgstr "Configuration Tutorial et Démo"
505
 
506
+ #: .././admin/settings.php:1483
507
  msgid "Support & Reviews"
508
  msgstr "Support & avis"
509
 
510
+ #: .././admin/settings.php:1491
511
  msgid "Plugin documentation and support on"
512
  msgstr ""
513
 
514
+ #: .././admin/settings.php:1498
515
  msgid "Your feedback and review are both important,"
516
  msgstr "Vos commentaires et avis sont importants,"
517
 
518
+ #: .././admin/settings.php:1498
519
  msgid "rate this plugin"
520
  msgstr "évaluer ce plugin"
521
 
522
+ #: .././admin/settings.php:1503
523
  msgid "Further Reading"
524
  msgstr "Lectures complémentaires"
525
 
526
+ #: .././admin/settings.php:1511
527
  msgid "Improve search rankings"
528
  msgstr ""
529
 
530
+ #: .././admin/settings.php:1511
531
  msgid "by moving your website to HTTPS/SSL."
532
  msgstr ""
533
 
534
+ #: .././admin/settings.php:1518
535
  msgid "Other"
536
  msgstr "Autres"
537
 
538
+ #: .././admin/settings.php:1518
539
  msgid "WordPress Plugins"
540
  msgstr "Plugin Wordpress"
541
 
542
+ #: .././admin/settings.php:1518
543
  msgid "written by the same author"
544
  msgstr "écrit par le même auteur"
545
 
546
+ #: .././admin/settings.php:1523
547
  msgid "Other Services"
548
  msgstr ""
549
 
550
+ #: .././admin/settings.php:1531
551
  msgid "Speed up your website and plug into a whole"
552
  msgstr ""
553
 
554
+ #: .././admin/settings.php:1531
555
  msgid "new level of site speed"
556
  msgstr ""
557
 
558
+ #: .././admin/settings.php:1538
559
  msgid "Web Analytics"
560
  msgstr "Web Analytics"
561
 
562
+ #: .././admin/settings.php:1538
563
  msgid "service with users tracking at IP level."
564
  msgstr ""
565
 
566
+ #: .././admin/setup.php:69 .././admin/setup.php:105
567
+ msgid "Google Analytics"
568
+ msgstr "Google Analytics"
569
+
570
+ #: .././admin/setup.php:77
571
+ msgid "Backend Settings"
572
+ msgstr "Réglages B.O"
573
+
574
+ #: .././admin/setup.php:81
575
+ msgid "Frontend Settings"
576
+ msgstr "Réglages F.O"
577
+
578
+ #: .././admin/setup.php:85
579
+ msgid "Tracking Code"
580
+ msgstr "Code de Tracking"
581
+
582
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
583
+ msgid "Today"
584
+ msgstr "Aujourd&#39;hui"
585
+
586
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
587
+ msgid "Yesterday"
588
+ msgstr "Hier"
589
+
590
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
591
+ #: .././front/widgets.php:68 .././front/widgets.php:176
592
+ msgid "Last 7 Days"
593
+ msgstr "7 Derniers Jours"
594
+
595
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
596
+ #: .././front/widgets.php:74 .././front/widgets.php:178
597
+ msgid "Last 30 Days"
598
+ msgstr "30 Derniers Jours"
599
+
600
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
601
+ msgid "Last 90 Days"
602
+ msgstr "90 Derniers Jours"
603
+
604
+ #: .././admin/setup.php:197 .././admin/setup.php:213
605
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
606
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
607
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
608
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
609
+ msgid "Sessions"
610
+ msgstr ""
611
+
612
+ #: .././admin/setup.php:198 .././admin/setup.php:214
613
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
614
+ #: .././tools/gapi.php:372
615
+ msgid "Users"
616
+ msgstr ""
617
+
618
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
619
+ msgid "Organic"
620
+ msgstr "Organique"
621
+
622
+ #: .././admin/setup.php:200 .././admin/setup.php:215
623
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
624
+ #: .././tools/gapi.php:375
625
+ msgid "Page Views"
626
+ msgstr "Pages vues"
627
+
628
+ #: .././admin/setup.php:201 .././admin/setup.php:216
629
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
630
+ #: .././tools/gapi.php:378
631
+ msgid "Bounce Rate"
632
+ msgstr "Taux de Rebond"
633
+
634
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
635
+ msgid "Location"
636
+ msgstr ""
637
+
638
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
639
+ msgid "Referrers"
640
+ msgstr ""
641
+
642
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
643
+ #: .././tools/gapi.php:898
644
+ msgid "Searches"
645
+ msgstr ""
646
+
647
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
648
+ msgid "Traffic Details"
649
+ msgstr ""
650
+
651
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
652
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
653
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
654
+ msgid "A JavaScript Error is blocking plugin resources!"
655
+ msgstr ""
656
+
657
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
658
+ msgid "Traffic Mediums"
659
+ msgstr ""
660
+
661
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
662
+ msgid "Visitor Type"
663
+ msgstr ""
664
+
665
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
666
+ msgid "Social Networks"
667
+ msgstr ""
668
+
669
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
670
+ msgid "Search Engines"
671
+ msgstr ""
672
+
673
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
674
+ msgid "Organic Search"
675
+ msgstr ""
676
+
677
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
678
+ msgid "Pages/Session"
679
+ msgstr ""
680
+
681
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
682
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
683
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
684
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
685
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
686
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
687
+ #: .././front/item-reports.php:115
688
+ msgid "Invalid response, more details in JavaScript Console (F12)."
689
+ msgstr ""
690
+
691
+ #: .././admin/setup.php:220
692
+ msgid "Not enough data collected"
693
+ msgstr ""
694
+
695
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
696
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
697
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
698
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
699
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
700
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
701
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
702
+ #: .././front/widgets.php:104
703
+ msgid "This report is unavailable"
704
+ msgstr ""
705
+
706
+ #: .././admin/setup.php:222
707
+ msgid "report generated by"
708
+ msgstr ""
709
+
710
+ #: .././admin/setup.php:260
711
+ msgid "Settings"
712
+ msgstr "Réglages"
713
+
714
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
715
+ msgid "Google Analytics Dashboard"
716
+ msgstr "Tableau de Bord Google Analytics"
717
+
718
+ #: .././admin/widgets.php:38
719
+ msgid "This plugin needs an authorization:"
720
+ msgstr "Ce plugin a besoin d&#39;une autorisation:"
721
+
722
+ #: .././admin/widgets.php:72
723
+ msgid "Something went wrong while retrieving profiles list."
724
+ msgstr ""
725
+ "Quelque chose s&#39;est mal passé lors de la récupération de la liste des "
726
+ "profils."
727
+
728
+ #: .././admin/widgets.php:72
729
+ msgid "More details"
730
+ msgstr "Plus de Détails"
731
+
732
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
733
+ msgid "An admin should asign a default Google Analytics Profile."
734
+ msgstr "Un administrateur doit assigner un profil Google Analytics par défaut."
735
+
736
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
737
+ msgid "Select Domain"
738
+ msgstr "Sélectionner un Domaine"
739
+
740
+ #: .././admin/widgets.php:101
741
+ msgid ""
742
+ "Something went wrong while retrieving property data. You need to create and "
743
+ "properly configure a Google Analytics account:"
744
+ msgstr ""
745
+ "Quelque chose s&#39;est mal passé lors de la récupération des données de "
746
+ "propriété. Vous devez créer et configurer correctement un compte Google "
747
+ "Analytics:"
748
+
749
+ #: .././admin/widgets.php:101
750
+ msgid "Find out more!"
751
+ msgstr "En savoir plus!"
752
+
753
+ #: .././admin/widgets.php:122
754
+ msgid "Real-Time"
755
+ msgstr "Temps-Réel"
756
+
757
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
758
+ #: .././front/widgets.php:177
759
+ msgid "Last 14 Days"
760
+ msgstr "14 Derniers Jours"
761
+
762
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
763
+ msgid "Pages"
764
+ msgstr ""
765
+
766
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
767
+ msgid "REFERRAL"
768
+ msgstr "RENVOI"
769
+
770
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
771
+ msgid "ORGANIC"
772
+ msgstr "ORGANIQUE"
773
+
774
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
775
+ #: .././admin/widgets.php:486
776
+ msgid "SOCIAL"
777
+ msgstr "SOCIAL"
778
+
779
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
780
+ #: .././admin/widgets.php:487
781
+ msgid "CAMPAIGN"
782
+ msgstr ""
783
+
784
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
785
+ #: .././admin/widgets.php:490
786
+ msgid "DIRECT"
787
+ msgstr "DIRECT"
788
+
789
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
790
+ msgid "NEW"
791
+ msgstr "NOUVEAU"
792
+
793
+ #: .././admin/widgets.php:366
794
+ msgid "REFERRALS"
795
+ msgstr "RÉFÉRENCES"
796
+
797
+ #: .././admin/widgets.php:369
798
+ msgid "KEYWORDS"
799
+ msgstr "MOTS-CLÉS"
800
+
801
+ #: .././front/item-reports.php:130
802
  msgid "Views vs UniqueViews"
803
  msgstr "Vues VS Unique Vues"
804
 
805
+ #: .././front/item-reports.php:180
806
  msgid "Google Analytics Reports"
807
  msgstr ""
808
 
810
  msgid "Will display your google analytics stats in a widget"
811
  msgstr "Affichera vos statistiques Google Analytics dans un widget"
812
 
813
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
814
  msgid "trend"
815
  msgstr ""
816
 
817
+ #: .././front/widgets.php:127
818
  msgid "Period:"
819
  msgstr "Période:"
820
 
821
+ #: .././front/widgets.php:127
822
  msgid "Sessions:"
823
  msgstr ""
824
 
825
+ #: .././front/widgets.php:131
826
  msgid "generated by"
827
  msgstr "générée par"
828
 
829
+ #: .././front/widgets.php:141
830
  msgid "Google Analytics Stats"
831
  msgstr "Google Analytics Statistiques"
832
 
833
+ #: .././front/widgets.php:148
834
  msgid "Title:"
835
  msgstr "Titre:"
836
 
837
+ #: .././front/widgets.php:155
838
  msgid "Display:"
839
  msgstr "Affichage:"
840
 
841
+ #: .././front/widgets.php:159
842
  msgid "Chart & Totals"
843
  msgstr "Graphique & Totaux"
844
 
845
+ #: .././front/widgets.php:160
846
  msgid "Chart"
847
  msgstr "raphique"
848
 
849
+ #: .././front/widgets.php:161
850
  msgid "Totals"
851
  msgstr "Totaux"
852
 
853
+ #: .././front/widgets.php:165
854
  msgid "Anonymize stats:"
855
  msgstr ""
856
 
857
+ #: .././front/widgets.php:172
858
  msgid "Stats for:"
859
  msgstr "Statistiques pour:"
860
 
861
+ #: .././front/widgets.php:182
862
  msgid "Give credits:"
863
  msgstr "Accorder des crédits:"
864
 
865
+ #: .././tools/gapi.php:128
866
  msgid "Use this link to get your access code:"
867
  msgstr "Utilisez ce lien pour obtenir votre code d&#39;accès:"
868
 
869
+ #: .././tools/gapi.php:128
870
  msgid "Get Access Code"
871
  msgstr "Obtenir le code d&#39;accès"
872
 
873
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
874
  msgid "Use the red link to get your access code!"
875
  msgstr ""
876
 
877
+ #: .././tools/gapi.php:133
878
  msgid "Access Code:"
879
  msgstr "Code d&#39;Accès:"
880
 
881
+ #: .././tools/gapi.php:145
882
  msgid "Save Access Code"
883
  msgstr "Sauver le Code d&#39;Accès"
884
 
885
+ #: .././tools/gapi.php:381
886
  msgid "Organic Searches"
887
  msgstr "Recherches Organique"
888
 
889
+ #: .././tools/gapi.php:389
890
  msgid "Hour"
891
  msgstr "Heure"
892
 
893
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
894
  msgid "Date"
895
  msgstr "Date"
896
 
897
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
898
  msgid "Views"
899
  msgstr "Vues"
900
 
901
+ #: .././tools/gapi.php:617
902
  msgid "Countries"
903
  msgstr ""
904
 
905
+ #: .././tools/gapi.php:626
906
  msgid "Cities from"
907
  msgstr ""
908
 
909
+ #: .././tools/gapi.php:698
910
  msgid "Channels"
911
  msgstr ""
912
 
913
+ #: .././tools/gapi.php:761
914
  msgid "Type"
915
  msgstr "Type"
916
 
917
+ #: .././tools/gapi.php:856
918
  msgid "UniqueViews"
919
  msgstr "Unique vues"
920
 
921
+ #~ msgid "Google Analytics Dashboard Settings"
922
+ #~ msgstr "Paramètres du tableau de bord Google Analytics"
923
+
924
+ #~ msgid "A new frontend widget is available! To enable it, go to"
925
+ #~ msgstr ""
926
+ #~ "Un nouveau widget frontend est disponible! Pour l&#39;activer, allez dans"
927
+
928
+ #~ msgid "Appearance -> Widgets"
929
+ #~ msgstr "Apparence -> Widgets"
930
+
931
+ #~ msgid "and look for Google Analytics Dashboard."
932
+ #~ msgstr "et de chercher Google Analytics Dashboard."
933
+
934
  #~ msgid "Something went wrong, you need to"
935
  #~ msgstr "Quelque chose s&#39;est mal passé, vous devez"
936
 
languages/ga-dash-hu_HU.mo CHANGED
Binary file
languages/ga-dash-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.2.20\n"
4
- "POT-Creation-Date: 2015-02-07 11:40+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:40+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: hu_HU\n"
@@ -16,594 +16,385 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr "Google Analytics"
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr "Általános beállítások"
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr "Admin beállítások"
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr "Weblap beállítások"
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr "Követőkód"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Beállítások"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Google Analytics vezérlőpult"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr "Ennek a bővítménynek engedélyre van szüksége:"
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr "Bővítmény engedélyezése"
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr "Név:"
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
- msgstr "Valami rosszul ment a profil lista lekérése közben."
74
-
75
- #: .././admin/dashboard_widgets.php:221
76
- msgid "More details"
77
- msgstr "További részletek"
78
-
79
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
80
- msgid "An admin should asign a default Google Analytics Profile."
81
  msgstr ""
82
- "Az alapértelmezett Google Analytics profilt egy admin képes kijelölni."
83
-
84
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
85
- msgid "Select Domain"
86
- msgstr "Domain kiválasztása"
87
 
88
- #: .././admin/dashboard_widgets.php:250
89
- msgid ""
90
- "Something went wrong while retrieving property data. You need to create and "
91
- "properly configure a Google Analytics account:"
92
- msgstr ""
93
- "Valami rosszul ment a tulajdon adat lekérése közben. Egy jól konfigurált "
94
- "Google Analytics fiókra van szüksége:"
95
-
96
- #: .././admin/dashboard_widgets.php:250
97
- msgid "Find out more!"
98
- msgstr "Tudjon meg többet!"
99
-
100
- #: .././admin/dashboard_widgets.php:278
101
- msgid "Real-Time"
102
- msgstr "Valós idejű"
103
-
104
- #: .././admin/dashboard_widgets.php:279
105
- msgid "Today"
106
- msgstr "Ma"
107
-
108
- #: .././admin/dashboard_widgets.php:281
109
- msgid "Yesterday"
110
- msgstr "Tegnap"
111
-
112
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
113
- #: .././front/widgets.php:182
114
- msgid "Last 7 Days"
115
- msgstr "Elmúlt 7 nap"
116
-
117
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
118
- #: .././front/widgets.php:183
119
- msgid "Last 14 Days"
120
- msgstr "Elmúlt 14 nap"
121
-
122
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
123
- #: .././front/widgets.php:184
124
- msgid "Last 30 Days"
125
- msgstr "Elmúlt 30 nap"
126
-
127
- #: .././admin/dashboard_widgets.php:289
128
- msgid "Last 90 Days"
129
- msgstr "Elmúlt 90 nap"
130
-
131
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
132
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
133
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
134
- #: .././tools/gapi.php:825
135
- msgid "Sessions"
136
- msgstr ""
137
-
138
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
139
- #: .././tools/gapi.php:364
140
- msgid "Users"
141
- msgstr ""
142
-
143
- #: .././admin/dashboard_widgets.php:298
144
- msgid "Organic"
145
- msgstr "Organikus"
146
-
147
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
148
- #: .././tools/gapi.php:367
149
- msgid "Page Views"
150
- msgstr "Oldalmegtekintések"
151
-
152
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
153
- #: .././tools/gapi.php:370
154
- msgid "Bounce Rate"
155
- msgstr "Visszafordulási arány"
156
-
157
- #: .././admin/dashboard_widgets.php:304
158
- msgid "Location"
159
- msgstr ""
160
-
161
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
162
- msgid "Pages"
163
- msgstr ""
164
-
165
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
166
- msgid "Referrers"
167
- msgstr ""
168
-
169
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
170
- #: .././tools/gapi.php:825
171
- msgid "Searches"
172
- msgstr ""
173
-
174
- #: .././admin/dashboard_widgets.php:312
175
- msgid "Traffic Details"
176
- msgstr ""
177
-
178
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
179
- msgid "REFERRAL"
180
- msgstr "HIVATKOZÓ"
181
-
182
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
183
- msgid "ORGANIC"
184
- msgstr "ORGANIKUS"
185
-
186
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
187
- #: .././admin/dashboard_widgets.php:647
188
- msgid "SOCIAL"
189
- msgstr "KÖZÖSSÉGI"
190
-
191
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
192
- #: .././admin/dashboard_widgets.php:648
193
- msgid "CAMPAIGN"
194
- msgstr ""
195
-
196
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
197
- #: .././admin/dashboard_widgets.php:651
198
- msgid "DIRECT"
199
- msgstr "KÖZVETLEN"
200
-
201
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
202
- msgid "NEW"
203
- msgstr "ÚJ"
204
-
205
- #: .././admin/dashboard_widgets.php:526
206
- msgid "REFERRALS"
207
- msgstr "HIVATKOZÓK"
208
-
209
- #: .././admin/dashboard_widgets.php:529
210
- msgid "KEYWORDS"
211
- msgstr "KULCSSZAVAK"
212
-
213
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
214
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
215
- #: .././front/frontend.php:88
216
- msgid "A JavaScript Error is blocking plugin resources!"
217
- msgstr ""
218
-
219
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
220
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
221
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
222
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
223
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
224
- #: .././front/frontend.php:119
225
- msgid "Invalid response, more details in JavaScript Console (F12)."
226
- msgstr ""
227
-
228
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
229
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
230
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
231
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
232
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
233
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
234
- #: .././front/frontend.php:124 .././front/widgets.php:110
235
- msgid "This report is unavailable"
236
- msgstr ""
237
-
238
- #: .././admin/dashboard_widgets.php:880
239
- msgid "Traffic Mediums"
240
- msgstr ""
241
-
242
- #: .././admin/dashboard_widgets.php:896
243
- msgid "Visitor Type"
244
- msgstr ""
245
-
246
- #: .././admin/dashboard_widgets.php:912
247
- msgid "Social Networks"
248
- msgstr ""
249
-
250
- #: .././admin/dashboard_widgets.php:928
251
- msgid "Search Engines"
252
- msgstr ""
253
-
254
- #: .././admin/dashboard_widgets.php:1053
255
- msgid "Organic Search"
256
- msgstr ""
257
-
258
- #: .././admin/dashboard_widgets.php:1057
259
- msgid "Pages/Session"
260
- msgstr ""
261
-
262
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
263
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
264
- #: .././admin/ga_dash_settings.php:1157
265
  msgid "Settings saved."
266
  msgstr ""
267
 
268
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
269
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
270
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
271
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
272
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
273
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
274
  msgid "Cheating Huh?"
275
  msgstr ""
276
 
277
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
278
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
279
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
280
  msgid "Something went wrong, check"
281
  msgstr ""
282
 
283
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
284
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
285
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
 
 
 
 
 
 
 
286
  msgid "or"
287
  msgstr ""
288
 
289
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
290
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
291
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
292
- msgid "auhorize the plugin"
293
  msgstr "bővítményt engedélyezni"
294
 
295
- #: .././admin/ga_dash_settings.php:95
296
  msgid "Google Analytics Frontend Settings"
297
  msgstr "Google Analytics weblap beállítások"
298
 
299
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
 
 
 
300
  msgid "Show stats to:"
301
  msgstr ""
302
 
303
- #: .././admin/ga_dash_settings.php:152
304
  msgid " show page sessions and users in frontend (after each article)"
305
  msgstr ""
306
 
307
- #: .././admin/ga_dash_settings.php:168
308
  msgid " show page searches (after each article)"
309
  msgstr "oldal keresések mutatása (minden cikk után)"
310
 
311
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
312
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
313
- #: .././admin/ga_dash_settings.php:1351
314
  msgid "Save Changes"
315
  msgstr ""
316
 
317
- #: .././admin/ga_dash_settings.php:206
318
- msgid "Google Analytics Dashboard Settings"
319
- msgstr "Google Analytics vezérlőpult beállítások"
320
 
321
- #: .././admin/ga_dash_settings.php:264
322
  msgid "disable Switch Profile/View functionality"
323
  msgstr "Profil/Nézet Kapcsoló letiltása"
324
 
325
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
326
  msgid "Real-Time Settings"
327
  msgstr "Valós idejű beállítások"
328
 
329
- #: .././admin/ga_dash_settings.php:271
330
  msgid "Maximum number of pages to display on real-time tab:"
331
  msgstr "Maximális oldalszám megjelenítése a valós idejű fülön:"
332
 
333
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
334
  msgid "find out more"
335
  msgstr ""
336
 
337
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
338
  msgid "about this feature"
339
  msgstr "erről a szolgáltatásról"
340
 
341
- #: .././admin/ga_dash_settings.php:283
342
  msgid "Location Settings"
343
  msgstr ""
344
 
345
- #: .././admin/ga_dash_settings.php:287
346
  msgid "Target Geo Map to country:"
347
  msgstr ""
348
 
349
- #: .././admin/ga_dash_settings.php:336
350
  msgid "The tracking component is disabled. You should set"
351
  msgstr ""
352
 
353
- #: .././admin/ga_dash_settings.php:336
354
  msgid "Tracking Options"
355
  msgstr ""
356
 
357
- #: .././admin/ga_dash_settings.php:336
358
  msgid "to"
359
  msgstr ""
360
 
361
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
362
  msgid "Enabled"
363
  msgstr "Engedélyezve"
364
 
365
- #: .././admin/ga_dash_settings.php:342
366
  msgid "Google Analytics Tracking Code"
367
  msgstr "Google Analytics követőkód"
368
 
369
- #: .././admin/ga_dash_settings.php:351
370
  msgid "Basic Settings"
371
  msgstr ""
372
 
373
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
374
  msgid "Events Tracking"
375
  msgstr "Események követése"
376
 
377
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
378
  msgid "Custom Definitions"
379
  msgstr ""
380
 
381
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
382
- #: .././admin/ga_dash_settings.php:1328
383
  msgid "Exclude Tracking"
384
  msgstr "Követés kizárás"
385
 
386
- #: .././admin/ga_dash_settings.php:355
387
  msgid "Advanced Settings"
388
  msgstr ""
389
 
390
- #: .././admin/ga_dash_settings.php:363
391
  msgid "Tracking Settings"
392
  msgstr "Követési beállítások"
393
 
394
- #: .././admin/ga_dash_settings.php:366
395
  msgid "Tracking Options:"
396
  msgstr ""
397
 
398
- #: .././admin/ga_dash_settings.php:370
399
  msgid "Disabled"
400
  msgstr "Letiltva"
401
 
402
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
403
  msgid "Tracking ID:"
404
  msgstr "Követési azonosító:"
405
 
406
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
407
  msgid "Default URL:"
408
  msgstr "Alapértelmezett webcím:"
409
 
410
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
411
  msgid "Time Zone:"
412
  msgstr "Időzóna:"
413
 
414
- #: .././admin/ga_dash_settings.php:385
415
  #, fuzzy
416
  msgid "Basic Tracking"
417
  msgstr "Események követése"
418
 
419
- #: .././admin/ga_dash_settings.php:388
420
  msgid "Tracking Type:"
421
  msgstr ""
422
 
423
- #: .././admin/ga_dash_settings.php:392
424
  msgid "Classic Analytics"
425
  msgstr "Klasszikus Analytics"
426
 
427
- #: .././admin/ga_dash_settings.php:394
428
  msgid "Universal Analytics"
429
  msgstr "Univerzális Analytics"
430
 
431
- #: .././admin/ga_dash_settings.php:408
432
  msgid " anonymize IPs while tracking"
433
  msgstr "nyomon követés közben IP anonimizálása"
434
 
435
- #: .././admin/ga_dash_settings.php:423
436
  msgid " enable remarketing, demographics and interests reports"
437
  msgstr "lehetővé remarketing, demográfia és érdeklődés jelentések"
438
 
439
- #: .././admin/ga_dash_settings.php:445
440
  msgid " track downloads, mailto and outbound links"
441
  msgstr "letöltések, mailto és kimenő linkek követése"
442
 
443
- #: .././admin/ga_dash_settings.php:449
444
  #, fuzzy
445
  msgid "Downloads Regex:"
446
  msgstr "Letöltés szűrők:"
447
 
448
- #: .././admin/ga_dash_settings.php:466
449
  msgid " track affiliate links matching this regex"
450
  msgstr ""
451
 
452
- #: .././admin/ga_dash_settings.php:470
453
  msgid "Affiliates Regex:"
454
  msgstr ""
455
 
456
- #: .././admin/ga_dash_settings.php:487
457
  msgid " track fragment identifiers, hashmarks (#) in URI links"
458
  msgstr ""
459
 
460
- #: .././admin/ga_dash_settings.php:498
461
  msgid "Authors:"
462
  msgstr ""
463
 
464
- #: .././admin/ga_dash_settings.php:508
465
  msgid "Publication Year:"
466
  msgstr ""
467
 
468
- #: .././admin/ga_dash_settings.php:518
469
  msgid "Categories:"
470
  msgstr ""
471
 
472
- #: .././admin/ga_dash_settings.php:528
473
  msgid "User Type:"
474
  msgstr ""
475
 
476
- #: .././admin/ga_dash_settings.php:542
477
  #, fuzzy
478
  msgid "Advanced Tracking"
479
  msgstr "Események követése"
480
 
481
- #: .././admin/ga_dash_settings.php:545
482
  #, fuzzy
483
  msgid "Page Speed SR:"
484
  msgstr "Oldal / látogató"
485
 
486
- #: .././admin/ga_dash_settings.php:563
487
  msgid " exclude events from bounce-rate calculation"
488
  msgstr ""
489
 
490
- #: .././admin/ga_dash_settings.php:578
491
  msgid " enable enhanced link attribution"
492
  msgstr "kibővített link tulajdonság engedélyezése"
493
 
494
- #: .././admin/ga_dash_settings.php:592
495
  msgid " enable AdSense account linking"
496
  msgstr ""
497
 
498
- #: .././admin/ga_dash_settings.php:608
499
  msgid " enable cross domain tracking"
500
  msgstr ""
501
 
502
- #: .././admin/ga_dash_settings.php:612
503
  msgid "Cross Domains:"
504
  msgstr ""
505
 
506
- #: .././admin/ga_dash_settings.php:626
507
  msgid "Exclude tracking for:"
508
  msgstr ""
509
 
510
- #: .././admin/ga_dash_settings.php:687
511
  msgid "Google Analytics Errors & Debugging"
512
  msgstr ""
513
 
514
- #: .././admin/ga_dash_settings.php:697
515
  msgid "Errors & Details"
516
  msgstr ""
517
 
518
- #: .././admin/ga_dash_settings.php:698
519
  msgid "Plugin Settings"
520
  msgstr ""
521
 
522
- #: .././admin/ga_dash_settings.php:706
523
  msgid "For errors and/or other issues please check"
524
  msgstr ""
525
 
526
- #: .././admin/ga_dash_settings.php:706
527
- msgid "the plugin documentation page"
528
  msgstr ""
529
 
530
- #: .././admin/ga_dash_settings.php:706
531
  msgid "and related tutorials"
532
  msgstr ""
533
 
534
- #: .././admin/ga_dash_settings.php:710
535
  msgid "Last Error detected"
536
  msgstr ""
537
 
538
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
539
  msgid "None"
540
  msgstr ""
541
 
542
- #: .././admin/ga_dash_settings.php:722
543
  msgid "Error Details"
544
  msgstr ""
545
 
546
- #: .././admin/ga_dash_settings.php:740
547
  msgid "Plugin Configuration"
548
  msgstr ""
549
 
550
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
551
  msgid ""
552
  "Loading the required libraries. If this results in a blank screen or a fatal "
553
  "error, try this solution:"
554
  msgstr ""
555
 
556
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
557
  msgid "Plugin authorization succeeded."
558
  msgstr "Bővítmény engedélyezése sikeres."
559
 
560
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
561
  msgid ""
562
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
563
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
564
  msgstr ""
565
 
566
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
567
  msgid "Cleared Cache."
568
  msgstr "Cache kiűrítve."
569
 
570
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
571
  msgid "Token Reseted and Revoked."
572
  msgstr "Token visszaállítva és visszavonva."
573
 
574
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
575
  msgid "All other domains/properties were removed."
576
  msgstr "Összes többi domain/tulajdon eltávolításra került."
577
 
578
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
579
  msgid "Google Analytics Settings"
580
  msgstr "Google Analytics beállítások"
581
 
582
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
583
  msgid "Use the red link (see below) to generate and get your access code!"
584
  msgstr ""
585
 
586
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
587
  msgid "Plugin Authorization"
588
  msgstr "Bővítmény engedélyezés"
589
 
590
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
591
  msgid "You should watch the"
592
  msgstr "Kérjük, nézze meg ezt a"
593
 
594
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
595
  msgid "video"
596
  msgstr "videót"
597
 
598
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
599
  msgid "and read this"
600
  msgstr "és olvassa el ezt az"
601
 
602
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
603
  msgid "tutorial"
604
  msgstr "oktatói anyagot"
605
 
606
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
607
  msgid ""
608
  "before proceeding to authorization. This plugin requires a properly "
609
  "configured Google Analytics account"
@@ -611,157 +402,402 @@ msgstr ""
611
  "mielőtt engedélyezné. Ezt a bővítményt csak helyesen beállított Google "
612
  "Analytics fiókkal lehet használni"
613
 
614
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
615
  msgid " use your own API Project credentials"
616
  msgstr "használja a saját API Project hitelesítő adatait"
617
 
618
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
619
  msgid "API Key:"
620
  msgstr "API key:"
621
 
622
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
623
  msgid "Client ID:"
624
  msgstr "Client ID:"
625
 
626
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
627
  msgid "Client Secret:"
628
  msgstr "Client Secret:"
629
 
630
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
631
  msgid "Clear Authorization"
632
  msgstr "Engedélyezés törlése"
633
 
634
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
635
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
636
  msgid "Clear Cache"
637
  msgstr "Cache ürítése"
638
 
639
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
 
 
640
  msgid "Select Domain:"
641
  msgstr ""
642
 
643
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
644
  msgid "Property not found"
645
  msgstr ""
646
 
647
- #: .././admin/ga_dash_settings.php:985
648
  msgid "and/or hide all other domains"
649
  msgstr "és/vagy az összes többi domain eltüntetése"
650
 
651
- #: .././admin/ga_dash_settings.php:988
652
  msgid "Hide Now"
653
  msgstr "Elrejtés most"
654
 
655
- #: .././admin/ga_dash_settings.php:1007
656
  msgid "Theme Color:"
657
  msgstr ""
658
 
659
- #: .././admin/ga_dash_settings.php:1017
660
- msgid "A new frontend widget is available! To enable it, go to"
661
- msgstr "Elérhető egy új frontend widget! Engedélyezéshez, menjen a"
662
 
663
- #: .././admin/ga_dash_settings.php:1017
664
- msgid "Appearance -> Widgets"
665
- msgstr "Megjelenés -> Widgetek"
 
 
666
 
667
- #: .././admin/ga_dash_settings.php:1017
668
- msgid "and look for Google Analytics Dashboard."
669
- msgstr "menühöz és keresse a Google Analytics vezérlőpultot."
 
670
 
671
- #: .././admin/ga_dash_settings.php:1115
672
  msgid "Properties refreshed."
673
  msgstr ""
674
 
675
- #: .././admin/ga_dash_settings.php:1201
676
  msgid "Network Setup"
677
  msgstr ""
678
 
679
- #: .././admin/ga_dash_settings.php:1216
680
  msgid " use a single Google Analytics account for the entire network"
681
  msgstr ""
682
 
683
- #: .././admin/ga_dash_settings.php:1288
684
  msgid "Refresh Properties"
685
  msgstr ""
686
 
687
- #: .././admin/ga_dash_settings.php:1294
688
  #, fuzzy
689
  msgid "Properties/Views Settings"
690
  msgstr "Weblap beállítások"
691
 
692
- #: .././admin/ga_dash_settings.php:1342
693
  msgid " exclude Super Admin tracking for the entire network"
694
  msgstr ""
695
 
696
- #: .././admin/ga_dash_settings.php:1394
697
  msgid "Setup Tutorial & Demo"
698
  msgstr "Beállítás oktató anyag és demo"
699
 
700
- #: .././admin/ga_dash_settings.php:1406
701
  msgid "Support & Reviews"
702
  msgstr "Támogatás és vélemények"
703
 
704
- #: .././admin/ga_dash_settings.php:1414
705
  msgid "Plugin documentation and support on"
706
  msgstr ""
707
 
708
- #: .././admin/ga_dash_settings.php:1421
709
  msgid "Your feedback and review are both important,"
710
  msgstr "Az Ön visszajelzése és értékelése egyaránt fontos számunkra,"
711
 
712
- #: .././admin/ga_dash_settings.php:1421
713
  msgid "rate this plugin"
714
  msgstr "értékelje ezt a bővítményt"
715
 
716
- #: .././admin/ga_dash_settings.php:1426
717
  msgid "Further Reading"
718
  msgstr "További olvasmány"
719
 
720
- #: .././admin/ga_dash_settings.php:1434
721
  msgid "Improve search rankings"
722
  msgstr ""
723
 
724
- #: .././admin/ga_dash_settings.php:1434
725
  msgid "by moving your website to HTTPS/SSL."
726
  msgstr ""
727
 
728
- #: .././admin/ga_dash_settings.php:1441
729
  msgid "Other"
730
  msgstr "Egyéb"
731
 
732
- #: .././admin/ga_dash_settings.php:1441
733
  msgid "WordPress Plugins"
734
  msgstr "WordPress bővítmények"
735
 
736
- #: .././admin/ga_dash_settings.php:1441
737
  msgid "written by the same author"
738
  msgstr "ettől a szerzőtől"
739
 
740
- #: .././admin/ga_dash_settings.php:1446
741
  msgid "Other Services"
742
  msgstr ""
743
 
744
- #: .././admin/ga_dash_settings.php:1453
745
  msgid "Speed up your website and plug into a whole"
746
  msgstr ""
747
 
748
- #: .././admin/ga_dash_settings.php:1453
749
  msgid "new level of site speed"
750
  msgstr ""
751
 
752
- #: .././admin/ga_dash_settings.php:1460
753
  msgid "Web Analytics"
754
  msgstr "Web Analitika"
755
 
756
- #: .././admin/ga_dash_settings.php:1460
757
  msgid "service with users tracking at IP level."
758
  msgstr ""
759
 
760
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
761
  msgid "Views vs UniqueViews"
762
  msgstr "Látogatások vs egyedi látogatások"
763
 
764
- #: .././front/frontend.php:184
765
  msgid "Google Analytics Reports"
766
  msgstr ""
767
 
@@ -769,114 +805,126 @@ msgstr ""
769
  msgid "Will display your google analytics stats in a widget"
770
  msgstr "Megjelenik a Google Analytics statisztika egy widgetben"
771
 
772
- #: .././front/widgets.php:40 .././tools/gapi.php:744
773
  msgid "trend"
774
  msgstr ""
775
 
776
- #: .././front/widgets.php:133
777
  msgid "Period:"
778
  msgstr "Időszak:"
779
 
780
- #: .././front/widgets.php:133
781
  msgid "Sessions:"
782
  msgstr ""
783
 
784
- #: .././front/widgets.php:137
785
  msgid "generated by"
786
  msgstr "által generált"
787
 
788
- #: .././front/widgets.php:147
789
  msgid "Google Analytics Stats"
790
  msgstr "Google Analytics statisztika"
791
 
792
- #: .././front/widgets.php:154
793
  msgid "Title:"
794
  msgstr "Cím:"
795
 
796
- #: .././front/widgets.php:161
797
  msgid "Display:"
798
  msgstr "Megjelenés:"
799
 
800
- #: .././front/widgets.php:165
801
  msgid "Chart & Totals"
802
  msgstr "Diagram és összegzés"
803
 
804
- #: .././front/widgets.php:166
805
  msgid "Chart"
806
  msgstr "Diagram"
807
 
808
- #: .././front/widgets.php:167
809
  msgid "Totals"
810
  msgstr "Összes"
811
 
812
- #: .././front/widgets.php:171
813
  msgid "Anonymize stats:"
814
  msgstr ""
815
 
816
- #: .././front/widgets.php:178
817
  msgid "Stats for:"
818
  msgstr "Statisztika:"
819
 
820
- #: .././front/widgets.php:188
821
  msgid "Give credits:"
822
  msgstr "Köszönet:"
823
 
824
- #: .././tools/gapi.php:129
825
  msgid "Use this link to get your access code:"
826
  msgstr "Használja ezt a linket, hogy a hozzáférési kódot megkapja:"
827
 
828
- #: .././tools/gapi.php:129
829
  msgid "Get Access Code"
830
  msgstr "Hozzáférési kód beszerzése"
831
 
832
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
833
  msgid "Use the red link to get your access code!"
834
  msgstr ""
835
 
836
- #: .././tools/gapi.php:134
837
  msgid "Access Code:"
838
  msgstr "Hozzáférési kód:"
839
 
840
- #: .././tools/gapi.php:146
841
  msgid "Save Access Code"
842
  msgstr "Hozzáférési kód mentése"
843
 
844
- #: .././tools/gapi.php:373
845
  msgid "Organic Searches"
846
  msgstr "Organikus keresés"
847
 
848
- #: .././tools/gapi.php:381
849
  msgid "Hour"
850
  msgstr "Óra"
851
 
852
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
853
  msgid "Date"
854
  msgstr "Dátum"
855
 
856
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
857
  msgid "Views"
858
  msgstr "Látogatások"
859
 
860
- #: .././tools/gapi.php:576
861
  msgid "Countries"
862
  msgstr ""
863
 
864
- #: .././tools/gapi.php:590
865
  msgid "Cities from"
866
  msgstr ""
867
 
868
- #: .././tools/gapi.php:644
869
  msgid "Channels"
870
  msgstr ""
871
 
872
- #: .././tools/gapi.php:698
873
  msgid "Type"
874
  msgstr "Típus"
875
 
876
- #: .././tools/gapi.php:783
877
  msgid "UniqueViews"
878
  msgstr "Egyedi látogatások"
879
 
 
 
 
 
 
 
 
 
 
 
 
 
880
  #~ msgid "Something went wrong, you need to"
881
  #~ msgstr "Valami rosszul ment, szükséges a "
882
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP 4.2.20\n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: hu_HU\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
 
 
 
 
 
22
 
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings saved."
27
  msgstr ""
28
 
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
  msgid "Cheating Huh?"
37
  msgstr ""
38
 
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
  msgid "Something went wrong, check"
43
  msgstr ""
44
 
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr ""
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
  msgid "or"
56
  msgstr ""
57
 
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
  msgstr "bővítményt engedélyezni"
63
 
64
+ #: .././admin/settings.php:98
65
  msgid "Google Analytics Frontend Settings"
66
  msgstr "Google Analytics weblap beállítások"
67
 
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
  msgid "Show stats to:"
74
  msgstr ""
75
 
76
+ #: .././admin/settings.php:159
77
  msgid " show page sessions and users in frontend (after each article)"
78
  msgstr ""
79
 
80
+ #: .././admin/settings.php:175
81
  msgid " show page searches (after each article)"
82
  msgstr "oldal keresések mutatása (minden cikk után)"
83
 
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
  msgid "Save Changes"
88
  msgstr ""
89
 
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
 
94
+ #: .././admin/settings.php:279
95
  msgid "disable Switch Profile/View functionality"
96
  msgstr "Profil/Nézet Kapcsoló letiltása"
97
 
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
  msgid "Real-Time Settings"
108
  msgstr "Valós idejű beállítások"
109
 
110
+ #: .././admin/settings.php:316
111
  msgid "Maximum number of pages to display on real-time tab:"
112
  msgstr "Maximális oldalszám megjelenítése a valós idejű fülön:"
113
 
114
+ #: .././admin/settings.php:321 .././admin/settings.php:337
115
  msgid "find out more"
116
  msgstr ""
117
 
118
+ #: .././admin/settings.php:323 .././admin/settings.php:340
119
  msgid "about this feature"
120
  msgstr "erről a szolgáltatásról"
121
 
122
+ #: .././admin/settings.php:328
123
  msgid "Location Settings"
124
  msgstr ""
125
 
126
+ #: .././admin/settings.php:332
127
  msgid "Target Geo Map to country:"
128
  msgstr ""
129
 
130
+ #: .././admin/settings.php:381
131
  msgid "The tracking component is disabled. You should set"
132
  msgstr ""
133
 
134
+ #: .././admin/settings.php:381
135
  msgid "Tracking Options"
136
  msgstr ""
137
 
138
+ #: .././admin/settings.php:381
139
  msgid "to"
140
  msgstr ""
141
 
142
+ #: .././admin/settings.php:381 .././admin/settings.php:417
143
  msgid "Enabled"
144
  msgstr "Engedélyezve"
145
 
146
+ #: .././admin/settings.php:387
147
  msgid "Google Analytics Tracking Code"
148
  msgstr "Google Analytics követőkód"
149
 
150
+ #: .././admin/settings.php:396
151
  msgid "Basic Settings"
152
  msgstr ""
153
 
154
+ #: .././admin/settings.php:397 .././admin/settings.php:476
155
  msgid "Events Tracking"
156
  msgstr "Események követése"
157
 
158
+ #: .././admin/settings.php:398 .././admin/settings.php:540
159
  msgid "Custom Definitions"
160
  msgstr ""
161
 
162
+ #: .././admin/settings.php:399 .././admin/settings.php:668
163
+ #: .././admin/settings.php:1405
164
  msgid "Exclude Tracking"
165
  msgstr "Követés kizárás"
166
 
167
+ #: .././admin/settings.php:400
168
  msgid "Advanced Settings"
169
  msgstr ""
170
 
171
+ #: .././admin/settings.php:408
172
  msgid "Tracking Settings"
173
  msgstr "Követési beállítások"
174
 
175
+ #: .././admin/settings.php:411
176
  msgid "Tracking Options:"
177
  msgstr ""
178
 
179
+ #: .././admin/settings.php:415
180
  msgid "Disabled"
181
  msgstr "Letiltva"
182
 
183
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
184
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
185
+ #: .././admin/widgets.php:67
186
+ msgid "View Name:"
187
+ msgstr "Név:"
188
+
189
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
190
  msgid "Tracking ID:"
191
  msgstr "Követési azonosító:"
192
 
193
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
194
  msgid "Default URL:"
195
  msgstr "Alapértelmezett webcím:"
196
 
197
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
198
  msgid "Time Zone:"
199
  msgstr "Időzóna:"
200
 
201
+ #: .././admin/settings.php:430
202
  #, fuzzy
203
  msgid "Basic Tracking"
204
  msgstr "Események követése"
205
 
206
+ #: .././admin/settings.php:433
207
  msgid "Tracking Type:"
208
  msgstr ""
209
 
210
+ #: .././admin/settings.php:437
211
  msgid "Classic Analytics"
212
  msgstr "Klasszikus Analytics"
213
 
214
+ #: .././admin/settings.php:439
215
  msgid "Universal Analytics"
216
  msgstr "Univerzális Analytics"
217
 
218
+ #: .././admin/settings.php:453
219
  msgid " anonymize IPs while tracking"
220
  msgstr "nyomon követés közben IP anonimizálása"
221
 
222
+ #: .././admin/settings.php:468
223
  msgid " enable remarketing, demographics and interests reports"
224
  msgstr "lehetővé remarketing, demográfia és érdeklődés jelentések"
225
 
226
+ #: .././admin/settings.php:490
227
  msgid " track downloads, mailto and outbound links"
228
  msgstr "letöltések, mailto és kimenő linkek követése"
229
 
230
+ #: .././admin/settings.php:494
231
  #, fuzzy
232
  msgid "Downloads Regex:"
233
  msgstr "Letöltés szűrők:"
234
 
235
+ #: .././admin/settings.php:511
236
  msgid " track affiliate links matching this regex"
237
  msgstr ""
238
 
239
+ #: .././admin/settings.php:515
240
  msgid "Affiliates Regex:"
241
  msgstr ""
242
 
243
+ #: .././admin/settings.php:532
244
  msgid " track fragment identifiers, hashmarks (#) in URI links"
245
  msgstr ""
246
 
247
+ #: .././admin/settings.php:543
248
  msgid "Authors:"
249
  msgstr ""
250
 
251
+ #: .././admin/settings.php:553
252
  msgid "Publication Year:"
253
  msgstr ""
254
 
255
+ #: .././admin/settings.php:563
256
  msgid "Categories:"
257
  msgstr ""
258
 
259
+ #: .././admin/settings.php:573
260
  msgid "User Type:"
261
  msgstr ""
262
 
263
+ #: .././admin/settings.php:587
264
  #, fuzzy
265
  msgid "Advanced Tracking"
266
  msgstr "Események követése"
267
 
268
+ #: .././admin/settings.php:590
269
  #, fuzzy
270
  msgid "Page Speed SR:"
271
  msgstr "Oldal / látogató"
272
 
273
+ #: .././admin/settings.php:608
274
  msgid " exclude events from bounce-rate calculation"
275
  msgstr ""
276
 
277
+ #: .././admin/settings.php:623
278
  msgid " enable enhanced link attribution"
279
  msgstr "kibővített link tulajdonság engedélyezése"
280
 
281
+ #: .././admin/settings.php:637
282
  msgid " enable AdSense account linking"
283
  msgstr ""
284
 
285
+ #: .././admin/settings.php:653
286
  msgid " enable cross domain tracking"
287
  msgstr ""
288
 
289
+ #: .././admin/settings.php:657
290
  msgid "Cross Domains:"
291
  msgstr ""
292
 
293
+ #: .././admin/settings.php:671
294
  msgid "Exclude tracking for:"
295
  msgstr ""
296
 
297
+ #: .././admin/settings.php:741
298
  msgid "Google Analytics Errors & Debugging"
299
  msgstr ""
300
 
301
+ #: .././admin/settings.php:751
302
  msgid "Errors & Details"
303
  msgstr ""
304
 
305
+ #: .././admin/settings.php:752
306
  msgid "Plugin Settings"
307
  msgstr ""
308
 
309
+ #: .././admin/settings.php:760
310
  msgid "For errors and/or other issues please check"
311
  msgstr ""
312
 
313
+ #: .././admin/settings.php:760
314
+ msgid "this documentation page"
315
  msgstr ""
316
 
317
+ #: .././admin/settings.php:760
318
  msgid "and related tutorials"
319
  msgstr ""
320
 
321
+ #: .././admin/settings.php:764
322
  msgid "Last Error detected"
323
  msgstr ""
324
 
325
+ #: .././admin/settings.php:769 .././admin/settings.php:782
326
  msgid "None"
327
  msgstr ""
328
 
329
+ #: .././admin/settings.php:776
330
  msgid "Error Details"
331
  msgstr ""
332
 
333
+ #: .././admin/settings.php:796
334
  msgid "Plugin Configuration"
335
  msgstr ""
336
 
337
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
338
  msgid ""
339
  "Loading the required libraries. If this results in a blank screen or a fatal "
340
  "error, try this solution:"
341
  msgstr ""
342
 
343
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
344
  msgid "Plugin authorization succeeded."
345
  msgstr "Bővítmény engedélyezése sikeres."
346
 
347
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
348
  msgid ""
349
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
350
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
351
  msgstr ""
352
 
353
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
354
  msgid "Cleared Cache."
355
  msgstr "Cache kiűrítve."
356
 
357
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
358
  msgid "Token Reseted and Revoked."
359
  msgstr "Token visszaállítva és visszavonva."
360
 
361
+ #: .././admin/settings.php:910
362
+ msgid "All errors reseted."
363
+ msgstr ""
364
+
365
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
366
  msgid "All other domains/properties were removed."
367
  msgstr "Összes többi domain/tulajdon eltávolításra került."
368
 
369
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
370
  msgid "Google Analytics Settings"
371
  msgstr "Google Analytics beállítások"
372
 
373
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
374
  msgid "Use the red link (see below) to generate and get your access code!"
375
  msgstr ""
376
 
377
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
378
  msgid "Plugin Authorization"
379
  msgstr "Bővítmény engedélyezés"
380
 
381
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
382
  msgid "You should watch the"
383
  msgstr "Kérjük, nézze meg ezt a"
384
 
385
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
386
  msgid "video"
387
  msgstr "videót"
388
 
389
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
390
  msgid "and read this"
391
  msgstr "és olvassa el ezt az"
392
 
393
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
394
  msgid "tutorial"
395
  msgstr "oktatói anyagot"
396
 
397
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
398
  msgid ""
399
  "before proceeding to authorization. This plugin requires a properly "
400
  "configured Google Analytics account"
402
  "mielőtt engedélyezné. Ezt a bővítményt csak helyesen beállított Google "
403
  "Analytics fiókkal lehet használni"
404
 
405
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
406
  msgid " use your own API Project credentials"
407
  msgstr "használja a saját API Project hitelesítő adatait"
408
 
409
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
410
  msgid "API Key:"
411
  msgstr "API key:"
412
 
413
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
414
  msgid "Client ID:"
415
  msgstr "Client ID:"
416
 
417
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
418
  msgid "Client Secret:"
419
  msgstr "Client Secret:"
420
 
421
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
422
  msgid "Clear Authorization"
423
  msgstr "Engedélyezés törlése"
424
 
425
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
426
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
427
  msgid "Clear Cache"
428
  msgstr "Cache ürítése"
429
 
430
+ #: .././admin/settings.php:1022
431
+ msgid "Reset Errors"
432
+ msgstr ""
433
+
434
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
435
+ #: .././admin/setup.php:109
436
+ msgid "General Settings"
437
+ msgstr "Általános beállítások"
438
+
439
+ #: .././admin/settings.php:1031
440
  msgid "Select Domain:"
441
  msgstr ""
442
 
443
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
444
  msgid "Property not found"
445
  msgstr ""
446
 
447
+ #: .././admin/settings.php:1049
448
  msgid "and/or hide all other domains"
449
  msgstr "és/vagy az összes többi domain eltüntetése"
450
 
451
+ #: .././admin/settings.php:1052
452
  msgid "Hide Now"
453
  msgstr "Elrejtés most"
454
 
455
+ #: .././admin/settings.php:1071
456
  msgid "Theme Color:"
457
  msgstr ""
458
 
459
+ #: .././admin/settings.php:1081
460
+ msgid "Automatic Updates"
461
+ msgstr ""
462
 
463
+ #: .././admin/settings.php:1097
464
+ msgid ""
465
+ "automatic updates for minor versions (security and maintainance releases "
466
+ "only)"
467
+ msgstr ""
468
 
469
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
470
+ #: .././admin/widgets.php:38
471
+ msgid "Authorize Plugin"
472
+ msgstr "Bővítmény engedélyezése"
473
 
474
+ #: .././admin/settings.php:1192
475
  msgid "Properties refreshed."
476
  msgstr ""
477
 
478
+ #: .././admin/settings.php:1278
479
  msgid "Network Setup"
480
  msgstr ""
481
 
482
+ #: .././admin/settings.php:1293
483
  msgid " use a single Google Analytics account for the entire network"
484
  msgstr ""
485
 
486
+ #: .././admin/settings.php:1365
487
  msgid "Refresh Properties"
488
  msgstr ""
489
 
490
+ #: .././admin/settings.php:1371
491
  #, fuzzy
492
  msgid "Properties/Views Settings"
493
  msgstr "Weblap beállítások"
494
 
495
+ #: .././admin/settings.php:1419
496
  msgid " exclude Super Admin tracking for the entire network"
497
  msgstr ""
498
 
499
+ #: .././admin/settings.php:1471
500
  msgid "Setup Tutorial & Demo"
501
  msgstr "Beállítás oktató anyag és demo"
502
 
503
+ #: .././admin/settings.php:1483
504
  msgid "Support & Reviews"
505
  msgstr "Támogatás és vélemények"
506
 
507
+ #: .././admin/settings.php:1491
508
  msgid "Plugin documentation and support on"
509
  msgstr ""
510
 
511
+ #: .././admin/settings.php:1498
512
  msgid "Your feedback and review are both important,"
513
  msgstr "Az Ön visszajelzése és értékelése egyaránt fontos számunkra,"
514
 
515
+ #: .././admin/settings.php:1498
516
  msgid "rate this plugin"
517
  msgstr "értékelje ezt a bővítményt"
518
 
519
+ #: .././admin/settings.php:1503
520
  msgid "Further Reading"
521
  msgstr "További olvasmány"
522
 
523
+ #: .././admin/settings.php:1511
524
  msgid "Improve search rankings"
525
  msgstr ""
526
 
527
+ #: .././admin/settings.php:1511
528
  msgid "by moving your website to HTTPS/SSL."
529
  msgstr ""
530
 
531
+ #: .././admin/settings.php:1518
532
  msgid "Other"
533
  msgstr "Egyéb"
534
 
535
+ #: .././admin/settings.php:1518
536
  msgid "WordPress Plugins"
537
  msgstr "WordPress bővítmények"
538
 
539
+ #: .././admin/settings.php:1518
540
  msgid "written by the same author"
541
  msgstr "ettől a szerzőtől"
542
 
543
+ #: .././admin/settings.php:1523
544
  msgid "Other Services"
545
  msgstr ""
546
 
547
+ #: .././admin/settings.php:1531
548
  msgid "Speed up your website and plug into a whole"
549
  msgstr ""
550
 
551
+ #: .././admin/settings.php:1531
552
  msgid "new level of site speed"
553
  msgstr ""
554
 
555
+ #: .././admin/settings.php:1538
556
  msgid "Web Analytics"
557
  msgstr "Web Analitika"
558
 
559
+ #: .././admin/settings.php:1538
560
  msgid "service with users tracking at IP level."
561
  msgstr ""
562
 
563
+ #: .././admin/setup.php:69 .././admin/setup.php:105
564
+ msgid "Google Analytics"
565
+ msgstr "Google Analytics"
566
+
567
+ #: .././admin/setup.php:77
568
+ msgid "Backend Settings"
569
+ msgstr "Admin beállítások"
570
+
571
+ #: .././admin/setup.php:81
572
+ msgid "Frontend Settings"
573
+ msgstr "Weblap beállítások"
574
+
575
+ #: .././admin/setup.php:85
576
+ msgid "Tracking Code"
577
+ msgstr "Követőkód"
578
+
579
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
580
+ msgid "Today"
581
+ msgstr "Ma"
582
+
583
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
584
+ msgid "Yesterday"
585
+ msgstr "Tegnap"
586
+
587
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
588
+ #: .././front/widgets.php:68 .././front/widgets.php:176
589
+ msgid "Last 7 Days"
590
+ msgstr "Elmúlt 7 nap"
591
+
592
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
593
+ #: .././front/widgets.php:74 .././front/widgets.php:178
594
+ msgid "Last 30 Days"
595
+ msgstr "Elmúlt 30 nap"
596
+
597
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
598
+ msgid "Last 90 Days"
599
+ msgstr "Elmúlt 90 nap"
600
+
601
+ #: .././admin/setup.php:197 .././admin/setup.php:213
602
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
603
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
604
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
605
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
606
+ msgid "Sessions"
607
+ msgstr ""
608
+
609
+ #: .././admin/setup.php:198 .././admin/setup.php:214
610
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
611
+ #: .././tools/gapi.php:372
612
+ msgid "Users"
613
+ msgstr ""
614
+
615
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
616
+ msgid "Organic"
617
+ msgstr "Organikus"
618
+
619
+ #: .././admin/setup.php:200 .././admin/setup.php:215
620
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
621
+ #: .././tools/gapi.php:375
622
+ msgid "Page Views"
623
+ msgstr "Oldalmegtekintések"
624
+
625
+ #: .././admin/setup.php:201 .././admin/setup.php:216
626
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
627
+ #: .././tools/gapi.php:378
628
+ msgid "Bounce Rate"
629
+ msgstr "Visszafordulási arány"
630
+
631
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
632
+ msgid "Location"
633
+ msgstr ""
634
+
635
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
636
+ msgid "Referrers"
637
+ msgstr ""
638
+
639
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
640
+ #: .././tools/gapi.php:898
641
+ msgid "Searches"
642
+ msgstr ""
643
+
644
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
645
+ msgid "Traffic Details"
646
+ msgstr ""
647
+
648
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
649
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
650
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
651
+ msgid "A JavaScript Error is blocking plugin resources!"
652
+ msgstr ""
653
+
654
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
655
+ msgid "Traffic Mediums"
656
+ msgstr ""
657
+
658
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
659
+ msgid "Visitor Type"
660
+ msgstr ""
661
+
662
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
663
+ msgid "Social Networks"
664
+ msgstr ""
665
+
666
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
667
+ msgid "Search Engines"
668
+ msgstr ""
669
+
670
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
671
+ msgid "Organic Search"
672
+ msgstr ""
673
+
674
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
675
+ msgid "Pages/Session"
676
+ msgstr ""
677
+
678
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
679
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
680
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
681
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
682
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
683
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
684
+ #: .././front/item-reports.php:115
685
+ msgid "Invalid response, more details in JavaScript Console (F12)."
686
+ msgstr ""
687
+
688
+ #: .././admin/setup.php:220
689
+ msgid "Not enough data collected"
690
+ msgstr ""
691
+
692
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
693
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
694
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
695
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
696
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
697
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
698
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
699
+ #: .././front/widgets.php:104
700
+ msgid "This report is unavailable"
701
+ msgstr ""
702
+
703
+ #: .././admin/setup.php:222
704
+ msgid "report generated by"
705
+ msgstr ""
706
+
707
+ #: .././admin/setup.php:260
708
+ msgid "Settings"
709
+ msgstr "Beállítások"
710
+
711
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
712
+ msgid "Google Analytics Dashboard"
713
+ msgstr "Google Analytics vezérlőpult"
714
+
715
+ #: .././admin/widgets.php:38
716
+ msgid "This plugin needs an authorization:"
717
+ msgstr "Ennek a bővítménynek engedélyre van szüksége:"
718
+
719
+ #: .././admin/widgets.php:72
720
+ msgid "Something went wrong while retrieving profiles list."
721
+ msgstr "Valami rosszul ment a profil lista lekérése közben."
722
+
723
+ #: .././admin/widgets.php:72
724
+ msgid "More details"
725
+ msgstr "További részletek"
726
+
727
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
728
+ msgid "An admin should asign a default Google Analytics Profile."
729
+ msgstr ""
730
+ "Az alapértelmezett Google Analytics profilt egy admin képes kijelölni."
731
+
732
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
733
+ msgid "Select Domain"
734
+ msgstr "Domain kiválasztása"
735
+
736
+ #: .././admin/widgets.php:101
737
+ msgid ""
738
+ "Something went wrong while retrieving property data. You need to create and "
739
+ "properly configure a Google Analytics account:"
740
+ msgstr ""
741
+ "Valami rosszul ment a tulajdon adat lekérése közben. Egy jól konfigurált "
742
+ "Google Analytics fiókra van szüksége:"
743
+
744
+ #: .././admin/widgets.php:101
745
+ msgid "Find out more!"
746
+ msgstr "Tudjon meg többet!"
747
+
748
+ #: .././admin/widgets.php:122
749
+ msgid "Real-Time"
750
+ msgstr "Valós idejű"
751
+
752
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
753
+ #: .././front/widgets.php:177
754
+ msgid "Last 14 Days"
755
+ msgstr "Elmúlt 14 nap"
756
+
757
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
758
+ msgid "Pages"
759
+ msgstr ""
760
+
761
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
762
+ msgid "REFERRAL"
763
+ msgstr "HIVATKOZÓ"
764
+
765
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
766
+ msgid "ORGANIC"
767
+ msgstr "ORGANIKUS"
768
+
769
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
770
+ #: .././admin/widgets.php:486
771
+ msgid "SOCIAL"
772
+ msgstr "KÖZÖSSÉGI"
773
+
774
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
775
+ #: .././admin/widgets.php:487
776
+ msgid "CAMPAIGN"
777
+ msgstr ""
778
+
779
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
780
+ #: .././admin/widgets.php:490
781
+ msgid "DIRECT"
782
+ msgstr "KÖZVETLEN"
783
+
784
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
785
+ msgid "NEW"
786
+ msgstr "ÚJ"
787
+
788
+ #: .././admin/widgets.php:366
789
+ msgid "REFERRALS"
790
+ msgstr "HIVATKOZÓK"
791
+
792
+ #: .././admin/widgets.php:369
793
+ msgid "KEYWORDS"
794
+ msgstr "KULCSSZAVAK"
795
+
796
+ #: .././front/item-reports.php:130
797
  msgid "Views vs UniqueViews"
798
  msgstr "Látogatások vs egyedi látogatások"
799
 
800
+ #: .././front/item-reports.php:180
801
  msgid "Google Analytics Reports"
802
  msgstr ""
803
 
805
  msgid "Will display your google analytics stats in a widget"
806
  msgstr "Megjelenik a Google Analytics statisztika egy widgetben"
807
 
808
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
809
  msgid "trend"
810
  msgstr ""
811
 
812
+ #: .././front/widgets.php:127
813
  msgid "Period:"
814
  msgstr "Időszak:"
815
 
816
+ #: .././front/widgets.php:127
817
  msgid "Sessions:"
818
  msgstr ""
819
 
820
+ #: .././front/widgets.php:131
821
  msgid "generated by"
822
  msgstr "által generált"
823
 
824
+ #: .././front/widgets.php:141
825
  msgid "Google Analytics Stats"
826
  msgstr "Google Analytics statisztika"
827
 
828
+ #: .././front/widgets.php:148
829
  msgid "Title:"
830
  msgstr "Cím:"
831
 
832
+ #: .././front/widgets.php:155
833
  msgid "Display:"
834
  msgstr "Megjelenés:"
835
 
836
+ #: .././front/widgets.php:159
837
  msgid "Chart & Totals"
838
  msgstr "Diagram és összegzés"
839
 
840
+ #: .././front/widgets.php:160
841
  msgid "Chart"
842
  msgstr "Diagram"
843
 
844
+ #: .././front/widgets.php:161
845
  msgid "Totals"
846
  msgstr "Összes"
847
 
848
+ #: .././front/widgets.php:165
849
  msgid "Anonymize stats:"
850
  msgstr ""
851
 
852
+ #: .././front/widgets.php:172
853
  msgid "Stats for:"
854
  msgstr "Statisztika:"
855
 
856
+ #: .././front/widgets.php:182
857
  msgid "Give credits:"
858
  msgstr "Köszönet:"
859
 
860
+ #: .././tools/gapi.php:128
861
  msgid "Use this link to get your access code:"
862
  msgstr "Használja ezt a linket, hogy a hozzáférési kódot megkapja:"
863
 
864
+ #: .././tools/gapi.php:128
865
  msgid "Get Access Code"
866
  msgstr "Hozzáférési kód beszerzése"
867
 
868
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
869
  msgid "Use the red link to get your access code!"
870
  msgstr ""
871
 
872
+ #: .././tools/gapi.php:133
873
  msgid "Access Code:"
874
  msgstr "Hozzáférési kód:"
875
 
876
+ #: .././tools/gapi.php:145
877
  msgid "Save Access Code"
878
  msgstr "Hozzáférési kód mentése"
879
 
880
+ #: .././tools/gapi.php:381
881
  msgid "Organic Searches"
882
  msgstr "Organikus keresés"
883
 
884
+ #: .././tools/gapi.php:389
885
  msgid "Hour"
886
  msgstr "Óra"
887
 
888
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
889
  msgid "Date"
890
  msgstr "Dátum"
891
 
892
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
893
  msgid "Views"
894
  msgstr "Látogatások"
895
 
896
+ #: .././tools/gapi.php:617
897
  msgid "Countries"
898
  msgstr ""
899
 
900
+ #: .././tools/gapi.php:626
901
  msgid "Cities from"
902
  msgstr ""
903
 
904
+ #: .././tools/gapi.php:698
905
  msgid "Channels"
906
  msgstr ""
907
 
908
+ #: .././tools/gapi.php:761
909
  msgid "Type"
910
  msgstr "Típus"
911
 
912
+ #: .././tools/gapi.php:856
913
  msgid "UniqueViews"
914
  msgstr "Egyedi látogatások"
915
 
916
+ #~ msgid "Google Analytics Dashboard Settings"
917
+ #~ msgstr "Google Analytics vezérlőpult beállítások"
918
+
919
+ #~ msgid "A new frontend widget is available! To enable it, go to"
920
+ #~ msgstr "Elérhető egy új frontend widget! Engedélyezéshez, menjen a"
921
+
922
+ #~ msgid "Appearance -> Widgets"
923
+ #~ msgstr "Megjelenés -> Widgetek"
924
+
925
+ #~ msgid "and look for Google Analytics Dashboard."
926
+ #~ msgstr "menühöz és keresse a Google Analytics vezérlőpultot."
927
+
928
  #~ msgid "Something went wrong, you need to"
929
  #~ msgstr "Valami rosszul ment, szükséges a "
930
 
languages/ga-dash-it_IT.mo CHANGED
Binary file
languages/ga-dash-it_IT.po CHANGED
@@ -1,1104 +1,1153 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Google Analytics Dashboard for WP 4.4.4\n"
4
- "POT-Creation-Date: 2015-02-07 11:41+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:13+0100\n"
6
- "Last-Translator: Leo The Strategist <leoxleox73@gmail.com>\n"
7
- "Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
8
- "Language: it\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.5.4\n"
13
- "X-Poedit-KeywordsList: _e;__\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
- "X-Poedit-SearchPath-0: ../.\n"
18
-
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr "Google Analytics"
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr "Impostazioni generali"
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr "Impostazioni backend"
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr "Impostazioni frontend"
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr "Monitoraggio"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr "Errori & Debug"
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Impostazioni"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Bacheca di Google Analytics"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr "Questo plugin necessita di un&#39;autorizzazione:"
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr "Autorizza plugin"
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr "Mostra nome:"
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
- msgstr ""
74
- "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
75
-
76
- #: .././admin/dashboard_widgets.php:221
77
- msgid "More details"
78
- msgstr "Altri dettagli"
79
-
80
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
81
- msgid "An admin should asign a default Google Analytics Profile."
82
- msgstr ""
83
- "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
84
-
85
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
86
- msgid "Select Domain"
87
- msgstr "Seleziona dominio"
88
-
89
- #: .././admin/dashboard_widgets.php:250
90
- msgid ""
91
- "Something went wrong while retrieving property data. You need to create and "
92
- "properly configure a Google Analytics account:"
93
- msgstr ""
94
- "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
95
- "necessario creare e configurare correttamente un account di Google Analytics:"
96
-
97
- #: .././admin/dashboard_widgets.php:250
98
- msgid "Find out more!"
99
- msgstr "Per saperne di pi&ugrave;!"
100
-
101
- #: .././admin/dashboard_widgets.php:278
102
- msgid "Real-Time"
103
- msgstr "In tempo reale"
104
-
105
- #: .././admin/dashboard_widgets.php:279
106
- msgid "Today"
107
- msgstr "Oggi"
108
-
109
- #: .././admin/dashboard_widgets.php:281
110
- msgid "Yesterday"
111
- msgstr "Ieri"
112
-
113
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
114
- #: .././front/widgets.php:182
115
- msgid "Last 7 Days"
116
- msgstr "Ultimi 7 giorni"
117
-
118
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
119
- #: .././front/widgets.php:183
120
- msgid "Last 14 Days"
121
- msgstr "Ultimi 14 giorni"
122
-
123
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
124
- #: .././front/widgets.php:184
125
- msgid "Last 30 Days"
126
- msgstr "Ultimi 30 giorni"
127
-
128
- #: .././admin/dashboard_widgets.php:289
129
- msgid "Last 90 Days"
130
- msgstr "Ultimi 90 giorni"
131
-
132
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
133
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
134
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
135
- #: .././tools/gapi.php:825
136
- msgid "Sessions"
137
- msgstr "Sessioni"
138
-
139
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
140
- #: .././tools/gapi.php:364
141
- msgid "Users"
142
- msgstr "Utenti"
143
-
144
- #: .././admin/dashboard_widgets.php:298
145
- msgid "Organic"
146
- msgstr "Traffico da motorI di ricerca"
147
-
148
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
149
- #: .././tools/gapi.php:367
150
- msgid "Page Views"
151
- msgstr "Pagine viste"
152
-
153
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
154
- #: .././tools/gapi.php:370
155
- msgid "Bounce Rate"
156
- msgstr "Frequenza di rimbalzo"
157
-
158
- #: .././admin/dashboard_widgets.php:304
159
- msgid "Location"
160
- msgstr "Posizione geografica"
161
-
162
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
163
- msgid "Pages"
164
- msgstr "Pagine"
165
-
166
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
167
- msgid "Referrers"
168
- msgstr "Siti di origine del traffico"
169
-
170
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
171
- #: .././tools/gapi.php:825
172
- msgid "Searches"
173
- msgstr "Ricerche"
174
-
175
- #: .././admin/dashboard_widgets.php:312
176
- msgid "Traffic Details"
177
- msgstr "Dettagli traffico"
178
-
179
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
180
- msgid "REFERRAL"
181
- msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
182
-
183
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
184
- msgid "ORGANIC"
185
- msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
186
-
187
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
188
- #: .././admin/dashboard_widgets.php:647
189
- msgid "SOCIAL"
190
- msgstr "TRAFFICO DAI SOCIAL NETWORK"
191
-
192
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
193
- #: .././admin/dashboard_widgets.php:648
194
- msgid "CAMPAIGN"
195
- msgstr "CAMPAGNA"
196
-
197
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
198
- #: .././admin/dashboard_widgets.php:651
199
- msgid "DIRECT"
200
- msgstr "TRAFFICO DIRETTO"
201
-
202
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
203
- msgid "NEW"
204
- msgstr "VISITATORI NUOVI"
205
-
206
- #: .././admin/dashboard_widgets.php:526
207
- msgid "REFERRALS"
208
- msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
209
-
210
- #: .././admin/dashboard_widgets.php:529
211
- msgid "KEYWORDS"
212
- msgstr "KEYWORDS"
213
-
214
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
215
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
216
- #: .././front/frontend.php:88
217
- msgid "A JavaScript Error is blocking plugin resources!"
218
- msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
219
-
220
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
221
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
222
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
223
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
224
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
225
- #: .././front/frontend.php:119
226
- msgid "Invalid response, more details in JavaScript Console (F12)."
227
- msgstr ""
228
- "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
229
-
230
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
231
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
232
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
233
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
234
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
235
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
236
- #: .././front/frontend.php:124 .././front/widgets.php:110
237
- msgid "This report is unavailable"
238
- msgstr "Questo rapporto non &egrave; disponibile"
239
-
240
- #: .././admin/dashboard_widgets.php:880
241
- msgid "Traffic Mediums"
242
- msgstr "Origine del traffico in %"
243
-
244
- #: .././admin/dashboard_widgets.php:896
245
- msgid "Visitor Type"
246
- msgstr "Tipo di visitatore"
247
-
248
- #: .././admin/dashboard_widgets.php:912
249
- msgid "Social Networks"
250
- msgstr "Social Networks"
251
-
252
- #: .././admin/dashboard_widgets.php:928
253
- msgid "Search Engines"
254
- msgstr "Motori di ricerca"
255
-
256
- #: .././admin/dashboard_widgets.php:1053
257
- msgid "Organic Search"
258
- msgstr "Ricerca organica"
259
-
260
- #: .././admin/dashboard_widgets.php:1057
261
- msgid "Pages/Session"
262
- msgstr "Pagine per sessione"
263
-
264
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
265
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
266
- #: .././admin/ga_dash_settings.php:1157
267
- msgid "Settings saved."
268
- msgstr "Impostazioni salvate."
269
-
270
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
271
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
272
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
273
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
274
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
275
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
276
- msgid "Cheating Huh?"
277
- msgstr "Frode?"
278
-
279
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
280
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
281
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
282
- msgid "Something went wrong, check"
283
- msgstr "Qualcosa è andato male, controlla"
284
-
285
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
286
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
287
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
288
- msgid "or"
289
- msgstr "o"
290
-
291
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
292
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
293
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
294
- msgid "auhorize the plugin"
295
- msgstr "autorizza il plugin"
296
-
297
- #: .././admin/ga_dash_settings.php:95
298
- msgid "Google Analytics Frontend Settings"
299
- msgstr "Impostazioni Frontend di Google Analytics "
300
-
301
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
302
- msgid "Show stats to:"
303
- msgstr "Mostra statistiche a:"
304
-
305
- #: .././admin/ga_dash_settings.php:152
306
- msgid " show page sessions and users in frontend (after each article)"
307
- msgstr ""
308
- "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
309
- "articolo)"
310
-
311
- #: .././admin/ga_dash_settings.php:168
312
- msgid " show page searches (after each article)"
313
- msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
314
-
315
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
316
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
317
- #: .././admin/ga_dash_settings.php:1351
318
- msgid "Save Changes"
319
- msgstr "Salva le modifiche"
320
-
321
- #: .././admin/ga_dash_settings.php:206
322
- msgid "Google Analytics Dashboard Settings"
323
- msgstr "Impostazioni Backend di Google Analytics"
324
-
325
- #: .././admin/ga_dash_settings.php:264
326
- msgid "disable Switch Profile/View functionality"
327
- msgstr "abilita o disabilita Cambia profilo/Mostra funzionalit&agrave;"
328
-
329
- #: .././admin/ga_dash_settings.php:268
330
- msgid "Real-Time Settings"
331
- msgstr "Impostazioni In tempo reale"
332
-
333
- #: .././admin/ga_dash_settings.php:271
334
- msgid "Maximum number of pages to display on real-time tab:"
335
- msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
336
-
337
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
338
- msgid "find out more"
339
- msgstr "per saperne di più"
340
-
341
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
342
- msgid "about this feature"
343
- msgstr "su questa funzionalit&agrave;"
344
-
345
- #: .././admin/ga_dash_settings.php:283
346
- msgid "Location Settings"
347
- msgstr "Impostazioni posizione geografica"
348
-
349
- #: .././admin/ga_dash_settings.php:287
350
- msgid "Target Geo Map to country:"
351
- msgstr "Obiettivo Geo Map per paese:"
352
-
353
- #: .././admin/ga_dash_settings.php:336
354
- msgid "The tracking component is disabled. You should set"
355
- msgstr "Il componente di monitoraggio è disabilitato. È necessario impostare"
356
-
357
- #: .././admin/ga_dash_settings.php:336
358
- msgid "Tracking Options"
359
- msgstr "Opzioni di monitoraggio"
360
-
361
- #: .././admin/ga_dash_settings.php:336
362
- msgid "to"
363
- msgstr "a"
364
-
365
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
366
- msgid "Enabled"
367
- msgstr "Abilitato"
368
-
369
- #: .././admin/ga_dash_settings.php:342
370
- msgid "Google Analytics Tracking Code"
371
- msgstr "Impostazioni Monitoraggio di Google Analytics "
372
-
373
- #: .././admin/ga_dash_settings.php:351
374
- msgid "Basic Settings"
375
- msgstr "Impostazioni di base"
376
-
377
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
378
- msgid "Events Tracking"
379
- msgstr "Impostazioni eventi"
380
-
381
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
382
- msgid "Custom Definitions"
383
- msgstr "Impostazioni definizioni personalizzate"
384
-
385
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
386
- #: .././admin/ga_dash_settings.php:1328
387
- msgid "Exclude Tracking"
388
- msgstr "Escludi monitoraggio"
389
-
390
- #: .././admin/ga_dash_settings.php:355
391
- msgid "Advanced Settings"
392
- msgstr "Impostazioni avanzate"
393
-
394
- #: .././admin/ga_dash_settings.php:363
395
- msgid "Tracking Settings"
396
- msgstr "Stato del monitoraggio"
397
-
398
- #: .././admin/ga_dash_settings.php:366
399
- msgid "Tracking Options:"
400
- msgstr "Monitoraggio:"
401
-
402
- #: .././admin/ga_dash_settings.php:370
403
- msgid "Disabled"
404
- msgstr "Disabilitato"
405
-
406
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
407
- msgid "Tracking ID:"
408
- msgstr "ID monitoraggio:"
409
-
410
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
411
- msgid "Default URL:"
412
- msgstr "URL di default:"
413
-
414
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
415
- msgid "Time Zone:"
416
- msgstr "Fuso orario:"
417
-
418
- #: .././admin/ga_dash_settings.php:385
419
- msgid "Basic Tracking"
420
- msgstr "Impostazioni di base"
421
-
422
- #: .././admin/ga_dash_settings.php:388
423
- msgid "Tracking Type:"
424
- msgstr "Tipo:"
425
-
426
- #: .././admin/ga_dash_settings.php:392
427
- msgid "Classic Analytics"
428
- msgstr "Classic Analytics"
429
-
430
- #: .././admin/ga_dash_settings.php:394
431
- msgid "Universal Analytics"
432
- msgstr "Universal Analytics"
433
-
434
- #: .././admin/ga_dash_settings.php:408
435
- msgid " anonymize IPs while tracking"
436
- msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
437
-
438
- #: .././admin/ga_dash_settings.php:423
439
- msgid " enable remarketing, demographics and interests reports"
440
- msgstr " abilita remarketing e rapporti demografici e sugli interessi"
441
-
442
- #: .././admin/ga_dash_settings.php:445
443
- msgid " track downloads, mailto and outbound links"
444
- msgstr "monitora downloads, mailto e link in uscita"
445
-
446
- #: .././admin/ga_dash_settings.php:449
447
- msgid "Downloads Regex:"
448
- msgstr "Abbreviazioni downloads:"
449
-
450
- #: .././admin/ga_dash_settings.php:466
451
- msgid " track affiliate links matching this regex"
452
- msgstr " monitora collegamenti associati corrispondenti a queste abbreviazioni"
453
-
454
- #: .././admin/ga_dash_settings.php:470
455
- msgid "Affiliates Regex:"
456
- msgstr "Abbreviazioni associate:"
457
-
458
- #: .././admin/ga_dash_settings.php:487
459
- msgid " track fragment identifiers, hashmarks (#) in URI links"
460
- msgstr ""
461
- " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
462
- "collegamenti URI"
463
-
464
- #: .././admin/ga_dash_settings.php:498
465
- msgid "Authors:"
466
- msgstr "Autori:"
467
-
468
- #: .././admin/ga_dash_settings.php:508
469
- msgid "Publication Year:"
470
- msgstr "Anno di pubblicazione:"
471
-
472
- #: .././admin/ga_dash_settings.php:518
473
- msgid "Categories:"
474
- msgstr "Categorie:"
475
-
476
- #: .././admin/ga_dash_settings.php:528
477
- msgid "User Type:"
478
- msgstr "Tipo di utente:"
479
-
480
- #: .././admin/ga_dash_settings.php:542
481
- msgid "Advanced Tracking"
482
- msgstr "Impostazioni avanzate"
483
-
484
- #: .././admin/ga_dash_settings.php:545
485
- msgid "Page Speed SR:"
486
- msgstr "Page Speed Sample Rate:"
487
-
488
- #: .././admin/ga_dash_settings.php:563
489
- msgid " exclude events from bounce-rate calculation"
490
- msgstr " escludi gli eventi dal calcolo del bounce-rate"
491
-
492
- #: .././admin/ga_dash_settings.php:578
493
- msgid " enable enhanced link attribution"
494
- msgstr "utilizza l&#39;attribuzione avanzata dei link"
495
-
496
- #: .././admin/ga_dash_settings.php:592
497
- msgid " enable AdSense account linking"
498
- msgstr " abilita AdSense account linking"
499
-
500
- #: .././admin/ga_dash_settings.php:608
501
- msgid " enable cross domain tracking"
502
- msgstr " abilita cross domanin tracking"
503
-
504
- #: .././admin/ga_dash_settings.php:612
505
- msgid "Cross Domains:"
506
- msgstr " Cross Domains:"
507
-
508
- #: .././admin/ga_dash_settings.php:626
509
- msgid "Exclude tracking for:"
510
- msgstr "Escludi per:"
511
-
512
- #: .././admin/ga_dash_settings.php:687
513
- msgid "Google Analytics Errors & Debugging"
514
- msgstr "Errori & Debugging di Google Analytics"
515
-
516
- #: .././admin/ga_dash_settings.php:697
517
- msgid "Errors & Details"
518
- msgstr "Dettagli errori"
519
-
520
- #: .././admin/ga_dash_settings.php:698
521
- msgid "Plugin Settings"
522
- msgstr "Impostazioni plugin"
523
-
524
- #: .././admin/ga_dash_settings.php:706
525
- msgid "For errors and/or other issues please check"
526
- msgstr "Per errori e/o altri problemi leggere"
527
-
528
- #: .././admin/ga_dash_settings.php:706
529
- msgid "the plugin documentation page"
530
- msgstr "la pagina della documentazione del plugin"
531
-
532
- #: .././admin/ga_dash_settings.php:706
533
- msgid "and related tutorials"
534
- msgstr "ed i tutorial relativi"
535
-
536
- #: .././admin/ga_dash_settings.php:710
537
- msgid "Last Error detected"
538
- msgstr "Ultimo errore rilevato"
539
-
540
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
541
- msgid "None"
542
- msgstr "Nessuno"
543
-
544
- #: .././admin/ga_dash_settings.php:722
545
- msgid "Error Details"
546
- msgstr "Dettagli errore"
547
-
548
- #: .././admin/ga_dash_settings.php:740
549
- msgid "Plugin Configuration"
550
- msgstr "Configurazione plugin"
551
-
552
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
553
- msgid ""
554
- "Loading the required libraries. If this results in a blank screen or a fatal "
555
- "error, try this solution:"
556
- msgstr ""
557
- "Caricamento delle librerie richieste. Se viene restituita una schermata "
558
- "vuota o si verifica un errore fatale, provare questa soluzione:"
559
-
560
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
561
- msgid "Plugin authorization succeeded."
562
- msgstr "Autorizzazione plugin riuscita."
563
-
564
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
565
- msgid ""
566
- "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
567
- "(UA-XXXXX-X). Try again, and use the red link to get your access code"
568
- msgstr ""
569
- "Il codice di accesso <strong>NON</strong> &egrave; il <strong>Tracking ID</"
570
- "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
571
- "il codice di accesso"
572
-
573
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
574
- msgid "Cleared Cache."
575
- msgstr "Cache eliminata."
576
-
577
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
578
- msgid "Token Reseted and Revoked."
579
- msgstr "Token azzerato e revocato."
580
-
581
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
582
- msgid "All other domains/properties were removed."
583
- msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
584
-
585
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
586
- msgid "Google Analytics Settings"
587
- msgstr "Impostazioni di Google Analytics"
588
-
589
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
590
- msgid "Use the red link (see below) to generate and get your access code!"
591
- msgstr ""
592
- "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
593
- "di accesso!"
594
-
595
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
596
- msgid "Plugin Authorization"
597
- msgstr "Autorizzazione plugin"
598
-
599
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
600
- msgid "You should watch the"
601
- msgstr "Dovresti guardare il"
602
-
603
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
604
- msgid "video"
605
- msgstr "video"
606
-
607
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
608
- msgid "and read this"
609
- msgstr "e leggere questa"
610
-
611
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
612
- msgid "tutorial"
613
- msgstr "guida"
614
-
615
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
616
- msgid ""
617
- "before proceeding to authorization. This plugin requires a properly "
618
- "configured Google Analytics account"
619
- msgstr ""
620
- "prima di procedere con l&#39;autorizzazione. Questo plugin richiede un "
621
- "account di Google Analytics correttamente configurato"
622
-
623
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
624
- msgid " use your own API Project credentials"
625
- msgstr "utilizza le proprie credenziali API"
626
-
627
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
628
- msgid "API Key:"
629
- msgstr "Chiave API:"
630
-
631
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
632
- msgid "Client ID:"
633
- msgstr "ID Cliente:"
634
-
635
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
636
- msgid "Client Secret:"
637
- msgstr "Client Secret:"
638
-
639
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
640
- msgid "Clear Authorization"
641
- msgstr "Revoca autorizzazione"
642
-
643
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
644
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
645
- msgid "Clear Cache"
646
- msgstr "Elimina cache"
647
-
648
- #: .././admin/ga_dash_settings.php:967
649
- msgid "Select Domain:"
650
- msgstr "Seleziona dominio:"
651
-
652
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
653
- msgid "Property not found"
654
- msgstr "Propriet&agrave; non trovata"
655
-
656
- #: .././admin/ga_dash_settings.php:985
657
- msgid "and/or hide all other domains"
658
- msgstr "e/o nasconde tutti gli altri domini"
659
-
660
- #: .././admin/ga_dash_settings.php:988
661
- msgid "Hide Now"
662
- msgstr "Nascondi ora"
663
-
664
- #: .././admin/ga_dash_settings.php:1007
665
- msgid "Theme Color:"
666
- msgstr "Colore tema:"
667
-
668
- #: .././admin/ga_dash_settings.php:1017
669
- msgid "A new frontend widget is available! To enable it, go to"
670
- msgstr ""
671
- "&Egrave; disponibile un nuovo widget per il frontend. Per attivarlo, vai a"
672
-
673
- #: .././admin/ga_dash_settings.php:1017
674
- msgid "Appearance -> Widgets"
675
- msgstr "Aspetto -> Widgets"
676
-
677
- #: .././admin/ga_dash_settings.php:1017
678
- msgid "and look for Google Analytics Dashboard."
679
- msgstr "e cerca Bacheca di Google Analytics."
680
-
681
- #: .././admin/ga_dash_settings.php:1115
682
- msgid "Properties refreshed."
683
- msgstr "Propriet&agrave; aggiornate."
684
-
685
- #: .././admin/ga_dash_settings.php:1201
686
- msgid "Network Setup"
687
- msgstr "Configurazione della rete"
688
-
689
- #: .././admin/ga_dash_settings.php:1216
690
- msgid " use a single Google Analytics account for the entire network"
691
- msgstr " utilizza un unico account Google Analytics per l&#39;intera rete"
692
-
693
- #: .././admin/ga_dash_settings.php:1288
694
- msgid "Refresh Properties"
695
- msgstr "Aggiorna propriet&agrave;"
696
-
697
- #: .././admin/ga_dash_settings.php:1294
698
- msgid "Properties/Views Settings"
699
- msgstr "Propriet&agrave;/Mostra impostazioni"
700
-
701
- #: .././admin/ga_dash_settings.php:1342
702
- msgid " exclude Super Admin tracking for the entire network"
703
- msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
704
-
705
- #: .././admin/ga_dash_settings.php:1394
706
- msgid "Setup Tutorial & Demo"
707
- msgstr "Guida all'installazione & Demo"
708
-
709
- #: .././admin/ga_dash_settings.php:1406
710
- msgid "Support & Reviews"
711
- msgstr "Supporto & Recensioni"
712
-
713
- #: .././admin/ga_dash_settings.php:1414
714
- msgid "Plugin documentation and support on"
715
- msgstr "Documentazione del plugin e supporto su"
716
-
717
- #: .././admin/ga_dash_settings.php:1421
718
- msgid "Your feedback and review are both important,"
719
- msgstr "Il tuo feedback e la tua recensione sono entrambi importanti,"
720
-
721
- #: .././admin/ga_dash_settings.php:1421
722
- msgid "rate this plugin"
723
- msgstr "vota questo plugin"
724
-
725
- #: .././admin/ga_dash_settings.php:1426
726
- msgid "Further Reading"
727
- msgstr "Approfondimenti"
728
-
729
- #: .././admin/ga_dash_settings.php:1434
730
- msgid "Improve search rankings"
731
- msgstr "Migliorare le classifiche di ricerca"
732
-
733
- #: .././admin/ga_dash_settings.php:1434
734
- msgid "by moving your website to HTTPS/SSL."
735
- msgstr "spostando il sito web a HTTPS/SSL."
736
-
737
- #: .././admin/ga_dash_settings.php:1441
738
- msgid "Other"
739
- msgstr "Altri"
740
-
741
- #: .././admin/ga_dash_settings.php:1441
742
- msgid "WordPress Plugins"
743
- msgstr "plugins per WordPress "
744
-
745
- #: .././admin/ga_dash_settings.php:1441
746
- msgid "written by the same author"
747
- msgstr "scritti dallo stesso autore"
748
-
749
- #: .././admin/ga_dash_settings.php:1446
750
- msgid "Other Services"
751
- msgstr "Altri servizi"
752
-
753
- #: .././admin/ga_dash_settings.php:1453
754
- msgid "Speed up your website and plug into a whole"
755
- msgstr "Accellera il tuo sito web ad un"
756
-
757
- #: .././admin/ga_dash_settings.php:1453
758
- msgid "new level of site speed"
759
- msgstr "nuovo livello di velocit&agrave;"
760
-
761
- #: .././admin/ga_dash_settings.php:1460
762
- msgid "Web Analytics"
763
- msgstr "Web Analytics"
764
-
765
- #: .././admin/ga_dash_settings.php:1460
766
- msgid "service with users tracking at IP level."
767
- msgstr "servizio con tracciamento degli utenti a livello IP."
768
-
769
- #: .././front/frontend.php:134
770
- msgid "Views vs UniqueViews"
771
- msgstr "Visualizzazioni vs Visualizzazioni uniche"
772
-
773
- #: .././front/frontend.php:184
774
- msgid "Google Analytics Reports"
775
- msgstr "Rapporti di Google Analytics"
776
-
777
- #: .././front/widgets.php:15
778
- msgid "Will display your google analytics stats in a widget"
779
- msgstr "Visualizza le statistiche di Google Analytics in un widget"
780
-
781
- #: .././front/widgets.php:40 .././tools/gapi.php:744
782
- msgid "trend"
783
- msgstr "tendenza"
784
-
785
- #: .././front/widgets.php:133
786
- msgid "Period:"
787
- msgstr "Periodo:"
788
-
789
- #: .././front/widgets.php:133
790
- msgid "Sessions:"
791
- msgstr "Sessioni:"
792
-
793
- #: .././front/widgets.php:137
794
- msgid "generated by"
795
- msgstr "generato da"
796
-
797
- #: .././front/widgets.php:147
798
- msgid "Google Analytics Stats"
799
- msgstr "Statistiche di Google Analytics"
800
-
801
- #: .././front/widgets.php:154
802
- msgid "Title:"
803
- msgstr "Titolo:"
804
-
805
- #: .././front/widgets.php:161
806
- msgid "Display:"
807
- msgstr "Mostra:"
808
-
809
- #: .././front/widgets.php:165
810
- msgid "Chart & Totals"
811
- msgstr "Grafico & Totali"
812
-
813
- #: .././front/widgets.php:166
814
- msgid "Chart"
815
- msgstr "Grafico"
816
-
817
- #: .././front/widgets.php:167
818
- msgid "Totals"
819
- msgstr "Totali"
820
-
821
- #: .././front/widgets.php:171
822
- msgid "Anonymize stats:"
823
- msgstr "Anonimizza le statistiche:"
824
-
825
- #: .././front/widgets.php:178
826
- msgid "Stats for:"
827
- msgstr "Statistiche per:"
828
-
829
- #: .././front/widgets.php:188
830
- msgid "Give credits:"
831
- msgstr "Crediti:"
832
-
833
- #: .././tools/gapi.php:129
834
- msgid "Use this link to get your access code:"
835
- msgstr "Utilizza questo link per ottenere il codice di accesso:"
836
-
837
- #: .././tools/gapi.php:129
838
- msgid "Get Access Code"
839
- msgstr "Ottieni codice di accesso"
840
-
841
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
842
- msgid "Use the red link to get your access code!"
843
- msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
844
-
845
- #: .././tools/gapi.php:134
846
- msgid "Access Code:"
847
- msgstr "Codice di accesso:"
848
-
849
- #: .././tools/gapi.php:146
850
- msgid "Save Access Code"
851
- msgstr "Salva codice di accesso"
852
-
853
- #: .././tools/gapi.php:373
854
- msgid "Organic Searches"
855
- msgstr "Ricerche organiche"
856
-
857
- #: .././tools/gapi.php:381
858
- msgid "Hour"
859
- msgstr "Ora"
860
-
861
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
862
- msgid "Date"
863
- msgstr "Data"
864
-
865
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
866
- msgid "Views"
867
- msgstr "Visualizzazioni"
868
-
869
- #: .././tools/gapi.php:576
870
- msgid "Countries"
871
- msgstr "Paesi"
872
-
873
- #: .././tools/gapi.php:590
874
- msgid "Cities from"
875
- msgstr "Paese: "
876
-
877
- #: .././tools/gapi.php:644
878
- msgid "Channels"
879
- msgstr "Canali"
880
-
881
- #: .././tools/gapi.php:698
882
- msgid "Type"
883
- msgstr "Tipo"
884
-
885
- #: .././tools/gapi.php:783
886
- msgid "UniqueViews"
887
- msgstr "Visualizzazioni uniche"
888
-
889
- #~ msgid "Something went wrong, you need to"
890
- #~ msgstr "Qualcosa &egrave; andato male, devi"
891
-
892
- #~ msgid "or properly configure your"
893
- #~ msgstr "o configura correttamente il tuo"
894
-
895
- #~ msgid "Google Analytics account"
896
- #~ msgstr "Account di Google Analytics"
897
-
898
- #~ msgid "(find out more"
899
- #~ msgstr "(per saperne di pi&ugrave;"
900
-
901
- #~ msgid ")"
902
- #~ msgstr ")"
903
-
904
- #~ msgid "Additional Stats & Charts"
905
- #~ msgstr "Ulteriori statistiche e grafici"
906
-
907
- #~ msgid " show Geo Map chart for sessions"
908
- #~ msgstr "mostra il grafico per le sessioni"
909
-
910
- #~ msgid "Target Geo Map to region:"
911
- #~ msgstr "Cartina delle visite per il paese:"
912
-
913
- #~ msgid "and render top"
914
- #~ msgstr "con"
915
-
916
- #~ msgid "cities (find out more"
917
- #~ msgstr "citt&agrave; (per saperne di più"
918
-
919
- #~ msgid " show traffic overview"
920
- #~ msgstr " mostra la panoramica sul traffico"
921
-
922
- #~ msgid " show top pages"
923
- #~ msgstr " mostra le principali pagine attive"
924
-
925
- #~ msgid " show top referrers"
926
- #~ msgstr " mostra i siti principali di origine del traffico"
927
-
928
- #~ msgid " show top searches"
929
- #~ msgstr " mostra le ricerche principali"
930
-
931
- #~ msgid "Dumping log data."
932
- #~ msgstr "Dumping dati di log."
933
-
934
- #~ msgid ""
935
- #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
936
- #~ "CURL!"
937
- #~ msgstr ""
938
- #~ "PHP CURL &egrave; necessario. Chiedete al vostro fornitore di hosting per "
939
- #~ "installare/attivare PHP CURL!"
940
-
941
- #~ msgid ""
942
- #~ "Something went wrong. Please check the Debugging Data section for "
943
- #~ "possible errors"
944
- #~ msgstr ""
945
- #~ "Qualcosa &egrave; andato male. Controlla la sezione dati di debug per "
946
- #~ "possibili errori"
947
-
948
- #~ msgid "Debugging Data"
949
- #~ msgstr "Debug dei dati"
950
-
951
- #~ msgid "Anonimize chart&#39;s stats:"
952
- #~ msgstr "Rendi anonimo il grafico delle statistiche:"
953
-
954
- #~ msgid "Top Searches"
955
- #~ msgstr "Ricerche principali"
956
-
957
- #~ msgid ""
958
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
959
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
960
- #~ msgstr ""
961
- #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
962
- #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
963
-
964
- #~ msgid "Error Log"
965
- #~ msgstr "Log errori"
966
-
967
- #~ msgid ""
968
- #~ "No stats available. Please check the Debugging Data section for possible "
969
- #~ "errors"
970
- #~ msgstr ""
971
- #~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
972
- #~ "possibili errori"
973
-
974
- #~ msgid "Country/City"
975
- #~ msgstr "Paese/Citt&agrave;"
976
-
977
- #~ msgid "Source"
978
- #~ msgstr "Sorgente"
979
-
980
- #~ msgid "Traffic Sources"
981
- #~ msgstr "Sorgenti di traffico"
982
-
983
- #~ msgid "New vs. Returning"
984
- #~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
985
-
986
- #~ msgid "Top Pages"
987
- #~ msgstr "Principali pagine attive"
988
-
989
- #~ msgid "Top Referrers"
990
- #~ msgstr "Referral principali"
991
-
992
- #~ msgid ""
993
- #~ "This is a beta feature and is only available when using my Developer Key! "
994
- #~ "("
995
- #~ msgstr ""
996
- #~ "Questa &egrave; una caratteristica beta ed &egrave; disponibile solo "
997
- #~ "quando si utilizza il Developer Key! ("
998
-
999
- #~ msgid "more about this feature"
1000
- #~ msgstr "pi&ugrave; informazioni su questa funzione"
1001
-
1002
- #~ msgid "RETURN"
1003
- #~ msgstr "VISITATORI DI RITORNO"
1004
-
1005
- #~ msgid "Sessions from "
1006
- #~ msgstr "Sessioni da: "
1007
-
1008
- #~ msgid "Sessions by Country"
1009
- #~ msgstr "Sessioni per paese"
1010
-
1011
- #~ msgid "Traffic Overview"
1012
- #~ msgstr "Panoramica traffico"
1013
-
1014
- #~ msgid "Visits"
1015
- #~ msgstr "Visite"
1016
-
1017
- #~ msgid "Visitors"
1018
- #~ msgstr "Visitatori"
1019
-
1020
- #~ msgid "Visits:"
1021
- #~ msgstr "Visite:"
1022
-
1023
- #~ msgid "Visitors:"
1024
- #~ msgstr "Visitatori:"
1025
-
1026
- #~ msgid "Page Views:"
1027
- #~ msgstr "Pagine viste:"
1028
-
1029
- #~ msgid "Bounce Rate:"
1030
- #~ msgstr "Frequenza di rimbalzo:"
1031
-
1032
- #~ msgid "Organic Search:"
1033
- #~ msgstr "Ricerca organica:"
1034
-
1035
- #~ msgid "Pages per Visit:"
1036
- #~ msgstr "Pagine per visita:"
1037
-
1038
- #~ msgid "Visits from "
1039
- #~ msgstr "Visite da "
1040
-
1041
- #~ msgid "Visits by Country"
1042
- #~ msgstr "Visite per paese"
1043
-
1044
- #~ msgid " show page visits and visitors in frontend (after each article)"
1045
- #~ msgstr ""
1046
- #~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
1047
-
1048
- #~ msgid " show Geo Map chart for visits"
1049
- #~ msgstr " mostra la cartina geografica delle visite"
1050
-
1051
- #~ msgid "You can find support on"
1052
- #~ msgstr "Puoi trovare supporto su"
1053
-
1054
- #~ msgid "DeConf.com"
1055
- #~ msgstr "DeConf.com"
1056
-
1057
- #~ msgid "service with visitors tracking at IP level."
1058
- #~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
1059
-
1060
- #~ msgid "Total Visits:"
1061
- #~ msgstr "Totale visite:"
1062
-
1063
- #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1064
- #~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
1065
-
1066
- #~ msgid "Options saved."
1067
- #~ msgstr "Opzioni salvate."
1068
-
1069
- #~ msgid "Show stats to: "
1070
- #~ msgstr "Mostra statistiche:"
1071
-
1072
- #~ msgid "Update Options"
1073
- #~ msgstr "Aggiorna opzioni"
1074
-
1075
- #~ msgid "Tracking Options: "
1076
- #~ msgstr "Opzioni monitoraggio: "
1077
-
1078
- #~ msgid "Tracking Type: "
1079
- #~ msgstr "Tipo di monitoraggio:"
1080
-
1081
- #, fuzzy
1082
- #~ msgid "User Type: "
1083
- #~ msgstr "Tipo di monitoraggio:"
1084
-
1085
- #~ msgid "Exclude tracking for: "
1086
- #~ msgstr "Escludi monitoraggio per:"
1087
-
1088
- #~ msgid "Select Domain: "
1089
- #~ msgstr "Seleziona dominio:"
1090
-
1091
- #~ msgid "Theme Color: "
1092
- #~ msgstr "Colote tema:"
1093
-
1094
- #~ msgid "&#39; trend"
1095
- #~ msgstr "&#39; tendenza"
1096
-
1097
- #~ msgid "DeConf Help Center"
1098
- #~ msgstr "DeConf Help Center"
1099
-
1100
- #~ msgid "Custom Code"
1101
- #~ msgstr "Codice personalizzato"
1102
-
1103
- #~ msgid "Your Tracking Code:"
1104
- #~ msgstr "Il tuo codice di monitoraggio:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Analytics Dashboard for WP 4.4.4\n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
+ "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
+ "Language-Team: L.E.O.X. <leoxleox73@gmail.com>\n"
8
+ "Language: it\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.4\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SearchPath-0: ../.\n"
18
+
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
21
+ msgstr ""
22
+
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
26
+ msgid "Settings saved."
27
+ msgstr "Impostazioni salvate."
28
+
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
+ msgid "Cheating Huh?"
37
+ msgstr "Frode?"
38
+
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
+ msgid "Something went wrong, check"
43
+ msgstr "Qualcosa è andato male, controlla"
44
+
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr "Errori & Debug"
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
+ msgid "or"
56
+ msgstr "o"
57
+
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
+ msgstr "autorizza il plugin"
63
+
64
+ #: .././admin/settings.php:98
65
+ msgid "Google Analytics Frontend Settings"
66
+ msgstr "Impostazioni Frontend di Google Analytics "
67
+
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
+ msgid "Show stats to:"
74
+ msgstr "Mostra statistiche a:"
75
+
76
+ #: .././admin/settings.php:159
77
+ msgid " show page sessions and users in frontend (after each article)"
78
+ msgstr ""
79
+ "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
80
+ "articolo)"
81
+
82
+ #: .././admin/settings.php:175
83
+ msgid " show page searches (after each article)"
84
+ msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
85
+
86
+ #: .././admin/settings.php:184 .././admin/settings.php:350
87
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
88
+ #: .././admin/settings.php:1428
89
+ msgid "Save Changes"
90
+ msgstr "Salva le modifiche"
91
+
92
+ #: .././admin/settings.php:217
93
+ msgid "Google Analytics Backend Settings"
94
+ msgstr ""
95
+
96
+ #: .././admin/settings.php:279
97
+ msgid "disable Switch Profile/View functionality"
98
+ msgstr "abilita o disabilita Cambia profilo/Mostra funzionalit&agrave;"
99
+
100
+ #: .././admin/settings.php:294
101
+ msgid "disable stats on Posts List and Pages List"
102
+ msgstr ""
103
+
104
+ #: .././admin/settings.php:309
105
+ msgid "disable the main Dashboard Widget"
106
+ msgstr ""
107
+
108
+ #: .././admin/settings.php:313
109
+ msgid "Real-Time Settings"
110
+ msgstr "Impostazioni In tempo reale"
111
+
112
+ #: .././admin/settings.php:316
113
+ msgid "Maximum number of pages to display on real-time tab:"
114
+ msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
115
+
116
+ #: .././admin/settings.php:321 .././admin/settings.php:337
117
+ msgid "find out more"
118
+ msgstr "per saperne di più"
119
+
120
+ #: .././admin/settings.php:323 .././admin/settings.php:340
121
+ msgid "about this feature"
122
+ msgstr "su questa funzionalit&agrave;"
123
+
124
+ #: .././admin/settings.php:328
125
+ msgid "Location Settings"
126
+ msgstr "Impostazioni posizione geografica"
127
+
128
+ #: .././admin/settings.php:332
129
+ msgid "Target Geo Map to country:"
130
+ msgstr "Obiettivo Geo Map per paese:"
131
+
132
+ #: .././admin/settings.php:381
133
+ msgid "The tracking component is disabled. You should set"
134
+ msgstr "Il componente di monitoraggio è disabilitato. È necessario impostare"
135
+
136
+ #: .././admin/settings.php:381
137
+ msgid "Tracking Options"
138
+ msgstr "Opzioni di monitoraggio"
139
+
140
+ #: .././admin/settings.php:381
141
+ msgid "to"
142
+ msgstr "a"
143
+
144
+ #: .././admin/settings.php:381 .././admin/settings.php:417
145
+ msgid "Enabled"
146
+ msgstr "Abilitato"
147
+
148
+ #: .././admin/settings.php:387
149
+ msgid "Google Analytics Tracking Code"
150
+ msgstr "Impostazioni Monitoraggio di Google Analytics "
151
+
152
+ #: .././admin/settings.php:396
153
+ msgid "Basic Settings"
154
+ msgstr "Impostazioni di base"
155
+
156
+ #: .././admin/settings.php:397 .././admin/settings.php:476
157
+ msgid "Events Tracking"
158
+ msgstr "Impostazioni eventi"
159
+
160
+ #: .././admin/settings.php:398 .././admin/settings.php:540
161
+ msgid "Custom Definitions"
162
+ msgstr "Impostazioni definizioni personalizzate"
163
+
164
+ #: .././admin/settings.php:399 .././admin/settings.php:668
165
+ #: .././admin/settings.php:1405
166
+ msgid "Exclude Tracking"
167
+ msgstr "Escludi monitoraggio"
168
+
169
+ #: .././admin/settings.php:400
170
+ msgid "Advanced Settings"
171
+ msgstr "Impostazioni avanzate"
172
+
173
+ #: .././admin/settings.php:408
174
+ msgid "Tracking Settings"
175
+ msgstr "Stato del monitoraggio"
176
+
177
+ #: .././admin/settings.php:411
178
+ msgid "Tracking Options:"
179
+ msgstr "Monitoraggio:"
180
+
181
+ #: .././admin/settings.php:415
182
+ msgid "Disabled"
183
+ msgstr "Disabilitato"
184
+
185
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
186
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
187
+ #: .././admin/widgets.php:67
188
+ msgid "View Name:"
189
+ msgstr "Mostra nome:"
190
+
191
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
192
+ msgid "Tracking ID:"
193
+ msgstr "ID monitoraggio:"
194
+
195
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
196
+ msgid "Default URL:"
197
+ msgstr "URL di default:"
198
+
199
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
200
+ msgid "Time Zone:"
201
+ msgstr "Fuso orario:"
202
+
203
+ #: .././admin/settings.php:430
204
+ msgid "Basic Tracking"
205
+ msgstr "Impostazioni di base"
206
+
207
+ #: .././admin/settings.php:433
208
+ msgid "Tracking Type:"
209
+ msgstr "Tipo:"
210
+
211
+ #: .././admin/settings.php:437
212
+ msgid "Classic Analytics"
213
+ msgstr "Classic Analytics"
214
+
215
+ #: .././admin/settings.php:439
216
+ msgid "Universal Analytics"
217
+ msgstr "Universal Analytics"
218
+
219
+ #: .././admin/settings.php:453
220
+ msgid " anonymize IPs while tracking"
221
+ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
222
+
223
+ #: .././admin/settings.php:468
224
+ msgid " enable remarketing, demographics and interests reports"
225
+ msgstr " abilita remarketing e rapporti demografici e sugli interessi"
226
+
227
+ #: .././admin/settings.php:490
228
+ msgid " track downloads, mailto and outbound links"
229
+ msgstr "monitora downloads, mailto e link in uscita"
230
+
231
+ #: .././admin/settings.php:494
232
+ msgid "Downloads Regex:"
233
+ msgstr "Abbreviazioni downloads:"
234
+
235
+ #: .././admin/settings.php:511
236
+ msgid " track affiliate links matching this regex"
237
+ msgstr " monitora collegamenti associati corrispondenti a queste abbreviazioni"
238
+
239
+ #: .././admin/settings.php:515
240
+ msgid "Affiliates Regex:"
241
+ msgstr "Abbreviazioni associate:"
242
+
243
+ #: .././admin/settings.php:532
244
+ msgid " track fragment identifiers, hashmarks (#) in URI links"
245
+ msgstr ""
246
+ " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
247
+ "collegamenti URI"
248
+
249
+ #: .././admin/settings.php:543
250
+ msgid "Authors:"
251
+ msgstr "Autori:"
252
+
253
+ #: .././admin/settings.php:553
254
+ msgid "Publication Year:"
255
+ msgstr "Anno di pubblicazione:"
256
+
257
+ #: .././admin/settings.php:563
258
+ msgid "Categories:"
259
+ msgstr "Categorie:"
260
+
261
+ #: .././admin/settings.php:573
262
+ msgid "User Type:"
263
+ msgstr "Tipo di utente:"
264
+
265
+ #: .././admin/settings.php:587
266
+ msgid "Advanced Tracking"
267
+ msgstr "Impostazioni avanzate"
268
+
269
+ #: .././admin/settings.php:590
270
+ msgid "Page Speed SR:"
271
+ msgstr "Page Speed Sample Rate:"
272
+
273
+ #: .././admin/settings.php:608
274
+ msgid " exclude events from bounce-rate calculation"
275
+ msgstr " escludi gli eventi dal calcolo del bounce-rate"
276
+
277
+ #: .././admin/settings.php:623
278
+ msgid " enable enhanced link attribution"
279
+ msgstr "utilizza l&#39;attribuzione avanzata dei link"
280
+
281
+ #: .././admin/settings.php:637
282
+ msgid " enable AdSense account linking"
283
+ msgstr " abilita AdSense account linking"
284
+
285
+ #: .././admin/settings.php:653
286
+ msgid " enable cross domain tracking"
287
+ msgstr " abilita cross domanin tracking"
288
+
289
+ #: .././admin/settings.php:657
290
+ msgid "Cross Domains:"
291
+ msgstr " Cross Domains:"
292
+
293
+ #: .././admin/settings.php:671
294
+ msgid "Exclude tracking for:"
295
+ msgstr "Escludi per:"
296
+
297
+ #: .././admin/settings.php:741
298
+ msgid "Google Analytics Errors & Debugging"
299
+ msgstr "Errori & Debugging di Google Analytics"
300
+
301
+ #: .././admin/settings.php:751
302
+ msgid "Errors & Details"
303
+ msgstr "Dettagli errori"
304
+
305
+ #: .././admin/settings.php:752
306
+ msgid "Plugin Settings"
307
+ msgstr "Impostazioni plugin"
308
+
309
+ #: .././admin/settings.php:760
310
+ msgid "For errors and/or other issues please check"
311
+ msgstr "Per errori e/o altri problemi leggere"
312
+
313
+ #: .././admin/settings.php:760
314
+ msgid "this documentation page"
315
+ msgstr "la pagina della documentazione del plugin"
316
+
317
+ #: .././admin/settings.php:760
318
+ msgid "and related tutorials"
319
+ msgstr "ed i tutorial relativi"
320
+
321
+ #: .././admin/settings.php:764
322
+ msgid "Last Error detected"
323
+ msgstr "Ultimo errore rilevato"
324
+
325
+ #: .././admin/settings.php:769 .././admin/settings.php:782
326
+ msgid "None"
327
+ msgstr "Nessuno"
328
+
329
+ #: .././admin/settings.php:776
330
+ msgid "Error Details"
331
+ msgstr "Dettagli errore"
332
+
333
+ #: .././admin/settings.php:796
334
+ msgid "Plugin Configuration"
335
+ msgstr "Configurazione plugin"
336
+
337
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
338
+ msgid ""
339
+ "Loading the required libraries. If this results in a blank screen or a fatal "
340
+ "error, try this solution:"
341
+ msgstr ""
342
+ "Caricamento delle librerie richieste. Se viene restituita una schermata "
343
+ "vuota o si verifica un errore fatale, provare questa soluzione:"
344
+
345
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
346
+ msgid "Plugin authorization succeeded."
347
+ msgstr "Autorizzazione plugin riuscita."
348
+
349
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
350
+ msgid ""
351
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
352
+ "(UA-XXXXX-X). Try again, and use the red link to get your access code"
353
+ msgstr ""
354
+ "Il codice di accesso <strong>NON</strong> &egrave; il <strong>Tracking ID</"
355
+ "strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
356
+ "il codice di accesso"
357
+
358
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
359
+ msgid "Cleared Cache."
360
+ msgstr "Cache eliminata."
361
+
362
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
363
+ msgid "Token Reseted and Revoked."
364
+ msgstr "Token azzerato e revocato."
365
+
366
+ #: .././admin/settings.php:910
367
+ msgid "All errors reseted."
368
+ msgstr ""
369
+
370
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
371
+ msgid "All other domains/properties were removed."
372
+ msgstr "Tutti gli altri domini/propriet&agrave; sono stati rimossi."
373
+
374
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
375
+ msgid "Google Analytics Settings"
376
+ msgstr "Impostazioni di Google Analytics"
377
+
378
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
379
+ msgid "Use the red link (see below) to generate and get your access code!"
380
+ msgstr ""
381
+ "Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
382
+ "di accesso!"
383
+
384
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
385
+ msgid "Plugin Authorization"
386
+ msgstr "Autorizzazione plugin"
387
+
388
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
389
+ msgid "You should watch the"
390
+ msgstr "Dovresti guardare il"
391
+
392
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
393
+ msgid "video"
394
+ msgstr "video"
395
+
396
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
397
+ msgid "and read this"
398
+ msgstr "e leggere questa"
399
+
400
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
401
+ msgid "tutorial"
402
+ msgstr "guida"
403
+
404
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
405
+ msgid ""
406
+ "before proceeding to authorization. This plugin requires a properly "
407
+ "configured Google Analytics account"
408
+ msgstr ""
409
+ "prima di procedere con l&#39;autorizzazione. Questo plugin richiede un "
410
+ "account di Google Analytics correttamente configurato"
411
+
412
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
413
+ msgid " use your own API Project credentials"
414
+ msgstr "utilizza le proprie credenziali API"
415
+
416
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
417
+ msgid "API Key:"
418
+ msgstr "Chiave API:"
419
+
420
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
421
+ msgid "Client ID:"
422
+ msgstr "ID Cliente:"
423
+
424
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
425
+ msgid "Client Secret:"
426
+ msgstr "Client Secret:"
427
+
428
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
429
+ msgid "Clear Authorization"
430
+ msgstr "Revoca autorizzazione"
431
+
432
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
433
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
434
+ msgid "Clear Cache"
435
+ msgstr "Elimina cache"
436
+
437
+ #: .././admin/settings.php:1022
438
+ msgid "Reset Errors"
439
+ msgstr ""
440
+
441
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
442
+ #: .././admin/setup.php:109
443
+ msgid "General Settings"
444
+ msgstr "Impostazioni generali"
445
+
446
+ #: .././admin/settings.php:1031
447
+ msgid "Select Domain:"
448
+ msgstr "Seleziona dominio:"
449
+
450
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
451
+ msgid "Property not found"
452
+ msgstr "Propriet&agrave; non trovata"
453
+
454
+ #: .././admin/settings.php:1049
455
+ msgid "and/or hide all other domains"
456
+ msgstr "e/o nasconde tutti gli altri domini"
457
+
458
+ #: .././admin/settings.php:1052
459
+ msgid "Hide Now"
460
+ msgstr "Nascondi ora"
461
+
462
+ #: .././admin/settings.php:1071
463
+ msgid "Theme Color:"
464
+ msgstr "Colore tema:"
465
+
466
+ #: .././admin/settings.php:1081
467
+ msgid "Automatic Updates"
468
+ msgstr ""
469
+
470
+ #: .././admin/settings.php:1097
471
+ msgid ""
472
+ "automatic updates for minor versions (security and maintainance releases "
473
+ "only)"
474
+ msgstr ""
475
+
476
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
477
+ #: .././admin/widgets.php:38
478
+ msgid "Authorize Plugin"
479
+ msgstr "Autorizza plugin"
480
+
481
+ #: .././admin/settings.php:1192
482
+ msgid "Properties refreshed."
483
+ msgstr "Propriet&agrave; aggiornate."
484
+
485
+ #: .././admin/settings.php:1278
486
+ msgid "Network Setup"
487
+ msgstr "Configurazione della rete"
488
+
489
+ #: .././admin/settings.php:1293
490
+ msgid " use a single Google Analytics account for the entire network"
491
+ msgstr " utilizza un unico account Google Analytics per l&#39;intera rete"
492
+
493
+ #: .././admin/settings.php:1365
494
+ msgid "Refresh Properties"
495
+ msgstr "Aggiorna propriet&agrave;"
496
+
497
+ #: .././admin/settings.php:1371
498
+ msgid "Properties/Views Settings"
499
+ msgstr "Propriet&agrave;/Mostra impostazioni"
500
+
501
+ #: .././admin/settings.php:1419
502
+ msgid " exclude Super Admin tracking for the entire network"
503
+ msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
504
+
505
+ #: .././admin/settings.php:1471
506
+ msgid "Setup Tutorial & Demo"
507
+ msgstr "Guida all'installazione & Demo"
508
+
509
+ #: .././admin/settings.php:1483
510
+ msgid "Support & Reviews"
511
+ msgstr "Supporto & Recensioni"
512
+
513
+ #: .././admin/settings.php:1491
514
+ msgid "Plugin documentation and support on"
515
+ msgstr "Documentazione del plugin e supporto su"
516
+
517
+ #: .././admin/settings.php:1498
518
+ msgid "Your feedback and review are both important,"
519
+ msgstr "Il tuo feedback e la tua recensione sono entrambi importanti,"
520
+
521
+ #: .././admin/settings.php:1498
522
+ msgid "rate this plugin"
523
+ msgstr "vota questo plugin"
524
+
525
+ #: .././admin/settings.php:1503
526
+ msgid "Further Reading"
527
+ msgstr "Approfondimenti"
528
+
529
+ #: .././admin/settings.php:1511
530
+ msgid "Improve search rankings"
531
+ msgstr "Migliorare le classifiche di ricerca"
532
+
533
+ #: .././admin/settings.php:1511
534
+ msgid "by moving your website to HTTPS/SSL."
535
+ msgstr "spostando il sito web a HTTPS/SSL."
536
+
537
+ #: .././admin/settings.php:1518
538
+ msgid "Other"
539
+ msgstr "Altri"
540
+
541
+ #: .././admin/settings.php:1518
542
+ msgid "WordPress Plugins"
543
+ msgstr "plugins per WordPress "
544
+
545
+ #: .././admin/settings.php:1518
546
+ msgid "written by the same author"
547
+ msgstr "scritti dallo stesso autore"
548
+
549
+ #: .././admin/settings.php:1523
550
+ msgid "Other Services"
551
+ msgstr "Altri servizi"
552
+
553
+ #: .././admin/settings.php:1531
554
+ msgid "Speed up your website and plug into a whole"
555
+ msgstr "Accellera il tuo sito web ad un"
556
+
557
+ #: .././admin/settings.php:1531
558
+ msgid "new level of site speed"
559
+ msgstr "nuovo livello di velocit&agrave;"
560
+
561
+ #: .././admin/settings.php:1538
562
+ msgid "Web Analytics"
563
+ msgstr "Web Analytics"
564
+
565
+ #: .././admin/settings.php:1538
566
+ msgid "service with users tracking at IP level."
567
+ msgstr "servizio con tracciamento degli utenti a livello IP."
568
+
569
+ #: .././admin/setup.php:69 .././admin/setup.php:105
570
+ msgid "Google Analytics"
571
+ msgstr "Google Analytics"
572
+
573
+ #: .././admin/setup.php:77
574
+ msgid "Backend Settings"
575
+ msgstr "Impostazioni backend"
576
+
577
+ #: .././admin/setup.php:81
578
+ msgid "Frontend Settings"
579
+ msgstr "Impostazioni frontend"
580
+
581
+ #: .././admin/setup.php:85
582
+ msgid "Tracking Code"
583
+ msgstr "Monitoraggio"
584
+
585
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
586
+ msgid "Today"
587
+ msgstr "Oggi"
588
+
589
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
590
+ msgid "Yesterday"
591
+ msgstr "Ieri"
592
+
593
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
594
+ #: .././front/widgets.php:68 .././front/widgets.php:176
595
+ msgid "Last 7 Days"
596
+ msgstr "Ultimi 7 giorni"
597
+
598
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
599
+ #: .././front/widgets.php:74 .././front/widgets.php:178
600
+ msgid "Last 30 Days"
601
+ msgstr "Ultimi 30 giorni"
602
+
603
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
604
+ msgid "Last 90 Days"
605
+ msgstr "Ultimi 90 giorni"
606
+
607
+ #: .././admin/setup.php:197 .././admin/setup.php:213
608
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
609
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
610
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
611
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
612
+ msgid "Sessions"
613
+ msgstr "Sessioni"
614
+
615
+ #: .././admin/setup.php:198 .././admin/setup.php:214
616
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
617
+ #: .././tools/gapi.php:372
618
+ msgid "Users"
619
+ msgstr "Utenti"
620
+
621
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
622
+ msgid "Organic"
623
+ msgstr "Traffico da motorI di ricerca"
624
+
625
+ #: .././admin/setup.php:200 .././admin/setup.php:215
626
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
627
+ #: .././tools/gapi.php:375
628
+ msgid "Page Views"
629
+ msgstr "Pagine viste"
630
+
631
+ #: .././admin/setup.php:201 .././admin/setup.php:216
632
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
633
+ #: .././tools/gapi.php:378
634
+ msgid "Bounce Rate"
635
+ msgstr "Frequenza di rimbalzo"
636
+
637
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
638
+ msgid "Location"
639
+ msgstr "Posizione geografica"
640
+
641
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
642
+ msgid "Referrers"
643
+ msgstr "Siti di origine del traffico"
644
+
645
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
646
+ #: .././tools/gapi.php:898
647
+ msgid "Searches"
648
+ msgstr "Ricerche"
649
+
650
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
651
+ msgid "Traffic Details"
652
+ msgstr "Dettagli traffico"
653
+
654
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
655
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
656
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
657
+ msgid "A JavaScript Error is blocking plugin resources!"
658
+ msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
659
+
660
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
661
+ msgid "Traffic Mediums"
662
+ msgstr "Origine del traffico in %"
663
+
664
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
665
+ msgid "Visitor Type"
666
+ msgstr "Tipo di visitatore"
667
+
668
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
669
+ msgid "Social Networks"
670
+ msgstr "Social Networks"
671
+
672
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
673
+ msgid "Search Engines"
674
+ msgstr "Motori di ricerca"
675
+
676
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
677
+ msgid "Organic Search"
678
+ msgstr "Ricerca organica"
679
+
680
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
681
+ msgid "Pages/Session"
682
+ msgstr "Pagine per sessione"
683
+
684
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
685
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
686
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
687
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
688
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
689
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
690
+ #: .././front/item-reports.php:115
691
+ msgid "Invalid response, more details in JavaScript Console (F12)."
692
+ msgstr ""
693
+ "Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
694
+
695
+ #: .././admin/setup.php:220
696
+ msgid "Not enough data collected"
697
+ msgstr ""
698
+
699
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
700
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
701
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
702
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
703
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
704
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
705
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
706
+ #: .././front/widgets.php:104
707
+ msgid "This report is unavailable"
708
+ msgstr "Questo rapporto non &egrave; disponibile"
709
+
710
+ #: .././admin/setup.php:222
711
+ msgid "report generated by"
712
+ msgstr ""
713
+
714
+ #: .././admin/setup.php:260
715
+ msgid "Settings"
716
+ msgstr "Impostazioni"
717
+
718
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
719
+ msgid "Google Analytics Dashboard"
720
+ msgstr "Bacheca di Google Analytics"
721
+
722
+ #: .././admin/widgets.php:38
723
+ msgid "This plugin needs an authorization:"
724
+ msgstr "Questo plugin necessita di un&#39;autorizzazione:"
725
+
726
+ #: .././admin/widgets.php:72
727
+ msgid "Something went wrong while retrieving profiles list."
728
+ msgstr ""
729
+ "Qualcosa &egrave; andato male durante il recupero della lista dei profili."
730
+
731
+ #: .././admin/widgets.php:72
732
+ msgid "More details"
733
+ msgstr "Altri dettagli"
734
+
735
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
736
+ msgid "An admin should asign a default Google Analytics Profile."
737
+ msgstr ""
738
+ "Un amministratore deve assegnare un profilo predefinito di Google Analytics."
739
+
740
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
741
+ msgid "Select Domain"
742
+ msgstr "Seleziona dominio"
743
+
744
+ #: .././admin/widgets.php:101
745
+ msgid ""
746
+ "Something went wrong while retrieving property data. You need to create and "
747
+ "properly configure a Google Analytics account:"
748
+ msgstr ""
749
+ "Qualcosa &egrave; andato male durante il recupero dei dati. &Egrave; "
750
+ "necessario creare e configurare correttamente un account di Google Analytics:"
751
+
752
+ #: .././admin/widgets.php:101
753
+ msgid "Find out more!"
754
+ msgstr "Per saperne di pi&ugrave;!"
755
+
756
+ #: .././admin/widgets.php:122
757
+ msgid "Real-Time"
758
+ msgstr "In tempo reale"
759
+
760
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
761
+ #: .././front/widgets.php:177
762
+ msgid "Last 14 Days"
763
+ msgstr "Ultimi 14 giorni"
764
+
765
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
766
+ msgid "Pages"
767
+ msgstr "Pagine"
768
+
769
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
770
+ msgid "REFERRAL"
771
+ msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
772
+
773
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
774
+ msgid "ORGANIC"
775
+ msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
776
+
777
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
778
+ #: .././admin/widgets.php:486
779
+ msgid "SOCIAL"
780
+ msgstr "TRAFFICO DAI SOCIAL NETWORK"
781
+
782
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
783
+ #: .././admin/widgets.php:487
784
+ msgid "CAMPAIGN"
785
+ msgstr "CAMPAGNA"
786
+
787
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
788
+ #: .././admin/widgets.php:490
789
+ msgid "DIRECT"
790
+ msgstr "TRAFFICO DIRETTO"
791
+
792
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
793
+ msgid "NEW"
794
+ msgstr "VISITATORI NUOVI"
795
+
796
+ #: .././admin/widgets.php:366
797
+ msgid "REFERRALS"
798
+ msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
799
+
800
+ #: .././admin/widgets.php:369
801
+ msgid "KEYWORDS"
802
+ msgstr "KEYWORDS"
803
+
804
+ #: .././front/item-reports.php:130
805
+ msgid "Views vs UniqueViews"
806
+ msgstr "Visualizzazioni vs Visualizzazioni uniche"
807
+
808
+ #: .././front/item-reports.php:180
809
+ msgid "Google Analytics Reports"
810
+ msgstr "Rapporti di Google Analytics"
811
+
812
+ #: .././front/widgets.php:15
813
+ msgid "Will display your google analytics stats in a widget"
814
+ msgstr "Visualizza le statistiche di Google Analytics in un widget"
815
+
816
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
817
+ msgid "trend"
818
+ msgstr "tendenza"
819
+
820
+ #: .././front/widgets.php:127
821
+ msgid "Period:"
822
+ msgstr "Periodo:"
823
+
824
+ #: .././front/widgets.php:127
825
+ msgid "Sessions:"
826
+ msgstr "Sessioni:"
827
+
828
+ #: .././front/widgets.php:131
829
+ msgid "generated by"
830
+ msgstr "generato da"
831
+
832
+ #: .././front/widgets.php:141
833
+ msgid "Google Analytics Stats"
834
+ msgstr "Statistiche di Google Analytics"
835
+
836
+ #: .././front/widgets.php:148
837
+ msgid "Title:"
838
+ msgstr "Titolo:"
839
+
840
+ #: .././front/widgets.php:155
841
+ msgid "Display:"
842
+ msgstr "Mostra:"
843
+
844
+ #: .././front/widgets.php:159
845
+ msgid "Chart & Totals"
846
+ msgstr "Grafico & Totali"
847
+
848
+ #: .././front/widgets.php:160
849
+ msgid "Chart"
850
+ msgstr "Grafico"
851
+
852
+ #: .././front/widgets.php:161
853
+ msgid "Totals"
854
+ msgstr "Totali"
855
+
856
+ #: .././front/widgets.php:165
857
+ msgid "Anonymize stats:"
858
+ msgstr "Anonimizza le statistiche:"
859
+
860
+ #: .././front/widgets.php:172
861
+ msgid "Stats for:"
862
+ msgstr "Statistiche per:"
863
+
864
+ #: .././front/widgets.php:182
865
+ msgid "Give credits:"
866
+ msgstr "Crediti:"
867
+
868
+ #: .././tools/gapi.php:128
869
+ msgid "Use this link to get your access code:"
870
+ msgstr "Utilizza questo link per ottenere il codice di accesso:"
871
+
872
+ #: .././tools/gapi.php:128
873
+ msgid "Get Access Code"
874
+ msgstr "Ottieni codice di accesso"
875
+
876
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
877
+ msgid "Use the red link to get your access code!"
878
+ msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
879
+
880
+ #: .././tools/gapi.php:133
881
+ msgid "Access Code:"
882
+ msgstr "Codice di accesso:"
883
+
884
+ #: .././tools/gapi.php:145
885
+ msgid "Save Access Code"
886
+ msgstr "Salva codice di accesso"
887
+
888
+ #: .././tools/gapi.php:381
889
+ msgid "Organic Searches"
890
+ msgstr "Ricerche organiche"
891
+
892
+ #: .././tools/gapi.php:389
893
+ msgid "Hour"
894
+ msgstr "Ora"
895
+
896
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
897
+ msgid "Date"
898
+ msgstr "Data"
899
+
900
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
901
+ msgid "Views"
902
+ msgstr "Visualizzazioni"
903
+
904
+ #: .././tools/gapi.php:617
905
+ msgid "Countries"
906
+ msgstr "Paesi"
907
+
908
+ #: .././tools/gapi.php:626
909
+ msgid "Cities from"
910
+ msgstr "Paese: "
911
+
912
+ #: .././tools/gapi.php:698
913
+ msgid "Channels"
914
+ msgstr "Canali"
915
+
916
+ #: .././tools/gapi.php:761
917
+ msgid "Type"
918
+ msgstr "Tipo"
919
+
920
+ #: .././tools/gapi.php:856
921
+ msgid "UniqueViews"
922
+ msgstr "Visualizzazioni uniche"
923
+
924
+ #~ msgid "Google Analytics Dashboard Settings"
925
+ #~ msgstr "Impostazioni Backend di Google Analytics"
926
+
927
+ #~ msgid "A new frontend widget is available! To enable it, go to"
928
+ #~ msgstr ""
929
+ #~ "&Egrave; disponibile un nuovo widget per il frontend. Per attivarlo, vai "
930
+ #~ "a"
931
+
932
+ #~ msgid "Appearance -> Widgets"
933
+ #~ msgstr "Aspetto -> Widgets"
934
+
935
+ #~ msgid "and look for Google Analytics Dashboard."
936
+ #~ msgstr "e cerca Bacheca di Google Analytics."
937
+
938
+ #~ msgid "Something went wrong, you need to"
939
+ #~ msgstr "Qualcosa &egrave; andato male, devi"
940
+
941
+ #~ msgid "or properly configure your"
942
+ #~ msgstr "o configura correttamente il tuo"
943
+
944
+ #~ msgid "Google Analytics account"
945
+ #~ msgstr "Account di Google Analytics"
946
+
947
+ #~ msgid "(find out more"
948
+ #~ msgstr "(per saperne di pi&ugrave;"
949
+
950
+ #~ msgid ")"
951
+ #~ msgstr ")"
952
+
953
+ #~ msgid "Additional Stats & Charts"
954
+ #~ msgstr "Ulteriori statistiche e grafici"
955
+
956
+ #~ msgid " show Geo Map chart for sessions"
957
+ #~ msgstr "mostra il grafico per le sessioni"
958
+
959
+ #~ msgid "Target Geo Map to region:"
960
+ #~ msgstr "Cartina delle visite per il paese:"
961
+
962
+ #~ msgid "and render top"
963
+ #~ msgstr "con"
964
+
965
+ #~ msgid "cities (find out more"
966
+ #~ msgstr "citt&agrave; (per saperne di più"
967
+
968
+ #~ msgid " show traffic overview"
969
+ #~ msgstr " mostra la panoramica sul traffico"
970
+
971
+ #~ msgid " show top pages"
972
+ #~ msgstr " mostra le principali pagine attive"
973
+
974
+ #~ msgid " show top referrers"
975
+ #~ msgstr " mostra i siti principali di origine del traffico"
976
+
977
+ #~ msgid " show top searches"
978
+ #~ msgstr " mostra le ricerche principali"
979
+
980
+ #~ msgid "Dumping log data."
981
+ #~ msgstr "Dumping dati di log."
982
+
983
+ #~ msgid ""
984
+ #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
985
+ #~ "CURL!"
986
+ #~ msgstr ""
987
+ #~ "PHP CURL &egrave; necessario. Chiedete al vostro fornitore di hosting per "
988
+ #~ "installare/attivare PHP CURL!"
989
+
990
+ #~ msgid ""
991
+ #~ "Something went wrong. Please check the Debugging Data section for "
992
+ #~ "possible errors"
993
+ #~ msgstr ""
994
+ #~ "Qualcosa &egrave; andato male. Controlla la sezione dati di debug per "
995
+ #~ "possibili errori"
996
+
997
+ #~ msgid "Debugging Data"
998
+ #~ msgstr "Debug dei dati"
999
+
1000
+ #~ msgid "Anonimize chart&#39;s stats:"
1001
+ #~ msgstr "Rendi anonimo il grafico delle statistiche:"
1002
+
1003
+ #~ msgid "Top Searches"
1004
+ #~ msgstr "Ricerche principali"
1005
+
1006
+ #~ msgid ""
1007
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1008
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1009
+ #~ msgstr ""
1010
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1011
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1012
+
1013
+ #~ msgid "Error Log"
1014
+ #~ msgstr "Log errori"
1015
+
1016
+ #~ msgid ""
1017
+ #~ "No stats available. Please check the Debugging Data section for possible "
1018
+ #~ "errors"
1019
+ #~ msgstr ""
1020
+ #~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
1021
+ #~ "possibili errori"
1022
+
1023
+ #~ msgid "Country/City"
1024
+ #~ msgstr "Paese/Citt&agrave;"
1025
+
1026
+ #~ msgid "Source"
1027
+ #~ msgstr "Sorgente"
1028
+
1029
+ #~ msgid "Traffic Sources"
1030
+ #~ msgstr "Sorgenti di traffico"
1031
+
1032
+ #~ msgid "New vs. Returning"
1033
+ #~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
1034
+
1035
+ #~ msgid "Top Pages"
1036
+ #~ msgstr "Principali pagine attive"
1037
+
1038
+ #~ msgid "Top Referrers"
1039
+ #~ msgstr "Referral principali"
1040
+
1041
+ #~ msgid ""
1042
+ #~ "This is a beta feature and is only available when using my Developer Key! "
1043
+ #~ "("
1044
+ #~ msgstr ""
1045
+ #~ "Questa &egrave; una caratteristica beta ed &egrave; disponibile solo "
1046
+ #~ "quando si utilizza il Developer Key! ("
1047
+
1048
+ #~ msgid "more about this feature"
1049
+ #~ msgstr "pi&ugrave; informazioni su questa funzione"
1050
+
1051
+ #~ msgid "RETURN"
1052
+ #~ msgstr "VISITATORI DI RITORNO"
1053
+
1054
+ #~ msgid "Sessions from "
1055
+ #~ msgstr "Sessioni da: "
1056
+
1057
+ #~ msgid "Sessions by Country"
1058
+ #~ msgstr "Sessioni per paese"
1059
+
1060
+ #~ msgid "Traffic Overview"
1061
+ #~ msgstr "Panoramica traffico"
1062
+
1063
+ #~ msgid "Visits"
1064
+ #~ msgstr "Visite"
1065
+
1066
+ #~ msgid "Visitors"
1067
+ #~ msgstr "Visitatori"
1068
+
1069
+ #~ msgid "Visits:"
1070
+ #~ msgstr "Visite:"
1071
+
1072
+ #~ msgid "Visitors:"
1073
+ #~ msgstr "Visitatori:"
1074
+
1075
+ #~ msgid "Page Views:"
1076
+ #~ msgstr "Pagine viste:"
1077
+
1078
+ #~ msgid "Bounce Rate:"
1079
+ #~ msgstr "Frequenza di rimbalzo:"
1080
+
1081
+ #~ msgid "Organic Search:"
1082
+ #~ msgstr "Ricerca organica:"
1083
+
1084
+ #~ msgid "Pages per Visit:"
1085
+ #~ msgstr "Pagine per visita:"
1086
+
1087
+ #~ msgid "Visits from "
1088
+ #~ msgstr "Visite da "
1089
+
1090
+ #~ msgid "Visits by Country"
1091
+ #~ msgstr "Visite per paese"
1092
+
1093
+ #~ msgid " show page visits and visitors in frontend (after each article)"
1094
+ #~ msgstr ""
1095
+ #~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
1096
+
1097
+ #~ msgid " show Geo Map chart for visits"
1098
+ #~ msgstr " mostra la cartina geografica delle visite"
1099
+
1100
+ #~ msgid "You can find support on"
1101
+ #~ msgstr "Puoi trovare supporto su"
1102
+
1103
+ #~ msgid "DeConf.com"
1104
+ #~ msgstr "DeConf.com"
1105
+
1106
+ #~ msgid "service with visitors tracking at IP level."
1107
+ #~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
1108
+
1109
+ #~ msgid "Total Visits:"
1110
+ #~ msgstr "Totale visite:"
1111
+
1112
+ #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1113
+ #~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
1114
+
1115
+ #~ msgid "Options saved."
1116
+ #~ msgstr "Opzioni salvate."
1117
+
1118
+ #~ msgid "Show stats to: "
1119
+ #~ msgstr "Mostra statistiche:"
1120
+
1121
+ #~ msgid "Update Options"
1122
+ #~ msgstr "Aggiorna opzioni"
1123
+
1124
+ #~ msgid "Tracking Options: "
1125
+ #~ msgstr "Opzioni monitoraggio: "
1126
+
1127
+ #~ msgid "Tracking Type: "
1128
+ #~ msgstr "Tipo di monitoraggio:"
1129
+
1130
+ #, fuzzy
1131
+ #~ msgid "User Type: "
1132
+ #~ msgstr "Tipo di monitoraggio:"
1133
+
1134
+ #~ msgid "Exclude tracking for: "
1135
+ #~ msgstr "Escludi monitoraggio per:"
1136
+
1137
+ #~ msgid "Select Domain: "
1138
+ #~ msgstr "Seleziona dominio:"
1139
+
1140
+ #~ msgid "Theme Color: "
1141
+ #~ msgstr "Colote tema:"
1142
+
1143
+ #~ msgid "&#39; trend"
1144
+ #~ msgstr "&#39; tendenza"
1145
+
1146
+ #~ msgid "DeConf Help Center"
1147
+ #~ msgstr "DeConf Help Center"
1148
+
1149
+ #~ msgid "Custom Code"
1150
+ #~ msgstr "Codice personalizzato"
1151
+
1152
+ #~ msgid "Your Tracking Code:"
1153
+ #~ msgstr "Il tuo codice di monitoraggio:"
languages/ga-dash-ja.mo ADDED
Binary file
languages/ga-dash-ja.po ADDED
@@ -0,0 +1,1123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: \n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
+ "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
+ "Language-Team: heysister721 <tk197709141545@gmail.com>\n"
8
+ "Language: ja\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.4\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
+ "X-Poedit-SearchPath-0: ../.\n"
18
+
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
21
+ msgstr ""
22
+
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
26
+ msgid "Settings saved."
27
+ msgstr "設定を保存"
28
+
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
+ msgid "Cheating Huh?"
37
+ msgstr "修正しますか?"
38
+
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
+ msgid "Something went wrong, check"
43
+ msgstr "間違いを確認する"
44
+
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr "エラー&デバッグ"
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
+ msgid "or"
56
+ msgstr "もしくは"
57
+
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
+ msgstr "プラグインを許可"
63
+
64
+ #: .././admin/settings.php:98
65
+ msgid "Google Analytics Frontend Settings"
66
+ msgstr "Google アナリティクス解析 フロントエンド設定"
67
+
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
+ msgid "Show stats to:"
74
+ msgstr "統計を見る:"
75
+
76
+ #: .././admin/settings.php:159
77
+ msgid " show page sessions and users in frontend (after each article)"
78
+ msgstr "(各記事の後に)フロントエンドでセッションとユーザーを表示する"
79
+
80
+ #: .././admin/settings.php:175
81
+ msgid " show page searches (after each article)"
82
+ msgstr "(各記事の後)を表示するページを検索"
83
+
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
+ msgid "Save Changes"
88
+ msgstr "変更を保存"
89
+
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
+
94
+ #: .././admin/settings.php:279
95
+ msgid "disable Switch Profile/View functionality"
96
+ msgstr "プロファイル/ビュー機能スイッチを無効にする"
97
+
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
+ msgid "Real-Time Settings"
108
+ msgstr "リアルタイム設定"
109
+
110
+ #: .././admin/settings.php:316
111
+ msgid "Maximum number of pages to display on real-time tab:"
112
+ msgstr "リアルタイムのタブに表示するページの最大数:"
113
+
114
+ #: .././admin/settings.php:321 .././admin/settings.php:337
115
+ msgid "find out more"
116
+ msgstr "もっと詳しく"
117
+
118
+ #: .././admin/settings.php:323 .././admin/settings.php:340
119
+ msgid "about this feature"
120
+ msgstr "この機能に関する"
121
+
122
+ #: .././admin/settings.php:328
123
+ msgid "Location Settings"
124
+ msgstr "地域設定"
125
+
126
+ #: .././admin/settings.php:332
127
+ msgid "Target Geo Map to country:"
128
+ msgstr "対象国を地図に指定:"
129
+
130
+ #: .././admin/settings.php:381
131
+ msgid "The tracking component is disabled. You should set"
132
+ msgstr "追跡コンポーネントが無効になっています。設定する必要があります。"
133
+
134
+ #: .././admin/settings.php:381
135
+ msgid "Tracking Options"
136
+ msgstr "追跡オプション"
137
+
138
+ #: .././admin/settings.php:381
139
+ msgid "to"
140
+ msgstr "へ"
141
+
142
+ #: .././admin/settings.php:381 .././admin/settings.php:417
143
+ msgid "Enabled"
144
+ msgstr "有効"
145
+
146
+ #: .././admin/settings.php:387
147
+ msgid "Google Analytics Tracking Code"
148
+ msgstr "Google Analytics トラッキングコード"
149
+
150
+ #: .././admin/settings.php:396
151
+ msgid "Basic Settings"
152
+ msgstr "基本設定"
153
+
154
+ #: .././admin/settings.php:397 .././admin/settings.php:476
155
+ msgid "Events Tracking"
156
+ msgstr "追跡イベント"
157
+
158
+ #: .././admin/settings.php:398 .././admin/settings.php:540
159
+ msgid "Custom Definitions"
160
+ msgstr "カスタム定義"
161
+
162
+ #: .././admin/settings.php:399 .././admin/settings.php:668
163
+ #: .././admin/settings.php:1405
164
+ msgid "Exclude Tracking"
165
+ msgstr "追跡を除外する"
166
+
167
+ #: .././admin/settings.php:400
168
+ msgid "Advanced Settings"
169
+ msgstr "拡張設定"
170
+
171
+ #: .././admin/settings.php:408
172
+ msgid "Tracking Settings"
173
+ msgstr "追跡設定"
174
+
175
+ #: .././admin/settings.php:411
176
+ msgid "Tracking Options:"
177
+ msgstr "オプションのトラッキング:"
178
+
179
+ #: .././admin/settings.php:415
180
+ msgid "Disabled"
181
+ msgstr "無効"
182
+
183
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
184
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
185
+ #: .././admin/widgets.php:67
186
+ msgid "View Name:"
187
+ msgstr "ビュー名:"
188
+
189
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
190
+ msgid "Tracking ID:"
191
+ msgstr "追跡 ID:"
192
+
193
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
194
+ msgid "Default URL:"
195
+ msgstr "デフォルトのURL:"
196
+
197
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
198
+ msgid "Time Zone:"
199
+ msgstr "タイムゾーン:"
200
+
201
+ #: .././admin/settings.php:430
202
+ msgid "Basic Tracking"
203
+ msgstr "基本的なトラッキング"
204
+
205
+ #: .././admin/settings.php:433
206
+ msgid "Tracking Type:"
207
+ msgstr "追跡の種類:"
208
+
209
+ #: .././admin/settings.php:437
210
+ msgid "Classic Analytics"
211
+ msgstr "クラシック分析"
212
+
213
+ #: .././admin/settings.php:439
214
+ msgid "Universal Analytics"
215
+ msgstr "ユニバーサル分析"
216
+
217
+ #: .././admin/settings.php:453
218
+ msgid " anonymize IPs while tracking"
219
+ msgstr "匿名IPアドレスを追跡する"
220
+
221
+ #: .././admin/settings.php:468
222
+ msgid " enable remarketing, demographics and interests reports"
223
+ msgstr "マーケティング・口統計・興味のレポートを有効にする"
224
+
225
+ #: .././admin/settings.php:490
226
+ msgid " track downloads, mailto and outbound links"
227
+ msgstr "トラックのダウンロード、メールと外部へのリンク"
228
+
229
+ #: .././admin/settings.php:494
230
+ msgid "Downloads Regex:"
231
+ msgstr "ダウンロードの正規表現:"
232
+
233
+ #: .././admin/settings.php:511
234
+ msgid " track affiliate links matching this regex"
235
+ msgstr "正規表現に一致するトラックアフィリエイトのリンク"
236
+
237
+ #: .././admin/settings.php:515
238
+ msgid "Affiliates Regex:"
239
+ msgstr "アフィリエイト正規表現:"
240
+
241
+ #: .././admin/settings.php:532
242
+ msgid " track fragment identifiers, hashmarks (#) in URI links"
243
+ msgstr "リンクでフラグメント識別子、ハッシュマーク(#)を追跡"
244
+
245
+ #: .././admin/settings.php:543
246
+ msgid "Authors:"
247
+ msgstr "作者:"
248
+
249
+ #: .././admin/settings.php:553
250
+ msgid "Publication Year:"
251
+ msgstr "発行年:"
252
+
253
+ #: .././admin/settings.php:563
254
+ msgid "Categories:"
255
+ msgstr "カテゴリー:"
256
+
257
+ #: .././admin/settings.php:573
258
+ msgid "User Type:"
259
+ msgstr "ユーザータイプ:"
260
+
261
+ #: .././admin/settings.php:587
262
+ msgid "Advanced Tracking"
263
+ msgstr "高度なトラッキング"
264
+
265
+ #: .././admin/settings.php:590
266
+ msgid "Page Speed SR:"
267
+ msgstr "ページスピードSR:"
268
+
269
+ #: .././admin/settings.php:608
270
+ msgid " exclude events from bounce-rate calculation"
271
+ msgstr "直帰率を除外する"
272
+
273
+ #: .././admin/settings.php:623
274
+ msgid " enable enhanced link attribution"
275
+ msgstr "強化されたリンクの帰属を可能にする"
276
+
277
+ #: .././admin/settings.php:637
278
+ msgid " enable AdSense account linking"
279
+ msgstr "AdSenseアカウントのリンクを有効"
280
+
281
+ #: .././admin/settings.php:653
282
+ msgid " enable cross domain tracking"
283
+ msgstr "クロスドメイントラッキングを可能にする"
284
+
285
+ #: .././admin/settings.php:657
286
+ msgid "Cross Domains:"
287
+ msgstr "クロスドメイン:"
288
+
289
+ #: .././admin/settings.php:671
290
+ msgid "Exclude tracking for:"
291
+ msgstr "除外トラッキング:"
292
+
293
+ #: .././admin/settings.php:741
294
+ msgid "Google Analytics Errors & Debugging"
295
+ msgstr "Google Analyticsのエラーとデバッグ"
296
+
297
+ #: .././admin/settings.php:751
298
+ msgid "Errors & Details"
299
+ msgstr "Google Analyticsのエラーとデバッグ"
300
+
301
+ #: .././admin/settings.php:752
302
+ msgid "Plugin Settings"
303
+ msgstr "プラグイン設定"
304
+
305
+ #: .././admin/settings.php:760
306
+ msgid "For errors and/or other issues please check"
307
+ msgstr "エラー:および/または その他の問題を確認してください"
308
+
309
+ #: .././admin/settings.php:760
310
+ msgid "this documentation page"
311
+ msgstr "プラグインのドキュメントページ"
312
+
313
+ #: .././admin/settings.php:760
314
+ msgid "and related tutorials"
315
+ msgstr "関連チュートリアル"
316
+
317
+ #: .././admin/settings.php:764
318
+ msgid "Last Error detected"
319
+ msgstr "エラーを検出"
320
+
321
+ #: .././admin/settings.php:769 .././admin/settings.php:782
322
+ msgid "None"
323
+ msgstr "なし"
324
+
325
+ #: .././admin/settings.php:776
326
+ msgid "Error Details"
327
+ msgstr "エラーの詳細"
328
+
329
+ #: .././admin/settings.php:796
330
+ msgid "Plugin Configuration"
331
+ msgstr "プラグインの設定"
332
+
333
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
334
+ msgid ""
335
+ "Loading the required libraries. If this results in a blank screen or a fatal "
336
+ "error, try this solution:"
337
+ msgstr ""
338
+ "必要なライブラリをロードします。空白の画面または致命的なエラーが発生した場合"
339
+ "は、このソリューションを試してみてください。"
340
+
341
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
342
+ msgid "Plugin authorization succeeded."
343
+ msgstr "プラグインの認可が成功しました。"
344
+
345
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
346
+ msgid ""
347
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
348
+ "(UA-XXXXX-X). Try again, and use the red link to get your access code"
349
+ msgstr ""
350
+ "アクセスコードは、<strong>あなたの追跡ID(UA-XXXXX-X)</strong>ではありませ"
351
+ "ん。アクセスコードを取得するためには赤いリンクを使用して、再度実行してくださ"
352
+ "い。"
353
+
354
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
355
+ msgid "Cleared Cache."
356
+ msgstr "キャッシュをクリアしました。"
357
+
358
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
359
+ msgid "Token Reseted and Revoked."
360
+ msgstr "トークンのリセットと失効"
361
+
362
+ #: .././admin/settings.php:910
363
+ msgid "All errors reseted."
364
+ msgstr ""
365
+
366
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
367
+ msgid "All other domains/properties were removed."
368
+ msgstr "全て - その他のドメイン/プロパティが削除されました。"
369
+
370
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
371
+ msgid "Google Analytics Settings"
372
+ msgstr "Google アナリティクス解析の設定"
373
+
374
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
375
+ msgid "Use the red link (see below) to generate and get your access code!"
376
+ msgstr "アクセスコードを取得するには、赤リンク(下記参照)を使用してください!"
377
+
378
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
379
+ msgid "Plugin Authorization"
380
+ msgstr "認証プラグイン"
381
+
382
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
383
+ msgid "You should watch the"
384
+ msgstr "あなたが監視する必要があります"
385
+
386
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
387
+ msgid "video"
388
+ msgstr "動画"
389
+
390
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
391
+ msgid "and read this"
392
+ msgstr "そしてこれを読んで"
393
+
394
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
395
+ msgid "tutorial"
396
+ msgstr "チュートリアル"
397
+
398
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
399
+ msgid ""
400
+ "before proceeding to authorization. This plugin requires a properly "
401
+ "configured Google Analytics account"
402
+ msgstr ""
403
+ "許可に進む前に。このプラグインは適切に設定され、Google Analyticsのアカウント"
404
+ "が必要です"
405
+
406
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
407
+ msgid " use your own API Project credentials"
408
+ msgstr "独自のAPIプロジェクトの資格情報を使用する"
409
+
410
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
411
+ msgid "API Key:"
412
+ msgstr "API キー:"
413
+
414
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
415
+ msgid "Client ID:"
416
+ msgstr "クライアント ID:"
417
+
418
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
419
+ msgid "Client Secret:"
420
+ msgstr "クライアント Secret:"
421
+
422
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
423
+ msgid "Clear Authorization"
424
+ msgstr "クリア承認"
425
+
426
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
427
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
428
+ msgid "Clear Cache"
429
+ msgstr "キャッシュを消去"
430
+
431
+ #: .././admin/settings.php:1022
432
+ msgid "Reset Errors"
433
+ msgstr ""
434
+
435
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
436
+ #: .././admin/setup.php:109
437
+ msgid "General Settings"
438
+ msgstr "一般設定"
439
+
440
+ #: .././admin/settings.php:1031
441
+ msgid "Select Domain:"
442
+ msgstr "ドメインを選択:"
443
+
444
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
445
+ msgid "Property not found"
446
+ msgstr "プロパティが見つかりません"
447
+
448
+ #: .././admin/settings.php:1049
449
+ msgid "and/or hide all other domains"
450
+ msgstr "および/または他のすべてのドメインを隠す"
451
+
452
+ #: .././admin/settings.php:1052
453
+ msgid "Hide Now"
454
+ msgstr "隠す"
455
+
456
+ #: .././admin/settings.php:1071
457
+ msgid "Theme Color:"
458
+ msgstr "テーマカラー:"
459
+
460
+ #: .././admin/settings.php:1081
461
+ msgid "Automatic Updates"
462
+ msgstr ""
463
+
464
+ #: .././admin/settings.php:1097
465
+ msgid ""
466
+ "automatic updates for minor versions (security and maintainance releases "
467
+ "only)"
468
+ msgstr ""
469
+
470
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
471
+ #: .././admin/widgets.php:38
472
+ msgid "Authorize Plugin"
473
+ msgstr "プラグインを承認"
474
+
475
+ #: .././admin/settings.php:1192
476
+ msgid "Properties refreshed."
477
+ msgstr "プロパティを更新しました。"
478
+
479
+ #: .././admin/settings.php:1278
480
+ msgid "Network Setup"
481
+ msgstr "ネットワーク設定"
482
+
483
+ #: .././admin/settings.php:1293
484
+ msgid " use a single Google Analytics account for the entire network"
485
+ msgstr "ネットワーク全体のための単一のGoogle Analyticsアカウントを使用"
486
+
487
+ #: .././admin/settings.php:1365
488
+ msgid "Refresh Properties"
489
+ msgstr "プロパティを最新の情報に更新"
490
+
491
+ #: .././admin/settings.php:1371
492
+ msgid "Properties/Views Settings"
493
+ msgstr "プロパティ/ビューの設定"
494
+
495
+ #: .././admin/settings.php:1419
496
+ msgid " exclude Super Admin tracking for the entire network"
497
+ msgstr "ネットワーク全体の管理者の追跡を除外"
498
+
499
+ #: .././admin/settings.php:1471
500
+ msgid "Setup Tutorial & Demo"
501
+ msgstr "セットアップ:チュートリアル&デモ"
502
+
503
+ #: .././admin/settings.php:1483
504
+ msgid "Support & Reviews"
505
+ msgstr "サポート&レビュー"
506
+
507
+ #: .././admin/settings.php:1491
508
+ msgid "Plugin documentation and support on"
509
+ msgstr "プラグインのドキュメントとサポート"
510
+
511
+ #: .././admin/settings.php:1498
512
+ msgid "Your feedback and review are both important,"
513
+ msgstr "あなたのフィードバックやレビューは、両方とも重要であり、"
514
+
515
+ #: .././admin/settings.php:1498
516
+ msgid "rate this plugin"
517
+ msgstr "このプラグインを評価"
518
+
519
+ #: .././admin/settings.php:1503
520
+ msgid "Further Reading"
521
+ msgstr "参考文献"
522
+
523
+ #: .././admin/settings.php:1511
524
+ msgid "Improve search rankings"
525
+ msgstr "検索ランキングを向上させる"
526
+
527
+ #: .././admin/settings.php:1511
528
+ msgid "by moving your website to HTTPS/SSL."
529
+ msgstr "HTTPS / SSLにあなたのウェブサイトを移動することによって。"
530
+
531
+ #: .././admin/settings.php:1518
532
+ msgid "Other"
533
+ msgstr "その他"
534
+
535
+ #: .././admin/settings.php:1518
536
+ msgid "WordPress Plugins"
537
+ msgstr "WordPressのプラグイン"
538
+
539
+ #: .././admin/settings.php:1518
540
+ msgid "written by the same author"
541
+ msgstr "同じ作者によって書かれた"
542
+
543
+ #: .././admin/settings.php:1523
544
+ msgid "Other Services"
545
+ msgstr "その他のサービス"
546
+
547
+ #: .././admin/settings.php:1531
548
+ msgid "Speed up your website and plug into a whole"
549
+ msgstr "あなたのウェブサイトをスピードアップし、全体に差し込む"
550
+
551
+ #: .././admin/settings.php:1531
552
+ msgid "new level of site speed"
553
+ msgstr "新しいレベルのサイト速度"
554
+
555
+ #: .././admin/settings.php:1538
556
+ msgid "Web Analytics"
557
+ msgstr "ウェブ解析"
558
+
559
+ #: .././admin/settings.php:1538
560
+ msgid "service with users tracking at IP level."
561
+ msgstr "IPレベルでのトラッキングユーザーとサービス"
562
+
563
+ #: .././admin/setup.php:69 .././admin/setup.php:105
564
+ msgid "Google Analytics"
565
+ msgstr "Google アナリティクス解析"
566
+
567
+ #: .././admin/setup.php:77
568
+ msgid "Backend Settings"
569
+ msgstr "バックエンド設定"
570
+
571
+ #: .././admin/setup.php:81
572
+ msgid "Frontend Settings"
573
+ msgstr "フロントエンド設定"
574
+
575
+ #: .././admin/setup.php:85
576
+ msgid "Tracking Code"
577
+ msgstr "トラッキングコード"
578
+
579
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
580
+ msgid "Today"
581
+ msgstr "今日"
582
+
583
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
584
+ msgid "Yesterday"
585
+ msgstr "昨日"
586
+
587
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
588
+ #: .././front/widgets.php:68 .././front/widgets.php:176
589
+ msgid "Last 7 Days"
590
+ msgstr "1週間前"
591
+
592
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
593
+ #: .././front/widgets.php:74 .././front/widgets.php:178
594
+ msgid "Last 30 Days"
595
+ msgstr "30日前"
596
+
597
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
598
+ msgid "Last 90 Days"
599
+ msgstr "90日前"
600
+
601
+ #: .././admin/setup.php:197 .././admin/setup.php:213
602
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
603
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
604
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
605
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
606
+ msgid "Sessions"
607
+ msgstr "セッション"
608
+
609
+ #: .././admin/setup.php:198 .././admin/setup.php:214
610
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
611
+ #: .././tools/gapi.php:372
612
+ msgid "Users"
613
+ msgstr "ユーザ"
614
+
615
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
616
+ msgid "Organic"
617
+ msgstr "キーワード検索"
618
+
619
+ #: .././admin/setup.php:200 .././admin/setup.php:215
620
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
621
+ #: .././tools/gapi.php:375
622
+ msgid "Page Views"
623
+ msgstr "PV"
624
+
625
+ #: .././admin/setup.php:201 .././admin/setup.php:216
626
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
627
+ #: .././tools/gapi.php:378
628
+ msgid "Bounce Rate"
629
+ msgstr "直帰率"
630
+
631
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
632
+ msgid "Location"
633
+ msgstr "地域"
634
+
635
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
636
+ msgid "Referrers"
637
+ msgstr "リファラー"
638
+
639
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
640
+ #: .././tools/gapi.php:898
641
+ msgid "Searches"
642
+ msgstr "検索結果"
643
+
644
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
645
+ msgid "Traffic Details"
646
+ msgstr "トラフィック詳細"
647
+
648
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
649
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
650
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
651
+ msgid "A JavaScript Error is blocking plugin resources!"
652
+ msgstr ""
653
+ "JavaScriptのエラーは、プラグインのリソースをブロックしている可能性がありま"
654
+ "す。"
655
+
656
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
657
+ msgid "Traffic Mediums"
658
+ msgstr "トラフィック平均"
659
+
660
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
661
+ msgid "Visitor Type"
662
+ msgstr "訪問者"
663
+
664
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
665
+ msgid "Social Networks"
666
+ msgstr "SNS"
667
+
668
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
669
+ msgid "Search Engines"
670
+ msgstr "検索サイト"
671
+
672
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
673
+ msgid "Organic Search"
674
+ msgstr "キーワード検索"
675
+
676
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
677
+ msgid "Pages/Session"
678
+ msgstr "ページ/セッション"
679
+
680
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
681
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
682
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
683
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
684
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
685
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
686
+ #: .././front/item-reports.php:115
687
+ msgid "Invalid response, more details in JavaScript Console (F12)."
688
+ msgstr ""
689
+ "応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
690
+
691
+ #: .././admin/setup.php:220
692
+ msgid "Not enough data collected"
693
+ msgstr ""
694
+
695
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
696
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
697
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
698
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
699
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
700
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
701
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
702
+ #: .././front/widgets.php:104
703
+ msgid "This report is unavailable"
704
+ msgstr "このレポートには使用できません。"
705
+
706
+ #: .././admin/setup.php:222
707
+ msgid "report generated by"
708
+ msgstr ""
709
+
710
+ #: .././admin/setup.php:260
711
+ msgid "Settings"
712
+ msgstr "設定"
713
+
714
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
715
+ msgid "Google Analytics Dashboard"
716
+ msgstr "Google アナリティクス解析 ダッシュボード"
717
+
718
+ #: .././admin/widgets.php:38
719
+ msgid "This plugin needs an authorization:"
720
+ msgstr "このプラグインは、許可を必要とします:"
721
+
722
+ #: .././admin/widgets.php:72
723
+ msgid "Something went wrong while retrieving profiles list."
724
+ msgstr "プロファイルリストの取得中に何かが間違っていた。"
725
+
726
+ #: .././admin/widgets.php:72
727
+ msgid "More details"
728
+ msgstr "詳細"
729
+
730
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
731
+ msgid "An admin should asign a default Google Analytics Profile."
732
+ msgstr ""
733
+ "管理者は、デフォルトのGoogle Analyticsのプロファイルをasign必要があります。"
734
+
735
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
736
+ msgid "Select Domain"
737
+ msgstr "ドメインを選択"
738
+
739
+ #: .././admin/widgets.php:101
740
+ msgid ""
741
+ "Something went wrong while retrieving property data. You need to create and "
742
+ "properly configure a Google Analytics account:"
743
+ msgstr ""
744
+ "プロパティデータを取得中に何かが間違っていた。あなたが作成し、適切にGoogle "
745
+ "Analyticsアカウントを設定する必要があります:"
746
+
747
+ #: .././admin/widgets.php:101
748
+ msgid "Find out more!"
749
+ msgstr "詳細はこちら"
750
+
751
+ #: .././admin/widgets.php:122
752
+ msgid "Real-Time"
753
+ msgstr "リアルタイム"
754
+
755
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
756
+ #: .././front/widgets.php:177
757
+ msgid "Last 14 Days"
758
+ msgstr "2週間前"
759
+
760
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
761
+ msgid "Pages"
762
+ msgstr "ページ"
763
+
764
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
765
+ msgid "REFERRAL"
766
+ msgstr "リファラー"
767
+
768
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
769
+ msgid "ORGANIC"
770
+ msgstr "キーワード検索"
771
+
772
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
773
+ #: .././admin/widgets.php:486
774
+ msgid "SOCIAL"
775
+ msgstr "SNS"
776
+
777
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
778
+ #: .././admin/widgets.php:487
779
+ msgid "CAMPAIGN"
780
+ msgstr "キャンペーン"
781
+
782
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
783
+ #: .././admin/widgets.php:490
784
+ msgid "DIRECT"
785
+ msgstr "直リンク"
786
+
787
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
788
+ msgid "NEW"
789
+ msgstr "新"
790
+
791
+ #: .././admin/widgets.php:366
792
+ msgid "REFERRALS"
793
+ msgstr "リファラー"
794
+
795
+ #: .././admin/widgets.php:369
796
+ msgid "KEYWORDS"
797
+ msgstr "リスティング広告"
798
+
799
+ #: .././front/item-reports.php:130
800
+ msgid "Views vs UniqueViews"
801
+ msgstr "ユニーク視聴/ビュー"
802
+
803
+ #: .././front/item-reports.php:180
804
+ msgid "Google Analytics Reports"
805
+ msgstr "Google アナリティクス解析のレポート"
806
+
807
+ #: .././front/widgets.php:15
808
+ msgid "Will display your google analytics stats in a widget"
809
+ msgstr "ウィジェットでのGoogleアナリティクスの統計を表示します"
810
+
811
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
812
+ msgid "trend"
813
+ msgstr "トレンド(動向)"
814
+
815
+ #: .././front/widgets.php:127
816
+ msgid "Period:"
817
+ msgstr "期間:"
818
+
819
+ #: .././front/widgets.php:127
820
+ msgid "Sessions:"
821
+ msgstr "セッション:"
822
+
823
+ #: .././front/widgets.php:131
824
+ msgid "generated by"
825
+ msgstr "によって生成される"
826
+
827
+ #: .././front/widgets.php:141
828
+ msgid "Google Analytics Stats"
829
+ msgstr "Google アナリティクス解析の統計"
830
+
831
+ #: .././front/widgets.php:148
832
+ msgid "Title:"
833
+ msgstr "タイトル:"
834
+
835
+ #: .././front/widgets.php:155
836
+ msgid "Display:"
837
+ msgstr "表示:"
838
+
839
+ #: .././front/widgets.php:159
840
+ msgid "Chart & Totals"
841
+ msgstr "合計(図表)"
842
+
843
+ #: .././front/widgets.php:160
844
+ msgid "Chart"
845
+ msgstr "図表"
846
+
847
+ #: .././front/widgets.php:161
848
+ msgid "Totals"
849
+ msgstr "合計"
850
+
851
+ #: .././front/widgets.php:165
852
+ msgid "Anonymize stats:"
853
+ msgstr "匿名の統計:"
854
+
855
+ #: .././front/widgets.php:172
856
+ msgid "Stats for:"
857
+ msgstr "統計:"
858
+
859
+ #: .././front/widgets.php:182
860
+ msgid "Give credits:"
861
+ msgstr "クレジットを与える:"
862
+
863
+ #: .././tools/gapi.php:128
864
+ msgid "Use this link to get your access code:"
865
+ msgstr "このリンクを使用して、アクセスコードを取得してください:"
866
+
867
+ #: .././tools/gapi.php:128
868
+ msgid "Get Access Code"
869
+ msgstr "アクセスコードを取得"
870
+
871
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
872
+ msgid "Use the red link to get your access code!"
873
+ msgstr "アクセスコードを取得するために赤いリンクを使用してください。"
874
+
875
+ #: .././tools/gapi.php:133
876
+ msgid "Access Code:"
877
+ msgstr "アクセスコード:"
878
+
879
+ #: .././tools/gapi.php:145
880
+ msgid "Save Access Code"
881
+ msgstr "アクセスコードを保存"
882
+
883
+ #: .././tools/gapi.php:381
884
+ msgid "Organic Searches"
885
+ msgstr "広告なし検索"
886
+
887
+ #: .././tools/gapi.php:389
888
+ msgid "Hour"
889
+ msgstr "時"
890
+
891
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
892
+ msgid "Date"
893
+ msgstr "日"
894
+
895
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
896
+ msgid "Views"
897
+ msgstr "PV"
898
+
899
+ #: .././tools/gapi.php:617
900
+ msgid "Countries"
901
+ msgstr "各国"
902
+
903
+ #: .././tools/gapi.php:626
904
+ msgid "Cities from"
905
+ msgstr "都市"
906
+
907
+ #: .././tools/gapi.php:698
908
+ msgid "Channels"
909
+ msgstr "経路"
910
+
911
+ #: .././tools/gapi.php:761
912
+ msgid "Type"
913
+ msgstr "タイプ"
914
+
915
+ #: .././tools/gapi.php:856
916
+ msgid "UniqueViews"
917
+ msgstr "ユニークPV"
918
+
919
+ #~ msgid "Google Analytics Dashboard Settings"
920
+ #~ msgstr "Google アナリティクス解析 ダッシュボードの設定"
921
+
922
+ #~ msgid "A new frontend widget is available! To enable it, go to"
923
+ #~ msgstr "新しいフロントエンドのウィジェットが利用可能です。それを有効にする"
924
+
925
+ #~ msgid "Appearance -> Widgets"
926
+ #~ msgstr "外観 - >ウィジェット"
927
+
928
+ #~ msgid "and look for Google Analytics Dashboard."
929
+ #~ msgstr "Google Analyticsのダッシュボードを探します。"
930
+
931
+ #~ msgid "Something went wrong, you need to"
932
+ #~ msgstr "Quelque chose s&#39;est mal passé, vous devez"
933
+
934
+ #~ msgid "or properly configure your"
935
+ #~ msgstr "ou bien configurer votre"
936
+
937
+ #~ msgid "Google Analytics account"
938
+ #~ msgstr "Compte Google Analytics"
939
+
940
+ #~ msgid "(find out more"
941
+ #~ msgstr "(en savoir plus"
942
+
943
+ #~ msgid ")"
944
+ #~ msgstr ")"
945
+
946
+ #~ msgid "Additional Stats & Charts"
947
+ #~ msgstr "Statistiques et graphiques supplémentaires"
948
+
949
+ #~ msgid "Target Geo Map to region:"
950
+ #~ msgstr "Cible Géo carte de la région:"
951
+
952
+ #~ msgid "and render top"
953
+ #~ msgstr "et rendre haut"
954
+
955
+ #~ msgid "cities (find out more"
956
+ #~ msgstr "villes (en savoir plus"
957
+
958
+ #~ msgid " show traffic overview"
959
+ #~ msgstr "Affiche la Vue d&#39;ensemble du Traffic"
960
+
961
+ #~ msgid " show top pages"
962
+ #~ msgstr "Affiche le Top pages"
963
+
964
+ #~ msgid " show top referrers"
965
+ #~ msgstr "Affiche le Top références"
966
+
967
+ #~ msgid " show top searches"
968
+ #~ msgstr "Affiche le Top recherches"
969
+
970
+ #~ msgid "Dumping log data."
971
+ #~ msgstr "D&#39;exporter les données du journal."
972
+
973
+ #~ msgid ""
974
+ #~ "Something went wrong. Please check the Debugging Data section for "
975
+ #~ "possible errors"
976
+ #~ msgstr ""
977
+ #~ "Quelque chose s&#39;est mal passé. S&#39;il vous plaît consulter la "
978
+ #~ "section Mise au point de données pour d&#39;éventuelles erreurs"
979
+
980
+ #~ msgid "Debugging Data"
981
+ #~ msgstr "débogage des données"
982
+
983
+ #~ msgid "Anonimize chart&#39;s stats:"
984
+ #~ msgstr "Les statistiques de Anonimize graphique:"
985
+
986
+ #~ msgid "Top Searches"
987
+ #~ msgstr "Top Recherches"
988
+
989
+ #~ msgid "Error Log"
990
+ #~ msgstr "Log erreurs"
991
+
992
+ #~ msgid "Visits"
993
+ #~ msgstr "Visites"
994
+
995
+ #~ msgid "Visitors"
996
+ #~ msgstr "Visiteurs"
997
+
998
+ #~ msgid ""
999
+ #~ "No stats available. Please check the Debugging Data section for possible "
1000
+ #~ "errors"
1001
+ #~ msgstr ""
1002
+ #~ "Aucune statistique n&#39;est disponible. S&#39;il vous plaît consulter la "
1003
+ #~ "section Mise au point de données pour d&#39;éventuelles erreurs"
1004
+
1005
+ #~ msgid "Country/City"
1006
+ #~ msgstr "Pays/Ville"
1007
+
1008
+ #~ msgid "Source"
1009
+ #~ msgstr "source"
1010
+
1011
+ #~ msgid "Traffic Sources"
1012
+ #~ msgstr "Sources de traffic"
1013
+
1014
+ #~ msgid "New vs. Returning"
1015
+ #~ msgstr "Nouveaux VS Connus"
1016
+
1017
+ #~ msgid "Top Pages"
1018
+ #~ msgstr "Top Pages"
1019
+
1020
+ #~ msgid "Top Referrers"
1021
+ #~ msgstr "Top Références"
1022
+
1023
+ #~ msgid "Visits:"
1024
+ #~ msgstr "Visites:"
1025
+
1026
+ #~ msgid "Visitors:"
1027
+ #~ msgstr "Visiteurs:"
1028
+
1029
+ #~ msgid "Page Views:"
1030
+ #~ msgstr "Pages Vues:"
1031
+
1032
+ #~ msgid "Bounce Rate:"
1033
+ #~ msgstr "Taux de Rebond:"
1034
+
1035
+ #~ msgid "Organic Search:"
1036
+ #~ msgstr "Recherches Organique:"
1037
+
1038
+ #~ msgid "Pages per Visit:"
1039
+ #~ msgstr "Pages par visite:"
1040
+
1041
+ #~ msgid ""
1042
+ #~ "This is a beta feature and is only available when using my Developer Key! "
1043
+ #~ "("
1044
+ #~ msgstr ""
1045
+ #~ "Il s&#39;agit d&#39;une fonctionnalité bêta et est disponible uniquement "
1046
+ #~ "lorsque vous utilisez ma clé de développeur! ("
1047
+
1048
+ #~ msgid "more about this feature"
1049
+ #~ msgstr "plus sur cette fonction"
1050
+
1051
+ #~ msgid "RETURN"
1052
+ #~ msgstr "RETOUR"
1053
+
1054
+ #~ msgid "Visits from "
1055
+ #~ msgstr "Visites de"
1056
+
1057
+ #~ msgid "Visits by Country"
1058
+ #~ msgstr "Visites par Pays"
1059
+
1060
+ #~ msgid "Traffic Overview"
1061
+ #~ msgstr "Aperçu du Traffic"
1062
+
1063
+ #~ msgid " show page visits and visitors in frontend (after each article)"
1064
+ #~ msgstr ""
1065
+ #~ "Afficher la page visites et de visiteurs en frontend (après chaque "
1066
+ #~ "article)"
1067
+
1068
+ #~ msgid " show Geo Map chart for visits"
1069
+ #~ msgstr "montrer carte Géographique pour les visites"
1070
+
1071
+ #~ msgid "You can find support on"
1072
+ #~ msgstr "Vous pouvez trouver de l&#39;aide sur"
1073
+
1074
+ #~ msgid "service with visitors tracking at IP level."
1075
+ #~ msgstr "services auprès des visiteurs de suivi au niveau IP."
1076
+
1077
+ #~ msgid "Total Visits:"
1078
+ #~ msgstr "Total visits"
1079
+
1080
+ #~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
1081
+ #~ msgstr ""
1082
+ #~ "PHP CURL est nécessaire. S&#39;il vous plaît installer / activer PHP CURL!"
1083
+
1084
+ #~ msgid "Options saved."
1085
+ #~ msgstr "Options Sauvées"
1086
+
1087
+ #~ msgid "Show stats to: "
1088
+ #~ msgstr "Voir les statistiques de:"
1089
+
1090
+ #~ msgid "Update Options"
1091
+ #~ msgstr "Mise à jour des options"
1092
+
1093
+ #~ msgid "Tracking Options: "
1094
+ #~ msgstr "Suivi Options:"
1095
+
1096
+ #~ msgid "Tracking Type: "
1097
+ #~ msgstr "Type de suivi:"
1098
+
1099
+ #, fuzzy
1100
+ #~ msgid "User Type: "
1101
+ #~ msgstr "Type de suivi:"
1102
+
1103
+ #~ msgid "Exclude tracking for: "
1104
+ #~ msgstr "Exclure tracking pour:"
1105
+
1106
+ #~ msgid "Select Domain: "
1107
+ #~ msgstr "Sélectionner un domaine:"
1108
+
1109
+ #~ msgid "Theme Color: "
1110
+ #~ msgstr "Couleur du Thème:"
1111
+
1112
+ #~ msgid "&#39; trend"
1113
+ #~ msgstr "&#39; tendance"
1114
+
1115
+ #~ msgid "DeConf Help Center"
1116
+ #~ msgstr "DeConf Centre d'aide"
1117
+
1118
+ #~ msgid ""
1119
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1120
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1121
+ #~ msgstr ""
1122
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1123
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
languages/ga-dash-nl_NL.mo ADDED
Binary file
languages/ga-dash-nl_NL.po ADDED
@@ -0,0 +1,949 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
+ "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
+ "Language-Team: Deconf <admin@deconf.com>\n"
8
+ "Language: nl_NL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.4\n"
13
+ "X-Poedit-KeywordsList: _e;__\n"
14
+ "X-Poedit-Basepath: .\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+ "X-Poedit-SearchPath-0: ../.\n"
18
+
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
21
+ msgstr ""
22
+
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
26
+ msgid "Settings saved."
27
+ msgstr ""
28
+
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
+ msgid "Cheating Huh?"
37
+ msgstr ""
38
+
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
+ msgid "Something went wrong, check"
43
+ msgstr ""
44
+
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr ""
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
+ msgid "or"
56
+ msgstr ""
57
+
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
+ msgstr ""
63
+
64
+ #: .././admin/settings.php:98
65
+ msgid "Google Analytics Frontend Settings"
66
+ msgstr ""
67
+
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
+ msgid "Show stats to:"
74
+ msgstr ""
75
+
76
+ #: .././admin/settings.php:159
77
+ msgid " show page sessions and users in frontend (after each article)"
78
+ msgstr ""
79
+
80
+ #: .././admin/settings.php:175
81
+ msgid " show page searches (after each article)"
82
+ msgstr ""
83
+
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
+ msgid "Save Changes"
88
+ msgstr ""
89
+
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
+
94
+ #: .././admin/settings.php:279
95
+ msgid "disable Switch Profile/View functionality"
96
+ msgstr ""
97
+
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
+ msgid "Real-Time Settings"
108
+ msgstr ""
109
+
110
+ #: .././admin/settings.php:316
111
+ msgid "Maximum number of pages to display on real-time tab:"
112
+ msgstr ""
113
+
114
+ #: .././admin/settings.php:321 .././admin/settings.php:337
115
+ msgid "find out more"
116
+ msgstr ""
117
+
118
+ #: .././admin/settings.php:323 .././admin/settings.php:340
119
+ msgid "about this feature"
120
+ msgstr ""
121
+
122
+ #: .././admin/settings.php:328
123
+ msgid "Location Settings"
124
+ msgstr ""
125
+
126
+ #: .././admin/settings.php:332
127
+ msgid "Target Geo Map to country:"
128
+ msgstr ""
129
+
130
+ #: .././admin/settings.php:381
131
+ msgid "The tracking component is disabled. You should set"
132
+ msgstr ""
133
+
134
+ #: .././admin/settings.php:381
135
+ msgid "Tracking Options"
136
+ msgstr ""
137
+
138
+ #: .././admin/settings.php:381
139
+ msgid "to"
140
+ msgstr ""
141
+
142
+ #: .././admin/settings.php:381 .././admin/settings.php:417
143
+ msgid "Enabled"
144
+ msgstr ""
145
+
146
+ #: .././admin/settings.php:387
147
+ msgid "Google Analytics Tracking Code"
148
+ msgstr ""
149
+
150
+ #: .././admin/settings.php:396
151
+ msgid "Basic Settings"
152
+ msgstr ""
153
+
154
+ #: .././admin/settings.php:397 .././admin/settings.php:476
155
+ msgid "Events Tracking"
156
+ msgstr ""
157
+
158
+ #: .././admin/settings.php:398 .././admin/settings.php:540
159
+ msgid "Custom Definitions"
160
+ msgstr ""
161
+
162
+ #: .././admin/settings.php:399 .././admin/settings.php:668
163
+ #: .././admin/settings.php:1405
164
+ msgid "Exclude Tracking"
165
+ msgstr ""
166
+
167
+ #: .././admin/settings.php:400
168
+ msgid "Advanced Settings"
169
+ msgstr ""
170
+
171
+ #: .././admin/settings.php:408
172
+ msgid "Tracking Settings"
173
+ msgstr ""
174
+
175
+ #: .././admin/settings.php:411
176
+ msgid "Tracking Options:"
177
+ msgstr ""
178
+
179
+ #: .././admin/settings.php:415
180
+ msgid "Disabled"
181
+ msgstr ""
182
+
183
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
184
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
185
+ #: .././admin/widgets.php:67
186
+ msgid "View Name:"
187
+ msgstr ""
188
+
189
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
190
+ msgid "Tracking ID:"
191
+ msgstr ""
192
+
193
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
194
+ msgid "Default URL:"
195
+ msgstr ""
196
+
197
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
198
+ msgid "Time Zone:"
199
+ msgstr ""
200
+
201
+ #: .././admin/settings.php:430
202
+ msgid "Basic Tracking"
203
+ msgstr ""
204
+
205
+ #: .././admin/settings.php:433
206
+ msgid "Tracking Type:"
207
+ msgstr ""
208
+
209
+ #: .././admin/settings.php:437
210
+ msgid "Classic Analytics"
211
+ msgstr ""
212
+
213
+ #: .././admin/settings.php:439
214
+ msgid "Universal Analytics"
215
+ msgstr ""
216
+
217
+ #: .././admin/settings.php:453
218
+ msgid " anonymize IPs while tracking"
219
+ msgstr ""
220
+
221
+ #: .././admin/settings.php:468
222
+ msgid " enable remarketing, demographics and interests reports"
223
+ msgstr ""
224
+
225
+ #: .././admin/settings.php:490
226
+ msgid " track downloads, mailto and outbound links"
227
+ msgstr ""
228
+
229
+ #: .././admin/settings.php:494
230
+ msgid "Downloads Regex:"
231
+ msgstr ""
232
+
233
+ #: .././admin/settings.php:511
234
+ msgid " track affiliate links matching this regex"
235
+ msgstr ""
236
+
237
+ #: .././admin/settings.php:515
238
+ msgid "Affiliates Regex:"
239
+ msgstr ""
240
+
241
+ #: .././admin/settings.php:532
242
+ msgid " track fragment identifiers, hashmarks (#) in URI links"
243
+ msgstr ""
244
+
245
+ #: .././admin/settings.php:543
246
+ msgid "Authors:"
247
+ msgstr ""
248
+
249
+ #: .././admin/settings.php:553
250
+ msgid "Publication Year:"
251
+ msgstr ""
252
+
253
+ #: .././admin/settings.php:563
254
+ msgid "Categories:"
255
+ msgstr ""
256
+
257
+ #: .././admin/settings.php:573
258
+ msgid "User Type:"
259
+ msgstr ""
260
+
261
+ #: .././admin/settings.php:587
262
+ msgid "Advanced Tracking"
263
+ msgstr ""
264
+
265
+ #: .././admin/settings.php:590
266
+ msgid "Page Speed SR:"
267
+ msgstr ""
268
+
269
+ #: .././admin/settings.php:608
270
+ msgid " exclude events from bounce-rate calculation"
271
+ msgstr ""
272
+
273
+ #: .././admin/settings.php:623
274
+ msgid " enable enhanced link attribution"
275
+ msgstr ""
276
+
277
+ #: .././admin/settings.php:637
278
+ msgid " enable AdSense account linking"
279
+ msgstr ""
280
+
281
+ #: .././admin/settings.php:653
282
+ msgid " enable cross domain tracking"
283
+ msgstr ""
284
+
285
+ #: .././admin/settings.php:657
286
+ msgid "Cross Domains:"
287
+ msgstr ""
288
+
289
+ #: .././admin/settings.php:671
290
+ msgid "Exclude tracking for:"
291
+ msgstr ""
292
+
293
+ #: .././admin/settings.php:741
294
+ msgid "Google Analytics Errors & Debugging"
295
+ msgstr ""
296
+
297
+ #: .././admin/settings.php:751
298
+ msgid "Errors & Details"
299
+ msgstr ""
300
+
301
+ #: .././admin/settings.php:752
302
+ msgid "Plugin Settings"
303
+ msgstr ""
304
+
305
+ #: .././admin/settings.php:760
306
+ msgid "For errors and/or other issues please check"
307
+ msgstr ""
308
+
309
+ #: .././admin/settings.php:760
310
+ msgid "this documentation page"
311
+ msgstr ""
312
+
313
+ #: .././admin/settings.php:760
314
+ msgid "and related tutorials"
315
+ msgstr ""
316
+
317
+ #: .././admin/settings.php:764
318
+ msgid "Last Error detected"
319
+ msgstr ""
320
+
321
+ #: .././admin/settings.php:769 .././admin/settings.php:782
322
+ msgid "None"
323
+ msgstr ""
324
+
325
+ #: .././admin/settings.php:776
326
+ msgid "Error Details"
327
+ msgstr ""
328
+
329
+ #: .././admin/settings.php:796
330
+ msgid "Plugin Configuration"
331
+ msgstr ""
332
+
333
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
334
+ msgid ""
335
+ "Loading the required libraries. If this results in a blank screen or a fatal "
336
+ "error, try this solution:"
337
+ msgstr ""
338
+
339
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
340
+ msgid "Plugin authorization succeeded."
341
+ msgstr ""
342
+
343
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
344
+ msgid ""
345
+ "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
346
+ "(UA-XXXXX-X). Try again, and use the red link to get your access code"
347
+ msgstr ""
348
+
349
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
350
+ msgid "Cleared Cache."
351
+ msgstr ""
352
+
353
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
354
+ msgid "Token Reseted and Revoked."
355
+ msgstr ""
356
+
357
+ #: .././admin/settings.php:910
358
+ msgid "All errors reseted."
359
+ msgstr ""
360
+
361
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
362
+ msgid "All other domains/properties were removed."
363
+ msgstr ""
364
+
365
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
366
+ msgid "Google Analytics Settings"
367
+ msgstr ""
368
+
369
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
370
+ msgid "Use the red link (see below) to generate and get your access code!"
371
+ msgstr ""
372
+
373
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
374
+ msgid "Plugin Authorization"
375
+ msgstr ""
376
+
377
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
378
+ msgid "You should watch the"
379
+ msgstr ""
380
+
381
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
382
+ msgid "video"
383
+ msgstr ""
384
+
385
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
386
+ msgid "and read this"
387
+ msgstr ""
388
+
389
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
390
+ msgid "tutorial"
391
+ msgstr ""
392
+
393
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
394
+ msgid ""
395
+ "before proceeding to authorization. This plugin requires a properly "
396
+ "configured Google Analytics account"
397
+ msgstr ""
398
+
399
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
400
+ msgid " use your own API Project credentials"
401
+ msgstr ""
402
+
403
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
404
+ msgid "API Key:"
405
+ msgstr ""
406
+
407
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
408
+ msgid "Client ID:"
409
+ msgstr ""
410
+
411
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
412
+ msgid "Client Secret:"
413
+ msgstr ""
414
+
415
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
416
+ msgid "Clear Authorization"
417
+ msgstr ""
418
+
419
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
420
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
421
+ msgid "Clear Cache"
422
+ msgstr ""
423
+
424
+ #: .././admin/settings.php:1022
425
+ msgid "Reset Errors"
426
+ msgstr ""
427
+
428
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
429
+ #: .././admin/setup.php:109
430
+ msgid "General Settings"
431
+ msgstr ""
432
+
433
+ #: .././admin/settings.php:1031
434
+ msgid "Select Domain:"
435
+ msgstr ""
436
+
437
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
438
+ msgid "Property not found"
439
+ msgstr ""
440
+
441
+ #: .././admin/settings.php:1049
442
+ msgid "and/or hide all other domains"
443
+ msgstr ""
444
+
445
+ #: .././admin/settings.php:1052
446
+ msgid "Hide Now"
447
+ msgstr ""
448
+
449
+ #: .././admin/settings.php:1071
450
+ msgid "Theme Color:"
451
+ msgstr ""
452
+
453
+ #: .././admin/settings.php:1081
454
+ msgid "Automatic Updates"
455
+ msgstr ""
456
+
457
+ #: .././admin/settings.php:1097
458
+ msgid ""
459
+ "automatic updates for minor versions (security and maintainance releases "
460
+ "only)"
461
+ msgstr ""
462
+
463
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
464
+ #: .././admin/widgets.php:38
465
+ msgid "Authorize Plugin"
466
+ msgstr ""
467
+
468
+ #: .././admin/settings.php:1192
469
+ msgid "Properties refreshed."
470
+ msgstr ""
471
+
472
+ #: .././admin/settings.php:1278
473
+ msgid "Network Setup"
474
+ msgstr ""
475
+
476
+ #: .././admin/settings.php:1293
477
+ msgid " use a single Google Analytics account for the entire network"
478
+ msgstr ""
479
+
480
+ #: .././admin/settings.php:1365
481
+ msgid "Refresh Properties"
482
+ msgstr ""
483
+
484
+ #: .././admin/settings.php:1371
485
+ msgid "Properties/Views Settings"
486
+ msgstr ""
487
+
488
+ #: .././admin/settings.php:1419
489
+ msgid " exclude Super Admin tracking for the entire network"
490
+ msgstr ""
491
+
492
+ #: .././admin/settings.php:1471
493
+ msgid "Setup Tutorial & Demo"
494
+ msgstr ""
495
+
496
+ #: .././admin/settings.php:1483
497
+ msgid "Support & Reviews"
498
+ msgstr ""
499
+
500
+ #: .././admin/settings.php:1491
501
+ msgid "Plugin documentation and support on"
502
+ msgstr ""
503
+
504
+ #: .././admin/settings.php:1498
505
+ msgid "Your feedback and review are both important,"
506
+ msgstr ""
507
+
508
+ #: .././admin/settings.php:1498
509
+ msgid "rate this plugin"
510
+ msgstr ""
511
+
512
+ #: .././admin/settings.php:1503
513
+ msgid "Further Reading"
514
+ msgstr ""
515
+
516
+ #: .././admin/settings.php:1511
517
+ msgid "Improve search rankings"
518
+ msgstr ""
519
+
520
+ #: .././admin/settings.php:1511
521
+ msgid "by moving your website to HTTPS/SSL."
522
+ msgstr ""
523
+
524
+ #: .././admin/settings.php:1518
525
+ msgid "Other"
526
+ msgstr ""
527
+
528
+ #: .././admin/settings.php:1518
529
+ msgid "WordPress Plugins"
530
+ msgstr ""
531
+
532
+ #: .././admin/settings.php:1518
533
+ msgid "written by the same author"
534
+ msgstr ""
535
+
536
+ #: .././admin/settings.php:1523
537
+ msgid "Other Services"
538
+ msgstr ""
539
+
540
+ #: .././admin/settings.php:1531
541
+ msgid "Speed up your website and plug into a whole"
542
+ msgstr ""
543
+
544
+ #: .././admin/settings.php:1531
545
+ msgid "new level of site speed"
546
+ msgstr ""
547
+
548
+ #: .././admin/settings.php:1538
549
+ msgid "Web Analytics"
550
+ msgstr ""
551
+
552
+ #: .././admin/settings.php:1538
553
+ msgid "service with users tracking at IP level."
554
+ msgstr ""
555
+
556
+ #: .././admin/setup.php:69 .././admin/setup.php:105
557
+ msgid "Google Analytics"
558
+ msgstr ""
559
+
560
+ #: .././admin/setup.php:77
561
+ msgid "Backend Settings"
562
+ msgstr ""
563
+
564
+ #: .././admin/setup.php:81
565
+ msgid "Frontend Settings"
566
+ msgstr ""
567
+
568
+ #: .././admin/setup.php:85
569
+ msgid "Tracking Code"
570
+ msgstr ""
571
+
572
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
573
+ msgid "Today"
574
+ msgstr "Vandaag"
575
+
576
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
577
+ msgid "Yesterday"
578
+ msgstr "Gisteren"
579
+
580
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
581
+ #: .././front/widgets.php:68 .././front/widgets.php:176
582
+ msgid "Last 7 Days"
583
+ msgstr "Afgelopen 7 dagen"
584
+
585
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
586
+ #: .././front/widgets.php:74 .././front/widgets.php:178
587
+ msgid "Last 30 Days"
588
+ msgstr "Afgelopen 30 dagen"
589
+
590
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
591
+ msgid "Last 90 Days"
592
+ msgstr "Afgelopen 90 dagen"
593
+
594
+ #: .././admin/setup.php:197 .././admin/setup.php:213
595
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
596
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
597
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
598
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
599
+ msgid "Sessions"
600
+ msgstr "Bezoeken"
601
+
602
+ #: .././admin/setup.php:198 .././admin/setup.php:214
603
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
604
+ #: .././tools/gapi.php:372
605
+ msgid "Users"
606
+ msgstr "Bezoekers"
607
+
608
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
609
+ msgid "Organic"
610
+ msgstr "Via zoekmachines"
611
+
612
+ #: .././admin/setup.php:200 .././admin/setup.php:215
613
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
614
+ #: .././tools/gapi.php:375
615
+ msgid "Page Views"
616
+ msgstr "Paginaweergaven"
617
+
618
+ #: .././admin/setup.php:201 .././admin/setup.php:216
619
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
620
+ #: .././tools/gapi.php:378
621
+ msgid "Bounce Rate"
622
+ msgstr "Bouncepercentage"
623
+
624
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
625
+ msgid "Location"
626
+ msgstr "Locaties"
627
+
628
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
629
+ msgid "Referrers"
630
+ msgstr "Beste verwijzingen"
631
+
632
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
633
+ #: .././tools/gapi.php:898
634
+ msgid "Searches"
635
+ msgstr "Beste zoekopdrachten"
636
+
637
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
638
+ msgid "Traffic Details"
639
+ msgstr "Verkeer"
640
+
641
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
642
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
643
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
644
+ msgid "A JavaScript Error is blocking plugin resources!"
645
+ msgstr ""
646
+
647
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
648
+ msgid "Traffic Mediums"
649
+ msgstr "Verkeersbronnen"
650
+
651
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
652
+ msgid "Visitor Type"
653
+ msgstr "Nieuw vs. terugkerend"
654
+
655
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
656
+ msgid "Social Networks"
657
+ msgstr "Sociale netwerken"
658
+
659
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
660
+ msgid "Search Engines"
661
+ msgstr "Zoekmachines"
662
+
663
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
664
+ msgid "Organic Search"
665
+ msgstr "Zoekopdrachten"
666
+
667
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
668
+ msgid "Pages/Session"
669
+ msgstr "Pagina's/bezoek"
670
+
671
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
672
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
673
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
674
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
675
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
676
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
677
+ #: .././front/item-reports.php:115
678
+ msgid "Invalid response, more details in JavaScript Console (F12)."
679
+ msgstr ""
680
+
681
+ #: .././admin/setup.php:220
682
+ msgid "Not enough data collected"
683
+ msgstr ""
684
+
685
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
686
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
687
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
688
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
689
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
690
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
691
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
692
+ #: .././front/widgets.php:104
693
+ msgid "This report is unavailable"
694
+ msgstr ""
695
+
696
+ #: .././admin/setup.php:222
697
+ msgid "report generated by"
698
+ msgstr ""
699
+
700
+ #: .././admin/setup.php:260
701
+ msgid "Settings"
702
+ msgstr ""
703
+
704
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
705
+ msgid "Google Analytics Dashboard"
706
+ msgstr "Bezoekersstatistieken"
707
+
708
+ #: .././admin/widgets.php:38
709
+ msgid "This plugin needs an authorization:"
710
+ msgstr ""
711
+
712
+ #: .././admin/widgets.php:72
713
+ msgid "Something went wrong while retrieving profiles list."
714
+ msgstr ""
715
+
716
+ #: .././admin/widgets.php:72
717
+ msgid "More details"
718
+ msgstr ""
719
+
720
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
721
+ msgid "An admin should asign a default Google Analytics Profile."
722
+ msgstr ""
723
+
724
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
725
+ msgid "Select Domain"
726
+ msgstr ""
727
+
728
+ #: .././admin/widgets.php:101
729
+ msgid ""
730
+ "Something went wrong while retrieving property data. You need to create and "
731
+ "properly configure a Google Analytics account:"
732
+ msgstr ""
733
+
734
+ #: .././admin/widgets.php:101
735
+ msgid "Find out more!"
736
+ msgstr ""
737
+
738
+ #: .././admin/widgets.php:122
739
+ msgid "Real-Time"
740
+ msgstr "Realtime"
741
+
742
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
743
+ #: .././front/widgets.php:177
744
+ msgid "Last 14 Days"
745
+ msgstr "Afgelopen 14 dagen"
746
+
747
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
748
+ msgid "Pages"
749
+ msgstr "Meest bezochte pagina's"
750
+
751
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
752
+ msgid "REFERRAL"
753
+ msgstr "Verwijzend"
754
+
755
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
756
+ msgid "ORGANIC"
757
+ msgstr "Zoekmachines"
758
+
759
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
760
+ #: .././admin/widgets.php:486
761
+ msgid "SOCIAL"
762
+ msgstr "Sociale media"
763
+
764
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
765
+ #: .././admin/widgets.php:487
766
+ msgid "CAMPAIGN"
767
+ msgstr "Campagne"
768
+
769
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
770
+ #: .././admin/widgets.php:490
771
+ msgid "DIRECT"
772
+ msgstr "Direct"
773
+
774
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
775
+ msgid "NEW"
776
+ msgstr "Nieuw"
777
+
778
+ #: .././admin/widgets.php:366
779
+ msgid "REFERRALS"
780
+ msgstr "Verwijzingen"
781
+
782
+ #: .././admin/widgets.php:369
783
+ msgid "KEYWORDS"
784
+ msgstr "Zoekwoorden"
785
+
786
+ #: .././front/item-reports.php:130
787
+ msgid "Views vs UniqueViews"
788
+ msgstr ""
789
+
790
+ #: .././front/item-reports.php:180
791
+ msgid "Google Analytics Reports"
792
+ msgstr ""
793
+
794
+ #: .././front/widgets.php:15
795
+ msgid "Will display your google analytics stats in a widget"
796
+ msgstr ""
797
+
798
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
799
+ msgid "trend"
800
+ msgstr ""
801
+
802
+ #: .././front/widgets.php:127
803
+ msgid "Period:"
804
+ msgstr ""
805
+
806
+ #: .././front/widgets.php:127
807
+ msgid "Sessions:"
808
+ msgstr ""
809
+
810
+ #: .././front/widgets.php:131
811
+ msgid "generated by"
812
+ msgstr ""
813
+
814
+ #: .././front/widgets.php:141
815
+ msgid "Google Analytics Stats"
816
+ msgstr ""
817
+
818
+ #: .././front/widgets.php:148
819
+ msgid "Title:"
820
+ msgstr ""
821
+
822
+ #: .././front/widgets.php:155
823
+ msgid "Display:"
824
+ msgstr ""
825
+
826
+ #: .././front/widgets.php:159
827
+ msgid "Chart & Totals"
828
+ msgstr ""
829
+
830
+ #: .././front/widgets.php:160
831
+ msgid "Chart"
832
+ msgstr ""
833
+
834
+ #: .././front/widgets.php:161
835
+ msgid "Totals"
836
+ msgstr ""
837
+
838
+ #: .././front/widgets.php:165
839
+ msgid "Anonymize stats:"
840
+ msgstr ""
841
+
842
+ #: .././front/widgets.php:172
843
+ msgid "Stats for:"
844
+ msgstr ""
845
+
846
+ #: .././front/widgets.php:182
847
+ msgid "Give credits:"
848
+ msgstr ""
849
+
850
+ #: .././tools/gapi.php:128
851
+ msgid "Use this link to get your access code:"
852
+ msgstr ""
853
+
854
+ #: .././tools/gapi.php:128
855
+ msgid "Get Access Code"
856
+ msgstr ""
857
+
858
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
859
+ msgid "Use the red link to get your access code!"
860
+ msgstr ""
861
+
862
+ #: .././tools/gapi.php:133
863
+ msgid "Access Code:"
864
+ msgstr ""
865
+
866
+ #: .././tools/gapi.php:145
867
+ msgid "Save Access Code"
868
+ msgstr ""
869
+
870
+ #: .././tools/gapi.php:381
871
+ msgid "Organic Searches"
872
+ msgstr "Zoekopdrachten"
873
+
874
+ #: .././tools/gapi.php:389
875
+ msgid "Hour"
876
+ msgstr "Uur"
877
+
878
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
879
+ msgid "Date"
880
+ msgstr "Datum"
881
+
882
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
883
+ msgid "Views"
884
+ msgstr "Weergaven"
885
+
886
+ #: .././tools/gapi.php:617
887
+ msgid "Countries"
888
+ msgstr "Landen"
889
+
890
+ #: .././tools/gapi.php:626
891
+ msgid "Cities from"
892
+ msgstr ""
893
+
894
+ #: .././tools/gapi.php:698
895
+ msgid "Channels"
896
+ msgstr ""
897
+
898
+ #: .././tools/gapi.php:761
899
+ msgid "Type"
900
+ msgstr ""
901
+
902
+ #: .././tools/gapi.php:856
903
+ msgid "UniqueViews"
904
+ msgstr ""
905
+
906
+ #~ msgid "Top Searches"
907
+ #~ msgstr "Beste zoekopdrachten"
908
+
909
+ #~ msgid ""
910
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
911
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
912
+ #~ msgstr ""
913
+ #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
914
+ #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
915
+
916
+ #~ msgid ""
917
+ #~ "No stats available. Please check the Debugging Data section for possible "
918
+ #~ "errors"
919
+ #~ msgstr "Geen statistieken beschikbaar."
920
+
921
+ #~ msgid "Source"
922
+ #~ msgstr "Bron"
923
+
924
+ #~ msgid "New vs. Returning"
925
+ #~ msgstr "Nieuw vs. terugkerend"
926
+
927
+ #~ msgid "RETURN"
928
+ #~ msgstr "Terugkerend"
929
+
930
+ #~ msgid "Traffic Overview"
931
+ #~ msgstr "Verkeer"
932
+
933
+ #~ msgid "Visits"
934
+ #~ msgstr "Bezoeken"
935
+
936
+ #~ msgid "Visits:"
937
+ #~ msgstr "Bezoeken:"
938
+
939
+ #~ msgid "Visitors:"
940
+ #~ msgstr "Bezoekers:"
941
+
942
+ #~ msgid "Page Views:"
943
+ #~ msgstr "Paginaweergaven:"
944
+
945
+ #~ msgid "Bounce Rate:"
946
+ #~ msgstr "Bouncepercentage:"
947
+
948
+ #~ msgid "Pages per Visit:"
949
+ #~ msgstr "Paginaweergaven per bezoek:"
languages/ga-dash-pl_PL.mo CHANGED
Binary file
languages/ga-dash-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:40+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:40+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: en\n"
@@ -16,593 +16,385 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr "Google Analytics"
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr "Ustawienia główne"
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr "Ustawienia backendu"
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr "Ustawienia Frontendu"
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr "Kod śledzenia"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Ustawienia"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Pulpit Google Analytics"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr "Ta wtyczka wymaga autoryzacji:"
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr "Autoryzuj wtyczkę"
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr "Nazwa widoku:"
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
- msgstr "Coś poszło nie tak podczas pobierania listy profili."
74
-
75
- #: .././admin/dashboard_widgets.php:221
76
- msgid "More details"
77
- msgstr "Więcej szczegółów"
78
-
79
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
80
- msgid "An admin should asign a default Google Analytics Profile."
81
- msgstr "Administrator poiwnien ustawić domyślny profil Google Analytics."
82
-
83
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
84
- msgid "Select Domain"
85
- msgstr "Wybierz domenę"
86
-
87
- #: .././admin/dashboard_widgets.php:250
88
- msgid ""
89
- "Something went wrong while retrieving property data. You need to create and "
90
- "properly configure a Google Analytics account:"
91
- msgstr ""
92
- "Coś poszło nie tak podczas pobierania danych. Musisz stworzyc i odpowiednio "
93
- "skonfigurować konto Google Analytics:"
94
-
95
- #: .././admin/dashboard_widgets.php:250
96
- msgid "Find out more!"
97
- msgstr "Dowiedz sie więcej!"
98
-
99
- #: .././admin/dashboard_widgets.php:278
100
- msgid "Real-Time"
101
- msgstr "Czas rzeczywisty"
102
-
103
- #: .././admin/dashboard_widgets.php:279
104
- msgid "Today"
105
- msgstr "Dzisiaj"
106
-
107
- #: .././admin/dashboard_widgets.php:281
108
- msgid "Yesterday"
109
- msgstr "Wczoraj"
110
-
111
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
112
- #: .././front/widgets.php:182
113
- msgid "Last 7 Days"
114
- msgstr "Ostatnie 7 dni"
115
-
116
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
117
- #: .././front/widgets.php:183
118
- msgid "Last 14 Days"
119
- msgstr "Ostatnie 14 dni"
120
-
121
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
122
- #: .././front/widgets.php:184
123
- msgid "Last 30 Days"
124
- msgstr "Ostatnie 30 dni"
125
-
126
- #: .././admin/dashboard_widgets.php:289
127
- msgid "Last 90 Days"
128
- msgstr "Ostatnie 90 dni"
129
-
130
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
131
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
132
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
133
- #: .././tools/gapi.php:825
134
- msgid "Sessions"
135
- msgstr ""
136
-
137
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
138
- #: .././tools/gapi.php:364
139
- msgid "Users"
140
- msgstr ""
141
-
142
- #: .././admin/dashboard_widgets.php:298
143
- msgid "Organic"
144
- msgstr "Organiczne"
145
-
146
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
147
- #: .././tools/gapi.php:367
148
- msgid "Page Views"
149
- msgstr "Wyświetleń strony"
150
-
151
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
152
- #: .././tools/gapi.php:370
153
- msgid "Bounce Rate"
154
- msgstr "Współczynnik odrzuceń"
155
-
156
- #: .././admin/dashboard_widgets.php:304
157
- msgid "Location"
158
- msgstr ""
159
-
160
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
161
- msgid "Pages"
162
- msgstr ""
163
-
164
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
165
- msgid "Referrers"
166
- msgstr ""
167
-
168
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
169
- #: .././tools/gapi.php:825
170
- msgid "Searches"
171
- msgstr ""
172
-
173
- #: .././admin/dashboard_widgets.php:312
174
- msgid "Traffic Details"
175
- msgstr ""
176
-
177
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
178
- msgid "REFERRAL"
179
- msgstr "REFERUJĄCY"
180
-
181
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
182
- msgid "ORGANIC"
183
- msgstr "ORGANICZNE"
184
-
185
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
186
- #: .././admin/dashboard_widgets.php:647
187
- msgid "SOCIAL"
188
- msgstr "SPOŁECZNE"
189
-
190
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
191
- #: .././admin/dashboard_widgets.php:648
192
- msgid "CAMPAIGN"
193
- msgstr ""
194
-
195
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
196
- #: .././admin/dashboard_widgets.php:651
197
- msgid "DIRECT"
198
- msgstr "BEZPOŚREDNIE"
199
-
200
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
201
- msgid "NEW"
202
- msgstr "NOWE"
203
-
204
- #: .././admin/dashboard_widgets.php:526
205
- msgid "REFERRALS"
206
- msgstr "REFERUJĄCY"
207
-
208
- #: .././admin/dashboard_widgets.php:529
209
- msgid "KEYWORDS"
210
- msgstr "SŁOWA KLUCZOWE"
211
-
212
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
213
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
214
- #: .././front/frontend.php:88
215
- msgid "A JavaScript Error is blocking plugin resources!"
216
- msgstr ""
217
-
218
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
219
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
220
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
221
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
222
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
223
- #: .././front/frontend.php:119
224
- msgid "Invalid response, more details in JavaScript Console (F12)."
225
- msgstr ""
226
-
227
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
228
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
229
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
230
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
231
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
232
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
233
- #: .././front/frontend.php:124 .././front/widgets.php:110
234
- msgid "This report is unavailable"
235
- msgstr ""
236
-
237
- #: .././admin/dashboard_widgets.php:880
238
- msgid "Traffic Mediums"
239
- msgstr ""
240
-
241
- #: .././admin/dashboard_widgets.php:896
242
- msgid "Visitor Type"
243
  msgstr ""
244
 
245
- #: .././admin/dashboard_widgets.php:912
246
- msgid "Social Networks"
247
- msgstr ""
248
-
249
- #: .././admin/dashboard_widgets.php:928
250
- msgid "Search Engines"
251
- msgstr ""
252
-
253
- #: .././admin/dashboard_widgets.php:1053
254
- msgid "Organic Search"
255
- msgstr ""
256
-
257
- #: .././admin/dashboard_widgets.php:1057
258
- msgid "Pages/Session"
259
- msgstr ""
260
-
261
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
262
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
263
- #: .././admin/ga_dash_settings.php:1157
264
  msgid "Settings saved."
265
  msgstr ""
266
 
267
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
268
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
269
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
270
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
271
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
272
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
273
  msgid "Cheating Huh?"
274
  msgstr "Oszukujemy, co?"
275
 
276
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
277
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
278
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
279
  msgid "Something went wrong, check"
280
  msgstr ""
281
 
282
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
283
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
284
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
 
 
 
 
 
 
 
285
  msgid "or"
286
  msgstr ""
287
 
288
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
289
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
290
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
291
- msgid "auhorize the plugin"
292
  msgstr "autoryzować wtyczkę"
293
 
294
- #: .././admin/ga_dash_settings.php:95
295
  msgid "Google Analytics Frontend Settings"
296
  msgstr "Ustawienia Frontendu Google Analytics"
297
 
298
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
 
 
 
299
  msgid "Show stats to:"
300
  msgstr ""
301
 
302
- #: .././admin/ga_dash_settings.php:152
303
  msgid " show page sessions and users in frontend (after each article)"
304
  msgstr ""
305
 
306
- #: .././admin/ga_dash_settings.php:168
307
  msgid " show page searches (after each article)"
308
  msgstr "pokaż wyszukiwania strony (po każdym artykule)"
309
 
310
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
311
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
312
- #: .././admin/ga_dash_settings.php:1351
313
  msgid "Save Changes"
314
  msgstr ""
315
 
316
- #: .././admin/ga_dash_settings.php:206
317
- msgid "Google Analytics Dashboard Settings"
318
- msgstr "Ustawienia Pulpitu Google Analytics"
319
 
320
- #: .././admin/ga_dash_settings.php:264
321
  msgid "disable Switch Profile/View functionality"
322
  msgstr "wyłącz funkcjonalność Przełączanie Profilu/Widoku"
323
 
324
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
325
  msgid "Real-Time Settings"
326
  msgstr "Ustawienia Czasu Rzeczywistego"
327
 
328
- #: .././admin/ga_dash_settings.php:271
329
  msgid "Maximum number of pages to display on real-time tab:"
330
  msgstr "Maksymalna liczba stron wyświetlanych na karcie Czas Rzeczywisty:"
331
 
332
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
333
  msgid "find out more"
334
  msgstr ""
335
 
336
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
337
  msgid "about this feature"
338
  msgstr "o tej opcji"
339
 
340
- #: .././admin/ga_dash_settings.php:283
341
  msgid "Location Settings"
342
  msgstr ""
343
 
344
- #: .././admin/ga_dash_settings.php:287
345
  msgid "Target Geo Map to country:"
346
  msgstr ""
347
 
348
- #: .././admin/ga_dash_settings.php:336
349
  msgid "The tracking component is disabled. You should set"
350
  msgstr ""
351
 
352
- #: .././admin/ga_dash_settings.php:336
353
  msgid "Tracking Options"
354
  msgstr ""
355
 
356
- #: .././admin/ga_dash_settings.php:336
357
  msgid "to"
358
  msgstr ""
359
 
360
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
361
  msgid "Enabled"
362
  msgstr "Włączone"
363
 
364
- #: .././admin/ga_dash_settings.php:342
365
  msgid "Google Analytics Tracking Code"
366
  msgstr "Kod Śledzenia Google Analytics"
367
 
368
- #: .././admin/ga_dash_settings.php:351
369
  msgid "Basic Settings"
370
  msgstr ""
371
 
372
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
373
  msgid "Events Tracking"
374
  msgstr "Śledzenie Zdarzeń"
375
 
376
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
377
  msgid "Custom Definitions"
378
  msgstr ""
379
 
380
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
381
- #: .././admin/ga_dash_settings.php:1328
382
  msgid "Exclude Tracking"
383
  msgstr "Wyklucz Śledzenie"
384
 
385
- #: .././admin/ga_dash_settings.php:355
386
  msgid "Advanced Settings"
387
  msgstr ""
388
 
389
- #: .././admin/ga_dash_settings.php:363
390
  msgid "Tracking Settings"
391
  msgstr "Ustawienia Śledzenia"
392
 
393
- #: .././admin/ga_dash_settings.php:366
394
  msgid "Tracking Options:"
395
  msgstr ""
396
 
397
- #: .././admin/ga_dash_settings.php:370
398
  msgid "Disabled"
399
  msgstr "Wyłączone"
400
 
401
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
402
  msgid "Tracking ID:"
403
  msgstr "Tracking ID:"
404
 
405
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
406
  msgid "Default URL:"
407
  msgstr "Domyślny URL:"
408
 
409
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
410
  msgid "Time Zone:"
411
  msgstr "Strefa Czasowa:"
412
 
413
- #: .././admin/ga_dash_settings.php:385
414
  #, fuzzy
415
  msgid "Basic Tracking"
416
  msgstr "Śledzenie Zdarzeń"
417
 
418
- #: .././admin/ga_dash_settings.php:388
419
  msgid "Tracking Type:"
420
  msgstr ""
421
 
422
- #: .././admin/ga_dash_settings.php:392
423
  msgid "Classic Analytics"
424
  msgstr "Klasyczne Analytics"
425
 
426
- #: .././admin/ga_dash_settings.php:394
427
  msgid "Universal Analytics"
428
  msgstr "Uniwerslane Analytics"
429
 
430
- #: .././admin/ga_dash_settings.php:408
431
  msgid " anonymize IPs while tracking"
432
  msgstr "ukryj adresy IP podczas śledzenia"
433
 
434
- #: .././admin/ga_dash_settings.php:423
435
  msgid " enable remarketing, demographics and interests reports"
436
  msgstr "włącz raporty zainteresować, remarketingowe i demograficzne"
437
 
438
- #: .././admin/ga_dash_settings.php:445
439
  msgid " track downloads, mailto and outbound links"
440
  msgstr "śledź pobrania, wysyłanie maili i linki wychodzące"
441
 
442
- #: .././admin/ga_dash_settings.php:449
443
  #, fuzzy
444
  msgid "Downloads Regex:"
445
  msgstr "Filtry Pobierania:"
446
 
447
- #: .././admin/ga_dash_settings.php:466
448
  msgid " track affiliate links matching this regex"
449
  msgstr ""
450
 
451
- #: .././admin/ga_dash_settings.php:470
452
  msgid "Affiliates Regex:"
453
  msgstr ""
454
 
455
- #: .././admin/ga_dash_settings.php:487
456
  msgid " track fragment identifiers, hashmarks (#) in URI links"
457
  msgstr ""
458
 
459
- #: .././admin/ga_dash_settings.php:498
460
  msgid "Authors:"
461
  msgstr ""
462
 
463
- #: .././admin/ga_dash_settings.php:508
464
  msgid "Publication Year:"
465
  msgstr ""
466
 
467
- #: .././admin/ga_dash_settings.php:518
468
  msgid "Categories:"
469
  msgstr ""
470
 
471
- #: .././admin/ga_dash_settings.php:528
472
  msgid "User Type:"
473
  msgstr ""
474
 
475
- #: .././admin/ga_dash_settings.php:542
476
  #, fuzzy
477
  msgid "Advanced Tracking"
478
  msgstr "Śledzenie Zdarzeń"
479
 
480
- #: .././admin/ga_dash_settings.php:545
481
  msgid "Page Speed SR:"
482
  msgstr "Page Speed SR:"
483
 
484
- #: .././admin/ga_dash_settings.php:563
485
  #, fuzzy
486
  msgid " exclude events from bounce-rate calculation"
487
  msgstr "wyklucz zdarzenie kliknięcia z kalkulacji stawki odrzuceń"
488
 
489
- #: .././admin/ga_dash_settings.php:578
490
  msgid " enable enhanced link attribution"
491
  msgstr "włącz rozszerzone przypisywanie linków"
492
 
493
- #: .././admin/ga_dash_settings.php:592
494
  msgid " enable AdSense account linking"
495
  msgstr " włącz linkowanie konta AdSense"
496
 
497
- #: .././admin/ga_dash_settings.php:608
498
  msgid " enable cross domain tracking"
499
  msgstr ""
500
 
501
- #: .././admin/ga_dash_settings.php:612
502
  msgid "Cross Domains:"
503
  msgstr ""
504
 
505
- #: .././admin/ga_dash_settings.php:626
506
  msgid "Exclude tracking for:"
507
  msgstr ""
508
 
509
- #: .././admin/ga_dash_settings.php:687
510
  msgid "Google Analytics Errors & Debugging"
511
  msgstr ""
512
 
513
- #: .././admin/ga_dash_settings.php:697
514
  msgid "Errors & Details"
515
  msgstr ""
516
 
517
- #: .././admin/ga_dash_settings.php:698
518
  msgid "Plugin Settings"
519
  msgstr ""
520
 
521
- #: .././admin/ga_dash_settings.php:706
522
  msgid "For errors and/or other issues please check"
523
  msgstr ""
524
 
525
- #: .././admin/ga_dash_settings.php:706
526
- msgid "the plugin documentation page"
527
  msgstr ""
528
 
529
- #: .././admin/ga_dash_settings.php:706
530
  msgid "and related tutorials"
531
  msgstr ""
532
 
533
- #: .././admin/ga_dash_settings.php:710
534
  msgid "Last Error detected"
535
  msgstr ""
536
 
537
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
538
  msgid "None"
539
  msgstr ""
540
 
541
- #: .././admin/ga_dash_settings.php:722
542
  msgid "Error Details"
543
  msgstr ""
544
 
545
- #: .././admin/ga_dash_settings.php:740
546
  msgid "Plugin Configuration"
547
  msgstr ""
548
 
549
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
550
  msgid ""
551
  "Loading the required libraries. If this results in a blank screen or a fatal "
552
  "error, try this solution:"
553
  msgstr ""
554
 
555
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
556
  msgid "Plugin authorization succeeded."
557
  msgstr "Autoryzacja wtyczki pomyślna."
558
 
559
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
560
  msgid ""
561
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
562
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
563
  msgstr ""
564
 
565
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
566
  msgid "Cleared Cache."
567
  msgstr "Cache wyczyszczony."
568
 
569
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
570
  msgid "Token Reseted and Revoked."
571
  msgstr "Token wyczyszczony i wycofany."
572
 
573
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
574
  msgid "All other domains/properties were removed."
575
  msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
576
 
577
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
578
  msgid "Google Analytics Settings"
579
  msgstr "Ustawienia Google Analytics"
580
 
581
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
582
  msgid "Use the red link (see below) to generate and get your access code!"
583
  msgstr ""
584
 
585
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
586
  msgid "Plugin Authorization"
587
  msgstr "Autoryzacja Wtyczki"
588
 
589
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
590
  msgid "You should watch the"
591
  msgstr "Powinienieś obejrzeć"
592
 
593
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
594
  msgid "video"
595
  msgstr "film"
596
 
597
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
598
  msgid "and read this"
599
  msgstr "i przeczytać"
600
 
601
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
602
  msgid "tutorial"
603
  msgstr "tutorial"
604
 
605
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
606
  msgid ""
607
  "before proceeding to authorization. This plugin requires a properly "
608
  "configured Google Analytics account"
@@ -610,156 +402,400 @@ msgstr ""
610
  "przed ukończeniem autoryzacji. Ta wtyczka wymaga poprawnie skonfigurowanego "
611
  "konta Google Analytics"
612
 
613
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
614
  msgid " use your own API Project credentials"
615
  msgstr "użyj własnych danych logowania do API Projektu"
616
 
617
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
618
  msgid "API Key:"
619
  msgstr "Klucz API:"
620
 
621
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
622
  msgid "Client ID:"
623
  msgstr "ID Klienta:"
624
 
625
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
626
  msgid "Client Secret:"
627
  msgstr "Hasło Klienta:"
628
 
629
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
630
  msgid "Clear Authorization"
631
  msgstr "Czyść Autoryzację"
632
 
633
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
634
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
635
  msgid "Clear Cache"
636
  msgstr "Czyść Cache"
637
 
638
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
 
 
639
  msgid "Select Domain:"
640
  msgstr ""
641
 
642
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
643
  msgid "Property not found"
644
  msgstr ""
645
 
646
- #: .././admin/ga_dash_settings.php:985
647
  msgid "and/or hide all other domains"
648
  msgstr "i/lub ukryj wszystkie inne domeny"
649
 
650
- #: .././admin/ga_dash_settings.php:988
651
  msgid "Hide Now"
652
  msgstr "Ukryj Teraz"
653
 
654
- #: .././admin/ga_dash_settings.php:1007
655
  msgid "Theme Color:"
656
  msgstr ""
657
 
658
- #: .././admin/ga_dash_settings.php:1017
659
- msgid "A new frontend widget is available! To enable it, go to"
660
- msgstr "Nowy widget frontendu jest dostępny! Aby go włączyć, przejðź do"
661
 
662
- #: .././admin/ga_dash_settings.php:1017
663
- msgid "Appearance -> Widgets"
664
- msgstr "Wygląd -> Widgety"
 
 
665
 
666
- #: .././admin/ga_dash_settings.php:1017
667
- msgid "and look for Google Analytics Dashboard."
668
- msgstr "i poszukać Pulpit Google Analytics."
 
669
 
670
- #: .././admin/ga_dash_settings.php:1115
671
  msgid "Properties refreshed."
672
  msgstr "Właściwości Odświeżone"
673
 
674
- #: .././admin/ga_dash_settings.php:1201
675
  msgid "Network Setup"
676
  msgstr "Ustawienia Sieci"
677
 
678
- #: .././admin/ga_dash_settings.php:1216
679
  msgid " use a single Google Analytics account for the entire network"
680
  msgstr "Użyj jednego konta Google Analytics dla całej sieci"
681
 
682
- #: .././admin/ga_dash_settings.php:1288
683
  msgid "Refresh Properties"
684
  msgstr "Odśwież Właściwości"
685
 
686
- #: .././admin/ga_dash_settings.php:1294
687
  msgid "Properties/Views Settings"
688
  msgstr "Ustawienia Właściwości /Widoków"
689
 
690
- #: .././admin/ga_dash_settings.php:1342
691
  msgid " exclude Super Admin tracking for the entire network"
692
  msgstr ""
693
 
694
- #: .././admin/ga_dash_settings.php:1394
695
  msgid "Setup Tutorial & Demo"
696
  msgstr "Ustaw Tutorial & Demo"
697
 
698
- #: .././admin/ga_dash_settings.php:1406
699
  msgid "Support & Reviews"
700
  msgstr "Wsparcie techniczne & Recenzje"
701
 
702
- #: .././admin/ga_dash_settings.php:1414
703
  msgid "Plugin documentation and support on"
704
  msgstr ""
705
 
706
- #: .././admin/ga_dash_settings.php:1421
707
  msgid "Your feedback and review are both important,"
708
  msgstr "Twój komentarz i ocena są ważne,"
709
 
710
- #: .././admin/ga_dash_settings.php:1421
711
  msgid "rate this plugin"
712
  msgstr "oceń tą wtyczkę"
713
 
714
- #: .././admin/ga_dash_settings.php:1426
715
  msgid "Further Reading"
716
  msgstr "Inne Dokumenty"
717
 
718
- #: .././admin/ga_dash_settings.php:1434
719
  msgid "Improve search rankings"
720
  msgstr ""
721
 
722
- #: .././admin/ga_dash_settings.php:1434
723
  msgid "by moving your website to HTTPS/SSL."
724
  msgstr ""
725
 
726
- #: .././admin/ga_dash_settings.php:1441
727
  msgid "Other"
728
  msgstr "Inne"
729
 
730
- #: .././admin/ga_dash_settings.php:1441
731
  msgid "WordPress Plugins"
732
  msgstr "Wtyczki WordPressa"
733
 
734
- #: .././admin/ga_dash_settings.php:1441
735
  msgid "written by the same author"
736
  msgstr "napisane przez tego samego autora"
737
 
738
- #: .././admin/ga_dash_settings.php:1446
739
  msgid "Other Services"
740
  msgstr ""
741
 
742
- #: .././admin/ga_dash_settings.php:1453
743
  msgid "Speed up your website and plug into a whole"
744
  msgstr ""
745
 
746
- #: .././admin/ga_dash_settings.php:1453
747
  msgid "new level of site speed"
748
  msgstr ""
749
 
750
- #: .././admin/ga_dash_settings.php:1460
751
  msgid "Web Analytics"
752
  msgstr "Web Analytics"
753
 
754
- #: .././admin/ga_dash_settings.php:1460
755
  msgid "service with users tracking at IP level."
756
  msgstr ""
757
 
758
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
759
  msgid "Views vs UniqueViews"
760
  msgstr "Odsłon vs Odsłon Unikalnych"
761
 
762
- #: .././front/frontend.php:184
763
  msgid "Google Analytics Reports"
764
  msgstr ""
765
 
@@ -767,114 +803,126 @@ msgstr ""
767
  msgid "Will display your google analytics stats in a widget"
768
  msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
769
 
770
- #: .././front/widgets.php:40 .././tools/gapi.php:744
771
  msgid "trend"
772
  msgstr ""
773
 
774
- #: .././front/widgets.php:133
775
  msgid "Period:"
776
  msgstr "Okres:"
777
 
778
- #: .././front/widgets.php:133
779
  msgid "Sessions:"
780
  msgstr ""
781
 
782
- #: .././front/widgets.php:137
783
  msgid "generated by"
784
  msgstr "wygenerowane przez"
785
 
786
- #: .././front/widgets.php:147
787
  msgid "Google Analytics Stats"
788
  msgstr "Statystyki Google Analytics"
789
 
790
- #: .././front/widgets.php:154
791
  msgid "Title:"
792
  msgstr "Tytuł:"
793
 
794
- #: .././front/widgets.php:161
795
  msgid "Display:"
796
  msgstr "Wyświetlenie:"
797
 
798
- #: .././front/widgets.php:165
799
  msgid "Chart & Totals"
800
  msgstr "Wykres & Podsumowania"
801
 
802
- #: .././front/widgets.php:166
803
  msgid "Chart"
804
  msgstr "Wykres"
805
 
806
- #: .././front/widgets.php:167
807
  msgid "Totals"
808
  msgstr "Podsumowania"
809
 
810
- #: .././front/widgets.php:171
811
  msgid "Anonymize stats:"
812
  msgstr ""
813
 
814
- #: .././front/widgets.php:178
815
  msgid "Stats for:"
816
  msgstr "Statystyki dla:"
817
 
818
- #: .././front/widgets.php:188
819
  msgid "Give credits:"
820
  msgstr "Podziękuj:"
821
 
822
- #: .././tools/gapi.php:129
823
  msgid "Use this link to get your access code:"
824
  msgstr "Użyj tego linku, aby uzyskać kod dostępu:"
825
 
826
- #: .././tools/gapi.php:129
827
  msgid "Get Access Code"
828
  msgstr "Zdobądź Kod Dostępu"
829
 
830
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
831
  msgid "Use the red link to get your access code!"
832
  msgstr ""
833
 
834
- #: .././tools/gapi.php:134
835
  msgid "Access Code:"
836
  msgstr "Kod Dostępu:"
837
 
838
- #: .././tools/gapi.php:146
839
  msgid "Save Access Code"
840
  msgstr "Zapisz Kod Dostępu"
841
 
842
- #: .././tools/gapi.php:373
843
  msgid "Organic Searches"
844
  msgstr "Wyszukiwania organiczne"
845
 
846
- #: .././tools/gapi.php:381
847
  msgid "Hour"
848
  msgstr "Godzina"
849
 
850
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
851
  msgid "Date"
852
  msgstr "Data"
853
 
854
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
855
  msgid "Views"
856
  msgstr "Odsłon"
857
 
858
- #: .././tools/gapi.php:576
859
  msgid "Countries"
860
  msgstr ""
861
 
862
- #: .././tools/gapi.php:590
863
  msgid "Cities from"
864
  msgstr ""
865
 
866
- #: .././tools/gapi.php:644
867
  msgid "Channels"
868
  msgstr ""
869
 
870
- #: .././tools/gapi.php:698
871
  msgid "Type"
872
  msgstr "Typ"
873
 
874
- #: .././tools/gapi.php:783
875
  msgid "UniqueViews"
876
  msgstr "Odsłon Unikalnych"
877
 
 
 
 
 
 
 
 
 
 
 
 
 
878
  #~ msgid "Something went wrong, you need to"
879
  #~ msgstr "Coś poszło nie tak, musisz"
880
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: en\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
22
 
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings saved."
27
  msgstr ""
28
 
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
  msgid "Cheating Huh?"
37
  msgstr "Oszukujemy, co?"
38
 
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
  msgid "Something went wrong, check"
43
  msgstr ""
44
 
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr ""
51
+
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
  msgid "or"
56
  msgstr ""
57
 
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
  msgstr "autoryzować wtyczkę"
63
 
64
+ #: .././admin/settings.php:98
65
  msgid "Google Analytics Frontend Settings"
66
  msgstr "Ustawienia Frontendu Google Analytics"
67
 
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
+ msgstr ""
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
  msgid "Show stats to:"
74
  msgstr ""
75
 
76
+ #: .././admin/settings.php:159
77
  msgid " show page sessions and users in frontend (after each article)"
78
  msgstr ""
79
 
80
+ #: .././admin/settings.php:175
81
  msgid " show page searches (after each article)"
82
  msgstr "pokaż wyszukiwania strony (po każdym artykule)"
83
 
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
  msgid "Save Changes"
88
  msgstr ""
89
 
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
 
94
+ #: .././admin/settings.php:279
95
  msgid "disable Switch Profile/View functionality"
96
  msgstr "wyłącz funkcjonalność Przełączanie Profilu/Widoku"
97
 
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
  msgid "Real-Time Settings"
108
  msgstr "Ustawienia Czasu Rzeczywistego"
109
 
110
+ #: .././admin/settings.php:316
111
  msgid "Maximum number of pages to display on real-time tab:"
112
  msgstr "Maksymalna liczba stron wyświetlanych na karcie Czas Rzeczywisty:"
113
 
114
+ #: .././admin/settings.php:321 .././admin/settings.php:337
115
  msgid "find out more"
116
  msgstr ""
117
 
118
+ #: .././admin/settings.php:323 .././admin/settings.php:340
119
  msgid "about this feature"
120
  msgstr "o tej opcji"
121
 
122
+ #: .././admin/settings.php:328
123
  msgid "Location Settings"
124
  msgstr ""
125
 
126
+ #: .././admin/settings.php:332
127
  msgid "Target Geo Map to country:"
128
  msgstr ""
129
 
130
+ #: .././admin/settings.php:381
131
  msgid "The tracking component is disabled. You should set"
132
  msgstr ""
133
 
134
+ #: .././admin/settings.php:381
135
  msgid "Tracking Options"
136
  msgstr ""
137
 
138
+ #: .././admin/settings.php:381
139
  msgid "to"
140
  msgstr ""
141
 
142
+ #: .././admin/settings.php:381 .././admin/settings.php:417
143
  msgid "Enabled"
144
  msgstr "Włączone"
145
 
146
+ #: .././admin/settings.php:387
147
  msgid "Google Analytics Tracking Code"
148
  msgstr "Kod Śledzenia Google Analytics"
149
 
150
+ #: .././admin/settings.php:396
151
  msgid "Basic Settings"
152
  msgstr ""
153
 
154
+ #: .././admin/settings.php:397 .././admin/settings.php:476
155
  msgid "Events Tracking"
156
  msgstr "Śledzenie Zdarzeń"
157
 
158
+ #: .././admin/settings.php:398 .././admin/settings.php:540
159
  msgid "Custom Definitions"
160
  msgstr ""
161
 
162
+ #: .././admin/settings.php:399 .././admin/settings.php:668
163
+ #: .././admin/settings.php:1405
164
  msgid "Exclude Tracking"
165
  msgstr "Wyklucz Śledzenie"
166
 
167
+ #: .././admin/settings.php:400
168
  msgid "Advanced Settings"
169
  msgstr ""
170
 
171
+ #: .././admin/settings.php:408
172
  msgid "Tracking Settings"
173
  msgstr "Ustawienia Śledzenia"
174
 
175
+ #: .././admin/settings.php:411
176
  msgid "Tracking Options:"
177
  msgstr ""
178
 
179
+ #: .././admin/settings.php:415
180
  msgid "Disabled"
181
  msgstr "Wyłączone"
182
 
183
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
184
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
185
+ #: .././admin/widgets.php:67
186
+ msgid "View Name:"
187
+ msgstr "Nazwa widoku:"
188
+
189
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
190
  msgid "Tracking ID:"
191
  msgstr "Tracking ID:"
192
 
193
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
194
  msgid "Default URL:"
195
  msgstr "Domyślny URL:"
196
 
197
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
198
  msgid "Time Zone:"
199
  msgstr "Strefa Czasowa:"
200
 
201
+ #: .././admin/settings.php:430
202
  #, fuzzy
203
  msgid "Basic Tracking"
204
  msgstr "Śledzenie Zdarzeń"
205
 
206
+ #: .././admin/settings.php:433
207
  msgid "Tracking Type:"
208
  msgstr ""
209
 
210
+ #: .././admin/settings.php:437
211
  msgid "Classic Analytics"
212
  msgstr "Klasyczne Analytics"
213
 
214
+ #: .././admin/settings.php:439
215
  msgid "Universal Analytics"
216
  msgstr "Uniwerslane Analytics"
217
 
218
+ #: .././admin/settings.php:453
219
  msgid " anonymize IPs while tracking"
220
  msgstr "ukryj adresy IP podczas śledzenia"
221
 
222
+ #: .././admin/settings.php:468
223
  msgid " enable remarketing, demographics and interests reports"
224
  msgstr "włącz raporty zainteresować, remarketingowe i demograficzne"
225
 
226
+ #: .././admin/settings.php:490
227
  msgid " track downloads, mailto and outbound links"
228
  msgstr "śledź pobrania, wysyłanie maili i linki wychodzące"
229
 
230
+ #: .././admin/settings.php:494
231
  #, fuzzy
232
  msgid "Downloads Regex:"
233
  msgstr "Filtry Pobierania:"
234
 
235
+ #: .././admin/settings.php:511
236
  msgid " track affiliate links matching this regex"
237
  msgstr ""
238
 
239
+ #: .././admin/settings.php:515
240
  msgid "Affiliates Regex:"
241
  msgstr ""
242
 
243
+ #: .././admin/settings.php:532
244
  msgid " track fragment identifiers, hashmarks (#) in URI links"
245
  msgstr ""
246
 
247
+ #: .././admin/settings.php:543
248
  msgid "Authors:"
249
  msgstr ""
250
 
251
+ #: .././admin/settings.php:553
252
  msgid "Publication Year:"
253
  msgstr ""
254
 
255
+ #: .././admin/settings.php:563
256
  msgid "Categories:"
257
  msgstr ""
258
 
259
+ #: .././admin/settings.php:573
260
  msgid "User Type:"
261
  msgstr ""
262
 
263
+ #: .././admin/settings.php:587
264
  #, fuzzy
265
  msgid "Advanced Tracking"
266
  msgstr "Śledzenie Zdarzeń"
267
 
268
+ #: .././admin/settings.php:590
269
  msgid "Page Speed SR:"
270
  msgstr "Page Speed SR:"
271
 
272
+ #: .././admin/settings.php:608
273
  #, fuzzy
274
  msgid " exclude events from bounce-rate calculation"
275
  msgstr "wyklucz zdarzenie kliknięcia z kalkulacji stawki odrzuceń"
276
 
277
+ #: .././admin/settings.php:623
278
  msgid " enable enhanced link attribution"
279
  msgstr "włącz rozszerzone przypisywanie linków"
280
 
281
+ #: .././admin/settings.php:637
282
  msgid " enable AdSense account linking"
283
  msgstr " włącz linkowanie konta AdSense"
284
 
285
+ #: .././admin/settings.php:653
286
  msgid " enable cross domain tracking"
287
  msgstr ""
288
 
289
+ #: .././admin/settings.php:657
290
  msgid "Cross Domains:"
291
  msgstr ""
292
 
293
+ #: .././admin/settings.php:671
294
  msgid "Exclude tracking for:"
295
  msgstr ""
296
 
297
+ #: .././admin/settings.php:741
298
  msgid "Google Analytics Errors & Debugging"
299
  msgstr ""
300
 
301
+ #: .././admin/settings.php:751
302
  msgid "Errors & Details"
303
  msgstr ""
304
 
305
+ #: .././admin/settings.php:752
306
  msgid "Plugin Settings"
307
  msgstr ""
308
 
309
+ #: .././admin/settings.php:760
310
  msgid "For errors and/or other issues please check"
311
  msgstr ""
312
 
313
+ #: .././admin/settings.php:760
314
+ msgid "this documentation page"
315
  msgstr ""
316
 
317
+ #: .././admin/settings.php:760
318
  msgid "and related tutorials"
319
  msgstr ""
320
 
321
+ #: .././admin/settings.php:764
322
  msgid "Last Error detected"
323
  msgstr ""
324
 
325
+ #: .././admin/settings.php:769 .././admin/settings.php:782
326
  msgid "None"
327
  msgstr ""
328
 
329
+ #: .././admin/settings.php:776
330
  msgid "Error Details"
331
  msgstr ""
332
 
333
+ #: .././admin/settings.php:796
334
  msgid "Plugin Configuration"
335
  msgstr ""
336
 
337
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
338
  msgid ""
339
  "Loading the required libraries. If this results in a blank screen or a fatal "
340
  "error, try this solution:"
341
  msgstr ""
342
 
343
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
344
  msgid "Plugin authorization succeeded."
345
  msgstr "Autoryzacja wtyczki pomyślna."
346
 
347
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
348
  msgid ""
349
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
350
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
351
  msgstr ""
352
 
353
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
354
  msgid "Cleared Cache."
355
  msgstr "Cache wyczyszczony."
356
 
357
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
358
  msgid "Token Reseted and Revoked."
359
  msgstr "Token wyczyszczony i wycofany."
360
 
361
+ #: .././admin/settings.php:910
362
+ msgid "All errors reseted."
363
+ msgstr ""
364
+
365
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
366
  msgid "All other domains/properties were removed."
367
  msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
368
 
369
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
370
  msgid "Google Analytics Settings"
371
  msgstr "Ustawienia Google Analytics"
372
 
373
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
374
  msgid "Use the red link (see below) to generate and get your access code!"
375
  msgstr ""
376
 
377
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
378
  msgid "Plugin Authorization"
379
  msgstr "Autoryzacja Wtyczki"
380
 
381
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
382
  msgid "You should watch the"
383
  msgstr "Powinienieś obejrzeć"
384
 
385
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
386
  msgid "video"
387
  msgstr "film"
388
 
389
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
390
  msgid "and read this"
391
  msgstr "i przeczytać"
392
 
393
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
394
  msgid "tutorial"
395
  msgstr "tutorial"
396
 
397
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
398
  msgid ""
399
  "before proceeding to authorization. This plugin requires a properly "
400
  "configured Google Analytics account"
402
  "przed ukończeniem autoryzacji. Ta wtyczka wymaga poprawnie skonfigurowanego "
403
  "konta Google Analytics"
404
 
405
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
406
  msgid " use your own API Project credentials"
407
  msgstr "użyj własnych danych logowania do API Projektu"
408
 
409
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
410
  msgid "API Key:"
411
  msgstr "Klucz API:"
412
 
413
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
414
  msgid "Client ID:"
415
  msgstr "ID Klienta:"
416
 
417
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
418
  msgid "Client Secret:"
419
  msgstr "Hasło Klienta:"
420
 
421
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
422
  msgid "Clear Authorization"
423
  msgstr "Czyść Autoryzację"
424
 
425
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
426
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
427
  msgid "Clear Cache"
428
  msgstr "Czyść Cache"
429
 
430
+ #: .././admin/settings.php:1022
431
+ msgid "Reset Errors"
432
+ msgstr ""
433
+
434
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
435
+ #: .././admin/setup.php:109
436
+ msgid "General Settings"
437
+ msgstr "Ustawienia główne"
438
+
439
+ #: .././admin/settings.php:1031
440
  msgid "Select Domain:"
441
  msgstr ""
442
 
443
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
444
  msgid "Property not found"
445
  msgstr ""
446
 
447
+ #: .././admin/settings.php:1049
448
  msgid "and/or hide all other domains"
449
  msgstr "i/lub ukryj wszystkie inne domeny"
450
 
451
+ #: .././admin/settings.php:1052
452
  msgid "Hide Now"
453
  msgstr "Ukryj Teraz"
454
 
455
+ #: .././admin/settings.php:1071
456
  msgid "Theme Color:"
457
  msgstr ""
458
 
459
+ #: .././admin/settings.php:1081
460
+ msgid "Automatic Updates"
461
+ msgstr ""
462
 
463
+ #: .././admin/settings.php:1097
464
+ msgid ""
465
+ "automatic updates for minor versions (security and maintainance releases "
466
+ "only)"
467
+ msgstr ""
468
 
469
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
470
+ #: .././admin/widgets.php:38
471
+ msgid "Authorize Plugin"
472
+ msgstr "Autoryzuj wtyczkę"
473
 
474
+ #: .././admin/settings.php:1192
475
  msgid "Properties refreshed."
476
  msgstr "Właściwości Odświeżone"
477
 
478
+ #: .././admin/settings.php:1278
479
  msgid "Network Setup"
480
  msgstr "Ustawienia Sieci"
481
 
482
+ #: .././admin/settings.php:1293
483
  msgid " use a single Google Analytics account for the entire network"
484
  msgstr "Użyj jednego konta Google Analytics dla całej sieci"
485
 
486
+ #: .././admin/settings.php:1365
487
  msgid "Refresh Properties"
488
  msgstr "Odśwież Właściwości"
489
 
490
+ #: .././admin/settings.php:1371
491
  msgid "Properties/Views Settings"
492
  msgstr "Ustawienia Właściwości /Widoków"
493
 
494
+ #: .././admin/settings.php:1419
495
  msgid " exclude Super Admin tracking for the entire network"
496
  msgstr ""
497
 
498
+ #: .././admin/settings.php:1471
499
  msgid "Setup Tutorial & Demo"
500
  msgstr "Ustaw Tutorial & Demo"
501
 
502
+ #: .././admin/settings.php:1483
503
  msgid "Support & Reviews"
504
  msgstr "Wsparcie techniczne & Recenzje"
505
 
506
+ #: .././admin/settings.php:1491
507
  msgid "Plugin documentation and support on"
508
  msgstr ""
509
 
510
+ #: .././admin/settings.php:1498
511
  msgid "Your feedback and review are both important,"
512
  msgstr "Twój komentarz i ocena są ważne,"
513
 
514
+ #: .././admin/settings.php:1498
515
  msgid "rate this plugin"
516
  msgstr "oceń tą wtyczkę"
517
 
518
+ #: .././admin/settings.php:1503
519
  msgid "Further Reading"
520
  msgstr "Inne Dokumenty"
521
 
522
+ #: .././admin/settings.php:1511
523
  msgid "Improve search rankings"
524
  msgstr ""
525
 
526
+ #: .././admin/settings.php:1511
527
  msgid "by moving your website to HTTPS/SSL."
528
  msgstr ""
529
 
530
+ #: .././admin/settings.php:1518
531
  msgid "Other"
532
  msgstr "Inne"
533
 
534
+ #: .././admin/settings.php:1518
535
  msgid "WordPress Plugins"
536
  msgstr "Wtyczki WordPressa"
537
 
538
+ #: .././admin/settings.php:1518
539
  msgid "written by the same author"
540
  msgstr "napisane przez tego samego autora"
541
 
542
+ #: .././admin/settings.php:1523
543
  msgid "Other Services"
544
  msgstr ""
545
 
546
+ #: .././admin/settings.php:1531
547
  msgid "Speed up your website and plug into a whole"
548
  msgstr ""
549
 
550
+ #: .././admin/settings.php:1531
551
  msgid "new level of site speed"
552
  msgstr ""
553
 
554
+ #: .././admin/settings.php:1538
555
  msgid "Web Analytics"
556
  msgstr "Web Analytics"
557
 
558
+ #: .././admin/settings.php:1538
559
  msgid "service with users tracking at IP level."
560
  msgstr ""
561
 
562
+ #: .././admin/setup.php:69 .././admin/setup.php:105
563
+ msgid "Google Analytics"
564
+ msgstr "Google Analytics"
565
+
566
+ #: .././admin/setup.php:77
567
+ msgid "Backend Settings"
568
+ msgstr "Ustawienia backendu"
569
+
570
+ #: .././admin/setup.php:81
571
+ msgid "Frontend Settings"
572
+ msgstr "Ustawienia Frontendu"
573
+
574
+ #: .././admin/setup.php:85
575
+ msgid "Tracking Code"
576
+ msgstr "Kod śledzenia"
577
+
578
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
579
+ msgid "Today"
580
+ msgstr "Dzisiaj"
581
+
582
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
583
+ msgid "Yesterday"
584
+ msgstr "Wczoraj"
585
+
586
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
587
+ #: .././front/widgets.php:68 .././front/widgets.php:176
588
+ msgid "Last 7 Days"
589
+ msgstr "Ostatnie 7 dni"
590
+
591
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
592
+ #: .././front/widgets.php:74 .././front/widgets.php:178
593
+ msgid "Last 30 Days"
594
+ msgstr "Ostatnie 30 dni"
595
+
596
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
597
+ msgid "Last 90 Days"
598
+ msgstr "Ostatnie 90 dni"
599
+
600
+ #: .././admin/setup.php:197 .././admin/setup.php:213
601
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
602
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
603
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
604
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
605
+ msgid "Sessions"
606
+ msgstr ""
607
+
608
+ #: .././admin/setup.php:198 .././admin/setup.php:214
609
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
610
+ #: .././tools/gapi.php:372
611
+ msgid "Users"
612
+ msgstr ""
613
+
614
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
615
+ msgid "Organic"
616
+ msgstr "Organiczne"
617
+
618
+ #: .././admin/setup.php:200 .././admin/setup.php:215
619
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
620
+ #: .././tools/gapi.php:375
621
+ msgid "Page Views"
622
+ msgstr "Wyświetleń strony"
623
+
624
+ #: .././admin/setup.php:201 .././admin/setup.php:216
625
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
626
+ #: .././tools/gapi.php:378
627
+ msgid "Bounce Rate"
628
+ msgstr "Współczynnik odrzuceń"
629
+
630
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
631
+ msgid "Location"
632
+ msgstr ""
633
+
634
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
635
+ msgid "Referrers"
636
+ msgstr ""
637
+
638
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
639
+ #: .././tools/gapi.php:898
640
+ msgid "Searches"
641
+ msgstr ""
642
+
643
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
644
+ msgid "Traffic Details"
645
+ msgstr ""
646
+
647
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
648
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
649
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
650
+ msgid "A JavaScript Error is blocking plugin resources!"
651
+ msgstr ""
652
+
653
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
654
+ msgid "Traffic Mediums"
655
+ msgstr ""
656
+
657
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
658
+ msgid "Visitor Type"
659
+ msgstr ""
660
+
661
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
662
+ msgid "Social Networks"
663
+ msgstr ""
664
+
665
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
666
+ msgid "Search Engines"
667
+ msgstr ""
668
+
669
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
670
+ msgid "Organic Search"
671
+ msgstr ""
672
+
673
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
674
+ msgid "Pages/Session"
675
+ msgstr ""
676
+
677
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
678
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
679
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
680
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
681
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
682
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
683
+ #: .././front/item-reports.php:115
684
+ msgid "Invalid response, more details in JavaScript Console (F12)."
685
+ msgstr ""
686
+
687
+ #: .././admin/setup.php:220
688
+ msgid "Not enough data collected"
689
+ msgstr ""
690
+
691
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
692
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
693
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
694
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
695
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
696
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
697
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
698
+ #: .././front/widgets.php:104
699
+ msgid "This report is unavailable"
700
+ msgstr ""
701
+
702
+ #: .././admin/setup.php:222
703
+ msgid "report generated by"
704
+ msgstr ""
705
+
706
+ #: .././admin/setup.php:260
707
+ msgid "Settings"
708
+ msgstr "Ustawienia"
709
+
710
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
711
+ msgid "Google Analytics Dashboard"
712
+ msgstr "Pulpit Google Analytics"
713
+
714
+ #: .././admin/widgets.php:38
715
+ msgid "This plugin needs an authorization:"
716
+ msgstr "Ta wtyczka wymaga autoryzacji:"
717
+
718
+ #: .././admin/widgets.php:72
719
+ msgid "Something went wrong while retrieving profiles list."
720
+ msgstr "Coś poszło nie tak podczas pobierania listy profili."
721
+
722
+ #: .././admin/widgets.php:72
723
+ msgid "More details"
724
+ msgstr "Więcej szczegółów"
725
+
726
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
727
+ msgid "An admin should asign a default Google Analytics Profile."
728
+ msgstr "Administrator poiwnien ustawić domyślny profil Google Analytics."
729
+
730
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
731
+ msgid "Select Domain"
732
+ msgstr "Wybierz domenę"
733
+
734
+ #: .././admin/widgets.php:101
735
+ msgid ""
736
+ "Something went wrong while retrieving property data. You need to create and "
737
+ "properly configure a Google Analytics account:"
738
+ msgstr ""
739
+ "Coś poszło nie tak podczas pobierania danych. Musisz stworzyc i odpowiednio "
740
+ "skonfigurować konto Google Analytics:"
741
+
742
+ #: .././admin/widgets.php:101
743
+ msgid "Find out more!"
744
+ msgstr "Dowiedz sie więcej!"
745
+
746
+ #: .././admin/widgets.php:122
747
+ msgid "Real-Time"
748
+ msgstr "Czas rzeczywisty"
749
+
750
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
751
+ #: .././front/widgets.php:177
752
+ msgid "Last 14 Days"
753
+ msgstr "Ostatnie 14 dni"
754
+
755
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
756
+ msgid "Pages"
757
+ msgstr ""
758
+
759
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
760
+ msgid "REFERRAL"
761
+ msgstr "REFERUJĄCY"
762
+
763
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
764
+ msgid "ORGANIC"
765
+ msgstr "ORGANICZNE"
766
+
767
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
768
+ #: .././admin/widgets.php:486
769
+ msgid "SOCIAL"
770
+ msgstr "SPOŁECZNE"
771
+
772
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
773
+ #: .././admin/widgets.php:487
774
+ msgid "CAMPAIGN"
775
+ msgstr ""
776
+
777
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
778
+ #: .././admin/widgets.php:490
779
+ msgid "DIRECT"
780
+ msgstr "BEZPOŚREDNIE"
781
+
782
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
783
+ msgid "NEW"
784
+ msgstr "NOWE"
785
+
786
+ #: .././admin/widgets.php:366
787
+ msgid "REFERRALS"
788
+ msgstr "REFERUJĄCY"
789
+
790
+ #: .././admin/widgets.php:369
791
+ msgid "KEYWORDS"
792
+ msgstr "SŁOWA KLUCZOWE"
793
+
794
+ #: .././front/item-reports.php:130
795
  msgid "Views vs UniqueViews"
796
  msgstr "Odsłon vs Odsłon Unikalnych"
797
 
798
+ #: .././front/item-reports.php:180
799
  msgid "Google Analytics Reports"
800
  msgstr ""
801
 
803
  msgid "Will display your google analytics stats in a widget"
804
  msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
805
 
806
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
807
  msgid "trend"
808
  msgstr ""
809
 
810
+ #: .././front/widgets.php:127
811
  msgid "Period:"
812
  msgstr "Okres:"
813
 
814
+ #: .././front/widgets.php:127
815
  msgid "Sessions:"
816
  msgstr ""
817
 
818
+ #: .././front/widgets.php:131
819
  msgid "generated by"
820
  msgstr "wygenerowane przez"
821
 
822
+ #: .././front/widgets.php:141
823
  msgid "Google Analytics Stats"
824
  msgstr "Statystyki Google Analytics"
825
 
826
+ #: .././front/widgets.php:148
827
  msgid "Title:"
828
  msgstr "Tytuł:"
829
 
830
+ #: .././front/widgets.php:155
831
  msgid "Display:"
832
  msgstr "Wyświetlenie:"
833
 
834
+ #: .././front/widgets.php:159
835
  msgid "Chart & Totals"
836
  msgstr "Wykres & Podsumowania"
837
 
838
+ #: .././front/widgets.php:160
839
  msgid "Chart"
840
  msgstr "Wykres"
841
 
842
+ #: .././front/widgets.php:161
843
  msgid "Totals"
844
  msgstr "Podsumowania"
845
 
846
+ #: .././front/widgets.php:165
847
  msgid "Anonymize stats:"
848
  msgstr ""
849
 
850
+ #: .././front/widgets.php:172
851
  msgid "Stats for:"
852
  msgstr "Statystyki dla:"
853
 
854
+ #: .././front/widgets.php:182
855
  msgid "Give credits:"
856
  msgstr "Podziękuj:"
857
 
858
+ #: .././tools/gapi.php:128
859
  msgid "Use this link to get your access code:"
860
  msgstr "Użyj tego linku, aby uzyskać kod dostępu:"
861
 
862
+ #: .././tools/gapi.php:128
863
  msgid "Get Access Code"
864
  msgstr "Zdobądź Kod Dostępu"
865
 
866
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
867
  msgid "Use the red link to get your access code!"
868
  msgstr ""
869
 
870
+ #: .././tools/gapi.php:133
871
  msgid "Access Code:"
872
  msgstr "Kod Dostępu:"
873
 
874
+ #: .././tools/gapi.php:145
875
  msgid "Save Access Code"
876
  msgstr "Zapisz Kod Dostępu"
877
 
878
+ #: .././tools/gapi.php:381
879
  msgid "Organic Searches"
880
  msgstr "Wyszukiwania organiczne"
881
 
882
+ #: .././tools/gapi.php:389
883
  msgid "Hour"
884
  msgstr "Godzina"
885
 
886
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
887
  msgid "Date"
888
  msgstr "Data"
889
 
890
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
891
  msgid "Views"
892
  msgstr "Odsłon"
893
 
894
+ #: .././tools/gapi.php:617
895
  msgid "Countries"
896
  msgstr ""
897
 
898
+ #: .././tools/gapi.php:626
899
  msgid "Cities from"
900
  msgstr ""
901
 
902
+ #: .././tools/gapi.php:698
903
  msgid "Channels"
904
  msgstr ""
905
 
906
+ #: .././tools/gapi.php:761
907
  msgid "Type"
908
  msgstr "Typ"
909
 
910
+ #: .././tools/gapi.php:856
911
  msgid "UniqueViews"
912
  msgstr "Odsłon Unikalnych"
913
 
914
+ #~ msgid "Google Analytics Dashboard Settings"
915
+ #~ msgstr "Ustawienia Pulpitu Google Analytics"
916
+
917
+ #~ msgid "A new frontend widget is available! To enable it, go to"
918
+ #~ msgstr "Nowy widget frontendu jest dostępny! Aby go włączyć, przejðź do"
919
+
920
+ #~ msgid "Appearance -> Widgets"
921
+ #~ msgstr "Wygląd -> Widgety"
922
+
923
+ #~ msgid "and look for Google Analytics Dashboard."
924
+ #~ msgstr "i poszukać Pulpit Google Analytics."
925
+
926
  #~ msgid "Something went wrong, you need to"
927
  #~ msgstr "Coś poszło nie tak, musisz"
928
 
languages/ga-dash-pt_BR.mo CHANGED
Binary file
languages/ga-dash-pt_BR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:41+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:41+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
- "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -16,866 +16,914 @@ msgstr ""
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr "Google Analytics"
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr "Configurações Gerais"
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr "Configurações Internas"
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr "Configurações Externas"
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr "Tracking Code"
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr "Configurações"
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr "Painel do Google Analytics"
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr "Este plugin precisa de autorização"
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr "Autorize o Plugin"
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr "Nome:"
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
- msgstr "Algo deu errado durante a recuperação da lista de perfil."
74
-
75
- #: .././admin/dashboard_widgets.php:221
76
- msgid "More details"
77
- msgstr "Mais detalhes"
78
-
79
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
80
- msgid "An admin should asign a default Google Analytics Profile."
81
- msgstr "Um administrador deve atribuir um Google Analytics perfil padrão."
82
-
83
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
84
- msgid "Select Domain"
85
- msgstr "Selecionar Domínio"
86
-
87
- #: .././admin/dashboard_widgets.php:250
88
- msgid ""
89
- "Something went wrong while retrieving property data. You need to create and "
90
- "properly configure a Google Analytics account:"
91
- msgstr ""
92
- "Algo deu errado ao recuperar os dados da propriedade. Você precisa criar e "
93
- "configurar corretamente uma conta do Google Analytics:"
94
-
95
- #: .././admin/dashboard_widgets.php:250
96
- msgid "Find out more!"
97
- msgstr "Saber mais!"
98
-
99
- #: .././admin/dashboard_widgets.php:278
100
- msgid "Real-Time"
101
- msgstr "Tempo Real"
102
-
103
- #: .././admin/dashboard_widgets.php:279
104
- msgid "Today"
105
- msgstr "Hoje"
106
-
107
- #: .././admin/dashboard_widgets.php:281
108
- msgid "Yesterday"
109
- msgstr "Ontem"
110
-
111
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
112
- #: .././front/widgets.php:182
113
- msgid "Last 7 Days"
114
- msgstr "Últimos 7 dias"
115
-
116
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
117
- #: .././front/widgets.php:183
118
- msgid "Last 14 Days"
119
- msgstr "Últimos 14 dias"
120
-
121
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
122
- #: .././front/widgets.php:184
123
- msgid "Last 30 Days"
124
- msgstr "Últimos 30 dias"
125
-
126
- #: .././admin/dashboard_widgets.php:289
127
- msgid "Last 90 Days"
128
- msgstr "Últimos 90 dias"
129
-
130
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
131
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
132
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
133
- #: .././tools/gapi.php:825
134
- msgid "Sessions"
135
- msgstr ""
136
-
137
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
138
- #: .././tools/gapi.php:364
139
- msgid "Users"
140
- msgstr ""
141
-
142
- #: .././admin/dashboard_widgets.php:298
143
- msgid "Organic"
144
- msgstr "Buscas"
145
-
146
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
147
- #: .././tools/gapi.php:367
148
- msgid "Page Views"
149
- msgstr "Visualizações de Páginas"
150
-
151
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
152
- #: .././tools/gapi.php:370
153
- msgid "Bounce Rate"
154
- msgstr "Taxa de Rejeição"
155
-
156
- #: .././admin/dashboard_widgets.php:304
157
- msgid "Location"
158
- msgstr ""
159
-
160
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
161
- msgid "Pages"
162
- msgstr ""
163
-
164
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
165
- msgid "Referrers"
166
- msgstr ""
167
-
168
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
169
- #: .././tools/gapi.php:825
170
- msgid "Searches"
171
  msgstr ""
172
 
173
- #: .././admin/dashboard_widgets.php:312
174
- msgid "Traffic Details"
175
- msgstr ""
176
-
177
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
178
- msgid "REFERRAL"
179
- msgstr "ENCAMINHAMENTO"
180
-
181
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
182
- msgid "ORGANIC"
183
- msgstr "ÔRGANICO"
184
-
185
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
186
- #: .././admin/dashboard_widgets.php:647
187
- msgid "SOCIAL"
188
- msgstr "SOCIAL"
189
-
190
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
191
- #: .././admin/dashboard_widgets.php:648
192
- msgid "CAMPAIGN"
193
- msgstr ""
194
-
195
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
196
- #: .././admin/dashboard_widgets.php:651
197
- msgid "DIRECT"
198
- msgstr "DIRETO"
199
-
200
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
201
- msgid "NEW"
202
- msgstr "NOVO"
203
-
204
- #: .././admin/dashboard_widgets.php:526
205
- msgid "REFERRALS"
206
- msgstr "REFERÊNCIAS"
207
-
208
- #: .././admin/dashboard_widgets.php:529
209
- msgid "KEYWORDS"
210
- msgstr "PALAVRAS-CHAVE"
211
-
212
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
213
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
214
- #: .././front/frontend.php:88
215
- msgid "A JavaScript Error is blocking plugin resources!"
216
- msgstr ""
217
-
218
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
219
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
220
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
221
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
222
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
223
- #: .././front/frontend.php:119
224
- msgid "Invalid response, more details in JavaScript Console (F12)."
225
- msgstr ""
226
-
227
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
228
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
229
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
230
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
231
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
232
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
233
- #: .././front/frontend.php:124 .././front/widgets.php:110
234
- msgid "This report is unavailable"
235
- msgstr ""
236
-
237
- #: .././admin/dashboard_widgets.php:880
238
- msgid "Traffic Mediums"
239
- msgstr ""
240
-
241
- #: .././admin/dashboard_widgets.php:896
242
- msgid "Visitor Type"
243
- msgstr ""
244
-
245
- #: .././admin/dashboard_widgets.php:912
246
- msgid "Social Networks"
247
- msgstr ""
248
-
249
- #: .././admin/dashboard_widgets.php:928
250
- msgid "Search Engines"
251
- msgstr ""
252
-
253
- #: .././admin/dashboard_widgets.php:1053
254
- msgid "Organic Search"
255
- msgstr ""
256
-
257
- #: .././admin/dashboard_widgets.php:1057
258
- msgid "Pages/Session"
259
- msgstr ""
260
-
261
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
262
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
263
- #: .././admin/ga_dash_settings.php:1157
264
  msgid "Settings saved."
265
- msgstr ""
266
-
267
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
268
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
269
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
270
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
271
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
272
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
273
  msgid "Cheating Huh?"
274
- msgstr ""
275
 
276
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
277
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
278
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
279
  msgid "Something went wrong, check"
280
- msgstr ""
 
 
 
 
 
 
 
281
 
282
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
283
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
284
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
285
  msgid "or"
286
- msgstr ""
287
 
288
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
289
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
290
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
291
- msgid "auhorize the plugin"
292
- msgstr "autorize o plugin"
293
 
294
- #: .././admin/ga_dash_settings.php:95
295
  msgid "Google Analytics Frontend Settings"
296
  msgstr "Configurações Externas do Google Analytics"
297
 
298
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
299
- msgid "Show stats to:"
300
  msgstr ""
301
 
302
- #: .././admin/ga_dash_settings.php:152
 
 
 
 
303
  msgid " show page sessions and users in frontend (after each article)"
304
- msgstr ""
305
 
306
- #: .././admin/ga_dash_settings.php:168
307
  msgid " show page searches (after each article)"
308
- msgstr "pesquisas mostram página (depois de cada artigo)"
309
 
310
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
311
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
312
- #: .././admin/ga_dash_settings.php:1351
313
  msgid "Save Changes"
314
- msgstr ""
315
 
316
- #: .././admin/ga_dash_settings.php:206
317
- msgid "Google Analytics Dashboard Settings"
318
- msgstr "Configurações de Painel do Google Analytics"
319
 
320
- #: .././admin/ga_dash_settings.php:264
321
  msgid "disable Switch Profile/View functionality"
322
  msgstr "desativar mudar perfil/Ver funcionalidade"
323
 
324
- #: .././admin/ga_dash_settings.php:268
 
 
 
 
 
 
 
 
325
  msgid "Real-Time Settings"
326
- msgstr "Configurações de Tempo Real"
327
 
328
- #: .././admin/ga_dash_settings.php:271
329
  msgid "Maximum number of pages to display on real-time tab:"
330
- msgstr "O número máximo de páginas para mostrar na guia Tempo Real:"
331
 
332
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
333
  msgid "find out more"
334
- msgstr ""
335
 
336
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
337
  msgid "about this feature"
338
  msgstr "sobre este recurso"
339
 
340
- #: .././admin/ga_dash_settings.php:283
341
  msgid "Location Settings"
342
- msgstr ""
343
 
344
- #: .././admin/ga_dash_settings.php:287
345
  msgid "Target Geo Map to country:"
346
- msgstr ""
347
 
348
- #: .././admin/ga_dash_settings.php:336
349
  msgid "The tracking component is disabled. You should set"
350
- msgstr ""
351
 
352
- #: .././admin/ga_dash_settings.php:336
353
  msgid "Tracking Options"
354
- msgstr ""
355
 
356
- #: .././admin/ga_dash_settings.php:336
357
  msgid "to"
358
- msgstr ""
359
 
360
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
361
  msgid "Enabled"
362
  msgstr "Habilitar"
363
 
364
- #: .././admin/ga_dash_settings.php:342
365
  msgid "Google Analytics Tracking Code"
366
  msgstr "Código de rastreamento do Google Analytics"
367
 
368
- #: .././admin/ga_dash_settings.php:351
369
  msgid "Basic Settings"
370
- msgstr ""
371
 
372
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
373
  msgid "Events Tracking"
374
  msgstr "Eventos de rastreamento"
375
 
376
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
377
  msgid "Custom Definitions"
378
- msgstr ""
379
 
380
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
381
- #: .././admin/ga_dash_settings.php:1328
382
  msgid "Exclude Tracking"
383
  msgstr "Excluir Rastreamento"
384
 
385
- #: .././admin/ga_dash_settings.php:355
386
  msgid "Advanced Settings"
387
- msgstr ""
388
 
389
- #: .././admin/ga_dash_settings.php:363
390
  msgid "Tracking Settings"
391
  msgstr "Configurações de rastreamento"
392
 
393
- #: .././admin/ga_dash_settings.php:366
394
  msgid "Tracking Options:"
395
- msgstr ""
396
 
397
- #: .././admin/ga_dash_settings.php:370
398
  msgid "Disabled"
399
  msgstr "Desabilitar"
400
 
401
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
402
  msgid "Tracking ID:"
403
  msgstr "ID de rastreamento:"
404
 
405
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
406
  msgid "Default URL:"
407
  msgstr "URL Padrão:"
408
 
409
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
410
  msgid "Time Zone:"
411
  msgstr "Fuso horário:"
412
 
413
- #: .././admin/ga_dash_settings.php:385
414
- #, fuzzy
415
  msgid "Basic Tracking"
416
- msgstr "Eventos de rastreamento"
417
 
418
- #: .././admin/ga_dash_settings.php:388
419
  msgid "Tracking Type:"
420
- msgstr ""
421
 
422
- #: .././admin/ga_dash_settings.php:392
423
  msgid "Classic Analytics"
424
  msgstr "Analytics clássico"
425
 
426
- #: .././admin/ga_dash_settings.php:394
427
  msgid "Universal Analytics"
428
- msgstr "Universal Analytics"
429
 
430
- #: .././admin/ga_dash_settings.php:408
431
  msgid " anonymize IPs while tracking"
432
- msgstr "IPs anônimo ao rastreamento"
433
 
434
- #: .././admin/ga_dash_settings.php:423
435
  msgid " enable remarketing, demographics and interests reports"
436
- msgstr "permitir Informações demográficas e interesses relatórios"
437
 
438
- #: .././admin/ga_dash_settings.php:445
439
  msgid " track downloads, mailto and outbound links"
440
- msgstr "baixe faixas, e-mail e links de saída"
441
 
442
- #: .././admin/ga_dash_settings.php:449
443
- #, fuzzy
444
  msgid "Downloads Regex:"
445
- msgstr "Baixe Filtros:"
446
 
447
- #: .././admin/ga_dash_settings.php:466
448
  msgid " track affiliate links matching this regex"
449
- msgstr ""
450
 
451
- #: .././admin/ga_dash_settings.php:470
452
  msgid "Affiliates Regex:"
453
- msgstr ""
454
 
455
- #: .././admin/ga_dash_settings.php:487
456
  msgid " track fragment identifiers, hashmarks (#) in URI links"
457
- msgstr ""
458
 
459
- #: .././admin/ga_dash_settings.php:498
460
  msgid "Authors:"
461
- msgstr ""
462
 
463
- #: .././admin/ga_dash_settings.php:508
464
  msgid "Publication Year:"
465
- msgstr ""
466
 
467
- #: .././admin/ga_dash_settings.php:518
468
  msgid "Categories:"
469
- msgstr ""
470
 
471
- #: .././admin/ga_dash_settings.php:528
472
  msgid "User Type:"
473
- msgstr ""
474
 
475
- #: .././admin/ga_dash_settings.php:542
476
- #, fuzzy
477
  msgid "Advanced Tracking"
478
- msgstr "Eventos de rastreamento"
479
 
480
- #: .././admin/ga_dash_settings.php:545
481
- #, fuzzy
482
  msgid "Page Speed SR:"
483
- msgstr "Páginas por Visita:"
484
 
485
- #: .././admin/ga_dash_settings.php:563
486
  msgid " exclude events from bounce-rate calculation"
487
- msgstr ""
488
 
489
- #: .././admin/ga_dash_settings.php:578
490
  msgid " enable enhanced link attribution"
491
  msgstr "permitir reforço a atribuição de link"
492
 
493
- #: .././admin/ga_dash_settings.php:592
494
  msgid " enable AdSense account linking"
495
- msgstr ""
496
 
497
- #: .././admin/ga_dash_settings.php:608
498
  msgid " enable cross domain tracking"
499
- msgstr ""
500
 
501
- #: .././admin/ga_dash_settings.php:612
502
  msgid "Cross Domains:"
503
- msgstr ""
504
 
505
- #: .././admin/ga_dash_settings.php:626
506
  msgid "Exclude tracking for:"
507
- msgstr ""
508
 
509
- #: .././admin/ga_dash_settings.php:687
510
  msgid "Google Analytics Errors & Debugging"
511
- msgstr ""
512
 
513
- #: .././admin/ga_dash_settings.php:697
514
  msgid "Errors & Details"
515
- msgstr ""
516
 
517
- #: .././admin/ga_dash_settings.php:698
518
  msgid "Plugin Settings"
519
- msgstr ""
520
 
521
- #: .././admin/ga_dash_settings.php:706
522
  msgid "For errors and/or other issues please check"
523
- msgstr ""
524
 
525
- #: .././admin/ga_dash_settings.php:706
526
- msgid "the plugin documentation page"
527
- msgstr ""
528
 
529
- #: .././admin/ga_dash_settings.php:706
530
  msgid "and related tutorials"
531
- msgstr ""
532
 
533
- #: .././admin/ga_dash_settings.php:710
534
  msgid "Last Error detected"
535
- msgstr ""
536
 
537
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
538
  msgid "None"
539
- msgstr ""
540
 
541
- #: .././admin/ga_dash_settings.php:722
542
  msgid "Error Details"
543
- msgstr ""
544
 
545
- #: .././admin/ga_dash_settings.php:740
546
  msgid "Plugin Configuration"
547
- msgstr ""
548
 
549
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
550
  msgid ""
551
  "Loading the required libraries. If this results in a blank screen or a fatal "
552
  "error, try this solution:"
553
  msgstr ""
 
 
554
 
555
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
556
  msgid "Plugin authorization succeeded."
557
  msgstr "Plugin autorizado com sucesso."
558
 
559
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
560
  msgid ""
561
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
562
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
563
  msgstr ""
 
 
 
564
 
565
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
566
  msgid "Cleared Cache."
567
- msgstr "Cache limpa."
568
 
569
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
570
  msgid "Token Reseted and Revoked."
571
- msgstr "Símbolo redefinido e revogado"
572
 
573
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
 
 
 
574
  msgid "All other domains/properties were removed."
575
- msgstr "Todos os outros domínios / propriedades foram removidas."
576
 
577
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
578
  msgid "Google Analytics Settings"
579
  msgstr "Configurações do Google Analytics"
580
 
581
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
582
  msgid "Use the red link (see below) to generate and get your access code!"
583
- msgstr ""
584
 
585
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
586
  msgid "Plugin Authorization"
587
- msgstr "Autorização de Plugin"
588
 
589
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
590
  msgid "You should watch the"
591
- msgstr "Você deve assistir ao"
592
 
593
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
594
  msgid "video"
595
  msgstr "vídeo"
596
 
597
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
598
  msgid "and read this"
599
  msgstr "e ler este"
600
 
601
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
602
  msgid "tutorial"
603
  msgstr "tutorial"
604
 
605
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
606
  msgid ""
607
  "before proceeding to authorization. This plugin requires a properly "
608
  "configured Google Analytics account"
609
  msgstr ""
610
- "antes de prosseguir para a autorização. Este plugin requer uma conta do "
611
- "Google Analytics configurado corretamente"
612
 
613
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
614
  msgid " use your own API Project credentials"
615
- msgstr "usar suas próprias credenciais de projeto API"
616
 
617
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
618
  msgid "API Key:"
619
  msgstr "Chave API:"
620
 
621
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
622
  msgid "Client ID:"
623
  msgstr "ID do cliente:"
624
 
625
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
626
  msgid "Client Secret:"
627
  msgstr "Cliente Secreto:"
628
 
629
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
630
  msgid "Clear Authorization"
631
  msgstr "Limpar Autorização"
632
 
633
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
634
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
635
  msgid "Clear Cache"
636
  msgstr "Limpar Cache"
637
 
638
- #: .././admin/ga_dash_settings.php:967
639
- msgid "Select Domain:"
640
  msgstr ""
641
 
642
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
 
 
 
 
 
 
 
 
 
643
  msgid "Property not found"
644
- msgstr ""
645
 
646
- #: .././admin/ga_dash_settings.php:985
647
  msgid "and/or hide all other domains"
648
- msgstr "e / ou esconder todos os outros domínios"
649
 
650
- #: .././admin/ga_dash_settings.php:988
651
  msgid "Hide Now"
652
  msgstr "Ocultar Agora"
653
 
654
- #: .././admin/ga_dash_settings.php:1007
655
  msgid "Theme Color:"
656
- msgstr ""
657
 
658
- #: .././admin/ga_dash_settings.php:1017
659
- msgid "A new frontend widget is available! To enable it, go to"
660
- msgstr "Um novo widget frontend está disponível! Para ativá-lo, vá para o"
661
 
662
- #: .././admin/ga_dash_settings.php:1017
663
- msgid "Appearance -> Widgets"
664
- msgstr "Aparência -> Widgets"
 
 
665
 
666
- #: .././admin/ga_dash_settings.php:1017
667
- msgid "and look for Google Analytics Dashboard."
668
- msgstr "e procura por Painel do Google Analytics."
 
669
 
670
- #: .././admin/ga_dash_settings.php:1115
671
  msgid "Properties refreshed."
672
- msgstr ""
673
 
674
- #: .././admin/ga_dash_settings.php:1201
675
  msgid "Network Setup"
676
- msgstr ""
677
 
678
- #: .././admin/ga_dash_settings.php:1216
679
  msgid " use a single Google Analytics account for the entire network"
680
- msgstr ""
681
 
682
- #: .././admin/ga_dash_settings.php:1288
683
  msgid "Refresh Properties"
684
- msgstr ""
685
 
686
- #: .././admin/ga_dash_settings.php:1294
687
- #, fuzzy
688
  msgid "Properties/Views Settings"
689
- msgstr "Configurações Externas"
690
 
691
- #: .././admin/ga_dash_settings.php:1342
692
  msgid " exclude Super Admin tracking for the entire network"
693
- msgstr ""
694
 
695
- #: .././admin/ga_dash_settings.php:1394
696
  msgid "Setup Tutorial & Demo"
697
  msgstr "Tutorial de Instalação e demonstrações"
698
 
699
- #: .././admin/ga_dash_settings.php:1406
700
  msgid "Support & Reviews"
701
- msgstr "Suporte e Comentários"
702
 
703
- #: .././admin/ga_dash_settings.php:1414
704
  msgid "Plugin documentation and support on"
705
- msgstr ""
706
 
707
- #: .././admin/ga_dash_settings.php:1421
708
  msgid "Your feedback and review are both important,"
709
- msgstr "O seu feedback e revisão são importantes,"
710
 
711
- #: .././admin/ga_dash_settings.php:1421
712
  msgid "rate this plugin"
713
- msgstr "avaliar este plugin"
714
 
715
- #: .././admin/ga_dash_settings.php:1426
716
  msgid "Further Reading"
717
  msgstr "Leitura adicional"
718
 
719
- #: .././admin/ga_dash_settings.php:1434
720
  msgid "Improve search rankings"
721
- msgstr ""
722
 
723
- #: .././admin/ga_dash_settings.php:1434
724
  msgid "by moving your website to HTTPS/SSL."
725
- msgstr ""
726
 
727
- #: .././admin/ga_dash_settings.php:1441
728
  msgid "Other"
729
  msgstr "Outro"
730
 
731
- #: .././admin/ga_dash_settings.php:1441
732
  msgid "WordPress Plugins"
733
- msgstr "Plugins do WordPress"
734
 
735
- #: .././admin/ga_dash_settings.php:1441
736
  msgid "written by the same author"
737
  msgstr "escrito pelo mesmo autor"
738
 
739
- #: .././admin/ga_dash_settings.php:1446
740
  msgid "Other Services"
741
- msgstr ""
742
 
743
- #: .././admin/ga_dash_settings.php:1453
744
  msgid "Speed up your website and plug into a whole"
745
- msgstr ""
746
 
747
- #: .././admin/ga_dash_settings.php:1453
748
  msgid "new level of site speed"
749
- msgstr ""
750
 
751
- #: .././admin/ga_dash_settings.php:1460
752
  msgid "Web Analytics"
753
  msgstr "Web Analytics"
754
 
755
- #: .././admin/ga_dash_settings.php:1460
756
  msgid "service with users tracking at IP level."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
758
 
759
- #: .././front/frontend.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
760
  msgid "Views vs UniqueViews"
761
  msgstr "Visualizações x Visualização única"
762
 
763
- #: .././front/frontend.php:184
764
  msgid "Google Analytics Reports"
765
- msgstr ""
766
 
767
  #: .././front/widgets.php:15
768
  msgid "Will display your google analytics stats in a widget"
769
- msgstr "Irá exibir suas estatísticas google analytics em um widget"
770
 
771
- #: .././front/widgets.php:40 .././tools/gapi.php:744
772
  msgid "trend"
773
- msgstr ""
774
 
775
- #: .././front/widgets.php:133
776
  msgid "Period:"
777
  msgstr "período:"
778
 
779
- #: .././front/widgets.php:133
780
  msgid "Sessions:"
781
- msgstr ""
782
 
783
- #: .././front/widgets.php:137
784
  msgid "generated by"
785
- msgstr "gerado pela"
786
 
787
- #: .././front/widgets.php:147
788
  msgid "Google Analytics Stats"
789
  msgstr "Estatísticas do Google Analytics"
790
 
791
- #: .././front/widgets.php:154
792
  msgid "Title:"
793
  msgstr "Título:"
794
 
795
- #: .././front/widgets.php:161
796
  msgid "Display:"
797
  msgstr "Exibir:"
798
 
799
- #: .././front/widgets.php:165
800
  msgid "Chart & Totals"
801
  msgstr "Gráfico e Totais"
802
 
803
- #: .././front/widgets.php:166
804
  msgid "Chart"
805
  msgstr "Gráfico"
806
 
807
- #: .././front/widgets.php:167
808
  msgid "Totals"
809
  msgstr "Totais"
810
 
811
- #: .././front/widgets.php:171
812
  msgid "Anonymize stats:"
813
- msgstr ""
814
 
815
- #: .././front/widgets.php:178
816
  msgid "Stats for:"
817
  msgstr "Estatísticas para:"
818
 
819
- #: .././front/widgets.php:188
820
  msgid "Give credits:"
821
- msgstr " créditos:"
822
 
823
- #: .././tools/gapi.php:129
824
  msgid "Use this link to get your access code:"
825
  msgstr "Use este link para obter o seu código de acesso:"
826
 
827
- #: .././tools/gapi.php:129
828
  msgid "Get Access Code"
829
  msgstr "Obter Código de Acesso"
830
 
831
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
832
  msgid "Use the red link to get your access code!"
833
- msgstr ""
834
 
835
- #: .././tools/gapi.php:134
836
  msgid "Access Code:"
837
  msgstr "Código de acesso:"
838
 
839
- #: .././tools/gapi.php:146
840
  msgid "Save Access Code"
841
  msgstr "Salvar Código de Acesso"
842
 
843
- #: .././tools/gapi.php:373
844
  msgid "Organic Searches"
845
  msgstr "Pesquisas Ôrganicas"
846
 
847
- #: .././tools/gapi.php:381
848
  msgid "Hour"
849
  msgstr "Hora"
850
 
851
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
852
  msgid "Date"
853
  msgstr "Dia"
854
 
855
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
856
  msgid "Views"
857
  msgstr "Visualizações"
858
 
859
- #: .././tools/gapi.php:576
860
  msgid "Countries"
861
- msgstr ""
862
 
863
- #: .././tools/gapi.php:590
864
  msgid "Cities from"
865
- msgstr ""
866
 
867
- #: .././tools/gapi.php:644
868
  msgid "Channels"
869
- msgstr ""
870
 
871
- #: .././tools/gapi.php:698
872
  msgid "Type"
873
  msgstr "Tipo"
874
 
875
- #: .././tools/gapi.php:783
876
  msgid "UniqueViews"
877
  msgstr "Visualização Única "
878
 
 
 
 
 
 
 
 
 
 
 
 
 
879
  #~ msgid "Something went wrong, you need to"
880
  #~ msgstr "Algo deu errado, você precisa"
881
 
@@ -1073,3 +1121,13 @@ msgstr "Visualização Única "
1073
  #~ msgstr ""
1074
  #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1075
  #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: Google Analytics Dashboard for WP 4.4.7\n"
4
+ "POT-Creation-Date: 2015-03-10 19:16+0200\n"
5
+ "PO-Revision-Date: 2015-03-10 19:16+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
+ "Language-Team: Deconf, Treedbox.com <admin@deconf.com, treedbox@gmail.com>\n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:56
20
+ msgid "Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgstr ""
22
 
23
+ #: .././admin/settings.php:86 .././admin/settings.php:205
24
+ #: .././admin/settings.php:372 .././admin/settings.php:916
25
+ #: .././admin/settings.php:1234
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  msgid "Settings saved."
27
+ msgstr "Definições Salvas"
28
+
29
+ #: .././admin/settings.php:88 .././admin/settings.php:207
30
+ #: .././admin/settings.php:374 .././admin/settings.php:893
31
+ #: .././admin/settings.php:903 .././admin/settings.php:912
32
+ #: .././admin/settings.php:918 .././admin/settings.php:930
33
+ #: .././admin/settings.php:1195 .././admin/settings.php:1220
34
+ #: .././admin/settings.php:1230 .././admin/settings.php:1236
35
+ #: .././admin/settings.php:1248
36
  msgid "Cheating Huh?"
37
+ msgstr "A Curiosidade Matou o Gato :F"
38
 
39
+ #: .././admin/settings.php:92 .././admin/settings.php:211
40
+ #: .././admin/settings.php:378 .././admin/settings.php:737
41
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
42
  msgid "Something went wrong, check"
43
+ msgstr "Algo deu errado, verifique"
44
+
45
+ #: .././admin/settings.php:92 .././admin/settings.php:211
46
+ #: .././admin/settings.php:378 .././admin/settings.php:737
47
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
48
+ #: .././admin/setup.php:89 .././admin/setup.php:113
49
+ msgid "Errors & Debug"
50
+ msgstr "Erros & Depuração"
51
 
52
+ #: .././admin/settings.php:92 .././admin/settings.php:211
53
+ #: .././admin/settings.php:378 .././admin/settings.php:737
54
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
55
  msgid "or"
56
+ msgstr "ou"
57
 
58
+ #: .././admin/settings.php:92 .././admin/settings.php:211
59
+ #: .././admin/settings.php:378 .././admin/settings.php:737
60
+ #: .././admin/settings.php:943 .././admin/settings.php:1261
61
+ msgid "authorize the plugin"
62
+ msgstr "Autorize o Plugin"
63
 
64
+ #: .././admin/settings.php:98
65
  msgid "Google Analytics Frontend Settings"
66
  msgstr "Configurações Externas do Google Analytics"
67
 
68
+ #: .././admin/settings.php:108 .././admin/settings.php:227
69
+ msgid "Permissions"
70
  msgstr ""
71
 
72
+ #: .././admin/settings.php:111 .././admin/settings.php:230
73
+ msgid "Show stats to:"
74
+ msgstr "Mostrar Status de:"
75
+
76
+ #: .././admin/settings.php:159
77
  msgid " show page sessions and users in frontend (after each article)"
78
+ msgstr "mostrar sessões de página e usuários na Frente (após cada artigo)"
79
 
80
+ #: .././admin/settings.php:175
81
  msgid " show page searches (after each article)"
82
+ msgstr "Mostram pesquisas da página (após cada artigo)"
83
 
84
+ #: .././admin/settings.php:184 .././admin/settings.php:350
85
+ #: .././admin/settings.php:715 .././admin/settings.php:1106
86
+ #: .././admin/settings.php:1428
87
  msgid "Save Changes"
88
+ msgstr "Salvar Mudanças"
89
 
90
+ #: .././admin/settings.php:217
91
+ msgid "Google Analytics Backend Settings"
92
+ msgstr ""
93
 
94
+ #: .././admin/settings.php:279
95
  msgid "disable Switch Profile/View functionality"
96
  msgstr "desativar mudar perfil/Ver funcionalidade"
97
 
98
+ #: .././admin/settings.php:294
99
+ msgid "disable stats on Posts List and Pages List"
100
+ msgstr ""
101
+
102
+ #: .././admin/settings.php:309
103
+ msgid "disable the main Dashboard Widget"
104
+ msgstr ""
105
+
106
+ #: .././admin/settings.php:313
107
  msgid "Real-Time Settings"
108
+ msgstr "Definições de Tempo Real"
109
 
110
+ #: .././admin/settings.php:316
111
  msgid "Maximum number of pages to display on real-time tab:"
112
+ msgstr "Número máximo de páginas para mostrar na guia Tempo Real:"
113
 
114
+ #: .././admin/settings.php:321 .././admin/settings.php:337
115
  msgid "find out more"
116
+ msgstr "Saiba mais"
117
 
118
+ #: .././admin/settings.php:323 .././admin/settings.php:340
119
  msgid "about this feature"
120
  msgstr "sobre este recurso"
121
 
122
+ #: .././admin/settings.php:328
123
  msgid "Location Settings"
124
+ msgstr "Configurações de Localização"
125
 
126
+ #: .././admin/settings.php:332
127
  msgid "Target Geo Map to country:"
128
+ msgstr "Mapa Geográfico alvo para o país:"
129
 
130
+ #: .././admin/settings.php:381
131
  msgid "The tracking component is disabled. You should set"
132
+ msgstr "O componente de rastreamento está desativado. Você deve configurar"
133
 
134
+ #: .././admin/settings.php:381
135
  msgid "Tracking Options"
136
+ msgstr "Opções de Rastreio"
137
 
138
+ #: .././admin/settings.php:381
139
  msgid "to"
140
+ msgstr "para"
141
 
142
+ #: .././admin/settings.php:381 .././admin/settings.php:417
143
  msgid "Enabled"
144
  msgstr "Habilitar"
145
 
146
+ #: .././admin/settings.php:387
147
  msgid "Google Analytics Tracking Code"
148
  msgstr "Código de rastreamento do Google Analytics"
149
 
150
+ #: .././admin/settings.php:396
151
  msgid "Basic Settings"
152
+ msgstr "Configurações básicas"
153
 
154
+ #: .././admin/settings.php:397 .././admin/settings.php:476
155
  msgid "Events Tracking"
156
  msgstr "Eventos de rastreamento"
157
 
158
+ #: .././admin/settings.php:398 .././admin/settings.php:540
159
  msgid "Custom Definitions"
160
+ msgstr "Definições personalizadas"
161
 
162
+ #: .././admin/settings.php:399 .././admin/settings.php:668
163
+ #: .././admin/settings.php:1405
164
  msgid "Exclude Tracking"
165
  msgstr "Excluir Rastreamento"
166
 
167
+ #: .././admin/settings.php:400
168
  msgid "Advanced Settings"
169
+ msgstr "Configurações avançadas"
170
 
171
+ #: .././admin/settings.php:408
172
  msgid "Tracking Settings"
173
  msgstr "Configurações de rastreamento"
174
 
175
+ #: .././admin/settings.php:411
176
  msgid "Tracking Options:"
177
+ msgstr "Opções de Rastreio"
178
 
179
+ #: .././admin/settings.php:415
180
  msgid "Disabled"
181
  msgstr "Desabilitar"
182
 
183
+ #: .././admin/settings.php:425 .././admin/settings.php:1040
184
+ #: .././admin/settings.php:1065 .././admin/settings.php:1392
185
+ #: .././admin/widgets.php:67
186
+ msgid "View Name:"
187
+ msgstr "Ver Nome:"
188
+
189
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
190
  msgid "Tracking ID:"
191
  msgstr "ID de rastreamento:"
192
 
193
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
194
  msgid "Default URL:"
195
  msgstr "URL Padrão:"
196
 
197
+ #: .././admin/settings.php:425 .././admin/settings.php:1065
198
  msgid "Time Zone:"
199
  msgstr "Fuso horário:"
200
 
201
+ #: .././admin/settings.php:430
 
202
  msgid "Basic Tracking"
203
+ msgstr "Rastreamento Básico"
204
 
205
+ #: .././admin/settings.php:433
206
  msgid "Tracking Type:"
207
+ msgstr "Tipo de Rastreio"
208
 
209
+ #: .././admin/settings.php:437
210
  msgid "Classic Analytics"
211
  msgstr "Analytics clássico"
212
 
213
+ #: .././admin/settings.php:439
214
  msgid "Universal Analytics"
215
+ msgstr "Analytics Universal"
216
 
217
+ #: .././admin/settings.php:453
218
  msgid " anonymize IPs while tracking"
219
+ msgstr "IPs anônimos ao rastreamento"
220
 
221
+ #: .././admin/settings.php:468
222
  msgid " enable remarketing, demographics and interests reports"
223
+ msgstr "permitir recolocação, demográficas e relatórios de interesses"
224
 
225
+ #: .././admin/settings.php:490
226
  msgid " track downloads, mailto and outbound links"
227
+ msgstr "baixe faixas, e-mail para e links de saída"
228
 
229
+ #: .././admin/settings.php:494
 
230
  msgid "Downloads Regex:"
231
+ msgstr "Expressões Regulares de Download:"
232
 
233
+ #: .././admin/settings.php:511
234
  msgid " track affiliate links matching this regex"
235
+ msgstr "Link Afiliado de Rastreio que coincidem com esta expressão regular"
236
 
237
+ #: .././admin/settings.php:515
238
  msgid "Affiliates Regex:"
239
+ msgstr "Expressão Regular Afiliada:"
240
 
241
+ #: .././admin/settings.php:532
242
  msgid " track fragment identifiers, hashmarks (#) in URI links"
243
+ msgstr "rastrear identificadores de fragmento, Marcas de hash (#) no link"
244
 
245
+ #: .././admin/settings.php:543
246
  msgid "Authors:"
247
+ msgstr "Autores:"
248
 
249
+ #: .././admin/settings.php:553
250
  msgid "Publication Year:"
251
+ msgstr "Ano de Publicação:"
252
 
253
+ #: .././admin/settings.php:563
254
  msgid "Categories:"
255
+ msgstr "Categorias:"
256
 
257
+ #: .././admin/settings.php:573
258
  msgid "User Type:"
259
+ msgstr "Tipo de Usuário:"
260
 
261
+ #: .././admin/settings.php:587
 
262
  msgid "Advanced Tracking"
263
+ msgstr "Rastreio Avançado"
264
 
265
+ #: .././admin/settings.php:590
 
266
  msgid "Page Speed SR:"
267
+ msgstr "Velocidade de Página SR:"
268
 
269
+ #: .././admin/settings.php:608
270
  msgid " exclude events from bounce-rate calculation"
271
+ msgstr "Excluir eventos de cálculo de taxa de rejeição"
272
 
273
+ #: .././admin/settings.php:623
274
  msgid " enable enhanced link attribution"
275
  msgstr "permitir reforço a atribuição de link"
276
 
277
+ #: .././admin/settings.php:637
278
  msgid " enable AdSense account linking"
279
+ msgstr "habilitar link da conta do AdSense"
280
 
281
+ #: .././admin/settings.php:653
282
  msgid " enable cross domain tracking"
283
+ msgstr "habilitar Rastreio de domínio cruzado"
284
 
285
+ #: .././admin/settings.php:657
286
  msgid "Cross Domains:"
287
+ msgstr "Domínio Cruzado:"
288
 
289
+ #: .././admin/settings.php:671
290
  msgid "Exclude tracking for:"
291
+ msgstr "Excluir Rastreio para:"
292
 
293
+ #: .././admin/settings.php:741
294
  msgid "Google Analytics Errors & Debugging"
295
+ msgstr "Erros & Depuração do Google Analytics"
296
 
297
+ #: .././admin/settings.php:751
298
  msgid "Errors & Details"
299
+ msgstr "Erros & Detalhes"
300
 
301
+ #: .././admin/settings.php:752
302
  msgid "Plugin Settings"
303
+ msgstr "Configurações do Plugin"
304
 
305
+ #: .././admin/settings.php:760
306
  msgid "For errors and/or other issues please check"
307
+ msgstr "Para erros e/ou outras questões por favor, verifique"
308
 
309
+ #: .././admin/settings.php:760
310
+ msgid "this documentation page"
311
+ msgstr "Página de Documentação do Plugin"
312
 
313
+ #: .././admin/settings.php:760
314
  msgid "and related tutorials"
315
+ msgstr "e tutoriais relacionados"
316
 
317
+ #: .././admin/settings.php:764
318
  msgid "Last Error detected"
319
+ msgstr "Último erro detectado"
320
 
321
+ #: .././admin/settings.php:769 .././admin/settings.php:782
322
  msgid "None"
323
+ msgstr "Nenhum"
324
 
325
+ #: .././admin/settings.php:776
326
  msgid "Error Details"
327
+ msgstr "Detalhes do Erro"
328
 
329
+ #: .././admin/settings.php:796
330
  msgid "Plugin Configuration"
331
+ msgstr "Configuração do Plugin"
332
 
333
+ #: .././admin/settings.php:840 .././admin/settings.php:1149
334
  msgid ""
335
  "Loading the required libraries. If this results in a blank screen or a fatal "
336
  "error, try this solution:"
337
  msgstr ""
338
+ "Carregando as bibliotecas necessárias. Se isso resulta em uma tela em branco "
339
+ "ou um erro fatal, tente esta solução:"
340
 
341
+ #: .././admin/settings.php:852 .././admin/settings.php:1161
342
  msgid "Plugin authorization succeeded."
343
  msgstr "Plugin autorizado com sucesso."
344
 
345
+ #: .././admin/settings.php:868 .././admin/settings.php:1186
346
  msgid ""
347
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
348
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
349
  msgstr ""
350
+ "O código de acesso <strong> NÃO É</ strong> o <strong> Acompanhamento de ID "
351
+ "</ strong> (UA-XXXXX-X). Tente de novo, e use o link vermelho para obter o "
352
+ "seu código de acesso"
353
 
354
+ #: .././admin/settings.php:891 .././admin/settings.php:1218
355
  msgid "Cleared Cache."
356
+ msgstr "Cache Limpo."
357
 
358
+ #: .././admin/settings.php:900 .././admin/settings.php:1227
359
  msgid "Token Reseted and Revoked."
360
+ msgstr "Token redefinido e revogado"
361
 
362
+ #: .././admin/settings.php:910
363
+ msgid "All errors reseted."
364
+ msgstr ""
365
+
366
+ #: .././admin/settings.php:923 .././admin/settings.php:1241
367
  msgid "All other domains/properties were removed."
368
+ msgstr "Todos os outros domínios/propriedades foram removidas."
369
 
370
+ #: .././admin/settings.php:935 .././admin/settings.php:1253
371
  msgid "Google Analytics Settings"
372
  msgstr "Configurações do Google Analytics"
373
 
374
+ #: .././admin/settings.php:948 .././admin/settings.php:1266
375
  msgid "Use the red link (see below) to generate and get your access code!"
376
+ msgstr "Use o link vermelho (abaixo) para gerar e pegar seu código de acesso."
377
 
378
+ #: .././admin/settings.php:959 .././admin/settings.php:1301
379
  msgid "Plugin Authorization"
380
+ msgstr "Autorização do Plugin"
381
 
382
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
383
  msgid "You should watch the"
384
+ msgstr "Você deveria assistir ao"
385
 
386
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
387
  msgid "video"
388
  msgstr "vídeo"
389
 
390
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
391
  msgid "and read this"
392
  msgstr "e ler este"
393
 
394
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
395
  msgid "tutorial"
396
  msgstr "tutorial"
397
 
398
+ #: .././admin/settings.php:963 .././admin/settings.php:1305
399
  msgid ""
400
  "before proceeding to authorization. This plugin requires a properly "
401
  "configured Google Analytics account"
402
  msgstr ""
403
+ "antes de prosseguir para a autorização. Este Plugin requer uma conta do "
404
+ "Google Analytics configurada corretamente"
405
 
406
+ #: .././admin/settings.php:975 .././admin/settings.php:1316
407
  msgid " use your own API Project credentials"
408
+ msgstr "usar suas próprias credenciais da API do projeto"
409
 
410
+ #: .././admin/settings.php:982 .././admin/settings.php:1323
411
  msgid "API Key:"
412
  msgstr "Chave API:"
413
 
414
+ #: .././admin/settings.php:989 .././admin/settings.php:1331
415
  msgid "Client ID:"
416
  msgstr "ID do cliente:"
417
 
418
+ #: .././admin/settings.php:997 .././admin/settings.php:1340
419
  msgid "Client Secret:"
420
  msgstr "Cliente Secreto:"
421
 
422
+ #: .././admin/settings.php:1015 .././admin/settings.php:1359
423
  msgid "Clear Authorization"
424
  msgstr "Limpar Autorização"
425
 
426
+ #: .././admin/settings.php:1019 .././admin/settings.php:1120
427
+ #: .././admin/settings.php:1362 .././admin/settings.php:1440
428
  msgid "Clear Cache"
429
  msgstr "Limpar Cache"
430
 
431
+ #: .././admin/settings.php:1022
432
+ msgid "Reset Errors"
433
  msgstr ""
434
 
435
+ #: .././admin/settings.php:1028 .././admin/setup.php:73
436
+ #: .././admin/setup.php:109
437
+ msgid "General Settings"
438
+ msgstr "Configurações Gerais"
439
+
440
+ #: .././admin/settings.php:1031
441
+ msgid "Select Domain:"
442
+ msgstr "Selecionar Domínio:"
443
+
444
+ #: .././admin/settings.php:1044 .././admin/settings.php:1396
445
  msgid "Property not found"
446
+ msgstr "Propriedade não econtrada"
447
 
448
+ #: .././admin/settings.php:1049
449
  msgid "and/or hide all other domains"
450
+ msgstr "e/ou esconder todos os outros domínios"
451
 
452
+ #: .././admin/settings.php:1052
453
  msgid "Hide Now"
454
  msgstr "Ocultar Agora"
455
 
456
+ #: .././admin/settings.php:1071
457
  msgid "Theme Color:"
458
+ msgstr "Cor do Tema:"
459
 
460
+ #: .././admin/settings.php:1081
461
+ msgid "Automatic Updates"
462
+ msgstr ""
463
 
464
+ #: .././admin/settings.php:1097
465
+ msgid ""
466
+ "automatic updates for minor versions (security and maintainance releases "
467
+ "only)"
468
+ msgstr ""
469
 
470
+ #: .././admin/settings.php:1116 .././admin/settings.php:1437
471
+ #: .././admin/widgets.php:38
472
+ msgid "Authorize Plugin"
473
+ msgstr "Autorize o Plugin"
474
 
475
+ #: .././admin/settings.php:1192
476
  msgid "Properties refreshed."
477
+ msgstr "Propriedades Atualizadas"
478
 
479
+ #: .././admin/settings.php:1278
480
  msgid "Network Setup"
481
+ msgstr "Configuração de Rede"
482
 
483
+ #: .././admin/settings.php:1293
484
  msgid " use a single Google Analytics account for the entire network"
485
+ msgstr "Use uma única conta do Google Analytics para toda a Rede"
486
 
487
+ #: .././admin/settings.php:1365
488
  msgid "Refresh Properties"
489
+ msgstr "Atualizar Propriedades"
490
 
491
+ #: .././admin/settings.php:1371
 
492
  msgid "Properties/Views Settings"
493
+ msgstr "Propriedades/Ver Definições"
494
 
495
+ #: .././admin/settings.php:1419
496
  msgid " exclude Super Admin tracking for the entire network"
497
+ msgstr "Excluir rastreamento do Administrador para toda a rede"
498
 
499
+ #: .././admin/settings.php:1471
500
  msgid "Setup Tutorial & Demo"
501
  msgstr "Tutorial de Instalação e demonstrações"
502
 
503
+ #: .././admin/settings.php:1483
504
  msgid "Support & Reviews"
505
+ msgstr "Suporte e Revisões"
506
 
507
+ #: .././admin/settings.php:1491
508
  msgid "Plugin documentation and support on"
509
+ msgstr "Documentação e Suporte do Plugin em"
510
 
511
+ #: .././admin/settings.php:1498
512
  msgid "Your feedback and review are both important,"
513
+ msgstr "O seu Feedback e Revisão são ambos importantes,"
514
 
515
+ #: .././admin/settings.php:1498
516
  msgid "rate this plugin"
517
+ msgstr "Avaliar este Plugin"
518
 
519
+ #: .././admin/settings.php:1503
520
  msgid "Further Reading"
521
  msgstr "Leitura adicional"
522
 
523
+ #: .././admin/settings.php:1511
524
  msgid "Improve search rankings"
525
+ msgstr "Melhorar classificação em buscas"
526
 
527
+ #: .././admin/settings.php:1511
528
  msgid "by moving your website to HTTPS/SSL."
529
+ msgstr "movendo seu site para HTTPS/SSL."
530
 
531
+ #: .././admin/settings.php:1518
532
  msgid "Other"
533
  msgstr "Outro"
534
 
535
+ #: .././admin/settings.php:1518
536
  msgid "WordPress Plugins"
537
+ msgstr "Plugin do Wordpress"
538
 
539
+ #: .././admin/settings.php:1518
540
  msgid "written by the same author"
541
  msgstr "escrito pelo mesmo autor"
542
 
543
+ #: .././admin/settings.php:1523
544
  msgid "Other Services"
545
+ msgstr "Outros Serviços"
546
 
547
+ #: .././admin/settings.php:1531
548
  msgid "Speed up your website and plug into a whole"
549
+ msgstr "Aumente a velocidade de seu site na web e conecte-o ao seu conjunto"
550
 
551
+ #: .././admin/settings.php:1531
552
  msgid "new level of site speed"
553
+ msgstr "Novo nível de velocidade do site"
554
 
555
+ #: .././admin/settings.php:1538
556
  msgid "Web Analytics"
557
  msgstr "Web Analytics"
558
 
559
+ #: .././admin/settings.php:1538
560
  msgid "service with users tracking at IP level."
561
+ msgstr "serviço com os usuários de rastreamento a nível de IP."
562
+
563
+ #: .././admin/setup.php:69 .././admin/setup.php:105
564
+ msgid "Google Analytics"
565
+ msgstr "Google Analytics"
566
+
567
+ #: .././admin/setup.php:77
568
+ msgid "Backend Settings"
569
+ msgstr "Configurações Internas"
570
+
571
+ #: .././admin/setup.php:81
572
+ msgid "Frontend Settings"
573
+ msgstr "Configurações Externas"
574
+
575
+ #: .././admin/setup.php:85
576
+ msgid "Tracking Code"
577
+ msgstr "Código de Rastreio"
578
+
579
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
580
+ msgid "Today"
581
+ msgstr "Hoje"
582
+
583
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
584
+ msgid "Yesterday"
585
+ msgstr "Ontem"
586
+
587
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
588
+ #: .././front/widgets.php:68 .././front/widgets.php:176
589
+ msgid "Last 7 Days"
590
+ msgstr "Últimos 7 dias"
591
+
592
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
593
+ #: .././front/widgets.php:74 .././front/widgets.php:178
594
+ msgid "Last 30 Days"
595
+ msgstr "Últimos 30 dias"
596
+
597
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
598
+ msgid "Last 90 Days"
599
+ msgstr "Últimos 90 dias"
600
+
601
+ #: .././admin/setup.php:197 .././admin/setup.php:213
602
+ #: .././admin/widgets.php:139 .././admin/widgets.php:881
603
+ #: .././front/widgets.php:40 .././tools/gapi.php:384 .././tools/gapi.php:543
604
+ #: .././tools/gapi.php:589 .././tools/gapi.php:652 .././tools/gapi.php:762
605
+ #: .././tools/gapi.php:803 .././tools/gapi.php:899
606
+ msgid "Sessions"
607
+ msgstr "Sessão"
608
+
609
+ #: .././admin/setup.php:198 .././admin/setup.php:214
610
+ #: .././admin/widgets.php:140 .././admin/widgets.php:885
611
+ #: .././tools/gapi.php:372
612
+ msgid "Users"
613
+ msgstr "Usuários"
614
+
615
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
616
+ msgid "Organic"
617
+ msgstr "Orgânica"
618
+
619
+ #: .././admin/setup.php:200 .././admin/setup.php:215
620
+ #: .././admin/widgets.php:144 .././admin/widgets.php:889
621
+ #: .././tools/gapi.php:375
622
+ msgid "Page Views"
623
+ msgstr "Visualizações de Páginas"
624
+
625
+ #: .././admin/setup.php:201 .././admin/setup.php:216
626
+ #: .././admin/widgets.php:146 .././admin/widgets.php:893
627
+ #: .././tools/gapi.php:378
628
+ msgid "Bounce Rate"
629
+ msgstr "Taxa de Rejeição"
630
+
631
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
632
+ msgid "Location"
633
+ msgstr "Localização"
634
+
635
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:542
636
+ msgid "Referrers"
637
+ msgstr "Referências"
638
+
639
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:588
640
+ #: .././tools/gapi.php:898
641
+ msgid "Searches"
642
+ msgstr "Pesquisas"
643
+
644
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
645
+ msgid "Traffic Details"
646
+ msgstr "Detalhe do Tráfego"
647
+
648
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
649
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
650
+ #: .././admin/widgets.php:927 .././front/item-reports.php:84
651
+ msgid "A JavaScript Error is blocking plugin resources!"
652
+ msgstr "Um JavaScript está bloqueando os recursos do plugin!"
653
+
654
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
655
+ msgid "Traffic Mediums"
656
+ msgstr "Média de Tráfego"
657
+
658
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
659
+ msgid "Visitor Type"
660
+ msgstr "Tipo de Visitantes"
661
+
662
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
663
+ msgid "Social Networks"
664
+ msgstr "Rede Social"
665
+
666
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
667
+ msgid "Search Engines"
668
+ msgstr "Mecanismos de Busca"
669
+
670
+ #: .././admin/setup.php:217 .././admin/widgets.php:897
671
+ msgid "Organic Search"
672
+ msgstr "Pesquisa Orgânica"
673
+
674
+ #: .././admin/setup.php:218 .././admin/widgets.php:901
675
+ msgid "Pages/Session"
676
+ msgstr "Página/Sessão"
677
+
678
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
679
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
680
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
681
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
682
+ #: .././admin/widgets.php:830 .././admin/widgets.php:940
683
+ #: .././admin/widgets.php:959 .././front/item-reports.php:96
684
+ #: .././front/item-reports.php:115
685
+ msgid "Invalid response, more details in JavaScript Console (F12)."
686
+ msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
687
+
688
+ #: .././admin/setup.php:220
689
+ msgid "Not enough data collected"
690
+ msgstr ""
691
+
692
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
693
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
694
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
695
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
696
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
697
+ #: .././admin/widgets.php:945 .././admin/widgets.php:964
698
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
699
+ #: .././front/widgets.php:104
700
+ msgid "This report is unavailable"
701
+ msgstr "Este Relatório não está disponível"
702
+
703
+ #: .././admin/setup.php:222
704
+ msgid "report generated by"
705
+ msgstr ""
706
+
707
+ #: .././admin/setup.php:260
708
+ msgid "Settings"
709
+ msgstr "Configurações"
710
+
711
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
712
+ msgid "Google Analytics Dashboard"
713
+ msgstr "Painel do Google Analytics"
714
+
715
+ #: .././admin/widgets.php:38
716
+ msgid "This plugin needs an authorization:"
717
+ msgstr "Este Plugin precisa de uma autorização:"
718
+
719
+ #: .././admin/widgets.php:72
720
+ msgid "Something went wrong while retrieving profiles list."
721
+ msgstr "Algo deu errado durante a recuperação da lista de perfis."
722
+
723
+ #: .././admin/widgets.php:72
724
+ msgid "More details"
725
+ msgstr "Mais detalhes"
726
+
727
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
728
+ msgid "An admin should asign a default Google Analytics Profile."
729
+ msgstr "Um administrador deve atribuir um Perfil Google Analytics padrão."
730
+
731
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
732
+ msgid "Select Domain"
733
+ msgstr "Selecionar Domínio"
734
+
735
+ #: .././admin/widgets.php:101
736
+ msgid ""
737
+ "Something went wrong while retrieving property data. You need to create and "
738
+ "properly configure a Google Analytics account:"
739
  msgstr ""
740
+ "Algo deu errado ao recuperar os dados da propriedade. Você precisa criar e "
741
+ "configurar corretamente uma conta do Google Analytics:"
742
+
743
+ #: .././admin/widgets.php:101
744
+ msgid "Find out more!"
745
+ msgstr "Saber mais!"
746
+
747
+ #: .././admin/widgets.php:122
748
+ msgid "Real-Time"
749
+ msgstr "Tempo Real"
750
+
751
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
752
+ #: .././front/widgets.php:177
753
+ msgid "Last 14 Days"
754
+ msgstr "Últimos 14 dias"
755
 
756
+ #: .././admin/widgets.php:150 .././tools/gapi.php:497
757
+ msgid "Pages"
758
+ msgstr "Páginas"
759
+
760
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
761
+ msgid "REFERRAL"
762
+ msgstr "REFERÊNCIA"
763
+
764
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
765
+ msgid "ORGANIC"
766
+ msgstr "ORGÂNICO"
767
+
768
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
769
+ #: .././admin/widgets.php:486
770
+ msgid "SOCIAL"
771
+ msgstr "SOCIAL"
772
+
773
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
774
+ #: .././admin/widgets.php:487
775
+ msgid "CAMPAIGN"
776
+ msgstr "CAMPANHA"
777
+
778
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
779
+ #: .././admin/widgets.php:490
780
+ msgid "DIRECT"
781
+ msgstr "DIRETO"
782
+
783
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
784
+ msgid "NEW"
785
+ msgstr "NOVO"
786
+
787
+ #: .././admin/widgets.php:366
788
+ msgid "REFERRALS"
789
+ msgstr "REFERÊNCIAS"
790
+
791
+ #: .././admin/widgets.php:369
792
+ msgid "KEYWORDS"
793
+ msgstr "PALAVRAS-CHAVE"
794
+
795
+ #: .././front/item-reports.php:130
796
  msgid "Views vs UniqueViews"
797
  msgstr "Visualizações x Visualização única"
798
 
799
+ #: .././front/item-reports.php:180
800
  msgid "Google Analytics Reports"
801
+ msgstr "Relatórios do Google Analytics"
802
 
803
  #: .././front/widgets.php:15
804
  msgid "Will display your google analytics stats in a widget"
805
+ msgstr "Exibirá suas estatísticas google analytics em um Widget"
806
 
807
+ #: .././front/widgets.php:40 .././tools/gapi.php:803
808
  msgid "trend"
809
+ msgstr "Tendência"
810
 
811
+ #: .././front/widgets.php:127
812
  msgid "Period:"
813
  msgstr "período:"
814
 
815
+ #: .././front/widgets.php:127
816
  msgid "Sessions:"
817
+ msgstr "Sessões:"
818
 
819
+ #: .././front/widgets.php:131
820
  msgid "generated by"
821
+ msgstr "gerado por"
822
 
823
+ #: .././front/widgets.php:141
824
  msgid "Google Analytics Stats"
825
  msgstr "Estatísticas do Google Analytics"
826
 
827
+ #: .././front/widgets.php:148
828
  msgid "Title:"
829
  msgstr "Título:"
830
 
831
+ #: .././front/widgets.php:155
832
  msgid "Display:"
833
  msgstr "Exibir:"
834
 
835
+ #: .././front/widgets.php:159
836
  msgid "Chart & Totals"
837
  msgstr "Gráfico e Totais"
838
 
839
+ #: .././front/widgets.php:160
840
  msgid "Chart"
841
  msgstr "Gráfico"
842
 
843
+ #: .././front/widgets.php:161
844
  msgid "Totals"
845
  msgstr "Totais"
846
 
847
+ #: .././front/widgets.php:165
848
  msgid "Anonymize stats:"
849
+ msgstr "Anonimizar estatísticas:"
850
 
851
+ #: .././front/widgets.php:172
852
  msgid "Stats for:"
853
  msgstr "Estatísticas para:"
854
 
855
+ #: .././front/widgets.php:182
856
  msgid "Give credits:"
857
+ msgstr "Créditos para:"
858
 
859
+ #: .././tools/gapi.php:128
860
  msgid "Use this link to get your access code:"
861
  msgstr "Use este link para obter o seu código de acesso:"
862
 
863
+ #: .././tools/gapi.php:128
864
  msgid "Get Access Code"
865
  msgstr "Obter Código de Acesso"
866
 
867
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
868
  msgid "Use the red link to get your access code!"
869
+ msgstr "Use o link vermelho para pegar seu código de acesso!"
870
 
871
+ #: .././tools/gapi.php:133
872
  msgid "Access Code:"
873
  msgstr "Código de acesso:"
874
 
875
+ #: .././tools/gapi.php:145
876
  msgid "Save Access Code"
877
  msgstr "Salvar Código de Acesso"
878
 
879
+ #: .././tools/gapi.php:381
880
  msgid "Organic Searches"
881
  msgstr "Pesquisas Ôrganicas"
882
 
883
+ #: .././tools/gapi.php:389
884
  msgid "Hour"
885
  msgstr "Hora"
886
 
887
+ #: .././tools/gapi.php:392 .././tools/gapi.php:802 .././tools/gapi.php:854
888
  msgid "Date"
889
  msgstr "Dia"
890
 
891
+ #: .././tools/gapi.php:498 .././tools/gapi.php:855
892
  msgid "Views"
893
  msgstr "Visualizações"
894
 
895
+ #: .././tools/gapi.php:617
896
  msgid "Countries"
897
+ msgstr "Países"
898
 
899
+ #: .././tools/gapi.php:626
900
  msgid "Cities from"
901
+ msgstr "das Cidades"
902
 
903
+ #: .././tools/gapi.php:698
904
  msgid "Channels"
905
+ msgstr "Canal"
906
 
907
+ #: .././tools/gapi.php:761
908
  msgid "Type"
909
  msgstr "Tipo"
910
 
911
+ #: .././tools/gapi.php:856
912
  msgid "UniqueViews"
913
  msgstr "Visualização Única "
914
 
915
+ #~ msgid "Google Analytics Dashboard Settings"
916
+ #~ msgstr "Configurações de Painel do Google Analytics"
917
+
918
+ #~ msgid "A new frontend widget is available! To enable it, go to"
919
+ #~ msgstr "Um novo Widget da Frente está disponível! Para ativá-lo, vá para o"
920
+
921
+ #~ msgid "Appearance -> Widgets"
922
+ #~ msgstr "Aparência -> Widgets"
923
+
924
+ #~ msgid "and look for Google Analytics Dashboard."
925
+ #~ msgstr "e procura por Painel do Google Analytics."
926
+
927
  #~ msgid "Something went wrong, you need to"
928
  #~ msgstr "Algo deu errado, você precisa"
929
 
1121
  #~ msgstr ""
1122
  #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1123
  #~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
1124
+
1125
+ #~ msgid " show Geo Map chart for sessions"
1126
+ #~ msgstr "Mostrar Gráfico do Mapa Geográfico de cada Região"
1127
+
1128
+ #~ msgid ""
1129
+ #~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
1130
+ #~ "CURL!"
1131
+ #~ msgstr ""
1132
+ #~ "PHP CURL é necessária. Pergunte ao seu provedor de hospedagem para "
1133
+ #~ "instalar / ativar PHP CURL!"
languages/ga-dash.pot CHANGED
@@ -1,871 +1,1050 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
- "POT-Creation-Date: 2015-02-07 11:39+0200\n"
5
- "PO-Revision-Date: 2015-02-07 11:39+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 1.7.4\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
- #: .././admin/dashboard_widgets.php:67 .././admin/dashboard_widgets.php:100
20
- msgid "Google Analytics"
21
- msgstr ""
22
-
23
- #: .././admin/dashboard_widgets.php:71 .././admin/dashboard_widgets.php:104
24
- #: .././admin/ga_dash_settings.php:105 .././admin/ga_dash_settings.php:216
25
- #: .././admin/ga_dash_settings.php:964
26
- msgid "General Settings"
27
- msgstr ""
28
-
29
- #: .././admin/dashboard_widgets.php:75
30
- msgid "Backend Settings"
31
- msgstr ""
32
-
33
- #: .././admin/dashboard_widgets.php:79
34
- msgid "Frontend Settings"
35
- msgstr ""
36
-
37
- #: .././admin/dashboard_widgets.php:83
38
- msgid "Tracking Code"
39
- msgstr ""
40
-
41
- #: .././admin/dashboard_widgets.php:87 .././admin/dashboard_widgets.php:108
42
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
43
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
44
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
45
- msgid "Errors & Debug"
46
- msgstr ""
47
-
48
- #: .././admin/dashboard_widgets.php:152
49
- msgid "Settings"
50
- msgstr ""
51
-
52
- #: .././admin/dashboard_widgets.php:166 .././front/widgets.php:14
53
- msgid "Google Analytics Dashboard"
54
- msgstr ""
55
-
56
- #: .././admin/dashboard_widgets.php:183
57
- msgid "This plugin needs an authorization:"
58
- msgstr ""
59
-
60
- #: .././admin/dashboard_widgets.php:183 .././admin/ga_dash_settings.php:1035
61
- #: .././admin/ga_dash_settings.php:1360
62
- msgid "Authorize Plugin"
63
- msgstr ""
64
-
65
- #: .././admin/dashboard_widgets.php:216 .././admin/ga_dash_settings.php:380
66
- #: .././admin/ga_dash_settings.php:976 .././admin/ga_dash_settings.php:1001
67
- #: .././admin/ga_dash_settings.php:1315
68
- msgid "View Name:"
69
- msgstr ""
70
-
71
- #: .././admin/dashboard_widgets.php:221
72
- msgid "Something went wrong while retrieving profiles list."
73
- msgstr ""
74
-
75
- #: .././admin/dashboard_widgets.php:221
76
- msgid "More details"
77
- msgstr ""
78
-
79
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
80
- msgid "An admin should asign a default Google Analytics Profile."
81
- msgstr ""
82
-
83
- #: .././admin/dashboard_widgets.php:234 .././admin/dashboard_widgets.php:245
84
- msgid "Select Domain"
85
- msgstr ""
86
-
87
- #: .././admin/dashboard_widgets.php:250
88
- msgid ""
89
- "Something went wrong while retrieving property data. You need to create and "
90
- "properly configure a Google Analytics account:"
91
- msgstr ""
92
-
93
- #: .././admin/dashboard_widgets.php:250
94
- msgid "Find out more!"
95
- msgstr ""
96
-
97
- #: .././admin/dashboard_widgets.php:278
98
- msgid "Real-Time"
99
- msgstr ""
100
-
101
- #: .././admin/dashboard_widgets.php:279
102
- msgid "Today"
103
- msgstr ""
104
-
105
- #: .././admin/dashboard_widgets.php:281
106
- msgid "Yesterday"
107
- msgstr ""
108
-
109
- #: .././admin/dashboard_widgets.php:283 .././front/widgets.php:72
110
- #: .././front/widgets.php:182
111
- msgid "Last 7 Days"
112
- msgstr ""
113
-
114
- #: .././admin/dashboard_widgets.php:285 .././front/widgets.php:75
115
- #: .././front/widgets.php:183
116
- msgid "Last 14 Days"
117
- msgstr ""
118
-
119
- #: .././admin/dashboard_widgets.php:287 .././front/widgets.php:78
120
- #: .././front/widgets.php:184
121
- msgid "Last 30 Days"
122
- msgstr ""
123
-
124
- #: .././admin/dashboard_widgets.php:289
125
- msgid "Last 90 Days"
126
- msgstr ""
127
-
128
- #: .././admin/dashboard_widgets.php:295 .././admin/dashboard_widgets.php:1037
129
- #: .././front/widgets.php:40 .././tools/gapi.php:376 .././tools/gapi.php:515
130
- #: .././tools/gapi.php:554 .././tools/gapi.php:615 .././tools/gapi.php:744
131
- #: .././tools/gapi.php:825
132
- msgid "Sessions"
133
- msgstr ""
134
-
135
- #: .././admin/dashboard_widgets.php:296 .././admin/dashboard_widgets.php:1041
136
- #: .././tools/gapi.php:364
137
- msgid "Users"
138
- msgstr ""
139
-
140
- #: .././admin/dashboard_widgets.php:298
141
- msgid "Organic"
142
- msgstr ""
143
-
144
- #: .././admin/dashboard_widgets.php:300 .././admin/dashboard_widgets.php:1045
145
- #: .././tools/gapi.php:367
146
- msgid "Page Views"
147
- msgstr ""
148
-
149
- #: .././admin/dashboard_widgets.php:302 .././admin/dashboard_widgets.php:1049
150
- #: .././tools/gapi.php:370
151
- msgid "Bounce Rate"
152
- msgstr ""
153
-
154
- #: .././admin/dashboard_widgets.php:304
155
- msgid "Location"
156
- msgstr ""
157
-
158
- #: .././admin/dashboard_widgets.php:306 .././tools/gapi.php:477
159
- msgid "Pages"
160
- msgstr ""
161
 
162
- #: .././admin/dashboard_widgets.php:308 .././tools/gapi.php:515
163
- msgid "Referrers"
164
- msgstr ""
165
-
166
- #: .././admin/dashboard_widgets.php:310 .././tools/gapi.php:554
167
- #: .././tools/gapi.php:825
168
- msgid "Searches"
169
- msgstr ""
170
-
171
- #: .././admin/dashboard_widgets.php:312
172
- msgid "Traffic Details"
173
- msgstr ""
174
-
175
- #: .././admin/dashboard_widgets.php:404 .././admin/dashboard_widgets.php:645
176
- msgid "REFERRAL"
177
- msgstr ""
178
-
179
- #: .././admin/dashboard_widgets.php:408 .././admin/dashboard_widgets.php:646
180
- msgid "ORGANIC"
181
- msgstr ""
182
-
183
- #: .././admin/dashboard_widgets.php:412 .././admin/dashboard_widgets.php:532
184
- #: .././admin/dashboard_widgets.php:647
185
- msgid "SOCIAL"
186
- msgstr ""
187
-
188
- #: .././admin/dashboard_widgets.php:416 .././admin/dashboard_widgets.php:535
189
- #: .././admin/dashboard_widgets.php:648
190
- msgid "CAMPAIGN"
191
- msgstr ""
192
-
193
- #: .././admin/dashboard_widgets.php:420 .././admin/dashboard_widgets.php:538
194
- #: .././admin/dashboard_widgets.php:651
195
- msgid "DIRECT"
196
- msgstr ""
197
-
198
- #: .././admin/dashboard_widgets.php:424 .././admin/dashboard_widgets.php:652
199
- msgid "NEW"
200
- msgstr ""
201
-
202
- #: .././admin/dashboard_widgets.php:526
203
- msgid "REFERRALS"
204
- msgstr ""
205
-
206
- #: .././admin/dashboard_widgets.php:529
207
- msgid "KEYWORDS"
208
- msgstr ""
209
-
210
- #: .././admin/dashboard_widgets.php:683 .././admin/dashboard_widgets.php:780
211
- #: .././admin/dashboard_widgets.php:972 .././admin/dashboard_widgets.php:1083
212
- #: .././front/frontend.php:88
213
- msgid "A JavaScript Error is blocking plugin resources!"
214
- msgstr ""
215
-
216
- #: .././admin/dashboard_widgets.php:696 .././admin/dashboard_widgets.php:715
217
- #: .././admin/dashboard_widgets.php:793 .././admin/dashboard_widgets.php:824
218
- #: .././admin/dashboard_widgets.php:843 .././admin/dashboard_widgets.php:863
219
- #: .././admin/dashboard_widgets.php:986 .././admin/dashboard_widgets.php:1096
220
- #: .././admin/dashboard_widgets.php:1115 .././front/frontend.php:100
221
- #: .././front/frontend.php:119
222
- msgid "Invalid response, more details in JavaScript Console (F12)."
223
- msgstr ""
224
-
225
- #: .././admin/dashboard_widgets.php:701 .././admin/dashboard_widgets.php:720
226
- #: .././admin/dashboard_widgets.php:798 .././admin/dashboard_widgets.php:810
227
- #: .././admin/dashboard_widgets.php:829 .././admin/dashboard_widgets.php:848
228
- #: .././admin/dashboard_widgets.php:868 .././admin/dashboard_widgets.php:991
229
- #: .././admin/dashboard_widgets.php:994 .././admin/dashboard_widgets.php:1101
230
- #: .././admin/dashboard_widgets.php:1120 .././front/frontend.php:105
231
- #: .././front/frontend.php:124 .././front/widgets.php:110
232
- msgid "This report is unavailable"
233
- msgstr ""
234
-
235
- #: .././admin/dashboard_widgets.php:880
236
- msgid "Traffic Mediums"
237
- msgstr ""
238
-
239
- #: .././admin/dashboard_widgets.php:896
240
- msgid "Visitor Type"
241
- msgstr ""
242
-
243
- #: .././admin/dashboard_widgets.php:912
244
- msgid "Social Networks"
245
- msgstr ""
246
-
247
- #: .././admin/dashboard_widgets.php:928
248
- msgid "Search Engines"
249
- msgstr ""
250
-
251
- #: .././admin/dashboard_widgets.php:1053
252
- msgid "Organic Search"
253
- msgstr ""
254
-
255
- #: .././admin/dashboard_widgets.php:1057
256
- msgid "Pages/Session"
257
- msgstr ""
258
-
259
- #: .././admin/ga_dash_settings.php:83 .././admin/ga_dash_settings.php:194
260
- #: .././admin/ga_dash_settings.php:327 .././admin/ga_dash_settings.php:855
261
- #: .././admin/ga_dash_settings.php:1157
262
  msgid "Settings saved."
263
  msgstr ""
264
 
265
- #: .././admin/ga_dash_settings.php:85 .././admin/ga_dash_settings.php:196
266
- #: .././admin/ga_dash_settings.php:329 .././admin/ga_dash_settings.php:841
267
- #: .././admin/ga_dash_settings.php:851 .././admin/ga_dash_settings.php:857
268
- #: .././admin/ga_dash_settings.php:869 .././admin/ga_dash_settings.php:1118
269
- #: .././admin/ga_dash_settings.php:1143 .././admin/ga_dash_settings.php:1153
270
- #: .././admin/ga_dash_settings.php:1159 .././admin/ga_dash_settings.php:1171
 
 
271
  msgid "Cheating Huh?"
272
- msgstr ""
273
 
274
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
275
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
276
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
277
  msgid "Something went wrong, check"
278
  msgstr ""
279
 
280
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
281
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
282
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
283
- msgid "or"
 
284
  msgstr ""
285
 
286
- #: .././admin/ga_dash_settings.php:89 .././admin/ga_dash_settings.php:200
287
- #: .././admin/ga_dash_settings.php:333 .././admin/ga_dash_settings.php:683
288
- #: .././admin/ga_dash_settings.php:882 .././admin/ga_dash_settings.php:1184
289
- msgid "auhorize the plugin"
290
  msgstr ""
291
 
292
- #: .././admin/ga_dash_settings.php:95
 
 
 
 
 
 
 
 
293
  msgid "Google Analytics Frontend Settings"
 
 
 
 
294
  msgstr ""
295
 
296
- #: .././admin/ga_dash_settings.php:108 .././admin/ga_dash_settings.php:219
 
297
  msgid "Show stats to:"
298
- msgstr ""
299
 
300
- #: .././admin/ga_dash_settings.php:152
 
301
  msgid " show page sessions and users in frontend (after each article)"
302
- msgstr ""
303
 
304
- #: .././admin/ga_dash_settings.php:168
 
305
  msgid " show page searches (after each article)"
306
- msgstr ""
307
 
308
- #: .././admin/ga_dash_settings.php:177 .././admin/ga_dash_settings.php:305
309
- #: .././admin/ga_dash_settings.php:666 .././admin/ga_dash_settings.php:1025
310
- #: .././admin/ga_dash_settings.php:1351
311
  msgid "Save Changes"
312
  msgstr ""
313
 
314
- #: .././admin/ga_dash_settings.php:206
315
- msgid "Google Analytics Dashboard Settings"
 
 
 
 
 
 
 
 
 
 
316
  msgstr ""
317
 
318
- #: .././admin/ga_dash_settings.php:264
319
- msgid "disable Switch Profile/View functionality"
320
  msgstr ""
321
 
322
- #: .././admin/ga_dash_settings.php:268
 
323
  msgid "Real-Time Settings"
324
- msgstr ""
325
 
326
- #: .././admin/ga_dash_settings.php:271
 
327
  msgid "Maximum number of pages to display on real-time tab:"
328
- msgstr ""
329
 
330
- #: .././admin/ga_dash_settings.php:276 .././admin/ga_dash_settings.php:292
 
331
  msgid "find out more"
332
- msgstr ""
333
 
334
- #: .././admin/ga_dash_settings.php:278 .././admin/ga_dash_settings.php:295
 
335
  msgid "about this feature"
336
- msgstr ""
337
 
338
- #: .././admin/ga_dash_settings.php:283
339
  msgid "Location Settings"
340
  msgstr ""
341
 
342
- #: .././admin/ga_dash_settings.php:287
343
  msgid "Target Geo Map to country:"
344
  msgstr ""
345
 
346
- #: .././admin/ga_dash_settings.php:336
347
  msgid "The tracking component is disabled. You should set"
348
  msgstr ""
349
 
350
- #: .././admin/ga_dash_settings.php:336
 
351
  msgid "Tracking Options"
352
- msgstr ""
353
 
354
- #: .././admin/ga_dash_settings.php:336
355
  msgid "to"
356
  msgstr ""
357
 
358
- #: .././admin/ga_dash_settings.php:336 .././admin/ga_dash_settings.php:372
 
359
  msgid "Enabled"
360
- msgstr ""
361
 
362
- #: .././admin/ga_dash_settings.php:342
 
363
  msgid "Google Analytics Tracking Code"
364
- msgstr ""
365
 
366
- #: .././admin/ga_dash_settings.php:351
367
  msgid "Basic Settings"
368
  msgstr ""
369
 
370
- #: .././admin/ga_dash_settings.php:352 .././admin/ga_dash_settings.php:431
 
371
  msgid "Events Tracking"
372
- msgstr ""
373
 
374
- #: .././admin/ga_dash_settings.php:353 .././admin/ga_dash_settings.php:495
375
  msgid "Custom Definitions"
376
  msgstr ""
377
 
378
- #: .././admin/ga_dash_settings.php:354 .././admin/ga_dash_settings.php:623
379
- #: .././admin/ga_dash_settings.php:1328
 
380
  msgid "Exclude Tracking"
381
- msgstr ""
382
 
383
- #: .././admin/ga_dash_settings.php:355
384
  msgid "Advanced Settings"
385
  msgstr ""
386
 
387
- #: .././admin/ga_dash_settings.php:363
 
388
  msgid "Tracking Settings"
389
- msgstr ""
390
 
391
- #: .././admin/ga_dash_settings.php:366
 
392
  msgid "Tracking Options:"
393
- msgstr ""
394
 
395
- #: .././admin/ga_dash_settings.php:370
 
396
  msgid "Disabled"
397
- msgstr ""
398
 
399
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
 
 
 
 
 
 
 
400
  msgid "Tracking ID:"
401
- msgstr ""
402
 
403
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
404
  msgid "Default URL:"
405
- msgstr ""
406
 
407
- #: .././admin/ga_dash_settings.php:380 .././admin/ga_dash_settings.php:1001
 
408
  msgid "Time Zone:"
409
- msgstr ""
410
 
411
- #: .././admin/ga_dash_settings.php:385
412
  msgid "Basic Tracking"
413
  msgstr ""
414
 
415
- #: .././admin/ga_dash_settings.php:388
 
416
  msgid "Tracking Type:"
417
- msgstr ""
418
 
419
- #: .././admin/ga_dash_settings.php:392
 
420
  msgid "Classic Analytics"
421
- msgstr ""
422
 
423
- #: .././admin/ga_dash_settings.php:394
 
424
  msgid "Universal Analytics"
425
- msgstr ""
426
 
427
- #: .././admin/ga_dash_settings.php:408
 
428
  msgid " anonymize IPs while tracking"
429
- msgstr ""
430
 
431
- #: .././admin/ga_dash_settings.php:423
 
432
  msgid " enable remarketing, demographics and interests reports"
433
- msgstr ""
434
 
435
- #: .././admin/ga_dash_settings.php:445
 
436
  msgid " track downloads, mailto and outbound links"
437
- msgstr ""
438
 
439
- #: .././admin/ga_dash_settings.php:449
440
  msgid "Downloads Regex:"
441
  msgstr ""
442
 
443
- #: .././admin/ga_dash_settings.php:466
444
  msgid " track affiliate links matching this regex"
445
  msgstr ""
446
 
447
- #: .././admin/ga_dash_settings.php:470
448
  msgid "Affiliates Regex:"
449
  msgstr ""
450
 
451
- #: .././admin/ga_dash_settings.php:487
452
  msgid " track fragment identifiers, hashmarks (#) in URI links"
453
  msgstr ""
454
 
455
- #: .././admin/ga_dash_settings.php:498
456
  msgid "Authors:"
457
  msgstr ""
458
 
459
- #: .././admin/ga_dash_settings.php:508
460
  msgid "Publication Year:"
461
  msgstr ""
462
 
463
- #: .././admin/ga_dash_settings.php:518
464
  msgid "Categories:"
465
  msgstr ""
466
 
467
- #: .././admin/ga_dash_settings.php:528
468
  msgid "User Type:"
469
  msgstr ""
470
 
471
- #: .././admin/ga_dash_settings.php:542
 
472
  msgid "Advanced Tracking"
473
- msgstr ""
474
 
475
- #: .././admin/ga_dash_settings.php:545
 
476
  msgid "Page Speed SR:"
477
- msgstr ""
478
 
479
- #: .././admin/ga_dash_settings.php:563
480
  msgid " exclude events from bounce-rate calculation"
481
  msgstr ""
482
 
483
- #: .././admin/ga_dash_settings.php:578
 
484
  msgid " enable enhanced link attribution"
485
- msgstr ""
486
 
487
- #: .././admin/ga_dash_settings.php:592
 
488
  msgid " enable AdSense account linking"
489
- msgstr ""
490
 
491
- #: .././admin/ga_dash_settings.php:608
492
  msgid " enable cross domain tracking"
493
  msgstr ""
494
 
495
- #: .././admin/ga_dash_settings.php:612
496
  msgid "Cross Domains:"
497
  msgstr ""
498
 
499
- #: .././admin/ga_dash_settings.php:626
 
500
  msgid "Exclude tracking for:"
501
- msgstr ""
502
 
503
- #: .././admin/ga_dash_settings.php:687
504
  msgid "Google Analytics Errors & Debugging"
505
  msgstr ""
506
 
507
- #: .././admin/ga_dash_settings.php:697
508
  msgid "Errors & Details"
509
  msgstr ""
510
 
511
- #: .././admin/ga_dash_settings.php:698
512
  msgid "Plugin Settings"
513
  msgstr ""
514
 
515
- #: .././admin/ga_dash_settings.php:706
516
  msgid "For errors and/or other issues please check"
517
  msgstr ""
518
 
519
- #: .././admin/ga_dash_settings.php:706
520
- msgid "the plugin documentation page"
521
  msgstr ""
522
 
523
- #: .././admin/ga_dash_settings.php:706
524
  msgid "and related tutorials"
525
  msgstr ""
526
 
527
- #: .././admin/ga_dash_settings.php:710
528
  msgid "Last Error detected"
529
  msgstr ""
530
 
531
- #: .././admin/ga_dash_settings.php:715 .././admin/ga_dash_settings.php:728
532
  msgid "None"
533
  msgstr ""
534
 
535
- #: .././admin/ga_dash_settings.php:722
536
  msgid "Error Details"
537
  msgstr ""
538
 
539
- #: .././admin/ga_dash_settings.php:740
 
540
  msgid "Plugin Configuration"
541
- msgstr ""
542
 
543
- #: .././admin/ga_dash_settings.php:788 .././admin/ga_dash_settings.php:1072
544
  msgid ""
545
  "Loading the required libraries. If this results in a blank screen or a fatal "
546
  "error, try this solution:"
547
  msgstr ""
548
 
549
- #: .././admin/ga_dash_settings.php:800 .././admin/ga_dash_settings.php:1084
 
550
  msgid "Plugin authorization succeeded."
551
- msgstr ""
552
 
553
- #: .././admin/ga_dash_settings.php:816 .././admin/ga_dash_settings.php:1109
554
  msgid ""
555
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
556
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
557
  msgstr ""
558
 
559
- #: .././admin/ga_dash_settings.php:839 .././admin/ga_dash_settings.php:1141
 
560
  msgid "Cleared Cache."
561
- msgstr ""
562
 
563
- #: .././admin/ga_dash_settings.php:848 .././admin/ga_dash_settings.php:1150
 
564
  msgid "Token Reseted and Revoked."
 
 
 
 
565
  msgstr ""
566
 
567
- #: .././admin/ga_dash_settings.php:862 .././admin/ga_dash_settings.php:1164
 
568
  msgid "All other domains/properties were removed."
569
- msgstr ""
570
 
571
- #: .././admin/ga_dash_settings.php:874 .././admin/ga_dash_settings.php:1176
 
572
  msgid "Google Analytics Settings"
573
- msgstr ""
574
 
575
- #: .././admin/ga_dash_settings.php:887 .././admin/ga_dash_settings.php:1189
576
  msgid "Use the red link (see below) to generate and get your access code!"
577
  msgstr ""
578
 
579
- #: .././admin/ga_dash_settings.php:898 .././admin/ga_dash_settings.php:1224
 
580
  msgid "Plugin Authorization"
581
- msgstr ""
582
 
583
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
 
584
  msgid "You should watch the"
585
- msgstr ""
586
 
587
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
 
588
  msgid "video"
589
- msgstr ""
590
 
591
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
 
592
  msgid "and read this"
593
- msgstr ""
594
 
595
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
 
596
  msgid "tutorial"
597
- msgstr ""
598
 
599
- #: .././admin/ga_dash_settings.php:902 .././admin/ga_dash_settings.php:1228
 
600
  msgid ""
601
  "before proceeding to authorization. This plugin requires a properly "
602
  "configured Google Analytics account"
603
  msgstr ""
 
 
604
 
605
- #: .././admin/ga_dash_settings.php:914 .././admin/ga_dash_settings.php:1239
 
606
  msgid " use your own API Project credentials"
607
- msgstr ""
608
 
609
- #: .././admin/ga_dash_settings.php:921 .././admin/ga_dash_settings.php:1246
 
610
  msgid "API Key:"
611
- msgstr ""
612
 
613
- #: .././admin/ga_dash_settings.php:928 .././admin/ga_dash_settings.php:1254
 
614
  msgid "Client ID:"
615
- msgstr ""
616
 
617
- #: .././admin/ga_dash_settings.php:936 .././admin/ga_dash_settings.php:1263
 
618
  msgid "Client Secret:"
619
- msgstr ""
620
 
621
- #: .././admin/ga_dash_settings.php:954 .././admin/ga_dash_settings.php:1282
 
622
  msgid "Clear Authorization"
623
- msgstr ""
624
 
625
- #: .././admin/ga_dash_settings.php:958 .././admin/ga_dash_settings.php:1039
626
- #: .././admin/ga_dash_settings.php:1285 .././admin/ga_dash_settings.php:1363
 
627
  msgid "Clear Cache"
 
 
 
 
628
  msgstr ""
629
 
630
- #: .././admin/ga_dash_settings.php:967
 
 
 
 
 
 
 
631
  msgid "Select Domain:"
632
- msgstr ""
633
 
634
- #: .././admin/ga_dash_settings.php:980 .././admin/ga_dash_settings.php:1319
635
  msgid "Property not found"
636
  msgstr ""
637
 
638
- #: .././admin/ga_dash_settings.php:985
 
639
  msgid "and/or hide all other domains"
640
- msgstr ""
641
 
642
- #: .././admin/ga_dash_settings.php:988
 
643
  msgid "Hide Now"
644
- msgstr ""
645
 
646
- #: .././admin/ga_dash_settings.php:1007
 
647
  msgid "Theme Color:"
648
- msgstr ""
649
 
650
- #: .././admin/ga_dash_settings.php:1017
651
- msgid "A new frontend widget is available! To enable it, go to"
652
  msgstr ""
653
 
654
- #: .././admin/ga_dash_settings.php:1017
655
- msgid "Appearance -> Widgets"
 
656
  msgstr ""
657
 
658
- #: .././admin/ga_dash_settings.php:1017
659
- msgid "and look for Google Analytics Dashboard."
660
- msgstr ""
 
 
661
 
662
- #: .././admin/ga_dash_settings.php:1115
 
663
  msgid "Properties refreshed."
664
- msgstr ""
665
 
666
- #: .././admin/ga_dash_settings.php:1201
 
667
  msgid "Network Setup"
668
- msgstr ""
669
 
670
- #: .././admin/ga_dash_settings.php:1216
 
671
  msgid " use a single Google Analytics account for the entire network"
672
- msgstr ""
673
 
674
- #: .././admin/ga_dash_settings.php:1288
 
675
  msgid "Refresh Properties"
676
- msgstr ""
677
 
678
- #: .././admin/ga_dash_settings.php:1294
 
679
  msgid "Properties/Views Settings"
680
- msgstr ""
681
 
682
- #: .././admin/ga_dash_settings.php:1342
683
  msgid " exclude Super Admin tracking for the entire network"
684
  msgstr ""
685
 
686
- #: .././admin/ga_dash_settings.php:1394
 
687
  msgid "Setup Tutorial & Demo"
688
- msgstr ""
689
 
690
- #: .././admin/ga_dash_settings.php:1406
 
691
  msgid "Support & Reviews"
692
- msgstr ""
693
 
694
- #: .././admin/ga_dash_settings.php:1414
695
  msgid "Plugin documentation and support on"
696
  msgstr ""
697
 
698
- #: .././admin/ga_dash_settings.php:1421
 
699
  msgid "Your feedback and review are both important,"
700
- msgstr ""
701
 
702
- #: .././admin/ga_dash_settings.php:1421
 
703
  msgid "rate this plugin"
704
- msgstr ""
705
 
706
- #: .././admin/ga_dash_settings.php:1426
 
707
  msgid "Further Reading"
708
- msgstr ""
709
 
710
- #: .././admin/ga_dash_settings.php:1434
711
  msgid "Improve search rankings"
712
  msgstr ""
713
 
714
- #: .././admin/ga_dash_settings.php:1434
715
  msgid "by moving your website to HTTPS/SSL."
716
  msgstr ""
717
 
718
- #: .././admin/ga_dash_settings.php:1441
 
719
  msgid "Other"
720
- msgstr ""
721
 
722
- #: .././admin/ga_dash_settings.php:1441
 
723
  msgid "WordPress Plugins"
724
- msgstr ""
725
 
726
- #: .././admin/ga_dash_settings.php:1441
 
727
  msgid "written by the same author"
728
- msgstr ""
729
 
730
- #: .././admin/ga_dash_settings.php:1446
731
  msgid "Other Services"
732
  msgstr ""
733
 
734
- #: .././admin/ga_dash_settings.php:1453
735
  msgid "Speed up your website and plug into a whole"
736
  msgstr ""
737
 
738
- #: .././admin/ga_dash_settings.php:1453
739
  msgid "new level of site speed"
740
  msgstr ""
741
 
742
- #: .././admin/ga_dash_settings.php:1460
 
743
  msgid "Web Analytics"
744
- msgstr ""
745
 
746
- #: .././admin/ga_dash_settings.php:1460
747
  msgid "service with users tracking at IP level."
748
  msgstr ""
749
 
750
- #: .././front/frontend.php:134
751
- msgid "Views vs UniqueViews"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
752
  msgstr ""
753
 
754
- #: .././front/frontend.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
755
  msgid "Google Analytics Reports"
756
  msgstr ""
757
 
758
  #: .././front/widgets.php:15
 
759
  msgid "Will display your google analytics stats in a widget"
760
- msgstr ""
761
 
762
- #: .././front/widgets.php:40 .././tools/gapi.php:744
 
763
  msgid "trend"
764
- msgstr ""
765
 
766
- #: .././front/widgets.php:133
 
767
  msgid "Period:"
768
- msgstr ""
769
 
770
- #: .././front/widgets.php:133
771
  msgid "Sessions:"
772
  msgstr ""
773
 
774
- #: .././front/widgets.php:137
 
775
  msgid "generated by"
776
- msgstr ""
777
 
778
- #: .././front/widgets.php:147
 
779
  msgid "Google Analytics Stats"
780
- msgstr ""
781
 
782
- #: .././front/widgets.php:154
 
783
  msgid "Title:"
784
- msgstr ""
785
 
786
- #: .././front/widgets.php:161
 
787
  msgid "Display:"
788
- msgstr ""
789
 
790
- #: .././front/widgets.php:165
 
791
  msgid "Chart & Totals"
792
- msgstr ""
793
 
794
- #: .././front/widgets.php:166
 
795
  msgid "Chart"
796
- msgstr ""
797
 
798
- #: .././front/widgets.php:167
 
799
  msgid "Totals"
800
- msgstr ""
801
 
802
- #: .././front/widgets.php:171
803
  msgid "Anonymize stats:"
804
  msgstr ""
805
 
806
- #: .././front/widgets.php:178
 
807
  msgid "Stats for:"
808
- msgstr ""
809
 
810
- #: .././front/widgets.php:188
 
811
  msgid "Give credits:"
812
- msgstr ""
813
 
814
- #: .././tools/gapi.php:129
 
815
  msgid "Use this link to get your access code:"
816
- msgstr ""
817
 
818
- #: .././tools/gapi.php:129
 
819
  msgid "Get Access Code"
820
- msgstr ""
821
 
822
- #: .././tools/gapi.php:134 .././tools/gapi.php:138
823
  msgid "Use the red link to get your access code!"
824
  msgstr ""
825
 
826
- #: .././tools/gapi.php:134
 
827
  msgid "Access Code:"
828
- msgstr ""
829
 
830
- #: .././tools/gapi.php:146
 
831
  msgid "Save Access Code"
832
- msgstr ""
833
 
834
- #: .././tools/gapi.php:373
 
835
  msgid "Organic Searches"
 
 
 
 
836
  msgstr ""
837
 
838
- #: .././tools/gapi.php:381
 
839
  msgid "Hour"
840
- msgstr ""
841
 
842
- #: .././tools/gapi.php:384 .././tools/gapi.php:744 .././tools/gapi.php:783
 
843
  msgid "Date"
844
- msgstr ""
845
 
846
- #: .././tools/gapi.php:477 .././tools/gapi.php:783
 
847
  msgid "Views"
848
- msgstr ""
849
 
850
- #: .././tools/gapi.php:576
851
  msgid "Countries"
852
  msgstr ""
853
 
854
- #: .././tools/gapi.php:590
855
  msgid "Cities from"
856
  msgstr ""
857
 
858
- #: .././tools/gapi.php:644
859
  msgid "Channels"
860
  msgstr ""
861
 
862
- #: .././tools/gapi.php:698
 
863
  msgid "Type"
864
- msgstr ""
865
 
866
- #: .././tools/gapi.php:783
 
867
  msgid "UniqueViews"
868
- msgstr ""
869
 
870
  #~ msgid ""
871
  #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Google Analytics Dashboard for WP\n"
4
+ "POT-Creation-Date: 2015-03-24 09:26+0200\n"
5
+ "PO-Revision-Date: 2015-03-24 09:26+0200\n"
6
  "Last-Translator: Alin Marcu <admin@deconf.com>\n"
7
  "Language-Team: Deconf <admin@deconf.com>\n"
8
  "Language: en\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 1.7.5\n"
13
  "X-Poedit-KeywordsList: _e;__\n"
14
  "X-Poedit-Basepath: .\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
  "X-Poedit-SearchPath-0: ../.\n"
18
 
19
+ #: .././admin/item-reports.php:56
20
+ #, fuzzy
21
+ msgid "Analytics"
22
+ msgstr "Ustawienia Frontendu Google Analytics"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
 
24
+ #: .././admin/settings.php:89 .././admin/settings.php:201
25
+ #: .././admin/settings.php:359 .././admin/settings.php:895
26
+ #: .././admin/settings.php:1215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Settings saved."
28
  msgstr ""
29
 
30
+ #: .././admin/settings.php:91 .././admin/settings.php:203
31
+ #: .././admin/settings.php:361 .././admin/settings.php:872
32
+ #: .././admin/settings.php:882 .././admin/settings.php:891
33
+ #: .././admin/settings.php:897 .././admin/settings.php:909
34
+ #: .././admin/settings.php:1176 .././admin/settings.php:1201
35
+ #: .././admin/settings.php:1211 .././admin/settings.php:1217
36
+ #: .././admin/settings.php:1229
37
+ #, fuzzy
38
  msgid "Cheating Huh?"
39
+ msgstr "Oszukujemy, co?"
40
 
41
+ #: .././admin/settings.php:95 .././admin/settings.php:207
42
+ #: .././admin/settings.php:365 .././admin/settings.php:716
43
+ #: .././admin/settings.php:922 .././admin/settings.php:1242
44
  msgid "Something went wrong, check"
45
  msgstr ""
46
 
47
+ #: .././admin/settings.php:95 .././admin/settings.php:207
48
+ #: .././admin/settings.php:365 .././admin/settings.php:716
49
+ #: .././admin/settings.php:922 .././admin/settings.php:1242
50
+ #: .././admin/setup.php:89 .././admin/setup.php:113
51
+ msgid "Errors & Debug"
52
  msgstr ""
53
 
54
+ #: .././admin/settings.php:95 .././admin/settings.php:207
55
+ #: .././admin/settings.php:365 .././admin/settings.php:716
56
+ #: .././admin/settings.php:922 .././admin/settings.php:1242
57
+ msgid "or"
58
  msgstr ""
59
 
60
+ #: .././admin/settings.php:95 .././admin/settings.php:207
61
+ #: .././admin/settings.php:365 .././admin/settings.php:716
62
+ #: .././admin/settings.php:922 .././admin/settings.php:1242
63
+ #, fuzzy
64
+ msgid "authorize the plugin"
65
+ msgstr "Autoryzuj wtyczkę"
66
+
67
+ #: .././admin/settings.php:101
68
+ #, fuzzy
69
  msgid "Google Analytics Frontend Settings"
70
+ msgstr "Ustawienia Frontendu Google Analytics"
71
+
72
+ #: .././admin/settings.php:111 .././admin/settings.php:223
73
+ msgid "Permissions"
74
  msgstr ""
75
 
76
+ #: .././admin/settings.php:114 .././admin/settings.php:226
77
+ #, fuzzy
78
  msgid "Show stats to:"
79
+ msgstr "Pokazuj statystyki do: "
80
 
81
+ #: .././admin/settings.php:159
82
+ #, fuzzy
83
  msgid " show page sessions and users in frontend (after each article)"
84
+ msgstr "pokaż wizyty i odwiedzających na stronie (po każdym artykule)"
85
 
86
+ #: .././admin/settings.php:175
87
+ #, fuzzy
88
  msgid " show page searches (after each article)"
89
+ msgstr "pokaż wyszukiwania strony (po każdym artykule)"
90
 
91
+ #: .././admin/settings.php:184 .././admin/settings.php:341
92
+ #: .././admin/settings.php:698 .././admin/settings.php:1087
93
+ #: .././admin/settings.php:1429
94
  msgid "Save Changes"
95
  msgstr ""
96
 
97
+ #: .././admin/settings.php:213
98
+ #, fuzzy
99
+ msgid "Google Analytics Backend Settings"
100
+ msgstr "Ustawienia Frontendu Google Analytics"
101
+
102
+ #: .././admin/settings.php:272
103
+ #, fuzzy
104
+ msgid "enable Switch Profile/View functionality"
105
+ msgstr "wyłącz funkcjonalność Przełączanie Profilu/Widoku"
106
+
107
+ #: .././admin/settings.php:286
108
+ msgid "enable reports on Posts List and Pages List"
109
  msgstr ""
110
 
111
+ #: .././admin/settings.php:300
112
+ msgid "enable the main Dashboard Widget"
113
  msgstr ""
114
 
115
+ #: .././admin/settings.php:304
116
+ #, fuzzy
117
  msgid "Real-Time Settings"
118
+ msgstr "Ustawienia Czasu Rzeczywistego"
119
 
120
+ #: .././admin/settings.php:307
121
+ #, fuzzy
122
  msgid "Maximum number of pages to display on real-time tab:"
123
+ msgstr "Maksymalna liczba stron wyświetlanych na karcie Czas Rzeczywisty:"
124
 
125
+ #: .././admin/settings.php:312 .././admin/settings.php:328
126
+ #, fuzzy
127
  msgid "find out more"
128
+ msgstr "Dowiedz sie więcej!"
129
 
130
+ #: .././admin/settings.php:314 .././admin/settings.php:331
131
+ #, fuzzy
132
  msgid "about this feature"
133
+ msgstr "o tej opcji"
134
 
135
+ #: .././admin/settings.php:319
136
  msgid "Location Settings"
137
  msgstr ""
138
 
139
+ #: .././admin/settings.php:323
140
  msgid "Target Geo Map to country:"
141
  msgstr ""
142
 
143
+ #: .././admin/settings.php:368
144
  msgid "The tracking component is disabled. You should set"
145
  msgstr ""
146
 
147
+ #: .././admin/settings.php:368
148
+ #, fuzzy
149
  msgid "Tracking Options"
150
+ msgstr "Opcje Śledzenia:"
151
 
152
+ #: .././admin/settings.php:368
153
  msgid "to"
154
  msgstr ""
155
 
156
+ #: .././admin/settings.php:368 .././admin/settings.php:404
157
+ #, fuzzy
158
  msgid "Enabled"
159
+ msgstr "Włączone"
160
 
161
+ #: .././admin/settings.php:374
162
+ #, fuzzy
163
  msgid "Google Analytics Tracking Code"
164
+ msgstr "Kod Śledzenia Google Analytics"
165
 
166
+ #: .././admin/settings.php:383
167
  msgid "Basic Settings"
168
  msgstr ""
169
 
170
+ #: .././admin/settings.php:384 .././admin/settings.php:463
171
+ #, fuzzy
172
  msgid "Events Tracking"
173
+ msgstr "Śledzenie Zdarzeń"
174
 
175
+ #: .././admin/settings.php:385 .././admin/settings.php:527
176
  msgid "Custom Definitions"
177
  msgstr ""
178
 
179
+ #: .././admin/settings.php:386 .././admin/settings.php:655
180
+ #: .././admin/settings.php:1406
181
+ #, fuzzy
182
  msgid "Exclude Tracking"
183
+ msgstr "Wyklucz Śledzenie"
184
 
185
+ #: .././admin/settings.php:387
186
  msgid "Advanced Settings"
187
  msgstr ""
188
 
189
+ #: .././admin/settings.php:395
190
+ #, fuzzy
191
  msgid "Tracking Settings"
192
+ msgstr "Ustawienia Śledzenia"
193
 
194
+ #: .././admin/settings.php:398
195
+ #, fuzzy
196
  msgid "Tracking Options:"
197
+ msgstr "Opcje Śledzenia:"
198
 
199
+ #: .././admin/settings.php:402
200
+ #, fuzzy
201
  msgid "Disabled"
202
+ msgstr "Wyłączone"
203
 
204
+ #: .././admin/settings.php:412 .././admin/settings.php:1019
205
+ #: .././admin/settings.php:1044 .././admin/settings.php:1373
206
+ #: .././admin/widgets.php:67
207
+ #, fuzzy
208
+ msgid "View Name:"
209
+ msgstr "Nazwa widoku:"
210
+
211
+ #: .././admin/settings.php:412 .././admin/settings.php:1044
212
+ #, fuzzy
213
  msgid "Tracking ID:"
214
+ msgstr "Tracking ID:"
215
 
216
+ #: .././admin/settings.php:412 .././admin/settings.php:1044
217
+ #, fuzzy
218
  msgid "Default URL:"
219
+ msgstr "Domyślny URL:"
220
 
221
+ #: .././admin/settings.php:412 .././admin/settings.php:1044
222
+ #, fuzzy
223
  msgid "Time Zone:"
224
+ msgstr "Strefa Czasowa:"
225
 
226
+ #: .././admin/settings.php:417
227
  msgid "Basic Tracking"
228
  msgstr ""
229
 
230
+ #: .././admin/settings.php:420
231
+ #, fuzzy
232
  msgid "Tracking Type:"
233
+ msgstr "Typ Śledzenia: "
234
 
235
+ #: .././admin/settings.php:424
236
+ #, fuzzy
237
  msgid "Classic Analytics"
238
+ msgstr "Klasyczne Analytics"
239
 
240
+ #: .././admin/settings.php:426
241
+ #, fuzzy
242
  msgid "Universal Analytics"
243
+ msgstr "Uniwerslane Analytics"
244
 
245
+ #: .././admin/settings.php:440
246
+ #, fuzzy
247
  msgid " anonymize IPs while tracking"
248
+ msgstr "ukryj adresy IP podczas śledzenia"
249
 
250
+ #: .././admin/settings.php:455
251
+ #, fuzzy
252
  msgid " enable remarketing, demographics and interests reports"
253
+ msgstr "włącz raporty zainteresować, remarketingowe i demograficzne"
254
 
255
+ #: .././admin/settings.php:477
256
+ #, fuzzy
257
  msgid " track downloads, mailto and outbound links"
258
+ msgstr "śledź pobrania, wysyłanie maili i linki wychodzące"
259
 
260
+ #: .././admin/settings.php:481
261
  msgid "Downloads Regex:"
262
  msgstr ""
263
 
264
+ #: .././admin/settings.php:498
265
  msgid " track affiliate links matching this regex"
266
  msgstr ""
267
 
268
+ #: .././admin/settings.php:502
269
  msgid "Affiliates Regex:"
270
  msgstr ""
271
 
272
+ #: .././admin/settings.php:519
273
  msgid " track fragment identifiers, hashmarks (#) in URI links"
274
  msgstr ""
275
 
276
+ #: .././admin/settings.php:530
277
  msgid "Authors:"
278
  msgstr ""
279
 
280
+ #: .././admin/settings.php:540
281
  msgid "Publication Year:"
282
  msgstr ""
283
 
284
+ #: .././admin/settings.php:550
285
  msgid "Categories:"
286
  msgstr ""
287
 
288
+ #: .././admin/settings.php:560
289
  msgid "User Type:"
290
  msgstr ""
291
 
292
+ #: .././admin/settings.php:574
293
+ #, fuzzy
294
  msgid "Advanced Tracking"
295
+ msgstr "Ustawienia Śledzenia"
296
 
297
+ #: .././admin/settings.php:577
298
+ #, fuzzy
299
  msgid "Page Speed SR:"
300
+ msgstr "Page Speed SR:"
301
 
302
+ #: .././admin/settings.php:595
303
  msgid " exclude events from bounce-rate calculation"
304
  msgstr ""
305
 
306
+ #: .././admin/settings.php:610
307
+ #, fuzzy
308
  msgid " enable enhanced link attribution"
309
+ msgstr "włącz rozszerzone przypisywanie linków"
310
 
311
+ #: .././admin/settings.php:624
312
+ #, fuzzy
313
  msgid " enable AdSense account linking"
314
+ msgstr " włącz linkowanie konta AdSense"
315
 
316
+ #: .././admin/settings.php:640
317
  msgid " enable cross domain tracking"
318
  msgstr ""
319
 
320
+ #: .././admin/settings.php:644
321
  msgid "Cross Domains:"
322
  msgstr ""
323
 
324
+ #: .././admin/settings.php:658
325
+ #, fuzzy
326
  msgid "Exclude tracking for:"
327
+ msgstr "Wyklucz śledzenie dla: "
328
 
329
+ #: .././admin/settings.php:720
330
  msgid "Google Analytics Errors & Debugging"
331
  msgstr ""
332
 
333
+ #: .././admin/settings.php:730
334
  msgid "Errors & Details"
335
  msgstr ""
336
 
337
+ #: .././admin/settings.php:731
338
  msgid "Plugin Settings"
339
  msgstr ""
340
 
341
+ #: .././admin/settings.php:739
342
  msgid "For errors and/or other issues please check"
343
  msgstr ""
344
 
345
+ #: .././admin/settings.php:739
346
+ msgid "this documentation page"
347
  msgstr ""
348
 
349
+ #: .././admin/settings.php:739
350
  msgid "and related tutorials"
351
  msgstr ""
352
 
353
+ #: .././admin/settings.php:743
354
  msgid "Last Error detected"
355
  msgstr ""
356
 
357
+ #: .././admin/settings.php:748 .././admin/settings.php:761
358
  msgid "None"
359
  msgstr ""
360
 
361
+ #: .././admin/settings.php:755
362
  msgid "Error Details"
363
  msgstr ""
364
 
365
+ #: .././admin/settings.php:775
366
+ #, fuzzy
367
  msgid "Plugin Configuration"
368
+ msgstr "Autoryzacja Wtyczki"
369
 
370
+ #: .././admin/settings.php:819 .././admin/settings.php:1130
371
  msgid ""
372
  "Loading the required libraries. If this results in a blank screen or a fatal "
373
  "error, try this solution:"
374
  msgstr ""
375
 
376
+ #: .././admin/settings.php:831 .././admin/settings.php:1142
377
+ #, fuzzy
378
  msgid "Plugin authorization succeeded."
379
+ msgstr "Autoryzacja wtyczki pomyślna."
380
 
381
+ #: .././admin/settings.php:847 .././admin/settings.php:1167
382
  msgid ""
383
  "The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
384
  "(UA-XXXXX-X). Try again, and use the red link to get your access code"
385
  msgstr ""
386
 
387
+ #: .././admin/settings.php:870 .././admin/settings.php:1199
388
+ #, fuzzy
389
  msgid "Cleared Cache."
390
+ msgstr "Cache wyczyszczony."
391
 
392
+ #: .././admin/settings.php:879 .././admin/settings.php:1208
393
+ #, fuzzy
394
  msgid "Token Reseted and Revoked."
395
+ msgstr "Token wyczyszczony i wycofany."
396
+
397
+ #: .././admin/settings.php:889
398
+ msgid "All errors reseted."
399
  msgstr ""
400
 
401
+ #: .././admin/settings.php:902 .././admin/settings.php:1222
402
+ #, fuzzy
403
  msgid "All other domains/properties were removed."
404
+ msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
405
 
406
+ #: .././admin/settings.php:914 .././admin/settings.php:1234
407
+ #, fuzzy
408
  msgid "Google Analytics Settings"
409
+ msgstr "Ustawienia Google Analytics"
410
 
411
+ #: .././admin/settings.php:927 .././admin/settings.php:1247
412
  msgid "Use the red link (see below) to generate and get your access code!"
413
  msgstr ""
414
 
415
+ #: .././admin/settings.php:938 .././admin/settings.php:1282
416
+ #, fuzzy
417
  msgid "Plugin Authorization"
418
+ msgstr "Autoryzacja Wtyczki"
419
 
420
+ #: .././admin/settings.php:942 .././admin/settings.php:1286
421
+ #, fuzzy
422
  msgid "You should watch the"
423
+ msgstr "Powinienieś obejrzeć"
424
 
425
+ #: .././admin/settings.php:942 .././admin/settings.php:1286
426
+ #, fuzzy
427
  msgid "video"
428
+ msgstr "film"
429
 
430
+ #: .././admin/settings.php:942 .././admin/settings.php:1286
431
+ #, fuzzy
432
  msgid "and read this"
433
+ msgstr "i przeczytać"
434
 
435
+ #: .././admin/settings.php:942 .././admin/settings.php:1286
436
+ #, fuzzy
437
  msgid "tutorial"
438
+ msgstr "tutorial"
439
 
440
+ #: .././admin/settings.php:942 .././admin/settings.php:1286
441
+ #, fuzzy
442
  msgid ""
443
  "before proceeding to authorization. This plugin requires a properly "
444
  "configured Google Analytics account"
445
  msgstr ""
446
+ "przed ukończeniem autoryzacji. Ta wtyczka wymaga poprawnie skonfigurowanego "
447
+ "konta Google Analytics"
448
 
449
+ #: .././admin/settings.php:954 .././admin/settings.php:1297
450
+ #, fuzzy
451
  msgid " use your own API Project credentials"
452
+ msgstr "użyj własnych danych logowania do API Projektu"
453
 
454
+ #: .././admin/settings.php:961 .././admin/settings.php:1304
455
+ #, fuzzy
456
  msgid "API Key:"
457
+ msgstr "Klucz API:"
458
 
459
+ #: .././admin/settings.php:968 .././admin/settings.php:1312
460
+ #, fuzzy
461
  msgid "Client ID:"
462
+ msgstr "ID Klienta:"
463
 
464
+ #: .././admin/settings.php:976 .././admin/settings.php:1321
465
+ #, fuzzy
466
  msgid "Client Secret:"
467
+ msgstr "Hasło Klienta:"
468
 
469
+ #: .././admin/settings.php:994 .././admin/settings.php:1340
470
+ #, fuzzy
471
  msgid "Clear Authorization"
472
+ msgstr "Czyść Autoryzację"
473
 
474
+ #: .././admin/settings.php:998 .././admin/settings.php:1101
475
+ #: .././admin/settings.php:1343 .././admin/settings.php:1441
476
+ #, fuzzy
477
  msgid "Clear Cache"
478
+ msgstr "Czyść Cache"
479
+
480
+ #: .././admin/settings.php:1001
481
+ msgid "Reset Errors"
482
  msgstr ""
483
 
484
+ #: .././admin/settings.php:1007 .././admin/setup.php:73
485
+ #: .././admin/setup.php:109
486
+ #, fuzzy
487
+ msgid "General Settings"
488
+ msgstr "Ustawienia główne"
489
+
490
+ #: .././admin/settings.php:1010
491
+ #, fuzzy
492
  msgid "Select Domain:"
493
+ msgstr "Wybierz Domenę: "
494
 
495
+ #: .././admin/settings.php:1023 .././admin/settings.php:1377
496
  msgid "Property not found"
497
  msgstr ""
498
 
499
+ #: .././admin/settings.php:1028
500
+ #, fuzzy
501
  msgid "and/or hide all other domains"
502
+ msgstr "i/lub ukryj wszystkie inne domeny"
503
 
504
+ #: .././admin/settings.php:1031
505
+ #, fuzzy
506
  msgid "Hide Now"
507
+ msgstr "Ukryj Teraz"
508
 
509
+ #: .././admin/settings.php:1050
510
+ #, fuzzy
511
  msgid "Theme Color:"
512
+ msgstr "Kolor tematu: "
513
 
514
+ #: .././admin/settings.php:1061 .././admin/settings.php:1386
515
+ msgid "Automatic Updates"
516
  msgstr ""
517
 
518
+ #: .././admin/settings.php:1077 .././admin/settings.php:1402
519
+ msgid ""
520
+ "automatic updates for minor versions (security and maintenance releases only)"
521
  msgstr ""
522
 
523
+ #: .././admin/settings.php:1097 .././admin/settings.php:1438
524
+ #: .././admin/widgets.php:38
525
+ #, fuzzy
526
+ msgid "Authorize Plugin"
527
+ msgstr "Autoryzuj wtyczkę"
528
 
529
+ #: .././admin/settings.php:1173
530
+ #, fuzzy
531
  msgid "Properties refreshed."
532
+ msgstr "Właściwości Odświeżone"
533
 
534
+ #: .././admin/settings.php:1259
535
+ #, fuzzy
536
  msgid "Network Setup"
537
+ msgstr "Ustawienia Sieci"
538
 
539
+ #: .././admin/settings.php:1274
540
+ #, fuzzy
541
  msgid " use a single Google Analytics account for the entire network"
542
+ msgstr "Użyj jednego konta Google Analytics dla całej sieci"
543
 
544
+ #: .././admin/settings.php:1346
545
+ #, fuzzy
546
  msgid "Refresh Properties"
547
+ msgstr "Odśwież Właściwości"
548
 
549
+ #: .././admin/settings.php:1352
550
+ #, fuzzy
551
  msgid "Properties/Views Settings"
552
+ msgstr "Ustawienia Właściwości /Widoków"
553
 
554
+ #: .././admin/settings.php:1420
555
  msgid " exclude Super Admin tracking for the entire network"
556
  msgstr ""
557
 
558
+ #: .././admin/settings.php:1472
559
+ #, fuzzy
560
  msgid "Setup Tutorial & Demo"
561
+ msgstr "Ustaw Tutorial & Demo"
562
 
563
+ #: .././admin/settings.php:1484
564
+ #, fuzzy
565
  msgid "Support & Reviews"
566
+ msgstr "Wsparcie techniczne & Recenzje"
567
 
568
+ #: .././admin/settings.php:1492
569
  msgid "Plugin documentation and support on"
570
  msgstr ""
571
 
572
+ #: .././admin/settings.php:1499
573
+ #, fuzzy
574
  msgid "Your feedback and review are both important,"
575
+ msgstr "Twój komentarz i ocena są ważne,"
576
 
577
+ #: .././admin/settings.php:1499
578
+ #, fuzzy
579
  msgid "rate this plugin"
580
+ msgstr "oceń tą wtyczkę"
581
 
582
+ #: .././admin/settings.php:1504
583
+ #, fuzzy
584
  msgid "Further Reading"
585
+ msgstr "Inne Dokumenty"
586
 
587
+ #: .././admin/settings.php:1512
588
  msgid "Improve search rankings"
589
  msgstr ""
590
 
591
+ #: .././admin/settings.php:1512
592
  msgid "by moving your website to HTTPS/SSL."
593
  msgstr ""
594
 
595
+ #: .././admin/settings.php:1519
596
+ #, fuzzy
597
  msgid "Other"
598
+ msgstr "Inne"
599
 
600
+ #: .././admin/settings.php:1519
601
+ #, fuzzy
602
  msgid "WordPress Plugins"
603
+ msgstr "Wtyczki WordPressa"
604
 
605
+ #: .././admin/settings.php:1519
606
+ #, fuzzy
607
  msgid "written by the same author"
608
+ msgstr "napisane przez tego samego autora"
609
 
610
+ #: .././admin/settings.php:1524
611
  msgid "Other Services"
612
  msgstr ""
613
 
614
+ #: .././admin/settings.php:1532
615
  msgid "Speed up your website and plug into a whole"
616
  msgstr ""
617
 
618
+ #: .././admin/settings.php:1532
619
  msgid "new level of site speed"
620
  msgstr ""
621
 
622
+ #: .././admin/settings.php:1539
623
+ #, fuzzy
624
  msgid "Web Analytics"
625
+ msgstr "Web Analytics"
626
 
627
+ #: .././admin/settings.php:1539
628
  msgid "service with users tracking at IP level."
629
  msgstr ""
630
 
631
+ #: .././admin/setup.php:69 .././admin/setup.php:105
632
+ #, fuzzy
633
+ msgid "Google Analytics"
634
+ msgstr "Google Analytics"
635
+
636
+ #: .././admin/setup.php:77
637
+ #, fuzzy
638
+ msgid "Backend Settings"
639
+ msgstr "Ustawienia backendu"
640
+
641
+ #: .././admin/setup.php:81
642
+ #, fuzzy
643
+ msgid "Frontend Settings"
644
+ msgstr "Ustawienia Frontendu"
645
+
646
+ #: .././admin/setup.php:85
647
+ #, fuzzy
648
+ msgid "Tracking Code"
649
+ msgstr "Kod śledzenia"
650
+
651
+ #: .././admin/setup.php:190 .././admin/widgets.php:123
652
+ #, fuzzy
653
+ msgid "Today"
654
+ msgstr "Dzisiaj"
655
+
656
+ #: .././admin/setup.php:191 .././admin/widgets.php:125
657
+ #, fuzzy
658
+ msgid "Yesterday"
659
+ msgstr "Wczoraj"
660
+
661
+ #: .././admin/setup.php:192 .././admin/widgets.php:127
662
+ #: .././front/widgets.php:68 .././front/widgets.php:176
663
+ #, fuzzy
664
+ msgid "Last 7 Days"
665
+ msgstr "Ostatnie 7 dni"
666
+
667
+ #: .././admin/setup.php:193 .././admin/widgets.php:131
668
+ #: .././front/widgets.php:74 .././front/widgets.php:178
669
+ #, fuzzy
670
+ msgid "Last 30 Days"
671
+ msgstr "Ostatnie 30 dni"
672
+
673
+ #: .././admin/setup.php:194 .././admin/widgets.php:133
674
+ #, fuzzy
675
+ msgid "Last 90 Days"
676
+ msgstr "Ostatnie 90 dni"
677
+
678
+ #: .././admin/setup.php:197 .././admin/setup.php:213
679
+ msgid "Unique Views"
680
+ msgstr ""
681
+
682
+ #: .././admin/setup.php:198 .././admin/setup.php:214
683
+ #: .././admin/widgets.php:140 .././admin/widgets.php:886
684
+ #: .././tools/gapi.php:372
685
+ msgid "Users"
686
  msgstr ""
687
 
688
+ #: .././admin/setup.php:199 .././admin/widgets.php:142
689
+ #, fuzzy
690
+ msgid "Organic"
691
+ msgstr "Organiczne"
692
+
693
+ #: .././admin/setup.php:200 .././admin/setup.php:215
694
+ #: .././admin/widgets.php:144 .././admin/widgets.php:890
695
+ #: .././tools/gapi.php:375
696
+ #, fuzzy
697
+ msgid "Page Views"
698
+ msgstr "Wyświetleń strony"
699
+
700
+ #: .././admin/setup.php:201 .././admin/setup.php:216
701
+ #: .././admin/widgets.php:146 .././admin/widgets.php:894
702
+ #: .././tools/gapi.php:378
703
+ #, fuzzy
704
+ msgid "Bounce Rate"
705
+ msgstr "Współczynnik odrzuceń"
706
+
707
+ #: .././admin/setup.php:202 .././admin/widgets.php:148
708
+ msgid "Location"
709
+ msgstr ""
710
+
711
+ #: .././admin/setup.php:203 .././admin/widgets.php:152 .././tools/gapi.php:547
712
+ #, fuzzy
713
+ msgid "Referrers"
714
+ msgstr "pokaż najlepszych referujących"
715
+
716
+ #: .././admin/setup.php:204 .././admin/widgets.php:154 .././tools/gapi.php:593
717
+ #: .././tools/gapi.php:904
718
+ #, fuzzy
719
+ msgid "Searches"
720
+ msgstr "pokaż najlepsze wyszukiwania"
721
+
722
+ #: .././admin/setup.php:205 .././admin/widgets.php:156
723
+ #, fuzzy
724
+ msgid "Traffic Details"
725
+ msgstr "Źródła ruchu"
726
+
727
+ #: .././admin/setup.php:208 .././admin/widgets.php:522
728
+ #: .././admin/widgets.php:618 .././admin/widgets.php:816
729
+ #: .././admin/widgets.php:928 .././front/item-reports.php:84
730
+ msgid "A JavaScript Error is blocking plugin resources!"
731
+ msgstr ""
732
+
733
+ #: .././admin/setup.php:209 .././admin/widgets.php:724
734
+ #, fuzzy
735
+ msgid "Traffic Mediums"
736
+ msgstr "Źródła ruchu"
737
+
738
+ #: .././admin/setup.php:210 .././admin/widgets.php:740
739
+ msgid "Visitor Type"
740
+ msgstr ""
741
+
742
+ #: .././admin/setup.php:211 .././admin/widgets.php:756
743
+ msgid "Social Networks"
744
+ msgstr ""
745
+
746
+ #: .././admin/setup.php:212 .././admin/widgets.php:772
747
+ msgid "Search Engines"
748
+ msgstr ""
749
+
750
+ #: .././admin/setup.php:217 .././admin/widgets.php:898
751
+ #, fuzzy
752
+ msgid "Organic Search"
753
+ msgstr "Wyszukiwań organicznych:"
754
+
755
+ #: .././admin/setup.php:218 .././admin/widgets.php:902
756
+ msgid "Pages/Session"
757
+ msgstr ""
758
+
759
+ #: .././admin/setup.php:219 .././admin/widgets.php:535
760
+ #: .././admin/widgets.php:553 .././admin/widgets.php:631
761
+ #: .././admin/widgets.php:649 .././admin/widgets.php:668
762
+ #: .././admin/widgets.php:687 .././admin/widgets.php:707
763
+ #: .././admin/widgets.php:830 .././admin/widgets.php:941
764
+ #: .././admin/widgets.php:960 .././front/item-reports.php:96
765
+ #: .././front/item-reports.php:115
766
+ msgid "Invalid response, more details in JavaScript Console (F12)."
767
+ msgstr ""
768
+
769
+ #: .././admin/setup.php:220
770
+ msgid "Not enough data collected"
771
+ msgstr ""
772
+
773
+ #: .././admin/setup.php:221 .././admin/widgets.php:540
774
+ #: .././admin/widgets.php:558 .././admin/widgets.php:636
775
+ #: .././admin/widgets.php:654 .././admin/widgets.php:673
776
+ #: .././admin/widgets.php:692 .././admin/widgets.php:712
777
+ #: .././admin/widgets.php:835 .././admin/widgets.php:838
778
+ #: .././admin/widgets.php:946 .././admin/widgets.php:965
779
+ #: .././front/item-reports.php:101 .././front/item-reports.php:120
780
+ #: .././front/widgets.php:104
781
+ msgid "This report is unavailable"
782
+ msgstr ""
783
+
784
+ #: .././admin/setup.php:222
785
+ msgid "report generated by"
786
+ msgstr ""
787
+
788
+ #: .././admin/setup.php:260
789
+ #, fuzzy
790
+ msgid "Settings"
791
+ msgstr "Ustawienia"
792
+
793
+ #: .././admin/widgets.php:27 .././front/widgets.php:14
794
+ #, fuzzy
795
+ msgid "Google Analytics Dashboard"
796
+ msgstr "Pulpit Google Analytics"
797
+
798
+ #: .././admin/widgets.php:38
799
+ #, fuzzy
800
+ msgid "This plugin needs an authorization:"
801
+ msgstr "Ta wtyczka wymaga autoryzacji:"
802
+
803
+ #: .././admin/widgets.php:72
804
+ #, fuzzy
805
+ msgid "Something went wrong while retrieving profiles list."
806
+ msgstr "Coś poszło nie tak podczas pobierania listy profili."
807
+
808
+ #: .././admin/widgets.php:72
809
+ #, fuzzy
810
+ msgid "More details"
811
+ msgstr "Więcej szczegółów"
812
+
813
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
814
+ #, fuzzy
815
+ msgid "An admin should asign a default Google Analytics Profile."
816
+ msgstr "Administrator poiwnien ustawić domyślny profil Google Analytics."
817
+
818
+ #: .././admin/widgets.php:85 .././admin/widgets.php:96
819
+ #, fuzzy
820
+ msgid "Select Domain"
821
+ msgstr "Wybierz domenę"
822
+
823
+ #: .././admin/widgets.php:101
824
+ #, fuzzy
825
+ msgid ""
826
+ "Something went wrong while retrieving property data. You need to create and "
827
+ "properly configure a Google Analytics account:"
828
+ msgstr ""
829
+ "Coś poszło nie tak podczas pobierania danych. Musisz stworzyc i odpowiednio "
830
+ "skonfigurować konto Google Analytics:"
831
+
832
+ #: .././admin/widgets.php:101
833
+ #, fuzzy
834
+ msgid "Find out more!"
835
+ msgstr "Dowiedz sie więcej!"
836
+
837
+ #: .././admin/widgets.php:122
838
+ #, fuzzy
839
+ msgid "Real-Time"
840
+ msgstr "Czas rzeczywisty"
841
+
842
+ #: .././admin/widgets.php:129 .././front/widgets.php:71
843
+ #: .././front/widgets.php:177
844
+ #, fuzzy
845
+ msgid "Last 14 Days"
846
+ msgstr "Ostatnie 14 dni"
847
+
848
+ #: .././admin/widgets.php:139 .././admin/widgets.php:882
849
+ #: .././front/widgets.php:40 .././tools/gapi.php:387 .././tools/gapi.php:548
850
+ #: .././tools/gapi.php:594 .././tools/gapi.php:658 .././tools/gapi.php:768
851
+ #: .././tools/gapi.php:809 .././tools/gapi.php:905
852
+ msgid "Sessions"
853
+ msgstr ""
854
+
855
+ #: .././admin/widgets.php:150 .././tools/gapi.php:502
856
+ #, fuzzy
857
+ msgid "Pages"
858
+ msgstr "pokaż najlepsze strony"
859
+
860
+ #: .././admin/widgets.php:244 .././admin/widgets.php:484
861
+ #, fuzzy
862
+ msgid "REFERRAL"
863
+ msgstr "REFERUJĄCY"
864
+
865
+ #: .././admin/widgets.php:248 .././admin/widgets.php:485
866
+ #, fuzzy
867
+ msgid "ORGANIC"
868
+ msgstr "ORGANICZNE"
869
+
870
+ #: .././admin/widgets.php:252 .././admin/widgets.php:372
871
+ #: .././admin/widgets.php:486
872
+ #, fuzzy
873
+ msgid "SOCIAL"
874
+ msgstr "SPOŁECZNE"
875
+
876
+ #: .././admin/widgets.php:256 .././admin/widgets.php:375
877
+ #: .././admin/widgets.php:487
878
+ msgid "CAMPAIGN"
879
+ msgstr ""
880
+
881
+ #: .././admin/widgets.php:260 .././admin/widgets.php:378
882
+ #: .././admin/widgets.php:490
883
+ #, fuzzy
884
+ msgid "DIRECT"
885
+ msgstr "BEZPOŚREDNIE"
886
+
887
+ #: .././admin/widgets.php:264 .././admin/widgets.php:491
888
+ #, fuzzy
889
+ msgid "NEW"
890
+ msgstr "NOWE"
891
+
892
+ #: .././admin/widgets.php:366
893
+ #, fuzzy
894
+ msgid "REFERRALS"
895
+ msgstr "REFERUJĄCY"
896
+
897
+ #: .././admin/widgets.php:369
898
+ #, fuzzy
899
+ msgid "KEYWORDS"
900
+ msgstr "SŁOWA KLUCZOWE"
901
+
902
+ #: .././front/item-reports.php:130
903
+ #, fuzzy
904
+ msgid "Views vs UniqueViews"
905
+ msgstr "Odsłon vs Odsłon Unikalnych"
906
+
907
+ #: .././front/item-reports.php:180
908
  msgid "Google Analytics Reports"
909
  msgstr ""
910
 
911
  #: .././front/widgets.php:15
912
+ #, fuzzy
913
  msgid "Will display your google analytics stats in a widget"
914
+ msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
915
 
916
+ #: .././front/widgets.php:40 .././tools/gapi.php:809
917
+ #, fuzzy
918
  msgid "trend"
919
+ msgstr "\\' trend"
920
 
921
+ #: .././front/widgets.php:127
922
+ #, fuzzy
923
  msgid "Period:"
924
+ msgstr "Okres:"
925
 
926
+ #: .././front/widgets.php:127
927
  msgid "Sessions:"
928
  msgstr ""
929
 
930
+ #: .././front/widgets.php:131
931
+ #, fuzzy
932
  msgid "generated by"
933
+ msgstr "wygenerowane przez"
934
 
935
+ #: .././front/widgets.php:141
936
+ #, fuzzy
937
  msgid "Google Analytics Stats"
938
+ msgstr "Statystyki Google Analytics"
939
 
940
+ #: .././front/widgets.php:148
941
+ #, fuzzy
942
  msgid "Title:"
943
+ msgstr "Tytuł:"
944
 
945
+ #: .././front/widgets.php:155
946
+ #, fuzzy
947
  msgid "Display:"
948
+ msgstr "Wyświetlenie:"
949
 
950
+ #: .././front/widgets.php:159
951
+ #, fuzzy
952
  msgid "Chart & Totals"
953
+ msgstr "Wykres & Podsumowania"
954
 
955
+ #: .././front/widgets.php:160
956
+ #, fuzzy
957
  msgid "Chart"
958
+ msgstr "Wykres"
959
 
960
+ #: .././front/widgets.php:161
961
+ #, fuzzy
962
  msgid "Totals"
963
+ msgstr "Podsumowania"
964
 
965
+ #: .././front/widgets.php:165
966
  msgid "Anonymize stats:"
967
  msgstr ""
968
 
969
+ #: .././front/widgets.php:172
970
+ #, fuzzy
971
  msgid "Stats for:"
972
+ msgstr "Statystyki dla:"
973
 
974
+ #: .././front/widgets.php:182
975
+ #, fuzzy
976
  msgid "Give credits:"
977
+ msgstr "Podziękuj:"
978
 
979
+ #: .././tools/gapi.php:128
980
+ #, fuzzy
981
  msgid "Use this link to get your access code:"
982
+ msgstr "Użyj tego linku, aby uzyskać kod dostępu:"
983
 
984
+ #: .././tools/gapi.php:128
985
+ #, fuzzy
986
  msgid "Get Access Code"
987
+ msgstr "Zdobądź Kod Dostępu"
988
 
989
+ #: .././tools/gapi.php:133 .././tools/gapi.php:137
990
  msgid "Use the red link to get your access code!"
991
  msgstr ""
992
 
993
+ #: .././tools/gapi.php:133
994
+ #, fuzzy
995
  msgid "Access Code:"
996
+ msgstr "Kod Dostępu:"
997
 
998
+ #: .././tools/gapi.php:145
999
+ #, fuzzy
1000
  msgid "Save Access Code"
1001
+ msgstr "Zapisz Kod Dostępu"
1002
 
1003
+ #: .././tools/gapi.php:381
1004
+ #, fuzzy
1005
  msgid "Organic Searches"
1006
+ msgstr "Wyszukiwania organiczne"
1007
+
1008
+ #: .././tools/gapi.php:384
1009
+ msgid "Unique Page Views"
1010
  msgstr ""
1011
 
1012
+ #: .././tools/gapi.php:392
1013
+ #, fuzzy
1014
  msgid "Hour"
1015
+ msgstr "Godzina"
1016
 
1017
+ #: .././tools/gapi.php:395 .././tools/gapi.php:808 .././tools/gapi.php:860
1018
+ #, fuzzy
1019
  msgid "Date"
1020
+ msgstr "Data"
1021
 
1022
+ #: .././tools/gapi.php:503 .././tools/gapi.php:861
1023
+ #, fuzzy
1024
  msgid "Views"
1025
+ msgstr "Odsłon"
1026
 
1027
+ #: .././tools/gapi.php:622
1028
  msgid "Countries"
1029
  msgstr ""
1030
 
1031
+ #: .././tools/gapi.php:632
1032
  msgid "Cities from"
1033
  msgstr ""
1034
 
1035
+ #: .././tools/gapi.php:704
1036
  msgid "Channels"
1037
  msgstr ""
1038
 
1039
+ #: .././tools/gapi.php:767
1040
+ #, fuzzy
1041
  msgid "Type"
1042
+ msgstr "Typ"
1043
 
1044
+ #: .././tools/gapi.php:862
1045
+ #, fuzzy
1046
  msgid "UniqueViews"
1047
+ msgstr "Odsłon Unikalnych"
1048
 
1049
  #~ msgid ""
1050
  #~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
readme.txt CHANGED
@@ -2,18 +2,18 @@
2
  Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
  Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics widget,tracking,realtime,wpmu,multisite
5
- Requires at least: 3.0
6
- Tested up to: 4.1.1
7
- Stable tag: 4.4.7
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.
12
 
13
  == Description ==
14
- Using a widget, [Google Analytics Dashboard](https://deconf.com/google-analytics-dashboard-wordpress/) displays detailed analytics info and statistics about: number of visits (sessions), number of visitors (users), bounce rates, organic searches, pages per visit directly on your WordPress Dashboard.
15
 
16
- Authorized users can also view statistics like views, unique views and searches, on frontend, at the end of each article.
17
 
18
  > <strong>Google Analytics Dashboard on GitHub</strong><br>
19
  > You can submit pull requests, feature requests or bugs on [Google Analytics Dashboard](https://github.com/deconf/Google-Analytics-Dashboard-for-WP) repository.
@@ -28,7 +28,7 @@ Google Analytics reports, in real-time, on your dashboard screen:
28
 
29
  = Google Analytics Reports =
30
 
31
- The reports you need, in your dashboard and on site's frontend:
32
 
33
  - you can access all websites statistics in a single widget (websites within same Google Account)
34
  - option to choose a default color for your charts, graphs and maps
@@ -36,11 +36,13 @@ The reports you need, in your dashboard and on site's frontend:
36
  - location reports, displaying visitors by country on a Geo Map and in a table chart
37
  - local websites and business have an option to display cities, instead of countries, on a regional map and in a table chart
38
  - traffic overview reports with details about acquisition channels, social networks, search engines, traffic mediums and visitor type
39
- - user access level settings for Backend statistics and analytics reports
40
- - user access level settings for Frontend analytics data and reports
41
  - option to display Google Analytics statistics on frontend, at the end of each article
42
  - frontend widget with website's analytics stats and analytics data anonymization feature
43
- - localization support, a POT file is available for translations.
 
 
 
44
 
45
  = Google Analytics Tracking =
46
 
@@ -75,7 +77,7 @@ Install the Google Analytics tracking code in less than a minute and customize i
75
 
76
  = Translations =
77
 
78
- Google Analytics Dashboard has been translated into the following languages: Arabic, English, French, German, Hungarian, Italian, Polish, Portuguese, Spanish
79
 
80
  = Further reading and info =
81
 
@@ -96,11 +98,15 @@ The documentation, tutorials and a short demo is available here: [Google Analyti
96
 
97
  == Frequently Asked Questions ==
98
 
99
- = I have several WordPress websites, do I need an API Project for each one? =
100
 
101
- No, you don't. You can use the same API Project (same API Key, Client Secret and Client ID) for all your websites.
 
 
102
 
103
- = Some settings are missing in your video tutorial ... =
 
 
104
 
105
  We are constantly improving our plugin, sometimes the video tutorial may be a little outdated.
106
 
@@ -126,20 +132,39 @@ This plugin it's released under the GPLv2, you can use it free of charge on your
126
 
127
  == Changelog ==
128
 
129
- = 4.4.7 =
130
- - Bugfix: fatal error in plugin settings screen, under certain circumstances
131
- - Bugfix: fix refresh interval for backend stats
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
132
 
 
 
 
 
133
  = 4.4.6 =
134
- - Bugfix: maintain compatibility with WordPress 3.0+
135
 
136
  = 4.4.5 =
137
  - Enhancement: GAPI requests optimization
138
  - Enhancement: server responses improvements
139
  - Enhancement: filter data through query options
140
- - Bugfix: additional checks before displaying an error
141
- - Bugfix: wrong error displayed on IE
142
- - Bugfix: set correct Content-Type before sending responses
143
 
144
  = 4.4.4 =
145
  - Bug Fix: end tag missing on error message
2
  Contributors: deconf
3
  Donate link: https://deconf.com/donate/
4
  Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics widget,tracking,realtime,wpmu,multisite
5
+ Requires at least: 3.5
6
+ Tested up to: 4.2
7
+ Stable tag: 4.5
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
11
  Displays Google Analytics reports and real-time statistics in your WordPress Dashboard. Inserts the latest tracking code in every page of your site.
12
 
13
  == Description ==
14
+ Using a widget, [Google Analytics Dashboard](https://deconf.com/google-analytics-dashboard-wordpress/) displays detailed analytics data and reports about: number of sessions, number of visitors (users), page views, bounce rates, organic searches, pages per visit directly on your WordPress Dashboard.
15
 
16
+ This plugin also inserts the latest version of the Google Analytics tracking code in every page of your site. The tracking code is fully customizable through options and hooks.
17
 
18
  > <strong>Google Analytics Dashboard on GitHub</strong><br>
19
  > You can submit pull requests, feature requests or bugs on [Google Analytics Dashboard](https://github.com/deconf/Google-Analytics-Dashboard-for-WP) repository.
28
 
29
  = Google Analytics Reports =
30
 
31
+ The reports you need, in your dashboard, in your Posts and Pages List, and on site's frontend:
32
 
33
  - you can access all websites statistics in a single widget (websites within same Google Account)
34
  - option to choose a default color for your charts, graphs and maps
36
  - location reports, displaying visitors by country on a Geo Map and in a table chart
37
  - local websites and business have an option to display cities, instead of countries, on a regional map and in a table chart
38
  - traffic overview reports with details about acquisition channels, social networks, search engines, traffic mediums and visitor type
39
+ - per post or page analytics reports in Posts List and Pages List
 
40
  - option to display Google Analytics statistics on frontend, at the end of each article
41
  - frontend widget with website's analytics stats and analytics data anonymization feature
42
+ - localization support, a POT file is available for translations
43
+ - user access level settings for Backend statistics and analytics reports
44
+ - user access level settings for Frontend analytics data and reports
45
+ - options to disable certain analytics reports from backend or frontend
46
 
47
  = Google Analytics Tracking =
48
 
77
 
78
  = Translations =
79
 
80
+ Google Analytics Dashboard has been translated into the following languages: Arabic, Dutch, English, French, German, Hungarian, Italian, Japanese, Polish, Portuguese, and Spanish.
81
 
82
  = Further reading and info =
83
 
98
 
99
  == Frequently Asked Questions ==
100
 
101
+ = Do I have to insert the Google Analytics tracking code manually? =
102
 
103
+ No, once the plugin is authorized and a default domain is selected the Google Analytics tracking code is automatically inserted in all webpages.
104
+
105
+ = I have an error =
106
 
107
+ Here's a list with common errors and how to fix them [Errors in Google Analytics Dashboard](https://deconf.com/error-codes-in-google-analytics-dashboard-for-wordpress/)
108
+
109
+ = Some settings are missing in the video tutorial =
110
 
111
  We are constantly improving our plugin, sometimes the video tutorial may be a little outdated.
112
 
132
 
133
  == Changelog ==
134
 
135
+ = 4.5 =
136
+ - Requirements: WordPress 3.5 and above
137
+ - Enhancement: automatic updates for minor versions (security and maintenance releases)
138
+ - Enhancement: improvements while enqueuing styles & scripts
139
+ - Enhancement: reports per post in Post List (new feature)
140
+ - Enhancement: reports per page in Page List (new feature)
141
+ - Enhancement: gadwp_backenditem_uri allows URI corrections for backend item reports
142
+ - Enhancement: option to enable/disable the custom dashboard widget
143
+ - Enhancement: Japanese translation, translated by [塀シスター](https://plus.google.com/u/0/+tk072110)
144
+ - Enhancement: Dutch translation, translated by [Willem-Jan Meerkerk](https://github.com/WillemJann)
145
+ - Enhancement: Portuguese (Brazil) translation, updated by [Treed Box](http://treedbox.com.br/)
146
+ - Enhancement: UI improvements props by [Paal Joachim Romdahl](https://github.com/paaljoachim)
147
+ - Bug Fix: Arabic translation not loading properly
148
+ - Bug Fix: initialize time-shift for all API calls
149
+ - Bug Fix: include GAPI only when a API call is made
150
+ - Bug Fix: keep the percentage numeric while anonymizing data
151
+ - Bug Fix: add PHP 5.3 as a requirement when forcing IPv4
152
+ - Bug Fix: typo fix by [Andrew Minion](https://github.com/macbookandrew)
153
 
154
+ = 4.4.7 =
155
+ - Bug Fix: fatal error in plugin settings screen, under certain circumstances
156
+ - Bug Fix: fix refresh interval for backend stats
157
+
158
  = 4.4.6 =
159
+ - Bug Fix: maintain compatibility with WordPress 3.0+
160
 
161
  = 4.4.5 =
162
  - Enhancement: GAPI requests optimization
163
  - Enhancement: server responses improvements
164
  - Enhancement: filter data through query options
165
+ - Bug Fix: additional checks before displaying an error
166
+ - Bug Fix: wrong error displayed on IE
167
+ - Bug Fix: set correct Content-Type before sending responses
168
 
169
  = 4.4.4 =
170
  - Bug Fix: end tag missing on error message
tools/gapi.php CHANGED
@@ -10,7 +10,6 @@ if (! class_exists('GADASH_GAPI')) {
10
  final class GADASH_GAPI
11
  {
12
  public $client, $service;
13
- public $country_codes;
14
  public $timeshift;
15
  public $error_timeout;
16
  private $managequota;
@@ -24,7 +23,7 @@ if (! class_exists('GADASH_GAPI')) {
24
  $config->setCacheClass('Google_Cache_Null');
25
  if (function_exists('curl_version')) {
26
  $curlversion = curl_version();
27
- if (isset($curlversion['version']) and version_compare($curlversion['version'], '7.10.8') >= 0 and defined('GADWP_IP_VERSION') and GADWP_IP_VERSION) {
28
  $config->setClassConfig('Google_IO_Curl', array(
29
  'options' => array(
30
  CURLOPT_IPRESOLVE => GADWP_IP_VERSION
@@ -51,7 +50,7 @@ if (! class_exists('GADASH_GAPI')) {
51
  $this->service = new Google_Service_Analytics($this->client);
52
  if ($GADASH_Config->options['ga_dash_token']) {
53
  $token = $GADASH_Config->options['ga_dash_token'];
54
- $token = $this->ga_dash_refresh_token();
55
  if ($token) {
56
  $this->client->setAccessToken($token);
57
  }
@@ -83,7 +82,7 @@ if (! class_exists('GADASH_GAPI')) {
83
  return FALSE;
84
  }
85
  if (isset($errors[1][0]['reason']) and ($errors[1][0]['reason'] == 'invalidCredentials' or $errors[1][0]['reason'] == 'authError' or $errors[1][0]['reason'] == 'insufficientPermissions' or $errors[1][0]['reason'] == 'required' or $errors[1][0]['reason'] == 'keyExpired')) {
86
- $this->ga_dash_reset_token(false);
87
  return TRUE;
88
  }
89
  if (isset($errors[1][0]['reason']) and ($errors[1][0]['reason'] == 'userRateLimitExceeded' or $errors[1][0]['reason'] == 'quotaExceeded')) { // allow retry
@@ -202,7 +201,7 @@ if (! class_exists('GADASH_GAPI')) {
202
  *
203
  * @return token|boolean
204
  */
205
- private function ga_dash_refresh_token()
206
  {
207
  global $GADASH_Config;
208
  try {
@@ -255,7 +254,7 @@ if (! class_exists('GADASH_GAPI')) {
255
  * @param
256
  * $all
257
  */
258
- function ga_dash_reset_token($all = true)
259
  {
260
  global $GADASH_Config;
261
  if (is_multisite() && $GADASH_Config->options['ga_dash_network']) {
@@ -313,9 +312,6 @@ if (! class_exists('GADASH_GAPI')) {
313
  } else {
314
  $timeouts = 1;
315
  }
316
- if (strlen($serial) > 44) {
317
- $serial = substr($serial, 0, 43); // keep a safe length
318
- }
319
  $transient = get_transient($serial);
320
  if ($transient === false) {
321
  if ($this->gapi_errors_handler()) {
@@ -344,6 +340,18 @@ if (! class_exists('GADASH_GAPI')) {
344
  }
345
  }
346
 
 
 
 
 
 
 
 
 
 
 
 
 
347
  /**
348
  * Analytics data for backend reports (Admin Widget main report)
349
  *
@@ -357,7 +365,7 @@ if (! class_exists('GADASH_GAPI')) {
357
  * $query
358
  * @return array|int
359
  */
360
- function get_mainreport($projectId, $from, $to, $query)
361
  {
362
  switch ($query) {
363
  case 'users':
@@ -372,6 +380,9 @@ if (! class_exists('GADASH_GAPI')) {
372
  case 'organicSearches':
373
  $title = __("Organic Searches", 'ga-dash');
374
  break;
 
 
 
375
  default:
376
  $title = __("Sessions", 'ga-dash');
377
  }
@@ -383,15 +394,15 @@ if (! class_exists('GADASH_GAPI')) {
383
  $dimensions = 'ga:date,ga:dayOfWeekName';
384
  $dayorhour = __("Date", 'ga-dash');
385
  }
386
- $serial = 'gadash_qr2' . str_replace(array(
387
- 'ga:',
388
- ',',
389
- '-'
390
- ), "", $projectId . $from . $metrics);
391
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
392
  'dimensions' => $dimensions,
393
  'quotaUser' => $this->managequota . 'p' . $projectId
394
- ), $serial);
 
 
 
 
 
395
  if (is_numeric($data)) {
396
  return $data;
397
  }
@@ -430,14 +441,20 @@ if (! class_exists('GADASH_GAPI')) {
430
  * $to
431
  * @return array|int
432
  */
433
- function get_bottomstats($projectId, $from, $to)
434
  {
435
- $metrics = 'ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession';
436
- $serial = 'gadash_qr3' . $projectId . $from;
437
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
438
  'dimensions' => NULL,
439
  'quotaUser' => $this->managequota . 'p' . $projectId
440
- ), $serial);
 
 
 
 
 
 
 
 
441
  if (is_numeric($data)) {
442
  if ($data == - 21) {
443
  return array_fill(0, 6, 0);
@@ -463,16 +480,20 @@ if (! class_exists('GADASH_GAPI')) {
463
  * $to
464
  * @return array|int
465
  */
466
- function get_contentpages($projectId, $from, $to)
467
  {
468
  $metrics = 'ga:pageviews';
469
  $dimensions = 'ga:pageTitle';
470
- $serial = 'gadash_qr4' . $projectId . $from;
471
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
472
  'dimensions' => $dimensions,
473
  'sort' => '-ga:pageviews',
474
  'quotaUser' => $this->managequota . 'p' . $projectId
475
- ), $serial);
 
 
 
 
 
476
  if (is_numeric($data)) {
477
  return $data;
478
  }
@@ -502,17 +523,22 @@ if (! class_exists('GADASH_GAPI')) {
502
  * $to
503
  * @return array|int
504
  */
505
- function get_referrers($projectId, $from, $to)
506
  {
507
  $metrics = 'ga:sessions';
508
  $dimensions = 'ga:source';
509
- $serial = 'gadash_qr5' . $projectId . $from;
510
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
511
  'dimensions' => $dimensions,
512
  'sort' => '-ga:sessions',
513
- 'filters' => 'ga:medium==referral',
514
  'quotaUser' => $this->managequota . 'p' . $projectId
515
- ), $serial);
 
 
 
 
 
 
 
516
  if (is_numeric($data)) {
517
  return $data;
518
  }
@@ -542,17 +568,22 @@ if (! class_exists('GADASH_GAPI')) {
542
  * $to
543
  * @return array|int
544
  */
545
- function get_searches($projectId, $from, $to)
546
  {
547
  $metrics = 'ga:sessions';
548
  $dimensions = 'ga:keyword';
549
- $serial = 'gadash_qr6' . $projectId . $from;
550
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
551
  'dimensions' => $dimensions,
552
  'sort' => '-ga:sessions',
553
- 'filters' => 'ga:keyword!=(not set)',
554
  'quotaUser' => $this->managequota . 'p' . $projectId
555
- ), $serial);
 
 
 
 
 
 
 
556
  if (is_numeric($data)) {
557
  return $data;
558
  }
@@ -583,33 +614,38 @@ if (! class_exists('GADASH_GAPI')) {
583
  * $to
584
  * @return array|int
585
  */
586
- function get_locations($projectId, $from, $to)
587
  {
588
  global $GADASH_Config;
589
  $metrics = 'ga:sessions';
590
  $options = "";
591
  $title = __("Countries", 'ga-dash');
592
- $serial = 'gadash_qr7' . $projectId . $from;
593
  $dimensions = 'ga:country';
594
- $filters = "";
 
 
 
 
 
 
 
 
 
 
595
  $options = array(
596
  'dimensions' => $dimensions,
597
  'sort' => '-ga:sessions',
598
  'quotaUser' => $this->managequota . 'p' . $projectId
599
  );
600
- if ($GADASH_Config->options['ga_target_geomap']) {
601
- $dimensions = 'ga:city, ga:region';
602
- $this->getcountrycodes();
603
- if (isset($this->country_codes[$GADASH_Config->options['ga_target_geomap']])) {
604
- $filters = 'ga:country==' . ($this->country_codes[$GADASH_Config->options['ga_target_geomap']]);
605
- $title = __("Cities from", 'ga-dash') . ' ' . __($this->country_codes[$GADASH_Config->options['ga_target_geomap']]);
606
- $serial = 'gadash_qr7' . $projectId . $from . $GADASH_Config->options['ga_target_geomap'];
607
- $options = array(
608
- 'dimensions' => $dimensions,
609
- 'filters' => $filters,
610
- 'sort' => '-ga:sessions',
611
- 'quotaUser' => $this->managequota . 'p' . $projectId
612
- );
613
  }
614
  }
615
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
@@ -649,30 +685,34 @@ if (! class_exists('GADASH_GAPI')) {
649
  * $to
650
  * @return array|int
651
  */
652
- function get_trafficchannels($projectId, $from, $to)
653
  {
654
  $metrics = 'ga:sessions';
655
  $dimensions = 'ga:channelGrouping';
656
- $serial = 'gadash_qr8' . $projectId . $from;
657
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
658
  'dimensions' => $dimensions,
659
  'quotaUser' => $this->managequota . 'p' . $projectId
660
- ), $serial);
 
 
 
 
 
661
  if (is_numeric($data)) {
662
  return $data;
663
  }
664
  $title = __("Channels", 'ga-dash');
665
  $ga_dash_data = array(
666
  array(
667
- '<div style=\\"color:black; font-size:1.1em\\">' . $title . '</div><div style=\\"color:darkblue; font-size:1.2em\\">' . (int) $data['totalsForAllResults']["ga:sessions"] . '</div>',
668
  ""
669
  )
670
  );
671
  foreach ($data->getRows() as $row) {
672
  $shrink = explode(" ", $row[0]);
673
  $ga_dash_data[] = array(
674
- '<div style=\\"color:black; font-size:1.1em\\">' . esc_html($shrink[0]) . '</div><div style=\\"color:darkblue; font-size:1.2em\\">' . (int) $row[1] . '</div>',
675
- '<div style=\\"color:black; font-size:1.1em\\">' . $title . '</div><div style=\\"color:darkblue; font-size:1.2em\\">' . (int) $data['totalsForAllResults']["ga:sessions"] . '</div>'
676
  );
677
  }
678
  return $ga_dash_data;
@@ -691,23 +731,33 @@ if (! class_exists('GADASH_GAPI')) {
691
  * $query
692
  * @return array|int
693
  */
694
- function get_trafficdetails($projectId, $from, $to, $query)
695
  {
696
  $metrics = 'ga:sessions';
697
  $dimensions = 'ga:' . $query;
 
698
  if ($query == 'source') {
699
  $options = array(
700
  'dimensions' => $dimensions,
701
- 'filters' => 'ga:medium==organic;ga:keyword!=(not set)',
702
  'quotaUser' => $this->managequota . 'p' . $projectId
703
  );
 
 
 
 
 
704
  } else {
705
  $options = array(
706
  'dimensions' => $dimensions,
707
  'quotaUser' => $this->managequota . 'p' . $projectId
708
  );
 
 
 
 
 
709
  }
710
- $serial = 'gadash_qr10' . $projectId . $from . $query;
711
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
712
  if (is_numeric($data)) {
713
  return $data;
@@ -744,15 +794,12 @@ if (! class_exists('GADASH_GAPI')) {
744
  $to = 'yesterday';
745
  $metrics = 'ga:sessions';
746
  $dimensions = 'ga:date,ga:dayOfWeekName';
747
- $serial = 'gadash_qr2' . str_replace(array(
748
- 'ga:',
749
- ',',
750
- '-'
751
- ), "", $projectId . $from . $metrics);
752
- $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
753
  'dimensions' => $dimensions,
754
  'quotaUser' => $this->managequota . 'p' . $projectId
755
- ), $serial);
 
 
756
  if (is_numeric($data)) {
757
  return $data;
758
  }
@@ -772,7 +819,7 @@ if (! class_exists('GADASH_GAPI')) {
772
  foreach ($data->getRows() as $row) {
773
  $ga_dash_data[] = array(
774
  ucfirst(esc_html((__($row[1])))) . ', ' . esc_html(substr_replace(substr_replace($row[0], "-", 4, 0), "-", 7, 0)),
775
- ($anonim ? str_replace(",", ".", round($row[2] * 100 / $max, 2)) : (int) $row[2])
776
  );
777
  }
778
  $totals = $data->getTotalsForAllResults();
@@ -799,7 +846,7 @@ if (! class_exists('GADASH_GAPI')) {
799
  $to = 'yesterday';
800
  $metrics = 'ga:pageviews,ga:uniquePageviews';
801
  $dimensions = 'ga:date,ga:dayOfWeekName';
802
- $serial = 'gadash_qr21' . $post_id . 'stats';
803
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
804
  'dimensions' => $dimensions,
805
  'filters' => 'ga:pagePath==' . $page_url,
@@ -842,7 +889,7 @@ if (! class_exists('GADASH_GAPI')) {
842
  $to = 'yesterday';
843
  $metrics = 'ga:sessions';
844
  $dimensions = 'ga:keyword';
845
- $serial = 'gadash_qr22' . $post_id . 'search';
846
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
847
  'dimensions' => $dimensions,
848
  'sort' => '-ga:sessions',
@@ -874,12 +921,12 @@ if (! class_exists('GADASH_GAPI')) {
874
  * $projectId
875
  * @return array|int
876
  */
877
- function gadash_realtime_data($projectId)
878
  {
879
  $metrics = 'rt:activeUsers';
880
  $dimensions = 'rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle';
881
  try {
882
- $serial = "gadash_realtimecache_" . $projectId;
883
  $transient = get_transient($serial);
884
  if ($transient === false) {
885
  if ($this->gapi_errors_handler()) {
@@ -916,9 +963,46 @@ if (! class_exists('GADASH_GAPI')) {
916
  return $ga_dash_data;
917
  }
918
 
919
- public function getcountrycodes()
920
  {
921
- include_once 'iso3166.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
922
  }
923
  }
924
  }
10
  final class GADASH_GAPI
11
  {
12
  public $client, $service;
 
13
  public $timeshift;
14
  public $error_timeout;
15
  private $managequota;
23
  $config->setCacheClass('Google_Cache_Null');
24
  if (function_exists('curl_version')) {
25
  $curlversion = curl_version();
26
+ if (isset($curlversion['version']) and (version_compare(PHP_VERSION, '5.3.0') >= 0) and version_compare($curlversion['version'], '7.10.8') >= 0 and defined('GADWP_IP_VERSION') and GADWP_IP_VERSION) {
27
  $config->setClassConfig('Google_IO_Curl', array(
28
  'options' => array(
29
  CURLOPT_IPRESOLVE => GADWP_IP_VERSION
50
  $this->service = new Google_Service_Analytics($this->client);
51
  if ($GADASH_Config->options['ga_dash_token']) {
52
  $token = $GADASH_Config->options['ga_dash_token'];
53
+ $token = $this->refresh_token();
54
  if ($token) {
55
  $this->client->setAccessToken($token);
56
  }
82
  return FALSE;
83
  }
84
  if (isset($errors[1][0]['reason']) and ($errors[1][0]['reason'] == 'invalidCredentials' or $errors[1][0]['reason'] == 'authError' or $errors[1][0]['reason'] == 'insufficientPermissions' or $errors[1][0]['reason'] == 'required' or $errors[1][0]['reason'] == 'keyExpired')) {
85
+ $this->reset_token(false);
86
  return TRUE;
87
  }
88
  if (isset($errors[1][0]['reason']) and ($errors[1][0]['reason'] == 'userRateLimitExceeded' or $errors[1][0]['reason'] == 'quotaExceeded')) { // allow retry
201
  *
202
  * @return token|boolean
203
  */
204
+ private function refresh_token()
205
  {
206
  global $GADASH_Config;
207
  try {
254
  * @param
255
  * $all
256
  */
257
+ function reset_token($all = true)
258
  {
259
  global $GADASH_Config;
260
  if (is_multisite() && $GADASH_Config->options['ga_dash_network']) {
312
  } else {
313
  $timeouts = 1;
314
  }
 
 
 
315
  $transient = get_transient($serial);
316
  if ($transient === false) {
317
  if ($this->gapi_errors_handler()) {
340
  }
341
  }
342
 
343
+ /**
344
+ * Generates serials for transients
345
+ *
346
+ * @param
347
+ * $serial
348
+ * @return string
349
+ */
350
+ function get_serial($serial)
351
+ {
352
+ return sprintf("%u", crc32($serial));
353
+ }
354
+
355
  /**
356
  * Analytics data for backend reports (Admin Widget main report)
357
  *
365
  * $query
366
  * @return array|int
367
  */
368
+ function get_mainreport($projectId, $from, $to, $query, $filter = '')
369
  {
370
  switch ($query) {
371
  case 'users':
380
  case 'organicSearches':
381
  $title = __("Organic Searches", 'ga-dash');
382
  break;
383
+ case 'uniquePageviews':
384
+ $title = __("Unique Page Views", 'ga-dash');
385
+ break;
386
  default:
387
  $title = __("Sessions", 'ga-dash');
388
  }
394
  $dimensions = 'ga:date,ga:dayOfWeekName';
395
  $dayorhour = __("Date", 'ga-dash');
396
  }
397
+ $options = array(
 
 
 
 
 
398
  'dimensions' => $dimensions,
399
  'quotaUser' => $this->managequota . 'p' . $projectId
400
+ );
401
+ if ($filter) {
402
+ $options['filters'] = 'ga:pagePath==' . $filter;
403
+ }
404
+ $serial = 'gadash_qr2_' . $this->get_serial($projectId . $from . $metrics . $filter);
405
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
406
  if (is_numeric($data)) {
407
  return $data;
408
  }
441
  * $to
442
  * @return array|int
443
  */
444
+ function get_bottomstats($projectId, $from, $to, $filter = '')
445
  {
446
+ $options = array(
 
 
447
  'dimensions' => NULL,
448
  'quotaUser' => $this->managequota . 'p' . $projectId
449
+ );
450
+ if ($filter) {
451
+ $options['filters'] = 'ga:pagePath==' . $filter;
452
+ $metrics = 'ga:uniquePageviews,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession';
453
+ } else {
454
+ $metrics = 'ga:sessions,ga:users,ga:pageviews,ga:BounceRate,ga:organicSearches,ga:pageviewsPerSession';
455
+ }
456
+ $serial = 'gadash_qr3_' . $this->get_serial($projectId . $from . $filter);
457
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
458
  if (is_numeric($data)) {
459
  if ($data == - 21) {
460
  return array_fill(0, 6, 0);
480
  * $to
481
  * @return array|int
482
  */
483
+ function get_contentpages($projectId, $from, $to, $filter = '')
484
  {
485
  $metrics = 'ga:pageviews';
486
  $dimensions = 'ga:pageTitle';
487
+ $options = array(
 
488
  'dimensions' => $dimensions,
489
  'sort' => '-ga:pageviews',
490
  'quotaUser' => $this->managequota . 'p' . $projectId
491
+ );
492
+ if ($filter) {
493
+ $options['filters'] = 'ga:pagePath==' . $filter;
494
+ }
495
+ $serial = 'gadash_qr4_' . $this->get_serial($projectId . $from . $filter);
496
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
497
  if (is_numeric($data)) {
498
  return $data;
499
  }
523
  * $to
524
  * @return array|int
525
  */
526
+ function get_referrers($projectId, $from, $to, $filter = '')
527
  {
528
  $metrics = 'ga:sessions';
529
  $dimensions = 'ga:source';
530
+ $options = array(
 
531
  'dimensions' => $dimensions,
532
  'sort' => '-ga:sessions',
 
533
  'quotaUser' => $this->managequota . 'p' . $projectId
534
+ );
535
+ if ($filter) {
536
+ $options['filters'] = 'ga:medium==referral;ga:pagePath==' . $filter;
537
+ } else {
538
+ $options['filters'] = 'ga:medium==referral';
539
+ }
540
+ $serial = 'gadash_qr5_' . $this->get_serial($projectId . $from . $filter);
541
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
542
  if (is_numeric($data)) {
543
  return $data;
544
  }
568
  * $to
569
  * @return array|int
570
  */
571
+ function get_searches($projectId, $from, $to, $filter = '')
572
  {
573
  $metrics = 'ga:sessions';
574
  $dimensions = 'ga:keyword';
575
+ $options = array(
 
576
  'dimensions' => $dimensions,
577
  'sort' => '-ga:sessions',
 
578
  'quotaUser' => $this->managequota . 'p' . $projectId
579
+ );
580
+ if ($filter) {
581
+ $options['filters'] = 'ga:keyword!=(not set);ga:pagePath==' . $filter;
582
+ } else {
583
+ $options['filters'] = 'ga:keyword!=(not set)';
584
+ }
585
+ $serial = 'gadash_qr6_' . $this->get_serial($projectId . $from . $filter);
586
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
587
  if (is_numeric($data)) {
588
  return $data;
589
  }
614
  * $to
615
  * @return array|int
616
  */
617
+ function get_locations($projectId, $from, $to, $filter = '')
618
  {
619
  global $GADASH_Config;
620
  $metrics = 'ga:sessions';
621
  $options = "";
622
  $title = __("Countries", 'ga-dash');
623
+ $serial = 'gadash_qr7_' . $this->get_serial($projectId . $from . $filter);
624
  $dimensions = 'ga:country';
625
+ $local_filter = '';
626
+ if ($GADASH_Config->options['ga_target_geomap']) {
627
+ $dimensions = 'ga:city, ga:region';
628
+ $tools = new GADASH_Tools();
629
+ $tools->getcountrycodes();
630
+ if (isset($tools->country_codes[$GADASH_Config->options['ga_target_geomap']])) {
631
+ $local_filter = 'ga:country==' . ($tools->country_codes[$GADASH_Config->options['ga_target_geomap']]);
632
+ $title = __("Cities from", 'ga-dash') . ' ' . __($tools->country_codes[$GADASH_Config->options['ga_target_geomap']]);
633
+ $serial = 'gadash_qr7_' . $this->get_serial($projectId . $from . $GADASH_Config->options['ga_target_geomap'] . $filter);
634
+ }
635
+ }
636
  $options = array(
637
  'dimensions' => $dimensions,
638
  'sort' => '-ga:sessions',
639
  'quotaUser' => $this->managequota . 'p' . $projectId
640
  );
641
+ if ($filter) {
642
+ $options['filters'] = 'ga:pagePath==' . $filter;
643
+ if ($local_filter) {
644
+ $options['filters'] .= ';' . $local_filter;
645
+ }
646
+ } else {
647
+ if ($local_filter) {
648
+ $options['filters'] = $local_filter;
 
 
 
 
 
649
  }
650
  }
651
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
685
  * $to
686
  * @return array|int
687
  */
688
+ function get_trafficchannels($projectId, $from, $to, $filter = '')
689
  {
690
  $metrics = 'ga:sessions';
691
  $dimensions = 'ga:channelGrouping';
692
+ $options = array(
 
693
  'dimensions' => $dimensions,
694
  'quotaUser' => $this->managequota . 'p' . $projectId
695
+ );
696
+ if ($filter) {
697
+ $options['filters'] = 'ga:pagePath==' . $filter;
698
+ }
699
+ $serial = 'gadash_qr8_' . $this->get_serial($projectId . $from . $filter);
700
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
701
  if (is_numeric($data)) {
702
  return $data;
703
  }
704
  $title = __("Channels", 'ga-dash');
705
  $ga_dash_data = array(
706
  array(
707
+ '<div style="color:black; font-size:1.1em">' . $title . '</div><div style="color:darkblue; font-size:1.2em">' . (int) $data['totalsForAllResults']["ga:sessions"] . '</div>',
708
  ""
709
  )
710
  );
711
  foreach ($data->getRows() as $row) {
712
  $shrink = explode(" ", $row[0]);
713
  $ga_dash_data[] = array(
714
+ '<div style="color:black; font-size:1.1em">' . esc_html($shrink[0]) . '</div><div style="color:darkblue; font-size:1.2em">' . (int) $row[1] . '</div>',
715
+ '<div style="color:black; font-size:1.1em">' . $title . '</div><div style="color:darkblue; font-size:1.2em">' . (int) $data['totalsForAllResults']["ga:sessions"] . '</div>'
716
  );
717
  }
718
  return $ga_dash_data;
731
  * $query
732
  * @return array|int
733
  */
734
+ function get_trafficdetails($projectId, $from, $to, $query, $filter = '')
735
  {
736
  $metrics = 'ga:sessions';
737
  $dimensions = 'ga:' . $query;
738
+
739
  if ($query == 'source') {
740
  $options = array(
741
  'dimensions' => $dimensions,
 
742
  'quotaUser' => $this->managequota . 'p' . $projectId
743
  );
744
+ if ($filter) {
745
+ $options['filters'] = 'ga:medium==organic;ga:keyword!=(not set);ga:pagePath==' . $filter;
746
+ } else {
747
+ $options['filters'] = 'ga:medium==organic;ga:keyword!=(not set)';
748
+ }
749
  } else {
750
  $options = array(
751
  'dimensions' => $dimensions,
752
  'quotaUser' => $this->managequota . 'p' . $projectId
753
  );
754
+ if ($filter) {
755
+ $options['filters'] = 'ga:' . $query . '!=(not set);ga:pagePath==' . $filter;
756
+ } else {
757
+ $options['filters'] = 'ga:' . $query . '!=(not set)';
758
+ }
759
  }
760
+ $serial = 'gadash_qr10_' . $this->get_serial($projectId . $from . $query . $filter);
761
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
762
  if (is_numeric($data)) {
763
  return $data;
794
  $to = 'yesterday';
795
  $metrics = 'ga:sessions';
796
  $dimensions = 'ga:date,ga:dayOfWeekName';
797
+ $options = array(
 
 
 
 
 
798
  'dimensions' => $dimensions,
799
  'quotaUser' => $this->managequota . 'p' . $projectId
800
+ );
801
+ $serial = 'gadash_qr2_' . $this->get_serial($projectId . $from . $metrics);
802
+ $data = $this->handle_corereports($projectId, $from, $to, $metrics, $options, $serial);
803
  if (is_numeric($data)) {
804
  return $data;
805
  }
819
  foreach ($data->getRows() as $row) {
820
  $ga_dash_data[] = array(
821
  ucfirst(esc_html((__($row[1])))) . ', ' . esc_html(substr_replace(substr_replace($row[0], "-", 4, 0), "-", 7, 0)),
822
+ ($anonim ? round($row[2] * 100 / $max, 2) : (int) $row[2])
823
  );
824
  }
825
  $totals = $data->getTotalsForAllResults();
846
  $to = 'yesterday';
847
  $metrics = 'ga:pageviews,ga:uniquePageviews';
848
  $dimensions = 'ga:date,ga:dayOfWeekName';
849
+ $serial = 'gadash_qr21_' . $this->get_serial($post_id . 'stats');
850
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
851
  'dimensions' => $dimensions,
852
  'filters' => 'ga:pagePath==' . $page_url,
889
  $to = 'yesterday';
890
  $metrics = 'ga:sessions';
891
  $dimensions = 'ga:keyword';
892
+ $serial = 'gadash_qr22_' . $this->get_serial($post_id . 'search');
893
  $data = $this->handle_corereports($projectId, $from, $to, $metrics, array(
894
  'dimensions' => $dimensions,
895
  'sort' => '-ga:sessions',
921
  * $projectId
922
  * @return array|int
923
  */
924
+ function get_realtime_data($projectId)
925
  {
926
  $metrics = 'rt:activeUsers';
927
  $dimensions = 'rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle';
928
  try {
929
+ $serial = 'gadash_realtimecache_' . $this->get_serial($projectId);
930
  $transient = get_transient($serial);
931
  if ($transient === false) {
932
  if ($this->gapi_errors_handler()) {
963
  return $ga_dash_data;
964
  }
965
 
966
+ function get($projectId, $query, $from = false, $to = false, $filter = '')
967
  {
968
+ switch ($query) {
969
+ case 'referrers':
970
+ wp_send_json($this->get_referrers($projectId, $from, $to, $filter));
971
+ break;
972
+ case 'contentpages':
973
+ wp_send_json($this->get_contentpages($projectId, $from, $to, $filter));
974
+ break;
975
+ case 'locations':
976
+ wp_send_json($this->get_locations($projectId, $from, $to, $filter));
977
+ break;
978
+ case 'bottomstats':
979
+ wp_send_json($this->get_bottomstats($projectId, $from, $to, $filter));
980
+ break;
981
+ case 'trafficchannels':
982
+ wp_send_json($this->get_trafficchannels($projectId, $from, $to, $filter));
983
+ break;
984
+ case 'medium':
985
+ wp_send_json($this->get_trafficdetails($projectId, $from, $to, 'medium', $filter));
986
+ break;
987
+ case 'visitorType':
988
+ wp_send_json($this->get_trafficdetails($projectId, $from, $to, 'visitorType', $filter));
989
+ break;
990
+ case 'socialNetwork':
991
+ wp_send_json($this->get_trafficdetails($projectId, $from, $to, 'socialNetwork', $filter));
992
+ break;
993
+ case 'source':
994
+ wp_send_json($this->get_trafficdetails($projectId, $from, $to, 'source', $filter));
995
+ break;
996
+ case 'searches':
997
+ wp_send_json($this->get_searches($projectId, $from, $to, $filter));
998
+ break;
999
+ case 'realtime':
1000
+ wp_send_json($this->get_realtime_data($projectId));
1001
+ break;
1002
+ default:
1003
+ wp_send_json($this->get_mainreport($projectId, $from, $to, $query, $filter));
1004
+ break;
1005
+ }
1006
  }
1007
  }
1008
  }
tools/iso3166.php CHANGED
@@ -5,243 +5,244 @@
5
  * License: GPLv2 or later
6
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  */
8
- $this->country_codes = array();
9
- $this->country_codes['AD'] = 'Andorra';
10
- $this->country_codes['AE'] = 'United Arab Emirates';
11
- $this->country_codes['AF'] = 'Afghanistan';
12
- $this->country_codes['AG'] = 'Antigua and Barbuda';
13
- $this->country_codes['AI'] = 'Anguilla';
14
- $this->country_codes['AL'] = 'Albania';
15
- $this->country_codes['AM'] = 'Armenia';
16
- $this->country_codes['AN'] = 'Netherlands Antilles';
17
- $this->country_codes['AO'] = 'Angola';
18
- $this->country_codes['AQ'] = 'Antarctica';
19
- $this->country_codes['AR'] = 'Argentina';
20
- $this->country_codes['AS'] = 'American Samoa';
21
- $this->country_codes['AT'] = 'Austria';
22
- $this->country_codes['AU'] = 'Australia';
23
- $this->country_codes['AW'] = 'Aruba';
24
- $this->country_codes['AZ'] = 'Azerbaijan';
25
- $this->country_codes['BA'] = 'Bosnia and Herzegovina';
26
- $this->country_codes['BB'] = 'Barbados';
27
- $this->country_codes['BD'] = 'Bangladesh';
28
- $this->country_codes['BE'] = 'Belgium';
29
- $this->country_codes['BF'] = 'Burkina Faso';
30
- $this->country_codes['BG'] = 'Bulgaria';
31
- $this->country_codes['BH'] = 'Bahrain';
32
- $this->country_codes['BI'] = 'Burundi';
33
- $this->country_codes['BJ'] = 'Benin';
34
- $this->country_codes['BM'] = 'Bermuda';
35
- $this->country_codes['BN'] = 'Brunei';
36
- $this->country_codes['BO'] = 'Bolivia';
37
- $this->country_codes['BR'] = 'Brazil';
38
- $this->country_codes['BS'] = 'Bahamas';
39
- $this->country_codes['BT'] = 'Bhutan';
40
- $this->country_codes['BV'] = 'Bouvet Island';
41
- $this->country_codes['BW'] = 'Botswana';
42
- $this->country_codes['BY'] = 'Belarus';
43
- $this->country_codes['BZ'] = 'Belize';
44
- $this->country_codes['CA'] = 'Canada';
45
- $this->country_codes['CC'] = 'Cocos (Keeling) Islands';
46
- $this->country_codes['CD'] = 'Congo, The Democratic Republic of the';
47
- $this->country_codes['CF'] = 'Central African Republic';
48
- $this->country_codes['CG'] = 'Congo';
49
- $this->country_codes['CH'] = 'Switzerland';
50
- $this->country_codes['CI'] = 'Côte d?Ivoire';
51
- $this->country_codes['CK'] = 'Cook Islands';
52
- $this->country_codes['CL'] = 'Chile';
53
- $this->country_codes['CM'] = 'Cameroon';
54
- $this->country_codes['CN'] = 'China';
55
- $this->country_codes['CO'] = 'Colombia';
56
- $this->country_codes['CR'] = 'Costa Rica';
57
- $this->country_codes['CU'] = 'Cuba';
58
- $this->country_codes['CV'] = 'Cape Verde';
59
- $this->country_codes['CX'] = 'Christmas Island';
60
- $this->country_codes['CY'] = 'Cyprus';
61
- $this->country_codes['CZ'] = 'Czech Republic';
62
- $this->country_codes['DE'] = 'Germany';
63
- $this->country_codes['DJ'] = 'Djibouti';
64
- $this->country_codes['DK'] = 'Denmark';
65
- $this->country_codes['DM'] = 'Dominica';
66
- $this->country_codes['DO'] = 'Dominican Republic';
67
- $this->country_codes['DZ'] = 'Algeria';
68
- $this->country_codes['EC'] = 'Ecuador';
69
- $this->country_codes['EE'] = 'Estonia';
70
- $this->country_codes['EG'] = 'Egypt';
71
- $this->country_codes['EH'] = 'Western Sahara';
72
- $this->country_codes['ER'] = 'Eritrea';
73
- $this->country_codes['ES'] = 'Spain';
74
- $this->country_codes['ET'] = 'Ethiopia';
75
- $this->country_codes['FI'] = 'Finland';
76
- $this->country_codes['FJ'] = 'Fiji Islands';
77
- $this->country_codes['FK'] = 'Falkland Islands';
78
- $this->country_codes['FM'] = 'Micronesia, Federated States of';
79
- $this->country_codes['FO'] = 'Faroe Islands';
80
- $this->country_codes['FR'] = 'France';
81
- $this->country_codes['GA'] = 'Gabon';
82
- $this->country_codes['GB'] = 'United Kingdom';
83
- $this->country_codes['GD'] = 'Grenada';
84
- $this->country_codes['GE'] = 'Georgia';
85
- $this->country_codes['GF'] = 'French Guiana';
86
- $this->country_codes['GH'] = 'Ghana';
87
- $this->country_codes['GI'] = 'Gibraltar';
88
- $this->country_codes['GL'] = 'Greenland';
89
- $this->country_codes['GM'] = 'Gambia';
90
- $this->country_codes['GN'] = 'Guinea';
91
- $this->country_codes['GP'] = 'Guadeloupe';
92
- $this->country_codes['GQ'] = 'Equatorial Guinea';
93
- $this->country_codes['GR'] = 'Greece';
94
- $this->country_codes['GS'] = 'South Georgia and the South Sandwich Islands';
95
- $this->country_codes['GT'] = 'Guatemala';
96
- $this->country_codes['GU'] = 'Guam';
97
- $this->country_codes['GW'] = 'Guinea-Bissau';
98
- $this->country_codes['GY'] = 'Guyana';
99
- $this->country_codes['HK'] = 'Hong Kong';
100
- $this->country_codes['HM'] = 'Heard Island and McDonald Islands';
101
- $this->country_codes['HN'] = 'Honduras';
102
- $this->country_codes['HR'] = 'Croatia';
103
- $this->country_codes['HT'] = 'Haiti';
104
- $this->country_codes['HU'] = 'Hungary';
105
- $this->country_codes['ID'] = 'Indonesia';
106
- $this->country_codes['IE'] = 'Ireland';
107
- $this->country_codes['IL'] = 'Israel';
108
- $this->country_codes['IN'] = 'India';
109
- $this->country_codes['IO'] = 'British Indian Ocean Territory';
110
- $this->country_codes['IQ'] = 'Iraq';
111
- $this->country_codes['IR'] = 'Iran';
112
- $this->country_codes['IS'] = 'Iceland';
113
- $this->country_codes['IT'] = 'Italy';
114
- $this->country_codes['JM'] = 'Jamaica';
115
- $this->country_codes['JO'] = 'Jordan';
116
- $this->country_codes['JP'] = 'Japan';
117
- $this->country_codes['KE'] = 'Kenya';
118
- $this->country_codes['KG'] = 'Kyrgyzstan';
119
- $this->country_codes['KH'] = 'Cambodia';
120
- $this->country_codes['KI'] = 'Kiribati';
121
- $this->country_codes['KM'] = 'Comoros';
122
- $this->country_codes['KN'] = 'Saint Kitts and Nevis';
123
- $this->country_codes['KP'] = 'North Korea';
124
- $this->country_codes['KR'] = 'South Korea';
125
- $this->country_codes['KW'] = 'Kuwait';
126
- $this->country_codes['KY'] = 'Cayman Islands';
127
- $this->country_codes['KZ'] = 'Kazakstan';
128
- $this->country_codes['LA'] = 'Laos';
129
- $this->country_codes['LB'] = 'Lebanon';
130
- $this->country_codes['LC'] = 'Saint Lucia';
131
- $this->country_codes['LI'] = 'Liechtenstein';
132
- $this->country_codes['LK'] = 'Sri Lanka';
133
- $this->country_codes['LR'] = 'Liberia';
134
- $this->country_codes['LS'] = 'Lesotho';
135
- $this->country_codes['LT'] = 'Lithuania';
136
- $this->country_codes['LU'] = 'Luxembourg';
137
- $this->country_codes['LV'] = 'Latvia';
138
- $this->country_codes['LY'] = 'Libyan Arab Jamahiriya';
139
- $this->country_codes['MA'] = 'Morocco';
140
- $this->country_codes['MC'] = 'Monaco';
141
- $this->country_codes['MD'] = 'Moldova';
142
- $this->country_codes['MG'] = 'Madagascar';
143
- $this->country_codes['MH'] = 'Marshall Islands';
144
- $this->country_codes['MK'] = 'Macedonia';
145
- $this->country_codes['ML'] = 'Mali';
146
- $this->country_codes['MM'] = 'Myanmar';
147
- $this->country_codes['MN'] = 'Mongolia';
148
- $this->country_codes['MO'] = 'Macao';
149
- $this->country_codes['MP'] = 'Northern Mariana Islands';
150
- $this->country_codes['MQ'] = 'Martinique';
151
- $this->country_codes['MR'] = 'Mauritania';
152
- $this->country_codes['MS'] = 'Montserrat';
153
- $this->country_codes['MT'] = 'Malta';
154
- $this->country_codes['MU'] = 'Mauritius';
155
- $this->country_codes['MV'] = 'Maldives';
156
- $this->country_codes['MW'] = 'Malawi';
157
- $this->country_codes['MX'] = 'Mexico';
158
- $this->country_codes['MY'] = 'Malaysia';
159
- $this->country_codes['MZ'] = 'Mozambique';
160
- $this->country_codes['NA'] = 'Namibia';
161
- $this->country_codes['NC'] = 'New Caledonia';
162
- $this->country_codes['NE'] = 'Niger';
163
- $this->country_codes['NF'] = 'Norfolk Island';
164
- $this->country_codes['NG'] = 'Nigeria';
165
- $this->country_codes['NI'] = 'Nicaragua';
166
- $this->country_codes['NL'] = 'Netherlands';
167
- $this->country_codes['NO'] = 'Norway';
168
- $this->country_codes['NP'] = 'Nepal';
169
- $this->country_codes['NR'] = 'Nauru';
170
- $this->country_codes['NU'] = 'Niue';
171
- $this->country_codes['NZ'] = 'New Zealand';
172
- $this->country_codes['OM'] = 'Oman';
173
- $this->country_codes['PA'] = 'Panama';
174
- $this->country_codes['PE'] = 'Peru';
175
- $this->country_codes['PF'] = 'French Polynesia';
176
- $this->country_codes['PG'] = 'Papua New Guinea';
177
- $this->country_codes['PH'] = 'Philippines';
178
- $this->country_codes['PK'] = 'Pakistan';
179
- $this->country_codes['PL'] = 'Poland';
180
- $this->country_codes['PM'] = 'Saint Pierre and Miquelon';
181
- $this->country_codes['PN'] = 'Pitcairn';
182
- $this->country_codes['PR'] = 'Puerto Rico';
183
- $this->country_codes['PS'] = 'Palestine';
184
- $this->country_codes['PT'] = 'Portugal';
185
- $this->country_codes['PW'] = 'Palau';
186
- $this->country_codes['PY'] = 'Paraguay';
187
- $this->country_codes['QA'] = 'Qatar';
188
- $this->country_codes['RE'] = 'Reunion';
189
- $this->country_codes['RO'] = 'Romania';
190
- $this->country_codes['RU'] = 'Russia';
191
- $this->country_codes['RW'] = 'Rwanda';
192
- $this->country_codes['SA'] = 'Saudi Arabia';
193
- $this->country_codes['SB'] = 'Solomon Islands';
194
- $this->country_codes['SC'] = 'Seychelles';
195
- $this->country_codes['SD'] = 'Sudan';
196
- $this->country_codes['SE'] = 'Sweden';
197
- $this->country_codes['SG'] = 'Singapore';
198
- $this->country_codes['SH'] = 'Saint Helena';
199
- $this->country_codes['SI'] = 'Slovenia';
200
- $this->country_codes['SJ'] = 'Svalbard and Jan Mayen';
201
- $this->country_codes['SK'] = 'Slovakia';
202
- $this->country_codes['SL'] = 'Sierra Leone';
203
- $this->country_codes['SM'] = 'San Marino';
204
- $this->country_codes['SN'] = 'Senegal';
205
- $this->country_codes['SO'] = 'Somalia';
206
- $this->country_codes['SR'] = 'Suriname';
207
- $this->country_codes['ST'] = 'Sao Tome and Principe';
208
- $this->country_codes['SV'] = 'El Salvador';
209
- $this->country_codes['SY'] = 'Syria';
210
- $this->country_codes['SZ'] = 'Swaziland';
211
- $this->country_codes['TC'] = 'Turks and Caicos Islands';
212
- $this->country_codes['TD'] = 'Chad';
213
- $this->country_codes['TF'] = 'French Southern territories';
214
- $this->country_codes['TG'] = 'Togo';
215
- $this->country_codes['TH'] = 'Thailand';
216
- $this->country_codes['TJ'] = 'Tajikistan';
217
- $this->country_codes['TK'] = 'Tokelau';
218
- $this->country_codes['TM'] = 'Turkmenistan';
219
- $this->country_codes['TN'] = 'Tunisia';
220
- $this->country_codes['TO'] = 'Tonga';
221
- $this->country_codes['TP'] = 'East Timor';
222
- $this->country_codes['TR'] = 'Turkey';
223
- $this->country_codes['TT'] = 'Trinidad and Tobago';
224
- $this->country_codes['TV'] = 'Tuvalu';
225
- $this->country_codes['TW'] = 'Taiwan';
226
- $this->country_codes['TZ'] = 'Tanzania';
227
- $this->country_codes['UA'] = 'Ukraine';
228
- $this->country_codes['UG'] = 'Uganda';
229
- $this->country_codes['UM'] = 'United States Minor Outlying Islands';
230
- $this->country_codes['US'] = 'United States';
231
- $this->country_codes['UY'] = 'Uruguay';
232
- $this->country_codes['UZ'] = 'Uzbekistan';
233
- $this->country_codes['VA'] = 'Holy See (Vatican City State)';
234
- $this->country_codes['VC'] = 'Saint Vincent and the Grenadines';
235
- $this->country_codes['VE'] = 'Venezuela';
236
- $this->country_codes['VG'] = 'Virgin Islands, British';
237
- $this->country_codes['VI'] = 'Virgin Islands, U.S.';
238
- $this->country_codes['VN'] = 'Vietnam';
239
- $this->country_codes['VU'] = 'Vanuatu';
240
- $this->country_codes['WF'] = 'Wallis and Futuna';
241
- $this->country_codes['WS'] = 'Samoa';
242
- $this->country_codes['YE'] = 'Yemen';
243
- $this->country_codes['YT'] = 'Mayotte';
244
- $this->country_codes['YU'] = 'Yugoslavia';
245
- $this->country_codes['ZA'] = 'South Africa';
246
- $this->country_codes['ZM'] = 'Zambia';
247
- $this->country_codes['ZW'] = 'Zimbabwe';
 
5
  * License: GPLv2 or later
6
  * License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  */
8
+ $country_codes = array(
9
+ 'AD' => 'Andorra',
10
+ 'AE' => 'United Arab Emirates',
11
+ 'AF' => 'Afghanistan',
12
+ 'AG' => 'Antigua and Barbuda',
13
+ 'AI' => 'Anguilla',
14
+ 'AL' => 'Albania',
15
+ 'AM' => 'Armenia',
16
+ 'AN' => 'Netherlands Antilles',
17
+ 'AO' => 'Angola',
18
+ 'AQ' => 'Antarctica',
19
+ 'AR' => 'Argentina',
20
+ 'AS' => 'American Samoa',
21
+ 'AT' => 'Austria',
22
+ 'AU' => 'Australia',
23
+ 'AW' => 'Aruba',
24
+ 'AZ' => 'Azerbaijan',
25
+ 'BA' => 'Bosnia and Herzegovina',
26
+ 'BB' => 'Barbados',
27
+ 'BD' => 'Bangladesh',
28
+ 'BE' => 'Belgium',
29
+ 'BF' => 'Burkina Faso',
30
+ 'BG' => 'Bulgaria',
31
+ 'BH' => 'Bahrain',
32
+ 'BI' => 'Burundi',
33
+ 'BJ' => 'Benin',
34
+ 'BM' => 'Bermuda',
35
+ 'BN' => 'Brunei',
36
+ 'BO' => 'Bolivia',
37
+ 'BR' => 'Brazil',
38
+ 'BS' => 'Bahamas',
39
+ 'BT' => 'Bhutan',
40
+ 'BV' => 'Bouvet Island',
41
+ 'BW' => 'Botswana',
42
+ 'BY' => 'Belarus',
43
+ 'BZ' => 'Belize',
44
+ 'CA' => 'Canada',
45
+ 'CC' => 'Cocos (Keeling) Islands',
46
+ 'CD' => 'Congo, The Democratic Republic of the',
47
+ 'CF' => 'Central African Republic',
48
+ 'CG' => 'Congo',
49
+ 'CH' => 'Switzerland',
50
+ 'CI' => 'C�te d?Ivoire',
51
+ 'CK' => 'Cook Islands',
52
+ 'CL' => 'Chile',
53
+ 'CM' => 'Cameroon',
54
+ 'CN' => 'China',
55
+ 'CO' => 'Colombia',
56
+ 'CR' => 'Costa Rica',
57
+ 'CU' => 'Cuba',
58
+ 'CV' => 'Cape Verde',
59
+ 'CX' => 'Christmas Island',
60
+ 'CY' => 'Cyprus',
61
+ 'CZ' => 'Czech Republic',
62
+ 'DE' => 'Germany',
63
+ 'DJ' => 'Djibouti',
64
+ 'DK' => 'Denmark',
65
+ 'DM' => 'Dominica',
66
+ 'DO' => 'Dominican Republic',
67
+ 'DZ' => 'Algeria',
68
+ 'EC' => 'Ecuador',
69
+ 'EE' => 'Estonia',
70
+ 'EG' => 'Egypt',
71
+ 'EH' => 'Western Sahara',
72
+ 'ER' => 'Eritrea',
73
+ 'ES' => 'Spain',
74
+ 'ET' => 'Ethiopia',
75
+ 'FI' => 'Finland',
76
+ 'FJ' => 'Fiji Islands',
77
+ 'FK' => 'Falkland Islands',
78
+ 'FM' => 'Micronesia, Federated States of',
79
+ 'FO' => 'Faroe Islands',
80
+ 'FR' => 'France',
81
+ 'GA' => 'Gabon',
82
+ 'GB' => 'United Kingdom',
83
+ 'GD' => 'Grenada',
84
+ 'GE' => 'Georgia',
85
+ 'GF' => 'French Guiana',
86
+ 'GH' => 'Ghana',
87
+ 'GI' => 'Gibraltar',
88
+ 'GL' => 'Greenland',
89
+ 'GM' => 'Gambia',
90
+ 'GN' => 'Guinea',
91
+ 'GP' => 'Guadeloupe',
92
+ 'GQ' => 'Equatorial Guinea',
93
+ 'GR' => 'Greece',
94
+ 'GS' => 'South Georgia and the South Sandwich Islands',
95
+ 'GT' => 'Guatemala',
96
+ 'GU' => 'Guam',
97
+ 'GW' => 'Guinea-Bissau',
98
+ 'GY' => 'Guyana',
99
+ 'HK' => 'Hong Kong',
100
+ 'HM' => 'Heard Island and McDonald Islands',
101
+ 'HN' => 'Honduras',
102
+ 'HR' => 'Croatia',
103
+ 'HT' => 'Haiti',
104
+ 'HU' => 'Hungary',
105
+ 'ID' => 'Indonesia',
106
+ 'IE' => 'Ireland',
107
+ 'IL' => 'Israel',
108
+ 'IN' => 'India',
109
+ 'IO' => 'British Indian Ocean Territory',
110
+ 'IQ' => 'Iraq',
111
+ 'IR' => 'Iran',
112
+ 'IS' => 'Iceland',
113
+ 'IT' => 'Italy',
114
+ 'JM' => 'Jamaica',
115
+ 'JO' => 'Jordan',
116
+ 'JP' => 'Japan',
117
+ 'KE' => 'Kenya',
118
+ 'KG' => 'Kyrgyzstan',
119
+ 'KH' => 'Cambodia',
120
+ 'KI' => 'Kiribati',
121
+ 'KM' => 'Comoros',
122
+ 'KN' => 'Saint Kitts and Nevis',
123
+ 'KP' => 'North Korea',
124
+ 'KR' => 'South Korea',
125
+ 'KW' => 'Kuwait',
126
+ 'KY' => 'Cayman Islands',
127
+ 'KZ' => 'Kazakstan',
128
+ 'LA' => 'Laos',
129
+ 'LB' => 'Lebanon',
130
+ 'LC' => 'Saint Lucia',
131
+ 'LI' => 'Liechtenstein',
132
+ 'LK' => 'Sri Lanka',
133
+ 'LR' => 'Liberia',
134
+ 'LS' => 'Lesotho',
135
+ 'LT' => 'Lithuania',
136
+ 'LU' => 'Luxembourg',
137
+ 'LV' => 'Latvia',
138
+ 'LY' => 'Libyan Arab Jamahiriya',
139
+ 'MA' => 'Morocco',
140
+ 'MC' => 'Monaco',
141
+ 'MD' => 'Moldova',
142
+ 'MG' => 'Madagascar',
143
+ 'MH' => 'Marshall Islands',
144
+ 'MK' => 'Macedonia',
145
+ 'ML' => 'Mali',
146
+ 'MM' => 'Myanmar',
147
+ 'MN' => 'Mongolia',
148
+ 'MO' => 'Macao',
149
+ 'MP' => 'Northern Mariana Islands',
150
+ 'MQ' => 'Martinique',
151
+ 'MR' => 'Mauritania',
152
+ 'MS' => 'Montserrat',
153
+ 'MT' => 'Malta',
154
+ 'MU' => 'Mauritius',
155
+ 'MV' => 'Maldives',
156
+ 'MW' => 'Malawi',
157
+ 'MX' => 'Mexico',
158
+ 'MY' => 'Malaysia',
159
+ 'MZ' => 'Mozambique',
160
+ 'NA' => 'Namibia',
161
+ 'NC' => 'New Caledonia',
162
+ 'NE' => 'Niger',
163
+ 'NF' => 'Norfolk Island',
164
+ 'NG' => 'Nigeria',
165
+ 'NI' => 'Nicaragua',
166
+ 'NL' => 'Netherlands',
167
+ 'NO' => 'Norway',
168
+ 'NP' => 'Nepal',
169
+ 'NR' => 'Nauru',
170
+ 'NU' => 'Niue',
171
+ 'NZ' => 'New Zealand',
172
+ 'OM' => 'Oman',
173
+ 'PA' => 'Panama',
174
+ 'PE' => 'Peru',
175
+ 'PF' => 'French Polynesia',
176
+ 'PG' => 'Papua New Guinea',
177
+ 'PH' => 'Philippines',
178
+ 'PK' => 'Pakistan',
179
+ 'PL' => 'Poland',
180
+ 'PM' => 'Saint Pierre and Miquelon',
181
+ 'PN' => 'Pitcairn',
182
+ 'PR' => 'Puerto Rico',
183
+ 'PS' => 'Palestine',
184
+ 'PT' => 'Portugal',
185
+ 'PW' => 'Palau',
186
+ 'PY' => 'Paraguay',
187
+ 'QA' => 'Qatar',
188
+ 'RE' => 'Reunion',
189
+ 'RO' => 'Romania',
190
+ 'RU' => 'Russia',
191
+ 'RW' => 'Rwanda',
192
+ 'SA' => 'Saudi Arabia',
193
+ 'SB' => 'Solomon Islands',
194
+ 'SC' => 'Seychelles',
195
+ 'SD' => 'Sudan',
196
+ 'SE' => 'Sweden',
197
+ 'SG' => 'Singapore',
198
+ 'SH' => 'Saint Helena',
199
+ 'SI' => 'Slovenia',
200
+ 'SJ' => 'Svalbard and Jan Mayen',
201
+ 'SK' => 'Slovakia',
202
+ 'SL' => 'Sierra Leone',
203
+ 'SM' => 'San Marino',
204
+ 'SN' => 'Senegal',
205
+ 'SO' => 'Somalia',
206
+ 'SR' => 'Suriname',
207
+ 'ST' => 'Sao Tome and Principe',
208
+ 'SV' => 'El Salvador',
209
+ 'SY' => 'Syria',
210
+ 'SZ' => 'Swaziland',
211
+ 'TC' => 'Turks and Caicos Islands',
212
+ 'TD' => 'Chad',
213
+ 'TF' => 'French Southern territories',
214
+ 'TG' => 'Togo',
215
+ 'TH' => 'Thailand',
216
+ 'TJ' => 'Tajikistan',
217
+ 'TK' => 'Tokelau',
218
+ 'TM' => 'Turkmenistan',
219
+ 'TN' => 'Tunisia',
220
+ 'TO' => 'Tonga',
221
+ 'TP' => 'East Timor',
222
+ 'TR' => 'Turkey',
223
+ 'TT' => 'Trinidad and Tobago',
224
+ 'TV' => 'Tuvalu',
225
+ 'TW' => 'Taiwan',
226
+ 'TZ' => 'Tanzania',
227
+ 'UA' => 'Ukraine',
228
+ 'UG' => 'Uganda',
229
+ 'UM' => 'United States Minor Outlying Islands',
230
+ 'US' => 'United States',
231
+ 'UY' => 'Uruguay',
232
+ 'UZ' => 'Uzbekistan',
233
+ 'VA' => 'Holy See (Vatican City State)',
234
+ 'VC' => 'Saint Vincent and the Grenadines',
235
+ 'VE' => 'Venezuela',
236
+ 'VG' => 'Virgin Islands, British',
237
+ 'VI' => 'Virgin Islands, U.S.',
238
+ 'VN' => 'Vietnam',
239
+ 'VU' => 'Vanuatu',
240
+ 'WF' => 'Wallis and Futuna',
241
+ 'WS' => 'Samoa',
242
+ 'YE' => 'Yemen',
243
+ 'YT' => 'Mayotte',
244
+ 'YU' => 'Yugoslavia',
245
+ 'ZA' => 'South Africa',
246
+ 'ZM' => 'Zambia',
247
+ 'ZW' => 'Zimbabwe'
248
+ );
tools/tools.php CHANGED
@@ -9,6 +9,13 @@ if (! class_exists('GADASH_Tools')) {
9
 
10
  class GADASH_Tools
11
  {
 
 
 
 
 
 
 
12
 
13
  function guess_default_domain($profiles)
14
  {
@@ -47,7 +54,7 @@ if (! class_exists('GADASH_Tools')) {
47
  return $root;
48
  }
49
 
50
- function ga_dash_get_profile_domain($domain)
51
  {
52
  return str_replace(array(
53
  "https://",
@@ -56,21 +63,13 @@ if (! class_exists('GADASH_Tools')) {
56
  ), "", $domain);
57
  }
58
 
59
- function ga_dash_clear_cache()
60
  {
61
  global $wpdb;
62
  $sqlquery = $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_gadash%%'");
63
  $sqlquery = $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_gadash%%'");
64
  }
65
 
66
- function ga_dash_safe_get($key)
67
- {
68
- if (array_key_exists($key, $_POST)) {
69
- return $_POST[$key];
70
- }
71
- return false;
72
- }
73
-
74
  function colourVariator($colour, $per)
75
  {
76
  $colour = substr($colour, 1);
@@ -95,6 +94,18 @@ if (! class_exists('GADASH_Tools')) {
95
  return '#' . $rgb;
96
  }
97
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  function check_roles($access_level, $tracking = false)
99
  {
100
  if (is_user_logged_in() && isset($access_level)) {
9
 
10
  class GADASH_Tools
11
  {
12
+ public $country_codes;
13
+
14
+ public function getcountrycodes()
15
+ {
16
+ include_once 'iso3166.php';
17
+ $this->country_codes = $country_codes;
18
+ }
19
 
20
  function guess_default_domain($profiles)
21
  {
54
  return $root;
55
  }
56
 
57
+ function strip_protocol($domain)
58
  {
59
  return str_replace(array(
60
  "https://",
63
  ), "", $domain);
64
  }
65
 
66
+ function clear_cache()
67
  {
68
  global $wpdb;
69
  $sqlquery = $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_gadash%%'");
70
  $sqlquery = $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_gadash%%'");
71
  }
72
 
 
 
 
 
 
 
 
 
73
  function colourVariator($colour, $per)
74
  {
75
  $colour = substr($colour, 1);
94
  return '#' . $rgb;
95
  }
96
 
97
+ function variations($base)
98
+ {
99
+ $variations[] = $base;
100
+ $variations[] = self::colourVariator($base, - 10);
101
+ $variations[] = self::colourVariator($base, + 10);
102
+ $variations[] = self::colourVariator($base, + 20);
103
+ $variations[] = self::colourVariator($base, - 20);
104
+ $variations[] = self::colourVariator($base, + 30);
105
+ $variations[] = self::colourVariator($base, - 30);
106
+ return $variations;
107
+ }
108
+
109
  function check_roles($access_level, $tracking = false)
110
  {
111
  if (is_user_logged_in() && isset($access_level)) {