Version Description
- Fixed error with WP_List_Table introduced with WordPress 4.3
- Added Russian translation. Thank you Ivanka from coupofy.com
Download this release
Release Info
Developer | mattkeys |
Plugin | Google Pagespeed Insights |
Version | 1.0.6 |
Comparing to | |
See all releases |
Code changes from version 1.0.5 to 1.0.6
- core/admin.php +10 -1
- core/core.php +2 -25
- css/gpagespeedi_styles.css +1 -1
- google-pagespeed-insights.php +2 -2
- languages/gpagespeedi-ru_RU.mo +0 -0
- languages/gpagespeedi-ru_RU.po +943 -0
- readme.txt +18 -3
core/admin.php
CHANGED
@@ -24,6 +24,15 @@ class GPI_List_Table extends WP_List_Table {
|
|
24 |
|
25 |
}
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
// humanTiming used to calculate time since last report check
|
28 |
function humanTiming($time)
|
29 |
{
|
@@ -49,7 +58,7 @@ class GPI_List_Table extends WP_List_Table {
|
|
49 |
}
|
50 |
|
51 |
function no_items() {
|
52 |
-
$pagetype = $_GET['render'];
|
53 |
|
54 |
switch($pagetype)
|
55 |
{
|
24 |
|
25 |
}
|
26 |
|
27 |
+
// here for compatibility with 4.3
|
28 |
+
function get_columns()
|
29 |
+
{
|
30 |
+
// Get options
|
31 |
+
$gpi_options = $this->getOptions();
|
32 |
+
|
33 |
+
return $this->gpi_get_columns(false, false, false, $gpi_options['strategy']);
|
34 |
+
}
|
35 |
+
|
36 |
// humanTiming used to calculate time since last report check
|
37 |
function humanTiming($time)
|
38 |
{
|
58 |
}
|
59 |
|
60 |
function no_items() {
|
61 |
+
$pagetype = isset( $_GET['render'] ) ? $_GET['render'] : 'list';
|
62 |
|
63 |
switch($pagetype)
|
64 |
{
|
core/core.php
CHANGED
@@ -18,7 +18,7 @@ if (!class_exists('googlePagespeedInsights')) {
|
|
18 |
var $gpi_options;
|
19 |
var $execution_start_time;
|
20 |
|
21 |
-
function
|
22 |
|
23 |
//Get Options (passed from init.php)
|
24 |
$this->gpi_options = &$gpi_options;
|
@@ -97,15 +97,7 @@ if (!class_exists('googlePagespeedInsights')) {
|
|
97 |
$max_execution_time = $this->gpi_options['max_execution_time'];
|
98 |
|
99 |
// Check for safe mode
|
100 |
-
|
101 |
-
// Use PHP.ini value. It isn't going to allow us to override it (BOO HISS!)
|
102 |
-
$t = ini_get('max_execution_time');
|
103 |
-
if ($t && ($t < $max_execution_time))
|
104 |
-
$max_execution_time = $t-1;
|
105 |
-
} else {
|
106 |
-
// Use max_execution_time set in settings.
|
107 |
-
@set_time_limit( $max_execution_time );
|
108 |
-
}
|
109 |
|
110 |
//Don't stop the script when the connection is closed
|
111 |
ignore_user_abort(true);
|
@@ -535,21 +527,6 @@ if (!class_exists('googlePagespeedInsights')) {
|
|
535 |
function execution_time(){
|
536 |
return microtime_float() - $this->execution_start_time;
|
537 |
}
|
538 |
-
|
539 |
-
function is_safe_mode(){
|
540 |
-
$retval = true;
|
541 |
-
|
542 |
-
if (function_exists('ini_get')) {
|
543 |
-
if (ini_get('safe_mode')==true) {
|
544 |
-
$retval = true;
|
545 |
-
} else {
|
546 |
-
$retval = false;
|
547 |
-
}
|
548 |
-
} else {
|
549 |
-
$retval = true;
|
550 |
-
}
|
551 |
-
return $retval;
|
552 |
-
}
|
553 |
}
|
554 |
}
|
555 |
|
18 |
var $gpi_options;
|
19 |
var $execution_start_time;
|
20 |
|
21 |
+
function __construct(&$gpi_options) {
|
22 |
|
23 |
//Get Options (passed from init.php)
|
24 |
$this->gpi_options = &$gpi_options;
|
97 |
$max_execution_time = $this->gpi_options['max_execution_time'];
|
98 |
|
99 |
// Check for safe mode
|
100 |
+
@set_time_limit( $max_execution_time );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
|
102 |
//Don't stop the script when the connection is closed
|
103 |
ignore_user_abort(true);
|
527 |
function execution_time(){
|
528 |
return microtime_float() - $this->execution_start_time;
|
529 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
530 |
}
|
531 |
}
|
532 |
|
css/gpagespeedi_styles.css
CHANGED
@@ -518,7 +518,7 @@ h3.subTitle {
|
|
518 |
|
519 |
#pagespeed_sizes_wrapper {
|
520 |
float: right;
|
521 |
-
width: 40
|
522 |
margin-right: 0px;
|
523 |
overflow: hidden;
|
524 |
}
|
518 |
|
519 |
#pagespeed_sizes_wrapper {
|
520 |
float: right;
|
521 |
+
width: 40%;
|
522 |
margin-right: 0px;
|
523 |
overflow: hidden;
|
524 |
}
|
google-pagespeed-insights.php
CHANGED
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* @package google_pagespeed_insights
|
4 |
-
* @version 1.0.
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Google Pagespeed Insights
|
8 |
Plugin URI: http://mattkeys.me
|
9 |
Description: Google Pagespeed Insights
|
10 |
Author: Matt Keys
|
11 |
-
Version: 1.0.
|
12 |
Author URI: http://mattkeys.me
|
13 |
*/
|
14 |
|
1 |
<?php
|
2 |
/**
|
3 |
* @package google_pagespeed_insights
|
4 |
+
* @version 1.0.7
|
5 |
*/
|
6 |
/*
|
7 |
Plugin Name: Google Pagespeed Insights
|
8 |
Plugin URI: http://mattkeys.me
|
9 |
Description: Google Pagespeed Insights
|
10 |
Author: Matt Keys
|
11 |
+
Version: 1.0.6
|
12 |
Author URI: http://mattkeys.me
|
13 |
*/
|
14 |
|
languages/gpagespeedi-ru_RU.mo
ADDED
Binary file
|
languages/gpagespeedi-ru_RU.po
ADDED
@@ -0,0 +1,943 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Google Pagespeed Insights for Wordpress\n"
|
4 |
+
"POT-Creation-Date: 2015-06-10 13:23+0200\n"
|
5 |
+
"PO-Revision-Date: 2015-06-11 09:37+0200\n"
|
6 |
+
"Last-Translator: \n"
|
7 |
+
"Language-Team: Matt Keys <me@mattkeys.me>\n"
|
8 |
+
"MIME-Version: 1.0\n"
|
9 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
+
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"X-Generator: Poedit 1.8.1\n"
|
12 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
13 |
+
"X-Poedit-Basepath: .\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
16 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
17 |
+
"Language: ru\n"
|
18 |
+
"X-Poedit-SearchPath-0: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/"
|
19 |
+
"plugins/google-pagespeed-insights\n"
|
20 |
+
|
21 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:57
|
22 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:399
|
23 |
+
msgid ""
|
24 |
+
"No Pagespeed Reports Found. Google Pagespeed may still be checking your "
|
25 |
+
"pages. If problems persist, see the following possible solutions:"
|
26 |
+
msgstr ""
|
27 |
+
"Отчетов Pagespeed не найдено. Возможно, Google Pagespeed еще проверяет ваши "
|
28 |
+
"страницы. Если проблемы все еще существуют, просмотрите следующие решения:"
|
29 |
+
|
30 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:60
|
31 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:408
|
32 |
+
msgid "Make sure that you have entered your Google API key on the "
|
33 |
+
msgstr "Убедитесь, что вы ввели ваш ключ Google API в"
|
34 |
+
|
35 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:61
|
36 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:409
|
37 |
+
msgid ""
|
38 |
+
"Make sure that you have enabled \"PageSpeed Insights API\" from the Services "
|
39 |
+
"page of the "
|
40 |
+
msgstr ""
|
41 |
+
"Убедитесь, что вы включили \"PageSpeed Insights API\" на странице Служб в"
|
42 |
+
|
43 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:62
|
44 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:410
|
45 |
+
msgid "The Google Pagespeed API may be temporarily unavailable."
|
46 |
+
msgstr "Интерфейс Google Pagespeed может быть временно недоступен."
|
47 |
+
|
48 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:68
|
49 |
+
msgid "No Snapshots found. Snapshots can be created from the <a href=\"?page="
|
50 |
+
msgstr "Снимков системы не найдено. Снимки можно создать с <a href=\"?page="
|
51 |
+
|
52 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:72
|
53 |
+
msgid ""
|
54 |
+
"No Custom URLs found. Click \"Add New URLs\" or \"Bulk Upload New URLs\" "
|
55 |
+
"above to add custom URLs."
|
56 |
+
msgstr ""
|
57 |
+
"Не найдено пользовательских URL-адресов. Нажмите \"Добавить новые URL-адреса"
|
58 |
+
"\" или \"Массовая загрузка новых URL-адресов\" выше для добавления "
|
59 |
+
"пользовательских URL-адресов."
|
60 |
+
|
61 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:76
|
62 |
+
msgid "No Ignored URLs found. A URL can be ignored from the <a href=\"?page="
|
63 |
+
msgstr ""
|
64 |
+
"Не найдено пропущенных URL-адресов. URL-адрес может быть пропущен с <a href="
|
65 |
+
"\"?page="
|
66 |
+
|
67 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:232
|
68 |
+
msgid "Details"
|
69 |
+
msgstr "Детали"
|
70 |
+
|
71 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:234
|
72 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:265
|
73 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:293
|
74 |
+
msgid "View URL"
|
75 |
+
msgstr "Просмотреть URL"
|
76 |
+
|
77 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:239
|
78 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:483
|
79 |
+
msgid "Ignore"
|
80 |
+
msgstr "Пропустить"
|
81 |
+
|
82 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:270
|
83 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:471
|
84 |
+
msgid "Reactivate"
|
85 |
+
msgstr "Реактивировать"
|
86 |
+
|
87 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:298
|
88 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:321
|
89 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:475
|
90 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:479
|
91 |
+
msgid "Delete"
|
92 |
+
msgstr "Удалить"
|
93 |
+
|
94 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:316
|
95 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1014
|
96 |
+
msgid "View Snapshot"
|
97 |
+
msgstr "Просмотреть снимки"
|
98 |
+
|
99 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:386
|
100 |
+
msgid "Ignored URL"
|
101 |
+
msgstr "Пропустить URL-адрес"
|
102 |
+
|
103 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:387
|
104 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:393
|
105 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:408
|
106 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:416
|
107 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:425
|
108 |
+
msgid "Page Type"
|
109 |
+
msgstr "Тип страницы"
|
110 |
+
|
111 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:392
|
112 |
+
msgid "Custom URL"
|
113 |
+
msgstr "Пользовательский URL"
|
114 |
+
|
115 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:398
|
116 |
+
msgid "Snapshot Date"
|
117 |
+
msgstr "Дата снимка"
|
118 |
+
|
119 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:399
|
120 |
+
msgid "Report Description"
|
121 |
+
msgstr "Описание отчета"
|
122 |
+
|
123 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:400
|
124 |
+
msgid "Report Type"
|
125 |
+
msgstr "Тип отчета"
|
126 |
+
|
127 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:401
|
128 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:193
|
129 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:226
|
130 |
+
msgid "Comment"
|
131 |
+
msgstr "Комментарий"
|
132 |
+
|
133 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:406
|
134 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:414
|
135 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:422
|
136 |
+
msgid "URL"
|
137 |
+
msgstr "URL"
|
138 |
+
|
139 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:407
|
140 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:415
|
141 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:322
|
142 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:352
|
143 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:292
|
144 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:326
|
145 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:414
|
146 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:448
|
147 |
+
msgid "Score"
|
148 |
+
msgstr "Метка"
|
149 |
+
|
150 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:409
|
151 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:417
|
152 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:311
|
153 |
+
msgid "Last Checked"
|
154 |
+
msgstr "Последняя проверка"
|
155 |
+
|
156 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:423
|
157 |
+
msgid "Score (Desktop)"
|
158 |
+
msgstr "Метка(рабочий стол)"
|
159 |
+
|
160 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:424
|
161 |
+
msgid "Score (Mobile)"
|
162 |
+
msgstr "Метка(мобильный)"
|
163 |
+
|
164 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:426
|
165 |
+
msgid "Last Checked (Desktop)"
|
166 |
+
msgstr "Последняя проверка (рабочий стол)"
|
167 |
+
|
168 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:427
|
169 |
+
msgid "Last Checked (Mobile)"
|
170 |
+
msgstr "Последняя проверка (мобильный)"
|
171 |
+
|
172 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:527
|
173 |
+
msgid "All Reports"
|
174 |
+
msgstr "Все отчеты"
|
175 |
+
|
176 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:529
|
177 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:259
|
178 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:381
|
179 |
+
msgid "Pages"
|
180 |
+
msgstr "Страницы"
|
181 |
+
|
182 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:532
|
183 |
+
msgid "Posts"
|
184 |
+
msgstr "Посты"
|
185 |
+
|
186 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:535
|
187 |
+
msgid "Categories"
|
188 |
+
msgstr "Категории"
|
189 |
+
|
190 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:546
|
191 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:261
|
192 |
+
msgid "Custom Post Types"
|
193 |
+
msgstr "Типы пользовательских постов"
|
194 |
+
|
195 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:547
|
196 |
+
msgid "All Custom Post Types"
|
197 |
+
msgstr "Все типы пользовательских постов"
|
198 |
+
|
199 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:564
|
200 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1019
|
201 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:160
|
202 |
+
msgid "Custom URLs"
|
203 |
+
msgstr "Пользовательские URL-адреса"
|
204 |
+
|
205 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:565
|
206 |
+
msgid "All Custom URLs"
|
207 |
+
msgstr "Все пользовательские URL-адреса"
|
208 |
+
|
209 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:581
|
210 |
+
msgid "25 Results/Page"
|
211 |
+
msgstr "25 результатов/страница"
|
212 |
+
|
213 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:582
|
214 |
+
msgid "50 Results/Page"
|
215 |
+
msgstr "50 результатов/страница"
|
216 |
+
|
217 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:583
|
218 |
+
msgid "100 Results/Page"
|
219 |
+
msgstr "100 результатов/страница"
|
220 |
+
|
221 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:584
|
222 |
+
msgid "500 Results/Page"
|
223 |
+
msgstr "500 результатов/страница"
|
224 |
+
|
225 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:585
|
226 |
+
msgid "1000 Results/Page"
|
227 |
+
msgstr "1000 результатов/страница"
|
228 |
+
|
229 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:589
|
230 |
+
msgid "Filter"
|
231 |
+
msgstr "Фильтр"
|
232 |
+
|
233 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:592
|
234 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1021
|
235 |
+
msgid "Add New URLs"
|
236 |
+
msgstr "Добавить новые URL-адреса"
|
237 |
+
|
238 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:593
|
239 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1024
|
240 |
+
msgid "Bulk Upload New URLs"
|
241 |
+
msgstr "Массовая загрузка новых URL-адресов"
|
242 |
+
|
243 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:807
|
244 |
+
msgid ""
|
245 |
+
"URLs have been scheduled for a recheck. Depending on the number of URLs to "
|
246 |
+
"check, this may take a while to complete."
|
247 |
+
msgstr ""
|
248 |
+
"URL-адреса запланированы на перепроверку. Процесс может занять некоторое "
|
249 |
+
"время, в зависимости от количества адресов на проверку."
|
250 |
+
|
251 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:819
|
252 |
+
msgid "Snapshot Saved Successfully"
|
253 |
+
msgstr "Снимок сохранен успешно"
|
254 |
+
|
255 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:825
|
256 |
+
msgid "Snapshots have been deleted."
|
257 |
+
msgstr "Снимок удален."
|
258 |
+
|
259 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:830
|
260 |
+
msgid "URLs have been reactivated."
|
261 |
+
msgstr "URL-адреса реактивированы."
|
262 |
+
|
263 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:835
|
264 |
+
msgid "URLs have been ignored."
|
265 |
+
msgstr "URL-адреса пропущены."
|
266 |
+
|
267 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:840
|
268 |
+
msgid "URLs have been deleted."
|
269 |
+
msgstr "URL-адреса удалены."
|
270 |
+
|
271 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1000
|
272 |
+
msgid "Desktop Mode"
|
273 |
+
msgstr "Режим рабочего стола"
|
274 |
+
|
275 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1003
|
276 |
+
msgid "Mobile Mode"
|
277 |
+
msgstr "Мобильный режим"
|
278 |
+
|
279 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1007
|
280 |
+
msgid "Report List"
|
281 |
+
msgstr "Список отчетов"
|
282 |
+
|
283 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1009
|
284 |
+
msgid "Report Details"
|
285 |
+
msgstr "Детали отчетов"
|
286 |
+
|
287 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1011
|
288 |
+
msgid "Report Summary"
|
289 |
+
msgstr "Краткий отчет"
|
290 |
+
|
291 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1012
|
292 |
+
msgid "Snapshots"
|
293 |
+
msgstr "Снимки"
|
294 |
+
|
295 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1017
|
296 |
+
msgid "Compare Snapshots"
|
297 |
+
msgstr "Сравнить снимки"
|
298 |
+
|
299 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1026
|
300 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1052
|
301 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1057
|
302 |
+
msgid "Ignored URLs"
|
303 |
+
msgstr "Пропущенные URL-адреса"
|
304 |
+
|
305 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1027
|
306 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1032
|
307 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1037
|
308 |
+
msgid "Options"
|
309 |
+
msgstr "Опции"
|
310 |
+
|
311 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1032
|
312 |
+
msgid ""
|
313 |
+
"You must enter your Google API key to use this plugin! Enter your API key in "
|
314 |
+
"the"
|
315 |
+
msgstr ""
|
316 |
+
"Чтобы использовать этот плагин, вы должны ввести свой ключ Google API ! "
|
317 |
+
"Введите ключ API в"
|
318 |
+
|
319 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1037
|
320 |
+
msgid ""
|
321 |
+
"The Google Pagespeed API Key you entered appears to be invalid. Please "
|
322 |
+
"update your API key in the"
|
323 |
+
msgstr ""
|
324 |
+
"Введенный вами Google Pagespeed API ключ недопустим. Пожалуйста, обновите "
|
325 |
+
"ваш ключ API в"
|
326 |
+
|
327 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1042
|
328 |
+
msgid ""
|
329 |
+
"The \"PageSpeed Insights API\" service is not enabled. To enable it, please "
|
330 |
+
"visit the \"Services\" page from your "
|
331 |
+
msgstr ""
|
332 |
+
"Служба «PageSpeed Insights API\" не включена. Чтобы включить ее, пожалуйста, "
|
333 |
+
"посетите страницу \"Службы\" с вашего"
|
334 |
+
|
335 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1042
|
336 |
+
msgid "Google API Console"
|
337 |
+
msgstr "Консоль Google API"
|
338 |
+
|
339 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1052
|
340 |
+
msgid ""
|
341 |
+
"One or more URLs could not be reached by Google Pagespeed Insights and have "
|
342 |
+
"automatically been added to the"
|
343 |
+
msgstr ""
|
344 |
+
"Google Insights Pagespeed не достал один или несколько URL-адресов, которые "
|
345 |
+
"автоматически добавлены к"
|
346 |
+
|
347 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1057
|
348 |
+
msgid ""
|
349 |
+
"An error has been encountered while checking one or more URLs. Possible "
|
350 |
+
"causes: <br /><br />Daily API Limit Exceeded <a href=\"https://code.google."
|
351 |
+
"com/apis/console\" target=\"_blank\">Check API Usage</a> <br />API Key user "
|
352 |
+
"limit exceeded <a href=\"https://code.google.com/apis/console\" target="
|
353 |
+
"\"_blank\">Check API Usage</a> <br />the URL is not publicly accessible or "
|
354 |
+
"is bad. <br /><br />The URL(s) have been added to the"
|
355 |
+
msgstr ""
|
356 |
+
"Ошибка была обнаружена при проверке одного или нескольких URL-адресов. "
|
357 |
+
"Возможные причины:<br /><br />Дневной API лимит превышен <a href=\"https://"
|
358 |
+
"code.google.com/apis/console\" target=\"_blank\">Проверьте Использование API "
|
359 |
+
"</a> <br /> лимит API ключа пользователя превышен <a href=\"https://code."
|
360 |
+
"google.com/apis/console\" target=\"_blank\">Проверьте Использование API </a> "
|
361 |
+
"<br /> URL -адрес не является общедоступным или поврежденным. <br /> <br /> "
|
362 |
+
"URL-адрес(а) добавлены к"
|
363 |
+
|
364 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1069
|
365 |
+
msgid ""
|
366 |
+
"Google Pagespeed has finished checking pagespeed scores. <a href="
|
367 |
+
"\"javascript:location.reload(true);\">Refresh to see new results.</a>"
|
368 |
+
msgstr ""
|
369 |
+
"Google Pagespeed завершил проверку меток pagespeed . <a href=\"javascript:"
|
370 |
+
"location.reload(true);\"> Обновите, чтобы просмотреть новые результаты. </a>"
|
371 |
+
|
372 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/admin.php:1069
|
373 |
+
msgid "Google Pagespeed is running in the background. Progress..."
|
374 |
+
msgstr "Google Pagespeed работает в фоновом режиме. Прогресс ..."
|
375 |
+
|
376 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/init.php:5
|
377 |
+
msgid ""
|
378 |
+
"Another version of Google PageSpeed Insights is already active. Please "
|
379 |
+
"deactivate it before activating this one."
|
380 |
+
msgstr ""
|
381 |
+
"Новая версия Google Insights PageSpeed уже вышла. Пожалуйста, отключите его "
|
382 |
+
"перед активацией новой версии."
|
383 |
+
|
384 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/init.php:16
|
385 |
+
msgid ""
|
386 |
+
"This version of Google PageSpeed Insights requires WordPress 3.3 or later!"
|
387 |
+
msgstr ""
|
388 |
+
"Для этой версии Google Insights PageSpeed требуется WordPress 3.3 или новее!"
|
389 |
+
|
390 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/init.php:38
|
391 |
+
msgid "Interval set in GPI options"
|
392 |
+
msgstr "Настройка интервала в опциях GPI "
|
393 |
+
|
394 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/core/init.php:46
|
395 |
+
msgid "GPI Last Run Checker"
|
396 |
+
msgstr "Последняя запущенная проверка GPI "
|
397 |
+
|
398 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/actions/single-recheck.php:42
|
399 |
+
msgid "The API is busy checking other pages, please try again later."
|
400 |
+
msgstr ""
|
401 |
+
"API занят проверкой других страниц, пожалуйста, повторите попытку позже."
|
402 |
+
|
403 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/actions/single-recheck.php:44
|
404 |
+
msgid "Recheck Complete."
|
405 |
+
msgstr "Перепроверка завершена."
|
406 |
+
|
407 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:116
|
408 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:116
|
409 |
+
msgid "URL(s) have been successfully added."
|
410 |
+
msgstr "URL-адрес(а) успешно добавлены."
|
411 |
+
|
412 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:121
|
413 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:121
|
414 |
+
msgid "The following URLs already exist and were not added"
|
415 |
+
msgstr "Следующие URL-адреса уже существуют и не были добавлены"
|
416 |
+
|
417 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:152
|
418 |
+
msgid "Bulk Upload Custom URLs"
|
419 |
+
msgstr "Массовая загрузка пользовательских URL-адресов"
|
420 |
+
|
421 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:156
|
422 |
+
msgid ""
|
423 |
+
"Add any valid URL, even from sites outside of WordPress. Upload a properly "
|
424 |
+
"formatted XML sitemap below to add pages."
|
425 |
+
msgstr ""
|
426 |
+
"Добавить любой допустимый URL, даже с сайтов вне WordPress. Загрузить "
|
427 |
+
"правильно отформатированную XML карту сайта ниже, чтобы добавить страницы."
|
428 |
+
|
429 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:157
|
430 |
+
msgid ""
|
431 |
+
"XML must conform to the <a href=\"http://www.sitemaps.org/protocol.html\" "
|
432 |
+
"target=\"_blank\">sitemaps.org standards</a>. There are free services that "
|
433 |
+
"can help you generate a sitemap such as"
|
434 |
+
msgstr ""
|
435 |
+
"XML должны соответствовать <a href=\"http://www.sitemaps.org/protocol.html\" "
|
436 |
+
"target=\"_blank\"> стандартам sitemaps.org </a>. Есть бесплатные службы, "
|
437 |
+
"которые могут помочь вам создать карту сайта, такие как"
|
438 |
+
|
439 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:163
|
440 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:151
|
441 |
+
msgid "Custom URL Label"
|
442 |
+
msgstr "Пользовательский URL лейбл"
|
443 |
+
|
444 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:167
|
445 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:155
|
446 |
+
msgid ""
|
447 |
+
"Choose a custom label for your new URLs, this will be used later when "
|
448 |
+
"sorting your reports."
|
449 |
+
msgstr ""
|
450 |
+
"Выберите пользовательский лейбл для ваших новых URL адресов, который будет "
|
451 |
+
"использоваться позже при сортировке ваших отчетов."
|
452 |
+
|
453 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:167
|
454 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:155
|
455 |
+
msgid ""
|
456 |
+
"Max 20 Charactors, Alpha-Numeric Only. Spaces will be replaced with "
|
457 |
+
"underscores"
|
458 |
+
msgstr ""
|
459 |
+
"Максимум 20 символов, и только буквенно цифровых. Пробелы будут заменены "
|
460 |
+
"символами подчеркивания"
|
461 |
+
|
462 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls-bulk.php:172
|
463 |
+
msgid "XML Sitemap File"
|
464 |
+
msgstr "Файл Xml карты сайта"
|
465 |
+
|
466 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:141
|
467 |
+
msgid "Add Custom URLs"
|
468 |
+
msgstr "Добавить пользовательский URL-адрес"
|
469 |
+
|
470 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:145
|
471 |
+
msgid ""
|
472 |
+
"Add any valid URL, even from sites outside of WordPress. Enter up to 10 URLs "
|
473 |
+
"below. If you need to enter a lot of URLs check out the"
|
474 |
+
msgstr ""
|
475 |
+
"Добавить любой допустимый URL, даже с сайтов вне WordPress. Введите до 10 "
|
476 |
+
"адресов ниже. Если вам нужно ввести много адресов, проверьте"
|
477 |
+
|
478 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/add-custom-urls.php:145
|
479 |
+
msgid "Bulk URL uploader"
|
480 |
+
msgstr "Массовая загрузка URL-адресов"
|
481 |
+
|
482 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:118
|
483 |
+
msgid "View Page"
|
484 |
+
msgstr "Просмотреть страницу"
|
485 |
+
|
486 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:119
|
487 |
+
msgid "Recheck Results"
|
488 |
+
msgstr "Перепроверить результаты"
|
489 |
+
|
490 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:252
|
491 |
+
msgid "Read Documentation"
|
492 |
+
msgstr "Прочитать документацию"
|
493 |
+
|
494 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:300
|
495 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:273
|
496 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:239
|
497 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:361
|
498 |
+
msgid "score"
|
499 |
+
msgstr "Метка"
|
500 |
+
|
501 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:305
|
502 |
+
msgid "Page Statistics"
|
503 |
+
msgstr "Статистика страницы"
|
504 |
+
|
505 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:306
|
506 |
+
msgid "Value"
|
507 |
+
msgstr "Значение"
|
508 |
+
|
509 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:315
|
510 |
+
msgid "Number of Hosts"
|
511 |
+
msgstr "Число хостов"
|
512 |
+
|
513 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:319
|
514 |
+
msgid "Total Request Bytes"
|
515 |
+
msgstr "Всего запросов байтов"
|
516 |
+
|
517 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:323
|
518 |
+
msgid "Total Resources"
|
519 |
+
msgstr "Всего ресурсов"
|
520 |
+
|
521 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:327
|
522 |
+
msgid "JavaScript Resources"
|
523 |
+
msgstr "JavaScript ресурсы"
|
524 |
+
|
525 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:331
|
526 |
+
msgid "CSS Resources"
|
527 |
+
msgstr "CSS ресурсы"
|
528 |
+
|
529 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:339
|
530 |
+
msgid "Total Size of Resources"
|
531 |
+
msgstr "Всего размер ресурсов"
|
532 |
+
|
533 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:340
|
534 |
+
msgid "Size (kB)"
|
535 |
+
msgstr "Размер (kB)"
|
536 |
+
|
537 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:347
|
538 |
+
msgid "Opportunities for improvement"
|
539 |
+
msgstr "Возможности для улучшения"
|
540 |
+
|
541 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:347
|
542 |
+
msgid "(Click for detailed report)"
|
543 |
+
msgstr "(Нажмите для подробного отчета)"
|
544 |
+
|
545 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/details.php:358
|
546 |
+
msgid "Insights Key"
|
547 |
+
msgstr "Insights ключ"
|
548 |
+
|
549 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:99
|
550 |
+
msgid ""
|
551 |
+
"Settings Saved. Google Pagespeed Insights will now begin generating page "
|
552 |
+
"reports. This page may appear to still be loading, however report generation "
|
553 |
+
"will continue when you navigate away."
|
554 |
+
msgstr ""
|
555 |
+
"Настройки сохраненны . Google Insights Pagespeed приступает к созданию "
|
556 |
+
"отчетов страниц. Эта страница может еще загружаться, однако создание отчетов "
|
557 |
+
"будет продолжаться, даже если вы уйдете на другие страницы."
|
558 |
+
|
559 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:101
|
560 |
+
msgid ""
|
561 |
+
"Settings Saved. Google Pagespeed Insights will now begin generating page "
|
562 |
+
"reports."
|
563 |
+
msgstr ""
|
564 |
+
"Настройки сохраненны . Google Insights Pagespeed приступает к созданию "
|
565 |
+
"отчетов страниц."
|
566 |
+
|
567 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:108
|
568 |
+
msgid "Settings Saved."
|
569 |
+
msgstr "Настройки сохранены."
|
570 |
+
|
571 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:122
|
572 |
+
msgid ""
|
573 |
+
"Google Pagespeed Options cannot be changed while Pagespeed is running. "
|
574 |
+
"Please wait until it has finished to make any changes."
|
575 |
+
msgstr ""
|
576 |
+
"Google Pagespeed опции не могут быть изменены во время работы Pagespeed. "
|
577 |
+
"Пожалуйста, подождите, пока он выполнит свои действия до такого как "
|
578 |
+
"приступить к каким-либо изменениям."
|
579 |
+
|
580 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:135
|
581 |
+
msgid "Google Pagespeed Options"
|
582 |
+
msgstr "Google Pagespeed опции"
|
583 |
+
|
584 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:139
|
585 |
+
msgid "Google API Key:"
|
586 |
+
msgstr "Google API ключ:"
|
587 |
+
|
588 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:141
|
589 |
+
msgid "This is required"
|
590 |
+
msgstr "Требуется"
|
591 |
+
|
592 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:141
|
593 |
+
msgid "if you do not have an API key you can create a new one for free from"
|
594 |
+
msgstr "если у вас нет ключа API, вы можете создать новый бесплатно с"
|
595 |
+
|
596 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:143
|
597 |
+
msgid "Google Response Language:"
|
598 |
+
msgstr "Google язык ответов:"
|
599 |
+
|
600 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:187
|
601 |
+
msgid "Note"
|
602 |
+
msgstr "Примечание"
|
603 |
+
|
604 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:187
|
605 |
+
msgid ""
|
606 |
+
"URLs must be rechecked before language changes take effect. Use the \"Delete "
|
607 |
+
"Data\" option under \"Advanced Configuration\" if you would like to remove "
|
608 |
+
"old reports."
|
609 |
+
msgstr ""
|
610 |
+
"URL-адреса должны быть перепроверены, прежде чем изменения языка вступят в "
|
611 |
+
"силу. Используйте опцию \"Удалить данные\" в разделе \"Дополнительные "
|
612 |
+
"настройки\", если вы хотите удалить старые отчеты."
|
613 |
+
|
614 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:190
|
615 |
+
msgid "Report Type(s):"
|
616 |
+
msgstr "Тип отчета(ов):"
|
617 |
+
|
618 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:192
|
619 |
+
msgid "Desktop"
|
620 |
+
msgstr "Рабочий стол"
|
621 |
+
|
622 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:193
|
623 |
+
msgid "Mobile"
|
624 |
+
msgstr "Мобильный"
|
625 |
+
|
626 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:194
|
627 |
+
msgid "Both"
|
628 |
+
msgstr "Оба"
|
629 |
+
|
630 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:201
|
631 |
+
msgid "Scheduling and URL Configuration"
|
632 |
+
msgstr "Планирование и настройка URL-адресов"
|
633 |
+
|
634 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:205
|
635 |
+
msgid ""
|
636 |
+
"Choose wether or not Google Pagespeed Insights should automatically re-check "
|
637 |
+
"page scores, and if so, how often."
|
638 |
+
msgstr ""
|
639 |
+
"Выбрать будет или нет Google Pagespeed Insights автоматически перепроверять "
|
640 |
+
"метки страниц, и если да, как часто."
|
641 |
+
|
642 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:208
|
643 |
+
msgid "Automatically re-check Pagespeed Insights scores using a schedule"
|
644 |
+
msgstr "Автоматически перепроверять метки Pagespeed Insights, используя план"
|
645 |
+
|
646 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:209
|
647 |
+
msgid "Recheck Schedule"
|
648 |
+
msgstr "Перепроверять план"
|
649 |
+
|
650 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:211
|
651 |
+
msgid "Debug"
|
652 |
+
msgstr "Отладка"
|
653 |
+
|
654 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:212
|
655 |
+
msgid "Every Day"
|
656 |
+
msgstr "Каждый день"
|
657 |
+
|
658 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:213
|
659 |
+
msgid "Every 7 Days"
|
660 |
+
msgstr "Каждые 7 дней"
|
661 |
+
|
662 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:214
|
663 |
+
msgid "Every 15 Days"
|
664 |
+
msgstr "Каждые 15 дней"
|
665 |
+
|
666 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:215
|
667 |
+
msgid "Every 30 Days"
|
668 |
+
msgstr "Каждые 30 дней"
|
669 |
+
|
670 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:227
|
671 |
+
msgid "Configure which types of URLs should be checked when running reports."
|
672 |
+
msgstr ""
|
673 |
+
"Настройка, какие типы URL-адресов должны быть проверены при выполнении "
|
674 |
+
"отчетов."
|
675 |
+
|
676 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:230
|
677 |
+
msgid "Check Wordpress Pages"
|
678 |
+
msgstr "Проверить страницы Wordpress "
|
679 |
+
|
680 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:234
|
681 |
+
msgid "Check Wordpress Posts"
|
682 |
+
msgstr "Проверить посты Wordpress "
|
683 |
+
|
684 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:241
|
685 |
+
msgid "Check Category Indexes"
|
686 |
+
msgstr "Проверить индексы категорий"
|
687 |
+
|
688 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:250
|
689 |
+
msgid "Check Custom URLs"
|
690 |
+
msgstr "Проверить пользовательские URL-адреса"
|
691 |
+
|
692 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:288
|
693 |
+
msgid "Advanced Configuration"
|
694 |
+
msgstr "Дополнительные настройки"
|
695 |
+
|
696 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:292
|
697 |
+
msgid ""
|
698 |
+
"For most users, the following settings can be left at their defaults unless "
|
699 |
+
"otherwise instructed by support."
|
700 |
+
msgstr ""
|
701 |
+
"Для большинства пользователей, следующие настройки могут быть оставлены в их "
|
702 |
+
"значениях по умолчанию, если иное не указано поддержкой."
|
703 |
+
|
704 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:294
|
705 |
+
msgid "Maximum Execution Time"
|
706 |
+
msgstr "Максимальное время выполнения"
|
707 |
+
|
708 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:296
|
709 |
+
msgid "1 Minute"
|
710 |
+
msgstr "1 минута"
|
711 |
+
|
712 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:297
|
713 |
+
msgid "5 Minutes"
|
714 |
+
msgstr "5 минут"
|
715 |
+
|
716 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:298
|
717 |
+
msgid "10 Minutes"
|
718 |
+
msgstr "10 минут"
|
719 |
+
|
720 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:299
|
721 |
+
msgid "15 Minutes"
|
722 |
+
msgstr "15 минут"
|
723 |
+
|
724 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:300
|
725 |
+
msgid "30 Minutes"
|
726 |
+
msgstr "30 минут"
|
727 |
+
|
728 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:302
|
729 |
+
msgid "The default value of 5 minutes is fine for most sites."
|
730 |
+
msgstr "Значение по умолчанию 5 минут подходит для большинства сайтов."
|
731 |
+
|
732 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:302
|
733 |
+
msgid "Increasing this value may help if your page reports are missing pages."
|
734 |
+
msgstr ""
|
735 |
+
"Увеличение этого значения может помочь, если в ваших отчетах страниц "
|
736 |
+
"отсутствует страницы."
|
737 |
+
|
738 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:304
|
739 |
+
msgid "Report Throttling Delay Time"
|
740 |
+
msgstr "Отчет о регулировании времени задержки"
|
741 |
+
|
742 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:306
|
743 |
+
msgid "0 Seconds"
|
744 |
+
msgstr "0 секунд"
|
745 |
+
|
746 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:307
|
747 |
+
msgid "1 Seconds"
|
748 |
+
msgstr "1 секунда"
|
749 |
+
|
750 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:308
|
751 |
+
msgid "2 Seconds"
|
752 |
+
msgstr "2 секунды"
|
753 |
+
|
754 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:309
|
755 |
+
msgid "3 Seconds"
|
756 |
+
msgstr "3 секунды"
|
757 |
+
|
758 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:310
|
759 |
+
msgid "4 Seconds"
|
760 |
+
msgstr "4 секунды"
|
761 |
+
|
762 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:311
|
763 |
+
msgid "5 Seconds"
|
764 |
+
msgstr "5 секунд"
|
765 |
+
|
766 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:312
|
767 |
+
msgid "10 Seconds"
|
768 |
+
msgstr "10 секунд"
|
769 |
+
|
770 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:314
|
771 |
+
msgid "The default value of 0 seconds is fine for most sites."
|
772 |
+
msgstr "Значение по умолчанию 0 секунд подходит для большинства сайтов."
|
773 |
+
|
774 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:314
|
775 |
+
msgid ""
|
776 |
+
"Raising this value will slow down page reporting, but may help provide more "
|
777 |
+
"accurate reports on poorly performing web servers"
|
778 |
+
msgstr ""
|
779 |
+
"Увеличение этого значения замедлит отчетность страниц, но обеспечит большую "
|
780 |
+
"точность отчетов о неэффективных веб-серверах."
|
781 |
+
|
782 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:318
|
783 |
+
msgid "Log API Exceptions"
|
784 |
+
msgstr "Исключения API журнала"
|
785 |
+
|
786 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:320
|
787 |
+
msgid ""
|
788 |
+
"Exception logs will appear in the \"logs\" folder in the Google Pagespeed "
|
789 |
+
"Insights plugin directory. This directory must be writable."
|
790 |
+
msgstr ""
|
791 |
+
"Журналы исключений появятся в папке \"журналов\" в каталоге плагинов Google "
|
792 |
+
"Insights Pagespeed. Этот каталог должен быть доступен для записи."
|
793 |
+
|
794 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:324
|
795 |
+
msgid "Alternative Scan Technique"
|
796 |
+
msgstr "Альтернативная техника сканирования "
|
797 |
+
|
798 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:326
|
799 |
+
msgid ""
|
800 |
+
"Some servers have difficulty with the default (ajax powered) scan technique. "
|
801 |
+
"If you are having problems with pagespeed scans stopping before they are "
|
802 |
+
"finished, try this option."
|
803 |
+
msgstr ""
|
804 |
+
"Некоторые серверы имеют трудности с (с поддержкой ajax ) техниками "
|
805 |
+
"сканирования по умолчанию. Если у вас возникли проблемы с pagespeed "
|
806 |
+
"сканированием, которое останвливается прежде, чем должно, попробуйте этот "
|
807 |
+
"вариант."
|
808 |
+
|
809 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:328
|
810 |
+
msgid "Delete Data"
|
811 |
+
msgstr "Удалить данные"
|
812 |
+
|
813 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:330
|
814 |
+
msgid "Do Nothing"
|
815 |
+
msgstr "Ничего не делайте"
|
816 |
+
|
817 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:331
|
818 |
+
msgid "Delete Reports Only"
|
819 |
+
msgstr "Удалить только отчеты"
|
820 |
+
|
821 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:332
|
822 |
+
msgid "Delete EVERYTHING"
|
823 |
+
msgstr "Удалить ВСЕ"
|
824 |
+
|
825 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:334
|
826 |
+
msgid "Warning"
|
827 |
+
msgstr "Предупреждение"
|
828 |
+
|
829 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:334
|
830 |
+
msgid "This option can not be reversed."
|
831 |
+
msgstr "Этот вариант невозможно сохранить."
|
832 |
+
|
833 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:340
|
834 |
+
msgid "Save Options & Start Reporting"
|
835 |
+
msgstr "Сохранить опции и начать создание отчетов"
|
836 |
+
|
837 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:343
|
838 |
+
msgid "Save Options"
|
839 |
+
msgstr "Сохранить опции"
|
840 |
+
|
841 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:344
|
842 |
+
msgid "Save Options & Check For New Pages"
|
843 |
+
msgstr "Сохранить опции и проверить на наличие новых страниц"
|
844 |
+
|
845 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/options.php:345
|
846 |
+
msgid "Save Options & Force Recheck All Pages"
|
847 |
+
msgstr "Сохранить опции и принудительно проверить все страницы"
|
848 |
+
|
849 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:256
|
850 |
+
msgid "Report Description (optional)"
|
851 |
+
msgstr "Описание отчета(по желанию)"
|
852 |
+
|
853 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:258
|
854 |
+
msgid "Save Report Snapshot"
|
855 |
+
msgstr "Сохранить отчет снимков"
|
856 |
+
|
857 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:278
|
858 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:248
|
859 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:370
|
860 |
+
msgid "Size of Resources (in kB)"
|
861 |
+
msgstr "Размер ресурсов (в kB)"
|
862 |
+
|
863 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:279
|
864 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:249
|
865 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:371
|
866 |
+
msgid "Lowest"
|
867 |
+
msgstr "Низкий"
|
868 |
+
|
869 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:280
|
870 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:250
|
871 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:372
|
872 |
+
msgid "Average"
|
873 |
+
msgstr "Средний"
|
874 |
+
|
875 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:281
|
876 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:251
|
877 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:373
|
878 |
+
msgid "Highest"
|
879 |
+
msgstr "Высокий"
|
880 |
+
|
881 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:288
|
882 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:258
|
883 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:380
|
884 |
+
msgid "Largest Areas for Improvement"
|
885 |
+
msgstr "Крупнейшие области для улучшения"
|
886 |
+
|
887 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:289
|
888 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:259
|
889 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:381
|
890 |
+
msgid "Pages Effected"
|
891 |
+
msgstr "Выполненные страницы"
|
892 |
+
|
893 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:290
|
894 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:260
|
895 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:382
|
896 |
+
msgid "Average Impact"
|
897 |
+
msgstr "Среднее влияние"
|
898 |
+
|
899 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:321
|
900 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:291
|
901 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:413
|
902 |
+
msgid "Highest Scoring Pages"
|
903 |
+
msgstr "Высокие результативные страницы"
|
904 |
+
|
905 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:351
|
906 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:325
|
907 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:447
|
908 |
+
msgid "Lowest Scoring Pages"
|
909 |
+
msgstr "Низкие результативные страницы"
|
910 |
+
|
911 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:403
|
912 |
+
msgid "There may not be any results for the \""
|
913 |
+
msgstr "Может и не быть результатов для \""
|
914 |
+
|
915 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/summary.php:406
|
916 |
+
msgid "There may not be any "
|
917 |
+
msgstr "Может и не быть"
|
918 |
+
|
919 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:190
|
920 |
+
msgid "Apply"
|
921 |
+
msgstr "Применить"
|
922 |
+
|
923 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:207
|
924 |
+
msgid "No Similiar Snapshots Found"
|
925 |
+
msgstr "Не найдено похожих снимков"
|
926 |
+
|
927 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:209
|
928 |
+
msgid "Compare to Snapshot"
|
929 |
+
msgstr "Сравнить со снимком"
|
930 |
+
|
931 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:223
|
932 |
+
msgid "Compare"
|
933 |
+
msgstr "Сравнить"
|
934 |
+
|
935 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:258
|
936 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:380
|
937 |
+
msgid "Areas for Improvement"
|
938 |
+
msgstr "области для улучшения"
|
939 |
+
|
940 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:260
|
941 |
+
#: /Users/mattkeys/Desktop/W/MattKeys.me/wp-content/plugins/google-pagespeed-insights/includes/admin/view-snapshot.php:382
|
942 |
+
msgid "Impact"
|
943 |
+
msgstr "Влияние"
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mattkeys
|
|
3 |
Donate link: http://mattkeys.me/
|
4 |
Tags: SEO, seo, performance, speed, google, search engine optimization, pagespeed, google page speed, page speed, pagespeed insights, google pagespeed insights
|
5 |
Requires at least: 3.3
|
6 |
-
Tested up to: 4.
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -29,6 +29,7 @@ Check out the [Premium Edition](http://mattkeys.me/products/google-pagespeed-ins
|
|
29 |
|
30 |
= Additional Languages =
|
31 |
|
|
|
32 |
* Spanish Translation provided by: Ogi Djuraskovic from [firstsiteguide.com](http://firstsiteguide.com)
|
33 |
* Serbian Translation provided by: Ogi Djuraskovic from [firstsiteguide.com](http://firstsiteguide.com)
|
34 |
|
@@ -58,7 +59,7 @@ Toggle back and forth between report types to see specific suggestions for impro
|
|
58 |
|
59 |
= Configuration =
|
60 |
|
61 |
-
An extended version of the
|
62 |
|
63 |
Google Pagespeed Insights requires a Google API Key. Keys are free and can be obtained from Google. In order to get a key, you will need a Google account such as a GMail account. If you do not already have a Google account you can create one here: https://accounts.google.com/SignUp.
|
64 |
|
@@ -130,12 +131,19 @@ Google Pagespeed Insights requires a Google API Key. Keys are free and can be ob
|
|
130 |
== Screenshots ==
|
131 |
|
132 |
1. Filter reports by Pages, Posts, Category Indexes, or Custom Post Types. Sort Report Lists by Page Score to see your highest and lowest performing pages.
|
133 |
-
2.
|
134 |
3. Configure Google Report Language, Report Types, and choose which Wordpress URLs to run reports on.
|
135 |
4. View in-depth report details for recommendations on increasing your sites performance.
|
136 |
|
137 |
== Changelog ==
|
138 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
= 1.0.5 =
|
140 |
* Fixed problem with temp directory used by Google API which was not writable on many shared hosting environments, and prevented the plugin from working properly. Replaced sys_get_temp_dir function with WordPress get_temp_dir function to resolve.
|
141 |
|
@@ -161,6 +169,13 @@ Google Pagespeed Insights requires a Google API Key. Keys are free and can be ob
|
|
161 |
|
162 |
== Upgrade Notice ==
|
163 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
= 1.0.5 =
|
165 |
Fixed problems preventing reports from running on many shared hosting environments
|
166 |
|
3 |
Donate link: http://mattkeys.me/
|
4 |
Tags: SEO, seo, performance, speed, google, search engine optimization, pagespeed, google page speed, page speed, pagespeed insights, google pagespeed insights
|
5 |
Requires at least: 3.3
|
6 |
+
Tested up to: 4.7
|
7 |
Stable tag: trunk
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
29 |
|
30 |
= Additional Languages =
|
31 |
|
32 |
+
* Russian Translation provided by: Ivanka from [coupofy.com](http://coupofy.com)
|
33 |
* Spanish Translation provided by: Ogi Djuraskovic from [firstsiteguide.com](http://firstsiteguide.com)
|
34 |
* Serbian Translation provided by: Ogi Djuraskovic from [firstsiteguide.com](http://firstsiteguide.com)
|
35 |
|
59 |
|
60 |
= Configuration =
|
61 |
|
62 |
+
An extended version of the following instructions as well as other documentation are included in the "documentation" folder of this plugin.
|
63 |
|
64 |
Google Pagespeed Insights requires a Google API Key. Keys are free and can be obtained from Google. In order to get a key, you will need a Google account such as a GMail account. If you do not already have a Google account you can create one here: https://accounts.google.com/SignUp.
|
65 |
|
131 |
== Screenshots ==
|
132 |
|
133 |
1. Filter reports by Pages, Posts, Category Indexes, or Custom Post Types. Sort Report Lists by Page Score to see your highest and lowest performing pages.
|
134 |
+
2. Separate reports for Desktop and Mobile page reports. Check each report to receive platform specific recommendations to increase your sites performance.
|
135 |
3. Configure Google Report Language, Report Types, and choose which Wordpress URLs to run reports on.
|
136 |
4. View in-depth report details for recommendations on increasing your sites performance.
|
137 |
|
138 |
== Changelog ==
|
139 |
|
140 |
+
= 1.0.7 =
|
141 |
+
* Fixed PHP7 incompatibilities
|
142 |
+
|
143 |
+
= 1.0.6 =
|
144 |
+
* Fixed error with WP_List_Table introduced with WordPress 4.3
|
145 |
+
* Added Russian translation. Thank you Ivanka from [coupofy.com](http://coupofy.com)
|
146 |
+
|
147 |
= 1.0.5 =
|
148 |
* Fixed problem with temp directory used by Google API which was not writable on many shared hosting environments, and prevented the plugin from working properly. Replaced sys_get_temp_dir function with WordPress get_temp_dir function to resolve.
|
149 |
|
169 |
|
170 |
== Upgrade Notice ==
|
171 |
|
172 |
+
= 1.0.7 =
|
173 |
+
Fixed PHP7 incompatibilities
|
174 |
+
|
175 |
+
= 1.0.6 =
|
176 |
+
Fixed error with WP_List_Table introduced with WordPress 4.3
|
177 |
+
Added Russian translation. Thank you Ivanka from [coupofy.com](http://coupofy.com)
|
178 |
+
|
179 |
= 1.0.5 =
|
180 |
Fixed problems preventing reports from running on many shared hosting environments
|
181 |
|