Version Description
- Bug Fix: truncate long translation strings in google analytics reports
- Bug Fix: rename query args to something more unique to avoid conflicts with other plugins
- Bug Fix: Italian translation small fix
- Bug Fix: add text domain and domain path in plugin's header; switch to default text domain
- Bug Fix: avoid empty item reports while the URI ends with a slash and a Default Page is set in View settings (requires re-authorization)
- Enhancement: throw an error in the General Settings screen (even if it's not a blocker) to acknowledge the user
- Enhancement: item reports improvements, more suggestive error messages in item reports, hide unnecessary item reports divs on critical errors
- Enhancement: Spanish translation updated
- Enhancement: Greek translation, props by Kostas Asargiotakis
- Enhancement: i18n improvements, props by Ivan Ridao Freitas
- Enhancement: all Google Analytics API requests need to pass additional validity checks and must be sent through get() method
- Enhancement: unset default dimension and default metric cookies after a plugin update
Download this release
Release Info
Developer | deconf |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 4.8.1.3 |
Comparing to | |
See all releases |
Code changes from version 4.8.1.2 to 4.8.1.3
- admin/ajax-actions.php +6 -0
- admin/css/gadwp.css +3 -0
- admin/css/item-reports.css +4 -0
- admin/item-reports.php +1 -1
- admin/settings.php +207 -188
- admin/setup.php +51 -47
- admin/widgets.php +98 -98
- config.php +325 -342
- front/ajax-actions.php +14 -8
- front/css/item-reports.css +7 -1
- front/item-reports.php +1 -1
- front/js/item-reports.js +0 -1
- front/setup.php +37 -34
- front/widgets.php +21 -21
- gadwp.php +8 -6
- install/install.php +2 -0
- languages/{ga-dash-ar.po → google-analytics-dashboard-for-wp-ar.po} +151 -157
- languages/{ga-dash-cs_CZ.mo → google-analytics-dashboard-for-wp-cs_CZ.mo} +0 -0
- languages/{ga-dash-cs_CZ.po → google-analytics-dashboard-for-wp-cs_CZ.po} +142 -142
- languages/{ga-dash-de_DE.mo → google-analytics-dashboard-for-wp-de_DE.mo} +0 -0
- languages/{ga-dash-de_DE.po → google-analytics-dashboard-for-wp-de_DE.po} +155 -158
- languages/google-analytics-dashboard-for-wp-el_GR.mo +0 -0
- languages/google-analytics-dashboard-for-wp-el_GR.po +882 -0
- languages/google-analytics-dashboard-for-wp-es_ES.mo +0 -0
- languages/{ga-dash-es_ES.po → google-analytics-dashboard-for-wp-es_ES.po} +332 -336
- languages/{ga-dash-fr_FR.mo → google-analytics-dashboard-for-wp-fr_FR.mo} +0 -0
- languages/{ga-dash-fr_FR.po → google-analytics-dashboard-for-wp-fr_FR.po} +142 -142
- languages/{ga-dash-hu_HU.mo → google-analytics-dashboard-for-wp-hu_HU.mo} +0 -0
- languages/{ga-dash-hu_HU.po → google-analytics-dashboard-for-wp-hu_HU.po} +154 -157
- languages/{ga-dash-it_IT.mo → google-analytics-dashboard-for-wp-it_IT.mo} +0 -0
- languages/{ga-dash-it_IT.po → google-analytics-dashboard-for-wp-it_IT.po} +1269 -1275
- languages/{ga-dash-ja.mo → google-analytics-dashboard-for-wp-ja.mo} +0 -0
- languages/{ga-dash-ja.po → google-analytics-dashboard-for-wp-ja.po} +154 -157
- languages/{ga-dash-nl_NL.mo → google-analytics-dashboard-for-wp-nl_NL.mo} +0 -0
- languages/{ga-dash-nl_NL.po → google-analytics-dashboard-for-wp-nl_NL.po} +154 -157
- languages/{ga-dash-pl_PL.po → google-analytics-dashboard-for-wp-pl_PL.po} +151 -157
- languages/{ga-dash-pt_BR.mo → google-analytics-dashboard-for-wp-pt_BR.mo} +0 -0
- languages/{ga-dash-pt_BR.po → google-analytics-dashboard-for-wp-pt_BR.po} +154 -157
- languages/{ga-dash-ro_RO.mo → google-analytics-dashboard-for-wp-ro_RO.mo} +0 -0
- languages/{ga-dash-ro_RO.po → google-analytics-dashboard-for-wp-ro_RO.po} +154 -157
- languages/{ga-dash-ru_RU.mo → google-analytics-dashboard-for-wp-ru_RU.mo} +0 -0
- languages/{ga-dash-ru_RU.po → google-analytics-dashboard-for-wp-ru_RU.po} +142 -142
- languages/{ga-dash.pot → google-analytics-dashboard-for-wp.pot} +120 -119
- readme.txt +16 -2
- tools/gapi.php +66 -45
- {admin → tools}/js/item-reports.js +84 -22
- tools/tools.php +5 -0
admin/ajax-actions.php
CHANGED
@@ -78,6 +78,12 @@ if ( ! class_exists( 'GADWP_Backend_Ajax' ) ) {
|
|
78 |
// allow URL correction before sending an API request
|
79 |
$filter = apply_filters( 'gadwp_backenditem_uri', $uri );
|
80 |
|
|
|
|
|
|
|
|
|
|
|
|
|
81 |
// Encode URL
|
82 |
$filter = rawurlencode( rawurldecode( $filter ) );
|
83 |
|
78 |
// allow URL correction before sending an API request
|
79 |
$filter = apply_filters( 'gadwp_backenditem_uri', $uri );
|
80 |
|
81 |
+
$lastchar = substr( $filter, - 1 );
|
82 |
+
|
83 |
+
if ( isset( $profile_info[6] ) && $profile_info[6] && $lastchar == '/' ) {
|
84 |
+
$filter = $filter . $profile_info[6];
|
85 |
+
}
|
86 |
+
|
87 |
// Encode URL
|
88 |
$filter = rawurlencode( rawurldecode( $filter ) );
|
89 |
|
admin/css/gadwp.css
CHANGED
@@ -376,6 +376,9 @@ td.roles {
|
|
376 |
color: #777;
|
377 |
padding: 0px 5px 0px 5px;
|
378 |
margin: 0px 0px 0px 0px;
|
|
|
|
|
|
|
379 |
}
|
380 |
|
381 |
.gadash-wrapper .inside .small-box p {
|
376 |
color: #777;
|
377 |
padding: 0px 5px 0px 5px;
|
378 |
margin: 0px 0px 0px 0px;
|
379 |
+
text-overflow: ellipsis;
|
380 |
+
overflow: hidden;
|
381 |
+
white-space: nowrap;
|
382 |
}
|
383 |
|
384 |
.gadash-wrapper .inside .small-box p {
|
admin/css/item-reports.css
CHANGED
@@ -51,10 +51,14 @@
|
|
51 |
}
|
52 |
|
53 |
.gadwp-wrapper .inside .small-box h3 {
|
|
|
54 |
font-size: 1em;
|
55 |
color: #777;
|
56 |
padding: 0px 5px 0px 5px;
|
57 |
margin: 0px 0px 0px 0px;
|
|
|
|
|
|
|
58 |
}
|
59 |
|
60 |
.gadwp-wrapper .inside .small-box p {
|
51 |
}
|
52 |
|
53 |
.gadwp-wrapper .inside .small-box h3 {
|
54 |
+
font-family: 'Open Sans', sans-serif;
|
55 |
font-size: 1em;
|
56 |
color: #777;
|
57 |
padding: 0px 5px 0px 5px;
|
58 |
margin: 0px 0px 0px 0px;
|
59 |
+
text-overflow: ellipsis;
|
60 |
+
overflow: hidden;
|
61 |
+
white-space: nowrap;
|
62 |
}
|
63 |
|
64 |
.gadwp-wrapper .inside .small-box p {
|
admin/item-reports.php
CHANGED
@@ -58,7 +58,7 @@ if ( ! class_exists( 'GADWP_Backend_Item_Reports' ) ) {
|
|
58 |
|
59 |
public function add_columns( $columns ) {
|
60 |
return array_merge( $columns, array(
|
61 |
-
'gadwp_stats' => __( 'Analytics', '
|
62 |
}
|
63 |
}
|
64 |
}
|
58 |
|
59 |
public function add_columns( $columns ) {
|
60 |
return array_merge( $columns, array(
|
61 |
+
'gadwp_stats' => __( 'Analytics', 'google-analytics-dashboard-for-wp' ) ) );
|
62 |
}
|
63 |
}
|
64 |
}
|
admin/settings.php
CHANGED
@@ -86,18 +86,18 @@ final class GADWP_Settings {
|
|
86 |
}
|
87 |
$options = self::update_options( 'frontend' );
|
88 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) ) {
|
89 |
-
$message = "<div class='updated'><p>" . __( "Settings saved.", '
|
90 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
91 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
92 |
}
|
93 |
}
|
94 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] || ! $gadwp->config->options['ga_dash_token'] ) {
|
95 |
-
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', '
|
96 |
}
|
97 |
?>
|
98 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
99 |
<div class="wrap">
|
100 |
-
<?php echo "<h2>" . __( "Google Analytics Frontend Settings", '
|
101 |
</div>
|
102 |
<div id="poststuff">
|
103 |
<div id="post-body" class="metabox-holder columns-2">
|
@@ -107,10 +107,10 @@ final class GADWP_Settings {
|
|
107 |
<?php if (isset($message)) echo $message; ?>
|
108 |
<table class="options">
|
109 |
<tr>
|
110 |
-
<td colspan="2"><?php echo "<h2>" . __( "Permissions", '
|
111 |
</tr>
|
112 |
<tr>
|
113 |
-
<td class="roles title"><label for="ga_dash_access_front"><?php _e("Show stats to:", '
|
114 |
<td class="roles">
|
115 |
<?php
|
116 |
if ( ! isset( $wp_roles ) ) {
|
@@ -151,14 +151,14 @@ final class GADWP_Settings {
|
|
151 |
<div class="onoffswitch-switch"></div>
|
152 |
</label>
|
153 |
</div>
|
154 |
-
<div class="switch-desc"><?php echo " ".__("enable web page reports on frontend", '
|
155 |
</td>
|
156 |
</tr>
|
157 |
<tr>
|
158 |
<td colspan="2"><hr></td>
|
159 |
</tr>
|
160 |
<tr>
|
161 |
-
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', '
|
162 |
</tr>
|
163 |
</table>
|
164 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
@@ -181,18 +181,18 @@ final class GADWP_Settings {
|
|
181 |
}
|
182 |
$options = self::update_options( 'backend' );
|
183 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) ) {
|
184 |
-
$message = "<div class='updated'><p>" . __( "Settings saved.", '
|
185 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
186 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
187 |
}
|
188 |
}
|
189 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] || ! $gadwp->config->options['ga_dash_token'] ) {
|
190 |
-
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', '
|
191 |
}
|
192 |
?>
|
193 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
194 |
<div class="wrap">
|
195 |
-
<?php echo "<h2>" . __( "Google Analytics Backend Settings", '
|
196 |
</div>
|
197 |
<div id="poststuff">
|
198 |
<div id="post-body" class="metabox-holder columns-2">
|
@@ -202,10 +202,10 @@ final class GADWP_Settings {
|
|
202 |
<?php if (isset($message)) echo $message; ?>
|
203 |
<table class="options">
|
204 |
<tr>
|
205 |
-
<td colspan="2"><?php echo "<h2>" . __( "Permissions", '
|
206 |
</tr>
|
207 |
<tr>
|
208 |
-
<td class="roles title"><label for="ga_dash_access_back"><?php _e("Show stats to:", '
|
209 |
<td class="roles">
|
210 |
<?php
|
211 |
if ( ! isset( $wp_roles ) ) {
|
@@ -248,7 +248,7 @@ final class GADWP_Settings {
|
|
248 |
<div class="onoffswitch-switch"></div>
|
249 |
</label>
|
250 |
</div>
|
251 |
-
<div class="switch-desc"><?php _e ( "enable Switch View functionality", '
|
252 |
</td>
|
253 |
</tr>
|
254 |
<tr>
|
@@ -259,7 +259,7 @@ final class GADWP_Settings {
|
|
259 |
<div class="onoffswitch-switch"></div>
|
260 |
</label>
|
261 |
</div>
|
262 |
-
<div class="switch-desc"><?php _e ( "enable reports on Posts List and Pages List", '
|
263 |
</td>
|
264 |
</tr>
|
265 |
<tr>
|
@@ -270,23 +270,23 @@ final class GADWP_Settings {
|
|
270 |
<div class="onoffswitch-switch"></div>
|
271 |
</label>
|
272 |
</div>
|
273 |
-
<div class="switch-desc"><?php _e ( "enable the main Dashboard Widget", '
|
274 |
</td>
|
275 |
</tr>
|
276 |
<tr>
|
277 |
-
<td colspan="2"><hr><?php echo "<h2>" . __( "Real-Time Settings", '
|
278 |
</tr>
|
279 |
<tr>
|
280 |
-
<td colspan="2" class="title"> <?php _e("Maximum number of pages to display on real-time tab:", '
|
281 |
<input type="number" name="options[ga_realtime_pages]" id="ga_realtime_pages" value="<?php echo (int)$options['ga_realtime_pages']; ?>" size="3">
|
282 |
</td>
|
283 |
</tr>
|
284 |
<tr>
|
285 |
-
<td colspan="2"><hr><?php echo "<h2>" . __( "Location Settings", '
|
286 |
</tr>
|
287 |
<tr>
|
288 |
<td colspan="2" class="title">
|
289 |
-
<?php echo __("Target Geo Map to country:", '
|
290 |
<input type="text" style="text-align: center;" name="options[ga_target_geomap]" value="<?php echo esc_attr($options['ga_target_geomap']); ?>" size="3">
|
291 |
</td>
|
292 |
</tr>
|
@@ -294,7 +294,7 @@ final class GADWP_Settings {
|
|
294 |
<td colspan="2"><hr></td>
|
295 |
</tr>
|
296 |
<tr>
|
297 |
-
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', '
|
298 |
</tr>
|
299 |
</table>
|
300 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
@@ -315,21 +315,21 @@ final class GADWP_Settings {
|
|
315 |
}
|
316 |
$options = self::update_options( 'tracking' );
|
317 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) ) {
|
318 |
-
$message = "<div class='updated'><p>" . __( "Settings saved.", '
|
319 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
320 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
321 |
}
|
322 |
}
|
323 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] ) {
|
324 |
-
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', '
|
325 |
}
|
326 |
if ( ! $options['ga_dash_tracking'] ) {
|
327 |
-
$message = "<div class='error'><p>" . __( "The tracking component is disabled. You should set <strong>Tracking Options</strong> to <strong>Enabled</strong>", '
|
328 |
}
|
329 |
?>
|
330 |
<form name="ga_dash_form" method="post" action="<?php esc_url($_SERVER['REQUEST_URI']); ?>">
|
331 |
<div class="wrap">
|
332 |
-
<?php echo "<h2>" . __( "Google Analytics Tracking Code", '
|
333 |
</div>
|
334 |
<div id="poststuff">
|
335 |
<div id="post-body" class="metabox-holder columns-2">
|
@@ -338,11 +338,11 @@ final class GADWP_Settings {
|
|
338 |
<div class="inside">
|
339 |
<?php
|
340 |
$tabs = array(
|
341 |
-
'basic' => __( "Basic Settings", '
|
342 |
-
'events' => __( "Events Tracking", '
|
343 |
-
'custom' => __( "Custom Definitions", '
|
344 |
-
'exclude' => __( "Exclude Tracking", '
|
345 |
-
'advanced' => __( "Advanced Settings", '
|
346 |
self::navigation_tabs( $tabs );
|
347 |
if ( isset( $message ) )
|
348 |
echo $message;
|
@@ -350,13 +350,13 @@ final class GADWP_Settings {
|
|
350 |
<div id="gadwp-basic">
|
351 |
<table class="options">
|
352 |
<tr>
|
353 |
-
<td colspan="2"><?php echo "<h2>" . __( "Tracking Settings", '
|
354 |
</tr>
|
355 |
<tr>
|
356 |
-
<td class="title"><label for="ga_dash_tracking"><?php _e("Tracking Options:", '
|
357 |
<td><select id="ga_dash_tracking" name="options[ga_dash_tracking]" onchange="this.form.submit()">
|
358 |
-
<option value="0" <?php selected( $options['ga_dash_tracking'], 0 ); ?>><?php _e("Disabled", '
|
359 |
-
<option value="1" <?php selected( $options['ga_dash_tracking'], 1 ); ?>><?php _e("Enabled", '
|
360 |
</select></td>
|
361 |
</tr>
|
362 |
<?php if ($options['ga_dash_tracking']) {?>
|
@@ -364,18 +364,18 @@ final class GADWP_Settings {
|
|
364 |
<td class="title"></td>
|
365 |
<td>
|
366 |
<?php $profile_info = GADWP_Tools::get_selected_profile($gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail']); ?>
|
367 |
-
<?php echo '<pre>' . __("View Name:", '
|
368 |
</td>
|
369 |
</tr>
|
370 |
<?php }?>
|
371 |
<tr>
|
372 |
-
<td colspan="2"><hr><?php echo "<h2>" . __( "Basic Tracking", '
|
373 |
</tr>
|
374 |
<tr>
|
375 |
-
<td class="title"><label for="ga_dash_tracking_type"><?php _e("Tracking Type:", '
|
376 |
<td><select id="ga_dash_tracking_type" name="options[ga_dash_tracking_type]">
|
377 |
-
<option value="classic" <?php selected( $options['ga_dash_tracking_type'], 'classic' ); ?>><?php _e("Classic Analytics", '
|
378 |
-
<option value="universal" <?php selected( $options['ga_dash_tracking_type'], 'universal' ); ?>><?php _e("Universal Analytics", '
|
379 |
</select></td>
|
380 |
</tr>
|
381 |
<tr>
|
@@ -386,7 +386,7 @@ final class GADWP_Settings {
|
|
386 |
<div class="onoffswitch-switch"></div>
|
387 |
</label>
|
388 |
</div>
|
389 |
-
<div class="switch-desc"><?php echo " ".__("anonymize IPs while tracking", '
|
390 |
</td>
|
391 |
</tr>
|
392 |
<tr>
|
@@ -397,7 +397,7 @@ final class GADWP_Settings {
|
|
397 |
<div class="onoffswitch-switch"></div>
|
398 |
</label>
|
399 |
</div>
|
400 |
-
<div class="switch-desc"><?php echo " ".__("enable remarketing, demographics and interests reports", '
|
401 |
</td>
|
402 |
</tr>
|
403 |
</table>
|
@@ -405,7 +405,7 @@ final class GADWP_Settings {
|
|
405 |
<div id="gadwp-events">
|
406 |
<table class="options">
|
407 |
<tr>
|
408 |
-
<td colspan="2"><?php echo "<h2>" . __( "Events Tracking", '
|
409 |
</tr>
|
410 |
<tr>
|
411 |
<td colspan="2" class="title">
|
@@ -415,11 +415,11 @@ final class GADWP_Settings {
|
|
415 |
<div class="onoffswitch-switch"></div>
|
416 |
</label>
|
417 |
</div>
|
418 |
-
<div class="switch-desc"><?php echo " ".__("track downloads, mailto and outbound links", '
|
419 |
</td>
|
420 |
</tr>
|
421 |
<tr>
|
422 |
-
<td class="title"><label for="ga_event_downloads"><?php _e("Downloads Regex:", '
|
423 |
<td><input type="text" id="ga_event_downloads" name="options[ga_event_downloads]" value="<?php echo esc_attr($options['ga_event_downloads']); ?>" size="50"></td>
|
424 |
</tr>
|
425 |
<tr>
|
@@ -430,11 +430,11 @@ final class GADWP_Settings {
|
|
430 |
<div class="onoffswitch-switch"></div>
|
431 |
</label>
|
432 |
</div>
|
433 |
-
<div class="switch-desc"><?php echo " ".__("track affiliate links matching this regex", '
|
434 |
</td>
|
435 |
</tr>
|
436 |
<tr>
|
437 |
-
<td class="title"><label for="ga_event_affiliates"><?php _e("Affiliates Regex:", '
|
438 |
<td><input type="text" id="ga_event_affiliates" name="options[ga_event_affiliates]" value="<?php echo esc_attr($options['ga_event_affiliates']); ?>" size="50"></td>
|
439 |
</tr>
|
440 |
<tr>
|
@@ -445,7 +445,7 @@ final class GADWP_Settings {
|
|
445 |
<div class="onoffswitch-switch"></div>
|
446 |
</label>
|
447 |
</div>
|
448 |
-
<div class="switch-desc"><?php echo " ".__("track fragment identifiers, hashmarks (#) in URI links", '
|
449 |
</td>
|
450 |
</tr>
|
451 |
</table>
|
@@ -453,10 +453,10 @@ final class GADWP_Settings {
|
|
453 |
<div id="gadwp-custom">
|
454 |
<table class="options">
|
455 |
<tr>
|
456 |
-
<td colspan="2"><?php echo "<h2>" . __( "Custom Definitions", '
|
457 |
</tr>
|
458 |
<tr>
|
459 |
-
<td class="title"><label for="ga_author_dimindex"><?php _e("Authors:", '
|
460 |
<td><select id="ga_author_dimindex" name="options[ga_author_dimindex]">
|
461 |
<?php for ($i=0;$i<21;$i++){?>
|
462 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_author_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
@@ -464,7 +464,7 @@ final class GADWP_Settings {
|
|
464 |
</select></td>
|
465 |
</tr>
|
466 |
<tr>
|
467 |
-
<td class="title"><label for="ga_pubyear_dimindex"><?php _e("Publication Year:", '
|
468 |
<td><select id="ga_pubyear_dimindex" name="options[ga_pubyear_dimindex]">
|
469 |
<?php for ($i=0;$i<21;$i++){?>
|
470 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_pubyear_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
@@ -472,7 +472,7 @@ final class GADWP_Settings {
|
|
472 |
</select></td>
|
473 |
</tr>
|
474 |
<tr>
|
475 |
-
<td class="title"><label for="ga_category_dimindex"><?php _e("Categories:", '
|
476 |
<td><select id="ga_category_dimindex" name="options[ga_category_dimindex]">
|
477 |
<?php for ($i=0;$i<21;$i++){?>
|
478 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_category_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
@@ -480,7 +480,7 @@ final class GADWP_Settings {
|
|
480 |
</select></td>
|
481 |
</tr>
|
482 |
<tr>
|
483 |
-
<td class="title"><label for="ga_user_dimindex"><?php _e("User Type:", '
|
484 |
<td><select id="ga_user_dimindex" name="options[ga_user_dimindex]">
|
485 |
<?php for ($i=0;$i<21;$i++){?>
|
486 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_user_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
@@ -492,10 +492,10 @@ final class GADWP_Settings {
|
|
492 |
<div id="gadwp-advanced">
|
493 |
<table class="options">
|
494 |
<tr>
|
495 |
-
<td colspan="2"><?php echo "<h2>" . __( "Advanced Tracking", '
|
496 |
</tr>
|
497 |
<tr>
|
498 |
-
<td class="title"><label for="ga_speed_samplerate"><?php _e("Page Speed SR:", '
|
499 |
<td><input type="number" id="ga_speed_samplerate" name="options[ga_speed_samplerate]" value="<?php echo (int)($options['ga_speed_samplerate']); ?>" max="100" min="1"> %</td>
|
500 |
</tr>
|
501 |
<tr>
|
@@ -506,7 +506,7 @@ final class GADWP_Settings {
|
|
506 |
<div class="onoffswitch-switch"></div>
|
507 |
</label>
|
508 |
</div>
|
509 |
-
<div class="switch-desc"><?php echo " ".__("exclude events from bounce-rate calculation", '
|
510 |
</td>
|
511 |
</tr>
|
512 |
<tr>
|
@@ -517,7 +517,7 @@ final class GADWP_Settings {
|
|
517 |
<div class="onoffswitch-switch"></div>
|
518 |
</label>
|
519 |
</div>
|
520 |
-
<div class="switch-desc"><?php echo " ".__("enable enhanced link attribution", '
|
521 |
</td>
|
522 |
</tr>
|
523 |
<tr>
|
@@ -528,7 +528,7 @@ final class GADWP_Settings {
|
|
528 |
<div class="onoffswitch-switch"></div>
|
529 |
</label>
|
530 |
</div>
|
531 |
-
<div class="switch-desc"><?php echo " ".__("enable AdSense account linking", '
|
532 |
</td>
|
533 |
</tr>
|
534 |
<tr>
|
@@ -539,11 +539,11 @@ final class GADWP_Settings {
|
|
539 |
<div class="onoffswitch-switch"></div>
|
540 |
</label>
|
541 |
</div>
|
542 |
-
<div class="switch-desc"><?php echo " ".__("enable cross domain tracking", '
|
543 |
</td>
|
544 |
</tr>
|
545 |
<tr>
|
546 |
-
<td class="title"><label for="ga_crossdomain_list"><?php _e("Cross Domains:", '
|
547 |
<td><input type="text" id="ga_crossdomain_list" name="options[ga_crossdomain_list]" value="<?php echo esc_attr($options['ga_crossdomain_list']); ?>" size="50"></td>
|
548 |
</tr>
|
549 |
</table>
|
@@ -551,10 +551,10 @@ final class GADWP_Settings {
|
|
551 |
<div id="gadwp-exclude">
|
552 |
<table class="options">
|
553 |
<tr>
|
554 |
-
<td colspan="2"><?php echo "<h2>" . __( "Exclude Tracking", '
|
555 |
</tr>
|
556 |
<tr>
|
557 |
-
<td class="roles title"><label for="ga_track_exclude"><?php _e("Exclude tracking for:", '
|
558 |
<td class="roles">
|
559 |
<?php
|
560 |
if ( ! isset( $wp_roles ) ) {
|
@@ -595,7 +595,7 @@ final class GADWP_Settings {
|
|
595 |
<td colspan="2"><hr></td>
|
596 |
</tr>
|
597 |
<tr>
|
598 |
-
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', '
|
599 |
</tr>
|
600 |
</table>
|
601 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
@@ -638,11 +638,11 @@ final class GADWP_Settings {
|
|
638 |
|
639 |
$options = self::update_options( 'frontend' );
|
640 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] || ! $gadwp->config->options['ga_dash_token'] ) {
|
641 |
-
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', '
|
642 |
}
|
643 |
?>
|
644 |
<div class="wrap">
|
645 |
-
<?php echo "<h2>" . __( "Google Analytics Errors & Debugging", '
|
646 |
</div>
|
647 |
<div id="poststuff">
|
648 |
<div id="post-body" class="metabox-holder columns-2">
|
@@ -652,34 +652,34 @@ final class GADWP_Settings {
|
|
652 |
<?php if (isset($message)) echo $message; ?>
|
653 |
<?php
|
654 |
$tabs = array(
|
655 |
-
'errors' => __( "Errors & Details", '
|
656 |
-
'config' => __( "Plugin Settings", '
|
657 |
self::navigation_tabs( $tabs );
|
658 |
?>
|
659 |
<div id="gadwp-errors">
|
660 |
<table class="options">
|
661 |
<tr>
|
662 |
<td>
|
663 |
-
<?php echo "<h2>" . __( "Last Error detected", '
|
664 |
</td>
|
665 |
</tr>
|
666 |
<tr>
|
667 |
<td>
|
668 |
<?php
|
669 |
-
$errors = esc_html( print_r( get_transient( 'ga_dash_lasterror' ), true ) ) ? esc_html( print_r( get_transient( 'ga_dash_lasterror' ), true ) ) : __( "None", '
|
670 |
echo '<pre class="log_data">Last Error: ';
|
671 |
echo $errors;
|
672 |
?></pre>
|
673 |
</td>
|
674 |
</tr>
|
675 |
<tr>
|
676 |
-
<td colspan="2"><hr><?php echo "<h2>" . __( "Error Details", '
|
677 |
</tr>
|
678 |
<tr>
|
679 |
<td>
|
680 |
<?php
|
681 |
echo '<pre class="log_data">Error Details: ';
|
682 |
-
$error_details = esc_html( print_r( get_transient( 'ga_dash_gapi_errors' ), true ) ) ? "\n" . esc_html( print_r( get_transient( 'ga_dash_gapi_errors' ), true ) ) : __( "None", '
|
683 |
echo $error_details;
|
684 |
?></pre><br />
|
685 |
<hr>
|
@@ -693,7 +693,7 @@ final class GADWP_Settings {
|
|
693 |
<div id="gadwp-config">
|
694 |
<table class="options">
|
695 |
<tr>
|
696 |
-
<td><?php echo "<h2>" . __( "Plugin Configuration", '
|
697 |
</tr>
|
698 |
<tr>
|
699 |
<td><pre class="log_data"><?php echo esc_html(print_r($anonim, true));?></pre><br />
|
@@ -714,7 +714,7 @@ final class GADWP_Settings {
|
|
714 |
return;
|
715 |
}
|
716 |
$options = self::update_options( 'general' );
|
717 |
-
printf( '<div id="gapi-warning" class="updated"><p>%1$s <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=general_screen&utm_campaign=gadwp">%2$s</a></p></div>', __( 'Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:',
|
718 |
if ( null === $gadwp->gapi_controller ) {
|
719 |
$gadwp->gapi_controller = new GADWP_GAPI_Controller();
|
720 |
}
|
@@ -729,9 +729,26 @@ final class GADWP_Settings {
|
|
729 |
$gadwp->config->options['automatic_updates_minorversion'] = 1;
|
730 |
$gadwp->config->set_plugin_options();
|
731 |
$options = self::update_options( 'general' );
|
732 |
-
$message = "<div class='updated'><p>" . __( "Plugin authorization succeeded.", '
|
733 |
delete_transient( 'ga_dash_gapi_errors' );
|
734 |
delete_transient( 'ga_dash_lasterror' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
735 |
} catch ( Google_IO_Exception $e ) {
|
736 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': ' . esc_html( $e ), $gadwp->gapi_controller->error_timeout );
|
737 |
return false;
|
@@ -744,73 +761,56 @@ final class GADWP_Settings {
|
|
744 |
$gadwp->gapi_controller->reset_token( false );
|
745 |
}
|
746 |
} else {
|
747 |
-
$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", '
|
748 |
-
}
|
749 |
-
}
|
750 |
-
if ( $gadwp->config->options['ga_dash_token'] && $gadwp->gapi_controller->client->getAccessToken() ) {
|
751 |
-
if ( ! empty( $gadwp->config->options['ga_dash_profile_list'] ) ) {
|
752 |
-
$profiles = $gadwp->config->options['ga_dash_profile_list'];
|
753 |
-
} else {
|
754 |
-
$profiles = $gadwp->gapi_controller->refresh_profiles();
|
755 |
-
}
|
756 |
-
if ( $profiles ) {
|
757 |
-
$gadwp->config->options['ga_dash_profile_list'] = $profiles;
|
758 |
-
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] ) {
|
759 |
-
$profile = GADWP_Tools::guess_default_domain( $profiles );
|
760 |
-
$gadwp->config->options['ga_dash_tableid_jail'] = $profile;
|
761 |
-
$gadwp->config->options['ga_dash_tableid'] = $profile;
|
762 |
-
}
|
763 |
-
$gadwp->config->set_plugin_options();
|
764 |
-
$options = self::update_options( 'general' );
|
765 |
}
|
766 |
}
|
767 |
if ( isset( $_POST['Clear'] ) ) {
|
768 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
769 |
GADWP_Tools::clear_cache();
|
770 |
-
$message = "<div class='updated'><p>" . __( "Cleared Cache.", '
|
771 |
} else {
|
772 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
773 |
}
|
774 |
}
|
775 |
if ( isset( $_POST['Reset'] ) ) {
|
776 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
777 |
$gadwp->gapi_controller->reset_token( true );
|
778 |
GADWP_Tools::clear_cache();
|
779 |
-
$message = "<div class='updated'><p>" . __( "Token Reseted and Revoked.", '
|
780 |
$options = self::update_options( 'Reset' );
|
781 |
} else {
|
782 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
783 |
}
|
784 |
}
|
785 |
if ( isset( $_POST['Reset_Err'] ) ) {
|
786 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
787 |
delete_transient( 'ga_dash_lasterror' );
|
788 |
delete_transient( 'ga_dash_gapi_errors' );
|
789 |
-
$message = "<div class='updated'><p>" . __( "All errors reseted.", '
|
790 |
} else {
|
791 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
792 |
}
|
793 |
}
|
794 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) && ! isset( $_POST['Clear'] ) && ! isset( $_POST['Reset'] ) && ! isset( $_POST['Reset_Err'] ) ) {
|
795 |
-
$message = "<div class='updated'><p>" . __( "Settings saved.", '
|
796 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
797 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
798 |
}
|
799 |
}
|
800 |
if ( isset( $_POST['Hide'] ) ) {
|
801 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
802 |
-
$message = "<div class='updated'><p>" . __( "All other domains/properties were removed.", '
|
803 |
$lock_profile = GADWP_Tools::get_selected_profile( $gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail'] );
|
804 |
$gadwp->config->options['ga_dash_profile_list'] = array(
|
805 |
$lock_profile );
|
806 |
$options = self::update_options( 'general' );
|
807 |
} else {
|
808 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
809 |
}
|
810 |
}
|
811 |
?>
|
812 |
<div class="wrap">
|
813 |
-
<?php echo "<h2>" . __( "Google Analytics Settings", '
|
814 |
<hr>
|
815 |
</div>
|
816 |
<div id="poststuff">
|
@@ -819,16 +819,17 @@ final class GADWP_Settings {
|
|
819 |
<div class="settings-wrapper">
|
820 |
<div class="inside">
|
821 |
<?php
|
822 |
-
if ( $gadwp->gapi_controller->gapi_errors_handler() ) {
|
823 |
-
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', '
|
824 |
}
|
825 |
if ( isset( $_POST['Authorize'] ) ) {
|
826 |
GADWP_Tools::clear_cache();
|
827 |
$gadwp->gapi_controller->token_request();
|
828 |
-
echo "<div class='updated'><p>" . __( "Use the red link (see below) to generate and get your access code!", '
|
829 |
} else {
|
830 |
-
if ( isset( $message ) )
|
831 |
echo $message;
|
|
|
832 |
?>
|
833 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
834 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
@@ -836,30 +837,30 @@ final class GADWP_Settings {
|
|
836 |
<table class="options">
|
837 |
<tr>
|
838 |
<td colspan="2">
|
839 |
-
<?php echo "<h2>" . __( "Plugin Authorization", '
|
840 |
</td>
|
841 |
</tr>
|
842 |
<tr>
|
843 |
<td colspan="2" class="info">
|
844 |
-
<?php printf(__('You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin requires a properly configured Google Analytics account!', '
|
845 |
</td>
|
846 |
</tr>
|
847 |
<?php if (! $options['ga_dash_token'] || $options['ga_dash_userapi']) {?>
|
848 |
<tr>
|
849 |
-
<td colspan="2" class="info"><input name="options[ga_dash_userapi]" type="checkbox" id="ga_dash_userapi" value="1" <?php checked( $options['ga_dash_userapi'], 1 ); ?> onchange="this.form.submit()" <?php echo ($options['ga_dash_network'])?'disabled="disabled"':''; ?> /><?php echo " ".__("use your own API Project credentials", '
|
850 |
</td>
|
851 |
</tr>
|
852 |
<?php } if ($options['ga_dash_userapi']) { ?>
|
853 |
<tr>
|
854 |
-
<td class="title"><label for="options[ga_dash_apikey]"><?php _e("API Key:", '
|
855 |
<td><input type="text" name="options[ga_dash_apikey]" value="<?php echo esc_attr($options['ga_dash_apikey']); ?>" size="40" required="required"></td>
|
856 |
</tr>
|
857 |
<tr>
|
858 |
-
<td class="title"><label for="options[ga_dash_clientid]"><?php _e("Client ID:", '
|
859 |
<td><input type="text" name="options[ga_dash_clientid]" value="<?php echo esc_attr($options['ga_dash_clientid']); ?>" size="40" required="required"></td>
|
860 |
</tr>
|
861 |
<tr>
|
862 |
-
<td class="title"><label for="options[ga_dash_clientsecret]"><?php _e("Client Secret:", '
|
863 |
<td><input type="text" name="options[ga_dash_clientsecret]" value="<?php echo esc_attr($options['ga_dash_clientsecret']); ?>" size="40" required="required"> <input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
864 |
<?php wp_nonce_field('gadash_form','gadash_security'); ?>
|
865 |
</td>
|
@@ -869,33 +870,33 @@ final class GADWP_Settings {
|
|
869 |
if ( $options['ga_dash_token'] ) {
|
870 |
?>
|
871 |
<tr>
|
872 |
-
<td colspan="2"><input type="submit" name="Reset" class="button button-secondary" value="<?php _e( "Clear Authorization", '
|
873 |
</tr>
|
874 |
<tr>
|
875 |
<td colspan="2"><hr></td>
|
876 |
</tr>
|
877 |
<tr>
|
878 |
-
<td colspan="2"><?php echo "<h2>" . __( "General Settings", '
|
879 |
</tr>
|
880 |
<tr>
|
881 |
-
<td class="title"><label for="ga_dash_tableid_jail"><?php _e("Select View:", '
|
882 |
<td><select id="ga_dash_tableid_jail" <?php disabled(empty($options['ga_dash_profile_list']) || 1 == count($options['ga_dash_profile_list']), true); ?> name="options[ga_dash_tableid_jail]">
|
883 |
<?php
|
884 |
if ( ! empty( $options['ga_dash_profile_list'] ) ) {
|
885 |
foreach ( $options['ga_dash_profile_list'] as $items ) {
|
886 |
if ( $items[3] ) {
|
887 |
echo '<option value="' . esc_attr( $items[1] ) . '" ' . selected( $items[1], $options['ga_dash_tableid_jail'] );
|
888 |
-
echo ' title="' . __( "View Name:", '
|
889 |
}
|
890 |
}
|
891 |
} else {
|
892 |
-
echo '<option value="">' . __( "Property not found", '
|
893 |
}
|
894 |
?>
|
895 |
</select>
|
896 |
<?php
|
897 |
if ( count( $options['ga_dash_profile_list'] ) > 1 ) {
|
898 |
-
?> <input type="submit" name="Hide" class="button button-secondary" value="<?php _e( "Lock Selection", '
|
899 |
}
|
900 |
?>
|
901 |
</td>
|
@@ -907,14 +908,14 @@ final class GADWP_Settings {
|
|
907 |
<td class="title"></td>
|
908 |
<td><?php
|
909 |
$profile_info = GADWP_Tools::get_selected_profile( $gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail'] );
|
910 |
-
echo '<pre>' . __( "View Name:", '
|
911 |
?></td>
|
912 |
</tr>
|
913 |
<?php
|
914 |
}
|
915 |
?>
|
916 |
<tr>
|
917 |
-
<td class="title"><label for="ga_dash_style"><?php _e("Theme Color:", '
|
918 |
<td><input type="text" id="ga_dash_style" class="ga_dash_style" name="options[ga_dash_style]" value="<?php echo esc_attr($options['ga_dash_style']); ?>" size="10"></td>
|
919 |
</tr>
|
920 |
<tr>
|
@@ -922,7 +923,7 @@ final class GADWP_Settings {
|
|
922 |
</tr>
|
923 |
<?php if ( !is_multisite()) {?>
|
924 |
<tr>
|
925 |
-
<td colspan="2"><?php echo "<h2>" . __( "Automatic Updates", '
|
926 |
</tr>
|
927 |
<tr>
|
928 |
<td colspan="2" class="title">
|
@@ -932,7 +933,7 @@ final class GADWP_Settings {
|
|
932 |
<div class="onoffswitch-switch"></div>
|
933 |
</label>
|
934 |
</div>
|
935 |
-
<div class="switch-desc"><?php echo " ".__( "automatic updates for minor versions (security and maintenance releases only)", '
|
936 |
</td>
|
937 |
</tr>
|
938 |
<tr>
|
@@ -940,14 +941,14 @@ final class GADWP_Settings {
|
|
940 |
</tr>
|
941 |
<?php }?>
|
942 |
<tr>
|
943 |
-
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', '
|
944 |
</tr>
|
945 |
<?php } else {?>
|
946 |
<tr>
|
947 |
<td colspan="2"><hr></td>
|
948 |
</tr>
|
949 |
<tr>
|
950 |
-
<td colspan="2"><input type="submit" name="Authorize" class="button button-secondary" id="authorize" value="<?php _e( "Authorize Plugin", '
|
951 |
</tr>
|
952 |
<tr>
|
953 |
<td colspan="2"><hr></td>
|
@@ -977,7 +978,7 @@ final class GADWP_Settings {
|
|
977 |
/*
|
978 |
* Include GAPI
|
979 |
*/
|
980 |
-
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:',
|
981 |
|
982 |
if ( null === $gadwp->gapi_controller ) {
|
983 |
$gadwp->gapi_controller = new GADWP_GAPI_Controller();
|
@@ -994,7 +995,7 @@ final class GADWP_Settings {
|
|
994 |
$gadwp->config->options['automatic_updates_minorversion'] = 1;
|
995 |
$gadwp->config->set_plugin_options( true );
|
996 |
$options = self::update_options( 'network' );
|
997 |
-
$message = "<div class='updated'><p>" . __( "Plugin authorization succeeded.", '
|
998 |
if ( is_multisite() ) { // Cleanup errors on the entire network
|
999 |
foreach ( wp_get_sites( array(
|
1000 |
'limit' => apply_filters( 'gadwp_sites_limit', 100 ) ) ) as $blog ) {
|
@@ -1005,6 +1006,23 @@ final class GADWP_Settings {
|
|
1005 |
} else {
|
1006 |
delete_transient( 'ga_dash_gapi_errors' );
|
1007 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1008 |
} catch ( Google_IO_Exception $e ) {
|
1009 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': ' . esc_html( $e ), $gadwp->gapi_controller->error_timeout );
|
1010 |
return false;
|
@@ -1017,73 +1035,73 @@ final class GADWP_Settings {
|
|
1017 |
$gadwp->gapi_controller->reset_token( false );
|
1018 |
}
|
1019 |
} else {
|
1020 |
-
$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", '
|
1021 |
}
|
1022 |
}
|
1023 |
if ( isset( $_POST['Refresh'] ) ) {
|
1024 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1025 |
$gadwp->config->options['ga_dash_profile_list'] = array();
|
1026 |
-
$message = "<div class='updated'><p>" . __( "Properties refreshed.", '
|
1027 |
$options = self::update_options( 'network' );
|
1028 |
-
|
1029 |
-
|
1030 |
-
|
1031 |
-
|
1032 |
-
|
1033 |
-
|
1034 |
-
|
1035 |
-
|
1036 |
-
|
1037 |
-
|
1038 |
-
|
1039 |
-
|
1040 |
-
|
1041 |
-
|
1042 |
-
|
1043 |
-
|
1044 |
}
|
1045 |
-
|
1046 |
-
$
|
1047 |
}
|
1048 |
}
|
1049 |
if ( isset( $_POST['Clear'] ) ) {
|
1050 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1051 |
GADWP_Tools::clear_cache();
|
1052 |
-
$message = "<div class='updated'><p>" . __( "Cleared Cache.", '
|
1053 |
} else {
|
1054 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
1055 |
}
|
1056 |
}
|
1057 |
if ( isset( $_POST['Reset'] ) ) {
|
1058 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1059 |
$gadwp->gapi_controller->reset_token( true );
|
1060 |
GADWP_Tools::clear_cache();
|
1061 |
-
$message = "<div class='updated'><p>" . __( "Token Reseted and Revoked.", '
|
1062 |
$options = self::update_options( 'Reset' );
|
1063 |
} else {
|
1064 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
1065 |
}
|
1066 |
}
|
1067 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) && ! isset( $_POST['Clear'] ) && ! isset( $_POST['Reset'] ) && ! isset( $_POST['Refresh'] ) ) {
|
1068 |
-
$message = "<div class='updated'><p>" . __( "Settings saved.", '
|
1069 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
1070 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
1071 |
}
|
1072 |
}
|
1073 |
if ( isset( $_POST['Hide'] ) ) {
|
1074 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1075 |
-
$message = "<div class='updated'><p>" . __( "All other domains/properties were removed.", '
|
1076 |
$lock_profile = GADWP_Tools::get_selected_profile( $gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail'] );
|
1077 |
$gadwp->config->options['ga_dash_profile_list'] = array(
|
1078 |
$lock_profile );
|
1079 |
$options = self::update_options( 'network' );
|
1080 |
} else {
|
1081 |
-
$message = "<div class='error'><p>" . __( "Cheating Huh?", '
|
1082 |
}
|
1083 |
}
|
1084 |
?>
|
1085 |
<div class="wrap">
|
1086 |
-
<?php echo "<h2>" . __( "Google Analytics Settings", '
|
1087 |
</div>
|
1088 |
<div id="poststuff">
|
1089 |
<div id="post-body" class="metabox-holder columns-2">
|
@@ -1091,23 +1109,24 @@ final class GADWP_Settings {
|
|
1091 |
<div class="settings-wrapper">
|
1092 |
<div class="inside">
|
1093 |
<?php
|
1094 |
-
if ( $gadwp->gapi_controller->gapi_errors_handler() ) {
|
1095 |
-
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', '
|
1096 |
}
|
1097 |
if ( isset( $_POST['Authorize'] ) ) {
|
1098 |
GADWP_Tools::clear_cache();
|
1099 |
$gadwp->gapi_controller->token_request();
|
1100 |
-
echo "<div class='updated'><p>" . __( "Use the red link (see below) to generate and get your access code!", '
|
1101 |
} else {
|
1102 |
-
if ( isset( $message ) )
|
1103 |
echo $message;
|
|
|
1104 |
?>
|
1105 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
1106 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
1107 |
<?php wp_nonce_field('gadash_form','gadash_security'); ?>
|
1108 |
<table class="options">
|
1109 |
<tr>
|
1110 |
-
<td colspan="2"><?php echo "<h2>" . __( "Network Setup", '
|
1111 |
</tr>
|
1112 |
<tr>
|
1113 |
<td colspan="2" class="title">
|
@@ -1117,7 +1136,7 @@ final class GADWP_Settings {
|
|
1117 |
<div class="onoffswitch-switch"></div>
|
1118 |
</label>
|
1119 |
</div>
|
1120 |
-
<div class="switch-desc"><?php echo " ".__("use a single Google Analytics account for the entire network", '
|
1121 |
</td>
|
1122 |
</tr>
|
1123 |
<?php if ($options['ga_dash_network']){ //Network Mode check?>
|
@@ -1125,18 +1144,18 @@ final class GADWP_Settings {
|
|
1125 |
<td colspan="2"><hr></td>
|
1126 |
</tr>
|
1127 |
<tr>
|
1128 |
-
<td colspan="2"><?php echo "<h2>" . __( "Plugin Authorization", '
|
1129 |
</tr>
|
1130 |
<tr>
|
1131 |
<td colspan="2" class="info">
|
1132 |
-
<?php printf(__('You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin requires a properly configured Google Analytics account!', '
|
1133 |
</td>
|
1134 |
</tr>
|
1135 |
<?php
|
1136 |
if ( ! $options['ga_dash_token'] || $options['ga_dash_userapi'] ) {
|
1137 |
?>
|
1138 |
<tr>
|
1139 |
-
<td colspan="2" class="info"><input name="options[ga_dash_userapi]" type="checkbox" id="ga_dash_userapi" value="1" <?php checked( $options['ga_dash_userapi'], 1 ); ?> onchange="this.form.submit()" /><?php echo " ".__("use your own API Project credentials", '
|
1140 |
</td>
|
1141 |
</tr>
|
1142 |
<?php
|
@@ -1144,15 +1163,15 @@ final class GADWP_Settings {
|
|
1144 |
if ( $options['ga_dash_userapi'] ) {
|
1145 |
?>
|
1146 |
<tr>
|
1147 |
-
<td class="title"><label for="options[ga_dash_apikey]"><?php _e("API Key:", '
|
1148 |
<td><input type="text" name="options[ga_dash_apikey]" value="<?php echo esc_attr($options['ga_dash_apikey']); ?>" size="40" required="required"></td>
|
1149 |
</tr>
|
1150 |
<tr>
|
1151 |
-
<td class="title"><label for="options[ga_dash_clientid]"><?php _e("Client ID:", '
|
1152 |
<td><input type="text" name="options[ga_dash_clientid]" value="<?php echo esc_attr($options['ga_dash_clientid']); ?>" size="40" required="required"></td>
|
1153 |
</tr>
|
1154 |
<tr>
|
1155 |
-
<td class="title"><label for="options[ga_dash_clientsecret]"><?php _e("Client Secret:", '
|
1156 |
<td><input type="text" name="options[ga_dash_clientsecret]" value="<?php echo esc_attr($options['ga_dash_clientsecret']); ?>" size="40" required="required"> <input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
1157 |
<?php wp_nonce_field('gadash_form','gadash_security'); ?>
|
1158 |
</td>
|
@@ -1162,13 +1181,13 @@ final class GADWP_Settings {
|
|
1162 |
if ( $options['ga_dash_token'] ) {
|
1163 |
?>
|
1164 |
<tr>
|
1165 |
-
<td colspan="2"><input type="submit" name="Reset" class="button button-secondary" value="<?php _e( "Clear Authorization", '
|
1166 |
</tr>
|
1167 |
<tr>
|
1168 |
<td colspan="2"><hr></td>
|
1169 |
</tr>
|
1170 |
<tr>
|
1171 |
-
<td colspan="2"><?php echo "<h2>" . __( "Properties/Views Settings", '
|
1172 |
</tr>
|
1173 |
<?php
|
1174 |
if ( isset( $options['ga_dash_tableid_network'] ) ) {
|
@@ -1185,11 +1204,11 @@ final class GADWP_Settings {
|
|
1185 |
foreach ( $options['ga_dash_profile_list'] as $items ) {
|
1186 |
if ( $items[3] ) {
|
1187 |
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'] : '' );
|
1188 |
-
echo ' title="' . __( "View Name:", '
|
1189 |
}
|
1190 |
}
|
1191 |
} else {
|
1192 |
-
echo '<option value="">' . __( "Property not found", '
|
1193 |
}
|
1194 |
?>
|
1195 |
</select> <br /></td>
|
@@ -1198,7 +1217,7 @@ final class GADWP_Settings {
|
|
1198 |
}
|
1199 |
?>
|
1200 |
<tr>
|
1201 |
-
<td colspan="2"><?php echo "<h2>" . __( "Automatic Updates", '
|
1202 |
</tr>
|
1203 |
<tr>
|
1204 |
<td colspan="2" class="title">
|
@@ -1208,11 +1227,11 @@ final class GADWP_Settings {
|
|
1208 |
<div class="onoffswitch-switch"></div>
|
1209 |
</label>
|
1210 |
</div>
|
1211 |
-
<div class="switch-desc"><?php echo " ".__( "automatic updates for minor versions (security and maintenance releases only)", '
|
1212 |
</td>
|
1213 |
</tr>
|
1214 |
<tr>
|
1215 |
-
<td colspan="2"><hr><?php echo "<h2>" . __( "Exclude Tracking", '
|
1216 |
</tr>
|
1217 |
<tr>
|
1218 |
<td colspan="2" class="title">
|
@@ -1222,14 +1241,14 @@ final class GADWP_Settings {
|
|
1222 |
<div class="onoffswitch-switch"></div>
|
1223 |
</label>
|
1224 |
</div>
|
1225 |
-
<div class="switch-desc"><?php echo " ".__("exclude Super Admin tracking for the entire network", '
|
1226 |
</td>
|
1227 |
</tr>
|
1228 |
<tr>
|
1229 |
<td colspan="2"><hr></td>
|
1230 |
</tr>
|
1231 |
<tr>
|
1232 |
-
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', '
|
1233 |
</tr>
|
1234 |
<?php
|
1235 |
} else {
|
@@ -1238,7 +1257,7 @@ final class GADWP_Settings {
|
|
1238 |
<td colspan="2"><hr></td>
|
1239 |
</tr>
|
1240 |
<tr>
|
1241 |
-
<td colspan="2"><input type="submit" name="Authorize" class="button button-secondary" id="authorize" value="<?php _e( "Authorize Plugin", '
|
1242 |
</tr>
|
1243 |
<?php } //Network Mode check?>
|
1244 |
<tr>
|
@@ -1270,7 +1289,7 @@ final class GADWP_Settings {
|
|
1270 |
<div class="meta-box-sortables">
|
1271 |
<div class="postbox">
|
1272 |
<h3>
|
1273 |
-
<span><?php _e("Setup Tutorial & Demo",'
|
1274 |
</h3>
|
1275 |
<div class="inside">
|
1276 |
<a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=video&utm_campaign=gadwp" target="_blank"><img src="<?php echo plugins_url( 'images/google-analytics-dashboard.png' , __FILE__ );?>" width="100%" alt="" /></a>
|
@@ -1278,7 +1297,7 @@ final class GADWP_Settings {
|
|
1278 |
</div>
|
1279 |
<div class="postbox">
|
1280 |
<h3>
|
1281 |
-
<span><?php _e("Follow & Review",'
|
1282 |
</h3>
|
1283 |
<div class="inside">
|
1284 |
<div class="gadash-desc">
|
@@ -1304,47 +1323,47 @@ final class GADWP_Settings {
|
|
1304 |
<a href="http://wordpress.org/support/view/plugin-reviews/google-analytics-dashboard-for-wp#plugin-info"><img src="<?php echo plugins_url( 'images/star.png' , __FILE__ ); ?>" /></a>
|
1305 |
</div>
|
1306 |
<div class="gadash-desc">
|
1307 |
-
<?php printf(__('Your feedback and review are both important, %s!', '
|
1308 |
</div>
|
1309 |
</div>
|
1310 |
</div>
|
1311 |
<div class="postbox">
|
1312 |
<h3>
|
1313 |
-
<span><?php _e("Further Reading",'
|
1314 |
</h3>
|
1315 |
<div class="inside">
|
1316 |
<div class="gadash-title">
|
1317 |
<a href="https://deconf.com/move-website-https-ssl/?utm_source=gadwp_config&utm_medium=link&utm_content=ssl&utm_campaign=gadwp"><img src="<?php echo plugins_url( 'images/ssl.png' , __FILE__ ); ?>" /></a>
|
1318 |
</div>
|
1319 |
<div class="gadash-desc">
|
1320 |
-
<?php printf(__('%s by moving your website to HTTPS/SSL.', '
|
1321 |
</div>
|
1322 |
<br />
|
1323 |
<div class="gadash-title">
|
1324 |
<a href="https://deconf.com/wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=plugins&utm_campaign=gadwp"><img src="<?php echo plugins_url( 'images/wp.png' , __FILE__ ); ?>" /></a>
|
1325 |
</div>
|
1326 |
<div class="gadash-desc">
|
1327 |
-
<?php printf(__('Other %s written by the same author', '
|
1328 |
</div>
|
1329 |
</div>
|
1330 |
</div>
|
1331 |
<div class="postbox">
|
1332 |
<h3>
|
1333 |
-
<span><?php _e("Other Services",'
|
1334 |
</h3>
|
1335 |
<div class="inside">
|
1336 |
<div class="gadash-title">
|
1337 |
<a href="https://deconf.com/wordpress-cdn-speeds-up-your-site/"><img src="<?php echo plugins_url( 'images/mcdn.png' , __FILE__ ); ?>" /></a>
|
1338 |
</div>
|
1339 |
<div class="gadash-desc">
|
1340 |
-
<?php printf(__('Speed up your website and plug into a whole %s', '
|
1341 |
</div>
|
1342 |
<br />
|
1343 |
<div class="gadash-title">
|
1344 |
<a href="https://deconf.com/clicky-web-analytics-review/?utm_source=gadwp_config&utm_medium=link&utm_content=clicky&utm_campaign=gadwp"><img src="<?php echo plugins_url( 'images/clicky.png' , __FILE__ ); ?>" /></a>
|
1345 |
</div>
|
1346 |
<div class="gadash-desc">
|
1347 |
-
<?php printf(__('%s service with users tracking at IP level.', '
|
1348 |
</div>
|
1349 |
</div>
|
1350 |
</div>
|
86 |
}
|
87 |
$options = self::update_options( 'frontend' );
|
88 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) ) {
|
89 |
+
$message = "<div class='updated'><p>" . __( "Settings saved.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
90 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
91 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
92 |
}
|
93 |
}
|
94 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] || ! $gadwp->config->options['ga_dash_token'] ) {
|
95 |
+
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_errors_debugging', false ), __( 'Errors & Debug', 'google-analytics-dashboard-for-wp' ) ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_settings', false ), __( 'authorize the plugin', 'google-analytics-dashboard-for-wp' ) ) ) );
|
96 |
}
|
97 |
?>
|
98 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
99 |
<div class="wrap">
|
100 |
+
<?php echo "<h2>" . __( "Google Analytics Frontend Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?><hr>
|
101 |
</div>
|
102 |
<div id="poststuff">
|
103 |
<div id="post-body" class="metabox-holder columns-2">
|
107 |
<?php if (isset($message)) echo $message; ?>
|
108 |
<table class="options">
|
109 |
<tr>
|
110 |
+
<td colspan="2"><?php echo "<h2>" . __( "Permissions", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
111 |
</tr>
|
112 |
<tr>
|
113 |
+
<td class="roles title"><label for="ga_dash_access_front"><?php _e("Show stats to:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
114 |
<td class="roles">
|
115 |
<?php
|
116 |
if ( ! isset( $wp_roles ) ) {
|
151 |
<div class="onoffswitch-switch"></div>
|
152 |
</label>
|
153 |
</div>
|
154 |
+
<div class="switch-desc"><?php echo " ".__("enable web page reports on frontend", 'google-analytics-dashboard-for-wp' );?></div>
|
155 |
</td>
|
156 |
</tr>
|
157 |
<tr>
|
158 |
<td colspan="2"><hr></td>
|
159 |
</tr>
|
160 |
<tr>
|
161 |
+
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', 'google-analytics-dashboard-for-wp' ) ?>" /></td>
|
162 |
</tr>
|
163 |
</table>
|
164 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
181 |
}
|
182 |
$options = self::update_options( 'backend' );
|
183 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) ) {
|
184 |
+
$message = "<div class='updated'><p>" . __( "Settings saved.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
185 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
186 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
187 |
}
|
188 |
}
|
189 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] || ! $gadwp->config->options['ga_dash_token'] ) {
|
190 |
+
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_errors_debugging', false ), __( 'Errors & Debug', 'google-analytics-dashboard-for-wp' ) ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_settings', false ), __( 'authorize the plugin', 'google-analytics-dashboard-for-wp' ) ) ) );
|
191 |
}
|
192 |
?>
|
193 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
194 |
<div class="wrap">
|
195 |
+
<?php echo "<h2>" . __( "Google Analytics Backend Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?><hr>
|
196 |
</div>
|
197 |
<div id="poststuff">
|
198 |
<div id="post-body" class="metabox-holder columns-2">
|
202 |
<?php if (isset($message)) echo $message; ?>
|
203 |
<table class="options">
|
204 |
<tr>
|
205 |
+
<td colspan="2"><?php echo "<h2>" . __( "Permissions", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
206 |
</tr>
|
207 |
<tr>
|
208 |
+
<td class="roles title"><label for="ga_dash_access_back"><?php _e("Show stats to:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
209 |
<td class="roles">
|
210 |
<?php
|
211 |
if ( ! isset( $wp_roles ) ) {
|
248 |
<div class="onoffswitch-switch"></div>
|
249 |
</label>
|
250 |
</div>
|
251 |
+
<div class="switch-desc"><?php _e ( "enable Switch View functionality", 'google-analytics-dashboard-for-wp' );?></div>
|
252 |
</td>
|
253 |
</tr>
|
254 |
<tr>
|
259 |
<div class="onoffswitch-switch"></div>
|
260 |
</label>
|
261 |
</div>
|
262 |
+
<div class="switch-desc"><?php _e ( "enable reports on Posts List and Pages List", 'google-analytics-dashboard-for-wp' );?></div>
|
263 |
</td>
|
264 |
</tr>
|
265 |
<tr>
|
270 |
<div class="onoffswitch-switch"></div>
|
271 |
</label>
|
272 |
</div>
|
273 |
+
<div class="switch-desc"><?php _e ( "enable the main Dashboard Widget", 'google-analytics-dashboard-for-wp' );?></div>
|
274 |
</td>
|
275 |
</tr>
|
276 |
<tr>
|
277 |
+
<td colspan="2"><hr><?php echo "<h2>" . __( "Real-Time Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
278 |
</tr>
|
279 |
<tr>
|
280 |
+
<td colspan="2" class="title"> <?php _e("Maximum number of pages to display on real-time tab:", 'google-analytics-dashboard-for-wp'); ?>
|
281 |
<input type="number" name="options[ga_realtime_pages]" id="ga_realtime_pages" value="<?php echo (int)$options['ga_realtime_pages']; ?>" size="3">
|
282 |
</td>
|
283 |
</tr>
|
284 |
<tr>
|
285 |
+
<td colspan="2"><hr><?php echo "<h2>" . __( "Location Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
286 |
</tr>
|
287 |
<tr>
|
288 |
<td colspan="2" class="title">
|
289 |
+
<?php echo __("Target Geo Map to country:", 'google-analytics-dashboard-for-wp'); ?>
|
290 |
<input type="text" style="text-align: center;" name="options[ga_target_geomap]" value="<?php echo esc_attr($options['ga_target_geomap']); ?>" size="3">
|
291 |
</td>
|
292 |
</tr>
|
294 |
<td colspan="2"><hr></td>
|
295 |
</tr>
|
296 |
<tr>
|
297 |
+
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', 'google-analytics-dashboard-for-wp' ) ?>" /></td>
|
298 |
</tr>
|
299 |
</table>
|
300 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
315 |
}
|
316 |
$options = self::update_options( 'tracking' );
|
317 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) ) {
|
318 |
+
$message = "<div class='updated'><p>" . __( "Settings saved.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
319 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
320 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
321 |
}
|
322 |
}
|
323 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] ) {
|
324 |
+
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_errors_debugging', false ), __( 'Errors & Debug', 'google-analytics-dashboard-for-wp' ) ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_settings', false ), __( 'authorize the plugin', 'google-analytics-dashboard-for-wp' ) ) ) );
|
325 |
}
|
326 |
if ( ! $options['ga_dash_tracking'] ) {
|
327 |
+
$message = "<div class='error'><p>" . __( "The tracking component is disabled. You should set <strong>Tracking Options</strong> to <strong>Enabled</strong>", 'google-analytics-dashboard-for-wp' ) . ".</p></div>";
|
328 |
}
|
329 |
?>
|
330 |
<form name="ga_dash_form" method="post" action="<?php esc_url($_SERVER['REQUEST_URI']); ?>">
|
331 |
<div class="wrap">
|
332 |
+
<?php echo "<h2>" . __( "Google Analytics Tracking Code", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?>
|
333 |
</div>
|
334 |
<div id="poststuff">
|
335 |
<div id="post-body" class="metabox-holder columns-2">
|
338 |
<div class="inside">
|
339 |
<?php
|
340 |
$tabs = array(
|
341 |
+
'basic' => __( "Basic Settings", 'google-analytics-dashboard-for-wp' ),
|
342 |
+
'events' => __( "Events Tracking", 'google-analytics-dashboard-for-wp' ),
|
343 |
+
'custom' => __( "Custom Definitions", 'google-analytics-dashboard-for-wp' ),
|
344 |
+
'exclude' => __( "Exclude Tracking", 'google-analytics-dashboard-for-wp' ),
|
345 |
+
'advanced' => __( "Advanced Settings", 'google-analytics-dashboard-for-wp' ) );
|
346 |
self::navigation_tabs( $tabs );
|
347 |
if ( isset( $message ) )
|
348 |
echo $message;
|
350 |
<div id="gadwp-basic">
|
351 |
<table class="options">
|
352 |
<tr>
|
353 |
+
<td colspan="2"><?php echo "<h2>" . __( "Tracking Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
354 |
</tr>
|
355 |
<tr>
|
356 |
+
<td class="title"><label for="ga_dash_tracking"><?php _e("Tracking Options:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
357 |
<td><select id="ga_dash_tracking" name="options[ga_dash_tracking]" onchange="this.form.submit()">
|
358 |
+
<option value="0" <?php selected( $options['ga_dash_tracking'], 0 ); ?>><?php _e("Disabled", 'google-analytics-dashboard-for-wp');?></option>
|
359 |
+
<option value="1" <?php selected( $options['ga_dash_tracking'], 1 ); ?>><?php _e("Enabled", 'google-analytics-dashboard-for-wp');?></option>
|
360 |
</select></td>
|
361 |
</tr>
|
362 |
<?php if ($options['ga_dash_tracking']) {?>
|
364 |
<td class="title"></td>
|
365 |
<td>
|
366 |
<?php $profile_info = GADWP_Tools::get_selected_profile($gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail']); ?>
|
367 |
+
<?php echo '<pre>' . __("View Name:", 'google-analytics-dashboard-for-wp') . "\t" . esc_html($profile_info[0]) . "<br />" . __("Tracking ID:", 'google-analytics-dashboard-for-wp') . "\t" . esc_html($profile_info[2]) . "<br />" . __("Default URL:", 'google-analytics-dashboard-for-wp') . "\t" . esc_html($profile_info[3]) . "<br />" . __("Time Zone:", 'google-analytics-dashboard-for-wp') . "\t" . esc_html($profile_info[5]) . '</pre>';?>
|
368 |
</td>
|
369 |
</tr>
|
370 |
<?php }?>
|
371 |
<tr>
|
372 |
+
<td colspan="2"><hr><?php echo "<h2>" . __( "Basic Tracking", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
373 |
</tr>
|
374 |
<tr>
|
375 |
+
<td class="title"><label for="ga_dash_tracking_type"><?php _e("Tracking Type:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
376 |
<td><select id="ga_dash_tracking_type" name="options[ga_dash_tracking_type]">
|
377 |
+
<option value="classic" <?php selected( $options['ga_dash_tracking_type'], 'classic' ); ?>><?php _e("Classic Analytics", 'google-analytics-dashboard-for-wp');?></option>
|
378 |
+
<option value="universal" <?php selected( $options['ga_dash_tracking_type'], 'universal' ); ?>><?php _e("Universal Analytics", 'google-analytics-dashboard-for-wp');?></option>
|
379 |
</select></td>
|
380 |
</tr>
|
381 |
<tr>
|
386 |
<div class="onoffswitch-switch"></div>
|
387 |
</label>
|
388 |
</div>
|
389 |
+
<div class="switch-desc"><?php echo " ".__("anonymize IPs while tracking", 'google-analytics-dashboard-for-wp' );?></div>
|
390 |
</td>
|
391 |
</tr>
|
392 |
<tr>
|
397 |
<div class="onoffswitch-switch"></div>
|
398 |
</label>
|
399 |
</div>
|
400 |
+
<div class="switch-desc"><?php echo " ".__("enable remarketing, demographics and interests reports", 'google-analytics-dashboard-for-wp' );?></div>
|
401 |
</td>
|
402 |
</tr>
|
403 |
</table>
|
405 |
<div id="gadwp-events">
|
406 |
<table class="options">
|
407 |
<tr>
|
408 |
+
<td colspan="2"><?php echo "<h2>" . __( "Events Tracking", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
409 |
</tr>
|
410 |
<tr>
|
411 |
<td colspan="2" class="title">
|
415 |
<div class="onoffswitch-switch"></div>
|
416 |
</label>
|
417 |
</div>
|
418 |
+
<div class="switch-desc"><?php echo " ".__("track downloads, mailto and outbound links", 'google-analytics-dashboard-for-wp' ); ?></div>
|
419 |
</td>
|
420 |
</tr>
|
421 |
<tr>
|
422 |
+
<td class="title"><label for="ga_event_downloads"><?php _e("Downloads Regex:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
423 |
<td><input type="text" id="ga_event_downloads" name="options[ga_event_downloads]" value="<?php echo esc_attr($options['ga_event_downloads']); ?>" size="50"></td>
|
424 |
</tr>
|
425 |
<tr>
|
430 |
<div class="onoffswitch-switch"></div>
|
431 |
</label>
|
432 |
</div>
|
433 |
+
<div class="switch-desc"><?php echo " ".__("track affiliate links matching this regex", 'google-analytics-dashboard-for-wp' ); ?></div>
|
434 |
</td>
|
435 |
</tr>
|
436 |
<tr>
|
437 |
+
<td class="title"><label for="ga_event_affiliates"><?php _e("Affiliates Regex:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
438 |
<td><input type="text" id="ga_event_affiliates" name="options[ga_event_affiliates]" value="<?php echo esc_attr($options['ga_event_affiliates']); ?>" size="50"></td>
|
439 |
</tr>
|
440 |
<tr>
|
445 |
<div class="onoffswitch-switch"></div>
|
446 |
</label>
|
447 |
</div>
|
448 |
+
<div class="switch-desc"><?php echo " ".__("track fragment identifiers, hashmarks (#) in URI links", 'google-analytics-dashboard-for-wp' ); ?></div>
|
449 |
</td>
|
450 |
</tr>
|
451 |
</table>
|
453 |
<div id="gadwp-custom">
|
454 |
<table class="options">
|
455 |
<tr>
|
456 |
+
<td colspan="2"><?php echo "<h2>" . __( "Custom Definitions", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
457 |
</tr>
|
458 |
<tr>
|
459 |
+
<td class="title"><label for="ga_author_dimindex"><?php _e("Authors:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
460 |
<td><select id="ga_author_dimindex" name="options[ga_author_dimindex]">
|
461 |
<?php for ($i=0;$i<21;$i++){?>
|
462 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_author_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
464 |
</select></td>
|
465 |
</tr>
|
466 |
<tr>
|
467 |
+
<td class="title"><label for="ga_pubyear_dimindex"><?php _e("Publication Year:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
468 |
<td><select id="ga_pubyear_dimindex" name="options[ga_pubyear_dimindex]">
|
469 |
<?php for ($i=0;$i<21;$i++){?>
|
470 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_pubyear_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
472 |
</select></td>
|
473 |
</tr>
|
474 |
<tr>
|
475 |
+
<td class="title"><label for="ga_category_dimindex"><?php _e("Categories:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
476 |
<td><select id="ga_category_dimindex" name="options[ga_category_dimindex]">
|
477 |
<?php for ($i=0;$i<21;$i++){?>
|
478 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_category_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
480 |
</select></td>
|
481 |
</tr>
|
482 |
<tr>
|
483 |
+
<td class="title"><label for="ga_user_dimindex"><?php _e("User Type:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
484 |
<td><select id="ga_user_dimindex" name="options[ga_user_dimindex]">
|
485 |
<?php for ($i=0;$i<21;$i++){?>
|
486 |
<option value="<?php echo $i;?>" <?php selected( $options['ga_user_dimindex'], $i ); ?>><?php echo $i==0?'Disabled':'dimension '.$i; ?></option>
|
492 |
<div id="gadwp-advanced">
|
493 |
<table class="options">
|
494 |
<tr>
|
495 |
+
<td colspan="2"><?php echo "<h2>" . __( "Advanced Tracking", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
496 |
</tr>
|
497 |
<tr>
|
498 |
+
<td class="title"><label for="ga_speed_samplerate"><?php _e("Page Speed SR:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
499 |
<td><input type="number" id="ga_speed_samplerate" name="options[ga_speed_samplerate]" value="<?php echo (int)($options['ga_speed_samplerate']); ?>" max="100" min="1"> %</td>
|
500 |
</tr>
|
501 |
<tr>
|
506 |
<div class="onoffswitch-switch"></div>
|
507 |
</label>
|
508 |
</div>
|
509 |
+
<div class="switch-desc"><?php echo " ".__("exclude events from bounce-rate calculation", 'google-analytics-dashboard-for-wp' );?></div>
|
510 |
</td>
|
511 |
</tr>
|
512 |
<tr>
|
517 |
<div class="onoffswitch-switch"></div>
|
518 |
</label>
|
519 |
</div>
|
520 |
+
<div class="switch-desc"><?php echo " ".__("enable enhanced link attribution", 'google-analytics-dashboard-for-wp' );?></div>
|
521 |
</td>
|
522 |
</tr>
|
523 |
<tr>
|
528 |
<div class="onoffswitch-switch"></div>
|
529 |
</label>
|
530 |
</div>
|
531 |
+
<div class="switch-desc"><?php echo " ".__("enable AdSense account linking", 'google-analytics-dashboard-for-wp' );?></div>
|
532 |
</td>
|
533 |
</tr>
|
534 |
<tr>
|
539 |
<div class="onoffswitch-switch"></div>
|
540 |
</label>
|
541 |
</div>
|
542 |
+
<div class="switch-desc"><?php echo " ".__("enable cross domain tracking", 'google-analytics-dashboard-for-wp' ); ?></div>
|
543 |
</td>
|
544 |
</tr>
|
545 |
<tr>
|
546 |
+
<td class="title"><label for="ga_crossdomain_list"><?php _e("Cross Domains:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
547 |
<td><input type="text" id="ga_crossdomain_list" name="options[ga_crossdomain_list]" value="<?php echo esc_attr($options['ga_crossdomain_list']); ?>" size="50"></td>
|
548 |
</tr>
|
549 |
</table>
|
551 |
<div id="gadwp-exclude">
|
552 |
<table class="options">
|
553 |
<tr>
|
554 |
+
<td colspan="2"><?php echo "<h2>" . __( "Exclude Tracking", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
555 |
</tr>
|
556 |
<tr>
|
557 |
+
<td class="roles title"><label for="ga_track_exclude"><?php _e("Exclude tracking for:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
558 |
<td class="roles">
|
559 |
<?php
|
560 |
if ( ! isset( $wp_roles ) ) {
|
595 |
<td colspan="2"><hr></td>
|
596 |
</tr>
|
597 |
<tr>
|
598 |
+
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', 'google-analytics-dashboard-for-wp' ) ?>" /></td>
|
599 |
</tr>
|
600 |
</table>
|
601 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
638 |
|
639 |
$options = self::update_options( 'frontend' );
|
640 |
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] || ! $gadwp->config->options['ga_dash_token'] ) {
|
641 |
+
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_errors_debugging', false ), __( 'Errors & Debug', 'google-analytics-dashboard-for-wp' ) ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_settings', false ), __( 'authorize the plugin', 'google-analytics-dashboard-for-wp' ) ) ) );
|
642 |
}
|
643 |
?>
|
644 |
<div class="wrap">
|
645 |
+
<?php echo "<h2>" . __( "Google Analytics Errors & Debugging", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?>
|
646 |
</div>
|
647 |
<div id="poststuff">
|
648 |
<div id="post-body" class="metabox-holder columns-2">
|
652 |
<?php if (isset($message)) echo $message; ?>
|
653 |
<?php
|
654 |
$tabs = array(
|
655 |
+
'errors' => __( "Errors & Details", 'google-analytics-dashboard-for-wp' ),
|
656 |
+
'config' => __( "Plugin Settings", 'google-analytics-dashboard-for-wp' ) );
|
657 |
self::navigation_tabs( $tabs );
|
658 |
?>
|
659 |
<div id="gadwp-errors">
|
660 |
<table class="options">
|
661 |
<tr>
|
662 |
<td>
|
663 |
+
<?php echo "<h2>" . __( "Last Error detected", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?>
|
664 |
</td>
|
665 |
</tr>
|
666 |
<tr>
|
667 |
<td>
|
668 |
<?php
|
669 |
+
$errors = esc_html( print_r( get_transient( 'ga_dash_lasterror' ), true ) ) ? esc_html( print_r( get_transient( 'ga_dash_lasterror' ), true ) ) : __( "None", 'google-analytics-dashboard-for-wp' );
|
670 |
echo '<pre class="log_data">Last Error: ';
|
671 |
echo $errors;
|
672 |
?></pre>
|
673 |
</td>
|
674 |
</tr>
|
675 |
<tr>
|
676 |
+
<td colspan="2"><hr><?php echo "<h2>" . __( "Error Details", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
677 |
</tr>
|
678 |
<tr>
|
679 |
<td>
|
680 |
<?php
|
681 |
echo '<pre class="log_data">Error Details: ';
|
682 |
+
$error_details = esc_html( print_r( get_transient( 'ga_dash_gapi_errors' ), true ) ) ? "\n" . esc_html( print_r( get_transient( 'ga_dash_gapi_errors' ), true ) ) : __( "None", 'google-analytics-dashboard-for-wp' );
|
683 |
echo $error_details;
|
684 |
?></pre><br />
|
685 |
<hr>
|
693 |
<div id="gadwp-config">
|
694 |
<table class="options">
|
695 |
<tr>
|
696 |
+
<td><?php echo "<h2>" . __( "Plugin Configuration", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
697 |
</tr>
|
698 |
<tr>
|
699 |
<td><pre class="log_data"><?php echo esc_html(print_r($anonim, true));?></pre><br />
|
714 |
return;
|
715 |
}
|
716 |
$options = self::update_options( 'general' );
|
717 |
+
printf( '<div id="gapi-warning" class="updated"><p>%1$s <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=general_screen&utm_campaign=gadwp">%2$s</a></p></div>', __( 'Loading the required libraries. If this results in a blank screen or a fatal error, try this solution:', 'google-analytics-dashboard-for-wp' ), __( 'Library conflicts between WordPress plugins', 'google-analytics-dashboard-for-wp' ) );
|
718 |
if ( null === $gadwp->gapi_controller ) {
|
719 |
$gadwp->gapi_controller = new GADWP_GAPI_Controller();
|
720 |
}
|
729 |
$gadwp->config->options['automatic_updates_minorversion'] = 1;
|
730 |
$gadwp->config->set_plugin_options();
|
731 |
$options = self::update_options( 'general' );
|
732 |
+
$message = "<div class='updated'><p>" . __( "Plugin authorization succeeded.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
733 |
delete_transient( 'ga_dash_gapi_errors' );
|
734 |
delete_transient( 'ga_dash_lasterror' );
|
735 |
+
if ( $gadwp->config->options['ga_dash_token'] && $gadwp->gapi_controller->client->getAccessToken() ) {
|
736 |
+
if ( ! empty( $gadwp->config->options['ga_dash_profile_list'] ) ) {
|
737 |
+
$profiles = $gadwp->config->options['ga_dash_profile_list'];
|
738 |
+
} else {
|
739 |
+
$profiles = $gadwp->gapi_controller->refresh_profiles();
|
740 |
+
}
|
741 |
+
if ( $profiles ) {
|
742 |
+
$gadwp->config->options['ga_dash_profile_list'] = $profiles;
|
743 |
+
if ( ! $gadwp->config->options['ga_dash_tableid_jail'] ) {
|
744 |
+
$profile = GADWP_Tools::guess_default_domain( $profiles );
|
745 |
+
$gadwp->config->options['ga_dash_tableid_jail'] = $profile;
|
746 |
+
$gadwp->config->options['ga_dash_tableid'] = $profile;
|
747 |
+
}
|
748 |
+
$gadwp->config->set_plugin_options();
|
749 |
+
$options = self::update_options( 'general' );
|
750 |
+
}
|
751 |
+
}
|
752 |
} catch ( Google_IO_Exception $e ) {
|
753 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': ' . esc_html( $e ), $gadwp->gapi_controller->error_timeout );
|
754 |
return false;
|
761 |
$gadwp->gapi_controller->reset_token( false );
|
762 |
}
|
763 |
} else {
|
764 |
+
$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", 'google-analytics-dashboard-for-wp' ) . ".</p></div>";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
765 |
}
|
766 |
}
|
767 |
if ( isset( $_POST['Clear'] ) ) {
|
768 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
769 |
GADWP_Tools::clear_cache();
|
770 |
+
$message = "<div class='updated'><p>" . __( "Cleared Cache.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
771 |
} else {
|
772 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
773 |
}
|
774 |
}
|
775 |
if ( isset( $_POST['Reset'] ) ) {
|
776 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
777 |
$gadwp->gapi_controller->reset_token( true );
|
778 |
GADWP_Tools::clear_cache();
|
779 |
+
$message = "<div class='updated'><p>" . __( "Token Reseted and Revoked.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
780 |
$options = self::update_options( 'Reset' );
|
781 |
} else {
|
782 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
783 |
}
|
784 |
}
|
785 |
if ( isset( $_POST['Reset_Err'] ) ) {
|
786 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
787 |
delete_transient( 'ga_dash_lasterror' );
|
788 |
delete_transient( 'ga_dash_gapi_errors' );
|
789 |
+
$message = "<div class='updated'><p>" . __( "All errors reseted.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
790 |
} else {
|
791 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
792 |
}
|
793 |
}
|
794 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) && ! isset( $_POST['Clear'] ) && ! isset( $_POST['Reset'] ) && ! isset( $_POST['Reset_Err'] ) ) {
|
795 |
+
$message = "<div class='updated'><p>" . __( "Settings saved.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
796 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
797 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
798 |
}
|
799 |
}
|
800 |
if ( isset( $_POST['Hide'] ) ) {
|
801 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
802 |
+
$message = "<div class='updated'><p>" . __( "All other domains/properties were removed.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
803 |
$lock_profile = GADWP_Tools::get_selected_profile( $gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail'] );
|
804 |
$gadwp->config->options['ga_dash_profile_list'] = array(
|
805 |
$lock_profile );
|
806 |
$options = self::update_options( 'general' );
|
807 |
} else {
|
808 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
809 |
}
|
810 |
}
|
811 |
?>
|
812 |
<div class="wrap">
|
813 |
+
<?php echo "<h2>" . __( "Google Analytics Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?>
|
814 |
<hr>
|
815 |
</div>
|
816 |
<div id="poststuff">
|
819 |
<div class="settings-wrapper">
|
820 |
<div class="inside">
|
821 |
<?php
|
822 |
+
if ( $gadwp->gapi_controller->gapi_errors_handler() || get_transient('ga_dash_lasterror') ) {
|
823 |
+
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_errors_debugging', false ), __( 'Errors & Debug', 'google-analytics-dashboard-for-wp' ) ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_settings', false ), __( 'authorize the plugin', 'google-analytics-dashboard-for-wp' ) ) ) );
|
824 |
}
|
825 |
if ( isset( $_POST['Authorize'] ) ) {
|
826 |
GADWP_Tools::clear_cache();
|
827 |
$gadwp->gapi_controller->token_request();
|
828 |
+
echo "<div class='updated'><p>" . __( "Use the red link (see below) to generate and get your access code!", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
829 |
} else {
|
830 |
+
if ( isset( $message ) ){
|
831 |
echo $message;
|
832 |
+
}
|
833 |
?>
|
834 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
835 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
837 |
<table class="options">
|
838 |
<tr>
|
839 |
<td colspan="2">
|
840 |
+
<?php echo "<h2>" . __( "Plugin Authorization", 'google-analytics-dashboard-for-wp' ) . "</h2>";?>
|
841 |
</td>
|
842 |
</tr>
|
843 |
<tr>
|
844 |
<td colspan="2" class="info">
|
845 |
+
<?php printf(__('You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin requires a properly configured Google Analytics account!', 'google-analytics-dashboard-for-wp'), sprintf('<a href="%1$s" target="_blank">%2$s</a>', 'https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=top_video&utm_campaign=gadwp', __("video", 'google-analytics-dashboard-for-wp')), sprintf('<a href="%1$s" target="_blank">%2$s</a>', 'https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=top_tutorial&utm_campaign=gadwp', __("tutorial", 'google-analytics-dashboard-for-wp')));?>
|
846 |
</td>
|
847 |
</tr>
|
848 |
<?php if (! $options['ga_dash_token'] || $options['ga_dash_userapi']) {?>
|
849 |
<tr>
|
850 |
+
<td colspan="2" class="info"><input name="options[ga_dash_userapi]" type="checkbox" id="ga_dash_userapi" value="1" <?php checked( $options['ga_dash_userapi'], 1 ); ?> onchange="this.form.submit()" <?php echo ($options['ga_dash_network'])?'disabled="disabled"':''; ?> /><?php echo " ".__("use your own API Project credentials", 'google-analytics-dashboard-for-wp' );?>
|
851 |
</td>
|
852 |
</tr>
|
853 |
<?php } if ($options['ga_dash_userapi']) { ?>
|
854 |
<tr>
|
855 |
+
<td class="title"><label for="options[ga_dash_apikey]"><?php _e("API Key:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
856 |
<td><input type="text" name="options[ga_dash_apikey]" value="<?php echo esc_attr($options['ga_dash_apikey']); ?>" size="40" required="required"></td>
|
857 |
</tr>
|
858 |
<tr>
|
859 |
+
<td class="title"><label for="options[ga_dash_clientid]"><?php _e("Client ID:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
860 |
<td><input type="text" name="options[ga_dash_clientid]" value="<?php echo esc_attr($options['ga_dash_clientid']); ?>" size="40" required="required"></td>
|
861 |
</tr>
|
862 |
<tr>
|
863 |
+
<td class="title"><label for="options[ga_dash_clientsecret]"><?php _e("Client Secret:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
864 |
<td><input type="text" name="options[ga_dash_clientsecret]" value="<?php echo esc_attr($options['ga_dash_clientsecret']); ?>" size="40" required="required"> <input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
865 |
<?php wp_nonce_field('gadash_form','gadash_security'); ?>
|
866 |
</td>
|
870 |
if ( $options['ga_dash_token'] ) {
|
871 |
?>
|
872 |
<tr>
|
873 |
+
<td colspan="2"><input type="submit" name="Reset" class="button button-secondary" value="<?php _e( "Clear Authorization", 'google-analytics-dashboard-for-wp' ); ?>" <?php echo $options['ga_dash_network']?'disabled="disabled"':''; ?> /> <input type="submit" name="Clear" class="button button-secondary" value="<?php _e( "Clear Cache", 'google-analytics-dashboard-for-wp' ); ?>" /> <input type="submit" name="Reset_Err" class="button button-secondary" value="<?php _e( "Reset Errors", 'google-analytics-dashboard-for-wp' ); ?>" /></td>
|
874 |
</tr>
|
875 |
<tr>
|
876 |
<td colspan="2"><hr></td>
|
877 |
</tr>
|
878 |
<tr>
|
879 |
+
<td colspan="2"><?php echo "<h2>" . __( "General Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
880 |
</tr>
|
881 |
<tr>
|
882 |
+
<td class="title"><label for="ga_dash_tableid_jail"><?php _e("Select View:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
883 |
<td><select id="ga_dash_tableid_jail" <?php disabled(empty($options['ga_dash_profile_list']) || 1 == count($options['ga_dash_profile_list']), true); ?> name="options[ga_dash_tableid_jail]">
|
884 |
<?php
|
885 |
if ( ! empty( $options['ga_dash_profile_list'] ) ) {
|
886 |
foreach ( $options['ga_dash_profile_list'] as $items ) {
|
887 |
if ( $items[3] ) {
|
888 |
echo '<option value="' . esc_attr( $items[1] ) . '" ' . selected( $items[1], $options['ga_dash_tableid_jail'] );
|
889 |
+
echo ' title="' . __( "View Name:", 'google-analytics-dashboard-for-wp' ) . ' ' . esc_attr( $items[0] ) . '">' . esc_html( GADWP_Tools::strip_protocol( $items[3] ) ) . ' ⇒ ' . esc_attr( $items[0] ) . '</option>';
|
890 |
}
|
891 |
}
|
892 |
} else {
|
893 |
+
echo '<option value="">' . __( "Property not found", 'google-analytics-dashboard-for-wp' ) . '</option>';
|
894 |
}
|
895 |
?>
|
896 |
</select>
|
897 |
<?php
|
898 |
if ( count( $options['ga_dash_profile_list'] ) > 1 ) {
|
899 |
+
?> <input type="submit" name="Hide" class="button button-secondary" value="<?php _e( "Lock Selection", 'google-analytics-dashboard-for-wp' ); ?>" /><?php
|
900 |
}
|
901 |
?>
|
902 |
</td>
|
908 |
<td class="title"></td>
|
909 |
<td><?php
|
910 |
$profile_info = GADWP_Tools::get_selected_profile( $gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail'] );
|
911 |
+
echo '<pre>' . __( "View Name:", 'google-analytics-dashboard-for-wp' ) . "\t" . esc_html( $profile_info[0] ) . "<br />" . __( "Tracking ID:", 'google-analytics-dashboard-for-wp' ) . "\t" . esc_html( $profile_info[2] ) . "<br />" . __( "Default URL:", 'google-analytics-dashboard-for-wp' ) . "\t" . esc_html( $profile_info[3] ) . "<br />" . __( "Time Zone:", 'google-analytics-dashboard-for-wp' ) . "\t" . esc_html( $profile_info[5] ) . '</pre>';
|
912 |
?></td>
|
913 |
</tr>
|
914 |
<?php
|
915 |
}
|
916 |
?>
|
917 |
<tr>
|
918 |
+
<td class="title"><label for="ga_dash_style"><?php _e("Theme Color:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
919 |
<td><input type="text" id="ga_dash_style" class="ga_dash_style" name="options[ga_dash_style]" value="<?php echo esc_attr($options['ga_dash_style']); ?>" size="10"></td>
|
920 |
</tr>
|
921 |
<tr>
|
923 |
</tr>
|
924 |
<?php if ( !is_multisite()) {?>
|
925 |
<tr>
|
926 |
+
<td colspan="2"><?php echo "<h2>" . __( "Automatic Updates", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
927 |
</tr>
|
928 |
<tr>
|
929 |
<td colspan="2" class="title">
|
933 |
<div class="onoffswitch-switch"></div>
|
934 |
</label>
|
935 |
</div>
|
936 |
+
<div class="switch-desc"><?php echo " ".__( "automatic updates for minor versions (security and maintenance releases only)", 'google-analytics-dashboard-for-wp' );?></div>
|
937 |
</td>
|
938 |
</tr>
|
939 |
<tr>
|
941 |
</tr>
|
942 |
<?php }?>
|
943 |
<tr>
|
944 |
+
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', 'google-analytics-dashboard-for-wp' ) ?>" /></td>
|
945 |
</tr>
|
946 |
<?php } else {?>
|
947 |
<tr>
|
948 |
<td colspan="2"><hr></td>
|
949 |
</tr>
|
950 |
<tr>
|
951 |
+
<td colspan="2"><input type="submit" name="Authorize" class="button button-secondary" id="authorize" value="<?php _e( "Authorize Plugin", 'google-analytics-dashboard-for-wp' ); ?>" <?php echo $options['ga_dash_network']?'disabled="disabled"':''; ?> /> <input type="submit" name="Clear" class="button button-secondary" value="<?php _e( "Clear Cache", 'google-analytics-dashboard-for-wp' ); ?>" /></td>
|
952 |
</tr>
|
953 |
<tr>
|
954 |
<td colspan="2"><hr></td>
|
978 |
/*
|
979 |
* Include GAPI
|
980 |
*/
|
981 |
+
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:', 'google-analytics-dashboard-for-wp' ) . ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=general_screen&utm_campaign=gadwp">Library conflicts between WordPress plugins</a></p></div>';
|
982 |
|
983 |
if ( null === $gadwp->gapi_controller ) {
|
984 |
$gadwp->gapi_controller = new GADWP_GAPI_Controller();
|
995 |
$gadwp->config->options['automatic_updates_minorversion'] = 1;
|
996 |
$gadwp->config->set_plugin_options( true );
|
997 |
$options = self::update_options( 'network' );
|
998 |
+
$message = "<div class='updated'><p>" . __( "Plugin authorization succeeded.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
999 |
if ( is_multisite() ) { // Cleanup errors on the entire network
|
1000 |
foreach ( wp_get_sites( array(
|
1001 |
'limit' => apply_filters( 'gadwp_sites_limit', 100 ) ) ) as $blog ) {
|
1006 |
} else {
|
1007 |
delete_transient( 'ga_dash_gapi_errors' );
|
1008 |
}
|
1009 |
+
if ( $gadwp->config->options['ga_dash_token'] && $gadwp->gapi_controller->client->getAccessToken() ) {
|
1010 |
+
if ( ! empty( $gadwp->config->options['ga_dash_profile_list'] ) ) {
|
1011 |
+
$profiles = $gadwp->config->options['ga_dash_profile_list'];
|
1012 |
+
} else {
|
1013 |
+
$profiles = $gadwp->gapi_controller->refresh_profiles();
|
1014 |
+
}
|
1015 |
+
if ( $profiles ) {
|
1016 |
+
$gadwp->config->options['ga_dash_profile_list'] = $profiles;
|
1017 |
+
if ( isset( $gadwp->config->options['ga_dash_tableid_jail'] ) && ! $gadwp->config->options['ga_dash_tableid_jail'] ) {
|
1018 |
+
$profile = GADWP_Tools::guess_default_domain( $profiles );
|
1019 |
+
$gadwp->config->options['ga_dash_tableid_jail'] = $profile;
|
1020 |
+
$gadwp->config->options['ga_dash_tableid'] = $profile;
|
1021 |
+
}
|
1022 |
+
$gadwp->config->set_plugin_options( true );
|
1023 |
+
$options = self::update_options( 'network' );
|
1024 |
+
}
|
1025 |
+
}
|
1026 |
} catch ( Google_IO_Exception $e ) {
|
1027 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': ' . esc_html( $e ), $gadwp->gapi_controller->error_timeout );
|
1028 |
return false;
|
1035 |
$gadwp->gapi_controller->reset_token( false );
|
1036 |
}
|
1037 |
} else {
|
1038 |
+
$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", 'google-analytics-dashboard-for-wp' ) . ".</p></div>";
|
1039 |
}
|
1040 |
}
|
1041 |
if ( isset( $_POST['Refresh'] ) ) {
|
1042 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1043 |
$gadwp->config->options['ga_dash_profile_list'] = array();
|
1044 |
+
$message = "<div class='updated'><p>" . __( "Properties refreshed.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1045 |
$options = self::update_options( 'network' );
|
1046 |
+
if ( $gadwp->config->options['ga_dash_token'] && $gadwp->gapi_controller->client->getAccessToken() ) {
|
1047 |
+
if ( ! empty( $gadwp->config->options['ga_dash_profile_list'] ) ) {
|
1048 |
+
$profiles = $gadwp->config->options['ga_dash_profile_list'];
|
1049 |
+
} else {
|
1050 |
+
$profiles = $gadwp->gapi_controller->refresh_profiles();
|
1051 |
+
}
|
1052 |
+
if ( $profiles ) {
|
1053 |
+
$gadwp->config->options['ga_dash_profile_list'] = $profiles;
|
1054 |
+
if ( isset( $gadwp->config->options['ga_dash_tableid_jail'] ) && ! $gadwp->config->options['ga_dash_tableid_jail'] ) {
|
1055 |
+
$profile = GADWP_Tools::guess_default_domain( $profiles );
|
1056 |
+
$gadwp->config->options['ga_dash_tableid_jail'] = $profile;
|
1057 |
+
$gadwp->config->options['ga_dash_tableid'] = $profile;
|
1058 |
+
}
|
1059 |
+
$gadwp->config->set_plugin_options( true );
|
1060 |
+
$options = self::update_options( 'network' );
|
1061 |
+
}
|
1062 |
}
|
1063 |
+
} else {
|
1064 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1065 |
}
|
1066 |
}
|
1067 |
if ( isset( $_POST['Clear'] ) ) {
|
1068 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1069 |
GADWP_Tools::clear_cache();
|
1070 |
+
$message = "<div class='updated'><p>" . __( "Cleared Cache.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1071 |
} else {
|
1072 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1073 |
}
|
1074 |
}
|
1075 |
if ( isset( $_POST['Reset'] ) ) {
|
1076 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1077 |
$gadwp->gapi_controller->reset_token( true );
|
1078 |
GADWP_Tools::clear_cache();
|
1079 |
+
$message = "<div class='updated'><p>" . __( "Token Reseted and Revoked.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1080 |
$options = self::update_options( 'Reset' );
|
1081 |
} else {
|
1082 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1083 |
}
|
1084 |
}
|
1085 |
if ( isset( $_POST['options']['ga_dash_hidden'] ) && ! isset( $_POST['Clear'] ) && ! isset( $_POST['Reset'] ) && ! isset( $_POST['Refresh'] ) ) {
|
1086 |
+
$message = "<div class='updated'><p>" . __( "Settings saved.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1087 |
if ( ! ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) ) {
|
1088 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1089 |
}
|
1090 |
}
|
1091 |
if ( isset( $_POST['Hide'] ) ) {
|
1092 |
if ( isset( $_POST['gadash_security'] ) && wp_verify_nonce( $_POST['gadash_security'], 'gadash_form' ) ) {
|
1093 |
+
$message = "<div class='updated'><p>" . __( "All other domains/properties were removed.", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1094 |
$lock_profile = GADWP_Tools::get_selected_profile( $gadwp->config->options['ga_dash_profile_list'], $gadwp->config->options['ga_dash_tableid_jail'] );
|
1095 |
$gadwp->config->options['ga_dash_profile_list'] = array(
|
1096 |
$lock_profile );
|
1097 |
$options = self::update_options( 'network' );
|
1098 |
} else {
|
1099 |
+
$message = "<div class='error'><p>" . __( "Cheating Huh?", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1100 |
}
|
1101 |
}
|
1102 |
?>
|
1103 |
<div class="wrap">
|
1104 |
+
<?php echo "<h2>" . __( "Google Analytics Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?><hr>
|
1105 |
</div>
|
1106 |
<div id="poststuff">
|
1107 |
<div id="post-body" class="metabox-holder columns-2">
|
1109 |
<div class="settings-wrapper">
|
1110 |
<div class="inside">
|
1111 |
<?php
|
1112 |
+
if ( $gadwp->gapi_controller->gapi_errors_handler() || get_transient('ga_dash_lasterror')) {
|
1113 |
+
$message = sprintf( '<div class="error"><p>%s</p></div>', sprintf( __( 'Something went wrong, check %1$s or %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_errors_debugging', false ), __( 'Errors & Debug', 'google-analytics-dashboard-for-wp' ) ), sprintf( '<a href="%1$s">%2$s</a>', menu_page_url( 'gadash_settings', false ), __( 'authorize the plugin', 'google-analytics-dashboard-for-wp' ) ) ) );
|
1114 |
}
|
1115 |
if ( isset( $_POST['Authorize'] ) ) {
|
1116 |
GADWP_Tools::clear_cache();
|
1117 |
$gadwp->gapi_controller->token_request();
|
1118 |
+
echo "<div class='updated'><p>" . __( "Use the red link (see below) to generate and get your access code!", 'google-analytics-dashboard-for-wp' ) . "</p></div>";
|
1119 |
} else {
|
1120 |
+
if ( isset( $message ) ){
|
1121 |
echo $message;
|
1122 |
+
}
|
1123 |
?>
|
1124 |
<form name="ga_dash_form" method="post" action="<?php echo esc_url($_SERVER['REQUEST_URI']); ?>">
|
1125 |
<input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
1126 |
<?php wp_nonce_field('gadash_form','gadash_security'); ?>
|
1127 |
<table class="options">
|
1128 |
<tr>
|
1129 |
+
<td colspan="2"><?php echo "<h2>" . __( "Network Setup", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
1130 |
</tr>
|
1131 |
<tr>
|
1132 |
<td colspan="2" class="title">
|
1136 |
<div class="onoffswitch-switch"></div>
|
1137 |
</label>
|
1138 |
</div>
|
1139 |
+
<div class="switch-desc"><?php echo " ".__("use a single Google Analytics account for the entire network", 'google-analytics-dashboard-for-wp' );?></div>
|
1140 |
</td>
|
1141 |
</tr>
|
1142 |
<?php if ($options['ga_dash_network']){ //Network Mode check?>
|
1144 |
<td colspan="2"><hr></td>
|
1145 |
</tr>
|
1146 |
<tr>
|
1147 |
+
<td colspan="2"><?php echo "<h2>" . __( "Plugin Authorization", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
1148 |
</tr>
|
1149 |
<tr>
|
1150 |
<td colspan="2" class="info">
|
1151 |
+
<?php printf(__('You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin requires a properly configured Google Analytics account!', 'google-analytics-dashboard-for-wp'), sprintf('<a href="%1$s" target="_blank">%2$s</a>', 'https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=top_video&utm_campaign=gadwp', __("video", 'google-analytics-dashboard-for-wp')), sprintf('<a href="%1$s" target="_blank">%2$s</a>', 'https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=top_tutorial&utm_campaign=gadwp', __("tutorial", 'google-analytics-dashboard-for-wp')));?>
|
1152 |
</td>
|
1153 |
</tr>
|
1154 |
<?php
|
1155 |
if ( ! $options['ga_dash_token'] || $options['ga_dash_userapi'] ) {
|
1156 |
?>
|
1157 |
<tr>
|
1158 |
+
<td colspan="2" class="info"><input name="options[ga_dash_userapi]" type="checkbox" id="ga_dash_userapi" value="1" <?php checked( $options['ga_dash_userapi'], 1 ); ?> onchange="this.form.submit()" /><?php echo " ".__("use your own API Project credentials", 'google-analytics-dashboard-for-wp' );?>
|
1159 |
</td>
|
1160 |
</tr>
|
1161 |
<?php
|
1163 |
if ( $options['ga_dash_userapi'] ) {
|
1164 |
?>
|
1165 |
<tr>
|
1166 |
+
<td class="title"><label for="options[ga_dash_apikey]"><?php _e("API Key:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
1167 |
<td><input type="text" name="options[ga_dash_apikey]" value="<?php echo esc_attr($options['ga_dash_apikey']); ?>" size="40" required="required"></td>
|
1168 |
</tr>
|
1169 |
<tr>
|
1170 |
+
<td class="title"><label for="options[ga_dash_clientid]"><?php _e("Client ID:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
1171 |
<td><input type="text" name="options[ga_dash_clientid]" value="<?php echo esc_attr($options['ga_dash_clientid']); ?>" size="40" required="required"></td>
|
1172 |
</tr>
|
1173 |
<tr>
|
1174 |
+
<td class="title"><label for="options[ga_dash_clientsecret]"><?php _e("Client Secret:", 'google-analytics-dashboard-for-wp'); ?></label></td>
|
1175 |
<td><input type="text" name="options[ga_dash_clientsecret]" value="<?php echo esc_attr($options['ga_dash_clientsecret']); ?>" size="40" required="required"> <input type="hidden" name="options[ga_dash_hidden]" value="Y">
|
1176 |
<?php wp_nonce_field('gadash_form','gadash_security'); ?>
|
1177 |
</td>
|
1181 |
if ( $options['ga_dash_token'] ) {
|
1182 |
?>
|
1183 |
<tr>
|
1184 |
+
<td colspan="2"><input type="submit" name="Reset" class="button button-secondary" value="<?php _e( "Clear Authorization", 'google-analytics-dashboard-for-wp' ); ?>" /> <input type="submit" name="Clear" class="button button-secondary" value="<?php _e( "Clear Cache", 'google-analytics-dashboard-for-wp' ); ?>" /> <input type="submit" name="Refresh" class="button button-secondary" value="<?php _e( "Refresh Properties", 'google-analytics-dashboard-for-wp' ); ?>" /></td>
|
1185 |
</tr>
|
1186 |
<tr>
|
1187 |
<td colspan="2"><hr></td>
|
1188 |
</tr>
|
1189 |
<tr>
|
1190 |
+
<td colspan="2"><?php echo "<h2>" . __( "Properties/Views Settings", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
1191 |
</tr>
|
1192 |
<?php
|
1193 |
if ( isset( $options['ga_dash_tableid_network'] ) ) {
|
1204 |
foreach ( $options['ga_dash_profile_list'] as $items ) {
|
1205 |
if ( $items[3] ) {
|
1206 |
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'] : '' );
|
1207 |
+
echo ' title="' . __( "View Name:", 'google-analytics-dashboard-for-wp' ) . ' ' . esc_attr( $items[0] ) . '">' . esc_html( GADWP_Tools::strip_protocol( $items[3] ) ) . ' ⇒ ' . esc_attr( $items[0] ) . '</option>';
|
1208 |
}
|
1209 |
}
|
1210 |
} else {
|
1211 |
+
echo '<option value="">' . __( "Property not found", 'google-analytics-dashboard-for-wp' ) . '</option>';
|
1212 |
}
|
1213 |
?>
|
1214 |
</select> <br /></td>
|
1217 |
}
|
1218 |
?>
|
1219 |
<tr>
|
1220 |
+
<td colspan="2"><?php echo "<h2>" . __( "Automatic Updates", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
1221 |
</tr>
|
1222 |
<tr>
|
1223 |
<td colspan="2" class="title">
|
1227 |
<div class="onoffswitch-switch"></div>
|
1228 |
</label>
|
1229 |
</div>
|
1230 |
+
<div class="switch-desc"><?php echo " ".__( "automatic updates for minor versions (security and maintenance releases only)", 'google-analytics-dashboard-for-wp' );?></div>
|
1231 |
</td>
|
1232 |
</tr>
|
1233 |
<tr>
|
1234 |
+
<td colspan="2"><hr><?php echo "<h2>" . __( "Exclude Tracking", 'google-analytics-dashboard-for-wp' ) . "</h2>"; ?></td>
|
1235 |
</tr>
|
1236 |
<tr>
|
1237 |
<td colspan="2" class="title">
|
1241 |
<div class="onoffswitch-switch"></div>
|
1242 |
</label>
|
1243 |
</div>
|
1244 |
+
<div class="switch-desc"><?php echo " ".__("exclude Super Admin tracking for the entire network", 'google-analytics-dashboard-for-wp' );?></div>
|
1245 |
</td>
|
1246 |
</tr>
|
1247 |
<tr>
|
1248 |
<td colspan="2"><hr></td>
|
1249 |
</tr>
|
1250 |
<tr>
|
1251 |
+
<td colspan="2" class="submit"><input type="submit" name="Submit" class="button button-primary" value="<?php _e('Save Changes', 'google-analytics-dashboard-for-wp' ) ?>" /></td>
|
1252 |
</tr>
|
1253 |
<?php
|
1254 |
} else {
|
1257 |
<td colspan="2"><hr></td>
|
1258 |
</tr>
|
1259 |
<tr>
|
1260 |
+
<td colspan="2"><input type="submit" name="Authorize" class="button button-secondary" id="authorize" value="<?php _e( "Authorize Plugin", 'google-analytics-dashboard-for-wp' ); ?>" /> <input type="submit" name="Clear" class="button button-secondary" value="<?php _e( "Clear Cache", 'google-analytics-dashboard-for-wp' ); ?>" /></td>
|
1261 |
</tr>
|
1262 |
<?php } //Network Mode check?>
|
1263 |
<tr>
|
1289 |
<div class="meta-box-sortables">
|
1290 |
<div class="postbox">
|
1291 |
<h3>
|
1292 |
+
<span><?php _e("Setup Tutorial & Demo",'google-analytics-dashboard-for-wp') ?></span>
|
1293 |
</h3>
|
1294 |
<div class="inside">
|
1295 |
<a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=video&utm_campaign=gadwp" target="_blank"><img src="<?php echo plugins_url( 'images/google-analytics-dashboard.png' , __FILE__ );?>" width="100%" alt="" /></a>
|
1297 |
</div>
|
1298 |
<div class="postbox">
|
1299 |
<h3>
|
1300 |
+
<span><?php _e("Follow & Review",'google-analytics-dashboard-for-wp')?></span>
|
1301 |
</h3>
|
1302 |
<div class="inside">
|
1303 |
<div class="gadash-desc">
|
1323 |
<a href="http://wordpress.org/support/view/plugin-reviews/google-analytics-dashboard-for-wp#plugin-info"><img src="<?php echo plugins_url( 'images/star.png' , __FILE__ ); ?>" /></a>
|
1324 |
</div>
|
1325 |
<div class="gadash-desc">
|
1326 |
+
<?php printf(__('Your feedback and review are both important, %s!', 'google-analytics-dashboard-for-wp'), sprintf('<a href="http://wordpress.org/support/view/plugin-reviews/google-analytics-dashboard-for-wp#plugin-info">%s</a>', __('rate this plugin', 'google-analytics-dashboard-for-wp')));?>
|
1327 |
</div>
|
1328 |
</div>
|
1329 |
</div>
|
1330 |
<div class="postbox">
|
1331 |
<h3>
|
1332 |
+
<span><?php _e("Further Reading",'google-analytics-dashboard-for-wp')?></span>
|
1333 |
</h3>
|
1334 |
<div class="inside">
|
1335 |
<div class="gadash-title">
|
1336 |
<a href="https://deconf.com/move-website-https-ssl/?utm_source=gadwp_config&utm_medium=link&utm_content=ssl&utm_campaign=gadwp"><img src="<?php echo plugins_url( 'images/ssl.png' , __FILE__ ); ?>" /></a>
|
1337 |
</div>
|
1338 |
<div class="gadash-desc">
|
1339 |
+
<?php printf(__('%s by moving your website to HTTPS/SSL.', 'google-analytics-dashboard-for-wp'), sprintf('<a href="https://deconf.com/move-website-https-ssl/?utm_source=gadwp_config&utm_medium=link&utm_content=ssl&utm_campaign=gadwp">%s</a>', __('Improve search rankings', 'google-analytics-dashboard-for-wp')));?>
|
1340 |
</div>
|
1341 |
<br />
|
1342 |
<div class="gadash-title">
|
1343 |
<a href="https://deconf.com/wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=plugins&utm_campaign=gadwp"><img src="<?php echo plugins_url( 'images/wp.png' , __FILE__ ); ?>" /></a>
|
1344 |
</div>
|
1345 |
<div class="gadash-desc">
|
1346 |
+
<?php printf(__('Other %s written by the same author', 'google-analytics-dashboard-for-wp'), sprintf('<a href="https://deconf.com/wordpress/?utm_source=gadwp_config&utm_medium=link&utm_content=plugins&utm_campaign=gadwp">%s</a>', __('WordPress Plugins', 'google-analytics-dashboard-for-wp')));?>
|
1347 |
</div>
|
1348 |
</div>
|
1349 |
</div>
|
1350 |
<div class="postbox">
|
1351 |
<h3>
|
1352 |
+
<span><?php _e("Other Services",'google-analytics-dashboard-for-wp')?></span>
|
1353 |
</h3>
|
1354 |
<div class="inside">
|
1355 |
<div class="gadash-title">
|
1356 |
<a href="https://deconf.com/wordpress-cdn-speeds-up-your-site/"><img src="<?php echo plugins_url( 'images/mcdn.png' , __FILE__ ); ?>" /></a>
|
1357 |
</div>
|
1358 |
<div class="gadash-desc">
|
1359 |
+
<?php printf(__('Speed up your website and plug into a whole %s', 'google-analytics-dashboard-for-wp'), sprintf('<a href="https://deconf.com/wordpress-cdn-speeds-up-your-site/?utm_source=gadwp_config&utm_medium=link&utm_content=maxcdn&utm_campaign=gadwp">%s</a>.', __('new level of site speed', 'google-analytics-dashboard-for-wp')));?>
|
1360 |
</div>
|
1361 |
<br />
|
1362 |
<div class="gadash-title">
|
1363 |
<a href="https://deconf.com/clicky-web-analytics-review/?utm_source=gadwp_config&utm_medium=link&utm_content=clicky&utm_campaign=gadwp"><img src="<?php echo plugins_url( 'images/clicky.png' , __FILE__ ); ?>" /></a>
|
1364 |
</div>
|
1365 |
<div class="gadash-desc">
|
1366 |
+
<?php printf(__('%s service with users tracking at IP level.', 'google-analytics-dashboard-for-wp'), sprintf('<a href="https://deconf.com/clicky-web-analytics-review/?utm_source=gadwp_config&utm_medium=link&utm_content=clicky&utm_campaign=gadwp">%s</a>', __('Web Analytics', 'google-analytics-dashboard-for-wp')));?>
|
1367 |
</div>
|
1368 |
</div>
|
1369 |
</div>
|
admin/setup.php
CHANGED
@@ -38,12 +38,12 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
38 |
global $wp_version;
|
39 |
if ( current_user_can( 'manage_options' ) ) {
|
40 |
include ( GADWP_DIR . 'admin/settings.php' );
|
41 |
-
add_menu_page( __( "Google Analytics", '
|
42 |
-
add_submenu_page( 'gadash_settings', __( "General Settings", '
|
43 |
-
add_submenu_page( 'gadash_settings', __( "Backend Settings", '
|
44 |
-
add_submenu_page( 'gadash_settings', __( "Frontend Settings", '
|
45 |
-
add_submenu_page( 'gadash_settings', __( "Tracking Code", '
|
46 |
-
add_submenu_page( 'gadash_settings', __( "Errors & Debug", '
|
47 |
}
|
48 |
}
|
49 |
|
@@ -54,9 +54,9 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
54 |
global $wp_version;
|
55 |
if ( current_user_can( 'manage_netwrok' ) ) {
|
56 |
include ( GADWP_DIR . 'admin/settings.php' );
|
57 |
-
add_menu_page( __( "Google Analytics", '
|
58 |
-
add_submenu_page( 'gadash_settings', __( "General Settings", '
|
59 |
-
add_submenu_page( 'gadash_settings', __( "Errors & Debug", '
|
60 |
}
|
61 |
}
|
62 |
|
@@ -149,52 +149,55 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
149 |
|
150 |
wp_enqueue_script( 'gadwp-nprogress', GADWP_URL . 'tools/nprogress/nprogress.js', array( 'jquery' ), GADWP_CURRENT_VERSION );
|
151 |
|
152 |
-
wp_enqueue_script( 'gadwp_backend_item_reports',
|
153 |
|
154 |
/* @formatter:off */
|
155 |
wp_localize_script( 'gadwp_backend_item_reports', 'gadwp_item_data', array(
|
156 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
157 |
'security' => wp_create_nonce( 'gadwp_backend_item_reports' ),
|
158 |
'dateList' => array(
|
159 |
-
'today' => __( "Today", '
|
160 |
-
'yesterday' => __( "Yesterday", '
|
161 |
-
'7daysAgo' => sprintf( __( "Last %d Days", '
|
162 |
-
'14daysAgo' => sprintf( __( "Last %d Days", '
|
163 |
-
'30daysAgo' => sprintf( __( "Last %d Days", '
|
164 |
-
'90daysAgo' => sprintf( __( "Last %d Days", '
|
165 |
-
'365daysAgo' => sprintf( _n( "%s Year", "%s Years", 1, '
|
166 |
-
'1095daysAgo' => sprintf( _n( "%s Year", "%s Years", 3, '
|
167 |
),
|
168 |
'reportList' => array(
|
169 |
-
'uniquePageviews' => __( "Unique Views", '
|
170 |
-
'users' => __( "Users", '
|
171 |
-
'organicSearches' => __( "Organic", '
|
172 |
-
'pageviews' => __( "Page Views", '
|
173 |
-
'visitBounceRate' => __( "Bounce Rate", '
|
174 |
-
'locations' => __( "Location", '
|
175 |
-
'referrers' => __( "Referrers", '
|
176 |
-
'searches' => __( "Searches", '
|
177 |
-
'trafficdetails' => __( "Traffic Details", '
|
178 |
),
|
179 |
'i18n' => array(
|
180 |
-
__( "A JavaScript Error is blocking plugin resources!", '
|
181 |
-
__( "Traffic Mediums", '
|
182 |
-
__( "Visitor Type", '
|
183 |
-
__( "Social Networks", '
|
184 |
-
__( "Search Engines", '
|
185 |
-
__( "Unique Views", '
|
186 |
-
__( "Users", '
|
187 |
-
__( "Page Views", '
|
188 |
-
__( "Bounce Rate", '
|
189 |
-
__( "Organic Search", '
|
190 |
-
__( "Pages/Session", '
|
191 |
-
__( "Invalid response, more details in JavaScript Console (F12).", '
|
192 |
-
__( "Not enough data collected", '
|
193 |
-
__( "This report is unavailable", '
|
194 |
-
__( "report generated by", '
|
|
|
195 |
),
|
196 |
'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
|
197 |
'region' => $region,
|
|
|
|
|
198 |
)
|
199 |
);
|
200 |
/* @formatter:on */
|
@@ -222,7 +225,7 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
222 |
* @return array
|
223 |
*/
|
224 |
public function settings_link( $links ) {
|
225 |
-
$settings_link = '<a href="' . esc_url( get_admin_url( null, 'admin.php?page=gadash_settings' ) ) . '">' . __( "Settings", '
|
226 |
array_unshift( $links, $settings_link );
|
227 |
return $links;
|
228 |
}
|
@@ -233,10 +236,11 @@ if ( ! class_exists( 'GADWP_Backend_Setup' ) ) {
|
|
233 |
function admin_notice() {
|
234 |
if ( get_option( 'gadwp_got_updated' ) ) :
|
235 |
?>
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
|
|
240 |
endif;
|
241 |
}
|
242 |
}
|
38 |
global $wp_version;
|
39 |
if ( current_user_can( 'manage_options' ) ) {
|
40 |
include ( GADWP_DIR . 'admin/settings.php' );
|
41 |
+
add_menu_page( __( "Google Analytics", 'google-analytics-dashboard-for-wp' ), __( "Google Analytics", 'google-analytics-dashboard-for-wp' ), 'manage_options', 'gadash_settings', array( 'GADWP_Settings', 'general_settings' ), version_compare( $wp_version, '3.8.0', '>=' ) ? 'dashicons-chart-area' : GADWP_URL . 'admin/images/gadash-icon.png' );
|
42 |
+
add_submenu_page( 'gadash_settings', __( "General Settings", 'google-analytics-dashboard-for-wp' ), __( "General Settings", 'google-analytics-dashboard-for-wp' ), 'manage_options', 'gadash_settings', array( 'GADWP_Settings', 'general_settings' ) );
|
43 |
+
add_submenu_page( 'gadash_settings', __( "Backend Settings", 'google-analytics-dashboard-for-wp' ), __( "Backend Settings", 'google-analytics-dashboard-for-wp' ), 'manage_options', 'gadash_backend_settings', array( 'GADWP_Settings', 'backend_settings' ) );
|
44 |
+
add_submenu_page( 'gadash_settings', __( "Frontend Settings", 'google-analytics-dashboard-for-wp' ), __( "Frontend Settings", 'google-analytics-dashboard-for-wp' ), 'manage_options', 'gadash_frontend_settings', array( 'GADWP_Settings', 'frontend_settings' ) );
|
45 |
+
add_submenu_page( 'gadash_settings', __( "Tracking Code", 'google-analytics-dashboard-for-wp' ), __( "Tracking Code", 'google-analytics-dashboard-for-wp' ), 'manage_options', 'gadash_tracking_settings', array( 'GADWP_Settings', 'tracking_settings' ) );
|
46 |
+
add_submenu_page( 'gadash_settings', __( "Errors & Debug", 'google-analytics-dashboard-for-wp' ), __( "Errors & Debug", 'google-analytics-dashboard-for-wp' ), 'manage_options', 'gadash_errors_debugging', array( 'GADWP_Settings', 'errors_debugging' ) );
|
47 |
}
|
48 |
}
|
49 |
|
54 |
global $wp_version;
|
55 |
if ( current_user_can( 'manage_netwrok' ) ) {
|
56 |
include ( GADWP_DIR . 'admin/settings.php' );
|
57 |
+
add_menu_page( __( "Google Analytics", 'google-analytics-dashboard-for-wp' ), "Google Analytics", 'manage_netwrok', 'gadash_settings', array( 'GADWP_Settings', 'general_settings_network' ), version_compare( $wp_version, '3.8.0', '>=' ) ? 'dashicons-chart-area' : GADWP_URL . 'admin/images/gadash-icon.png' );
|
58 |
+
add_submenu_page( 'gadash_settings', __( "General Settings", 'google-analytics-dashboard-for-wp' ), __( "General Settings", 'google-analytics-dashboard-for-wp' ), 'manage_netwrok', 'gadash_settings', array( 'GADWP_Settings', 'general_settings_network' ) );
|
59 |
+
add_submenu_page( 'gadash_settings', __( "Errors & Debug", 'google-analytics-dashboard-for-wp' ), __( "Errors & Debug", 'google-analytics-dashboard-for-wp' ), 'manage_network', 'gadash_errors_debugging', array( 'GADWP_Settings', 'errors_debugging' ) );
|
60 |
}
|
61 |
}
|
62 |
|
149 |
|
150 |
wp_enqueue_script( 'gadwp-nprogress', GADWP_URL . 'tools/nprogress/nprogress.js', array( 'jquery' ), GADWP_CURRENT_VERSION );
|
151 |
|
152 |
+
wp_enqueue_script( 'gadwp_backend_item_reports', GADWP_URL . 'tools/js/item-reports.js', array( 'gadwp-nprogress', 'googlejsapi', 'jquery', 'jquery-ui-dialog' ), GADWP_CURRENT_VERSION );
|
153 |
|
154 |
/* @formatter:off */
|
155 |
wp_localize_script( 'gadwp_backend_item_reports', 'gadwp_item_data', array(
|
156 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
157 |
'security' => wp_create_nonce( 'gadwp_backend_item_reports' ),
|
158 |
'dateList' => array(
|
159 |
+
'today' => __( "Today", 'google-analytics-dashboard-for-wp' ),
|
160 |
+
'yesterday' => __( "Yesterday", 'google-analytics-dashboard-for-wp' ),
|
161 |
+
'7daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 7 ),
|
162 |
+
'14daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 14 ),
|
163 |
+
'30daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 30 ),
|
164 |
+
'90daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 90 ),
|
165 |
+
'365daysAgo' => sprintf( _n( "%s Year", "%s Years", 1, 'google-analytics-dashboard-for-wp' ), __('One', 'google-analytics-dashboard-for-wp') ),
|
166 |
+
'1095daysAgo' => sprintf( _n( "%s Year", "%s Years", 3, 'google-analytics-dashboard-for-wp' ), __('Three', 'google-analytics-dashboard-for-wp') ),
|
167 |
),
|
168 |
'reportList' => array(
|
169 |
+
'uniquePageviews' => __( "Unique Views", 'google-analytics-dashboard-for-wp' ),
|
170 |
+
'users' => __( "Users", 'google-analytics-dashboard-for-wp' ),
|
171 |
+
'organicSearches' => __( "Organic", 'google-analytics-dashboard-for-wp' ),
|
172 |
+
'pageviews' => __( "Page Views", 'google-analytics-dashboard-for-wp' ),
|
173 |
+
'visitBounceRate' => __( "Bounce Rate", 'google-analytics-dashboard-for-wp' ),
|
174 |
+
'locations' => __( "Location", 'google-analytics-dashboard-for-wp' ),
|
175 |
+
'referrers' => __( "Referrers", 'google-analytics-dashboard-for-wp' ),
|
176 |
+
'searches' => __( "Searches", 'google-analytics-dashboard-for-wp' ),
|
177 |
+
'trafficdetails' => __( "Traffic Details", 'google-analytics-dashboard-for-wp' )
|
178 |
),
|
179 |
'i18n' => array(
|
180 |
+
__( "A JavaScript Error is blocking plugin resources!", 'google-analytics-dashboard-for-wp' ), //0
|
181 |
+
__( "Traffic Mediums", 'google-analytics-dashboard-for-wp' ),
|
182 |
+
__( "Visitor Type", 'google-analytics-dashboard-for-wp' ),
|
183 |
+
__( "Social Networks", 'google-analytics-dashboard-for-wp' ),
|
184 |
+
__( "Search Engines", 'google-analytics-dashboard-for-wp' ),
|
185 |
+
__( "Unique Views", 'google-analytics-dashboard-for-wp' ),
|
186 |
+
__( "Users", 'google-analytics-dashboard-for-wp' ),
|
187 |
+
__( "Page Views", 'google-analytics-dashboard-for-wp' ),
|
188 |
+
__( "Bounce Rate", 'google-analytics-dashboard-for-wp' ),
|
189 |
+
__( "Organic Search", 'google-analytics-dashboard-for-wp' ),
|
190 |
+
__( "Pages/Session", 'google-analytics-dashboard-for-wp' ),
|
191 |
+
__( "Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp' ),
|
192 |
+
__( "Not enough data collected", 'google-analytics-dashboard-for-wp' ),
|
193 |
+
__( "This report is unavailable", 'google-analytics-dashboard-for-wp' ),
|
194 |
+
__( "report generated by", 'google-analytics-dashboard-for-wp' ), //14
|
195 |
+
__( "This plugin needs an authorization:", 'google-analytics-dashboard-for-wp' ) . ' <a href="' . menu_page_url( 'gadash_settings', false ) . '">' . __( "authorize the plugin", 'google-analytics-dashboard-for-wp' ) . '</a>.',
|
196 |
),
|
197 |
'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
|
198 |
'region' => $region,
|
199 |
+
'language' => get_bloginfo( 'language' ),
|
200 |
+
'scope' => 'admin',
|
201 |
)
|
202 |
);
|
203 |
/* @formatter:on */
|
225 |
* @return array
|
226 |
*/
|
227 |
public function settings_link( $links ) {
|
228 |
+
$settings_link = '<a href="' . esc_url( get_admin_url( null, 'admin.php?page=gadash_settings' ) ) . '">' . __( "Settings", 'google-analytics-dashboard-for-wp' ) . '</a>';
|
229 |
array_unshift( $links, $settings_link );
|
230 |
return $links;
|
231 |
}
|
236 |
function admin_notice() {
|
237 |
if ( get_option( 'gadwp_got_updated' ) ) :
|
238 |
?>
|
239 |
+
<div id="gadwp-notice" class="notice is-dismissible">
|
240 |
+
<p><?php echo sprintf( __('Google Analytics Dashboard for WP has been updated to version %s.', 'google-analytics-dashboard-for-wp' ), GADWP_CURRENT_VERSION).' '.sprintf( __('For details, check out %1$s and %2$s.', 'google-analytics-dashboard-for-wp' ), sprintf(' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_notice&utm_medium=link&utm_content=release_notice&utm_campaign=gadwp">%s</a> ', __('the documentation page', 'google-analytics-dashboard-for-wp') ), sprintf(' <a href="%1$s">%2$s</a>', esc_url( get_admin_url( null, 'admin.php?page=gadash_settings' ) ), __('the plugin's settings page', 'google-analytics-dashboard-for-wp') ) ); ?></p>
|
241 |
+
</div>
|
242 |
+
|
243 |
+
<?php
|
244 |
endif;
|
245 |
}
|
246 |
}
|
admin/widgets.php
CHANGED
@@ -24,18 +24,18 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
24 |
}
|
25 |
|
26 |
public function add_widget() {
|
27 |
-
wp_add_dashboard_widget( 'gadash-widget', __( "Google Analytics Dashboard", '
|
28 |
}
|
29 |
|
30 |
public function dashboard_widget() {
|
31 |
if ( empty( $this->gadwp->config->options['ga_dash_token'] ) ) {
|
32 |
-
echo '<p>' . __( "This plugin needs an authorization:", '
|
33 |
return;
|
34 |
}
|
35 |
|
36 |
if ( current_user_can( 'manage_options' ) ) {
|
37 |
-
if ( isset( $_REQUEST['
|
38 |
-
$this->gadwp->config->options['ga_dash_tableid'] = $_REQUEST['
|
39 |
}
|
40 |
$profiles = $this->gadwp->config->options['ga_dash_profile_list'];
|
41 |
$profile_switch = '';
|
@@ -50,7 +50,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
50 |
if ( $this->gadwp->config->options['switch_profile'] == 0 && $this->gadwp->config->options['ga_dash_tableid_jail'] ) {
|
51 |
$this->gadwp->config->options['ga_dash_tableid'] = $this->gadwp->config->options['ga_dash_tableid_jail'];
|
52 |
}
|
53 |
-
$profile_switch .= '<select id="
|
54 |
foreach ( $profiles as $profile ) {
|
55 |
if ( ! $this->gadwp->config->options['ga_dash_tableid'] ) {
|
56 |
$this->gadwp->config->options['ga_dash_tableid'] = $profile[1];
|
@@ -58,12 +58,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
58 |
if ( isset( $profile[3] ) ) {
|
59 |
$profile_switch .= '<option value="' . esc_attr( $profile[1] ) . '" ';
|
60 |
$profile_switch .= selected( $profile[1], $this->gadwp->config->options['ga_dash_tableid'], false );
|
61 |
-
$profile_switch .= ' title="' . __( "View Name:", '
|
62 |
}
|
63 |
}
|
64 |
$profile_switch .= "</select>";
|
65 |
} else {
|
66 |
-
echo '<p>' . __( "Something went wrong while retrieving profiles list.", '
|
67 |
return;
|
68 |
}
|
69 |
}
|
@@ -76,7 +76,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
76 |
if ( $this->gadwp->config->options['ga_dash_tableid_jail'] ) {
|
77 |
$projectId = $this->gadwp->config->options['ga_dash_tableid_jail'];
|
78 |
} else {
|
79 |
-
echo '<p>' . __( "An admin should asign a default Google Analytics Profile.", '
|
80 |
return;
|
81 |
}
|
82 |
} else {
|
@@ -87,52 +87,52 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
87 |
if ( $this->gadwp->config->options['ga_dash_tableid_jail'] ) {
|
88 |
$projectId = $this->gadwp->config->options['ga_dash_tableid_jail'];
|
89 |
} else {
|
90 |
-
echo '<p>' . __( "An admin should asign a default Google Analytics Profile.", '
|
91 |
return;
|
92 |
}
|
93 |
}
|
94 |
if ( ! ( $projectId ) ) {
|
95 |
-
echo '<p>' . __( "Something went wrong while retrieving property data. You need to create and properly configure a Google Analytics account:", '
|
96 |
return;
|
97 |
}
|
98 |
-
if ( isset( $_REQUEST['
|
99 |
-
$query = $_REQUEST['
|
100 |
} else {
|
101 |
$default_metric = GADWP_Tools::get_cookie( 'default_metric' );
|
102 |
$query = $default_metric ? $default_metric : 'sessions';
|
103 |
}
|
104 |
-
if ( isset( $_REQUEST['
|
105 |
-
$period = $_REQUEST['
|
106 |
} else {
|
107 |
$default_dimension = GADWP_Tools::get_cookie( 'default_dimension' );
|
108 |
$period = $default_dimension ? $default_dimension : '30daysAgo';
|
109 |
}
|
110 |
|
111 |
?>
|
112 |
-
<select id="ga_dash_period" name="
|
113 |
-
<option value="realtime" <?php selected ( "realtime", $period, true ); ?>><?php _e("Real-Time",'
|
114 |
-
<option value="today" <?php selected ( "today", $period, true ); ?>><?php _e("Today",'
|
115 |
-
<option value="yesterday" <?php selected ( "yesterday", $period, true ); ?>><?php _e("Yesterday",'
|
116 |
-
<option value="7daysAgo" <?php selected ( "7daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", '
|
117 |
-
<option value="14daysAgo" <?php selected ( "14daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", '
|
118 |
-
<option value="30daysAgo" <?php selected ( "30daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", '
|
119 |
-
<option value="90daysAgo" <?php selected ( "90daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", '
|
120 |
-
<option value="365daysAgo" <?php selected ( "365daysAgo", $period, true ); ?>><?php printf( _n( "%s Year", "%s Years", 1, '
|
121 |
-
<option value="1095daysAgo" <?php selected ( "1095daysAgo", $period, true ); ?>><?php printf( _n( "%s Year", "%s Years", 3, '
|
122 |
</select>
|
123 |
|
124 |
<?php if ($period != 'realtime') {?>
|
125 |
-
<select id="ga_dash_query" name="
|
126 |
-
<option value="sessions" <?php selected ( "sessions", $query, true ); ?>><?php _e("Sessions",'
|
127 |
-
<option value="users" <?php selected ( "users", $query, true ); ?>><?php _e("Users",'
|
128 |
-
<option value="organicSearches" <?php selected ( "organicSearches", $query, true ); ?>><?php _e("Organic",'
|
129 |
-
<option value="pageviews" <?php selected ( "pageviews", $query, true ); ?>><?php _e("Page Views",'
|
130 |
-
<option value="visitBounceRate" <?php selected ( "visitBounceRate", $query, true ); ?>><?php _e("Bounce Rate",'
|
131 |
-
<option value="locations" <?php selected ( "locations", $query, true ); ?>><?php _e("Location",'
|
132 |
-
<option value="contentpages" <?php selected ( "contentpages", $query, true ); ?>><?php _e("Pages",'
|
133 |
-
<option value="referrers" <?php selected ( "referrers", $query, true ); ?>><?php _e("Referrers",'
|
134 |
-
<option value="searches" <?php selected ( "searches", $query, true ); ?>><?php _e("Searches",'
|
135 |
-
<option value="trafficdetails" <?php selected ( "trafficdetails", $query, true ); ?>><?php _e("Traffic Details",'
|
136 |
</select>
|
137 |
<?php }?>
|
138 |
</form>
|
@@ -230,27 +230,27 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
230 |
</div>
|
231 |
<div class='gadash-tdo-right' id='gadash-tdo-right'>
|
232 |
<div class="gadash-bigtext">
|
233 |
-
<div class="gadash-bleft"><?php _e( "REFERRAL", '
|
234 |
<div class="gadash-bright">0</div>
|
235 |
</div>
|
236 |
<div class="gadash-bigtext">
|
237 |
-
<div class="gadash-bleft"><?php _e( "ORGANIC", '
|
238 |
<div class="gadash-bright">0</div>
|
239 |
</div>
|
240 |
<div class="gadash-bigtext">
|
241 |
-
<div class="gadash-bleft"><?php _e( "SOCIAL", '
|
242 |
<div class="gadash-bright">0</div>
|
243 |
</div>
|
244 |
<div class="gadash-bigtext">
|
245 |
-
<div class="gadash-bleft"><?php _e( "CAMPAIGN", '
|
246 |
<div class="gadash-bright">0</div>
|
247 |
</div>
|
248 |
<div class="gadash-bigtext">
|
249 |
-
<div class="gadash-bleft"><?php _e( "DIRECT", '
|
250 |
<div class="gadash-bright">0</div>
|
251 |
</div>
|
252 |
<div class="gadash-bigtext">
|
253 |
-
<div class="gadash-bleft"><?php _e( "NEW", '
|
254 |
<div class="gadash-bright">0</div>
|
255 |
</div>
|
256 |
</div>
|
@@ -352,19 +352,19 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
352 |
};
|
353 |
};
|
354 |
if (countrfr){
|
355 |
-
tablerfr = "<table><tr><td><?php _e("REFERRALS", '
|
356 |
}
|
357 |
if (countkwd){
|
358 |
-
tablekwd = "<table><tr><td><?php _e("KEYWORDS", '
|
359 |
}
|
360 |
if (countscl){
|
361 |
-
tablescl = "<table><tr><td><?php _e("SOCIAL", '
|
362 |
}
|
363 |
if (countcpg){
|
364 |
-
tablecpg = "<table><tr><td><?php _e("CAMPAIGN", '
|
365 |
}
|
366 |
if (countdrt){
|
367 |
-
tabledrt = "<table><tr><td><?php _e("DIRECT", '
|
368 |
}
|
369 |
return ("<p><center><strong>"+pagetitle+"</strong></center></p>"+tablerfr+tablekwd+tablescl+tablecpg+tabledrt);
|
370 |
}
|
@@ -472,14 +472,14 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
472 |
ucustomstats.sort( function(a,b){ return b.count - a.count } );
|
473 |
|
474 |
var uvisittype = ["REFERRAL","ORGANIC","SOCIAL","CUSTOM"];
|
475 |
-
document.getElementById("gadash-tdo-right").innerHTML = '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ureferralsstats)+'"><div class="gadash-bleft">'+'<?php _e("REFERRAL", '
|
476 |
-
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ukeywordsstats)+'"><div class="gadash-bleft">'+'<?php _e("ORGANIC", '
|
477 |
-
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(usocialstats)+'"><div class="gadash-bleft">'+'<?php _e("SOCIAL", '
|
478 |
-
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ucustomstats)+'"><div class="gadash-bleft">'+'<?php _e("CAMPAIGN", '
|
479 |
|
480 |
var uvisitortype = ["DIRECT","NEW"];
|
481 |
-
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php _e("DIRECT", '
|
482 |
-
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php _e("NEW", '
|
483 |
|
484 |
});
|
485 |
};
|
@@ -499,7 +499,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
499 |
NProgress.start();
|
500 |
} catch(e) {
|
501 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
502 |
-
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", '
|
503 |
}
|
504 |
|
505 |
jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo 'trafficchannels,' . $query; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
|
@@ -511,12 +511,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
511 |
google.setOnLoadCallback(ga_dash_drawtrafficchannels(gadash_trafficchannels));
|
512 |
} else {
|
513 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
514 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
515 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
516 |
}
|
517 |
}else{
|
518 |
jQuery("#gadash-trafficchannels").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
519 |
-
jQuery("#gadash-trafficchannels").html("<?php _e("This report is unavailable", '
|
520 |
}
|
521 |
|
522 |
if (!jQuery.isNumeric(response[1])){
|
@@ -525,17 +525,17 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
525 |
google.setOnLoadCallback(ga_dash_drawprs(gadash_prs));
|
526 |
} else {
|
527 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
528 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
529 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[1]);
|
530 |
}
|
531 |
}else{
|
532 |
jQuery("#gadash-prs").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
533 |
-
jQuery("#gadash-prs").html("<?php _e("This report is unavailable", '
|
534 |
}
|
535 |
|
536 |
}else{
|
537 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
538 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
539 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
540 |
}
|
541 |
NProgress.done();
|
@@ -584,7 +584,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
584 |
NProgress.start();
|
585 |
} catch(e) {
|
586 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
587 |
-
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", '
|
588 |
}
|
589 |
|
590 |
jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "trafficchannels,medium,visitorType,source,socialNetwork",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
|
@@ -596,12 +596,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
596 |
google.setOnLoadCallback(ga_dash_drawtrafficchannels(gadash_trafficchannels));
|
597 |
} else {
|
598 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
599 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
600 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
601 |
}
|
602 |
}else{
|
603 |
jQuery("#gadash-trafficchannels").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
604 |
-
jQuery("#gadash-trafficchannels").html("<?php _e("This report is unavailable", '
|
605 |
}
|
606 |
|
607 |
if (!jQuery.isNumeric(response[1])){
|
@@ -610,12 +610,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
610 |
google.setOnLoadCallback(ga_dash_drawtrafficmediums(gadash_trafficmediums));
|
611 |
} else {
|
612 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
613 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
614 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[1]);
|
615 |
}
|
616 |
}else{
|
617 |
jQuery("#gadash-trafficmediums").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
618 |
-
jQuery("#gadash-trafficmediums").html("<?php _e("This report is unavailable", '
|
619 |
}
|
620 |
|
621 |
if (!jQuery.isNumeric(response[2])){
|
@@ -624,12 +624,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
624 |
google.setOnLoadCallback(ga_dash_drawtraffictype(gadash_traffictype));
|
625 |
} else {
|
626 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
627 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
628 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[2]);
|
629 |
}
|
630 |
}else{
|
631 |
jQuery("#gadash-traffictype").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
632 |
-
jQuery("#gadash-traffictype").html("<?php _e("This report is unavailable", '
|
633 |
}
|
634 |
|
635 |
if (!jQuery.isNumeric(response[3])){
|
@@ -638,12 +638,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
638 |
google.setOnLoadCallback(ga_dash_drawtrafficorganic(gadash_trafficorganic));
|
639 |
} else {
|
640 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
641 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
642 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[3]);
|
643 |
}
|
644 |
}else{
|
645 |
jQuery("#gadash-trafficorganic").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
646 |
-
jQuery("#gadash-trafficorganic").html("<?php _e("This report is unavailable", '
|
647 |
}
|
648 |
|
649 |
if (!jQuery.isNumeric(response[4])){
|
@@ -652,17 +652,17 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
652 |
google.setOnLoadCallback(ga_dash_drawsocialnetworks(gadash_socialnetworks));
|
653 |
} else {
|
654 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
655 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
656 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[4]);
|
657 |
}
|
658 |
}else{
|
659 |
jQuery("#gadash-socialnetworks").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
660 |
-
jQuery("#gadash-socialnetworks").html("<?php _e("This report is unavailable", '
|
661 |
}
|
662 |
|
663 |
}else{
|
664 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
665 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
666 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
667 |
}
|
668 |
NProgress.done();
|
@@ -675,7 +675,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
675 |
tooltipText: 'percentage',
|
676 |
legend: 'none',
|
677 |
chartArea: {width: '99%',height: '80%'},
|
678 |
-
title: '<?php _e( "Traffic Mediums", '
|
679 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
680 |
};
|
681 |
|
@@ -690,7 +690,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
690 |
tooltipText: 'percentage',
|
691 |
legend: 'none',
|
692 |
chartArea: {width: '99%',height: '80%'},
|
693 |
-
title: '<?php _e( "Visitor Type", '
|
694 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
695 |
};
|
696 |
|
@@ -705,7 +705,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
705 |
tooltipText: 'percentage',
|
706 |
legend: 'none',
|
707 |
chartArea: {width: '99%',height: '80%'},
|
708 |
-
title: '<?php _e( "Social Networks", '
|
709 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
710 |
};
|
711 |
|
@@ -720,7 +720,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
720 |
tooltipText: 'percentage',
|
721 |
legend: 'none',
|
722 |
chartArea: {width: '99%',height: '80%'},
|
723 |
-
title: '<?php _e( "Search Engines", '
|
724 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
725 |
};
|
726 |
|
@@ -751,7 +751,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
751 |
NProgress.start();
|
752 |
} catch(e) {
|
753 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
754 |
-
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", '
|
755 |
}
|
756 |
|
757 |
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){
|
@@ -764,19 +764,19 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
764 |
google.setOnLoadCallback(ga_dash_drawlocations(gadash_locations));
|
765 |
} else {
|
766 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
767 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
768 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
769 |
}
|
770 |
}else{
|
771 |
jQuery("#gadash-map").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
772 |
-
jQuery("#gadash-map").html("<?php _e("This report is unavailable", '
|
773 |
jQuery("#gadash-locations").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
774 |
-
jQuery("#gadash-locations").html("<?php _e("This report is unavailable", '
|
775 |
}
|
776 |
|
777 |
}else{
|
778 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
779 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
780 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
781 |
}
|
782 |
NProgress.done();
|
@@ -820,34 +820,34 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
820 |
<div id="gadash-bottomstats" class="gadash-wrapper">
|
821 |
<div class="inside">
|
822 |
<div class="small-box">
|
823 |
-
<h3><?php _e( "Sessions", '
|
824 |
<p id="gdsessions"> </p>
|
825 |
</div>
|
826 |
<div class="small-box">
|
827 |
-
<h3><?php _e( "Users", '
|
828 |
<p id="gdusers"> </p>
|
829 |
</div>
|
830 |
<div class="small-box">
|
831 |
-
<h3><?php _e( "Page Views", '
|
832 |
<p id="gdpageviews"> </p>
|
833 |
</div>
|
834 |
<div class="small-box">
|
835 |
-
<h3><?php _e( "Bounce Rate", '
|
836 |
<p id="gdbouncerate"> </p>
|
837 |
</div>
|
838 |
<div class="small-box">
|
839 |
-
<h3><?php _e( "Organic Search", '
|
840 |
<p id="gdorganicsearch"> </p>
|
841 |
</div>
|
842 |
<div class="small-box">
|
843 |
-
<h3><?php _e( "Pages/Session", '
|
844 |
<p id="gdpagespervisit"> </p>
|
845 |
</div>
|
846 |
</div>
|
847 |
</div>
|
848 |
<script type="text/javascript">
|
849 |
|
850 |
-
google.load("visualization", "1", {packages:["corechart"]});
|
851 |
|
852 |
try {
|
853 |
NProgress.configure({ parent: "#gadash-progressbar" });
|
@@ -855,7 +855,7 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
855 |
NProgress.start();
|
856 |
} catch(e) {
|
857 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
858 |
-
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", '
|
859 |
}
|
860 |
|
861 |
jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query . ',bottomstats'; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
|
@@ -867,12 +867,12 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
867 |
google.setOnLoadCallback(ga_dash_drawmainchart(gadash_mainchart));
|
868 |
} else {
|
869 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
870 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
871 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
872 |
}
|
873 |
}else{
|
874 |
jQuery("#gadash-mainchart").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
875 |
-
jQuery("#gadash-mainchart").html("<?php _e("This report is unavailable", '
|
876 |
}
|
877 |
|
878 |
if (!jQuery.isNumeric(response[1])){
|
@@ -881,29 +881,29 @@ if ( ! class_exists( 'GADWP_Backend_Widgets' ) ) {
|
|
881 |
ga_dash_drawbottomstats(gadash_bottomstats);
|
882 |
} else {
|
883 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
884 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
885 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[1]);
|
886 |
}
|
887 |
}else{
|
888 |
jQuery("#gadash-bottomstats").css({"background-color":"#F7F7F7","height":"auto","padding-top":"40px","padding-bottom":"40px","color":"#000","text-align":"center","width": "98%"});
|
889 |
-
jQuery("#gadash-bottomstats").html("<?php _e("This report is unavailable", '
|
890 |
}
|
891 |
|
892 |
}else{
|
893 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
894 |
-
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", '
|
895 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
896 |
}
|
897 |
NProgress.done();
|
898 |
});
|
899 |
|
900 |
function ga_dash_drawbottomstats(gadash_bottomstats) {
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
}
|
908 |
|
909 |
function ga_dash_drawmainchart(gadash_mainchart) {
|
24 |
}
|
25 |
|
26 |
public function add_widget() {
|
27 |
+
wp_add_dashboard_widget( 'gadash-widget', __( "Google Analytics Dashboard", 'google-analytics-dashboard-for-wp' ), array( $this, 'dashboard_widget' ), $control_callback = null );
|
28 |
}
|
29 |
|
30 |
public function dashboard_widget() {
|
31 |
if ( empty( $this->gadwp->config->options['ga_dash_token'] ) ) {
|
32 |
+
echo '<p>' . __( "This plugin needs an authorization:", 'google-analytics-dashboard-for-wp' ) . '</p><form action="' . menu_page_url( 'gadash_settings', false ) . '" method="POST">' . get_submit_button( __( "Authorize Plugin", 'google-analytics-dashboard-for-wp' ), 'secondary' ) . '</form>';
|
33 |
return;
|
34 |
}
|
35 |
|
36 |
if ( current_user_can( 'manage_options' ) ) {
|
37 |
+
if ( isset( $_REQUEST['gadwp_selected_profile'] ) ) {
|
38 |
+
$this->gadwp->config->options['ga_dash_tableid'] = $_REQUEST['gadwp_selected_profile'];
|
39 |
}
|
40 |
$profiles = $this->gadwp->config->options['ga_dash_profile_list'];
|
41 |
$profile_switch = '';
|
50 |
if ( $this->gadwp->config->options['switch_profile'] == 0 && $this->gadwp->config->options['ga_dash_tableid_jail'] ) {
|
51 |
$this->gadwp->config->options['ga_dash_tableid'] = $this->gadwp->config->options['ga_dash_tableid_jail'];
|
52 |
}
|
53 |
+
$profile_switch .= '<select id="gadwp_selected_profile" name="gadwp_selected_profile" onchange="this.form.submit()">';
|
54 |
foreach ( $profiles as $profile ) {
|
55 |
if ( ! $this->gadwp->config->options['ga_dash_tableid'] ) {
|
56 |
$this->gadwp->config->options['ga_dash_tableid'] = $profile[1];
|
58 |
if ( isset( $profile[3] ) ) {
|
59 |
$profile_switch .= '<option value="' . esc_attr( $profile[1] ) . '" ';
|
60 |
$profile_switch .= selected( $profile[1], $this->gadwp->config->options['ga_dash_tableid'], false );
|
61 |
+
$profile_switch .= ' title="' . __( "View Name:", 'google-analytics-dashboard-for-wp' ) . ' ' . esc_attr( $profile[0] ) . '">' . esc_attr( GADWP_Tools::strip_protocol( $profile[3] ) ) . '</option>';
|
62 |
}
|
63 |
}
|
64 |
$profile_switch .= "</select>";
|
65 |
} else {
|
66 |
+
echo '<p>' . __( "Something went wrong while retrieving profiles list.", 'google-analytics-dashboard-for-wp' ) . '</p><form action="' . menu_page_url( 'gadash_settings', false ) . '" method="POST">' . get_submit_button( __( "More details", 'google-analytics-dashboard-for-wp' ), 'secondary' ) . '</form>';
|
67 |
return;
|
68 |
}
|
69 |
}
|
76 |
if ( $this->gadwp->config->options['ga_dash_tableid_jail'] ) {
|
77 |
$projectId = $this->gadwp->config->options['ga_dash_tableid_jail'];
|
78 |
} else {
|
79 |
+
echo '<p>' . __( "An admin should asign a default Google Analytics Profile.", 'google-analytics-dashboard-for-wp' ) . '</p><form action="' . menu_page_url( 'gadash_settings', false ) . '" method="POST">' . get_submit_button( __( "Select Domain", 'google-analytics-dashboard-for-wp' ), 'secondary' ) . '</form>';
|
80 |
return;
|
81 |
}
|
82 |
} else {
|
87 |
if ( $this->gadwp->config->options['ga_dash_tableid_jail'] ) {
|
88 |
$projectId = $this->gadwp->config->options['ga_dash_tableid_jail'];
|
89 |
} else {
|
90 |
+
echo '<p>' . __( "An admin should asign a default Google Analytics Profile.", 'google-analytics-dashboard-for-wp' ) . '</p><form action="' . menu_page_url( 'gadash_settings', false ) . '" method="POST">' . get_submit_button( __( "Select Domain", 'google-analytics-dashboard-for-wp' ), 'secondary' ) . '</form>';
|
91 |
return;
|
92 |
}
|
93 |
}
|
94 |
if ( ! ( $projectId ) ) {
|
95 |
+
echo '<p>' . __( "Something went wrong while retrieving property data. You need to create and properly configure a Google Analytics account:", 'google-analytics-dashboard-for-wp' ) . '</p> <form action="https://deconf.com/how-to-set-up-google-analytics-on-your-website/" method="POST">' . get_submit_button( __( "Find out more!", 'google-analytics-dashboard-for-wp' ), 'secondary' ) . '</form>';
|
96 |
return;
|
97 |
}
|
98 |
+
if ( isset( $_REQUEST['gadwpquery'] ) ) {
|
99 |
+
$query = $_REQUEST['gadwpquery'];
|
100 |
} else {
|
101 |
$default_metric = GADWP_Tools::get_cookie( 'default_metric' );
|
102 |
$query = $default_metric ? $default_metric : 'sessions';
|
103 |
}
|
104 |
+
if ( isset( $_REQUEST['gadwpperiod'] ) ) {
|
105 |
+
$period = $_REQUEST['gadwpperiod'];
|
106 |
} else {
|
107 |
$default_dimension = GADWP_Tools::get_cookie( 'default_dimension' );
|
108 |
$period = $default_dimension ? $default_dimension : '30daysAgo';
|
109 |
}
|
110 |
|
111 |
?>
|
112 |
+
<select id="ga_dash_period" name="gadwpperiod" onchange="this.form.submit()">
|
113 |
+
<option value="realtime" <?php selected ( "realtime", $period, true ); ?>><?php _e("Real-Time",'google-analytics-dashboard-for-wp'); ?></option>
|
114 |
+
<option value="today" <?php selected ( "today", $period, true ); ?>><?php _e("Today",'google-analytics-dashboard-for-wp'); ?></option>
|
115 |
+
<option value="yesterday" <?php selected ( "yesterday", $period, true ); ?>><?php _e("Yesterday",'google-analytics-dashboard-for-wp'); ?></option>
|
116 |
+
<option value="7daysAgo" <?php selected ( "7daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 7 ); ?></option>
|
117 |
+
<option value="14daysAgo" <?php selected ( "14daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 14 ); ?></option>
|
118 |
+
<option value="30daysAgo" <?php selected ( "30daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 30 ); ?></option>
|
119 |
+
<option value="90daysAgo" <?php selected ( "90daysAgo", $period, true ); ?>><?php printf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 90 ); ?></option>
|
120 |
+
<option value="365daysAgo" <?php selected ( "365daysAgo", $period, true ); ?>><?php printf( _n( "%s Year", "%s Years", 1, 'google-analytics-dashboard-for-wp' ), __('One', 'google-analytics-dashboard-for-wp') ); ?></option>
|
121 |
+
<option value="1095daysAgo" <?php selected ( "1095daysAgo", $period, true ); ?>><?php printf( _n( "%s Year", "%s Years", 3, 'google-analytics-dashboard-for-wp' ), __('Three', 'google-analytics-dashboard-for-wp') ); ?></option>
|
122 |
</select>
|
123 |
|
124 |
<?php if ($period != 'realtime') {?>
|
125 |
+
<select id="ga_dash_query" name="gadwpquery" onchange="this.form.submit()">
|
126 |
+
<option value="sessions" <?php selected ( "sessions", $query, true ); ?>><?php _e("Sessions",'google-analytics-dashboard-for-wp'); ?></option>
|
127 |
+
<option value="users" <?php selected ( "users", $query, true ); ?>><?php _e("Users",'google-analytics-dashboard-for-wp'); ?></option>
|
128 |
+
<option value="organicSearches" <?php selected ( "organicSearches", $query, true ); ?>><?php _e("Organic",'google-analytics-dashboard-for-wp'); ?></option>
|
129 |
+
<option value="pageviews" <?php selected ( "pageviews", $query, true ); ?>><?php _e("Page Views",'google-analytics-dashboard-for-wp'); ?></option>
|
130 |
+
<option value="visitBounceRate" <?php selected ( "visitBounceRate", $query, true ); ?>><?php _e("Bounce Rate",'google-analytics-dashboard-for-wp'); ?></option>
|
131 |
+
<option value="locations" <?php selected ( "locations", $query, true ); ?>><?php _e("Location",'google-analytics-dashboard-for-wp'); ?></option>
|
132 |
+
<option value="contentpages" <?php selected ( "contentpages", $query, true ); ?>><?php _e("Pages",'google-analytics-dashboard-for-wp'); ?></option>
|
133 |
+
<option value="referrers" <?php selected ( "referrers", $query, true ); ?>><?php _e("Referrers",'google-analytics-dashboard-for-wp'); ?></option>
|
134 |
+
<option value="searches" <?php selected ( "searches", $query, true ); ?>><?php _e("Searches",'google-analytics-dashboard-for-wp'); ?></option>
|
135 |
+
<option value="trafficdetails" <?php selected ( "trafficdetails", $query, true ); ?>><?php _e("Traffic Details",'google-analytics-dashboard-for-wp'); ?></option>
|
136 |
</select>
|
137 |
<?php }?>
|
138 |
</form>
|
230 |
</div>
|
231 |
<div class='gadash-tdo-right' id='gadash-tdo-right'>
|
232 |
<div class="gadash-bigtext">
|
233 |
+
<div class="gadash-bleft"><?php _e( "REFERRAL", 'google-analytics-dashboard-for-wp' );?></div>
|
234 |
<div class="gadash-bright">0</div>
|
235 |
</div>
|
236 |
<div class="gadash-bigtext">
|
237 |
+
<div class="gadash-bleft"><?php _e( "ORGANIC", 'google-analytics-dashboard-for-wp' );?></div>
|
238 |
<div class="gadash-bright">0</div>
|
239 |
</div>
|
240 |
<div class="gadash-bigtext">
|
241 |
+
<div class="gadash-bleft"><?php _e( "SOCIAL", 'google-analytics-dashboard-for-wp' );?></div>
|
242 |
<div class="gadash-bright">0</div>
|
243 |
</div>
|
244 |
<div class="gadash-bigtext">
|
245 |
+
<div class="gadash-bleft"><?php _e( "CAMPAIGN", 'google-analytics-dashboard-for-wp' );?></div>
|
246 |
<div class="gadash-bright">0</div>
|
247 |
</div>
|
248 |
<div class="gadash-bigtext">
|
249 |
+
<div class="gadash-bleft"><?php _e( "DIRECT", 'google-analytics-dashboard-for-wp' );?></div>
|
250 |
<div class="gadash-bright">0</div>
|
251 |
</div>
|
252 |
<div class="gadash-bigtext">
|
253 |
+
<div class="gadash-bleft"><?php _e( "NEW", 'google-analytics-dashboard-for-wp' );?></div>
|
254 |
<div class="gadash-bright">0</div>
|
255 |
</div>
|
256 |
</div>
|
352 |
};
|
353 |
};
|
354 |
if (countrfr){
|
355 |
+
tablerfr = "<table><tr><td><?php _e("REFERRALS", 'google-analytics-dashboard-for-wp');?> ("+countrfr+")</td></tr>"+tablerfr+"</table><br />";
|
356 |
}
|
357 |
if (countkwd){
|
358 |
+
tablekwd = "<table><tr><td><?php _e("KEYWORDS", 'google-analytics-dashboard-for-wp');?> ("+countkwd+")</td></tr>"+tablekwd+"</table><br />";
|
359 |
}
|
360 |
if (countscl){
|
361 |
+
tablescl = "<table><tr><td><?php _e("SOCIAL", 'google-analytics-dashboard-for-wp');?> ("+countscl+")</td></tr>"+tablescl+"</table><br />";
|
362 |
}
|
363 |
if (countcpg){
|
364 |
+
tablecpg = "<table><tr><td><?php _e("CAMPAIGN", 'google-analytics-dashboard-for-wp');?> ("+countcpg+")</td></tr>"+tablecpg+"</table><br />";
|
365 |
}
|
366 |
if (countdrt){
|
367 |
+
tabledrt = "<table><tr><td><?php _e("DIRECT", 'google-analytics-dashboard-for-wp');?> ("+countdrt+")</td></tr></table><br />";
|
368 |
}
|
369 |
return ("<p><center><strong>"+pagetitle+"</strong></center></p>"+tablerfr+tablekwd+tablescl+tablecpg+tabledrt);
|
370 |
}
|
472 |
ucustomstats.sort( function(a,b){ return b.count - a.count } );
|
473 |
|
474 |
var uvisittype = ["REFERRAL","ORGANIC","SOCIAL","CUSTOM"];
|
475 |
+
document.getElementById("gadash-tdo-right").innerHTML = '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ureferralsstats)+'"><div class="gadash-bleft">'+'<?php _e("REFERRAL", 'google-analytics-dashboard-for-wp');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[0])+'</div></div>';
|
476 |
+
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ukeywordsstats)+'"><div class="gadash-bleft">'+'<?php _e("ORGANIC", 'google-analytics-dashboard-for-wp');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[1])+'</div></div>';
|
477 |
+
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(usocialstats)+'"><div class="gadash-bleft">'+'<?php _e("SOCIAL", 'google-analytics-dashboard-for-wp');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[2])+'</div></div>';
|
478 |
+
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><a href="#" data-tooltip="'+gadash_generatetooltip(ucustomstats)+'"><div class="gadash-bleft">'+'<?php _e("CAMPAIGN", 'google-analytics-dashboard-for-wp');?>'+'</a></div><div class="gadash-bright">'+countsessions(data,uvisittype[3])+'</div></div>';
|
479 |
|
480 |
var uvisitortype = ["DIRECT","NEW"];
|
481 |
+
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php _e("DIRECT", 'google-analytics-dashboard-for-wp');?>'+'</div><div class="gadash-bright">'+countsessions(data,uvisitortype[0])+'</div></div>';
|
482 |
+
document.getElementById("gadash-tdo-right").innerHTML += '<div class="gadash-bigtext"><div class="gadash-bleft">'+'<?php _e("NEW", 'google-analytics-dashboard-for-wp');?>'+'</div><div class="gadash-bright">'+countsessions(data,uvisitortype[1])+'</div></div>';
|
483 |
|
484 |
});
|
485 |
};
|
499 |
NProgress.start();
|
500 |
} catch(e) {
|
501 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
502 |
+
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", 'google-analytics-dashboard-for-wp'); ?>");
|
503 |
}
|
504 |
|
505 |
jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo 'trafficchannels,' . $query; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
|
511 |
google.setOnLoadCallback(ga_dash_drawtrafficchannels(gadash_trafficchannels));
|
512 |
} else {
|
513 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
514 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
515 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
516 |
}
|
517 |
}else{
|
518 |
jQuery("#gadash-trafficchannels").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
519 |
+
jQuery("#gadash-trafficchannels").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[0]+")");
|
520 |
}
|
521 |
|
522 |
if (!jQuery.isNumeric(response[1])){
|
525 |
google.setOnLoadCallback(ga_dash_drawprs(gadash_prs));
|
526 |
} else {
|
527 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
528 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
529 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[1]);
|
530 |
}
|
531 |
}else{
|
532 |
jQuery("#gadash-prs").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
533 |
+
jQuery("#gadash-prs").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[1]+")");
|
534 |
}
|
535 |
|
536 |
}else{
|
537 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
538 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
539 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
540 |
}
|
541 |
NProgress.done();
|
584 |
NProgress.start();
|
585 |
} catch(e) {
|
586 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
587 |
+
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", 'google-analytics-dashboard-for-wp'); ?>");
|
588 |
}
|
589 |
|
590 |
jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "trafficchannels,medium,visitorType,source,socialNetwork",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
|
596 |
google.setOnLoadCallback(ga_dash_drawtrafficchannels(gadash_trafficchannels));
|
597 |
} else {
|
598 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
599 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
600 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
601 |
}
|
602 |
}else{
|
603 |
jQuery("#gadash-trafficchannels").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
604 |
+
jQuery("#gadash-trafficchannels").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[0]+")");
|
605 |
}
|
606 |
|
607 |
if (!jQuery.isNumeric(response[1])){
|
610 |
google.setOnLoadCallback(ga_dash_drawtrafficmediums(gadash_trafficmediums));
|
611 |
} else {
|
612 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
613 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
614 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[1]);
|
615 |
}
|
616 |
}else{
|
617 |
jQuery("#gadash-trafficmediums").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
618 |
+
jQuery("#gadash-trafficmediums").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[1]+")");
|
619 |
}
|
620 |
|
621 |
if (!jQuery.isNumeric(response[2])){
|
624 |
google.setOnLoadCallback(ga_dash_drawtraffictype(gadash_traffictype));
|
625 |
} else {
|
626 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
627 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
628 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[2]);
|
629 |
}
|
630 |
}else{
|
631 |
jQuery("#gadash-traffictype").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
632 |
+
jQuery("#gadash-traffictype").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[2]+")");
|
633 |
}
|
634 |
|
635 |
if (!jQuery.isNumeric(response[3])){
|
638 |
google.setOnLoadCallback(ga_dash_drawtrafficorganic(gadash_trafficorganic));
|
639 |
} else {
|
640 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
641 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
642 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[3]);
|
643 |
}
|
644 |
}else{
|
645 |
jQuery("#gadash-trafficorganic").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
646 |
+
jQuery("#gadash-trafficorganic").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[3]+")");
|
647 |
}
|
648 |
|
649 |
if (!jQuery.isNumeric(response[4])){
|
652 |
google.setOnLoadCallback(ga_dash_drawsocialnetworks(gadash_socialnetworks));
|
653 |
} else {
|
654 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
655 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
656 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[4]);
|
657 |
}
|
658 |
}else{
|
659 |
jQuery("#gadash-socialnetworks").css({"background-color":"#F7F7F7","height":"auto","padding-top":"80px","padding-bottom":"80px","color":"#000","text-align":"center"});
|
660 |
+
jQuery("#gadash-socialnetworks").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[4]+")");
|
661 |
}
|
662 |
|
663 |
}else{
|
664 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
665 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
666 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
667 |
}
|
668 |
NProgress.done();
|
675 |
tooltipText: 'percentage',
|
676 |
legend: 'none',
|
677 |
chartArea: {width: '99%',height: '80%'},
|
678 |
+
title: '<?php _e( "Traffic Mediums", 'google-analytics-dashboard-for-wp' ); ?>',
|
679 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
680 |
};
|
681 |
|
690 |
tooltipText: 'percentage',
|
691 |
legend: 'none',
|
692 |
chartArea: {width: '99%',height: '80%'},
|
693 |
+
title: '<?php _e( "Visitor Type", 'google-analytics-dashboard-for-wp' ); ?>',
|
694 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
695 |
};
|
696 |
|
705 |
tooltipText: 'percentage',
|
706 |
legend: 'none',
|
707 |
chartArea: {width: '99%',height: '80%'},
|
708 |
+
title: '<?php _e( "Social Networks", 'google-analytics-dashboard-for-wp' ); ?>',
|
709 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
710 |
};
|
711 |
|
720 |
tooltipText: 'percentage',
|
721 |
legend: 'none',
|
722 |
chartArea: {width: '99%',height: '80%'},
|
723 |
+
title: '<?php _e( "Search Engines", 'google-analytics-dashboard-for-wp' ); ?>',
|
724 |
colors:['<?php echo esc_html($this->gadwp->config->options ['ga_dash_style']); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 20 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], + 10 )); ?>','<?php echo esc_html(GADWP_Tools::colourVariator ( $this->gadwp->config->options ['ga_dash_style'], - 20 )); ?>']
|
725 |
};
|
726 |
|
751 |
NProgress.start();
|
752 |
} catch(e) {
|
753 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
754 |
+
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", 'google-analytics-dashboard-for-wp'); ?>");
|
755 |
}
|
756 |
|
757 |
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){
|
764 |
google.setOnLoadCallback(ga_dash_drawlocations(gadash_locations));
|
765 |
} else {
|
766 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
767 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
768 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
769 |
}
|
770 |
}else{
|
771 |
jQuery("#gadash-map").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
772 |
+
jQuery("#gadash-map").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[0]+")");
|
773 |
jQuery("#gadash-locations").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
774 |
+
jQuery("#gadash-locations").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[0]+")");
|
775 |
}
|
776 |
|
777 |
}else{
|
778 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
779 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
780 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
781 |
}
|
782 |
NProgress.done();
|
820 |
<div id="gadash-bottomstats" class="gadash-wrapper">
|
821 |
<div class="inside">
|
822 |
<div class="small-box">
|
823 |
+
<h3><?php _e( "Sessions", 'google-analytics-dashboard-for-wp' );?></h3>
|
824 |
<p id="gdsessions"> </p>
|
825 |
</div>
|
826 |
<div class="small-box">
|
827 |
+
<h3><?php _e( "Users", 'google-analytics-dashboard-for-wp' );?></h3>
|
828 |
<p id="gdusers"> </p>
|
829 |
</div>
|
830 |
<div class="small-box">
|
831 |
+
<h3><?php _e( "Page Views", 'google-analytics-dashboard-for-wp' );?></h3>
|
832 |
<p id="gdpageviews"> </p>
|
833 |
</div>
|
834 |
<div class="small-box">
|
835 |
+
<h3><?php _e( "Bounce Rate", 'google-analytics-dashboard-for-wp' );?></h3>
|
836 |
<p id="gdbouncerate"> </p>
|
837 |
</div>
|
838 |
<div class="small-box">
|
839 |
+
<h3><?php _e( "Organic Search", 'google-analytics-dashboard-for-wp' );?></h3>
|
840 |
<p id="gdorganicsearch"> </p>
|
841 |
</div>
|
842 |
<div class="small-box">
|
843 |
+
<h3><?php _e( "Pages/Session", 'google-analytics-dashboard-for-wp' );?></h3>
|
844 |
<p id="gdpagespervisit"> </p>
|
845 |
</div>
|
846 |
</div>
|
847 |
</div>
|
848 |
<script type="text/javascript">
|
849 |
|
850 |
+
google.load("visualization", "1", {packages:["corechart"], 'language': '<?php echo get_bloginfo( 'language' ); ?>'});
|
851 |
|
852 |
try {
|
853 |
NProgress.configure({ parent: "#gadash-progressbar" });
|
855 |
NProgress.start();
|
856 |
} catch(e) {
|
857 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
858 |
+
jQuery("#gadash-progressbar").html("<?php _e("A JavaScript Error is blocking plugin resources!", 'google-analytics-dashboard-for-wp'); ?>");
|
859 |
}
|
860 |
|
861 |
jQuery.post(ajaxurl, {action: "gadash_get_widgetreports",projectId: "<?php echo $projectId; ?>",from: "<?php echo $from; ?>",to: "<?php echo $to; ?>",query: "<?php echo $query . ',bottomstats'; ?>",gadash_security_widget_reports: "<?php echo wp_create_nonce('gadash_get_widgetreports'); ?>"}, function(response){
|
867 |
google.setOnLoadCallback(ga_dash_drawmainchart(gadash_mainchart));
|
868 |
} else {
|
869 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
870 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
871 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[0]);
|
872 |
}
|
873 |
}else{
|
874 |
jQuery("#gadash-mainchart").css({"background-color":"#F7F7F7","height":"auto","padding-top":"125px","padding-bottom":"125px","color":"#000","text-align":"center"});
|
875 |
+
jQuery("#gadash-mainchart").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[0]+")");
|
876 |
}
|
877 |
|
878 |
if (!jQuery.isNumeric(response[1])){
|
881 |
ga_dash_drawbottomstats(gadash_bottomstats);
|
882 |
} else {
|
883 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
884 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
885 |
console.log("\n********************* GADWP Log ********************* \n\n"+response[1]);
|
886 |
}
|
887 |
}else{
|
888 |
jQuery("#gadash-bottomstats").css({"background-color":"#F7F7F7","height":"auto","padding-top":"40px","padding-bottom":"40px","color":"#000","text-align":"center","width": "98%"});
|
889 |
+
jQuery("#gadash-bottomstats").html("<?php _e("This report is unavailable", 'google-analytics-dashboard-for-wp'); ?> ("+response[1]+")");
|
890 |
}
|
891 |
|
892 |
}else{
|
893 |
jQuery("#gadash-progressbar").css({"margin-top":"3px","padding-left":"5px","height":"auto","color":"#000","border-left":"5px solid red"});
|
894 |
+
jQuery("#gadash-progressbar").html("<?php _e("Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp'); ?>");
|
895 |
console.log("\n********************* GADWP Log ********************* \n\n"+response);
|
896 |
}
|
897 |
NProgress.done();
|
898 |
});
|
899 |
|
900 |
function ga_dash_drawbottomstats(gadash_bottomstats) {
|
901 |
+
jQuery("#gadash-bottomstats #gdsessions").text(gadash_bottomstats[0]);
|
902 |
+
jQuery("#gadash-bottomstats #gdusers").text(gadash_bottomstats[1]);
|
903 |
+
jQuery("#gadash-bottomstats #gdpageviews").text(gadash_bottomstats[2]);
|
904 |
+
jQuery("#gadash-bottomstats #gdbouncerate").text(gadash_bottomstats[3] + "%");
|
905 |
+
jQuery("#gadash-bottomstats #gdorganicsearch").text(gadash_bottomstats[4]);
|
906 |
+
jQuery("#gadash-bottomstats #gdpagespervisit").text(gadash_bottomstats[5]);
|
907 |
}
|
908 |
|
909 |
function ga_dash_drawmainchart(gadash_mainchart) {
|
config.php
CHANGED
@@ -7,371 +7,354 @@
|
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly
|
10 |
-
if (! defined('ABSPATH'))
|
11 |
-
|
12 |
|
13 |
-
if (! class_exists('GADWP_Config')) {
|
14 |
|
15 |
-
|
16 |
-
{
|
17 |
|
18 |
-
|
19 |
|
20 |
-
|
21 |
-
'65556128781.apps.googleusercontent.com',
|
22 |
-
'Kc7888wgbc_JbeCpbFjnYpwE',
|
23 |
-
'AIzaSymApG7LlUoHc29ZeC_dsShVaBEX15SfRl_WY'
|
24 |
-
);
|
25 |
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
$this->get_plugin_options();
|
30 |
$this->last_requested_report();
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
), $this->access);
|
35 |
-
add_filter('auto_update_plugin', array(
|
36 |
-
$this,
|
37 |
-
'automatic_update'
|
38 |
-
), 10, 2);
|
39 |
-
}
|
40 |
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
private function last_requested_report(){
|
45 |
-
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { //Don't store queries while doing ajax
|
46 |
return;
|
47 |
}
|
48 |
|
49 |
-
if ( isset( $_REQUEST['
|
50 |
-
GADWP_Tools::set_cookie( 'default_dimension', $_REQUEST['
|
51 |
}
|
52 |
|
53 |
-
if ( isset( $_REQUEST['
|
54 |
-
GADWP_Tools::set_cookie( 'default_metric', $_REQUEST['
|
55 |
}
|
56 |
}
|
57 |
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
}
|
67 |
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
}
|
83 |
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
}
|
143 |
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
}
|
181 |
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
}
|
186 |
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
global $blog_id;
|
193 |
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
}
|
215 |
-
}
|
216 |
|
217 |
-
|
218 |
-
|
219 |
-
$flag = false;
|
220 |
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
|
|
|
|
|
|
|
|
377 |
}
|
7 |
*/
|
8 |
|
9 |
// Exit if accessed directly
|
10 |
+
if ( ! defined( 'ABSPATH' ) )
|
11 |
+
exit();
|
12 |
|
13 |
+
if ( ! class_exists( 'GADWP_Config' ) ) {
|
14 |
|
15 |
+
final class GADWP_Config {
|
|
|
16 |
|
17 |
+
public $options;
|
18 |
|
19 |
+
public $access = array( '65556128781.apps.googleusercontent.com', 'Kc7888wgbc_JbeCpbFjnYpwE', 'AIzaSymApG7LlUoHc29ZeC_dsShVaBEX15SfRl_WY' );
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
public function __construct() {
|
22 |
+
// get plugin options
|
23 |
+
$this->get_plugin_options();
|
|
|
24 |
$this->last_requested_report();
|
25 |
+
$this->access = array_map( array( $this, 'map' ), $this->access );
|
26 |
+
add_filter( 'auto_update_plugin', array( $this, 'automatic_update' ), 10, 2 );
|
27 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
+
/*
|
30 |
+
* Stores the last requested dimension and metric in cookies
|
31 |
+
*/
|
32 |
+
private function last_requested_report() {
|
33 |
+
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { // Don't store queries while doing ajax
|
34 |
return;
|
35 |
}
|
36 |
|
37 |
+
if ( isset( $_REQUEST['gadwpperiod'] ) ) {
|
38 |
+
GADWP_Tools::set_cookie( 'default_dimension', $_REQUEST['gadwpperiod'] );
|
39 |
}
|
40 |
|
41 |
+
if ( isset( $_REQUEST['gadwpquery'] ) ) {
|
42 |
+
GADWP_Tools::set_cookie( 'default_metric', $_REQUEST['gadwpquery'] );
|
43 |
}
|
44 |
}
|
45 |
|
46 |
+
public function get_major_version( $version ) {
|
47 |
+
$exploded_version = explode( '.', $version );
|
48 |
+
if ( isset( $exploded_version[2] ) ) {
|
49 |
+
return $exploded_version[0] . '.' . $exploded_version[1] . '.' . $exploded_version[2];
|
50 |
+
} else {
|
51 |
+
return $exploded_version[0] . '.' . $exploded_version[1] . '.0';
|
52 |
+
}
|
53 |
+
}
|
|
|
54 |
|
55 |
+
public function automatic_update( $update, $item ) {
|
56 |
+
$item = (array) $item;
|
57 |
+
if ( is_multisite() && ! is_main_site() ) {
|
58 |
+
return;
|
59 |
+
}
|
60 |
+
if ( ! isset( $item['new_version'] ) || ! isset( $item['plugin'] ) || ! $this->options['automatic_updates_minorversion'] ) {
|
61 |
+
return $update;
|
62 |
+
}
|
63 |
+
if ( isset( $item['slug'] ) && $item['slug'] == 'google-analytics-dashboard-for-wp' ) {
|
64 |
+
// Only when a minor update is available
|
65 |
+
return ( $this->get_major_version( GADWP_CURRENT_VERSION ) == $this->get_major_version( $item['new_version'] ) );
|
66 |
+
}
|
67 |
+
return $update;
|
68 |
+
}
|
|
|
69 |
|
70 |
+
// Validates data before storing
|
71 |
+
private static function validate_data( $options ) {
|
72 |
+
if ( isset( $options['ga_realtime_pages'] ) ) {
|
73 |
+
$options['ga_realtime_pages'] = (int) $options['ga_realtime_pages'];
|
74 |
+
}
|
75 |
+
if ( isset( $options['ga_crossdomain_tracking'] ) ) {
|
76 |
+
$options['ga_crossdomain_tracking'] = (int) $options['ga_crossdomain_tracking'];
|
77 |
+
}
|
78 |
+
if ( isset( $options['ga_crossdomain_list'] ) ) {
|
79 |
+
$options['ga_crossdomain_list'] = sanitize_text_field( $options['ga_crossdomain_list'] );
|
80 |
+
}
|
81 |
+
if ( isset( $options['ga_dash_apikey'] ) ) {
|
82 |
+
$options['ga_dash_apikey'] = sanitize_text_field( $options['ga_dash_apikey'] );
|
83 |
+
}
|
84 |
+
if ( isset( $options['ga_dash_clientid'] ) ) {
|
85 |
+
$options['ga_dash_clientid'] = sanitize_text_field( $options['ga_dash_clientid'] );
|
86 |
+
}
|
87 |
+
if ( isset( $options['ga_dash_clientsecret'] ) ) {
|
88 |
+
$options['ga_dash_clientsecret'] = sanitize_text_field( $options['ga_dash_clientsecret'] );
|
89 |
+
}
|
90 |
+
if ( isset( $options['ga_dash_style'] ) ) {
|
91 |
+
$options['ga_dash_style'] = sanitize_text_field( $options['ga_dash_style'] );
|
92 |
+
}
|
93 |
+
if ( isset( $options['ga_event_downloads'] ) ) {
|
94 |
+
if ( empty( $options['ga_event_downloads'] ) ) {
|
95 |
+
$options['ga_event_downloads'] = 'zip|mp3*|mpe*g|pdf|docx*|pptx*|xlsx*|rar*';
|
96 |
+
}
|
97 |
+
$options['ga_event_downloads'] = sanitize_text_field( $options['ga_event_downloads'] );
|
98 |
+
}
|
99 |
+
if ( isset( $options['ga_speed_samplerate'] ) && ( $options['ga_speed_samplerate'] < 1 || $options['ga_speed_samplerate'] > 100 ) ) {
|
100 |
+
$options['ga_speed_samplerate'] = 1;
|
101 |
+
}
|
102 |
+
if ( isset( $options['ga_target_geomap'] ) ) {
|
103 |
+
$options['ga_target_geomap'] = sanitize_text_field( $options['ga_target_geomap'] );
|
104 |
+
}
|
105 |
+
if ( isset( $options['ga_author_dimindex'] ) ) {
|
106 |
+
$options['ga_author_dimindex'] = (int) $options['ga_author_dimindex'];
|
107 |
+
}
|
108 |
+
if ( isset( $options['ga_category_dimindex'] ) ) {
|
109 |
+
$options['ga_category_dimindex'] = (int) $options['ga_category_dimindex'];
|
110 |
+
}
|
111 |
+
if ( isset( $options['ga_user_dimindex'] ) ) {
|
112 |
+
$options['ga_user_dimindex'] = (int) $options['ga_user_dimindex'];
|
113 |
+
}
|
114 |
+
if ( isset( $options['ga_pubyear_dimindex'] ) ) {
|
115 |
+
$options['ga_pubyear_dimindex'] = (int) $options['ga_pubyear_dimindex'];
|
116 |
+
}
|
117 |
+
if ( isset( $options['ga_aff_tracking'] ) ) {
|
118 |
+
$options['ga_aff_tracking'] = (int) $options['ga_aff_tracking'];
|
119 |
+
}
|
120 |
+
if ( isset( $options['ga_event_affiliates'] ) ) {
|
121 |
+
if ( empty( $options['ga_event_affiliates'] ) ) {
|
122 |
+
$options['ga_event_affiliates'] = '/out/';
|
123 |
+
}
|
124 |
+
$options['ga_event_affiliates'] = sanitize_text_field( $options['ga_event_affiliates'] );
|
125 |
+
}
|
126 |
+
return $options;
|
127 |
+
}
|
|
|
128 |
|
129 |
+
public function set_plugin_options( $network_settings = false ) {
|
130 |
+
// Handle Network Mode
|
131 |
+
$options = $this->options;
|
132 |
+
$get_network_options = get_site_option( 'gadash_network_options' );
|
133 |
+
$old_network_options = (array) json_decode( $get_network_options );
|
134 |
+
if ( is_multisite() ) {
|
135 |
+
if ( $network_settings ) { // Retrieve network options, clear blog options, store both to db
|
136 |
+
$network_options['ga_dash_token'] = $this->options['ga_dash_token'];
|
137 |
+
$options['ga_dash_token'] = '';
|
138 |
+
$network_options['ga_dash_refresh_token'] = $this->options['ga_dash_refresh_token'];
|
139 |
+
$options['ga_dash_refresh_token'] = '';
|
140 |
+
if ( is_network_admin() ) {
|
141 |
+
$network_options['ga_dash_profile_list'] = $this->options['ga_dash_profile_list'];
|
142 |
+
$options['ga_dash_profile_list'] = array();
|
143 |
+
$network_options['ga_dash_apikey'] = $this->options['ga_dash_apikey'];
|
144 |
+
$options['ga_dash_apikey'] = '';
|
145 |
+
$network_options['ga_dash_clientid'] = $this->options['ga_dash_clientid'];
|
146 |
+
$options['ga_dash_clientid'] = '';
|
147 |
+
$network_options['ga_dash_clientsecret'] = $this->options['ga_dash_clientsecret'];
|
148 |
+
$options['ga_dash_clientsecret'] = '';
|
149 |
+
$network_options['ga_dash_userapi'] = $this->options['ga_dash_userapi'];
|
150 |
+
$options['ga_dash_userapi'] = 0;
|
151 |
+
$network_options['ga_dash_network'] = $this->options['ga_dash_network'];
|
152 |
+
$network_options['ga_dash_excludesa'] = $this->options['ga_dash_excludesa'];
|
153 |
+
$network_options['automatic_updates_minorversion'] = $this->options['automatic_updates_minorversion'];
|
154 |
+
unset( $options['ga_dash_network'] );
|
155 |
+
if ( isset( $this->options['ga_dash_tableid_network'] ) ) {
|
156 |
+
$network_options['ga_dash_tableid_network'] = $this->options['ga_dash_tableid_network'];
|
157 |
+
unset( $options['ga_dash_tableid_network'] );
|
158 |
+
}
|
159 |
+
}
|
160 |
+
update_site_option( 'gadash_network_options', json_encode( $this->validate_data( array_merge( $old_network_options, $network_options ) ) ) );
|
161 |
+
}
|
162 |
+
}
|
163 |
+
update_option( 'gadash_options', json_encode( $this->validate_data( $options ) ) );
|
164 |
+
}
|
|
|
165 |
|
166 |
+
private function map( $map ) {
|
167 |
+
return str_ireplace( 'map', chr( 66 ), $map );
|
168 |
+
}
|
|
|
169 |
|
170 |
+
private function get_plugin_options() {
|
171 |
+
/*
|
172 |
+
* Get plugin options
|
173 |
+
*/
|
174 |
+
global $blog_id;
|
|
|
175 |
|
176 |
+
if ( ! get_option( 'gadash_options' ) ) {
|
177 |
+
GADWP_Install::install();
|
178 |
+
}
|
179 |
+
$this->options = (array) json_decode( get_option( 'gadash_options' ) );
|
180 |
+
// Maintain Compatibility
|
181 |
+
$this->maintain_compatibility();
|
182 |
+
// Handle Network Mode
|
183 |
+
if ( is_multisite() ) {
|
184 |
+
$get_network_options = get_site_option( 'gadash_network_options' );
|
185 |
+
$network_options = (array) json_decode( $get_network_options );
|
186 |
+
if ( isset( $network_options['ga_dash_network'] ) && ( $network_options['ga_dash_network'] ) ) {
|
187 |
+
$network_options = (array) json_decode( $get_network_options );
|
188 |
+
if ( ! is_network_admin() && ! empty( $network_options['ga_dash_profile_list'] ) && isset( $network_options['ga_dash_tableid_network']->$blog_id ) ) {
|
189 |
+
$network_options['ga_dash_profile_list'] = array( 0 => GADWP_Tools::get_selected_profile( $network_options['ga_dash_profile_list'], $network_options['ga_dash_tableid_network']->$blog_id ) );
|
190 |
+
$network_options['ga_dash_tableid_jail'] = $network_options['ga_dash_profile_list'][0][1];
|
191 |
+
}
|
192 |
+
$this->options = array_merge( $this->options, $network_options );
|
193 |
+
}
|
194 |
+
}
|
195 |
+
}
|
|
|
|
|
196 |
|
197 |
+
private function maintain_compatibility() {
|
198 |
+
$flag = false;
|
|
|
199 |
|
200 |
+
if ( GADWP_CURRENT_VERSION != get_option( 'gadwp_version' ) ) {
|
201 |
+
GADWP_Tools::clear_cache();
|
202 |
+
$flag = true;
|
203 |
+
delete_transient( 'ga_dash_lasterror' );
|
204 |
+
update_option( 'gadwp_version', GADWP_CURRENT_VERSION );
|
205 |
+
update_option( 'gadwp_got_updated', true );
|
206 |
+
if ( is_multisite() ) { // Cleanup errors and cookies on the entire network
|
207 |
+
foreach ( wp_get_sites( array( 'limit' => apply_filters( 'gadwp_sites_limit', 100 ) ) ) as $blog ) {
|
208 |
+
switch_to_blog( $blog['blog_id'] );
|
209 |
+
delete_transient( 'ga_dash_gapi_errors' );
|
210 |
+
restore_current_blog();
|
211 |
+
}
|
212 |
+
} else {
|
213 |
+
delete_transient( 'ga_dash_gapi_errors' );
|
214 |
+
}
|
215 |
+
GADWP_Tools::unset_cookie( 'default_metric' );
|
216 |
+
GADWP_Tools::unset_cookie( 'default_dimension' );
|
217 |
+
}
|
218 |
+
if ( ! isset( $this->options['ga_enhanced_links'] ) ) {
|
219 |
+
$this->options['ga_enhanced_links'] = 0;
|
220 |
+
$flag = true;
|
221 |
+
}
|
222 |
+
if ( ! isset( $this->options['ga_enhanced_network'] ) ) {
|
223 |
+
$this->options['ga_dash_network'] = 0;
|
224 |
+
$flag = true;
|
225 |
+
}
|
226 |
+
if ( ! isset( $this->options['ga_enhanced_excludesa'] ) ) {
|
227 |
+
$this->options['ga_dash_excludesa'] = 0;
|
228 |
+
$flag = true;
|
229 |
+
}
|
230 |
+
if ( ! isset( $this->options['ga_dash_remarketing'] ) ) {
|
231 |
+
$this->options['ga_dash_remarketing'] = 0;
|
232 |
+
$flag = true;
|
233 |
+
}
|
234 |
+
if ( ! isset( $this->options['ga_dash_adsense'] ) ) {
|
235 |
+
$this->options['ga_dash_adsense'] = 0;
|
236 |
+
$flag = true;
|
237 |
+
}
|
238 |
+
if ( ! isset( $this->options['ga_speed_samplerate'] ) ) {
|
239 |
+
$this->options['ga_speed_samplerate'] = 1;
|
240 |
+
$flag = true;
|
241 |
+
}
|
242 |
+
if ( ! isset( $this->options['automatic_updates_minorversion'] ) ) {
|
243 |
+
$this->options['automatic_updates_minorversion'] = 1;
|
244 |
+
$flag = true;
|
245 |
+
}
|
246 |
+
if ( ! isset( $this->options['ga_event_bouncerate'] ) ) {
|
247 |
+
$this->options['ga_event_bouncerate'] = 0;
|
248 |
+
$flag = true;
|
249 |
+
}
|
250 |
+
if ( ! is_array( $this->options['ga_dash_access_front'] ) || empty( $this->options['ga_dash_access_front'] ) ) {
|
251 |
+
$this->options['ga_dash_access_front'] = array();
|
252 |
+
$this->options['ga_dash_access_front'][] = 'administrator';
|
253 |
+
$flag = true;
|
254 |
+
}
|
255 |
|
256 |
+
if ( ! is_array( $this->options['ga_dash_profile_list'] ) ) {
|
257 |
+
$this->options['ga_dash_profile_list'] = array();
|
258 |
+
$flag = true;
|
259 |
+
}
|
260 |
|
261 |
+
if ( ! is_array( $this->options['ga_dash_access_back'] ) || empty( $this->options['ga_dash_access_back'] ) ) {
|
262 |
+
$this->options['ga_dash_access_back'] = array();
|
263 |
+
$this->options['ga_dash_access_back'][] = 'administrator';
|
264 |
+
$flag = true;
|
265 |
+
}
|
266 |
+
if ( ! is_array( $this->options['ga_track_exclude'] ) ) {
|
267 |
+
$this->options['ga_track_exclude'] = array();
|
268 |
+
$flag = true;
|
269 |
+
}
|
270 |
+
if ( ! isset( $this->options['ga_crossdomain_tracking'] ) ) {
|
271 |
+
$this->options['ga_crossdomain_tracking'] = 0;
|
272 |
+
$flag = true;
|
273 |
+
}
|
274 |
+
if ( ! isset( $this->options['ga_crossdomain_list'] ) ) {
|
275 |
+
$this->options['ga_crossdomain_list'] = '';
|
276 |
+
$flag = true;
|
277 |
+
}
|
278 |
+
if ( ! isset( $this->options['ga_author_dimindex'] ) ) {
|
279 |
+
$this->options['ga_author_dimindex'] = 0;
|
280 |
+
$flag = true;
|
281 |
+
}
|
282 |
+
if ( ! isset( $this->options['ga_category_dimindex'] ) ) {
|
283 |
+
$this->options['ga_category_dimindex'] = 0;
|
284 |
+
$flag = true;
|
285 |
+
}
|
286 |
+
if ( ! isset( $this->options['ga_user_dimindex'] ) ) {
|
287 |
+
$this->options['ga_user_dimindex'] = 0;
|
288 |
+
$flag = true;
|
289 |
+
}
|
290 |
+
if ( ! isset( $this->options['ga_pubyear_dimindex'] ) ) {
|
291 |
+
$this->options['ga_pubyear_dimindex'] = 0;
|
292 |
+
$flag = true;
|
293 |
+
}
|
294 |
+
if ( ! isset( $this->options['ga_event_affiliates'] ) ) {
|
295 |
+
$this->options['ga_event_affiliates'] = '/out/';
|
296 |
+
$flag = true;
|
297 |
+
}
|
298 |
+
if ( ! isset( $this->options['ga_aff_tracking'] ) ) {
|
299 |
+
$this->options['ga_aff_tracking'] = 0;
|
300 |
+
$flag = true;
|
301 |
+
}
|
302 |
+
if ( ! isset( $this->options['ga_hash_tracking'] ) ) {
|
303 |
+
$this->options['ga_hash_tracking'] = 0;
|
304 |
+
$flag = true;
|
305 |
+
}
|
306 |
+
if ( ! isset( $this->options['backend_item_reports'] ) ) { // v4.8
|
307 |
+
$this->options['backend_item_reports'] = 1;
|
308 |
+
$flag = true;
|
309 |
+
}
|
310 |
+
if ( isset( $this->options['ga_dash_default_metric'] ) ) { // v4.8.1
|
311 |
+
unset( $this->options['ga_dash_default_metric'] );
|
312 |
+
$flag = true;
|
313 |
+
}
|
314 |
+
if ( isset( $this->options['ga_dash_default_dimension'] ) ) { // v4.8.1
|
315 |
+
unset( $this->options['ga_dash_default_dimension'] );
|
316 |
+
$flag = true;
|
317 |
+
}
|
318 |
+
if ( isset( $this->options['item_reports'] ) ) { // v4.8
|
319 |
+
$this->options['backend_item_reports'] = $this->options['item_reports'];
|
320 |
+
unset( $this->options['item_reports'] );
|
321 |
+
$flag = true;
|
322 |
+
}
|
323 |
+
if ( isset( $this->options['ga_dash_frontend_stats'] ) ) { // v4.8
|
324 |
+
$this->options['frontend_item_reports'] = $this->options['ga_dash_frontend_stats'];
|
325 |
+
unset( $this->options['ga_dash_frontend_stats'] );
|
326 |
+
$flag = true;
|
327 |
+
}
|
328 |
+
if ( ! isset( $this->options['dashboard_widget'] ) ) { // v4.7
|
329 |
+
$this->options['dashboard_widget'] = 1;
|
330 |
+
$flag = true;
|
331 |
+
}
|
332 |
+
if ( ! isset( $this->options['api_backoff'] ) ) { // v4.8.1.3
|
333 |
+
$this->options['api_backoff'] = 0;
|
334 |
+
$flag = true;
|
335 |
+
}
|
336 |
+
if ( isset( $this->options['ga_tracking_code'] ) ) {
|
337 |
+
unset( $this->options['ga_tracking_code'] );
|
338 |
+
$flag = true;
|
339 |
+
}
|
340 |
+
if ( isset( $this->options['ga_dash_frontend_keywords'] ) ) { // v4.8
|
341 |
+
unset( $this->options['ga_dash_frontend_keywords'] );
|
342 |
+
$flag = true;
|
343 |
+
}
|
344 |
+
if ( isset( $this->options['ga_dash_jailadmins'] ) ) { // v4.7
|
345 |
+
if ( isset( $this->options['ga_dash_jailadmins'] ) ) {
|
346 |
+
$this->options['switch_profile'] = 0;
|
347 |
+
unset( $this->options['ga_dash_jailadmins'] );
|
348 |
+
$flag = true;
|
349 |
+
} else {
|
350 |
+
$this->options['switch_profile'] = 1;
|
351 |
+
unset( $this->options['ga_dash_jailadmins'] );
|
352 |
+
$flag = true;
|
353 |
+
}
|
354 |
+
}
|
355 |
+
if ( $flag ) {
|
356 |
+
$this->set_plugin_options( false );
|
357 |
+
}
|
358 |
+
}
|
359 |
+
}
|
360 |
}
|
front/ajax-actions.php
CHANGED
@@ -45,14 +45,6 @@ if ( ! class_exists( 'GADWP_Frontend_Ajax' ) ) {
|
|
45 |
$query = $_REQUEST['query'];
|
46 |
$uri = $_REQUEST['filter'];
|
47 |
|
48 |
-
$uri = '/' . ltrim($uri,'/');
|
49 |
-
|
50 |
-
// allow URL correction before sending an API request
|
51 |
-
$filter = apply_filters( 'gadwp_frontenditem_uri', $uri );
|
52 |
-
|
53 |
-
// Encode URL
|
54 |
-
$filter = rawurlencode( rawurldecode( $filter ) );
|
55 |
-
|
56 |
$query = $_REQUEST['query'];
|
57 |
if ( ob_get_length() ) {
|
58 |
ob_clean();
|
@@ -84,6 +76,20 @@ if ( ! class_exists( 'GADWP_Frontend_Ajax' ) ) {
|
|
84 |
$this->gadwp->gapi_controller->timeshift = (int) current_time( 'timestamp' ) - time();
|
85 |
}
|
86 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
$queries = explode( ',', $query );
|
88 |
|
89 |
$results = array();
|
45 |
$query = $_REQUEST['query'];
|
46 |
$uri = $_REQUEST['filter'];
|
47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
48 |
$query = $_REQUEST['query'];
|
49 |
if ( ob_get_length() ) {
|
50 |
ob_clean();
|
76 |
$this->gadwp->gapi_controller->timeshift = (int) current_time( 'timestamp' ) - time();
|
77 |
}
|
78 |
|
79 |
+
$uri = '/' . ltrim($uri,'/');
|
80 |
+
|
81 |
+
// allow URL correction before sending an API request
|
82 |
+
$filter = apply_filters( 'gadwp_frontenditem_uri', $uri );
|
83 |
+
|
84 |
+
$lastchar = substr( $filter, - 1 );
|
85 |
+
|
86 |
+
if ( isset( $profile_info[6] ) && $profile_info[6] && $lastchar == '/' ) {
|
87 |
+
$filter = $filter . $profile_info[6];
|
88 |
+
}
|
89 |
+
|
90 |
+
// Encode URL
|
91 |
+
$filter = rawurlencode( rawurldecode( $filter ) );
|
92 |
+
|
93 |
$queries = explode( ',', $query );
|
94 |
|
95 |
$results = array();
|
front/css/item-reports.css
CHANGED
@@ -51,10 +51,14 @@
|
|
51 |
}
|
52 |
|
53 |
.gadwp-wrapper .inside .small-box h3 {
|
|
|
54 |
font-size: 1em;
|
55 |
color: #777;
|
56 |
padding: 0px 5px 0px 5px;
|
57 |
margin: 0px 0px 0px 0px;
|
|
|
|
|
|
|
58 |
}
|
59 |
|
60 |
.gadwp-wrapper .inside .small-box p {
|
@@ -86,7 +90,9 @@
|
|
86 |
border: 1px solid #ddd;
|
87 |
font-size: 14px;
|
88 |
background: #fff;
|
89 |
-
padding: 2px;
|
|
|
|
|
90 |
}
|
91 |
|
92 |
.ui-dialog.gadwp table{
|
51 |
}
|
52 |
|
53 |
.gadwp-wrapper .inside .small-box h3 {
|
54 |
+
font-family: 'Open Sans', sans-serif;
|
55 |
font-size: 1em;
|
56 |
color: #777;
|
57 |
padding: 0px 5px 0px 5px;
|
58 |
margin: 0px 0px 0px 0px;
|
59 |
+
text-overflow: ellipsis;
|
60 |
+
overflow: hidden;
|
61 |
+
white-space: nowrap;
|
62 |
}
|
63 |
|
64 |
.gadwp-wrapper .inside .small-box p {
|
90 |
border: 1px solid #ddd;
|
91 |
font-size: 14px;
|
92 |
background: #fff;
|
93 |
+
padding: 2px;
|
94 |
+
color: #333;
|
95 |
+
width: auto;
|
96 |
}
|
97 |
|
98 |
.ui-dialog.gadwp table{
|
front/item-reports.php
CHANGED
@@ -26,7 +26,7 @@ if ( ! class_exists( 'GADWP_Frontend_Item_Reports' ) ) {
|
|
26 |
if ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_front'] ) && $this->gadwp->config->options['frontend_item_reports'] ) {
|
27 |
/* @formatter:off */
|
28 |
$args = array( 'id' => 'gadwp-1',
|
29 |
-
'title' => '<span class="ab-icon"></span><span class="">' . __( "Analytics", '
|
30 |
'href' => '#1',
|
31 |
);
|
32 |
/* @formatter:on */
|
26 |
if ( GADWP_Tools::check_roles( $this->gadwp->config->options['ga_dash_access_front'] ) && $this->gadwp->config->options['frontend_item_reports'] ) {
|
27 |
/* @formatter:off */
|
28 |
$args = array( 'id' => 'gadwp-1',
|
29 |
+
'title' => '<span class="ab-icon"></span><span class="">' . __( "Analytics", 'google-analytics-dashboard-for-wp' ) . '</span>',
|
30 |
'href' => '#1',
|
31 |
);
|
32 |
/* @formatter:on */
|
front/js/item-reports.js
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
"use strict";
|
|
front/setup.php
CHANGED
@@ -61,53 +61,56 @@ if ( ! class_exists( 'GADWP_Frontend_Setup' ) ) {
|
|
61 |
|
62 |
wp_enqueue_script( 'gadwp-nprogress', GADWP_URL . 'tools/nprogress/nprogress.js', array( 'jquery' ), GADWP_CURRENT_VERSION );
|
63 |
|
64 |
-
wp_enqueue_script( 'gadwp_frontend_item_reports',
|
65 |
|
66 |
/* @formatter:off */
|
67 |
wp_localize_script( 'gadwp_frontend_item_reports', 'gadwp_item_data', array(
|
68 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
69 |
'security' => wp_create_nonce( 'gadwp_frontend_item_reports' ),
|
70 |
'dateList' => array(
|
71 |
-
'today' => __( "Today", '
|
72 |
-
'yesterday' => __( "Yesterday", '
|
73 |
-
'7daysAgo' => sprintf( __( "Last %d Days", '
|
74 |
-
'14daysAgo' => sprintf( __( "Last %d Days", '
|
75 |
-
'30daysAgo' => sprintf( __( "Last %d Days", '
|
76 |
-
'90daysAgo' => sprintf( __( "Last %d Days", '
|
77 |
-
'365daysAgo' => sprintf( _n( "%s Year", "%s Years", 1, '
|
78 |
-
'1095daysAgo' => sprintf( _n( "%s Year", "%s Years", 3, '
|
79 |
),
|
80 |
'reportList' => array(
|
81 |
-
'uniquePageviews' => __( "Unique Views", '
|
82 |
-
'users' => __( "Users", '
|
83 |
-
'organicSearches' => __( "Organic", '
|
84 |
-
'pageviews' => __( "Page Views", '
|
85 |
-
'visitBounceRate' => __( "Bounce Rate", '
|
86 |
-
'locations' => __( "Location", '
|
87 |
-
'referrers' => __( "Referrers", '
|
88 |
-
'searches' => __( "Searches", '
|
89 |
-
'trafficdetails' => __( "Traffic Details", '
|
90 |
),
|
91 |
'i18n' => array(
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
107 |
),
|
108 |
'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
|
109 |
'region' => $region,
|
110 |
-
'
|
|
|
|
|
111 |
)
|
112 |
);
|
113 |
/* @formatter:on */
|
61 |
|
62 |
wp_enqueue_script( 'gadwp-nprogress', GADWP_URL . 'tools/nprogress/nprogress.js', array( 'jquery' ), GADWP_CURRENT_VERSION );
|
63 |
|
64 |
+
wp_enqueue_script( 'gadwp_frontend_item_reports', GADWP_URL . 'tools/js/item-reports.js', array( 'gadwp-nprogress', 'googlejsapi', 'jquery', 'jquery-ui-dialog' ), GADWP_CURRENT_VERSION );
|
65 |
|
66 |
/* @formatter:off */
|
67 |
wp_localize_script( 'gadwp_frontend_item_reports', 'gadwp_item_data', array(
|
68 |
'ajaxurl' => admin_url( 'admin-ajax.php' ),
|
69 |
'security' => wp_create_nonce( 'gadwp_frontend_item_reports' ),
|
70 |
'dateList' => array(
|
71 |
+
'today' => __( "Today", 'google-analytics-dashboard-for-wp' ),
|
72 |
+
'yesterday' => __( "Yesterday", 'google-analytics-dashboard-for-wp' ),
|
73 |
+
'7daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 7 ),
|
74 |
+
'14daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 14 ),
|
75 |
+
'30daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 30 ),
|
76 |
+
'90daysAgo' => sprintf( __( "Last %d Days", 'google-analytics-dashboard-for-wp' ), 90 ),
|
77 |
+
'365daysAgo' => sprintf( _n( "%s Year", "%s Years", 1, 'google-analytics-dashboard-for-wp' ), __('One', 'google-analytics-dashboard-for-wp') ),
|
78 |
+
'1095daysAgo' => sprintf( _n( "%s Year", "%s Years", 3, 'google-analytics-dashboard-for-wp' ), __('Three', 'google-analytics-dashboard-for-wp') ),
|
79 |
),
|
80 |
'reportList' => array(
|
81 |
+
'uniquePageviews' => __( "Unique Views", 'google-analytics-dashboard-for-wp' ),
|
82 |
+
'users' => __( "Users", 'google-analytics-dashboard-for-wp' ),
|
83 |
+
'organicSearches' => __( "Organic", 'google-analytics-dashboard-for-wp' ),
|
84 |
+
'pageviews' => __( "Page Views", 'google-analytics-dashboard-for-wp' ),
|
85 |
+
'visitBounceRate' => __( "Bounce Rate", 'google-analytics-dashboard-for-wp' ),
|
86 |
+
'locations' => __( "Location", 'google-analytics-dashboard-for-wp' ),
|
87 |
+
'referrers' => __( "Referrers", 'google-analytics-dashboard-for-wp' ),
|
88 |
+
'searches' => __( "Searches", 'google-analytics-dashboard-for-wp' ),
|
89 |
+
'trafficdetails' => __( "Traffic Details", 'google-analytics-dashboard-for-wp' ),
|
90 |
),
|
91 |
'i18n' => array(
|
92 |
+
__( "A JavaScript Error is blocking plugin resources!", 'google-analytics-dashboard-for-wp' ), //0
|
93 |
+
__( "Traffic Mediums", 'google-analytics-dashboard-for-wp' ),
|
94 |
+
__( "Visitor Type", 'google-analytics-dashboard-for-wp' ),
|
95 |
+
__( "Social Networks", 'google-analytics-dashboard-for-wp' ),
|
96 |
+
__( "Search Engines", 'google-analytics-dashboard-for-wp' ),
|
97 |
+
__( "Unique Views", 'google-analytics-dashboard-for-wp' ),
|
98 |
+
__( "Users", 'google-analytics-dashboard-for-wp' ),
|
99 |
+
__( "Page Views", 'google-analytics-dashboard-for-wp' ),
|
100 |
+
__( "Bounce Rate", 'google-analytics-dashboard-for-wp' ),
|
101 |
+
__( "Organic Search", 'google-analytics-dashboard-for-wp' ),
|
102 |
+
__( "Pages/Session", 'google-analytics-dashboard-for-wp' ),
|
103 |
+
__( "Invalid response, more details in JavaScript Console (F12).", 'google-analytics-dashboard-for-wp' ),
|
104 |
+
__( "Not enough data collected", 'google-analytics-dashboard-for-wp' ),
|
105 |
+
__( "This report is unavailable", 'google-analytics-dashboard-for-wp' ),
|
106 |
+
__( "report generated by", 'google-analytics-dashboard-for-wp' ), //14
|
107 |
+
__( "This plugin needs an authorization:", 'google-analytics-dashboard-for-wp' ) . ' <strong>' . __( "authorize the plugin", 'google-analytics-dashboard-for-wp' ) . '</strong>!',
|
108 |
),
|
109 |
'colorVariations' => GADWP_Tools::variations( $this->gadwp->config->options['ga_dash_style'] ),
|
110 |
'region' => $region,
|
111 |
+
'language' => get_bloginfo( 'language' ),
|
112 |
+
'filter' => $_SERVER["REQUEST_URI"],
|
113 |
+
'scope' => 'front',
|
114 |
)
|
115 |
);
|
116 |
/* @formatter:on */
|
front/widgets.php
CHANGED
@@ -18,7 +18,7 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
18 |
public function __construct() {
|
19 |
$this->gadwp = GADWP();
|
20 |
|
21 |
-
parent::__construct( 'gadash_frontend_widget', __( 'Google Analytics Dashboard', '
|
22 |
// Frontend Styles
|
23 |
if ( is_active_widget( false, false, $this->id_base, true ) ) {
|
24 |
add_action( 'wp_enqueue_scripts', array( $this, 'load_styles_scripts' ) );
|
@@ -33,7 +33,7 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
33 |
|
34 |
public function widget( $args, $instance ) {
|
35 |
$widget_title = apply_filters( 'widget_title', $instance['title'] );
|
36 |
-
$title = __( "Sessions", '
|
37 |
echo "\n<!-- BEGIN GADWP v" . GADWP_CURRENT_VERSION . " Widget - https://deconf.com/google-analytics-dashboard-wordpress/ -->\n";
|
38 |
echo $args['before_widget'];
|
39 |
if ( ! empty( $widget_title ) ) {
|
@@ -61,13 +61,13 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
61 |
$periodtext = "";
|
62 |
switch ( $instance['period'] ) {
|
63 |
case '7daysAgo' :
|
64 |
-
$periodtext = sprintf( __( 'Last %d Days', '
|
65 |
break;
|
66 |
case '14daysAgo' :
|
67 |
-
$periodtext = sprintf( __( 'Last %d Days', '
|
68 |
break;
|
69 |
case '30daysAgo' :
|
70 |
-
$periodtext = sprintf( __( 'Last %d Days', '
|
71 |
break;
|
72 |
default :
|
73 |
$periodtext = "";
|
@@ -97,10 +97,10 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
97 |
}
|
98 |
}else{
|
99 |
jQuery("#gadwp-widgetchart").css({"background-color":"#F7F7F7","height":"auto","padding-top":"50px","padding-bottom":"50px","color":"#000","text-align":"center"});
|
100 |
-
jQuery("#gadwp-widgetchart").html("' . __( "This report is unavailable", '
|
101 |
}
|
102 |
});';
|
103 |
-
echo 'google.load("visualization", "1", {packages:["corechart"]});
|
104 |
function ga_dash_drawfwidgetsessions(response) {
|
105 |
var data = google.visualization.arrayToDataTable(response);
|
106 |
var options = {
|
@@ -120,11 +120,11 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
120 |
if (response == null){
|
121 |
response = 0;
|
122 |
}
|
123 |
-
jQuery("#gadwp-widgettotals").html("<div class=\"gadwp-left\">' . __( "Period:", '
|
124 |
}';
|
125 |
echo '</script>';
|
126 |
if ( $instance['give_credits'] == 1 )
|
127 |
-
echo '<div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;">' . __( 'generated by', '
|
128 |
$widget_content = ob_get_contents();
|
129 |
ob_end_clean();
|
130 |
echo apply_filters( 'widget_html_content', $widget_content );
|
@@ -133,7 +133,7 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
133 |
}
|
134 |
|
135 |
public function form( $instance ) {
|
136 |
-
$widget_title = ( isset( $instance['title'] ) ? $instance['title'] : __( "Google Analytics Stats", '
|
137 |
$period = ( isset( $instance['period'] ) ? $instance['period'] : '7daysAgo' );
|
138 |
$display = ( isset( $instance['display'] ) ? $instance['display'] : 1 );
|
139 |
$give_credits = ( isset( $instance['give_credits'] ) ? $instance['give_credits'] : 1 );
|
@@ -141,27 +141,27 @@ final class GADWP_Frontend_Widget extends WP_Widget {
|
|
141 |
/* @formatter:off */
|
142 |
?>
|
143 |
<p>
|
144 |
-
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( "Title:",'
|
145 |
</p>
|
146 |
<p>
|
147 |
-
<label for="<?php echo $this->get_field_id( 'display' ); ?>"><?php _e( "Display:",'
|
148 |
-
<option value="1" <?php selected( $display, 1 ); ?>><?php _e('Chart & Totals', '
|
149 |
-
<option value="2" <?php selected( $display, 2 ); ?>><?php _e('Chart', '
|
150 |
-
<option value="3" <?php selected( $display, 3 ); ?>><?php _e('Totals', '
|
151 |
</select>
|
152 |
</p>
|
153 |
<p>
|
154 |
-
<label for="<?php echo $this->get_field_id( 'anonim' ); ?>"><?php _e( "Anonymize stats:",'
|
155 |
</p>
|
156 |
<p>
|
157 |
-
<label for="<?php echo $this->get_field_id( 'period' ); ?>"><?php _e( "Stats for:",'
|
158 |
-
<option value="7daysAgo" <?php selected( $period, '7daysAgo' ); ?>><?php printf( __('Last %d Days', '
|
159 |
-
<option value="14daysAgo" <?php selected( $period, '14daysAgo' ); ?>><?php printf( __('Last %d Days', '
|
160 |
-
<option value="30daysAgo" <?php selected( $period, '30daysAgo' ); ?>><?php printf( __('Last %d Days', '
|
161 |
</select>
|
162 |
</p>
|
163 |
<p>
|
164 |
-
<label for="<?php echo $this->get_field_id( 'give_credits' ); ?>"><?php _e( "Give credits:",'
|
165 |
</p>
|
166 |
<?php
|
167 |
/* @formatter:on */
|
18 |
public function __construct() {
|
19 |
$this->gadwp = GADWP();
|
20 |
|
21 |
+
parent::__construct( 'gadash_frontend_widget', __( 'Google Analytics Dashboard', 'google-analytics-dashboard-for-wp' ), array( 'description' => __( "Will display your google analytics stats in a widget", 'google-analytics-dashboard-for-wp' ) ) );
|
22 |
// Frontend Styles
|
23 |
if ( is_active_widget( false, false, $this->id_base, true ) ) {
|
24 |
add_action( 'wp_enqueue_scripts', array( $this, 'load_styles_scripts' ) );
|
33 |
|
34 |
public function widget( $args, $instance ) {
|
35 |
$widget_title = apply_filters( 'widget_title', $instance['title'] );
|
36 |
+
$title = __( "Sessions", 'google-analytics-dashboard-for-wp' );
|
37 |
echo "\n<!-- BEGIN GADWP v" . GADWP_CURRENT_VERSION . " Widget - https://deconf.com/google-analytics-dashboard-wordpress/ -->\n";
|
38 |
echo $args['before_widget'];
|
39 |
if ( ! empty( $widget_title ) ) {
|
61 |
$periodtext = "";
|
62 |
switch ( $instance['period'] ) {
|
63 |
case '7daysAgo' :
|
64 |
+
$periodtext = sprintf( __( 'Last %d Days', 'google-analytics-dashboard-for-wp' ), 7 );
|
65 |
break;
|
66 |
case '14daysAgo' :
|
67 |
+
$periodtext = sprintf( __( 'Last %d Days', 'google-analytics-dashboard-for-wp' ), 14 );
|
68 |
break;
|
69 |
case '30daysAgo' :
|
70 |
+
$periodtext = sprintf( __( 'Last %d Days', 'google-analytics-dashboard-for-wp' ), 30 );
|
71 |
break;
|
72 |
default :
|
73 |
$periodtext = "";
|
97 |
}
|
98 |
}else{
|
99 |
jQuery("#gadwp-widgetchart").css({"background-color":"#F7F7F7","height":"auto","padding-top":"50px","padding-bottom":"50px","color":"#000","text-align":"center"});
|
100 |
+
jQuery("#gadwp-widgetchart").html("' . __( "This report is unavailable", 'google-analytics-dashboard-for-wp' ) . ' ("+response+")");
|
101 |
}
|
102 |
});';
|
103 |
+
echo 'google.load("visualization", "1", {packages:["corechart"], "language" : "'. get_bloginfo( 'language' ) . '"});
|
104 |
function ga_dash_drawfwidgetsessions(response) {
|
105 |
var data = google.visualization.arrayToDataTable(response);
|
106 |
var options = {
|
120 |
if (response == null){
|
121 |
response = 0;
|
122 |
}
|
123 |
+
jQuery("#gadwp-widgettotals").html("<div class=\"gadwp-left\">' . __( "Period:", 'google-analytics-dashboard-for-wp' ) . '</div> <div class=\"gadwp-right\">' . $periodtext . '</div><div class=\"gadwp-left\">' . __( "Sessions:", 'google-analytics-dashboard-for-wp' ) . '</div> <div class=\"gadwp-right\">"+response+"</div>");
|
124 |
}';
|
125 |
echo '</script>';
|
126 |
if ( $instance['give_credits'] == 1 )
|
127 |
+
echo '<div style="text-align:right;width:100%;font-size:0.8em;clear:both;margin-right:5px;">' . __( 'generated by', 'google-analytics-dashboard-for-wp' ) . ' <a href="https://deconf.com/google-analytics-dashboard-wordpress/?utm_source=gadwp_report&utm_medium=link&utm_content=front_widget&utm_campaign=gadwp" rel="nofollow" style="text-decoration:none;font-size:1em;">GADWP</a> </div>';
|
128 |
$widget_content = ob_get_contents();
|
129 |
ob_end_clean();
|
130 |
echo apply_filters( 'widget_html_content', $widget_content );
|
133 |
}
|
134 |
|
135 |
public function form( $instance ) {
|
136 |
+
$widget_title = ( isset( $instance['title'] ) ? $instance['title'] : __( "Google Analytics Stats", 'google-analytics-dashboard-for-wp' ) );
|
137 |
$period = ( isset( $instance['period'] ) ? $instance['period'] : '7daysAgo' );
|
138 |
$display = ( isset( $instance['display'] ) ? $instance['display'] : 1 );
|
139 |
$give_credits = ( isset( $instance['give_credits'] ) ? $instance['give_credits'] : 1 );
|
141 |
/* @formatter:off */
|
142 |
?>
|
143 |
<p>
|
144 |
+
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( "Title:",'google-analytics-dashboard-for-wp' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $widget_title ); ?>">
|
145 |
</p>
|
146 |
<p>
|
147 |
+
<label for="<?php echo $this->get_field_id( 'display' ); ?>"><?php _e( "Display:",'google-analytics-dashboard-for-wp' ); ?></label> <select id="<?php echo $this->get_field_id('display'); ?>" class="widefat" name="<?php echo $this->get_field_name( 'display' ); ?>">
|
148 |
+
<option value="1" <?php selected( $display, 1 ); ?>><?php _e('Chart & Totals', 'google-analytics-dashboard-for-wp');?></option>
|
149 |
+
<option value="2" <?php selected( $display, 2 ); ?>><?php _e('Chart', 'google-analytics-dashboard-for-wp');?></option>
|
150 |
+
<option value="3" <?php selected( $display, 3 ); ?>><?php _e('Totals', 'google-analytics-dashboard-for-wp');?></option>
|
151 |
</select>
|
152 |
</p>
|
153 |
<p>
|
154 |
+
<label for="<?php echo $this->get_field_id( 'anonim' ); ?>"><?php _e( "Anonymize stats:",'google-analytics-dashboard-for-wp' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'anonim' ); ?>" name="<?php echo $this->get_field_name( 'anonim' ); ?>" type="checkbox" <?php checked( $anonim, 1 ); ?> value="1">
|
155 |
</p>
|
156 |
<p>
|
157 |
+
<label for="<?php echo $this->get_field_id( 'period' ); ?>"><?php _e( "Stats for:",'google-analytics-dashboard-for-wp' ); ?></label> <select id="<?php echo $this->get_field_id('period'); ?>" class="widefat" name="<?php echo $this->get_field_name( 'period' ); ?>">
|
158 |
+
<option value="7daysAgo" <?php selected( $period, '7daysAgo' ); ?>><?php printf( __('Last %d Days', 'google-analytics-dashboard-for-wp'), 7 );?></option>
|
159 |
+
<option value="14daysAgo" <?php selected( $period, '14daysAgo' ); ?>><?php printf( __('Last %d Days', 'google-analytics-dashboard-for-wp'), 14 );?></option>
|
160 |
+
<option value="30daysAgo" <?php selected( $period, '30daysAgo' ); ?>><?php printf( __('Last %d Days', 'google-analytics-dashboard-for-wp'), 30 );?></option>
|
161 |
</select>
|
162 |
</p>
|
163 |
<p>
|
164 |
+
<label for="<?php echo $this->get_field_id( 'give_credits' ); ?>"><?php _e( "Give credits:",'google-analytics-dashboard-for-wp' ); ?></label> <input class="widefat" id="<?php echo $this->get_field_id( 'give_credits' ); ?>" name="<?php echo $this->get_field_name( 'give_credits' ); ?>" type="checkbox" <?php checked( $give_credits, 1 ); ?> value="1">
|
165 |
</p>
|
166 |
<?php
|
167 |
/* @formatter:on */
|
gadwp.php
CHANGED
@@ -4,8 +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.8.1.
|
8 |
* Author URI: https://deconf.com
|
|
|
|
|
9 |
*/
|
10 |
|
11 |
// Exit if accessed directly
|
@@ -43,7 +45,7 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
|
|
43 |
*/
|
44 |
private function __construct() {
|
45 |
if ( null !== self::$instance ) {
|
46 |
-
_doing_it_wrong( __FUNCTION__, __( "This is not allowed, read the documentation!", '
|
47 |
}
|
48 |
}
|
49 |
|
@@ -51,14 +53,14 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
|
|
51 |
* Clone warning
|
52 |
*/
|
53 |
private function __clone() {
|
54 |
-
_doing_it_wrong( __FUNCTION__, __( "This is not allowed, read the documentation!", '
|
55 |
}
|
56 |
|
57 |
/**
|
58 |
* Wakeup warning
|
59 |
*/
|
60 |
private function __wakeup() {
|
61 |
-
_doing_it_wrong( __FUNCTION__, __( "This is not allowed, read the documentation!", '
|
62 |
}
|
63 |
|
64 |
/**
|
@@ -82,7 +84,7 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
|
|
82 |
|
83 |
// Plugin Version
|
84 |
if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
|
85 |
-
define( 'GADWP_CURRENT_VERSION', '4.8.1.
|
86 |
}
|
87 |
|
88 |
// Plugin Path
|
@@ -154,7 +156,7 @@ if ( ! class_exists( 'GADWP_Manager' ) ) {
|
|
154 |
* Load i18n
|
155 |
*/
|
156 |
public function load_i18n() {
|
157 |
-
load_plugin_textdomain( '
|
158 |
}
|
159 |
|
160 |
/**
|
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.8.1.3
|
8 |
* Author URI: https://deconf.com
|
9 |
+
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
+
* Domain Path: /languages
|
11 |
*/
|
12 |
|
13 |
// Exit if accessed directly
|
45 |
*/
|
46 |
private function __construct() {
|
47 |
if ( null !== self::$instance ) {
|
48 |
+
_doing_it_wrong( __FUNCTION__, __( "This is not allowed, read the documentation!", 'google-analytics-dashboard-for-wp' ), '4.6' );
|
49 |
}
|
50 |
}
|
51 |
|
53 |
* Clone warning
|
54 |
*/
|
55 |
private function __clone() {
|
56 |
+
_doing_it_wrong( __FUNCTION__, __( "This is not allowed, read the documentation!", 'google-analytics-dashboard-for-wp' ), '4.6' );
|
57 |
}
|
58 |
|
59 |
/**
|
60 |
* Wakeup warning
|
61 |
*/
|
62 |
private function __wakeup() {
|
63 |
+
_doing_it_wrong( __FUNCTION__, __( "This is not allowed, read the documentation!", 'google-analytics-dashboard-for-wp' ), '4.6' );
|
64 |
}
|
65 |
|
66 |
/**
|
84 |
|
85 |
// Plugin Version
|
86 |
if ( ! defined( 'GADWP_CURRENT_VERSION' ) ) {
|
87 |
+
define( 'GADWP_CURRENT_VERSION', '4.8.1.3' );
|
88 |
}
|
89 |
|
90 |
// Plugin Path
|
156 |
* Load i18n
|
157 |
*/
|
158 |
public function load_i18n() {
|
159 |
+
load_plugin_textdomain( 'google-analytics-dashboard-for-wp', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' );
|
160 |
}
|
161 |
|
162 |
/**
|
install/install.php
CHANGED
@@ -60,6 +60,7 @@ class GADWP_Install {
|
|
60 |
$options['backend_item_reports'] = 1;
|
61 |
$options['frontend_item_reports'] = 0;
|
62 |
$options['dashboard_widget'] = 1;
|
|
|
63 |
} else {
|
64 |
$options = array();
|
65 |
$options['ga_dash_apikey'] = get_option( 'ga_dash_apikey' );
|
@@ -108,6 +109,7 @@ class GADWP_Install {
|
|
108 |
$options['backend_item_reports'] = 1;
|
109 |
$options['frontend_item_reports'] = 0;
|
110 |
$options['dashboard_widget'] = 1;
|
|
|
111 |
|
112 |
delete_option( 'ga_dash_apikey' );
|
113 |
delete_option( 'ga_dash_clientid' );
|
60 |
$options['backend_item_reports'] = 1;
|
61 |
$options['frontend_item_reports'] = 0;
|
62 |
$options['dashboard_widget'] = 1;
|
63 |
+
$options['api_backoff'] = 0;
|
64 |
} else {
|
65 |
$options = array();
|
66 |
$options['ga_dash_apikey'] = get_option( 'ga_dash_apikey' );
|
109 |
$options['backend_item_reports'] = 1;
|
110 |
$options['frontend_item_reports'] = 0;
|
111 |
$options['dashboard_widget'] = 1;
|
112 |
+
$options['api_backoff'] = 0;
|
113 |
|
114 |
delete_option( 'ga_dash_apikey' );
|
115 |
delete_option( 'ga_dash_clientid' );
|
languages/{ga-dash-ar.po → google-analytics-dashboard-for-wp-ar.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
|
10 |
"Language: ar\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -29,7 +29,7 @@ msgstr ""
|
|
29 |
|
30 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
31 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
32 |
-
#: .././admin/settings.php:
|
33 |
msgid "Settings saved."
|
34 |
msgstr ""
|
35 |
|
@@ -37,29 +37,30 @@ msgstr ""
|
|
37 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
38 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
39 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
-
#: .././admin/settings.php:
|
43 |
msgid "Cheating Huh?"
|
44 |
msgstr "تغش ها؟"
|
45 |
|
46 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
47 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
48 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
49 |
#, php-format
|
50 |
msgid "Something went wrong, check %1$s or %2$s."
|
51 |
msgstr ""
|
52 |
|
53 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
54 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
55 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
56 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
57 |
msgid "Errors & Debug"
|
58 |
msgstr ""
|
59 |
|
60 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
61 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
62 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "صرح بالدخول للأضافة"
|
65 |
|
@@ -80,8 +81,8 @@ msgid "enable web page reports on frontend"
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
84 |
-
#: .././admin/settings.php:
|
85 |
msgid "Save Changes"
|
86 |
msgstr ""
|
87 |
|
@@ -140,7 +141,7 @@ msgid "Custom Definitions"
|
|
140 |
msgstr "تعاريف مخصصة"
|
141 |
|
142 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
143 |
-
#: .././admin/settings.php:
|
144 |
msgid "Exclude Tracking"
|
145 |
msgstr "لا تتبع"
|
146 |
|
@@ -164,21 +165,21 @@ msgstr "تعطيل"
|
|
164 |
msgid "Enabled"
|
165 |
msgstr "تفعيل"
|
166 |
|
167 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
168 |
-
#: .././admin/settings.php:
|
169 |
#: .././admin/widgets.php:61
|
170 |
msgid "View Name:"
|
171 |
msgstr "شاهد الاسم:"
|
172 |
|
173 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
174 |
msgid "Tracking ID:"
|
175 |
msgstr "معرف التعقب:"
|
176 |
|
177 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
178 |
msgid "Default URL:"
|
179 |
msgstr "الرابط الرئيسي:"
|
180 |
|
181 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
182 |
msgid "Time Zone:"
|
183 |
msgstr "المنطقة الزمنية:"
|
184 |
|
@@ -302,7 +303,7 @@ msgstr ""
|
|
302 |
msgid "Plugin Configuration"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
306 |
msgid ""
|
307 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
308 |
"error, try this solution:"
|
@@ -312,21 +313,21 @@ msgstr ""
|
|
312 |
msgid "Library conflicts between WordPress plugins"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
316 |
msgid "Plugin authorization succeeded."
|
317 |
msgstr "تم تفعيل تصريح الاضافة بنجاح."
|
318 |
|
319 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
320 |
msgid ""
|
321 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
322 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
326 |
msgid "Cleared Cache."
|
327 |
msgstr "الخزن المزال."
|
328 |
|
329 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
330 |
msgid "Token Reseted and Revoked."
|
331 |
msgstr "الجزء المراح والمعدل."
|
332 |
|
@@ -334,23 +335,23 @@ msgstr "الجزء المراح والمعدل."
|
|
334 |
msgid "All errors reseted."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
338 |
msgid "All other domains/properties were removed."
|
339 |
msgstr "كل الروابط/والخصائص تم إزالتها."
|
340 |
|
341 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
342 |
msgid "Google Analytics Settings"
|
343 |
msgstr "إعدادات احصائيات كوكل"
|
344 |
|
345 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
346 |
msgid "Use the red link (see below) to generate and get your access code!"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: .././admin/settings.php:
|
350 |
msgid "Plugin Authorization"
|
351 |
msgstr "تصريح الأضافة"
|
352 |
|
353 |
-
#: .././admin/settings.php:
|
354 |
#, php-format
|
355 |
msgid ""
|
356 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -358,159 +359,159 @@ msgid ""
|
|
358 |
"account!"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: .././admin/settings.php:
|
362 |
msgid "video"
|
363 |
msgstr "الڤيديو"
|
364 |
|
365 |
-
#: .././admin/settings.php:
|
366 |
msgid "tutorial"
|
367 |
msgstr "الدرس"
|
368 |
|
369 |
-
#: .././admin/settings.php:
|
370 |
msgid "use your own API Project credentials"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: .././admin/settings.php:
|
374 |
msgid "API Key:"
|
375 |
msgstr "مفتاح API:"
|
376 |
|
377 |
-
#: .././admin/settings.php:
|
378 |
msgid "Client ID:"
|
379 |
msgstr "معرف الزيون:"
|
380 |
|
381 |
-
#: .././admin/settings.php:
|
382 |
msgid "Client Secret:"
|
383 |
msgstr "سر الزبون:"
|
384 |
|
385 |
-
#: .././admin/settings.php:
|
386 |
msgid "Clear Authorization"
|
387 |
msgstr "أزل التصريحات"
|
388 |
|
389 |
-
#: .././admin/settings.php:
|
390 |
-
#: .././admin/settings.php:
|
391 |
msgid "Clear Cache"
|
392 |
msgstr "أزل الخزن"
|
393 |
|
394 |
-
#: .././admin/settings.php:
|
395 |
msgid "Reset Errors"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: .././admin/settings.php:
|
399 |
msgid "General Settings"
|
400 |
msgstr "الأعدادات العامة"
|
401 |
|
402 |
-
#: .././admin/settings.php:
|
403 |
msgid "Select View:"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: .././admin/settings.php:
|
407 |
msgid "Property not found"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: .././admin/settings.php:
|
411 |
msgid "Lock Selection"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: .././admin/settings.php:
|
415 |
msgid "Theme Color:"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: .././admin/settings.php:
|
419 |
msgid "Automatic Updates"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: .././admin/settings.php:
|
423 |
msgid ""
|
424 |
"automatic updates for minor versions (security and maintenance releases only)"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: .././admin/settings.php:
|
428 |
#: .././admin/widgets.php:32
|
429 |
msgid "Authorize Plugin"
|
430 |
msgstr "صرح الأضافة "
|
431 |
|
432 |
-
#: .././admin/settings.php:
|
433 |
msgid "Properties refreshed."
|
434 |
msgstr "تم تحديث الخصائص."
|
435 |
|
436 |
-
#: .././admin/settings.php:
|
437 |
msgid "Network Setup"
|
438 |
msgstr "اعدادات الشبكة"
|
439 |
|
440 |
-
#: .././admin/settings.php:
|
441 |
msgid "use a single Google Analytics account for the entire network"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: .././admin/settings.php:
|
445 |
msgid "Refresh Properties"
|
446 |
msgstr "حدث الخصائص"
|
447 |
|
448 |
-
#: .././admin/settings.php:
|
449 |
msgid "Properties/Views Settings"
|
450 |
msgstr "اعدادات الخصائص/المشاهدة"
|
451 |
|
452 |
-
#: .././admin/settings.php:
|
453 |
msgid "exclude Super Admin tracking for the entire network"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: .././admin/settings.php:
|
457 |
msgid "Setup Tutorial & Demo"
|
458 |
msgstr "درس التنصيب"
|
459 |
|
460 |
-
#: .././admin/settings.php:
|
461 |
msgid "Follow & Review"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: .././admin/settings.php:
|
465 |
#, php-format
|
466 |
msgid "Your feedback and review are both important, %s!"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: .././admin/settings.php:
|
470 |
msgid "rate this plugin"
|
471 |
msgstr "قيم هذه الاضافة"
|
472 |
|
473 |
-
#: .././admin/settings.php:
|
474 |
msgid "Further Reading"
|
475 |
msgstr "أكمل القراءة"
|
476 |
|
477 |
-
#: .././admin/settings.php:
|
478 |
#, php-format
|
479 |
msgid "%s by moving your website to HTTPS/SSL."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: .././admin/settings.php:
|
483 |
msgid "Improve search rankings"
|
484 |
msgstr "حسن ترتيب البحث"
|
485 |
|
486 |
-
#: .././admin/settings.php:
|
487 |
#, php-format
|
488 |
msgid "Other %s written by the same author"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: .././admin/settings.php:
|
492 |
msgid "WordPress Plugins"
|
493 |
msgstr "اضافات وردبريس"
|
494 |
|
495 |
-
#: .././admin/settings.php:
|
496 |
msgid "Other Services"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: .././admin/settings.php:
|
500 |
#, php-format
|
501 |
msgid "Speed up your website and plug into a whole %s"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: .././admin/settings.php:
|
505 |
msgid "new level of site speed"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: .././admin/settings.php:
|
509 |
#, php-format
|
510 |
msgid "%s service with users tracking at IP level."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: .././admin/settings.php:
|
514 |
msgid "Web Analytics"
|
515 |
msgstr "احصائيات الويب"
|
516 |
|
@@ -530,18 +531,18 @@ msgstr "اعدادات الظهور"
|
|
530 |
msgid "Tracking Code"
|
531 |
msgstr "كود التعقب"
|
532 |
|
533 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
534 |
msgid "Today"
|
535 |
msgstr "اليوم"
|
536 |
|
537 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
538 |
msgid "Yesterday"
|
539 |
msgstr "البارحة"
|
540 |
|
541 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
542 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
543 |
-
#: .././admin/widgets.php:
|
544 |
-
#: .././admin/widgets.php:
|
545 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
546 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
547 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -550,9 +551,8 @@ msgstr "البارحة"
|
|
550 |
msgid "Last %d Days"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
554 |
-
#: .././admin/widgets.php:
|
555 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
556 |
#, php-format
|
557 |
msgid "%s Year"
|
558 |
msgid_plural "%s Years"
|
@@ -563,11 +563,11 @@ msgstr[3] ""
|
|
563 |
msgstr[4] ""
|
564 |
msgstr[5] ""
|
565 |
|
566 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
567 |
msgid "One"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
571 |
msgid "Three"
|
572 |
msgstr ""
|
573 |
|
@@ -576,86 +576,84 @@ msgstr ""
|
|
576 |
msgid "Unique Views"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
580 |
-
#: .././admin/widgets.php:
|
581 |
-
#: .././
|
582 |
msgid "Users"
|
583 |
msgstr ""
|
584 |
|
585 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
586 |
msgid "Organic"
|
587 |
msgstr "عضوي"
|
588 |
|
589 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
590 |
-
#: .././admin/widgets.php:
|
591 |
-
#: .././
|
592 |
msgid "Page Views"
|
593 |
msgstr "مشاهدات الصفحة"
|
594 |
|
595 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
596 |
-
#: .././admin/widgets.php:
|
597 |
-
#: .././
|
598 |
msgid "Bounce Rate"
|
599 |
msgstr "نسبة القفز"
|
600 |
|
601 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
602 |
msgid "Location"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
606 |
-
#: .././tools/gapi.php:
|
607 |
msgid "Referrers"
|
608 |
msgstr ""
|
609 |
|
610 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
611 |
-
#: .././tools/gapi.php:
|
612 |
msgid "Searches"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
616 |
msgid "Traffic Details"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
620 |
-
#: .././admin/widgets.php:
|
621 |
-
#: .././admin/widgets.php:
|
622 |
msgid "A JavaScript Error is blocking plugin resources!"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
626 |
msgid "Traffic Mediums"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
630 |
msgid "Visitor Type"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
634 |
msgid "Social Networks"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
638 |
msgid "Search Engines"
|
639 |
msgstr ""
|
640 |
|
641 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
642 |
-
#: .././front/setup.php:101
|
643 |
msgid "Organic Search"
|
644 |
msgstr ""
|
645 |
|
646 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
647 |
-
#: .././front/setup.php:102
|
648 |
msgid "Pages/Session"
|
649 |
msgstr ""
|
650 |
|
651 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
652 |
-
#: .././admin/widgets.php:
|
653 |
-
#: .././admin/widgets.php:
|
654 |
-
#: .././admin/widgets.php:
|
655 |
-
#: .././admin/widgets.php:
|
656 |
-
#: .././admin/widgets.php:
|
657 |
-
#: .././admin/widgets.php:
|
658 |
-
#: .././admin/widgets.php:
|
659 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
660 |
msgstr ""
|
661 |
|
@@ -663,12 +661,12 @@ msgstr ""
|
|
663 |
msgid "Not enough data collected"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
667 |
-
#: .././admin/widgets.php:
|
668 |
-
#: .././admin/widgets.php:
|
669 |
-
#: .././admin/widgets.php:
|
670 |
-
#: .././admin/widgets.php:
|
671 |
-
#: .././admin/widgets.php:
|
672 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
673 |
msgid "This report is unavailable"
|
674 |
msgstr ""
|
@@ -677,25 +675,29 @@ msgstr ""
|
|
677 |
msgid "report generated by"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
681 |
msgid "Settings"
|
682 |
msgstr "الاعدادات"
|
683 |
|
684 |
-
#: .././admin/setup.php:
|
685 |
#, php-format
|
686 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: .././admin/setup.php:
|
690 |
#, php-format
|
691 |
msgid "For details, check out %1$s and %2$s."
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: .././admin/setup.php:
|
695 |
msgid "the documentation page"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: .././admin/setup.php:
|
699 |
msgid "the plugin's settings page"
|
700 |
msgstr ""
|
701 |
|
@@ -703,10 +705,6 @@ msgstr ""
|
|
703 |
msgid "Google Analytics Dashboard"
|
704 |
msgstr "لوحة أحصائيات كوكل"
|
705 |
|
706 |
-
#: .././admin/widgets.php:32
|
707 |
-
msgid "This plugin needs an authorization:"
|
708 |
-
msgstr "هذه الاضافة تحتاج الى تصريح:"
|
709 |
-
|
710 |
#: .././admin/widgets.php:66
|
711 |
msgid "Something went wrong while retrieving profiles list."
|
712 |
msgstr "حدث خطأ ما اثناء استرجاع قائمة البروفايلات."
|
@@ -735,53 +733,53 @@ msgstr ""
|
|
735 |
msgid "Find out more!"
|
736 |
msgstr "اعرف أكثر!"
|
737 |
|
738 |
-
#: .././admin/widgets.php:
|
739 |
msgid "Real-Time"
|
740 |
msgstr "الوقت الحقيقي"
|
741 |
|
742 |
-
#: .././admin/widgets.php:
|
743 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
744 |
-
#: .././tools/gapi.php:
|
745 |
-
#: .././tools/gapi.php:
|
746 |
msgid "Sessions"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
msgid "Pages"
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: .././admin/widgets.php:
|
754 |
msgid "REFERRAL"
|
755 |
msgstr "المصدر"
|
756 |
|
757 |
-
#: .././admin/widgets.php:
|
758 |
msgid "ORGANIC"
|
759 |
msgstr "عضوي"
|
760 |
|
761 |
-
#: .././admin/widgets.php:
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "SOCIAL"
|
764 |
msgstr "اجتماعي"
|
765 |
|
766 |
-
#: .././admin/widgets.php:
|
767 |
-
#: .././admin/widgets.php:
|
768 |
msgid "CAMPAIGN"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#: .././admin/widgets.php:
|
772 |
-
#: .././admin/widgets.php:
|
773 |
msgid "DIRECT"
|
774 |
msgstr "مباشر"
|
775 |
|
776 |
-
#: .././admin/widgets.php:
|
777 |
msgid "NEW"
|
778 |
msgstr "جديد"
|
779 |
|
780 |
-
#: .././admin/widgets.php:
|
781 |
msgid "REFERRALS"
|
782 |
msgstr "المصادر"
|
783 |
|
784 |
-
#: .././admin/widgets.php:
|
785 |
msgid "KEYWORDS"
|
786 |
msgstr "الكلمات المفتاحية"
|
787 |
|
@@ -789,10 +787,6 @@ msgstr "الكلمات المفتاحية"
|
|
789 |
msgid "Will display your google analytics stats in a widget"
|
790 |
msgstr "ستظهر احصائيات حسابك في مربع جانبي"
|
791 |
|
792 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
793 |
-
msgid "trend"
|
794 |
-
msgstr ""
|
795 |
-
|
796 |
#: .././front/widgets.php:123
|
797 |
msgid "Period:"
|
798 |
msgstr "الفترة:"
|
@@ -841,7 +835,7 @@ msgstr "الاحصائيات لـ:"
|
|
841 |
msgid "Give credits:"
|
842 |
msgstr "أعطي الفضل:"
|
843 |
|
844 |
-
#: .././gadwp.php:
|
845 |
msgid "This is not allowed, read the documentation!"
|
846 |
msgstr ""
|
847 |
|
@@ -865,39 +859,39 @@ msgstr "كود الدخول:"
|
|
865 |
msgid "Save Access Code"
|
866 |
msgstr "أحفظ كود الدخول"
|
867 |
|
868 |
-
#: .././tools/gapi.php:
|
869 |
msgid "Organic Searches"
|
870 |
msgstr "البحث العضوي"
|
871 |
|
872 |
-
#: .././tools/gapi.php:
|
873 |
msgid "Unique Page Views"
|
874 |
msgstr ""
|
875 |
|
876 |
-
#: .././tools/gapi.php:
|
877 |
msgid "Hour"
|
878 |
msgstr "الساعة"
|
879 |
|
880 |
-
#: .././tools/gapi.php:
|
881 |
msgid "Date"
|
882 |
msgstr "التاريخ"
|
883 |
|
884 |
-
#: .././tools/gapi.php:
|
885 |
msgid "Views"
|
886 |
msgstr "المشاهدات"
|
887 |
|
888 |
-
#: .././tools/gapi.php:
|
889 |
msgid "Countries"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: .././tools/gapi.php:
|
893 |
msgid "Cities from"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: .././tools/gapi.php:
|
897 |
msgid "Channels"
|
898 |
msgstr ""
|
899 |
|
900 |
-
#: .././tools/gapi.php:
|
901 |
msgid "Type"
|
902 |
msgstr "النوع"
|
903 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:52+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:52+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Ahmed Majed <admin@almobdaa.com>\n"
|
10 |
"Language: ar\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
29 |
|
30 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
31 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
32 |
+
#: .././admin/settings.php:1069
|
33 |
msgid "Settings saved."
|
34 |
msgstr ""
|
35 |
|
37 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
38 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
39 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
40 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
41 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
42 |
+
#: .././admin/settings.php:1082
|
43 |
msgid "Cheating Huh?"
|
44 |
msgstr "تغش ها؟"
|
45 |
|
46 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
47 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
48 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
49 |
#, php-format
|
50 |
msgid "Something went wrong, check %1$s or %2$s."
|
51 |
msgstr ""
|
52 |
|
53 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
54 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
55 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
56 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
57 |
msgid "Errors & Debug"
|
58 |
msgstr ""
|
59 |
|
60 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
61 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
62 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
63 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
64 |
msgid "authorize the plugin"
|
65 |
msgstr "صرح بالدخول للأضافة"
|
66 |
|
81 |
msgstr ""
|
82 |
|
83 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
84 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
85 |
+
#: .././admin/settings.php:1234
|
86 |
msgid "Save Changes"
|
87 |
msgstr ""
|
88 |
|
141 |
msgstr "تعاريف مخصصة"
|
142 |
|
143 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
144 |
+
#: .././admin/settings.php:1217
|
145 |
msgid "Exclude Tracking"
|
146 |
msgstr "لا تتبع"
|
147 |
|
165 |
msgid "Enabled"
|
166 |
msgstr "تفعيل"
|
167 |
|
168 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
169 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
170 |
#: .././admin/widgets.php:61
|
171 |
msgid "View Name:"
|
172 |
msgstr "شاهد الاسم:"
|
173 |
|
174 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
175 |
msgid "Tracking ID:"
|
176 |
msgstr "معرف التعقب:"
|
177 |
|
178 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
179 |
msgid "Default URL:"
|
180 |
msgstr "الرابط الرئيسي:"
|
181 |
|
182 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
183 |
msgid "Time Zone:"
|
184 |
msgstr "المنطقة الزمنية:"
|
185 |
|
303 |
msgid "Plugin Configuration"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
307 |
msgid ""
|
308 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
309 |
"error, try this solution:"
|
313 |
msgid "Library conflicts between WordPress plugins"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
317 |
msgid "Plugin authorization succeeded."
|
318 |
msgstr "تم تفعيل تصريح الاضافة بنجاح."
|
319 |
|
320 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
321 |
msgid ""
|
322 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
323 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
327 |
msgid "Cleared Cache."
|
328 |
msgstr "الخزن المزال."
|
329 |
|
330 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
331 |
msgid "Token Reseted and Revoked."
|
332 |
msgstr "الجزء المراح والمعدل."
|
333 |
|
335 |
msgid "All errors reseted."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
339 |
msgid "All other domains/properties were removed."
|
340 |
msgstr "كل الروابط/والخصائص تم إزالتها."
|
341 |
|
342 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
343 |
msgid "Google Analytics Settings"
|
344 |
msgstr "إعدادات احصائيات كوكل"
|
345 |
|
346 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
347 |
msgid "Use the red link (see below) to generate and get your access code!"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
351 |
msgid "Plugin Authorization"
|
352 |
msgstr "تصريح الأضافة"
|
353 |
|
354 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
355 |
#, php-format
|
356 |
msgid ""
|
357 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
359 |
"account!"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
363 |
msgid "video"
|
364 |
msgstr "الڤيديو"
|
365 |
|
366 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
367 |
msgid "tutorial"
|
368 |
msgstr "الدرس"
|
369 |
|
370 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
371 |
msgid "use your own API Project credentials"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
375 |
msgid "API Key:"
|
376 |
msgstr "مفتاح API:"
|
377 |
|
378 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
379 |
msgid "Client ID:"
|
380 |
msgstr "معرف الزيون:"
|
381 |
|
382 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
383 |
msgid "Client Secret:"
|
384 |
msgstr "سر الزبون:"
|
385 |
|
386 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
387 |
msgid "Clear Authorization"
|
388 |
msgstr "أزل التصريحات"
|
389 |
|
390 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
391 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
392 |
msgid "Clear Cache"
|
393 |
msgstr "أزل الخزن"
|
394 |
|
395 |
+
#: .././admin/settings.php:873
|
396 |
msgid "Reset Errors"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
400 |
msgid "General Settings"
|
401 |
msgstr "الأعدادات العامة"
|
402 |
|
403 |
+
#: .././admin/settings.php:882
|
404 |
msgid "Select View:"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
408 |
msgid "Property not found"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: .././admin/settings.php:899
|
412 |
msgid "Lock Selection"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: .././admin/settings.php:918
|
416 |
msgid "Theme Color:"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
420 |
msgid "Automatic Updates"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
424 |
msgid ""
|
425 |
"automatic updates for minor versions (security and maintenance releases only)"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
429 |
#: .././admin/widgets.php:32
|
430 |
msgid "Authorize Plugin"
|
431 |
msgstr "صرح الأضافة "
|
432 |
|
433 |
+
#: .././admin/settings.php:1027
|
434 |
msgid "Properties refreshed."
|
435 |
msgstr "تم تحديث الخصائص."
|
436 |
|
437 |
+
#: .././admin/settings.php:1112
|
438 |
msgid "Network Setup"
|
439 |
msgstr "اعدادات الشبكة"
|
440 |
|
441 |
+
#: .././admin/settings.php:1122
|
442 |
msgid "use a single Google Analytics account for the entire network"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: .././admin/settings.php:1167
|
446 |
msgid "Refresh Properties"
|
447 |
msgstr "حدث الخصائص"
|
448 |
|
449 |
+
#: .././admin/settings.php:1173
|
450 |
msgid "Properties/Views Settings"
|
451 |
msgstr "اعدادات الخصائص/المشاهدة"
|
452 |
|
453 |
+
#: .././admin/settings.php:1227
|
454 |
msgid "exclude Super Admin tracking for the entire network"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: .././admin/settings.php:1275
|
458 |
msgid "Setup Tutorial & Demo"
|
459 |
msgstr "درس التنصيب"
|
460 |
|
461 |
+
#: .././admin/settings.php:1283
|
462 |
msgid "Follow & Review"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: .././admin/settings.php:1309
|
466 |
#, php-format
|
467 |
msgid "Your feedback and review are both important, %s!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: .././admin/settings.php:1309
|
471 |
msgid "rate this plugin"
|
472 |
msgstr "قيم هذه الاضافة"
|
473 |
|
474 |
+
#: .././admin/settings.php:1315
|
475 |
msgid "Further Reading"
|
476 |
msgstr "أكمل القراءة"
|
477 |
|
478 |
+
#: .././admin/settings.php:1322
|
479 |
#, php-format
|
480 |
msgid "%s by moving your website to HTTPS/SSL."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: .././admin/settings.php:1322
|
484 |
msgid "Improve search rankings"
|
485 |
msgstr "حسن ترتيب البحث"
|
486 |
|
487 |
+
#: .././admin/settings.php:1329
|
488 |
#, php-format
|
489 |
msgid "Other %s written by the same author"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: .././admin/settings.php:1329
|
493 |
msgid "WordPress Plugins"
|
494 |
msgstr "اضافات وردبريس"
|
495 |
|
496 |
+
#: .././admin/settings.php:1335
|
497 |
msgid "Other Services"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: .././admin/settings.php:1342
|
501 |
#, php-format
|
502 |
msgid "Speed up your website and plug into a whole %s"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: .././admin/settings.php:1342
|
506 |
msgid "new level of site speed"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: .././admin/settings.php:1349
|
510 |
#, php-format
|
511 |
msgid "%s service with users tracking at IP level."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: .././admin/settings.php:1349
|
515 |
msgid "Web Analytics"
|
516 |
msgstr "احصائيات الويب"
|
517 |
|
531 |
msgid "Tracking Code"
|
532 |
msgstr "كود التعقب"
|
533 |
|
534 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
535 |
msgid "Today"
|
536 |
msgstr "اليوم"
|
537 |
|
538 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
539 |
msgid "Yesterday"
|
540 |
msgstr "البارحة"
|
541 |
|
542 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
543 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
544 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
545 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
546 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
547 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
548 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
551 |
msgid "Last %d Days"
|
552 |
msgstr ""
|
553 |
|
554 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
555 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
556 |
#, php-format
|
557 |
msgid "%s Year"
|
558 |
msgid_plural "%s Years"
|
563 |
msgstr[4] ""
|
564 |
msgstr[5] ""
|
565 |
|
566 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
567 |
msgid "One"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
571 |
msgid "Three"
|
572 |
msgstr ""
|
573 |
|
576 |
msgid "Unique Views"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
580 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
581 |
+
#: .././tools/gapi.php:357
|
582 |
msgid "Users"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
586 |
msgid "Organic"
|
587 |
msgstr "عضوي"
|
588 |
|
589 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
590 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
591 |
+
#: .././tools/gapi.php:360
|
592 |
msgid "Page Views"
|
593 |
msgstr "مشاهدات الصفحة"
|
594 |
|
595 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
596 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
597 |
+
#: .././tools/gapi.php:363
|
598 |
msgid "Bounce Rate"
|
599 |
msgstr "نسبة القفز"
|
600 |
|
601 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
602 |
msgid "Location"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
606 |
+
#: .././tools/gapi.php:502
|
607 |
msgid "Referrers"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
611 |
+
#: .././tools/gapi.php:535
|
612 |
msgid "Searches"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
616 |
msgid "Traffic Details"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
620 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
621 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
622 |
msgid "A JavaScript Error is blocking plugin resources!"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
626 |
msgid "Traffic Mediums"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
630 |
msgid "Visitor Type"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
634 |
msgid "Social Networks"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
638 |
msgid "Search Engines"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
642 |
msgid "Organic Search"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
646 |
msgid "Pages/Session"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
650 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
651 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
652 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
653 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
654 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
655 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
656 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
657 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
658 |
msgstr ""
|
659 |
|
661 |
msgid "Not enough data collected"
|
662 |
msgstr ""
|
663 |
|
664 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
665 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
666 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
667 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
668 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
669 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
670 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
671 |
msgid "This report is unavailable"
|
672 |
msgstr ""
|
675 |
msgid "report generated by"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
679 |
+
msgid "This plugin needs an authorization:"
|
680 |
+
msgstr "هذه الاضافة تحتاج الى تصريح:"
|
681 |
+
|
682 |
+
#: .././admin/setup.php:227
|
683 |
msgid "Settings"
|
684 |
msgstr "الاعدادات"
|
685 |
|
686 |
+
#: .././admin/setup.php:239
|
687 |
#, php-format
|
688 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
689 |
msgstr ""
|
690 |
|
691 |
+
#: .././admin/setup.php:239
|
692 |
#, php-format
|
693 |
msgid "For details, check out %1$s and %2$s."
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: .././admin/setup.php:239
|
697 |
msgid "the documentation page"
|
698 |
msgstr ""
|
699 |
|
700 |
+
#: .././admin/setup.php:239
|
701 |
msgid "the plugin's settings page"
|
702 |
msgstr ""
|
703 |
|
705 |
msgid "Google Analytics Dashboard"
|
706 |
msgstr "لوحة أحصائيات كوكل"
|
707 |
|
|
|
|
|
|
|
|
|
708 |
#: .././admin/widgets.php:66
|
709 |
msgid "Something went wrong while retrieving profiles list."
|
710 |
msgstr "حدث خطأ ما اثناء استرجاع قائمة البروفايلات."
|
733 |
msgid "Find out more!"
|
734 |
msgstr "اعرف أكثر!"
|
735 |
|
736 |
+
#: .././admin/widgets.php:113
|
737 |
msgid "Real-Time"
|
738 |
msgstr "الوقت الحقيقي"
|
739 |
|
740 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
741 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
742 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
743 |
+
#: .././tools/gapi.php:694
|
744 |
msgid "Sessions"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
748 |
msgid "Pages"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
752 |
msgid "REFERRAL"
|
753 |
msgstr "المصدر"
|
754 |
|
755 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
756 |
msgid "ORGANIC"
|
757 |
msgstr "عضوي"
|
758 |
|
759 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
760 |
+
#: .././admin/widgets.php:477
|
761 |
msgid "SOCIAL"
|
762 |
msgstr "اجتماعي"
|
763 |
|
764 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
765 |
+
#: .././admin/widgets.php:478
|
766 |
msgid "CAMPAIGN"
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
770 |
+
#: .././admin/widgets.php:481
|
771 |
msgid "DIRECT"
|
772 |
msgstr "مباشر"
|
773 |
|
774 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
775 |
msgid "NEW"
|
776 |
msgstr "جديد"
|
777 |
|
778 |
+
#: .././admin/widgets.php:355
|
779 |
msgid "REFERRALS"
|
780 |
msgstr "المصادر"
|
781 |
|
782 |
+
#: .././admin/widgets.php:358
|
783 |
msgid "KEYWORDS"
|
784 |
msgstr "الكلمات المفتاحية"
|
785 |
|
787 |
msgid "Will display your google analytics stats in a widget"
|
788 |
msgstr "ستظهر احصائيات حسابك في مربع جانبي"
|
789 |
|
|
|
|
|
|
|
|
|
790 |
#: .././front/widgets.php:123
|
791 |
msgid "Period:"
|
792 |
msgstr "الفترة:"
|
835 |
msgid "Give credits:"
|
836 |
msgstr "أعطي الفضل:"
|
837 |
|
838 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
839 |
msgid "This is not allowed, read the documentation!"
|
840 |
msgstr ""
|
841 |
|
859 |
msgid "Save Access Code"
|
860 |
msgstr "أحفظ كود الدخول"
|
861 |
|
862 |
+
#: .././tools/gapi.php:366
|
863 |
msgid "Organic Searches"
|
864 |
msgstr "البحث العضوي"
|
865 |
|
866 |
+
#: .././tools/gapi.php:369
|
867 |
msgid "Unique Page Views"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: .././tools/gapi.php:377
|
871 |
msgid "Hour"
|
872 |
msgstr "الساعة"
|
873 |
|
874 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
875 |
msgid "Date"
|
876 |
msgstr "التاريخ"
|
877 |
|
878 |
+
#: .././tools/gapi.php:470
|
879 |
msgid "Views"
|
880 |
msgstr "المشاهدات"
|
881 |
|
882 |
+
#: .././tools/gapi.php:556
|
883 |
msgid "Countries"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: .././tools/gapi.php:566
|
887 |
msgid "Cities from"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: .././tools/gapi.php:619
|
891 |
msgid "Channels"
|
892 |
msgstr ""
|
893 |
|
894 |
+
#: .././tools/gapi.php:665
|
895 |
msgid "Type"
|
896 |
msgstr "النوع"
|
897 |
|
languages/{ga-dash-cs_CZ.mo → google-analytics-dashboard-for-wp-cs_CZ.mo}
RENAMED
File without changes
|
languages/{ga-dash-cs_CZ.po → google-analytics-dashboard-for-wp-cs_CZ.po}
RENAMED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
-
"PO-Revision-Date: 2015-
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: cs_CZ\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
@@ -27,32 +27,33 @@ msgid "Analytics"
|
|
27 |
msgstr "Analýza"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
30 |
-
#: .././admin/settings.php:795 .././admin/settings.php:
|
31 |
msgid "Settings saved."
|
32 |
msgstr "Nastavení uloženo"
|
33 |
|
34 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
35 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
-
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:
|
37 |
-
#: .././admin/settings.php:
|
38 |
-
#: .././admin/settings.php:
|
39 |
msgid "Cheating Huh?"
|
40 |
msgstr "Podvádět jo?"
|
41 |
|
42 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
43 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
44 |
#, php-format
|
45 |
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
msgstr "Něco je špatně, zkontroluj %1$s nebo %2$s."
|
47 |
|
48 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
49 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
50 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
51 |
msgid "Errors & Debug"
|
52 |
msgstr "Chyby a ladění"
|
53 |
|
54 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
55 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
|
|
56 |
msgid "authorize the plugin"
|
57 |
msgstr "autorizovat modul"
|
58 |
|
@@ -73,7 +74,7 @@ msgid "enable web page reports on frontend"
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
76 |
-
#: .././admin/settings.php:
|
77 |
msgid "Save Changes"
|
78 |
msgstr "Uložit změny"
|
79 |
|
@@ -133,7 +134,7 @@ msgstr "Sledování událostí"
|
|
133 |
msgid "Custom Definitions"
|
134 |
msgstr "Vlastní definice"
|
135 |
|
136 |
-
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:
|
137 |
msgid "Exclude Tracking"
|
138 |
msgstr "Vyloučit ze sledování"
|
139 |
|
@@ -157,20 +158,20 @@ msgstr "Zakázat"
|
|
157 |
msgid "Enabled"
|
158 |
msgstr "Povolit"
|
159 |
|
160 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
161 |
-
#: .././admin/settings.php:
|
162 |
msgid "View Name:"
|
163 |
msgstr "Zobrazované Jméno:"
|
164 |
|
165 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
166 |
msgid "Tracking ID:"
|
167 |
msgstr "Sledovací ID:"
|
168 |
|
169 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
170 |
msgid "Default URL:"
|
171 |
msgstr "Zákaldní URL:"
|
172 |
|
173 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
174 |
msgid "Time Zone:"
|
175 |
msgstr "Časová Zóna:"
|
176 |
|
@@ -294,7 +295,7 @@ msgstr "Detail chyby"
|
|
294 |
msgid "Plugin Configuration"
|
295 |
msgstr "Nastavení modulu"
|
296 |
|
297 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
298 |
msgid ""
|
299 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
300 |
"solution:"
|
@@ -306,11 +307,11 @@ msgstr ""
|
|
306 |
msgid "Library conflicts between WordPress plugins"
|
307 |
msgstr "Knihovna koliduje mezi moduly WordPressu"
|
308 |
|
309 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
310 |
msgid "Plugin authorization succeeded."
|
311 |
msgstr "Modul byl autorizován."
|
312 |
|
313 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
314 |
msgid ""
|
315 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
316 |
"again, and use the red link to get your access code"
|
@@ -318,11 +319,11 @@ msgstr ""
|
|
318 |
"Přístupový kód <strong>NENÍ</strong> Vaše <strong>Sledovací ID</strong> (UA-XXXXX-X). Zkuste "
|
319 |
"to znovu a použijte červený odkaz pro získání přístupového kódu."
|
320 |
|
321 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
322 |
msgid "Cleared Cache."
|
323 |
msgstr "Vyčištěná dočasná paměť (cache)."
|
324 |
|
325 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
326 |
msgid "Token Reseted and Revoked."
|
327 |
msgstr "Token Resetován a Zrušen."
|
328 |
|
@@ -330,23 +331,23 @@ msgstr "Token Resetován a Zrušen."
|
|
330 |
msgid "All errors reseted."
|
331 |
msgstr "Všechny chyby vymazány. (reseted)"
|
332 |
|
333 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
334 |
msgid "All other domains/properties were removed."
|
335 |
msgstr "Všechny ostatní domény/nastavení byly odstraněny."
|
336 |
|
337 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
338 |
msgid "Google Analytics Settings"
|
339 |
msgstr "Nastavení Google Analytics"
|
340 |
|
341 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
342 |
msgid "Use the red link (see below) to generate and get your access code!"
|
343 |
msgstr "Použijte červený odkaz níže pro vygenerování a získání Vašeho přístupového kódu!"
|
344 |
|
345 |
-
#: .././admin/settings.php:
|
346 |
msgid "Plugin Authorization"
|
347 |
msgstr "Autorizace modulu"
|
348 |
|
349 |
-
#: .././admin/settings.php:
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
@@ -355,157 +356,157 @@ msgstr ""
|
|
355 |
"Měli byste shlédnout %1$s a přečíst si toto %2$s, než přikročíte k povolení. Tento modul "
|
356 |
"vyžaduje správně nakonfigurovaný účet Google Analytics!"
|
357 |
|
358 |
-
#: .././admin/settings.php:
|
359 |
msgid "video"
|
360 |
msgstr "video"
|
361 |
|
362 |
-
#: .././admin/settings.php:
|
363 |
msgid "tutorial"
|
364 |
msgstr "cvičení"
|
365 |
|
366 |
-
#: .././admin/settings.php:
|
367 |
msgid "use your own API Project credentials"
|
368 |
msgstr "použijte Vaše vlastní přístupové údaje projektového API"
|
369 |
|
370 |
-
#: .././admin/settings.php:
|
371 |
msgid "API Key:"
|
372 |
msgstr "Klíč API:"
|
373 |
|
374 |
-
#: .././admin/settings.php:
|
375 |
msgid "Client ID:"
|
376 |
msgstr "Klientské ID:"
|
377 |
|
378 |
-
#: .././admin/settings.php:
|
379 |
msgid "Client Secret:"
|
380 |
msgstr "Klientský klíč:"
|
381 |
|
382 |
-
#: .././admin/settings.php:
|
383 |
msgid "Clear Authorization"
|
384 |
msgstr "Smazat autorizaci."
|
385 |
|
386 |
-
#: .././admin/settings.php:
|
387 |
-
#: .././admin/settings.php:
|
388 |
msgid "Clear Cache"
|
389 |
msgstr "Smazat dočasnou paměť (cache)."
|
390 |
|
391 |
-
#: .././admin/settings.php:
|
392 |
msgid "Reset Errors"
|
393 |
msgstr "Smazat chyby"
|
394 |
|
395 |
-
#: .././admin/settings.php:
|
396 |
msgid "General Settings"
|
397 |
msgstr "Hlavní Nastavení"
|
398 |
|
399 |
-
#: .././admin/settings.php:
|
400 |
msgid "Select View:"
|
401 |
msgstr "Zvolte pohled:"
|
402 |
|
403 |
-
#: .././admin/settings.php:
|
404 |
msgid "Property not found"
|
405 |
msgstr "Možnost nenalezena:"
|
406 |
|
407 |
-
#: .././admin/settings.php:
|
408 |
msgid "Lock Selection"
|
409 |
msgstr "Uzamknout tvolené"
|
410 |
|
411 |
-
#: .././admin/settings.php:
|
412 |
msgid "Theme Color:"
|
413 |
msgstr "Barva téma:"
|
414 |
|
415 |
-
#: .././admin/settings.php:
|
416 |
msgid "Automatic Updates"
|
417 |
msgstr "Automatické aktualizace"
|
418 |
|
419 |
-
#: .././admin/settings.php:
|
420 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
421 |
msgstr "automatické aktualizace pro nedůležité aktualizace (jen bezpečnostní a údržbové)"
|
422 |
|
423 |
-
#: .././admin/settings.php:
|
424 |
msgid "Authorize Plugin"
|
425 |
msgstr "Autorizovat modul"
|
426 |
|
427 |
-
#: .././admin/settings.php:
|
428 |
msgid "Properties refreshed."
|
429 |
msgstr "Možnosti obnoveny"
|
430 |
|
431 |
-
#: .././admin/settings.php:
|
432 |
msgid "Network Setup"
|
433 |
msgstr "Nastavení sítě"
|
434 |
|
435 |
-
#: .././admin/settings.php:
|
436 |
msgid "use a single Google Analytics account for the entire network"
|
437 |
msgstr "použít jeden účet Google Analytics pro celou síť"
|
438 |
|
439 |
-
#: .././admin/settings.php:
|
440 |
msgid "Refresh Properties"
|
441 |
msgstr "Obnovit možnosti"
|
442 |
|
443 |
-
#: .././admin/settings.php:
|
444 |
msgid "Properties/Views Settings"
|
445 |
msgstr "Možnosti/Zobrazení nastavení"
|
446 |
|
447 |
-
#: .././admin/settings.php:
|
448 |
msgid "exclude Super Admin tracking for the entire network"
|
449 |
msgstr "vypnout sledování Adminů pro celou síť"
|
450 |
|
451 |
-
#: .././admin/settings.php:
|
452 |
msgid "Setup Tutorial & Demo"
|
453 |
msgstr "Průvodce nastavení a ukázky"
|
454 |
|
455 |
-
#: .././admin/settings.php:
|
456 |
msgid "Follow & Review"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: .././admin/settings.php:
|
460 |
#, php-format
|
461 |
msgid "Your feedback and review are both important, %s!"
|
462 |
msgstr "Vaše odezva a hodnocení jsou pro nás důležité, %s!"
|
463 |
|
464 |
-
#: .././admin/settings.php:
|
465 |
msgid "rate this plugin"
|
466 |
msgstr "ohodnoťte tento modul"
|
467 |
|
468 |
-
#: .././admin/settings.php:
|
469 |
msgid "Further Reading"
|
470 |
msgstr "Další čtení"
|
471 |
|
472 |
-
#: .././admin/settings.php:
|
473 |
#, php-format
|
474 |
msgid "%s by moving your website to HTTPS/SSL."
|
475 |
msgstr "%s přesunutím vaší sítě na HTTPS/SSL."
|
476 |
|
477 |
-
#: .././admin/settings.php:
|
478 |
msgid "Improve search rankings"
|
479 |
msgstr "Zlepšení vyhledávání žebříčku"
|
480 |
|
481 |
-
#: .././admin/settings.php:
|
482 |
#, php-format
|
483 |
msgid "Other %s written by the same author"
|
484 |
msgstr "Ostatní %s vytvořené stejným autorem"
|
485 |
|
486 |
-
#: .././admin/settings.php:
|
487 |
msgid "WordPress Plugins"
|
488 |
msgstr "moduly WordPressu"
|
489 |
|
490 |
-
#: .././admin/settings.php:
|
491 |
msgid "Other Services"
|
492 |
msgstr "Ostatní služby"
|
493 |
|
494 |
-
#: .././admin/settings.php:
|
495 |
#, php-format
|
496 |
msgid "Speed up your website and plug into a whole %s"
|
497 |
msgstr "Zrychlete své webové stránky a zapojte do celku %s"
|
498 |
|
499 |
-
#: .././admin/settings.php:
|
500 |
msgid "new level of site speed"
|
501 |
msgstr "nová úroveň rychlosti sítě"
|
502 |
|
503 |
-
#: .././admin/settings.php:
|
504 |
#, php-format
|
505 |
msgid "%s service with users tracking at IP level."
|
506 |
msgstr "Služba %s se sledováním uživatelů na úrovni IP."
|
507 |
|
508 |
-
#: .././admin/settings.php:
|
509 |
msgid "Web Analytics"
|
510 |
msgstr "Web Analýza"
|
511 |
|
@@ -525,17 +526,17 @@ msgstr "Nastavení Popředí"
|
|
525 |
msgid "Tracking Code"
|
526 |
msgstr "Sledovací kód"
|
527 |
|
528 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
529 |
msgid "Today"
|
530 |
msgstr "Dnes"
|
531 |
|
532 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
533 |
msgid "Yesterday"
|
534 |
msgstr "Včera"
|
535 |
|
536 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
537 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
538 |
-
#: .././admin/widgets.php:
|
539 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
540 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
541 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
@@ -543,8 +544,8 @@ msgstr "Včera"
|
|
543 |
msgid "Last %d Days"
|
544 |
msgstr "Posledních %d dní"
|
545 |
|
546 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:
|
547 |
-
#: .././admin/widgets.php:
|
548 |
#, php-format
|
549 |
msgid "%s Year"
|
550 |
msgid_plural "%s Years"
|
@@ -552,11 +553,11 @@ msgstr[0] ""
|
|
552 |
msgstr[1] ""
|
553 |
msgstr[2] ""
|
554 |
|
555 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
556 |
msgid "One"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
560 |
msgid "Three"
|
561 |
msgstr ""
|
562 |
|
@@ -565,80 +566,80 @@ msgstr ""
|
|
565 |
msgid "Unique Views"
|
566 |
msgstr "Unikátní shlédnutí"
|
567 |
|
568 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:
|
569 |
-
#: .././admin/widgets.php:
|
570 |
-
#: .././tools/gapi.php:
|
571 |
msgid "Users"
|
572 |
msgstr "Uživatelé"
|
573 |
|
574 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
575 |
msgid "Organic"
|
576 |
msgstr "Přírodní"
|
577 |
|
578 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:
|
579 |
-
#: .././admin/widgets.php:
|
580 |
-
#: .././tools/gapi.php:
|
581 |
msgid "Page Views"
|
582 |
msgstr "Zobrazení Stránek"
|
583 |
|
584 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:
|
585 |
-
#: .././admin/widgets.php:
|
586 |
-
#: .././tools/gapi.php:
|
587 |
msgid "Bounce Rate"
|
588 |
msgstr "Míra opuštění"
|
589 |
|
590 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
591 |
msgid "Location"
|
592 |
msgstr "Poloha"
|
593 |
|
594 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
595 |
-
#: .././tools/gapi.php:
|
596 |
msgid "Referrers"
|
597 |
msgstr "Odkazy"
|
598 |
|
599 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
600 |
-
#: .././tools/gapi.php:
|
601 |
msgid "Searches"
|
602 |
msgstr "Vyhledávání"
|
603 |
|
604 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
605 |
msgid "Traffic Details"
|
606 |
msgstr "Detail provozu"
|
607 |
|
608 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
609 |
-
#: .././admin/widgets.php:
|
610 |
msgid "A JavaScript Error is blocking plugin resources!"
|
611 |
msgstr "Chyva JavaScriptu blokuje zdroje modulu."
|
612 |
|
613 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
614 |
msgid "Traffic Mediums"
|
615 |
msgstr "Dopravní Media"
|
616 |
|
617 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
618 |
msgid "Visitor Type"
|
619 |
msgstr "Druh Návštěvníka"
|
620 |
|
621 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
622 |
msgid "Social Networks"
|
623 |
msgstr "Sociální sítě"
|
624 |
|
625 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
626 |
msgid "Search Engines"
|
627 |
msgstr "Vyhledávače"
|
628 |
|
629 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
630 |
msgid "Organic Search"
|
631 |
msgstr "Přírodní vyhledávání"
|
632 |
|
633 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
634 |
msgid "Pages/Session"
|
635 |
msgstr "Stránky/Návštěvy"
|
636 |
|
637 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
638 |
-
#: .././admin/widgets.php:
|
639 |
-
#: .././admin/widgets.php:
|
640 |
-
#: .././admin/widgets.php:
|
641 |
-
#: .././admin/widgets.php:
|
642 |
#: .././front/setup.php:103
|
643 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
644 |
msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
|
@@ -647,10 +648,10 @@ msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
|
|
647 |
msgid "Not enough data collected"
|
648 |
msgstr "Nedostatečné množství dat"
|
649 |
|
650 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
651 |
-
#: .././admin/widgets.php:
|
652 |
-
#: .././admin/widgets.php:
|
653 |
-
#: .././admin/widgets.php:
|
654 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
655 |
msgid "This report is unavailable"
|
656 |
msgstr "Toto hlášení není dostupné"
|
@@ -659,25 +660,29 @@ msgstr "Toto hlášení není dostupné"
|
|
659 |
msgid "report generated by"
|
660 |
msgstr "hlášení vytvořené s pomocí"
|
661 |
|
662 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
663 |
msgid "Settings"
|
664 |
msgstr "Nastavení"
|
665 |
|
666 |
-
#: .././admin/setup.php:
|
667 |
#, php-format
|
668 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: .././admin/setup.php:
|
672 |
#, php-format
|
673 |
msgid "For details, check out %1$s and %2$s."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: .././admin/setup.php:
|
677 |
msgid "the documentation page"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: .././admin/setup.php:
|
681 |
msgid "the plugin's settings page"
|
682 |
msgstr ""
|
683 |
|
@@ -685,10 +690,6 @@ msgstr ""
|
|
685 |
msgid "Google Analytics Dashboard"
|
686 |
msgstr "Nástěnka Google Analytics"
|
687 |
|
688 |
-
#: .././admin/widgets.php:32
|
689 |
-
msgid "This plugin needs an authorization:"
|
690 |
-
msgstr "Tento modul potřebuje autorizovat."
|
691 |
-
|
692 |
#: .././admin/widgets.php:66
|
693 |
msgid "Something went wrong while retrieving profiles list."
|
694 |
msgstr "Něco se nepovedlo při načítání seznamu profilů."
|
@@ -717,49 +718,49 @@ msgstr ""
|
|
717 |
msgid "Find out more!"
|
718 |
msgstr "Chcete vědět víc?"
|
719 |
|
720 |
-
#: .././admin/widgets.php:
|
721 |
msgid "Real-Time"
|
722 |
msgstr "Živě"
|
723 |
|
724 |
-
#: .././admin/widgets.php:
|
725 |
-
#: .././tools/gapi.php:
|
726 |
-
#: .././tools/gapi.php:
|
727 |
msgid "Sessions"
|
728 |
msgstr "Návštěvy"
|
729 |
|
730 |
-
#: .././admin/widgets.php:
|
731 |
msgid "Pages"
|
732 |
msgstr "Stránky"
|
733 |
|
734 |
-
#: .././admin/widgets.php:
|
735 |
msgid "REFERRAL"
|
736 |
msgstr "POSTUPOVÁNÍ"
|
737 |
|
738 |
-
#: .././admin/widgets.php:
|
739 |
msgid "ORGANIC"
|
740 |
msgstr "PŘÍRODNÍ"
|
741 |
|
742 |
-
#: .././admin/widgets.php:
|
743 |
msgid "SOCIAL"
|
744 |
msgstr "SOCIÁLNÍ"
|
745 |
|
746 |
-
#: .././admin/widgets.php:
|
747 |
msgid "CAMPAIGN"
|
748 |
msgstr "KAMPAŇ"
|
749 |
|
750 |
-
#: .././admin/widgets.php:
|
751 |
msgid "DIRECT"
|
752 |
msgstr "PŘÍMÝ"
|
753 |
|
754 |
-
#: .././admin/widgets.php:
|
755 |
msgid "NEW"
|
756 |
msgstr "NOVÝ"
|
757 |
|
758 |
-
#: .././admin/widgets.php:
|
759 |
msgid "REFERRALS"
|
760 |
msgstr "POSTOUPENÍ"
|
761 |
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "KEYWORDS"
|
764 |
msgstr "KLÍČOVÁ SLOVA"
|
765 |
|
@@ -767,10 +768,6 @@ msgstr "KLÍČOVÁ SLOVA"
|
|
767 |
msgid "Will display your google analytics stats in a widget"
|
768 |
msgstr "Zobrazí statistiky z Google Analytics ve widgetu"
|
769 |
|
770 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
771 |
-
msgid "trend"
|
772 |
-
msgstr "trend"
|
773 |
-
|
774 |
#: .././front/widgets.php:123
|
775 |
msgid "Period:"
|
776 |
msgstr "Období:"
|
@@ -819,7 +816,7 @@ msgstr "Statistika pro:"
|
|
819 |
msgid "Give credits:"
|
820 |
msgstr "Ukaž vydavatele:"
|
821 |
|
822 |
-
#: .././gadwp.php:
|
823 |
msgid "This is not allowed, read the documentation!"
|
824 |
msgstr "Toto není povoleno, přečtěte si dokumentaci."
|
825 |
|
@@ -843,42 +840,45 @@ msgstr "Přístupový kód:"
|
|
843 |
msgid "Save Access Code"
|
844 |
msgstr "Uložit přístupový kód"
|
845 |
|
846 |
-
#: .././tools/gapi.php:
|
847 |
msgid "Organic Searches"
|
848 |
msgstr "Přírodní vyhledávání"
|
849 |
|
850 |
-
#: .././tools/gapi.php:
|
851 |
msgid "Unique Page Views"
|
852 |
msgstr "Unikátní zobrazení stránky"
|
853 |
|
854 |
-
#: .././tools/gapi.php:
|
855 |
msgid "Hour"
|
856 |
msgstr "Hodina"
|
857 |
|
858 |
-
#: .././tools/gapi.php:
|
859 |
msgid "Date"
|
860 |
msgstr "Datum"
|
861 |
|
862 |
-
#: .././tools/gapi.php:
|
863 |
msgid "Views"
|
864 |
msgstr "Zobrazení"
|
865 |
|
866 |
-
#: .././tools/gapi.php:
|
867 |
msgid "Countries"
|
868 |
msgstr "Státy"
|
869 |
|
870 |
-
#: .././tools/gapi.php:
|
871 |
msgid "Cities from"
|
872 |
msgstr "Města z"
|
873 |
|
874 |
-
#: .././tools/gapi.php:
|
875 |
msgid "Channels"
|
876 |
msgstr "Kanály"
|
877 |
|
878 |
-
#: .././tools/gapi.php:
|
879 |
msgid "Type"
|
880 |
msgstr "Typ"
|
881 |
|
|
|
|
|
|
|
882 |
#~ msgid "Last 7 Days"
|
883 |
#~ msgstr "Posledních 7 dní"
|
884 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
+
"POT-Creation-Date: 2015-08-04 16:52+0300\n"
|
8 |
+
"PO-Revision-Date: 2015-08-04 16:52+0300\n"
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: cs_CZ\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
27 |
msgstr "Analýza"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
30 |
+
#: .././admin/settings.php:795 .././admin/settings.php:1069
|
31 |
msgid "Settings saved."
|
32 |
msgstr "Nastavení uloženo"
|
33 |
|
34 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
35 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
+
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1030
|
37 |
+
#: .././admin/settings.php:1055 .././admin/settings.php:1065 .././admin/settings.php:1071
|
38 |
+
#: .././admin/settings.php:1082
|
39 |
msgid "Cheating Huh?"
|
40 |
msgstr "Podvádět jo?"
|
41 |
|
42 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
43 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
44 |
#, php-format
|
45 |
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
msgstr "Něco je špatně, zkontroluj %1$s nebo %2$s."
|
47 |
|
48 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
49 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
50 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
51 |
msgid "Errors & Debug"
|
52 |
msgstr "Chyby a ladění"
|
53 |
|
54 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
55 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
56 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
57 |
msgid "authorize the plugin"
|
58 |
msgstr "autorizovat modul"
|
59 |
|
74 |
msgstr ""
|
75 |
|
76 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
77 |
+
#: .././admin/settings.php:944 .././admin/settings.php:1234
|
78 |
msgid "Save Changes"
|
79 |
msgstr "Uložit změny"
|
80 |
|
134 |
msgid "Custom Definitions"
|
135 |
msgstr "Vlastní definice"
|
136 |
|
137 |
+
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1217
|
138 |
msgid "Exclude Tracking"
|
139 |
msgstr "Vyloučit ze sledování"
|
140 |
|
158 |
msgid "Enabled"
|
159 |
msgstr "Povolit"
|
160 |
|
161 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889 .././admin/settings.php:911
|
162 |
+
#: .././admin/settings.php:1190 .././admin/widgets.php:61
|
163 |
msgid "View Name:"
|
164 |
msgstr "Zobrazované Jméno:"
|
165 |
|
166 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
167 |
msgid "Tracking ID:"
|
168 |
msgstr "Sledovací ID:"
|
169 |
|
170 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
171 |
msgid "Default URL:"
|
172 |
msgstr "Zákaldní URL:"
|
173 |
|
174 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
175 |
msgid "Time Zone:"
|
176 |
msgstr "Časová Zóna:"
|
177 |
|
295 |
msgid "Plugin Configuration"
|
296 |
msgstr "Nastavení modulu"
|
297 |
|
298 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
299 |
msgid ""
|
300 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
301 |
"solution:"
|
307 |
msgid "Library conflicts between WordPress plugins"
|
308 |
msgstr "Knihovna koliduje mezi moduly WordPressu"
|
309 |
|
310 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
311 |
msgid "Plugin authorization succeeded."
|
312 |
msgstr "Modul byl autorizován."
|
313 |
|
314 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
315 |
msgid ""
|
316 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
317 |
"again, and use the red link to get your access code"
|
319 |
"Přístupový kód <strong>NENÍ</strong> Vaše <strong>Sledovací ID</strong> (UA-XXXXX-X). Zkuste "
|
320 |
"to znovu a použijte červený odkaz pro získání přístupového kódu."
|
321 |
|
322 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
323 |
msgid "Cleared Cache."
|
324 |
msgstr "Vyčištěná dočasná paměť (cache)."
|
325 |
|
326 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
327 |
msgid "Token Reseted and Revoked."
|
328 |
msgstr "Token Resetován a Zrušen."
|
329 |
|
331 |
msgid "All errors reseted."
|
332 |
msgstr "Všechny chyby vymazány. (reseted)"
|
333 |
|
334 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
335 |
msgid "All other domains/properties were removed."
|
336 |
msgstr "Všechny ostatní domény/nastavení byly odstraněny."
|
337 |
|
338 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
339 |
msgid "Google Analytics Settings"
|
340 |
msgstr "Nastavení Google Analytics"
|
341 |
|
342 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
343 |
msgid "Use the red link (see below) to generate and get your access code!"
|
344 |
msgstr "Použijte červený odkaz níže pro vygenerování a získání Vašeho přístupového kódu!"
|
345 |
|
346 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
347 |
msgid "Plugin Authorization"
|
348 |
msgstr "Autorizace modulu"
|
349 |
|
350 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
351 |
#, php-format
|
352 |
msgid ""
|
353 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
356 |
"Měli byste shlédnout %1$s a přečíst si toto %2$s, než přikročíte k povolení. Tento modul "
|
357 |
"vyžaduje správně nakonfigurovaný účet Google Analytics!"
|
358 |
|
359 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
360 |
msgid "video"
|
361 |
msgstr "video"
|
362 |
|
363 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
364 |
msgid "tutorial"
|
365 |
msgstr "cvičení"
|
366 |
|
367 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
368 |
msgid "use your own API Project credentials"
|
369 |
msgstr "použijte Vaše vlastní přístupové údaje projektového API"
|
370 |
|
371 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
372 |
msgid "API Key:"
|
373 |
msgstr "Klíč API:"
|
374 |
|
375 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
376 |
msgid "Client ID:"
|
377 |
msgstr "Klientské ID:"
|
378 |
|
379 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
380 |
msgid "Client Secret:"
|
381 |
msgstr "Klientský klíč:"
|
382 |
|
383 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
384 |
msgid "Clear Authorization"
|
385 |
msgstr "Smazat autorizaci."
|
386 |
|
387 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951 .././admin/settings.php:1167
|
388 |
+
#: .././admin/settings.php:1243
|
389 |
msgid "Clear Cache"
|
390 |
msgstr "Smazat dočasnou paměť (cache)."
|
391 |
|
392 |
+
#: .././admin/settings.php:873
|
393 |
msgid "Reset Errors"
|
394 |
msgstr "Smazat chyby"
|
395 |
|
396 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
397 |
msgid "General Settings"
|
398 |
msgstr "Hlavní Nastavení"
|
399 |
|
400 |
+
#: .././admin/settings.php:882
|
401 |
msgid "Select View:"
|
402 |
msgstr "Zvolte pohled:"
|
403 |
|
404 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
405 |
msgid "Property not found"
|
406 |
msgstr "Možnost nenalezena:"
|
407 |
|
408 |
+
#: .././admin/settings.php:899
|
409 |
msgid "Lock Selection"
|
410 |
msgstr "Uzamknout tvolené"
|
411 |
|
412 |
+
#: .././admin/settings.php:918
|
413 |
msgid "Theme Color:"
|
414 |
msgstr "Barva téma:"
|
415 |
|
416 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
417 |
msgid "Automatic Updates"
|
418 |
msgstr "Automatické aktualizace"
|
419 |
|
420 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
421 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
422 |
msgstr "automatické aktualizace pro nedůležité aktualizace (jen bezpečnostní a údržbové)"
|
423 |
|
424 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243 .././admin/widgets.php:32
|
425 |
msgid "Authorize Plugin"
|
426 |
msgstr "Autorizovat modul"
|
427 |
|
428 |
+
#: .././admin/settings.php:1027
|
429 |
msgid "Properties refreshed."
|
430 |
msgstr "Možnosti obnoveny"
|
431 |
|
432 |
+
#: .././admin/settings.php:1112
|
433 |
msgid "Network Setup"
|
434 |
msgstr "Nastavení sítě"
|
435 |
|
436 |
+
#: .././admin/settings.php:1122
|
437 |
msgid "use a single Google Analytics account for the entire network"
|
438 |
msgstr "použít jeden účet Google Analytics pro celou síť"
|
439 |
|
440 |
+
#: .././admin/settings.php:1167
|
441 |
msgid "Refresh Properties"
|
442 |
msgstr "Obnovit možnosti"
|
443 |
|
444 |
+
#: .././admin/settings.php:1173
|
445 |
msgid "Properties/Views Settings"
|
446 |
msgstr "Možnosti/Zobrazení nastavení"
|
447 |
|
448 |
+
#: .././admin/settings.php:1227
|
449 |
msgid "exclude Super Admin tracking for the entire network"
|
450 |
msgstr "vypnout sledování Adminů pro celou síť"
|
451 |
|
452 |
+
#: .././admin/settings.php:1275
|
453 |
msgid "Setup Tutorial & Demo"
|
454 |
msgstr "Průvodce nastavení a ukázky"
|
455 |
|
456 |
+
#: .././admin/settings.php:1283
|
457 |
msgid "Follow & Review"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: .././admin/settings.php:1309
|
461 |
#, php-format
|
462 |
msgid "Your feedback and review are both important, %s!"
|
463 |
msgstr "Vaše odezva a hodnocení jsou pro nás důležité, %s!"
|
464 |
|
465 |
+
#: .././admin/settings.php:1309
|
466 |
msgid "rate this plugin"
|
467 |
msgstr "ohodnoťte tento modul"
|
468 |
|
469 |
+
#: .././admin/settings.php:1315
|
470 |
msgid "Further Reading"
|
471 |
msgstr "Další čtení"
|
472 |
|
473 |
+
#: .././admin/settings.php:1322
|
474 |
#, php-format
|
475 |
msgid "%s by moving your website to HTTPS/SSL."
|
476 |
msgstr "%s přesunutím vaší sítě na HTTPS/SSL."
|
477 |
|
478 |
+
#: .././admin/settings.php:1322
|
479 |
msgid "Improve search rankings"
|
480 |
msgstr "Zlepšení vyhledávání žebříčku"
|
481 |
|
482 |
+
#: .././admin/settings.php:1329
|
483 |
#, php-format
|
484 |
msgid "Other %s written by the same author"
|
485 |
msgstr "Ostatní %s vytvořené stejným autorem"
|
486 |
|
487 |
+
#: .././admin/settings.php:1329
|
488 |
msgid "WordPress Plugins"
|
489 |
msgstr "moduly WordPressu"
|
490 |
|
491 |
+
#: .././admin/settings.php:1335
|
492 |
msgid "Other Services"
|
493 |
msgstr "Ostatní služby"
|
494 |
|
495 |
+
#: .././admin/settings.php:1342
|
496 |
#, php-format
|
497 |
msgid "Speed up your website and plug into a whole %s"
|
498 |
msgstr "Zrychlete své webové stránky a zapojte do celku %s"
|
499 |
|
500 |
+
#: .././admin/settings.php:1342
|
501 |
msgid "new level of site speed"
|
502 |
msgstr "nová úroveň rychlosti sítě"
|
503 |
|
504 |
+
#: .././admin/settings.php:1349
|
505 |
#, php-format
|
506 |
msgid "%s service with users tracking at IP level."
|
507 |
msgstr "Služba %s se sledováním uživatelů na úrovni IP."
|
508 |
|
509 |
+
#: .././admin/settings.php:1349
|
510 |
msgid "Web Analytics"
|
511 |
msgstr "Web Analýza"
|
512 |
|
526 |
msgid "Tracking Code"
|
527 |
msgstr "Sledovací kód"
|
528 |
|
529 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
530 |
msgid "Today"
|
531 |
msgstr "Dnes"
|
532 |
|
533 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
534 |
msgid "Yesterday"
|
535 |
msgstr "Včera"
|
536 |
|
537 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
538 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116 .././admin/widgets.php:117
|
539 |
+
#: .././admin/widgets.php:118 .././admin/widgets.php:119 .././front/setup.php:73
|
540 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
541 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
542 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
544 |
msgid "Last %d Days"
|
545 |
msgstr "Posledních %d dní"
|
546 |
|
547 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
548 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
549 |
#, php-format
|
550 |
msgid "%s Year"
|
551 |
msgid_plural "%s Years"
|
553 |
msgstr[1] ""
|
554 |
msgstr[2] ""
|
555 |
|
556 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
557 |
msgid "One"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
561 |
msgid "Three"
|
562 |
msgstr ""
|
563 |
|
566 |
msgid "Unique Views"
|
567 |
msgstr "Unikátní shlédnutí"
|
568 |
|
569 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
570 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
571 |
+
#: .././tools/gapi.php:357
|
572 |
msgid "Users"
|
573 |
msgstr "Uživatelé"
|
574 |
|
575 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
576 |
msgid "Organic"
|
577 |
msgstr "Přírodní"
|
578 |
|
579 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
580 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
581 |
+
#: .././tools/gapi.php:360
|
582 |
msgid "Page Views"
|
583 |
msgstr "Zobrazení Stránek"
|
584 |
|
585 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
586 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
587 |
+
#: .././tools/gapi.php:363
|
588 |
msgid "Bounce Rate"
|
589 |
msgstr "Míra opuštění"
|
590 |
|
591 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
592 |
msgid "Location"
|
593 |
msgstr "Poloha"
|
594 |
|
595 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
596 |
+
#: .././tools/gapi.php:502
|
597 |
msgid "Referrers"
|
598 |
msgstr "Odkazy"
|
599 |
|
600 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
601 |
+
#: .././tools/gapi.php:535
|
602 |
msgid "Searches"
|
603 |
msgstr "Vyhledávání"
|
604 |
|
605 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
606 |
msgid "Traffic Details"
|
607 |
msgstr "Detail provozu"
|
608 |
|
609 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502 .././admin/widgets.php:587
|
610 |
+
#: .././admin/widgets.php:754 .././admin/widgets.php:858 .././front/setup.php:92
|
611 |
msgid "A JavaScript Error is blocking plugin resources!"
|
612 |
msgstr "Chyva JavaScriptu blokuje zdroje modulu."
|
613 |
|
614 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
615 |
msgid "Traffic Mediums"
|
616 |
msgstr "Dopravní Media"
|
617 |
|
618 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
619 |
msgid "Visitor Type"
|
620 |
msgstr "Druh Návštěvníka"
|
621 |
|
622 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
623 |
msgid "Social Networks"
|
624 |
msgstr "Sociální sítě"
|
625 |
|
626 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
627 |
msgid "Search Engines"
|
628 |
msgstr "Vyhledávače"
|
629 |
|
630 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
631 |
msgid "Organic Search"
|
632 |
msgstr "Přírodní vyhledávání"
|
633 |
|
634 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
635 |
msgid "Pages/Session"
|
636 |
msgstr "Stránky/Návštěvy"
|
637 |
|
638 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514 .././admin/widgets.php:528
|
639 |
+
#: .././admin/widgets.php:538 .././admin/widgets.php:599 .././admin/widgets.php:613
|
640 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641 .././admin/widgets.php:655
|
641 |
+
#: .././admin/widgets.php:665 .././admin/widgets.php:767 .././admin/widgets.php:779
|
642 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884 .././admin/widgets.php:894
|
643 |
#: .././front/setup.php:103
|
644 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
645 |
msgstr "Neplatná odpověď, více detailů v konzoli JavaScriptu (F12)."
|
648 |
msgid "Not enough data collected"
|
649 |
msgstr "Nedostatečné množství dat"
|
650 |
|
651 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519 .././admin/widgets.php:533
|
652 |
+
#: .././admin/widgets.php:604 .././admin/widgets.php:618 .././admin/widgets.php:632
|
653 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660 .././admin/widgets.php:772
|
654 |
+
#: .././admin/widgets.php:774 .././admin/widgets.php:875 .././admin/widgets.php:889
|
655 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
656 |
msgid "This report is unavailable"
|
657 |
msgstr "Toto hlášení není dostupné"
|
660 |
msgid "report generated by"
|
661 |
msgstr "hlášení vytvořené s pomocí"
|
662 |
|
663 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
664 |
+
msgid "This plugin needs an authorization:"
|
665 |
+
msgstr "Tento modul potřebuje autorizovat:"
|
666 |
+
|
667 |
+
#: .././admin/setup.php:227
|
668 |
msgid "Settings"
|
669 |
msgstr "Nastavení"
|
670 |
|
671 |
+
#: .././admin/setup.php:239
|
672 |
#, php-format
|
673 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: .././admin/setup.php:239
|
677 |
#, php-format
|
678 |
msgid "For details, check out %1$s and %2$s."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: .././admin/setup.php:239
|
682 |
msgid "the documentation page"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: .././admin/setup.php:239
|
686 |
msgid "the plugin's settings page"
|
687 |
msgstr ""
|
688 |
|
690 |
msgid "Google Analytics Dashboard"
|
691 |
msgstr "Nástěnka Google Analytics"
|
692 |
|
|
|
|
|
|
|
|
|
693 |
#: .././admin/widgets.php:66
|
694 |
msgid "Something went wrong while retrieving profiles list."
|
695 |
msgstr "Něco se nepovedlo při načítání seznamu profilů."
|
718 |
msgid "Find out more!"
|
719 |
msgstr "Chcete vědět víc?"
|
720 |
|
721 |
+
#: .././admin/widgets.php:113
|
722 |
msgid "Real-Time"
|
723 |
msgstr "Živě"
|
724 |
|
725 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823 .././front/widgets.php:36
|
726 |
+
#: .././tools/gapi.php:372 .././tools/gapi.php:502 .././tools/gapi.php:535 .././tools/gapi.php:585
|
727 |
+
#: .././tools/gapi.php:665 .././tools/gapi.php:694
|
728 |
msgid "Sessions"
|
729 |
msgstr "Návštěvy"
|
730 |
|
731 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
732 |
msgid "Pages"
|
733 |
msgstr "Stránky"
|
734 |
|
735 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
736 |
msgid "REFERRAL"
|
737 |
msgstr "POSTUPOVÁNÍ"
|
738 |
|
739 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
740 |
msgid "ORGANIC"
|
741 |
msgstr "PŘÍRODNÍ"
|
742 |
|
743 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361 .././admin/widgets.php:477
|
744 |
msgid "SOCIAL"
|
745 |
msgstr "SOCIÁLNÍ"
|
746 |
|
747 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364 .././admin/widgets.php:478
|
748 |
msgid "CAMPAIGN"
|
749 |
msgstr "KAMPAŇ"
|
750 |
|
751 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367 .././admin/widgets.php:481
|
752 |
msgid "DIRECT"
|
753 |
msgstr "PŘÍMÝ"
|
754 |
|
755 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
756 |
msgid "NEW"
|
757 |
msgstr "NOVÝ"
|
758 |
|
759 |
+
#: .././admin/widgets.php:355
|
760 |
msgid "REFERRALS"
|
761 |
msgstr "POSTOUPENÍ"
|
762 |
|
763 |
+
#: .././admin/widgets.php:358
|
764 |
msgid "KEYWORDS"
|
765 |
msgstr "KLÍČOVÁ SLOVA"
|
766 |
|
768 |
msgid "Will display your google analytics stats in a widget"
|
769 |
msgstr "Zobrazí statistiky z Google Analytics ve widgetu"
|
770 |
|
|
|
|
|
|
|
|
|
771 |
#: .././front/widgets.php:123
|
772 |
msgid "Period:"
|
773 |
msgstr "Období:"
|
816 |
msgid "Give credits:"
|
817 |
msgstr "Ukaž vydavatele:"
|
818 |
|
819 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
820 |
msgid "This is not allowed, read the documentation!"
|
821 |
msgstr "Toto není povoleno, přečtěte si dokumentaci."
|
822 |
|
840 |
msgid "Save Access Code"
|
841 |
msgstr "Uložit přístupový kód"
|
842 |
|
843 |
+
#: .././tools/gapi.php:366
|
844 |
msgid "Organic Searches"
|
845 |
msgstr "Přírodní vyhledávání"
|
846 |
|
847 |
+
#: .././tools/gapi.php:369
|
848 |
msgid "Unique Page Views"
|
849 |
msgstr "Unikátní zobrazení stránky"
|
850 |
|
851 |
+
#: .././tools/gapi.php:377
|
852 |
msgid "Hour"
|
853 |
msgstr "Hodina"
|
854 |
|
855 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
856 |
msgid "Date"
|
857 |
msgstr "Datum"
|
858 |
|
859 |
+
#: .././tools/gapi.php:470
|
860 |
msgid "Views"
|
861 |
msgstr "Zobrazení"
|
862 |
|
863 |
+
#: .././tools/gapi.php:556
|
864 |
msgid "Countries"
|
865 |
msgstr "Státy"
|
866 |
|
867 |
+
#: .././tools/gapi.php:566
|
868 |
msgid "Cities from"
|
869 |
msgstr "Města z"
|
870 |
|
871 |
+
#: .././tools/gapi.php:619
|
872 |
msgid "Channels"
|
873 |
msgstr "Kanály"
|
874 |
|
875 |
+
#: .././tools/gapi.php:665
|
876 |
msgid "Type"
|
877 |
msgstr "Typ"
|
878 |
|
879 |
+
#~ msgid "trend"
|
880 |
+
#~ msgstr "trend"
|
881 |
+
|
882 |
#~ msgid "Last 7 Days"
|
883 |
#~ msgstr "Posledních 7 dní"
|
884 |
|
languages/{ga-dash-de_DE.mo → google-analytics-dashboard-for-wp-de_DE.mo}
RENAMED
File without changes
|
languages/{ga-dash-de_DE.po → google-analytics-dashboard-for-wp-de_DE.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Alin Marcu\n"
|
10 |
"Language: de\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
-
"Plural-Forms: nplurals=2; plural=(n
|
23 |
"X-Poedit-SearchPath-0: ../.\n"
|
24 |
|
25 |
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
@@ -28,7 +28,7 @@ msgstr "Analytics"
|
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
-
#: .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Einstellungen gespeichert."
|
34 |
|
@@ -36,29 +36,30 @@ msgstr "Einstellungen gespeichert."
|
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
-
#: .././admin/settings.php:
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "Nicht schummeln ;)"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Etwas ist schief gelaufen. Überprüfen Sie %1$s oder %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Fehler & Debug"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
62 |
msgid "authorize the plugin"
|
63 |
msgstr "das Plugin autorisieren"
|
64 |
|
@@ -79,8 +80,8 @@ msgid "enable web page reports on frontend"
|
|
79 |
msgstr ""
|
80 |
|
81 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
82 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
83 |
-
#: .././admin/settings.php:
|
84 |
msgid "Save Changes"
|
85 |
msgstr "Speichern"
|
86 |
|
@@ -143,7 +144,7 @@ msgid "Custom Definitions"
|
|
143 |
msgstr "Eigene Definitionen"
|
144 |
|
145 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
146 |
-
#: .././admin/settings.php:
|
147 |
msgid "Exclude Tracking"
|
148 |
msgstr "Exkludiere Tracking"
|
149 |
|
@@ -167,21 +168,21 @@ msgstr "Deaktiviert"
|
|
167 |
msgid "Enabled"
|
168 |
msgstr "Aktiviert"
|
169 |
|
170 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
171 |
-
#: .././admin/settings.php:
|
172 |
#: .././admin/widgets.php:61
|
173 |
msgid "View Name:"
|
174 |
msgstr "Anzeigename:"
|
175 |
|
176 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
177 |
msgid "Tracking ID:"
|
178 |
msgstr "Tracking ID:"
|
179 |
|
180 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
181 |
msgid "Default URL:"
|
182 |
msgstr "Standard URL:"
|
183 |
|
184 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
185 |
msgid "Time Zone:"
|
186 |
msgstr "Zeitzone"
|
187 |
|
@@ -305,7 +306,7 @@ msgstr "Fehler Details"
|
|
305 |
msgid "Plugin Configuration"
|
306 |
msgstr "Plugin Konfiguration"
|
307 |
|
308 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
309 |
msgid ""
|
310 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
311 |
"error, try this solution:"
|
@@ -317,11 +318,11 @@ msgstr ""
|
|
317 |
msgid "Library conflicts between WordPress plugins"
|
318 |
msgstr "Die Bibliotheken stehen im Konflikt mit anderen WordPress-Plugins"
|
319 |
|
320 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
321 |
msgid "Plugin authorization succeeded."
|
322 |
msgstr "Plugin Autorisierung erfolgreich."
|
323 |
|
324 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
325 |
msgid ""
|
326 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
327 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
@@ -330,11 +331,11 @@ msgstr ""
|
|
330 |
"(UA-XXXXX-X). Versuchen Sie es erneut und benutzen Sie den roten Link um den "
|
331 |
"Zugriffscode zu erhalten"
|
332 |
|
333 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
334 |
msgid "Cleared Cache."
|
335 |
msgstr "Cache geleert."
|
336 |
|
337 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
338 |
msgid "Token Reseted and Revoked."
|
339 |
msgstr "Token zurückgesetzt und entzogen."
|
340 |
|
@@ -342,24 +343,24 @@ msgstr "Token zurückgesetzt und entzogen."
|
|
342 |
msgid "All errors reseted."
|
343 |
msgstr "Alle Fehler zurückgesetzt."
|
344 |
|
345 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
346 |
msgid "All other domains/properties were removed."
|
347 |
msgstr "Alle anderen Domains/Einstellungen wurden entfernt."
|
348 |
|
349 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
350 |
msgid "Google Analytics Settings"
|
351 |
msgstr "Google Analytics Einstellungen"
|
352 |
|
353 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
354 |
msgid "Use the red link (see below) to generate and get your access code!"
|
355 |
msgstr ""
|
356 |
"Benutzen Sie den roten Link (unterhalb) um Ihren Zugriffscode zu generieren!"
|
357 |
|
358 |
-
#: .././admin/settings.php:
|
359 |
msgid "Plugin Authorization"
|
360 |
msgstr "Plugin Autorisierung"
|
361 |
|
362 |
-
#: .././admin/settings.php:
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -369,161 +370,161 @@ msgstr ""
|
|
369 |
"Sie sollten sich das %1$s und das %2$s bevor Sie mit Autorisierung beginnen. "
|
370 |
"Das Plugin benötigt einen richtig konfigurierten Google Analytics Account!"
|
371 |
|
372 |
-
#: .././admin/settings.php:
|
373 |
msgid "video"
|
374 |
msgstr "Video ansehen"
|
375 |
|
376 |
-
#: .././admin/settings.php:
|
377 |
msgid "tutorial"
|
378 |
msgstr "Tutorial lesen"
|
379 |
|
380 |
-
#: .././admin/settings.php:
|
381 |
msgid "use your own API Project credentials"
|
382 |
msgstr "eigene API-Projekt-Zugangsdaten verwenden"
|
383 |
|
384 |
-
#: .././admin/settings.php:
|
385 |
msgid "API Key:"
|
386 |
msgstr "API Key:"
|
387 |
|
388 |
-
#: .././admin/settings.php:
|
389 |
msgid "Client ID:"
|
390 |
msgstr "Client ID:"
|
391 |
|
392 |
-
#: .././admin/settings.php:
|
393 |
msgid "Client Secret:"
|
394 |
msgstr "Client Secret:"
|
395 |
|
396 |
-
#: .././admin/settings.php:
|
397 |
msgid "Clear Authorization"
|
398 |
msgstr "Autorisierung zurücksetzen"
|
399 |
|
400 |
-
#: .././admin/settings.php:
|
401 |
-
#: .././admin/settings.php:
|
402 |
msgid "Clear Cache"
|
403 |
msgstr "Cache leeren"
|
404 |
|
405 |
-
#: .././admin/settings.php:
|
406 |
msgid "Reset Errors"
|
407 |
msgstr "Fehler zurücksetzen"
|
408 |
|
409 |
-
#: .././admin/settings.php:
|
410 |
msgid "General Settings"
|
411 |
msgstr "Allgemeine Einstellungen"
|
412 |
|
413 |
-
#: .././admin/settings.php:
|
414 |
msgid "Select View:"
|
415 |
msgstr "Wähle Ansicht:"
|
416 |
|
417 |
-
#: .././admin/settings.php:
|
418 |
msgid "Property not found"
|
419 |
msgstr "Eigenschaft nicht gefunden"
|
420 |
|
421 |
-
#: .././admin/settings.php:
|
422 |
msgid "Lock Selection"
|
423 |
msgstr "Auswahl sperren"
|
424 |
|
425 |
-
#: .././admin/settings.php:
|
426 |
msgid "Theme Color:"
|
427 |
msgstr "Theme-Farbe:"
|
428 |
|
429 |
-
#: .././admin/settings.php:
|
430 |
msgid "Automatic Updates"
|
431 |
msgstr "Automatische Updates"
|
432 |
|
433 |
-
#: .././admin/settings.php:
|
434 |
msgid ""
|
435 |
"automatic updates for minor versions (security and maintenance releases only)"
|
436 |
msgstr ""
|
437 |
"Automatische Updates für Punkt-Releases (Sicherheits- und "
|
438 |
"Wartungsaktualisierungen)"
|
439 |
|
440 |
-
#: .././admin/settings.php:
|
441 |
#: .././admin/widgets.php:32
|
442 |
msgid "Authorize Plugin"
|
443 |
msgstr "Plugin autorisieren"
|
444 |
|
445 |
-
#: .././admin/settings.php:
|
446 |
msgid "Properties refreshed."
|
447 |
msgstr "Eigenschaften neugeladen."
|
448 |
|
449 |
-
#: .././admin/settings.php:
|
450 |
msgid "Network Setup"
|
451 |
msgstr "Netzwerk-Einrichtung"
|
452 |
|
453 |
-
#: .././admin/settings.php:
|
454 |
msgid "use a single Google Analytics account for the entire network"
|
455 |
msgstr "ein Google-Analytics-Konto für das gesamte Netzwerk verwenden"
|
456 |
|
457 |
-
#: .././admin/settings.php:
|
458 |
msgid "Refresh Properties"
|
459 |
msgstr "Eigenschaften neuladen"
|
460 |
|
461 |
-
#: .././admin/settings.php:
|
462 |
msgid "Properties/Views Settings"
|
463 |
msgstr "Frontend Einstellungen"
|
464 |
|
465 |
-
#: .././admin/settings.php:
|
466 |
msgid "exclude Super Admin tracking for the entire network"
|
467 |
msgstr "den Super-Admin im gesamten Netzwerk nicht tracken"
|
468 |
|
469 |
-
#: .././admin/settings.php:
|
470 |
msgid "Setup Tutorial & Demo"
|
471 |
msgstr "Setup Tutorial & Demo"
|
472 |
|
473 |
-
#: .././admin/settings.php:
|
474 |
msgid "Follow & Review"
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: .././admin/settings.php:
|
478 |
#, php-format
|
479 |
msgid "Your feedback and review are both important, %s!"
|
480 |
msgstr "Ihre Bewertung und Rezension sind beide wichtig, %s!"
|
481 |
|
482 |
-
#: .././admin/settings.php:
|
483 |
msgid "rate this plugin"
|
484 |
msgstr "Bewerte dieses Plugin"
|
485 |
|
486 |
-
#: .././admin/settings.php:
|
487 |
msgid "Further Reading"
|
488 |
msgstr "Mehr erfahren"
|
489 |
|
490 |
-
#: .././admin/settings.php:
|
491 |
#, php-format
|
492 |
msgid "%s by moving your website to HTTPS/SSL."
|
493 |
msgstr "%s durch Umschalten der Webseite auf HTTPS/SSL."
|
494 |
|
495 |
-
#: .././admin/settings.php:
|
496 |
msgid "Improve search rankings"
|
497 |
msgstr "Verbessern Sie Ihren Rang in den Suchergebnissen"
|
498 |
|
499 |
-
#: .././admin/settings.php:
|
500 |
#, php-format
|
501 |
msgid "Other %s written by the same author"
|
502 |
msgstr "Andere %s von diesem Autor"
|
503 |
|
504 |
-
#: .././admin/settings.php:
|
505 |
msgid "WordPress Plugins"
|
506 |
msgstr "WordPress Plugins"
|
507 |
|
508 |
-
#: .././admin/settings.php:
|
509 |
msgid "Other Services"
|
510 |
msgstr "Andere Dienste"
|
511 |
|
512 |
-
#: .././admin/settings.php:
|
513 |
#, php-format
|
514 |
msgid "Speed up your website and plug into a whole %s"
|
515 |
msgstr "Beschleunigen Sie Ihre Webseite und begeben Sie sich in ein %s"
|
516 |
|
517 |
-
#: .././admin/settings.php:
|
518 |
msgid "new level of site speed"
|
519 |
msgstr "neues Level Seitenladegeschwindigkeit."
|
520 |
|
521 |
-
#: .././admin/settings.php:
|
522 |
#, php-format
|
523 |
msgid "%s service with users tracking at IP level."
|
524 |
msgstr "%s Service mit Nutzer-Tracking auf IP-Ebene."
|
525 |
|
526 |
-
#: .././admin/settings.php:
|
527 |
msgid "Web Analytics"
|
528 |
msgstr "Web Analyse"
|
529 |
|
@@ -543,18 +544,18 @@ msgstr "Frontend Einstellungen"
|
|
543 |
msgid "Tracking Code"
|
544 |
msgstr "Tracking Code"
|
545 |
|
546 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
547 |
msgid "Today"
|
548 |
msgstr "Heute"
|
549 |
|
550 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
551 |
msgid "Yesterday"
|
552 |
msgstr "Gestern"
|
553 |
|
554 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
555 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
556 |
-
#: .././admin/widgets.php:
|
557 |
-
#: .././admin/widgets.php:
|
558 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
559 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
560 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -563,20 +564,19 @@ msgstr "Gestern"
|
|
563 |
msgid "Last %d Days"
|
564 |
msgstr "Letzte %d Tage"
|
565 |
|
566 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
567 |
-
#: .././admin/widgets.php:
|
568 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
569 |
#, php-format
|
570 |
msgid "%s Year"
|
571 |
msgid_plural "%s Years"
|
572 |
msgstr[0] ""
|
573 |
msgstr[1] ""
|
574 |
|
575 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
576 |
msgid "One"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
580 |
msgid "Three"
|
581 |
msgstr ""
|
582 |
|
@@ -585,86 +585,84 @@ msgstr ""
|
|
585 |
msgid "Unique Views"
|
586 |
msgstr "Einmalige Aufrufe"
|
587 |
|
588 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
589 |
-
#: .././admin/widgets.php:
|
590 |
-
#: .././
|
591 |
msgid "Users"
|
592 |
msgstr "Nutzer"
|
593 |
|
594 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
595 |
msgid "Organic"
|
596 |
msgstr "Organisch"
|
597 |
|
598 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
599 |
-
#: .././admin/widgets.php:
|
600 |
-
#: .././
|
601 |
msgid "Page Views"
|
602 |
msgstr "Seitenaufrufe"
|
603 |
|
604 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
605 |
-
#: .././admin/widgets.php:
|
606 |
-
#: .././
|
607 |
msgid "Bounce Rate"
|
608 |
msgstr "Absprungrate"
|
609 |
|
610 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
611 |
msgid "Location"
|
612 |
msgstr "Geografisch"
|
613 |
|
614 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
615 |
-
#: .././tools/gapi.php:
|
616 |
msgid "Referrers"
|
617 |
msgstr "Verweise"
|
618 |
|
619 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
620 |
-
#: .././tools/gapi.php:
|
621 |
msgid "Searches"
|
622 |
msgstr "Suchen"
|
623 |
|
624 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
625 |
msgid "Traffic Details"
|
626 |
msgstr "Traffic Details"
|
627 |
|
628 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
629 |
-
#: .././admin/widgets.php:
|
630 |
-
#: .././admin/widgets.php:
|
631 |
msgid "A JavaScript Error is blocking plugin resources!"
|
632 |
msgstr "Ein JavaScript-Fehler blockiert die Plugin-Ressourcen!"
|
633 |
|
634 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
635 |
msgid "Traffic Mediums"
|
636 |
msgstr "Medium"
|
637 |
|
638 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
639 |
msgid "Visitor Type"
|
640 |
msgstr "Nutzertyp"
|
641 |
|
642 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
643 |
msgid "Social Networks"
|
644 |
msgstr "soziale Netzwerke"
|
645 |
|
646 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
647 |
msgid "Search Engines"
|
648 |
msgstr "Suchmaschinen"
|
649 |
|
650 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
651 |
-
#: .././front/setup.php:101
|
652 |
msgid "Organic Search"
|
653 |
msgstr "Organische Suche"
|
654 |
|
655 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
656 |
-
#: .././front/setup.php:102
|
657 |
msgid "Pages/Session"
|
658 |
msgstr "Seiten/Sitzung"
|
659 |
|
660 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
-
#: .././admin/widgets.php:
|
667 |
-
#: .././admin/widgets.php:
|
668 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
669 |
msgstr ""
|
670 |
"ungültige Antwort. Weitere Details finden Sie in der JavaScript-Konsole (F12)"
|
@@ -673,12 +671,12 @@ msgstr ""
|
|
673 |
msgid "Not enough data collected"
|
674 |
msgstr "Nicht genug Daten vorhanden"
|
675 |
|
676 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
677 |
-
#: .././admin/widgets.php:
|
678 |
-
#: .././admin/widgets.php:
|
679 |
-
#: .././admin/widgets.php:
|
680 |
-
#: .././admin/widgets.php:
|
681 |
-
#: .././admin/widgets.php:
|
682 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
683 |
msgid "This report is unavailable"
|
684 |
msgstr "Der Bericht ist nicht verfügbar"
|
@@ -687,25 +685,29 @@ msgstr "Der Bericht ist nicht verfügbar"
|
|
687 |
msgid "report generated by"
|
688 |
msgstr "Bericht wurde generiert von"
|
689 |
|
690 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
691 |
msgid "Settings"
|
692 |
msgstr "Einstellungen"
|
693 |
|
694 |
-
#: .././admin/setup.php:
|
695 |
#, php-format
|
696 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: .././admin/setup.php:
|
700 |
#, php-format
|
701 |
msgid "For details, check out %1$s and %2$s."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: .././admin/setup.php:
|
705 |
msgid "the documentation page"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: .././admin/setup.php:
|
709 |
msgid "the plugin's settings page"
|
710 |
msgstr ""
|
711 |
|
@@ -713,10 +715,6 @@ msgstr ""
|
|
713 |
msgid "Google Analytics Dashboard"
|
714 |
msgstr "Google Analytics Dashboard"
|
715 |
|
716 |
-
#: .././admin/widgets.php:32
|
717 |
-
msgid "This plugin needs an authorization:"
|
718 |
-
msgstr "Diese Plugin benötigt eine Autorisierung:"
|
719 |
-
|
720 |
#: .././admin/widgets.php:66
|
721 |
msgid "Something went wrong while retrieving profiles list."
|
722 |
msgstr ""
|
@@ -746,53 +744,53 @@ msgstr ""
|
|
746 |
msgid "Find out more!"
|
747 |
msgstr "Erfahre mehr!"
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
msgid "Real-Time"
|
751 |
msgstr "Echtzeit"
|
752 |
|
753 |
-
#: .././admin/widgets.php:
|
754 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
755 |
-
#: .././tools/gapi.php:
|
756 |
-
#: .././tools/gapi.php:
|
757 |
msgid "Sessions"
|
758 |
msgstr "Sitzungen"
|
759 |
|
760 |
-
#: .././admin/widgets.php:
|
761 |
msgid "Pages"
|
762 |
msgstr "Seiten"
|
763 |
|
764 |
-
#: .././admin/widgets.php:
|
765 |
msgid "REFERRAL"
|
766 |
msgstr "VERWEISUNG"
|
767 |
|
768 |
-
#: .././admin/widgets.php:
|
769 |
msgid "ORGANIC"
|
770 |
msgstr "ORGANISCH"
|
771 |
|
772 |
-
#: .././admin/widgets.php:
|
773 |
-
#: .././admin/widgets.php:
|
774 |
msgid "SOCIAL"
|
775 |
msgstr "SOZIAL"
|
776 |
|
777 |
-
#: .././admin/widgets.php:
|
778 |
-
#: .././admin/widgets.php:
|
779 |
msgid "CAMPAIGN"
|
780 |
msgstr "KAMPANIE"
|
781 |
|
782 |
-
#: .././admin/widgets.php:
|
783 |
-
#: .././admin/widgets.php:
|
784 |
msgid "DIRECT"
|
785 |
msgstr "DIREKT"
|
786 |
|
787 |
-
#: .././admin/widgets.php:
|
788 |
msgid "NEW"
|
789 |
msgstr "NEUE"
|
790 |
|
791 |
-
#: .././admin/widgets.php:
|
792 |
msgid "REFERRALS"
|
793 |
msgstr "VERWEISUNGEN"
|
794 |
|
795 |
-
#: .././admin/widgets.php:
|
796 |
msgid "KEYWORDS"
|
797 |
msgstr "STICHWORTE"
|
798 |
|
@@ -800,10 +798,6 @@ msgstr "STICHWORTE"
|
|
800 |
msgid "Will display your google analytics stats in a widget"
|
801 |
msgstr "Zeigt deine Google Analytics Statistik in einem Widget an"
|
802 |
|
803 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
804 |
-
msgid "trend"
|
805 |
-
msgstr "Entwicklung"
|
806 |
-
|
807 |
#: .././front/widgets.php:123
|
808 |
msgid "Period:"
|
809 |
msgstr "Dauer:"
|
@@ -852,7 +846,7 @@ msgstr "Statistiken für:"
|
|
852 |
msgid "Give credits:"
|
853 |
msgstr "Verweise auf:"
|
854 |
|
855 |
-
#: .././gadwp.php:
|
856 |
msgid "This is not allowed, read the documentation!"
|
857 |
msgstr "Das ist nicht erlaubt! Bitte lesen Sie die Dokumentation."
|
858 |
|
@@ -876,42 +870,45 @@ msgstr "Zugriffscode:"
|
|
876 |
msgid "Save Access Code"
|
877 |
msgstr "Zugriffscode speichern"
|
878 |
|
879 |
-
#: .././tools/gapi.php:
|
880 |
msgid "Organic Searches"
|
881 |
msgstr "Organische Suche"
|
882 |
|
883 |
-
#: .././tools/gapi.php:
|
884 |
msgid "Unique Page Views"
|
885 |
msgstr "Einmalige Seitenaufrufe"
|
886 |
|
887 |
-
#: .././tools/gapi.php:
|
888 |
msgid "Hour"
|
889 |
msgstr "Stunde"
|
890 |
|
891 |
-
#: .././tools/gapi.php:
|
892 |
msgid "Date"
|
893 |
msgstr "Datum"
|
894 |
|
895 |
-
#: .././tools/gapi.php:
|
896 |
msgid "Views"
|
897 |
msgstr "Aufrufe"
|
898 |
|
899 |
-
#: .././tools/gapi.php:
|
900 |
msgid "Countries"
|
901 |
msgstr "Länder"
|
902 |
|
903 |
-
#: .././tools/gapi.php:
|
904 |
msgid "Cities from"
|
905 |
msgstr "Städte von"
|
906 |
|
907 |
-
#: .././tools/gapi.php:
|
908 |
msgid "Channels"
|
909 |
msgstr "Kanäle"
|
910 |
|
911 |
-
#: .././tools/gapi.php:
|
912 |
msgid "Type"
|
913 |
msgstr "Typ"
|
914 |
|
|
|
|
|
|
|
915 |
#~ msgid "Last 7 Days"
|
916 |
#~ msgstr "Letzte 7 Tage"
|
917 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:52+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:52+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Alin Marcu\n"
|
10 |
"Language: de\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
19 |
"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
20 |
"X-Poedit-Basepath: .\n"
|
21 |
"X-Poedit-SourceCharset: UTF-8\n"
|
22 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
23 |
"X-Poedit-SearchPath-0: ../.\n"
|
24 |
|
25 |
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
+
#: .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Einstellungen gespeichert."
|
34 |
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
40 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
41 |
+
#: .././admin/settings.php:1082
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "Nicht schummeln ;)"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Etwas ist schief gelaufen. Überprüfen Sie %1$s oder %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Fehler & Debug"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
62 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "das Plugin autorisieren"
|
65 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
84 |
+
#: .././admin/settings.php:1234
|
85 |
msgid "Save Changes"
|
86 |
msgstr "Speichern"
|
87 |
|
144 |
msgstr "Eigene Definitionen"
|
145 |
|
146 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
147 |
+
#: .././admin/settings.php:1217
|
148 |
msgid "Exclude Tracking"
|
149 |
msgstr "Exkludiere Tracking"
|
150 |
|
168 |
msgid "Enabled"
|
169 |
msgstr "Aktiviert"
|
170 |
|
171 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
172 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
173 |
#: .././admin/widgets.php:61
|
174 |
msgid "View Name:"
|
175 |
msgstr "Anzeigename:"
|
176 |
|
177 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
178 |
msgid "Tracking ID:"
|
179 |
msgstr "Tracking ID:"
|
180 |
|
181 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
182 |
msgid "Default URL:"
|
183 |
msgstr "Standard URL:"
|
184 |
|
185 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
186 |
msgid "Time Zone:"
|
187 |
msgstr "Zeitzone"
|
188 |
|
306 |
msgid "Plugin Configuration"
|
307 |
msgstr "Plugin Konfiguration"
|
308 |
|
309 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
310 |
msgid ""
|
311 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
312 |
"error, try this solution:"
|
318 |
msgid "Library conflicts between WordPress plugins"
|
319 |
msgstr "Die Bibliotheken stehen im Konflikt mit anderen WordPress-Plugins"
|
320 |
|
321 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
322 |
msgid "Plugin authorization succeeded."
|
323 |
msgstr "Plugin Autorisierung erfolgreich."
|
324 |
|
325 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
326 |
msgid ""
|
327 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
328 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
331 |
"(UA-XXXXX-X). Versuchen Sie es erneut und benutzen Sie den roten Link um den "
|
332 |
"Zugriffscode zu erhalten"
|
333 |
|
334 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
335 |
msgid "Cleared Cache."
|
336 |
msgstr "Cache geleert."
|
337 |
|
338 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
339 |
msgid "Token Reseted and Revoked."
|
340 |
msgstr "Token zurückgesetzt und entzogen."
|
341 |
|
343 |
msgid "All errors reseted."
|
344 |
msgstr "Alle Fehler zurückgesetzt."
|
345 |
|
346 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
347 |
msgid "All other domains/properties were removed."
|
348 |
msgstr "Alle anderen Domains/Einstellungen wurden entfernt."
|
349 |
|
350 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
351 |
msgid "Google Analytics Settings"
|
352 |
msgstr "Google Analytics Einstellungen"
|
353 |
|
354 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
355 |
msgid "Use the red link (see below) to generate and get your access code!"
|
356 |
msgstr ""
|
357 |
"Benutzen Sie den roten Link (unterhalb) um Ihren Zugriffscode zu generieren!"
|
358 |
|
359 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
360 |
msgid "Plugin Authorization"
|
361 |
msgstr "Plugin Autorisierung"
|
362 |
|
363 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
370 |
"Sie sollten sich das %1$s und das %2$s bevor Sie mit Autorisierung beginnen. "
|
371 |
"Das Plugin benötigt einen richtig konfigurierten Google Analytics Account!"
|
372 |
|
373 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
374 |
msgid "video"
|
375 |
msgstr "Video ansehen"
|
376 |
|
377 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
378 |
msgid "tutorial"
|
379 |
msgstr "Tutorial lesen"
|
380 |
|
381 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
382 |
msgid "use your own API Project credentials"
|
383 |
msgstr "eigene API-Projekt-Zugangsdaten verwenden"
|
384 |
|
385 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
386 |
msgid "API Key:"
|
387 |
msgstr "API Key:"
|
388 |
|
389 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
390 |
msgid "Client ID:"
|
391 |
msgstr "Client ID:"
|
392 |
|
393 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
394 |
msgid "Client Secret:"
|
395 |
msgstr "Client Secret:"
|
396 |
|
397 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
398 |
msgid "Clear Authorization"
|
399 |
msgstr "Autorisierung zurücksetzen"
|
400 |
|
401 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
402 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
403 |
msgid "Clear Cache"
|
404 |
msgstr "Cache leeren"
|
405 |
|
406 |
+
#: .././admin/settings.php:873
|
407 |
msgid "Reset Errors"
|
408 |
msgstr "Fehler zurücksetzen"
|
409 |
|
410 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
411 |
msgid "General Settings"
|
412 |
msgstr "Allgemeine Einstellungen"
|
413 |
|
414 |
+
#: .././admin/settings.php:882
|
415 |
msgid "Select View:"
|
416 |
msgstr "Wähle Ansicht:"
|
417 |
|
418 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
419 |
msgid "Property not found"
|
420 |
msgstr "Eigenschaft nicht gefunden"
|
421 |
|
422 |
+
#: .././admin/settings.php:899
|
423 |
msgid "Lock Selection"
|
424 |
msgstr "Auswahl sperren"
|
425 |
|
426 |
+
#: .././admin/settings.php:918
|
427 |
msgid "Theme Color:"
|
428 |
msgstr "Theme-Farbe:"
|
429 |
|
430 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
431 |
msgid "Automatic Updates"
|
432 |
msgstr "Automatische Updates"
|
433 |
|
434 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
435 |
msgid ""
|
436 |
"automatic updates for minor versions (security and maintenance releases only)"
|
437 |
msgstr ""
|
438 |
"Automatische Updates für Punkt-Releases (Sicherheits- und "
|
439 |
"Wartungsaktualisierungen)"
|
440 |
|
441 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
442 |
#: .././admin/widgets.php:32
|
443 |
msgid "Authorize Plugin"
|
444 |
msgstr "Plugin autorisieren"
|
445 |
|
446 |
+
#: .././admin/settings.php:1027
|
447 |
msgid "Properties refreshed."
|
448 |
msgstr "Eigenschaften neugeladen."
|
449 |
|
450 |
+
#: .././admin/settings.php:1112
|
451 |
msgid "Network Setup"
|
452 |
msgstr "Netzwerk-Einrichtung"
|
453 |
|
454 |
+
#: .././admin/settings.php:1122
|
455 |
msgid "use a single Google Analytics account for the entire network"
|
456 |
msgstr "ein Google-Analytics-Konto für das gesamte Netzwerk verwenden"
|
457 |
|
458 |
+
#: .././admin/settings.php:1167
|
459 |
msgid "Refresh Properties"
|
460 |
msgstr "Eigenschaften neuladen"
|
461 |
|
462 |
+
#: .././admin/settings.php:1173
|
463 |
msgid "Properties/Views Settings"
|
464 |
msgstr "Frontend Einstellungen"
|
465 |
|
466 |
+
#: .././admin/settings.php:1227
|
467 |
msgid "exclude Super Admin tracking for the entire network"
|
468 |
msgstr "den Super-Admin im gesamten Netzwerk nicht tracken"
|
469 |
|
470 |
+
#: .././admin/settings.php:1275
|
471 |
msgid "Setup Tutorial & Demo"
|
472 |
msgstr "Setup Tutorial & Demo"
|
473 |
|
474 |
+
#: .././admin/settings.php:1283
|
475 |
msgid "Follow & Review"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: .././admin/settings.php:1309
|
479 |
#, php-format
|
480 |
msgid "Your feedback and review are both important, %s!"
|
481 |
msgstr "Ihre Bewertung und Rezension sind beide wichtig, %s!"
|
482 |
|
483 |
+
#: .././admin/settings.php:1309
|
484 |
msgid "rate this plugin"
|
485 |
msgstr "Bewerte dieses Plugin"
|
486 |
|
487 |
+
#: .././admin/settings.php:1315
|
488 |
msgid "Further Reading"
|
489 |
msgstr "Mehr erfahren"
|
490 |
|
491 |
+
#: .././admin/settings.php:1322
|
492 |
#, php-format
|
493 |
msgid "%s by moving your website to HTTPS/SSL."
|
494 |
msgstr "%s durch Umschalten der Webseite auf HTTPS/SSL."
|
495 |
|
496 |
+
#: .././admin/settings.php:1322
|
497 |
msgid "Improve search rankings"
|
498 |
msgstr "Verbessern Sie Ihren Rang in den Suchergebnissen"
|
499 |
|
500 |
+
#: .././admin/settings.php:1329
|
501 |
#, php-format
|
502 |
msgid "Other %s written by the same author"
|
503 |
msgstr "Andere %s von diesem Autor"
|
504 |
|
505 |
+
#: .././admin/settings.php:1329
|
506 |
msgid "WordPress Plugins"
|
507 |
msgstr "WordPress Plugins"
|
508 |
|
509 |
+
#: .././admin/settings.php:1335
|
510 |
msgid "Other Services"
|
511 |
msgstr "Andere Dienste"
|
512 |
|
513 |
+
#: .././admin/settings.php:1342
|
514 |
#, php-format
|
515 |
msgid "Speed up your website and plug into a whole %s"
|
516 |
msgstr "Beschleunigen Sie Ihre Webseite und begeben Sie sich in ein %s"
|
517 |
|
518 |
+
#: .././admin/settings.php:1342
|
519 |
msgid "new level of site speed"
|
520 |
msgstr "neues Level Seitenladegeschwindigkeit."
|
521 |
|
522 |
+
#: .././admin/settings.php:1349
|
523 |
#, php-format
|
524 |
msgid "%s service with users tracking at IP level."
|
525 |
msgstr "%s Service mit Nutzer-Tracking auf IP-Ebene."
|
526 |
|
527 |
+
#: .././admin/settings.php:1349
|
528 |
msgid "Web Analytics"
|
529 |
msgstr "Web Analyse"
|
530 |
|
544 |
msgid "Tracking Code"
|
545 |
msgstr "Tracking Code"
|
546 |
|
547 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
548 |
msgid "Today"
|
549 |
msgstr "Heute"
|
550 |
|
551 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
552 |
msgid "Yesterday"
|
553 |
msgstr "Gestern"
|
554 |
|
555 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
556 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
557 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
558 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
559 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
560 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
561 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
564 |
msgid "Last %d Days"
|
565 |
msgstr "Letzte %d Tage"
|
566 |
|
567 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
568 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
569 |
#, php-format
|
570 |
msgid "%s Year"
|
571 |
msgid_plural "%s Years"
|
572 |
msgstr[0] ""
|
573 |
msgstr[1] ""
|
574 |
|
575 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
576 |
msgid "One"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
580 |
msgid "Three"
|
581 |
msgstr ""
|
582 |
|
585 |
msgid "Unique Views"
|
586 |
msgstr "Einmalige Aufrufe"
|
587 |
|
588 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
589 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
590 |
+
#: .././tools/gapi.php:357
|
591 |
msgid "Users"
|
592 |
msgstr "Nutzer"
|
593 |
|
594 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
595 |
msgid "Organic"
|
596 |
msgstr "Organisch"
|
597 |
|
598 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
599 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
600 |
+
#: .././tools/gapi.php:360
|
601 |
msgid "Page Views"
|
602 |
msgstr "Seitenaufrufe"
|
603 |
|
604 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
605 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
606 |
+
#: .././tools/gapi.php:363
|
607 |
msgid "Bounce Rate"
|
608 |
msgstr "Absprungrate"
|
609 |
|
610 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
611 |
msgid "Location"
|
612 |
msgstr "Geografisch"
|
613 |
|
614 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
615 |
+
#: .././tools/gapi.php:502
|
616 |
msgid "Referrers"
|
617 |
msgstr "Verweise"
|
618 |
|
619 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
620 |
+
#: .././tools/gapi.php:535
|
621 |
msgid "Searches"
|
622 |
msgstr "Suchen"
|
623 |
|
624 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
625 |
msgid "Traffic Details"
|
626 |
msgstr "Traffic Details"
|
627 |
|
628 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
629 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
630 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
631 |
msgid "A JavaScript Error is blocking plugin resources!"
|
632 |
msgstr "Ein JavaScript-Fehler blockiert die Plugin-Ressourcen!"
|
633 |
|
634 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
635 |
msgid "Traffic Mediums"
|
636 |
msgstr "Medium"
|
637 |
|
638 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
639 |
msgid "Visitor Type"
|
640 |
msgstr "Nutzertyp"
|
641 |
|
642 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
643 |
msgid "Social Networks"
|
644 |
msgstr "soziale Netzwerke"
|
645 |
|
646 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
647 |
msgid "Search Engines"
|
648 |
msgstr "Suchmaschinen"
|
649 |
|
650 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
651 |
msgid "Organic Search"
|
652 |
msgstr "Organische Suche"
|
653 |
|
654 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
655 |
msgid "Pages/Session"
|
656 |
msgstr "Seiten/Sitzung"
|
657 |
|
658 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
659 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
660 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
661 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
662 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
663 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
664 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
665 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
666 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
667 |
msgstr ""
|
668 |
"ungültige Antwort. Weitere Details finden Sie in der JavaScript-Konsole (F12)"
|
671 |
msgid "Not enough data collected"
|
672 |
msgstr "Nicht genug Daten vorhanden"
|
673 |
|
674 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
675 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
676 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
677 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
678 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
679 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
680 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
681 |
msgid "This report is unavailable"
|
682 |
msgstr "Der Bericht ist nicht verfügbar"
|
685 |
msgid "report generated by"
|
686 |
msgstr "Bericht wurde generiert von"
|
687 |
|
688 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
689 |
+
msgid "This plugin needs an authorization:"
|
690 |
+
msgstr "Diese Plugin benötigt eine Autorisierung:"
|
691 |
+
|
692 |
+
#: .././admin/setup.php:227
|
693 |
msgid "Settings"
|
694 |
msgstr "Einstellungen"
|
695 |
|
696 |
+
#: .././admin/setup.php:239
|
697 |
#, php-format
|
698 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: .././admin/setup.php:239
|
702 |
#, php-format
|
703 |
msgid "For details, check out %1$s and %2$s."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: .././admin/setup.php:239
|
707 |
msgid "the documentation page"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: .././admin/setup.php:239
|
711 |
msgid "the plugin's settings page"
|
712 |
msgstr ""
|
713 |
|
715 |
msgid "Google Analytics Dashboard"
|
716 |
msgstr "Google Analytics Dashboard"
|
717 |
|
|
|
|
|
|
|
|
|
718 |
#: .././admin/widgets.php:66
|
719 |
msgid "Something went wrong while retrieving profiles list."
|
720 |
msgstr ""
|
744 |
msgid "Find out more!"
|
745 |
msgstr "Erfahre mehr!"
|
746 |
|
747 |
+
#: .././admin/widgets.php:113
|
748 |
msgid "Real-Time"
|
749 |
msgstr "Echtzeit"
|
750 |
|
751 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
752 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
753 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
754 |
+
#: .././tools/gapi.php:694
|
755 |
msgid "Sessions"
|
756 |
msgstr "Sitzungen"
|
757 |
|
758 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
759 |
msgid "Pages"
|
760 |
msgstr "Seiten"
|
761 |
|
762 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
763 |
msgid "REFERRAL"
|
764 |
msgstr "VERWEISUNG"
|
765 |
|
766 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
767 |
msgid "ORGANIC"
|
768 |
msgstr "ORGANISCH"
|
769 |
|
770 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
771 |
+
#: .././admin/widgets.php:477
|
772 |
msgid "SOCIAL"
|
773 |
msgstr "SOZIAL"
|
774 |
|
775 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
776 |
+
#: .././admin/widgets.php:478
|
777 |
msgid "CAMPAIGN"
|
778 |
msgstr "KAMPANIE"
|
779 |
|
780 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
781 |
+
#: .././admin/widgets.php:481
|
782 |
msgid "DIRECT"
|
783 |
msgstr "DIREKT"
|
784 |
|
785 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
786 |
msgid "NEW"
|
787 |
msgstr "NEUE"
|
788 |
|
789 |
+
#: .././admin/widgets.php:355
|
790 |
msgid "REFERRALS"
|
791 |
msgstr "VERWEISUNGEN"
|
792 |
|
793 |
+
#: .././admin/widgets.php:358
|
794 |
msgid "KEYWORDS"
|
795 |
msgstr "STICHWORTE"
|
796 |
|
798 |
msgid "Will display your google analytics stats in a widget"
|
799 |
msgstr "Zeigt deine Google Analytics Statistik in einem Widget an"
|
800 |
|
|
|
|
|
|
|
|
|
801 |
#: .././front/widgets.php:123
|
802 |
msgid "Period:"
|
803 |
msgstr "Dauer:"
|
846 |
msgid "Give credits:"
|
847 |
msgstr "Verweise auf:"
|
848 |
|
849 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
850 |
msgid "This is not allowed, read the documentation!"
|
851 |
msgstr "Das ist nicht erlaubt! Bitte lesen Sie die Dokumentation."
|
852 |
|
870 |
msgid "Save Access Code"
|
871 |
msgstr "Zugriffscode speichern"
|
872 |
|
873 |
+
#: .././tools/gapi.php:366
|
874 |
msgid "Organic Searches"
|
875 |
msgstr "Organische Suche"
|
876 |
|
877 |
+
#: .././tools/gapi.php:369
|
878 |
msgid "Unique Page Views"
|
879 |
msgstr "Einmalige Seitenaufrufe"
|
880 |
|
881 |
+
#: .././tools/gapi.php:377
|
882 |
msgid "Hour"
|
883 |
msgstr "Stunde"
|
884 |
|
885 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
886 |
msgid "Date"
|
887 |
msgstr "Datum"
|
888 |
|
889 |
+
#: .././tools/gapi.php:470
|
890 |
msgid "Views"
|
891 |
msgstr "Aufrufe"
|
892 |
|
893 |
+
#: .././tools/gapi.php:556
|
894 |
msgid "Countries"
|
895 |
msgstr "Länder"
|
896 |
|
897 |
+
#: .././tools/gapi.php:566
|
898 |
msgid "Cities from"
|
899 |
msgstr "Städte von"
|
900 |
|
901 |
+
#: .././tools/gapi.php:619
|
902 |
msgid "Channels"
|
903 |
msgstr "Kanäle"
|
904 |
|
905 |
+
#: .././tools/gapi.php:665
|
906 |
msgid "Type"
|
907 |
msgstr "Typ"
|
908 |
|
909 |
+
#~ msgid "trend"
|
910 |
+
#~ msgstr "Entwicklung"
|
911 |
+
|
912 |
#~ msgid "Last 7 Days"
|
913 |
#~ msgstr "Letzte 7 Tage"
|
914 |
|
languages/google-analytics-dashboard-for-wp-el_GR.mo
ADDED
Binary file
|
languages/google-analytics-dashboard-for-wp-el_GR.po
ADDED
@@ -0,0 +1,882 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2015 Google Analytics Dashboard for WP
|
2 |
+
# This file is distributed under the same license as the Google Analytics Dashboard for WP package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
8 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
9 |
+
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
+
"Language-Team: Alin Marcu\n"
|
11 |
+
"Language: el_GR\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
+
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
20 |
+
"_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;"
|
21 |
+
"esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
+
"X-Poedit-Basepath: .\n"
|
23 |
+
"X-Poedit-SearchPath-0: ../.\n"
|
24 |
+
|
25 |
+
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
26 |
+
msgid "Analytics"
|
27 |
+
msgstr "Αναλυτικά Δεδομένα"
|
28 |
+
|
29 |
+
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
30 |
+
#: .././admin/settings.php:795 .././admin/settings.php:1069
|
31 |
+
msgid "Settings saved."
|
32 |
+
msgstr "Οι ρυθμίσεις αποθηκεύθηκαν"
|
33 |
+
|
34 |
+
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
35 |
+
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
+
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1030
|
37 |
+
#: .././admin/settings.php:1055 .././admin/settings.php:1065 .././admin/settings.php:1071
|
38 |
+
#: .././admin/settings.php:1082
|
39 |
+
msgid "Cheating Huh?"
|
40 |
+
msgstr "Εξαπάτηση ?"
|
41 |
+
|
42 |
+
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
43 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
44 |
+
#, php-format
|
45 |
+
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
+
msgstr "Κάτι πήγε στραβά, ελέγξτε %1$s ή %2$s.."
|
47 |
+
|
48 |
+
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
49 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
50 |
+
#: .././admin/setup.php:46 .././admin/setup.php:59
|
51 |
+
msgid "Errors & Debug"
|
52 |
+
msgstr "Σφάλματα & εντοπισμού σφαλμάτων"
|
53 |
+
|
54 |
+
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
55 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
56 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
57 |
+
msgid "authorize the plugin"
|
58 |
+
msgstr "να εγκρίθει το plugin"
|
59 |
+
|
60 |
+
#: .././admin/settings.php:100
|
61 |
+
msgid "Google Analytics Frontend Settings"
|
62 |
+
msgstr "Google Analytics Frontend ρυθμίσεις"
|
63 |
+
|
64 |
+
#: .././admin/settings.php:110 .././admin/settings.php:205
|
65 |
+
msgid "Permissions"
|
66 |
+
msgstr "Δικαιώματα"
|
67 |
+
|
68 |
+
#: .././admin/settings.php:113 .././admin/settings.php:208
|
69 |
+
msgid "Show stats to:"
|
70 |
+
msgstr "Εμφάνιση στατιστικών σε:"
|
71 |
+
|
72 |
+
#: .././admin/settings.php:154
|
73 |
+
msgid "enable web page reports on frontend"
|
74 |
+
msgstr "ενεργοποίηση των αναφορών στο frontend της ιστοσελίδας"
|
75 |
+
|
76 |
+
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
77 |
+
#: .././admin/settings.php:944 .././admin/settings.php:1234
|
78 |
+
msgid "Save Changes"
|
79 |
+
msgstr "Αποθήκευση Αλλαγών"
|
80 |
+
|
81 |
+
#: .././admin/settings.php:195
|
82 |
+
msgid "Google Analytics Backend Settings"
|
83 |
+
msgstr "Google Analytics Backend ρυθμίσεις"
|
84 |
+
|
85 |
+
#: .././admin/settings.php:251
|
86 |
+
msgid "enable Switch View functionality"
|
87 |
+
msgstr "ενεργοποίηση λειτουργίας Εναλλαγη Όψης"
|
88 |
+
|
89 |
+
#: .././admin/settings.php:262
|
90 |
+
msgid "enable reports on Posts List and Pages List"
|
91 |
+
msgstr "ενεργοποίηση αναφορών στην Λίστα Δημοσιεύσεων και Λίστα Σελίδων"
|
92 |
+
|
93 |
+
#: .././admin/settings.php:273
|
94 |
+
msgid "enable the main Dashboard Widget"
|
95 |
+
msgstr "ενεργοποίηση του κύριου widget στο Ταμπλό"
|
96 |
+
|
97 |
+
#: .././admin/settings.php:277
|
98 |
+
msgid "Real-Time Settings"
|
99 |
+
msgstr "Ρυθμίσεις Πραγματικού-Χρόνου"
|
100 |
+
|
101 |
+
#: .././admin/settings.php:280
|
102 |
+
msgid "Maximum number of pages to display on real-time tab:"
|
103 |
+
msgstr "Μέγιστος αριθμός σελίδων που εμφανίζονται στην καρτέλα πραγματικού-χρόνου:"
|
104 |
+
|
105 |
+
#: .././admin/settings.php:285
|
106 |
+
msgid "Location Settings"
|
107 |
+
msgstr "Ρυθμίσεις Τοποθεσίας"
|
108 |
+
|
109 |
+
#: .././admin/settings.php:289
|
110 |
+
msgid "Target Geo Map to country:"
|
111 |
+
msgstr "Στοχεύστε το Geo Map στην χώρα:"
|
112 |
+
|
113 |
+
#: .././admin/settings.php:327
|
114 |
+
msgid ""
|
115 |
+
"The tracking component is disabled. You should set <strong>Tracking Options</strong> to "
|
116 |
+
"<strong>Enabled</strong>"
|
117 |
+
msgstr ""
|
118 |
+
"Το αντικείμενο παρακολούθησης είναι απενεργοποιημένο. Πρέπει να θέσετε το <strong>Επιλογές "
|
119 |
+
"Εντοπισμού</strong> σε <strong>Ενεργό</strong>"
|
120 |
+
|
121 |
+
#: .././admin/settings.php:332
|
122 |
+
msgid "Google Analytics Tracking Code"
|
123 |
+
msgstr "Κώδικας Παρακολούθησης του Google Analytics"
|
124 |
+
|
125 |
+
#: .././admin/settings.php:341
|
126 |
+
msgid "Basic Settings"
|
127 |
+
msgstr "Βασικές Ρυθμίσεις"
|
128 |
+
|
129 |
+
#: .././admin/settings.php:342 .././admin/settings.php:408
|
130 |
+
msgid "Events Tracking"
|
131 |
+
msgstr "Παρακολούθηση Συμβάντων"
|
132 |
+
|
133 |
+
#: .././admin/settings.php:343 .././admin/settings.php:456
|
134 |
+
msgid "Custom Definitions"
|
135 |
+
msgstr "Προσαρμοσμένοι Ορισμοί"
|
136 |
+
|
137 |
+
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1217
|
138 |
+
msgid "Exclude Tracking"
|
139 |
+
msgstr "Αποκλεισμός Εντοπισμού"
|
140 |
+
|
141 |
+
#: .././admin/settings.php:345
|
142 |
+
msgid "Advanced Settings"
|
143 |
+
msgstr "Προχωρημένες Ρυθμίσεις"
|
144 |
+
|
145 |
+
#: .././admin/settings.php:353
|
146 |
+
msgid "Tracking Settings"
|
147 |
+
msgstr "Ρυθμίσεις Εντοπισμού"
|
148 |
+
|
149 |
+
#: .././admin/settings.php:356
|
150 |
+
msgid "Tracking Options:"
|
151 |
+
msgstr "Επιλογές Εντοπισμού:"
|
152 |
+
|
153 |
+
#: .././admin/settings.php:358
|
154 |
+
msgid "Disabled"
|
155 |
+
msgstr "Απενεργοποιημένο"
|
156 |
+
|
157 |
+
#: .././admin/settings.php:359
|
158 |
+
msgid "Enabled"
|
159 |
+
msgstr "Ενεργοποιημένο"
|
160 |
+
|
161 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889 .././admin/settings.php:911
|
162 |
+
#: .././admin/settings.php:1190 .././admin/widgets.php:61
|
163 |
+
msgid "View Name:"
|
164 |
+
msgstr "Προβολή Ονόματος:"
|
165 |
+
|
166 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
167 |
+
msgid "Tracking ID:"
|
168 |
+
msgstr "Tracking ID:"
|
169 |
+
|
170 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
171 |
+
msgid "Default URL:"
|
172 |
+
msgstr "Προκαθορισμένο URL:"
|
173 |
+
|
174 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
175 |
+
msgid "Time Zone:"
|
176 |
+
msgstr "Ζώνη Ώρας"
|
177 |
+
|
178 |
+
#: .././admin/settings.php:372
|
179 |
+
msgid "Basic Tracking"
|
180 |
+
msgstr "Βασική Παρακολούθηση"
|
181 |
+
|
182 |
+
#: .././admin/settings.php:375
|
183 |
+
msgid "Tracking Type:"
|
184 |
+
msgstr "Τύπος Παρακολούθησης"
|
185 |
+
|
186 |
+
#: .././admin/settings.php:377
|
187 |
+
msgid "Classic Analytics"
|
188 |
+
msgstr "Κλασσικά Αναλυτικά δεδομένα"
|
189 |
+
|
190 |
+
#: .././admin/settings.php:378
|
191 |
+
msgid "Universal Analytics"
|
192 |
+
msgstr "Γενικά Αναλυτικά Δεδομένα"
|
193 |
+
|
194 |
+
#: .././admin/settings.php:389
|
195 |
+
msgid "anonymize IPs while tracking"
|
196 |
+
msgstr "ανωνυμοποίηση ΙΡs κατά τη διάρκεια παρακολούθησης"
|
197 |
+
|
198 |
+
#: .././admin/settings.php:400
|
199 |
+
msgid "enable remarketing, demographics and interests reports"
|
200 |
+
msgstr "ενεργοποίηση αναφορών για remarketing, δημογραφικά και ενδιαφέροντα"
|
201 |
+
|
202 |
+
#: .././admin/settings.php:418
|
203 |
+
msgid "track downloads, mailto and outbound links"
|
204 |
+
msgstr "παρακολούθηση λήψεων, εξερχόμενων μηνυμάτων και εξερχόμενων συνδέσεων"
|
205 |
+
|
206 |
+
#: .././admin/settings.php:422
|
207 |
+
msgid "Downloads Regex:"
|
208 |
+
msgstr "Λήψεις Regex:"
|
209 |
+
|
210 |
+
#: .././admin/settings.php:433
|
211 |
+
msgid "track affiliate links matching this regex"
|
212 |
+
msgstr "παρακολούθηση θυγατρικών συνδέσμων που ταιριάζουν σε αυτο το regex"
|
213 |
+
|
214 |
+
#: .././admin/settings.php:437
|
215 |
+
msgid "Affiliates Regex:"
|
216 |
+
msgstr "Θυγατρικό Regex:"
|
217 |
+
|
218 |
+
#: .././admin/settings.php:448
|
219 |
+
msgid "track fragment identifiers, hashmarks (#) in URI links"
|
220 |
+
msgstr "παρακολούθηση μέρους αναγνωριστικών, δίεσεων (#) σε συνδέσμους URI"
|
221 |
+
|
222 |
+
#: .././admin/settings.php:459
|
223 |
+
msgid "Authors:"
|
224 |
+
msgstr "Συγγραφείς:"
|
225 |
+
|
226 |
+
#: .././admin/settings.php:467
|
227 |
+
msgid "Publication Year:"
|
228 |
+
msgstr "Χρονιά Δημοσίευσης:"
|
229 |
+
|
230 |
+
#: .././admin/settings.php:475
|
231 |
+
msgid "Categories:"
|
232 |
+
msgstr "Κατηγορίες:"
|
233 |
+
|
234 |
+
#: .././admin/settings.php:483
|
235 |
+
msgid "User Type:"
|
236 |
+
msgstr "Τύπος Χρήστη:"
|
237 |
+
|
238 |
+
#: .././admin/settings.php:495
|
239 |
+
msgid "Advanced Tracking"
|
240 |
+
msgstr "Προηγμένη Παρακολούθηση"
|
241 |
+
|
242 |
+
#: .././admin/settings.php:498
|
243 |
+
msgid "Page Speed SR:"
|
244 |
+
msgstr "Ταχύτητα Σελίδας SR:"
|
245 |
+
|
246 |
+
#: .././admin/settings.php:509
|
247 |
+
msgid "exclude events from bounce-rate calculation"
|
248 |
+
msgstr "αποκελισμός συμβάντων απο υπολογισμούς bounce-rate"
|
249 |
+
|
250 |
+
#: .././admin/settings.php:520
|
251 |
+
msgid "enable enhanced link attribution"
|
252 |
+
msgstr "ενεργοποίηση απόδοσης ενισχυμένου συνδέσμου"
|
253 |
+
|
254 |
+
#: .././admin/settings.php:531
|
255 |
+
msgid "enable AdSense account linking"
|
256 |
+
msgstr "ενεργοποίηση λογαριασμού σύνδεσης AdSense "
|
257 |
+
|
258 |
+
#: .././admin/settings.php:542
|
259 |
+
msgid "enable cross domain tracking"
|
260 |
+
msgstr "ενεργοποίηση παρακολούθησης cross domain "
|
261 |
+
|
262 |
+
#: .././admin/settings.php:546
|
263 |
+
msgid "Cross Domains:"
|
264 |
+
msgstr "Cross Domains:"
|
265 |
+
|
266 |
+
#: .././admin/settings.php:557
|
267 |
+
msgid "Exclude tracking for:"
|
268 |
+
msgstr "Αποκλεισμός παρακολούθησης για:"
|
269 |
+
|
270 |
+
#: .././admin/settings.php:645
|
271 |
+
msgid "Google Analytics Errors & Debugging"
|
272 |
+
msgstr "Σφάλματα Google Analytics & Αποσφαλμάτωση"
|
273 |
+
|
274 |
+
#: .././admin/settings.php:655
|
275 |
+
msgid "Errors & Details"
|
276 |
+
msgstr "Σφάλματα & Λεπτομέρειες"
|
277 |
+
|
278 |
+
#: .././admin/settings.php:656
|
279 |
+
msgid "Plugin Settings"
|
280 |
+
msgstr "Ρυθμίσεις Plugin:"
|
281 |
+
|
282 |
+
#: .././admin/settings.php:663
|
283 |
+
msgid "Last Error detected"
|
284 |
+
msgstr "Τελευταίο Σφάλμα που εντοπίστηκε"
|
285 |
+
|
286 |
+
#: .././admin/settings.php:669 .././admin/settings.php:682
|
287 |
+
msgid "None"
|
288 |
+
msgstr "Κανένα"
|
289 |
+
|
290 |
+
#: .././admin/settings.php:676
|
291 |
+
msgid "Error Details"
|
292 |
+
msgstr "Λεπτομέρεις Σφάλματος"
|
293 |
+
|
294 |
+
#: .././admin/settings.php:696
|
295 |
+
msgid "Plugin Configuration"
|
296 |
+
msgstr "Προσομοίωωση Plugin"
|
297 |
+
|
298 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
299 |
+
msgid ""
|
300 |
+
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
301 |
+
"solution:"
|
302 |
+
msgstr ""
|
303 |
+
"Φόρτωση των απαιτούμενων βιβλιοθηκών. Εαν αυτό καταλήξει σε μια κενή οθόνη ή σε σοβαρό σφάλμα, "
|
304 |
+
"δοκιμάστε αυτήν τη λύση:"
|
305 |
+
|
306 |
+
#: .././admin/settings.php:717
|
307 |
+
msgid "Library conflicts between WordPress plugins"
|
308 |
+
msgstr "Η βιβλιοθήκη αντιτίθεται με plugins του WordPress"
|
309 |
+
|
310 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
311 |
+
msgid "Plugin authorization succeeded."
|
312 |
+
msgstr "Η επικύρωση του Plugin πέτυχε."
|
313 |
+
|
314 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
315 |
+
msgid ""
|
316 |
+
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
317 |
+
"again, and use the red link to get your access code"
|
318 |
+
msgstr ""
|
319 |
+
"Ο κωδικός πρόσβασης <strong>ΔΕΝ ΕΙΝΑΙ</strong> το δικό σας <strong>Tracking ID</strong> (UA-"
|
320 |
+
"XXXXX-X). Προσπαθήστε ξανά, και χρησιμοποιήστε τον κόκκινο σύνδεσμο για να πάρετε τον κωδικό "
|
321 |
+
"πρόσβασής σας."
|
322 |
+
|
323 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
324 |
+
msgid "Cleared Cache."
|
325 |
+
msgstr "Η Cache εκκαθαρίστηκε."
|
326 |
+
|
327 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
328 |
+
msgid "Token Reseted and Revoked."
|
329 |
+
msgstr "Το Token Επαναπροσδιορίστηκε και Ανακλήθηκε."
|
330 |
+
|
331 |
+
#: .././admin/settings.php:789
|
332 |
+
msgid "All errors reseted."
|
333 |
+
msgstr "Όλα τα σφάλματα επαναπροσδιορίστηκαν."
|
334 |
+
|
335 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
336 |
+
msgid "All other domains/properties were removed."
|
337 |
+
msgstr "Όλα τα άλλα domains/ιδιότητες έχουν απομακρυνθεί."
|
338 |
+
|
339 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
340 |
+
msgid "Google Analytics Settings"
|
341 |
+
msgstr "Ρυθμίσεις Google Analytics "
|
342 |
+
|
343 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
344 |
+
msgid "Use the red link (see below) to generate and get your access code!"
|
345 |
+
msgstr ""
|
346 |
+
"Χρησιμοποιήστε τον κόκκινο σύνδεσμο (βλέπετε παρακάτω) για να δημιουργήσετε και να αποκτήσετε "
|
347 |
+
"τον δικό σας κωδικό πρόσβασης!"
|
348 |
+
|
349 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
350 |
+
msgid "Plugin Authorization"
|
351 |
+
msgstr "Εξουσιοδότηση Plugin"
|
352 |
+
|
353 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
354 |
+
#, php-format
|
355 |
+
msgid ""
|
356 |
+
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
357 |
+
"requires a properly configured Google Analytics account!"
|
358 |
+
msgstr ""
|
359 |
+
"Πρέπει να δείτε το the %1$s και να διαβάσετε αυτό το%2$s πρίν προχωρήσετε στην εξουσιοδότηση. "
|
360 |
+
"Αυτό το plugin απαιτεί ένα λογαριασμό Google Analytics κατάλληλα ρυθμισμένο!"
|
361 |
+
|
362 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
363 |
+
msgid "video"
|
364 |
+
msgstr "video"
|
365 |
+
|
366 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
367 |
+
msgid "tutorial"
|
368 |
+
msgstr "οδηγός"
|
369 |
+
|
370 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
371 |
+
msgid "use your own API Project credentials"
|
372 |
+
msgstr "χρησιμοποιήστε το δικό σας εργό πιστοποιητικών API"
|
373 |
+
|
374 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
375 |
+
msgid "API Key:"
|
376 |
+
msgstr "Κλειδί ΑΡΙ :"
|
377 |
+
|
378 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
379 |
+
msgid "Client ID:"
|
380 |
+
msgstr "ΙD πελάτη:"
|
381 |
+
|
382 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
383 |
+
msgid "Client Secret:"
|
384 |
+
msgstr "Κρυφό Πελάτη:"
|
385 |
+
|
386 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
387 |
+
msgid "Clear Authorization"
|
388 |
+
msgstr "Εκκαθάριση Εξουσιοδότησης"
|
389 |
+
|
390 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951 .././admin/settings.php:1167
|
391 |
+
#: .././admin/settings.php:1243
|
392 |
+
msgid "Clear Cache"
|
393 |
+
msgstr "Εκκαθάριση Cache"
|
394 |
+
|
395 |
+
#: .././admin/settings.php:873
|
396 |
+
msgid "Reset Errors"
|
397 |
+
msgstr "Επαναπροσδιορισμός Σφαλμάτων"
|
398 |
+
|
399 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
400 |
+
msgid "General Settings"
|
401 |
+
msgstr "Γεινκές Ρυθμίσεις"
|
402 |
+
|
403 |
+
#: .././admin/settings.php:882
|
404 |
+
msgid "Select View:"
|
405 |
+
msgstr "Επιλέξτε Όψη:"
|
406 |
+
|
407 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
408 |
+
msgid "Property not found"
|
409 |
+
msgstr "Η ιδιότητα δεν βρέθηκε"
|
410 |
+
|
411 |
+
#: .././admin/settings.php:899
|
412 |
+
msgid "Lock Selection"
|
413 |
+
msgstr "Κλείδωμα Επιλογής"
|
414 |
+
|
415 |
+
#: .././admin/settings.php:918
|
416 |
+
msgid "Theme Color:"
|
417 |
+
msgstr "Χρώμα Θέματος:"
|
418 |
+
|
419 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
420 |
+
msgid "Automatic Updates"
|
421 |
+
msgstr "Αυτόματη Αναβάθμιση"
|
422 |
+
|
423 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
424 |
+
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
425 |
+
msgstr "αυτόματη αναβαθμιση για μερικές εκδόσεις (ασφάλειας και συντήρησης εκδόσεις μόνο)"
|
426 |
+
|
427 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243 .././admin/widgets.php:32
|
428 |
+
msgid "Authorize Plugin"
|
429 |
+
msgstr "Εξουσιοδότηση Plugin"
|
430 |
+
|
431 |
+
#: .././admin/settings.php:1027
|
432 |
+
msgid "Properties refreshed."
|
433 |
+
msgstr "Οι ιδιότητες ανανεώθηκαν."
|
434 |
+
|
435 |
+
#: .././admin/settings.php:1112
|
436 |
+
msgid "Network Setup"
|
437 |
+
msgstr "Ρύθμιση Δικτύου"
|
438 |
+
|
439 |
+
#: .././admin/settings.php:1122
|
440 |
+
msgid "use a single Google Analytics account for the entire network"
|
441 |
+
msgstr "χρησιμοποιήστε ένα μόνο λογαριασμό Google Analytics για το υπόλοιπο δίκτυο"
|
442 |
+
|
443 |
+
#: .././admin/settings.php:1167
|
444 |
+
msgid "Refresh Properties"
|
445 |
+
msgstr "Ανανεώστε τις Ιδιότητες"
|
446 |
+
|
447 |
+
#: .././admin/settings.php:1173
|
448 |
+
msgid "Properties/Views Settings"
|
449 |
+
msgstr "Ρυθμίσεις Ιδιοτήτων/Προβολών"
|
450 |
+
|
451 |
+
#: .././admin/settings.php:1227
|
452 |
+
msgid "exclude Super Admin tracking for the entire network"
|
453 |
+
msgstr "αποκλεισμός παρακολούθησης Υπερ Διαχειριστή για το υπόλοιπο δίκτυο"
|
454 |
+
|
455 |
+
#: .././admin/settings.php:1275
|
456 |
+
msgid "Setup Tutorial & Demo"
|
457 |
+
msgstr "Ρύθμιση Οδηγού & Demo "
|
458 |
+
|
459 |
+
#: .././admin/settings.php:1283
|
460 |
+
msgid "Follow & Review"
|
461 |
+
msgstr "Ακολουθήστε & Αναθεωρήστε"
|
462 |
+
|
463 |
+
#: .././admin/settings.php:1309
|
464 |
+
#, php-format
|
465 |
+
msgid "Your feedback and review are both important, %s!"
|
466 |
+
msgstr "Η ανατροφοδότηση και η αναθεώρηση είναι εξίσου σημαντικές, %s!"
|
467 |
+
|
468 |
+
#: .././admin/settings.php:1309
|
469 |
+
msgid "rate this plugin"
|
470 |
+
msgstr "βαθμολογήστε αυτο το plugin"
|
471 |
+
|
472 |
+
#: .././admin/settings.php:1315
|
473 |
+
msgid "Further Reading"
|
474 |
+
msgstr "Περαιτέρω Διάβασμα"
|
475 |
+
|
476 |
+
#: .././admin/settings.php:1322
|
477 |
+
#, php-format
|
478 |
+
msgid "%s by moving your website to HTTPS/SSL."
|
479 |
+
msgstr "%s μεταφέροντας τον διαδικτυακό σας τόπο σε ΗΤΤΡ/SSL."
|
480 |
+
|
481 |
+
#: .././admin/settings.php:1322
|
482 |
+
msgid "Improve search rankings"
|
483 |
+
msgstr "Βελτιώστε τις βαθμολογίες αναζήτησες"
|
484 |
+
|
485 |
+
#: .././admin/settings.php:1329
|
486 |
+
#, php-format
|
487 |
+
msgid "Other %s written by the same author"
|
488 |
+
msgstr "Υπάρχει %s γραμμένο απο τον ίδιο συγγραφέα"
|
489 |
+
|
490 |
+
#: .././admin/settings.php:1329
|
491 |
+
msgid "WordPress Plugins"
|
492 |
+
msgstr "WordPress Plugins"
|
493 |
+
|
494 |
+
#: .././admin/settings.php:1335
|
495 |
+
msgid "Other Services"
|
496 |
+
msgstr "Άλλες Υπηρεσίες"
|
497 |
+
|
498 |
+
#: .././admin/settings.php:1342
|
499 |
+
#, php-format
|
500 |
+
msgid "Speed up your website and plug into a whole %s"
|
501 |
+
msgstr "Αυξήστε την συνολική ταχύτητα του διαδικτυακού σας τόπου συνδέωντας το σε %s"
|
502 |
+
|
503 |
+
#: .././admin/settings.php:1342
|
504 |
+
msgid "new level of site speed"
|
505 |
+
msgstr "νέο επίπεδο ταχύτητας site "
|
506 |
+
|
507 |
+
#: .././admin/settings.php:1349
|
508 |
+
#, php-format
|
509 |
+
msgid "%s service with users tracking at IP level."
|
510 |
+
msgstr " %s υπηρεσία με χρήστες που παρακολουθούν σε επίπεδο ΙΡ."
|
511 |
+
|
512 |
+
#: .././admin/settings.php:1349
|
513 |
+
msgid "Web Analytics"
|
514 |
+
msgstr "Web Analytics"
|
515 |
+
|
516 |
+
#: .././admin/setup.php:41 .././admin/setup.php:57
|
517 |
+
msgid "Google Analytics"
|
518 |
+
msgstr "Google Analytics"
|
519 |
+
|
520 |
+
#: .././admin/setup.php:43
|
521 |
+
msgid "Backend Settings"
|
522 |
+
msgstr "Ρυθμίσεις Backend "
|
523 |
+
|
524 |
+
#: .././admin/setup.php:44
|
525 |
+
msgid "Frontend Settings"
|
526 |
+
msgstr "Ρυθμίσεις Frontend "
|
527 |
+
|
528 |
+
#: .././admin/setup.php:45
|
529 |
+
msgid "Tracking Code"
|
530 |
+
msgstr "Κώδικας Παρακολούθησης"
|
531 |
+
|
532 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
533 |
+
msgid "Today"
|
534 |
+
msgstr "Σήμερα"
|
535 |
+
|
536 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
537 |
+
msgid "Yesterday"
|
538 |
+
msgstr "Χθές"
|
539 |
+
|
540 |
+
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
541 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116 .././admin/widgets.php:117
|
542 |
+
#: .././admin/widgets.php:118 .././admin/widgets.php:119 .././front/setup.php:73
|
543 |
+
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
544 |
+
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
545 |
+
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
546 |
+
#, php-format
|
547 |
+
msgid "Last %d Days"
|
548 |
+
msgstr "Τελευταίες %d Μέρες"
|
549 |
+
|
550 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
551 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
552 |
+
#, php-format
|
553 |
+
msgid "%s Year"
|
554 |
+
msgid_plural "%s Years"
|
555 |
+
msgstr[0] "%s Χρόνο"
|
556 |
+
msgstr[1] "%s Χρόνια"
|
557 |
+
|
558 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
559 |
+
msgid "One"
|
560 |
+
msgstr "Ένα"
|
561 |
+
|
562 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
563 |
+
msgid "Three"
|
564 |
+
msgstr "Τρία"
|
565 |
+
|
566 |
+
#: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
|
567 |
+
#: .././front/setup.php:97
|
568 |
+
msgid "Unique Views"
|
569 |
+
msgstr "Μοναδικές προβολές"
|
570 |
+
|
571 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
572 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
573 |
+
#: .././tools/gapi.php:357
|
574 |
+
msgid "Users"
|
575 |
+
msgstr "Χρήστες"
|
576 |
+
|
577 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
578 |
+
msgid "Organic"
|
579 |
+
msgstr "Οργανικό"
|
580 |
+
|
581 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
582 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
583 |
+
#: .././tools/gapi.php:360
|
584 |
+
msgid "Page Views"
|
585 |
+
msgstr "Προβολές Σελίδας"
|
586 |
+
|
587 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
588 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
589 |
+
#: .././tools/gapi.php:363
|
590 |
+
msgid "Bounce Rate"
|
591 |
+
msgstr "Bounce Rate"
|
592 |
+
|
593 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
594 |
+
msgid "Location"
|
595 |
+
msgstr "Τοποθεσία"
|
596 |
+
|
597 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
598 |
+
#: .././tools/gapi.php:502
|
599 |
+
msgid "Referrers"
|
600 |
+
msgstr "Αναφέρεται"
|
601 |
+
|
602 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
603 |
+
#: .././tools/gapi.php:535
|
604 |
+
msgid "Searches"
|
605 |
+
msgstr "Αναζητά"
|
606 |
+
|
607 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
608 |
+
msgid "Traffic Details"
|
609 |
+
msgstr "Λεπτομέρειες Κίνησης"
|
610 |
+
|
611 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502 .././admin/widgets.php:587
|
612 |
+
#: .././admin/widgets.php:754 .././admin/widgets.php:858 .././front/setup.php:92
|
613 |
+
msgid "A JavaScript Error is blocking plugin resources!"
|
614 |
+
msgstr "Ένα JavaScript Σφάλμα εμποδίζει τους πόρους του plugin!"
|
615 |
+
|
616 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
617 |
+
msgid "Traffic Mediums"
|
618 |
+
msgstr "Traffic Mediums"
|
619 |
+
|
620 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
621 |
+
msgid "Visitor Type"
|
622 |
+
msgstr "Τύπος Επισκέπτη"
|
623 |
+
|
624 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
625 |
+
msgid "Social Networks"
|
626 |
+
msgstr "Κοινωνικά Δίκτυα"
|
627 |
+
|
628 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
629 |
+
msgid "Search Engines"
|
630 |
+
msgstr "Μηχανές Αναζήτησης"
|
631 |
+
|
632 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
633 |
+
msgid "Organic Search"
|
634 |
+
msgstr "Οργανική Αναζήτηση"
|
635 |
+
|
636 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
637 |
+
msgid "Pages/Session"
|
638 |
+
msgstr "Σελίδες/Τομείς"
|
639 |
+
|
640 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514 .././admin/widgets.php:528
|
641 |
+
#: .././admin/widgets.php:538 .././admin/widgets.php:599 .././admin/widgets.php:613
|
642 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641 .././admin/widgets.php:655
|
643 |
+
#: .././admin/widgets.php:665 .././admin/widgets.php:767 .././admin/widgets.php:779
|
644 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884 .././admin/widgets.php:894
|
645 |
+
#: .././front/setup.php:103
|
646 |
+
msgid "Invalid response, more details in JavaScript Console (F12)."
|
647 |
+
msgstr "Μη έγκυρη απάντηση. περισσότερες λεπτομέρειες στην Κονσόλα JavaScript (F12)."
|
648 |
+
|
649 |
+
#: .././admin/setup.php:192 .././front/setup.php:104
|
650 |
+
msgid "Not enough data collected"
|
651 |
+
msgstr "Δεν συλλέχθηκαν αρκετά δεδομένα"
|
652 |
+
|
653 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519 .././admin/widgets.php:533
|
654 |
+
#: .././admin/widgets.php:604 .././admin/widgets.php:618 .././admin/widgets.php:632
|
655 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660 .././admin/widgets.php:772
|
656 |
+
#: .././admin/widgets.php:774 .././admin/widgets.php:875 .././admin/widgets.php:889
|
657 |
+
#: .././front/setup.php:105 .././front/widgets.php:100
|
658 |
+
msgid "This report is unavailable"
|
659 |
+
msgstr "Αυτή η αναφορά δεν είναι διαθέσιμη"
|
660 |
+
|
661 |
+
#: .././admin/setup.php:194 .././front/setup.php:106
|
662 |
+
msgid "report generated by"
|
663 |
+
msgstr "η αναφορά δημιουργήθηκε απο"
|
664 |
+
|
665 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
666 |
+
msgid "This plugin needs an authorization:"
|
667 |
+
msgstr "Το plugin χρειάζεται εξουσιοδότηση:"
|
668 |
+
|
669 |
+
#: .././admin/setup.php:227
|
670 |
+
msgid "Settings"
|
671 |
+
msgstr "Ρυθμίσεις"
|
672 |
+
|
673 |
+
#: .././admin/setup.php:239
|
674 |
+
#, php-format
|
675 |
+
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
676 |
+
msgstr "Το Ταμπλό του Google Analytics για το WP έχει αναβαθμιστεί στην έκδοση %s."
|
677 |
+
|
678 |
+
#: .././admin/setup.php:239
|
679 |
+
#, php-format
|
680 |
+
msgid "For details, check out %1$s and %2$s."
|
681 |
+
msgstr "Για λεπτομέρειες, ελέγξτε %1$s και %2$s."
|
682 |
+
|
683 |
+
#: .././admin/setup.php:239
|
684 |
+
msgid "the documentation page"
|
685 |
+
msgstr "η σελίδα τεκμηρίωσης"
|
686 |
+
|
687 |
+
#: .././admin/setup.php:239
|
688 |
+
msgid "the plugin's settings page"
|
689 |
+
msgstr "η σελίδα ρυθμίσεων του plugin '"
|
690 |
+
|
691 |
+
#: .././admin/widgets.php:27 .././front/widgets.php:21
|
692 |
+
msgid "Google Analytics Dashboard"
|
693 |
+
msgstr "Ταμπλό Google Analytics"
|
694 |
+
|
695 |
+
#: .././admin/widgets.php:66
|
696 |
+
msgid "Something went wrong while retrieving profiles list."
|
697 |
+
msgstr "Κάτι πήγε στραβά καθώς γινόταν ανάκτηση της λίστας των προφίλ."
|
698 |
+
|
699 |
+
#: .././admin/widgets.php:66
|
700 |
+
msgid "More details"
|
701 |
+
msgstr "Περισσότερες λεπτομέρειες"
|
702 |
+
|
703 |
+
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
704 |
+
msgid "An admin should asign a default Google Analytics Profile."
|
705 |
+
msgstr "Ένας διαχειριστής θα έπρεπε να εκχωρήση ένα προκαθορισμένο προφίλ Google Analytics."
|
706 |
+
|
707 |
+
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
708 |
+
msgid "Select Domain"
|
709 |
+
msgstr "Επιλέξτε Domain"
|
710 |
+
|
711 |
+
#: .././admin/widgets.php:95
|
712 |
+
msgid ""
|
713 |
+
"Something went wrong while retrieving property data. You need to create and properly configure a "
|
714 |
+
"Google Analytics account:"
|
715 |
+
msgstr ""
|
716 |
+
"Κάτι πήγε στραβά καθώς γινόταν ανάκτηση δεδομένων. Χρειάζεται να δημιουργήσετε και να "
|
717 |
+
"διαμορφώσετε καταλλήλως ένα λογαριασμό Google Analytics:"
|
718 |
+
|
719 |
+
#: .././admin/widgets.php:95
|
720 |
+
msgid "Find out more!"
|
721 |
+
msgstr "Μάθετε περισσότερα!"
|
722 |
+
|
723 |
+
#: .././admin/widgets.php:113
|
724 |
+
msgid "Real-Time"
|
725 |
+
msgstr "Πραγματικός- Χρόνος"
|
726 |
+
|
727 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823 .././front/widgets.php:36
|
728 |
+
#: .././tools/gapi.php:372 .././tools/gapi.php:502 .././tools/gapi.php:535 .././tools/gapi.php:585
|
729 |
+
#: .././tools/gapi.php:665 .././tools/gapi.php:694
|
730 |
+
msgid "Sessions"
|
731 |
+
msgstr "Τομείς"
|
732 |
+
|
733 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
734 |
+
msgid "Pages"
|
735 |
+
msgstr "Σελίδες"
|
736 |
+
|
737 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
738 |
+
msgid "REFERRAL"
|
739 |
+
msgstr "ΠΑΡΑΠΟΜΠΗΣ"
|
740 |
+
|
741 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
742 |
+
msgid "ORGANIC"
|
743 |
+
msgstr "ΟΡΓΑΝΙΚΟ"
|
744 |
+
|
745 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361 .././admin/widgets.php:477
|
746 |
+
msgid "SOCIAL"
|
747 |
+
msgstr "ΚΟΙΝΩΝΙΚΟ"
|
748 |
+
|
749 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364 .././admin/widgets.php:478
|
750 |
+
msgid "CAMPAIGN"
|
751 |
+
msgstr "ΚΑΜΠΑΝΙΑ"
|
752 |
+
|
753 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367 .././admin/widgets.php:481
|
754 |
+
msgid "DIRECT"
|
755 |
+
msgstr "ΑΜΕΣΟ"
|
756 |
+
|
757 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
758 |
+
msgid "NEW"
|
759 |
+
msgstr "ΝΕΟ"
|
760 |
+
|
761 |
+
#: .././admin/widgets.php:355
|
762 |
+
msgid "REFERRALS"
|
763 |
+
msgstr "ΠΑΡΑΠΟΜΠΕΣ"
|
764 |
+
|
765 |
+
#: .././admin/widgets.php:358
|
766 |
+
msgid "KEYWORDS"
|
767 |
+
msgstr "ΛΕΞΕΙΣ ΚΛΕΙΔΙΑ"
|
768 |
+
|
769 |
+
#: .././front/widgets.php:21
|
770 |
+
msgid "Will display your google analytics stats in a widget"
|
771 |
+
msgstr "Θα προβάλει τα στατιστικά του google analytics σε ένα widget"
|
772 |
+
|
773 |
+
#: .././front/widgets.php:123
|
774 |
+
msgid "Period:"
|
775 |
+
msgstr "Περίοδος:"
|
776 |
+
|
777 |
+
#: .././front/widgets.php:123
|
778 |
+
msgid "Sessions:"
|
779 |
+
msgstr "Τομείς:"
|
780 |
+
|
781 |
+
#: .././front/widgets.php:127
|
782 |
+
msgid "generated by"
|
783 |
+
msgstr "παράχθηκε απο"
|
784 |
+
|
785 |
+
#: .././front/widgets.php:136
|
786 |
+
msgid "Google Analytics Stats"
|
787 |
+
msgstr "Στατιστικά Google Analytics "
|
788 |
+
|
789 |
+
#: .././front/widgets.php:144
|
790 |
+
msgid "Title:"
|
791 |
+
msgstr "Τίτλος:"
|
792 |
+
|
793 |
+
#: .././front/widgets.php:147
|
794 |
+
msgid "Display:"
|
795 |
+
msgstr "Απεικόνιση:"
|
796 |
+
|
797 |
+
#: .././front/widgets.php:148
|
798 |
+
msgid "Chart & Totals"
|
799 |
+
msgstr "Διάγραμμα & Σύνολα"
|
800 |
+
|
801 |
+
#: .././front/widgets.php:149
|
802 |
+
msgid "Chart"
|
803 |
+
msgstr "Διάγραμμα"
|
804 |
+
|
805 |
+
#: .././front/widgets.php:150
|
806 |
+
msgid "Totals"
|
807 |
+
msgstr "Σύνολα"
|
808 |
+
|
809 |
+
#: .././front/widgets.php:154
|
810 |
+
msgid "Anonymize stats:"
|
811 |
+
msgstr "Ανώνυμα στατιστικά"
|
812 |
+
|
813 |
+
#: .././front/widgets.php:157
|
814 |
+
msgid "Stats for:"
|
815 |
+
msgstr "Στατιστικά για:"
|
816 |
+
|
817 |
+
#: .././front/widgets.php:164
|
818 |
+
msgid "Give credits:"
|
819 |
+
msgstr "Δώστε πιστώσεις:"
|
820 |
+
|
821 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
822 |
+
msgid "This is not allowed, read the documentation!"
|
823 |
+
msgstr "Αυτό δεν επιτρέπεται, διαβάστε την τεκμηρίωση!"
|
824 |
+
|
825 |
+
#: .././tools/gapi.php:128
|
826 |
+
msgid "Use this link to get your access code:"
|
827 |
+
msgstr "Χρησιμοποιήστε αυτόν τον σύνδεσμο για να αποκτήσετε τον κωδικό πρόσβασής σας:"
|
828 |
+
|
829 |
+
#: .././tools/gapi.php:128
|
830 |
+
msgid "Get Access Code"
|
831 |
+
msgstr "Αποκτήστε τον Κωδικό Πρόσβασης"
|
832 |
+
|
833 |
+
#: .././tools/gapi.php:132 .././tools/gapi.php:133
|
834 |
+
msgid "Use the red link to get your access code!"
|
835 |
+
msgstr "Χρησιμοποιήστε τον κόκκινο σύνδεσμο για να αποκτήσετε τον κωδικό πρόσβασής σας"
|
836 |
+
|
837 |
+
#: .././tools/gapi.php:132
|
838 |
+
msgid "Access Code:"
|
839 |
+
msgstr "Κωδικός Πρόσβασης:"
|
840 |
+
|
841 |
+
#: .././tools/gapi.php:139
|
842 |
+
msgid "Save Access Code"
|
843 |
+
msgstr "Αποθηκεύστε τον Κωδικό Πρόσβασης"
|
844 |
+
|
845 |
+
#: .././tools/gapi.php:366
|
846 |
+
msgid "Organic Searches"
|
847 |
+
msgstr "Οργανικές Αναζητήσεις"
|
848 |
+
|
849 |
+
#: .././tools/gapi.php:369
|
850 |
+
msgid "Unique Page Views"
|
851 |
+
msgstr "Μοναδικές προβολές σελίδας"
|
852 |
+
|
853 |
+
#: .././tools/gapi.php:377
|
854 |
+
msgid "Hour"
|
855 |
+
msgstr "Ώρα"
|
856 |
+
|
857 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
858 |
+
msgid "Date"
|
859 |
+
msgstr "Ημερομηνία"
|
860 |
+
|
861 |
+
#: .././tools/gapi.php:470
|
862 |
+
msgid "Views"
|
863 |
+
msgstr "Προβολές"
|
864 |
+
|
865 |
+
#: .././tools/gapi.php:556
|
866 |
+
msgid "Countries"
|
867 |
+
msgstr "Χώρες"
|
868 |
+
|
869 |
+
#: .././tools/gapi.php:566
|
870 |
+
msgid "Cities from"
|
871 |
+
msgstr "Πόλεις απο"
|
872 |
+
|
873 |
+
#: .././tools/gapi.php:619
|
874 |
+
msgid "Channels"
|
875 |
+
msgstr "Κανάλια"
|
876 |
+
|
877 |
+
#: .././tools/gapi.php:665
|
878 |
+
msgid "Type"
|
879 |
+
msgstr "Τύπος"
|
880 |
+
|
881 |
+
#~ msgid "trend"
|
882 |
+
#~ msgstr "τείνω"
|
languages/google-analytics-dashboard-for-wp-es_ES.mo
ADDED
Binary file
|
languages/{ga-dash-es_ES.po → google-analytics-dashboard-for-wp-es_ES.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
-
"Language-Team: Alin Marcu\n"
|
10 |
"Language: es_ES\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -24,280 +24,273 @@ msgstr ""
|
|
24 |
|
25 |
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
26 |
msgid "Analytics"
|
27 |
-
msgstr ""
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
-
#: .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
-
msgstr ""
|
34 |
|
35 |
#: .././admin/settings.php:91 .././admin/settings.php:186
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
-
#: .././admin/settings.php:
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
msgid "Cheating Huh?"
|
43 |
-
msgstr ""
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
-
msgstr ""
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
-
msgstr ""
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
62 |
msgid "authorize the plugin"
|
63 |
msgstr "autorizar aplicación"
|
64 |
|
65 |
#: .././admin/settings.php:100
|
66 |
msgid "Google Analytics Frontend Settings"
|
67 |
-
msgstr "
|
68 |
|
69 |
#: .././admin/settings.php:110 .././admin/settings.php:205
|
70 |
msgid "Permissions"
|
71 |
-
msgstr ""
|
72 |
|
73 |
#: .././admin/settings.php:113 .././admin/settings.php:208
|
74 |
msgid "Show stats to:"
|
75 |
-
msgstr ""
|
76 |
|
77 |
#: .././admin/settings.php:154
|
78 |
msgid "enable web page reports on frontend"
|
79 |
-
msgstr ""
|
80 |
|
81 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
82 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
83 |
-
#: .././admin/settings.php:
|
84 |
msgid "Save Changes"
|
85 |
-
msgstr ""
|
86 |
|
87 |
#: .././admin/settings.php:195
|
88 |
msgid "Google Analytics Backend Settings"
|
89 |
-
msgstr ""
|
90 |
|
91 |
#: .././admin/settings.php:251
|
92 |
msgid "enable Switch View functionality"
|
93 |
-
msgstr ""
|
94 |
|
95 |
#: .././admin/settings.php:262
|
96 |
msgid "enable reports on Posts List and Pages List"
|
97 |
-
msgstr ""
|
98 |
|
99 |
#: .././admin/settings.php:273
|
100 |
msgid "enable the main Dashboard Widget"
|
101 |
-
msgstr ""
|
102 |
|
103 |
#: .././admin/settings.php:277
|
104 |
-
#, fuzzy
|
105 |
msgid "Real-Time Settings"
|
106 |
-
msgstr "
|
107 |
|
108 |
#: .././admin/settings.php:280
|
109 |
msgid "Maximum number of pages to display on real-time tab:"
|
110 |
-
msgstr ""
|
111 |
|
112 |
#: .././admin/settings.php:285
|
113 |
msgid "Location Settings"
|
114 |
-
msgstr ""
|
115 |
|
116 |
#: .././admin/settings.php:289
|
117 |
msgid "Target Geo Map to country:"
|
118 |
-
msgstr ""
|
119 |
|
120 |
#: .././admin/settings.php:327
|
121 |
msgid ""
|
122 |
"The tracking component is disabled. You should set <strong>Tracking Options</"
|
123 |
"strong> to <strong>Enabled</strong>"
|
124 |
msgstr ""
|
|
|
|
|
125 |
|
126 |
#: .././admin/settings.php:332
|
127 |
-
#, fuzzy
|
128 |
msgid "Google Analytics Tracking Code"
|
129 |
-
msgstr "
|
130 |
|
131 |
#: .././admin/settings.php:341
|
132 |
msgid "Basic Settings"
|
133 |
-
msgstr ""
|
134 |
|
135 |
#: .././admin/settings.php:342 .././admin/settings.php:408
|
136 |
-
#, fuzzy
|
137 |
msgid "Events Tracking"
|
138 |
-
msgstr "
|
139 |
|
140 |
#: .././admin/settings.php:343 .././admin/settings.php:456
|
141 |
msgid "Custom Definitions"
|
142 |
-
msgstr ""
|
143 |
|
144 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
145 |
-
#: .././admin/settings.php:
|
146 |
-
#, fuzzy
|
147 |
msgid "Exclude Tracking"
|
148 |
-
msgstr "
|
149 |
|
150 |
#: .././admin/settings.php:345
|
151 |
msgid "Advanced Settings"
|
152 |
-
msgstr ""
|
153 |
|
154 |
#: .././admin/settings.php:353
|
155 |
-
#, fuzzy
|
156 |
msgid "Tracking Settings"
|
157 |
-
msgstr "Configuración
|
158 |
|
159 |
#: .././admin/settings.php:356
|
160 |
msgid "Tracking Options:"
|
161 |
-
msgstr ""
|
162 |
|
163 |
#: .././admin/settings.php:358
|
164 |
msgid "Disabled"
|
165 |
-
msgstr "
|
166 |
|
167 |
#: .././admin/settings.php:359
|
168 |
-
#, fuzzy
|
169 |
msgid "Enabled"
|
170 |
-
msgstr "
|
171 |
|
172 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
173 |
-
#: .././admin/settings.php:
|
174 |
#: .././admin/widgets.php:61
|
175 |
msgid "View Name:"
|
176 |
-
msgstr ""
|
177 |
|
178 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
179 |
-
#, fuzzy
|
180 |
msgid "Tracking ID:"
|
181 |
-
msgstr "
|
182 |
|
183 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
184 |
msgid "Default URL:"
|
185 |
-
msgstr ""
|
186 |
|
187 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
188 |
msgid "Time Zone:"
|
189 |
-
msgstr ""
|
190 |
|
191 |
#: .././admin/settings.php:372
|
192 |
-
#, fuzzy
|
193 |
msgid "Basic Tracking"
|
194 |
-
msgstr "
|
195 |
|
196 |
#: .././admin/settings.php:375
|
197 |
msgid "Tracking Type:"
|
198 |
-
msgstr ""
|
199 |
|
200 |
#: .././admin/settings.php:377
|
201 |
msgid "Classic Analytics"
|
202 |
-
msgstr ""
|
203 |
|
204 |
#: .././admin/settings.php:378
|
205 |
msgid "Universal Analytics"
|
206 |
-
msgstr ""
|
207 |
|
208 |
#: .././admin/settings.php:389
|
209 |
msgid "anonymize IPs while tracking"
|
210 |
-
msgstr ""
|
211 |
|
212 |
#: .././admin/settings.php:400
|
213 |
msgid "enable remarketing, demographics and interests reports"
|
214 |
-
msgstr ""
|
215 |
|
216 |
#: .././admin/settings.php:418
|
217 |
msgid "track downloads, mailto and outbound links"
|
218 |
-
msgstr ""
|
219 |
|
220 |
#: .././admin/settings.php:422
|
221 |
msgid "Downloads Regex:"
|
222 |
-
msgstr ""
|
223 |
|
224 |
#: .././admin/settings.php:433
|
225 |
msgid "track affiliate links matching this regex"
|
226 |
-
msgstr ""
|
227 |
|
228 |
#: .././admin/settings.php:437
|
229 |
msgid "Affiliates Regex:"
|
230 |
-
msgstr ""
|
231 |
|
232 |
#: .././admin/settings.php:448
|
233 |
msgid "track fragment identifiers, hashmarks (#) in URI links"
|
234 |
-
msgstr ""
|
235 |
|
236 |
#: .././admin/settings.php:459
|
237 |
msgid "Authors:"
|
238 |
-
msgstr ""
|
239 |
|
240 |
#: .././admin/settings.php:467
|
241 |
msgid "Publication Year:"
|
242 |
-
msgstr ""
|
243 |
|
244 |
#: .././admin/settings.php:475
|
245 |
msgid "Categories:"
|
246 |
-
msgstr ""
|
247 |
|
248 |
#: .././admin/settings.php:483
|
249 |
msgid "User Type:"
|
250 |
-
msgstr ""
|
251 |
|
252 |
#: .././admin/settings.php:495
|
253 |
-
#, fuzzy
|
254 |
msgid "Advanced Tracking"
|
255 |
-
msgstr "
|
256 |
|
257 |
#: .././admin/settings.php:498
|
258 |
-
#, fuzzy
|
259 |
msgid "Page Speed SR:"
|
260 |
-
msgstr "
|
261 |
|
262 |
#: .././admin/settings.php:509
|
263 |
msgid "exclude events from bounce-rate calculation"
|
264 |
-
msgstr ""
|
265 |
|
266 |
#: .././admin/settings.php:520
|
267 |
msgid "enable enhanced link attribution"
|
268 |
-
msgstr ""
|
269 |
|
270 |
#: .././admin/settings.php:531
|
271 |
msgid "enable AdSense account linking"
|
272 |
-
msgstr ""
|
273 |
|
274 |
#: .././admin/settings.php:542
|
275 |
msgid "enable cross domain tracking"
|
276 |
-
msgstr ""
|
277 |
|
278 |
#: .././admin/settings.php:546
|
279 |
msgid "Cross Domains:"
|
280 |
-
msgstr ""
|
281 |
|
282 |
#: .././admin/settings.php:557
|
283 |
msgid "Exclude tracking for:"
|
284 |
-
msgstr ""
|
285 |
|
286 |
#: .././admin/settings.php:645
|
287 |
msgid "Google Analytics Errors & Debugging"
|
288 |
-
msgstr ""
|
289 |
|
290 |
#: .././admin/settings.php:655
|
291 |
msgid "Errors & Details"
|
292 |
-
msgstr ""
|
293 |
|
294 |
#: .././admin/settings.php:656
|
295 |
msgid "Plugin Settings"
|
296 |
-
msgstr ""
|
297 |
|
298 |
#: .././admin/settings.php:663
|
299 |
msgid "Last Error detected"
|
300 |
-
msgstr ""
|
301 |
|
302 |
#: .././admin/settings.php:669 .././admin/settings.php:682
|
303 |
msgid "None"
|
@@ -305,229 +298,235 @@ msgstr "Ninguno"
|
|
305 |
|
306 |
#: .././admin/settings.php:676
|
307 |
msgid "Error Details"
|
308 |
-
msgstr ""
|
309 |
|
310 |
#: .././admin/settings.php:696
|
311 |
msgid "Plugin Configuration"
|
312 |
-
msgstr ""
|
313 |
|
314 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
315 |
msgid ""
|
316 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
317 |
"error, try this solution:"
|
318 |
msgstr ""
|
|
|
|
|
319 |
|
320 |
#: .././admin/settings.php:717
|
321 |
msgid "Library conflicts between WordPress plugins"
|
322 |
-
msgstr ""
|
323 |
|
324 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
325 |
msgid "Plugin authorization succeeded."
|
326 |
-
msgstr ""
|
327 |
|
328 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
329 |
msgid ""
|
330 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
331 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
332 |
msgstr ""
|
|
|
|
|
|
|
333 |
|
334 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
335 |
msgid "Cleared Cache."
|
336 |
msgstr "Caché borrada."
|
337 |
|
338 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
339 |
-
#, fuzzy
|
340 |
msgid "Token Reseted and Revoked."
|
341 |
-
msgstr "Token reseteado."
|
342 |
|
343 |
#: .././admin/settings.php:789
|
344 |
msgid "All errors reseted."
|
345 |
-
msgstr ""
|
346 |
|
347 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
348 |
msgid "All other domains/properties were removed."
|
349 |
-
msgstr ""
|
350 |
|
351 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
352 |
msgid "Google Analytics Settings"
|
353 |
-
msgstr "
|
354 |
|
355 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
356 |
msgid "Use the red link (see below) to generate and get your access code!"
|
357 |
msgstr ""
|
|
|
|
|
358 |
|
359 |
-
#: .././admin/settings.php:
|
360 |
-
#, fuzzy
|
361 |
msgid "Plugin Authorization"
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: .././admin/settings.php:
|
365 |
#, php-format
|
366 |
msgid ""
|
367 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
368 |
"authorization. This plugin requires a properly configured Google Analytics "
|
369 |
"account!"
|
370 |
msgstr ""
|
|
|
|
|
|
|
371 |
|
372 |
-
#: .././admin/settings.php:
|
373 |
msgid "video"
|
374 |
-
msgstr ""
|
375 |
|
376 |
-
#: .././admin/settings.php:
|
377 |
-
#, fuzzy
|
378 |
msgid "tutorial"
|
379 |
-
msgstr "
|
380 |
|
381 |
-
#: .././admin/settings.php:
|
382 |
msgid "use your own API Project credentials"
|
383 |
-
msgstr ""
|
384 |
|
385 |
-
#: .././admin/settings.php:
|
386 |
msgid "API Key:"
|
387 |
msgstr "API Key:"
|
388 |
|
389 |
-
#: .././admin/settings.php:
|
390 |
msgid "Client ID:"
|
391 |
msgstr "Client ID:"
|
392 |
|
393 |
-
#: .././admin/settings.php:
|
394 |
msgid "Client Secret:"
|
395 |
msgstr "Client Secret:"
|
396 |
|
397 |
-
#: .././admin/settings.php:
|
398 |
msgid "Clear Authorization"
|
399 |
msgstr "Borrar autorización"
|
400 |
|
401 |
-
#: .././admin/settings.php:
|
402 |
-
#: .././admin/settings.php:
|
403 |
msgid "Clear Cache"
|
404 |
msgstr "Borrar caché"
|
405 |
|
406 |
-
#: .././admin/settings.php:
|
407 |
msgid "Reset Errors"
|
408 |
-
msgstr ""
|
409 |
|
410 |
-
#: .././admin/settings.php:
|
411 |
msgid "General Settings"
|
412 |
-
msgstr "
|
413 |
|
414 |
-
#: .././admin/settings.php:
|
415 |
msgid "Select View:"
|
416 |
-
msgstr ""
|
417 |
|
418 |
-
#: .././admin/settings.php:
|
419 |
msgid "Property not found"
|
420 |
-
msgstr ""
|
421 |
|
422 |
-
#: .././admin/settings.php:
|
423 |
msgid "Lock Selection"
|
424 |
-
msgstr ""
|
425 |
|
426 |
-
#: .././admin/settings.php:
|
427 |
msgid "Theme Color:"
|
428 |
-
msgstr ""
|
429 |
|
430 |
-
#: .././admin/settings.php:
|
431 |
msgid "Automatic Updates"
|
432 |
-
msgstr ""
|
433 |
|
434 |
-
#: .././admin/settings.php:
|
435 |
msgid ""
|
436 |
"automatic updates for minor versions (security and maintenance releases only)"
|
437 |
msgstr ""
|
|
|
|
|
438 |
|
439 |
-
#: .././admin/settings.php:
|
440 |
#: .././admin/widgets.php:32
|
441 |
-
#, fuzzy
|
442 |
msgid "Authorize Plugin"
|
443 |
-
msgstr "Autorizar
|
444 |
|
445 |
-
#: .././admin/settings.php:
|
446 |
msgid "Properties refreshed."
|
447 |
-
msgstr ""
|
448 |
|
449 |
-
#: .././admin/settings.php:
|
450 |
msgid "Network Setup"
|
451 |
-
msgstr ""
|
452 |
|
453 |
-
#: .././admin/settings.php:
|
454 |
msgid "use a single Google Analytics account for the entire network"
|
455 |
-
msgstr ""
|
456 |
|
457 |
-
#: .././admin/settings.php:
|
458 |
msgid "Refresh Properties"
|
459 |
-
msgstr ""
|
460 |
|
461 |
-
#: .././admin/settings.php:
|
462 |
-
#, fuzzy
|
463 |
msgid "Properties/Views Settings"
|
464 |
-
msgstr "
|
465 |
|
466 |
-
#: .././admin/settings.php:
|
467 |
msgid "exclude Super Admin tracking for the entire network"
|
468 |
-
msgstr ""
|
469 |
|
470 |
-
#: .././admin/settings.php:
|
471 |
-
#, fuzzy
|
472 |
msgid "Setup Tutorial & Demo"
|
473 |
msgstr "Tutorial de configuración"
|
474 |
|
475 |
-
#: .././admin/settings.php:
|
476 |
msgid "Follow & Review"
|
477 |
-
msgstr ""
|
478 |
|
479 |
-
#: .././admin/settings.php:
|
480 |
#, php-format
|
481 |
msgid "Your feedback and review are both important, %s!"
|
482 |
-
msgstr ""
|
483 |
|
484 |
-
#: .././admin/settings.php:
|
485 |
msgid "rate this plugin"
|
486 |
-
msgstr ""
|
487 |
|
488 |
-
#: .././admin/settings.php:
|
489 |
msgid "Further Reading"
|
490 |
-
msgstr ""
|
491 |
|
492 |
-
#: .././admin/settings.php:
|
493 |
#, php-format
|
494 |
msgid "%s by moving your website to HTTPS/SSL."
|
495 |
-
msgstr ""
|
496 |
|
497 |
-
#: .././admin/settings.php:
|
498 |
msgid "Improve search rankings"
|
499 |
-
msgstr ""
|
500 |
|
501 |
-
#: .././admin/settings.php:
|
502 |
#, php-format
|
503 |
msgid "Other %s written by the same author"
|
504 |
-
msgstr ""
|
505 |
|
506 |
-
#: .././admin/settings.php:
|
507 |
msgid "WordPress Plugins"
|
508 |
-
msgstr ""
|
509 |
|
510 |
-
#: .././admin/settings.php:
|
511 |
msgid "Other Services"
|
512 |
-
msgstr ""
|
513 |
|
514 |
-
#: .././admin/settings.php:
|
515 |
#, php-format
|
516 |
msgid "Speed up your website and plug into a whole %s"
|
517 |
-
msgstr ""
|
518 |
|
519 |
-
#: .././admin/settings.php:
|
520 |
msgid "new level of site speed"
|
521 |
-
msgstr ""
|
522 |
|
523 |
-
#: .././admin/settings.php:
|
524 |
#, php-format
|
525 |
msgid "%s service with users tracking at IP level."
|
526 |
-
msgstr ""
|
527 |
|
528 |
-
#: .././admin/settings.php:
|
529 |
msgid "Web Analytics"
|
530 |
-
msgstr "
|
531 |
|
532 |
#: .././admin/setup.php:41 .././admin/setup.php:57
|
533 |
msgid "Google Analytics"
|
@@ -535,29 +534,28 @@ msgstr "Google Analytics"
|
|
535 |
|
536 |
#: .././admin/setup.php:43
|
537 |
msgid "Backend Settings"
|
538 |
-
msgstr "
|
539 |
|
540 |
#: .././admin/setup.php:44
|
541 |
msgid "Frontend Settings"
|
542 |
-
msgstr "
|
543 |
|
544 |
#: .././admin/setup.php:45
|
545 |
-
#, fuzzy
|
546 |
msgid "Tracking Code"
|
547 |
-
msgstr "
|
548 |
|
549 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
550 |
msgid "Today"
|
551 |
msgstr "Hoy"
|
552 |
|
553 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
554 |
msgid "Yesterday"
|
555 |
msgstr "Ayer"
|
556 |
|
557 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
558 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
559 |
-
#: .././admin/widgets.php:
|
560 |
-
#: .././admin/widgets.php:
|
561 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
562 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
563 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -566,256 +564,251 @@ msgstr "Ayer"
|
|
566 |
msgid "Last %d Days"
|
567 |
msgstr "Últimos %d días"
|
568 |
|
569 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
570 |
-
#: .././admin/widgets.php:
|
571 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
572 |
#, php-format
|
573 |
msgid "%s Year"
|
574 |
msgid_plural "%s Years"
|
575 |
-
msgstr[0] ""
|
576 |
-
msgstr[1] ""
|
577 |
|
578 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
579 |
msgid "One"
|
580 |
-
msgstr ""
|
581 |
|
582 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
583 |
msgid "Three"
|
584 |
-
msgstr ""
|
585 |
|
586 |
#: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
|
587 |
#: .././front/setup.php:97
|
588 |
msgid "Unique Views"
|
589 |
-
msgstr ""
|
590 |
|
591 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
592 |
-
#: .././admin/widgets.php:
|
593 |
-
#: .././
|
594 |
msgid "Users"
|
595 |
-
msgstr ""
|
596 |
|
597 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
598 |
msgid "Organic"
|
599 |
msgstr "Búsquedas orgánicas"
|
600 |
|
601 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
602 |
-
#: .././admin/widgets.php:
|
603 |
-
#: .././
|
604 |
msgid "Page Views"
|
605 |
msgstr "Páginas vistas"
|
606 |
|
607 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
608 |
-
#: .././admin/widgets.php:
|
609 |
-
#: .././
|
610 |
msgid "Bounce Rate"
|
611 |
msgstr "Porcenaje de rebote"
|
612 |
|
613 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
614 |
msgid "Location"
|
615 |
-
msgstr ""
|
616 |
|
617 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
618 |
-
#: .././tools/gapi.php:
|
619 |
msgid "Referrers"
|
620 |
-
msgstr ""
|
621 |
|
622 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
623 |
-
#: .././tools/gapi.php:
|
624 |
msgid "Searches"
|
625 |
-
msgstr ""
|
626 |
|
627 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
628 |
msgid "Traffic Details"
|
629 |
-
msgstr ""
|
630 |
|
631 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
632 |
-
#: .././admin/widgets.php:
|
633 |
-
#: .././admin/widgets.php:
|
634 |
msgid "A JavaScript Error is blocking plugin resources!"
|
635 |
-
msgstr ""
|
636 |
|
637 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
638 |
msgid "Traffic Mediums"
|
639 |
-
msgstr ""
|
640 |
|
641 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
642 |
msgid "Visitor Type"
|
643 |
-
msgstr ""
|
644 |
|
645 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
646 |
msgid "Social Networks"
|
647 |
-
msgstr ""
|
648 |
|
649 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
650 |
msgid "Search Engines"
|
651 |
-
msgstr ""
|
652 |
|
653 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
654 |
-
#: .././front/setup.php:101
|
655 |
msgid "Organic Search"
|
656 |
-
msgstr ""
|
657 |
|
658 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
659 |
-
#: .././front/setup.php:102
|
660 |
msgid "Pages/Session"
|
661 |
-
msgstr ""
|
662 |
-
|
663 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
-
#: .././admin/widgets.php:
|
667 |
-
#: .././admin/widgets.php:
|
668 |
-
#: .././admin/widgets.php:
|
669 |
-
#: .././admin/widgets.php:
|
670 |
-
#: .././admin/widgets.php:
|
671 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
672 |
-
msgstr ""
|
673 |
|
674 |
#: .././admin/setup.php:192 .././front/setup.php:104
|
675 |
msgid "Not enough data collected"
|
676 |
-
msgstr ""
|
677 |
-
|
678 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
679 |
-
#: .././admin/widgets.php:
|
680 |
-
#: .././admin/widgets.php:
|
681 |
-
#: .././admin/widgets.php:
|
682 |
-
#: .././admin/widgets.php:
|
683 |
-
#: .././admin/widgets.php:
|
684 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
685 |
msgid "This report is unavailable"
|
686 |
-
msgstr ""
|
687 |
|
688 |
#: .././admin/setup.php:194 .././front/setup.php:106
|
689 |
msgid "report generated by"
|
690 |
-
msgstr ""
|
691 |
|
692 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
693 |
msgid "Settings"
|
694 |
msgstr "Ajustes"
|
695 |
|
696 |
-
#: .././admin/setup.php:
|
697 |
#, php-format
|
698 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
699 |
-
msgstr ""
|
700 |
|
701 |
-
#: .././admin/setup.php:
|
702 |
#, php-format
|
703 |
msgid "For details, check out %1$s and %2$s."
|
704 |
-
msgstr ""
|
705 |
|
706 |
-
#: .././admin/setup.php:
|
707 |
msgid "the documentation page"
|
708 |
-
msgstr ""
|
709 |
|
710 |
-
#: .././admin/setup.php:
|
711 |
msgid "the plugin's settings page"
|
712 |
-
msgstr ""
|
713 |
|
714 |
#: .././admin/widgets.php:27 .././front/widgets.php:21
|
715 |
msgid "Google Analytics Dashboard"
|
716 |
msgstr "Escritorio de Google Analytics"
|
717 |
|
718 |
-
#: .././admin/widgets.php:32
|
719 |
-
msgid "This plugin needs an authorization:"
|
720 |
-
msgstr ""
|
721 |
-
|
722 |
#: .././admin/widgets.php:66
|
723 |
msgid "Something went wrong while retrieving profiles list."
|
724 |
-
msgstr ""
|
725 |
|
726 |
#: .././admin/widgets.php:66
|
727 |
msgid "More details"
|
728 |
-
msgstr ""
|
729 |
|
730 |
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
731 |
-
#, fuzzy
|
732 |
msgid "An admin should asign a default Google Analytics Profile."
|
733 |
-
msgstr "
|
|
|
|
|
734 |
|
735 |
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
736 |
-
#, fuzzy
|
737 |
msgid "Select Domain"
|
738 |
-
msgstr "
|
739 |
|
740 |
#: .././admin/widgets.php:95
|
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 |
|
746 |
#: .././admin/widgets.php:95
|
747 |
msgid "Find out more!"
|
748 |
-
msgstr ""
|
749 |
|
750 |
-
#: .././admin/widgets.php:
|
751 |
msgid "Real-Time"
|
752 |
msgstr "Tiempo real"
|
753 |
|
754 |
-
#: .././admin/widgets.php:
|
755 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
756 |
-
#: .././tools/gapi.php:
|
757 |
-
#: .././tools/gapi.php:
|
758 |
msgid "Sessions"
|
759 |
-
msgstr ""
|
760 |
|
761 |
-
#: .././admin/widgets.php:
|
762 |
msgid "Pages"
|
763 |
-
msgstr ""
|
764 |
|
765 |
-
#: .././admin/widgets.php:
|
766 |
msgid "REFERRAL"
|
767 |
msgstr "REFERENCIA"
|
768 |
|
769 |
-
#: .././admin/widgets.php:
|
770 |
msgid "ORGANIC"
|
771 |
msgstr "ORGÁNICO"
|
772 |
|
773 |
-
#: .././admin/widgets.php:
|
774 |
-
#: .././admin/widgets.php:
|
775 |
msgid "SOCIAL"
|
776 |
msgstr "SOCIAL"
|
777 |
|
778 |
-
#: .././admin/widgets.php:
|
779 |
-
#: .././admin/widgets.php:
|
780 |
msgid "CAMPAIGN"
|
781 |
-
msgstr ""
|
782 |
|
783 |
-
#: .././admin/widgets.php:
|
784 |
-
#: .././admin/widgets.php:
|
785 |
msgid "DIRECT"
|
786 |
msgstr "DIRECTO"
|
787 |
|
788 |
-
#: .././admin/widgets.php:
|
789 |
msgid "NEW"
|
790 |
msgstr "NUEVO"
|
791 |
|
792 |
-
#: .././admin/widgets.php:
|
793 |
msgid "REFERRALS"
|
794 |
-
msgstr ""
|
795 |
|
796 |
-
#: .././admin/widgets.php:
|
797 |
msgid "KEYWORDS"
|
798 |
-
msgstr ""
|
799 |
|
800 |
#: .././front/widgets.php:21
|
801 |
msgid "Will display your google analytics stats in a widget"
|
802 |
-
msgstr ""
|
803 |
-
|
804 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
805 |
-
msgid "trend"
|
806 |
-
msgstr ""
|
807 |
|
808 |
#: .././front/widgets.php:123
|
809 |
msgid "Period:"
|
810 |
-
msgstr ""
|
811 |
|
812 |
#: .././front/widgets.php:123
|
813 |
msgid "Sessions:"
|
814 |
-
msgstr ""
|
815 |
|
816 |
#: .././front/widgets.php:127
|
817 |
msgid "generated by"
|
818 |
-
msgstr ""
|
819 |
|
820 |
#: .././front/widgets.php:136
|
821 |
msgid "Google Analytics Stats"
|
@@ -823,51 +816,51 @@ msgstr "Estadísticas de Google Analytics"
|
|
823 |
|
824 |
#: .././front/widgets.php:144
|
825 |
msgid "Title:"
|
826 |
-
msgstr ""
|
827 |
|
828 |
#: .././front/widgets.php:147
|
829 |
msgid "Display:"
|
830 |
-
msgstr ""
|
831 |
|
832 |
#: .././front/widgets.php:148
|
833 |
msgid "Chart & Totals"
|
834 |
-
msgstr ""
|
835 |
|
836 |
#: .././front/widgets.php:149
|
837 |
msgid "Chart"
|
838 |
-
msgstr ""
|
839 |
|
840 |
#: .././front/widgets.php:150
|
841 |
msgid "Totals"
|
842 |
-
msgstr ""
|
843 |
|
844 |
#: .././front/widgets.php:154
|
845 |
msgid "Anonymize stats:"
|
846 |
-
msgstr ""
|
847 |
|
848 |
#: .././front/widgets.php:157
|
849 |
msgid "Stats for:"
|
850 |
-
msgstr ""
|
851 |
|
852 |
#: .././front/widgets.php:164
|
853 |
msgid "Give credits:"
|
854 |
-
msgstr ""
|
855 |
|
856 |
-
#: .././gadwp.php:
|
857 |
msgid "This is not allowed, read the documentation!"
|
858 |
-
msgstr ""
|
859 |
|
860 |
#: .././tools/gapi.php:128
|
861 |
msgid "Use this link to get your access code:"
|
862 |
-
msgstr ""
|
863 |
|
864 |
#: .././tools/gapi.php:128
|
865 |
msgid "Get Access Code"
|
866 |
-
msgstr ""
|
867 |
|
868 |
#: .././tools/gapi.php:132 .././tools/gapi.php:133
|
869 |
msgid "Use the red link to get your access code!"
|
870 |
-
msgstr ""
|
871 |
|
872 |
#: .././tools/gapi.php:132
|
873 |
msgid "Access Code:"
|
@@ -875,44 +868,47 @@ msgstr "Código de acceso:"
|
|
875 |
|
876 |
#: .././tools/gapi.php:139
|
877 |
msgid "Save Access Code"
|
878 |
-
msgstr ""
|
879 |
|
880 |
-
#: .././tools/gapi.php:
|
881 |
msgid "Organic Searches"
|
882 |
msgstr "Búsquedas orgánicas"
|
883 |
|
884 |
-
#: .././tools/gapi.php:
|
885 |
msgid "Unique Page Views"
|
886 |
-
msgstr ""
|
887 |
|
888 |
-
#: .././tools/gapi.php:
|
889 |
msgid "Hour"
|
890 |
msgstr "Hora"
|
891 |
|
892 |
-
#: .././tools/gapi.php:
|
893 |
msgid "Date"
|
894 |
msgstr "Fecha"
|
895 |
|
896 |
-
#: .././tools/gapi.php:
|
897 |
msgid "Views"
|
898 |
msgstr "Vistas"
|
899 |
|
900 |
-
#: .././tools/gapi.php:
|
901 |
msgid "Countries"
|
902 |
-
msgstr ""
|
903 |
|
904 |
-
#: .././tools/gapi.php:
|
905 |
msgid "Cities from"
|
906 |
-
msgstr ""
|
907 |
|
908 |
-
#: .././tools/gapi.php:
|
909 |
msgid "Channels"
|
910 |
-
msgstr ""
|
911 |
|
912 |
-
#: .././tools/gapi.php:
|
913 |
msgid "Type"
|
914 |
msgstr "Tipo"
|
915 |
|
|
|
|
|
|
|
916 |
#~ msgid "Last 7 Days"
|
917 |
#~ msgstr "Últimos 7 días "
|
918 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
+
"Language-Team: Alin Marcu, Ivan Ridao Freitas\n"
|
10 |
"Language: es_ES\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
24 |
|
25 |
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
26 |
msgid "Analytics"
|
27 |
+
msgstr "Analytics"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
+
#: .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
+
msgstr "Ajustes guardados."
|
34 |
|
35 |
#: .././admin/settings.php:91 .././admin/settings.php:186
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
40 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
41 |
+
#: .././admin/settings.php:1082
|
42 |
msgid "Cheating Huh?"
|
43 |
+
msgstr "Haciendo trampa, eh?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
+
msgstr "Algo salió mal, comprueba %1$s o %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
+
msgstr "Errores & Debug"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
62 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "autorizar aplicación"
|
65 |
|
66 |
#: .././admin/settings.php:100
|
67 |
msgid "Google Analytics Frontend Settings"
|
68 |
+
msgstr "Ajustes del Frontend de Google Analytics"
|
69 |
|
70 |
#: .././admin/settings.php:110 .././admin/settings.php:205
|
71 |
msgid "Permissions"
|
72 |
+
msgstr "Permisos"
|
73 |
|
74 |
#: .././admin/settings.php:113 .././admin/settings.php:208
|
75 |
msgid "Show stats to:"
|
76 |
+
msgstr "Mostrar estadísticas a:"
|
77 |
|
78 |
#: .././admin/settings.php:154
|
79 |
msgid "enable web page reports on frontend"
|
80 |
+
msgstr "activar informes de la página web en el Frontend"
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
84 |
+
#: .././admin/settings.php:1234
|
85 |
msgid "Save Changes"
|
86 |
+
msgstr "Guardar cambios"
|
87 |
|
88 |
#: .././admin/settings.php:195
|
89 |
msgid "Google Analytics Backend Settings"
|
90 |
+
msgstr "Ajustes del Backend de Google Analytics"
|
91 |
|
92 |
#: .././admin/settings.php:251
|
93 |
msgid "enable Switch View functionality"
|
94 |
+
msgstr "activar la funcionalidad de cambio de Vista"
|
95 |
|
96 |
#: .././admin/settings.php:262
|
97 |
msgid "enable reports on Posts List and Pages List"
|
98 |
+
msgstr "activar informes en las listas de Entradas y Páginas"
|
99 |
|
100 |
#: .././admin/settings.php:273
|
101 |
msgid "enable the main Dashboard Widget"
|
102 |
+
msgstr "activar el Widget del Escritorio principal"
|
103 |
|
104 |
#: .././admin/settings.php:277
|
|
|
105 |
msgid "Real-Time Settings"
|
106 |
+
msgstr "Ajustes de Tiempo real"
|
107 |
|
108 |
#: .././admin/settings.php:280
|
109 |
msgid "Maximum number of pages to display on real-time tab:"
|
110 |
+
msgstr "Número máximo de páginas a mostrar en la opción de tiempo real:"
|
111 |
|
112 |
#: .././admin/settings.php:285
|
113 |
msgid "Location Settings"
|
114 |
+
msgstr "Configuración de Ubicación"
|
115 |
|
116 |
#: .././admin/settings.php:289
|
117 |
msgid "Target Geo Map to country:"
|
118 |
+
msgstr "Focalizar el mapa geográfico en el país:"
|
119 |
|
120 |
#: .././admin/settings.php:327
|
121 |
msgid ""
|
122 |
"The tracking component is disabled. You should set <strong>Tracking Options</"
|
123 |
"strong> to <strong>Enabled</strong>"
|
124 |
msgstr ""
|
125 |
+
"El seguimiento está desactivado. Debe establecer <strong>Activado</strong> "
|
126 |
+
"en la opción <strong>Seguimiento</strong>"
|
127 |
|
128 |
#: .././admin/settings.php:332
|
|
|
129 |
msgid "Google Analytics Tracking Code"
|
130 |
+
msgstr "Código de seguimiento de Google Analytics"
|
131 |
|
132 |
#: .././admin/settings.php:341
|
133 |
msgid "Basic Settings"
|
134 |
+
msgstr "Ajustes básicos"
|
135 |
|
136 |
#: .././admin/settings.php:342 .././admin/settings.php:408
|
|
|
137 |
msgid "Events Tracking"
|
138 |
+
msgstr "Seguimiento de eventos"
|
139 |
|
140 |
#: .././admin/settings.php:343 .././admin/settings.php:456
|
141 |
msgid "Custom Definitions"
|
142 |
+
msgstr "Definiciones personalizadas"
|
143 |
|
144 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
145 |
+
#: .././admin/settings.php:1217
|
|
|
146 |
msgid "Exclude Tracking"
|
147 |
+
msgstr "Excluir seguimiento"
|
148 |
|
149 |
#: .././admin/settings.php:345
|
150 |
msgid "Advanced Settings"
|
151 |
+
msgstr "Ajustes avanzados"
|
152 |
|
153 |
#: .././admin/settings.php:353
|
|
|
154 |
msgid "Tracking Settings"
|
155 |
+
msgstr "Configuración de seguimiento"
|
156 |
|
157 |
#: .././admin/settings.php:356
|
158 |
msgid "Tracking Options:"
|
159 |
+
msgstr "Seguimiento:"
|
160 |
|
161 |
#: .././admin/settings.php:358
|
162 |
msgid "Disabled"
|
163 |
+
msgstr "Desactivado"
|
164 |
|
165 |
#: .././admin/settings.php:359
|
|
|
166 |
msgid "Enabled"
|
167 |
+
msgstr "Activado"
|
168 |
|
169 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
170 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
171 |
#: .././admin/widgets.php:61
|
172 |
msgid "View Name:"
|
173 |
+
msgstr "Nombre de vista:"
|
174 |
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
|
|
176 |
msgid "Tracking ID:"
|
177 |
+
msgstr "ID de seguimiento:"
|
178 |
|
179 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
180 |
msgid "Default URL:"
|
181 |
+
msgstr "URL predeterminada:"
|
182 |
|
183 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
184 |
msgid "Time Zone:"
|
185 |
+
msgstr "Zona Horaria:"
|
186 |
|
187 |
#: .././admin/settings.php:372
|
|
|
188 |
msgid "Basic Tracking"
|
189 |
+
msgstr "Seguimiento Básico"
|
190 |
|
191 |
#: .././admin/settings.php:375
|
192 |
msgid "Tracking Type:"
|
193 |
+
msgstr "Tipo de seguimiento:"
|
194 |
|
195 |
#: .././admin/settings.php:377
|
196 |
msgid "Classic Analytics"
|
197 |
+
msgstr "Classic Analytics"
|
198 |
|
199 |
#: .././admin/settings.php:378
|
200 |
msgid "Universal Analytics"
|
201 |
+
msgstr "Universal Analytics"
|
202 |
|
203 |
#: .././admin/settings.php:389
|
204 |
msgid "anonymize IPs while tracking"
|
205 |
+
msgstr "anonimizar IPs durante el seguimiento"
|
206 |
|
207 |
#: .././admin/settings.php:400
|
208 |
msgid "enable remarketing, demographics and interests reports"
|
209 |
+
msgstr "activar informes de remarketing, datos demográficos e intereses"
|
210 |
|
211 |
#: .././admin/settings.php:418
|
212 |
msgid "track downloads, mailto and outbound links"
|
213 |
+
msgstr "rastrear descargas, mailto y enlaces salientes"
|
214 |
|
215 |
#: .././admin/settings.php:422
|
216 |
msgid "Downloads Regex:"
|
217 |
+
msgstr "Descargas Regex:"
|
218 |
|
219 |
#: .././admin/settings.php:433
|
220 |
msgid "track affiliate links matching this regex"
|
221 |
+
msgstr "rastrear enlaces de afiliados que coinciden con la expresión regular"
|
222 |
|
223 |
#: .././admin/settings.php:437
|
224 |
msgid "Affiliates Regex:"
|
225 |
+
msgstr "Afiliados Regex:"
|
226 |
|
227 |
#: .././admin/settings.php:448
|
228 |
msgid "track fragment identifiers, hashmarks (#) in URI links"
|
229 |
+
msgstr "rastrear identificadores de fragmentos, hashmarks (#) en enlaces URI"
|
230 |
|
231 |
#: .././admin/settings.php:459
|
232 |
msgid "Authors:"
|
233 |
+
msgstr "Autores:"
|
234 |
|
235 |
#: .././admin/settings.php:467
|
236 |
msgid "Publication Year:"
|
237 |
+
msgstr "Año de publicación:"
|
238 |
|
239 |
#: .././admin/settings.php:475
|
240 |
msgid "Categories:"
|
241 |
+
msgstr "Categorías:"
|
242 |
|
243 |
#: .././admin/settings.php:483
|
244 |
msgid "User Type:"
|
245 |
+
msgstr "Tipo de usuario:"
|
246 |
|
247 |
#: .././admin/settings.php:495
|
|
|
248 |
msgid "Advanced Tracking"
|
249 |
+
msgstr "Seguimiento avanzado"
|
250 |
|
251 |
#: .././admin/settings.php:498
|
|
|
252 |
msgid "Page Speed SR:"
|
253 |
+
msgstr "Muestreo de velocidad de página:"
|
254 |
|
255 |
#: .././admin/settings.php:509
|
256 |
msgid "exclude events from bounce-rate calculation"
|
257 |
+
msgstr "excluir eventos en el cálculo del porcentaje de rebote"
|
258 |
|
259 |
#: .././admin/settings.php:520
|
260 |
msgid "enable enhanced link attribution"
|
261 |
+
msgstr "activar atribución de enlace mejorada"
|
262 |
|
263 |
#: .././admin/settings.php:531
|
264 |
msgid "enable AdSense account linking"
|
265 |
+
msgstr "activar vinculación con cuenta de AdSense"
|
266 |
|
267 |
#: .././admin/settings.php:542
|
268 |
msgid "enable cross domain tracking"
|
269 |
+
msgstr "activar seguimiento multidominio"
|
270 |
|
271 |
#: .././admin/settings.php:546
|
272 |
msgid "Cross Domains:"
|
273 |
+
msgstr "Lista de dominios:"
|
274 |
|
275 |
#: .././admin/settings.php:557
|
276 |
msgid "Exclude tracking for:"
|
277 |
+
msgstr "Excluir seguimiento para:"
|
278 |
|
279 |
#: .././admin/settings.php:645
|
280 |
msgid "Google Analytics Errors & Debugging"
|
281 |
+
msgstr "Errores & Debugging de Google Analytics"
|
282 |
|
283 |
#: .././admin/settings.php:655
|
284 |
msgid "Errors & Details"
|
285 |
+
msgstr "Errores & Detalles"
|
286 |
|
287 |
#: .././admin/settings.php:656
|
288 |
msgid "Plugin Settings"
|
289 |
+
msgstr "Ajustes del plugin"
|
290 |
|
291 |
#: .././admin/settings.php:663
|
292 |
msgid "Last Error detected"
|
293 |
+
msgstr "Último error detectado"
|
294 |
|
295 |
#: .././admin/settings.php:669 .././admin/settings.php:682
|
296 |
msgid "None"
|
298 |
|
299 |
#: .././admin/settings.php:676
|
300 |
msgid "Error Details"
|
301 |
+
msgstr "Detalle de errores"
|
302 |
|
303 |
#: .././admin/settings.php:696
|
304 |
msgid "Plugin Configuration"
|
305 |
+
msgstr "Configuración del plugin"
|
306 |
|
307 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
308 |
msgid ""
|
309 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
310 |
"error, try this solution:"
|
311 |
msgstr ""
|
312 |
+
"Cargando las bibliotecas necesarias. Si esto resulta en una pantalla en "
|
313 |
+
"blanco o un error fatal, pruebe esta solución:"
|
314 |
|
315 |
#: .././admin/settings.php:717
|
316 |
msgid "Library conflicts between WordPress plugins"
|
317 |
+
msgstr "Conflictos de bibliotecas entre plugins de WordPress"
|
318 |
|
319 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
320 |
msgid "Plugin authorization succeeded."
|
321 |
+
msgstr "La autorización del plugin se realizo satisfactoriamente."
|
322 |
|
323 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
324 |
msgid ""
|
325 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
326 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
327 |
msgstr ""
|
328 |
+
"El código de acceso <strong>NO</strong> es tu <strong>ID de seguimiento</"
|
329 |
+
"strong> (UA-XXXXX-X). Vuelve a intentarlo y utiliza el enlace rojo para "
|
330 |
+
"obtener tu código de acceso"
|
331 |
|
332 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
333 |
msgid "Cleared Cache."
|
334 |
msgstr "Caché borrada."
|
335 |
|
336 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
|
|
337 |
msgid "Token Reseted and Revoked."
|
338 |
+
msgstr "Token reseteado y revocado."
|
339 |
|
340 |
#: .././admin/settings.php:789
|
341 |
msgid "All errors reseted."
|
342 |
+
msgstr "Errores reiniciados."
|
343 |
|
344 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
345 |
msgid "All other domains/properties were removed."
|
346 |
+
msgstr "Se eliminaron todos los otros dominios/propiedades."
|
347 |
|
348 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
349 |
msgid "Google Analytics Settings"
|
350 |
+
msgstr "Ajustes de Google Analytics"
|
351 |
|
352 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
353 |
msgid "Use the red link (see below) to generate and get your access code!"
|
354 |
msgstr ""
|
355 |
+
"Utiliza el enlace rojo (ver debajo) para generar y obtener tu código de "
|
356 |
+
"acceso!"
|
357 |
|
358 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
|
|
359 |
msgid "Plugin Authorization"
|
360 |
+
msgstr "Autorización del plugin"
|
361 |
|
362 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
366 |
"authorization. This plugin requires a properly configured Google Analytics "
|
367 |
"account!"
|
368 |
msgstr ""
|
369 |
+
"Deberías ver este %1$s y leer este %2$s antes de continuar con la "
|
370 |
+
"autorización. Este plugin requiere una cuenta de Google Analytics "
|
371 |
+
"correctamente configurada!"
|
372 |
|
373 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
374 |
msgid "video"
|
375 |
+
msgstr "vídeo"
|
376 |
|
377 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
|
|
378 |
msgid "tutorial"
|
379 |
+
msgstr "tutorial"
|
380 |
|
381 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
382 |
msgid "use your own API Project credentials"
|
383 |
+
msgstr "utiliza tus propias credenciales de API Project"
|
384 |
|
385 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
386 |
msgid "API Key:"
|
387 |
msgstr "API Key:"
|
388 |
|
389 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
390 |
msgid "Client ID:"
|
391 |
msgstr "Client ID:"
|
392 |
|
393 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
394 |
msgid "Client Secret:"
|
395 |
msgstr "Client Secret:"
|
396 |
|
397 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
398 |
msgid "Clear Authorization"
|
399 |
msgstr "Borrar autorización"
|
400 |
|
401 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
402 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
403 |
msgid "Clear Cache"
|
404 |
msgstr "Borrar caché"
|
405 |
|
406 |
+
#: .././admin/settings.php:873
|
407 |
msgid "Reset Errors"
|
408 |
+
msgstr "Reiniciar errores"
|
409 |
|
410 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
411 |
msgid "General Settings"
|
412 |
+
msgstr "Ajustes generales"
|
413 |
|
414 |
+
#: .././admin/settings.php:882
|
415 |
msgid "Select View:"
|
416 |
+
msgstr "Seleccionar Vista:"
|
417 |
|
418 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
419 |
msgid "Property not found"
|
420 |
+
msgstr "Propiedad no encontrada"
|
421 |
|
422 |
+
#: .././admin/settings.php:899
|
423 |
msgid "Lock Selection"
|
424 |
+
msgstr "Bloquear selección"
|
425 |
|
426 |
+
#: .././admin/settings.php:918
|
427 |
msgid "Theme Color:"
|
428 |
+
msgstr "Color del tema:"
|
429 |
|
430 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
431 |
msgid "Automatic Updates"
|
432 |
+
msgstr "Actualizaciones automáticas"
|
433 |
|
434 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
435 |
msgid ""
|
436 |
"automatic updates for minor versions (security and maintenance releases only)"
|
437 |
msgstr ""
|
438 |
+
"actualizaciones automáticas para las versiones menores (sólo versiones de "
|
439 |
+
"seguridad y mantenimiento)"
|
440 |
|
441 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
442 |
#: .././admin/widgets.php:32
|
|
|
443 |
msgid "Authorize Plugin"
|
444 |
+
msgstr "Autorizar plugin"
|
445 |
|
446 |
+
#: .././admin/settings.php:1027
|
447 |
msgid "Properties refreshed."
|
448 |
+
msgstr "Propiedades actualizadas."
|
449 |
|
450 |
+
#: .././admin/settings.php:1112
|
451 |
msgid "Network Setup"
|
452 |
+
msgstr "Configuración de la red"
|
453 |
|
454 |
+
#: .././admin/settings.php:1122
|
455 |
msgid "use a single Google Analytics account for the entire network"
|
456 |
+
msgstr "utilizar una única cuenta de Google Analytics para toda la red"
|
457 |
|
458 |
+
#: .././admin/settings.php:1167
|
459 |
msgid "Refresh Properties"
|
460 |
+
msgstr "Actualizar Propiedades"
|
461 |
|
462 |
+
#: .././admin/settings.php:1173
|
|
|
463 |
msgid "Properties/Views Settings"
|
464 |
+
msgstr "Ajustes de Propiedades/Vistas"
|
465 |
|
466 |
+
#: .././admin/settings.php:1227
|
467 |
msgid "exclude Super Admin tracking for the entire network"
|
468 |
+
msgstr "excluir el seguimiento de Super Admin para toda la red"
|
469 |
|
470 |
+
#: .././admin/settings.php:1275
|
|
|
471 |
msgid "Setup Tutorial & Demo"
|
472 |
msgstr "Tutorial de configuración"
|
473 |
|
474 |
+
#: .././admin/settings.php:1283
|
475 |
msgid "Follow & Review"
|
476 |
+
msgstr "Seguir & Opinar"
|
477 |
|
478 |
+
#: .././admin/settings.php:1309
|
479 |
#, php-format
|
480 |
msgid "Your feedback and review are both important, %s!"
|
481 |
+
msgstr "Tu opinión es importante, %s!"
|
482 |
|
483 |
+
#: .././admin/settings.php:1309
|
484 |
msgid "rate this plugin"
|
485 |
+
msgstr "califica este plugin"
|
486 |
|
487 |
+
#: .././admin/settings.php:1315
|
488 |
msgid "Further Reading"
|
489 |
+
msgstr "Lecturas adicionales"
|
490 |
|
491 |
+
#: .././admin/settings.php:1322
|
492 |
#, php-format
|
493 |
msgid "%s by moving your website to HTTPS/SSL."
|
494 |
+
msgstr "%s moviendo su sitio web a HTTPS/SSL."
|
495 |
|
496 |
+
#: .././admin/settings.php:1322
|
497 |
msgid "Improve search rankings"
|
498 |
+
msgstr "Mejore los rankings de búsqueda"
|
499 |
|
500 |
+
#: .././admin/settings.php:1329
|
501 |
#, php-format
|
502 |
msgid "Other %s written by the same author"
|
503 |
+
msgstr "Otros %s escritos por el mismo autor"
|
504 |
|
505 |
+
#: .././admin/settings.php:1329
|
506 |
msgid "WordPress Plugins"
|
507 |
+
msgstr "plugins de WordPress"
|
508 |
|
509 |
+
#: .././admin/settings.php:1335
|
510 |
msgid "Other Services"
|
511 |
+
msgstr "Otros servicios"
|
512 |
|
513 |
+
#: .././admin/settings.php:1342
|
514 |
#, php-format
|
515 |
msgid "Speed up your website and plug into a whole %s"
|
516 |
+
msgstr "Acelere su sitio web y conéctese a un %s"
|
517 |
|
518 |
+
#: .././admin/settings.php:1342
|
519 |
msgid "new level of site speed"
|
520 |
+
msgstr "nuevo nivel de velocidad de sitio"
|
521 |
|
522 |
+
#: .././admin/settings.php:1349
|
523 |
#, php-format
|
524 |
msgid "%s service with users tracking at IP level."
|
525 |
+
msgstr "%s con seguimiento de usuarios a nivel IP."
|
526 |
|
527 |
+
#: .././admin/settings.php:1349
|
528 |
msgid "Web Analytics"
|
529 |
+
msgstr "Servicio de análisis web"
|
530 |
|
531 |
#: .././admin/setup.php:41 .././admin/setup.php:57
|
532 |
msgid "Google Analytics"
|
534 |
|
535 |
#: .././admin/setup.php:43
|
536 |
msgid "Backend Settings"
|
537 |
+
msgstr "Ajustes del Backend"
|
538 |
|
539 |
#: .././admin/setup.php:44
|
540 |
msgid "Frontend Settings"
|
541 |
+
msgstr "Ajustes del Frontend"
|
542 |
|
543 |
#: .././admin/setup.php:45
|
|
|
544 |
msgid "Tracking Code"
|
545 |
+
msgstr "Código de seguimiento"
|
546 |
|
547 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
548 |
msgid "Today"
|
549 |
msgstr "Hoy"
|
550 |
|
551 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
552 |
msgid "Yesterday"
|
553 |
msgstr "Ayer"
|
554 |
|
555 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
556 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
557 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
558 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
559 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
560 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
561 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
564 |
msgid "Last %d Days"
|
565 |
msgstr "Últimos %d días"
|
566 |
|
567 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
568 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
569 |
#, php-format
|
570 |
msgid "%s Year"
|
571 |
msgid_plural "%s Years"
|
572 |
+
msgstr[0] "%s año"
|
573 |
+
msgstr[1] "%s años"
|
574 |
|
575 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
576 |
msgid "One"
|
577 |
+
msgstr "Un"
|
578 |
|
579 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
580 |
msgid "Three"
|
581 |
+
msgstr "Tres"
|
582 |
|
583 |
#: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
|
584 |
#: .././front/setup.php:97
|
585 |
msgid "Unique Views"
|
586 |
+
msgstr "Vistas únicas"
|
587 |
|
588 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
589 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
590 |
+
#: .././tools/gapi.php:357
|
591 |
msgid "Users"
|
592 |
+
msgstr "Usuarios"
|
593 |
|
594 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
595 |
msgid "Organic"
|
596 |
msgstr "Búsquedas orgánicas"
|
597 |
|
598 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
599 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
600 |
+
#: .././tools/gapi.php:360
|
601 |
msgid "Page Views"
|
602 |
msgstr "Páginas vistas"
|
603 |
|
604 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
605 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
606 |
+
#: .././tools/gapi.php:363
|
607 |
msgid "Bounce Rate"
|
608 |
msgstr "Porcenaje de rebote"
|
609 |
|
610 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
611 |
msgid "Location"
|
612 |
+
msgstr "Ubicación"
|
613 |
|
614 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
615 |
+
#: .././tools/gapi.php:502
|
616 |
msgid "Referrers"
|
617 |
+
msgstr "Referencias"
|
618 |
|
619 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
620 |
+
#: .././tools/gapi.php:535
|
621 |
msgid "Searches"
|
622 |
+
msgstr "Búsquedas"
|
623 |
|
624 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
625 |
msgid "Traffic Details"
|
626 |
+
msgstr "Detalles de tráfico"
|
627 |
|
628 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
629 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
630 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
631 |
msgid "A JavaScript Error is blocking plugin resources!"
|
632 |
+
msgstr "Un error de JavaScript está bloqueando los recursos del plugin!"
|
633 |
|
634 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
635 |
msgid "Traffic Mediums"
|
636 |
+
msgstr "Medios de tráfico"
|
637 |
|
638 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
639 |
msgid "Visitor Type"
|
640 |
+
msgstr "Tipo de usuario"
|
641 |
|
642 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
643 |
msgid "Social Networks"
|
644 |
+
msgstr "Redes sociales"
|
645 |
|
646 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
647 |
msgid "Search Engines"
|
648 |
+
msgstr "Motores de búsqueda"
|
649 |
|
650 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
651 |
msgid "Organic Search"
|
652 |
+
msgstr "Búsqueda orgánica"
|
653 |
|
654 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
655 |
msgid "Pages/Session"
|
656 |
+
msgstr "Páginas/sesión"
|
657 |
+
|
658 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
659 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
660 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
661 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
662 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
663 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
664 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
665 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
666 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
667 |
+
msgstr "Respuesta no válida, más detalles en la consola de JavaScript (F12)."
|
668 |
|
669 |
#: .././admin/setup.php:192 .././front/setup.php:104
|
670 |
msgid "Not enough data collected"
|
671 |
+
msgstr "No hay suficientes datos"
|
672 |
+
|
673 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
674 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
675 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
676 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
677 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
678 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
679 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
680 |
msgid "This report is unavailable"
|
681 |
+
msgstr "Este informe no está disponible"
|
682 |
|
683 |
#: .././admin/setup.php:194 .././front/setup.php:106
|
684 |
msgid "report generated by"
|
685 |
+
msgstr "informe generado por"
|
686 |
|
687 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
688 |
+
msgid "This plugin needs an authorization:"
|
689 |
+
msgstr "Este plugin necesita una autorización:"
|
690 |
+
|
691 |
+
#: .././admin/setup.php:227
|
692 |
msgid "Settings"
|
693 |
msgstr "Ajustes"
|
694 |
|
695 |
+
#: .././admin/setup.php:239
|
696 |
#, php-format
|
697 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
698 |
+
msgstr "Google Analytics Dashboard for WP ha sido actualizado a la versión %s."
|
699 |
|
700 |
+
#: .././admin/setup.php:239
|
701 |
#, php-format
|
702 |
msgid "For details, check out %1$s and %2$s."
|
703 |
+
msgstr "Para más información, echa un vistazo a %1$s y %2$s."
|
704 |
|
705 |
+
#: .././admin/setup.php:239
|
706 |
msgid "the documentation page"
|
707 |
+
msgstr "la página de documentación"
|
708 |
|
709 |
+
#: .././admin/setup.php:239
|
710 |
msgid "the plugin's settings page"
|
711 |
+
msgstr "página de configuración del plugin"
|
712 |
|
713 |
#: .././admin/widgets.php:27 .././front/widgets.php:21
|
714 |
msgid "Google Analytics Dashboard"
|
715 |
msgstr "Escritorio de Google Analytics"
|
716 |
|
|
|
|
|
|
|
|
|
717 |
#: .././admin/widgets.php:66
|
718 |
msgid "Something went wrong while retrieving profiles list."
|
719 |
+
msgstr "Algo salió mal al recuperar la lista de perfiles."
|
720 |
|
721 |
#: .././admin/widgets.php:66
|
722 |
msgid "More details"
|
723 |
+
msgstr "Más información"
|
724 |
|
725 |
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
|
|
726 |
msgid "An admin should asign a default Google Analytics Profile."
|
727 |
+
msgstr ""
|
728 |
+
"Un Administrador debería asignar el valor por defecto del perfil de Google "
|
729 |
+
"Analytics."
|
730 |
|
731 |
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
|
|
732 |
msgid "Select Domain"
|
733 |
+
msgstr "Seleccionar dominio"
|
734 |
|
735 |
#: .././admin/widgets.php:95
|
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 salió mal al recuperar datos de propiedades. Es necesario crear y "
|
741 |
+
"configurar correctamente una cuenta de Google Analytics:"
|
742 |
|
743 |
#: .././admin/widgets.php:95
|
744 |
msgid "Find out more!"
|
745 |
+
msgstr "Descubre más!"
|
746 |
|
747 |
+
#: .././admin/widgets.php:113
|
748 |
msgid "Real-Time"
|
749 |
msgstr "Tiempo real"
|
750 |
|
751 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
752 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
753 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
754 |
+
#: .././tools/gapi.php:694
|
755 |
msgid "Sessions"
|
756 |
+
msgstr "Sesiones"
|
757 |
|
758 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
759 |
msgid "Pages"
|
760 |
+
msgstr "Páginas"
|
761 |
|
762 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
763 |
msgid "REFERRAL"
|
764 |
msgstr "REFERENCIA"
|
765 |
|
766 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
767 |
msgid "ORGANIC"
|
768 |
msgstr "ORGÁNICO"
|
769 |
|
770 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
771 |
+
#: .././admin/widgets.php:477
|
772 |
msgid "SOCIAL"
|
773 |
msgstr "SOCIAL"
|
774 |
|
775 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
776 |
+
#: .././admin/widgets.php:478
|
777 |
msgid "CAMPAIGN"
|
778 |
+
msgstr "CAMPAÑA"
|
779 |
|
780 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
781 |
+
#: .././admin/widgets.php:481
|
782 |
msgid "DIRECT"
|
783 |
msgstr "DIRECTO"
|
784 |
|
785 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
786 |
msgid "NEW"
|
787 |
msgstr "NUEVO"
|
788 |
|
789 |
+
#: .././admin/widgets.php:355
|
790 |
msgid "REFERRALS"
|
791 |
+
msgstr "Referencias"
|
792 |
|
793 |
+
#: .././admin/widgets.php:358
|
794 |
msgid "KEYWORDS"
|
795 |
+
msgstr "KEYWORDS"
|
796 |
|
797 |
#: .././front/widgets.php:21
|
798 |
msgid "Will display your google analytics stats in a widget"
|
799 |
+
msgstr "Mostrará tus estadísticas de Google Analytics en un widget"
|
|
|
|
|
|
|
|
|
800 |
|
801 |
#: .././front/widgets.php:123
|
802 |
msgid "Period:"
|
803 |
+
msgstr "Período:"
|
804 |
|
805 |
#: .././front/widgets.php:123
|
806 |
msgid "Sessions:"
|
807 |
+
msgstr "Sesiones:"
|
808 |
|
809 |
#: .././front/widgets.php:127
|
810 |
msgid "generated by"
|
811 |
+
msgstr "generado por"
|
812 |
|
813 |
#: .././front/widgets.php:136
|
814 |
msgid "Google Analytics Stats"
|
816 |
|
817 |
#: .././front/widgets.php:144
|
818 |
msgid "Title:"
|
819 |
+
msgstr "Título:"
|
820 |
|
821 |
#: .././front/widgets.php:147
|
822 |
msgid "Display:"
|
823 |
+
msgstr "Mostrar:"
|
824 |
|
825 |
#: .././front/widgets.php:148
|
826 |
msgid "Chart & Totals"
|
827 |
+
msgstr "Gráfico y Totales"
|
828 |
|
829 |
#: .././front/widgets.php:149
|
830 |
msgid "Chart"
|
831 |
+
msgstr "Gráfico"
|
832 |
|
833 |
#: .././front/widgets.php:150
|
834 |
msgid "Totals"
|
835 |
+
msgstr "Totales"
|
836 |
|
837 |
#: .././front/widgets.php:154
|
838 |
msgid "Anonymize stats:"
|
839 |
+
msgstr "Anonimizar estadísticas:"
|
840 |
|
841 |
#: .././front/widgets.php:157
|
842 |
msgid "Stats for:"
|
843 |
+
msgstr "Estadísticas para:"
|
844 |
|
845 |
#: .././front/widgets.php:164
|
846 |
msgid "Give credits:"
|
847 |
+
msgstr "Mostrar créditos:"
|
848 |
|
849 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
850 |
msgid "This is not allowed, read the documentation!"
|
851 |
+
msgstr "Esto no está permitido, lea la documentación!"
|
852 |
|
853 |
#: .././tools/gapi.php:128
|
854 |
msgid "Use this link to get your access code:"
|
855 |
+
msgstr "Utiliza este enlace para obtener tu código de acceso:"
|
856 |
|
857 |
#: .././tools/gapi.php:128
|
858 |
msgid "Get Access Code"
|
859 |
+
msgstr "Obtener código de acceso"
|
860 |
|
861 |
#: .././tools/gapi.php:132 .././tools/gapi.php:133
|
862 |
msgid "Use the red link to get your access code!"
|
863 |
+
msgstr "Utiliza el enlace rojo para obtener tu código de acceso!"
|
864 |
|
865 |
#: .././tools/gapi.php:132
|
866 |
msgid "Access Code:"
|
868 |
|
869 |
#: .././tools/gapi.php:139
|
870 |
msgid "Save Access Code"
|
871 |
+
msgstr "Guardar código de acceso"
|
872 |
|
873 |
+
#: .././tools/gapi.php:366
|
874 |
msgid "Organic Searches"
|
875 |
msgstr "Búsquedas orgánicas"
|
876 |
|
877 |
+
#: .././tools/gapi.php:369
|
878 |
msgid "Unique Page Views"
|
879 |
+
msgstr "Páginas vistas únicas"
|
880 |
|
881 |
+
#: .././tools/gapi.php:377
|
882 |
msgid "Hour"
|
883 |
msgstr "Hora"
|
884 |
|
885 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
886 |
msgid "Date"
|
887 |
msgstr "Fecha"
|
888 |
|
889 |
+
#: .././tools/gapi.php:470
|
890 |
msgid "Views"
|
891 |
msgstr "Vistas"
|
892 |
|
893 |
+
#: .././tools/gapi.php:556
|
894 |
msgid "Countries"
|
895 |
+
msgstr "País"
|
896 |
|
897 |
+
#: .././tools/gapi.php:566
|
898 |
msgid "Cities from"
|
899 |
+
msgstr "Ciudades de"
|
900 |
|
901 |
+
#: .././tools/gapi.php:619
|
902 |
msgid "Channels"
|
903 |
+
msgstr "Canales"
|
904 |
|
905 |
+
#: .././tools/gapi.php:665
|
906 |
msgid "Type"
|
907 |
msgstr "Tipo"
|
908 |
|
909 |
+
#~ msgid "trend"
|
910 |
+
#~ msgstr "tendencia"
|
911 |
+
|
912 |
#~ msgid "Last 7 Days"
|
913 |
#~ msgstr "Últimos 7 días "
|
914 |
|
languages/{ga-dash-fr_FR.mo → google-analytics-dashboard-for-wp-fr_FR.mo}
RENAMED
File without changes
|
languages/{ga-dash-fr_FR.po → google-analytics-dashboard-for-wp-fr_FR.po}
RENAMED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
-
"PO-Revision-Date: 2015-
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: fr_FR\n"
|
@@ -13,7 +13,7 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
16 |
-
"X-Generator: Poedit 1.8.
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
@@ -27,32 +27,33 @@ msgid "Analytics"
|
|
27 |
msgstr "Analytics"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
30 |
-
#: .././admin/settings.php:795 .././admin/settings.php:
|
31 |
msgid "Settings saved."
|
32 |
msgstr "Paramètres enregistrés."
|
33 |
|
34 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
35 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
-
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:
|
37 |
-
#: .././admin/settings.php:
|
38 |
-
#: .././admin/settings.php:
|
39 |
msgid "Cheating Huh?"
|
40 |
msgstr "Alors on triche ?"
|
41 |
|
42 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
43 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
44 |
#, php-format
|
45 |
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
msgstr "Quelque chose ne va pas, vérifier %1$s ou %2$s."
|
47 |
|
48 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
49 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
50 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
51 |
msgid "Errors & Debug"
|
52 |
msgstr "Erreurs et débogage"
|
53 |
|
54 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
55 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
|
|
56 |
msgid "authorize the plugin"
|
57 |
msgstr "autoriser le plugin"
|
58 |
|
@@ -73,7 +74,7 @@ msgid "enable web page reports on frontend"
|
|
73 |
msgstr ""
|
74 |
|
75 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
76 |
-
#: .././admin/settings.php:
|
77 |
msgid "Save Changes"
|
78 |
msgstr "Sauvergarder les changements"
|
79 |
|
@@ -133,7 +134,7 @@ msgstr "Événements de suivi"
|
|
133 |
msgid "Custom Definitions"
|
134 |
msgstr "Définitions personnalisées"
|
135 |
|
136 |
-
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:
|
137 |
msgid "Exclude Tracking"
|
138 |
msgstr "Exclure le suivi"
|
139 |
|
@@ -157,20 +158,20 @@ msgstr "Désactivé"
|
|
157 |
msgid "Enabled"
|
158 |
msgstr "Activé"
|
159 |
|
160 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
161 |
-
#: .././admin/settings.php:
|
162 |
msgid "View Name:"
|
163 |
msgstr "Voir le nom :"
|
164 |
|
165 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
166 |
msgid "Tracking ID:"
|
167 |
msgstr "ID de suivi :"
|
168 |
|
169 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
170 |
msgid "Default URL:"
|
171 |
msgstr "URL par défaut :"
|
172 |
|
173 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
174 |
msgid "Time Zone:"
|
175 |
msgstr "Fuseau horaire :"
|
176 |
|
@@ -294,7 +295,7 @@ msgstr "Détails de l'erreur"
|
|
294 |
msgid "Plugin Configuration"
|
295 |
msgstr "Configuration du plugin"
|
296 |
|
297 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
298 |
msgid ""
|
299 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
300 |
"solution:"
|
@@ -306,11 +307,11 @@ msgstr ""
|
|
306 |
msgid "Library conflicts between WordPress plugins"
|
307 |
msgstr "Conflits de bibliothèque entre plugins WordPress"
|
308 |
|
309 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
310 |
msgid "Plugin authorization succeeded."
|
311 |
msgstr "Autorisation de plugin a réussi."
|
312 |
|
313 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
314 |
msgid ""
|
315 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
316 |
"again, and use the red link to get your access code"
|
@@ -318,11 +319,11 @@ msgstr ""
|
|
318 |
"Le code d'accès n'est <strong>PAS</strong> votre <strong>ID de suivi</strong> (UA-XXXXX-X). "
|
319 |
"Essayez à nouveau et cliquez sur le lien rouge pour obtenir votre code d'accès"
|
320 |
|
321 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
322 |
msgid "Cleared Cache."
|
323 |
msgstr "Cache effacé."
|
324 |
|
325 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
326 |
msgid "Token Reseted and Revoked."
|
327 |
msgstr "Jeton réinitialisée et révoqué."
|
328 |
|
@@ -330,23 +331,23 @@ msgstr "Jeton réinitialisée et révoqué."
|
|
330 |
msgid "All errors reseted."
|
331 |
msgstr "Toutes les erreurs sont réinitialisées."
|
332 |
|
333 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
334 |
msgid "All other domains/properties were removed."
|
335 |
msgstr "Tous les autres domaines et propriétés ont été retirées."
|
336 |
|
337 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
338 |
msgid "Google Analytics Settings"
|
339 |
msgstr "Paramètres de Google Analytics"
|
340 |
|
341 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
342 |
msgid "Use the red link (see below) to generate and get your access code!"
|
343 |
msgstr "Le lien rouge (voir ci-dessous) permet de générer et d'obtenir votre code d'accès !"
|
344 |
|
345 |
-
#: .././admin/settings.php:
|
346 |
msgid "Plugin Authorization"
|
347 |
msgstr "Autorisation du plugin"
|
348 |
|
349 |
-
#: .././admin/settings.php:
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
@@ -355,158 +356,158 @@ msgstr ""
|
|
355 |
"Vous devriez regarder %1$s et lire cette %2$s avant de procéder à l'autorisation. Ce plugin "
|
356 |
"nécessite un compte Google Analytics correctement configuré !"
|
357 |
|
358 |
-
#: .././admin/settings.php:
|
359 |
msgid "video"
|
360 |
msgstr "vidéo"
|
361 |
|
362 |
-
#: .././admin/settings.php:
|
363 |
msgid "tutorial"
|
364 |
msgstr "tutoriel"
|
365 |
|
366 |
-
#: .././admin/settings.php:
|
367 |
msgid "use your own API Project credentials"
|
368 |
msgstr "Utilisez vos propres informations d'identification du projet d'API"
|
369 |
|
370 |
-
#: .././admin/settings.php:
|
371 |
msgid "API Key:"
|
372 |
msgstr "Clé API :"
|
373 |
|
374 |
-
#: .././admin/settings.php:
|
375 |
msgid "Client ID:"
|
376 |
msgstr "ID client :"
|
377 |
|
378 |
-
#: .././admin/settings.php:
|
379 |
msgid "Client Secret:"
|
380 |
msgstr "Secret client:"
|
381 |
|
382 |
-
#: .././admin/settings.php:
|
383 |
msgid "Clear Authorization"
|
384 |
msgstr "Effacer l'authorisation"
|
385 |
|
386 |
-
#: .././admin/settings.php:
|
387 |
-
#: .././admin/settings.php:
|
388 |
msgid "Clear Cache"
|
389 |
msgstr "Nettoyer le cache"
|
390 |
|
391 |
-
#: .././admin/settings.php:
|
392 |
msgid "Reset Errors"
|
393 |
msgstr "Réinitialisation des erreurs"
|
394 |
|
395 |
-
#: .././admin/settings.php:
|
396 |
msgid "General Settings"
|
397 |
msgstr "Paramètres généraux"
|
398 |
|
399 |
-
#: .././admin/settings.php:
|
400 |
msgid "Select View:"
|
401 |
msgstr "Sélectionnez Afficher :"
|
402 |
|
403 |
-
#: .././admin/settings.php:
|
404 |
msgid "Property not found"
|
405 |
msgstr "Propriété introuvable"
|
406 |
|
407 |
-
#: .././admin/settings.php:
|
408 |
msgid "Lock Selection"
|
409 |
msgstr "Verrouiler la Sélection"
|
410 |
|
411 |
-
#: .././admin/settings.php:
|
412 |
msgid "Theme Color:"
|
413 |
msgstr "Couleur du theme:"
|
414 |
|
415 |
-
#: .././admin/settings.php:
|
416 |
msgid "Automatic Updates"
|
417 |
msgstr "Mises à jour automatiques"
|
418 |
|
419 |
-
#: .././admin/settings.php:
|
420 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
421 |
msgstr ""
|
422 |
"mises à jour automatiques pour les versions mineures (sécurité et version maintenance uniquement)"
|
423 |
|
424 |
-
#: .././admin/settings.php:
|
425 |
msgid "Authorize Plugin"
|
426 |
msgstr "Autoriser le Plugin"
|
427 |
|
428 |
-
#: .././admin/settings.php:
|
429 |
msgid "Properties refreshed."
|
430 |
msgstr "Propriétés rafraîchies."
|
431 |
|
432 |
-
#: .././admin/settings.php:
|
433 |
msgid "Network Setup"
|
434 |
msgstr "Configuration du réseau"
|
435 |
|
436 |
-
#: .././admin/settings.php:
|
437 |
msgid "use a single Google Analytics account for the entire network"
|
438 |
msgstr "utiliser un seul compte Google Analytics pour l'ensemble du réseau"
|
439 |
|
440 |
-
#: .././admin/settings.php:
|
441 |
msgid "Refresh Properties"
|
442 |
msgstr "Propriétés de rafraîchissement"
|
443 |
|
444 |
-
#: .././admin/settings.php:
|
445 |
msgid "Properties/Views Settings"
|
446 |
msgstr "Paramètres de propriétés/vues"
|
447 |
|
448 |
-
#: .././admin/settings.php:
|
449 |
msgid "exclude Super Admin tracking for the entire network"
|
450 |
msgstr "exclure Super Admin pour l'ensemble du réseau suivi"
|
451 |
|
452 |
-
#: .././admin/settings.php:
|
453 |
msgid "Setup Tutorial & Demo"
|
454 |
msgstr "Tutoriel d'installation & démo"
|
455 |
|
456 |
-
#: .././admin/settings.php:
|
457 |
msgid "Follow & Review"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: .././admin/settings.php:
|
461 |
#, php-format
|
462 |
msgid "Your feedback and review are both important, %s!"
|
463 |
msgstr "Votre avis et commentaire sont tous deux importants, %s !"
|
464 |
|
465 |
-
#: .././admin/settings.php:
|
466 |
msgid "rate this plugin"
|
467 |
msgstr "évaluez cette extension"
|
468 |
|
469 |
-
#: .././admin/settings.php:
|
470 |
msgid "Further Reading"
|
471 |
msgstr "Autres lectures"
|
472 |
|
473 |
-
#: .././admin/settings.php:
|
474 |
#, php-format
|
475 |
msgid "%s by moving your website to HTTPS/SSL."
|
476 |
msgstr "%s en déplaçant votre site Web à HTTPS/SSL."
|
477 |
|
478 |
-
#: .././admin/settings.php:
|
479 |
msgid "Improve search rankings"
|
480 |
msgstr "Améliorer le classement de recherche"
|
481 |
|
482 |
-
#: .././admin/settings.php:
|
483 |
#, php-format
|
484 |
msgid "Other %s written by the same author"
|
485 |
msgstr "Autre %s écrit par le même auteur"
|
486 |
|
487 |
-
#: .././admin/settings.php:
|
488 |
msgid "WordPress Plugins"
|
489 |
msgstr "Plugins Wordpress"
|
490 |
|
491 |
-
#: .././admin/settings.php:
|
492 |
msgid "Other Services"
|
493 |
msgstr "Autres Services"
|
494 |
|
495 |
-
#: .././admin/settings.php:
|
496 |
#, php-format
|
497 |
msgid "Speed up your website and plug into a whole %s"
|
498 |
msgstr "Accélérer votre site Web et branchez ensemble %s"
|
499 |
|
500 |
-
#: .././admin/settings.php:
|
501 |
msgid "new level of site speed"
|
502 |
msgstr "nouveau niveau de vitesse du site"
|
503 |
|
504 |
-
#: .././admin/settings.php:
|
505 |
#, php-format
|
506 |
msgid "%s service with users tracking at IP level."
|
507 |
msgstr "%s service avec les utilisateurs de suivi au niveau IP."
|
508 |
|
509 |
-
#: .././admin/settings.php:
|
510 |
msgid "Web Analytics"
|
511 |
msgstr "Web Analytics"
|
512 |
|
@@ -526,17 +527,17 @@ msgstr "Paramètres du frontend"
|
|
526 |
msgid "Tracking Code"
|
527 |
msgstr "Code de suivi"
|
528 |
|
529 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
530 |
msgid "Today"
|
531 |
msgstr "Aujourd'hui"
|
532 |
|
533 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
534 |
msgid "Yesterday"
|
535 |
msgstr "Hier"
|
536 |
|
537 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
538 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
539 |
-
#: .././admin/widgets.php:
|
540 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
541 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
542 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
@@ -544,19 +545,19 @@ msgstr "Hier"
|
|
544 |
msgid "Last %d Days"
|
545 |
msgstr "%d derniers jours"
|
546 |
|
547 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:
|
548 |
-
#: .././admin/widgets.php:
|
549 |
#, php-format
|
550 |
msgid "%s Year"
|
551 |
msgid_plural "%s Years"
|
552 |
msgstr[0] ""
|
553 |
msgstr[1] ""
|
554 |
|
555 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
556 |
msgid "One"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
560 |
msgid "Three"
|
561 |
msgstr ""
|
562 |
|
@@ -565,80 +566,80 @@ msgstr ""
|
|
565 |
msgid "Unique Views"
|
566 |
msgstr "Vues unique"
|
567 |
|
568 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:
|
569 |
-
#: .././admin/widgets.php:
|
570 |
-
#: .././tools/gapi.php:
|
571 |
msgid "Users"
|
572 |
msgstr "Utilisateurs"
|
573 |
|
574 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
575 |
msgid "Organic"
|
576 |
msgstr "Organiques"
|
577 |
|
578 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:
|
579 |
-
#: .././admin/widgets.php:
|
580 |
-
#: .././tools/gapi.php:
|
581 |
msgid "Page Views"
|
582 |
msgstr "Pages vues"
|
583 |
|
584 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:
|
585 |
-
#: .././admin/widgets.php:
|
586 |
-
#: .././tools/gapi.php:
|
587 |
msgid "Bounce Rate"
|
588 |
msgstr "Taux de rebond"
|
589 |
|
590 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
591 |
msgid "Location"
|
592 |
msgstr "Lieu"
|
593 |
|
594 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
595 |
-
#: .././tools/gapi.php:
|
596 |
msgid "Referrers"
|
597 |
msgstr "Référence"
|
598 |
|
599 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
600 |
-
#: .././tools/gapi.php:
|
601 |
msgid "Searches"
|
602 |
msgstr "Recherches"
|
603 |
|
604 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
605 |
msgid "Traffic Details"
|
606 |
msgstr "Détails du trafic"
|
607 |
|
608 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
609 |
-
#: .././admin/widgets.php:
|
610 |
msgid "A JavaScript Error is blocking plugin resources!"
|
611 |
msgstr "Une erreur JavaScript bloque les ressources du plugin !"
|
612 |
|
613 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
614 |
msgid "Traffic Mediums"
|
615 |
msgstr "Traffic Moyen"
|
616 |
|
617 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
618 |
msgid "Visitor Type"
|
619 |
msgstr "Type de visiteur"
|
620 |
|
621 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
622 |
msgid "Social Networks"
|
623 |
msgstr "Réseaux Sociaux"
|
624 |
|
625 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
626 |
msgid "Search Engines"
|
627 |
msgstr "Moteur de recherche"
|
628 |
|
629 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
630 |
msgid "Organic Search"
|
631 |
msgstr "Recherche Organique"
|
632 |
|
633 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
634 |
msgid "Pages/Session"
|
635 |
msgstr "Pages/Session"
|
636 |
|
637 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
638 |
-
#: .././admin/widgets.php:
|
639 |
-
#: .././admin/widgets.php:
|
640 |
-
#: .././admin/widgets.php:
|
641 |
-
#: .././admin/widgets.php:
|
642 |
#: .././front/setup.php:103
|
643 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
644 |
msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
|
@@ -647,10 +648,10 @@ msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
|
|
647 |
msgid "Not enough data collected"
|
648 |
msgstr "Pas assez de données collectées"
|
649 |
|
650 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
651 |
-
#: .././admin/widgets.php:
|
652 |
-
#: .././admin/widgets.php:
|
653 |
-
#: .././admin/widgets.php:
|
654 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
655 |
msgid "This report is unavailable"
|
656 |
msgstr "Ce rapport n'est pas disponible"
|
@@ -659,25 +660,29 @@ msgstr "Ce rapport n'est pas disponible"
|
|
659 |
msgid "report generated by"
|
660 |
msgstr "rapport générée par"
|
661 |
|
662 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
663 |
msgid "Settings"
|
664 |
msgstr "Paramètres"
|
665 |
|
666 |
-
#: .././admin/setup.php:
|
667 |
#, php-format
|
668 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: .././admin/setup.php:
|
672 |
#, php-format
|
673 |
msgid "For details, check out %1$s and %2$s."
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: .././admin/setup.php:
|
677 |
msgid "the documentation page"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: .././admin/setup.php:
|
681 |
msgid "the plugin's settings page"
|
682 |
msgstr ""
|
683 |
|
@@ -685,10 +690,6 @@ msgstr ""
|
|
685 |
msgid "Google Analytics Dashboard"
|
686 |
msgstr "Tableau de bord Google Analytics "
|
687 |
|
688 |
-
#: .././admin/widgets.php:32
|
689 |
-
msgid "This plugin needs an authorization:"
|
690 |
-
msgstr "Ce plugin a besoin d'une autorisation :"
|
691 |
-
|
692 |
#: .././admin/widgets.php:66
|
693 |
msgid "Something went wrong while retrieving profiles list."
|
694 |
msgstr "Quelque chose s'est mal passé lors de la récupération des profils."
|
@@ -717,49 +718,49 @@ msgstr ""
|
|
717 |
msgid "Find out more!"
|
718 |
msgstr "Plus d'informations!"
|
719 |
|
720 |
-
#: .././admin/widgets.php:
|
721 |
msgid "Real-Time"
|
722 |
msgstr "Temps réel"
|
723 |
|
724 |
-
#: .././admin/widgets.php:
|
725 |
-
#: .././tools/gapi.php:
|
726 |
-
#: .././tools/gapi.php:
|
727 |
msgid "Sessions"
|
728 |
msgstr "Sessions"
|
729 |
|
730 |
-
#: .././admin/widgets.php:
|
731 |
msgid "Pages"
|
732 |
msgstr "Pages"
|
733 |
|
734 |
-
#: .././admin/widgets.php:
|
735 |
msgid "REFERRAL"
|
736 |
msgstr "RÉFÉRENCE"
|
737 |
|
738 |
-
#: .././admin/widgets.php:
|
739 |
msgid "ORGANIC"
|
740 |
msgstr "ORGANIQUE"
|
741 |
|
742 |
-
#: .././admin/widgets.php:
|
743 |
msgid "SOCIAL"
|
744 |
msgstr "SOCIAL"
|
745 |
|
746 |
-
#: .././admin/widgets.php:
|
747 |
msgid "CAMPAIGN"
|
748 |
msgstr "CAMPAGNE"
|
749 |
|
750 |
-
#: .././admin/widgets.php:
|
751 |
msgid "DIRECT"
|
752 |
msgstr "DIRECT"
|
753 |
|
754 |
-
#: .././admin/widgets.php:
|
755 |
msgid "NEW"
|
756 |
msgstr "NOUVEAU"
|
757 |
|
758 |
-
#: .././admin/widgets.php:
|
759 |
msgid "REFERRALS"
|
760 |
msgstr "RÉFÉRENCES"
|
761 |
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "KEYWORDS"
|
764 |
msgstr "MOTS-CLÉS"
|
765 |
|
@@ -767,10 +768,6 @@ msgstr "MOTS-CLÉS"
|
|
767 |
msgid "Will display your google analytics stats in a widget"
|
768 |
msgstr "Affiche vos statistiques de Google Analytics dans un widget"
|
769 |
|
770 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
771 |
-
msgid "trend"
|
772 |
-
msgstr "tendances"
|
773 |
-
|
774 |
#: .././front/widgets.php:123
|
775 |
msgid "Period:"
|
776 |
msgstr "Période :"
|
@@ -819,7 +816,7 @@ msgstr "Stats pour :"
|
|
819 |
msgid "Give credits:"
|
820 |
msgstr "Donner des crédits :"
|
821 |
|
822 |
-
#: .././gadwp.php:
|
823 |
msgid "This is not allowed, read the documentation!"
|
824 |
msgstr "Cela ne me convient pas, lisez la documentation !"
|
825 |
|
@@ -843,42 +840,45 @@ msgstr "Code d'accès:"
|
|
843 |
msgid "Save Access Code"
|
844 |
msgstr "Sauvegarder code d'accès"
|
845 |
|
846 |
-
#: .././tools/gapi.php:
|
847 |
msgid "Organic Searches"
|
848 |
msgstr "Recherches organiques"
|
849 |
|
850 |
-
#: .././tools/gapi.php:
|
851 |
msgid "Unique Page Views"
|
852 |
msgstr "Pages vues unique"
|
853 |
|
854 |
-
#: .././tools/gapi.php:
|
855 |
msgid "Hour"
|
856 |
msgstr "Heure"
|
857 |
|
858 |
-
#: .././tools/gapi.php:
|
859 |
msgid "Date"
|
860 |
msgstr "Date"
|
861 |
|
862 |
-
#: .././tools/gapi.php:
|
863 |
msgid "Views"
|
864 |
msgstr "Vues"
|
865 |
|
866 |
-
#: .././tools/gapi.php:
|
867 |
msgid "Countries"
|
868 |
msgstr "Pays"
|
869 |
|
870 |
-
#: .././tools/gapi.php:
|
871 |
msgid "Cities from"
|
872 |
msgstr "Villes de"
|
873 |
|
874 |
-
#: .././tools/gapi.php:
|
875 |
msgid "Channels"
|
876 |
msgstr "Canaux"
|
877 |
|
878 |
-
#: .././tools/gapi.php:
|
879 |
msgid "Type"
|
880 |
msgstr "Type"
|
881 |
|
|
|
|
|
|
|
882 |
#~ msgid "Last 7 Days"
|
883 |
#~ msgstr "7 derniers jours"
|
884 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
8 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: Alin Marcu\n"
|
11 |
"Language: fr_FR\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
16 |
+
"X-Generator: Poedit 1.8.4\n"
|
17 |
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
19 |
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
27 |
msgstr "Analytics"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
30 |
+
#: .././admin/settings.php:795 .././admin/settings.php:1069
|
31 |
msgid "Settings saved."
|
32 |
msgstr "Paramètres enregistrés."
|
33 |
|
34 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
35 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
+
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1030
|
37 |
+
#: .././admin/settings.php:1055 .././admin/settings.php:1065 .././admin/settings.php:1071
|
38 |
+
#: .././admin/settings.php:1082
|
39 |
msgid "Cheating Huh?"
|
40 |
msgstr "Alors on triche ?"
|
41 |
|
42 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
43 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
44 |
#, php-format
|
45 |
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
msgstr "Quelque chose ne va pas, vérifier %1$s ou %2$s."
|
47 |
|
48 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
49 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
50 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
51 |
msgid "Errors & Debug"
|
52 |
msgstr "Erreurs et débogage"
|
53 |
|
54 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
55 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
56 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
57 |
msgid "authorize the plugin"
|
58 |
msgstr "autoriser le plugin"
|
59 |
|
74 |
msgstr ""
|
75 |
|
76 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
77 |
+
#: .././admin/settings.php:944 .././admin/settings.php:1234
|
78 |
msgid "Save Changes"
|
79 |
msgstr "Sauvergarder les changements"
|
80 |
|
134 |
msgid "Custom Definitions"
|
135 |
msgstr "Définitions personnalisées"
|
136 |
|
137 |
+
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1217
|
138 |
msgid "Exclude Tracking"
|
139 |
msgstr "Exclure le suivi"
|
140 |
|
158 |
msgid "Enabled"
|
159 |
msgstr "Activé"
|
160 |
|
161 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889 .././admin/settings.php:911
|
162 |
+
#: .././admin/settings.php:1190 .././admin/widgets.php:61
|
163 |
msgid "View Name:"
|
164 |
msgstr "Voir le nom :"
|
165 |
|
166 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
167 |
msgid "Tracking ID:"
|
168 |
msgstr "ID de suivi :"
|
169 |
|
170 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
171 |
msgid "Default URL:"
|
172 |
msgstr "URL par défaut :"
|
173 |
|
174 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
175 |
msgid "Time Zone:"
|
176 |
msgstr "Fuseau horaire :"
|
177 |
|
295 |
msgid "Plugin Configuration"
|
296 |
msgstr "Configuration du plugin"
|
297 |
|
298 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
299 |
msgid ""
|
300 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
301 |
"solution:"
|
307 |
msgid "Library conflicts between WordPress plugins"
|
308 |
msgstr "Conflits de bibliothèque entre plugins WordPress"
|
309 |
|
310 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
311 |
msgid "Plugin authorization succeeded."
|
312 |
msgstr "Autorisation de plugin a réussi."
|
313 |
|
314 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
315 |
msgid ""
|
316 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
317 |
"again, and use the red link to get your access code"
|
319 |
"Le code d'accès n'est <strong>PAS</strong> votre <strong>ID de suivi</strong> (UA-XXXXX-X). "
|
320 |
"Essayez à nouveau et cliquez sur le lien rouge pour obtenir votre code d'accès"
|
321 |
|
322 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
323 |
msgid "Cleared Cache."
|
324 |
msgstr "Cache effacé."
|
325 |
|
326 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
327 |
msgid "Token Reseted and Revoked."
|
328 |
msgstr "Jeton réinitialisée et révoqué."
|
329 |
|
331 |
msgid "All errors reseted."
|
332 |
msgstr "Toutes les erreurs sont réinitialisées."
|
333 |
|
334 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
335 |
msgid "All other domains/properties were removed."
|
336 |
msgstr "Tous les autres domaines et propriétés ont été retirées."
|
337 |
|
338 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
339 |
msgid "Google Analytics Settings"
|
340 |
msgstr "Paramètres de Google Analytics"
|
341 |
|
342 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
343 |
msgid "Use the red link (see below) to generate and get your access code!"
|
344 |
msgstr "Le lien rouge (voir ci-dessous) permet de générer et d'obtenir votre code d'accès !"
|
345 |
|
346 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
347 |
msgid "Plugin Authorization"
|
348 |
msgstr "Autorisation du plugin"
|
349 |
|
350 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
351 |
#, php-format
|
352 |
msgid ""
|
353 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
356 |
"Vous devriez regarder %1$s et lire cette %2$s avant de procéder à l'autorisation. Ce plugin "
|
357 |
"nécessite un compte Google Analytics correctement configuré !"
|
358 |
|
359 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
360 |
msgid "video"
|
361 |
msgstr "vidéo"
|
362 |
|
363 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
364 |
msgid "tutorial"
|
365 |
msgstr "tutoriel"
|
366 |
|
367 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
368 |
msgid "use your own API Project credentials"
|
369 |
msgstr "Utilisez vos propres informations d'identification du projet d'API"
|
370 |
|
371 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
372 |
msgid "API Key:"
|
373 |
msgstr "Clé API :"
|
374 |
|
375 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
376 |
msgid "Client ID:"
|
377 |
msgstr "ID client :"
|
378 |
|
379 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
380 |
msgid "Client Secret:"
|
381 |
msgstr "Secret client:"
|
382 |
|
383 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
384 |
msgid "Clear Authorization"
|
385 |
msgstr "Effacer l'authorisation"
|
386 |
|
387 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951 .././admin/settings.php:1167
|
388 |
+
#: .././admin/settings.php:1243
|
389 |
msgid "Clear Cache"
|
390 |
msgstr "Nettoyer le cache"
|
391 |
|
392 |
+
#: .././admin/settings.php:873
|
393 |
msgid "Reset Errors"
|
394 |
msgstr "Réinitialisation des erreurs"
|
395 |
|
396 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
397 |
msgid "General Settings"
|
398 |
msgstr "Paramètres généraux"
|
399 |
|
400 |
+
#: .././admin/settings.php:882
|
401 |
msgid "Select View:"
|
402 |
msgstr "Sélectionnez Afficher :"
|
403 |
|
404 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
405 |
msgid "Property not found"
|
406 |
msgstr "Propriété introuvable"
|
407 |
|
408 |
+
#: .././admin/settings.php:899
|
409 |
msgid "Lock Selection"
|
410 |
msgstr "Verrouiler la Sélection"
|
411 |
|
412 |
+
#: .././admin/settings.php:918
|
413 |
msgid "Theme Color:"
|
414 |
msgstr "Couleur du theme:"
|
415 |
|
416 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
417 |
msgid "Automatic Updates"
|
418 |
msgstr "Mises à jour automatiques"
|
419 |
|
420 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
421 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
422 |
msgstr ""
|
423 |
"mises à jour automatiques pour les versions mineures (sécurité et version maintenance uniquement)"
|
424 |
|
425 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243 .././admin/widgets.php:32
|
426 |
msgid "Authorize Plugin"
|
427 |
msgstr "Autoriser le Plugin"
|
428 |
|
429 |
+
#: .././admin/settings.php:1027
|
430 |
msgid "Properties refreshed."
|
431 |
msgstr "Propriétés rafraîchies."
|
432 |
|
433 |
+
#: .././admin/settings.php:1112
|
434 |
msgid "Network Setup"
|
435 |
msgstr "Configuration du réseau"
|
436 |
|
437 |
+
#: .././admin/settings.php:1122
|
438 |
msgid "use a single Google Analytics account for the entire network"
|
439 |
msgstr "utiliser un seul compte Google Analytics pour l'ensemble du réseau"
|
440 |
|
441 |
+
#: .././admin/settings.php:1167
|
442 |
msgid "Refresh Properties"
|
443 |
msgstr "Propriétés de rafraîchissement"
|
444 |
|
445 |
+
#: .././admin/settings.php:1173
|
446 |
msgid "Properties/Views Settings"
|
447 |
msgstr "Paramètres de propriétés/vues"
|
448 |
|
449 |
+
#: .././admin/settings.php:1227
|
450 |
msgid "exclude Super Admin tracking for the entire network"
|
451 |
msgstr "exclure Super Admin pour l'ensemble du réseau suivi"
|
452 |
|
453 |
+
#: .././admin/settings.php:1275
|
454 |
msgid "Setup Tutorial & Demo"
|
455 |
msgstr "Tutoriel d'installation & démo"
|
456 |
|
457 |
+
#: .././admin/settings.php:1283
|
458 |
msgid "Follow & Review"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: .././admin/settings.php:1309
|
462 |
#, php-format
|
463 |
msgid "Your feedback and review are both important, %s!"
|
464 |
msgstr "Votre avis et commentaire sont tous deux importants, %s !"
|
465 |
|
466 |
+
#: .././admin/settings.php:1309
|
467 |
msgid "rate this plugin"
|
468 |
msgstr "évaluez cette extension"
|
469 |
|
470 |
+
#: .././admin/settings.php:1315
|
471 |
msgid "Further Reading"
|
472 |
msgstr "Autres lectures"
|
473 |
|
474 |
+
#: .././admin/settings.php:1322
|
475 |
#, php-format
|
476 |
msgid "%s by moving your website to HTTPS/SSL."
|
477 |
msgstr "%s en déplaçant votre site Web à HTTPS/SSL."
|
478 |
|
479 |
+
#: .././admin/settings.php:1322
|
480 |
msgid "Improve search rankings"
|
481 |
msgstr "Améliorer le classement de recherche"
|
482 |
|
483 |
+
#: .././admin/settings.php:1329
|
484 |
#, php-format
|
485 |
msgid "Other %s written by the same author"
|
486 |
msgstr "Autre %s écrit par le même auteur"
|
487 |
|
488 |
+
#: .././admin/settings.php:1329
|
489 |
msgid "WordPress Plugins"
|
490 |
msgstr "Plugins Wordpress"
|
491 |
|
492 |
+
#: .././admin/settings.php:1335
|
493 |
msgid "Other Services"
|
494 |
msgstr "Autres Services"
|
495 |
|
496 |
+
#: .././admin/settings.php:1342
|
497 |
#, php-format
|
498 |
msgid "Speed up your website and plug into a whole %s"
|
499 |
msgstr "Accélérer votre site Web et branchez ensemble %s"
|
500 |
|
501 |
+
#: .././admin/settings.php:1342
|
502 |
msgid "new level of site speed"
|
503 |
msgstr "nouveau niveau de vitesse du site"
|
504 |
|
505 |
+
#: .././admin/settings.php:1349
|
506 |
#, php-format
|
507 |
msgid "%s service with users tracking at IP level."
|
508 |
msgstr "%s service avec les utilisateurs de suivi au niveau IP."
|
509 |
|
510 |
+
#: .././admin/settings.php:1349
|
511 |
msgid "Web Analytics"
|
512 |
msgstr "Web Analytics"
|
513 |
|
527 |
msgid "Tracking Code"
|
528 |
msgstr "Code de suivi"
|
529 |
|
530 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
531 |
msgid "Today"
|
532 |
msgstr "Aujourd'hui"
|
533 |
|
534 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
535 |
msgid "Yesterday"
|
536 |
msgstr "Hier"
|
537 |
|
538 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
539 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116 .././admin/widgets.php:117
|
540 |
+
#: .././admin/widgets.php:118 .././admin/widgets.php:119 .././front/setup.php:73
|
541 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
542 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
543 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
545 |
msgid "Last %d Days"
|
546 |
msgstr "%d derniers jours"
|
547 |
|
548 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
549 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
550 |
#, php-format
|
551 |
msgid "%s Year"
|
552 |
msgid_plural "%s Years"
|
553 |
msgstr[0] ""
|
554 |
msgstr[1] ""
|
555 |
|
556 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
557 |
msgid "One"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
561 |
msgid "Three"
|
562 |
msgstr ""
|
563 |
|
566 |
msgid "Unique Views"
|
567 |
msgstr "Vues unique"
|
568 |
|
569 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
570 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
571 |
+
#: .././tools/gapi.php:357
|
572 |
msgid "Users"
|
573 |
msgstr "Utilisateurs"
|
574 |
|
575 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
576 |
msgid "Organic"
|
577 |
msgstr "Organiques"
|
578 |
|
579 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
580 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
581 |
+
#: .././tools/gapi.php:360
|
582 |
msgid "Page Views"
|
583 |
msgstr "Pages vues"
|
584 |
|
585 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
586 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
587 |
+
#: .././tools/gapi.php:363
|
588 |
msgid "Bounce Rate"
|
589 |
msgstr "Taux de rebond"
|
590 |
|
591 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
592 |
msgid "Location"
|
593 |
msgstr "Lieu"
|
594 |
|
595 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
596 |
+
#: .././tools/gapi.php:502
|
597 |
msgid "Referrers"
|
598 |
msgstr "Référence"
|
599 |
|
600 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
601 |
+
#: .././tools/gapi.php:535
|
602 |
msgid "Searches"
|
603 |
msgstr "Recherches"
|
604 |
|
605 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
606 |
msgid "Traffic Details"
|
607 |
msgstr "Détails du trafic"
|
608 |
|
609 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502 .././admin/widgets.php:587
|
610 |
+
#: .././admin/widgets.php:754 .././admin/widgets.php:858 .././front/setup.php:92
|
611 |
msgid "A JavaScript Error is blocking plugin resources!"
|
612 |
msgstr "Une erreur JavaScript bloque les ressources du plugin !"
|
613 |
|
614 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
615 |
msgid "Traffic Mediums"
|
616 |
msgstr "Traffic Moyen"
|
617 |
|
618 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
619 |
msgid "Visitor Type"
|
620 |
msgstr "Type de visiteur"
|
621 |
|
622 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
623 |
msgid "Social Networks"
|
624 |
msgstr "Réseaux Sociaux"
|
625 |
|
626 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
627 |
msgid "Search Engines"
|
628 |
msgstr "Moteur de recherche"
|
629 |
|
630 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
631 |
msgid "Organic Search"
|
632 |
msgstr "Recherche Organique"
|
633 |
|
634 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
635 |
msgid "Pages/Session"
|
636 |
msgstr "Pages/Session"
|
637 |
|
638 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514 .././admin/widgets.php:528
|
639 |
+
#: .././admin/widgets.php:538 .././admin/widgets.php:599 .././admin/widgets.php:613
|
640 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641 .././admin/widgets.php:655
|
641 |
+
#: .././admin/widgets.php:665 .././admin/widgets.php:767 .././admin/widgets.php:779
|
642 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884 .././admin/widgets.php:894
|
643 |
#: .././front/setup.php:103
|
644 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
645 |
msgstr "Réponse non valide, plus de détails dans la Console JavaScript (F12)."
|
648 |
msgid "Not enough data collected"
|
649 |
msgstr "Pas assez de données collectées"
|
650 |
|
651 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519 .././admin/widgets.php:533
|
652 |
+
#: .././admin/widgets.php:604 .././admin/widgets.php:618 .././admin/widgets.php:632
|
653 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660 .././admin/widgets.php:772
|
654 |
+
#: .././admin/widgets.php:774 .././admin/widgets.php:875 .././admin/widgets.php:889
|
655 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
656 |
msgid "This report is unavailable"
|
657 |
msgstr "Ce rapport n'est pas disponible"
|
660 |
msgid "report generated by"
|
661 |
msgstr "rapport générée par"
|
662 |
|
663 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
664 |
+
msgid "This plugin needs an authorization:"
|
665 |
+
msgstr "Ce plugin a besoin d'une autorisation :"
|
666 |
+
|
667 |
+
#: .././admin/setup.php:227
|
668 |
msgid "Settings"
|
669 |
msgstr "Paramètres"
|
670 |
|
671 |
+
#: .././admin/setup.php:239
|
672 |
#, php-format
|
673 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: .././admin/setup.php:239
|
677 |
#, php-format
|
678 |
msgid "For details, check out %1$s and %2$s."
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: .././admin/setup.php:239
|
682 |
msgid "the documentation page"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: .././admin/setup.php:239
|
686 |
msgid "the plugin's settings page"
|
687 |
msgstr ""
|
688 |
|
690 |
msgid "Google Analytics Dashboard"
|
691 |
msgstr "Tableau de bord Google Analytics "
|
692 |
|
|
|
|
|
|
|
|
|
693 |
#: .././admin/widgets.php:66
|
694 |
msgid "Something went wrong while retrieving profiles list."
|
695 |
msgstr "Quelque chose s'est mal passé lors de la récupération des profils."
|
718 |
msgid "Find out more!"
|
719 |
msgstr "Plus d'informations!"
|
720 |
|
721 |
+
#: .././admin/widgets.php:113
|
722 |
msgid "Real-Time"
|
723 |
msgstr "Temps réel"
|
724 |
|
725 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823 .././front/widgets.php:36
|
726 |
+
#: .././tools/gapi.php:372 .././tools/gapi.php:502 .././tools/gapi.php:535 .././tools/gapi.php:585
|
727 |
+
#: .././tools/gapi.php:665 .././tools/gapi.php:694
|
728 |
msgid "Sessions"
|
729 |
msgstr "Sessions"
|
730 |
|
731 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
732 |
msgid "Pages"
|
733 |
msgstr "Pages"
|
734 |
|
735 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
736 |
msgid "REFERRAL"
|
737 |
msgstr "RÉFÉRENCE"
|
738 |
|
739 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
740 |
msgid "ORGANIC"
|
741 |
msgstr "ORGANIQUE"
|
742 |
|
743 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361 .././admin/widgets.php:477
|
744 |
msgid "SOCIAL"
|
745 |
msgstr "SOCIAL"
|
746 |
|
747 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364 .././admin/widgets.php:478
|
748 |
msgid "CAMPAIGN"
|
749 |
msgstr "CAMPAGNE"
|
750 |
|
751 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367 .././admin/widgets.php:481
|
752 |
msgid "DIRECT"
|
753 |
msgstr "DIRECT"
|
754 |
|
755 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
756 |
msgid "NEW"
|
757 |
msgstr "NOUVEAU"
|
758 |
|
759 |
+
#: .././admin/widgets.php:355
|
760 |
msgid "REFERRALS"
|
761 |
msgstr "RÉFÉRENCES"
|
762 |
|
763 |
+
#: .././admin/widgets.php:358
|
764 |
msgid "KEYWORDS"
|
765 |
msgstr "MOTS-CLÉS"
|
766 |
|
768 |
msgid "Will display your google analytics stats in a widget"
|
769 |
msgstr "Affiche vos statistiques de Google Analytics dans un widget"
|
770 |
|
|
|
|
|
|
|
|
|
771 |
#: .././front/widgets.php:123
|
772 |
msgid "Period:"
|
773 |
msgstr "Période :"
|
816 |
msgid "Give credits:"
|
817 |
msgstr "Donner des crédits :"
|
818 |
|
819 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
820 |
msgid "This is not allowed, read the documentation!"
|
821 |
msgstr "Cela ne me convient pas, lisez la documentation !"
|
822 |
|
840 |
msgid "Save Access Code"
|
841 |
msgstr "Sauvegarder code d'accès"
|
842 |
|
843 |
+
#: .././tools/gapi.php:366
|
844 |
msgid "Organic Searches"
|
845 |
msgstr "Recherches organiques"
|
846 |
|
847 |
+
#: .././tools/gapi.php:369
|
848 |
msgid "Unique Page Views"
|
849 |
msgstr "Pages vues unique"
|
850 |
|
851 |
+
#: .././tools/gapi.php:377
|
852 |
msgid "Hour"
|
853 |
msgstr "Heure"
|
854 |
|
855 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
856 |
msgid "Date"
|
857 |
msgstr "Date"
|
858 |
|
859 |
+
#: .././tools/gapi.php:470
|
860 |
msgid "Views"
|
861 |
msgstr "Vues"
|
862 |
|
863 |
+
#: .././tools/gapi.php:556
|
864 |
msgid "Countries"
|
865 |
msgstr "Pays"
|
866 |
|
867 |
+
#: .././tools/gapi.php:566
|
868 |
msgid "Cities from"
|
869 |
msgstr "Villes de"
|
870 |
|
871 |
+
#: .././tools/gapi.php:619
|
872 |
msgid "Channels"
|
873 |
msgstr "Canaux"
|
874 |
|
875 |
+
#: .././tools/gapi.php:665
|
876 |
msgid "Type"
|
877 |
msgstr "Type"
|
878 |
|
879 |
+
#~ msgid "trend"
|
880 |
+
#~ msgstr "tendances"
|
881 |
+
|
882 |
#~ msgid "Last 7 Days"
|
883 |
#~ msgstr "7 derniers jours"
|
884 |
|
languages/{ga-dash-hu_HU.mo → google-analytics-dashboard-for-wp-hu_HU.mo}
RENAMED
File without changes
|
languages/{ga-dash-hu_HU.po → google-analytics-dashboard-for-wp-hu_HU.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP 4.7.2\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: I love WordPress <info@ilovewp.net>\n"
|
10 |
"Language: hu_HU\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -28,7 +28,7 @@ msgstr "Statisztika"
|
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
-
#: .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Beállítások mentve."
|
34 |
|
@@ -36,29 +36,30 @@ msgstr "Beállítások mentve."
|
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
-
#: .././admin/settings.php:
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "Csalás Huh?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Valami rosszul ment, tekintse meg itt: %1$s vagy %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Hibák és hibakeresés"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
62 |
msgid "authorize the plugin"
|
63 |
msgstr "engedélyezze a bővítményt"
|
64 |
|
@@ -79,8 +80,8 @@ msgid "enable web page reports on frontend"
|
|
79 |
msgstr ""
|
80 |
|
81 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
82 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
83 |
-
#: .././admin/settings.php:
|
84 |
msgid "Save Changes"
|
85 |
msgstr "Beállítások mentése"
|
86 |
|
@@ -141,7 +142,7 @@ msgid "Custom Definitions"
|
|
141 |
msgstr "Egyéni meghatározások"
|
142 |
|
143 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
144 |
-
#: .././admin/settings.php:
|
145 |
msgid "Exclude Tracking"
|
146 |
msgstr "Követés kizárás"
|
147 |
|
@@ -165,21 +166,21 @@ msgstr "Letiltva"
|
|
165 |
msgid "Enabled"
|
166 |
msgstr "Engedélyezve"
|
167 |
|
168 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
169 |
-
#: .././admin/settings.php:
|
170 |
#: .././admin/widgets.php:61
|
171 |
msgid "View Name:"
|
172 |
msgstr "Nézet neve:"
|
173 |
|
174 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
175 |
msgid "Tracking ID:"
|
176 |
msgstr "Követési azonosító:"
|
177 |
|
178 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
179 |
msgid "Default URL:"
|
180 |
msgstr "Alapértelmezett webcím:"
|
181 |
|
182 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
183 |
msgid "Time Zone:"
|
184 |
msgstr "Időzóna:"
|
185 |
|
@@ -305,7 +306,7 @@ msgstr "Hiba részletek"
|
|
305 |
msgid "Plugin Configuration"
|
306 |
msgstr "Bővítmény beállítások"
|
307 |
|
308 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
309 |
msgid ""
|
310 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
311 |
"error, try this solution:"
|
@@ -317,11 +318,11 @@ msgstr ""
|
|
317 |
msgid "Library conflicts between WordPress plugins"
|
318 |
msgstr "WordPress bővítmények közötti ütközés"
|
319 |
|
320 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
321 |
msgid "Plugin authorization succeeded."
|
322 |
msgstr "Bővítmény engedélyezése sikeres."
|
323 |
|
324 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
325 |
msgid ""
|
326 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
327 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
@@ -330,11 +331,11 @@ msgstr ""
|
|
330 |
"strong> (UA-XXXXX-X). Próbálja újból, és használja a piros linket, hogy a "
|
331 |
"hozzáférési kódot megkapja"
|
332 |
|
333 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
334 |
msgid "Cleared Cache."
|
335 |
msgstr "Cache kiürítve."
|
336 |
|
337 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
338 |
msgid "Token Reseted and Revoked."
|
339 |
msgstr "Token visszaállítva és visszavonva."
|
340 |
|
@@ -342,25 +343,25 @@ msgstr "Token visszaállítva és visszavonva."
|
|
342 |
msgid "All errors reseted."
|
343 |
msgstr "Összes hiba törölve."
|
344 |
|
345 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
346 |
msgid "All other domains/properties were removed."
|
347 |
msgstr "Összes többi domain/tulajdon eltávolításra került."
|
348 |
|
349 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
350 |
msgid "Google Analytics Settings"
|
351 |
msgstr "Google Analytics beállítások"
|
352 |
|
353 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
354 |
msgid "Use the red link (see below) to generate and get your access code!"
|
355 |
msgstr ""
|
356 |
"Használja a piros linket (lásd alul), hogy a hozzáférési kódot legenerálja "
|
357 |
"és megkapja!"
|
358 |
|
359 |
-
#: .././admin/settings.php:
|
360 |
msgid "Plugin Authorization"
|
361 |
msgstr "Bővítmény engedélyezése"
|
362 |
|
363 |
-
#: .././admin/settings.php:
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -371,160 +372,160 @@ msgstr ""
|
|
371 |
"Ezt a bővítményt csak helyesen beállított Google Analytics fiókkal lehet "
|
372 |
"használni!"
|
373 |
|
374 |
-
#: .././admin/settings.php:
|
375 |
msgid "video"
|
376 |
msgstr "videót"
|
377 |
|
378 |
-
#: .././admin/settings.php:
|
379 |
msgid "tutorial"
|
380 |
msgstr "útmutatót"
|
381 |
|
382 |
-
#: .././admin/settings.php:
|
383 |
msgid "use your own API Project credentials"
|
384 |
msgstr "saját API Project adatainak használata"
|
385 |
|
386 |
-
#: .././admin/settings.php:
|
387 |
msgid "API Key:"
|
388 |
msgstr "API key:"
|
389 |
|
390 |
-
#: .././admin/settings.php:
|
391 |
msgid "Client ID:"
|
392 |
msgstr "Client ID:"
|
393 |
|
394 |
-
#: .././admin/settings.php:
|
395 |
msgid "Client Secret:"
|
396 |
msgstr "Client Secret:"
|
397 |
|
398 |
-
#: .././admin/settings.php:
|
399 |
msgid "Clear Authorization"
|
400 |
msgstr "Engedélyezés törlése"
|
401 |
|
402 |
-
#: .././admin/settings.php:
|
403 |
-
#: .././admin/settings.php:
|
404 |
msgid "Clear Cache"
|
405 |
msgstr "Cache ürítése"
|
406 |
|
407 |
-
#: .././admin/settings.php:
|
408 |
msgid "Reset Errors"
|
409 |
msgstr "Hibák törlése"
|
410 |
|
411 |
-
#: .././admin/settings.php:
|
412 |
msgid "General Settings"
|
413 |
msgstr "Általános beállítások"
|
414 |
|
415 |
-
#: .././admin/settings.php:
|
416 |
msgid "Select View:"
|
417 |
msgstr "Nézet kiválasztása:"
|
418 |
|
419 |
-
#: .././admin/settings.php:
|
420 |
msgid "Property not found"
|
421 |
msgstr "Tulajdon nem található"
|
422 |
|
423 |
-
#: .././admin/settings.php:
|
424 |
msgid "Lock Selection"
|
425 |
msgstr "Kiválasztás zárolása"
|
426 |
|
427 |
-
#: .././admin/settings.php:
|
428 |
msgid "Theme Color:"
|
429 |
msgstr "Téma színe:"
|
430 |
|
431 |
-
#: .././admin/settings.php:
|
432 |
msgid "Automatic Updates"
|
433 |
msgstr "Automatikus frissítések"
|
434 |
|
435 |
-
#: .././admin/settings.php:
|
436 |
msgid ""
|
437 |
"automatic updates for minor versions (security and maintenance releases only)"
|
438 |
msgstr ""
|
439 |
"alverziók automatikus frissítései (csak biztonsági és karbantartási kiadások)"
|
440 |
|
441 |
-
#: .././admin/settings.php:
|
442 |
#: .././admin/widgets.php:32
|
443 |
msgid "Authorize Plugin"
|
444 |
msgstr "Bővítmény engedélyezése"
|
445 |
|
446 |
-
#: .././admin/settings.php:
|
447 |
msgid "Properties refreshed."
|
448 |
msgstr "Tulajdon frissítve."
|
449 |
|
450 |
-
#: .././admin/settings.php:
|
451 |
msgid "Network Setup"
|
452 |
msgstr "Hálózat beállítása"
|
453 |
|
454 |
-
#: .././admin/settings.php:
|
455 |
msgid "use a single Google Analytics account for the entire network"
|
456 |
msgstr "egy Google Analytics fiókot használjon a teljes hálózaton"
|
457 |
|
458 |
-
#: .././admin/settings.php:
|
459 |
msgid "Refresh Properties"
|
460 |
msgstr "Tulajdon frissítése"
|
461 |
|
462 |
-
#: .././admin/settings.php:
|
463 |
msgid "Properties/Views Settings"
|
464 |
msgstr "Tulajdon/Nézet beállítások"
|
465 |
|
466 |
-
#: .././admin/settings.php:
|
467 |
msgid "exclude Super Admin tracking for the entire network"
|
468 |
msgstr "Super Admin követésének kizárása a teljes hálózaton"
|
469 |
|
470 |
-
#: .././admin/settings.php:
|
471 |
msgid "Setup Tutorial & Demo"
|
472 |
msgstr "Telepítési útmutató és demo"
|
473 |
|
474 |
-
#: .././admin/settings.php:
|
475 |
msgid "Follow & Review"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: .././admin/settings.php:
|
479 |
#, php-format
|
480 |
msgid "Your feedback and review are both important, %s!"
|
481 |
msgstr "A visszajelzése és értékelése is fontos számunkra, %s!"
|
482 |
|
483 |
-
#: .././admin/settings.php:
|
484 |
msgid "rate this plugin"
|
485 |
msgstr "értékelje ezt a bővítményt"
|
486 |
|
487 |
-
#: .././admin/settings.php:
|
488 |
msgid "Further Reading"
|
489 |
msgstr "További olvasnivaló"
|
490 |
|
491 |
-
#: .././admin/settings.php:
|
492 |
#, php-format
|
493 |
msgid "%s by moving your website to HTTPS/SSL."
|
494 |
msgstr "%s HTTPS/SSL segítségével."
|
495 |
|
496 |
-
#: .././admin/settings.php:
|
497 |
msgid "Improve search rankings"
|
498 |
msgstr "Keresési rangsor javítása"
|
499 |
|
500 |
-
#: .././admin/settings.php:
|
501 |
#, php-format
|
502 |
msgid "Other %s written by the same author"
|
503 |
msgstr "További %s ugyanettől a szerzőtől"
|
504 |
|
505 |
-
#: .././admin/settings.php:
|
506 |
msgid "WordPress Plugins"
|
507 |
msgstr "WordPress bővítmények"
|
508 |
|
509 |
-
#: .././admin/settings.php:
|
510 |
msgid "Other Services"
|
511 |
msgstr "Egyéb szolgáltatások"
|
512 |
|
513 |
-
#: .././admin/settings.php:
|
514 |
#, php-format
|
515 |
msgid "Speed up your website and plug into a whole %s"
|
516 |
msgstr "Gyorsítsa fel honlapját és emelje egy teljesen %s"
|
517 |
|
518 |
-
#: .././admin/settings.php:
|
519 |
msgid "new level of site speed"
|
520 |
msgstr "új szintre a webhely sebességét"
|
521 |
|
522 |
-
#: .././admin/settings.php:
|
523 |
#, php-format
|
524 |
msgid "%s service with users tracking at IP level."
|
525 |
msgstr "%s szolgáltatás felhasználói nyomkövetéssel IP szinten."
|
526 |
|
527 |
-
#: .././admin/settings.php:
|
528 |
msgid "Web Analytics"
|
529 |
msgstr "Web Statisztika"
|
530 |
|
@@ -544,18 +545,18 @@ msgstr "Weblap beállítások"
|
|
544 |
msgid "Tracking Code"
|
545 |
msgstr "Követőkód"
|
546 |
|
547 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
548 |
msgid "Today"
|
549 |
msgstr "Ma"
|
550 |
|
551 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
552 |
msgid "Yesterday"
|
553 |
msgstr "Tegnap"
|
554 |
|
555 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
556 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
557 |
-
#: .././admin/widgets.php:
|
558 |
-
#: .././admin/widgets.php:
|
559 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
560 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
561 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -564,20 +565,19 @@ msgstr "Tegnap"
|
|
564 |
msgid "Last %d Days"
|
565 |
msgstr "Elmúlt %d nap"
|
566 |
|
567 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
568 |
-
#: .././admin/widgets.php:
|
569 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
570 |
#, php-format
|
571 |
msgid "%s Year"
|
572 |
msgid_plural "%s Years"
|
573 |
msgstr[0] ""
|
574 |
msgstr[1] ""
|
575 |
|
576 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
577 |
msgid "One"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
581 |
msgid "Three"
|
582 |
msgstr ""
|
583 |
|
@@ -586,86 +586,84 @@ msgstr ""
|
|
586 |
msgid "Unique Views"
|
587 |
msgstr "Egyedi megtekintések"
|
588 |
|
589 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
590 |
-
#: .././admin/widgets.php:
|
591 |
-
#: .././
|
592 |
msgid "Users"
|
593 |
msgstr "Felhasználók"
|
594 |
|
595 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
596 |
msgid "Organic"
|
597 |
msgstr "Organikus"
|
598 |
|
599 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
600 |
-
#: .././admin/widgets.php:
|
601 |
-
#: .././
|
602 |
msgid "Page Views"
|
603 |
msgstr "Oldal megtekintések"
|
604 |
|
605 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
606 |
-
#: .././admin/widgets.php:
|
607 |
-
#: .././
|
608 |
msgid "Bounce Rate"
|
609 |
msgstr "Visszafordulási arány"
|
610 |
|
611 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
612 |
msgid "Location"
|
613 |
msgstr "Hely"
|
614 |
|
615 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
616 |
-
#: .././tools/gapi.php:
|
617 |
msgid "Referrers"
|
618 |
msgstr "Hivatkozók"
|
619 |
|
620 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
621 |
-
#: .././tools/gapi.php:
|
622 |
msgid "Searches"
|
623 |
msgstr "Keresések"
|
624 |
|
625 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
626 |
msgid "Traffic Details"
|
627 |
msgstr "Forgalmi adatok"
|
628 |
|
629 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
630 |
-
#: .././admin/widgets.php:
|
631 |
-
#: .././admin/widgets.php:
|
632 |
msgid "A JavaScript Error is blocking plugin resources!"
|
633 |
msgstr "Egy JavaScript hiba blokkolja a bővítmény forrásait!"
|
634 |
|
635 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
636 |
msgid "Traffic Mediums"
|
637 |
msgstr "Forgalmi közeg"
|
638 |
|
639 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
640 |
msgid "Visitor Type"
|
641 |
msgstr "Látogató típus"
|
642 |
|
643 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
644 |
msgid "Social Networks"
|
645 |
msgstr "Közösségi hálózatok"
|
646 |
|
647 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
648 |
msgid "Search Engines"
|
649 |
msgstr "Keresőmotorok"
|
650 |
|
651 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
652 |
-
#: .././front/setup.php:101
|
653 |
msgid "Organic Search"
|
654 |
msgstr "Organikus keresés"
|
655 |
|
656 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
657 |
-
#: .././front/setup.php:102
|
658 |
msgid "Pages/Session"
|
659 |
msgstr "Oldal / munkamenet"
|
660 |
|
661 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
-
#: .././admin/widgets.php:
|
667 |
-
#: .././admin/widgets.php:
|
668 |
-
#: .././admin/widgets.php:
|
669 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
670 |
msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12)."
|
671 |
|
@@ -673,12 +671,12 @@ msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12).
|
|
673 |
msgid "Not enough data collected"
|
674 |
msgstr "Nincs elegendő összegyűjtött adat"
|
675 |
|
676 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
677 |
-
#: .././admin/widgets.php:
|
678 |
-
#: .././admin/widgets.php:
|
679 |
-
#: .././admin/widgets.php:
|
680 |
-
#: .././admin/widgets.php:
|
681 |
-
#: .././admin/widgets.php:
|
682 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
683 |
msgid "This report is unavailable"
|
684 |
msgstr "Ez a jelentés nem elérhető"
|
@@ -687,25 +685,29 @@ msgstr "Ez a jelentés nem elérhető"
|
|
687 |
msgid "report generated by"
|
688 |
msgstr "jelentést generálta"
|
689 |
|
690 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
691 |
msgid "Settings"
|
692 |
msgstr "Beállítások"
|
693 |
|
694 |
-
#: .././admin/setup.php:
|
695 |
#, php-format
|
696 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
697 |
msgstr ""
|
698 |
|
699 |
-
#: .././admin/setup.php:
|
700 |
#, php-format
|
701 |
msgid "For details, check out %1$s and %2$s."
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: .././admin/setup.php:
|
705 |
msgid "the documentation page"
|
706 |
msgstr ""
|
707 |
|
708 |
-
#: .././admin/setup.php:
|
709 |
msgid "the plugin's settings page"
|
710 |
msgstr ""
|
711 |
|
@@ -713,10 +715,6 @@ msgstr ""
|
|
713 |
msgid "Google Analytics Dashboard"
|
714 |
msgstr "Google Analytics vezérlőpult"
|
715 |
|
716 |
-
#: .././admin/widgets.php:32
|
717 |
-
msgid "This plugin needs an authorization:"
|
718 |
-
msgstr "Ennek a bővítménynek engedélyre van szüksége:"
|
719 |
-
|
720 |
#: .././admin/widgets.php:66
|
721 |
msgid "Something went wrong while retrieving profiles list."
|
722 |
msgstr "Valami rosszul ment a profil lista lekérése közben."
|
@@ -747,53 +745,53 @@ msgstr ""
|
|
747 |
msgid "Find out more!"
|
748 |
msgstr "Tudjon meg többet!"
|
749 |
|
750 |
-
#: .././admin/widgets.php:
|
751 |
msgid "Real-Time"
|
752 |
msgstr "Valós idejű"
|
753 |
|
754 |
-
#: .././admin/widgets.php:
|
755 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
756 |
-
#: .././tools/gapi.php:
|
757 |
-
#: .././tools/gapi.php:
|
758 |
msgid "Sessions"
|
759 |
msgstr "Munkamenetek"
|
760 |
|
761 |
-
#: .././admin/widgets.php:
|
762 |
msgid "Pages"
|
763 |
msgstr "Oldalak"
|
764 |
|
765 |
-
#: .././admin/widgets.php:
|
766 |
msgid "REFERRAL"
|
767 |
msgstr "HIVATKOZÓ"
|
768 |
|
769 |
-
#: .././admin/widgets.php:
|
770 |
msgid "ORGANIC"
|
771 |
msgstr "ORGANIKUS"
|
772 |
|
773 |
-
#: .././admin/widgets.php:
|
774 |
-
#: .././admin/widgets.php:
|
775 |
msgid "SOCIAL"
|
776 |
msgstr "KÖZÖSSÉGI"
|
777 |
|
778 |
-
#: .././admin/widgets.php:
|
779 |
-
#: .././admin/widgets.php:
|
780 |
msgid "CAMPAIGN"
|
781 |
msgstr "KAMPÁNY"
|
782 |
|
783 |
-
#: .././admin/widgets.php:
|
784 |
-
#: .././admin/widgets.php:
|
785 |
msgid "DIRECT"
|
786 |
msgstr "KÖZVETLEN"
|
787 |
|
788 |
-
#: .././admin/widgets.php:
|
789 |
msgid "NEW"
|
790 |
msgstr "ÚJ"
|
791 |
|
792 |
-
#: .././admin/widgets.php:
|
793 |
msgid "REFERRALS"
|
794 |
msgstr "HIVATKOZÓK"
|
795 |
|
796 |
-
#: .././admin/widgets.php:
|
797 |
msgid "KEYWORDS"
|
798 |
msgstr "KULCSSZAVAK"
|
799 |
|
@@ -801,10 +799,6 @@ msgstr "KULCSSZAVAK"
|
|
801 |
msgid "Will display your google analytics stats in a widget"
|
802 |
msgstr "Megjelenik a Google Analytics statisztika egy widgetben"
|
803 |
|
804 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
805 |
-
msgid "trend"
|
806 |
-
msgstr "trend"
|
807 |
-
|
808 |
#: .././front/widgets.php:123
|
809 |
msgid "Period:"
|
810 |
msgstr "Időszak:"
|
@@ -853,7 +847,7 @@ msgstr "Statisztika:"
|
|
853 |
msgid "Give credits:"
|
854 |
msgstr "Köszönet:"
|
855 |
|
856 |
-
#: .././gadwp.php:
|
857 |
msgid "This is not allowed, read the documentation!"
|
858 |
msgstr "Ez nem engedélyezett, olvassa el a dokumentációt!"
|
859 |
|
@@ -877,42 +871,45 @@ msgstr "Hozzáférési kód:"
|
|
877 |
msgid "Save Access Code"
|
878 |
msgstr "Hozzáférési kód mentése"
|
879 |
|
880 |
-
#: .././tools/gapi.php:
|
881 |
msgid "Organic Searches"
|
882 |
msgstr "Organikus keresés"
|
883 |
|
884 |
-
#: .././tools/gapi.php:
|
885 |
msgid "Unique Page Views"
|
886 |
msgstr "Egyedi oldalmegtekintések"
|
887 |
|
888 |
-
#: .././tools/gapi.php:
|
889 |
msgid "Hour"
|
890 |
msgstr "Óra"
|
891 |
|
892 |
-
#: .././tools/gapi.php:
|
893 |
msgid "Date"
|
894 |
msgstr "Dátum"
|
895 |
|
896 |
-
#: .././tools/gapi.php:
|
897 |
msgid "Views"
|
898 |
msgstr "Megtekintések"
|
899 |
|
900 |
-
#: .././tools/gapi.php:
|
901 |
msgid "Countries"
|
902 |
msgstr "Országok"
|
903 |
|
904 |
-
#: .././tools/gapi.php:
|
905 |
msgid "Cities from"
|
906 |
msgstr "Városok"
|
907 |
|
908 |
-
#: .././tools/gapi.php:
|
909 |
msgid "Channels"
|
910 |
msgstr "Csatornák"
|
911 |
|
912 |
-
#: .././tools/gapi.php:
|
913 |
msgid "Type"
|
914 |
msgstr "Típus"
|
915 |
|
|
|
|
|
|
|
916 |
#~ msgid "Last 7 Days"
|
917 |
#~ msgstr "Elmúlt 7 nap"
|
918 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP 4.7.2\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: I love WordPress <info@ilovewp.net>\n"
|
10 |
"Language: hu_HU\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
+
#: .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Beállítások mentve."
|
34 |
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
40 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
41 |
+
#: .././admin/settings.php:1082
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "Csalás Huh?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Valami rosszul ment, tekintse meg itt: %1$s vagy %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Hibák és hibakeresés"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
62 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "engedélyezze a bővítményt"
|
65 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
84 |
+
#: .././admin/settings.php:1234
|
85 |
msgid "Save Changes"
|
86 |
msgstr "Beállítások mentése"
|
87 |
|
142 |
msgstr "Egyéni meghatározások"
|
143 |
|
144 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
145 |
+
#: .././admin/settings.php:1217
|
146 |
msgid "Exclude Tracking"
|
147 |
msgstr "Követés kizárás"
|
148 |
|
166 |
msgid "Enabled"
|
167 |
msgstr "Engedélyezve"
|
168 |
|
169 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
170 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
171 |
#: .././admin/widgets.php:61
|
172 |
msgid "View Name:"
|
173 |
msgstr "Nézet neve:"
|
174 |
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
176 |
msgid "Tracking ID:"
|
177 |
msgstr "Követési azonosító:"
|
178 |
|
179 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
180 |
msgid "Default URL:"
|
181 |
msgstr "Alapértelmezett webcím:"
|
182 |
|
183 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
184 |
msgid "Time Zone:"
|
185 |
msgstr "Időzóna:"
|
186 |
|
306 |
msgid "Plugin Configuration"
|
307 |
msgstr "Bővítmény beállítások"
|
308 |
|
309 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
310 |
msgid ""
|
311 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
312 |
"error, try this solution:"
|
318 |
msgid "Library conflicts between WordPress plugins"
|
319 |
msgstr "WordPress bővítmények közötti ütközés"
|
320 |
|
321 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
322 |
msgid "Plugin authorization succeeded."
|
323 |
msgstr "Bővítmény engedélyezése sikeres."
|
324 |
|
325 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
326 |
msgid ""
|
327 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
328 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
331 |
"strong> (UA-XXXXX-X). Próbálja újból, és használja a piros linket, hogy a "
|
332 |
"hozzáférési kódot megkapja"
|
333 |
|
334 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
335 |
msgid "Cleared Cache."
|
336 |
msgstr "Cache kiürítve."
|
337 |
|
338 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
339 |
msgid "Token Reseted and Revoked."
|
340 |
msgstr "Token visszaállítva és visszavonva."
|
341 |
|
343 |
msgid "All errors reseted."
|
344 |
msgstr "Összes hiba törölve."
|
345 |
|
346 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
347 |
msgid "All other domains/properties were removed."
|
348 |
msgstr "Összes többi domain/tulajdon eltávolításra került."
|
349 |
|
350 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
351 |
msgid "Google Analytics Settings"
|
352 |
msgstr "Google Analytics beállítások"
|
353 |
|
354 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
355 |
msgid "Use the red link (see below) to generate and get your access code!"
|
356 |
msgstr ""
|
357 |
"Használja a piros linket (lásd alul), hogy a hozzáférési kódot legenerálja "
|
358 |
"és megkapja!"
|
359 |
|
360 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
361 |
msgid "Plugin Authorization"
|
362 |
msgstr "Bővítmény engedélyezése"
|
363 |
|
364 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
365 |
#, php-format
|
366 |
msgid ""
|
367 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
372 |
"Ezt a bővítményt csak helyesen beállított Google Analytics fiókkal lehet "
|
373 |
"használni!"
|
374 |
|
375 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
376 |
msgid "video"
|
377 |
msgstr "videót"
|
378 |
|
379 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
380 |
msgid "tutorial"
|
381 |
msgstr "útmutatót"
|
382 |
|
383 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
384 |
msgid "use your own API Project credentials"
|
385 |
msgstr "saját API Project adatainak használata"
|
386 |
|
387 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
388 |
msgid "API Key:"
|
389 |
msgstr "API key:"
|
390 |
|
391 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
392 |
msgid "Client ID:"
|
393 |
msgstr "Client ID:"
|
394 |
|
395 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
396 |
msgid "Client Secret:"
|
397 |
msgstr "Client Secret:"
|
398 |
|
399 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
400 |
msgid "Clear Authorization"
|
401 |
msgstr "Engedélyezés törlése"
|
402 |
|
403 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
404 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
405 |
msgid "Clear Cache"
|
406 |
msgstr "Cache ürítése"
|
407 |
|
408 |
+
#: .././admin/settings.php:873
|
409 |
msgid "Reset Errors"
|
410 |
msgstr "Hibák törlése"
|
411 |
|
412 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
413 |
msgid "General Settings"
|
414 |
msgstr "Általános beállítások"
|
415 |
|
416 |
+
#: .././admin/settings.php:882
|
417 |
msgid "Select View:"
|
418 |
msgstr "Nézet kiválasztása:"
|
419 |
|
420 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
421 |
msgid "Property not found"
|
422 |
msgstr "Tulajdon nem található"
|
423 |
|
424 |
+
#: .././admin/settings.php:899
|
425 |
msgid "Lock Selection"
|
426 |
msgstr "Kiválasztás zárolása"
|
427 |
|
428 |
+
#: .././admin/settings.php:918
|
429 |
msgid "Theme Color:"
|
430 |
msgstr "Téma színe:"
|
431 |
|
432 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
433 |
msgid "Automatic Updates"
|
434 |
msgstr "Automatikus frissítések"
|
435 |
|
436 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
437 |
msgid ""
|
438 |
"automatic updates for minor versions (security and maintenance releases only)"
|
439 |
msgstr ""
|
440 |
"alverziók automatikus frissítései (csak biztonsági és karbantartási kiadások)"
|
441 |
|
442 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
443 |
#: .././admin/widgets.php:32
|
444 |
msgid "Authorize Plugin"
|
445 |
msgstr "Bővítmény engedélyezése"
|
446 |
|
447 |
+
#: .././admin/settings.php:1027
|
448 |
msgid "Properties refreshed."
|
449 |
msgstr "Tulajdon frissítve."
|
450 |
|
451 |
+
#: .././admin/settings.php:1112
|
452 |
msgid "Network Setup"
|
453 |
msgstr "Hálózat beállítása"
|
454 |
|
455 |
+
#: .././admin/settings.php:1122
|
456 |
msgid "use a single Google Analytics account for the entire network"
|
457 |
msgstr "egy Google Analytics fiókot használjon a teljes hálózaton"
|
458 |
|
459 |
+
#: .././admin/settings.php:1167
|
460 |
msgid "Refresh Properties"
|
461 |
msgstr "Tulajdon frissítése"
|
462 |
|
463 |
+
#: .././admin/settings.php:1173
|
464 |
msgid "Properties/Views Settings"
|
465 |
msgstr "Tulajdon/Nézet beállítások"
|
466 |
|
467 |
+
#: .././admin/settings.php:1227
|
468 |
msgid "exclude Super Admin tracking for the entire network"
|
469 |
msgstr "Super Admin követésének kizárása a teljes hálózaton"
|
470 |
|
471 |
+
#: .././admin/settings.php:1275
|
472 |
msgid "Setup Tutorial & Demo"
|
473 |
msgstr "Telepítési útmutató és demo"
|
474 |
|
475 |
+
#: .././admin/settings.php:1283
|
476 |
msgid "Follow & Review"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: .././admin/settings.php:1309
|
480 |
#, php-format
|
481 |
msgid "Your feedback and review are both important, %s!"
|
482 |
msgstr "A visszajelzése és értékelése is fontos számunkra, %s!"
|
483 |
|
484 |
+
#: .././admin/settings.php:1309
|
485 |
msgid "rate this plugin"
|
486 |
msgstr "értékelje ezt a bővítményt"
|
487 |
|
488 |
+
#: .././admin/settings.php:1315
|
489 |
msgid "Further Reading"
|
490 |
msgstr "További olvasnivaló"
|
491 |
|
492 |
+
#: .././admin/settings.php:1322
|
493 |
#, php-format
|
494 |
msgid "%s by moving your website to HTTPS/SSL."
|
495 |
msgstr "%s HTTPS/SSL segítségével."
|
496 |
|
497 |
+
#: .././admin/settings.php:1322
|
498 |
msgid "Improve search rankings"
|
499 |
msgstr "Keresési rangsor javítása"
|
500 |
|
501 |
+
#: .././admin/settings.php:1329
|
502 |
#, php-format
|
503 |
msgid "Other %s written by the same author"
|
504 |
msgstr "További %s ugyanettől a szerzőtől"
|
505 |
|
506 |
+
#: .././admin/settings.php:1329
|
507 |
msgid "WordPress Plugins"
|
508 |
msgstr "WordPress bővítmények"
|
509 |
|
510 |
+
#: .././admin/settings.php:1335
|
511 |
msgid "Other Services"
|
512 |
msgstr "Egyéb szolgáltatások"
|
513 |
|
514 |
+
#: .././admin/settings.php:1342
|
515 |
#, php-format
|
516 |
msgid "Speed up your website and plug into a whole %s"
|
517 |
msgstr "Gyorsítsa fel honlapját és emelje egy teljesen %s"
|
518 |
|
519 |
+
#: .././admin/settings.php:1342
|
520 |
msgid "new level of site speed"
|
521 |
msgstr "új szintre a webhely sebességét"
|
522 |
|
523 |
+
#: .././admin/settings.php:1349
|
524 |
#, php-format
|
525 |
msgid "%s service with users tracking at IP level."
|
526 |
msgstr "%s szolgáltatás felhasználói nyomkövetéssel IP szinten."
|
527 |
|
528 |
+
#: .././admin/settings.php:1349
|
529 |
msgid "Web Analytics"
|
530 |
msgstr "Web Statisztika"
|
531 |
|
545 |
msgid "Tracking Code"
|
546 |
msgstr "Követőkód"
|
547 |
|
548 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
549 |
msgid "Today"
|
550 |
msgstr "Ma"
|
551 |
|
552 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
553 |
msgid "Yesterday"
|
554 |
msgstr "Tegnap"
|
555 |
|
556 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
557 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
558 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
559 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
560 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
561 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
562 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
565 |
msgid "Last %d Days"
|
566 |
msgstr "Elmúlt %d nap"
|
567 |
|
568 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
569 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
570 |
#, php-format
|
571 |
msgid "%s Year"
|
572 |
msgid_plural "%s Years"
|
573 |
msgstr[0] ""
|
574 |
msgstr[1] ""
|
575 |
|
576 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
577 |
msgid "One"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
581 |
msgid "Three"
|
582 |
msgstr ""
|
583 |
|
586 |
msgid "Unique Views"
|
587 |
msgstr "Egyedi megtekintések"
|
588 |
|
589 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
590 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
591 |
+
#: .././tools/gapi.php:357
|
592 |
msgid "Users"
|
593 |
msgstr "Felhasználók"
|
594 |
|
595 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
596 |
msgid "Organic"
|
597 |
msgstr "Organikus"
|
598 |
|
599 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
600 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
601 |
+
#: .././tools/gapi.php:360
|
602 |
msgid "Page Views"
|
603 |
msgstr "Oldal megtekintések"
|
604 |
|
605 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
606 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
607 |
+
#: .././tools/gapi.php:363
|
608 |
msgid "Bounce Rate"
|
609 |
msgstr "Visszafordulási arány"
|
610 |
|
611 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
612 |
msgid "Location"
|
613 |
msgstr "Hely"
|
614 |
|
615 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
616 |
+
#: .././tools/gapi.php:502
|
617 |
msgid "Referrers"
|
618 |
msgstr "Hivatkozók"
|
619 |
|
620 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
621 |
+
#: .././tools/gapi.php:535
|
622 |
msgid "Searches"
|
623 |
msgstr "Keresések"
|
624 |
|
625 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
626 |
msgid "Traffic Details"
|
627 |
msgstr "Forgalmi adatok"
|
628 |
|
629 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
630 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
631 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
632 |
msgid "A JavaScript Error is blocking plugin resources!"
|
633 |
msgstr "Egy JavaScript hiba blokkolja a bővítmény forrásait!"
|
634 |
|
635 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
636 |
msgid "Traffic Mediums"
|
637 |
msgstr "Forgalmi közeg"
|
638 |
|
639 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
640 |
msgid "Visitor Type"
|
641 |
msgstr "Látogató típus"
|
642 |
|
643 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
644 |
msgid "Social Networks"
|
645 |
msgstr "Közösségi hálózatok"
|
646 |
|
647 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
648 |
msgid "Search Engines"
|
649 |
msgstr "Keresőmotorok"
|
650 |
|
651 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
652 |
msgid "Organic Search"
|
653 |
msgstr "Organikus keresés"
|
654 |
|
655 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
656 |
msgid "Pages/Session"
|
657 |
msgstr "Oldal / munkamenet"
|
658 |
|
659 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
660 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
661 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
662 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
663 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
664 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
665 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
666 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
667 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
668 |
msgstr "Érvénytelen válasz, további részletek a JavaScript Konzolban (F12)."
|
669 |
|
671 |
msgid "Not enough data collected"
|
672 |
msgstr "Nincs elegendő összegyűjtött adat"
|
673 |
|
674 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
675 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
676 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
677 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
678 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
679 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
680 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
681 |
msgid "This report is unavailable"
|
682 |
msgstr "Ez a jelentés nem elérhető"
|
685 |
msgid "report generated by"
|
686 |
msgstr "jelentést generálta"
|
687 |
|
688 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
689 |
+
msgid "This plugin needs an authorization:"
|
690 |
+
msgstr "Ennek a bővítménynek engedélyre van szüksége:"
|
691 |
+
|
692 |
+
#: .././admin/setup.php:227
|
693 |
msgid "Settings"
|
694 |
msgstr "Beállítások"
|
695 |
|
696 |
+
#: .././admin/setup.php:239
|
697 |
#, php-format
|
698 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: .././admin/setup.php:239
|
702 |
#, php-format
|
703 |
msgid "For details, check out %1$s and %2$s."
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: .././admin/setup.php:239
|
707 |
msgid "the documentation page"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: .././admin/setup.php:239
|
711 |
msgid "the plugin's settings page"
|
712 |
msgstr ""
|
713 |
|
715 |
msgid "Google Analytics Dashboard"
|
716 |
msgstr "Google Analytics vezérlőpult"
|
717 |
|
|
|
|
|
|
|
|
|
718 |
#: .././admin/widgets.php:66
|
719 |
msgid "Something went wrong while retrieving profiles list."
|
720 |
msgstr "Valami rosszul ment a profil lista lekérése közben."
|
745 |
msgid "Find out more!"
|
746 |
msgstr "Tudjon meg többet!"
|
747 |
|
748 |
+
#: .././admin/widgets.php:113
|
749 |
msgid "Real-Time"
|
750 |
msgstr "Valós idejű"
|
751 |
|
752 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
753 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
754 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
755 |
+
#: .././tools/gapi.php:694
|
756 |
msgid "Sessions"
|
757 |
msgstr "Munkamenetek"
|
758 |
|
759 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
760 |
msgid "Pages"
|
761 |
msgstr "Oldalak"
|
762 |
|
763 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
764 |
msgid "REFERRAL"
|
765 |
msgstr "HIVATKOZÓ"
|
766 |
|
767 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
768 |
msgid "ORGANIC"
|
769 |
msgstr "ORGANIKUS"
|
770 |
|
771 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
772 |
+
#: .././admin/widgets.php:477
|
773 |
msgid "SOCIAL"
|
774 |
msgstr "KÖZÖSSÉGI"
|
775 |
|
776 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
777 |
+
#: .././admin/widgets.php:478
|
778 |
msgid "CAMPAIGN"
|
779 |
msgstr "KAMPÁNY"
|
780 |
|
781 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
782 |
+
#: .././admin/widgets.php:481
|
783 |
msgid "DIRECT"
|
784 |
msgstr "KÖZVETLEN"
|
785 |
|
786 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
787 |
msgid "NEW"
|
788 |
msgstr "ÚJ"
|
789 |
|
790 |
+
#: .././admin/widgets.php:355
|
791 |
msgid "REFERRALS"
|
792 |
msgstr "HIVATKOZÓK"
|
793 |
|
794 |
+
#: .././admin/widgets.php:358
|
795 |
msgid "KEYWORDS"
|
796 |
msgstr "KULCSSZAVAK"
|
797 |
|
799 |
msgid "Will display your google analytics stats in a widget"
|
800 |
msgstr "Megjelenik a Google Analytics statisztika egy widgetben"
|
801 |
|
|
|
|
|
|
|
|
|
802 |
#: .././front/widgets.php:123
|
803 |
msgid "Period:"
|
804 |
msgstr "Időszak:"
|
847 |
msgid "Give credits:"
|
848 |
msgstr "Köszönet:"
|
849 |
|
850 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
851 |
msgid "This is not allowed, read the documentation!"
|
852 |
msgstr "Ez nem engedélyezett, olvassa el a dokumentációt!"
|
853 |
|
871 |
msgid "Save Access Code"
|
872 |
msgstr "Hozzáférési kód mentése"
|
873 |
|
874 |
+
#: .././tools/gapi.php:366
|
875 |
msgid "Organic Searches"
|
876 |
msgstr "Organikus keresés"
|
877 |
|
878 |
+
#: .././tools/gapi.php:369
|
879 |
msgid "Unique Page Views"
|
880 |
msgstr "Egyedi oldalmegtekintések"
|
881 |
|
882 |
+
#: .././tools/gapi.php:377
|
883 |
msgid "Hour"
|
884 |
msgstr "Óra"
|
885 |
|
886 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
887 |
msgid "Date"
|
888 |
msgstr "Dátum"
|
889 |
|
890 |
+
#: .././tools/gapi.php:470
|
891 |
msgid "Views"
|
892 |
msgstr "Megtekintések"
|
893 |
|
894 |
+
#: .././tools/gapi.php:556
|
895 |
msgid "Countries"
|
896 |
msgstr "Országok"
|
897 |
|
898 |
+
#: .././tools/gapi.php:566
|
899 |
msgid "Cities from"
|
900 |
msgstr "Városok"
|
901 |
|
902 |
+
#: .././tools/gapi.php:619
|
903 |
msgid "Channels"
|
904 |
msgstr "Csatornák"
|
905 |
|
906 |
+
#: .././tools/gapi.php:665
|
907 |
msgid "Type"
|
908 |
msgstr "Típus"
|
909 |
|
910 |
+
#~ msgid "trend"
|
911 |
+
#~ msgstr "trend"
|
912 |
+
|
913 |
#~ msgid "Last 7 Days"
|
914 |
#~ msgstr "Elmúlt 7 nap"
|
915 |
|
languages/{ga-dash-it_IT.mo → google-analytics-dashboard-for-wp-it_IT.mo}
RENAMED
Binary file
|
languages/{ga-dash-it_IT.po → google-analytics-dashboard-for-wp-it_IT.po}
RENAMED
@@ -1,1275 +1,1269 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Google Analytics Dashboard for WP 4.8.1.
|
4 |
-
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
-
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
-
"Last-Translator:
|
9 |
-
"Language-Team: LTS <leoxleox73@gmail.com>\n"
|
10 |
-
"Language: it_IT\n"
|
11 |
-
"MIME-Version: 1.0\n"
|
12 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
-
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.
|
15 |
-
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
-
"X-Poedit-Basepath: .\n"
|
17 |
-
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
-
"X-Poedit-SearchPath-0: ../.\n"
|
20 |
-
|
21 |
-
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
22 |
-
msgid "Analytics"
|
23 |
-
msgstr "Analytics"
|
24 |
-
|
25 |
-
#: .././admin/settings.php:89 .././admin/settings.php:184
|
26 |
-
#: .././admin/settings.php:318 .././admin/settings.php:795
|
27 |
-
#: .././admin/settings.php:
|
28 |
-
msgid "Settings saved."
|
29 |
-
msgstr "Impostazioni salvate."
|
30 |
-
|
31 |
-
#: .././admin/settings.php:91 .././admin/settings.php:186
|
32 |
-
#: .././admin/settings.php:320 .././admin/settings.php:772
|
33 |
-
#: .././admin/settings.php:782 .././admin/settings.php:791
|
34 |
-
#: .././admin/settings.php:797 .././admin/settings.php:808
|
35 |
-
#: .././admin/settings.php:
|
36 |
-
#: .././admin/settings.php:
|
37 |
-
#: .././admin/settings.php:
|
38 |
-
msgid "Cheating Huh?"
|
39 |
-
msgstr "Tentativo di frode?"
|
40 |
-
|
41 |
-
#: .././admin/settings.php:95 .././admin/settings.php:190
|
42 |
-
#: .././admin/settings.php:324 .././admin/settings.php:641
|
43 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
44 |
-
#, php-format
|
45 |
-
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
-
msgstr "Qualcosa è andato male, controlla %1$s o %2$s."
|
47 |
-
|
48 |
-
#: .././admin/settings.php:95 .././admin/settings.php:190
|
49 |
-
#: .././admin/settings.php:324 .././admin/settings.php:641
|
50 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
51 |
-
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
-
msgid "Errors & Debug"
|
53 |
-
msgstr "Errori & Debug"
|
54 |
-
|
55 |
-
#: .././admin/settings.php:95 .././admin/settings.php:190
|
56 |
-
#: .././admin/settings.php:324 .././admin/settings.php:641
|
57 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
#: .././admin/settings.php:
|
79 |
-
#: .././admin/settings.php:
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
"
|
119 |
-
|
120 |
-
|
121 |
-
"
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
#: .././admin/settings.php:
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
#: .././admin/settings.php:
|
166 |
-
#: .././admin/
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
"
|
307 |
-
|
308 |
-
|
309 |
-
"
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
"
|
323 |
-
|
324 |
-
|
325 |
-
"
|
326 |
-
"
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
"
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
"
|
363 |
-
"
|
364 |
-
|
365 |
-
|
366 |
-
"
|
367 |
-
"
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
#: .././admin/settings.php:
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
"
|
436 |
-
|
437 |
-
|
438 |
-
#: .././admin/
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
#: .././admin/setup.php:
|
553 |
-
#: .././admin/
|
554 |
-
#: .././admin/widgets.php:
|
555 |
-
#: .././
|
556 |
-
#: .././front/
|
557 |
-
#: .././front/widgets.php:
|
558 |
-
#: .././front/widgets.php:
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
#: .././admin/
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
msgstr
|
571 |
-
|
572 |
-
#: .././admin/setup.php:
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
#: .././
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
#: .././
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
#: .././
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
#: .././
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
#: .././admin/widgets.php:
|
628 |
-
msgid "
|
629 |
-
msgstr "
|
630 |
-
|
631 |
-
#: .././admin/setup.php:
|
632 |
-
msgid "
|
633 |
-
msgstr "
|
634 |
-
|
635 |
-
#: .././admin/setup.php:
|
636 |
-
msgid "
|
637 |
-
msgstr "
|
638 |
-
|
639 |
-
#: .././admin/setup.php:
|
640 |
-
msgid "
|
641 |
-
msgstr "
|
642 |
-
|
643 |
-
#: .././admin/setup.php:
|
644 |
-
msgid "
|
645 |
-
msgstr "
|
646 |
-
|
647 |
-
#: .././admin/setup.php:
|
648 |
-
#: .././
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
#: .././admin/
|
653 |
-
#: .././
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
#: .././admin/
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
#: .././admin/
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
#: .././
|
670 |
-
msgid "
|
671 |
-
msgstr "
|
672 |
-
|
673 |
-
#: .././admin/setup.php:
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
#: .././admin/
|
678 |
-
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
msgstr ""
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
#: .././
|
744 |
-
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
#: .././
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
#: .././admin/widgets.php:
|
767 |
-
msgid "
|
768 |
-
msgstr "
|
769 |
-
|
770 |
-
#: .././admin/widgets.php:
|
771 |
-
#: .././admin/widgets.php:
|
772 |
-
msgid "
|
773 |
-
msgstr "TRAFFICO
|
774 |
-
|
775 |
-
#: .././admin/widgets.php:
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
|
882 |
-
|
883 |
-
|
884 |
-
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
#~
|
914 |
-
#~
|
915 |
-
#~ "
|
916 |
-
|
917 |
-
|
918 |
-
#~
|
919 |
-
|
920 |
-
#~ "
|
921 |
-
#~ "
|
922 |
-
|
923 |
-
#~
|
924 |
-
|
925 |
-
|
926 |
-
#~
|
927 |
-
|
928 |
-
#~ "
|
929 |
-
#~ "
|
930 |
-
|
931 |
-
#~ msgid "
|
932 |
-
#~ msgstr "
|
933 |
-
|
934 |
-
#~ msgid "
|
935 |
-
#~ msgstr "
|
936 |
-
|
937 |
-
#~ msgid "
|
938 |
-
#~ msgstr "
|
939 |
-
|
940 |
-
#~ msgid "Last
|
941 |
-
#~ msgstr "Ultimi
|
942 |
-
|
943 |
-
#~ msgid "
|
944 |
-
#~ msgstr "
|
945 |
-
|
946 |
-
#~ msgid "
|
947 |
-
#~ msgstr "
|
948 |
-
|
949 |
-
#~ msgid "
|
950 |
-
#~ msgstr "Visualizzazioni
|
951 |
-
|
952 |
-
#~ msgid "
|
953 |
-
#~ msgstr "
|
954 |
-
|
955 |
-
#~ msgid "
|
956 |
-
#~
|
957 |
-
|
958 |
-
#~
|
959 |
-
|
960 |
-
|
961 |
-
#~
|
962 |
-
|
963 |
-
#~
|
964 |
-
#~ "
|
965 |
-
|
966 |
-
#~ msgid "
|
967 |
-
#~ msgstr "
|
968 |
-
|
969 |
-
#~ msgid "
|
970 |
-
#~ msgstr "
|
971 |
-
|
972 |
-
#~ msgid "
|
973 |
-
#~ msgstr "
|
974 |
-
|
975 |
-
#~ msgid "
|
976 |
-
#~ msgstr "
|
977 |
-
|
978 |
-
#~
|
979 |
-
|
980 |
-
|
981 |
-
#~
|
982 |
-
|
983 |
-
#~ "
|
984 |
-
#~ "
|
985 |
-
|
986 |
-
#~ msgid "
|
987 |
-
#~ msgstr "
|
988 |
-
|
989 |
-
#~ msgid "
|
990 |
-
#~ msgstr "
|
991 |
-
|
992 |
-
#~ msgid "
|
993 |
-
#~ msgstr "
|
994 |
-
|
995 |
-
|
996 |
-
#~
|
997 |
-
|
998 |
-
#~
|
999 |
-
#~
|
1000 |
-
|
1001 |
-
|
1002 |
-
#~
|
1003 |
-
|
1004 |
-
#~ "
|
1005 |
-
#~ "
|
1006 |
-
|
1007 |
-
#~ msgid "
|
1008 |
-
#~ msgstr "
|
1009 |
-
|
1010 |
-
#~ msgid " enable
|
1011 |
-
#~ msgstr "
|
1012 |
-
|
1013 |
-
#~ msgid "
|
1014 |
-
#~ msgstr "
|
1015 |
-
|
1016 |
-
#~ msgid "
|
1017 |
-
#~ msgstr "
|
1018 |
-
|
1019 |
-
#~ msgid "
|
1020 |
-
#~ msgstr "
|
1021 |
-
|
1022 |
-
#~ msgid "
|
1023 |
-
#~ msgstr "
|
1024 |
-
|
1025 |
-
#~ msgid "
|
1026 |
-
#~ msgstr "
|
1027 |
-
|
1028 |
-
#~ msgid "
|
1029 |
-
#~ msgstr "
|
1030 |
-
|
1031 |
-
#~ msgid "
|
1032 |
-
#~ msgstr "
|
1033 |
-
|
1034 |
-
#~ msgid "
|
1035 |
-
#~ msgstr "
|
1036 |
-
|
1037 |
-
#~ msgid "and
|
1038 |
-
#~ msgstr "
|
1039 |
-
|
1040 |
-
#~ msgid "
|
1041 |
-
#~ msgstr "
|
1042 |
-
|
1043 |
-
#~ msgid "
|
1044 |
-
#~
|
1045 |
-
|
1046 |
-
#~
|
1047 |
-
#~
|
1048 |
-
|
1049 |
-
|
1050 |
-
#~ "
|
1051 |
-
#~
|
1052 |
-
#~
|
1053 |
-
#~ "
|
1054 |
-
|
1055 |
-
|
1056 |
-
#~
|
1057 |
-
|
1058 |
-
#~ "
|
1059 |
-
#~ "
|
1060 |
-
|
1061 |
-
#~ msgid "
|
1062 |
-
#~ msgstr "
|
1063 |
-
|
1064 |
-
#~ msgid "
|
1065 |
-
#~ msgstr "
|
1066 |
-
|
1067 |
-
#~ msgid "
|
1068 |
-
#~ msgstr "
|
1069 |
-
|
1070 |
-
#~ msgid "
|
1071 |
-
#~ msgstr "
|
1072 |
-
|
1073 |
-
#~ msgid "
|
1074 |
-
#~ msgstr "
|
1075 |
-
|
1076 |
-
#~ msgid "
|
1077 |
-
#~ msgstr "
|
1078 |
-
|
1079 |
-
#~ msgid "
|
1080 |
-
#~ msgstr "
|
1081 |
-
|
1082 |
-
#~ msgid "
|
1083 |
-
#~ msgstr "
|
1084 |
-
|
1085 |
-
#~ msgid "
|
1086 |
-
#~ msgstr "
|
1087 |
-
|
1088 |
-
#~ msgid "
|
1089 |
-
#~ msgstr "
|
1090 |
-
|
1091 |
-
#~ msgid "
|
1092 |
-
#~ msgstr "
|
1093 |
-
|
1094 |
-
#~ msgid "
|
1095 |
-
#~ msgstr "
|
1096 |
-
|
1097 |
-
#~ msgid " show
|
1098 |
-
#~ msgstr " mostra
|
1099 |
-
|
1100 |
-
#~ msgid " show top
|
1101 |
-
#~ msgstr " mostra le principali
|
1102 |
-
|
1103 |
-
#~ msgid "
|
1104 |
-
#~ msgstr "
|
1105 |
-
|
1106 |
-
#~ msgid "
|
1107 |
-
#~
|
1108 |
-
|
1109 |
-
#~
|
1110 |
-
#~
|
1111 |
-
|
1112 |
-
|
1113 |
-
#~
|
1114 |
-
#~ "
|
1115 |
-
#~
|
1116 |
-
#~
|
1117 |
-
#~ "
|
1118 |
-
|
1119 |
-
|
1120 |
-
#~ "
|
1121 |
-
#~ "
|
1122 |
-
|
1123 |
-
#~ "
|
1124 |
-
#~ "
|
1125 |
-
|
1126 |
-
#~ msgid "
|
1127 |
-
#~ msgstr "
|
1128 |
-
|
1129 |
-
#~ msgid "
|
1130 |
-
#~ msgstr "
|
1131 |
-
|
1132 |
-
#~ msgid "
|
1133 |
-
#~
|
1134 |
-
|
1135 |
-
#~
|
1136 |
-
#~
|
1137 |
-
|
1138 |
-
|
1139 |
-
#~
|
1140 |
-
#~ "
|
1141 |
-
|
1142 |
-
#~
|
1143 |
-
#~
|
1144 |
-
|
1145 |
-
#~ msgid "
|
1146 |
-
#~ msgstr "
|
1147 |
-
|
1148 |
-
#~ msgid "
|
1149 |
-
#~ msgstr "
|
1150 |
-
|
1151 |
-
#~ msgid "
|
1152 |
-
#~ msgstr "
|
1153 |
-
|
1154 |
-
#~ msgid "
|
1155 |
-
#~ msgstr "
|
1156 |
-
|
1157 |
-
#~ msgid "
|
1158 |
-
#~
|
1159 |
-
|
1160 |
-
#~
|
1161 |
-
#~
|
1162 |
-
|
1163 |
-
|
1164 |
-
#~ "
|
1165 |
-
#~ "
|
1166 |
-
|
1167 |
-
#~
|
1168 |
-
#~ "
|
1169 |
-
|
1170 |
-
#~ msgid "
|
1171 |
-
#~ msgstr "
|
1172 |
-
|
1173 |
-
#~ msgid "
|
1174 |
-
#~ msgstr "
|
1175 |
-
|
1176 |
-
#~ msgid "
|
1177 |
-
#~ msgstr "
|
1178 |
-
|
1179 |
-
#~ msgid "
|
1180 |
-
#~ msgstr "
|
1181 |
-
|
1182 |
-
#~ msgid "
|
1183 |
-
#~ msgstr "
|
1184 |
-
|
1185 |
-
#~ msgid "Visits"
|
1186 |
-
#~ msgstr "Visite"
|
1187 |
-
|
1188 |
-
#~ msgid "Visitors"
|
1189 |
-
#~ msgstr "Visitatori"
|
1190 |
-
|
1191 |
-
#~ msgid "
|
1192 |
-
#~ msgstr "
|
1193 |
-
|
1194 |
-
#~ msgid "
|
1195 |
-
#~ msgstr "
|
1196 |
-
|
1197 |
-
#~ msgid "
|
1198 |
-
#~ msgstr "
|
1199 |
-
|
1200 |
-
#~ msgid "
|
1201 |
-
#~ msgstr "
|
1202 |
-
|
1203 |
-
#~ msgid "
|
1204 |
-
#~ msgstr "
|
1205 |
-
|
1206 |
-
#~ msgid "
|
1207 |
-
#~ msgstr "
|
1208 |
-
|
1209 |
-
#~ msgid "
|
1210 |
-
#~ msgstr "
|
1211 |
-
|
1212 |
-
|
1213 |
-
#~
|
1214 |
-
|
1215 |
-
|
1216 |
-
#~
|
1217 |
-
#~ "
|
1218 |
-
|
1219 |
-
#~ msgid "
|
1220 |
-
#~ msgstr "
|
1221 |
-
|
1222 |
-
#~ msgid "
|
1223 |
-
#~ msgstr "
|
1224 |
-
|
1225 |
-
#~ msgid "
|
1226 |
-
#~ msgstr "
|
1227 |
-
|
1228 |
-
#~ msgid "
|
1229 |
-
#~ msgstr "
|
1230 |
-
|
1231 |
-
#~ msgid "
|
1232 |
-
#~ msgstr "
|
1233 |
-
|
1234 |
-
#~ msgid "
|
1235 |
-
#~ msgstr "
|
1236 |
-
|
1237 |
-
#~ msgid "Options
|
1238 |
-
#~ msgstr "
|
1239 |
-
|
1240 |
-
#~ msgid "
|
1241 |
-
#~ msgstr "
|
1242 |
-
|
1243 |
-
#~ msgid "
|
1244 |
-
#~ msgstr "
|
1245 |
-
|
1246 |
-
|
1247 |
-
#~
|
1248 |
-
|
1249 |
-
|
1250 |
-
#~
|
1251 |
-
|
1252 |
-
|
1253 |
-
#~ msgid "
|
1254 |
-
#~ msgstr "
|
1255 |
-
|
1256 |
-
#~ msgid "
|
1257 |
-
#~ msgstr "
|
1258 |
-
|
1259 |
-
#~ msgid "
|
1260 |
-
#~ msgstr "
|
1261 |
-
|
1262 |
-
#~ msgid "
|
1263 |
-
#~ msgstr "
|
1264 |
-
|
1265 |
-
#~ msgid "
|
1266 |
-
#~ msgstr "
|
1267 |
-
|
1268 |
-
#~ msgid "
|
1269 |
-
#~ msgstr "
|
1270 |
-
|
1271 |
-
#~ msgid "Custom Code"
|
1272 |
-
#~ msgstr "Codice personalizzato"
|
1273 |
-
|
1274 |
-
#~ msgid "Your Tracking Code:"
|
1275 |
-
#~ msgstr "Il tuo codice di monitoraggio:"
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Google Analytics Dashboard for WP 4.8.1.2\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
+
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
+
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
+
"Language-Team: LTS <leoxleox73@gmail.com>\n"
|
10 |
+
"Language: it_IT\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
+
"X-Poedit-KeywordsList: _e;__\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
19 |
+
"X-Poedit-SearchPath-0: ../.\n"
|
20 |
+
|
21 |
+
#: .././admin/item-reports.php:61 .././front/item-reports.php:29
|
22 |
+
msgid "Analytics"
|
23 |
+
msgstr "Analytics"
|
24 |
+
|
25 |
+
#: .././admin/settings.php:89 .././admin/settings.php:184
|
26 |
+
#: .././admin/settings.php:318 .././admin/settings.php:795
|
27 |
+
#: .././admin/settings.php:1069
|
28 |
+
msgid "Settings saved."
|
29 |
+
msgstr "Impostazioni salvate."
|
30 |
+
|
31 |
+
#: .././admin/settings.php:91 .././admin/settings.php:186
|
32 |
+
#: .././admin/settings.php:320 .././admin/settings.php:772
|
33 |
+
#: .././admin/settings.php:782 .././admin/settings.php:791
|
34 |
+
#: .././admin/settings.php:797 .././admin/settings.php:808
|
35 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
36 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
37 |
+
#: .././admin/settings.php:1082
|
38 |
+
msgid "Cheating Huh?"
|
39 |
+
msgstr "Tentativo di frode?"
|
40 |
+
|
41 |
+
#: .././admin/settings.php:95 .././admin/settings.php:190
|
42 |
+
#: .././admin/settings.php:324 .././admin/settings.php:641
|
43 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
44 |
+
#, php-format
|
45 |
+
msgid "Something went wrong, check %1$s or %2$s."
|
46 |
+
msgstr "Qualcosa è andato male, controlla %1$s o %2$s."
|
47 |
+
|
48 |
+
#: .././admin/settings.php:95 .././admin/settings.php:190
|
49 |
+
#: .././admin/settings.php:324 .././admin/settings.php:641
|
50 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
51 |
+
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
+
msgid "Errors & Debug"
|
53 |
+
msgstr "Errori & Debug"
|
54 |
+
|
55 |
+
#: .././admin/settings.php:95 .././admin/settings.php:190
|
56 |
+
#: .././admin/settings.php:324 .././admin/settings.php:641
|
57 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
58 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
59 |
+
msgid "authorize the plugin"
|
60 |
+
msgstr "autorizza il plugin"
|
61 |
+
|
62 |
+
#: .././admin/settings.php:100
|
63 |
+
msgid "Google Analytics Frontend Settings"
|
64 |
+
msgstr "Impostazioni Frontend di Google Analytics "
|
65 |
+
|
66 |
+
#: .././admin/settings.php:110 .././admin/settings.php:205
|
67 |
+
msgid "Permissions"
|
68 |
+
msgstr "Permessi"
|
69 |
+
|
70 |
+
#: .././admin/settings.php:113 .././admin/settings.php:208
|
71 |
+
msgid "Show stats to:"
|
72 |
+
msgstr "Mostra statistiche a:"
|
73 |
+
|
74 |
+
#: .././admin/settings.php:154
|
75 |
+
msgid "enable web page reports on frontend"
|
76 |
+
msgstr "abilita i rapporti sulle pagine web nel frontend"
|
77 |
+
|
78 |
+
#: .././admin/settings.php:161 .././admin/settings.php:297
|
79 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
80 |
+
#: .././admin/settings.php:1234
|
81 |
+
msgid "Save Changes"
|
82 |
+
msgstr "Salva le modifiche"
|
83 |
+
|
84 |
+
#: .././admin/settings.php:195
|
85 |
+
msgid "Google Analytics Backend Settings"
|
86 |
+
msgstr "Impostazioni Backend di Google Analytics"
|
87 |
+
|
88 |
+
#: .././admin/settings.php:251
|
89 |
+
msgid "enable Switch View functionality"
|
90 |
+
msgstr "abilita la funzionalità Visualizza"
|
91 |
+
|
92 |
+
#: .././admin/settings.php:262
|
93 |
+
msgid "enable reports on Posts List and Pages List"
|
94 |
+
msgstr "abilita rapporti nella lista pagine e post"
|
95 |
+
|
96 |
+
#: .././admin/settings.php:273
|
97 |
+
msgid "enable the main Dashboard Widget"
|
98 |
+
msgstr "abilita il widget principale nella bacheca"
|
99 |
+
|
100 |
+
#: .././admin/settings.php:277
|
101 |
+
msgid "Real-Time Settings"
|
102 |
+
msgstr "Impostazioni In tempo reale"
|
103 |
+
|
104 |
+
#: .././admin/settings.php:280
|
105 |
+
msgid "Maximum number of pages to display on real-time tab:"
|
106 |
+
msgstr "Numero massimo di pagine da visualizzare nella scheda in tempo reale:"
|
107 |
+
|
108 |
+
#: .././admin/settings.php:285
|
109 |
+
msgid "Location Settings"
|
110 |
+
msgstr "Impostazioni posizione geografica"
|
111 |
+
|
112 |
+
#: .././admin/settings.php:289
|
113 |
+
msgid "Target Geo Map to country:"
|
114 |
+
msgstr "Cartina geografica per il paese:"
|
115 |
+
|
116 |
+
#: .././admin/settings.php:327
|
117 |
+
msgid ""
|
118 |
+
"The tracking component is disabled. You should set <strong>Tracking Options</"
|
119 |
+
"strong> to <strong>Enabled</strong>"
|
120 |
+
msgstr ""
|
121 |
+
"Il componente di monitoraggio è disabilitato. È necessario "
|
122 |
+
"impostare il <strong>Monitoraggio</strong> su <strong>Abilitato</strong>"
|
123 |
+
|
124 |
+
#: .././admin/settings.php:332
|
125 |
+
msgid "Google Analytics Tracking Code"
|
126 |
+
msgstr "Impostazioni Monitoraggio di Google Analytics "
|
127 |
+
|
128 |
+
#: .././admin/settings.php:341
|
129 |
+
msgid "Basic Settings"
|
130 |
+
msgstr "Impostazioni di base"
|
131 |
+
|
132 |
+
#: .././admin/settings.php:342 .././admin/settings.php:408
|
133 |
+
msgid "Events Tracking"
|
134 |
+
msgstr "Impostazioni eventi"
|
135 |
+
|
136 |
+
#: .././admin/settings.php:343 .././admin/settings.php:456
|
137 |
+
msgid "Custom Definitions"
|
138 |
+
msgstr "Impostazioni definizioni personalizzate"
|
139 |
+
|
140 |
+
#: .././admin/settings.php:344 .././admin/settings.php:554
|
141 |
+
#: .././admin/settings.php:1217
|
142 |
+
msgid "Exclude Tracking"
|
143 |
+
msgstr "Escludi monitoraggio"
|
144 |
+
|
145 |
+
#: .././admin/settings.php:345
|
146 |
+
msgid "Advanced Settings"
|
147 |
+
msgstr "Impostazioni avanzate"
|
148 |
+
|
149 |
+
#: .././admin/settings.php:353
|
150 |
+
msgid "Tracking Settings"
|
151 |
+
msgstr "Stato del monitoraggio"
|
152 |
+
|
153 |
+
#: .././admin/settings.php:356
|
154 |
+
msgid "Tracking Options:"
|
155 |
+
msgstr "Monitoraggio:"
|
156 |
+
|
157 |
+
#: .././admin/settings.php:358
|
158 |
+
msgid "Disabled"
|
159 |
+
msgstr "Disabilitato"
|
160 |
+
|
161 |
+
#: .././admin/settings.php:359
|
162 |
+
msgid "Enabled"
|
163 |
+
msgstr "Abilitato"
|
164 |
+
|
165 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
166 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
167 |
+
#: .././admin/widgets.php:61
|
168 |
+
msgid "View Name:"
|
169 |
+
msgstr "Mostra nome:"
|
170 |
+
|
171 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
172 |
+
msgid "Tracking ID:"
|
173 |
+
msgstr "ID monitoraggio:"
|
174 |
+
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
176 |
+
msgid "Default URL:"
|
177 |
+
msgstr "URL predefinito:"
|
178 |
+
|
179 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
180 |
+
msgid "Time Zone:"
|
181 |
+
msgstr "Fuso orario:"
|
182 |
+
|
183 |
+
#: .././admin/settings.php:372
|
184 |
+
msgid "Basic Tracking"
|
185 |
+
msgstr "Impostazioni di base"
|
186 |
+
|
187 |
+
#: .././admin/settings.php:375
|
188 |
+
msgid "Tracking Type:"
|
189 |
+
msgstr "Tipo:"
|
190 |
+
|
191 |
+
#: .././admin/settings.php:377
|
192 |
+
msgid "Classic Analytics"
|
193 |
+
msgstr "Classic Analytics"
|
194 |
+
|
195 |
+
#: .././admin/settings.php:378
|
196 |
+
msgid "Universal Analytics"
|
197 |
+
msgstr "Universal Analytics"
|
198 |
+
|
199 |
+
#: .././admin/settings.php:389
|
200 |
+
msgid "anonymize IPs while tracking"
|
201 |
+
msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
|
202 |
+
|
203 |
+
#: .././admin/settings.php:400
|
204 |
+
msgid "enable remarketing, demographics and interests reports"
|
205 |
+
msgstr "abilita il remarketing e i rapporti demografici e sugli interessi."
|
206 |
+
|
207 |
+
#: .././admin/settings.php:418
|
208 |
+
msgid "track downloads, mailto and outbound links"
|
209 |
+
msgstr "monitora i download, le e-mail e i link in uscita"
|
210 |
+
|
211 |
+
#: .././admin/settings.php:422
|
212 |
+
msgid "Downloads Regex:"
|
213 |
+
msgstr "Abbreviazioni downloads:"
|
214 |
+
|
215 |
+
#: .././admin/settings.php:433
|
216 |
+
msgid "track affiliate links matching this regex"
|
217 |
+
msgstr "monitora i link di affiliazione corrispondenti a aquesto regex"
|
218 |
+
|
219 |
+
#: .././admin/settings.php:437
|
220 |
+
msgid "Affiliates Regex:"
|
221 |
+
msgstr "Abbreviazioni associate:"
|
222 |
+
|
223 |
+
#: .././admin/settings.php:448
|
224 |
+
msgid "track fragment identifiers, hashmarks (#) in URI links"
|
225 |
+
msgstr ""
|
226 |
+
"monitora gli identificatori di frammento, hashmarks (#) nei collegamenti URI"
|
227 |
+
|
228 |
+
#: .././admin/settings.php:459
|
229 |
+
msgid "Authors:"
|
230 |
+
msgstr "Autori:"
|
231 |
+
|
232 |
+
#: .././admin/settings.php:467
|
233 |
+
msgid "Publication Year:"
|
234 |
+
msgstr "Anno di pubblicazione:"
|
235 |
+
|
236 |
+
#: .././admin/settings.php:475
|
237 |
+
msgid "Categories:"
|
238 |
+
msgstr "Categorie:"
|
239 |
+
|
240 |
+
#: .././admin/settings.php:483
|
241 |
+
msgid "User Type:"
|
242 |
+
msgstr "Tipo di utente:"
|
243 |
+
|
244 |
+
#: .././admin/settings.php:495
|
245 |
+
msgid "Advanced Tracking"
|
246 |
+
msgstr "Impostazioni avanzate"
|
247 |
+
|
248 |
+
#: .././admin/settings.php:498
|
249 |
+
msgid "Page Speed SR:"
|
250 |
+
msgstr "Page Speed Sample Rate:"
|
251 |
+
|
252 |
+
#: .././admin/settings.php:509
|
253 |
+
msgid "exclude events from bounce-rate calculation"
|
254 |
+
msgstr "escludi gli eventi nel calcolo della frequenza di rimbalzo"
|
255 |
+
|
256 |
+
#: .././admin/settings.php:520
|
257 |
+
msgid "enable enhanced link attribution"
|
258 |
+
msgstr "abilita l'attribuzione avanzata dei link"
|
259 |
+
|
260 |
+
#: .././admin/settings.php:531
|
261 |
+
msgid "enable AdSense account linking"
|
262 |
+
msgstr "abilita AdSense account linking"
|
263 |
+
|
264 |
+
#: .././admin/settings.php:542
|
265 |
+
msgid "enable cross domain tracking"
|
266 |
+
msgstr "abilita il monitoraggio cross domain"
|
267 |
+
|
268 |
+
#: .././admin/settings.php:546
|
269 |
+
msgid "Cross Domains:"
|
270 |
+
msgstr " Cross Domains:"
|
271 |
+
|
272 |
+
#: .././admin/settings.php:557
|
273 |
+
msgid "Exclude tracking for:"
|
274 |
+
msgstr "Escludi per:"
|
275 |
+
|
276 |
+
#: .././admin/settings.php:645
|
277 |
+
msgid "Google Analytics Errors & Debugging"
|
278 |
+
msgstr "Errori & Debugging di Google Analytics"
|
279 |
+
|
280 |
+
#: .././admin/settings.php:655
|
281 |
+
msgid "Errors & Details"
|
282 |
+
msgstr "Errori & Dettagli"
|
283 |
+
|
284 |
+
#: .././admin/settings.php:656
|
285 |
+
msgid "Plugin Settings"
|
286 |
+
msgstr "Impostazioni plugin"
|
287 |
+
|
288 |
+
#: .././admin/settings.php:663
|
289 |
+
msgid "Last Error detected"
|
290 |
+
msgstr "Ultimo errore rilevato"
|
291 |
+
|
292 |
+
#: .././admin/settings.php:669 .././admin/settings.php:682
|
293 |
+
msgid "None"
|
294 |
+
msgstr "Nessuno"
|
295 |
+
|
296 |
+
#: .././admin/settings.php:676
|
297 |
+
msgid "Error Details"
|
298 |
+
msgstr "Dettagli errore"
|
299 |
+
|
300 |
+
#: .././admin/settings.php:696
|
301 |
+
msgid "Plugin Configuration"
|
302 |
+
msgstr "Configurazione plugin"
|
303 |
+
|
304 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
305 |
+
msgid ""
|
306 |
+
"Loading the required libraries. If this results in a blank screen or a fatal "
|
307 |
+
"error, try this solution:"
|
308 |
+
msgstr ""
|
309 |
+
"Caricamento delle librerie richieste. Se viene restituita una schermata "
|
310 |
+
"vuota o si verifica un errore fatale, provare questa soluzione:"
|
311 |
+
|
312 |
+
#: .././admin/settings.php:717
|
313 |
+
msgid "Library conflicts between WordPress plugins"
|
314 |
+
msgstr "Conflitti tra le librerie dei plugins di WordPress"
|
315 |
+
|
316 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
317 |
+
msgid "Plugin authorization succeeded."
|
318 |
+
msgstr "Autorizzazione plugin riuscita."
|
319 |
+
|
320 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
321 |
+
msgid ""
|
322 |
+
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
323 |
+
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
324 |
+
msgstr ""
|
325 |
+
"Il codice di accesso <strong>NON</strong> è il <strong>Tracking ID</"
|
326 |
+
"strong> (UA-XXXXX-X). Prova di nuovo utilizzando il link rosso per ottenere "
|
327 |
+
"il codice di accesso"
|
328 |
+
|
329 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
330 |
+
msgid "Cleared Cache."
|
331 |
+
msgstr "Cache eliminata."
|
332 |
+
|
333 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
334 |
+
msgid "Token Reseted and Revoked."
|
335 |
+
msgstr "Token azzerato e revocato."
|
336 |
+
|
337 |
+
#: .././admin/settings.php:789
|
338 |
+
msgid "All errors reseted."
|
339 |
+
msgstr "Tutti gli errori azzerati."
|
340 |
+
|
341 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
342 |
+
msgid "All other domains/properties were removed."
|
343 |
+
msgstr "Tutti gli altri domini/proprietà sono stati rimossi."
|
344 |
+
|
345 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
346 |
+
msgid "Google Analytics Settings"
|
347 |
+
msgstr "Impostazioni di Google Analytics"
|
348 |
+
|
349 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
350 |
+
msgid "Use the red link (see below) to generate and get your access code!"
|
351 |
+
msgstr ""
|
352 |
+
"Utilizza il link rosso (vedi sotto) per generare ed ottenere il tuo codice "
|
353 |
+
"di accesso!"
|
354 |
+
|
355 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
356 |
+
msgid "Plugin Authorization"
|
357 |
+
msgstr "Autorizzazione plugin"
|
358 |
+
|
359 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
360 |
+
#, php-format
|
361 |
+
msgid ""
|
362 |
+
"You should watch the %1$s and read this %2$s before proceeding to "
|
363 |
+
"authorization. This plugin requires a properly configured Google Analytics "
|
364 |
+
"account!"
|
365 |
+
msgstr ""
|
366 |
+
"Dovresti guardare %1$s e leggere questo %2$s prima di procedere con l'"
|
367 |
+
"autorizzazione. Questo plugin richiede un account di Google Analytics "
|
368 |
+
"correttamente configurato!"
|
369 |
+
|
370 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
371 |
+
msgid "video"
|
372 |
+
msgstr "video"
|
373 |
+
|
374 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
375 |
+
msgid "tutorial"
|
376 |
+
msgstr "guida"
|
377 |
+
|
378 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
379 |
+
msgid "use your own API Project credentials"
|
380 |
+
msgstr "utilizza le tue credenziali API"
|
381 |
+
|
382 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
383 |
+
msgid "API Key:"
|
384 |
+
msgstr "Chiave API:"
|
385 |
+
|
386 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
387 |
+
msgid "Client ID:"
|
388 |
+
msgstr "ID Cliente:"
|
389 |
+
|
390 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
391 |
+
msgid "Client Secret:"
|
392 |
+
msgstr "Client Secret:"
|
393 |
+
|
394 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
395 |
+
msgid "Clear Authorization"
|
396 |
+
msgstr "Revoca autorizzazione"
|
397 |
+
|
398 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
399 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
400 |
+
msgid "Clear Cache"
|
401 |
+
msgstr "Elimina cache"
|
402 |
+
|
403 |
+
#: .././admin/settings.php:873
|
404 |
+
msgid "Reset Errors"
|
405 |
+
msgstr "Azzera errori."
|
406 |
+
|
407 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
408 |
+
msgid "General Settings"
|
409 |
+
msgstr "Impostazioni generali"
|
410 |
+
|
411 |
+
#: .././admin/settings.php:882
|
412 |
+
msgid "Select View:"
|
413 |
+
msgstr "Seleziona vista:"
|
414 |
+
|
415 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
416 |
+
msgid "Property not found"
|
417 |
+
msgstr "Proprietà non trovata"
|
418 |
+
|
419 |
+
#: .././admin/settings.php:899
|
420 |
+
msgid "Lock Selection"
|
421 |
+
msgstr "Blocca selezione"
|
422 |
+
|
423 |
+
#: .././admin/settings.php:918
|
424 |
+
msgid "Theme Color:"
|
425 |
+
msgstr "Colore tema:"
|
426 |
+
|
427 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
428 |
+
msgid "Automatic Updates"
|
429 |
+
msgstr "Aggiornamenti automatici"
|
430 |
+
|
431 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
432 |
+
msgid ""
|
433 |
+
"automatic updates for minor versions (security and maintenance releases only)"
|
434 |
+
msgstr ""
|
435 |
+
"aggiornamenti automatici per le release minori (solo di manutenzione e "
|
436 |
+
"sicurezza)"
|
437 |
+
|
438 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
439 |
+
#: .././admin/widgets.php:32
|
440 |
+
msgid "Authorize Plugin"
|
441 |
+
msgstr "Autorizza plugin"
|
442 |
+
|
443 |
+
#: .././admin/settings.php:1027
|
444 |
+
msgid "Properties refreshed."
|
445 |
+
msgstr "Proprietà aggiornate."
|
446 |
+
|
447 |
+
#: .././admin/settings.php:1112
|
448 |
+
msgid "Network Setup"
|
449 |
+
msgstr "Configurazione della rete"
|
450 |
+
|
451 |
+
#: .././admin/settings.php:1122
|
452 |
+
msgid "use a single Google Analytics account for the entire network"
|
453 |
+
msgstr "utilizza un unico account di Google Analytics per tutta la rete"
|
454 |
+
|
455 |
+
#: .././admin/settings.php:1167
|
456 |
+
msgid "Refresh Properties"
|
457 |
+
msgstr "Aggiorna proprietà"
|
458 |
+
|
459 |
+
#: .././admin/settings.php:1173
|
460 |
+
msgid "Properties/Views Settings"
|
461 |
+
msgstr "Proprietà/Mostra impostazioni"
|
462 |
+
|
463 |
+
#: .././admin/settings.php:1227
|
464 |
+
msgid "exclude Super Admin tracking for the entire network"
|
465 |
+
msgstr "escludi il monitoraggio dell'amministratore su tutta la rete"
|
466 |
+
|
467 |
+
#: .././admin/settings.php:1275
|
468 |
+
msgid "Setup Tutorial & Demo"
|
469 |
+
msgstr "Guida all'installazione & Demo"
|
470 |
+
|
471 |
+
#: .././admin/settings.php:1283
|
472 |
+
msgid "Follow & Review"
|
473 |
+
msgstr "Supporto & Recensioni"
|
474 |
+
|
475 |
+
#: .././admin/settings.php:1309
|
476 |
+
#, php-format
|
477 |
+
msgid "Your feedback and review are both important, %s!"
|
478 |
+
msgstr "Il tuo feedback e la tua recensione sono entrambi importanti, %s!"
|
479 |
+
|
480 |
+
#: .././admin/settings.php:1309
|
481 |
+
msgid "rate this plugin"
|
482 |
+
msgstr "vota questo plugin"
|
483 |
+
|
484 |
+
#: .././admin/settings.php:1315
|
485 |
+
msgid "Further Reading"
|
486 |
+
msgstr "Approfondimenti"
|
487 |
+
|
488 |
+
#: .././admin/settings.php:1322
|
489 |
+
#, php-format
|
490 |
+
msgid "%s by moving your website to HTTPS/SSL."
|
491 |
+
msgstr "%s spostando il sito web a HTTPS/SSL."
|
492 |
+
|
493 |
+
#: .././admin/settings.php:1322
|
494 |
+
msgid "Improve search rankings"
|
495 |
+
msgstr "Migliorare le classifiche di ricerca"
|
496 |
+
|
497 |
+
#: .././admin/settings.php:1329
|
498 |
+
#, php-format
|
499 |
+
msgid "Other %s written by the same author"
|
500 |
+
msgstr "Altri %s scritti dallo stesso autore"
|
501 |
+
|
502 |
+
#: .././admin/settings.php:1329
|
503 |
+
msgid "WordPress Plugins"
|
504 |
+
msgstr "plugins per WordPress "
|
505 |
+
|
506 |
+
#: .././admin/settings.php:1335
|
507 |
+
msgid "Other Services"
|
508 |
+
msgstr "Altri servizi"
|
509 |
+
|
510 |
+
#: .././admin/settings.php:1342
|
511 |
+
#, php-format
|
512 |
+
msgid "Speed up your website and plug into a whole %s"
|
513 |
+
msgstr "Accellera il tuo sito web ad un %s"
|
514 |
+
|
515 |
+
#: .././admin/settings.php:1342
|
516 |
+
msgid "new level of site speed"
|
517 |
+
msgstr "nuovo livello di velocità"
|
518 |
+
|
519 |
+
#: .././admin/settings.php:1349
|
520 |
+
#, php-format
|
521 |
+
msgid "%s service with users tracking at IP level."
|
522 |
+
msgstr "%s servizio con tracciamento degli utenti a livello IP."
|
523 |
+
|
524 |
+
#: .././admin/settings.php:1349
|
525 |
+
msgid "Web Analytics"
|
526 |
+
msgstr "Web Analytics"
|
527 |
+
|
528 |
+
#: .././admin/setup.php:41 .././admin/setup.php:57
|
529 |
+
msgid "Google Analytics"
|
530 |
+
msgstr "Google Analytics"
|
531 |
+
|
532 |
+
#: .././admin/setup.php:43
|
533 |
+
msgid "Backend Settings"
|
534 |
+
msgstr "Impostazioni backend"
|
535 |
+
|
536 |
+
#: .././admin/setup.php:44
|
537 |
+
msgid "Frontend Settings"
|
538 |
+
msgstr "Impostazioni frontend"
|
539 |
+
|
540 |
+
#: .././admin/setup.php:45
|
541 |
+
msgid "Tracking Code"
|
542 |
+
msgstr "Monitoraggio"
|
543 |
+
|
544 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
545 |
+
msgid "Today"
|
546 |
+
msgstr "Oggi"
|
547 |
+
|
548 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
549 |
+
msgid "Yesterday"
|
550 |
+
msgstr "Ieri"
|
551 |
+
|
552 |
+
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
553 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
554 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
555 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
556 |
+
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
557 |
+
#: .././front/widgets.php:67 .././front/widgets.php:70
|
558 |
+
#: .././front/widgets.php:158 .././front/widgets.php:159
|
559 |
+
#: .././front/widgets.php:160
|
560 |
+
#, php-format
|
561 |
+
msgid "Last %d Days"
|
562 |
+
msgstr "Ultimi %d giorni"
|
563 |
+
|
564 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
565 |
+
msgid "One"
|
566 |
+
msgstr "Un"
|
567 |
+
|
568 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
569 |
+
msgid "Three"
|
570 |
+
msgstr "Tre"
|
571 |
+
|
572 |
+
#: .././admin/setup.php:169 .././admin/setup.php:185 .././front/setup.php:81
|
573 |
+
#: .././front/setup.php:97
|
574 |
+
msgid "Unique Views"
|
575 |
+
msgstr "Visualizzazioni singole"
|
576 |
+
|
577 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
578 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
579 |
+
#: .././tools/gapi.php:357
|
580 |
+
msgid "Users"
|
581 |
+
msgstr "Utenti"
|
582 |
+
|
583 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
584 |
+
msgid "Organic"
|
585 |
+
msgstr "Traffico da motorI di ricerca"
|
586 |
+
|
587 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
588 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
589 |
+
#: .././tools/gapi.php:360
|
590 |
+
msgid "Page Views"
|
591 |
+
msgstr "Pagine viste"
|
592 |
+
|
593 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
594 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
595 |
+
#: .././tools/gapi.php:363
|
596 |
+
msgid "Bounce Rate"
|
597 |
+
msgstr "Frequenza di rimbalzo"
|
598 |
+
|
599 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
600 |
+
msgid "Location"
|
601 |
+
msgstr "Posizione geografica"
|
602 |
+
|
603 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
604 |
+
#: .././tools/gapi.php:502
|
605 |
+
msgid "Referrers"
|
606 |
+
msgstr "Siti di origine del traffico"
|
607 |
+
|
608 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
609 |
+
#: .././tools/gapi.php:535
|
610 |
+
msgid "Searches"
|
611 |
+
msgstr "Ricerche"
|
612 |
+
|
613 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
614 |
+
msgid "Traffic Details"
|
615 |
+
msgstr "Dettagli traffico"
|
616 |
+
|
617 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
618 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
619 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
620 |
+
msgid "A JavaScript Error is blocking plugin resources!"
|
621 |
+
msgstr "Un errore JavaScript sta bloccando le risorse del plugin"
|
622 |
+
|
623 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
624 |
+
msgid "Traffic Mediums"
|
625 |
+
msgstr "Origine del traffico in %"
|
626 |
+
|
627 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
628 |
+
msgid "Visitor Type"
|
629 |
+
msgstr "Tipo di visitatore"
|
630 |
+
|
631 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
632 |
+
msgid "Social Networks"
|
633 |
+
msgstr "Social Networks"
|
634 |
+
|
635 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
636 |
+
msgid "Search Engines"
|
637 |
+
msgstr "Motori di ricerca"
|
638 |
+
|
639 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
640 |
+
msgid "Organic Search"
|
641 |
+
msgstr "Ricerca organica"
|
642 |
+
|
643 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
644 |
+
msgid "Pages/Session"
|
645 |
+
msgstr "Pagine per sessione"
|
646 |
+
|
647 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
648 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
649 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
650 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
651 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
652 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
653 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
654 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
655 |
+
msgid "Invalid response, more details in JavaScript Console (F12)."
|
656 |
+
msgstr ""
|
657 |
+
"Risposta non valida, ulteriori dettagli nella console JavaScript (F12)."
|
658 |
+
|
659 |
+
#: .././admin/setup.php:192 .././front/setup.php:104
|
660 |
+
msgid "Not enough data collected"
|
661 |
+
msgstr "Dati raccolti insufficienti"
|
662 |
+
|
663 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
664 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
665 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
666 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
667 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
668 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
669 |
+
#: .././front/setup.php:105 .././front/widgets.php:100
|
670 |
+
msgid "This report is unavailable"
|
671 |
+
msgstr "Questo rapporto non è disponibile"
|
672 |
+
|
673 |
+
#: .././admin/setup.php:194 .././front/setup.php:106
|
674 |
+
msgid "report generated by"
|
675 |
+
msgstr "rapporto generato da"
|
676 |
+
|
677 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
678 |
+
msgid "This plugin needs an authorization:"
|
679 |
+
msgstr "Questo plugin necessita di un'autorizzazione:"
|
680 |
+
|
681 |
+
#: .././admin/setup.php:227
|
682 |
+
msgid "Settings"
|
683 |
+
msgstr "Impostazioni"
|
684 |
+
|
685 |
+
#: .././admin/setup.php:239
|
686 |
+
#, php-format
|
687 |
+
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
688 |
+
msgstr "Google Analytics Dashboard for Wp è stato aggiornato alla versione %s."
|
689 |
+
|
690 |
+
#: .././admin/setup.php:239
|
691 |
+
#, php-format
|
692 |
+
msgid "For details, check out %1$s and %2$s."
|
693 |
+
msgstr "Per dettagli, guarda %1$s e %2$s."
|
694 |
+
|
695 |
+
#: .././admin/setup.php:239
|
696 |
+
msgid "the documentation page"
|
697 |
+
msgstr "la pagina della documentazione del plugin"
|
698 |
+
|
699 |
+
#: .././admin/setup.php:239
|
700 |
+
msgid "the plugin's settings page"
|
701 |
+
msgstr "La pagina delle impostazioni del plugin"
|
702 |
+
|
703 |
+
#: .././admin/widgets.php:27 .././front/widgets.php:21
|
704 |
+
msgid "Google Analytics Dashboard"
|
705 |
+
msgstr "Bacheca di Google Analytics"
|
706 |
+
|
707 |
+
#: .././admin/widgets.php:66
|
708 |
+
msgid "Something went wrong while retrieving profiles list."
|
709 |
+
msgstr ""
|
710 |
+
"Qualcosa è andato male durante il recupero della lista dei profili."
|
711 |
+
|
712 |
+
#: .././admin/widgets.php:66
|
713 |
+
msgid "More details"
|
714 |
+
msgstr "Altri dettagli"
|
715 |
+
|
716 |
+
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
717 |
+
msgid "An admin should asign a default Google Analytics Profile."
|
718 |
+
msgstr ""
|
719 |
+
"Un amministratore deve assegnare un profilo predefinito di Google Analytics."
|
720 |
+
|
721 |
+
#: .././admin/widgets.php:79 .././admin/widgets.php:90
|
722 |
+
msgid "Select Domain"
|
723 |
+
msgstr "Seleziona dominio"
|
724 |
+
|
725 |
+
#: .././admin/widgets.php:95
|
726 |
+
msgid ""
|
727 |
+
"Something went wrong while retrieving property data. You need to create and "
|
728 |
+
"properly configure a Google Analytics account:"
|
729 |
+
msgstr ""
|
730 |
+
"Qualcosa è andato male durante il recupero dei dati. È "
|
731 |
+
"necessario creare e configurare correttamente un account di Google Analytics:"
|
732 |
+
|
733 |
+
#: .././admin/widgets.php:95
|
734 |
+
msgid "Find out more!"
|
735 |
+
msgstr "Per saperne di più!"
|
736 |
+
|
737 |
+
#: .././admin/widgets.php:113
|
738 |
+
msgid "Real-Time"
|
739 |
+
msgstr "In tempo reale"
|
740 |
+
|
741 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
742 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
743 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
744 |
+
#: .././tools/gapi.php:694
|
745 |
+
msgid "Sessions"
|
746 |
+
msgstr "Sessioni"
|
747 |
+
|
748 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
749 |
+
msgid "Pages"
|
750 |
+
msgstr "Pagine"
|
751 |
+
|
752 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
753 |
+
msgid "REFERRAL"
|
754 |
+
msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
|
755 |
+
|
756 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
757 |
+
msgid "ORGANIC"
|
758 |
+
msgstr "TRAFFICO DA MOTORI DI RICERCA (ORGANICO)"
|
759 |
+
|
760 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
761 |
+
#: .././admin/widgets.php:477
|
762 |
+
msgid "SOCIAL"
|
763 |
+
msgstr "TRAFFICO DAI SOCIAL NETWORK"
|
764 |
+
|
765 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
766 |
+
#: .././admin/widgets.php:478
|
767 |
+
msgid "CAMPAIGN"
|
768 |
+
msgstr "CAMPAGNA"
|
769 |
+
|
770 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
771 |
+
#: .././admin/widgets.php:481
|
772 |
+
msgid "DIRECT"
|
773 |
+
msgstr "TRAFFICO DIRETTO"
|
774 |
+
|
775 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
776 |
+
msgid "NEW"
|
777 |
+
msgstr "VISITATORI NUOVI"
|
778 |
+
|
779 |
+
#: .././admin/widgets.php:355
|
780 |
+
msgid "REFERRALS"
|
781 |
+
msgstr "TRAFFICO DA SITI REFERENTI (REFERRALS)"
|
782 |
+
|
783 |
+
#: .././admin/widgets.php:358
|
784 |
+
msgid "KEYWORDS"
|
785 |
+
msgstr "KEYWORDS"
|
786 |
+
|
787 |
+
#: .././front/widgets.php:21
|
788 |
+
msgid "Will display your google analytics stats in a widget"
|
789 |
+
msgstr "Visualizza le statistiche di Google Analytics in un widget"
|
790 |
+
|
791 |
+
#: .././front/widgets.php:123
|
792 |
+
msgid "Period:"
|
793 |
+
msgstr "Periodo:"
|
794 |
+
|
795 |
+
#: .././front/widgets.php:123
|
796 |
+
msgid "Sessions:"
|
797 |
+
msgstr "Sessioni:"
|
798 |
+
|
799 |
+
#: .././front/widgets.php:127
|
800 |
+
msgid "generated by"
|
801 |
+
msgstr "generato da"
|
802 |
+
|
803 |
+
#: .././front/widgets.php:136
|
804 |
+
msgid "Google Analytics Stats"
|
805 |
+
msgstr "Statistiche di Google Analytics"
|
806 |
+
|
807 |
+
#: .././front/widgets.php:144
|
808 |
+
msgid "Title:"
|
809 |
+
msgstr "Titolo:"
|
810 |
+
|
811 |
+
#: .././front/widgets.php:147
|
812 |
+
msgid "Display:"
|
813 |
+
msgstr "Mostra:"
|
814 |
+
|
815 |
+
#: .././front/widgets.php:148
|
816 |
+
msgid "Chart & Totals"
|
817 |
+
msgstr "Grafico & Totali"
|
818 |
+
|
819 |
+
#: .././front/widgets.php:149
|
820 |
+
msgid "Chart"
|
821 |
+
msgstr "Grafico"
|
822 |
+
|
823 |
+
#: .././front/widgets.php:150
|
824 |
+
msgid "Totals"
|
825 |
+
msgstr "Totali"
|
826 |
+
|
827 |
+
#: .././front/widgets.php:154
|
828 |
+
msgid "Anonymize stats:"
|
829 |
+
msgstr "Anonimizza le statistiche:"
|
830 |
+
|
831 |
+
#: .././front/widgets.php:157
|
832 |
+
msgid "Stats for:"
|
833 |
+
msgstr "Statistiche per:"
|
834 |
+
|
835 |
+
#: .././front/widgets.php:164
|
836 |
+
msgid "Give credits:"
|
837 |
+
msgstr "Crediti:"
|
838 |
+
|
839 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
840 |
+
msgid "This is not allowed, read the documentation!"
|
841 |
+
msgstr "Questo non è permesso, leggi la documentazione"
|
842 |
+
|
843 |
+
#: .././tools/gapi.php:128
|
844 |
+
msgid "Use this link to get your access code:"
|
845 |
+
msgstr "Utilizza questo link per ottenere il codice di accesso:"
|
846 |
+
|
847 |
+
#: .././tools/gapi.php:128
|
848 |
+
msgid "Get Access Code"
|
849 |
+
msgstr "Ottieni codice di accesso"
|
850 |
+
|
851 |
+
#: .././tools/gapi.php:132 .././tools/gapi.php:133
|
852 |
+
msgid "Use the red link to get your access code!"
|
853 |
+
msgstr "Utilizza il link rosso per ottenere il tuo codice di accesso!"
|
854 |
+
|
855 |
+
#: .././tools/gapi.php:132
|
856 |
+
msgid "Access Code:"
|
857 |
+
msgstr "Codice di accesso:"
|
858 |
+
|
859 |
+
#: .././tools/gapi.php:139
|
860 |
+
msgid "Save Access Code"
|
861 |
+
msgstr "Salva codice di accesso"
|
862 |
+
|
863 |
+
#: .././tools/gapi.php:366
|
864 |
+
msgid "Organic Searches"
|
865 |
+
msgstr "Ricerche organiche"
|
866 |
+
|
867 |
+
#: .././tools/gapi.php:369
|
868 |
+
msgid "Unique Page Views"
|
869 |
+
msgstr "Visualizzazioni pagine singole"
|
870 |
+
|
871 |
+
#: .././tools/gapi.php:377
|
872 |
+
msgid "Hour"
|
873 |
+
msgstr "Ora"
|
874 |
+
|
875 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
876 |
+
msgid "Date"
|
877 |
+
msgstr "Data"
|
878 |
+
|
879 |
+
#: .././tools/gapi.php:470
|
880 |
+
msgid "Views"
|
881 |
+
msgstr "Visualizzazioni"
|
882 |
+
|
883 |
+
#: .././tools/gapi.php:556
|
884 |
+
msgid "Countries"
|
885 |
+
msgstr "Paesi"
|
886 |
+
|
887 |
+
#: .././tools/gapi.php:566
|
888 |
+
msgid "Cities from"
|
889 |
+
msgstr "Paese: "
|
890 |
+
|
891 |
+
#: .././tools/gapi.php:619
|
892 |
+
msgid "Channels"
|
893 |
+
msgstr "Canali"
|
894 |
+
|
895 |
+
#: .././tools/gapi.php:665
|
896 |
+
msgid "Type"
|
897 |
+
msgstr "Tipo"
|
898 |
+
|
899 |
+
#~ msgid "%s Year"
|
900 |
+
#~ msgid_plural "%s Years"
|
901 |
+
#~ msgstr[0] "%s anno"
|
902 |
+
#~ msgstr[1] "%s anni"
|
903 |
+
|
904 |
+
#~ msgid "trend"
|
905 |
+
#~ msgstr "tendenza"
|
906 |
+
|
907 |
+
#~ msgid "Read %s for more information about Frontend Features and Options."
|
908 |
+
#~ msgstr ""
|
909 |
+
#~ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalità "
|
910 |
+
#~ "del frontend."
|
911 |
+
|
912 |
+
#~ msgid "show page sessions and users in frontend (after each article)"
|
913 |
+
#~ msgstr ""
|
914 |
+
#~ "mostra la pagina delle sessioni e degli utenti nel frontend (dopo ogni "
|
915 |
+
#~ "articolo)"
|
916 |
+
|
917 |
+
#~ msgid "show page searches (after each article)"
|
918 |
+
#~ msgstr "mostra la pagina delle ricerche (dopo ogni articolo)"
|
919 |
+
|
920 |
+
#~ msgid "Read %s for more information about Backend Features and Options."
|
921 |
+
#~ msgstr ""
|
922 |
+
#~ "Leggi %s per ulteriori informazioni sulle opzioni e funzionalità "
|
923 |
+
#~ "del backend."
|
924 |
+
|
925 |
+
#~ msgid "For more information about Tracking Options read %s."
|
926 |
+
#~ msgstr "Per ulteriori informazioni sulle opzioni di monitoraggio leggi %s."
|
927 |
+
|
928 |
+
#~ msgid "For errors and/or other issues check %s and related resources."
|
929 |
+
#~ msgstr "Per errori e/o altri problemi controlla %s e le risorse relative."
|
930 |
+
|
931 |
+
#~ msgid "Plugin documentation and support on %s"
|
932 |
+
#~ msgstr "Documentazione del plugin e supporto su %s"
|
933 |
+
|
934 |
+
#~ msgid "Last 30 Days"
|
935 |
+
#~ msgstr "Ultimi 30 giorni"
|
936 |
+
|
937 |
+
#~ msgid "Last 90 Days"
|
938 |
+
#~ msgstr "Ultimi 90 giorni"
|
939 |
+
|
940 |
+
#~ msgid "Last 14 Days"
|
941 |
+
#~ msgstr "Ultimi 14 giorni"
|
942 |
+
|
943 |
+
#~ msgid "Views vs UniqueViews"
|
944 |
+
#~ msgstr "Visualizzazioni vs Visualizzazioni singole"
|
945 |
+
|
946 |
+
#~ msgid "Google Analytics Reports"
|
947 |
+
#~ msgstr "Rapporti di Google Analytics"
|
948 |
+
|
949 |
+
#~ msgid "UniqueViews"
|
950 |
+
#~ msgstr "Visualizzazioni uniche"
|
951 |
+
|
952 |
+
#~ msgid "enable Switch Profile/View functionality"
|
953 |
+
#~ msgstr "abilita Cambia profilo/Mostra funzionalità"
|
954 |
+
|
955 |
+
#~ msgid ""
|
956 |
+
#~ "For errors and/or other issues please check %s and related tutorials."
|
957 |
+
#~ msgstr ""
|
958 |
+
#~ "Per errori e/o altri problemi controlla %s e leggi la guida relativa."
|
959 |
+
|
960 |
+
#~ msgid "Select Domain:"
|
961 |
+
#~ msgstr "Seleziona dominio:"
|
962 |
+
|
963 |
+
#~ msgid "and/or hide all other domains"
|
964 |
+
#~ msgstr "e/o nasconde tutti gli altri domini"
|
965 |
+
|
966 |
+
#~ msgid "Hide Now"
|
967 |
+
#~ msgstr "Nascondi ora"
|
968 |
+
|
969 |
+
#~ msgid "find out more %s"
|
970 |
+
#~ msgstr "per saperne di più su %s"
|
971 |
+
|
972 |
+
#~ msgid "about this feature"
|
973 |
+
#~ msgstr "su questa funzionalità"
|
974 |
+
|
975 |
+
#~ msgid " show page sessions and users in frontend (after each article)"
|
976 |
+
#~ msgstr ""
|
977 |
+
#~ "mostra le sessioni della pagina e gli utenti nel frontend (dopo ogni "
|
978 |
+
#~ "articolo)"
|
979 |
+
|
980 |
+
#~ msgid " show page searches (after each article)"
|
981 |
+
#~ msgstr " mostra le ricerche della pagina (dopo ogni articolo)"
|
982 |
+
|
983 |
+
#~ msgid " anonymize IPs while tracking"
|
984 |
+
#~ msgstr "rendi anonimi gli indirizzi IP durante il monitoraggio"
|
985 |
+
|
986 |
+
#~ msgid " enable remarketing, demographics and interests reports"
|
987 |
+
#~ msgstr " abilita remarketing e rapporti demografici e sugli interessi"
|
988 |
+
|
989 |
+
#~ msgid " track downloads, mailto and outbound links"
|
990 |
+
#~ msgstr "monitora downloads, mailto e link in uscita"
|
991 |
+
|
992 |
+
#~ msgid " track affiliate links matching this regex"
|
993 |
+
#~ msgstr ""
|
994 |
+
#~ " monitora collegamenti associati corrispondenti a queste abbreviazioni"
|
995 |
+
|
996 |
+
#~ msgid " track fragment identifiers, hashmarks (#) in URI links"
|
997 |
+
#~ msgstr ""
|
998 |
+
#~ " monitora gli identificatori di frammentoe gli hashmarks (#) nei "
|
999 |
+
#~ "collegamenti URI"
|
1000 |
+
|
1001 |
+
#~ msgid " exclude events from bounce-rate calculation"
|
1002 |
+
#~ msgstr " escludi gli eventi dal calcolo del bounce-rate"
|
1003 |
+
|
1004 |
+
#~ msgid " enable enhanced link attribution"
|
1005 |
+
#~ msgstr "utilizza l'attribuzione avanzata dei link"
|
1006 |
+
|
1007 |
+
#~ msgid " enable AdSense account linking"
|
1008 |
+
#~ msgstr " abilita AdSense account linking"
|
1009 |
+
|
1010 |
+
#~ msgid " enable cross domain tracking"
|
1011 |
+
#~ msgstr " abilita cross domanin tracking"
|
1012 |
+
|
1013 |
+
#~ msgid " use your own API Project credentials"
|
1014 |
+
#~ msgstr "utilizza le proprie credenziali API"
|
1015 |
+
|
1016 |
+
#~ msgid " use a single Google Analytics account for the entire network"
|
1017 |
+
#~ msgstr " utilizza un unico account Google Analytics per l'intera rete"
|
1018 |
+
|
1019 |
+
#~ msgid " exclude Super Admin tracking for the entire network"
|
1020 |
+
#~ msgstr " esclude il monitoraggio del Super Amministratore per tutta la rete"
|
1021 |
+
|
1022 |
+
#~ msgid "or"
|
1023 |
+
#~ msgstr "o"
|
1024 |
+
|
1025 |
+
#~ msgid "Tracking Options"
|
1026 |
+
#~ msgstr "Opzioni di monitoraggio"
|
1027 |
+
|
1028 |
+
#~ msgid "to"
|
1029 |
+
#~ msgstr "a"
|
1030 |
+
|
1031 |
+
#~ msgid "and related tutorials"
|
1032 |
+
#~ msgstr "ed i tutorial relativi"
|
1033 |
+
|
1034 |
+
#~ msgid "You should watch the"
|
1035 |
+
#~ msgstr "Dovresti guardare il"
|
1036 |
+
|
1037 |
+
#~ msgid "and read this"
|
1038 |
+
#~ msgstr "e leggere questa"
|
1039 |
+
|
1040 |
+
#~ msgid "Other"
|
1041 |
+
#~ msgstr "Altri"
|
1042 |
+
|
1043 |
+
#~ msgid ""
|
1044 |
+
#~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
|
1045 |
+
#~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
|
1046 |
+
#~ msgstr ""
|
1047 |
+
#~ " (watch this <a href='http://deconf.com/projects/google-analytics-"
|
1048 |
+
#~ "dashboard-for-wordpress/' target='_blank'>Step by step video tutorial</a>)"
|
1049 |
+
|
1050 |
+
#~ msgid "A new frontend widget is available! To enable it, go to"
|
1051 |
+
#~ msgstr ""
|
1052 |
+
#~ "È disponibile un nuovo widget per il frontend. Per attivarlo, vai "
|
1053 |
+
#~ "a"
|
1054 |
+
|
1055 |
+
#~ msgid "Appearance -> Widgets"
|
1056 |
+
#~ msgstr "Aspetto -> Widgets"
|
1057 |
+
|
1058 |
+
#~ msgid "and look for Google Analytics Dashboard."
|
1059 |
+
#~ msgstr "e cerca Bacheca di Google Analytics."
|
1060 |
+
|
1061 |
+
#~ msgid "Something went wrong, you need to"
|
1062 |
+
#~ msgstr "Qualcosa è andato male, devi"
|
1063 |
+
|
1064 |
+
#~ msgid "or properly configure your"
|
1065 |
+
#~ msgstr "o configura correttamente il tuo"
|
1066 |
+
|
1067 |
+
#~ msgid "Google Analytics account"
|
1068 |
+
#~ msgstr "Account di Google Analytics"
|
1069 |
+
|
1070 |
+
#~ msgid "(find out more"
|
1071 |
+
#~ msgstr "(per saperne di più"
|
1072 |
+
|
1073 |
+
#~ msgid ")"
|
1074 |
+
#~ msgstr ")"
|
1075 |
+
|
1076 |
+
#~ msgid "Additional Stats & Charts"
|
1077 |
+
#~ msgstr "Ulteriori statistiche e grafici"
|
1078 |
+
|
1079 |
+
#~ msgid " show Geo Map chart for sessions"
|
1080 |
+
#~ msgstr "mostra il grafico per le sessioni"
|
1081 |
+
|
1082 |
+
#~ msgid "Target Geo Map to region:"
|
1083 |
+
#~ msgstr "Cartina delle visite per il paese:"
|
1084 |
+
|
1085 |
+
#~ msgid "and render top"
|
1086 |
+
#~ msgstr "con"
|
1087 |
+
|
1088 |
+
#~ msgid "cities (find out more"
|
1089 |
+
#~ msgstr "città (per saperne di più"
|
1090 |
+
|
1091 |
+
#~ msgid " show traffic overview"
|
1092 |
+
#~ msgstr " mostra la panoramica sul traffico"
|
1093 |
+
|
1094 |
+
#~ msgid " show top pages"
|
1095 |
+
#~ msgstr " mostra le principali pagine attive"
|
1096 |
+
|
1097 |
+
#~ msgid " show top referrers"
|
1098 |
+
#~ msgstr " mostra i siti principali di origine del traffico"
|
1099 |
+
|
1100 |
+
#~ msgid " show top searches"
|
1101 |
+
#~ msgstr " mostra le ricerche principali"
|
1102 |
+
|
1103 |
+
#~ msgid "Dumping log data."
|
1104 |
+
#~ msgstr "Dumping dati di log."
|
1105 |
+
|
1106 |
+
#~ msgid ""
|
1107 |
+
#~ "PHP CURL is required. Ask your hosting provider to install/enable PHP "
|
1108 |
+
#~ "CURL!"
|
1109 |
+
#~ msgstr ""
|
1110 |
+
#~ "PHP CURL è necessario. Chiedete al vostro fornitore di hosting per "
|
1111 |
+
#~ "installare/attivare PHP CURL!"
|
1112 |
+
|
1113 |
+
#~ msgid ""
|
1114 |
+
#~ "Something went wrong. Please check the Debugging Data section for "
|
1115 |
+
#~ "possible errors"
|
1116 |
+
#~ msgstr ""
|
1117 |
+
#~ "Qualcosa è andato male. Controlla la sezione dati di debug per "
|
1118 |
+
#~ "possibili errori"
|
1119 |
+
|
1120 |
+
#~ msgid "Debugging Data"
|
1121 |
+
#~ msgstr "Debug dei dati"
|
1122 |
+
|
1123 |
+
#~ msgid "Anonimize chart's stats:"
|
1124 |
+
#~ msgstr "Rendi anonimo il grafico delle statistiche:"
|
1125 |
+
|
1126 |
+
#~ msgid "Top Searches"
|
1127 |
+
#~ msgstr "Ricerche principali"
|
1128 |
+
|
1129 |
+
#~ msgid "Error Log"
|
1130 |
+
#~ msgstr "Log errori"
|
1131 |
+
|
1132 |
+
#~ msgid ""
|
1133 |
+
#~ "No stats available. Please check the Debugging Data section for possible "
|
1134 |
+
#~ "errors"
|
1135 |
+
#~ msgstr ""
|
1136 |
+
#~ "Nessuna statistica disponibile. Controlla la sezione dati di debug per "
|
1137 |
+
#~ "possibili errori"
|
1138 |
+
|
1139 |
+
#~ msgid "Country/City"
|
1140 |
+
#~ msgstr "Paese/Città"
|
1141 |
+
|
1142 |
+
#~ msgid "Source"
|
1143 |
+
#~ msgstr "Sorgente"
|
1144 |
+
|
1145 |
+
#~ msgid "Traffic Sources"
|
1146 |
+
#~ msgstr "Sorgenti di traffico"
|
1147 |
+
|
1148 |
+
#~ msgid "New vs. Returning"
|
1149 |
+
#~ msgstr "Visitatori nuovi contro Visitatori di ritorno"
|
1150 |
+
|
1151 |
+
#~ msgid "Top Pages"
|
1152 |
+
#~ msgstr "Principali pagine attive"
|
1153 |
+
|
1154 |
+
#~ msgid "Top Referrers"
|
1155 |
+
#~ msgstr "Referral principali"
|
1156 |
+
|
1157 |
+
#~ msgid ""
|
1158 |
+
#~ "This is a beta feature and is only available when using my Developer Key! "
|
1159 |
+
#~ "("
|
1160 |
+
#~ msgstr ""
|
1161 |
+
#~ "Questa è una caratteristica beta ed è disponibile solo "
|
1162 |
+
#~ "quando si utilizza il Developer Key! ("
|
1163 |
+
|
1164 |
+
#~ msgid "more about this feature"
|
1165 |
+
#~ msgstr "più informazioni su questa funzione"
|
1166 |
+
|
1167 |
+
#~ msgid "RETURN"
|
1168 |
+
#~ msgstr "VISITATORI DI RITORNO"
|
1169 |
+
|
1170 |
+
#~ msgid "Sessions from "
|
1171 |
+
#~ msgstr "Sessioni da: "
|
1172 |
+
|
1173 |
+
#~ msgid "Sessions by Country"
|
1174 |
+
#~ msgstr "Sessioni per paese"
|
1175 |
+
|
1176 |
+
#~ msgid "Traffic Overview"
|
1177 |
+
#~ msgstr "Panoramica traffico"
|
1178 |
+
|
1179 |
+
#~ msgid "Visits"
|
1180 |
+
#~ msgstr "Visite"
|
1181 |
+
|
1182 |
+
#~ msgid "Visitors"
|
1183 |
+
#~ msgstr "Visitatori"
|
1184 |
+
|
1185 |
+
#~ msgid "Visits:"
|
1186 |
+
#~ msgstr "Visite:"
|
1187 |
+
|
1188 |
+
#~ msgid "Visitors:"
|
1189 |
+
#~ msgstr "Visitatori:"
|
1190 |
+
|
1191 |
+
#~ msgid "Page Views:"
|
1192 |
+
#~ msgstr "Pagine viste:"
|
1193 |
+
|
1194 |
+
#~ msgid "Bounce Rate:"
|
1195 |
+
#~ msgstr "Frequenza di rimbalzo:"
|
1196 |
+
|
1197 |
+
#~ msgid "Organic Search:"
|
1198 |
+
#~ msgstr "Ricerca organica:"
|
1199 |
+
|
1200 |
+
#~ msgid "Pages per Visit:"
|
1201 |
+
#~ msgstr "Pagine per visita:"
|
1202 |
+
|
1203 |
+
#~ msgid "Visits from "
|
1204 |
+
#~ msgstr "Visite da "
|
1205 |
+
|
1206 |
+
#~ msgid "Visits by Country"
|
1207 |
+
#~ msgstr "Visite per paese"
|
1208 |
+
|
1209 |
+
#~ msgid " show page visits and visitors in frontend (after each article)"
|
1210 |
+
#~ msgstr ""
|
1211 |
+
#~ " mostra le pagine visitate e visitatori nel frontend (dopo ogni articolo)"
|
1212 |
+
|
1213 |
+
#~ msgid " show Geo Map chart for visits"
|
1214 |
+
#~ msgstr " mostra la cartina geografica delle visite"
|
1215 |
+
|
1216 |
+
#~ msgid "You can find support on"
|
1217 |
+
#~ msgstr "Puoi trovare supporto su"
|
1218 |
+
|
1219 |
+
#~ msgid "DeConf.com"
|
1220 |
+
#~ msgstr "DeConf.com"
|
1221 |
+
|
1222 |
+
#~ msgid "service with visitors tracking at IP level."
|
1223 |
+
#~ msgstr "servizio con monitoraggio dei visitatori a livello IP."
|
1224 |
+
|
1225 |
+
#~ msgid "Total Visits:"
|
1226 |
+
#~ msgstr "Totale visite:"
|
1227 |
+
|
1228 |
+
#~ msgid "PHP CURL is required. Please install/enable PHP CURL!"
|
1229 |
+
#~ msgstr "CURL è necessaria. Si prega di installare/abilitare CURL!"
|
1230 |
+
|
1231 |
+
#~ msgid "Options saved."
|
1232 |
+
#~ msgstr "Opzioni salvate."
|
1233 |
+
|
1234 |
+
#~ msgid "Show stats to: "
|
1235 |
+
#~ msgstr "Mostra statistiche:"
|
1236 |
+
|
1237 |
+
#~ msgid "Update Options"
|
1238 |
+
#~ msgstr "Aggiorna opzioni"
|
1239 |
+
|
1240 |
+
#~ msgid "Tracking Options: "
|
1241 |
+
#~ msgstr "Opzioni monitoraggio: "
|
1242 |
+
|
1243 |
+
#~ msgid "Tracking Type: "
|
1244 |
+
#~ msgstr "Tipo di monitoraggio:"
|
1245 |
+
|
1246 |
+
#, fuzzy
|
1247 |
+
#~ msgid "User Type: "
|
1248 |
+
#~ msgstr "Tipo di monitoraggio:"
|
1249 |
+
|
1250 |
+
#~ msgid "Exclude tracking for: "
|
1251 |
+
#~ msgstr "Escludi monitoraggio per:"
|
1252 |
+
|
1253 |
+
#~ msgid "Select Domain: "
|
1254 |
+
#~ msgstr "Seleziona dominio:"
|
1255 |
+
|
1256 |
+
#~ msgid "Theme Color: "
|
1257 |
+
#~ msgstr "Colote tema:"
|
1258 |
+
|
1259 |
+
#~ msgid "' trend"
|
1260 |
+
#~ msgstr "' tendenza"
|
1261 |
+
|
1262 |
+
#~ msgid "DeConf Help Center"
|
1263 |
+
#~ msgstr "DeConf Help Center"
|
1264 |
+
|
1265 |
+
#~ msgid "Custom Code"
|
1266 |
+
#~ msgstr "Codice personalizzato"
|
1267 |
+
|
1268 |
+
#~ msgid "Your Tracking Code:"
|
1269 |
+
#~ msgstr "Il tuo codice di monitoraggio:"
|
|
|
|
|
|
|
|
|
|
|
|
languages/{ga-dash-ja.mo → google-analytics-dashboard-for-wp-ja.mo}
RENAMED
File without changes
|
languages/{ga-dash-ja.po → google-analytics-dashboard-for-wp-ja.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: heysister721 <tk197709141545@gmail.com>\n"
|
10 |
"Language: ja\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -28,7 +28,7 @@ msgstr "アナリティクス"
|
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
-
#: .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr "設定を保存しました。"
|
34 |
|
@@ -36,29 +36,30 @@ msgstr "設定を保存しました。"
|
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
-
#: .././admin/settings.php:
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "修正しますか?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "問題が発生しました。%2$sするか、%1$sを確認してください。"
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "エラー&デバッグ"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
62 |
msgid "authorize the plugin"
|
63 |
msgstr "プラグインを認可"
|
64 |
|
@@ -79,8 +80,8 @@ msgid "enable web page reports on frontend"
|
|
79 |
msgstr ""
|
80 |
|
81 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
82 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
83 |
-
#: .././admin/settings.php:
|
84 |
msgid "Save Changes"
|
85 |
msgstr "変更を保存"
|
86 |
|
@@ -139,7 +140,7 @@ msgid "Custom Definitions"
|
|
139 |
msgstr "カスタム定義"
|
140 |
|
141 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
142 |
-
#: .././admin/settings.php:
|
143 |
msgid "Exclude Tracking"
|
144 |
msgstr "追跡を除外する"
|
145 |
|
@@ -163,21 +164,21 @@ msgstr "無効"
|
|
163 |
msgid "Enabled"
|
164 |
msgstr "有効"
|
165 |
|
166 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
167 |
-
#: .././admin/settings.php:
|
168 |
#: .././admin/widgets.php:61
|
169 |
msgid "View Name:"
|
170 |
msgstr "ビュー名:"
|
171 |
|
172 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
173 |
msgid "Tracking ID:"
|
174 |
msgstr "トラッキング ID:"
|
175 |
|
176 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
177 |
msgid "Default URL:"
|
178 |
msgstr "デフォルトのURL:"
|
179 |
|
180 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
181 |
msgid "Time Zone:"
|
182 |
msgstr "タイムゾーン:"
|
183 |
|
@@ -301,7 +302,7 @@ msgstr "エラーの詳細"
|
|
301 |
msgid "Plugin Configuration"
|
302 |
msgstr "プラグインの設定"
|
303 |
|
304 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
305 |
msgid ""
|
306 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
307 |
"error, try this solution:"
|
@@ -313,11 +314,11 @@ msgstr ""
|
|
313 |
msgid "Library conflicts between WordPress plugins"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
317 |
msgid "Plugin authorization succeeded."
|
318 |
msgstr "プラグインの認可が成功しました。"
|
319 |
|
320 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
321 |
msgid ""
|
322 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
323 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
@@ -326,11 +327,11 @@ msgstr ""
|
|
326 |
"りません</strong>。アクセスコードを取得するためには赤いリンクを使用して、再度"
|
327 |
"実行してください。"
|
328 |
|
329 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
330 |
msgid "Cleared Cache."
|
331 |
msgstr "キャッシュをクリアしました。"
|
332 |
|
333 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
334 |
msgid "Token Reseted and Revoked."
|
335 |
msgstr "トークンをリセットし失効させました。"
|
336 |
|
@@ -338,23 +339,23 @@ msgstr "トークンをリセットし失効させました。"
|
|
338 |
msgid "All errors reseted."
|
339 |
msgstr "全てのエラーをリセットしました。"
|
340 |
|
341 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
342 |
msgid "All other domains/properties were removed."
|
343 |
msgstr "全ての他のドメイン/プロパティが削除されました。"
|
344 |
|
345 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
346 |
msgid "Google Analytics Settings"
|
347 |
msgstr "Google アナリティクスの設定"
|
348 |
|
349 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
350 |
msgid "Use the red link (see below) to generate and get your access code!"
|
351 |
msgstr "アクセスコードを取得するには、赤リンク(下記参照)を使用してください!"
|
352 |
|
353 |
-
#: .././admin/settings.php:
|
354 |
msgid "Plugin Authorization"
|
355 |
msgstr "プラグインを認可"
|
356 |
|
357 |
-
#: .././admin/settings.php:
|
358 |
#, php-format
|
359 |
msgid ""
|
360 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -364,160 +365,160 @@ msgstr ""
|
|
364 |
"プラグインを認可する前に%1$sを視聴し、%2$sを一読ください。 このプラグインを利"
|
365 |
"用するにはGoogle アナリティクスのアカウントの適切な設定が必要です。"
|
366 |
|
367 |
-
#: .././admin/settings.php:
|
368 |
msgid "video"
|
369 |
msgstr "動画"
|
370 |
|
371 |
-
#: .././admin/settings.php:
|
372 |
msgid "tutorial"
|
373 |
msgstr "チュートリアル"
|
374 |
|
375 |
-
#: .././admin/settings.php:
|
376 |
msgid "use your own API Project credentials"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: .././admin/settings.php:
|
380 |
msgid "API Key:"
|
381 |
msgstr "API キー:"
|
382 |
|
383 |
-
#: .././admin/settings.php:
|
384 |
msgid "Client ID:"
|
385 |
msgstr "クライアント ID:"
|
386 |
|
387 |
-
#: .././admin/settings.php:
|
388 |
msgid "Client Secret:"
|
389 |
msgstr "クライアント Secret:"
|
390 |
|
391 |
-
#: .././admin/settings.php:
|
392 |
msgid "Clear Authorization"
|
393 |
msgstr "認可のクリア"
|
394 |
|
395 |
-
#: .././admin/settings.php:
|
396 |
-
#: .././admin/settings.php:
|
397 |
msgid "Clear Cache"
|
398 |
msgstr "キャッシュを消去"
|
399 |
|
400 |
-
#: .././admin/settings.php:
|
401 |
msgid "Reset Errors"
|
402 |
msgstr "エラーをリセット"
|
403 |
|
404 |
-
#: .././admin/settings.php:
|
405 |
msgid "General Settings"
|
406 |
msgstr "一般設定"
|
407 |
|
408 |
-
#: .././admin/settings.php:
|
409 |
msgid "Select View:"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: .././admin/settings.php:
|
413 |
msgid "Property not found"
|
414 |
msgstr "プロパティが見つかりません"
|
415 |
|
416 |
-
#: .././admin/settings.php:
|
417 |
msgid "Lock Selection"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: .././admin/settings.php:
|
421 |
msgid "Theme Color:"
|
422 |
msgstr "テーマカラー:"
|
423 |
|
424 |
-
#: .././admin/settings.php:
|
425 |
msgid "Automatic Updates"
|
426 |
msgstr "自動アップデート"
|
427 |
|
428 |
-
#: .././admin/settings.php:
|
429 |
msgid ""
|
430 |
"automatic updates for minor versions (security and maintenance releases only)"
|
431 |
msgstr ""
|
432 |
"マイナーバージョンの自動アップデート(セキュリティ&メンテナンスリリースのみ)"
|
433 |
|
434 |
-
#: .././admin/settings.php:
|
435 |
#: .././admin/widgets.php:32
|
436 |
msgid "Authorize Plugin"
|
437 |
msgstr "プラグインを認可"
|
438 |
|
439 |
-
#: .././admin/settings.php:
|
440 |
msgid "Properties refreshed."
|
441 |
msgstr "プロパティを更新しました。"
|
442 |
|
443 |
-
#: .././admin/settings.php:
|
444 |
msgid "Network Setup"
|
445 |
msgstr "ネットワーク設定"
|
446 |
|
447 |
-
#: .././admin/settings.php:
|
448 |
msgid "use a single Google Analytics account for the entire network"
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: .././admin/settings.php:
|
452 |
msgid "Refresh Properties"
|
453 |
msgstr "プロパティを最新の情報に更新"
|
454 |
|
455 |
-
#: .././admin/settings.php:
|
456 |
msgid "Properties/Views Settings"
|
457 |
msgstr "プロパティ/ビューの設定"
|
458 |
|
459 |
-
#: .././admin/settings.php:
|
460 |
msgid "exclude Super Admin tracking for the entire network"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: .././admin/settings.php:
|
464 |
msgid "Setup Tutorial & Demo"
|
465 |
msgstr "セットアップ:チュートリアル&デモ"
|
466 |
|
467 |
-
#: .././admin/settings.php:
|
468 |
msgid "Follow & Review"
|
469 |
msgstr ""
|
470 |
|
471 |
-
#: .././admin/settings.php:
|
472 |
#, php-format
|
473 |
msgid "Your feedback and review are both important, %s!"
|
474 |
msgstr "フィードバックやレビューはどちらも大切です。%sしてください!"
|
475 |
|
476 |
-
#: .././admin/settings.php:
|
477 |
msgid "rate this plugin"
|
478 |
msgstr "このプラグインを評価"
|
479 |
|
480 |
-
#: .././admin/settings.php:
|
481 |
msgid "Further Reading"
|
482 |
msgstr "参考文献"
|
483 |
|
484 |
-
#: .././admin/settings.php:
|
485 |
#, php-format
|
486 |
msgid "%s by moving your website to HTTPS/SSL."
|
487 |
msgstr "ウェブサイトをHTTPS/SSLに移行し%s。"
|
488 |
|
489 |
-
#: .././admin/settings.php:
|
490 |
msgid "Improve search rankings"
|
491 |
msgstr "検索ランキングを向上させる"
|
492 |
|
493 |
-
#: .././admin/settings.php:
|
494 |
#, php-format
|
495 |
msgid "Other %s written by the same author"
|
496 |
msgstr "同じ作者の他の%s"
|
497 |
|
498 |
-
#: .././admin/settings.php:
|
499 |
msgid "WordPress Plugins"
|
500 |
msgstr "WordPressのプラグイン"
|
501 |
|
502 |
-
#: .././admin/settings.php:
|
503 |
msgid "Other Services"
|
504 |
msgstr "その他のサービス"
|
505 |
|
506 |
-
#: .././admin/settings.php:
|
507 |
#, php-format
|
508 |
msgid "Speed up your website and plug into a whole %s"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: .././admin/settings.php:
|
512 |
msgid "new level of site speed"
|
513 |
msgstr "新しいレベルのサイト速度"
|
514 |
|
515 |
-
#: .././admin/settings.php:
|
516 |
#, php-format
|
517 |
msgid "%s service with users tracking at IP level."
|
518 |
msgstr "IPレベルでのユーザートラッキングのできる%s。"
|
519 |
|
520 |
-
#: .././admin/settings.php:
|
521 |
msgid "Web Analytics"
|
522 |
msgstr "ウェブ解析"
|
523 |
|
@@ -537,18 +538,18 @@ msgstr "フロントエンド設定"
|
|
537 |
msgid "Tracking Code"
|
538 |
msgstr "トラッキングコード"
|
539 |
|
540 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
541 |
msgid "Today"
|
542 |
msgstr "今日"
|
543 |
|
544 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
545 |
msgid "Yesterday"
|
546 |
msgstr "昨日"
|
547 |
|
548 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
549 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
550 |
-
#: .././admin/widgets.php:
|
551 |
-
#: .././admin/widgets.php:
|
552 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
553 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
554 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -557,20 +558,19 @@ msgstr "昨日"
|
|
557 |
msgid "Last %d Days"
|
558 |
msgstr "%d日間"
|
559 |
|
560 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
561 |
-
#: .././admin/widgets.php:
|
562 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
563 |
#, php-format
|
564 |
msgid "%s Year"
|
565 |
msgid_plural "%s Years"
|
566 |
msgstr[0] ""
|
567 |
msgstr[1] ""
|
568 |
|
569 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
570 |
msgid "One"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
574 |
msgid "Three"
|
575 |
msgstr ""
|
576 |
|
@@ -579,88 +579,86 @@ msgstr ""
|
|
579 |
msgid "Unique Views"
|
580 |
msgstr "ユニークPV"
|
581 |
|
582 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
583 |
-
#: .././admin/widgets.php:
|
584 |
-
#: .././
|
585 |
msgid "Users"
|
586 |
msgstr "ユーザー"
|
587 |
|
588 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
589 |
msgid "Organic"
|
590 |
msgstr "オーガニック検索"
|
591 |
|
592 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
593 |
-
#: .././admin/widgets.php:
|
594 |
-
#: .././
|
595 |
msgid "Page Views"
|
596 |
msgstr "PV"
|
597 |
|
598 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
599 |
-
#: .././admin/widgets.php:
|
600 |
-
#: .././
|
601 |
msgid "Bounce Rate"
|
602 |
msgstr "直帰率"
|
603 |
|
604 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
605 |
msgid "Location"
|
606 |
msgstr "地域"
|
607 |
|
608 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
609 |
-
#: .././tools/gapi.php:
|
610 |
msgid "Referrers"
|
611 |
msgstr "リファラー"
|
612 |
|
613 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
614 |
-
#: .././tools/gapi.php:
|
615 |
msgid "Searches"
|
616 |
msgstr "検索結果"
|
617 |
|
618 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
619 |
msgid "Traffic Details"
|
620 |
msgstr "トラフィック詳細"
|
621 |
|
622 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
623 |
-
#: .././admin/widgets.php:
|
624 |
-
#: .././admin/widgets.php:
|
625 |
msgid "A JavaScript Error is blocking plugin resources!"
|
626 |
msgstr ""
|
627 |
"JavaScriptのエラーが、プラグインのリソースをブロックしている可能性がありま"
|
628 |
"す。"
|
629 |
|
630 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
631 |
msgid "Traffic Mediums"
|
632 |
msgstr "トラフィック平均"
|
633 |
|
634 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
635 |
msgid "Visitor Type"
|
636 |
msgstr "訪問者"
|
637 |
|
638 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
639 |
msgid "Social Networks"
|
640 |
msgstr "SNS"
|
641 |
|
642 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
643 |
msgid "Search Engines"
|
644 |
msgstr "検索エンジン"
|
645 |
|
646 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
647 |
-
#: .././front/setup.php:101
|
648 |
msgid "Organic Search"
|
649 |
msgstr "オーガニック検索"
|
650 |
|
651 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
652 |
-
#: .././front/setup.php:102
|
653 |
msgid "Pages/Session"
|
654 |
msgstr "ページ/セッション"
|
655 |
|
656 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
657 |
-
#: .././admin/widgets.php:
|
658 |
-
#: .././admin/widgets.php:
|
659 |
-
#: .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
665 |
msgstr ""
|
666 |
"応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
|
@@ -669,12 +667,12 @@ msgstr ""
|
|
669 |
msgid "Not enough data collected"
|
670 |
msgstr "充分なデータがありません"
|
671 |
|
672 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
673 |
-
#: .././admin/widgets.php:
|
674 |
-
#: .././admin/widgets.php:
|
675 |
-
#: .././admin/widgets.php:
|
676 |
-
#: .././admin/widgets.php:
|
677 |
-
#: .././admin/widgets.php:
|
678 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
679 |
msgid "This report is unavailable"
|
680 |
msgstr "このレポートは使用できません。"
|
@@ -683,25 +681,29 @@ msgstr "このレポートは使用できません。"
|
|
683 |
msgid "report generated by"
|
684 |
msgstr "report generated by"
|
685 |
|
686 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
687 |
msgid "Settings"
|
688 |
msgstr "設定"
|
689 |
|
690 |
-
#: .././admin/setup.php:
|
691 |
#, php-format
|
692 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: .././admin/setup.php:
|
696 |
#, php-format
|
697 |
msgid "For details, check out %1$s and %2$s."
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: .././admin/setup.php:
|
701 |
msgid "the documentation page"
|
702 |
msgstr ""
|
703 |
|
704 |
-
#: .././admin/setup.php:
|
705 |
msgid "the plugin's settings page"
|
706 |
msgstr ""
|
707 |
|
@@ -709,10 +711,6 @@ msgstr ""
|
|
709 |
msgid "Google Analytics Dashboard"
|
710 |
msgstr "Google アナリティクス ダッシュボード"
|
711 |
|
712 |
-
#: .././admin/widgets.php:32
|
713 |
-
msgid "This plugin needs an authorization:"
|
714 |
-
msgstr "このプラグインは認可する必要があります:"
|
715 |
-
|
716 |
#: .././admin/widgets.php:66
|
717 |
msgid "Something went wrong while retrieving profiles list."
|
718 |
msgstr "プロファイルリストの取得中に問題が発生しました。"
|
@@ -742,53 +740,53 @@ msgstr ""
|
|
742 |
msgid "Find out more!"
|
743 |
msgstr "詳細はこちら"
|
744 |
|
745 |
-
#: .././admin/widgets.php:
|
746 |
msgid "Real-Time"
|
747 |
msgstr "リアルタイム"
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
751 |
-
#: .././tools/gapi.php:
|
752 |
-
#: .././tools/gapi.php:
|
753 |
msgid "Sessions"
|
754 |
msgstr "セッション"
|
755 |
|
756 |
-
#: .././admin/widgets.php:
|
757 |
msgid "Pages"
|
758 |
msgstr "ページ"
|
759 |
|
760 |
-
#: .././admin/widgets.php:
|
761 |
msgid "REFERRAL"
|
762 |
msgstr "リファラー"
|
763 |
|
764 |
-
#: .././admin/widgets.php:
|
765 |
msgid "ORGANIC"
|
766 |
msgstr "キーワード検索"
|
767 |
|
768 |
-
#: .././admin/widgets.php:
|
769 |
-
#: .././admin/widgets.php:
|
770 |
msgid "SOCIAL"
|
771 |
msgstr "ソーシャル"
|
772 |
|
773 |
-
#: .././admin/widgets.php:
|
774 |
-
#: .././admin/widgets.php:
|
775 |
msgid "CAMPAIGN"
|
776 |
msgstr "キャンペーン"
|
777 |
|
778 |
-
#: .././admin/widgets.php:
|
779 |
-
#: .././admin/widgets.php:
|
780 |
msgid "DIRECT"
|
781 |
msgstr "直リンク"
|
782 |
|
783 |
-
#: .././admin/widgets.php:
|
784 |
msgid "NEW"
|
785 |
msgstr "NEW"
|
786 |
|
787 |
-
#: .././admin/widgets.php:
|
788 |
msgid "REFERRALS"
|
789 |
msgstr "リファラー"
|
790 |
|
791 |
-
#: .././admin/widgets.php:
|
792 |
msgid "KEYWORDS"
|
793 |
msgstr "キーワード"
|
794 |
|
@@ -796,10 +794,6 @@ msgstr "キーワード"
|
|
796 |
msgid "Will display your google analytics stats in a widget"
|
797 |
msgstr "ウィジェットでのGoogleアナリティクスの統計を表示します"
|
798 |
|
799 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
800 |
-
msgid "trend"
|
801 |
-
msgstr "トレンド"
|
802 |
-
|
803 |
#: .././front/widgets.php:123
|
804 |
msgid "Period:"
|
805 |
msgstr "期間:"
|
@@ -848,7 +842,7 @@ msgstr "統計:"
|
|
848 |
msgid "Give credits:"
|
849 |
msgstr "クレジットを表示:"
|
850 |
|
851 |
-
#: .././gadwp.php:
|
852 |
msgid "This is not allowed, read the documentation!"
|
853 |
msgstr ""
|
854 |
|
@@ -872,42 +866,45 @@ msgstr "アクセスコード:"
|
|
872 |
msgid "Save Access Code"
|
873 |
msgstr "アクセスコードを保存"
|
874 |
|
875 |
-
#: .././tools/gapi.php:
|
876 |
msgid "Organic Searches"
|
877 |
msgstr ""
|
878 |
|
879 |
-
#: .././tools/gapi.php:
|
880 |
msgid "Unique Page Views"
|
881 |
msgstr "ユニークPV"
|
882 |
|
883 |
-
#: .././tools/gapi.php:
|
884 |
msgid "Hour"
|
885 |
msgstr "時"
|
886 |
|
887 |
-
#: .././tools/gapi.php:
|
888 |
msgid "Date"
|
889 |
msgstr "日"
|
890 |
|
891 |
-
#: .././tools/gapi.php:
|
892 |
msgid "Views"
|
893 |
msgstr "PV"
|
894 |
|
895 |
-
#: .././tools/gapi.php:
|
896 |
msgid "Countries"
|
897 |
msgstr "各国"
|
898 |
|
899 |
-
#: .././tools/gapi.php:
|
900 |
msgid "Cities from"
|
901 |
msgstr "都市"
|
902 |
|
903 |
-
#: .././tools/gapi.php:
|
904 |
msgid "Channels"
|
905 |
msgstr "経路"
|
906 |
|
907 |
-
#: .././tools/gapi.php:
|
908 |
msgid "Type"
|
909 |
msgstr "タイプ"
|
910 |
|
|
|
|
|
|
|
911 |
#~ msgid "Last 7 Days"
|
912 |
#~ msgstr "1週間"
|
913 |
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: heysister721 <tk197709141545@gmail.com>\n"
|
10 |
"Language: ja\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
+
#: .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr "設定を保存しました。"
|
34 |
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
40 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
41 |
+
#: .././admin/settings.php:1082
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "修正しますか?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "問題が発生しました。%2$sするか、%1$sを確認してください。"
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "エラー&デバッグ"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
62 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "プラグインを認可"
|
65 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
84 |
+
#: .././admin/settings.php:1234
|
85 |
msgid "Save Changes"
|
86 |
msgstr "変更を保存"
|
87 |
|
140 |
msgstr "カスタム定義"
|
141 |
|
142 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
143 |
+
#: .././admin/settings.php:1217
|
144 |
msgid "Exclude Tracking"
|
145 |
msgstr "追跡を除外する"
|
146 |
|
164 |
msgid "Enabled"
|
165 |
msgstr "有効"
|
166 |
|
167 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
168 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
169 |
#: .././admin/widgets.php:61
|
170 |
msgid "View Name:"
|
171 |
msgstr "ビュー名:"
|
172 |
|
173 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
174 |
msgid "Tracking ID:"
|
175 |
msgstr "トラッキング ID:"
|
176 |
|
177 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
178 |
msgid "Default URL:"
|
179 |
msgstr "デフォルトのURL:"
|
180 |
|
181 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
182 |
msgid "Time Zone:"
|
183 |
msgstr "タイムゾーン:"
|
184 |
|
302 |
msgid "Plugin Configuration"
|
303 |
msgstr "プラグインの設定"
|
304 |
|
305 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
306 |
msgid ""
|
307 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
308 |
"error, try this solution:"
|
314 |
msgid "Library conflicts between WordPress plugins"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
318 |
msgid "Plugin authorization succeeded."
|
319 |
msgstr "プラグインの認可が成功しました。"
|
320 |
|
321 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
322 |
msgid ""
|
323 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
324 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
327 |
"りません</strong>。アクセスコードを取得するためには赤いリンクを使用して、再度"
|
328 |
"実行してください。"
|
329 |
|
330 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
331 |
msgid "Cleared Cache."
|
332 |
msgstr "キャッシュをクリアしました。"
|
333 |
|
334 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
335 |
msgid "Token Reseted and Revoked."
|
336 |
msgstr "トークンをリセットし失効させました。"
|
337 |
|
339 |
msgid "All errors reseted."
|
340 |
msgstr "全てのエラーをリセットしました。"
|
341 |
|
342 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
343 |
msgid "All other domains/properties were removed."
|
344 |
msgstr "全ての他のドメイン/プロパティが削除されました。"
|
345 |
|
346 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
347 |
msgid "Google Analytics Settings"
|
348 |
msgstr "Google アナリティクスの設定"
|
349 |
|
350 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
351 |
msgid "Use the red link (see below) to generate and get your access code!"
|
352 |
msgstr "アクセスコードを取得するには、赤リンク(下記参照)を使用してください!"
|
353 |
|
354 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
355 |
msgid "Plugin Authorization"
|
356 |
msgstr "プラグインを認可"
|
357 |
|
358 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
359 |
#, php-format
|
360 |
msgid ""
|
361 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
365 |
"プラグインを認可する前に%1$sを視聴し、%2$sを一読ください。 このプラグインを利"
|
366 |
"用するにはGoogle アナリティクスのアカウントの適切な設定が必要です。"
|
367 |
|
368 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
369 |
msgid "video"
|
370 |
msgstr "動画"
|
371 |
|
372 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
373 |
msgid "tutorial"
|
374 |
msgstr "チュートリアル"
|
375 |
|
376 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
377 |
msgid "use your own API Project credentials"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
381 |
msgid "API Key:"
|
382 |
msgstr "API キー:"
|
383 |
|
384 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
385 |
msgid "Client ID:"
|
386 |
msgstr "クライアント ID:"
|
387 |
|
388 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
389 |
msgid "Client Secret:"
|
390 |
msgstr "クライアント Secret:"
|
391 |
|
392 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
393 |
msgid "Clear Authorization"
|
394 |
msgstr "認可のクリア"
|
395 |
|
396 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
397 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
398 |
msgid "Clear Cache"
|
399 |
msgstr "キャッシュを消去"
|
400 |
|
401 |
+
#: .././admin/settings.php:873
|
402 |
msgid "Reset Errors"
|
403 |
msgstr "エラーをリセット"
|
404 |
|
405 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
406 |
msgid "General Settings"
|
407 |
msgstr "一般設定"
|
408 |
|
409 |
+
#: .././admin/settings.php:882
|
410 |
msgid "Select View:"
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
414 |
msgid "Property not found"
|
415 |
msgstr "プロパティが見つかりません"
|
416 |
|
417 |
+
#: .././admin/settings.php:899
|
418 |
msgid "Lock Selection"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: .././admin/settings.php:918
|
422 |
msgid "Theme Color:"
|
423 |
msgstr "テーマカラー:"
|
424 |
|
425 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
426 |
msgid "Automatic Updates"
|
427 |
msgstr "自動アップデート"
|
428 |
|
429 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
430 |
msgid ""
|
431 |
"automatic updates for minor versions (security and maintenance releases only)"
|
432 |
msgstr ""
|
433 |
"マイナーバージョンの自動アップデート(セキュリティ&メンテナンスリリースのみ)"
|
434 |
|
435 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
436 |
#: .././admin/widgets.php:32
|
437 |
msgid "Authorize Plugin"
|
438 |
msgstr "プラグインを認可"
|
439 |
|
440 |
+
#: .././admin/settings.php:1027
|
441 |
msgid "Properties refreshed."
|
442 |
msgstr "プロパティを更新しました。"
|
443 |
|
444 |
+
#: .././admin/settings.php:1112
|
445 |
msgid "Network Setup"
|
446 |
msgstr "ネットワーク設定"
|
447 |
|
448 |
+
#: .././admin/settings.php:1122
|
449 |
msgid "use a single Google Analytics account for the entire network"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: .././admin/settings.php:1167
|
453 |
msgid "Refresh Properties"
|
454 |
msgstr "プロパティを最新の情報に更新"
|
455 |
|
456 |
+
#: .././admin/settings.php:1173
|
457 |
msgid "Properties/Views Settings"
|
458 |
msgstr "プロパティ/ビューの設定"
|
459 |
|
460 |
+
#: .././admin/settings.php:1227
|
461 |
msgid "exclude Super Admin tracking for the entire network"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: .././admin/settings.php:1275
|
465 |
msgid "Setup Tutorial & Demo"
|
466 |
msgstr "セットアップ:チュートリアル&デモ"
|
467 |
|
468 |
+
#: .././admin/settings.php:1283
|
469 |
msgid "Follow & Review"
|
470 |
msgstr ""
|
471 |
|
472 |
+
#: .././admin/settings.php:1309
|
473 |
#, php-format
|
474 |
msgid "Your feedback and review are both important, %s!"
|
475 |
msgstr "フィードバックやレビューはどちらも大切です。%sしてください!"
|
476 |
|
477 |
+
#: .././admin/settings.php:1309
|
478 |
msgid "rate this plugin"
|
479 |
msgstr "このプラグインを評価"
|
480 |
|
481 |
+
#: .././admin/settings.php:1315
|
482 |
msgid "Further Reading"
|
483 |
msgstr "参考文献"
|
484 |
|
485 |
+
#: .././admin/settings.php:1322
|
486 |
#, php-format
|
487 |
msgid "%s by moving your website to HTTPS/SSL."
|
488 |
msgstr "ウェブサイトをHTTPS/SSLに移行し%s。"
|
489 |
|
490 |
+
#: .././admin/settings.php:1322
|
491 |
msgid "Improve search rankings"
|
492 |
msgstr "検索ランキングを向上させる"
|
493 |
|
494 |
+
#: .././admin/settings.php:1329
|
495 |
#, php-format
|
496 |
msgid "Other %s written by the same author"
|
497 |
msgstr "同じ作者の他の%s"
|
498 |
|
499 |
+
#: .././admin/settings.php:1329
|
500 |
msgid "WordPress Plugins"
|
501 |
msgstr "WordPressのプラグイン"
|
502 |
|
503 |
+
#: .././admin/settings.php:1335
|
504 |
msgid "Other Services"
|
505 |
msgstr "その他のサービス"
|
506 |
|
507 |
+
#: .././admin/settings.php:1342
|
508 |
#, php-format
|
509 |
msgid "Speed up your website and plug into a whole %s"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: .././admin/settings.php:1342
|
513 |
msgid "new level of site speed"
|
514 |
msgstr "新しいレベルのサイト速度"
|
515 |
|
516 |
+
#: .././admin/settings.php:1349
|
517 |
#, php-format
|
518 |
msgid "%s service with users tracking at IP level."
|
519 |
msgstr "IPレベルでのユーザートラッキングのできる%s。"
|
520 |
|
521 |
+
#: .././admin/settings.php:1349
|
522 |
msgid "Web Analytics"
|
523 |
msgstr "ウェブ解析"
|
524 |
|
538 |
msgid "Tracking Code"
|
539 |
msgstr "トラッキングコード"
|
540 |
|
541 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
542 |
msgid "Today"
|
543 |
msgstr "今日"
|
544 |
|
545 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
546 |
msgid "Yesterday"
|
547 |
msgstr "昨日"
|
548 |
|
549 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
550 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
551 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
552 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
553 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
554 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
555 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
558 |
msgid "Last %d Days"
|
559 |
msgstr "%d日間"
|
560 |
|
561 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
562 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
563 |
#, php-format
|
564 |
msgid "%s Year"
|
565 |
msgid_plural "%s Years"
|
566 |
msgstr[0] ""
|
567 |
msgstr[1] ""
|
568 |
|
569 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
570 |
msgid "One"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
574 |
msgid "Three"
|
575 |
msgstr ""
|
576 |
|
579 |
msgid "Unique Views"
|
580 |
msgstr "ユニークPV"
|
581 |
|
582 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
583 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
584 |
+
#: .././tools/gapi.php:357
|
585 |
msgid "Users"
|
586 |
msgstr "ユーザー"
|
587 |
|
588 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
589 |
msgid "Organic"
|
590 |
msgstr "オーガニック検索"
|
591 |
|
592 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
593 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
594 |
+
#: .././tools/gapi.php:360
|
595 |
msgid "Page Views"
|
596 |
msgstr "PV"
|
597 |
|
598 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
599 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
600 |
+
#: .././tools/gapi.php:363
|
601 |
msgid "Bounce Rate"
|
602 |
msgstr "直帰率"
|
603 |
|
604 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
605 |
msgid "Location"
|
606 |
msgstr "地域"
|
607 |
|
608 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
609 |
+
#: .././tools/gapi.php:502
|
610 |
msgid "Referrers"
|
611 |
msgstr "リファラー"
|
612 |
|
613 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
614 |
+
#: .././tools/gapi.php:535
|
615 |
msgid "Searches"
|
616 |
msgstr "検索結果"
|
617 |
|
618 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
619 |
msgid "Traffic Details"
|
620 |
msgstr "トラフィック詳細"
|
621 |
|
622 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
623 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
624 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
625 |
msgid "A JavaScript Error is blocking plugin resources!"
|
626 |
msgstr ""
|
627 |
"JavaScriptのエラーが、プラグインのリソースをブロックしている可能性がありま"
|
628 |
"す。"
|
629 |
|
630 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
631 |
msgid "Traffic Mediums"
|
632 |
msgstr "トラフィック平均"
|
633 |
|
634 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
635 |
msgid "Visitor Type"
|
636 |
msgstr "訪問者"
|
637 |
|
638 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
639 |
msgid "Social Networks"
|
640 |
msgstr "SNS"
|
641 |
|
642 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
643 |
msgid "Search Engines"
|
644 |
msgstr "検索エンジン"
|
645 |
|
646 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
647 |
msgid "Organic Search"
|
648 |
msgstr "オーガニック検索"
|
649 |
|
650 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
651 |
msgid "Pages/Session"
|
652 |
msgstr "ページ/セッション"
|
653 |
|
654 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
655 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
656 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
657 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
658 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
659 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
660 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
661 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
662 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
663 |
msgstr ""
|
664 |
"応答がありません。JavaScriptコンソールでの詳細(F12)をご確認ください。"
|
667 |
msgid "Not enough data collected"
|
668 |
msgstr "充分なデータがありません"
|
669 |
|
670 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
671 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
672 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
673 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
674 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
675 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
676 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
677 |
msgid "This report is unavailable"
|
678 |
msgstr "このレポートは使用できません。"
|
681 |
msgid "report generated by"
|
682 |
msgstr "report generated by"
|
683 |
|
684 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
685 |
+
msgid "This plugin needs an authorization:"
|
686 |
+
msgstr "このプラグインは認可する必要があります:"
|
687 |
+
|
688 |
+
#: .././admin/setup.php:227
|
689 |
msgid "Settings"
|
690 |
msgstr "設定"
|
691 |
|
692 |
+
#: .././admin/setup.php:239
|
693 |
#, php-format
|
694 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: .././admin/setup.php:239
|
698 |
#, php-format
|
699 |
msgid "For details, check out %1$s and %2$s."
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: .././admin/setup.php:239
|
703 |
msgid "the documentation page"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: .././admin/setup.php:239
|
707 |
msgid "the plugin's settings page"
|
708 |
msgstr ""
|
709 |
|
711 |
msgid "Google Analytics Dashboard"
|
712 |
msgstr "Google アナリティクス ダッシュボード"
|
713 |
|
|
|
|
|
|
|
|
|
714 |
#: .././admin/widgets.php:66
|
715 |
msgid "Something went wrong while retrieving profiles list."
|
716 |
msgstr "プロファイルリストの取得中に問題が発生しました。"
|
740 |
msgid "Find out more!"
|
741 |
msgstr "詳細はこちら"
|
742 |
|
743 |
+
#: .././admin/widgets.php:113
|
744 |
msgid "Real-Time"
|
745 |
msgstr "リアルタイム"
|
746 |
|
747 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
748 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
749 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
750 |
+
#: .././tools/gapi.php:694
|
751 |
msgid "Sessions"
|
752 |
msgstr "セッション"
|
753 |
|
754 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
755 |
msgid "Pages"
|
756 |
msgstr "ページ"
|
757 |
|
758 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
759 |
msgid "REFERRAL"
|
760 |
msgstr "リファラー"
|
761 |
|
762 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
763 |
msgid "ORGANIC"
|
764 |
msgstr "キーワード検索"
|
765 |
|
766 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
767 |
+
#: .././admin/widgets.php:477
|
768 |
msgid "SOCIAL"
|
769 |
msgstr "ソーシャル"
|
770 |
|
771 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
772 |
+
#: .././admin/widgets.php:478
|
773 |
msgid "CAMPAIGN"
|
774 |
msgstr "キャンペーン"
|
775 |
|
776 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
777 |
+
#: .././admin/widgets.php:481
|
778 |
msgid "DIRECT"
|
779 |
msgstr "直リンク"
|
780 |
|
781 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
782 |
msgid "NEW"
|
783 |
msgstr "NEW"
|
784 |
|
785 |
+
#: .././admin/widgets.php:355
|
786 |
msgid "REFERRALS"
|
787 |
msgstr "リファラー"
|
788 |
|
789 |
+
#: .././admin/widgets.php:358
|
790 |
msgid "KEYWORDS"
|
791 |
msgstr "キーワード"
|
792 |
|
794 |
msgid "Will display your google analytics stats in a widget"
|
795 |
msgstr "ウィジェットでのGoogleアナリティクスの統計を表示します"
|
796 |
|
|
|
|
|
|
|
|
|
797 |
#: .././front/widgets.php:123
|
798 |
msgid "Period:"
|
799 |
msgstr "期間:"
|
842 |
msgid "Give credits:"
|
843 |
msgstr "クレジットを表示:"
|
844 |
|
845 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
846 |
msgid "This is not allowed, read the documentation!"
|
847 |
msgstr ""
|
848 |
|
866 |
msgid "Save Access Code"
|
867 |
msgstr "アクセスコードを保存"
|
868 |
|
869 |
+
#: .././tools/gapi.php:366
|
870 |
msgid "Organic Searches"
|
871 |
msgstr ""
|
872 |
|
873 |
+
#: .././tools/gapi.php:369
|
874 |
msgid "Unique Page Views"
|
875 |
msgstr "ユニークPV"
|
876 |
|
877 |
+
#: .././tools/gapi.php:377
|
878 |
msgid "Hour"
|
879 |
msgstr "時"
|
880 |
|
881 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
882 |
msgid "Date"
|
883 |
msgstr "日"
|
884 |
|
885 |
+
#: .././tools/gapi.php:470
|
886 |
msgid "Views"
|
887 |
msgstr "PV"
|
888 |
|
889 |
+
#: .././tools/gapi.php:556
|
890 |
msgid "Countries"
|
891 |
msgstr "各国"
|
892 |
|
893 |
+
#: .././tools/gapi.php:566
|
894 |
msgid "Cities from"
|
895 |
msgstr "都市"
|
896 |
|
897 |
+
#: .././tools/gapi.php:619
|
898 |
msgid "Channels"
|
899 |
msgstr "経路"
|
900 |
|
901 |
+
#: .././tools/gapi.php:665
|
902 |
msgid "Type"
|
903 |
msgstr "タイプ"
|
904 |
|
905 |
+
#~ msgid "trend"
|
906 |
+
#~ msgstr "トレンド"
|
907 |
+
|
908 |
#~ msgid "Last 7 Days"
|
909 |
#~ msgstr "1週間"
|
910 |
|
languages/{ga-dash-nl_NL.mo → google-analytics-dashboard-for-wp-nl_NL.mo}
RENAMED
File without changes
|
languages/{ga-dash-nl_NL.po → google-analytics-dashboard-for-wp-nl_NL.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Willem-Jan Meerkerk <info@bs-webdevelopment.nl>\n"
|
10 |
"Language: nl_NL\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -28,7 +28,7 @@ msgstr "Analytics"
|
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
-
#: .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Instellingen opgeslagen."
|
34 |
|
@@ -36,29 +36,30 @@ msgstr "Instellingen opgeslagen."
|
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
-
#: .././admin/settings.php:
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "Cheating Huh?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Er ging iets mis, bekijk %1$s of %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Fouten & debug"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
62 |
msgid "authorize the plugin"
|
63 |
msgstr "autoriseer de plugin"
|
64 |
|
@@ -79,8 +80,8 @@ msgid "enable web page reports on frontend"
|
|
79 |
msgstr ""
|
80 |
|
81 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
82 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
83 |
-
#: .././admin/settings.php:
|
84 |
msgid "Save Changes"
|
85 |
msgstr "Wijzigingen opslaan"
|
86 |
|
@@ -141,7 +142,7 @@ msgid "Custom Definitions"
|
|
141 |
msgstr "Aangepaste definities"
|
142 |
|
143 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
144 |
-
#: .././admin/settings.php:
|
145 |
msgid "Exclude Tracking"
|
146 |
msgstr "Tracking uitsluiten"
|
147 |
|
@@ -165,21 +166,21 @@ msgstr "Uitgeschakeld"
|
|
165 |
msgid "Enabled"
|
166 |
msgstr "Ingeschakeld"
|
167 |
|
168 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
169 |
-
#: .././admin/settings.php:
|
170 |
#: .././admin/widgets.php:61
|
171 |
msgid "View Name:"
|
172 |
msgstr "Weergavenaam:"
|
173 |
|
174 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
175 |
msgid "Tracking ID:"
|
176 |
msgstr "Tracking ID:"
|
177 |
|
178 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
179 |
msgid "Default URL:"
|
180 |
msgstr "Standaard URL:"
|
181 |
|
182 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
183 |
msgid "Time Zone:"
|
184 |
msgstr "Tijdzone:"
|
185 |
|
@@ -303,7 +304,7 @@ msgstr "Fout details"
|
|
303 |
msgid "Plugin Configuration"
|
304 |
msgstr "Plugin configuratie"
|
305 |
|
306 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
307 |
msgid ""
|
308 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
309 |
"error, try this solution:"
|
@@ -315,11 +316,11 @@ msgstr ""
|
|
315 |
msgid "Library conflicts between WordPress plugins"
|
316 |
msgstr "Library conflict tussen Wordpress plugins"
|
317 |
|
318 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
319 |
msgid "Plugin authorization succeeded."
|
320 |
msgstr "Plugin autorisatie succesvol ingesteld."
|
321 |
|
322 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
323 |
msgid ""
|
324 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
325 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
@@ -328,11 +329,11 @@ msgstr ""
|
|
328 |
"(UA-XXXXX-X). Probeer opnieuw, gebruik de rode link voor het verkrijgen van "
|
329 |
"de toegangscode."
|
330 |
|
331 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
332 |
msgid "Cleared Cache."
|
333 |
msgstr "Cache leeggemaakt."
|
334 |
|
335 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
336 |
msgid "Token Reseted and Revoked."
|
337 |
msgstr "Token gereset en ingetrokken."
|
338 |
|
@@ -340,25 +341,25 @@ msgstr "Token gereset en ingetrokken."
|
|
340 |
msgid "All errors reseted."
|
341 |
msgstr "Alle fouten gereset."
|
342 |
|
343 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
344 |
msgid "All other domains/properties were removed."
|
345 |
msgstr "Alle andere domeinen/properties zijn verwijderd."
|
346 |
|
347 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
348 |
msgid "Google Analytics Settings"
|
349 |
msgstr "Google Analytics instellingen"
|
350 |
|
351 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
352 |
msgid "Use the red link (see below) to generate and get your access code!"
|
353 |
msgstr ""
|
354 |
"Gebruik de rode link (zie hieronder) voor het genereren en verkrijgen van de "
|
355 |
"toegangscode!"
|
356 |
|
357 |
-
#: .././admin/settings.php:
|
358 |
msgid "Plugin Authorization"
|
359 |
msgstr "Plugin authorisatie"
|
360 |
|
361 |
-
#: .././admin/settings.php:
|
362 |
#, php-format
|
363 |
msgid ""
|
364 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -368,161 +369,161 @@ msgstr ""
|
|
368 |
"Bekijk de %1$s en lees de %2$s voor het instellen van de autorisatie. Deze "
|
369 |
"plugin heeft een goed ingesteld Google Analytics account nodig."
|
370 |
|
371 |
-
#: .././admin/settings.php:
|
372 |
msgid "video"
|
373 |
msgstr "video"
|
374 |
|
375 |
-
#: .././admin/settings.php:
|
376 |
msgid "tutorial"
|
377 |
msgstr "tutorial"
|
378 |
|
379 |
-
#: .././admin/settings.php:
|
380 |
msgid "use your own API Project credentials"
|
381 |
msgstr "gebruik aangepaste API Project credentials"
|
382 |
|
383 |
-
#: .././admin/settings.php:
|
384 |
msgid "API Key:"
|
385 |
msgstr "API Key:"
|
386 |
|
387 |
-
#: .././admin/settings.php:
|
388 |
msgid "Client ID:"
|
389 |
msgstr "Client ID:"
|
390 |
|
391 |
-
#: .././admin/settings.php:
|
392 |
msgid "Client Secret:"
|
393 |
msgstr "Client Secret:"
|
394 |
|
395 |
-
#: .././admin/settings.php:
|
396 |
msgid "Clear Authorization"
|
397 |
msgstr "Autorisatie verwijderen"
|
398 |
|
399 |
-
#: .././admin/settings.php:
|
400 |
-
#: .././admin/settings.php:
|
401 |
msgid "Clear Cache"
|
402 |
msgstr "Cache leegmaken"
|
403 |
|
404 |
-
#: .././admin/settings.php:
|
405 |
msgid "Reset Errors"
|
406 |
msgstr "Fouten resetten"
|
407 |
|
408 |
-
#: .././admin/settings.php:
|
409 |
msgid "General Settings"
|
410 |
msgstr "Algemene instellingen"
|
411 |
|
412 |
-
#: .././admin/settings.php:
|
413 |
msgid "Select View:"
|
414 |
msgstr "Kies weergave:"
|
415 |
|
416 |
-
#: .././admin/settings.php:
|
417 |
msgid "Property not found"
|
418 |
msgstr "Property niet gevonden"
|
419 |
|
420 |
-
#: .././admin/settings.php:
|
421 |
msgid "Lock Selection"
|
422 |
msgstr "Selectie vergrendelen"
|
423 |
|
424 |
-
#: .././admin/settings.php:
|
425 |
msgid "Theme Color:"
|
426 |
msgstr "Thema kleur:"
|
427 |
|
428 |
-
#: .././admin/settings.php:
|
429 |
msgid "Automatic Updates"
|
430 |
msgstr "Automatische updates"
|
431 |
|
432 |
-
#: .././admin/settings.php:
|
433 |
msgid ""
|
434 |
"automatic updates for minor versions (security and maintenance releases only)"
|
435 |
msgstr ""
|
436 |
"automatische updates voor minor versies (alleen beveiliging- en "
|
437 |
"onderhoudreleases)"
|
438 |
|
439 |
-
#: .././admin/settings.php:
|
440 |
#: .././admin/widgets.php:32
|
441 |
msgid "Authorize Plugin"
|
442 |
msgstr "Plugin autoriseren"
|
443 |
|
444 |
-
#: .././admin/settings.php:
|
445 |
msgid "Properties refreshed."
|
446 |
msgstr "Properties zijn vernieuwd."
|
447 |
|
448 |
-
#: .././admin/settings.php:
|
449 |
msgid "Network Setup"
|
450 |
msgstr "Netwerk setup"
|
451 |
|
452 |
-
#: .././admin/settings.php:
|
453 |
msgid "use a single Google Analytics account for the entire network"
|
454 |
msgstr "gebruik één Google Analytics account voor het hele netwerk"
|
455 |
|
456 |
-
#: .././admin/settings.php:
|
457 |
msgid "Refresh Properties"
|
458 |
msgstr "Properties vernieuwen"
|
459 |
|
460 |
-
#: .././admin/settings.php:
|
461 |
msgid "Properties/Views Settings"
|
462 |
msgstr "Properties/weergaven instellingen"
|
463 |
|
464 |
-
#: .././admin/settings.php:
|
465 |
msgid "exclude Super Admin tracking for the entire network"
|
466 |
msgstr "uitsluiten van Super Admin tracking voor het hele netwerk"
|
467 |
|
468 |
-
#: .././admin/settings.php:
|
469 |
msgid "Setup Tutorial & Demo"
|
470 |
msgstr "Setup tutorial & demo"
|
471 |
|
472 |
-
#: .././admin/settings.php:
|
473 |
msgid "Follow & Review"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: .././admin/settings.php:
|
477 |
#, php-format
|
478 |
msgid "Your feedback and review are both important, %s!"
|
479 |
msgstr "Uw feedback en review zijn beide belangrijk, %s!"
|
480 |
|
481 |
-
#: .././admin/settings.php:
|
482 |
msgid "rate this plugin"
|
483 |
msgstr "waardeer deze plugin"
|
484 |
|
485 |
-
#: .././admin/settings.php:
|
486 |
msgid "Further Reading"
|
487 |
msgstr "Meer informatie"
|
488 |
|
489 |
-
#: .././admin/settings.php:
|
490 |
#, php-format
|
491 |
msgid "%s by moving your website to HTTPS/SSL."
|
492 |
msgstr "%s door het verplaatsen van uw website naar HTTPS/SSL."
|
493 |
|
494 |
-
#: .././admin/settings.php:
|
495 |
msgid "Improve search rankings"
|
496 |
msgstr "Verbeteren van zoek-rankings"
|
497 |
|
498 |
-
#: .././admin/settings.php:
|
499 |
#, php-format
|
500 |
msgid "Other %s written by the same author"
|
501 |
msgstr "Andere %s gemaakt door dezelfde auteur"
|
502 |
|
503 |
-
#: .././admin/settings.php:
|
504 |
msgid "WordPress Plugins"
|
505 |
msgstr "Wordpress plugins"
|
506 |
|
507 |
-
#: .././admin/settings.php:
|
508 |
msgid "Other Services"
|
509 |
msgstr "Andere services"
|
510 |
|
511 |
-
#: .././admin/settings.php:
|
512 |
#, php-format
|
513 |
msgid "Speed up your website and plug into a whole %s"
|
514 |
msgstr "Versnel uw website en voeg een %s"
|
515 |
|
516 |
-
#: .././admin/settings.php:
|
517 |
msgid "new level of site speed"
|
518 |
msgstr "nieuw level van snelheid toe"
|
519 |
|
520 |
-
#: .././admin/settings.php:
|
521 |
#, php-format
|
522 |
msgid "%s service with users tracking at IP level."
|
523 |
msgstr "%s service met gebruikers-tracking op IP niveau."
|
524 |
|
525 |
-
#: .././admin/settings.php:
|
526 |
msgid "Web Analytics"
|
527 |
msgstr "Web Analytics"
|
528 |
|
@@ -542,18 +543,18 @@ msgstr "Frontend instellingen"
|
|
542 |
msgid "Tracking Code"
|
543 |
msgstr "Trackingcode"
|
544 |
|
545 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
546 |
msgid "Today"
|
547 |
msgstr "Vandaag"
|
548 |
|
549 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
550 |
msgid "Yesterday"
|
551 |
msgstr "Gisteren"
|
552 |
|
553 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
554 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
555 |
-
#: .././admin/widgets.php:
|
556 |
-
#: .././admin/widgets.php:
|
557 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
558 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
559 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -562,20 +563,19 @@ msgstr "Gisteren"
|
|
562 |
msgid "Last %d Days"
|
563 |
msgstr "Afgelopen %d dagen"
|
564 |
|
565 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
566 |
-
#: .././admin/widgets.php:
|
567 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
568 |
#, php-format
|
569 |
msgid "%s Year"
|
570 |
msgid_plural "%s Years"
|
571 |
msgstr[0] ""
|
572 |
msgstr[1] ""
|
573 |
|
574 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
575 |
msgid "One"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
579 |
msgid "Three"
|
580 |
msgstr ""
|
581 |
|
@@ -584,86 +584,84 @@ msgstr ""
|
|
584 |
msgid "Unique Views"
|
585 |
msgstr "Unieke weergaven"
|
586 |
|
587 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
588 |
-
#: .././admin/widgets.php:
|
589 |
-
#: .././
|
590 |
msgid "Users"
|
591 |
msgstr "Bezoekers"
|
592 |
|
593 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
594 |
msgid "Organic"
|
595 |
msgstr "Via zoekmachines"
|
596 |
|
597 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
598 |
-
#: .././admin/widgets.php:
|
599 |
-
#: .././
|
600 |
msgid "Page Views"
|
601 |
msgstr "Paginaweergaven"
|
602 |
|
603 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
604 |
-
#: .././admin/widgets.php:
|
605 |
-
#: .././
|
606 |
msgid "Bounce Rate"
|
607 |
msgstr "Bouncepercentage"
|
608 |
|
609 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
610 |
msgid "Location"
|
611 |
msgstr "Locaties"
|
612 |
|
613 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
614 |
-
#: .././tools/gapi.php:
|
615 |
msgid "Referrers"
|
616 |
msgstr "Beste verwijzingen"
|
617 |
|
618 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
619 |
-
#: .././tools/gapi.php:
|
620 |
msgid "Searches"
|
621 |
msgstr "Beste zoekopdrachten"
|
622 |
|
623 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
624 |
msgid "Traffic Details"
|
625 |
msgstr "Verkeer"
|
626 |
|
627 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
628 |
-
#: .././admin/widgets.php:
|
629 |
-
#: .././admin/widgets.php:
|
630 |
msgid "A JavaScript Error is blocking plugin resources!"
|
631 |
msgstr "Een Javascript fout blokkeert plugin bestanden!"
|
632 |
|
633 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
634 |
msgid "Traffic Mediums"
|
635 |
msgstr "Verkeersbronnen"
|
636 |
|
637 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
638 |
msgid "Visitor Type"
|
639 |
msgstr "Nieuw vs. terugkerend"
|
640 |
|
641 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
642 |
msgid "Social Networks"
|
643 |
msgstr "Sociale netwerken"
|
644 |
|
645 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
646 |
msgid "Search Engines"
|
647 |
msgstr "Zoekmachines"
|
648 |
|
649 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
650 |
-
#: .././front/setup.php:101
|
651 |
msgid "Organic Search"
|
652 |
msgstr "Zoekopdrachten"
|
653 |
|
654 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
655 |
-
#: .././front/setup.php:102
|
656 |
msgid "Pages/Session"
|
657 |
msgstr "Pagina's/bezoek"
|
658 |
|
659 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
-
#: .././admin/widgets.php:
|
667 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
668 |
msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
|
669 |
|
@@ -671,12 +669,12 @@ msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
|
|
671 |
msgid "Not enough data collected"
|
672 |
msgstr "Niet voldoende data verzameld"
|
673 |
|
674 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
675 |
-
#: .././admin/widgets.php:
|
676 |
-
#: .././admin/widgets.php:
|
677 |
-
#: .././admin/widgets.php:
|
678 |
-
#: .././admin/widgets.php:
|
679 |
-
#: .././admin/widgets.php:
|
680 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
681 |
msgid "This report is unavailable"
|
682 |
msgstr "Dit rapport is niet beschikbaar"
|
@@ -685,25 +683,29 @@ msgstr "Dit rapport is niet beschikbaar"
|
|
685 |
msgid "report generated by"
|
686 |
msgstr "rapport gegenereerd door"
|
687 |
|
688 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
689 |
msgid "Settings"
|
690 |
msgstr "Instellingen"
|
691 |
|
692 |
-
#: .././admin/setup.php:
|
693 |
#, php-format
|
694 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: .././admin/setup.php:
|
698 |
#, php-format
|
699 |
msgid "For details, check out %1$s and %2$s."
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: .././admin/setup.php:
|
703 |
msgid "the documentation page"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: .././admin/setup.php:
|
707 |
msgid "the plugin's settings page"
|
708 |
msgstr ""
|
709 |
|
@@ -711,10 +713,6 @@ msgstr ""
|
|
711 |
msgid "Google Analytics Dashboard"
|
712 |
msgstr "Bezoekersstatistieken"
|
713 |
|
714 |
-
#: .././admin/widgets.php:32
|
715 |
-
msgid "This plugin needs an authorization:"
|
716 |
-
msgstr "Deze plugin heeft autorisatie nodig:"
|
717 |
-
|
718 |
#: .././admin/widgets.php:66
|
719 |
msgid "Something went wrong while retrieving profiles list."
|
720 |
msgstr "Er ging iets mis met het ophalen van de profielen."
|
@@ -744,53 +742,53 @@ msgstr ""
|
|
744 |
msgid "Find out more!"
|
745 |
msgstr "Lees meer..."
|
746 |
|
747 |
-
#: .././admin/widgets.php:
|
748 |
msgid "Real-Time"
|
749 |
msgstr "Realtime"
|
750 |
|
751 |
-
#: .././admin/widgets.php:
|
752 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
753 |
-
#: .././tools/gapi.php:
|
754 |
-
#: .././tools/gapi.php:
|
755 |
msgid "Sessions"
|
756 |
msgstr "Bezoeken"
|
757 |
|
758 |
-
#: .././admin/widgets.php:
|
759 |
msgid "Pages"
|
760 |
msgstr "Meest bezochte pagina's"
|
761 |
|
762 |
-
#: .././admin/widgets.php:
|
763 |
msgid "REFERRAL"
|
764 |
msgstr "Verwijzend"
|
765 |
|
766 |
-
#: .././admin/widgets.php:
|
767 |
msgid "ORGANIC"
|
768 |
msgstr "Zoekmachines"
|
769 |
|
770 |
-
#: .././admin/widgets.php:
|
771 |
-
#: .././admin/widgets.php:
|
772 |
msgid "SOCIAL"
|
773 |
msgstr "Sociale media"
|
774 |
|
775 |
-
#: .././admin/widgets.php:
|
776 |
-
#: .././admin/widgets.php:
|
777 |
msgid "CAMPAIGN"
|
778 |
msgstr "Campagne"
|
779 |
|
780 |
-
#: .././admin/widgets.php:
|
781 |
-
#: .././admin/widgets.php:
|
782 |
msgid "DIRECT"
|
783 |
msgstr "Direct"
|
784 |
|
785 |
-
#: .././admin/widgets.php:
|
786 |
msgid "NEW"
|
787 |
msgstr "Nieuw"
|
788 |
|
789 |
-
#: .././admin/widgets.php:
|
790 |
msgid "REFERRALS"
|
791 |
msgstr "Verwijzingen"
|
792 |
|
793 |
-
#: .././admin/widgets.php:
|
794 |
msgid "KEYWORDS"
|
795 |
msgstr "Zoekwoorden"
|
796 |
|
@@ -798,10 +796,6 @@ msgstr "Zoekwoorden"
|
|
798 |
msgid "Will display your google analytics stats in a widget"
|
799 |
msgstr "Toont de Google Analytics statistieken in een widget"
|
800 |
|
801 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
802 |
-
msgid "trend"
|
803 |
-
msgstr "trend"
|
804 |
-
|
805 |
#: .././front/widgets.php:123
|
806 |
msgid "Period:"
|
807 |
msgstr "Periode:"
|
@@ -850,7 +844,7 @@ msgstr "Statistieken voor:"
|
|
850 |
msgid "Give credits:"
|
851 |
msgstr "Toon credits:"
|
852 |
|
853 |
-
#: .././gadwp.php:
|
854 |
msgid "This is not allowed, read the documentation!"
|
855 |
msgstr "Dit is niet toegestaan, lees de documentatie!"
|
856 |
|
@@ -874,42 +868,45 @@ msgstr "Toegangscode:"
|
|
874 |
msgid "Save Access Code"
|
875 |
msgstr "Toegangscode opslaan"
|
876 |
|
877 |
-
#: .././tools/gapi.php:
|
878 |
msgid "Organic Searches"
|
879 |
msgstr "Zoekopdrachten"
|
880 |
|
881 |
-
#: .././tools/gapi.php:
|
882 |
msgid "Unique Page Views"
|
883 |
msgstr "Unieke paginaweergaven"
|
884 |
|
885 |
-
#: .././tools/gapi.php:
|
886 |
msgid "Hour"
|
887 |
msgstr "Uur"
|
888 |
|
889 |
-
#: .././tools/gapi.php:
|
890 |
msgid "Date"
|
891 |
msgstr "Datum"
|
892 |
|
893 |
-
#: .././tools/gapi.php:
|
894 |
msgid "Views"
|
895 |
msgstr "Weergaven"
|
896 |
|
897 |
-
#: .././tools/gapi.php:
|
898 |
msgid "Countries"
|
899 |
msgstr "Landen"
|
900 |
|
901 |
-
#: .././tools/gapi.php:
|
902 |
msgid "Cities from"
|
903 |
msgstr "Steden uit"
|
904 |
|
905 |
-
#: .././tools/gapi.php:
|
906 |
msgid "Channels"
|
907 |
msgstr "Kanalen"
|
908 |
|
909 |
-
#: .././tools/gapi.php:
|
910 |
msgid "Type"
|
911 |
msgstr "Type"
|
912 |
|
|
|
|
|
|
|
913 |
#~ msgid "Last 7 Days"
|
914 |
#~ msgstr "Afgelopen 7 dagen"
|
915 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Willem-Jan Meerkerk <info@bs-webdevelopment.nl>\n"
|
10 |
"Language: nl_NL\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
+
#: .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Instellingen opgeslagen."
|
34 |
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
40 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
41 |
+
#: .././admin/settings.php:1082
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "Cheating Huh?"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Er ging iets mis, bekijk %1$s of %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Fouten & debug"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
62 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "autoriseer de plugin"
|
65 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
84 |
+
#: .././admin/settings.php:1234
|
85 |
msgid "Save Changes"
|
86 |
msgstr "Wijzigingen opslaan"
|
87 |
|
142 |
msgstr "Aangepaste definities"
|
143 |
|
144 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
145 |
+
#: .././admin/settings.php:1217
|
146 |
msgid "Exclude Tracking"
|
147 |
msgstr "Tracking uitsluiten"
|
148 |
|
166 |
msgid "Enabled"
|
167 |
msgstr "Ingeschakeld"
|
168 |
|
169 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
170 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
171 |
#: .././admin/widgets.php:61
|
172 |
msgid "View Name:"
|
173 |
msgstr "Weergavenaam:"
|
174 |
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
176 |
msgid "Tracking ID:"
|
177 |
msgstr "Tracking ID:"
|
178 |
|
179 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
180 |
msgid "Default URL:"
|
181 |
msgstr "Standaard URL:"
|
182 |
|
183 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
184 |
msgid "Time Zone:"
|
185 |
msgstr "Tijdzone:"
|
186 |
|
304 |
msgid "Plugin Configuration"
|
305 |
msgstr "Plugin configuratie"
|
306 |
|
307 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
308 |
msgid ""
|
309 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
310 |
"error, try this solution:"
|
316 |
msgid "Library conflicts between WordPress plugins"
|
317 |
msgstr "Library conflict tussen Wordpress plugins"
|
318 |
|
319 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
320 |
msgid "Plugin authorization succeeded."
|
321 |
msgstr "Plugin autorisatie succesvol ingesteld."
|
322 |
|
323 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
324 |
msgid ""
|
325 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
326 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
329 |
"(UA-XXXXX-X). Probeer opnieuw, gebruik de rode link voor het verkrijgen van "
|
330 |
"de toegangscode."
|
331 |
|
332 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
333 |
msgid "Cleared Cache."
|
334 |
msgstr "Cache leeggemaakt."
|
335 |
|
336 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
337 |
msgid "Token Reseted and Revoked."
|
338 |
msgstr "Token gereset en ingetrokken."
|
339 |
|
341 |
msgid "All errors reseted."
|
342 |
msgstr "Alle fouten gereset."
|
343 |
|
344 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
345 |
msgid "All other domains/properties were removed."
|
346 |
msgstr "Alle andere domeinen/properties zijn verwijderd."
|
347 |
|
348 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
349 |
msgid "Google Analytics Settings"
|
350 |
msgstr "Google Analytics instellingen"
|
351 |
|
352 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
353 |
msgid "Use the red link (see below) to generate and get your access code!"
|
354 |
msgstr ""
|
355 |
"Gebruik de rode link (zie hieronder) voor het genereren en verkrijgen van de "
|
356 |
"toegangscode!"
|
357 |
|
358 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
359 |
msgid "Plugin Authorization"
|
360 |
msgstr "Plugin authorisatie"
|
361 |
|
362 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
363 |
#, php-format
|
364 |
msgid ""
|
365 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
369 |
"Bekijk de %1$s en lees de %2$s voor het instellen van de autorisatie. Deze "
|
370 |
"plugin heeft een goed ingesteld Google Analytics account nodig."
|
371 |
|
372 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
373 |
msgid "video"
|
374 |
msgstr "video"
|
375 |
|
376 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
377 |
msgid "tutorial"
|
378 |
msgstr "tutorial"
|
379 |
|
380 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
381 |
msgid "use your own API Project credentials"
|
382 |
msgstr "gebruik aangepaste API Project credentials"
|
383 |
|
384 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
385 |
msgid "API Key:"
|
386 |
msgstr "API Key:"
|
387 |
|
388 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
389 |
msgid "Client ID:"
|
390 |
msgstr "Client ID:"
|
391 |
|
392 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
393 |
msgid "Client Secret:"
|
394 |
msgstr "Client Secret:"
|
395 |
|
396 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
397 |
msgid "Clear Authorization"
|
398 |
msgstr "Autorisatie verwijderen"
|
399 |
|
400 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
401 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
402 |
msgid "Clear Cache"
|
403 |
msgstr "Cache leegmaken"
|
404 |
|
405 |
+
#: .././admin/settings.php:873
|
406 |
msgid "Reset Errors"
|
407 |
msgstr "Fouten resetten"
|
408 |
|
409 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
410 |
msgid "General Settings"
|
411 |
msgstr "Algemene instellingen"
|
412 |
|
413 |
+
#: .././admin/settings.php:882
|
414 |
msgid "Select View:"
|
415 |
msgstr "Kies weergave:"
|
416 |
|
417 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
418 |
msgid "Property not found"
|
419 |
msgstr "Property niet gevonden"
|
420 |
|
421 |
+
#: .././admin/settings.php:899
|
422 |
msgid "Lock Selection"
|
423 |
msgstr "Selectie vergrendelen"
|
424 |
|
425 |
+
#: .././admin/settings.php:918
|
426 |
msgid "Theme Color:"
|
427 |
msgstr "Thema kleur:"
|
428 |
|
429 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
430 |
msgid "Automatic Updates"
|
431 |
msgstr "Automatische updates"
|
432 |
|
433 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
434 |
msgid ""
|
435 |
"automatic updates for minor versions (security and maintenance releases only)"
|
436 |
msgstr ""
|
437 |
"automatische updates voor minor versies (alleen beveiliging- en "
|
438 |
"onderhoudreleases)"
|
439 |
|
440 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
441 |
#: .././admin/widgets.php:32
|
442 |
msgid "Authorize Plugin"
|
443 |
msgstr "Plugin autoriseren"
|
444 |
|
445 |
+
#: .././admin/settings.php:1027
|
446 |
msgid "Properties refreshed."
|
447 |
msgstr "Properties zijn vernieuwd."
|
448 |
|
449 |
+
#: .././admin/settings.php:1112
|
450 |
msgid "Network Setup"
|
451 |
msgstr "Netwerk setup"
|
452 |
|
453 |
+
#: .././admin/settings.php:1122
|
454 |
msgid "use a single Google Analytics account for the entire network"
|
455 |
msgstr "gebruik één Google Analytics account voor het hele netwerk"
|
456 |
|
457 |
+
#: .././admin/settings.php:1167
|
458 |
msgid "Refresh Properties"
|
459 |
msgstr "Properties vernieuwen"
|
460 |
|
461 |
+
#: .././admin/settings.php:1173
|
462 |
msgid "Properties/Views Settings"
|
463 |
msgstr "Properties/weergaven instellingen"
|
464 |
|
465 |
+
#: .././admin/settings.php:1227
|
466 |
msgid "exclude Super Admin tracking for the entire network"
|
467 |
msgstr "uitsluiten van Super Admin tracking voor het hele netwerk"
|
468 |
|
469 |
+
#: .././admin/settings.php:1275
|
470 |
msgid "Setup Tutorial & Demo"
|
471 |
msgstr "Setup tutorial & demo"
|
472 |
|
473 |
+
#: .././admin/settings.php:1283
|
474 |
msgid "Follow & Review"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: .././admin/settings.php:1309
|
478 |
#, php-format
|
479 |
msgid "Your feedback and review are both important, %s!"
|
480 |
msgstr "Uw feedback en review zijn beide belangrijk, %s!"
|
481 |
|
482 |
+
#: .././admin/settings.php:1309
|
483 |
msgid "rate this plugin"
|
484 |
msgstr "waardeer deze plugin"
|
485 |
|
486 |
+
#: .././admin/settings.php:1315
|
487 |
msgid "Further Reading"
|
488 |
msgstr "Meer informatie"
|
489 |
|
490 |
+
#: .././admin/settings.php:1322
|
491 |
#, php-format
|
492 |
msgid "%s by moving your website to HTTPS/SSL."
|
493 |
msgstr "%s door het verplaatsen van uw website naar HTTPS/SSL."
|
494 |
|
495 |
+
#: .././admin/settings.php:1322
|
496 |
msgid "Improve search rankings"
|
497 |
msgstr "Verbeteren van zoek-rankings"
|
498 |
|
499 |
+
#: .././admin/settings.php:1329
|
500 |
#, php-format
|
501 |
msgid "Other %s written by the same author"
|
502 |
msgstr "Andere %s gemaakt door dezelfde auteur"
|
503 |
|
504 |
+
#: .././admin/settings.php:1329
|
505 |
msgid "WordPress Plugins"
|
506 |
msgstr "Wordpress plugins"
|
507 |
|
508 |
+
#: .././admin/settings.php:1335
|
509 |
msgid "Other Services"
|
510 |
msgstr "Andere services"
|
511 |
|
512 |
+
#: .././admin/settings.php:1342
|
513 |
#, php-format
|
514 |
msgid "Speed up your website and plug into a whole %s"
|
515 |
msgstr "Versnel uw website en voeg een %s"
|
516 |
|
517 |
+
#: .././admin/settings.php:1342
|
518 |
msgid "new level of site speed"
|
519 |
msgstr "nieuw level van snelheid toe"
|
520 |
|
521 |
+
#: .././admin/settings.php:1349
|
522 |
#, php-format
|
523 |
msgid "%s service with users tracking at IP level."
|
524 |
msgstr "%s service met gebruikers-tracking op IP niveau."
|
525 |
|
526 |
+
#: .././admin/settings.php:1349
|
527 |
msgid "Web Analytics"
|
528 |
msgstr "Web Analytics"
|
529 |
|
543 |
msgid "Tracking Code"
|
544 |
msgstr "Trackingcode"
|
545 |
|
546 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
547 |
msgid "Today"
|
548 |
msgstr "Vandaag"
|
549 |
|
550 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
551 |
msgid "Yesterday"
|
552 |
msgstr "Gisteren"
|
553 |
|
554 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
555 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
556 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
557 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
558 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
559 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
560 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
563 |
msgid "Last %d Days"
|
564 |
msgstr "Afgelopen %d dagen"
|
565 |
|
566 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
567 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
568 |
#, php-format
|
569 |
msgid "%s Year"
|
570 |
msgid_plural "%s Years"
|
571 |
msgstr[0] ""
|
572 |
msgstr[1] ""
|
573 |
|
574 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
575 |
msgid "One"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
579 |
msgid "Three"
|
580 |
msgstr ""
|
581 |
|
584 |
msgid "Unique Views"
|
585 |
msgstr "Unieke weergaven"
|
586 |
|
587 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
588 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
589 |
+
#: .././tools/gapi.php:357
|
590 |
msgid "Users"
|
591 |
msgstr "Bezoekers"
|
592 |
|
593 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
594 |
msgid "Organic"
|
595 |
msgstr "Via zoekmachines"
|
596 |
|
597 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
598 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
599 |
+
#: .././tools/gapi.php:360
|
600 |
msgid "Page Views"
|
601 |
msgstr "Paginaweergaven"
|
602 |
|
603 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
604 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
605 |
+
#: .././tools/gapi.php:363
|
606 |
msgid "Bounce Rate"
|
607 |
msgstr "Bouncepercentage"
|
608 |
|
609 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
610 |
msgid "Location"
|
611 |
msgstr "Locaties"
|
612 |
|
613 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
614 |
+
#: .././tools/gapi.php:502
|
615 |
msgid "Referrers"
|
616 |
msgstr "Beste verwijzingen"
|
617 |
|
618 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
619 |
+
#: .././tools/gapi.php:535
|
620 |
msgid "Searches"
|
621 |
msgstr "Beste zoekopdrachten"
|
622 |
|
623 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
624 |
msgid "Traffic Details"
|
625 |
msgstr "Verkeer"
|
626 |
|
627 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
628 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
629 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
630 |
msgid "A JavaScript Error is blocking plugin resources!"
|
631 |
msgstr "Een Javascript fout blokkeert plugin bestanden!"
|
632 |
|
633 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
634 |
msgid "Traffic Mediums"
|
635 |
msgstr "Verkeersbronnen"
|
636 |
|
637 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
638 |
msgid "Visitor Type"
|
639 |
msgstr "Nieuw vs. terugkerend"
|
640 |
|
641 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
642 |
msgid "Social Networks"
|
643 |
msgstr "Sociale netwerken"
|
644 |
|
645 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
646 |
msgid "Search Engines"
|
647 |
msgstr "Zoekmachines"
|
648 |
|
649 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
650 |
msgid "Organic Search"
|
651 |
msgstr "Zoekopdrachten"
|
652 |
|
653 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
654 |
msgid "Pages/Session"
|
655 |
msgstr "Pagina's/bezoek"
|
656 |
|
657 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
658 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
659 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
660 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
661 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
662 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
663 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
664 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
665 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
666 |
msgstr "Ongeldige response, zie voor meer details de Javascript console (F12)"
|
667 |
|
669 |
msgid "Not enough data collected"
|
670 |
msgstr "Niet voldoende data verzameld"
|
671 |
|
672 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
673 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
674 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
675 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
676 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
677 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
678 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
679 |
msgid "This report is unavailable"
|
680 |
msgstr "Dit rapport is niet beschikbaar"
|
683 |
msgid "report generated by"
|
684 |
msgstr "rapport gegenereerd door"
|
685 |
|
686 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
687 |
+
msgid "This plugin needs an authorization:"
|
688 |
+
msgstr "Deze plugin heeft autorisatie nodig:"
|
689 |
+
|
690 |
+
#: .././admin/setup.php:227
|
691 |
msgid "Settings"
|
692 |
msgstr "Instellingen"
|
693 |
|
694 |
+
#: .././admin/setup.php:239
|
695 |
#, php-format
|
696 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
697 |
msgstr ""
|
698 |
|
699 |
+
#: .././admin/setup.php:239
|
700 |
#, php-format
|
701 |
msgid "For details, check out %1$s and %2$s."
|
702 |
msgstr ""
|
703 |
|
704 |
+
#: .././admin/setup.php:239
|
705 |
msgid "the documentation page"
|
706 |
msgstr ""
|
707 |
|
708 |
+
#: .././admin/setup.php:239
|
709 |
msgid "the plugin's settings page"
|
710 |
msgstr ""
|
711 |
|
713 |
msgid "Google Analytics Dashboard"
|
714 |
msgstr "Bezoekersstatistieken"
|
715 |
|
|
|
|
|
|
|
|
|
716 |
#: .././admin/widgets.php:66
|
717 |
msgid "Something went wrong while retrieving profiles list."
|
718 |
msgstr "Er ging iets mis met het ophalen van de profielen."
|
742 |
msgid "Find out more!"
|
743 |
msgstr "Lees meer..."
|
744 |
|
745 |
+
#: .././admin/widgets.php:113
|
746 |
msgid "Real-Time"
|
747 |
msgstr "Realtime"
|
748 |
|
749 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
750 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
751 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
752 |
+
#: .././tools/gapi.php:694
|
753 |
msgid "Sessions"
|
754 |
msgstr "Bezoeken"
|
755 |
|
756 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
757 |
msgid "Pages"
|
758 |
msgstr "Meest bezochte pagina's"
|
759 |
|
760 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
761 |
msgid "REFERRAL"
|
762 |
msgstr "Verwijzend"
|
763 |
|
764 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
765 |
msgid "ORGANIC"
|
766 |
msgstr "Zoekmachines"
|
767 |
|
768 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
769 |
+
#: .././admin/widgets.php:477
|
770 |
msgid "SOCIAL"
|
771 |
msgstr "Sociale media"
|
772 |
|
773 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
774 |
+
#: .././admin/widgets.php:478
|
775 |
msgid "CAMPAIGN"
|
776 |
msgstr "Campagne"
|
777 |
|
778 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
779 |
+
#: .././admin/widgets.php:481
|
780 |
msgid "DIRECT"
|
781 |
msgstr "Direct"
|
782 |
|
783 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
784 |
msgid "NEW"
|
785 |
msgstr "Nieuw"
|
786 |
|
787 |
+
#: .././admin/widgets.php:355
|
788 |
msgid "REFERRALS"
|
789 |
msgstr "Verwijzingen"
|
790 |
|
791 |
+
#: .././admin/widgets.php:358
|
792 |
msgid "KEYWORDS"
|
793 |
msgstr "Zoekwoorden"
|
794 |
|
796 |
msgid "Will display your google analytics stats in a widget"
|
797 |
msgstr "Toont de Google Analytics statistieken in een widget"
|
798 |
|
|
|
|
|
|
|
|
|
799 |
#: .././front/widgets.php:123
|
800 |
msgid "Period:"
|
801 |
msgstr "Periode:"
|
844 |
msgid "Give credits:"
|
845 |
msgstr "Toon credits:"
|
846 |
|
847 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
848 |
msgid "This is not allowed, read the documentation!"
|
849 |
msgstr "Dit is niet toegestaan, lees de documentatie!"
|
850 |
|
868 |
msgid "Save Access Code"
|
869 |
msgstr "Toegangscode opslaan"
|
870 |
|
871 |
+
#: .././tools/gapi.php:366
|
872 |
msgid "Organic Searches"
|
873 |
msgstr "Zoekopdrachten"
|
874 |
|
875 |
+
#: .././tools/gapi.php:369
|
876 |
msgid "Unique Page Views"
|
877 |
msgstr "Unieke paginaweergaven"
|
878 |
|
879 |
+
#: .././tools/gapi.php:377
|
880 |
msgid "Hour"
|
881 |
msgstr "Uur"
|
882 |
|
883 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
884 |
msgid "Date"
|
885 |
msgstr "Datum"
|
886 |
|
887 |
+
#: .././tools/gapi.php:470
|
888 |
msgid "Views"
|
889 |
msgstr "Weergaven"
|
890 |
|
891 |
+
#: .././tools/gapi.php:556
|
892 |
msgid "Countries"
|
893 |
msgstr "Landen"
|
894 |
|
895 |
+
#: .././tools/gapi.php:566
|
896 |
msgid "Cities from"
|
897 |
msgstr "Steden uit"
|
898 |
|
899 |
+
#: .././tools/gapi.php:619
|
900 |
msgid "Channels"
|
901 |
msgstr "Kanalen"
|
902 |
|
903 |
+
#: .././tools/gapi.php:665
|
904 |
msgid "Type"
|
905 |
msgstr "Type"
|
906 |
|
907 |
+
#~ msgid "trend"
|
908 |
+
#~ msgstr "trend"
|
909 |
+
|
910 |
#~ msgid "Last 7 Days"
|
911 |
#~ msgstr "Afgelopen 7 dagen"
|
912 |
|
languages/{ga-dash-pl_PL.po → google-analytics-dashboard-for-wp-pl_PL.po}
RENAMED
@@ -1,15 +1,15 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
-
"POT-Creation-Date: 2015-
|
5 |
-
"PO-Revision-Date: 2015-
|
6 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
7 |
"Language-Team: Alin Marcu\n"
|
8 |
"Language: pl\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.8.
|
13 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
14 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
15 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -26,7 +26,7 @@ msgstr ""
|
|
26 |
|
27 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
28 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
29 |
-
#: .././admin/settings.php:
|
30 |
msgid "Settings saved."
|
31 |
msgstr ""
|
32 |
|
@@ -34,29 +34,30 @@ msgstr ""
|
|
34 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
35 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
37 |
-
#: .././admin/settings.php:
|
38 |
-
#: .././admin/settings.php:
|
39 |
-
#: .././admin/settings.php:
|
40 |
msgid "Cheating Huh?"
|
41 |
msgstr "Oszukujemy, co?"
|
42 |
|
43 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
44 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
45 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
46 |
#, php-format
|
47 |
msgid "Something went wrong, check %1$s or %2$s."
|
48 |
msgstr ""
|
49 |
|
50 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
51 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
52 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
53 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
54 |
msgid "Errors & Debug"
|
55 |
msgstr ""
|
56 |
|
57 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
58 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
59 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
60 |
msgid "authorize the plugin"
|
61 |
msgstr "autoryzować wtyczkę"
|
62 |
|
@@ -77,8 +78,8 @@ msgid "enable web page reports on frontend"
|
|
77 |
msgstr ""
|
78 |
|
79 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
80 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
81 |
-
#: .././admin/settings.php:
|
82 |
msgid "Save Changes"
|
83 |
msgstr ""
|
84 |
|
@@ -137,7 +138,7 @@ msgid "Custom Definitions"
|
|
137 |
msgstr ""
|
138 |
|
139 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
140 |
-
#: .././admin/settings.php:
|
141 |
msgid "Exclude Tracking"
|
142 |
msgstr "Wyklucz Śledzenie"
|
143 |
|
@@ -161,21 +162,21 @@ msgstr "Wyłączone"
|
|
161 |
msgid "Enabled"
|
162 |
msgstr "Włączone"
|
163 |
|
164 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
165 |
-
#: .././admin/settings.php:
|
166 |
#: .././admin/widgets.php:61
|
167 |
msgid "View Name:"
|
168 |
msgstr "Nazwa widoku:"
|
169 |
|
170 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
171 |
msgid "Tracking ID:"
|
172 |
msgstr "Tracking ID:"
|
173 |
|
174 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
175 |
msgid "Default URL:"
|
176 |
msgstr "Domyślny URL:"
|
177 |
|
178 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
179 |
msgid "Time Zone:"
|
180 |
msgstr "Strefa Czasowa:"
|
181 |
|
@@ -302,7 +303,7 @@ msgstr ""
|
|
302 |
msgid "Plugin Configuration"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
306 |
msgid ""
|
307 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
308 |
"error, try this solution:"
|
@@ -312,21 +313,21 @@ msgstr ""
|
|
312 |
msgid "Library conflicts between WordPress plugins"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
316 |
msgid "Plugin authorization succeeded."
|
317 |
msgstr "Autoryzacja wtyczki pomyślna."
|
318 |
|
319 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
320 |
msgid ""
|
321 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
322 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
326 |
msgid "Cleared Cache."
|
327 |
msgstr "Cache wyczyszczony."
|
328 |
|
329 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
330 |
msgid "Token Reseted and Revoked."
|
331 |
msgstr "Token wyczyszczony i wycofany."
|
332 |
|
@@ -334,23 +335,23 @@ msgstr "Token wyczyszczony i wycofany."
|
|
334 |
msgid "All errors reseted."
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
338 |
msgid "All other domains/properties were removed."
|
339 |
msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
|
340 |
|
341 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
342 |
msgid "Google Analytics Settings"
|
343 |
msgstr "Ustawienia Google Analytics"
|
344 |
|
345 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
346 |
msgid "Use the red link (see below) to generate and get your access code!"
|
347 |
msgstr ""
|
348 |
|
349 |
-
#: .././admin/settings.php:
|
350 |
msgid "Plugin Authorization"
|
351 |
msgstr "Autoryzacja Wtyczki"
|
352 |
|
353 |
-
#: .././admin/settings.php:
|
354 |
#, php-format
|
355 |
msgid ""
|
356 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -358,159 +359,159 @@ msgid ""
|
|
358 |
"account!"
|
359 |
msgstr ""
|
360 |
|
361 |
-
#: .././admin/settings.php:
|
362 |
msgid "video"
|
363 |
msgstr "film"
|
364 |
|
365 |
-
#: .././admin/settings.php:
|
366 |
msgid "tutorial"
|
367 |
msgstr "tutorial"
|
368 |
|
369 |
-
#: .././admin/settings.php:
|
370 |
msgid "use your own API Project credentials"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: .././admin/settings.php:
|
374 |
msgid "API Key:"
|
375 |
msgstr "Klucz API:"
|
376 |
|
377 |
-
#: .././admin/settings.php:
|
378 |
msgid "Client ID:"
|
379 |
msgstr "ID Klienta:"
|
380 |
|
381 |
-
#: .././admin/settings.php:
|
382 |
msgid "Client Secret:"
|
383 |
msgstr "Hasło Klienta:"
|
384 |
|
385 |
-
#: .././admin/settings.php:
|
386 |
msgid "Clear Authorization"
|
387 |
msgstr "Czyść Autoryzację"
|
388 |
|
389 |
-
#: .././admin/settings.php:
|
390 |
-
#: .././admin/settings.php:
|
391 |
msgid "Clear Cache"
|
392 |
msgstr "Czyść Cache"
|
393 |
|
394 |
-
#: .././admin/settings.php:
|
395 |
msgid "Reset Errors"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: .././admin/settings.php:
|
399 |
msgid "General Settings"
|
400 |
msgstr "Ustawienia główne"
|
401 |
|
402 |
-
#: .././admin/settings.php:
|
403 |
msgid "Select View:"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#: .././admin/settings.php:
|
407 |
msgid "Property not found"
|
408 |
msgstr ""
|
409 |
|
410 |
-
#: .././admin/settings.php:
|
411 |
msgid "Lock Selection"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: .././admin/settings.php:
|
415 |
msgid "Theme Color:"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: .././admin/settings.php:
|
419 |
msgid "Automatic Updates"
|
420 |
msgstr ""
|
421 |
|
422 |
-
#: .././admin/settings.php:
|
423 |
msgid ""
|
424 |
"automatic updates for minor versions (security and maintenance releases only)"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: .././admin/settings.php:
|
428 |
#: .././admin/widgets.php:32
|
429 |
msgid "Authorize Plugin"
|
430 |
msgstr "Autoryzuj wtyczkę"
|
431 |
|
432 |
-
#: .././admin/settings.php:
|
433 |
msgid "Properties refreshed."
|
434 |
msgstr "Właściwości Odświeżone"
|
435 |
|
436 |
-
#: .././admin/settings.php:
|
437 |
msgid "Network Setup"
|
438 |
msgstr "Ustawienia Sieci"
|
439 |
|
440 |
-
#: .././admin/settings.php:
|
441 |
msgid "use a single Google Analytics account for the entire network"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: .././admin/settings.php:
|
445 |
msgid "Refresh Properties"
|
446 |
msgstr "Odśwież Właściwości"
|
447 |
|
448 |
-
#: .././admin/settings.php:
|
449 |
msgid "Properties/Views Settings"
|
450 |
msgstr "Ustawienia Właściwości /Widoków"
|
451 |
|
452 |
-
#: .././admin/settings.php:
|
453 |
msgid "exclude Super Admin tracking for the entire network"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: .././admin/settings.php:
|
457 |
msgid "Setup Tutorial & Demo"
|
458 |
msgstr "Ustaw Tutorial & Demo"
|
459 |
|
460 |
-
#: .././admin/settings.php:
|
461 |
msgid "Follow & Review"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: .././admin/settings.php:
|
465 |
#, php-format
|
466 |
msgid "Your feedback and review are both important, %s!"
|
467 |
msgstr ""
|
468 |
|
469 |
-
#: .././admin/settings.php:
|
470 |
msgid "rate this plugin"
|
471 |
msgstr "oceń tą wtyczkę"
|
472 |
|
473 |
-
#: .././admin/settings.php:
|
474 |
msgid "Further Reading"
|
475 |
msgstr "Inne Dokumenty"
|
476 |
|
477 |
-
#: .././admin/settings.php:
|
478 |
#, php-format
|
479 |
msgid "%s by moving your website to HTTPS/SSL."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: .././admin/settings.php:
|
483 |
msgid "Improve search rankings"
|
484 |
msgstr ""
|
485 |
|
486 |
-
#: .././admin/settings.php:
|
487 |
#, php-format
|
488 |
msgid "Other %s written by the same author"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: .././admin/settings.php:
|
492 |
msgid "WordPress Plugins"
|
493 |
msgstr "Wtyczki WordPressa"
|
494 |
|
495 |
-
#: .././admin/settings.php:
|
496 |
msgid "Other Services"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: .././admin/settings.php:
|
500 |
#, php-format
|
501 |
msgid "Speed up your website and plug into a whole %s"
|
502 |
msgstr ""
|
503 |
|
504 |
-
#: .././admin/settings.php:
|
505 |
msgid "new level of site speed"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: .././admin/settings.php:
|
509 |
#, php-format
|
510 |
msgid "%s service with users tracking at IP level."
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: .././admin/settings.php:
|
514 |
msgid "Web Analytics"
|
515 |
msgstr "Web Analytics"
|
516 |
|
@@ -530,18 +531,18 @@ msgstr "Ustawienia Frontendu"
|
|
530 |
msgid "Tracking Code"
|
531 |
msgstr "Kod śledzenia"
|
532 |
|
533 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
534 |
msgid "Today"
|
535 |
msgstr "Dzisiaj"
|
536 |
|
537 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
538 |
msgid "Yesterday"
|
539 |
msgstr "Wczoraj"
|
540 |
|
541 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
542 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
543 |
-
#: .././admin/widgets.php:
|
544 |
-
#: .././admin/widgets.php:
|
545 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
546 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
547 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -550,20 +551,19 @@ msgstr "Wczoraj"
|
|
550 |
msgid "Last %d Days"
|
551 |
msgstr "Ostatnie %d dni"
|
552 |
|
553 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
554 |
-
#: .././admin/widgets.php:
|
555 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
556 |
#, php-format
|
557 |
msgid "%s Year"
|
558 |
msgid_plural "%s Years"
|
559 |
msgstr[0] ""
|
560 |
msgstr[1] ""
|
561 |
|
562 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
563 |
msgid "One"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
567 |
msgid "Three"
|
568 |
msgstr ""
|
569 |
|
@@ -572,86 +572,84 @@ msgstr ""
|
|
572 |
msgid "Unique Views"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
576 |
-
#: .././admin/widgets.php:
|
577 |
-
#: .././
|
578 |
msgid "Users"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
582 |
msgid "Organic"
|
583 |
msgstr "Organiczne"
|
584 |
|
585 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
586 |
-
#: .././admin/widgets.php:
|
587 |
-
#: .././
|
588 |
msgid "Page Views"
|
589 |
msgstr "Wyświetleń strony"
|
590 |
|
591 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
592 |
-
#: .././admin/widgets.php:
|
593 |
-
#: .././
|
594 |
msgid "Bounce Rate"
|
595 |
msgstr "Współczynnik odrzuceń"
|
596 |
|
597 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
598 |
msgid "Location"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
602 |
-
#: .././tools/gapi.php:
|
603 |
msgid "Referrers"
|
604 |
msgstr ""
|
605 |
|
606 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
607 |
-
#: .././tools/gapi.php:
|
608 |
msgid "Searches"
|
609 |
msgstr ""
|
610 |
|
611 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
612 |
msgid "Traffic Details"
|
613 |
msgstr ""
|
614 |
|
615 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
616 |
-
#: .././admin/widgets.php:
|
617 |
-
#: .././admin/widgets.php:
|
618 |
msgid "A JavaScript Error is blocking plugin resources!"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
622 |
msgid "Traffic Mediums"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
626 |
msgid "Visitor Type"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
630 |
msgid "Social Networks"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
634 |
msgid "Search Engines"
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
638 |
-
#: .././front/setup.php:101
|
639 |
msgid "Organic Search"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
643 |
-
#: .././front/setup.php:102
|
644 |
msgid "Pages/Session"
|
645 |
msgstr ""
|
646 |
|
647 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
648 |
-
#: .././admin/widgets.php:
|
649 |
-
#: .././admin/widgets.php:
|
650 |
-
#: .././admin/widgets.php:
|
651 |
-
#: .././admin/widgets.php:
|
652 |
-
#: .././admin/widgets.php:
|
653 |
-
#: .././admin/widgets.php:
|
654 |
-
#: .././admin/widgets.php:
|
655 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
656 |
msgstr ""
|
657 |
|
@@ -659,12 +657,12 @@ msgstr ""
|
|
659 |
msgid "Not enough data collected"
|
660 |
msgstr ""
|
661 |
|
662 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
-
#: .././admin/widgets.php:
|
667 |
-
#: .././admin/widgets.php:
|
668 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
669 |
msgid "This report is unavailable"
|
670 |
msgstr ""
|
@@ -673,25 +671,29 @@ msgstr ""
|
|
673 |
msgid "report generated by"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
677 |
msgid "Settings"
|
678 |
msgstr "Ustawienia"
|
679 |
|
680 |
-
#: .././admin/setup.php:
|
681 |
#, php-format
|
682 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: .././admin/setup.php:
|
686 |
#, php-format
|
687 |
msgid "For details, check out %1$s and %2$s."
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: .././admin/setup.php:
|
691 |
msgid "the documentation page"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: .././admin/setup.php:
|
695 |
msgid "the plugin's settings page"
|
696 |
msgstr ""
|
697 |
|
@@ -699,10 +701,6 @@ msgstr ""
|
|
699 |
msgid "Google Analytics Dashboard"
|
700 |
msgstr "Pulpit Google Analytics"
|
701 |
|
702 |
-
#: .././admin/widgets.php:32
|
703 |
-
msgid "This plugin needs an authorization:"
|
704 |
-
msgstr "Ta wtyczka wymaga autoryzacji:"
|
705 |
-
|
706 |
#: .././admin/widgets.php:66
|
707 |
msgid "Something went wrong while retrieving profiles list."
|
708 |
msgstr "Coś poszło nie tak podczas pobierania listy profili."
|
@@ -731,53 +729,53 @@ msgstr ""
|
|
731 |
msgid "Find out more!"
|
732 |
msgstr "Dowiedz sie więcej!"
|
733 |
|
734 |
-
#: .././admin/widgets.php:
|
735 |
msgid "Real-Time"
|
736 |
msgstr "Czas rzeczywisty"
|
737 |
|
738 |
-
#: .././admin/widgets.php:
|
739 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
740 |
-
#: .././tools/gapi.php:
|
741 |
-
#: .././tools/gapi.php:
|
742 |
msgid "Sessions"
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: .././admin/widgets.php:
|
746 |
msgid "Pages"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
msgid "REFERRAL"
|
751 |
msgstr "REFERUJĄCY"
|
752 |
|
753 |
-
#: .././admin/widgets.php:
|
754 |
msgid "ORGANIC"
|
755 |
msgstr "ORGANICZNE"
|
756 |
|
757 |
-
#: .././admin/widgets.php:
|
758 |
-
#: .././admin/widgets.php:
|
759 |
msgid "SOCIAL"
|
760 |
msgstr "SPOŁECZNE"
|
761 |
|
762 |
-
#: .././admin/widgets.php:
|
763 |
-
#: .././admin/widgets.php:
|
764 |
msgid "CAMPAIGN"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: .././admin/widgets.php:
|
768 |
-
#: .././admin/widgets.php:
|
769 |
msgid "DIRECT"
|
770 |
msgstr "BEZPOŚREDNIE"
|
771 |
|
772 |
-
#: .././admin/widgets.php:
|
773 |
msgid "NEW"
|
774 |
msgstr "NOWE"
|
775 |
|
776 |
-
#: .././admin/widgets.php:
|
777 |
msgid "REFERRALS"
|
778 |
msgstr "REFERUJĄCY"
|
779 |
|
780 |
-
#: .././admin/widgets.php:
|
781 |
msgid "KEYWORDS"
|
782 |
msgstr "SŁOWA KLUCZOWE"
|
783 |
|
@@ -785,10 +783,6 @@ msgstr "SŁOWA KLUCZOWE"
|
|
785 |
msgid "Will display your google analytics stats in a widget"
|
786 |
msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
|
787 |
|
788 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
789 |
-
msgid "trend"
|
790 |
-
msgstr ""
|
791 |
-
|
792 |
#: .././front/widgets.php:123
|
793 |
msgid "Period:"
|
794 |
msgstr "Okres:"
|
@@ -837,7 +831,7 @@ msgstr "Statystyki dla:"
|
|
837 |
msgid "Give credits:"
|
838 |
msgstr "Podziękuj:"
|
839 |
|
840 |
-
#: .././gadwp.php:
|
841 |
msgid "This is not allowed, read the documentation!"
|
842 |
msgstr ""
|
843 |
|
@@ -861,39 +855,39 @@ msgstr "Kod Dostępu:"
|
|
861 |
msgid "Save Access Code"
|
862 |
msgstr "Zapisz Kod Dostępu"
|
863 |
|
864 |
-
#: .././tools/gapi.php:
|
865 |
msgid "Organic Searches"
|
866 |
msgstr "Wyszukiwania organiczne"
|
867 |
|
868 |
-
#: .././tools/gapi.php:
|
869 |
msgid "Unique Page Views"
|
870 |
msgstr ""
|
871 |
|
872 |
-
#: .././tools/gapi.php:
|
873 |
msgid "Hour"
|
874 |
msgstr "Godzina"
|
875 |
|
876 |
-
#: .././tools/gapi.php:
|
877 |
msgid "Date"
|
878 |
msgstr "Data"
|
879 |
|
880 |
-
#: .././tools/gapi.php:
|
881 |
msgid "Views"
|
882 |
msgstr "Odsłon"
|
883 |
|
884 |
-
#: .././tools/gapi.php:
|
885 |
msgid "Countries"
|
886 |
msgstr ""
|
887 |
|
888 |
-
#: .././tools/gapi.php:
|
889 |
msgid "Cities from"
|
890 |
msgstr ""
|
891 |
|
892 |
-
#: .././tools/gapi.php:
|
893 |
msgid "Channels"
|
894 |
msgstr ""
|
895 |
|
896 |
-
#: .././tools/gapi.php:
|
897 |
msgid "Type"
|
898 |
msgstr "Typ"
|
899 |
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
5 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
6 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
7 |
"Language-Team: Alin Marcu\n"
|
8 |
"Language: pl\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.8.4\n"
|
13 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
14 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
15 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
26 |
|
27 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
28 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
29 |
+
#: .././admin/settings.php:1069
|
30 |
msgid "Settings saved."
|
31 |
msgstr ""
|
32 |
|
34 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
35 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
36 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
37 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
38 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
39 |
+
#: .././admin/settings.php:1082
|
40 |
msgid "Cheating Huh?"
|
41 |
msgstr "Oszukujemy, co?"
|
42 |
|
43 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
44 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
45 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
46 |
#, php-format
|
47 |
msgid "Something went wrong, check %1$s or %2$s."
|
48 |
msgstr ""
|
49 |
|
50 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
51 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
52 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
53 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
54 |
msgid "Errors & Debug"
|
55 |
msgstr ""
|
56 |
|
57 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
58 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
59 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
60 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
61 |
msgid "authorize the plugin"
|
62 |
msgstr "autoryzować wtyczkę"
|
63 |
|
78 |
msgstr ""
|
79 |
|
80 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
81 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
82 |
+
#: .././admin/settings.php:1234
|
83 |
msgid "Save Changes"
|
84 |
msgstr ""
|
85 |
|
138 |
msgstr ""
|
139 |
|
140 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
141 |
+
#: .././admin/settings.php:1217
|
142 |
msgid "Exclude Tracking"
|
143 |
msgstr "Wyklucz Śledzenie"
|
144 |
|
162 |
msgid "Enabled"
|
163 |
msgstr "Włączone"
|
164 |
|
165 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
166 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
167 |
#: .././admin/widgets.php:61
|
168 |
msgid "View Name:"
|
169 |
msgstr "Nazwa widoku:"
|
170 |
|
171 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
172 |
msgid "Tracking ID:"
|
173 |
msgstr "Tracking ID:"
|
174 |
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
176 |
msgid "Default URL:"
|
177 |
msgstr "Domyślny URL:"
|
178 |
|
179 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
180 |
msgid "Time Zone:"
|
181 |
msgstr "Strefa Czasowa:"
|
182 |
|
303 |
msgid "Plugin Configuration"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
307 |
msgid ""
|
308 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
309 |
"error, try this solution:"
|
313 |
msgid "Library conflicts between WordPress plugins"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
317 |
msgid "Plugin authorization succeeded."
|
318 |
msgstr "Autoryzacja wtyczki pomyślna."
|
319 |
|
320 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
321 |
msgid ""
|
322 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
323 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
324 |
msgstr ""
|
325 |
|
326 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
327 |
msgid "Cleared Cache."
|
328 |
msgstr "Cache wyczyszczony."
|
329 |
|
330 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
331 |
msgid "Token Reseted and Revoked."
|
332 |
msgstr "Token wyczyszczony i wycofany."
|
333 |
|
335 |
msgid "All errors reseted."
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
339 |
msgid "All other domains/properties were removed."
|
340 |
msgstr "Wszystkie inne domeny/właściwości zostały usunięte."
|
341 |
|
342 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
343 |
msgid "Google Analytics Settings"
|
344 |
msgstr "Ustawienia Google Analytics"
|
345 |
|
346 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
347 |
msgid "Use the red link (see below) to generate and get your access code!"
|
348 |
msgstr ""
|
349 |
|
350 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
351 |
msgid "Plugin Authorization"
|
352 |
msgstr "Autoryzacja Wtyczki"
|
353 |
|
354 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
355 |
#, php-format
|
356 |
msgid ""
|
357 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
359 |
"account!"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
363 |
msgid "video"
|
364 |
msgstr "film"
|
365 |
|
366 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
367 |
msgid "tutorial"
|
368 |
msgstr "tutorial"
|
369 |
|
370 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
371 |
msgid "use your own API Project credentials"
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
375 |
msgid "API Key:"
|
376 |
msgstr "Klucz API:"
|
377 |
|
378 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
379 |
msgid "Client ID:"
|
380 |
msgstr "ID Klienta:"
|
381 |
|
382 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
383 |
msgid "Client Secret:"
|
384 |
msgstr "Hasło Klienta:"
|
385 |
|
386 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
387 |
msgid "Clear Authorization"
|
388 |
msgstr "Czyść Autoryzację"
|
389 |
|
390 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
391 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
392 |
msgid "Clear Cache"
|
393 |
msgstr "Czyść Cache"
|
394 |
|
395 |
+
#: .././admin/settings.php:873
|
396 |
msgid "Reset Errors"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
400 |
msgid "General Settings"
|
401 |
msgstr "Ustawienia główne"
|
402 |
|
403 |
+
#: .././admin/settings.php:882
|
404 |
msgid "Select View:"
|
405 |
msgstr ""
|
406 |
|
407 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
408 |
msgid "Property not found"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#: .././admin/settings.php:899
|
412 |
msgid "Lock Selection"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: .././admin/settings.php:918
|
416 |
msgid "Theme Color:"
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
420 |
msgid "Automatic Updates"
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
424 |
msgid ""
|
425 |
"automatic updates for minor versions (security and maintenance releases only)"
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
429 |
#: .././admin/widgets.php:32
|
430 |
msgid "Authorize Plugin"
|
431 |
msgstr "Autoryzuj wtyczkę"
|
432 |
|
433 |
+
#: .././admin/settings.php:1027
|
434 |
msgid "Properties refreshed."
|
435 |
msgstr "Właściwości Odświeżone"
|
436 |
|
437 |
+
#: .././admin/settings.php:1112
|
438 |
msgid "Network Setup"
|
439 |
msgstr "Ustawienia Sieci"
|
440 |
|
441 |
+
#: .././admin/settings.php:1122
|
442 |
msgid "use a single Google Analytics account for the entire network"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: .././admin/settings.php:1167
|
446 |
msgid "Refresh Properties"
|
447 |
msgstr "Odśwież Właściwości"
|
448 |
|
449 |
+
#: .././admin/settings.php:1173
|
450 |
msgid "Properties/Views Settings"
|
451 |
msgstr "Ustawienia Właściwości /Widoków"
|
452 |
|
453 |
+
#: .././admin/settings.php:1227
|
454 |
msgid "exclude Super Admin tracking for the entire network"
|
455 |
msgstr ""
|
456 |
|
457 |
+
#: .././admin/settings.php:1275
|
458 |
msgid "Setup Tutorial & Demo"
|
459 |
msgstr "Ustaw Tutorial & Demo"
|
460 |
|
461 |
+
#: .././admin/settings.php:1283
|
462 |
msgid "Follow & Review"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: .././admin/settings.php:1309
|
466 |
#, php-format
|
467 |
msgid "Your feedback and review are both important, %s!"
|
468 |
msgstr ""
|
469 |
|
470 |
+
#: .././admin/settings.php:1309
|
471 |
msgid "rate this plugin"
|
472 |
msgstr "oceń tą wtyczkę"
|
473 |
|
474 |
+
#: .././admin/settings.php:1315
|
475 |
msgid "Further Reading"
|
476 |
msgstr "Inne Dokumenty"
|
477 |
|
478 |
+
#: .././admin/settings.php:1322
|
479 |
#, php-format
|
480 |
msgid "%s by moving your website to HTTPS/SSL."
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: .././admin/settings.php:1322
|
484 |
msgid "Improve search rankings"
|
485 |
msgstr ""
|
486 |
|
487 |
+
#: .././admin/settings.php:1329
|
488 |
#, php-format
|
489 |
msgid "Other %s written by the same author"
|
490 |
msgstr ""
|
491 |
|
492 |
+
#: .././admin/settings.php:1329
|
493 |
msgid "WordPress Plugins"
|
494 |
msgstr "Wtyczki WordPressa"
|
495 |
|
496 |
+
#: .././admin/settings.php:1335
|
497 |
msgid "Other Services"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: .././admin/settings.php:1342
|
501 |
#, php-format
|
502 |
msgid "Speed up your website and plug into a whole %s"
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: .././admin/settings.php:1342
|
506 |
msgid "new level of site speed"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: .././admin/settings.php:1349
|
510 |
#, php-format
|
511 |
msgid "%s service with users tracking at IP level."
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: .././admin/settings.php:1349
|
515 |
msgid "Web Analytics"
|
516 |
msgstr "Web Analytics"
|
517 |
|
531 |
msgid "Tracking Code"
|
532 |
msgstr "Kod śledzenia"
|
533 |
|
534 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
535 |
msgid "Today"
|
536 |
msgstr "Dzisiaj"
|
537 |
|
538 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
539 |
msgid "Yesterday"
|
540 |
msgstr "Wczoraj"
|
541 |
|
542 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
543 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
544 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
545 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
546 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
547 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
548 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
551 |
msgid "Last %d Days"
|
552 |
msgstr "Ostatnie %d dni"
|
553 |
|
554 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
555 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
556 |
#, php-format
|
557 |
msgid "%s Year"
|
558 |
msgid_plural "%s Years"
|
559 |
msgstr[0] ""
|
560 |
msgstr[1] ""
|
561 |
|
562 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
563 |
msgid "One"
|
564 |
msgstr ""
|
565 |
|
566 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
567 |
msgid "Three"
|
568 |
msgstr ""
|
569 |
|
572 |
msgid "Unique Views"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
576 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
577 |
+
#: .././tools/gapi.php:357
|
578 |
msgid "Users"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
582 |
msgid "Organic"
|
583 |
msgstr "Organiczne"
|
584 |
|
585 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
586 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
587 |
+
#: .././tools/gapi.php:360
|
588 |
msgid "Page Views"
|
589 |
msgstr "Wyświetleń strony"
|
590 |
|
591 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
592 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
593 |
+
#: .././tools/gapi.php:363
|
594 |
msgid "Bounce Rate"
|
595 |
msgstr "Współczynnik odrzuceń"
|
596 |
|
597 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
598 |
msgid "Location"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
602 |
+
#: .././tools/gapi.php:502
|
603 |
msgid "Referrers"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
607 |
+
#: .././tools/gapi.php:535
|
608 |
msgid "Searches"
|
609 |
msgstr ""
|
610 |
|
611 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
612 |
msgid "Traffic Details"
|
613 |
msgstr ""
|
614 |
|
615 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
616 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
617 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
618 |
msgid "A JavaScript Error is blocking plugin resources!"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
622 |
msgid "Traffic Mediums"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
626 |
msgid "Visitor Type"
|
627 |
msgstr ""
|
628 |
|
629 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
630 |
msgid "Social Networks"
|
631 |
msgstr ""
|
632 |
|
633 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
634 |
msgid "Search Engines"
|
635 |
msgstr ""
|
636 |
|
637 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
638 |
msgid "Organic Search"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
642 |
msgid "Pages/Session"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
646 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
647 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
648 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
649 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
650 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
651 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
652 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
653 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
654 |
msgstr ""
|
655 |
|
657 |
msgid "Not enough data collected"
|
658 |
msgstr ""
|
659 |
|
660 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
661 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
662 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
663 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
664 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
665 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
666 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
667 |
msgid "This report is unavailable"
|
668 |
msgstr ""
|
671 |
msgid "report generated by"
|
672 |
msgstr ""
|
673 |
|
674 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
675 |
+
msgid "This plugin needs an authorization:"
|
676 |
+
msgstr "Ta wtyczka wymaga autoryzacji:"
|
677 |
+
|
678 |
+
#: .././admin/setup.php:227
|
679 |
msgid "Settings"
|
680 |
msgstr "Ustawienia"
|
681 |
|
682 |
+
#: .././admin/setup.php:239
|
683 |
#, php-format
|
684 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
685 |
msgstr ""
|
686 |
|
687 |
+
#: .././admin/setup.php:239
|
688 |
#, php-format
|
689 |
msgid "For details, check out %1$s and %2$s."
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: .././admin/setup.php:239
|
693 |
msgid "the documentation page"
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: .././admin/setup.php:239
|
697 |
msgid "the plugin's settings page"
|
698 |
msgstr ""
|
699 |
|
701 |
msgid "Google Analytics Dashboard"
|
702 |
msgstr "Pulpit Google Analytics"
|
703 |
|
|
|
|
|
|
|
|
|
704 |
#: .././admin/widgets.php:66
|
705 |
msgid "Something went wrong while retrieving profiles list."
|
706 |
msgstr "Coś poszło nie tak podczas pobierania listy profili."
|
729 |
msgid "Find out more!"
|
730 |
msgstr "Dowiedz sie więcej!"
|
731 |
|
732 |
+
#: .././admin/widgets.php:113
|
733 |
msgid "Real-Time"
|
734 |
msgstr "Czas rzeczywisty"
|
735 |
|
736 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
737 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
738 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
739 |
+
#: .././tools/gapi.php:694
|
740 |
msgid "Sessions"
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
744 |
msgid "Pages"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
748 |
msgid "REFERRAL"
|
749 |
msgstr "REFERUJĄCY"
|
750 |
|
751 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
752 |
msgid "ORGANIC"
|
753 |
msgstr "ORGANICZNE"
|
754 |
|
755 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
756 |
+
#: .././admin/widgets.php:477
|
757 |
msgid "SOCIAL"
|
758 |
msgstr "SPOŁECZNE"
|
759 |
|
760 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
761 |
+
#: .././admin/widgets.php:478
|
762 |
msgid "CAMPAIGN"
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
766 |
+
#: .././admin/widgets.php:481
|
767 |
msgid "DIRECT"
|
768 |
msgstr "BEZPOŚREDNIE"
|
769 |
|
770 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
771 |
msgid "NEW"
|
772 |
msgstr "NOWE"
|
773 |
|
774 |
+
#: .././admin/widgets.php:355
|
775 |
msgid "REFERRALS"
|
776 |
msgstr "REFERUJĄCY"
|
777 |
|
778 |
+
#: .././admin/widgets.php:358
|
779 |
msgid "KEYWORDS"
|
780 |
msgstr "SŁOWA KLUCZOWE"
|
781 |
|
783 |
msgid "Will display your google analytics stats in a widget"
|
784 |
msgstr "Wyświetli twoje statystyki Google Analytics na widgecie"
|
785 |
|
|
|
|
|
|
|
|
|
786 |
#: .././front/widgets.php:123
|
787 |
msgid "Period:"
|
788 |
msgstr "Okres:"
|
831 |
msgid "Give credits:"
|
832 |
msgstr "Podziękuj:"
|
833 |
|
834 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
835 |
msgid "This is not allowed, read the documentation!"
|
836 |
msgstr ""
|
837 |
|
855 |
msgid "Save Access Code"
|
856 |
msgstr "Zapisz Kod Dostępu"
|
857 |
|
858 |
+
#: .././tools/gapi.php:366
|
859 |
msgid "Organic Searches"
|
860 |
msgstr "Wyszukiwania organiczne"
|
861 |
|
862 |
+
#: .././tools/gapi.php:369
|
863 |
msgid "Unique Page Views"
|
864 |
msgstr ""
|
865 |
|
866 |
+
#: .././tools/gapi.php:377
|
867 |
msgid "Hour"
|
868 |
msgstr "Godzina"
|
869 |
|
870 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
871 |
msgid "Date"
|
872 |
msgstr "Data"
|
873 |
|
874 |
+
#: .././tools/gapi.php:470
|
875 |
msgid "Views"
|
876 |
msgstr "Odsłon"
|
877 |
|
878 |
+
#: .././tools/gapi.php:556
|
879 |
msgid "Countries"
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: .././tools/gapi.php:566
|
883 |
msgid "Cities from"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: .././tools/gapi.php:619
|
887 |
msgid "Channels"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: .././tools/gapi.php:665
|
891 |
msgid "Type"
|
892 |
msgstr "Typ"
|
893 |
|
languages/{ga-dash-pt_BR.mo → google-analytics-dashboard-for-wp-pt_BR.mo}
RENAMED
Binary file
|
languages/{ga-dash-pt_BR.po → google-analytics-dashboard-for-wp-pt_BR.po}
RENAMED
@@ -3,15 +3,15 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP 4.6\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Treedbox.com <treedbox@gmail.com>\n"
|
10 |
"Language: pt_BR\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
-
"X-Generator: Poedit 1.8.
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -28,7 +28,7 @@ msgstr "Analytics"
|
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
-
#: .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Definições Salvas"
|
34 |
|
@@ -36,29 +36,30 @@ msgstr "Definições Salvas"
|
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
-
#: .././admin/settings.php:
|
40 |
-
#: .././admin/settings.php:
|
41 |
-
#: .././admin/settings.php:
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "A Curiosidade Matou o Gato :F"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Algo deu errado, verifique %1$s ou %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Erros & Depuração"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
62 |
msgid "authorize the plugin"
|
63 |
msgstr "Autorize o Plugin"
|
64 |
|
@@ -79,8 +80,8 @@ msgid "enable web page reports on frontend"
|
|
79 |
msgstr ""
|
80 |
|
81 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
82 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
83 |
-
#: .././admin/settings.php:
|
84 |
msgid "Save Changes"
|
85 |
msgstr "Salvar Mudanças"
|
86 |
|
@@ -141,7 +142,7 @@ msgid "Custom Definitions"
|
|
141 |
msgstr "Definições personalizadas"
|
142 |
|
143 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
144 |
-
#: .././admin/settings.php:
|
145 |
msgid "Exclude Tracking"
|
146 |
msgstr "Excluir Rastreamento"
|
147 |
|
@@ -165,21 +166,21 @@ msgstr "Desabilitar"
|
|
165 |
msgid "Enabled"
|
166 |
msgstr "Habilitar"
|
167 |
|
168 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
169 |
-
#: .././admin/settings.php:
|
170 |
#: .././admin/widgets.php:61
|
171 |
msgid "View Name:"
|
172 |
msgstr "Ver Nome:"
|
173 |
|
174 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
175 |
msgid "Tracking ID:"
|
176 |
msgstr "ID de rastreamento:"
|
177 |
|
178 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
179 |
msgid "Default URL:"
|
180 |
msgstr "URL Padrão:"
|
181 |
|
182 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
183 |
msgid "Time Zone:"
|
184 |
msgstr "Fuso horário:"
|
185 |
|
@@ -303,7 +304,7 @@ msgstr "Detalhes do Erro"
|
|
303 |
msgid "Plugin Configuration"
|
304 |
msgstr "Configuração do Plugin"
|
305 |
|
306 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
307 |
msgid ""
|
308 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
309 |
"error, try this solution:"
|
@@ -315,11 +316,11 @@ msgstr ""
|
|
315 |
msgid "Library conflicts between WordPress plugins"
|
316 |
msgstr "Conflito de Bibliotecas entre Plugins do Wordpress"
|
317 |
|
318 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
319 |
msgid "Plugin authorization succeeded."
|
320 |
msgstr "Plugin autorizado com sucesso."
|
321 |
|
322 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
323 |
msgid ""
|
324 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
325 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
@@ -328,11 +329,11 @@ msgstr ""
|
|
328 |
"</ strong> (UA-XXXXX-X). Tente de novo, e use o link vermelho para obter o "
|
329 |
"seu código de acesso"
|
330 |
|
331 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
332 |
msgid "Cleared Cache."
|
333 |
msgstr "Cache Limpo."
|
334 |
|
335 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
336 |
msgid "Token Reseted and Revoked."
|
337 |
msgstr "Token redefinido e revogado"
|
338 |
|
@@ -340,23 +341,23 @@ msgstr "Token redefinido e revogado"
|
|
340 |
msgid "All errors reseted."
|
341 |
msgstr "Todos erros reiniciados"
|
342 |
|
343 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
344 |
msgid "All other domains/properties were removed."
|
345 |
msgstr "Todos os outros domínios/propriedades foram removidas."
|
346 |
|
347 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
348 |
msgid "Google Analytics Settings"
|
349 |
msgstr "Configurações do Google Analytics"
|
350 |
|
351 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
352 |
msgid "Use the red link (see below) to generate and get your access code!"
|
353 |
msgstr "Use o link vermelho (abaixo) para gerar e pegar seu código de acesso."
|
354 |
|
355 |
-
#: .././admin/settings.php:
|
356 |
msgid "Plugin Authorization"
|
357 |
msgstr "Autorização do Plugin"
|
358 |
|
359 |
-
#: .././admin/settings.php:
|
360 |
#, php-format
|
361 |
msgid ""
|
362 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -367,161 +368,161 @@ msgstr ""
|
|
367 |
"autorização. Este plugin requer uma conta no Google Analytics corretamente "
|
368 |
"configurada!"
|
369 |
|
370 |
-
#: .././admin/settings.php:
|
371 |
msgid "video"
|
372 |
msgstr "vídeo"
|
373 |
|
374 |
-
#: .././admin/settings.php:
|
375 |
msgid "tutorial"
|
376 |
msgstr "tutorial"
|
377 |
|
378 |
-
#: .././admin/settings.php:
|
379 |
msgid "use your own API Project credentials"
|
380 |
msgstr "usar suas próprias credenciais da API do projeto"
|
381 |
|
382 |
-
#: .././admin/settings.php:
|
383 |
msgid "API Key:"
|
384 |
msgstr "Chave API:"
|
385 |
|
386 |
-
#: .././admin/settings.php:
|
387 |
msgid "Client ID:"
|
388 |
msgstr "ID do cliente:"
|
389 |
|
390 |
-
#: .././admin/settings.php:
|
391 |
msgid "Client Secret:"
|
392 |
msgstr "Cliente Secreto:"
|
393 |
|
394 |
-
#: .././admin/settings.php:
|
395 |
msgid "Clear Authorization"
|
396 |
msgstr "Limpar Autorização"
|
397 |
|
398 |
-
#: .././admin/settings.php:
|
399 |
-
#: .././admin/settings.php:
|
400 |
msgid "Clear Cache"
|
401 |
msgstr "Limpar Cache"
|
402 |
|
403 |
-
#: .././admin/settings.php:
|
404 |
msgid "Reset Errors"
|
405 |
msgstr "Reiniciar Erros"
|
406 |
|
407 |
-
#: .././admin/settings.php:
|
408 |
msgid "General Settings"
|
409 |
msgstr "Configurações Gerais"
|
410 |
|
411 |
-
#: .././admin/settings.php:
|
412 |
msgid "Select View:"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: .././admin/settings.php:
|
416 |
msgid "Property not found"
|
417 |
msgstr "Propriedade não econtrada"
|
418 |
|
419 |
-
#: .././admin/settings.php:
|
420 |
msgid "Lock Selection"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#: .././admin/settings.php:
|
424 |
msgid "Theme Color:"
|
425 |
msgstr "Cor do Tema:"
|
426 |
|
427 |
-
#: .././admin/settings.php:
|
428 |
msgid "Automatic Updates"
|
429 |
msgstr "Atualizações Automáticas"
|
430 |
|
431 |
-
#: .././admin/settings.php:
|
432 |
msgid ""
|
433 |
"automatic updates for minor versions (security and maintenance releases only)"
|
434 |
msgstr ""
|
435 |
"atualizações automáticas para versões menores (Só correções de Segurança e "
|
436 |
"de Manutenção)"
|
437 |
|
438 |
-
#: .././admin/settings.php:
|
439 |
#: .././admin/widgets.php:32
|
440 |
msgid "Authorize Plugin"
|
441 |
msgstr "Autorize o Plugin"
|
442 |
|
443 |
-
#: .././admin/settings.php:
|
444 |
msgid "Properties refreshed."
|
445 |
msgstr "Propriedades Atualizadas"
|
446 |
|
447 |
-
#: .././admin/settings.php:
|
448 |
msgid "Network Setup"
|
449 |
msgstr "Configuração de Rede"
|
450 |
|
451 |
-
#: .././admin/settings.php:
|
452 |
msgid "use a single Google Analytics account for the entire network"
|
453 |
msgstr "Use uma única conta do Google Analytics para toda a Rede"
|
454 |
|
455 |
-
#: .././admin/settings.php:
|
456 |
msgid "Refresh Properties"
|
457 |
msgstr "Atualizar Propriedades"
|
458 |
|
459 |
-
#: .././admin/settings.php:
|
460 |
msgid "Properties/Views Settings"
|
461 |
msgstr "Propriedades/Ver Definições"
|
462 |
|
463 |
-
#: .././admin/settings.php:
|
464 |
msgid "exclude Super Admin tracking for the entire network"
|
465 |
msgstr "Excluir rastreamento do Super Administrador para toda a rede"
|
466 |
|
467 |
-
#: .././admin/settings.php:
|
468 |
msgid "Setup Tutorial & Demo"
|
469 |
msgstr "Tutorial de Instalação e demonstrações"
|
470 |
|
471 |
-
#: .././admin/settings.php:
|
472 |
msgid "Follow & Review"
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: .././admin/settings.php:
|
476 |
#, php-format
|
477 |
msgid "Your feedback and review are both important, %s!"
|
478 |
msgstr "Seu Feedback e Review são importantes, %s!"
|
479 |
|
480 |
-
#: .././admin/settings.php:
|
481 |
msgid "rate this plugin"
|
482 |
msgstr "Avaliar este Plugin"
|
483 |
|
484 |
-
#: .././admin/settings.php:
|
485 |
msgid "Further Reading"
|
486 |
msgstr "Leitura adicional"
|
487 |
|
488 |
-
#: .././admin/settings.php:
|
489 |
#, php-format
|
490 |
msgid "%s by moving your website to HTTPS/SSL."
|
491 |
msgstr "%s movendo seu site para HTTPS/SSL."
|
492 |
|
493 |
-
#: .././admin/settings.php:
|
494 |
msgid "Improve search rankings"
|
495 |
msgstr "Melhorar classificação em buscas"
|
496 |
|
497 |
-
#: .././admin/settings.php:
|
498 |
#, php-format
|
499 |
msgid "Other %s written by the same author"
|
500 |
msgstr "Outros %s escritos pelo mesmo autor"
|
501 |
|
502 |
-
#: .././admin/settings.php:
|
503 |
msgid "WordPress Plugins"
|
504 |
msgstr "Plugin do Wordpress"
|
505 |
|
506 |
-
#: .././admin/settings.php:
|
507 |
msgid "Other Services"
|
508 |
msgstr "Outros Serviços"
|
509 |
|
510 |
-
#: .././admin/settings.php:
|
511 |
#, php-format
|
512 |
msgid "Speed up your website and plug into a whole %s"
|
513 |
msgstr "Aumente a velocidade do seu site em completamente %s"
|
514 |
|
515 |
-
#: .././admin/settings.php:
|
516 |
msgid "new level of site speed"
|
517 |
msgstr "Novo nível de velocidade do site"
|
518 |
|
519 |
-
#: .././admin/settings.php:
|
520 |
#, php-format
|
521 |
msgid "%s service with users tracking at IP level."
|
522 |
msgstr "%s serviços com rastreamento de usuário a nível de ip."
|
523 |
|
524 |
-
#: .././admin/settings.php:
|
525 |
msgid "Web Analytics"
|
526 |
msgstr "Web Analytics"
|
527 |
|
@@ -541,18 +542,18 @@ msgstr "Configurações Externas"
|
|
541 |
msgid "Tracking Code"
|
542 |
msgstr "Código de Rastreio"
|
543 |
|
544 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
545 |
msgid "Today"
|
546 |
msgstr "Hoje"
|
547 |
|
548 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
549 |
msgid "Yesterday"
|
550 |
msgstr "Ontem"
|
551 |
|
552 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
553 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
554 |
-
#: .././admin/widgets.php:
|
555 |
-
#: .././admin/widgets.php:
|
556 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
557 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
558 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -561,20 +562,19 @@ msgstr "Ontem"
|
|
561 |
msgid "Last %d Days"
|
562 |
msgstr "Últimos %d dias"
|
563 |
|
564 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
565 |
-
#: .././admin/widgets.php:
|
566 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
567 |
#, php-format
|
568 |
msgid "%s Year"
|
569 |
msgid_plural "%s Years"
|
570 |
msgstr[0] ""
|
571 |
msgstr[1] ""
|
572 |
|
573 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
574 |
msgid "One"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
578 |
msgid "Three"
|
579 |
msgstr ""
|
580 |
|
@@ -583,86 +583,84 @@ msgstr ""
|
|
583 |
msgid "Unique Views"
|
584 |
msgstr "Visão Única"
|
585 |
|
586 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
587 |
-
#: .././admin/widgets.php:
|
588 |
-
#: .././
|
589 |
msgid "Users"
|
590 |
msgstr "Usuários"
|
591 |
|
592 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
593 |
msgid "Organic"
|
594 |
msgstr "Orgânica"
|
595 |
|
596 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
597 |
-
#: .././admin/widgets.php:
|
598 |
-
#: .././
|
599 |
msgid "Page Views"
|
600 |
msgstr "Visualizações de Páginas"
|
601 |
|
602 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
603 |
-
#: .././admin/widgets.php:
|
604 |
-
#: .././
|
605 |
msgid "Bounce Rate"
|
606 |
msgstr "Taxa de Rejeição"
|
607 |
|
608 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
609 |
msgid "Location"
|
610 |
msgstr "Localização"
|
611 |
|
612 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
613 |
-
#: .././tools/gapi.php:
|
614 |
msgid "Referrers"
|
615 |
msgstr "Referências"
|
616 |
|
617 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
618 |
-
#: .././tools/gapi.php:
|
619 |
msgid "Searches"
|
620 |
msgstr "Pesquisas"
|
621 |
|
622 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
623 |
msgid "Traffic Details"
|
624 |
msgstr "Detalhe do Tráfego"
|
625 |
|
626 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
627 |
-
#: .././admin/widgets.php:
|
628 |
-
#: .././admin/widgets.php:
|
629 |
msgid "A JavaScript Error is blocking plugin resources!"
|
630 |
msgstr "Um JavaScript está bloqueando os recursos do plugin!"
|
631 |
|
632 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
633 |
msgid "Traffic Mediums"
|
634 |
msgstr "Média de Tráfego"
|
635 |
|
636 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
637 |
msgid "Visitor Type"
|
638 |
msgstr "Tipo de Visitantes"
|
639 |
|
640 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
641 |
msgid "Social Networks"
|
642 |
msgstr "Rede Social"
|
643 |
|
644 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
645 |
msgid "Search Engines"
|
646 |
msgstr "Mecanismos de Busca"
|
647 |
|
648 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
649 |
-
#: .././front/setup.php:101
|
650 |
msgid "Organic Search"
|
651 |
msgstr "Pesquisa Orgânica"
|
652 |
|
653 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
654 |
-
#: .././front/setup.php:102
|
655 |
msgid "Pages/Session"
|
656 |
msgstr "Página/Sessão"
|
657 |
|
658 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
659 |
-
#: .././admin/widgets.php:
|
660 |
-
#: .././admin/widgets.php:
|
661 |
-
#: .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
667 |
msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
|
668 |
|
@@ -670,12 +668,12 @@ msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
|
|
670 |
msgid "Not enough data collected"
|
671 |
msgstr "Dados coletados insuficientes"
|
672 |
|
673 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
674 |
-
#: .././admin/widgets.php:
|
675 |
-
#: .././admin/widgets.php:
|
676 |
-
#: .././admin/widgets.php:
|
677 |
-
#: .././admin/widgets.php:
|
678 |
-
#: .././admin/widgets.php:
|
679 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
680 |
msgid "This report is unavailable"
|
681 |
msgstr "Este Relatório não está disponível"
|
@@ -684,25 +682,29 @@ msgstr "Este Relatório não está disponível"
|
|
684 |
msgid "report generated by"
|
685 |
msgstr "Relatório gerado por"
|
686 |
|
687 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
688 |
msgid "Settings"
|
689 |
msgstr "Configurações"
|
690 |
|
691 |
-
#: .././admin/setup.php:
|
692 |
#, php-format
|
693 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
694 |
msgstr ""
|
695 |
|
696 |
-
#: .././admin/setup.php:
|
697 |
#, php-format
|
698 |
msgid "For details, check out %1$s and %2$s."
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: .././admin/setup.php:
|
702 |
msgid "the documentation page"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: .././admin/setup.php:
|
706 |
msgid "the plugin's settings page"
|
707 |
msgstr ""
|
708 |
|
@@ -710,10 +712,6 @@ msgstr ""
|
|
710 |
msgid "Google Analytics Dashboard"
|
711 |
msgstr "Painel do Google Analytics"
|
712 |
|
713 |
-
#: .././admin/widgets.php:32
|
714 |
-
msgid "This plugin needs an authorization:"
|
715 |
-
msgstr "Este Plugin precisa de uma autorização:"
|
716 |
-
|
717 |
#: .././admin/widgets.php:66
|
718 |
msgid "Something went wrong while retrieving profiles list."
|
719 |
msgstr "Algo deu errado durante a recuperação da lista de perfis."
|
@@ -742,53 +740,53 @@ msgstr ""
|
|
742 |
msgid "Find out more!"
|
743 |
msgstr "Saber mais!"
|
744 |
|
745 |
-
#: .././admin/widgets.php:
|
746 |
msgid "Real-Time"
|
747 |
msgstr "Tempo Real"
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
751 |
-
#: .././tools/gapi.php:
|
752 |
-
#: .././tools/gapi.php:
|
753 |
msgid "Sessions"
|
754 |
msgstr "Sessão"
|
755 |
|
756 |
-
#: .././admin/widgets.php:
|
757 |
msgid "Pages"
|
758 |
msgstr "Páginas"
|
759 |
|
760 |
-
#: .././admin/widgets.php:
|
761 |
msgid "REFERRAL"
|
762 |
msgstr "REFERÊNCIA"
|
763 |
|
764 |
-
#: .././admin/widgets.php:
|
765 |
msgid "ORGANIC"
|
766 |
msgstr "ORGÂNICO"
|
767 |
|
768 |
-
#: .././admin/widgets.php:
|
769 |
-
#: .././admin/widgets.php:
|
770 |
msgid "SOCIAL"
|
771 |
msgstr "SOCIAL"
|
772 |
|
773 |
-
#: .././admin/widgets.php:
|
774 |
-
#: .././admin/widgets.php:
|
775 |
msgid "CAMPAIGN"
|
776 |
msgstr "CAMPANHA"
|
777 |
|
778 |
-
#: .././admin/widgets.php:
|
779 |
-
#: .././admin/widgets.php:
|
780 |
msgid "DIRECT"
|
781 |
msgstr "DIRETO"
|
782 |
|
783 |
-
#: .././admin/widgets.php:
|
784 |
msgid "NEW"
|
785 |
msgstr "NOVO"
|
786 |
|
787 |
-
#: .././admin/widgets.php:
|
788 |
msgid "REFERRALS"
|
789 |
msgstr "REFERÊNCIAS"
|
790 |
|
791 |
-
#: .././admin/widgets.php:
|
792 |
msgid "KEYWORDS"
|
793 |
msgstr "PALAVRAS-CHAVE"
|
794 |
|
@@ -796,10 +794,6 @@ msgstr "PALAVRAS-CHAVE"
|
|
796 |
msgid "Will display your google analytics stats in a widget"
|
797 |
msgstr "Exibirá suas estatísticas google analytics em um Widget"
|
798 |
|
799 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
800 |
-
msgid "trend"
|
801 |
-
msgstr "Tendência"
|
802 |
-
|
803 |
#: .././front/widgets.php:123
|
804 |
msgid "Period:"
|
805 |
msgstr "período:"
|
@@ -848,7 +842,7 @@ msgstr "Estatísticas para:"
|
|
848 |
msgid "Give credits:"
|
849 |
msgstr "Créditos para:"
|
850 |
|
851 |
-
#: .././gadwp.php:
|
852 |
msgid "This is not allowed, read the documentation!"
|
853 |
msgstr "Isso não é permitido, leia a documentação!"
|
854 |
|
@@ -872,42 +866,45 @@ msgstr "Código de acesso:"
|
|
872 |
msgid "Save Access Code"
|
873 |
msgstr "Salvar Código de Acesso"
|
874 |
|
875 |
-
#: .././tools/gapi.php:
|
876 |
msgid "Organic Searches"
|
877 |
msgstr "Pesquisas Ôrganicas"
|
878 |
|
879 |
-
#: .././tools/gapi.php:
|
880 |
msgid "Unique Page Views"
|
881 |
msgstr "Visualização única de página"
|
882 |
|
883 |
-
#: .././tools/gapi.php:
|
884 |
msgid "Hour"
|
885 |
msgstr "Hora"
|
886 |
|
887 |
-
#: .././tools/gapi.php:
|
888 |
msgid "Date"
|
889 |
msgstr "Dia"
|
890 |
|
891 |
-
#: .././tools/gapi.php:
|
892 |
msgid "Views"
|
893 |
msgstr "Visualizações"
|
894 |
|
895 |
-
#: .././tools/gapi.php:
|
896 |
msgid "Countries"
|
897 |
msgstr "Países"
|
898 |
|
899 |
-
#: .././tools/gapi.php:
|
900 |
msgid "Cities from"
|
901 |
msgstr "das Cidades"
|
902 |
|
903 |
-
#: .././tools/gapi.php:
|
904 |
msgid "Channels"
|
905 |
msgstr "Canal"
|
906 |
|
907 |
-
#: .././tools/gapi.php:
|
908 |
msgid "Type"
|
909 |
msgstr "Tipo"
|
910 |
|
|
|
|
|
|
|
911 |
#~ msgid "Last 7 Days"
|
912 |
#~ msgstr "Últimos 7 dias"
|
913 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP 4.6\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Treedbox.com <treedbox@gmail.com>\n"
|
10 |
"Language: pt_BR\n"
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.4\n"
|
15 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
16 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
17 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
28 |
|
29 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
30 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
31 |
+
#: .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Definições Salvas"
|
34 |
|
36 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
37 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
38 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
39 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
40 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
41 |
+
#: .././admin/settings.php:1082
|
42 |
msgid "Cheating Huh?"
|
43 |
msgstr "A Curiosidade Matou o Gato :F"
|
44 |
|
45 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
46 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
47 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
48 |
#, php-format
|
49 |
msgid "Something went wrong, check %1$s or %2$s."
|
50 |
msgstr "Algo deu errado, verifique %1$s ou %2$s."
|
51 |
|
52 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
53 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
54 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
55 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
56 |
msgid "Errors & Debug"
|
57 |
msgstr "Erros & Depuração"
|
58 |
|
59 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
60 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
61 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
62 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
63 |
msgid "authorize the plugin"
|
64 |
msgstr "Autorize o Plugin"
|
65 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
83 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
84 |
+
#: .././admin/settings.php:1234
|
85 |
msgid "Save Changes"
|
86 |
msgstr "Salvar Mudanças"
|
87 |
|
142 |
msgstr "Definições personalizadas"
|
143 |
|
144 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
145 |
+
#: .././admin/settings.php:1217
|
146 |
msgid "Exclude Tracking"
|
147 |
msgstr "Excluir Rastreamento"
|
148 |
|
166 |
msgid "Enabled"
|
167 |
msgstr "Habilitar"
|
168 |
|
169 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
170 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
171 |
#: .././admin/widgets.php:61
|
172 |
msgid "View Name:"
|
173 |
msgstr "Ver Nome:"
|
174 |
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
176 |
msgid "Tracking ID:"
|
177 |
msgstr "ID de rastreamento:"
|
178 |
|
179 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
180 |
msgid "Default URL:"
|
181 |
msgstr "URL Padrão:"
|
182 |
|
183 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
184 |
msgid "Time Zone:"
|
185 |
msgstr "Fuso horário:"
|
186 |
|
304 |
msgid "Plugin Configuration"
|
305 |
msgstr "Configuração do Plugin"
|
306 |
|
307 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
308 |
msgid ""
|
309 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
310 |
"error, try this solution:"
|
316 |
msgid "Library conflicts between WordPress plugins"
|
317 |
msgstr "Conflito de Bibliotecas entre Plugins do Wordpress"
|
318 |
|
319 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
320 |
msgid "Plugin authorization succeeded."
|
321 |
msgstr "Plugin autorizado com sucesso."
|
322 |
|
323 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
324 |
msgid ""
|
325 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
326 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
329 |
"</ strong> (UA-XXXXX-X). Tente de novo, e use o link vermelho para obter o "
|
330 |
"seu código de acesso"
|
331 |
|
332 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
333 |
msgid "Cleared Cache."
|
334 |
msgstr "Cache Limpo."
|
335 |
|
336 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
337 |
msgid "Token Reseted and Revoked."
|
338 |
msgstr "Token redefinido e revogado"
|
339 |
|
341 |
msgid "All errors reseted."
|
342 |
msgstr "Todos erros reiniciados"
|
343 |
|
344 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
345 |
msgid "All other domains/properties were removed."
|
346 |
msgstr "Todos os outros domínios/propriedades foram removidas."
|
347 |
|
348 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
349 |
msgid "Google Analytics Settings"
|
350 |
msgstr "Configurações do Google Analytics"
|
351 |
|
352 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
353 |
msgid "Use the red link (see below) to generate and get your access code!"
|
354 |
msgstr "Use o link vermelho (abaixo) para gerar e pegar seu código de acesso."
|
355 |
|
356 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
357 |
msgid "Plugin Authorization"
|
358 |
msgstr "Autorização do Plugin"
|
359 |
|
360 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
361 |
#, php-format
|
362 |
msgid ""
|
363 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
368 |
"autorização. Este plugin requer uma conta no Google Analytics corretamente "
|
369 |
"configurada!"
|
370 |
|
371 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
372 |
msgid "video"
|
373 |
msgstr "vídeo"
|
374 |
|
375 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
376 |
msgid "tutorial"
|
377 |
msgstr "tutorial"
|
378 |
|
379 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
380 |
msgid "use your own API Project credentials"
|
381 |
msgstr "usar suas próprias credenciais da API do projeto"
|
382 |
|
383 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
384 |
msgid "API Key:"
|
385 |
msgstr "Chave API:"
|
386 |
|
387 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
388 |
msgid "Client ID:"
|
389 |
msgstr "ID do cliente:"
|
390 |
|
391 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
392 |
msgid "Client Secret:"
|
393 |
msgstr "Cliente Secreto:"
|
394 |
|
395 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
396 |
msgid "Clear Authorization"
|
397 |
msgstr "Limpar Autorização"
|
398 |
|
399 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
400 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
401 |
msgid "Clear Cache"
|
402 |
msgstr "Limpar Cache"
|
403 |
|
404 |
+
#: .././admin/settings.php:873
|
405 |
msgid "Reset Errors"
|
406 |
msgstr "Reiniciar Erros"
|
407 |
|
408 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
409 |
msgid "General Settings"
|
410 |
msgstr "Configurações Gerais"
|
411 |
|
412 |
+
#: .././admin/settings.php:882
|
413 |
msgid "Select View:"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
417 |
msgid "Property not found"
|
418 |
msgstr "Propriedade não econtrada"
|
419 |
|
420 |
+
#: .././admin/settings.php:899
|
421 |
msgid "Lock Selection"
|
422 |
msgstr ""
|
423 |
|
424 |
+
#: .././admin/settings.php:918
|
425 |
msgid "Theme Color:"
|
426 |
msgstr "Cor do Tema:"
|
427 |
|
428 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
429 |
msgid "Automatic Updates"
|
430 |
msgstr "Atualizações Automáticas"
|
431 |
|
432 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
433 |
msgid ""
|
434 |
"automatic updates for minor versions (security and maintenance releases only)"
|
435 |
msgstr ""
|
436 |
"atualizações automáticas para versões menores (Só correções de Segurança e "
|
437 |
"de Manutenção)"
|
438 |
|
439 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
440 |
#: .././admin/widgets.php:32
|
441 |
msgid "Authorize Plugin"
|
442 |
msgstr "Autorize o Plugin"
|
443 |
|
444 |
+
#: .././admin/settings.php:1027
|
445 |
msgid "Properties refreshed."
|
446 |
msgstr "Propriedades Atualizadas"
|
447 |
|
448 |
+
#: .././admin/settings.php:1112
|
449 |
msgid "Network Setup"
|
450 |
msgstr "Configuração de Rede"
|
451 |
|
452 |
+
#: .././admin/settings.php:1122
|
453 |
msgid "use a single Google Analytics account for the entire network"
|
454 |
msgstr "Use uma única conta do Google Analytics para toda a Rede"
|
455 |
|
456 |
+
#: .././admin/settings.php:1167
|
457 |
msgid "Refresh Properties"
|
458 |
msgstr "Atualizar Propriedades"
|
459 |
|
460 |
+
#: .././admin/settings.php:1173
|
461 |
msgid "Properties/Views Settings"
|
462 |
msgstr "Propriedades/Ver Definições"
|
463 |
|
464 |
+
#: .././admin/settings.php:1227
|
465 |
msgid "exclude Super Admin tracking for the entire network"
|
466 |
msgstr "Excluir rastreamento do Super Administrador para toda a rede"
|
467 |
|
468 |
+
#: .././admin/settings.php:1275
|
469 |
msgid "Setup Tutorial & Demo"
|
470 |
msgstr "Tutorial de Instalação e demonstrações"
|
471 |
|
472 |
+
#: .././admin/settings.php:1283
|
473 |
msgid "Follow & Review"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: .././admin/settings.php:1309
|
477 |
#, php-format
|
478 |
msgid "Your feedback and review are both important, %s!"
|
479 |
msgstr "Seu Feedback e Review são importantes, %s!"
|
480 |
|
481 |
+
#: .././admin/settings.php:1309
|
482 |
msgid "rate this plugin"
|
483 |
msgstr "Avaliar este Plugin"
|
484 |
|
485 |
+
#: .././admin/settings.php:1315
|
486 |
msgid "Further Reading"
|
487 |
msgstr "Leitura adicional"
|
488 |
|
489 |
+
#: .././admin/settings.php:1322
|
490 |
#, php-format
|
491 |
msgid "%s by moving your website to HTTPS/SSL."
|
492 |
msgstr "%s movendo seu site para HTTPS/SSL."
|
493 |
|
494 |
+
#: .././admin/settings.php:1322
|
495 |
msgid "Improve search rankings"
|
496 |
msgstr "Melhorar classificação em buscas"
|
497 |
|
498 |
+
#: .././admin/settings.php:1329
|
499 |
#, php-format
|
500 |
msgid "Other %s written by the same author"
|
501 |
msgstr "Outros %s escritos pelo mesmo autor"
|
502 |
|
503 |
+
#: .././admin/settings.php:1329
|
504 |
msgid "WordPress Plugins"
|
505 |
msgstr "Plugin do Wordpress"
|
506 |
|
507 |
+
#: .././admin/settings.php:1335
|
508 |
msgid "Other Services"
|
509 |
msgstr "Outros Serviços"
|
510 |
|
511 |
+
#: .././admin/settings.php:1342
|
512 |
#, php-format
|
513 |
msgid "Speed up your website and plug into a whole %s"
|
514 |
msgstr "Aumente a velocidade do seu site em completamente %s"
|
515 |
|
516 |
+
#: .././admin/settings.php:1342
|
517 |
msgid "new level of site speed"
|
518 |
msgstr "Novo nível de velocidade do site"
|
519 |
|
520 |
+
#: .././admin/settings.php:1349
|
521 |
#, php-format
|
522 |
msgid "%s service with users tracking at IP level."
|
523 |
msgstr "%s serviços com rastreamento de usuário a nível de ip."
|
524 |
|
525 |
+
#: .././admin/settings.php:1349
|
526 |
msgid "Web Analytics"
|
527 |
msgstr "Web Analytics"
|
528 |
|
542 |
msgid "Tracking Code"
|
543 |
msgstr "Código de Rastreio"
|
544 |
|
545 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
546 |
msgid "Today"
|
547 |
msgstr "Hoje"
|
548 |
|
549 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
550 |
msgid "Yesterday"
|
551 |
msgstr "Ontem"
|
552 |
|
553 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
554 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
555 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
556 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
557 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
558 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
559 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
562 |
msgid "Last %d Days"
|
563 |
msgstr "Últimos %d dias"
|
564 |
|
565 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
566 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
567 |
#, php-format
|
568 |
msgid "%s Year"
|
569 |
msgid_plural "%s Years"
|
570 |
msgstr[0] ""
|
571 |
msgstr[1] ""
|
572 |
|
573 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
574 |
msgid "One"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
578 |
msgid "Three"
|
579 |
msgstr ""
|
580 |
|
583 |
msgid "Unique Views"
|
584 |
msgstr "Visão Única"
|
585 |
|
586 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
587 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
588 |
+
#: .././tools/gapi.php:357
|
589 |
msgid "Users"
|
590 |
msgstr "Usuários"
|
591 |
|
592 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
593 |
msgid "Organic"
|
594 |
msgstr "Orgânica"
|
595 |
|
596 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
597 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
598 |
+
#: .././tools/gapi.php:360
|
599 |
msgid "Page Views"
|
600 |
msgstr "Visualizações de Páginas"
|
601 |
|
602 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
603 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
604 |
+
#: .././tools/gapi.php:363
|
605 |
msgid "Bounce Rate"
|
606 |
msgstr "Taxa de Rejeição"
|
607 |
|
608 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
609 |
msgid "Location"
|
610 |
msgstr "Localização"
|
611 |
|
612 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
613 |
+
#: .././tools/gapi.php:502
|
614 |
msgid "Referrers"
|
615 |
msgstr "Referências"
|
616 |
|
617 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
618 |
+
#: .././tools/gapi.php:535
|
619 |
msgid "Searches"
|
620 |
msgstr "Pesquisas"
|
621 |
|
622 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
623 |
msgid "Traffic Details"
|
624 |
msgstr "Detalhe do Tráfego"
|
625 |
|
626 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
627 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
628 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
629 |
msgid "A JavaScript Error is blocking plugin resources!"
|
630 |
msgstr "Um JavaScript está bloqueando os recursos do plugin!"
|
631 |
|
632 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
633 |
msgid "Traffic Mediums"
|
634 |
msgstr "Média de Tráfego"
|
635 |
|
636 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
637 |
msgid "Visitor Type"
|
638 |
msgstr "Tipo de Visitantes"
|
639 |
|
640 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
641 |
msgid "Social Networks"
|
642 |
msgstr "Rede Social"
|
643 |
|
644 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
645 |
msgid "Search Engines"
|
646 |
msgstr "Mecanismos de Busca"
|
647 |
|
648 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
649 |
msgid "Organic Search"
|
650 |
msgstr "Pesquisa Orgânica"
|
651 |
|
652 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
653 |
msgid "Pages/Session"
|
654 |
msgstr "Página/Sessão"
|
655 |
|
656 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
657 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
658 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
659 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
660 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
661 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
662 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
663 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
664 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
665 |
msgstr "Resposta inválida, mais detalhes no JavaScript Console (F12)."
|
666 |
|
668 |
msgid "Not enough data collected"
|
669 |
msgstr "Dados coletados insuficientes"
|
670 |
|
671 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
672 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
673 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
674 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
675 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
676 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
677 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
678 |
msgid "This report is unavailable"
|
679 |
msgstr "Este Relatório não está disponível"
|
682 |
msgid "report generated by"
|
683 |
msgstr "Relatório gerado por"
|
684 |
|
685 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
686 |
+
msgid "This plugin needs an authorization:"
|
687 |
+
msgstr "Este Plugin precisa de uma autorização:"
|
688 |
+
|
689 |
+
#: .././admin/setup.php:227
|
690 |
msgid "Settings"
|
691 |
msgstr "Configurações"
|
692 |
|
693 |
+
#: .././admin/setup.php:239
|
694 |
#, php-format
|
695 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: .././admin/setup.php:239
|
699 |
#, php-format
|
700 |
msgid "For details, check out %1$s and %2$s."
|
701 |
msgstr ""
|
702 |
|
703 |
+
#: .././admin/setup.php:239
|
704 |
msgid "the documentation page"
|
705 |
msgstr ""
|
706 |
|
707 |
+
#: .././admin/setup.php:239
|
708 |
msgid "the plugin's settings page"
|
709 |
msgstr ""
|
710 |
|
712 |
msgid "Google Analytics Dashboard"
|
713 |
msgstr "Painel do Google Analytics"
|
714 |
|
|
|
|
|
|
|
|
|
715 |
#: .././admin/widgets.php:66
|
716 |
msgid "Something went wrong while retrieving profiles list."
|
717 |
msgstr "Algo deu errado durante a recuperação da lista de perfis."
|
740 |
msgid "Find out more!"
|
741 |
msgstr "Saber mais!"
|
742 |
|
743 |
+
#: .././admin/widgets.php:113
|
744 |
msgid "Real-Time"
|
745 |
msgstr "Tempo Real"
|
746 |
|
747 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
748 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
749 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
750 |
+
#: .././tools/gapi.php:694
|
751 |
msgid "Sessions"
|
752 |
msgstr "Sessão"
|
753 |
|
754 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
755 |
msgid "Pages"
|
756 |
msgstr "Páginas"
|
757 |
|
758 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
759 |
msgid "REFERRAL"
|
760 |
msgstr "REFERÊNCIA"
|
761 |
|
762 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
763 |
msgid "ORGANIC"
|
764 |
msgstr "ORGÂNICO"
|
765 |
|
766 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
767 |
+
#: .././admin/widgets.php:477
|
768 |
msgid "SOCIAL"
|
769 |
msgstr "SOCIAL"
|
770 |
|
771 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
772 |
+
#: .././admin/widgets.php:478
|
773 |
msgid "CAMPAIGN"
|
774 |
msgstr "CAMPANHA"
|
775 |
|
776 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
777 |
+
#: .././admin/widgets.php:481
|
778 |
msgid "DIRECT"
|
779 |
msgstr "DIRETO"
|
780 |
|
781 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
782 |
msgid "NEW"
|
783 |
msgstr "NOVO"
|
784 |
|
785 |
+
#: .././admin/widgets.php:355
|
786 |
msgid "REFERRALS"
|
787 |
msgstr "REFERÊNCIAS"
|
788 |
|
789 |
+
#: .././admin/widgets.php:358
|
790 |
msgid "KEYWORDS"
|
791 |
msgstr "PALAVRAS-CHAVE"
|
792 |
|
794 |
msgid "Will display your google analytics stats in a widget"
|
795 |
msgstr "Exibirá suas estatísticas google analytics em um Widget"
|
796 |
|
|
|
|
|
|
|
|
|
797 |
#: .././front/widgets.php:123
|
798 |
msgid "Period:"
|
799 |
msgstr "período:"
|
842 |
msgid "Give credits:"
|
843 |
msgstr "Créditos para:"
|
844 |
|
845 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
846 |
msgid "This is not allowed, read the documentation!"
|
847 |
msgstr "Isso não é permitido, leia a documentação!"
|
848 |
|
866 |
msgid "Save Access Code"
|
867 |
msgstr "Salvar Código de Acesso"
|
868 |
|
869 |
+
#: .././tools/gapi.php:366
|
870 |
msgid "Organic Searches"
|
871 |
msgstr "Pesquisas Ôrganicas"
|
872 |
|
873 |
+
#: .././tools/gapi.php:369
|
874 |
msgid "Unique Page Views"
|
875 |
msgstr "Visualização única de página"
|
876 |
|
877 |
+
#: .././tools/gapi.php:377
|
878 |
msgid "Hour"
|
879 |
msgstr "Hora"
|
880 |
|
881 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
882 |
msgid "Date"
|
883 |
msgstr "Dia"
|
884 |
|
885 |
+
#: .././tools/gapi.php:470
|
886 |
msgid "Views"
|
887 |
msgstr "Visualizações"
|
888 |
|
889 |
+
#: .././tools/gapi.php:556
|
890 |
msgid "Countries"
|
891 |
msgstr "Países"
|
892 |
|
893 |
+
#: .././tools/gapi.php:566
|
894 |
msgid "Cities from"
|
895 |
msgstr "das Cidades"
|
896 |
|
897 |
+
#: .././tools/gapi.php:619
|
898 |
msgid "Channels"
|
899 |
msgstr "Canal"
|
900 |
|
901 |
+
#: .././tools/gapi.php:665
|
902 |
msgid "Type"
|
903 |
msgstr "Tipo"
|
904 |
|
905 |
+
#~ msgid "trend"
|
906 |
+
#~ msgstr "Tendência"
|
907 |
+
|
908 |
#~ msgid "Last 7 Days"
|
909 |
#~ msgstr "Últimos 7 dias"
|
910 |
|
languages/{ga-dash-ro_RO.mo → google-analytics-dashboard-for-wp-ro_RO.mo}
RENAMED
File without changes
|
languages/{ga-dash-ro_RO.po → google-analytics-dashboard-for-wp-ro_RO.po}
RENAMED
@@ -3,8 +3,8 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
-
"POT-Creation-Date: 2015-
|
7 |
-
"PO-Revision-Date: 2015-
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Nicolae Sfetcu\n"
|
10 |
"Language: ro\n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
15 |
"2:1));\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
-
"X-Generator: Poedit 1.8.
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
@@ -30,7 +30,7 @@ msgstr "Analytics"
|
|
30 |
|
31 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
32 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
33 |
-
#: .././admin/settings.php:
|
34 |
msgid "Settings saved."
|
35 |
msgstr "Setări salvate."
|
36 |
|
@@ -38,29 +38,30 @@ msgstr "Setări salvate."
|
|
38 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
39 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
40 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
41 |
-
#: .././admin/settings.php:
|
42 |
-
#: .././admin/settings.php:
|
43 |
-
#: .././admin/settings.php:
|
44 |
msgid "Cheating Huh?"
|
45 |
msgstr "Hei, trișezi?"
|
46 |
|
47 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
48 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
49 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
50 |
#, php-format
|
51 |
msgid "Something went wrong, check %1$s or %2$s."
|
52 |
msgstr "Ceva nu e în regulă, verifică %1$s sau %2$s"
|
53 |
|
54 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
55 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
56 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
57 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
58 |
msgid "Errors & Debug"
|
59 |
msgstr "Erori și depanare"
|
60 |
|
61 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
62 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
63 |
-
#: .././admin/settings.php:823 .././admin/settings.php:
|
|
|
64 |
msgid "authorize the plugin"
|
65 |
msgstr "autorizează modulul"
|
66 |
|
@@ -81,8 +82,8 @@ msgid "enable web page reports on frontend"
|
|
81 |
msgstr "activează rapoarte pentru paginile din față"
|
82 |
|
83 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
84 |
-
#: .././admin/settings.php:598 .././admin/settings.php:
|
85 |
-
#: .././admin/settings.php:
|
86 |
msgid "Save Changes"
|
87 |
msgstr "Salvează modificările"
|
88 |
|
@@ -143,7 +144,7 @@ msgid "Custom Definitions"
|
|
143 |
msgstr "Definiții personalizate"
|
144 |
|
145 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
146 |
-
#: .././admin/settings.php:
|
147 |
msgid "Exclude Tracking"
|
148 |
msgstr "Exclude urmărirea"
|
149 |
|
@@ -167,21 +168,21 @@ msgstr "Dezactivat"
|
|
167 |
msgid "Enabled"
|
168 |
msgstr "Activat"
|
169 |
|
170 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
171 |
-
#: .././admin/settings.php:
|
172 |
#: .././admin/widgets.php:61
|
173 |
msgid "View Name:"
|
174 |
msgstr "Nume afișare:"
|
175 |
|
176 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
177 |
msgid "Tracking ID:"
|
178 |
msgstr "ID urmărire:"
|
179 |
|
180 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
181 |
msgid "Default URL:"
|
182 |
msgstr "URL implicit:"
|
183 |
|
184 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
185 |
msgid "Time Zone:"
|
186 |
msgstr "Fus orar:"
|
187 |
|
@@ -305,7 +306,7 @@ msgstr "Detalii eroare"
|
|
305 |
msgid "Plugin Configuration"
|
306 |
msgstr "Configurare modul"
|
307 |
|
308 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
309 |
msgid ""
|
310 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
311 |
"error, try this solution:"
|
@@ -317,11 +318,11 @@ msgstr ""
|
|
317 |
msgid "Library conflicts between WordPress plugins"
|
318 |
msgstr "Conflicte de bibliotecă între module WordPress"
|
319 |
|
320 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
321 |
msgid "Plugin authorization succeeded."
|
322 |
msgstr "Autorizarea modulului a reușit."
|
323 |
|
324 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
325 |
msgid ""
|
326 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
327 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
@@ -330,11 +331,11 @@ msgstr ""
|
|
330 |
"strong> (UA-XXXXX-X). Încearcă din nou, și folosește legătura cu roșu pentru "
|
331 |
"a obține codul tău de acces"
|
332 |
|
333 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
334 |
msgid "Cleared Cache."
|
335 |
msgstr "Cache golit."
|
336 |
|
337 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
338 |
msgid "Token Reseted and Revoked."
|
339 |
msgstr "Jeton resetat și revocat."
|
340 |
|
@@ -342,25 +343,25 @@ msgstr "Jeton resetat și revocat."
|
|
342 |
msgid "All errors reseted."
|
343 |
msgstr "Toate erorile resetate."
|
344 |
|
345 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
346 |
msgid "All other domains/properties were removed."
|
347 |
msgstr "Toate celelalte domenii/proprietăți au fost înlăturate."
|
348 |
|
349 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
350 |
msgid "Google Analytics Settings"
|
351 |
msgstr "Setări Google Analytics"
|
352 |
|
353 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
354 |
msgid "Use the red link (see below) to generate and get your access code!"
|
355 |
msgstr ""
|
356 |
"Folosește legătura cu roșu (vezi mai jos) pentru a genera și obține codul "
|
357 |
"tău de acces!"
|
358 |
|
359 |
-
#: .././admin/settings.php:
|
360 |
msgid "Plugin Authorization"
|
361 |
msgstr "Autorizare modul"
|
362 |
|
363 |
-
#: .././admin/settings.php:
|
364 |
#, php-format
|
365 |
msgid ""
|
366 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
@@ -370,160 +371,160 @@ msgstr ""
|
|
370 |
"Trebuie să te uiți la %1$s și să citești acest %2$s înainte de a continua cu "
|
371 |
"autorizarea. Acest modul necesită un cont Google Analytics configurat corect!"
|
372 |
|
373 |
-
#: .././admin/settings.php:
|
374 |
msgid "video"
|
375 |
msgstr "video"
|
376 |
|
377 |
-
#: .././admin/settings.php:
|
378 |
msgid "tutorial"
|
379 |
msgstr "tutorial"
|
380 |
|
381 |
-
#: .././admin/settings.php:
|
382 |
msgid "use your own API Project credentials"
|
383 |
msgstr "folosește-ți propriile credențiale de proiect API"
|
384 |
|
385 |
-
#: .././admin/settings.php:
|
386 |
msgid "API Key:"
|
387 |
msgstr "Cheie API:"
|
388 |
|
389 |
-
#: .././admin/settings.php:
|
390 |
msgid "Client ID:"
|
391 |
msgstr "ID client:"
|
392 |
|
393 |
-
#: .././admin/settings.php:
|
394 |
msgid "Client Secret:"
|
395 |
msgstr "Secret client:"
|
396 |
|
397 |
-
#: .././admin/settings.php:
|
398 |
msgid "Clear Authorization"
|
399 |
msgstr "Șterge autorizarea"
|
400 |
|
401 |
-
#: .././admin/settings.php:
|
402 |
-
#: .././admin/settings.php:
|
403 |
msgid "Clear Cache"
|
404 |
msgstr "Golește cache"
|
405 |
|
406 |
-
#: .././admin/settings.php:
|
407 |
msgid "Reset Errors"
|
408 |
msgstr "Resetează erori"
|
409 |
|
410 |
-
#: .././admin/settings.php:
|
411 |
msgid "General Settings"
|
412 |
msgstr "Setări generale"
|
413 |
|
414 |
-
#: .././admin/settings.php:
|
415 |
msgid "Select View:"
|
416 |
msgstr "Selectare afișare:"
|
417 |
|
418 |
-
#: .././admin/settings.php:
|
419 |
msgid "Property not found"
|
420 |
msgstr "Proprietate negăsită"
|
421 |
|
422 |
-
#: .././admin/settings.php:
|
423 |
msgid "Lock Selection"
|
424 |
msgstr "Blocare selecție"
|
425 |
|
426 |
-
#: .././admin/settings.php:
|
427 |
msgid "Theme Color:"
|
428 |
msgstr "Culoare temă:"
|
429 |
|
430 |
-
#: .././admin/settings.php:
|
431 |
msgid "Automatic Updates"
|
432 |
msgstr "Actualizări automate"
|
433 |
|
434 |
-
#: .././admin/settings.php:
|
435 |
msgid ""
|
436 |
"automatic updates for minor versions (security and maintenance releases only)"
|
437 |
msgstr ""
|
438 |
"actualizări automate pentru versiuni minore (doar securitate și întreținere)"
|
439 |
|
440 |
-
#: .././admin/settings.php:
|
441 |
#: .././admin/widgets.php:32
|
442 |
msgid "Authorize Plugin"
|
443 |
msgstr "Autorizează modul"
|
444 |
|
445 |
-
#: .././admin/settings.php:
|
446 |
msgid "Properties refreshed."
|
447 |
msgstr "Proprietăți actualizate."
|
448 |
|
449 |
-
#: .././admin/settings.php:
|
450 |
msgid "Network Setup"
|
451 |
msgstr "Configurarea rețelei"
|
452 |
|
453 |
-
#: .././admin/settings.php:
|
454 |
msgid "use a single Google Analytics account for the entire network"
|
455 |
msgstr "folosește un singur cont Google Analytics pentru întreaga rețea"
|
456 |
|
457 |
-
#: .././admin/settings.php:
|
458 |
msgid "Refresh Properties"
|
459 |
msgstr "Actualizează proprietățile"
|
460 |
|
461 |
-
#: .././admin/settings.php:
|
462 |
msgid "Properties/Views Settings"
|
463 |
msgstr "Setări proprietăți/afișări"
|
464 |
|
465 |
-
#: .././admin/settings.php:
|
466 |
msgid "exclude Super Admin tracking for the entire network"
|
467 |
msgstr "exclude urmărirea Super Admin pentru întreaga rețea"
|
468 |
|
469 |
-
#: .././admin/settings.php:
|
470 |
msgid "Setup Tutorial & Demo"
|
471 |
msgstr "Tutorial și demo configurare"
|
472 |
|
473 |
-
#: .././admin/settings.php:
|
474 |
msgid "Follow & Review"
|
475 |
msgstr "Urmărește și Evaluează"
|
476 |
|
477 |
-
#: .././admin/settings.php:
|
478 |
#, php-format
|
479 |
msgid "Your feedback and review are both important, %s!"
|
480 |
msgstr "Părerea și recenzia ta sunt amândouă importante, %s!"
|
481 |
|
482 |
-
#: .././admin/settings.php:
|
483 |
msgid "rate this plugin"
|
484 |
msgstr "evaluează acest modul"
|
485 |
|
486 |
-
#: .././admin/settings.php:
|
487 |
msgid "Further Reading"
|
488 |
msgstr "Citește mai departe"
|
489 |
|
490 |
-
#: .././admin/settings.php:
|
491 |
#, php-format
|
492 |
msgid "%s by moving your website to HTTPS/SSL."
|
493 |
msgstr "%s prin mutarea sitului tău web pe HTTPS/SSL"
|
494 |
|
495 |
-
#: .././admin/settings.php:
|
496 |
msgid "Improve search rankings"
|
497 |
msgstr "Îmbunătățește clasările în căutare"
|
498 |
|
499 |
-
#: .././admin/settings.php:
|
500 |
#, php-format
|
501 |
msgid "Other %s written by the same author"
|
502 |
msgstr "Alte %s scrise de același autor"
|
503 |
|
504 |
-
#: .././admin/settings.php:
|
505 |
msgid "WordPress Plugins"
|
506 |
msgstr "Module WordPress"
|
507 |
|
508 |
-
#: .././admin/settings.php:
|
509 |
msgid "Other Services"
|
510 |
msgstr "Alte servicii"
|
511 |
|
512 |
-
#: .././admin/settings.php:
|
513 |
#, php-format
|
514 |
msgid "Speed up your website and plug into a whole %s"
|
515 |
msgstr "Crește viteza sitului tău web și a modulului la un %s"
|
516 |
|
517 |
-
#: .././admin/settings.php:
|
518 |
msgid "new level of site speed"
|
519 |
msgstr "nou nivel de viteze de internet"
|
520 |
|
521 |
-
#: .././admin/settings.php:
|
522 |
#, php-format
|
523 |
msgid "%s service with users tracking at IP level."
|
524 |
msgstr "%s serviciu de urmărire a utilizatorilor la nivel IP."
|
525 |
|
526 |
-
#: .././admin/settings.php:
|
527 |
msgid "Web Analytics"
|
528 |
msgstr "Analitice web"
|
529 |
|
@@ -543,18 +544,18 @@ msgstr "Setări în față"
|
|
543 |
msgid "Tracking Code"
|
544 |
msgstr "Cod urmărire"
|
545 |
|
546 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
547 |
msgid "Today"
|
548 |
msgstr "Azi"
|
549 |
|
550 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
551 |
msgid "Yesterday"
|
552 |
msgstr "Ieri"
|
553 |
|
554 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
555 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
556 |
-
#: .././admin/widgets.php:
|
557 |
-
#: .././admin/widgets.php:
|
558 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
559 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
560 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
@@ -563,9 +564,8 @@ msgstr "Ieri"
|
|
563 |
msgid "Last %d Days"
|
564 |
msgstr "Ultimele %d zile"
|
565 |
|
566 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166
|
567 |
-
#: .././admin/widgets.php:
|
568 |
-
#: .././front/setup.php:77 .././front/setup.php:78
|
569 |
#, php-format
|
570 |
msgid "%s Year"
|
571 |
msgid_plural "%s Years"
|
@@ -573,11 +573,11 @@ msgstr[0] "%s an"
|
|
573 |
msgstr[1] "%s ani"
|
574 |
msgstr[2] "%s de ani"
|
575 |
|
576 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
577 |
msgid "One"
|
578 |
msgstr "Un"
|
579 |
|
580 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
581 |
msgid "Three"
|
582 |
msgstr "Trei"
|
583 |
|
@@ -586,86 +586,84 @@ msgstr "Trei"
|
|
586 |
msgid "Unique Views"
|
587 |
msgstr "Afișări unice"
|
588 |
|
589 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186
|
590 |
-
#: .././admin/widgets.php:
|
591 |
-
#: .././
|
592 |
msgid "Users"
|
593 |
msgstr "Utilizatori"
|
594 |
|
595 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
596 |
msgid "Organic"
|
597 |
msgstr "Organic"
|
598 |
|
599 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187
|
600 |
-
#: .././admin/widgets.php:
|
601 |
-
#: .././
|
602 |
msgid "Page Views"
|
603 |
msgstr "Afișări pagină"
|
604 |
|
605 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188
|
606 |
-
#: .././admin/widgets.php:
|
607 |
-
#: .././
|
608 |
msgid "Bounce Rate"
|
609 |
msgstr "Rata de respingere"
|
610 |
|
611 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
612 |
msgid "Location"
|
613 |
msgstr "Locație"
|
614 |
|
615 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
616 |
-
#: .././tools/gapi.php:
|
617 |
msgid "Referrers"
|
618 |
msgstr "Referenți"
|
619 |
|
620 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
621 |
-
#: .././tools/gapi.php:
|
622 |
msgid "Searches"
|
623 |
msgstr "Căutări"
|
624 |
|
625 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
626 |
msgid "Traffic Details"
|
627 |
msgstr "Detalii trafic"
|
628 |
|
629 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
630 |
-
#: .././admin/widgets.php:
|
631 |
-
#: .././admin/widgets.php:
|
632 |
msgid "A JavaScript Error is blocking plugin resources!"
|
633 |
msgstr "O eroare JavaScript blochează resursele modulului!"
|
634 |
|
635 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
636 |
msgid "Traffic Mediums"
|
637 |
msgstr "Medii trafic"
|
638 |
|
639 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
640 |
msgid "Visitor Type"
|
641 |
msgstr "Tip vizitator"
|
642 |
|
643 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
644 |
msgid "Social Networks"
|
645 |
msgstr "Rețele sociale"
|
646 |
|
647 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
648 |
msgid "Search Engines"
|
649 |
msgstr "Motoare de căutare"
|
650 |
|
651 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
652 |
-
#: .././front/setup.php:101
|
653 |
msgid "Organic Search"
|
654 |
msgstr "Căutare organică"
|
655 |
|
656 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
657 |
-
#: .././front/setup.php:102
|
658 |
msgid "Pages/Session"
|
659 |
msgstr "Pagini/Sesiune"
|
660 |
|
661 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
662 |
-
#: .././admin/widgets.php:
|
663 |
-
#: .././admin/widgets.php:
|
664 |
-
#: .././admin/widgets.php:
|
665 |
-
#: .././admin/widgets.php:
|
666 |
-
#: .././admin/widgets.php:
|
667 |
-
#: .././admin/widgets.php:
|
668 |
-
#: .././admin/widgets.php:
|
669 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
670 |
msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
|
671 |
|
@@ -673,12 +671,12 @@ msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
|
|
673 |
msgid "Not enough data collected"
|
674 |
msgstr "Insuficiente date colectate"
|
675 |
|
676 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
677 |
-
#: .././admin/widgets.php:
|
678 |
-
#: .././admin/widgets.php:
|
679 |
-
#: .././admin/widgets.php:
|
680 |
-
#: .././admin/widgets.php:
|
681 |
-
#: .././admin/widgets.php:
|
682 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
683 |
msgid "This report is unavailable"
|
684 |
msgstr "Acest raport nu este disponibil"
|
@@ -687,25 +685,29 @@ msgstr "Acest raport nu este disponibil"
|
|
687 |
msgid "report generated by"
|
688 |
msgstr "raport generat de"
|
689 |
|
690 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
691 |
msgid "Settings"
|
692 |
msgstr "Setări"
|
693 |
|
694 |
-
#: .././admin/setup.php:
|
695 |
#, php-format
|
696 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
697 |
msgstr "Google Analytics Dashboard for WP a fost actualizat la versiunea %s."
|
698 |
|
699 |
-
#: .././admin/setup.php:
|
700 |
#, php-format
|
701 |
msgid "For details, check out %1$s and %2$s."
|
702 |
msgstr "Pentru mai multe detalii, verifică %1$s și %2$s."
|
703 |
|
704 |
-
#: .././admin/setup.php:
|
705 |
msgid "the documentation page"
|
706 |
msgstr "pagina cu documentația"
|
707 |
|
708 |
-
#: .././admin/setup.php:
|
709 |
msgid "the plugin's settings page"
|
710 |
msgstr "pagina de configurare a modulului"
|
711 |
|
@@ -713,10 +715,6 @@ msgstr "pagina de configurare a modulului"
|
|
713 |
msgid "Google Analytics Dashboard"
|
714 |
msgstr "Panou control Google Analytics"
|
715 |
|
716 |
-
#: .././admin/widgets.php:32
|
717 |
-
msgid "This plugin needs an authorization:"
|
718 |
-
msgstr "Acest modul are nevoie de o autorizare:"
|
719 |
-
|
720 |
#: .././admin/widgets.php:66
|
721 |
msgid "Something went wrong while retrieving profiles list."
|
722 |
msgstr "Ceva nu a mers bine în timpul recuperării listei cu profile."
|
@@ -746,53 +744,53 @@ msgstr ""
|
|
746 |
msgid "Find out more!"
|
747 |
msgstr "Află mai multe!"
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
msgid "Real-Time"
|
751 |
msgstr "Timp-real"
|
752 |
|
753 |
-
#: .././admin/widgets.php:
|
754 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:
|
755 |
-
#: .././tools/gapi.php:
|
756 |
-
#: .././tools/gapi.php:
|
757 |
msgid "Sessions"
|
758 |
msgstr "Sesiuni"
|
759 |
|
760 |
-
#: .././admin/widgets.php:
|
761 |
msgid "Pages"
|
762 |
msgstr "Pagini"
|
763 |
|
764 |
-
#: .././admin/widgets.php:
|
765 |
msgid "REFERRAL"
|
766 |
msgstr "REFERIRE"
|
767 |
|
768 |
-
#: .././admin/widgets.php:
|
769 |
msgid "ORGANIC"
|
770 |
msgstr "ORGANIC"
|
771 |
|
772 |
-
#: .././admin/widgets.php:
|
773 |
-
#: .././admin/widgets.php:
|
774 |
msgid "SOCIAL"
|
775 |
msgstr "SOCIAL"
|
776 |
|
777 |
-
#: .././admin/widgets.php:
|
778 |
-
#: .././admin/widgets.php:
|
779 |
msgid "CAMPAIGN"
|
780 |
msgstr "CAMPANIE"
|
781 |
|
782 |
-
#: .././admin/widgets.php:
|
783 |
-
#: .././admin/widgets.php:
|
784 |
msgid "DIRECT"
|
785 |
msgstr "DIRECT"
|
786 |
|
787 |
-
#: .././admin/widgets.php:
|
788 |
msgid "NEW"
|
789 |
msgstr "NOU"
|
790 |
|
791 |
-
#: .././admin/widgets.php:
|
792 |
msgid "REFERRALS"
|
793 |
msgstr "REFERIRI"
|
794 |
|
795 |
-
#: .././admin/widgets.php:
|
796 |
msgid "KEYWORDS"
|
797 |
msgstr "CUVINTE"
|
798 |
|
@@ -800,10 +798,6 @@ msgstr "CUVINTE"
|
|
800 |
msgid "Will display your google analytics stats in a widget"
|
801 |
msgstr "Va afișa statisticile tale Google Analytics într-o piesă"
|
802 |
|
803 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
804 |
-
msgid "trend"
|
805 |
-
msgstr "tendință"
|
806 |
-
|
807 |
#: .././front/widgets.php:123
|
808 |
msgid "Period:"
|
809 |
msgstr "Perioada:"
|
@@ -852,7 +846,7 @@ msgstr "Statistici pentru:"
|
|
852 |
msgid "Give credits:"
|
853 |
msgstr "Acordă credit:"
|
854 |
|
855 |
-
#: .././gadwp.php:
|
856 |
msgid "This is not allowed, read the documentation!"
|
857 |
msgstr "Nu este permis, citește documentația!"
|
858 |
|
@@ -876,42 +870,45 @@ msgstr "Cod de acces:"
|
|
876 |
msgid "Save Access Code"
|
877 |
msgstr "Salvează codul de acces"
|
878 |
|
879 |
-
#: .././tools/gapi.php:
|
880 |
msgid "Organic Searches"
|
881 |
msgstr "Căutări organice"
|
882 |
|
883 |
-
#: .././tools/gapi.php:
|
884 |
msgid "Unique Page Views"
|
885 |
msgstr "Afișări unice de pagină"
|
886 |
|
887 |
-
#: .././tools/gapi.php:
|
888 |
msgid "Hour"
|
889 |
msgstr "Oră"
|
890 |
|
891 |
-
#: .././tools/gapi.php:
|
892 |
msgid "Date"
|
893 |
msgstr "Dată"
|
894 |
|
895 |
-
#: .././tools/gapi.php:
|
896 |
msgid "Views"
|
897 |
msgstr "Afișări"
|
898 |
|
899 |
-
#: .././tools/gapi.php:
|
900 |
msgid "Countries"
|
901 |
msgstr "Țări"
|
902 |
|
903 |
-
#: .././tools/gapi.php:
|
904 |
msgid "Cities from"
|
905 |
msgstr "Orașe din"
|
906 |
|
907 |
-
#: .././tools/gapi.php:
|
908 |
msgid "Channels"
|
909 |
msgstr "Canale"
|
910 |
|
911 |
-
#: .././tools/gapi.php:
|
912 |
msgid "Type"
|
913 |
msgstr "Tip"
|
914 |
|
|
|
|
|
|
|
915 |
#~ msgid "Last 7 Days"
|
916 |
#~ msgstr "Ultimele 7 zile"
|
917 |
|
3 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-"
|
5 |
"dashboard-for-wp\n"
|
6 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
7 |
+
"PO-Revision-Date: 2015-08-04 16:53+0300\n"
|
8 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
9 |
"Language-Team: Nicolae Sfetcu\n"
|
10 |
"Language: ro\n"
|
14 |
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
15 |
"2:1));\n"
|
16 |
"X-Poedit-SourceCharset: UTF-8\n"
|
17 |
+
"X-Generator: Poedit 1.8.4\n"
|
18 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
|
20 |
"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
|
30 |
|
31 |
#: .././admin/settings.php:89 .././admin/settings.php:184
|
32 |
#: .././admin/settings.php:318 .././admin/settings.php:795
|
33 |
+
#: .././admin/settings.php:1069
|
34 |
msgid "Settings saved."
|
35 |
msgstr "Setări salvate."
|
36 |
|
38 |
#: .././admin/settings.php:320 .././admin/settings.php:772
|
39 |
#: .././admin/settings.php:782 .././admin/settings.php:791
|
40 |
#: .././admin/settings.php:797 .././admin/settings.php:808
|
41 |
+
#: .././admin/settings.php:1030 .././admin/settings.php:1055
|
42 |
+
#: .././admin/settings.php:1065 .././admin/settings.php:1071
|
43 |
+
#: .././admin/settings.php:1082
|
44 |
msgid "Cheating Huh?"
|
45 |
msgstr "Hei, trișezi?"
|
46 |
|
47 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
48 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
49 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
50 |
#, php-format
|
51 |
msgid "Something went wrong, check %1$s or %2$s."
|
52 |
msgstr "Ceva nu e în regulă, verifică %1$s sau %2$s"
|
53 |
|
54 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
55 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
56 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
57 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
58 |
msgid "Errors & Debug"
|
59 |
msgstr "Erori și depanare"
|
60 |
|
61 |
#: .././admin/settings.php:95 .././admin/settings.php:190
|
62 |
#: .././admin/settings.php:324 .././admin/settings.php:641
|
63 |
+
#: .././admin/settings.php:823 .././admin/settings.php:1096
|
64 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
65 |
msgid "authorize the plugin"
|
66 |
msgstr "autorizează modulul"
|
67 |
|
82 |
msgstr "activează rapoarte pentru paginile din față"
|
83 |
|
84 |
#: .././admin/settings.php:161 .././admin/settings.php:297
|
85 |
+
#: .././admin/settings.php:598 .././admin/settings.php:944
|
86 |
+
#: .././admin/settings.php:1234
|
87 |
msgid "Save Changes"
|
88 |
msgstr "Salvează modificările"
|
89 |
|
144 |
msgstr "Definiții personalizate"
|
145 |
|
146 |
#: .././admin/settings.php:344 .././admin/settings.php:554
|
147 |
+
#: .././admin/settings.php:1217
|
148 |
msgid "Exclude Tracking"
|
149 |
msgstr "Exclude urmărirea"
|
150 |
|
168 |
msgid "Enabled"
|
169 |
msgstr "Activat"
|
170 |
|
171 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889
|
172 |
+
#: .././admin/settings.php:911 .././admin/settings.php:1190
|
173 |
#: .././admin/widgets.php:61
|
174 |
msgid "View Name:"
|
175 |
msgstr "Nume afișare:"
|
176 |
|
177 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
178 |
msgid "Tracking ID:"
|
179 |
msgstr "ID urmărire:"
|
180 |
|
181 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
182 |
msgid "Default URL:"
|
183 |
msgstr "URL implicit:"
|
184 |
|
185 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
186 |
msgid "Time Zone:"
|
187 |
msgstr "Fus orar:"
|
188 |
|
306 |
msgid "Plugin Configuration"
|
307 |
msgstr "Configurare modul"
|
308 |
|
309 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
310 |
msgid ""
|
311 |
"Loading the required libraries. If this results in a blank screen or a fatal "
|
312 |
"error, try this solution:"
|
318 |
msgid "Library conflicts between WordPress plugins"
|
319 |
msgstr "Conflicte de bibliotecă între module WordPress"
|
320 |
|
321 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
322 |
msgid "Plugin authorization succeeded."
|
323 |
msgstr "Autorizarea modulului a reușit."
|
324 |
|
325 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
326 |
msgid ""
|
327 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> "
|
328 |
"(UA-XXXXX-X). Try again, and use the red link to get your access code"
|
331 |
"strong> (UA-XXXXX-X). Încearcă din nou, și folosește legătura cu roșu pentru "
|
332 |
"a obține codul tău de acces"
|
333 |
|
334 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
335 |
msgid "Cleared Cache."
|
336 |
msgstr "Cache golit."
|
337 |
|
338 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
339 |
msgid "Token Reseted and Revoked."
|
340 |
msgstr "Jeton resetat și revocat."
|
341 |
|
343 |
msgid "All errors reseted."
|
344 |
msgstr "Toate erorile resetate."
|
345 |
|
346 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
347 |
msgid "All other domains/properties were removed."
|
348 |
msgstr "Toate celelalte domenii/proprietăți au fost înlăturate."
|
349 |
|
350 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
351 |
msgid "Google Analytics Settings"
|
352 |
msgstr "Setări Google Analytics"
|
353 |
|
354 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
355 |
msgid "Use the red link (see below) to generate and get your access code!"
|
356 |
msgstr ""
|
357 |
"Folosește legătura cu roșu (vezi mai jos) pentru a genera și obține codul "
|
358 |
"tău de acces!"
|
359 |
|
360 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
361 |
msgid "Plugin Authorization"
|
362 |
msgstr "Autorizare modul"
|
363 |
|
364 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
365 |
#, php-format
|
366 |
msgid ""
|
367 |
"You should watch the %1$s and read this %2$s before proceeding to "
|
371 |
"Trebuie să te uiți la %1$s și să citești acest %2$s înainte de a continua cu "
|
372 |
"autorizarea. Acest modul necesită un cont Google Analytics configurat corect!"
|
373 |
|
374 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
375 |
msgid "video"
|
376 |
msgstr "video"
|
377 |
|
378 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
379 |
msgid "tutorial"
|
380 |
msgstr "tutorial"
|
381 |
|
382 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
383 |
msgid "use your own API Project credentials"
|
384 |
msgstr "folosește-ți propriile credențiale de proiect API"
|
385 |
|
386 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
387 |
msgid "API Key:"
|
388 |
msgstr "Cheie API:"
|
389 |
|
390 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
391 |
msgid "Client ID:"
|
392 |
msgstr "ID client:"
|
393 |
|
394 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
395 |
msgid "Client Secret:"
|
396 |
msgstr "Secret client:"
|
397 |
|
398 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
399 |
msgid "Clear Authorization"
|
400 |
msgstr "Șterge autorizarea"
|
401 |
|
402 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951
|
403 |
+
#: .././admin/settings.php:1167 .././admin/settings.php:1243
|
404 |
msgid "Clear Cache"
|
405 |
msgstr "Golește cache"
|
406 |
|
407 |
+
#: .././admin/settings.php:873
|
408 |
msgid "Reset Errors"
|
409 |
msgstr "Resetează erori"
|
410 |
|
411 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
412 |
msgid "General Settings"
|
413 |
msgstr "Setări generale"
|
414 |
|
415 |
+
#: .././admin/settings.php:882
|
416 |
msgid "Select View:"
|
417 |
msgstr "Selectare afișare:"
|
418 |
|
419 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
420 |
msgid "Property not found"
|
421 |
msgstr "Proprietate negăsită"
|
422 |
|
423 |
+
#: .././admin/settings.php:899
|
424 |
msgid "Lock Selection"
|
425 |
msgstr "Blocare selecție"
|
426 |
|
427 |
+
#: .././admin/settings.php:918
|
428 |
msgid "Theme Color:"
|
429 |
msgstr "Culoare temă:"
|
430 |
|
431 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
432 |
msgid "Automatic Updates"
|
433 |
msgstr "Actualizări automate"
|
434 |
|
435 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
436 |
msgid ""
|
437 |
"automatic updates for minor versions (security and maintenance releases only)"
|
438 |
msgstr ""
|
439 |
"actualizări automate pentru versiuni minore (doar securitate și întreținere)"
|
440 |
|
441 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243
|
442 |
#: .././admin/widgets.php:32
|
443 |
msgid "Authorize Plugin"
|
444 |
msgstr "Autorizează modul"
|
445 |
|
446 |
+
#: .././admin/settings.php:1027
|
447 |
msgid "Properties refreshed."
|
448 |
msgstr "Proprietăți actualizate."
|
449 |
|
450 |
+
#: .././admin/settings.php:1112
|
451 |
msgid "Network Setup"
|
452 |
msgstr "Configurarea rețelei"
|
453 |
|
454 |
+
#: .././admin/settings.php:1122
|
455 |
msgid "use a single Google Analytics account for the entire network"
|
456 |
msgstr "folosește un singur cont Google Analytics pentru întreaga rețea"
|
457 |
|
458 |
+
#: .././admin/settings.php:1167
|
459 |
msgid "Refresh Properties"
|
460 |
msgstr "Actualizează proprietățile"
|
461 |
|
462 |
+
#: .././admin/settings.php:1173
|
463 |
msgid "Properties/Views Settings"
|
464 |
msgstr "Setări proprietăți/afișări"
|
465 |
|
466 |
+
#: .././admin/settings.php:1227
|
467 |
msgid "exclude Super Admin tracking for the entire network"
|
468 |
msgstr "exclude urmărirea Super Admin pentru întreaga rețea"
|
469 |
|
470 |
+
#: .././admin/settings.php:1275
|
471 |
msgid "Setup Tutorial & Demo"
|
472 |
msgstr "Tutorial și demo configurare"
|
473 |
|
474 |
+
#: .././admin/settings.php:1283
|
475 |
msgid "Follow & Review"
|
476 |
msgstr "Urmărește și Evaluează"
|
477 |
|
478 |
+
#: .././admin/settings.php:1309
|
479 |
#, php-format
|
480 |
msgid "Your feedback and review are both important, %s!"
|
481 |
msgstr "Părerea și recenzia ta sunt amândouă importante, %s!"
|
482 |
|
483 |
+
#: .././admin/settings.php:1309
|
484 |
msgid "rate this plugin"
|
485 |
msgstr "evaluează acest modul"
|
486 |
|
487 |
+
#: .././admin/settings.php:1315
|
488 |
msgid "Further Reading"
|
489 |
msgstr "Citește mai departe"
|
490 |
|
491 |
+
#: .././admin/settings.php:1322
|
492 |
#, php-format
|
493 |
msgid "%s by moving your website to HTTPS/SSL."
|
494 |
msgstr "%s prin mutarea sitului tău web pe HTTPS/SSL"
|
495 |
|
496 |
+
#: .././admin/settings.php:1322
|
497 |
msgid "Improve search rankings"
|
498 |
msgstr "Îmbunătățește clasările în căutare"
|
499 |
|
500 |
+
#: .././admin/settings.php:1329
|
501 |
#, php-format
|
502 |
msgid "Other %s written by the same author"
|
503 |
msgstr "Alte %s scrise de același autor"
|
504 |
|
505 |
+
#: .././admin/settings.php:1329
|
506 |
msgid "WordPress Plugins"
|
507 |
msgstr "Module WordPress"
|
508 |
|
509 |
+
#: .././admin/settings.php:1335
|
510 |
msgid "Other Services"
|
511 |
msgstr "Alte servicii"
|
512 |
|
513 |
+
#: .././admin/settings.php:1342
|
514 |
#, php-format
|
515 |
msgid "Speed up your website and plug into a whole %s"
|
516 |
msgstr "Crește viteza sitului tău web și a modulului la un %s"
|
517 |
|
518 |
+
#: .././admin/settings.php:1342
|
519 |
msgid "new level of site speed"
|
520 |
msgstr "nou nivel de viteze de internet"
|
521 |
|
522 |
+
#: .././admin/settings.php:1349
|
523 |
#, php-format
|
524 |
msgid "%s service with users tracking at IP level."
|
525 |
msgstr "%s serviciu de urmărire a utilizatorilor la nivel IP."
|
526 |
|
527 |
+
#: .././admin/settings.php:1349
|
528 |
msgid "Web Analytics"
|
529 |
msgstr "Analitice web"
|
530 |
|
544 |
msgid "Tracking Code"
|
545 |
msgstr "Cod urmărire"
|
546 |
|
547 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
548 |
msgid "Today"
|
549 |
msgstr "Azi"
|
550 |
|
551 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
552 |
msgid "Yesterday"
|
553 |
msgstr "Ieri"
|
554 |
|
555 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
556 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116
|
557 |
+
#: .././admin/widgets.php:117 .././admin/widgets.php:118
|
558 |
+
#: .././admin/widgets.php:119 .././front/setup.php:73 .././front/setup.php:74
|
559 |
#: .././front/setup.php:75 .././front/setup.php:76 .././front/widgets.php:64
|
560 |
#: .././front/widgets.php:67 .././front/widgets.php:70
|
561 |
#: .././front/widgets.php:158 .././front/widgets.php:159
|
564 |
msgid "Last %d Days"
|
565 |
msgstr "Ultimele %d zile"
|
566 |
|
567 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
568 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
|
|
569 |
#, php-format
|
570 |
msgid "%s Year"
|
571 |
msgid_plural "%s Years"
|
573 |
msgstr[1] "%s ani"
|
574 |
msgstr[2] "%s de ani"
|
575 |
|
576 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
577 |
msgid "One"
|
578 |
msgstr "Un"
|
579 |
|
580 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
581 |
msgid "Three"
|
582 |
msgstr "Trei"
|
583 |
|
586 |
msgid "Unique Views"
|
587 |
msgstr "Afișări unice"
|
588 |
|
589 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
590 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
591 |
+
#: .././tools/gapi.php:357
|
592 |
msgid "Users"
|
593 |
msgstr "Utilizatori"
|
594 |
|
595 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
596 |
msgid "Organic"
|
597 |
msgstr "Organic"
|
598 |
|
599 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
600 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
601 |
+
#: .././tools/gapi.php:360
|
602 |
msgid "Page Views"
|
603 |
msgstr "Afișări pagină"
|
604 |
|
605 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
606 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
607 |
+
#: .././tools/gapi.php:363
|
608 |
msgid "Bounce Rate"
|
609 |
msgstr "Rata de respingere"
|
610 |
|
611 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
612 |
msgid "Location"
|
613 |
msgstr "Locație"
|
614 |
|
615 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
616 |
+
#: .././tools/gapi.php:502
|
617 |
msgid "Referrers"
|
618 |
msgstr "Referenți"
|
619 |
|
620 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
621 |
+
#: .././tools/gapi.php:535
|
622 |
msgid "Searches"
|
623 |
msgstr "Căutări"
|
624 |
|
625 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
626 |
msgid "Traffic Details"
|
627 |
msgstr "Detalii trafic"
|
628 |
|
629 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502
|
630 |
+
#: .././admin/widgets.php:587 .././admin/widgets.php:754
|
631 |
+
#: .././admin/widgets.php:858 .././front/setup.php:92
|
632 |
msgid "A JavaScript Error is blocking plugin resources!"
|
633 |
msgstr "O eroare JavaScript blochează resursele modulului!"
|
634 |
|
635 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
636 |
msgid "Traffic Mediums"
|
637 |
msgstr "Medii trafic"
|
638 |
|
639 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
640 |
msgid "Visitor Type"
|
641 |
msgstr "Tip vizitator"
|
642 |
|
643 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
644 |
msgid "Social Networks"
|
645 |
msgstr "Rețele sociale"
|
646 |
|
647 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
648 |
msgid "Search Engines"
|
649 |
msgstr "Motoare de căutare"
|
650 |
|
651 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
|
|
652 |
msgid "Organic Search"
|
653 |
msgstr "Căutare organică"
|
654 |
|
655 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
|
|
656 |
msgid "Pages/Session"
|
657 |
msgstr "Pagini/Sesiune"
|
658 |
|
659 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514
|
660 |
+
#: .././admin/widgets.php:528 .././admin/widgets.php:538
|
661 |
+
#: .././admin/widgets.php:599 .././admin/widgets.php:613
|
662 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641
|
663 |
+
#: .././admin/widgets.php:655 .././admin/widgets.php:665
|
664 |
+
#: .././admin/widgets.php:767 .././admin/widgets.php:779
|
665 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884
|
666 |
+
#: .././admin/widgets.php:894 .././front/setup.php:103
|
667 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
668 |
msgstr "Răspuns invalid, mai multe detalii în consola JavaScript (F12)."
|
669 |
|
671 |
msgid "Not enough data collected"
|
672 |
msgstr "Insuficiente date colectate"
|
673 |
|
674 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519
|
675 |
+
#: .././admin/widgets.php:533 .././admin/widgets.php:604
|
676 |
+
#: .././admin/widgets.php:618 .././admin/widgets.php:632
|
677 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660
|
678 |
+
#: .././admin/widgets.php:772 .././admin/widgets.php:774
|
679 |
+
#: .././admin/widgets.php:875 .././admin/widgets.php:889
|
680 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
681 |
msgid "This report is unavailable"
|
682 |
msgstr "Acest raport nu este disponibil"
|
685 |
msgid "report generated by"
|
686 |
msgstr "raport generat de"
|
687 |
|
688 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
689 |
+
msgid "This plugin needs an authorization:"
|
690 |
+
msgstr "Acest modul are nevoie de o autorizare:"
|
691 |
+
|
692 |
+
#: .././admin/setup.php:227
|
693 |
msgid "Settings"
|
694 |
msgstr "Setări"
|
695 |
|
696 |
+
#: .././admin/setup.php:239
|
697 |
#, php-format
|
698 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
699 |
msgstr "Google Analytics Dashboard for WP a fost actualizat la versiunea %s."
|
700 |
|
701 |
+
#: .././admin/setup.php:239
|
702 |
#, php-format
|
703 |
msgid "For details, check out %1$s and %2$s."
|
704 |
msgstr "Pentru mai multe detalii, verifică %1$s și %2$s."
|
705 |
|
706 |
+
#: .././admin/setup.php:239
|
707 |
msgid "the documentation page"
|
708 |
msgstr "pagina cu documentația"
|
709 |
|
710 |
+
#: .././admin/setup.php:239
|
711 |
msgid "the plugin's settings page"
|
712 |
msgstr "pagina de configurare a modulului"
|
713 |
|
715 |
msgid "Google Analytics Dashboard"
|
716 |
msgstr "Panou control Google Analytics"
|
717 |
|
|
|
|
|
|
|
|
|
718 |
#: .././admin/widgets.php:66
|
719 |
msgid "Something went wrong while retrieving profiles list."
|
720 |
msgstr "Ceva nu a mers bine în timpul recuperării listei cu profile."
|
744 |
msgid "Find out more!"
|
745 |
msgstr "Află mai multe!"
|
746 |
|
747 |
+
#: .././admin/widgets.php:113
|
748 |
msgid "Real-Time"
|
749 |
msgstr "Timp-real"
|
750 |
|
751 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823
|
752 |
+
#: .././front/widgets.php:36 .././tools/gapi.php:372 .././tools/gapi.php:502
|
753 |
+
#: .././tools/gapi.php:535 .././tools/gapi.php:585 .././tools/gapi.php:665
|
754 |
+
#: .././tools/gapi.php:694
|
755 |
msgid "Sessions"
|
756 |
msgstr "Sesiuni"
|
757 |
|
758 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
759 |
msgid "Pages"
|
760 |
msgstr "Pagini"
|
761 |
|
762 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
763 |
msgid "REFERRAL"
|
764 |
msgstr "REFERIRE"
|
765 |
|
766 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
767 |
msgid "ORGANIC"
|
768 |
msgstr "ORGANIC"
|
769 |
|
770 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361
|
771 |
+
#: .././admin/widgets.php:477
|
772 |
msgid "SOCIAL"
|
773 |
msgstr "SOCIAL"
|
774 |
|
775 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364
|
776 |
+
#: .././admin/widgets.php:478
|
777 |
msgid "CAMPAIGN"
|
778 |
msgstr "CAMPANIE"
|
779 |
|
780 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367
|
781 |
+
#: .././admin/widgets.php:481
|
782 |
msgid "DIRECT"
|
783 |
msgstr "DIRECT"
|
784 |
|
785 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
786 |
msgid "NEW"
|
787 |
msgstr "NOU"
|
788 |
|
789 |
+
#: .././admin/widgets.php:355
|
790 |
msgid "REFERRALS"
|
791 |
msgstr "REFERIRI"
|
792 |
|
793 |
+
#: .././admin/widgets.php:358
|
794 |
msgid "KEYWORDS"
|
795 |
msgstr "CUVINTE"
|
796 |
|
798 |
msgid "Will display your google analytics stats in a widget"
|
799 |
msgstr "Va afișa statisticile tale Google Analytics într-o piesă"
|
800 |
|
|
|
|
|
|
|
|
|
801 |
#: .././front/widgets.php:123
|
802 |
msgid "Period:"
|
803 |
msgstr "Perioada:"
|
846 |
msgid "Give credits:"
|
847 |
msgstr "Acordă credit:"
|
848 |
|
849 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
850 |
msgid "This is not allowed, read the documentation!"
|
851 |
msgstr "Nu este permis, citește documentația!"
|
852 |
|
870 |
msgid "Save Access Code"
|
871 |
msgstr "Salvează codul de acces"
|
872 |
|
873 |
+
#: .././tools/gapi.php:366
|
874 |
msgid "Organic Searches"
|
875 |
msgstr "Căutări organice"
|
876 |
|
877 |
+
#: .././tools/gapi.php:369
|
878 |
msgid "Unique Page Views"
|
879 |
msgstr "Afișări unice de pagină"
|
880 |
|
881 |
+
#: .././tools/gapi.php:377
|
882 |
msgid "Hour"
|
883 |
msgstr "Oră"
|
884 |
|
885 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
886 |
msgid "Date"
|
887 |
msgstr "Dată"
|
888 |
|
889 |
+
#: .././tools/gapi.php:470
|
890 |
msgid "Views"
|
891 |
msgstr "Afișări"
|
892 |
|
893 |
+
#: .././tools/gapi.php:556
|
894 |
msgid "Countries"
|
895 |
msgstr "Țări"
|
896 |
|
897 |
+
#: .././tools/gapi.php:566
|
898 |
msgid "Cities from"
|
899 |
msgstr "Orașe din"
|
900 |
|
901 |
+
#: .././tools/gapi.php:619
|
902 |
msgid "Channels"
|
903 |
msgstr "Canale"
|
904 |
|
905 |
+
#: .././tools/gapi.php:665
|
906 |
msgid "Type"
|
907 |
msgstr "Tip"
|
908 |
|
909 |
+
#~ msgid "trend"
|
910 |
+
#~ msgstr "tendință"
|
911 |
+
|
912 |
#~ msgid "Last 7 Days"
|
913 |
#~ msgstr "Ultimele 7 zile"
|
914 |
|
languages/{ga-dash-ru_RU.mo → google-analytics-dashboard-for-wp-ru_RU.mo}
RENAMED
File without changes
|
languages/{ga-dash-ru_RU.po → google-analytics-dashboard-for-wp-ru_RU.po}
RENAMED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
-
"POT-Creation-Date: 2015-
|
8 |
-
"PO-Revision-Date: 2015-
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: SebWeo.com\n"
|
11 |
"Language: ru_RU\n"
|
@@ -14,7 +14,7 @@ msgstr ""
|
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n"
|
16 |
"%100>=20) ? 1 : 2);\n"
|
17 |
-
"X-Generator: Poedit 1.8.
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
20 |
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
@@ -28,32 +28,33 @@ msgid "Analytics"
|
|
28 |
msgstr "Аналитика"
|
29 |
|
30 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
31 |
-
#: .././admin/settings.php:795 .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Настройки сохранены."
|
34 |
|
35 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
36 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
37 |
-
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:
|
38 |
-
#: .././admin/settings.php:
|
39 |
-
#: .././admin/settings.php:
|
40 |
msgid "Cheating Huh?"
|
41 |
msgstr "Читерство?"
|
42 |
|
43 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
44 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
45 |
#, php-format
|
46 |
msgid "Something went wrong, check %1$s or %2$s."
|
47 |
msgstr "Что-то пошло не так, проверьте %1$s или %2$s."
|
48 |
|
49 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
50 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
51 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
msgid "Errors & Debug"
|
53 |
msgstr "Ошибки и отладка"
|
54 |
|
55 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
56 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
|
|
57 |
msgid "authorize the plugin"
|
58 |
msgstr "авторизация плагина"
|
59 |
|
@@ -74,7 +75,7 @@ msgid "enable web page reports on frontend"
|
|
74 |
msgstr ""
|
75 |
|
76 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
77 |
-
#: .././admin/settings.php:
|
78 |
msgid "Save Changes"
|
79 |
msgstr "Сохранить изменения"
|
80 |
|
@@ -134,7 +135,7 @@ msgstr "Отслеживание событий"
|
|
134 |
msgid "Custom Definitions"
|
135 |
msgstr "Пользовательские Определения"
|
136 |
|
137 |
-
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:
|
138 |
msgid "Exclude Tracking"
|
139 |
msgstr "Исключить отслеживание"
|
140 |
|
@@ -158,20 +159,20 @@ msgstr "Выключено"
|
|
158 |
msgid "Enabled"
|
159 |
msgstr "Включено"
|
160 |
|
161 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
162 |
-
#: .././admin/settings.php:
|
163 |
msgid "View Name:"
|
164 |
msgstr "Вид имени:"
|
165 |
|
166 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
167 |
msgid "Tracking ID:"
|
168 |
msgstr "ID отслеживания"
|
169 |
|
170 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
171 |
msgid "Default URL:"
|
172 |
msgstr "URL по умолчанию:"
|
173 |
|
174 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
175 |
msgid "Time Zone:"
|
176 |
msgstr "Временная зона:"
|
177 |
|
@@ -295,7 +296,7 @@ msgstr "Детали ошибки"
|
|
295 |
msgid "Plugin Configuration"
|
296 |
msgstr "Конфигурация плагина"
|
297 |
|
298 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
299 |
msgid ""
|
300 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
301 |
"solution:"
|
@@ -307,11 +308,11 @@ msgstr ""
|
|
307 |
msgid "Library conflicts between WordPress plugins"
|
308 |
msgstr "Библиотека конфликтов между WordPress плагинами"
|
309 |
|
310 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
311 |
msgid "Plugin authorization succeeded."
|
312 |
msgstr "Авторизация плагин успешна."
|
313 |
|
314 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
315 |
msgid ""
|
316 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
317 |
"again, and use the red link to get your access code"
|
@@ -319,11 +320,11 @@ msgstr ""
|
|
319 |
"Код доступа <strong>НЕ</strong> ваш <strong>ID отслеживания</strong> (UA-XXXXX-X). Попробуйте "
|
320 |
"еще раз, и используйте красную ссылку, чтобы получить код доступа"
|
321 |
|
322 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
323 |
msgid "Cleared Cache."
|
324 |
msgstr "Кеш почищен."
|
325 |
|
326 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
327 |
msgid "Token Reseted and Revoked."
|
328 |
msgstr "Маркер сброшен и отменен."
|
329 |
|
@@ -331,23 +332,23 @@ msgstr "Маркер сброшен и отменен."
|
|
331 |
msgid "All errors reseted."
|
332 |
msgstr "Все ошибки сброшены."
|
333 |
|
334 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
335 |
msgid "All other domains/properties were removed."
|
336 |
msgstr "Все остальные домены/свойства были удалены."
|
337 |
|
338 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
339 |
msgid "Google Analytics Settings"
|
340 |
msgstr "Настройки Google Analytics"
|
341 |
|
342 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
343 |
msgid "Use the red link (see below) to generate and get your access code!"
|
344 |
msgstr "Используйте красную ссылку (см ниже), чтобы генерировать и получить код доступа!"
|
345 |
|
346 |
-
#: .././admin/settings.php:
|
347 |
msgid "Plugin Authorization"
|
348 |
msgstr "Авторизация плагина"
|
349 |
|
350 |
-
#: .././admin/settings.php:
|
351 |
#, php-format
|
352 |
msgid ""
|
353 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
@@ -356,159 +357,159 @@ msgstr ""
|
|
356 |
"Вы должны смотреть %1$s и читать это %2$s, прежде чем приступить к авторизации. Этот плагин "
|
357 |
"требует правильно настроенного аккаунта Google Analytics!"
|
358 |
|
359 |
-
#: .././admin/settings.php:
|
360 |
msgid "video"
|
361 |
msgstr "видео"
|
362 |
|
363 |
-
#: .././admin/settings.php:
|
364 |
msgid "tutorial"
|
365 |
msgstr "мануал"
|
366 |
|
367 |
-
#: .././admin/settings.php:
|
368 |
msgid "use your own API Project credentials"
|
369 |
msgstr "используйте свои собственные полномочия по API проекта"
|
370 |
|
371 |
-
#: .././admin/settings.php:
|
372 |
msgid "API Key:"
|
373 |
msgstr "ключ API:"
|
374 |
|
375 |
-
#: .././admin/settings.php:
|
376 |
msgid "Client ID:"
|
377 |
msgstr "ID клиента:"
|
378 |
|
379 |
-
#: .././admin/settings.php:
|
380 |
msgid "Client Secret:"
|
381 |
msgstr "Секретный код клиента:"
|
382 |
|
383 |
-
#: .././admin/settings.php:
|
384 |
msgid "Clear Authorization"
|
385 |
msgstr "Очистить авторизацию"
|
386 |
|
387 |
-
#: .././admin/settings.php:
|
388 |
-
#: .././admin/settings.php:
|
389 |
msgid "Clear Cache"
|
390 |
msgstr "Очистить кеш"
|
391 |
|
392 |
-
#: .././admin/settings.php:
|
393 |
msgid "Reset Errors"
|
394 |
msgstr "Сбросить ошибки"
|
395 |
|
396 |
-
#: .././admin/settings.php:
|
397 |
msgid "General Settings"
|
398 |
msgstr "Общие настройки"
|
399 |
|
400 |
-
#: .././admin/settings.php:
|
401 |
msgid "Select View:"
|
402 |
msgstr "Выбрать вид:"
|
403 |
|
404 |
-
#: .././admin/settings.php:
|
405 |
msgid "Property not found"
|
406 |
msgstr "Свойство не найдено"
|
407 |
|
408 |
-
#: .././admin/settings.php:
|
409 |
msgid "Lock Selection"
|
410 |
msgstr "Блокировать Выбор"
|
411 |
|
412 |
-
#: .././admin/settings.php:
|
413 |
msgid "Theme Color:"
|
414 |
msgstr "Цвет темы:"
|
415 |
|
416 |
-
#: .././admin/settings.php:
|
417 |
msgid "Automatic Updates"
|
418 |
msgstr "Автоматические обновления"
|
419 |
|
420 |
-
#: .././admin/settings.php:
|
421 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
422 |
msgstr ""
|
423 |
"автоматические обновления для ранних версий (только релизы безопасности и техническое "
|
424 |
"обслуживание)"
|
425 |
|
426 |
-
#: .././admin/settings.php:
|
427 |
msgid "Authorize Plugin"
|
428 |
msgstr "Авторизация плагина"
|
429 |
|
430 |
-
#: .././admin/settings.php:
|
431 |
msgid "Properties refreshed."
|
432 |
msgstr "Свойства обновлены."
|
433 |
|
434 |
-
#: .././admin/settings.php:
|
435 |
msgid "Network Setup"
|
436 |
msgstr "Настройка сети"
|
437 |
|
438 |
-
#: .././admin/settings.php:
|
439 |
msgid "use a single Google Analytics account for the entire network"
|
440 |
msgstr "использовать одну учетную запись Google Analytics для всей сети"
|
441 |
|
442 |
-
#: .././admin/settings.php:
|
443 |
msgid "Refresh Properties"
|
444 |
msgstr "Обновить свойства"
|
445 |
|
446 |
-
#: .././admin/settings.php:
|
447 |
msgid "Properties/Views Settings"
|
448 |
msgstr "Настройки Свойства/Вид"
|
449 |
|
450 |
-
#: .././admin/settings.php:
|
451 |
msgid "exclude Super Admin tracking for the entire network"
|
452 |
msgstr "исключить отслеживание Супер Админ для всей сети"
|
453 |
|
454 |
-
#: .././admin/settings.php:
|
455 |
msgid "Setup Tutorial & Demo"
|
456 |
msgstr "Мануал и Демо настройки"
|
457 |
|
458 |
-
#: .././admin/settings.php:
|
459 |
msgid "Follow & Review"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: .././admin/settings.php:
|
463 |
#, php-format
|
464 |
msgid "Your feedback and review are both important, %s!"
|
465 |
msgstr "Ваши отзывы и обзор являются важными, %s!"
|
466 |
|
467 |
-
#: .././admin/settings.php:
|
468 |
msgid "rate this plugin"
|
469 |
msgstr "оцените этот плагин"
|
470 |
|
471 |
-
#: .././admin/settings.php:
|
472 |
msgid "Further Reading"
|
473 |
msgstr "Дальнейшее Чтение"
|
474 |
|
475 |
-
#: .././admin/settings.php:
|
476 |
#, php-format
|
477 |
msgid "%s by moving your website to HTTPS/SSL."
|
478 |
msgstr "%s по перемещению вашего сайта на HTTPS/SSL."
|
479 |
|
480 |
-
#: .././admin/settings.php:
|
481 |
msgid "Improve search rankings"
|
482 |
msgstr "Улучшение рейтинга в поиске"
|
483 |
|
484 |
-
#: .././admin/settings.php:
|
485 |
#, php-format
|
486 |
msgid "Other %s written by the same author"
|
487 |
msgstr "Другие %s написанные тем же автором"
|
488 |
|
489 |
-
#: .././admin/settings.php:
|
490 |
msgid "WordPress Plugins"
|
491 |
msgstr "Плагины WordPress"
|
492 |
|
493 |
-
#: .././admin/settings.php:
|
494 |
msgid "Other Services"
|
495 |
msgstr "Другие сервисы"
|
496 |
|
497 |
-
#: .././admin/settings.php:
|
498 |
#, php-format
|
499 |
msgid "Speed up your website and plug into a whole %s"
|
500 |
msgstr "Ускорьте ваш сайт вцелом %s"
|
501 |
|
502 |
-
#: .././admin/settings.php:
|
503 |
msgid "new level of site speed"
|
504 |
msgstr "новый уровень скорости сайта"
|
505 |
|
506 |
-
#: .././admin/settings.php:
|
507 |
#, php-format
|
508 |
msgid "%s service with users tracking at IP level."
|
509 |
msgstr "%s услуги с пользовательским отслеживанием на уровне IP."
|
510 |
|
511 |
-
#: .././admin/settings.php:
|
512 |
msgid "Web Analytics"
|
513 |
msgstr "Web аналитика"
|
514 |
|
@@ -528,17 +529,17 @@ msgstr "Настройки фронтэнда"
|
|
528 |
msgid "Tracking Code"
|
529 |
msgstr "Код отслеживания"
|
530 |
|
531 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
532 |
msgid "Today"
|
533 |
msgstr "Сегодня"
|
534 |
|
535 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
536 |
msgid "Yesterday"
|
537 |
msgstr "Вчера"
|
538 |
|
539 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
540 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
541 |
-
#: .././admin/widgets.php:
|
542 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
543 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
544 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
@@ -546,8 +547,8 @@ msgstr "Вчера"
|
|
546 |
msgid "Last %d Days"
|
547 |
msgstr "Последние %d дней"
|
548 |
|
549 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:
|
550 |
-
#: .././admin/widgets.php:
|
551 |
#, php-format
|
552 |
msgid "%s Year"
|
553 |
msgid_plural "%s Years"
|
@@ -555,11 +556,11 @@ msgstr[0] ""
|
|
555 |
msgstr[1] ""
|
556 |
msgstr[2] ""
|
557 |
|
558 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
559 |
msgid "One"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
563 |
msgid "Three"
|
564 |
msgstr ""
|
565 |
|
@@ -568,80 +569,80 @@ msgstr ""
|
|
568 |
msgid "Unique Views"
|
569 |
msgstr "Уникальные просмотры"
|
570 |
|
571 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:
|
572 |
-
#: .././admin/widgets.php:
|
573 |
-
#: .././tools/gapi.php:
|
574 |
msgid "Users"
|
575 |
msgstr "Пользователи"
|
576 |
|
577 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
578 |
msgid "Organic"
|
579 |
msgstr "Органический"
|
580 |
|
581 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:
|
582 |
-
#: .././admin/widgets.php:
|
583 |
-
#: .././tools/gapi.php:
|
584 |
msgid "Page Views"
|
585 |
msgstr "Просмотры страницы"
|
586 |
|
587 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:
|
588 |
-
#: .././admin/widgets.php:
|
589 |
-
#: .././tools/gapi.php:
|
590 |
msgid "Bounce Rate"
|
591 |
msgstr "Показатель отказов"
|
592 |
|
593 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
594 |
msgid "Location"
|
595 |
msgstr "Расположение"
|
596 |
|
597 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
598 |
-
#: .././tools/gapi.php:
|
599 |
msgid "Referrers"
|
600 |
msgstr "Реферальные"
|
601 |
|
602 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
603 |
-
#: .././tools/gapi.php:
|
604 |
msgid "Searches"
|
605 |
msgstr "Поисковые"
|
606 |
|
607 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
608 |
msgid "Traffic Details"
|
609 |
msgstr "Детали трафика"
|
610 |
|
611 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
612 |
-
#: .././admin/widgets.php:
|
613 |
msgid "A JavaScript Error is blocking plugin resources!"
|
614 |
msgstr "Ошибки JavaScript блокируют ресурсы плагина!"
|
615 |
|
616 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
617 |
msgid "Traffic Mediums"
|
618 |
msgstr "Среднее по трафику"
|
619 |
|
620 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
621 |
msgid "Visitor Type"
|
622 |
msgstr "Тип посетителей"
|
623 |
|
624 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
625 |
msgid "Social Networks"
|
626 |
msgstr "Социальные сети"
|
627 |
|
628 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
629 |
msgid "Search Engines"
|
630 |
msgstr "Поисковые системы"
|
631 |
|
632 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
633 |
msgid "Organic Search"
|
634 |
msgstr "Органический поиск"
|
635 |
|
636 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
637 |
msgid "Pages/Session"
|
638 |
msgstr "Страниц/Сессию"
|
639 |
|
640 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
641 |
-
#: .././admin/widgets.php:
|
642 |
-
#: .././admin/widgets.php:
|
643 |
-
#: .././admin/widgets.php:
|
644 |
-
#: .././admin/widgets.php:
|
645 |
#: .././front/setup.php:103
|
646 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
647 |
msgstr "Неверный ответ, подробнее в консоли JavaScript (F12)."
|
@@ -650,10 +651,10 @@ msgstr "Неверный ответ, подробнее в консоли JavaSc
|
|
650 |
msgid "Not enough data collected"
|
651 |
msgstr "Недостаточно данных собрано"
|
652 |
|
653 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
654 |
-
#: .././admin/widgets.php:
|
655 |
-
#: .././admin/widgets.php:
|
656 |
-
#: .././admin/widgets.php:
|
657 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
658 |
msgid "This report is unavailable"
|
659 |
msgstr "Этот отчет недоступен"
|
@@ -662,25 +663,29 @@ msgstr "Этот отчет недоступен"
|
|
662 |
msgid "report generated by"
|
663 |
msgstr "Отчет сгенерирован"
|
664 |
|
665 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
666 |
msgid "Settings"
|
667 |
msgstr "Настройки"
|
668 |
|
669 |
-
#: .././admin/setup.php:
|
670 |
#, php-format
|
671 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
672 |
msgstr ""
|
673 |
|
674 |
-
#: .././admin/setup.php:
|
675 |
#, php-format
|
676 |
msgid "For details, check out %1$s and %2$s."
|
677 |
msgstr ""
|
678 |
|
679 |
-
#: .././admin/setup.php:
|
680 |
msgid "the documentation page"
|
681 |
msgstr ""
|
682 |
|
683 |
-
#: .././admin/setup.php:
|
684 |
msgid "the plugin's settings page"
|
685 |
msgstr ""
|
686 |
|
@@ -688,10 +693,6 @@ msgstr ""
|
|
688 |
msgid "Google Analytics Dashboard"
|
689 |
msgstr "Консоль Google Analytics"
|
690 |
|
691 |
-
#: .././admin/widgets.php:32
|
692 |
-
msgid "This plugin needs an authorization:"
|
693 |
-
msgstr "Этому плагину необходима авторизация:"
|
694 |
-
|
695 |
#: .././admin/widgets.php:66
|
696 |
msgid "Something went wrong while retrieving profiles list."
|
697 |
msgstr "Что-то пошло не так во время получения списка профилей."
|
@@ -720,49 +721,49 @@ msgstr ""
|
|
720 |
msgid "Find out more!"
|
721 |
msgstr "Узнать больше!"
|
722 |
|
723 |
-
#: .././admin/widgets.php:
|
724 |
msgid "Real-Time"
|
725 |
msgstr "В реальном времени"
|
726 |
|
727 |
-
#: .././admin/widgets.php:
|
728 |
-
#: .././tools/gapi.php:
|
729 |
-
#: .././tools/gapi.php:
|
730 |
msgid "Sessions"
|
731 |
msgstr "Сессии"
|
732 |
|
733 |
-
#: .././admin/widgets.php:
|
734 |
msgid "Pages"
|
735 |
msgstr "Страницы"
|
736 |
|
737 |
-
#: .././admin/widgets.php:
|
738 |
msgid "REFERRAL"
|
739 |
msgstr "РЕФЕРАЛЬНЫЙ"
|
740 |
|
741 |
-
#: .././admin/widgets.php:
|
742 |
msgid "ORGANIC"
|
743 |
msgstr "ОРГАНИЧЕСКИЙ"
|
744 |
|
745 |
-
#: .././admin/widgets.php:
|
746 |
msgid "SOCIAL"
|
747 |
msgstr "СОЦИАЛЬНЫЙ"
|
748 |
|
749 |
-
#: .././admin/widgets.php:
|
750 |
msgid "CAMPAIGN"
|
751 |
msgstr "КАМПАНИЯ"
|
752 |
|
753 |
-
#: .././admin/widgets.php:
|
754 |
msgid "DIRECT"
|
755 |
msgstr "ПРЯМОЙ"
|
756 |
|
757 |
-
#: .././admin/widgets.php:
|
758 |
msgid "NEW"
|
759 |
msgstr "НОВЫЙ"
|
760 |
|
761 |
-
#: .././admin/widgets.php:
|
762 |
msgid "REFERRALS"
|
763 |
msgstr "РЕФЕРАЛЫ"
|
764 |
|
765 |
-
#: .././admin/widgets.php:
|
766 |
msgid "KEYWORDS"
|
767 |
msgstr "КЛЮЧЕВЫЕ СЛОВА"
|
768 |
|
@@ -770,10 +771,6 @@ msgstr "КЛЮЧЕВЫЕ СЛОВА"
|
|
770 |
msgid "Will display your google analytics stats in a widget"
|
771 |
msgstr "Покажет вашу статистику Google Analytics в виджете"
|
772 |
|
773 |
-
#: .././front/widgets.php:36 .././tools/gapi.php:695
|
774 |
-
msgid "trend"
|
775 |
-
msgstr "тренд"
|
776 |
-
|
777 |
#: .././front/widgets.php:123
|
778 |
msgid "Period:"
|
779 |
msgstr "Период:"
|
@@ -822,7 +819,7 @@ msgstr "Статистика для:"
|
|
822 |
msgid "Give credits:"
|
823 |
msgstr "Оцените:"
|
824 |
|
825 |
-
#: .././gadwp.php:
|
826 |
msgid "This is not allowed, read the documentation!"
|
827 |
msgstr "Это не допускается, прочитайте документацию!"
|
828 |
|
@@ -846,42 +843,45 @@ msgstr "Код доступа:"
|
|
846 |
msgid "Save Access Code"
|
847 |
msgstr "Сохранить код доступа"
|
848 |
|
849 |
-
#: .././tools/gapi.php:
|
850 |
msgid "Organic Searches"
|
851 |
msgstr "Органические запросы поиска"
|
852 |
|
853 |
-
#: .././tools/gapi.php:
|
854 |
msgid "Unique Page Views"
|
855 |
msgstr "Уникальные просмотры страниц"
|
856 |
|
857 |
-
#: .././tools/gapi.php:
|
858 |
msgid "Hour"
|
859 |
msgstr "Час"
|
860 |
|
861 |
-
#: .././tools/gapi.php:
|
862 |
msgid "Date"
|
863 |
msgstr "Дата"
|
864 |
|
865 |
-
#: .././tools/gapi.php:
|
866 |
msgid "Views"
|
867 |
msgstr "Просмотры"
|
868 |
|
869 |
-
#: .././tools/gapi.php:
|
870 |
msgid "Countries"
|
871 |
msgstr "Страны"
|
872 |
|
873 |
-
#: .././tools/gapi.php:
|
874 |
msgid "Cities from"
|
875 |
msgstr "Из городов"
|
876 |
|
877 |
-
#: .././tools/gapi.php:
|
878 |
msgid "Channels"
|
879 |
msgstr "Каналы"
|
880 |
|
881 |
-
#: .././tools/gapi.php:
|
882 |
msgid "Type"
|
883 |
msgstr "Тип"
|
884 |
|
|
|
|
|
|
|
885 |
#~ msgid "Last 7 Days"
|
886 |
#~ msgstr "Последние 7 дней"
|
887 |
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
6 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
7 |
+
"POT-Creation-Date: 2015-08-04 16:53+0300\n"
|
8 |
+
"PO-Revision-Date: 2015-08-04 16:54+0300\n"
|
9 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
10 |
"Language-Team: SebWeo.com\n"
|
11 |
"Language: ru_RU\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n"
|
16 |
"%100>=20) ? 1 : 2);\n"
|
17 |
+
"X-Generator: Poedit 1.8.4\n"
|
18 |
"X-Poedit-SourceCharset: UTF-8\n"
|
19 |
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;"
|
20 |
"_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;"
|
28 |
msgstr "Аналитика"
|
29 |
|
30 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
31 |
+
#: .././admin/settings.php:795 .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr "Настройки сохранены."
|
34 |
|
35 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
36 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
37 |
+
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1030
|
38 |
+
#: .././admin/settings.php:1055 .././admin/settings.php:1065 .././admin/settings.php:1071
|
39 |
+
#: .././admin/settings.php:1082
|
40 |
msgid "Cheating Huh?"
|
41 |
msgstr "Читерство?"
|
42 |
|
43 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
44 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
45 |
#, php-format
|
46 |
msgid "Something went wrong, check %1$s or %2$s."
|
47 |
msgstr "Что-то пошло не так, проверьте %1$s или %2$s."
|
48 |
|
49 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
50 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
51 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
msgid "Errors & Debug"
|
53 |
msgstr "Ошибки и отладка"
|
54 |
|
55 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
56 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
57 |
+
#: .././admin/setup.php:195 .././front/setup.php:107
|
58 |
msgid "authorize the plugin"
|
59 |
msgstr "авторизация плагина"
|
60 |
|
75 |
msgstr ""
|
76 |
|
77 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
78 |
+
#: .././admin/settings.php:944 .././admin/settings.php:1234
|
79 |
msgid "Save Changes"
|
80 |
msgstr "Сохранить изменения"
|
81 |
|
135 |
msgid "Custom Definitions"
|
136 |
msgstr "Пользовательские Определения"
|
137 |
|
138 |
+
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1217
|
139 |
msgid "Exclude Tracking"
|
140 |
msgstr "Исключить отслеживание"
|
141 |
|
159 |
msgid "Enabled"
|
160 |
msgstr "Включено"
|
161 |
|
162 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889 .././admin/settings.php:911
|
163 |
+
#: .././admin/settings.php:1190 .././admin/widgets.php:61
|
164 |
msgid "View Name:"
|
165 |
msgstr "Вид имени:"
|
166 |
|
167 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
168 |
msgid "Tracking ID:"
|
169 |
msgstr "ID отслеживания"
|
170 |
|
171 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
172 |
msgid "Default URL:"
|
173 |
msgstr "URL по умолчанию:"
|
174 |
|
175 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
176 |
msgid "Time Zone:"
|
177 |
msgstr "Временная зона:"
|
178 |
|
296 |
msgid "Plugin Configuration"
|
297 |
msgstr "Конфигурация плагина"
|
298 |
|
299 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
300 |
msgid ""
|
301 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
302 |
"solution:"
|
308 |
msgid "Library conflicts between WordPress plugins"
|
309 |
msgstr "Библиотека конфликтов между WordPress плагинами"
|
310 |
|
311 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
312 |
msgid "Plugin authorization succeeded."
|
313 |
msgstr "Авторизация плагин успешна."
|
314 |
|
315 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
316 |
msgid ""
|
317 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
318 |
"again, and use the red link to get your access code"
|
320 |
"Код доступа <strong>НЕ</strong> ваш <strong>ID отслеживания</strong> (UA-XXXXX-X). Попробуйте "
|
321 |
"еще раз, и используйте красную ссылку, чтобы получить код доступа"
|
322 |
|
323 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
324 |
msgid "Cleared Cache."
|
325 |
msgstr "Кеш почищен."
|
326 |
|
327 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
328 |
msgid "Token Reseted and Revoked."
|
329 |
msgstr "Маркер сброшен и отменен."
|
330 |
|
332 |
msgid "All errors reseted."
|
333 |
msgstr "Все ошибки сброшены."
|
334 |
|
335 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
336 |
msgid "All other domains/properties were removed."
|
337 |
msgstr "Все остальные домены/свойства были удалены."
|
338 |
|
339 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
340 |
msgid "Google Analytics Settings"
|
341 |
msgstr "Настройки Google Analytics"
|
342 |
|
343 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
344 |
msgid "Use the red link (see below) to generate and get your access code!"
|
345 |
msgstr "Используйте красную ссылку (см ниже), чтобы генерировать и получить код доступа!"
|
346 |
|
347 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
348 |
msgid "Plugin Authorization"
|
349 |
msgstr "Авторизация плагина"
|
350 |
|
351 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
352 |
#, php-format
|
353 |
msgid ""
|
354 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
357 |
"Вы должны смотреть %1$s и читать это %2$s, прежде чем приступить к авторизации. Этот плагин "
|
358 |
"требует правильно настроенного аккаунта Google Analytics!"
|
359 |
|
360 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
361 |
msgid "video"
|
362 |
msgstr "видео"
|
363 |
|
364 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
365 |
msgid "tutorial"
|
366 |
msgstr "мануал"
|
367 |
|
368 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
369 |
msgid "use your own API Project credentials"
|
370 |
msgstr "используйте свои собственные полномочия по API проекта"
|
371 |
|
372 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
373 |
msgid "API Key:"
|
374 |
msgstr "ключ API:"
|
375 |
|
376 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
377 |
msgid "Client ID:"
|
378 |
msgstr "ID клиента:"
|
379 |
|
380 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
381 |
msgid "Client Secret:"
|
382 |
msgstr "Секретный код клиента:"
|
383 |
|
384 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
385 |
msgid "Clear Authorization"
|
386 |
msgstr "Очистить авторизацию"
|
387 |
|
388 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951 .././admin/settings.php:1167
|
389 |
+
#: .././admin/settings.php:1243
|
390 |
msgid "Clear Cache"
|
391 |
msgstr "Очистить кеш"
|
392 |
|
393 |
+
#: .././admin/settings.php:873
|
394 |
msgid "Reset Errors"
|
395 |
msgstr "Сбросить ошибки"
|
396 |
|
397 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
398 |
msgid "General Settings"
|
399 |
msgstr "Общие настройки"
|
400 |
|
401 |
+
#: .././admin/settings.php:882
|
402 |
msgid "Select View:"
|
403 |
msgstr "Выбрать вид:"
|
404 |
|
405 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
406 |
msgid "Property not found"
|
407 |
msgstr "Свойство не найдено"
|
408 |
|
409 |
+
#: .././admin/settings.php:899
|
410 |
msgid "Lock Selection"
|
411 |
msgstr "Блокировать Выбор"
|
412 |
|
413 |
+
#: .././admin/settings.php:918
|
414 |
msgid "Theme Color:"
|
415 |
msgstr "Цвет темы:"
|
416 |
|
417 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
418 |
msgid "Automatic Updates"
|
419 |
msgstr "Автоматические обновления"
|
420 |
|
421 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
422 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
423 |
msgstr ""
|
424 |
"автоматические обновления для ранних версий (только релизы безопасности и техническое "
|
425 |
"обслуживание)"
|
426 |
|
427 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243 .././admin/widgets.php:32
|
428 |
msgid "Authorize Plugin"
|
429 |
msgstr "Авторизация плагина"
|
430 |
|
431 |
+
#: .././admin/settings.php:1027
|
432 |
msgid "Properties refreshed."
|
433 |
msgstr "Свойства обновлены."
|
434 |
|
435 |
+
#: .././admin/settings.php:1112
|
436 |
msgid "Network Setup"
|
437 |
msgstr "Настройка сети"
|
438 |
|
439 |
+
#: .././admin/settings.php:1122
|
440 |
msgid "use a single Google Analytics account for the entire network"
|
441 |
msgstr "использовать одну учетную запись Google Analytics для всей сети"
|
442 |
|
443 |
+
#: .././admin/settings.php:1167
|
444 |
msgid "Refresh Properties"
|
445 |
msgstr "Обновить свойства"
|
446 |
|
447 |
+
#: .././admin/settings.php:1173
|
448 |
msgid "Properties/Views Settings"
|
449 |
msgstr "Настройки Свойства/Вид"
|
450 |
|
451 |
+
#: .././admin/settings.php:1227
|
452 |
msgid "exclude Super Admin tracking for the entire network"
|
453 |
msgstr "исключить отслеживание Супер Админ для всей сети"
|
454 |
|
455 |
+
#: .././admin/settings.php:1275
|
456 |
msgid "Setup Tutorial & Demo"
|
457 |
msgstr "Мануал и Демо настройки"
|
458 |
|
459 |
+
#: .././admin/settings.php:1283
|
460 |
msgid "Follow & Review"
|
461 |
msgstr ""
|
462 |
|
463 |
+
#: .././admin/settings.php:1309
|
464 |
#, php-format
|
465 |
msgid "Your feedback and review are both important, %s!"
|
466 |
msgstr "Ваши отзывы и обзор являются важными, %s!"
|
467 |
|
468 |
+
#: .././admin/settings.php:1309
|
469 |
msgid "rate this plugin"
|
470 |
msgstr "оцените этот плагин"
|
471 |
|
472 |
+
#: .././admin/settings.php:1315
|
473 |
msgid "Further Reading"
|
474 |
msgstr "Дальнейшее Чтение"
|
475 |
|
476 |
+
#: .././admin/settings.php:1322
|
477 |
#, php-format
|
478 |
msgid "%s by moving your website to HTTPS/SSL."
|
479 |
msgstr "%s по перемещению вашего сайта на HTTPS/SSL."
|
480 |
|
481 |
+
#: .././admin/settings.php:1322
|
482 |
msgid "Improve search rankings"
|
483 |
msgstr "Улучшение рейтинга в поиске"
|
484 |
|
485 |
+
#: .././admin/settings.php:1329
|
486 |
#, php-format
|
487 |
msgid "Other %s written by the same author"
|
488 |
msgstr "Другие %s написанные тем же автором"
|
489 |
|
490 |
+
#: .././admin/settings.php:1329
|
491 |
msgid "WordPress Plugins"
|
492 |
msgstr "Плагины WordPress"
|
493 |
|
494 |
+
#: .././admin/settings.php:1335
|
495 |
msgid "Other Services"
|
496 |
msgstr "Другие сервисы"
|
497 |
|
498 |
+
#: .././admin/settings.php:1342
|
499 |
#, php-format
|
500 |
msgid "Speed up your website and plug into a whole %s"
|
501 |
msgstr "Ускорьте ваш сайт вцелом %s"
|
502 |
|
503 |
+
#: .././admin/settings.php:1342
|
504 |
msgid "new level of site speed"
|
505 |
msgstr "новый уровень скорости сайта"
|
506 |
|
507 |
+
#: .././admin/settings.php:1349
|
508 |
#, php-format
|
509 |
msgid "%s service with users tracking at IP level."
|
510 |
msgstr "%s услуги с пользовательским отслеживанием на уровне IP."
|
511 |
|
512 |
+
#: .././admin/settings.php:1349
|
513 |
msgid "Web Analytics"
|
514 |
msgstr "Web аналитика"
|
515 |
|
529 |
msgid "Tracking Code"
|
530 |
msgstr "Код отслеживания"
|
531 |
|
532 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
533 |
msgid "Today"
|
534 |
msgstr "Сегодня"
|
535 |
|
536 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
537 |
msgid "Yesterday"
|
538 |
msgstr "Вчера"
|
539 |
|
540 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
541 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116 .././admin/widgets.php:117
|
542 |
+
#: .././admin/widgets.php:118 .././admin/widgets.php:119 .././front/setup.php:73
|
543 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
544 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
545 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
547 |
msgid "Last %d Days"
|
548 |
msgstr "Последние %d дней"
|
549 |
|
550 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
551 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
552 |
#, php-format
|
553 |
msgid "%s Year"
|
554 |
msgid_plural "%s Years"
|
556 |
msgstr[1] ""
|
557 |
msgstr[2] ""
|
558 |
|
559 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
560 |
msgid "One"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
564 |
msgid "Three"
|
565 |
msgstr ""
|
566 |
|
569 |
msgid "Unique Views"
|
570 |
msgstr "Уникальные просмотры"
|
571 |
|
572 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
573 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
574 |
+
#: .././tools/gapi.php:357
|
575 |
msgid "Users"
|
576 |
msgstr "Пользователи"
|
577 |
|
578 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
579 |
msgid "Organic"
|
580 |
msgstr "Органический"
|
581 |
|
582 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
583 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
584 |
+
#: .././tools/gapi.php:360
|
585 |
msgid "Page Views"
|
586 |
msgstr "Просмотры страницы"
|
587 |
|
588 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
589 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
590 |
+
#: .././tools/gapi.php:363
|
591 |
msgid "Bounce Rate"
|
592 |
msgstr "Показатель отказов"
|
593 |
|
594 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
595 |
msgid "Location"
|
596 |
msgstr "Расположение"
|
597 |
|
598 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
599 |
+
#: .././tools/gapi.php:502
|
600 |
msgid "Referrers"
|
601 |
msgstr "Реферальные"
|
602 |
|
603 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
604 |
+
#: .././tools/gapi.php:535
|
605 |
msgid "Searches"
|
606 |
msgstr "Поисковые"
|
607 |
|
608 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
609 |
msgid "Traffic Details"
|
610 |
msgstr "Детали трафика"
|
611 |
|
612 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502 .././admin/widgets.php:587
|
613 |
+
#: .././admin/widgets.php:754 .././admin/widgets.php:858 .././front/setup.php:92
|
614 |
msgid "A JavaScript Error is blocking plugin resources!"
|
615 |
msgstr "Ошибки JavaScript блокируют ресурсы плагина!"
|
616 |
|
617 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
618 |
msgid "Traffic Mediums"
|
619 |
msgstr "Среднее по трафику"
|
620 |
|
621 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
622 |
msgid "Visitor Type"
|
623 |
msgstr "Тип посетителей"
|
624 |
|
625 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
626 |
msgid "Social Networks"
|
627 |
msgstr "Социальные сети"
|
628 |
|
629 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
630 |
msgid "Search Engines"
|
631 |
msgstr "Поисковые системы"
|
632 |
|
633 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
634 |
msgid "Organic Search"
|
635 |
msgstr "Органический поиск"
|
636 |
|
637 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
638 |
msgid "Pages/Session"
|
639 |
msgstr "Страниц/Сессию"
|
640 |
|
641 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514 .././admin/widgets.php:528
|
642 |
+
#: .././admin/widgets.php:538 .././admin/widgets.php:599 .././admin/widgets.php:613
|
643 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641 .././admin/widgets.php:655
|
644 |
+
#: .././admin/widgets.php:665 .././admin/widgets.php:767 .././admin/widgets.php:779
|
645 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884 .././admin/widgets.php:894
|
646 |
#: .././front/setup.php:103
|
647 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
648 |
msgstr "Неверный ответ, подробнее в консоли JavaScript (F12)."
|
651 |
msgid "Not enough data collected"
|
652 |
msgstr "Недостаточно данных собрано"
|
653 |
|
654 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519 .././admin/widgets.php:533
|
655 |
+
#: .././admin/widgets.php:604 .././admin/widgets.php:618 .././admin/widgets.php:632
|
656 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660 .././admin/widgets.php:772
|
657 |
+
#: .././admin/widgets.php:774 .././admin/widgets.php:875 .././admin/widgets.php:889
|
658 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
659 |
msgid "This report is unavailable"
|
660 |
msgstr "Этот отчет недоступен"
|
663 |
msgid "report generated by"
|
664 |
msgstr "Отчет сгенерирован"
|
665 |
|
666 |
+
#: .././admin/setup.php:195 .././admin/widgets.php:32 .././front/setup.php:107
|
667 |
+
msgid "This plugin needs an authorization:"
|
668 |
+
msgstr "Этому плагину необходима авторизация:"
|
669 |
+
|
670 |
+
#: .././admin/setup.php:227
|
671 |
msgid "Settings"
|
672 |
msgstr "Настройки"
|
673 |
|
674 |
+
#: .././admin/setup.php:239
|
675 |
#, php-format
|
676 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
677 |
msgstr ""
|
678 |
|
679 |
+
#: .././admin/setup.php:239
|
680 |
#, php-format
|
681 |
msgid "For details, check out %1$s and %2$s."
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: .././admin/setup.php:239
|
685 |
msgid "the documentation page"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: .././admin/setup.php:239
|
689 |
msgid "the plugin's settings page"
|
690 |
msgstr ""
|
691 |
|
693 |
msgid "Google Analytics Dashboard"
|
694 |
msgstr "Консоль Google Analytics"
|
695 |
|
|
|
|
|
|
|
|
|
696 |
#: .././admin/widgets.php:66
|
697 |
msgid "Something went wrong while retrieving profiles list."
|
698 |
msgstr "Что-то пошло не так во время получения списка профилей."
|
721 |
msgid "Find out more!"
|
722 |
msgstr "Узнать больше!"
|
723 |
|
724 |
+
#: .././admin/widgets.php:113
|
725 |
msgid "Real-Time"
|
726 |
msgstr "В реальном времени"
|
727 |
|
728 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823 .././front/widgets.php:36
|
729 |
+
#: .././tools/gapi.php:372 .././tools/gapi.php:502 .././tools/gapi.php:535 .././tools/gapi.php:585
|
730 |
+
#: .././tools/gapi.php:665 .././tools/gapi.php:694
|
731 |
msgid "Sessions"
|
732 |
msgstr "Сессии"
|
733 |
|
734 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:470
|
735 |
msgid "Pages"
|
736 |
msgstr "Страницы"
|
737 |
|
738 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
739 |
msgid "REFERRAL"
|
740 |
msgstr "РЕФЕРАЛЬНЫЙ"
|
741 |
|
742 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
743 |
msgid "ORGANIC"
|
744 |
msgstr "ОРГАНИЧЕСКИЙ"
|
745 |
|
746 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361 .././admin/widgets.php:477
|
747 |
msgid "SOCIAL"
|
748 |
msgstr "СОЦИАЛЬНЫЙ"
|
749 |
|
750 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364 .././admin/widgets.php:478
|
751 |
msgid "CAMPAIGN"
|
752 |
msgstr "КАМПАНИЯ"
|
753 |
|
754 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367 .././admin/widgets.php:481
|
755 |
msgid "DIRECT"
|
756 |
msgstr "ПРЯМОЙ"
|
757 |
|
758 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
759 |
msgid "NEW"
|
760 |
msgstr "НОВЫЙ"
|
761 |
|
762 |
+
#: .././admin/widgets.php:355
|
763 |
msgid "REFERRALS"
|
764 |
msgstr "РЕФЕРАЛЫ"
|
765 |
|
766 |
+
#: .././admin/widgets.php:358
|
767 |
msgid "KEYWORDS"
|
768 |
msgstr "КЛЮЧЕВЫЕ СЛОВА"
|
769 |
|
771 |
msgid "Will display your google analytics stats in a widget"
|
772 |
msgstr "Покажет вашу статистику Google Analytics в виджете"
|
773 |
|
|
|
|
|
|
|
|
|
774 |
#: .././front/widgets.php:123
|
775 |
msgid "Period:"
|
776 |
msgstr "Период:"
|
819 |
msgid "Give credits:"
|
820 |
msgstr "Оцените:"
|
821 |
|
822 |
+
#: .././gadwp.php:48 .././gadwp.php:56 .././gadwp.php:63
|
823 |
msgid "This is not allowed, read the documentation!"
|
824 |
msgstr "Это не допускается, прочитайте документацию!"
|
825 |
|
843 |
msgid "Save Access Code"
|
844 |
msgstr "Сохранить код доступа"
|
845 |
|
846 |
+
#: .././tools/gapi.php:366
|
847 |
msgid "Organic Searches"
|
848 |
msgstr "Органические запросы поиска"
|
849 |
|
850 |
+
#: .././tools/gapi.php:369
|
851 |
msgid "Unique Page Views"
|
852 |
msgstr "Уникальные просмотры страниц"
|
853 |
|
854 |
+
#: .././tools/gapi.php:377
|
855 |
msgid "Hour"
|
856 |
msgstr "Час"
|
857 |
|
858 |
+
#: .././tools/gapi.php:381 .././tools/gapi.php:384 .././tools/gapi.php:694
|
859 |
msgid "Date"
|
860 |
msgstr "Дата"
|
861 |
|
862 |
+
#: .././tools/gapi.php:470
|
863 |
msgid "Views"
|
864 |
msgstr "Просмотры"
|
865 |
|
866 |
+
#: .././tools/gapi.php:556
|
867 |
msgid "Countries"
|
868 |
msgstr "Страны"
|
869 |
|
870 |
+
#: .././tools/gapi.php:566
|
871 |
msgid "Cities from"
|
872 |
msgstr "Из городов"
|
873 |
|
874 |
+
#: .././tools/gapi.php:619
|
875 |
msgid "Channels"
|
876 |
msgstr "Каналы"
|
877 |
|
878 |
+
#: .././tools/gapi.php:665
|
879 |
msgid "Type"
|
880 |
msgstr "Тип"
|
881 |
|
882 |
+
#~ msgid "trend"
|
883 |
+
#~ msgstr "тренд"
|
884 |
+
|
885 |
#~ msgid "Last 7 Days"
|
886 |
#~ msgstr "Последние 7 дней"
|
887 |
|
languages/{ga-dash.pot → google-analytics-dashboard-for-wp.pot}
RENAMED
@@ -5,7 +5,7 @@ msgid ""
|
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
8 |
-
"POT-Creation-Date: 2015-07-
|
9 |
"PO-Revision-Date: 2015-04-27 19:26+0200\n"
|
10 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
11 |
"Language-Team: Alin Marcu\n"
|
@@ -28,32 +28,32 @@ msgid "Analytics"
|
|
28 |
msgstr ""
|
29 |
|
30 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
31 |
-
#: .././admin/settings.php:795 .././admin/settings.php:
|
32 |
msgid "Settings saved."
|
33 |
msgstr ""
|
34 |
|
35 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
36 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
37 |
-
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:
|
38 |
-
#: .././admin/settings.php:
|
39 |
-
#: .././admin/settings.php:
|
40 |
msgid "Cheating Huh?"
|
41 |
msgstr ""
|
42 |
|
43 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
44 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
45 |
#, php-format
|
46 |
msgid "Something went wrong, check %1$s or %2$s."
|
47 |
msgstr ""
|
48 |
|
49 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
50 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
51 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
msgid "Errors & Debug"
|
53 |
msgstr ""
|
54 |
|
55 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
56 |
-
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:
|
57 |
msgid "authorize the plugin"
|
58 |
msgstr ""
|
59 |
|
@@ -74,7 +74,7 @@ msgid "enable web page reports on frontend"
|
|
74 |
msgstr ""
|
75 |
|
76 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
77 |
-
#: .././admin/settings.php:
|
78 |
msgid "Save Changes"
|
79 |
msgstr ""
|
80 |
|
@@ -132,7 +132,7 @@ msgstr ""
|
|
132 |
msgid "Custom Definitions"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:
|
136 |
msgid "Exclude Tracking"
|
137 |
msgstr ""
|
138 |
|
@@ -156,20 +156,20 @@ msgstr ""
|
|
156 |
msgid "Enabled"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
160 |
-
#: .././admin/settings.php:
|
161 |
msgid "View Name:"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
165 |
msgid "Tracking ID:"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
169 |
msgid "Default URL:"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: .././admin/settings.php:367 .././admin/settings.php:
|
173 |
msgid "Time Zone:"
|
174 |
msgstr ""
|
175 |
|
@@ -293,7 +293,7 @@ msgstr ""
|
|
293 |
msgid "Plugin Configuration"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: .././admin/settings.php:717 .././admin/settings.php:
|
297 |
msgid ""
|
298 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
299 |
"solution:"
|
@@ -303,21 +303,21 @@ msgstr ""
|
|
303 |
msgid "Library conflicts between WordPress plugins"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: .././admin/settings.php:732 .././admin/settings.php:
|
307 |
msgid "Plugin authorization succeeded."
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: .././admin/settings.php:747 .././admin/settings.php:
|
311 |
msgid ""
|
312 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
313 |
"again, and use the red link to get your access code"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: .././admin/settings.php:770 .././admin/settings.php:
|
317 |
msgid "Cleared Cache."
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: .././admin/settings.php:779 .././admin/settings.php:
|
321 |
msgid "Token Reseted and Revoked."
|
322 |
msgstr ""
|
323 |
|
@@ -325,180 +325,181 @@ msgstr ""
|
|
325 |
msgid "All errors reseted."
|
326 |
msgstr ""
|
327 |
|
328 |
-
#: .././admin/settings.php:802 .././admin/settings.php:
|
329 |
msgid "All other domains/properties were removed."
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: .././admin/settings.php:813 .././admin/settings.php:
|
333 |
msgid "Google Analytics Settings"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: .././admin/settings.php:828 .././admin/settings.php:
|
337 |
msgid "Use the red link (see below) to generate and get your access code!"
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: .././admin/settings.php:
|
341 |
msgid "Plugin Authorization"
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: .././admin/settings.php:
|
345 |
#, php-format
|
346 |
msgid ""
|
347 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
348 |
"requires a properly configured Google Analytics account!"
|
349 |
msgstr ""
|
350 |
|
351 |
-
#: .././admin/settings.php:
|
352 |
msgid "video"
|
353 |
msgstr ""
|
354 |
|
355 |
-
#: .././admin/settings.php:
|
356 |
msgid "tutorial"
|
357 |
msgstr ""
|
358 |
|
359 |
-
#: .././admin/settings.php:
|
360 |
msgid "use your own API Project credentials"
|
361 |
msgstr ""
|
362 |
|
363 |
-
#: .././admin/settings.php:
|
364 |
msgid "API Key:"
|
365 |
msgstr ""
|
366 |
|
367 |
-
#: .././admin/settings.php:
|
368 |
msgid "Client ID:"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: .././admin/settings.php:
|
372 |
msgid "Client Secret:"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: .././admin/settings.php:
|
376 |
msgid "Clear Authorization"
|
377 |
msgstr ""
|
378 |
|
379 |
-
#: .././admin/settings.php:
|
380 |
-
#: .././admin/settings.php:
|
381 |
msgid "Clear Cache"
|
382 |
msgstr ""
|
383 |
|
384 |
-
#: .././admin/settings.php:
|
385 |
msgid "Reset Errors"
|
386 |
msgstr ""
|
387 |
|
388 |
-
#: .././admin/settings.php:
|
389 |
msgid "General Settings"
|
390 |
msgstr ""
|
391 |
|
392 |
-
#: .././admin/settings.php:
|
393 |
msgid "Select View:"
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: .././admin/settings.php:
|
397 |
msgid "Property not found"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: .././admin/settings.php:
|
401 |
msgid "Lock Selection"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: .././admin/settings.php:
|
405 |
msgid "Theme Color:"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: .././admin/settings.php:
|
409 |
msgid "Automatic Updates"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: .././admin/settings.php:
|
413 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: .././admin/settings.php:
|
|
|
417 |
msgid "Authorize Plugin"
|
418 |
msgstr ""
|
419 |
|
420 |
-
#: .././admin/settings.php:
|
421 |
msgid "Properties refreshed."
|
422 |
msgstr ""
|
423 |
|
424 |
-
#: .././admin/settings.php:
|
425 |
msgid "Network Setup"
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: .././admin/settings.php:
|
429 |
msgid "use a single Google Analytics account for the entire network"
|
430 |
msgstr ""
|
431 |
|
432 |
-
#: .././admin/settings.php:
|
433 |
msgid "Refresh Properties"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: .././admin/settings.php:
|
437 |
msgid "Properties/Views Settings"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: .././admin/settings.php:
|
441 |
msgid "exclude Super Admin tracking for the entire network"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: .././admin/settings.php:
|
445 |
msgid "Setup Tutorial & Demo"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: .././admin/settings.php:
|
449 |
msgid "Follow & Review"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: .././admin/settings.php:
|
453 |
#, php-format
|
454 |
msgid "Your feedback and review are both important, %s!"
|
455 |
msgstr ""
|
456 |
|
457 |
-
#: .././admin/settings.php:
|
458 |
msgid "rate this plugin"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: .././admin/settings.php:
|
462 |
msgid "Further Reading"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: .././admin/settings.php:
|
466 |
#, php-format
|
467 |
msgid "%s by moving your website to HTTPS/SSL."
|
468 |
msgstr ""
|
469 |
|
470 |
-
#: .././admin/settings.php:
|
471 |
msgid "Improve search rankings"
|
472 |
msgstr ""
|
473 |
|
474 |
-
#: .././admin/settings.php:
|
475 |
#, php-format
|
476 |
msgid "Other %s written by the same author"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: .././admin/settings.php:
|
480 |
msgid "WordPress Plugins"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: .././admin/settings.php:
|
484 |
msgid "Other Services"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: .././admin/settings.php:
|
488 |
#, php-format
|
489 |
msgid "Speed up your website and plug into a whole %s"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: .././admin/settings.php:
|
493 |
msgid "new level of site speed"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: .././admin/settings.php:
|
497 |
#, php-format
|
498 |
msgid "%s service with users tracking at IP level."
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: .././admin/settings.php:
|
502 |
msgid "Web Analytics"
|
503 |
msgstr ""
|
504 |
|
@@ -518,17 +519,17 @@ msgstr ""
|
|
518 |
msgid "Tracking Code"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: .././admin/setup.php:159 .././admin/widgets.php:
|
522 |
msgid "Today"
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: .././admin/setup.php:160 .././admin/widgets.php:
|
526 |
msgid "Yesterday"
|
527 |
msgstr ""
|
528 |
|
529 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
530 |
-
#: .././admin/setup.php:164 .././admin/widgets.php:
|
531 |
-
#: .././admin/widgets.php:
|
532 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
533 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
534 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
@@ -536,19 +537,19 @@ msgstr ""
|
|
536 |
msgid "Last %d Days"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:
|
540 |
-
#: .././admin/widgets.php:
|
541 |
#, php-format
|
542 |
msgid "%s Year"
|
543 |
msgid_plural "%s Years"
|
544 |
msgstr[0] ""
|
545 |
msgstr[1] ""
|
546 |
|
547 |
-
#: .././admin/setup.php:165 .././admin/widgets.php:
|
548 |
msgid "One"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: .././admin/setup.php:166 .././admin/widgets.php:
|
552 |
msgid "Three"
|
553 |
msgstr ""
|
554 |
|
@@ -557,80 +558,80 @@ msgstr ""
|
|
557 |
msgid "Unique Views"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:
|
561 |
-
#: .././admin/widgets.php:
|
562 |
#: .././tools/gapi.php:358
|
563 |
msgid "Users"
|
564 |
msgstr ""
|
565 |
|
566 |
-
#: .././admin/setup.php:171 .././admin/widgets.php:
|
567 |
msgid "Organic"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:
|
571 |
-
#: .././admin/widgets.php:
|
572 |
#: .././tools/gapi.php:361
|
573 |
msgid "Page Views"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:
|
577 |
-
#: .././admin/widgets.php:
|
578 |
#: .././tools/gapi.php:364
|
579 |
msgid "Bounce Rate"
|
580 |
msgstr ""
|
581 |
|
582 |
-
#: .././admin/setup.php:174 .././admin/widgets.php:
|
583 |
msgid "Location"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#: .././admin/setup.php:175 .././admin/widgets.php:
|
587 |
#: .././tools/gapi.php:503
|
588 |
msgid "Referrers"
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: .././admin/setup.php:176 .././admin/widgets.php:
|
592 |
#: .././tools/gapi.php:536
|
593 |
msgid "Searches"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: .././admin/setup.php:177 .././admin/widgets.php:
|
597 |
msgid "Traffic Details"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: .././admin/setup.php:180 .././admin/widgets.php:
|
601 |
-
#: .././admin/widgets.php:
|
602 |
msgid "A JavaScript Error is blocking plugin resources!"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: .././admin/setup.php:181 .././admin/widgets.php:
|
606 |
msgid "Traffic Mediums"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: .././admin/setup.php:182 .././admin/widgets.php:
|
610 |
msgid "Visitor Type"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: .././admin/setup.php:183 .././admin/widgets.php:
|
614 |
msgid "Social Networks"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: .././admin/setup.php:184 .././admin/widgets.php:
|
618 |
msgid "Search Engines"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: .././admin/setup.php:189 .././admin/widgets.php:
|
622 |
msgid "Organic Search"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: .././admin/setup.php:190 .././admin/widgets.php:
|
626 |
msgid "Pages/Session"
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: .././admin/setup.php:191 .././admin/widgets.php:
|
630 |
-
#: .././admin/widgets.php:
|
631 |
-
#: .././admin/widgets.php:
|
632 |
-
#: .././admin/widgets.php:
|
633 |
-
#: .././admin/widgets.php:
|
634 |
#: .././front/setup.php:103
|
635 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
636 |
msgstr ""
|
@@ -639,10 +640,10 @@ msgstr ""
|
|
639 |
msgid "Not enough data collected"
|
640 |
msgstr ""
|
641 |
|
642 |
-
#: .././admin/setup.php:193 .././admin/widgets.php:
|
643 |
-
#: .././admin/widgets.php:
|
644 |
-
#: .././admin/widgets.php:
|
645 |
-
#: .././admin/widgets.php:
|
646 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
647 |
msgid "This report is unavailable"
|
648 |
msgstr ""
|
@@ -651,25 +652,29 @@ msgstr ""
|
|
651 |
msgid "report generated by"
|
652 |
msgstr ""
|
653 |
|
654 |
-
#: .././admin/setup.php:
|
|
|
|
|
|
|
|
|
655 |
msgid "Settings"
|
656 |
msgstr ""
|
657 |
|
658 |
-
#: .././admin/setup.php:
|
659 |
#, php-format
|
660 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
661 |
msgstr ""
|
662 |
|
663 |
-
#: .././admin/setup.php:
|
664 |
#, php-format
|
665 |
msgid "For details, check out %1$s and %2$s."
|
666 |
msgstr ""
|
667 |
|
668 |
-
#: .././admin/setup.php:
|
669 |
msgid "the documentation page"
|
670 |
msgstr ""
|
671 |
|
672 |
-
#: .././admin/setup.php:
|
673 |
msgid "the plugin's settings page"
|
674 |
msgstr ""
|
675 |
|
@@ -677,10 +682,6 @@ msgstr ""
|
|
677 |
msgid "Google Analytics Dashboard"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: .././admin/widgets.php:32
|
681 |
-
msgid "This plugin needs an authorization:"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
#: .././admin/widgets.php:66
|
685 |
msgid "Something went wrong while retrieving profiles list."
|
686 |
msgstr ""
|
@@ -707,49 +708,49 @@ msgstr ""
|
|
707 |
msgid "Find out more!"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: .././admin/widgets.php:
|
711 |
msgid "Real-Time"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: .././admin/widgets.php:
|
715 |
#: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
|
716 |
#: .././tools/gapi.php:666 .././tools/gapi.php:695
|
717 |
msgid "Sessions"
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: .././admin/widgets.php:
|
721 |
msgid "Pages"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: .././admin/widgets.php:
|
725 |
msgid "REFERRAL"
|
726 |
msgstr ""
|
727 |
|
728 |
-
#: .././admin/widgets.php:
|
729 |
msgid "ORGANIC"
|
730 |
msgstr ""
|
731 |
|
732 |
-
#: .././admin/widgets.php:
|
733 |
msgid "SOCIAL"
|
734 |
msgstr ""
|
735 |
|
736 |
-
#: .././admin/widgets.php:
|
737 |
msgid "CAMPAIGN"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: .././admin/widgets.php:
|
741 |
msgid "DIRECT"
|
742 |
msgstr ""
|
743 |
|
744 |
-
#: .././admin/widgets.php:
|
745 |
msgid "NEW"
|
746 |
msgstr ""
|
747 |
|
748 |
-
#: .././admin/widgets.php:
|
749 |
msgid "REFERRALS"
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: .././admin/widgets.php:
|
753 |
msgid "KEYWORDS"
|
754 |
msgstr ""
|
755 |
|
5 |
msgstr ""
|
6 |
"Project-Id-Version: Google Analytics Dashboard for WP\n"
|
7 |
"Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
|
8 |
+
"POT-Creation-Date: 2015-07-13 20:56+0300\n"
|
9 |
"PO-Revision-Date: 2015-04-27 19:26+0200\n"
|
10 |
"Last-Translator: Alin Marcu <admin@deconf.com>\n"
|
11 |
"Language-Team: Alin Marcu\n"
|
28 |
msgstr ""
|
29 |
|
30 |
#: .././admin/settings.php:89 .././admin/settings.php:184 .././admin/settings.php:318
|
31 |
+
#: .././admin/settings.php:795 .././admin/settings.php:1069
|
32 |
msgid "Settings saved."
|
33 |
msgstr ""
|
34 |
|
35 |
#: .././admin/settings.php:91 .././admin/settings.php:186 .././admin/settings.php:320
|
36 |
#: .././admin/settings.php:772 .././admin/settings.php:782 .././admin/settings.php:791
|
37 |
+
#: .././admin/settings.php:797 .././admin/settings.php:808 .././admin/settings.php:1030
|
38 |
+
#: .././admin/settings.php:1055 .././admin/settings.php:1065 .././admin/settings.php:1071
|
39 |
+
#: .././admin/settings.php:1082
|
40 |
msgid "Cheating Huh?"
|
41 |
msgstr ""
|
42 |
|
43 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
44 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
45 |
#, php-format
|
46 |
msgid "Something went wrong, check %1$s or %2$s."
|
47 |
msgstr ""
|
48 |
|
49 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
50 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
51 |
#: .././admin/setup.php:46 .././admin/setup.php:59
|
52 |
msgid "Errors & Debug"
|
53 |
msgstr ""
|
54 |
|
55 |
#: .././admin/settings.php:95 .././admin/settings.php:190 .././admin/settings.php:324
|
56 |
+
#: .././admin/settings.php:641 .././admin/settings.php:823 .././admin/settings.php:1096
|
57 |
msgid "authorize the plugin"
|
58 |
msgstr ""
|
59 |
|
74 |
msgstr ""
|
75 |
|
76 |
#: .././admin/settings.php:161 .././admin/settings.php:297 .././admin/settings.php:598
|
77 |
+
#: .././admin/settings.php:944 .././admin/settings.php:1234
|
78 |
msgid "Save Changes"
|
79 |
msgstr ""
|
80 |
|
132 |
msgid "Custom Definitions"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: .././admin/settings.php:344 .././admin/settings.php:554 .././admin/settings.php:1217
|
136 |
msgid "Exclude Tracking"
|
137 |
msgstr ""
|
138 |
|
156 |
msgid "Enabled"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: .././admin/settings.php:367 .././admin/settings.php:889 .././admin/settings.php:911
|
160 |
+
#: .././admin/settings.php:1190 .././admin/widgets.php:61
|
161 |
msgid "View Name:"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
165 |
msgid "Tracking ID:"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
169 |
msgid "Default URL:"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: .././admin/settings.php:367 .././admin/settings.php:911
|
173 |
msgid "Time Zone:"
|
174 |
msgstr ""
|
175 |
|
293 |
msgid "Plugin Configuration"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: .././admin/settings.php:717 .././admin/settings.php:981
|
297 |
msgid ""
|
298 |
"Loading the required libraries. If this results in a blank screen or a fatal error, try this "
|
299 |
"solution:"
|
303 |
msgid "Library conflicts between WordPress plugins"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: .././admin/settings.php:732 .././admin/settings.php:998
|
307 |
msgid "Plugin authorization succeeded."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: .././admin/settings.php:747 .././admin/settings.php:1021
|
311 |
msgid ""
|
312 |
"The access code is <strong>NOT</strong> your <strong>Tracking ID</strong> (UA-XXXXX-X). Try "
|
313 |
"again, and use the red link to get your access code"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: .././admin/settings.php:770 .././admin/settings.php:1053
|
317 |
msgid "Cleared Cache."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: .././admin/settings.php:779 .././admin/settings.php:1062
|
321 |
msgid "Token Reseted and Revoked."
|
322 |
msgstr ""
|
323 |
|
325 |
msgid "All errors reseted."
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: .././admin/settings.php:802 .././admin/settings.php:1076
|
329 |
msgid "All other domains/properties were removed."
|
330 |
msgstr ""
|
331 |
|
332 |
+
#: .././admin/settings.php:813 .././admin/settings.php:1087
|
333 |
msgid "Google Analytics Settings"
|
334 |
msgstr ""
|
335 |
|
336 |
+
#: .././admin/settings.php:828 .././admin/settings.php:1101
|
337 |
msgid "Use the red link (see below) to generate and get your access code!"
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: .././admin/settings.php:840 .././admin/settings.php:1130
|
341 |
msgid "Plugin Authorization"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
345 |
#, php-format
|
346 |
msgid ""
|
347 |
"You should watch the %1$s and read this %2$s before proceeding to authorization. This plugin "
|
348 |
"requires a properly configured Google Analytics account!"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
352 |
msgid "video"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: .././admin/settings.php:845 .././admin/settings.php:1134
|
356 |
msgid "tutorial"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: .././admin/settings.php:850 .././admin/settings.php:1141
|
360 |
msgid "use your own API Project credentials"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: .././admin/settings.php:855 .././admin/settings.php:1149
|
364 |
msgid "API Key:"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: .././admin/settings.php:859 .././admin/settings.php:1153
|
368 |
msgid "Client ID:"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: .././admin/settings.php:863 .././admin/settings.php:1157
|
372 |
msgid "Client Secret:"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: .././admin/settings.php:873 .././admin/settings.php:1167
|
376 |
msgid "Clear Authorization"
|
377 |
msgstr ""
|
378 |
|
379 |
+
#: .././admin/settings.php:873 .././admin/settings.php:951 .././admin/settings.php:1167
|
380 |
+
#: .././admin/settings.php:1243
|
381 |
msgid "Clear Cache"
|
382 |
msgstr ""
|
383 |
|
384 |
+
#: .././admin/settings.php:873
|
385 |
msgid "Reset Errors"
|
386 |
msgstr ""
|
387 |
|
388 |
+
#: .././admin/settings.php:879 .././admin/setup.php:42 .././admin/setup.php:58
|
389 |
msgid "General Settings"
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: .././admin/settings.php:882
|
393 |
msgid "Select View:"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: .././admin/settings.php:893 .././admin/settings.php:1194
|
397 |
msgid "Property not found"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: .././admin/settings.php:899
|
401 |
msgid "Lock Selection"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: .././admin/settings.php:918
|
405 |
msgid "Theme Color:"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: .././admin/settings.php:926 .././admin/settings.php:1203
|
409 |
msgid "Automatic Updates"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: .././admin/settings.php:936 .././admin/settings.php:1213
|
413 |
msgid "automatic updates for minor versions (security and maintenance releases only)"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: .././admin/settings.php:951 .././admin/settings.php:1243 .././admin/setup.php:196
|
417 |
+
#: .././admin/widgets.php:32 .././front/setup.php:108
|
418 |
msgid "Authorize Plugin"
|
419 |
msgstr ""
|
420 |
|
421 |
+
#: .././admin/settings.php:1027
|
422 |
msgid "Properties refreshed."
|
423 |
msgstr ""
|
424 |
|
425 |
+
#: .././admin/settings.php:1112
|
426 |
msgid "Network Setup"
|
427 |
msgstr ""
|
428 |
|
429 |
+
#: .././admin/settings.php:1122
|
430 |
msgid "use a single Google Analytics account for the entire network"
|
431 |
msgstr ""
|
432 |
|
433 |
+
#: .././admin/settings.php:1167
|
434 |
msgid "Refresh Properties"
|
435 |
msgstr ""
|
436 |
|
437 |
+
#: .././admin/settings.php:1173
|
438 |
msgid "Properties/Views Settings"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: .././admin/settings.php:1227
|
442 |
msgid "exclude Super Admin tracking for the entire network"
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: .././admin/settings.php:1275
|
446 |
msgid "Setup Tutorial & Demo"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: .././admin/settings.php:1283
|
450 |
msgid "Follow & Review"
|
451 |
msgstr ""
|
452 |
|
453 |
+
#: .././admin/settings.php:1309
|
454 |
#, php-format
|
455 |
msgid "Your feedback and review are both important, %s!"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: .././admin/settings.php:1309
|
459 |
msgid "rate this plugin"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: .././admin/settings.php:1315
|
463 |
msgid "Further Reading"
|
464 |
msgstr ""
|
465 |
|
466 |
+
#: .././admin/settings.php:1322
|
467 |
#, php-format
|
468 |
msgid "%s by moving your website to HTTPS/SSL."
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: .././admin/settings.php:1322
|
472 |
msgid "Improve search rankings"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: .././admin/settings.php:1329
|
476 |
#, php-format
|
477 |
msgid "Other %s written by the same author"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: .././admin/settings.php:1329
|
481 |
msgid "WordPress Plugins"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: .././admin/settings.php:1335
|
485 |
msgid "Other Services"
|
486 |
msgstr ""
|
487 |
|
488 |
+
#: .././admin/settings.php:1342
|
489 |
#, php-format
|
490 |
msgid "Speed up your website and plug into a whole %s"
|
491 |
msgstr ""
|
492 |
|
493 |
+
#: .././admin/settings.php:1342
|
494 |
msgid "new level of site speed"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: .././admin/settings.php:1349
|
498 |
#, php-format
|
499 |
msgid "%s service with users tracking at IP level."
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: .././admin/settings.php:1349
|
503 |
msgid "Web Analytics"
|
504 |
msgstr ""
|
505 |
|
519 |
msgid "Tracking Code"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: .././admin/setup.php:159 .././admin/widgets.php:114 .././front/setup.php:71
|
523 |
msgid "Today"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: .././admin/setup.php:160 .././admin/widgets.php:115 .././front/setup.php:72
|
527 |
msgid "Yesterday"
|
528 |
msgstr ""
|
529 |
|
530 |
#: .././admin/setup.php:161 .././admin/setup.php:162 .././admin/setup.php:163
|
531 |
+
#: .././admin/setup.php:164 .././admin/widgets.php:116 .././admin/widgets.php:117
|
532 |
+
#: .././admin/widgets.php:118 .././admin/widgets.php:119 .././front/setup.php:73
|
533 |
#: .././front/setup.php:74 .././front/setup.php:75 .././front/setup.php:76
|
534 |
#: .././front/widgets.php:64 .././front/widgets.php:67 .././front/widgets.php:70
|
535 |
#: .././front/widgets.php:158 .././front/widgets.php:159 .././front/widgets.php:160
|
537 |
msgid "Last %d Days"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: .././admin/setup.php:165 .././admin/setup.php:166 .././admin/widgets.php:120
|
541 |
+
#: .././admin/widgets.php:121 .././front/setup.php:77 .././front/setup.php:78
|
542 |
#, php-format
|
543 |
msgid "%s Year"
|
544 |
msgid_plural "%s Years"
|
545 |
msgstr[0] ""
|
546 |
msgstr[1] ""
|
547 |
|
548 |
+
#: .././admin/setup.php:165 .././admin/widgets.php:120 .././front/setup.php:77
|
549 |
msgid "One"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: .././admin/setup.php:166 .././admin/widgets.php:121 .././front/setup.php:78
|
553 |
msgid "Three"
|
554 |
msgstr ""
|
555 |
|
558 |
msgid "Unique Views"
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: .././admin/setup.php:170 .././admin/setup.php:186 .././admin/widgets.php:127
|
562 |
+
#: .././admin/widgets.php:827 .././front/setup.php:82 .././front/setup.php:98
|
563 |
#: .././tools/gapi.php:358
|
564 |
msgid "Users"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: .././admin/setup.php:171 .././admin/widgets.php:128 .././front/setup.php:83
|
568 |
msgid "Organic"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: .././admin/setup.php:172 .././admin/setup.php:187 .././admin/widgets.php:129
|
572 |
+
#: .././admin/widgets.php:831 .././front/setup.php:84 .././front/setup.php:99
|
573 |
#: .././tools/gapi.php:361
|
574 |
msgid "Page Views"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: .././admin/setup.php:173 .././admin/setup.php:188 .././admin/widgets.php:130
|
578 |
+
#: .././admin/widgets.php:835 .././front/setup.php:85 .././front/setup.php:100
|
579 |
#: .././tools/gapi.php:364
|
580 |
msgid "Bounce Rate"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: .././admin/setup.php:174 .././admin/widgets.php:131 .././front/setup.php:86
|
584 |
msgid "Location"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: .././admin/setup.php:175 .././admin/widgets.php:133 .././front/setup.php:87
|
588 |
#: .././tools/gapi.php:503
|
589 |
msgid "Referrers"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: .././admin/setup.php:176 .././admin/widgets.php:134 .././front/setup.php:88
|
593 |
#: .././tools/gapi.php:536
|
594 |
msgid "Searches"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: .././admin/setup.php:177 .././admin/widgets.php:135 .././front/setup.php:89
|
598 |
msgid "Traffic Details"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: .././admin/setup.php:180 .././admin/widgets.php:502 .././admin/widgets.php:587
|
602 |
+
#: .././admin/widgets.php:754 .././admin/widgets.php:858 .././front/setup.php:92
|
603 |
msgid "A JavaScript Error is blocking plugin resources!"
|
604 |
msgstr ""
|
605 |
|
606 |
+
#: .././admin/setup.php:181 .././admin/widgets.php:678 .././front/setup.php:93
|
607 |
msgid "Traffic Mediums"
|
608 |
msgstr ""
|
609 |
|
610 |
+
#: .././admin/setup.php:182 .././admin/widgets.php:693 .././front/setup.php:94
|
611 |
msgid "Visitor Type"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: .././admin/setup.php:183 .././admin/widgets.php:708 .././front/setup.php:95
|
615 |
msgid "Social Networks"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: .././admin/setup.php:184 .././admin/widgets.php:723 .././front/setup.php:96
|
619 |
msgid "Search Engines"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: .././admin/setup.php:189 .././admin/widgets.php:839 .././front/setup.php:101
|
623 |
msgid "Organic Search"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: .././admin/setup.php:190 .././admin/widgets.php:843 .././front/setup.php:102
|
627 |
msgid "Pages/Session"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: .././admin/setup.php:191 .././admin/widgets.php:514 .././admin/widgets.php:528
|
631 |
+
#: .././admin/widgets.php:538 .././admin/widgets.php:599 .././admin/widgets.php:613
|
632 |
+
#: .././admin/widgets.php:627 .././admin/widgets.php:641 .././admin/widgets.php:655
|
633 |
+
#: .././admin/widgets.php:665 .././admin/widgets.php:767 .././admin/widgets.php:779
|
634 |
+
#: .././admin/widgets.php:870 .././admin/widgets.php:884 .././admin/widgets.php:894
|
635 |
#: .././front/setup.php:103
|
636 |
msgid "Invalid response, more details in JavaScript Console (F12)."
|
637 |
msgstr ""
|
640 |
msgid "Not enough data collected"
|
641 |
msgstr ""
|
642 |
|
643 |
+
#: .././admin/setup.php:193 .././admin/widgets.php:519 .././admin/widgets.php:533
|
644 |
+
#: .././admin/widgets.php:604 .././admin/widgets.php:618 .././admin/widgets.php:632
|
645 |
+
#: .././admin/widgets.php:646 .././admin/widgets.php:660 .././admin/widgets.php:772
|
646 |
+
#: .././admin/widgets.php:774 .././admin/widgets.php:875 .././admin/widgets.php:889
|
647 |
#: .././front/setup.php:105 .././front/widgets.php:100
|
648 |
msgid "This report is unavailable"
|
649 |
msgstr ""
|
652 |
msgid "report generated by"
|
653 |
msgstr ""
|
654 |
|
655 |
+
#: .././admin/setup.php:196 .././admin/widgets.php:32 .././front/setup.php:108
|
656 |
+
msgid "This plugin needs an authorization:"
|
657 |
+
msgstr ""
|
658 |
+
|
659 |
+
#: .././admin/setup.php:227
|
660 |
msgid "Settings"
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: .././admin/setup.php:239
|
664 |
#, php-format
|
665 |
msgid "Google Analytics Dashboard for WP has been updated to version %s."
|
666 |
msgstr ""
|
667 |
|
668 |
+
#: .././admin/setup.php:239
|
669 |
#, php-format
|
670 |
msgid "For details, check out %1$s and %2$s."
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: .././admin/setup.php:239
|
674 |
msgid "the documentation page"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: .././admin/setup.php:239
|
678 |
msgid "the plugin's settings page"
|
679 |
msgstr ""
|
680 |
|
682 |
msgid "Google Analytics Dashboard"
|
683 |
msgstr ""
|
684 |
|
|
|
|
|
|
|
|
|
685 |
#: .././admin/widgets.php:66
|
686 |
msgid "Something went wrong while retrieving profiles list."
|
687 |
msgstr ""
|
708 |
msgid "Find out more!"
|
709 |
msgstr ""
|
710 |
|
711 |
+
#: .././admin/widgets.php:113
|
712 |
msgid "Real-Time"
|
713 |
msgstr ""
|
714 |
|
715 |
+
#: .././admin/widgets.php:126 .././admin/widgets.php:823 .././front/widgets.php:36
|
716 |
#: .././tools/gapi.php:373 .././tools/gapi.php:503 .././tools/gapi.php:536 .././tools/gapi.php:586
|
717 |
#: .././tools/gapi.php:666 .././tools/gapi.php:695
|
718 |
msgid "Sessions"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: .././admin/widgets.php:132 .././tools/gapi.php:471
|
722 |
msgid "Pages"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: .././admin/widgets.php:233 .././admin/widgets.php:475
|
726 |
msgid "REFERRAL"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: .././admin/widgets.php:237 .././admin/widgets.php:476
|
730 |
msgid "ORGANIC"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: .././admin/widgets.php:241 .././admin/widgets.php:361 .././admin/widgets.php:477
|
734 |
msgid "SOCIAL"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: .././admin/widgets.php:245 .././admin/widgets.php:364 .././admin/widgets.php:478
|
738 |
msgid "CAMPAIGN"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: .././admin/widgets.php:249 .././admin/widgets.php:367 .././admin/widgets.php:481
|
742 |
msgid "DIRECT"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: .././admin/widgets.php:253 .././admin/widgets.php:482
|
746 |
msgid "NEW"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: .././admin/widgets.php:355
|
750 |
msgid "REFERRALS"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: .././admin/widgets.php:358
|
754 |
msgid "KEYWORDS"
|
755 |
msgstr ""
|
756 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: deconf
|
|
3 |
Donate link: https://deconf.com/donate/
|
4 |
Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal google analytics,realtime,multisite,gadwp
|
5 |
Requires at least: 3.5
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 4.8.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -128,6 +128,20 @@ Google Analytics Dashboard for WP it's released under the GPLv2, you can use it
|
|
128 |
|
129 |
== Changelog ==
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
= 4.8.1.2 =
|
132 |
- Bug Fix: fixes automatic update switched on after each update
|
133 |
- Bug Fix: add missing domain to an i18n string
|
3 |
Donate link: https://deconf.com/donate/
|
4 |
Tags: google,analytics,google analytics,dashboard,analytics dashboard,google analytics dashboard,google analytics plugin,google analytics widget,tracking,universal google analytics,realtime,multisite,gadwp
|
5 |
Requires at least: 3.5
|
6 |
+
Tested up to: 4.3
|
7 |
+
Stable tag: 4.8.1.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
128 |
|
129 |
== Changelog ==
|
130 |
|
131 |
+
= 4.8.1.3 =
|
132 |
+
- Bug Fix: truncate long translation strings in google analytics reports
|
133 |
+
- Bug Fix: rename query args to something more unique to avoid conflicts with other plugins
|
134 |
+
- Bug Fix: Italian translation small fix
|
135 |
+
- Bug Fix: add text domain and domain path in plugin's header; switch to default text domain
|
136 |
+
- Bug Fix: avoid empty item reports while the URI ends with a slash and a Default Page is set in View settings (requires re-authorization)
|
137 |
+
- Enhancement: throw an error in the General Settings screen (even if it's not a blocker) to acknowledge the user
|
138 |
+
- Enhancement: item reports improvements, more suggestive error messages in item reports, hide unnecessary item reports divs on critical errors
|
139 |
+
- Enhancement: Spanish translation updated
|
140 |
+
- Enhancement: Greek translation, props by [Kostas Asargiotakis](https://www.facebook.com/kwstas.as)
|
141 |
+
- Enhancement: i18n improvements, props by [Ivan Ridao Freitas](http://ivanrf.com)
|
142 |
+
- Enhancement: all Google Analytics API requests need to pass additional validity checks and must be sent through get() method
|
143 |
+
- Enhancement: unset default dimension and default metric cookies after a plugin update
|
144 |
+
|
145 |
= 4.8.1.2 =
|
146 |
- Bug Fix: fixes automatic update switched on after each update
|
147 |
- Bug Fix: add missing domain to an i18n string
|
tools/gapi.php
CHANGED
@@ -75,7 +75,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
75 |
}
|
76 |
|
77 |
/**
|
78 |
-
* Handles errors returned by GAPI
|
79 |
*
|
80 |
* @return boolean
|
81 |
*/
|
@@ -88,9 +88,15 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
88 |
$this->reset_token( false );
|
89 |
return true;
|
90 |
}
|
91 |
-
if ( isset( $errors[1][0]['reason'] ) && ( $errors[1][0]['reason'] == 'userRateLimitExceeded' || $errors[1][0]['reason'] == 'quotaExceeded' ) ) {
|
92 |
-
|
93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
94 |
}
|
95 |
if ( $errors[0] == 400 || $errors[0] == 401 || $errors[0] == 403 ) {
|
96 |
return true;
|
@@ -125,18 +131,18 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
125 |
<table class="options">
|
126 |
<tr>
|
127 |
<td colspan="2" class="info">
|
128 |
-
<?php echo __( "Use this link to get your access code:", '
|
129 |
</td>
|
130 |
</tr>
|
131 |
<tr>
|
132 |
-
<td class="title"><label for="ga_dash_code" title="<?php _e("Use the red link to get your access code!",'
|
133 |
-
<td><input type="text" id="ga_dash_code" name="ga_dash_code" value="" size="61" required="required" title="<?php _e("Use the red link to get your access code!",'
|
134 |
</tr>
|
135 |
<tr>
|
136 |
<td colspan="2"><hr></td>
|
137 |
</tr>
|
138 |
<tr>
|
139 |
-
<td colspan="2"><input type="submit" class="button button-secondary" name="ga_dash_authorize" value="<?php _e( "Save Access Code", '
|
140 |
</tr>
|
141 |
</table>
|
142 |
</form>
|
@@ -169,8 +175,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
169 |
$timetz = new DateTimeZone( $profile->getTimezone() );
|
170 |
$localtime = new DateTime( 'now', $timetz );
|
171 |
$timeshift = strtotime( $localtime->format( 'Y-m-d H:i:s' ) ) - time();
|
172 |
-
$ga_dash_profile_list[] = array( $profile->getName(), $profile->getId(), $profile->getwebPropertyId(), $profile->getwebsiteUrl(), $timeshift, $profile->getTimezone() );
|
173 |
-
|
174 |
$startindex++;
|
175 |
}
|
176 |
}
|
@@ -179,9 +184,8 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
179 |
if ( empty( $ga_dash_profile_list ) ) {
|
180 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': No properties were found in this account!', $this->error_timeout );
|
181 |
} else {
|
182 |
-
|
183 |
}
|
184 |
-
|
185 |
return $ga_dash_profile_list;
|
186 |
} catch ( Google_IO_Exception $e ) {
|
187 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': ' . esc_html( $e ), $this->error_timeout );
|
@@ -280,8 +284,6 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
280 |
/**
|
281 |
* Get and cache Core Reports
|
282 |
*
|
283 |
-
* @todo implement retries with exponential backoff
|
284 |
-
*
|
285 |
* @param
|
286 |
* $projecId
|
287 |
* @param
|
@@ -310,6 +312,8 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
310 |
}
|
311 |
$data = $this->service->data_ga->get( 'ga:' . $projectId, $from, $to, $metrics, $options );
|
312 |
set_transient( $serial, $data, $this->get_timeouts( $timeouts ) );
|
|
|
|
|
313 |
} else {
|
314 |
$data = $transient;
|
315 |
}
|
@@ -352,37 +356,37 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
352 |
* $query
|
353 |
* @return array|int
|
354 |
*/
|
355 |
-
|
356 |
switch ( $query ) {
|
357 |
case 'users' :
|
358 |
-
$title = __( "Users", '
|
359 |
break;
|
360 |
case 'pageviews' :
|
361 |
-
$title = __( "Page Views", '
|
362 |
break;
|
363 |
case 'visitBounceRate' :
|
364 |
-
$title = __( "Bounce Rate", '
|
365 |
break;
|
366 |
case 'organicSearches' :
|
367 |
-
$title = __( "Organic Searches", '
|
368 |
break;
|
369 |
case 'uniquePageviews' :
|
370 |
-
$title = __( "Unique Page Views", '
|
371 |
break;
|
372 |
default :
|
373 |
-
$title = __( "Sessions", '
|
374 |
}
|
375 |
$metrics = 'ga:' . $query;
|
376 |
if ( $from == "today" || $from == "yesterday" ) {
|
377 |
$dimensions = 'ga:hour';
|
378 |
-
$dayorhour = __( "Hour", '
|
379 |
} else
|
380 |
if ( $from == "365daysAgo" || $from == "1095daysAgo" ) {
|
381 |
$dimensions = 'ga:yearMonth, ga:month';
|
382 |
-
$dayorhour = __( "Date", '
|
383 |
} else {
|
384 |
$dimensions = 'ga:date,ga:dayOfWeekName';
|
385 |
-
$dayorhour = __( "Date", '
|
386 |
}
|
387 |
$options = array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId );
|
388 |
if ( $filter ) {
|
@@ -400,11 +404,13 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
400 |
}
|
401 |
} else if ( $from == "365daysAgo" || $from == "1095daysAgo" ) {
|
402 |
foreach ( $data->getRows() as $row ) {
|
403 |
-
|
|
|
404 |
}
|
405 |
}else{
|
406 |
foreach ( $data->getRows() as $row ) {
|
407 |
-
|
|
|
408 |
}
|
409 |
}
|
410 |
return $gadwp_data;
|
@@ -421,7 +427,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
421 |
* $to
|
422 |
* @return array|int
|
423 |
*/
|
424 |
-
|
425 |
$options = array( 'dimensions' => null, 'quotaUser' => $this->managequota . 'p' . $projectId );
|
426 |
if ( $filter ) {
|
427 |
$options['filters'] = 'ga:pagePath==' . $filter;
|
@@ -442,6 +448,15 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
442 |
foreach ( $data->getRows() as $row ) {
|
443 |
$gadwp_data = array_map( 'floatval', $row );
|
444 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
return $gadwp_data;
|
446 |
}
|
447 |
|
@@ -456,7 +471,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
456 |
* $to
|
457 |
* @return array|int
|
458 |
*/
|
459 |
-
|
460 |
$metrics = 'ga:pageviews';
|
461 |
$dimensions = 'ga:pageTitle';
|
462 |
$options = array( 'dimensions' => $dimensions, 'sort' => '-ga:pageviews', 'quotaUser' => $this->managequota . 'p' . $projectId );
|
@@ -468,7 +483,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
468 |
if ( is_numeric( $data ) ) {
|
469 |
return $data;
|
470 |
}
|
471 |
-
$gadwp_data = array( array( __( "Pages", '
|
472 |
foreach ( $data->getRows() as $row ) {
|
473 |
$gadwp_data[] = array( esc_html( $row[0] ), (int) $row[1] );
|
474 |
}
|
@@ -486,7 +501,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
486 |
* $to
|
487 |
* @return array|int
|
488 |
*/
|
489 |
-
|
490 |
$metrics = 'ga:sessions';
|
491 |
$dimensions = 'ga:source';
|
492 |
$options = array( 'dimensions' => $dimensions, 'sort' => '-ga:sessions', 'quotaUser' => $this->managequota . 'p' . $projectId );
|
@@ -500,7 +515,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
500 |
if ( is_numeric( $data ) ) {
|
501 |
return $data;
|
502 |
}
|
503 |
-
$gadwp_data = array( array( __( "Referrers", '
|
504 |
foreach ( $data->getRows() as $row ) {
|
505 |
$gadwp_data[] = array( esc_html( $row[0] ), (int) $row[1] );
|
506 |
}
|
@@ -518,7 +533,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
518 |
* $to
|
519 |
* @return array|int
|
520 |
*/
|
521 |
-
|
522 |
$metrics = 'ga:sessions';
|
523 |
$dimensions = 'ga:keyword';
|
524 |
$options = array( 'dimensions' => $dimensions, 'sort' => '-ga:sessions', 'quotaUser' => $this->managequota . 'p' . $projectId );
|
@@ -533,7 +548,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
533 |
return $data;
|
534 |
}
|
535 |
|
536 |
-
$gadwp_data = array( array( __( "Searches", '
|
537 |
foreach ( $data->getRows() as $row ) {
|
538 |
$gadwp_data[] = array( esc_html( $row[0] ), (int) $row[1] );
|
539 |
}
|
@@ -551,10 +566,10 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
551 |
* $to
|
552 |
* @return array|int
|
553 |
*/
|
554 |
-
|
555 |
$metrics = 'ga:sessions';
|
556 |
$options = "";
|
557 |
-
$title = __( "Countries", '
|
558 |
$serial = 'gadash_qr7_' . $this->get_serial( $projectId . $from . $filter );
|
559 |
$dimensions = 'ga:country';
|
560 |
$local_filter = '';
|
@@ -564,7 +579,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
564 |
$country_codes = GADWP_Tools::get_countrycodes();
|
565 |
if ( isset( $country_codes[$this->gadwp->config->options['ga_target_geomap']] ) ) {
|
566 |
$local_filter = 'ga:country==' . ( $country_codes[$this->gadwp->config->options['ga_target_geomap']] );
|
567 |
-
$title = __( "Cities from", '
|
568 |
$serial = 'gadash_qr7_' . $this->get_serial( $projectId . $from . $this->gadwp->config->options['ga_target_geomap'] . $filter );
|
569 |
}
|
570 |
}
|
@@ -583,7 +598,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
583 |
if ( is_numeric( $data ) ) {
|
584 |
return $data;
|
585 |
}
|
586 |
-
$gadwp_data = array( array( $title, __( "Sessions", '
|
587 |
foreach ( $data->getRows() as $row ) {
|
588 |
if ( isset( $row[2] ) ) {
|
589 |
$gadwp_data[] = array( esc_html( $row[0] ) . ', ' . esc_html( $row[1] ), (int) $row[2] );
|
@@ -605,7 +620,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
605 |
* $to
|
606 |
* @return array|int
|
607 |
*/
|
608 |
-
|
609 |
$metrics = 'ga:sessions';
|
610 |
$dimensions = 'ga:channelGrouping';
|
611 |
$options = array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId );
|
@@ -617,7 +632,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
617 |
if ( is_numeric( $data ) ) {
|
618 |
return $data;
|
619 |
}
|
620 |
-
$title = __( "Channels", '
|
621 |
$gadwp_data = array( array( '<div style="color:black; font-size:1.1em">' . $title . '</div><div style="color:darkblue; font-size:1.2em">' . (int) $data['totalsForAllResults']["ga:sessions"] . '</div>', "" ) );
|
622 |
foreach ( $data->getRows() as $row ) {
|
623 |
$shrink = explode( " ", $row[0] );
|
@@ -639,7 +654,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
639 |
* $query
|
640 |
* @return array|int
|
641 |
*/
|
642 |
-
|
643 |
$metrics = 'ga:sessions';
|
644 |
$dimensions = 'ga:' . $query;
|
645 |
|
@@ -663,7 +678,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
663 |
if ( is_numeric( $data ) ) {
|
664 |
return $data;
|
665 |
}
|
666 |
-
$gadwp_data = array( array( __( "Type", '
|
667 |
foreach ( $data->getRows() as $row ) {
|
668 |
$gadwp_data[] = array( str_replace( "(none)", "direct", esc_html( $row[0] ) ), (int) $row[1] );
|
669 |
}
|
@@ -692,7 +707,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
692 |
if ( is_numeric( $data ) ) {
|
693 |
return $data;
|
694 |
}
|
695 |
-
$gadwp_data = array( array( __( "Date", '
|
696 |
if ( $anonim ) {
|
697 |
$max_array = array();
|
698 |
foreach ( $data->getRows() as $item ) {
|
@@ -701,10 +716,10 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
701 |
$max = max( $max_array ) ? max( $max_array ) : 1;
|
702 |
}
|
703 |
foreach ( $data->getRows() as $row ) {
|
704 |
-
$gadwp_data[] = array(
|
705 |
}
|
706 |
$totals = $data->getTotalsForAllResults();
|
707 |
-
return array( $gadwp_data, $anonim ? 0 : $totals['ga:sessions'] );
|
708 |
}
|
709 |
|
710 |
/**
|
@@ -714,7 +729,7 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
714 |
* $projectId
|
715 |
* @return array|int
|
716 |
*/
|
717 |
-
|
718 |
$metrics = 'rt:activeUsers';
|
719 |
$dimensions = 'rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle';
|
720 |
try {
|
@@ -726,6 +741,8 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
726 |
}
|
727 |
$data = $this->service->data_realtime->get( 'ga:' . $projectId, $metrics, array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId ) );
|
728 |
set_transient( $serial, $data, 55 );
|
|
|
|
|
729 |
} else {
|
730 |
$data = $transient;
|
731 |
}
|
@@ -750,6 +767,10 @@ if ( ! class_exists( 'GADWP_GAPI_Controller' ) ) {
|
|
750 |
}
|
751 |
|
752 |
public function get( $projectId, $query, $from = false, $to = false, $filter = '' ) {
|
|
|
|
|
|
|
|
|
753 |
switch ( $query ) {
|
754 |
case 'referrers' :
|
755 |
return $this->get_referrers( $projectId, $from, $to, $filter );
|
75 |
}
|
76 |
|
77 |
/**
|
78 |
+
* Handles errors returned by GAPI
|
79 |
*
|
80 |
* @return boolean
|
81 |
*/
|
88 |
$this->reset_token( false );
|
89 |
return true;
|
90 |
}
|
91 |
+
if ( isset( $errors[1][0]['reason'] ) && ( $errors[1][0]['reason'] == 'userRateLimitExceeded' || $errors[1][0]['reason'] == 'quotaExceeded' ) ) {
|
92 |
+
if ($this->gadwp->config->options['api_backoff'] <= 5) {
|
93 |
+
usleep( rand( 100000, 1500000 ) );
|
94 |
+
$this->gadwp->config->options['api_backoff'] = $this->gadwp->config->options['api_backoff'] + 1;
|
95 |
+
$this->gadwp->config->set_plugin_options();
|
96 |
+
return false;
|
97 |
+
} else {
|
98 |
+
return true;
|
99 |
+
}
|
100 |
}
|
101 |
if ( $errors[0] == 400 || $errors[0] == 401 || $errors[0] == 403 ) {
|
102 |
return true;
|
131 |
<table class="options">
|
132 |
<tr>
|
133 |
<td colspan="2" class="info">
|
134 |
+
<?php echo __( "Use this link to get your access code:", 'google-analytics-dashboard-for-wp' ) . ' <a href="' . $authUrl . '" id="gapi-access-code" target="_blank">' . __ ( "Get Access Code", 'google-analytics-dashboard-for-wp' ) . '</a>.'; ?>
|
135 |
</td>
|
136 |
</tr>
|
137 |
<tr>
|
138 |
+
<td class="title"><label for="ga_dash_code" title="<?php _e("Use the red link to get your access code!",'google-analytics-dashboard-for-wp')?>"><?php echo _e( "Access Code:", 'google-analytics-dashboard-for-wp' ); ?></label></td>
|
139 |
+
<td><input type="text" id="ga_dash_code" name="ga_dash_code" value="" size="61" required="required" title="<?php _e("Use the red link to get your access code!",'google-analytics-dashboard-for-wp')?>"></td>
|
140 |
</tr>
|
141 |
<tr>
|
142 |
<td colspan="2"><hr></td>
|
143 |
</tr>
|
144 |
<tr>
|
145 |
+
<td colspan="2"><input type="submit" class="button button-secondary" name="ga_dash_authorize" value="<?php _e( "Save Access Code", 'google-analytics-dashboard-for-wp' ); ?>" /></td>
|
146 |
</tr>
|
147 |
</table>
|
148 |
</form>
|
175 |
$timetz = new DateTimeZone( $profile->getTimezone() );
|
176 |
$localtime = new DateTime( 'now', $timetz );
|
177 |
$timeshift = strtotime( $localtime->format( 'Y-m-d H:i:s' ) ) - time();
|
178 |
+
$ga_dash_profile_list[] = array( $profile->getName(), $profile->getId(), $profile->getwebPropertyId(), $profile->getwebsiteUrl(), $timeshift, $profile->getTimezone(), $profile->getDefaultPage() );
|
|
|
179 |
$startindex++;
|
180 |
}
|
181 |
}
|
184 |
if ( empty( $ga_dash_profile_list ) ) {
|
185 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': No properties were found in this account!', $this->error_timeout );
|
186 |
} else {
|
187 |
+
delete_transient( 'ga_dash_lasterror' );
|
188 |
}
|
|
|
189 |
return $ga_dash_profile_list;
|
190 |
} catch ( Google_IO_Exception $e ) {
|
191 |
set_transient( 'ga_dash_lasterror', date( 'Y-m-d H:i:s' ) . ': ' . esc_html( $e ), $this->error_timeout );
|
284 |
/**
|
285 |
* Get and cache Core Reports
|
286 |
*
|
|
|
|
|
287 |
* @param
|
288 |
* $projecId
|
289 |
* @param
|
312 |
}
|
313 |
$data = $this->service->data_ga->get( 'ga:' . $projectId, $from, $to, $metrics, $options );
|
314 |
set_transient( $serial, $data, $this->get_timeouts( $timeouts ) );
|
315 |
+
$this->gadwp->config->options['api_backoff'] = 0;
|
316 |
+
$this->gadwp->config->set_plugin_options();
|
317 |
} else {
|
318 |
$data = $transient;
|
319 |
}
|
356 |
* $query
|
357 |
* @return array|int
|
358 |
*/
|
359 |
+
private function get_mainreport( $projectId, $from, $to, $query, $filter = '' ) {
|
360 |
switch ( $query ) {
|
361 |
case 'users' :
|
362 |
+
$title = __( "Users", 'google-analytics-dashboard-for-wp' );
|
363 |
break;
|
364 |
case 'pageviews' :
|
365 |
+
$title = __( "Page Views", 'google-analytics-dashboard-for-wp' );
|
366 |
break;
|
367 |
case 'visitBounceRate' :
|
368 |
+
$title = __( "Bounce Rate", 'google-analytics-dashboard-for-wp' );
|
369 |
break;
|
370 |
case 'organicSearches' :
|
371 |
+
$title = __( "Organic Searches", 'google-analytics-dashboard-for-wp' );
|
372 |
break;
|
373 |
case 'uniquePageviews' :
|
374 |
+
$title = __( "Unique Page Views", 'google-analytics-dashboard-for-wp' );
|
375 |
break;
|
376 |
default :
|
377 |
+
$title = __( "Sessions", 'google-analytics-dashboard-for-wp' );
|
378 |
}
|
379 |
$metrics = 'ga:' . $query;
|
380 |
if ( $from == "today" || $from == "yesterday" ) {
|
381 |
$dimensions = 'ga:hour';
|
382 |
+
$dayorhour = __( "Hour", 'google-analytics-dashboard-for-wp' );
|
383 |
} else
|
384 |
if ( $from == "365daysAgo" || $from == "1095daysAgo" ) {
|
385 |
$dimensions = 'ga:yearMonth, ga:month';
|
386 |
+
$dayorhour = __( "Date", 'google-analytics-dashboard-for-wp' );
|
387 |
} else {
|
388 |
$dimensions = 'ga:date,ga:dayOfWeekName';
|
389 |
+
$dayorhour = __( "Date", 'google-analytics-dashboard-for-wp' );
|
390 |
}
|
391 |
$options = array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId );
|
392 |
if ( $filter ) {
|
404 |
}
|
405 |
} else if ( $from == "365daysAgo" || $from == "1095daysAgo" ) {
|
406 |
foreach ( $data->getRows() as $row ) {
|
407 |
+
//$row[0] contains 'yyyyMM', '01' is added to make it a valid date format
|
408 |
+
$gadwp_data[] = array( date_i18n( 'F, Y', strtotime( $row[0] . '01' ) ), round( $row[2], 2 ) );
|
409 |
}
|
410 |
}else{
|
411 |
foreach ( $data->getRows() as $row ) {
|
412 |
+
// $row[0] contains 'yyyyMMdd'
|
413 |
+
$gadwp_data[] = array( date_i18n( 'l, ' . __( 'F j, Y' ), strtotime( $row[0] ) ), round( $row[2], 2 ) );
|
414 |
}
|
415 |
}
|
416 |
return $gadwp_data;
|
427 |
* $to
|
428 |
* @return array|int
|
429 |
*/
|
430 |
+
private function get_bottomstats( $projectId, $from, $to, $filter = '' ) {
|
431 |
$options = array( 'dimensions' => null, 'quotaUser' => $this->managequota . 'p' . $projectId );
|
432 |
if ( $filter ) {
|
433 |
$options['filters'] = 'ga:pagePath==' . $filter;
|
448 |
foreach ( $data->getRows() as $row ) {
|
449 |
$gadwp_data = array_map( 'floatval', $row );
|
450 |
}
|
451 |
+
|
452 |
+
//i18n support
|
453 |
+
$gadwp_data[0] = number_format_i18n( $gadwp_data[0] );
|
454 |
+
$gadwp_data[1] = number_format_i18n( $gadwp_data[1] );
|
455 |
+
$gadwp_data[2] = number_format_i18n( $gadwp_data[2] );
|
456 |
+
$gadwp_data[3] = number_format_i18n( $gadwp_data[3], 2 );
|
457 |
+
$gadwp_data[4] = number_format_i18n( $gadwp_data[4] );
|
458 |
+
$gadwp_data[5] = number_format_i18n( $gadwp_data[5], 2 );
|
459 |
+
|
460 |
return $gadwp_data;
|
461 |
}
|
462 |
|
471 |
* $to
|
472 |
* @return array|int
|
473 |
*/
|
474 |
+
private function get_contentpages( $projectId, $from, $to, $filter = '' ) {
|
475 |
$metrics = 'ga:pageviews';
|
476 |
$dimensions = 'ga:pageTitle';
|
477 |
$options = array( 'dimensions' => $dimensions, 'sort' => '-ga:pageviews', 'quotaUser' => $this->managequota . 'p' . $projectId );
|
483 |
if ( is_numeric( $data ) ) {
|
484 |
return $data;
|
485 |
}
|
486 |
+
$gadwp_data = array( array( __( "Pages", 'google-analytics-dashboard-for-wp' ), __( "Views", 'google-analytics-dashboard-for-wp' ) ) );
|
487 |
foreach ( $data->getRows() as $row ) {
|
488 |
$gadwp_data[] = array( esc_html( $row[0] ), (int) $row[1] );
|
489 |
}
|
501 |
* $to
|
502 |
* @return array|int
|
503 |
*/
|
504 |
+
private function get_referrers( $projectId, $from, $to, $filter = '' ) {
|
505 |
$metrics = 'ga:sessions';
|
506 |
$dimensions = 'ga:source';
|
507 |
$options = array( 'dimensions' => $dimensions, 'sort' => '-ga:sessions', 'quotaUser' => $this->managequota . 'p' . $projectId );
|
515 |
if ( is_numeric( $data ) ) {
|
516 |
return $data;
|
517 |
}
|
518 |
+
$gadwp_data = array( array( __( "Referrers", 'google-analytics-dashboard-for-wp' ), __( "Sessions", 'google-analytics-dashboard-for-wp' ) ) );
|
519 |
foreach ( $data->getRows() as $row ) {
|
520 |
$gadwp_data[] = array( esc_html( $row[0] ), (int) $row[1] );
|
521 |
}
|
533 |
* $to
|
534 |
* @return array|int
|
535 |
*/
|
536 |
+
private function get_searches( $projectId, $from, $to, $filter = '' ) {
|
537 |
$metrics = 'ga:sessions';
|
538 |
$dimensions = 'ga:keyword';
|
539 |
$options = array( 'dimensions' => $dimensions, 'sort' => '-ga:sessions', 'quotaUser' => $this->managequota . 'p' . $projectId );
|
548 |
return $data;
|
549 |
}
|
550 |
|
551 |
+
$gadwp_data = array( array( __( "Searches", 'google-analytics-dashboard-for-wp' ), __( "Sessions", 'google-analytics-dashboard-for-wp' ) ) );
|
552 |
foreach ( $data->getRows() as $row ) {
|
553 |
$gadwp_data[] = array( esc_html( $row[0] ), (int) $row[1] );
|
554 |
}
|
566 |
* $to
|
567 |
* @return array|int
|
568 |
*/
|
569 |
+
private function get_locations( $projectId, $from, $to, $filter = '' ) {
|
570 |
$metrics = 'ga:sessions';
|
571 |
$options = "";
|
572 |
+
$title = __( "Countries", 'google-analytics-dashboard-for-wp' );
|
573 |
$serial = 'gadash_qr7_' . $this->get_serial( $projectId . $from . $filter );
|
574 |
$dimensions = 'ga:country';
|
575 |
$local_filter = '';
|
579 |
$country_codes = GADWP_Tools::get_countrycodes();
|
580 |
if ( isset( $country_codes[$this->gadwp->config->options['ga_target_geomap']] ) ) {
|
581 |
$local_filter = 'ga:country==' . ( $country_codes[$this->gadwp->config->options['ga_target_geomap']] );
|
582 |
+
$title = __( "Cities from", 'google-analytics-dashboard-for-wp' ) . ' ' . __( $country_codes[$this->gadwp->config->options['ga_target_geomap']] );
|
583 |
$serial = 'gadash_qr7_' . $this->get_serial( $projectId . $from . $this->gadwp->config->options['ga_target_geomap'] . $filter );
|
584 |
}
|
585 |
}
|
598 |
if ( is_numeric( $data ) ) {
|
599 |
return $data;
|
600 |
}
|
601 |
+
$gadwp_data = array( array( $title, __( "Sessions", 'google-analytics-dashboard-for-wp' ) ) );
|
602 |
foreach ( $data->getRows() as $row ) {
|
603 |
if ( isset( $row[2] ) ) {
|
604 |
$gadwp_data[] = array( esc_html( $row[0] ) . ', ' . esc_html( $row[1] ), (int) $row[2] );
|
620 |
* $to
|
621 |
* @return array|int
|
622 |
*/
|
623 |
+
private function get_trafficchannels( $projectId, $from, $to, $filter = '' ) {
|
624 |
$metrics = 'ga:sessions';
|
625 |
$dimensions = 'ga:channelGrouping';
|
626 |
$options = array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId );
|
632 |
if ( is_numeric( $data ) ) {
|
633 |
return $data;
|
634 |
}
|
635 |
+
$title = __( "Channels", 'google-analytics-dashboard-for-wp' );
|
636 |
$gadwp_data = array( array( '<div style="color:black; font-size:1.1em">' . $title . '</div><div style="color:darkblue; font-size:1.2em">' . (int) $data['totalsForAllResults']["ga:sessions"] . '</div>', "" ) );
|
637 |
foreach ( $data->getRows() as $row ) {
|
638 |
$shrink = explode( " ", $row[0] );
|
654 |
* $query
|
655 |
* @return array|int
|
656 |
*/
|
657 |
+
private function get_trafficdetails( $projectId, $from, $to, $query, $filter = '' ) {
|
658 |
$metrics = 'ga:sessions';
|
659 |
$dimensions = 'ga:' . $query;
|
660 |
|
678 |
if ( is_numeric( $data ) ) {
|
679 |
return $data;
|
680 |
}
|
681 |
+
$gadwp_data = array( array( __( "Type", 'google-analytics-dashboard-for-wp' ), __( "Sessions", 'google-analytics-dashboard-for-wp' ) ) );
|
682 |
foreach ( $data->getRows() as $row ) {
|
683 |
$gadwp_data[] = array( str_replace( "(none)", "direct", esc_html( $row[0] ) ), (int) $row[1] );
|
684 |
}
|
707 |
if ( is_numeric( $data ) ) {
|
708 |
return $data;
|
709 |
}
|
710 |
+
$gadwp_data = array( array( __( "Date", 'google-analytics-dashboard-for-wp' ), __( "Sessions", 'google-analytics-dashboard-for-wp' ) ) );
|
711 |
if ( $anonim ) {
|
712 |
$max_array = array();
|
713 |
foreach ( $data->getRows() as $item ) {
|
716 |
$max = max( $max_array ) ? max( $max_array ) : 1;
|
717 |
}
|
718 |
foreach ( $data->getRows() as $row ) {
|
719 |
+
$gadwp_data[] = array( date_i18n( 'l, ' . __( 'F j, Y' ), strtotime( $row[0] ) ), ( $anonim ? round( $row[2] * 100 / $max, 2 ) : (int) $row[2] ) );
|
720 |
}
|
721 |
$totals = $data->getTotalsForAllResults();
|
722 |
+
return array( $gadwp_data, $anonim ? 0 : number_format_i18n( $totals['ga:sessions'] ) );
|
723 |
}
|
724 |
|
725 |
/**
|
729 |
* $projectId
|
730 |
* @return array|int
|
731 |
*/
|
732 |
+
private function get_realtime( $projectId ) {
|
733 |
$metrics = 'rt:activeUsers';
|
734 |
$dimensions = 'rt:pagePath,rt:source,rt:keyword,rt:trafficType,rt:visitorType,rt:pageTitle';
|
735 |
try {
|
741 |
}
|
742 |
$data = $this->service->data_realtime->get( 'ga:' . $projectId, $metrics, array( 'dimensions' => $dimensions, 'quotaUser' => $this->managequota . 'p' . $projectId ) );
|
743 |
set_transient( $serial, $data, 55 );
|
744 |
+
$this->gadwp->config->options['api_backoff'] = 0;
|
745 |
+
$this->gadwp->config->set_plugin_options();
|
746 |
} else {
|
747 |
$data = $transient;
|
748 |
}
|
767 |
}
|
768 |
|
769 |
public function get( $projectId, $query, $from = false, $to = false, $filter = '' ) {
|
770 |
+
if ( empty( $projectId ) || ! is_numeric( $projectId ) ) {
|
771 |
+
return - 25;
|
772 |
+
}
|
773 |
+
|
774 |
switch ( $query ) {
|
775 |
case 'referrers' :
|
776 |
return $this->get_referrers( $projectId, $from, $to, $filter );
|
{admin → tools}/js/item-reports.js
RENAMED
@@ -1,14 +1,21 @@
|
|
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 |
|
@@ -19,13 +26,24 @@ function () {
|
|
19 |
} );
|
20 |
|
21 |
function getID ( item ) {
|
22 |
-
if (
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
|
|
|
|
|
|
|
|
27 |
} else {
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
}
|
30 |
}
|
31 |
|
@@ -66,6 +84,13 @@ function () {
|
|
66 |
|
67 |
jQuery.fn.extend( {
|
68 |
gadwpItemReport : function ( slug, item_id ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
var tools = {
|
71 |
set_cookie : function ( name, value ) {
|
@@ -326,9 +351,9 @@ jQuery.fn.extend( {
|
|
326 |
jQuery( "#gdsessions" + slug ).text( gadwp_bottomstats[ 0 ] );
|
327 |
jQuery( "#gdusers" + slug ).text( gadwp_bottomstats[ 1 ] );
|
328 |
jQuery( "#gdpageviews" + slug ).text( gadwp_bottomstats[ 2 ] );
|
329 |
-
jQuery( "#gdbouncerate" + slug ).text(
|
330 |
jQuery( "#gdorganicsearch" + slug ).text( gadwp_bottomstats[ 4 ] );
|
331 |
-
jQuery( "#gdpagespervisit" + slug ).text(
|
332 |
},
|
333 |
|
334 |
throwDebug : function ( response ) {
|
@@ -339,8 +364,12 @@ jQuery.fn.extend( {
|
|
339 |
"color" : "#000",
|
340 |
"border-left" : "5px solid red"
|
341 |
} );
|
342 |
-
|
343 |
-
|
|
|
|
|
|
|
|
|
344 |
},
|
345 |
|
346 |
throwError : function ( target, response, p ) {
|
@@ -361,6 +390,7 @@ jQuery.fn.extend( {
|
|
361 |
|
362 |
render : function ( period, query ) {
|
363 |
var from, to;
|
|
|
364 |
jQuery( '#gadwp-status' + slug ).html( '' );
|
365 |
switch ( period ) {
|
366 |
case 'today':
|
@@ -400,18 +430,29 @@ jQuery.fn.extend( {
|
|
400 |
tools.set_cookie( 'default_metric', query );
|
401 |
tools.set_cookie( 'default_dimension', period );
|
402 |
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
}
|
410 |
|
411 |
if ( jQuery.inArray( query, [ 'referrers', 'contentpages', 'searches' ] ) > -1 ) {
|
412 |
|
413 |
-
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-trafficchannels' + slug + '"></div>' )
|
414 |
jQuery( '#gadwp-reports' + slug ).append( '<div id="gadwp-prs' + slug + '"></div>' );
|
|
|
415 |
|
416 |
data.query = 'trafficchannels,' + query;
|
417 |
|
@@ -419,12 +460,14 @@ jQuery.fn.extend( {
|
|
419 |
if ( jQuery.isArray( response ) ) {
|
420 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
421 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
|
|
422 |
reports.trafficchannels = response[ 0 ];
|
423 |
google.setOnLoadCallback( reports.drawtrafficchannels( reports.trafficchannels ) );
|
424 |
} else {
|
425 |
reports.throwDebug( response[ 0 ] );
|
426 |
}
|
427 |
} else {
|
|
|
428 |
reports.throwError( '#gadwp-trafficchannels' + slug, response[ 0 ], "125px" );
|
429 |
}
|
430 |
|
@@ -446,9 +489,10 @@ jQuery.fn.extend( {
|
|
446 |
|
447 |
} else if ( query == 'trafficdetails' ) {
|
448 |
|
449 |
-
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-trafficchannels' + slug + '"></div>' )
|
450 |
jQuery( '#gadwp-reports' + slug ).append( '<div class="gadwp-floatwraper"><div id="gadwp-trafficmediums' + slug + '"></div><div id="gadwp-traffictype' + slug + '"></div></div>' );
|
451 |
jQuery( '#gadwp-reports' + slug ).append( '<div class="gadwp-floatwraper"><div id="gadwp-trafficorganic' + slug + '"></div><div id="gadwp-socialnetworks' + slug + '"></div></div>' );
|
|
|
452 |
|
453 |
data.query = 'trafficchannels,medium,visitorType,source,socialNetwork';
|
454 |
|
@@ -456,56 +500,66 @@ jQuery.fn.extend( {
|
|
456 |
if ( jQuery.isArray( response ) ) {
|
457 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
458 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
|
|
459 |
reports.trafficchannels = response[ 0 ];
|
460 |
google.setOnLoadCallback( reports.drawtrafficchannels( reports.trafficchannels ) );
|
461 |
} else {
|
462 |
reports.throwDebug( response[ 0 ] );
|
463 |
}
|
464 |
} else {
|
|
|
465 |
reports.throwError( '#gadwp-trafficchannels' + slug, response[ 0 ], "125px" );
|
466 |
}
|
467 |
|
468 |
if ( !jQuery.isNumeric( response[ 1 ] ) ) {
|
469 |
if ( jQuery.isArray( response[ 1 ] ) ) {
|
|
|
470 |
reports.trafficmediums = response[ 1 ];
|
471 |
google.setOnLoadCallback( reports.drawtrafficmediums( reports.trafficmediums ) );
|
472 |
} else {
|
473 |
reports.throwDebug( response[ 1 ] );
|
474 |
}
|
475 |
} else {
|
|
|
476 |
reports.throwError( '#gadwp-trafficmediums' + slug, response[ 1 ], "80px" );
|
477 |
}
|
478 |
|
479 |
if ( !jQuery.isNumeric( response[ 2 ] ) ) {
|
480 |
if ( jQuery.isArray( response[ 2 ] ) ) {
|
|
|
481 |
reports.traffictype = response[ 2 ];
|
482 |
google.setOnLoadCallback( reports.drawtraffictype( reports.traffictype ) );
|
483 |
} else {
|
484 |
reports.throwDebug( response[ 2 ] );
|
485 |
}
|
486 |
} else {
|
|
|
487 |
reports.throwError( '#gadwp-traffictype' + slug, response[ 2 ], "80px" );
|
488 |
}
|
489 |
|
490 |
if ( !jQuery.isNumeric( response[ 3 ] ) ) {
|
491 |
if ( jQuery.isArray( response[ 3 ] ) ) {
|
|
|
492 |
reports.trafficorganic = response[ 3 ];
|
493 |
google.setOnLoadCallback( reports.drawtrafficorganic( reports.trafficorganic ) );
|
494 |
} else {
|
495 |
reports.throwDebug( response[ 3 ] );
|
496 |
}
|
497 |
} else {
|
|
|
498 |
reports.throwError( '#gadwp-trafficorganic' + slug, response[ 3 ], "80px" );
|
499 |
}
|
500 |
|
501 |
if ( !jQuery.isNumeric( response[ 4 ] ) ) {
|
502 |
if ( jQuery.isArray( response[ 4 ] ) ) {
|
|
|
503 |
reports.socialnetworks = response[ 4 ];
|
504 |
google.setOnLoadCallback( reports.drawsocialnetworks( reports.socialnetworks ) );
|
505 |
} else {
|
506 |
reports.throwDebug( response[ 4 ] );
|
507 |
}
|
508 |
} else {
|
|
|
509 |
reports.throwError( '#gadwp-socialnetworks' + slug, response[ 4 ], "80px" );
|
510 |
}
|
511 |
} else {
|
@@ -518,6 +572,7 @@ jQuery.fn.extend( {
|
|
518 |
|
519 |
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-map' + slug + '"></div>' )
|
520 |
jQuery( '#gadwp-reports' + slug ).append( '<div id="gadwp-locations' + slug + '"></div>' );
|
|
|
521 |
|
522 |
data.query = query;
|
523 |
|
@@ -525,6 +580,7 @@ jQuery.fn.extend( {
|
|
525 |
if ( jQuery.isArray( response ) ) {
|
526 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
527 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
|
|
528 |
reports.locations = response[ 0 ];
|
529 |
google.setOnLoadCallback( reports.drawmaplocations( reports.locations ) );
|
530 |
google.setOnLoadCallback( reports.drawlocations( reports.locations ) );
|
@@ -532,6 +588,7 @@ jQuery.fn.extend( {
|
|
532 |
reports.throwDebug( response[ 0 ] );
|
533 |
}
|
534 |
} else {
|
|
|
535 |
reports.throwError( '#gadwp-map' + slug, response[ 0 ], "125px" );
|
536 |
reports.throwError( '#gadwp-locations' + slug, response[ 0 ], "125px" );
|
537 |
}
|
@@ -545,6 +602,7 @@ jQuery.fn.extend( {
|
|
545 |
|
546 |
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-mainchart' + slug + '"></div>' )
|
547 |
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 + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 6 ] + '</h3><p id="gdusers' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 7 ] + '</h3><p id="gdpageviews' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 8 ] + '</h3><p id="gdbouncerate' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 9 ] + '</h3><p id="gdorganicsearch' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 10 ] + '</h3><p id="gdpagespervisit' + slug + '"> </p></div></div></div>' );
|
|
|
548 |
|
549 |
data.query = query + ',bottomstats';
|
550 |
|
@@ -552,6 +610,7 @@ jQuery.fn.extend( {
|
|
552 |
if ( jQuery.isArray( response ) ) {
|
553 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
554 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
|
|
555 |
reports.mainchart = response[ 0 ];
|
556 |
if ( query == 'visitBounceRate' ) {
|
557 |
google.setOnLoadCallback( reports.drawmainchart( reports.mainchart, true ) );
|
@@ -562,16 +621,19 @@ jQuery.fn.extend( {
|
|
562 |
reports.throwDebug( response[ 0 ] );
|
563 |
}
|
564 |
} else {
|
|
|
565 |
reports.throwError( '#gadwp-mainchart' + slug, response[ 0 ], "125px" );
|
566 |
}
|
567 |
if ( !jQuery.isNumeric( response[ 1 ] ) ) {
|
568 |
if ( jQuery.isArray( response[ 1 ] ) ) {
|
|
|
569 |
reports.bottomstats = response[ 1 ];
|
570 |
google.setOnLoadCallback( reports.drawbottomstats( reports.bottomstats ) );
|
571 |
} else {
|
572 |
reports.throwDebug( response[ 1 ] );
|
573 |
}
|
574 |
} else {
|
|
|
575 |
reports.throwError( '#gadwp-bottomstats' + slug, response[ 1 ], "40px" );
|
576 |
}
|
577 |
} else {
|
@@ -663,7 +725,7 @@ jQuery.fn.extend( {
|
|
663 |
fluid : true,
|
664 |
dialogClass : 'gadwp wp-dialog',
|
665 |
resizable : false,
|
666 |
-
title :
|
667 |
position : {
|
668 |
my : "top",
|
669 |
at : "top+100",
|
1 |
"use strict";
|
2 |
|
3 |
google.load( "visualization", "1", {
|
4 |
+
packages : [ "corechart", "table", "orgchart", "geochart" ],
|
5 |
+
'language' : gadwp_item_data.language
|
6 |
} );
|
7 |
|
8 |
jQuery( document ).ready(
|
9 |
|
10 |
+
function ( target ) {
|
|
|
11 |
|
12 |
+
if ( gadwp_item_data.scope == 'admin' ) {
|
13 |
+
var selector = 'a[id^="gadwp-"]';
|
14 |
+
} else {
|
15 |
+
var selector = 'li[id^="wp-admin-bar-gadwp"]';
|
16 |
+
}
|
17 |
+
|
18 |
+
jQuery( selector ).click( function ( e ) {
|
19 |
var item_id = getID( this );
|
20 |
var slug = "-" + item_id;
|
21 |
|
26 |
} );
|
27 |
|
28 |
function getID ( item ) {
|
29 |
+
if ( gadwp_item_data.scope == 'admin' ) {
|
30 |
+
if ( typeof item.id == "undefined" ) {
|
31 |
+
return 0
|
32 |
+
}
|
33 |
+
if ( item.id.split( '-' )[ 1 ] == "undefined" ) {
|
34 |
+
return 0;
|
35 |
+
} else {
|
36 |
+
return item.id.split( '-' )[ 1 ];
|
37 |
+
}
|
38 |
} else {
|
39 |
+
if ( typeof item.id == "undefined" ) {
|
40 |
+
return 1;
|
41 |
+
}
|
42 |
+
if ( item.id.split( '-' )[ 4 ] == "undefined" ) {
|
43 |
+
return 1;
|
44 |
+
} else {
|
45 |
+
return item.id.split( '-' )[ 4 ];
|
46 |
+
}
|
47 |
}
|
48 |
}
|
49 |
|
84 |
|
85 |
jQuery.fn.extend( {
|
86 |
gadwpItemReport : function ( slug, item_id ) {
|
87 |
+
var dialog_title;
|
88 |
+
|
89 |
+
if ( gadwp_item_data.scope == 'admin' ) {
|
90 |
+
dialog_title = jQuery( '#gadwp' + slug ).attr( "title" );
|
91 |
+
} else {
|
92 |
+
dialog_title = document.getElementsByTagName( "title" )[ 0 ].innerHTML;
|
93 |
+
}
|
94 |
|
95 |
var tools = {
|
96 |
set_cookie : function ( name, value ) {
|
351 |
jQuery( "#gdsessions" + slug ).text( gadwp_bottomstats[ 0 ] );
|
352 |
jQuery( "#gdusers" + slug ).text( gadwp_bottomstats[ 1 ] );
|
353 |
jQuery( "#gdpageviews" + slug ).text( gadwp_bottomstats[ 2 ] );
|
354 |
+
jQuery( "#gdbouncerate" + slug ).text( gadwp_bottomstats[ 3 ] + "%" );
|
355 |
jQuery( "#gdorganicsearch" + slug ).text( gadwp_bottomstats[ 4 ] );
|
356 |
+
jQuery( "#gdpagespervisit" + slug ).text( gadwp_bottomstats[ 5 ] );
|
357 |
},
|
358 |
|
359 |
throwDebug : function ( response ) {
|
364 |
"color" : "#000",
|
365 |
"border-left" : "5px solid red"
|
366 |
} );
|
367 |
+
if ( response == '-24' ) {
|
368 |
+
jQuery( "#gadwp-status" + slug ).html( gadwp_item_data.i18n[ 15 ] );
|
369 |
+
} else {
|
370 |
+
jQuery( "#gadwp-status" + slug ).html( gadwp_item_data.i18n[ 11 ] );
|
371 |
+
console.log( "\n********************* GADWP Log ********************* \n\n" + response );
|
372 |
+
}
|
373 |
},
|
374 |
|
375 |
throwError : function ( target, response, p ) {
|
390 |
|
391 |
render : function ( period, query ) {
|
392 |
var from, to;
|
393 |
+
|
394 |
jQuery( '#gadwp-status' + slug ).html( '' );
|
395 |
switch ( period ) {
|
396 |
case 'today':
|
430 |
tools.set_cookie( 'default_metric', query );
|
431 |
tools.set_cookie( 'default_dimension', period );
|
432 |
|
433 |
+
if ( gadwp_item_data.scope == 'admin' ) {
|
434 |
+
var data = {
|
435 |
+
action : 'gadwp_backend_item_reports',
|
436 |
+
gadwp_security_backend_item_reports : gadwp_item_data.security,
|
437 |
+
from : from,
|
438 |
+
to : to,
|
439 |
+
filter : item_id,
|
440 |
+
}
|
441 |
+
} else {
|
442 |
+
var data = {
|
443 |
+
action : 'gadwp_frontend_item_reports',
|
444 |
+
gadwp_security_frontend_item_reports : gadwp_item_data.security,
|
445 |
+
from : from,
|
446 |
+
to : to,
|
447 |
+
filter : gadwp_item_data.filter,
|
448 |
+
}
|
449 |
}
|
450 |
|
451 |
if ( jQuery.inArray( query, [ 'referrers', 'contentpages', 'searches' ] ) > -1 ) {
|
452 |
|
453 |
+
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-trafficchannels' + slug + '"></div>' );
|
454 |
jQuery( '#gadwp-reports' + slug ).append( '<div id="gadwp-prs' + slug + '"></div>' );
|
455 |
+
jQuery( '#gadwp-reports' + slug ).hide();
|
456 |
|
457 |
data.query = 'trafficchannels,' + query;
|
458 |
|
460 |
if ( jQuery.isArray( response ) ) {
|
461 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
462 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
463 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
464 |
reports.trafficchannels = response[ 0 ];
|
465 |
google.setOnLoadCallback( reports.drawtrafficchannels( reports.trafficchannels ) );
|
466 |
} else {
|
467 |
reports.throwDebug( response[ 0 ] );
|
468 |
}
|
469 |
} else {
|
470 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
471 |
reports.throwError( '#gadwp-trafficchannels' + slug, response[ 0 ], "125px" );
|
472 |
}
|
473 |
|
489 |
|
490 |
} else if ( query == 'trafficdetails' ) {
|
491 |
|
492 |
+
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-trafficchannels' + slug + '"></div>' );
|
493 |
jQuery( '#gadwp-reports' + slug ).append( '<div class="gadwp-floatwraper"><div id="gadwp-trafficmediums' + slug + '"></div><div id="gadwp-traffictype' + slug + '"></div></div>' );
|
494 |
jQuery( '#gadwp-reports' + slug ).append( '<div class="gadwp-floatwraper"><div id="gadwp-trafficorganic' + slug + '"></div><div id="gadwp-socialnetworks' + slug + '"></div></div>' );
|
495 |
+
jQuery( '#gadwp-reports' + slug ).hide();
|
496 |
|
497 |
data.query = 'trafficchannels,medium,visitorType,source,socialNetwork';
|
498 |
|
500 |
if ( jQuery.isArray( response ) ) {
|
501 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
502 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
503 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
504 |
reports.trafficchannels = response[ 0 ];
|
505 |
google.setOnLoadCallback( reports.drawtrafficchannels( reports.trafficchannels ) );
|
506 |
} else {
|
507 |
reports.throwDebug( response[ 0 ] );
|
508 |
}
|
509 |
} else {
|
510 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
511 |
reports.throwError( '#gadwp-trafficchannels' + slug, response[ 0 ], "125px" );
|
512 |
}
|
513 |
|
514 |
if ( !jQuery.isNumeric( response[ 1 ] ) ) {
|
515 |
if ( jQuery.isArray( response[ 1 ] ) ) {
|
516 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
517 |
reports.trafficmediums = response[ 1 ];
|
518 |
google.setOnLoadCallback( reports.drawtrafficmediums( reports.trafficmediums ) );
|
519 |
} else {
|
520 |
reports.throwDebug( response[ 1 ] );
|
521 |
}
|
522 |
} else {
|
523 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
524 |
reports.throwError( '#gadwp-trafficmediums' + slug, response[ 1 ], "80px" );
|
525 |
}
|
526 |
|
527 |
if ( !jQuery.isNumeric( response[ 2 ] ) ) {
|
528 |
if ( jQuery.isArray( response[ 2 ] ) ) {
|
529 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
530 |
reports.traffictype = response[ 2 ];
|
531 |
google.setOnLoadCallback( reports.drawtraffictype( reports.traffictype ) );
|
532 |
} else {
|
533 |
reports.throwDebug( response[ 2 ] );
|
534 |
}
|
535 |
} else {
|
536 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
537 |
reports.throwError( '#gadwp-traffictype' + slug, response[ 2 ], "80px" );
|
538 |
}
|
539 |
|
540 |
if ( !jQuery.isNumeric( response[ 3 ] ) ) {
|
541 |
if ( jQuery.isArray( response[ 3 ] ) ) {
|
542 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
543 |
reports.trafficorganic = response[ 3 ];
|
544 |
google.setOnLoadCallback( reports.drawtrafficorganic( reports.trafficorganic ) );
|
545 |
} else {
|
546 |
reports.throwDebug( response[ 3 ] );
|
547 |
}
|
548 |
} else {
|
549 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
550 |
reports.throwError( '#gadwp-trafficorganic' + slug, response[ 3 ], "80px" );
|
551 |
}
|
552 |
|
553 |
if ( !jQuery.isNumeric( response[ 4 ] ) ) {
|
554 |
if ( jQuery.isArray( response[ 4 ] ) ) {
|
555 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
556 |
reports.socialnetworks = response[ 4 ];
|
557 |
google.setOnLoadCallback( reports.drawsocialnetworks( reports.socialnetworks ) );
|
558 |
} else {
|
559 |
reports.throwDebug( response[ 4 ] );
|
560 |
}
|
561 |
} else {
|
562 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
563 |
reports.throwError( '#gadwp-socialnetworks' + slug, response[ 4 ], "80px" );
|
564 |
}
|
565 |
} else {
|
572 |
|
573 |
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-map' + slug + '"></div>' )
|
574 |
jQuery( '#gadwp-reports' + slug ).append( '<div id="gadwp-locations' + slug + '"></div>' );
|
575 |
+
jQuery( '#gadwp-reports' + slug ).hide();
|
576 |
|
577 |
data.query = query;
|
578 |
|
580 |
if ( jQuery.isArray( response ) ) {
|
581 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
582 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
583 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
584 |
reports.locations = response[ 0 ];
|
585 |
google.setOnLoadCallback( reports.drawmaplocations( reports.locations ) );
|
586 |
google.setOnLoadCallback( reports.drawlocations( reports.locations ) );
|
588 |
reports.throwDebug( response[ 0 ] );
|
589 |
}
|
590 |
} else {
|
591 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
592 |
reports.throwError( '#gadwp-map' + slug, response[ 0 ], "125px" );
|
593 |
reports.throwError( '#gadwp-locations' + slug, response[ 0 ], "125px" );
|
594 |
}
|
602 |
|
603 |
jQuery( '#gadwp-reports' + slug ).html( '<div id="gadwp-mainchart' + slug + '"></div>' )
|
604 |
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 + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 6 ] + '</h3><p id="gdusers' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 7 ] + '</h3><p id="gdpageviews' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 8 ] + '</h3><p id="gdbouncerate' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 9 ] + '</h3><p id="gdorganicsearch' + slug + '"> </p></div><div class="small-box"><h3>' + gadwp_item_data.i18n[ 10 ] + '</h3><p id="gdpagespervisit' + slug + '"> </p></div></div></div>' );
|
605 |
+
jQuery( '#gadwp-reports' + slug ).hide();
|
606 |
|
607 |
data.query = query + ',bottomstats';
|
608 |
|
610 |
if ( jQuery.isArray( response ) ) {
|
611 |
if ( !jQuery.isNumeric( response[ 0 ] ) ) {
|
612 |
if ( jQuery.isArray( response[ 0 ] ) ) {
|
613 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
614 |
reports.mainchart = response[ 0 ];
|
615 |
if ( query == 'visitBounceRate' ) {
|
616 |
google.setOnLoadCallback( reports.drawmainchart( reports.mainchart, true ) );
|
621 |
reports.throwDebug( response[ 0 ] );
|
622 |
}
|
623 |
} else {
|
624 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
625 |
reports.throwError( '#gadwp-mainchart' + slug, response[ 0 ], "125px" );
|
626 |
}
|
627 |
if ( !jQuery.isNumeric( response[ 1 ] ) ) {
|
628 |
if ( jQuery.isArray( response[ 1 ] ) ) {
|
629 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
630 |
reports.bottomstats = response[ 1 ];
|
631 |
google.setOnLoadCallback( reports.drawbottomstats( reports.bottomstats ) );
|
632 |
} else {
|
633 |
reports.throwDebug( response[ 1 ] );
|
634 |
}
|
635 |
} else {
|
636 |
+
jQuery( '#gadwp-reports' + slug ).show();
|
637 |
reports.throwError( '#gadwp-bottomstats' + slug, response[ 1 ], "40px" );
|
638 |
}
|
639 |
} else {
|
725 |
fluid : true,
|
726 |
dialogClass : 'gadwp wp-dialog',
|
727 |
resizable : false,
|
728 |
+
title : dialog_title,
|
729 |
position : {
|
730 |
my : "top",
|
731 |
at : "top+100",
|
tools/tools.php
CHANGED
@@ -122,5 +122,10 @@ if ( ! class_exists( 'GADWP_Tools' ) ) {
|
|
122 |
return false;
|
123 |
}
|
124 |
}
|
|
|
|
|
|
|
|
|
|
|
125 |
}
|
126 |
}
|
122 |
return false;
|
123 |
}
|
124 |
}
|
125 |
+
|
126 |
+
public static function unset_cookie( $name ){
|
127 |
+
$name = 'gadwp_' . $name;
|
128 |
+
setcookie( $name, '', time() - 3600, '/');
|
129 |
+
}
|
130 |
}
|
131 |
}
|